diff --git a/.windsurf/workflows/review.md b/.windsurf/workflows/review.md new file mode 100644 index 0000000..6595c4a --- /dev/null +++ b/.windsurf/workflows/review.md @@ -0,0 +1,22 @@ +--- +auto_execution_mode: 0 +description: Review code changes for bugs, security issues, and improvements +--- +You are a senior software engineer performing a thorough code review to identify potential bugs. + +Your task is to find all potential bugs and code improvements in the code changes. Focus on: +1. Logic errors and incorrect behavior +2. Edge cases that aren't handled +3. Null/undefined reference issues +4. Race conditions or concurrency issues +5. Security vulnerabilities +6. Improper resource management or resource leaks +7. API contract violations +8. Incorrect caching behavior, including cache staleness issues, cache key-related bugs, incorrect cache invalidation, and ineffective caching +9. Violations of existing code patterns or conventions + +Make sure to: +1. If exploring the codebase, call multiple tools in parallel for increased efficiency. Do not spend too much time exploring. +2. If you find any pre-existing bugs in the code, you should also report those since it's important for us to maintain general code quality for the user. +3. Do NOT report issues that are speculative or low-confidence. All your conclusions should be based on a complete understanding of the codebase. +4. Remember that if you were given a specific git commit, it may not be checked out and local code states may be different. \ No newline at end of file diff --git a/README.md b/README.md index 8f6c2ea..fff527a 100644 --- a/README.md +++ b/README.md @@ -1,161 +1,240 @@ +# OpenClaw Skills 数字员工交易平台 -# OpenClaw Skills 数字员工交易平台(纯前端版本) - -基于 Vue 3 的数字员工交易平台,**无需后端,无需 Java 环境**,所有数据存储在浏览器本地 localStorage 中。 +基于 Vue 3 + Spring Boot 3 的全栈数字员工 Skill 交易平台,支持 Skill 浏览、购买(混合支付:积分+微信支付)、退款、评价、邀请奖励等完整交易闭环,并提供功能完善的管理后台。 ## 技术栈 -- Vue 3 -- Vite 5 -- Element Plus -- Vue Router 4 -- Pinia -- LocalStorage(数据持久化) - -## 项目特点 - -✅ **无需后端** - 所有业务逻辑在前端实现 -✅ **无需 Java** - 不需要 Java 环境 -✅ **数据持久化** - 使用 localStorage 保存数据 -✅ **完整功能** - 用户、商城、积分、订单全部功能完整 +| 层面 | 技术 | +|------|------| +| **前端** | Vue 3.4 + Vite 5 + Pinia + Vue Router 4 + Ant Design Vue 4 + Element Plus + Axios | +| **后端** | Java 17 + Spring Boot 3.2 + MyBatis Plus 3.5.7 + MySQL 8.0 + Redis 7.x | +| **消息队列** | RabbitMQ(退款异步处理、充值积分发放、超时提醒) | +| **支付** | 微信支付 V3(Native Pay + 退款),支持模拟支付模式 | +| **ID 生成** | Leaf Segment(号段模式,订单号/退款单号等) | +| **文件存储** | 腾讯云 COS | +| **短信** | 短信验证码(注册/找回密码) | +| **测试** | Vitest(前端) | ## 项目结构 ``` 数字员工/ -├── frontend/ # 前端项目(只需启动这个) +├── frontend/ # Vue 3 前端(52 个页面) │ ├── src/ -│ │ ├── data/ # 模拟数据 -│ │ │ └── mockData.js # 数据初始化和存储 -│ │ ├── service/ # 业务服务层 -│ │ │ └── localService.js # 本地服务实现 -│ │ ├── api/ # API 接口(已改为本地调用) -│ │ ├── components/ # 通用组件 -│ │ ├── router/ # 路由配置 -│ │ ├── stores/ # 状态管理 -│ │ ├── views/ # 页面组件 -│ │ ├── App.vue +│ │ ├── views/ # 页面视图 +│ │ │ ├── home/ # 首页 +│ │ │ ├── skill/ # Skill 商城(列表/详情/搜索/榜单) +│ │ │ ├── order/ # 订单(详情/支付/模拟支付) +│ │ │ ├── user/ # 用户中心(16 个子页面) +│ │ │ ├── admin/ # 管理后台(21 个子页面) +│ │ │ ├── help/ # 帮助中心 +│ │ │ ├── customize/ # Skill 定制 +│ │ │ ├── join-us/ # 加入我们(开发者申请) +│ │ │ ├── legal/ # 法律条款 +│ │ │ └── error/ # 错误页 +│ │ ├── stores/ # Pinia 状态管理(7 个 store) +│ │ ├── service/ +│ │ │ ├── apiService.js # Axios API 封装(22 个模块) +│ │ │ └── dataAdapter.js # 后端数据归一化 +│ │ ├── components/ # UI 组件 +│ │ ├── layouts/ # 布局(MainLayout + AdminLayout) +│ │ ├── router/index.js # 路由配置 │ │ └── main.js -│ ├── index.html -│ ├── package.json -│ └── vite.config.js +│ ├── .env.development # 开发环境变量 +│ ├── .env.production # 生产环境变量 +│ └── package.json +│ +├── openclaw-backend/ # Spring Boot 后端 +│ └── openclaw-backend/ +│ ├── src/main/java/com/openclaw/ +│ │ ├── module/ # 20 个业务模块 +│ │ │ ├── user/ # 用户(注册/登录/短信/微信) +│ │ │ ├── skill/ # Skill(CRUD/评价/收藏/分类/榜单) +│ │ │ ├── order/ # 订单(创建/支付/取消/退款) +│ │ │ ├── payment/ # 支付(充值/微信支付/回调/模拟支付) +│ │ │ ├── points/ # 积分(签到/消费/退还/流水) +│ │ │ ├── member/ # 会员等级(成长值/等级配置/权益) +│ │ │ ├── admin/ # 后台管理(综合管理接口) +│ │ │ ├── invite/ # 邀请系统 +│ │ │ ├── invoice/ # 发票管理 +│ │ │ ├── content/ # 内容管理(轮播图/公告) +│ │ │ ├── activity/ # 活动管理 +│ │ │ ├── notification/ # 消息通知 +│ │ │ ├── feedback/ # 反馈建议 +│ │ │ ├── help/ # 帮助中心 +│ │ │ ├── rbac/ # 角色权限管理 +│ │ │ ├── log/ # 操作日志 +│ │ │ ├── developer/ # 开发者申请 +│ │ │ ├── customization/ # Skill 定制需求 +│ │ │ ├── share/ # 分享(微信 JS-SDK) +│ │ │ └── common/ # 公共(文件上传/配置/统计) +│ │ ├── common/ # 公共基础设施 +│ │ │ ├── event/ # 领域事件(退款/充值) +│ │ │ └── mq/ # RabbitMQ(消费者/常量/配置) +│ │ ├── config/ # 配置类 +│ │ ├── annotation/ # 自定义注解(@RequiresRole 等) +│ │ └── util/ # 工具类 +│ ├── src/main/resources/ +│ │ ├── application.yml # 应用配置 +│ │ └── db/ +│ │ ├── init.sql # 数据库初始化 +│ │ ├── migration/ # Flyway 迁移脚本(9 个) +│ │ └── seed_skills.sql # 种子数据 +│ └── pom.xml +│ +├── 后端架构设计/ # 架构设计文档集 +├── 产品功能架构设计.md # 产品功能架构设计参考 +├── 待实现功能清单.md # 功能完成度跟踪 +├── P1低优先级开发计划.md # P1 功能开发计划 +├── 全量功能测试计划清单_2026-03-19.md # 测试计划 +├── 后端启动指南.md # 后端详细启动文档 └── README.md ``` -## 快速启动(仅需前端) +## 快速启动 ### 前置要求 -- Node.js (推荐 v16 或更高版本) -- npm 或 yarn 或 pnpm -### 启动步骤 +| 依赖 | 版本要求 | +|------|---------| +| Node.js | v16+ | +| Java | 17+ | +| MySQL | 8.0+ | +| Redis | 7.x+ | +| RabbitMQ | 3.x+ | +| Maven | 3.6+ | + +### 后端启动 + +```bash +# 1. 初始化数据库 +cd openclaw-backend/openclaw-backend +mysql -u root -p < src/main/resources/db/init.sql + +# 2. 修改配置(数据库/Redis/RabbitMQ 连接信息、微信支付密钥等) +# 编辑 src/main/resources/application.yml + +# 3. 启动后端 +mvn spring-boot:run +# 后端运行在 http://localhost:8080 +``` + +> 详细启动步骤请参考 `后端启动指南.md` + +### 前端启动 -1. 进入前端目录: ```bash cd frontend -``` - -2. 安装依赖: -```bash npm install -``` - -3. 启动开发服务器: -```bash npm run dev +# 前端运行在 http://localhost:5173 ``` -4. 打开浏览器访问: -``` -http://localhost:5173 -``` +### 模拟支付模式 -## 测试账号 - -| 手机号 | 积分 | 说明 | -|--------|------|------| -| 13800138000 | 500 | 演示用户 | -| 13900139000 | 200 | 测试用户 | - -密码:任意输入即可(演示用) +项目支持在微信支付未启用时使用模拟支付,可通过 `/mock-pay` 页面完成订单和充值的模拟支付,方便开发调试。 ## 功能模块 -### 1. 用户系统 -- 用户注册/登录 -- 个人信息编辑 -- 邀请码生成和绑定 +### 用户端(16 个页面) -### 2. Skill 商城 -- Skill 列表展示 -- 分类筛选 -- 关键词搜索 -- Skill 详情查看 -- 热门/最新推荐 -- 免费/付费 Skill 区分 +| 模块 | 功能 | +|------|------| +| **用户系统** | 手机号注册/登录、微信扫码登录、短信验证码、忘记密码、个人资料编辑、头像上传、手机号更换、密码修改 | +| **Skill 商城** | 列表浏览、分类筛选、关键词搜索、Skill 详情、热门榜单(下载量/评分/周/月/总) | +| **订单与支付** | 订单预览(积分+现金混合计算)、下单、微信支付/模拟支付、取消订单、申请退款 | +| **积分系统** | 积分余额、积分流水、每日签到、加入社群奖励、积分充值(梯度套餐)、积分过期(一年有效期)、活动冻结/解冻 | +| **评价与收藏** | Skill 评价/评分、点赞评论、收藏/取消收藏 | +| **邀请系统** | 邀请码生成、绑定邀请码、邀请记录、邀请统计 | +| **发票管理** | 发票申请、发票列表、发票详情 | +| **消息通知** | 通知列表、未读数、标记已读/全部已读 | +| **反馈建议** | 提交反馈、反馈列表、反馈详情 | +| **帮助中心** | 分类浏览、文章搜索、文章详情、标记有用 | +| **其他** | Skill 定制需求提交、开发者申请、用户协议/隐私政策 | -### 3. 积分系统 -- **积分获取方式**: - - 新用户注册奖励(300积分) - - 每日签到(10积分/天) - - 邀请好友(100积分/人 + 好友消费奖励) - - 加入技术交流群(50积分) - - 充值赠送(多充多送) -- **积分消耗**: - - 兑换付费 Skill -- 积分充值 -- 积分明细查询 +### 管理后台(21 个页面) -### 4. 订单管理 -- 创建订单 -- 支付订单(现金/积分) -- 订单查询 +| 模块 | 功能 | +|------|------| +| **数据看板** | 用户/订单/Skill/积分/收入统计、趋势图表 | +| **用户管理** | 用户列表、用户详情、封禁/解封、角色变更 | +| **Skill 管理** | Skill 列表、审核(通过/拒绝)、上下架、推荐/取消推荐、后台创建 Skill | +| **订单管理** | 订单列表、订单详情 | +| **退款管理** | 退款列表、审批通过(触发微信退款+积分退还)、拒绝退款(恢复原订单状态) | +| **评论管理** | 评论列表、删除违规评论 | +| **积分管理** | 积分流水查看、手动调整积分、过期清理(每日凌晨2点定时任务) | +| **内容管理** | 轮播图 CRUD、公告 CRUD、活动 CRUD | +| **发票管理** | 发票列表、发票审核/开具 | +| **帮助中心管理** | 分类 CRUD、文章 CRUD | +| **反馈管理** | 反馈列表、详情查看、回复、状态变更 | +| **定制需求管理** | 定制需求列表、状态处理 | +| **开发者管理** | 开发者申请列表、审核通过/拒绝 | +| **RBAC 权限** | 角色 CRUD、权限列表、角色权限配置、管理员角色配置 | +| **操作日志** | 操作日志列表查询 | +| **系统设置** | 系统配置 | -### 5. 个人中心 -- 个人信息管理 -- 每日签到 -- 加入社群 -- 邀请好友 -- 充值入口 +### 后端 API 概览(29 个 Controller) -## 数据存储 +| 分类 | Controller | 说明 | +|------|-----------|------| +| 用户 | UserController, WechatAuthController | 注册/登录/个人信息/微信授权 | +| Skill | SkillController, CategoryController, SkillFavoriteController | 商城/分类/收藏 | +| 订单 | OrderController | 下单/支付/取消/退款 | +| 支付 | PaymentController, MockPaymentController | 充值/微信回调/模拟支付 | +| **积分** | PointsController | 余额/流水/签到/过期清理/活动冻结 | +| **会员** | MemberController | 等级详情/成长记录/管理员调整 | +| 邀请 | InviteController | 邀请码/绑定/记录 | +| 内容 | BannerController, AnnouncementController, ActivityController | 轮播图/公告/活动(公开) | +| 发票 | InvoiceController | 发票申请/列表 | +| 通知 | NotificationController | 消息通知 | +| 反馈 | FeedbackController | 反馈建议 | +| 帮助 | HelpController, AdminHelpController | 帮助中心 | +| 分享 | ShareController | 微信 JS-SDK 签名 | +| 开发者 | DeveloperController | 开发者申请 | +| 定制 | CustomizationController | Skill 定制需求 | +| 管理后台 | AdminController, AdminActivityController | 综合后台管理 | +| RBAC | RbacController | 角色权限管理 | +| 日志 | OperationLogController | 操作日志 | +| 公共 | ConfigController, FileUploadController, StatsController | 配置/上传/统计 | -所有数据保存在浏览器 localStorage 中,包括: -- 用户数据 -- Skill 数据 -- 积分记录 -- 订单数据 +### 消息队列(RabbitMQ) -**注意**:清除浏览器缓存会重置所有数据! +| 队列 | 用途 | +|------|------| +| `openclaw.recharge.paid` | 充值成功 → 积分发放 | +| `openclaw.refund.approved` | 退款审批通过 → 微信退款 + 积分退还 + 退款单完成 | +| `openclaw.refund.timeout.remind` | 退款超时 → 管理员提醒(48h 延迟队列) | -## 测试数据说明 +## 项目文档 -系统预置了以下测试数据: -- 2个测试用户 -- 6个示例 Skill(包含免费和付费) -- 完整的积分记录 -- 示例订单 +| 文档 | 说明 | +|------|------| +| `后端启动指南.md` | 后端详细启动配置文档 | +| `待实现功能清单.md` | 功能完成度跟踪(Phase 1~3) | +| `产品功能架构设计.md` | 产品功能架构设计参考 | +| `P1低优先级开发计划.md` | P1 优先级功能开发计划 | +| `全量功能测试计划清单_2026-03-19.md` | 测试计划清单 | +| `后端架构设计/` | 后端架构设计文档集 | +| `openclaw-backend/API_EXAMPLES.md` | API 测试示例(curl 命令) | -## 充值档位 +## 当前状态 -| 充值金额 | 赠送积分 | 总计获得 | -|----------|----------|----------| -| ¥10 | +10 | 20积分 | -| ¥50 | +60 | 110积分 | -| ¥100 | +150 | 250积分 | -| ¥500 | +800 | 1300积分 | -| ¥1000 | +2000 | 3000积分 | +> 更新日期:2026-03-21 -## 技术亮点 +| 阶段 | 完成度 | 说明 | +|------|--------|------| +| Phase 1 MVP 核心 | ~98% | 用户/商城/积分/支付/混合支付/后台管理基本完成 | +| Phase 2 核心完善 | ~90% | 内容管理/发票/榜单/RBAC/操作日志/帮助中心/反馈/退款完善/活动管理/积分过期冻结已完成 | +| Phase 3 运营深化 | ~10% | 会员等级体系已完成;优惠券/活动系统/风控等待做 | -1. **完整的业务逻辑** - 所有后端逻辑完整迁移到前端 -2. **数据持久化** - 使用 localStorage 保存数据 -3. **响应式设计** - 适配不同屏幕尺寸 -4. **组件化架构** - 代码清晰易维护 -5. **模拟数据完整** - 包含真实的业务场景 +**近期修复与新增**: +- 会员等级体系(普通→白银→金卡→钻石,成长值自动增长,签到倍率/积分折扣权益,管理员手动调整,安全审计修复) +- 积分过期 + 冻结机制(一年有效期、批次追踪、活动冻结/解冻、定时过期清理、前端冻结/过期状态展示) +- 退款功能全链路修复(现金退款/积分退还/状态流转/MQ事务一致性/operatorId 记录) +- 定制需求管理前后端状态值统一 -## 注意事项 - -1. 数据存储在浏览器 localStorage 中,清除缓存会丢失数据 -2. 推荐使用 Chrome/Edge/Firefox 浏览器 -3. 这是演示版本,实际部署建议连接真实后端 +**待做事项**(详见 `待实现功能清单.md`): +- 支付回调可靠性验证 +- 邀请海报生成 +- 手机号绑定/更换完善 +- Phase 3 全部功能 diff --git a/codechat/.client_protocol b/codechat/.client_protocol deleted file mode 100644 index d8263ee..0000000 --- a/codechat/.client_protocol +++ /dev/null @@ -1 +0,0 @@ -2 \ No newline at end of file diff --git a/codechat/.port b/codechat/.port deleted file mode 100644 index e0fc4bb..0000000 --- a/codechat/.port +++ /dev/null @@ -1 +0,0 @@ -34591:1773712210907_6388_wkaj9y2rqd8k:1773720311136 \ No newline at end of file diff --git a/codechat/.version b/codechat/.version deleted file mode 100644 index 666f9e0..0000000 --- a/codechat/.version +++ /dev/null @@ -1 +0,0 @@ -6.7.6 \ No newline at end of file diff --git a/codechat/config b/codechat/config deleted file mode 100644 index 00ba373..0000000 --- a/codechat/config +++ /dev/null @@ -1 +0,0 @@ -334ea9f170811cb7935ebd629bc50cde \ No newline at end of file diff --git a/codechat/run.cmd b/codechat/run.cmd deleted file mode 100644 index 99aeb55..0000000 --- a/codechat/run.cmd +++ /dev/null @@ -1,2 +0,0 @@ -@echo off -"%~dp0codechat.exe" %* diff --git a/codechat/run.ps1 b/codechat/run.ps1 deleted file mode 100644 index 36bfd33..0000000 --- a/codechat/run.ps1 +++ /dev/null @@ -1 +0,0 @@ -& "$PSScriptRoot\codechat.exe" @args diff --git a/frontend/.env.development b/frontend/.env.development new file mode 100644 index 0000000..28b0bba --- /dev/null +++ b/frontend/.env.development @@ -0,0 +1,2 @@ +# 开发环境 API 基础地址 +VITE_API_BASE_URL=http://localhost:8080/api/v1 diff --git a/frontend/.env.production b/frontend/.env.production new file mode 100644 index 0000000..eba9981 --- /dev/null +++ b/frontend/.env.production @@ -0,0 +1,2 @@ +# 生产环境 API 基础地址 +VITE_API_BASE_URL=/api/v1 diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/03/2d/4acce88ae3139b4b43f5af971aaf19445daed6ba4c2a1b8ca61ce5c83e7bf476d02c54fa152cee2a2557ce910f48097201196972389ab7cec3e460f8a91e b/frontend/.npm-cache/_cacache/content-v2/sha512/03/2d/4acce88ae3139b4b43f5af971aaf19445daed6ba4c2a1b8ca61ce5c83e7bf476d02c54fa152cee2a2557ce910f48097201196972389ab7cec3e460f8a91e new file mode 100644 index 0000000..6cd1392 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/03/2d/4acce88ae3139b4b43f5af971aaf19445daed6ba4c2a1b8ca61ce5c83e7bf476d02c54fa152cee2a2557ce910f48097201196972389ab7cec3e460f8a91e @@ -0,0 +1 @@ +{"_id":"compute-scroll-into-view","_rev":"35-baac31d0c4dae821658a934db0d0efb4","name":"compute-scroll-into-view","dist-tags":{"latest":"3.1.1"},"versions":{"0.1.0":{"name":"compute-scroll-into-view","version":"0.1.0","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@0.1.0","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com/","dist":{"shasum":"dab52e2d05157f143a086dc26f122b32923be947","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-0.1.0.tgz","fileCount":14,"integrity":"sha512-fa2UvmuXpRIXB9ru1ia6B0fV/fklaLszVi2U3hW3K6FOS4AVaV2G4qHZRpE4R0nKRHB86xYJIt13jp9vERLleA==","signatures":[{"sig":"MEUCIQCLRy1wlZ2NJy6qdF5l13H3vX4n6G/ChfGckjVtin370gIgVqu/3No4aQk10aihz0z7IhPEwbXFvDdTLfBDklivfZ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30067},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"description":"The engine that powers scroll-into-view-if-needed","directories":{},"licenseText":"MIT License\n\nCopyright (c) 2018 Cody Olsen\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_hasShrinkwrap":false,"devDependencies":{"husky":"0.14.3","rimraf":"2.6.2","rollup":"0.61.2","tslint":"5.10.0","prettier":"1.13.6","@babel/cli":"7.0.0-beta.51","typescript":"2.9.2","@babel/core":"7.0.0-beta.51","lint-staged":"7.2.0","concurrently":"3.6.0","semantic-release":"15.6.0","@babel/preset-env":"7.0.0-beta.51","rollup-plugin-babel":"4.0.0-beta.5","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.13.0","@babel/preset-typescript":"7.0.0-beta.51","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.51","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_0.1.0_1530811309590_0.6138279106633573","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"compute-scroll-into-view","version":"1.0.0","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.0","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"133c453b02fb0d64c38c9c1ea43ee5730c8abd8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.0.tgz","fileCount":10,"integrity":"sha512-9EaGioDz7E2Vxpmv+ja0HlAvadUpAYTPdnFZX39EXn0257bP38XsRKGWj9eIN3q69V8cfquRqB7F+zk781e3cA==","signatures":[{"sig":"MEUCIQCYy8h6Tep4QfS12nKvsYOG7ig4lx2ZCiyl1VjrI44vhwIgLeX1xD2ghzpoAFqQunBD4GHELQahYz0BnJooeYTkN98=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33004,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPl7YCRA9TVsSAnZWagAAOMoP/RqTMN4VtV0bhBJ52ujC\nZHMXrnOQPUK6X3j5rfB3tr/9bcAIFFVNTo2hyJiWjTXOlNDeyKK6HPHSFpu4\n6mRzXG68i8wxsJ/E4ZtSwX7yum/Fxw3o4BkjaX7u39qtkEb8fl9uUne58GQf\nlrMXeRif7TBAGfCW63hfohe+KH7vz/jA9tT90V5uxrJEgxO7Z4+2gbAmO0GS\n0M5rQgo9V/24LxWSNkoZTDGh769ihabKPWlr8P6WiQ3B6FWnQWiqeOW0kLvS\npZI7AW5mEeqE0v4ta9iPu6bCj9Q3e9AM9s1bENOvRi7H9ntA6JfXBOgTvNM7\nncE1fbW5cFuoVP9n0BDNNzWFsXExI7P2Uae+vF0mlrU3uPQnoOrUHtCzuLh0\n+2gtDez4Pqh9VpDLn9h3s0xxpDnfkt+DdbYtRsPIsnuw99Z3VPTveGH4KJxl\nw62nFocKnpdk0kWIRxYXPZXSnIya4yJXUmRjBJoK8DbAIQb5nSWRZhLk7X1O\npLPGKrheloFUy7YsxttQ3QDrwPPEBoirUY5Qr68NHpqVErChY473tknXI/Bv\n9+QUpYTZwQLpCRceDLBlTQ/lXa4KEngIdl1chdTnGCeuUSEDm62TGwPF+mDN\n4qkMbaC2bfGmwkwzZss6g+SW5IYB78rY3fCwgaLC2RtqTCHSdOd9vJm76MnX\nDQiX\r\n=GyOb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"5979c6488004ce59a3b6d210beb4d3c616c48cdf","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"5.6.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"husky":"0.14.3","rimraf":"2.6.2","rollup":"0.61.2","tslint":"5.10.0","prettier":"1.13.7","@babel/cli":"7.0.0-beta.51","typescript":"2.9.2","@babel/core":"7.0.0-beta.51","lint-staged":"7.2.0","concurrently":"3.6.0","semantic-release":"15.6.0","@babel/preset-env":"7.0.0-beta.51","rollup-plugin-babel":"4.0.0-beta.5","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.13.0","@babel/preset-typescript":"7.0.0-beta.51","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.51","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.0_1530814168312_0.7385829419732686","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"compute-scroll-into-view","version":"1.0.1","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.1","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"b44a7db5291d13544cba1363d2e4a407cd418c97","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.1.tgz","fileCount":10,"integrity":"sha512-unMN0o6GPypzrAtmzpgVR8FezVK3oCYWYH3Nf9CvXI8trIWgiU1ppJvbgGJ7Kj8L3tYb/LGLnYZHBJ3HiOD4eg==","signatures":[{"sig":"MEUCIAQV0sDBzgR5jyTkMFgBxEgoHki72ahOxuJwZySQ8HdxAiEAq+16EohnYC2HRjbNnJ2TfCpJQlEpJrEctfospDMuFfM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32928,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPm3TCRA9TVsSAnZWagAAvksQAJMzjvXlbvdXneuPMmWZ\nL0Qtxp4Oj7taUzUwjgK8fDiTkiQOdwp6qcBM7YvmDgsUvLTXVylXZtgWVqM8\n/pfC9f2CSXarbbw19qgCCrN86ow8MW80zIWQmyA782ny3yxJy3vTAAWfQ/2I\nXJHJrwr15m5oB47HPGr4VMF3hDsGbJDBlaywTHsg2G0sXN/7O2ExZCxtN2KB\nOqwmS7d64THGVXfrkwGp+1dOjOFlUq+2BhKJiyEgt/CiPixWpANZHU+sjZ0U\nQDHn3S9XMHrXpB00e0xzpkt+Q6XtNycqax+co3+msA1BD8m7ylwOHB7QuRoF\n1YaVmtGKcNjoA99U3/BB2jY87hNSpP5eWLN83cnOvpMeN8TkC9a40yqw8LU9\nb6TSxYQd+B0mPOONaG7Pjc+oeJzP98S+OtEOGTeAGeYcIf1G+RqRmvWbLcSA\nJK7ed7s0/B+NFjXzIsUINbzGxLcGRb3BKCVCoPyCti0Mn0e+bdxsiCaey94g\nstKBmx6WpeqzLFxXXjm3JVe5M7uVW8Wc2h/D5yJiUqDSD5PoeIFKNnikXL0A\nKgCbiOfRSurI1nXAvCq9vZLjbIu/mlg07NPskrvITHrg0TFLR0z5EmXq2LiW\nNjLSJ0aGROD973NuSxpdDoTYCM47JPiwie+vLijzrCXYAcycWy+dBHbPagL2\nTVnz\r\n=kxbN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"17bde86847e0bebb9a5aa31f26580bbe20e63359","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"5.6.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"husky":"0.14.3","rimraf":"2.6.2","rollup":"0.61.2","tslint":"5.10.0","prettier":"1.13.7","@babel/cli":"7.0.0-beta.51","typescript":"2.9.2","@babel/core":"7.0.0-beta.51","lint-staged":"7.2.0","concurrently":"3.6.0","semantic-release":"15.6.0","@babel/preset-env":"7.0.0-beta.51","rollup-plugin-babel":"4.0.0-beta.5","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.13.0","@babel/preset-typescript":"7.0.0-beta.51","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.51","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.1_1530818003797_0.28090195522476913","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"compute-scroll-into-view","version":"1.0.2","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.2","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"2cc5357981449aa6b2dd82aff2176e03c5ab8441","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.2.tgz","fileCount":10,"integrity":"sha512-uexNAkGNgAT84Up90PYjZ53IR2+PsvdfIHqYUJgTQd+qutFu0MuQJUEG3lXTAMST8fzQyFBXrIR5ioqxZ1aNog==","signatures":[{"sig":"MEYCIQCHs4BanT10aC0U9wK/LXWWtNHxRry0EkJV8kT9oyH8kwIhAO4SfsU2uSEHn34UPARB+9ei6RnCmTl1a0NMF1JkV94s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32930,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPm/0CRA9TVsSAnZWagAAmswP/Ah+UXg4nInLdgQf6kop\niNdXUyYABWfAFgLR/yU9wZbdt6kTf3rgHtopXg0AjKCrLfUrj7gNpEfzCCLm\ncd1K60t0KKozOx+wW1Yo/HiwlXDZjEO4u4yFvZDC9jwndfKNvt58TD3alqDe\nkMI5Yo99MIV492qvok6auN0RhsqYynmL6IORD381kH6EWUfF7DTf6GDF/H24\nv/JILHhXdvk3CesrtYyJ12YmQ7+gdxsOdoEJ9i11cPF9joIXKyOUu+bLiOVi\nRZ1IoJmIgorBMIEjrb4SP5xjGRMpJUChrDb/0InWAkWyEk2c7XBj3CmaKSE7\nq9wcdIoA7wbyXJytfaFWXhKRPBNiurmF6UyZ2jHxgUyx0HGvnYUSmE85JuKb\napJxHOd0ficdrlkcQ5AwgSHlimpWjewfaudmlx3L0xPkbctSA/8dyWkc5lGX\nEavEvC0G0rK15nOerTxzeDGmvOkj8QzwexL3BTz67+2JzrXQvMwz7b51/Wjb\n2tPekaXtR9Fh/7RHwAcsysUwnU+1gBPVHJad+DLG22ybImgDu4emGQV+fJWz\ns+sAj3VaAuDmw6IFMzJoZ5sEDZYOjc/4cv+uRoL0hLuDNF5WSRpwxiquHUpn\nqW5sW+k/ON7JWYuNFaiI9TJYbFQpqOfS9WrkYvTkREzrR1pS+5QX6FUmyuX2\ngpW+\r\n=nJzv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"36348d03f4365f99df72a6e62acb417c2a54f9c8","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"5.6.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"husky":"0.14.3","rimraf":"2.6.2","rollup":"0.61.2","tslint":"5.10.0","prettier":"1.13.7","@babel/cli":"7.0.0-beta.51","typescript":"2.9.2","@babel/core":"7.0.0-beta.51","lint-staged":"7.2.0","concurrently":"3.6.0","semantic-release":"15.6.0","@babel/preset-env":"7.0.0-beta.51","rollup-plugin-babel":"4.0.0-beta.5","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.13.0","@babel/preset-typescript":"7.0.0-beta.51","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.51","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.2_1530818548346_0.1931689648639161","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"compute-scroll-into-view","version":"1.0.3","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.3","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"73646ffc8d62cd524829ba9c34b52579ac7781b8","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.3.tgz","fileCount":10,"integrity":"sha512-lHSgs83Zxk1SmrgzYr+DdsUgd0n2CUR8iiRqrV/ExgSovv5xX3keeCYDghv64OF+qhRePBDU8rXpLyr61DSjcw==","signatures":[{"sig":"MEQCIEbdSSTy0CX1MqUhewDWp4BqtcAKeKhfheYHhJZQfsDbAiAnXBuRwvPGmcUpNGySvvCuhyfULRIq/kxJxMrLoY4dww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTnBzCRA9TVsSAnZWagAA/1MQAJycv6zVq4AdrIFCD08M\nmsDIUhFLUi4w67FQhq9JK1pwSyp3JKbLDRfsIf8TzED0P/DLq/LVFRfFgffv\nettux91hGc+vNLbw/YVUV/LKErQKtFMgsOt6iFowzB4dKzw/UW8q+Lf5RU70\nw8vb56NkpW0rOHgYF4X//Q6LtqH4J8ODVVmBg4RC/i/sc0a+N3q/NYwKrBD4\noXx6v1SB5rWL0su9jlnple0igmwNvjtFeE+Ni0W1BHKhjKirXb8KJkX52IMM\nY8wDpZmEzcnWJowSFMoAfPtIzS/OV6thw+RhAXl4xLLUaVsXnnENnjfWh3lW\n64wcx+NkZiGs11K/giOE32Tb6rQWu3lq3hiPZAZ0LR4ubVXZqcvTYNeEeHMR\nw/BsFR4Vq9UxrxaxaYA6HyAP5Z6ev+hNBkAt+uDs0Gicbpq2vEdxjClL93W+\nE0D77wRGU8to+l9gOTGE1L0pYhHtbQl2QdlDXj6d+xevInsqgVUmqruJydyC\noeU/xbTAIZbwtSsrlvLqWATJm1RDiCjGHvPnP6dtkUSYGbiFWXTJMZz+7/8F\nIYC9bQfqZxzdFuW9a5slsnhfU1HNDP4gQHPpPOUvHiK+NKwmUuEMUlXj/G90\nvb7yZR794kEFAiMdnS0xk7Y3tLnHjP+zN4ZzosfIM0/4JY7UTpnZXBJEL86A\nsJGY\r\n=wSB2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"9d80bbfe3a7b17153b50a30a0994c9ae54f478c6","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"5.6.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"jest":"23.4.1","husky":"0.14.3","serve":"9.2.0","rimraf":"2.6.2","rollup":"0.63.0","tslint":"5.11.0","prettier":"1.13.7","puppeteer":"1.6.0","@babel/cli":"7.0.0-beta.54","typescript":"2.9.2","@babel/core":"7.0.0-beta.54","lint-staged":"7.2.0","concurrently":"3.6.0","jest-puppeteer":"3.2.1","semantic-release":"15.8.0","@babel/preset-env":"7.0.0-beta.54","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.13.0","@babel/preset-typescript":"7.0.0-beta.54","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.54","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.3_1531867250850_0.7098970827915427","host":"s3://npm-registry-packages"}},"1.0.4":{"name":"compute-scroll-into-view","version":"1.0.4","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.4","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"0d0917907b0d613f7d93a8c7575152ac0a512d43","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.4.tgz","fileCount":10,"integrity":"sha512-v+63dtRH1w0xQrXaTOofFX8dxMIz9s2y4yNg+pXKy0eyxbnZJoj9xrX0dDWJyTHNkLyzyinfDr1hHCQ9QWmBvg==","signatures":[{"sig":"MEYCIQCqKrnPaVCiJy+wBpY3L03510hw7OGe6CwIJ3Q2bGCPiQIhAKfUx8P5/GbAxY0CX3SXHHfcQ3r5NQ/qkdt+DzY7OUSq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33103,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbT2NvCRA9TVsSAnZWagAAluUQAJecLo8DSPnotVNVN430\n6AT9BLCLgSul1wsCiSifcTuIdl5YBpQS6MKY5ygofomrpcPA+x4Vp6H36apo\nEZQbQaaClGYCF0pa7JrWkksUCYtaIrdQP+Y9ZhQEIMQxhFdnksWr0x3d2WTM\nl4bijszEs8U0MzERyIEeHHTzIA8t3oNUynLgJEY4kOL/BQhN4S5PTdL3Zcdu\nr3NCOhl/nIUzEfTaIH5P+bWUTEvZTHSy/fX9sBqJGrlp7f46EZchXwBxDo/t\nXUhYWtzhtnpORraIxUzZ/K6lKPvz0/aLWJL18NUcO+aDSS9qfs0EXBLLWh8k\nDf71WRBYsCFv/TvwcQQ2+vao9kMkXfArWJCLIRd6XGAqPnFDRV+5qnEAP+Em\novkuR3sY9PGBEN2tYxVOduDhC4IZ4Ylu84KDdoaLqmcrAo297yuQEn0xK9li\nU3CB4BwGfhVFPFrr7skKD35QPNWIyfmtJLOrG7F4hHznTFjyZNCMDw4Z+Q1Q\n1h5v6eGWtBpYe1DNyarTPHFguVDUV6wN1pxEe57sXSvIdlqTQzaXv3n7G7FX\nrZDZ25RRO4W97IAG/uFwaZaeV5v/iKLj3ZFrUWFoJqwpA/1PCrrLNNJSIHgu\nwDndhUsUHHgLAaFHzdn35ZgyCL6KjHdnuPvp4N734YPb2ib2ucVwSmGGy0+m\nI7nu\r\n=3Ig8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"ca098c1d8c4d8252a6397fbecf381a07baf36493","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"5.6.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"jest":"23.4.1","husky":"0.14.3","serve":"9.2.0","rimraf":"2.6.2","rollup":"0.63.2","tslint":"5.11.0","prettier":"1.13.7","puppeteer":"1.6.0","@babel/cli":"7.0.0-beta.54","jest-junit":"5.1.0","typescript":"2.9.2","@babel/core":"7.0.0-beta.54","lint-staged":"7.2.0","concurrently":"3.6.0","jest-puppeteer":"3.2.1","semantic-release":"15.8.0","@babel/preset-env":"7.0.0-beta.54","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.13.0","@babel/preset-typescript":"7.0.0-beta.54","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.54","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.4_1531929445698_0.5454212806299032","host":"s3://npm-registry-packages"}},"1.0.5":{"name":"compute-scroll-into-view","version":"1.0.5","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.5","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"dea9ce0edb17d981ea0d56e52b85c840430b91bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.5.tgz","fileCount":10,"integrity":"sha512-oWHJSw7/w8qlyWnKbs6lGqLe5pkkfLt7TG5GvQZHOiBbSe7lD09chlx3eT/TY10KqACMG9eWtz3bc9ZY9lJqEA==","signatures":[{"sig":"MEUCIQDV9npzdiexkywgugZDfvy1jczJgrDaemd220FnlaejBQIgGv5vdNr0u4v41HSUam3cYUVTP5v7nxFMlLMmFp3hi28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33288,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbT6tRCRA9TVsSAnZWagAAh4wP/ixdm2bJ+KTofFi6V6V0\nLWIxk013MV3BrLOF+X8cLkOnekW1ujGI5nt1+O5WPfvxemJuhnKwvSaig6bR\n9jr0ifGGUT2xCkDtR2u9TxJSBy8OEjx7FPX3IWVDLFQnjJWUdOcdlRVSWOoq\nWSPjod9dytrXFw1SrpdO9rnpEdAPrlNC86m+TJVNI5W9VHkRZloGL0gmmigC\npzv+Cc2wUzkx0Nc4wJj+SuywJ4V0VFaQodVXA2EJ+YpRVyQFhE1Jq825WXEt\n8ydgggMkOUNbsj1nE8szwWq/PiLcuYHQyGFGmlZgD50XE6sXY7SucKzq6YkK\nRmCDVdYWfDT4qONzd/VRev/IjQc7jz1wKBgqv25LQBg3nWdqhzyf1r6IomCf\neUaF1hpnfI6hh2FgCtRXz8ZQcAzVINkbsT/1i9o1CslSgOLJLrdjXbHJ4dys\nMzPuPeEMdUHYyVn3pbEtnB8ehauEZJrBIi/znIVektUVmfSGzfzNCC0oLO8y\n46hpgUmhuqURr5dwfVAyxrb5M9AWQhPHEWGEfhwL9KXhbp9kWXWVYUP0JryX\na9Nruu4JRBy9MyMEaLCJrQHZRJSvZcxNxoInPQdtWLr9r0+a06tFhU0aWgD8\n3VIloodDNEO2hI6Ey6XN61FeJXT9Q/yYjqISJq6kcocCgkMc1PXv+9VWD29r\nzpm1\r\n=fn9S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"39c8888645e412d3b9c002e3d413ef878d81c2a2","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"5.6.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"jest":"23.4.1","husky":"0.14.3","serve":"9.2.0","rimraf":"2.6.2","rollup":"0.63.2","tslint":"5.11.0","prettier":"1.13.7","puppeteer":"1.6.0","@babel/cli":"7.0.0-beta.54","jest-junit":"5.1.0","typescript":"2.9.2","@babel/core":"7.0.0-beta.54","lint-staged":"7.2.0","concurrently":"3.6.0","jest-puppeteer":"3.2.1","semantic-release":"15.8.0","@babel/preset-env":"7.0.0-beta.54","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.13.0","@babel/preset-typescript":"7.0.0-beta.54","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.54","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.5_1531947857384_0.29845118410843074","host":"s3://npm-registry-packages"}},"1.0.6":{"name":"compute-scroll-into-view","version":"1.0.6","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.6","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"8c004c1aea703f143c0928c7828eb73580863d4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.6.tgz","fileCount":8,"integrity":"sha512-yHkulIk2OaHk3oKIW2DnhYBaGrot0an1YGBkKPJrzXJzN65DQws9XbNuGJtMUwcuKlrUFcsXpi1MQRkW6bVNDQ==","signatures":[{"sig":"MEYCIQDGuhcc1BtPMGgroYZLwE307bL3zoB5EiEhZ1U0xqC1GAIhAPn9jfEue/fFv2I6G7qTV9fAhj/94TONT6UbzeZAMyHj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbU412CRA9TVsSAnZWagAAbeAP/06394IT9PX294bOyc25\nCjTkOKmKOefeu87nU0zbrvY2PHyI0B1pJ3O0ko++cOckxXLG1WgB5dmgftAh\ndgpbD15UcwjDd4y5xMobZGjPBeP1Bsx3gOwAaFTRXowNUhm2/NUUzD+P6NyZ\nlth33ph98R5E2XtYdu5vyYn1BGUwNtE6Led7ht4O1wp1fndoROSB//TIxVOW\nDV2N/SaCRCXS0Uv5nG+aaGMcxzGm7H1kydJDcssr1LcKYknw3LMemPLACPk7\nDmhzXz2894L4m7g01gkGuxGBznayR0uY53Yl5PNu6Bn79mEb78prjdOf2eb1\n0cYKCsxofWieuoDKpmS4vQA32042n1QRRaLBnHpH5dW73ROG7fbtWGecAhn9\njeS54K3NZds5HfR5DihbLbhdAWJIvnwLtujbX5cEh1RAhkVj/3wVi09yypYU\nBefYQZfQdLZU44as1ZBydf6DbAKzedDh7rL2lvOHLGjgiVXD9jtrTfar53xt\nN6X5fuBbIiBGFgo6xT8pmQGW17CwITU9feKvDsUn2pXW/VL49Emmo8CdqkKw\n9FgXSS8yBo/EzvdnCWRa57JhGQmrPGm6GCl2wHR6+zHmUuizE32yzW0hq6So\nVE4j3SWhgUMFXlOTQJs2QHEZHXUiyKQyb1yD/bxCvWzQQ4aQ0d9t1qlH8qam\nW4Iy\r\n=lvFV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"ba3313c43e9c9cfb2e74c44aa6edd36bc22a9462","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"5.6.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"jest":"23.4.1","husky":"0.14.3","serve":"9.3.0","rimraf":"2.6.2","rollup":"0.63.4","tslint":"5.11.0","prettier":"1.13.7","puppeteer":"1.6.0","@babel/cli":"7.0.0-beta.54","jest-junit":"5.1.0","typescript":"2.9.2","@babel/core":"7.0.0-beta.54","lint-staged":"7.2.0","concurrently":"3.6.0","jest-puppeteer":"3.2.1","semantic-release":"15.8.1","@babel/preset-env":"7.0.0-beta.54","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.14.0","@babel/preset-typescript":"7.0.0-beta.54","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.54","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.6_1532202358390_0.7373800588287702","host":"s3://npm-registry-packages"}},"1.0.7":{"name":"compute-scroll-into-view","version":"1.0.7","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.7","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"ad8dbe51093c31d60cf6c2df497b2c077bd9e7d2","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.7.tgz","fileCount":8,"integrity":"sha512-nGckrnlp17cHgh9OOi9s83lfWAlBvCQkj4ycexoIokbAxRicMYnYAxBtZ/zKtvFydrshhy2RBT352QGemT6rfQ==","signatures":[{"sig":"MEUCIQCq3R2OqkWIVrDjoA3+E3fCXndO58XiV9hQDlpPt92hRwIgTlvAAb71tMTRwIrUZmxnKEHKzscmqIA/sPlGo5lJCC4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37653,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbU7jLCRA9TVsSAnZWagAAWKIP/jsU5XAGZS+cxYl7WV5l\nvycBbG9AHo2Ja8gmKHcW53RFoyhBfne2v+hH1M7cDG+wIjpVeecWKFfCEEgp\nlhRvjzbn8ju8r1y4WzJqf8AnGLP/boSlNB8R8dKF2GsFTsoxcBVN6juCAt1E\nJANpK442p+fftp+Pq0v4RrQkhzyCayCLDoDZQiX7o9xLLXlFTOdn9df1Za31\nUNyJpN+xYoVU304YD3qZPUm/Lj2ERREF2LpoiPD+9GTLO8BF3Q1HGC2Zjz7S\nxyZzEIYeo23JqVLCfNxRjCSFjk/LQwhAwTML9b53fsezZdJeA9S+O4ZjZSna\nBJLO1kQcnFb7TG5pTRgXQcKSYgVjPIcrGbmICxbQb3g4/5j0gjYG5hVHo1tc\noxvqAmMALUXDMkyPDsqMGr4lVnO5sMeq2fWLZIU/CvrnNSbBb/anI2PwaLQC\nKvQFZKGXUUC01sjZmgoUkIwXpFKupIxzZQwSk4RZidqfDQWeQjXsBwZp1PqS\nVY4ITZcAIOSwome8eS8V0psKHlYShUp5bFLI5L5FTA1BQTY5cynlBt6mVZ2y\nWQicW0Qsmk8tyMCTisEEwF6+opI1OEDwHmJ3hBdUsQ0LvQDrh0xHZTOlY2cQ\n5Wl8qZTeZooepFI0iMLFqT+NAAuZlhpGQ3zsqiQrh2+xLpGYoTZvYQoLJPPM\nkzf1\r\n=s9Z7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"3f9a7a34ed0fcde1b1ae0f663ad7a6e7323ff89d","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"5.6.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"jest":"23.4.1","husky":"0.14.3","serve":"9.3.0","rimraf":"2.6.2","rollup":"0.63.4","tslint":"5.11.0","prettier":"1.13.7","puppeteer":"1.6.0","@babel/cli":"7.0.0-beta.54","jest-junit":"5.1.0","typescript":"2.9.2","@babel/core":"7.0.0-beta.54","lint-staged":"7.2.0","concurrently":"3.6.0","jest-puppeteer":"3.2.1","semantic-release":"15.8.1","@babel/preset-env":"7.0.0-beta.54","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-terser":"1.0.1","prettier-package-json":"1.6.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.3","tslint-config-prettier":"1.14.0","@babel/preset-typescript":"7.0.0-beta.54","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-beta.54","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.7_1532213451601_0.2840852420362101","host":"s3://npm-registry-packages"}},"1.0.8":{"name":"compute-scroll-into-view","version":"1.0.8","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.8","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"ad0acd869dc6dc1069201532c025783a30ea177d","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.8.tgz","fileCount":8,"integrity":"sha512-iAUjocygqXSGQb3zUHvAHwcf3BiMihlnphNSKCAqS6v9wNHlFe7260zNqoFjS/YBKJjbbvrXwY6/Wdg5mJ91Lw==","signatures":[{"sig":"MEUCIB7mcGEHZsxYsg/QV11JLnK2jTMNjMuHnrqsq0zCSB8GAiEAuccPsrT27hFawDgh0v4cBuBrT6cJfya5BusUHl4mQDY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcwO+CRA9TVsSAnZWagAAkTYP/R6KS10dNKuja+f/FWcc\ntXPUrvgxkzbFC9JlafYqaahVmlD4EGRC9lYX+5u2nJzcLbj25INK3HxRnZXV\nFNORXShN1iF/RvXomDuAnOzLK/cQlx8qTNfYa/4BlW+ZIiWUIpIt9pr7q8Tp\n/YneyANx/wxx1fnIEgYn2SdHR5Ped+pRQMQKyU+ZswPNE9A1AD7eO6DDi/+s\no41NF31xgmFHN3UE4HT3idHeS1nbA2zO8be+8PETko09+eKdjGQ6fSJonxvK\nup+ovc2z8eoCxa1yNEI4QERk4XOzIHCPQ847slBzTVNeGC5p/xuwhqv895X0\nHujHiwd+iJh520vRoCzOaN2f/GvTQUWwtUFuod0z4VfNLJsQh4ZwxSDoLkPl\nqxT9j5I9rbAGS6AC0620dCV+WuhwZNAEYFAG+cYNEzdw6Nr4chOYHd3oiIUc\n0g73BEsu7pNTyS3/bsvK0ns1KRSxtN++UC/Iw2LD3upJKEYrog6K4QvQBg/b\neSJXP42WGYJmx5eEXt7Fow5BNAAKVftrsJnCe6IOyuXHt18LmgFFY9t3yEcJ\nMYxEoKcx00ixSR1PTrP6PcZ52PGADH0UvYnu5lD3VSphmhqN7GFSD/AuQ8jh\niowUWt9MCIeizgOa+w8FJiUzBaf1AIMhv+cB7oHopAGzy2Iw9CjlR7UGkhcn\nJ3L6\r\n=XPYu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["es","typings","umd"],"module":"es/index.js","gitHead":"28c9982b4c6862ef6c92b14e54ca7df337f795c5","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.3.0","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.11.3","_hasShrinkwrap":false,"devDependencies":{"jest":"23.5.0","husky":"0.14.3","serve":"9.4.2","rimraf":"2.6.2","rollup":"0.64.1","tslint":"5.11.0","prettier":"1.14.2","puppeteer":"1.7.0","@babel/cli":"7.0.0-rc.1","jest-junit":"5.1.0","typescript":"3.0.1","@babel/core":"7.0.0-rc.1","lint-staged":"7.2.2","concurrently":"3.6.1","jest-puppeteer":"3.2.1","semantic-release":"15.9.8","@babel/preset-env":"7.0.0-rc.1","rollup-plugin-babel":"4.0.0-beta.8","rollup-plugin-terser":"1.0.1","prettier-package-json":"2.0.0","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.5","tslint-config-prettier":"1.14.0","@babel/preset-typescript":"7.0.0-rc.1","rollup-plugin-node-resolve":"3.3.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0-rc.1","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.8_1534264254216_0.5417895810043101","host":"s3://npm-registry-packages"}},"1.0.9":{"name":"compute-scroll-into-view","version":"1.0.9","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.9","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"f9d9ec2a60d0011f2c89a6ecfbe4d5d0106e49d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.9.tgz","fileCount":8,"integrity":"sha512-/xQfxid0ymaVqCFBhPpn6YBKsvY7xn5udnFrSyJwxbHyJY1JbLdrUGKOp+HzhXHtiyQ7hTzVM+PcgfgMY02lVw==","signatures":[{"sig":"MEUCIQDSK7BZYLGbNhtQjkWSoXxqceJwb2gy0g0MOojQ+JAX1gIgf0vbcBaw2XL7UnF8uoeARi4jdesEAsehvmwNuwNcr5Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtnpWCRA9TVsSAnZWagAArTAP/R2+Lka1oVVkz0HG1Wl/\nyp/pIpSAmbuncZQcUxJ1yK0Ui7ktvJK5JozXgixM0GJZViT4wt7lZ80iBl/i\nb4SUiy97ETgpjXDL1+g7fzxPhsrOYao19FDzKRRyW0I78/YoAW2mKLnHzvqN\n6LRivWcxP12hOcfLc5po4/QD5JcawV96EZNp7o1Zhuam3SSU2Us3dKTs0wLB\nhOEgNdb/DEheNRFU2mjCcF/NxJJL+kALr7pVgTYpKtItPwxVVyH1I5ywka4F\n2KVgayL4AwC3y5UXWCrMJKSmHhorNgjZ6519ABwKy88Wp2Gf+qj11l/ualIe\nValnOgvbnx5IOj7AG199LA9Xqi7YxCblYQEtKWY0IG8YHE48Iz3SlrnD3GvR\nDKnhno2LIIv2eYeT5F9IrV1x5jqkAfrZKzDy8cJCaW5HM+U3UZRMrb3v6NPZ\nts8N+h5dWc5S/I2M7EHFtU6IIz3vAL3Zov8s5c3rPEKkGTVenF08+cINfrjL\n969a1G+A9cCzf4K/VBfVN+N1GCvgQUeGeo72b7VHaqrUDX7CLC2gbFPDOeRG\nQlmUzVMkNRkyr4zGrzjzd5BNu1+3k56s2FfmiiQ1wio5+EemdDUp0WbCsfrf\nU1HZqYbH5zwD42TCfQvFRkYr6M03DTnMnmTrn5XIFQs+DdgPwc6YSudnwfxI\n7rWc\r\n=tWMq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"es/index.js","gitHead":"dc49693c6513296314a75d7216d096ba3bdc5c1e","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.4.1","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"jest":"23.6.0","husky":"1.1.0","serve":"10.0.2","rimraf":"2.6.2","rollup":"0.66.4","tslint":"5.11.0","prettier":"1.14.3","puppeteer":"1.8.0","@babel/cli":"7.1.2","jest-junit":"5.2.0","typescript":"3.1.1","@babel/core":"7.1.2","lint-staged":"7.3.0","concurrently":"4.0.1","jest-puppeteer":"3.4.0","semantic-release":"15.9.17","@babel/preset-env":"7.1.0","rollup-plugin-babel":"4.0.3","rollup-plugin-terser":"3.0.0","prettier-package-json":"2.0.1","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.8","tslint-config-prettier":"1.15.0","@babel/preset-typescript":"7.1.0","rollup-plugin-node-resolve":"3.4.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0","babel-plugin-add-module-exports":"1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.9_1538685525751_0.1956945525060143","host":"s3://npm-registry-packages"}},"1.0.10":{"name":"compute-scroll-into-view","version":"1.0.10","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.10","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"27fd2165fda2eef328baa749cb3f363af95d2bf3","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.10.tgz","fileCount":8,"integrity":"sha512-rJgGASv7YtK9BAKy1JNdYdY+LNNk3OdfpPd5ysjHQG+xHOEcb+Cb43DXqqDdpA4D1Xx28pIEL5H1jS6LhR7BVw==","signatures":[{"sig":"MEQCICmXZxOBbmu2HPG4+DfI0i8pfQrifvPbByjXFAYU56mhAiAAyY7Ypn94TRJ7uCnPUxKPLGSCiryoorl3yRapr1vDYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbuTuECRA9TVsSAnZWagAAh18P/ioi2Cq8BkQQgQwQYJfA\nz87e1F5PYdudFXHBduZZHpAfH/HkMOLxQLcpla+wNOejSz8WbZaesclUeAHv\ne9SJYJRKsf9dX5naYvtN5ZIVnDLfPnh2oKrwspCtY+/2Y/bb8HhlwhpNzMrT\n+xTlbOYotB5r5Bn52odnv9U0NnNOG8l+Jbmu8Gzw/tpaOM2qqf62oUIxK7vr\n00etgLyPYRiTRMpIZwg267q46eWtSUNcg4PheJ2ZXBAIeozf/Uc+3e5quiZs\nIIU6lsy15c3U6e8eBgPUJAketBd6tdAkJ9TQGRaDcwL5MMpHBcaZEjBasbnu\no6EmaXohuImMyFTZCeNGI3eE1baxBK4H8mtmODlPGzW9iJoZYUHSnK9Hhfwl\nQaogjKo3GmAg/m9SWjuyGYPB+YlSSFFN0jFH1QapeDGSne4yxxB9GJHQ8csw\n8xXeK01KfxXjTAO6RjLASsHqmXR4d6lg+/0ibPaSibZ+HvPBb7PTtKGFtEwg\nE6g/N8pU347oYKxARjEywaTUc09Dgg+lY1pkShCiVirnS4JDLbJkyzgcMh+p\nkfN75YblH70WeqgYTrWrz+DOSZEyyxUEuE5zCD1Bk0qjpxcQippASqKxIePX\nRxm3rAmfYvqcjdbC7JaBW9X7Pm3ndbg5opCB76qYmQ0zxPGVExeop2FwWY8D\no+ez\r\n=GAL6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"es/index.js","gitHead":"7fe2ce99f9c020cf866f330f1da8f637463b1905","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.4.1","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"jest":"23.6.0","husky":"1.1.1","serve":"10.0.2","rimraf":"2.6.2","rollup":"0.66.4","tslint":"5.11.0","prettier":"1.14.3","puppeteer":"1.9.0","@babel/cli":"7.1.2","jest-junit":"5.2.0","typescript":"3.1.1","@babel/core":"7.1.2","lint-staged":"7.3.0","concurrently":"4.0.1","jest-puppeteer":"3.4.0","semantic-release":"15.9.17","@babel/preset-env":"7.1.0","rollup-plugin-babel":"4.0.3","rollup-plugin-terser":"3.0.0","prettier-package-json":"2.0.1","rollup-plugin-replace":"2.0.0","rollup-plugin-commonjs":"9.1.8","tslint-config-prettier":"1.15.0","@babel/preset-typescript":"7.1.0","rollup-plugin-node-resolve":"3.4.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0","babel-plugin-add-module-exports":"1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.10_1538866052033_0.6558277692483199","host":"s3://npm-registry-packages"}},"1.0.11":{"name":"compute-scroll-into-view","version":"1.0.11","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.11","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"7ff0a57f9aeda6314132d8994cce7aeca794fecf","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.11.tgz","fileCount":8,"integrity":"sha512-uUnglJowSe0IPmWOdDtrlHXof5CTIJitfJEyITHBW6zDVOGu9Pjk5puaLM73SLcwak0L4hEjO7Td88/a6P5i7A==","signatures":[{"sig":"MEYCIQDkBDHoGQ6Pja54dj+HLELUVfisB5RUnX57aWdgiD7DiQIhAKOg5TKEAqeSA7xMz3yNHq9KS1tgpAZmfcapdWHAnMOZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbufnGCRA9TVsSAnZWagAAEqQP/0FRXelW1ucM0kRc/mXG\ny92D9yoMSQEBHddR6hLmZM1DSZng0/C7Wo+kHk15vOdo8xmjDDCCD4YX+Kt9\nbQyrDxO5772gygrPVZa/N0b/KgCUxk5rYryLCBNJGHJpH0rmxtIK/2eLzQmr\n37ATyqxTnhhIOBoi/88bQt/7OQ2e9ucuHsF9eyrqvuiisy13QjLZlOUUBEti\ngfNmK8uX/ukSzaT0CxmOovUAvNgQ1/AwexjBfS5oXACvQs9ln3K9HJ9meOFn\ngR6yeriNRfzlYOcTvbjRKQxurlryrc3akg38oErwbVUzaAIwig5eLGctkHy4\nUNXwxJ9Yuau3+bCqhReHF/vr0OGJhAsYCSTrQIHm7LTa/0zDkOlPdu5jGRSt\nQPE8w99cBAUVNXW8l/MEfFrHot9w/+RKI/Q1SgBgcEJO1j7JKk8Lt5T6+Jc9\nHe9TVVzEe7sIOWOXqzJQd6H8k4UMFyW7qGshOi9zhcLmedNfgLnxx5qeAeOc\njQOFlq8y2oqAglGcBxtV0uflOMAdNxgzdac5NP01QwZG+KAnZJ4A+UNEVcsD\ndOUImf+PDTyDT24jX9ELEpC/fUoUAFQcYuDogWfFignXOaR/twZ3G2jqa6I2\nf8iL7ZBkj3PKGZNUYLbNoMJtm2Pxu4+Rp0eJ6FIeucRrfrYIDgmjkmHUtrdZ\nbWak\r\n=YjTI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"es/index.js","gitHead":"fe9a0517afa3aa8904476e89805c9f8cb471fe83","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.4.1","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"_nodeVersion":"8.12.0","_hasShrinkwrap":false,"devDependencies":{"jest":"23.6.0","husky":"1.1.1","serve":"10.0.2","rimraf":"2.6.2","rollup":"0.66.4","tslint":"5.11.0","prettier":"1.14.3","puppeteer":"1.9.0","@babel/cli":"7.1.2","jest-junit":"5.2.0","typescript":"3.1.1","@babel/core":"7.1.2","lint-staged":"7.3.0","concurrently":"4.0.1","jest-puppeteer":"3.4.0","semantic-release":"15.9.17","@babel/preset-env":"7.1.0","rollup-plugin-babel":"4.0.3","rollup-plugin-terser":"3.0.0","prettier-package-json":"2.0.1","rollup-plugin-replace":"2.1.0","rollup-plugin-commonjs":"9.1.8","tslint-config-prettier":"1.15.0","@babel/preset-typescript":"7.1.0","rollup-plugin-node-resolve":"3.4.0","babel-plugin-dev-expression":"0.2.1","@babel/plugin-external-helpers":"7.0.0","babel-plugin-add-module-exports":"1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.11_1538914757964_0.6169100011770505","host":"s3://npm-registry-packages"}},"1.0.12":{"name":"compute-scroll-into-view","version":"1.0.12","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.12","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"d523f83930f53d61cb5f4e2657e999b8c31cabd9","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.12.tgz","fileCount":8,"integrity":"sha512-MUJWwXJsFQ0+Z5fvrcvA+Da+ZGxpwIMEOmXQiYjB40f0+HWZHp+Cr4F/CtmQPRpggC5ZvBHj14zXPDPmvq/OkA==","signatures":[{"sig":"MEQCIBtdheuZy5K/RbqeVuQpVop2DA7NV2mUDeLgAQWh8tObAiBvqTuUrcb3/lttwTIYz/txvBVsGUaTOHySF3whT2ZhkQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38761,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeDbrQCRA9TVsSAnZWagAAxM4QAJnhzbBbu6K9Jy5FPFrX\nNcePEmOTRMZNaMruxCr3fdYDvIwtvg8gkwJwPWsDkiw0SrtfPAbhE7zNFH6j\n4q8gyYO/6A0or8XtAO5bPUC+5k5lh9zKclSA5PMvPwkBU/yWfACU+Lv1JORq\n7n0x+biOdzW2DS9B8zGNpkMj7ihMBo1Xn6Saz5wz5gITeGLSh/yi+6DeVvvb\nnwTvhCPF8u3HgVg9m4HtuydyB0cVcDzSQ136X4Pki0w4wtBlP+smuZi1ABd9\nKouvQSb8pwDUymz5B7vNZbyjxm/pO0tOCQ5LRAJ1vrUyNVjiTmTnJXEFInCg\nF+eCve3I08QfSGNTfEM/EzX2L+Orem39PCmghu5gTqe90b4xrVXMfSLqYeP4\nWA0qqaYrIr5tj+8hIrw5BgrTgwUXjguOhDkOyhMvwIWlSrfybBjgH75jFKTS\n02BTmdBJzwCNi6mk8J/KRseP0AQPQIxLW0zKk7U2qEJ22OY3jc4WVylsAD2w\nneBnDyXkoNe1/dYp+mpaEVICf29NHCGZwI4BrL5ceQw87JJ6kuH9PsQG3Dlk\np9lRX1rKGXL+xv6VD5U2jVLx2WJv3V/xvOO0W70MsvaR38VAijjd3Rfi7eIU\nL26CYp6FJUI1KfsTAxWPR0Otjp8+oTZyE3dOHSXzM7BM/W4A9Oq6bt3LcHkU\nlCpu\r\n=XV+e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"es/index.js","gitHead":"54d73bdbc39d5375f5deb9e9be569d501276d1c5","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.5 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.13.4","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"_nodeVersion":"8.17.0","_hasShrinkwrap":false,"devDependencies":{"jest":"23.6.0","husky":"3.1.0","serve":"11.3.0","rimraf":"3.0.0","rollup":"1.27.14","tslint":"5.20.1","prettier":"1.19.1","puppeteer":"2.0.0","@babel/cli":"7.7.7","jest-junit":"10.0.0","typescript":"3.7.4","@babel/core":"7.7.7","lint-staged":"9.5.0","concurrently":"5.0.2","jest-puppeteer":"4.4.0","semantic-release":"15.14.0","@babel/preset-env":"7.7.7","rollup-plugin-babel":"4.3.3","rollup-plugin-terser":"5.1.3","prettier-package-json":"2.1.3","rollup-plugin-replace":"2.2.0","rollup-plugin-commonjs":"10.1.0","tslint-config-prettier":"1.18.0","@babel/preset-typescript":"7.7.7","rollup-plugin-node-resolve":"5.2.0","babel-plugin-dev-expression":"0.2.2","@babel/plugin-external-helpers":"7.7.4","babel-plugin-add-module-exports":"1.0.2"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.12_1577958095854_0.4459195061235768","host":"s3://npm-registry-packages"}},"1.0.13":{"name":"compute-scroll-into-view","version":"1.0.13","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.13","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"be1b1663b0e3f56cd5f7713082549f562a3477e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.13.tgz","fileCount":8,"integrity":"sha512-o+w9w7A98aAFi/GjK8cxSV+CdASuPa2rR5UWs3+yHkJzWqaKoBEufFNWYaXInCSmUfDCVhesG+v9MTWqOjsxFg==","signatures":[{"sig":"MEUCIQC0KJ5/SQKlPnON0g6M2Zmu1oU3dq4LMN3BtCsB+jmXVgIgBYaJ3eFg6rLkM+xI0aZPUPUZWj2xALyEHLcOMR02gl8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38785,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKM6ICRA9TVsSAnZWagAArzcQAI+xS+sP1z3ZOQPXjoCt\n9yMYNx3HTIu6YIIrEh/HMrfIpxO+0u3eMeDWkOTqoveI4e6d44UoVGQ5NJIj\na74f0pVNVAGCzIPNLyALsCffQNjoDV7a84O1OnnTDidP3Gdl0fYD2iO1ZbjK\n0ODPQQ9JImDlTy+V+0pYjSN7+jvMS+/T3TiLWhhFzOnRV3qdJa9qYAheISip\njYrbX93H+oBNg0hlD1KePCBWWGacnf2db/Lk/VbYisStpupyFRFP9n4A3U0Y\nCIpsg8kmDQynNwti50A+Fud4yjUOjc033GTEnWB3dgAxsIu8qrOd9gQBQrm5\nH2uLR5HJ5DRY7I9uX+hqjUP3vxSu5ROrhfflHxS9ATuvC3YMA0KK7avbpUih\nu29qFd1GaSFt+rc4CChgMCyIh+OiYa4S9OXmZHo5XmySBELCQHcxqg3PsMqB\n9yFEzeS/PGBzAxPWL0PvvnRvuHuUk7nIFR9u/piuQusScK3MkytZ1YYSN8vU\nftBJq+S7QOxPOmbEs2iW20fZa3XqBDHDoidTspS3hRP+5TzFB8soTDFSnI0n\nkKTA2oZLn/spVTC6M2sTQBM6rfB/c0APKs1Q8dhcWa9vOyBcL/8xsXnYNLCq\nh8OX1KHieAChraqotlcV+XVqtuA1vMviMk/S0l1t1XrNusF7kvQZAu1DnUPU\nt6Cu\r\n=b7nz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"es/index.js","gitHead":"a4a468a5c2318476fd88c3d8a7c664dbb6061f0c","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.6 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.13.6","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.17.0","_hasShrinkwrap":false,"devDependencies":{"jest":"23.6.0","husky":"3.1.0","serve":"11.3.0","rimraf":"3.0.0","rollup":"1.29.0","tslint":"5.20.1","prettier":"1.19.1","puppeteer":"2.0.0","@babel/cli":"7.8.3","jest-junit":"10.0.0","typescript":"3.7.5","@babel/core":"7.8.3","lint-staged":"10.0.0","concurrently":"5.0.2","jest-puppeteer":"4.4.0","semantic-release":"15.14.0","@babel/preset-env":"7.8.3","rollup-plugin-babel":"4.3.3","rollup-plugin-terser":"5.2.0","prettier-package-json":"2.1.3","rollup-plugin-replace":"2.2.0","rollup-plugin-commonjs":"10.1.0","tslint-config-prettier":"1.18.0","@babel/preset-typescript":"7.8.3","rollup-plugin-node-resolve":"5.2.0","babel-plugin-dev-expression":"0.2.2","@babel/plugin-external-helpers":"7.8.3","babel-plugin-add-module-exports":"1.0.2"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.13_1579732616113_0.909356204171955","host":"s3://npm-registry-packages"}},"1.0.14":{"name":"compute-scroll-into-view","version":"1.0.14","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.14","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"80e3ebb25d6aa89f42e533956cb4b16a04cfe759","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.14.tgz","fileCount":8,"integrity":"sha512-mKDjINe3tc6hGelUMNDzuhorIUZ7kS7BwyY0r2wQd2HOH2tRuJykiC06iSEX8y1TuhNzvz4GcJnK16mM2J1NMQ==","signatures":[{"sig":"MEUCIDYnb9Wi37eJm9MEFIUcU6KDEgVQ0sxaM/PO6LR4BmhHAiEAri9Yz0Z81oqUMxRHGW3TXMRfzGcsV1CvwRlACCbUBnE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJezpX8CRA9TVsSAnZWagAA7vwQAI/CnH/I6jtiVk37RKCY\n1cM2R/Tn8SUlCaFWgJZ2wubixPOr1HVeEBh2dVblNlPPLw78d8/WGY3d9Xmp\n1iaFkDOV5CrFrckYSeHWGfRs0emk4/UkC+RcGboXKJG8qLJlSEhPF9l29NA3\nYu7LV7YK+QIswg7N9mM6qAb34VJCzm6ejxBMdV3UlbwWEw6jSc/FoWsYXeKK\nroqcB1FXxqfM9w7y2tKyQrj+AetXXUSteCaRUhjikImUIFIvNMADA/rLuH5c\nAAwakXGhP8WipVJWl3XD7mCgm+To8b4VmNFojL49hrFnakGrz/PnKGdx3GtM\ne5P08CGePGHLZN8sn0WA8zn4bT1De3RohWUY19IVj6Glo7nsy/KtOuY1jibr\n657K7piMYrQka7FkbQA/qcgBkJ4pXPS0iIaGt0QOl2T6LKqM74Rfg3PDqMsx\negNzYh3kRdHsQCQQYNnXszOKEh5vGMp+EAC4+NcFQrWF2ISl0nUomRLL2UBi\nrYJNoLKRkL2tE8+Yu+u/tD45L1VvJ4g/5Gpe8WLy5CkiJ/7DK3WnYmLheu2G\ndjtqWfqSb1PTSZd+Z0cwd+yPEQkThH7CyyKoOJOj2skUy5xoJerBwzQGqIT8\nbueLFXb6s+c20vU66RwmtBFZhxnKplO5BSqn2lIvCKhQgs7CGZPpfYPjAkEJ\nk62R\r\n=C6SM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","module":"es/index.js","gitHead":"1c36b6ee44699d264dc2d79732f8c0ea4158e7ba","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'tsc --noEmit --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","test":"jest -c integration/jest.config.js","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","clean":"rimraf 'umd' 'es' 'typings'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","prebuild":"yarn clean","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/compute-scroll-into-view.js","precommit":"lint-staged","typecheck":"tsc --noEmit","build:d.ts":"tsc --emitDeclarationOnly","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/compute-scroll-into-view.min.js","prepublishOnly":"unset npm_config_cafile && yarn build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"2.6 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.14.4","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.js":["prettier --write","git add"],"*.md":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"**/.babelrc":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"]},"sideEffects":false,"_nodeVersion":"8.17.0","_hasShrinkwrap":false,"devDependencies":{"jest":"23.6.0","husky":"3.1.0","serve":"11.3.1","rimraf":"3.0.2","rollup":"1.29.0","tslint":"5.20.1","prettier":"1.19.1","puppeteer":"2.1.1","@babel/cli":"7.8.4","jest-junit":"10.0.0","typescript":"3.9.3","@babel/core":"7.9.6","lint-staged":"10.1.5","concurrently":"5.2.0","jest-puppeteer":"4.4.0","semantic-release":"15.14.0","@babel/preset-env":"7.9.6","rollup-plugin-babel":"4.4.0","rollup-plugin-terser":"5.3.0","prettier-package-json":"2.1.3","rollup-plugin-replace":"2.2.0","rollup-plugin-commonjs":"10.1.0","tslint-config-prettier":"1.18.0","@babel/preset-typescript":"7.9.0","rollup-plugin-node-resolve":"5.2.0","babel-plugin-dev-expression":"0.2.2","@babel/plugin-external-helpers":"7.8.3","babel-plugin-add-module-exports":"1.0.2"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.14_1590597115960_0.8189673175439118","host":"s3://npm-registry-packages"}},"1.0.15":{"name":"compute-scroll-into-view","version":"1.0.15","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.15","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"4512d933382004026f588a8c4675f2e8f1870af0","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.15.tgz","fileCount":9,"integrity":"sha512-4t0PI4iJiPBFhmdiXuzVhjACJLjXKA90S2j+xqx58/Tx4JTuT0iCYleFLxB2iNd3kg4wD35po36wzgLzurRTmw==","signatures":[{"sig":"MEUCIDP9J/E2Pe/eJWnJ2FH0x33ORvnk+PTvHzhccPQBgA56AiEAisbhuNKKN0k0dom221GnQojoL6x+xoH+8fd0BbNc/H8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":87674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfT5swCRA9TVsSAnZWagAA2kMP/0dS+gH/51/JxLfA322H\n5Q9hpr5X4+ahmObj3CiQ/WC6kqc+5E2wb6b2dVEcry29giLmLeaQ0873Ec+a\n7IGhB0yzqQA/bhLVvPAMNIKTP8tOA+DrwzITnZmvjgKtKDccLHsoc1VlM1lV\nhqxg2Phx7qlFxstGBHwgOprbFlvMGyas4LInkJOcKB1+56hD0p1DbMdcenQ6\ncMVIccGVoTdoWkSbFd9rRShxqXQWBWgodhP5ByErUdyGxnH9J/c+Aa6Ghra+\nxsAkSC07wf/wEQbtZDkyZ34JmJnqIS5BsFfy6owpCEEo/CZTaNiiCS2UGsmG\nsj1u3czroI9SoYsQ8m0x0qO0/FrnSDAR1YMYp4kXQqJx2vOkJfcQNdEsQ2Pe\nueSmvk8HWSMP5PgBFFjCBMIXXBQ6ZivC9auIJkMaT8FThSx7tQ6xb5pULGWk\nnVmwpKyyfuWtmAJPTdfXsuY8uHNY+n7sTwQ2LH5G/H9Ln4IPkhveNrOUYAyA\nnO+iKJLl6juR6S8ZndZROZJ/Poy4wMq3EcFffJd8DbOWBTjB9oYLfAbBoHsw\n2eVrg8d5Z6Xe8LBz/i7NWrpRY/5UerbJAb0SwdyHng+4tBnUV2jxuOvs5gdn\n0P9Q4ETpx/TIDV8/XndeD9Iy/pFpltg4gionXnJ6Ne540G8cGR9DnFrvB9Hc\nZglk\r\n=8WBN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"module":"dist/index.module.js","source":"src/index.ts","gitHead":"72110c8045b5b51e25c0b21d41adc646ecc8fe96","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'npm run typecheck -- --watch' 'npm run build:dist -- --watch' 'npm run build:umd -- --watch'","test":"jest -c integration/jest.config.js","build":"npm run build:dist && npm run build:umd","prebuild":"rimraf 'dist' 'umd'","build:umd":"microbundle -f umd -o umd","typecheck":"tsc --noEmit","build:dist":"microbundle -f cjs,es","prepublishOnly":"unset npm_config_cafile && npm run build"},"typings":"dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"umd:main":"umd/compute-scroll-into-view.min.js","browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.14.6","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"**/package.json":"prettier-package-json --write","*.{js,ts,tsx,json,md}":"prettier --write"},"sideEffects":false,"_nodeVersion":"12.18.3","_hasShrinkwrap":false,"devDependencies":{"jest":"26.4.2","husky":"4.2.5","serve":"11.3.2","rimraf":"3.0.2","prettier":"2.1.1","puppeteer":"3.3.0","jest-junit":"10.0.0","typescript":"3.9.7","lint-staged":"10.2.13","microbundle":"^0.12.3","concurrently":"5.3.0","jest-puppeteer":"4.4.0","prettier-package-json":"2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.15_1599052591509_0.006224233530967238","host":"s3://npm-registry-packages"}},"1.0.16":{"name":"compute-scroll-into-view","version":"1.0.16","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.16","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"5b7bf4f7127ea2c19b750353d7ce6776a90ee088","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.16.tgz","fileCount":10,"integrity":"sha512-a85LHKY81oQnikatZYA90pufpZ6sQx++BoCxOEMsjpZx+ZnaKGQnCyCehTRr/1p9GBIAHTjcU9k71kSYWloLiQ==","signatures":[{"sig":"MEUCIF0xMxhE29UPFDkkdpvfut/GKEQ7Vss/VZsTm5TuqMCIAiEA8IcojCtwRhxeV5Rz4Yi2S0cbZlcT6rjm9MKgmcrtrgc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfT6kVCRA9TVsSAnZWagAARZoQAI8kAiAaizJ8L61u3ufF\nOoLVsF98D4H5V8BqangxgZ0pTI/7XSP60doY4lgfvrTrMadPS4hAEES6iJh+\nXUfYO/X7/eUgTs2TfJcEZBt9nfaEM/wgf6HmtEg5Or6+hP77nRq9QcADjwMK\nNNjynmg7C7mJqMvszvmDqh904lJCiMS/sOp81oty/ku5jCfEk1GvKY2XBB/l\nlL0QOcbo88cRPeqyK7UYON6e/UEy9pxVwoSN/DEQqqSgFuxmjeVLrQCRv2ie\nwfgv+AmnEfyKKQOKu4DzKCI0rzJK2ksrM20ODva99+2nWKck12HH7WIUlqpc\ncAFvSomlxJkZTcgbmzvm1E6rWz+11bA9H6gJZnj/kPjI7lhILLn4S+FpT650\nYDVTbLu3sdQ/on5Gz3MIG4QnxpaQWjux8z8uS+5p+l19jBP6CuOJAeL443ke\ntdU6a9dOuwSA7/1ZxEF0/XWdSUlR+xXmlAJyMpAcEEisah2MmgHAppeYUk9q\nKSa6+23++hGHFn5Mx690thMEqT85rLsZBKMzD8Pdoq1m7k0eRDaldkemf1/N\nWd6tgqu4Aw7KXMQWnegNANCeWSMC6Mk82td8UjhIWn6+W5KFukoLmgmRKj3L\naBYb7fAXsisWVemXaFMJf7x+v5RgEnSybLaNfnuEkKRmTboXeR3OTTrm6aLn\nDG2A\r\n=fQSL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"module":"dist/index.module.js","source":"src/index.ts","gitHead":"2e9eaab851e30e25cbb2ca923c4ddcad8e2ee5f3","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'npm run typecheck -- --watch' 'npm run build:dist -- --watch' 'npm run build:umd -- --watch'","test":"jest -c integration/jest.config.js","build":"npm run build:dist && npm run build:umd","prebuild":"rimraf 'dist' 'umd'","build:umd":"microbundle -f umd -o umd","typecheck":"tsc --noEmit","build:dist":"microbundle -f cjs,es","prepublishOnly":"unset npm_config_cafile && npm run build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"umd:main":"umd/compute-scroll-into-view.min.js","browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.14.6","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"**/package.json":"prettier-package-json --write","*.{js,ts,tsx,json,md}":"prettier --write"},"sideEffects":false,"_nodeVersion":"12.18.3","_hasShrinkwrap":false,"devDependencies":{"jest":"26.4.2","husky":"4.2.5","serve":"11.3.2","rimraf":"3.0.2","prettier":"2.1.1","puppeteer":"5.2.1","jest-junit":"11.1.0","typescript":"4.0.2","lint-staged":"10.2.13","microbundle":"^0.12.3","concurrently":"5.3.0","jest-puppeteer":"4.4.0","prettier-package-json":"2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.16_1599056149207_0.06334240499749866","host":"s3://npm-registry-packages"}},"1.0.17":{"name":"compute-scroll-into-view","version":"1.0.17","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.17","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view-if-needed.netlify.com","bugs":{"url":"https://github.com/stipsan/compute-scroll-into-view/issues"},"dist":{"shasum":"6a88f18acd9d42e9cf4baa6bec7e0522607ab7ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.17.tgz","fileCount":10,"integrity":"sha512-j4dx+Fb0URmzbwwMUrhqWM2BEWHdFGx+qZ9qqASHRPqvTYdqvWnHg0H1hIbcyLnvgnoNAVMlwkepyqM3DaIFUg==","signatures":[{"sig":"MEQCIAXMnYmPsfkY8h9/01n5rW0CPNIeICM9bOWkSOSSiWQ0AiARFhTYPiAN8h4oMh+MIopWx4NxBO3GgdDp32fo95XDqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":88758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNFScCRA9TVsSAnZWagAAZrUP/ApWN1hLltmWNBAR90Rk\nGrrTkTt9rIBHy57Kc5eJZDH/zPyJf8593rlFvZZeWrIZJHxVfjsx1bKN0DBp\n9cwxJbSgj2dmHy/f3A3ITPpYbRzHqJ57UPAGP6bTfM9RMzDjJpoHudvrRTp+\nHsEUPlbFNVA0B7WzRHU8twcs5jyxdpZAZppnbi9tIUIXhipLFj/znuAh7/MN\nTEdZucjmxohPUBLDB3op+kcZ74RU2lBGTba4ySlPZ+/nm864LfNTsfkVFdfn\n5upKKxUmhRpxY/ggwEw+Sy6NKxLeShWZsQDWyh04nk7W/qCseIqFd0FnhW44\nCamjxuHUe4vOslwkkIeCzNq82ENlZTcku/rNjlgJOZHTbxf1pt+UnzOtZUjv\nc+H6ixfFhkSWO9Yo1p2+M/65r8hz021dbLD6KKef3FxFvelmKF/r6EQOipfY\nwAGf8qBehtUyo7aERBMf+6peUsFnSRRYh4lidoDZwScM+i8kiWJ8p+4hzBxz\nmDz4dCnjGt/LPj7SDc4CObRvQFkd0ZtOB9J9yxpvJZwRKK+5T1mIAJ4hcWgs\n7EdPiR/xUnzeDBtIPh7yhArVDhs5U14eQryPq2XpAwqu/wZWALPstY6OCgJe\n1g2g8tHv0XQCeE54faFs1TBaGKnPttYg7xrWxfRgXCko2JrZXuwJv+9ds2qk\nUgDa\r\n=dZMe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"module":"dist/index.module.js","source":"src/index.ts","gitHead":"5e9a74fa69fc8898ad09ff28e948f962d2b4056b","release":{"prepare":["@semantic-release/npm"]},"scripts":{"dev":"concurrently 'npm run typecheck -- --watch' 'npm run build:dist -- --watch' 'npm run build:umd -- --watch'","test":"jest -c integration/jest.config.js","build":"npm run build:dist && npm run build:umd","prebuild":"rimraf 'dist' 'umd'","build:umd":"microbundle -f umd -o umd","typecheck":"tsc --noEmit","build:dist":"microbundle -f cjs,es","prepublishOnly":"unset npm_config_cafile && npm run build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"umd:main":"umd/compute-scroll-into-view.min.js","browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/stipsan/compute-scroll-into-view.git","type":"git"},"_npmVersion":"6.14.11","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"**/package.json":"prettier-package-json --write","*.{js,ts,tsx,json,md}":"prettier --write"},"sideEffects":false,"_nodeVersion":"12.20.2","_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","husky":"5.1.0","serve":"11.3.2","rimraf":"3.0.2","prettier":"2.2.1","puppeteer":"5.5.0","jest-junit":"12.0.0","typescript":"4.1.5","lint-staged":"10.5.4","microbundle":"^0.13.0","concurrently":"5.3.0","jest-puppeteer":"4.4.0","prettier-package-json":"2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.17_1614042268438_0.2001865031419936","host":"s3://npm-registry-packages"}},"1.0.18":{"name":"compute-scroll-into-view","version":"1.0.18","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.18","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"f7b54be0ac676c21e73e84cad686cbe084605e60","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.18.tgz","fileCount":10,"integrity":"sha512-KTRcEZiijhD+89Rwjiw4R7v3JGKrrqqHtz0PShNPBpmpCfyxi8a2DF8nEGrjAchNeli+30xBogkPECfOUteKOA==","signatures":[{"sig":"MEYCIQDHS8lX9xcxwFQYlkGaNajDvCr4ji0KDBkxzzKIQAY0JgIhALhkX4zW3ME4wdM97RRINMlYW3Bsn2lrL/H8U3Hfjkz9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90520,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhZnwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLTg//V4hOz/7ZnADCvJw/pxrq1wEAfNndJoOJzPF4QJaWCY2aclLy\r\n/uNiQpVC0AtvKI+WMw+1FveuZBw3o8USqgsNn20pAXdAmwHLEc93ckHs2njf\r\n2uBMo1a0fAxmrm0y2uUYq1JOJXEesN+FTrhP2gdglod2za9weUQddLO9PbXz\r\nWTaFo49xMvY/TStM4R4ElGQ+DyX560GepRVKRBSguLiKMThrLwQpO/z4T8DE\r\nzTcLjyFPUIEj3qOlCppbbxb+2jzFfCNofprtugrz1Qfjg7gwCPMcWgFDGMAv\r\nKgCcI9Fx9Ht7DG7YTrWNa1JFwrmT0vRBU1ELvvk2Q+NrOXQsT75H1FzyRKCl\r\niiZZe+RmmBCUxjMQEGoUVwmRZrtWPtx5PxKbcR0EPsj2a5d5V0di3Xb7eXns\r\nFG3G+EUyBuGn73ww8+zkOUBJwmmOH/38HDQoLve01xlQo+tAJ2GnzbmQtHUv\r\nIZ5Pe8loCAFdZIWWsMecWcuZqMgJ2o6EsXICPvoMbqwuEg/ho5qeyLJALtvf\r\nyOOliG6IjVZY24Djo0RMKe/xZBmYL8j+JBMknwF4sz8EFjSOkkqyBgxMnfGP\r\nipwQe/TXm8jytTefCxlXOHHc3oeMormk5Phn7xGHpem+EOad5UP0wfsC8N5f\r\n6XxPrUrvFarbWUa/6evjEwzOAF7tNKG8NjM=\r\n=SWGn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs","husky":{"hooks":{"pre-commit":"lint-staged"}},"module":"dist/index.mjs","source":"src/index.ts","exports":{".":{"types":"./typings/index.d.ts","import":"./dist/index.mjs","source":"./src/index.ts","default":"./dist/index.mjs","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"5ff3ebb6fc02ed53370ae99c02b7cc9d825a923d","scripts":{"test":"jest -c integration/jest.config.js","build":"npm run build:dist && npm run build:umd","prebuild":"rimraf 'dist' 'umd'","build:umd":"microbundle -f umd -o umd","typecheck":"tsc --noEmit","build:dist":"microbundle -f cjs,es","prepublishOnly":"npm run build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"umd:main":"umd/compute-scroll-into-view.min.js","browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.{js,ts,tsx,json,md}":"prettier --write"},"sideEffects":false,"_nodeVersion":"18.12.1","_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","husky":"^8.0.1","serve":"^11.3.2","rimraf":"^3.0.2","prettier":"^2.8.0","puppeteer":"^5.5.0","jest-junit":"^12.2.0","typescript":"^4.9.3","lint-staged":"^13.0.3","microbundle":"^0.15.1","jest-puppeteer":"^4.4.0","prettier-plugin-packagejson":"^2.3.0","@sanity/semantic-release-preset":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.18_1669700080420_0.18794529915316605","host":"s3://npm-registry-packages"}},"1.0.19":{"name":"compute-scroll-into-view","version":"1.0.19","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.19","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"47e7449ad165ee4d3409a080a61e2fc4bf5abd50","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.19.tgz","fileCount":10,"integrity":"sha512-CnZQpIeFFlgtZDSjTuIhkFkHhFbzeAPCIbgoiVfJ3OyJpoikCUa4gRu8ASeJbalPkq8nvFGBswch84rK6q+gcQ==","signatures":[{"sig":"MEUCIQD3ILwkMWkLjc8cakPTraLp871JNf1gucZnrRGbeQyZDAIgFufi4/ECPZthW0D0dFYk/EkIFQOR3dipUhPNanFLSj0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhZzYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrQIA//VlR8PuXY2o8NtZQv5U70fSf9uSiKIoXXopK+eDYn7fm6Ykkj\r\nqOvHpAn+q2HCxcvTdX1DBbrc2O+Wf9cOfwvfCllcsS9NxbtONqp5WsLNjpya\r\ndO/v2txJ6GEQwSutopFO4uf9jljaxRAXgCq00gNO20CD9lztKwsund0ZvNho\r\n3ixtoGnXyqcHhkRNIxDLshQAxz3wEtxxmSjL9Pi82IzIk1yNJX6m/fj0enSx\r\ngRGvA27ug/aCMHr+/Kub8uSQ6ojlvH0AqxY1z1coLBZe+NULpYgmtDzHD5lc\r\nfpL3EsUpJsjmzj8tbBs/TEX1shpT04oa3HHoI5PMTLWYUJX3f7CufA9nFRsp\r\nduKtkt99FHPjHvNIyxDmGRQcF24XU/EmtTFz1Meghrlc1FiA2A5WJZfKET8S\r\nWSN6h/Ay73CLYfUXgXqi7ht2TJWhjqt69E2Q0TUlzSZyC8TZVYOrKTJ0WA1i\r\nYuMU/mtb6O3tBLh8jGM70XQYhezHMnO8HVgtzLJBXzSfaje+pIf//TwCqN+7\r\nrcqpgiuj/Y/58m4QZoDZEaP0/ySywKtvgo49MftolXiKn28fCJessGd/O6V+\r\nuZsaIRuoRQwPyAGeEx9+YoDaTMvUtmVMTjP+KOQSs1scHgqCzwIKLeoMWPlM\r\nG+SRXFsWnbjfev3cNu24ntkmB/QZvOCrc4I=\r\n=9Ke+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"module":"dist/index.mjs","source":"src/index.ts","exports":{".":{"types":"./typings/index.d.ts","import":"./dist/index.mjs","source":"./src/index.ts","default":"./dist/index.mjs","require":"./dist/index.js"},"./package.json":"./package.json"},"gitHead":"e73d180c38100eadf82f6260625b1da4ea46509a","scripts":{"test":"jest -c integration/jest.config.js","build":"npm run build:dist && npm run build:umd","prebuild":"rimraf 'dist' 'umd'","build:umd":"microbundle -f umd -o umd","typecheck":"tsc --noEmit","build:dist":"microbundle -f cjs,es","prepublishOnly":"npm run build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5"},"umd:main":"umd/compute-scroll-into-view.min.js","browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.{js,ts,tsx,json,md}":"prettier --write"},"sideEffects":false,"_nodeVersion":"18.12.1","_hasShrinkwrap":false,"devDependencies":{"jest":"^26.6.3","husky":"^8.0.1","serve":"^11.3.2","rimraf":"^3.0.2","prettier":"^2.8.0","puppeteer":"^5.5.0","jest-junit":"^12.2.0","typescript":"^4.9.3","lint-staged":"^13.0.3","microbundle":"^0.15.1","jest-puppeteer":"^4.4.0","prettier-plugin-packagejson":"^2.3.0","@sanity/semantic-release-preset":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.19_1669700824400_0.012707127117850714","host":"s3://npm-registry-packages"}},"1.0.20":{"name":"compute-scroll-into-view","version":"1.0.20","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@1.0.20","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"1768b5522d1172754f5d0c9b02de3af6be506a43","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-1.0.20.tgz","fileCount":10,"integrity":"sha512-UCB0ioiyj8CRjtrvaceBLqqhZCVP+1B8+NWQhmdsm0VXOJtobBCf1dBQmebCCo34qZmUwZfIH2MZLqNHazrfjg==","signatures":[{"sig":"MEUCIGCgwnXBaV0k93TWdcelGw8qYbhdqkiKK0Jbc7fRlQ0kAiEAlG/0Oe5A5TrJvQo2mfyRm/0jzGyAxQGMtsHJcRzSd7U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":92046,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhaM7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4UxAAnrRYBJhelPWvknWhP7Y3qwGj7M/Q6O6Z0GSGVz7qH/rQpcI9\r\n/pWen/dZrNJ2W5BfvrnDIdeA2DMs/suDGj4agfa3AjDmHiVILQZdVsSKBgMG\r\nSFsoh8LA/kVGLA2jvwG4ecJBbWEEAraNr26vALRYJ0dk1GI1YC6noHgOG/8G\r\nl9RtieaG2r1xZEyomueLoEIyDYdT+3DjvTPVUmONTQ+YyHcDTK9Er6ArbMzq\r\n7gMMNKMf22xXrqEIQ7m1Zd9YbnZ64SZW9rj4Cw1I6J6WS/XT1X80us9j3QDP\r\nCqEtmsMvkIJ6dxRsowo+HGrEIYgqLWyxbdQLxQKba0vH4yrvFkMMFNZ8yC4F\r\nFVv6o3mliHXUzaAg1KQUxGPfnfG1Xn7JnxgARTjGebh5puG9ngsxtz89tgD9\r\ncyoU5RDG1WjG4ubc+ar2paE486ldYbA0DekodEtGu7aiV+Azh1Ui0ESsfV5M\r\n52+MdEbGWNWyqyuSNsMVvxo/ZfiYEEpC6h9vs+AukBo/UeEgxiJWwUdhATPP\r\nhs5/0+3GIkICEU7BxeSDjeMH6c7jpfhvHGF/LALbqTmnA3W4+MuwTxoTT4AB\r\nzr5ZsrK2E78uPdQX6Dw0KJXQgr/dUxbSv1jkAB05ZxvQuYB8XJSrw7vmr8/u\r\nsrIUdV2VorKH6TbhOV7loH1GiQD6gUMWIYk=\r\n=Gx0Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","husky":{"hooks":{"pre-commit":"lint-staged"}},"module":"dist/index.mjs","source":"src/index.ts","exports":{".":{"types":"./typings/index.d.ts","import":"./dist/index.mjs","source":"./src/index.ts","default":"./dist/index.mjs","require":"./dist/index.js"},"./package.json":"./package.json"},"gitHead":"9b4e9e661ed439a686ba0eea3c40cc263dd897a7","scripts":{"test":"jest -c integration/jest.config.js","build":"npm run build:dist && npm run build:umd","prebuild":"rimraf 'dist' 'umd'","build:umd":"microbundle -f umd -o umd","typecheck":"tsc --noEmit","build:dist":"microbundle -f cjs,es","prepublishOnly":"npm run build"},"typings":"typings/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"umd:main":"umd/compute-scroll-into-view.min.js","browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/compute-scroll-into-view.min.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"lint-staged":{"*.{js,ts,tsx,json,md}":"prettier --write"},"sideEffects":false,"_nodeVersion":"18.12.1","_hasShrinkwrap":false,"devDependencies":{"jest":"^29.3.1","husky":"^8.0.2","serve":"^14.1.2","rimraf":"^3.0.2","prettier":"^2.8.0","puppeteer":"^19.3.0","jest-junit":"^15.0.0","typescript":"^4.9.3","lint-staged":"^13.0.4","microbundle":"^0.15.1","jest-puppeteer":"^6.1.1","prettier-plugin-packagejson":"^2.3.0","@sanity/semantic-release-preset":"^2.0.2"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_1.0.20_1669702459399_0.14982272366862603","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"compute-scroll-into-view","version":"2.0.0","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@2.0.0","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"c89c3ef4232b40e04f46c9d25e6c6d4baab1f8dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-2.0.0.tgz","fileCount":9,"integrity":"sha512-k/6AvwsblQwn7057dWnOLLAfYAgr7gPInHVF/lCghp3+zjV7J3ixM3iISrlRCHngwANHGuF+DGviTQ4mF7Y2Ow==","signatures":[{"sig":"MEUCIF9Y7VgMVH4/XdXqJvybv4l735wlOE6jlzqWYd9uZ8ALAiEAqADapj7k7BXBXDjABqKjSKJwFwfFTZkFeetmtGIM+gA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82223,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiAoUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqtrw/+Nfa5D61qkPkzIYa1mM7L0aIvQL1BRAMhSrDtZwfqGFEVmXvi\r\nwi8exhOg71jbnlR3aS+h703pKE82kymkadyyUq5yNXHJXUn7RMxYc1NWWVlp\r\nMFB8EqISXL8q4SRiSXTKFHw0ZIhW5h+MUSCxrzmOteE4G27EgWTVStzrxuQa\r\naMfxnAWQQv9Vq713VzvJzvi0jfsLUFuvFjSuina0hZBE1XYivDgwGjSHLoBP\r\n6ozvBx3z09QyD4nFkpcSO33R+fiurF5N0qA4M48IEzVZhxRhMDzRg68sFbEv\r\nHQVMbYsfcfGpL8QAHBVfmO3cuj85kah4G8JW7VkgdAP2MjbbDvuvLy+vlRBS\r\nCP2Lpk65djL+ij9jc1TPf8i/zutXg9oihak1F9DYVJaY5uLlPxcpQN+/moBF\r\nKBL7crgpsOsS4cB9erHlyqJwyQoGGJ49D3jaM8RSkX+MladfZAULyaMdklaH\r\nVr6ijCEjfxx40dFwYYrEkXBiaMML/MF3KE1L7j39AG5gFDVMQZFlLDG+kpJ7\r\nl3+htRRGhc/CHrynsVv/ZkNRAo9QLQCoiUKuueW9LeX4YPRDESDicznKCVro\r\nHcNtqgJ8PZm3+tAOXKlRi+QDErsKdotfYYvEkklGNnqAmCp7R7KlIVLpqf+T\r\nqZyr+wzcaAXPR1ZvqNqkCZBjLQtFgtnfV34=\r\n=oIfx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","source":"./src/index.ts","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"26bd0841809c37e25bda502fae5119c2a7f32bf5","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.12.1","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.3.1","serve":"^14.1.2","rimraf":"^3.0.2","prettier":"^2.8.0","cross-env":"^7.0.3","puppeteer":"^19.3.0","jest-junit":"^15.0.0","typescript":"^4.9.3","@types/jest":"^29.2.3","jest-puppeteer":"^6.1.1","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^1.20.1","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.3.0","@sanity/semantic-release-preset":"^2.0.2","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_2.0.0_1669859859814_0.20698631451240157","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"compute-scroll-into-view","version":"2.0.1","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@2.0.1","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"d1b90c4395c1b54b9e21516e27618aae0cf08822","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-2.0.1.tgz","fileCount":9,"integrity":"sha512-xEntGdXkP2sptu5LX1ejT8YT9hoE61jgemSv6GtNTfjLSZlHjBaSHGdViDNhi1W7XRCW0Uo+CiKWnKoO3V3Mbw==","signatures":[{"sig":"MEQCIGzd+T0kwzwo18gumGWEvNSGm3eyTJDdQfUOs4WTd3mfAiBEAk3d0A56Fax8Sb3aa+x7SWsAFHsqU24zF1CXUR4GjA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":82166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiGOFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmofNBAAhDL+7ti/J9rj5yzgm89Kg3L8esijrWBhAdlIU0aTqhiJg8Gy\r\nl4mrnSL+f6J4sZ74WaQ3bPZBofQbxJRCAXl6j69eGVZzzDFIQ9/M4hNA1XQf\r\nQW8FAGZ0+7kV7492djyTUWxOeNtJKJhGShEx7P8iPyPz0Je9BS6fyJGMCePH\r\nQnOqrkZuQLJoUiWOP4WEL2rr8aSvDrenFiqMwEcxgCuRgl3swocMPhG4e009\r\nZChqx7+EU8peCP02hWb/l9Z0rtw/7bOb2B/C+OO54r7YXiuQ0RKxdPRgqJB3\r\nUAyB0pXUgLa5YUDAzjeWi5/x724Dz/eO16iof8Wce3bdKYsG038kq3fyiZKu\r\nDwcm6CLvSGDnqX2ubjpido6Lo1Zu7YdfeNdKqtvmhFS7UQ/N03UfNYH3E/CS\r\nYJKoY0Kpqkq6LeJQOOzOk/nP2AoMQVx/Xcluy5E3Wjhh+9cMJG+MtnP0ZAJm\r\n9Zu27vxJNZ2ICGrFkPy8sIwHDAuLhEepJ16/gN3PdeJMiGOqnr2NtQxY1ZRq\r\nQRgjhAaXixMkj4sFL0q/DT9zvSEl5ElM6YiNZbfYXO4Djf8OXrokub/6lEjU\r\neJQJrRNOeguQcDzO2hjq2uAvzqADE8O3+uArElqtwNsTzZTH6B912/zDjmRc\r\nKYxgMFI24go1cmjMKXrO/9GnC2bwUFr76hA=\r\n=DH/j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","source":"./src/index.ts","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"a4b2fdd664e92b067974fd7206e8beed39fa14c5","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.12.1","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.3.1","serve":"^14.1.2","rimraf":"^3.0.2","prettier":"^2.8.0","cross-env":"^7.0.3","puppeteer":"^19.3.0","jest-junit":"^15.0.0","typescript":"^4.9.3","@types/jest":"^29.2.3","jest-puppeteer":"^6.1.1","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^1.20.1","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.3.0","@sanity/semantic-release-preset":"^2.0.2","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_2.0.1_1669882757652_0.7472667850279449","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"compute-scroll-into-view","version":"2.0.2","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@2.0.2","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"ac5cc71ca833884866e581a82d8558a6ed7ee877","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-2.0.2.tgz","fileCount":9,"integrity":"sha512-W+4Iti92hktsTtNPNeRM1vE0JdqCBk5qIabRafpr5pGrQhQ+xzCv0NGnFzTCKmW4yGLm9Aovbw8YNxloe2z9tQ==","signatures":[{"sig":"MEUCIQDj6AkkrQ2Y6gD//QEG6wLL/8gG3pxW3gnw83v9WFCd8wIgXPaGe1u2ylibRx0X+utHbyctYxbq5B+8pIxA3v3e/bQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiG3aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqpWA/7BJAuLI9rMjTwqh1F7m7hGjaStPLoJrJiv0wVpyKHe+YQpsTn\r\nE2ZhKA7Wz6Fsw/Ik7145vUd6MtJn/gUmQ4GRqc8k+vEaIYudQOEQkPehZu+r\r\nqS+9gODTAgsl9298SUeqNnrr20asH8MobsC8pPgrolYxmdldgmMjQh6BCFqX\r\n9u6uAPg/M16wA9UdA9iaN1M2gSjWf2BAcbDMGz6TIJR5QAnn5MYv3KZpZ+u0\r\nfAh7WCiuw7GTqxVyJ0pu+KuvQDwD9WTU66fiYD6gWu3d6tBnBJeIeiUh7/HE\r\nk/o96IknOfnyw/0I0niEeNLdM1p3tE7rr4kDaGjFFH7bKW790YomWz6xNL68\r\ncA5Enzl0YoIUxU3BeRzCoijdlkNGOftJbIMLncDUNJOuUtgb+hxSQnF4k4n2\r\nu2FfAThtupfsuiCal83haDHUhM99qZIeI8kjg9HXUQp8GJYbfdabUVX8nKGW\r\nO3KlfMksdJm+jquVV0MHQQ3vkSc45AlI3+wcDUfCK3Z/ugMhI05Dua48hQ4t\r\ndP8BzI+rraXkMAPYH4+LCv4Z9WMW6JLXrHoXwdehDW9ka/79IBQLn2WnEiUa\r\n4hfeFA2dJwF9aRTSUKD0jZ6jqtKFj63Qjk0WFK9mRtbwx1ZMThuLO/eZD5qZ\r\nSlV9K4Ag/G1BqEvdAZMXMhIzwVvTRBDJBx8=\r\n=jynm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"566c5f7dd8ba30ce76546044f3f7a0ec192591fb","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.12.1","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.3.1","serve":"^14.1.2","rimraf":"^3.0.2","prettier":"^2.8.0","cross-env":"^7.0.3","puppeteer":"^19.3.0","jest-junit":"^15.0.0","typescript":"^4.9.3","@types/jest":"^29.2.3","jest-puppeteer":"^6.1.1","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^1.20.1","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.3.0","@sanity/semantic-release-preset":"^2.0.2","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_2.0.2_1669885402665_0.16528958029546037","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"compute-scroll-into-view","version":"2.0.3","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@2.0.3","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"e78c9804a2396a7a47159523b23b0695ad2391cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-2.0.3.tgz","fileCount":9,"integrity":"sha512-mj/AjC7WqXeVlUB6zUq5Qrivb6et0kyasDQcbCWLDusYUqaXng+BfOnhCdRqPOa5/dWNn5e9+u40H6w2BYRdNQ==","signatures":[{"sig":"MEUCIQCgpED+9YRfomVmWX8rqQH8fhExbt3heLmehkX3zOD1rAIgLEpZ9hq3JbZY0vJkny1CDYDYi0ZgMm4WMpBk85u0iyg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38782,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjnykhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr56A/+IGS5v36AuZfaAiS9LtI3q3GqmEhnwzFshcTAkbvQCgCE8HtG\r\n1hzjrEkLTVQ62TSsvzaJNizrFTmws6XLjuQEEpdPYQPNsnCxtn+5lN//2Kxn\r\nW0+lunWta7WK92mmlEPQV6DuUEaY5R0jey3SkoTsTIFSVXMxH02++iR5XEtC\r\nQjuLN1J8styQi6j2MTgPE1CmRufZh8Lc+aheJJeinYgJ1Q5GdeiRG9jfDjt+\r\nJG5wNBQPEB/YNbgK1CtgM65eKqITBEn4229slQsU0680qQS5diorm9CY2aEA\r\n0UlXji8jl6LUDijT0IYgljMyo489EOaR+3LFwQVPEzgKm6P+7XZqMvcL8yLc\r\nND3dWFlnXiF/6/VF6BWDDdSlnoCaKlDg5QlLg1VzKQYqpF1exfjZFldL/AN7\r\nwQopcBABbtMae7POcwUGMu1A7Ai1NDK0g7zF3PNTOcVW5BLYEMM396LuHE3f\r\ntxLrbsdPPCOh2Hqk//OC8LszDZ2XZz9zIHRBAfxFrxLZQW/MnHeVYfM7+ulb\r\nKgvyPh+P286A1skRF7hML01YlI6cuYT6K/0FeGzlDIzaYexrjVuh5AvBMJyJ\r\nQ57tu2iEQdfoDZ7HfahTLuyZZ/Thm3tYkZtTTNHrvannxTOBEAtW3am+WN5x\r\naKsTb5yAwH1Xp82EoxN4BreS5Zx9HP4Z9XU=\r\n=OWEG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"e2ffc1b67170b12a7a325c53faaa78f5c6355f11","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.12.1","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.3.1","serve":"^14.1.2","rimraf":"^3.0.2","prettier":"^2.8.1","cross-env":"^7.0.3","puppeteer":"^19.4.1","jest-junit":"^15.0.0","typescript":"^4.9.4","@types/jest":"^29.2.4","jest-puppeteer":"^6.2.0","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^1.20.4","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.3.0","@sanity/semantic-release-preset":"^2.0.4","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_2.0.3_1671375137493_0.08665718563060953","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"compute-scroll-into-view","version":"2.0.4","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@2.0.4","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"2b444b2b9e4724819d2531efacb7ac094155fdf6","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-2.0.4.tgz","fileCount":9,"integrity":"sha512-y/ZA3BGnxoM/QHHQ2Uy49CLtnWPbt4tTPpEEZiEmmiWBFKjej7nEyH8Ryz54jH0MLXflUYA3Er2zUxPSJu5R+g==","signatures":[{"sig":"MEQCIEtuXmdC3/gwY1PNKokn+Y795JQZ8L3qoYQ2hoa6593KAiAFyBdlv2BJNOHL0VjTrbwR1tz6fArhTAr/riIAxDztaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjuicaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6rQ//Q8pZ7xvKZoUi7IKxaC9x61/r5VM3T4qiUuyLDZifeRXuGVkm\r\n8m0TKEh5MRfQgC1+fMg2xXWy2RkW0SIueMVto9v1QhjLZ8VLzowDmvIPmvra\r\niOt9eV1l4yuOL6e9vTWA2R2TNuYOPTmBKwBN8BiS7ZgyTOOEcIXN/tLE3rzv\r\nNwdIx+M6kf2khUtxoddQnooP8KukFHjQj27HdAyO38Z95KnAJX5QN6LoN7jH\r\nWhotw0r74ggA3m9vdDON84iI+mYUnvGkJuM77akmPTnLBdX4vQsWSM+aXE4Z\r\nu4CnDE2baJuCwL44P7ZCfuRmXt2RO2KFbCF08FYx3oEose692h6JJEHSTeNq\r\nKR23R2YvbyggMaWOMRdfPbU0qThtbNtE6hDgxFg4bafHKsPwhFTwRQo46tQQ\r\ngOc36oaG2T5McXFAXyGRNOVE5/G2eMkUf73Sw1kP/gU1iMSmD2NiAccNo8Ab\r\nid8fRakEGN6hZ2clicKnKfsiLlQOvy/eT03U8wKffpwgE2uujJGcBuDpa72Q\r\npU7c8qAhAdwR5TgZmWdwmgK2td7yZcaVU5X/N78ctmzfM0Ci3YJgrLOO0uQH\r\n3SdEdOzZntikSmsy3IC4ZVLr9V2dMt3W1ssMFFurmNggvcBFILqFytXRRSpy\r\n5uzuLHFCe2ByuK/2sldtHKOXmxvYaIQ3Uwc=\r\n=j3MB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"ea5fdfd8d0f47c226218f113fe28a668c71ab749","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.12.1","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.3.1","serve":"^14.1.2","rimraf":"^3.0.2","prettier":"^2.8.2","cross-env":"^7.0.3","puppeteer":"^19.4.1","jest-junit":"^15.0.0","typescript":"^4.9.4","@types/jest":"^29.2.5","jest-puppeteer":"^6.2.0","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^2.1.1","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.3.0","@sanity/semantic-release-preset":"^3.0.0","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_2.0.4_1673144089877_0.1173455389401683","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"compute-scroll-into-view","version":"3.0.0","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@3.0.0","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"95d2f2f4653e7edda74dd1e38edaaa897918e0f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-3.0.0.tgz","fileCount":9,"integrity":"sha512-Yk1An4qzo5++Cu6peT9PsmRKIU8tALpmdoE09n//AfGQFcPfx21/tMGMsmKYmLJWaBJrGOJ5Jz5hoU+7cZZUWQ==","signatures":[{"sig":"MEQCICzSXzGWhHWhHDAUddYvfIkb1OOnVKHV61jq+AKXG+TLAiA03sGuhOtItmEU8MS0IPWW3Fo+b5mYSwGMBonxjKEQDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj67h/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoSow/8Dmui8citP+pIIFGyuNn17bDA9ujudy6swGiZUp5iSdfV2LFj\r\nQKaOGmxzbf3HjcIy1w5h8CU3/CubRk9menhrwChAbH0h8djaw+7OyTdTNtj8\r\ntAUk8x1w6aJ99xNQ3ki1yB3HZlPb2vMklAkcgtW6LhTl4t1Iv6N3yf8NKrj7\r\ntSCh9Sjg5s4rtd/pV3lGpJPBALIgbV6+drG6cNA0KV6YQhep5Sgpa8Oi+mI+\r\ne6tX+wETKdPgwX9FvehLHawKyXb5BpGSuPQ0RhBifYIo5JQwW0qtj8JLyELt\r\n8lXfPcnLe1JXJSOarmPlD1grestWW90D+c+mEyiTG/WLl3ArfM/7iBSNlf2t\r\n8++r3hTzIHPpqjSPtlAWo5rNODnOnVmN6ogozKC0zkYMy+671GsxmZee+F4o\r\n/Bu4mpe7o/v1q6VOYChbdktxmYcQFkAnH/d8CAMT+5aCxTmtLu60inhlEBMR\r\nt/Mkq2K/9ayHZ3EMabp3mgfLFC5WDQvNdjxNlGzVxKa90XAV35E9imRYdDKI\r\nOtlKK8EacWbqv+ewno9WlxiufodTPgmbGnOiS73+crrdou4bMSmfRry5hX6O\r\nDMqKVsT9xhxt3Y1ILGuLa1GnUMTnMgG3KQt2mBKo7FxZpaGPJGTTffhZelAs\r\nVvnuIR77VTCPZQDh6C/NjuAeXmxi+blaAxo=\r\n=Gp+L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"4c1e6e6303015ac5fc2fafb9b482cc7f7dc38a05","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"8.19.3","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.14.0","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.4.2","serve":"^14.2.0","rimraf":"^4.1.2","prettier":"^2.8.4","cross-env":"^7.0.3","puppeteer":"^19.7.0","jest-junit":"^15.0.0","typescript":"^4.9.5","@types/jest":"^29.4.0","jest-puppeteer":"^7.0.0","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^2.2.5","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.4.3","@sanity/semantic-release-preset":"^4.0.0","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_3.0.0_1676392575469_0.23656486988871372","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"compute-scroll-into-view","version":"3.0.1","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@3.0.1","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"048447a22865ccc386b091914663589393e1bbdf","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-3.0.1.tgz","fileCount":9,"integrity":"sha512-Kx5SbIZf1QMCFctNydxTdhIO2lv9h1DJy6ZSuY8ngArCRMh3rfJVb86KsdslWo/FTPgBmnbtfz80CJDEyfIxzA==","signatures":[{"sig":"MEUCIEYF1g0TGsi43bNjl94rznlLUSvp9iGtRyf1HUnzqFqHAiEA3ajZBCs7NSQgkWmx5/pyCFKI5g0typSROQoQ1Mp/zqA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90275,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMeQSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTlA//Wi72qGgcrivD3LUdpR36Dh4/nvM6hnmiqHeKH98/MB+yoHz8\r\nXY8Z0KElfcpOO54ixtiA8SGkaIAOtN8H3uirQu87msNknXFO6fB4DUdKhP/A\r\n0g4A8e34h/ImuejT8hSqpLxb/ovOH8X248SNhDnjIUggTUM/QX0X53anACQW\r\nNlAnVdK9ovnKqhnGOZs38gDENjEFO9t7nrQC+uXoPatK/ZZYkegaE6eO9Lcz\r\nt3N3PX969+WxaV/2kd/wZX0aKll3o1OLNOiv5e8S5AXXeD0iWOFzb+hRO+aT\r\nI7CLfLt7vlPbgp6dp+5TfvI+3LbU4Mv8ZyHIKRGhDQvfZYBZCrU09RFpdjs5\r\nQquzgbbMUWoKMBftWE3HWcdh8zTHUC+ScAv76RsdpDW203rMxaW1nNy5BxJJ\r\nR0npuAHVRMLa9ftJgQBHAanUXty19uIdW5OAMgbPx/HGkoq2ufEvAzjbFJ7D\r\n8Ej/33CMua9GogA2Kmu1ECzufBeigiCTs0Kbu+v0MV9QmwvYH9GxhO5C3D67\r\nE0FOwRnt1SR7Vk7wKFQeCffd7Qk2RCLBwqAdMcNSMhcOwWe/CmF5Ccpxnf3c\r\nK6n1WyXIETsttPz1JtCEpHDIHyP6dz7kgswYfUcOCq9X6qxkg15mYg/Oq8uk\r\n/g6o6PI8F7WqVqM99mjv3CqsWICQZtGwJNk=\r\n=HlSG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","type":"commonjs","module":"./dist/index.mjs","source":"./src/index.ts","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.mjs","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.js"},"./package.json":"./package.json"},"gitHead":"bfd226f987164ca15667881ca1665815212d7c4e","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"9.6.4","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.15.0","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.5.0","serve":"^14.2.0","rimraf":"^4.1.2","prettier":"^2.8.4","cross-env":"^7.0.3","puppeteer":"^19.7.0","jest-junit":"^15.0.0","typescript":"^5.0.0","@types/jest":"^29.4.0","jest-puppeteer":"^8.0.0","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^2.2.5","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.4.3","@sanity/semantic-release-preset":"^4.0.0","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_3.0.1_1680991250365_0.14481709708318347","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"compute-scroll-into-view","version":"3.0.2","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@3.0.2","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"a951468652058f1b5be262ec19dce8af7866ba04","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-3.0.2.tgz","fileCount":9,"integrity":"sha512-UCXenIpZspASrI2Jsk/eUoa7zpFaD20xIqnC85c1rRIBVS3mOzPKF72QPZYmtcw24ZGqtyiFceBN/JKKVV4ALg==","signatures":[{"sig":"MEYCIQDvpTaYfUM3sg2t6Pcl82BrSl+9dq4so/uTapZ7Cq9BAgIhAOtStbAQt6C+d3tGuh/TT2M1eo6JHzr8/d5nX1573+Ea","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90273,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMqhkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpw5g//ScgCrzqfpcNFBtAnQbFv9yqy/jbkexBBM3L0CMTAAtiSr/UP\r\ncED7qEuXD5DnNkyfMxnvjY8V8XEioiZd+BjrdioHjzN242GLNi51PLpvJaAN\r\n2wrO8t2T9qVR5JKZM4qg+GHNa0CYMlmsY/NAcO+cns4QGdSY6Q/k1JsvRJtT\r\nQvhaATy4lnqLrrFgFN3qXRbQHmBJkM1B8DONg48026ChVIb87lMvXLCi1Rqh\r\nQ9O8rZ+QLZ4kTUZo+BaAfqpO0NvSTc8hvEx1DnpWaTENancpm18NAKs/e6PU\r\nvYA5AHcEQDP1jRHqDx4zM4Lif7le9N4wkFY5dQhNTT6JZzJyfVD9jNL7g8TB\r\nJXkT2hk7PSZnLKhS/j7hx0G0BOal48MImQZLWDP55yYkKcN9+mU9HCTOrgD0\r\nKpNYm/qdqxW//Cu7yfZoRRZ/Tz8PAiFClUqk9Ail5wW1IenbeZQoYnyZX8vE\r\nQovPzdrh/Eubh3f9xcy/kntMWu9hH5rM2QJ8dKVVfx/ALUaSX/vFYgJSoMGl\r\n4T31Xf1JBOafKcAVt0aN8JodSg4tEzsmJiPmpVOphE3+3mMV1kcETSASMxxO\r\nPZHUHa7t8A7HCVW0wgciofkKEofANjnxl9OPA3v6Z/8+MqkCpOKQHf8fgX+o\r\nenmkx0YfRSGdGEvJvj833Z7Q7iMpE8Lxvms=\r\n=9r5R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","source":"./src/index.ts","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"0c45c0afce9650b8cc96dd23ea8efdc90cbd32fe","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"9.6.4","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.15.0","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.5.0","serve":"^14.2.0","rimraf":"^4.1.2","prettier":"^2.8.4","cross-env":"^7.0.3","puppeteer":"^19.7.0","jest-junit":"^15.0.0","typescript":"^5.0.0","@types/jest":"^29.4.0","jest-puppeteer":"^8.0.0","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^2.2.5","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.4.3","@sanity/semantic-release-preset":"^4.0.0","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_3.0.2_1681041507832_0.99130808531","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"compute-scroll-into-view","version":"3.0.3","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@3.0.3","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"c418900a5c56e2b04b885b54995df164535962b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-3.0.3.tgz","fileCount":9,"integrity":"sha512-nadqwNxghAGTamwIqQSG433W6OADZx2vCo3UXHNrzTRHK/htu+7+L0zhjEoaeaQVNAi3YgqWDv8+tzf0hRfR+A==","signatures":[{"sig":"MEQCIBG8ua5zdJx1muBd4InxC9pDSapSa/NXpmwlDds0BvB5AiBTpgRGgBAwReVItx/Y1U7rAMWMsuc5D9rh7aaBD2wYiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":90605,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNCudACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmolzA//V/A5bUZOSy2VTY9v/H18jaOoccQbe3/suKg/ig2yesOz7n1y\r\nhwexBWMCfbh07ZrPiewwbPAUxkVl98jPor77+T7EW6yLHNV73uGHff0vfGak\r\nKNirsgzsb+EdspB0UdILH2v+mcqMH/AI+4RuTlYKqjp5ZB2mfrk2QUvn38BJ\r\nBddrh/5uvx/oPehJiUDBBCJC5VdVgqKvWrc62B8Bxxj5ZwRDmohCjHZeTqtp\r\nRiiSEHUmM+q6j1t+n3z5aRkzl/fjU+YX4lenfNt1/PZlbSNSpz0nbVuNjXpH\r\nNkGO1yVePy0EyUn+p/K0Km7Z8HHyyeHheNL23hvbjbtUDoC84Iq8EiIdYPh+\r\nr05+3zCbAJCWNBLp9MRHxk0UUrVLs7I86Gnzln/VaiupwaPN+1z10fgypMZh\r\naBfOpveOlljyZqgDkrV3IM4teP0RyMSD/INkrIm+2QCvUPnwN4qhI13evNet\r\n1hX7OZDEBGOEv8H+OY+Mn844GOeMyt45nCiJT/eThPw+mh+FdAN0SjF0Jlcb\r\nKB7KTn508qBl8hetm4iATjWnqYPmwQE7ts3WCZIB3RHOQ93XHywIfasjJqd1\r\nzF2EWdAmuwpCVC8HlpdgK6bpoSW6we0c3fR2wRXVenYEgze+Zwd0ab/v/kvO\r\nLCTAAmhrM5Lws/q7rhE5FEpNbPQg2OjbmKc=\r\n=aDBT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","source":"./src/index.ts","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"8ea6a23a30951429f7250848e60fd5bca133334e","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"9.6.4","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.15.0","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.5.0","serve":"^14.2.0","rimraf":"^4.1.2","prettier":"^2.8.4","cross-env":"^7.0.3","puppeteer":"^19.7.0","jest-junit":"^15.0.0","typescript":"^5.0.0","@types/jest":"^29.4.0","jest-puppeteer":"^8.0.0","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^2.2.5","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.4.3","@sanity/semantic-release-preset":"^4.0.0","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_3.0.3_1681140637571_0.44034421633876253","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"compute-scroll-into-view","version":"3.1.0","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"author":{"name":"Cody Olsen"},"license":"MIT","_id":"compute-scroll-into-view@3.1.0","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"homepage":"https://scroll-into-view.dev","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"dist":{"shasum":"753f11d972596558d8fe7c6bcbc8497690ab4c87","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-3.1.0.tgz","fileCount":9,"integrity":"sha512-rj8l8pD4bJ1nx+dAkMhV1xB5RuZEyVysfxJqB1pRchh1KVvwOv9b7CGB8ZfjTImVv2oF+sYMUkMZq6Na5Ftmbg==","signatures":[{"sig":"MEQCIFw7VLh2eSan5WWv6kkIFMa7iGIMP0+c4VLvFT34O2azAiA2IMGicstIaGHm6INx2SqnXb5b6dMKz/U2Oryo/CdbvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":94576},"main":"./dist/index.cjs","type":"module","module":"./dist/index.js","source":"./src/index.ts","exports":{".":{"types":"./dist/index.d.ts","import":"./dist/index.js","source":"./src/index.ts","default":"./dist/index.js","require":"./dist/index.cjs"},"./package.json":"./package.json"},"gitHead":"e2902b8f56550fe0c047508af1a271f611779b75","scripts":{"test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","build":"pkg build --strict","prebuild":"npx rimraf 'dist'","typecheck":"tsc","prepublishOnly":"npm run build"},"typings":"./dist/index.d.ts","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"prettier":{"semi":false,"singleQuote":true},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"repository":{"url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git","type":"git"},"_npmVersion":"9.6.4","description":"The engine that powers scroll-into-view-if-needed","directories":{},"sideEffects":false,"_nodeVersion":"18.18.0","browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead","maintained node versions"],"_hasShrinkwrap":false,"devDependencies":{"jest":"^29.5.0","serve":"^14.2.0","rimraf":"^4.1.2","prettier":"^2.8.4","cross-env":"^7.0.3","puppeteer":"^19.7.0","jest-junit":"^15.0.0","typescript":"^5.0.0","@types/jest":"^29.4.0","jest-puppeteer":"^8.0.0","@types/puppeteer":"^7.0.4","@sanity/pkg-utils":"^2.2.5","@types/expect-puppeteer":"^5.0.2","prettier-plugin-packagejson":"^2.4.3","@sanity/semantic-release-preset":"^4.0.0","@types/jest-environment-puppeteer":"^5.0.3"},"_npmOperationalInternal":{"tmp":"tmp/compute-scroll-into-view_3.1.0_1696060786079_0.8822694412487635","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"compute-scroll-into-view","version":"3.1.1","description":"The engine that powers scroll-into-view-if-needed","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","require":"./dist/index.cjs","import":"./dist/index.js","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","source":"./src/index.ts","typings":"./dist/index.d.ts","scripts":{"prebuild":"npx rimraf 'dist'","build":"pkg build --strict","prepublishOnly":"npm run build","test":"npx cross-env JEST_PUPPETEER_CONFIG='jest-puppeteer.config.cjs' jest -c integration/jest.config.cjs","typecheck":"tsc"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"devDependencies":{"@sanity/pkg-utils":"^2.2.5","@sanity/semantic-release-preset":"^4.0.0","@types/expect-puppeteer":"^5.0.2","@types/jest":"^29.4.0","@types/jest-environment-puppeteer":"^5.0.3","@types/puppeteer":"^7.0.4","cross-env":"^7.0.3","jest":"^29.5.0","jest-junit":"^15.0.0","jest-puppeteer":"^8.0.0","prettier":"^2.8.4","prettier-plugin-packagejson":"^2.4.3","puppeteer":"^19.7.0","rimraf":"^4.1.2","serve":"^14.2.0","typescript":"^5.0.0"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3 kB","compression":"none"}],"gitHead":"16d90f8ac94c585add15d0b7f6d86864c9f0980a","bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"_id":"compute-scroll-into-view@3.1.1","_nodeVersion":"22.12.0","_npmVersion":"9.6.4","dist":{"integrity":"sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==","shasum":"02c3386ec531fb6a9881967388e53e8564f3e9aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/compute-scroll-into-view/-/compute-scroll-into-view-3.1.1.tgz","fileCount":9,"unpackedSize":95312,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF+t1YKN0ViFlGf6qf6YGha34BrJBHCMRhib+kOL0a+8AiBOJUkVJRLypdvNqIau7OG9eq+lhV4EYSLTlNZX6UC4qQ=="}]},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/compute-scroll-into-view_3.1.1_1736536235203_0.8286713288395877"},"_hasShrinkwrap":false}},"time":{"created":"2018-07-05T17:21:49.589Z","modified":"2025-01-10T19:10:35.598Z","0.1.0":"2018-07-05T17:21:49.674Z","1.0.0":"2018-07-05T18:09:28.448Z","1.0.1":"2018-07-05T19:13:23.878Z","1.0.2":"2018-07-05T19:22:28.417Z","1.0.3":"2018-07-17T22:40:51.355Z","1.0.4":"2018-07-18T15:57:35.806Z","1.0.5":"2018-07-18T21:04:17.487Z","1.0.6":"2018-07-21T19:45:58.446Z","1.0.7":"2018-07-21T22:50:51.715Z","1.0.8":"2018-08-14T16:30:54.293Z","1.0.9":"2018-10-04T20:38:45.923Z","1.0.10":"2018-10-06T22:47:32.246Z","1.0.11":"2018-10-07T12:19:18.126Z","1.0.12":"2020-01-02T09:41:36.030Z","1.0.13":"2020-01-22T22:36:56.276Z","1.0.14":"2020-05-27T16:31:56.175Z","1.0.15":"2020-09-02T13:16:31.862Z","1.0.16":"2020-09-02T14:15:49.343Z","1.0.17":"2021-02-23T01:04:28.592Z","1.0.18":"2022-11-29T05:34:40.620Z","1.0.19":"2022-11-29T05:47:04.543Z","1.0.20":"2022-11-29T06:14:19.554Z","2.0.0":"2022-12-01T01:57:39.989Z","2.0.1":"2022-12-01T08:19:17.817Z","2.0.2":"2022-12-01T09:03:22.808Z","2.0.3":"2022-12-18T14:52:17.687Z","2.0.4":"2023-01-08T02:14:50.158Z","3.0.0":"2023-02-14T16:36:15.707Z","3.0.1":"2023-04-08T22:00:50.696Z","3.0.2":"2023-04-09T11:58:27.997Z","3.0.3":"2023-04-10T15:30:37.802Z","3.1.0":"2023-09-30T07:59:46.257Z","3.1.1":"2025-01-10T19:10:35.418Z"},"bugs":{"url":"https://github.com/scroll-into-view/compute-scroll-into-view/issues"},"author":{"name":"Cody Olsen"},"license":"MIT","homepage":"https://scroll-into-view.dev","keywords":["if-needed","scroll","scroll-into-view","scroll-into-view-if-needed","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","typescript"],"repository":{"type":"git","url":"git+https://github.com/scroll-into-view/compute-scroll-into-view.git"},"description":"The engine that powers scroll-into-view-if-needed","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"readme":"[![npm stat](https://img.shields.io/npm/dm/compute-scroll-into-view.svg?style=flat-square)](https://npm-stat.com/charts.html?package=compute-scroll-into-view)\n[![npm version](https://img.shields.io/npm/v/compute-scroll-into-view.svg?style=flat-square)](https://www.npmjs.com/package/compute-scroll-into-view)\n[![gzip size][gzip-badge]][unpkg-dist]\n[![size][size-badge]][unpkg-dist]\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n\n![compute-scroll-into-view](https://user-images.githubusercontent.com/81981/43024153-a2cc212c-8c6d-11e8-913b-b4d62efcf105.png)\n\nLower level API that is used by the [ponyfill](https://ponyfill.com) [scroll-into-view-if-needed](https://github.com/scroll-into-view/scroll-into-view-if-needed) to compute where (if needed) elements should scroll based on [options defined in the spec](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView) and the [`scrollMode: \"if-needed\"` draft spec proposal](https://github.com/w3c/csswg-drafts/pull/1805).\nUse this if you want the smallest possible bundlesize and is ok with implementing the actual scrolling yourself.\n\nScrolling SVG elements are supported, as well as Shadow DOM elements. The [VisualViewport](https://developer.mozilla.org/en-US/docs/Web/API/VisualViewport) API is also supported, ensuring scrolling works properly on modern devices. Quirksmode is also supported as long as you polyfill [`document.scrollingElement`](https://developer.mozilla.org/en-US/docs/Web/API/document/scrollingElement).\n\n- [Install](#install)\n- [Usage](#usage)\n- [API](#api)\n - [compute(target, options)](#computetarget-options)\n - [options](#options)\n - [block](#block)\n - [inline](#inline)\n - [scrollMode](#scrollmode)\n - [boundary](#boundary)\n - [skipOverflowHiddenElements](#skipoverflowhiddenelements)\n\n# Install\n\n```bash\nnpm i compute-scroll-into-view\n```\n\nYou can also use it from a CDN:\n\n```js\nconst { compute } = await import('https://esm.sh/compute-scroll-into-view')\n```\n\n# Usage\n\n```js\nimport { compute } from 'compute-scroll-into-view'\n\nconst node = document.getElementById('hero')\n\n// same behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\nconst actions = compute(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true)\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nconst actions = compute(node, {\n scrollMode: 'if-needed',\n block: 'center',\n inline: 'center',\n})\n\n// Then perform the scrolling, use scroll-into-view-if-needed if you don't want to implement this part\nactions.forEach(({ el, top, left }) => {\n el.scrollTop = top\n el.scrollLeft = left\n})\n```\n\n# API\n\n## compute(target, options)\n\n## options\n\nType: `Object`\n\n### [block](https://scroll-into-view.dev/#scroll-alignment)\n\nType: `'start' | 'center' | 'end' | 'nearest'`
Default: `'center'`\n\nControl the logical scroll position on the y-axis. The spec states that the `block` direction is related to the [writing-mode](https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode), but this is not implemented yet in this library.\nThis means that `block: 'start'` aligns to the top edge and `block: 'end'` to the bottom.\n\n### [inline](https://scroll-into-view.dev/#scroll-alignment)\n\nType: `'start' | 'center' | 'end' | 'nearest'`
Default: `'nearest'`\n\nLike `block` this is affected by the [writing-mode](https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode). In left-to-right pages `inline: 'start'` will align to the left edge. In right-to-left it should be flipped. This will be supported in a future release.\n\n### [scrollMode](https://scroll-into-view.dev/#scrolling-if-needed)\n\nType: `'always' | 'if-needed'`
Default: `'always'`\n\nThis is a proposed addition to the spec that you can track here: https://github.com/w3c/csswg-drafts/pull/5677\n\nThis library will be updated to reflect any changes to the spec and will provide a migration path.\nTo be backwards compatible with `Element.scrollIntoViewIfNeeded` if something is not 100% visible it will count as \"needs scrolling\". If you need a different visibility ratio your best option would be to implement an [Intersection Observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API).\n\n### [boundary](https://scroll-into-view.dev/#limit-propagation)\n\nType: `Element | Function`\n\nBy default there is no boundary. All the parent elements of your target is checked until it reaches the viewport ([`document.scrollingElement`](https://developer.mozilla.org/en-US/docs/Web/API/document/scrollingElement)) when calculating layout and what to scroll.\nBy passing a boundary you can short-circuit this loop depending on your needs:\n\n- Prevent the browser window from scrolling.\n- Scroll elements into view in a list, without scrolling container elements.\n\nYou can also pass a function to do more dynamic checks to override the scroll scoping:\n\n```js\nconst actions = compute(target, {\n boundary: (parent) => {\n // By default `overflow: hidden` elements are allowed, only `overflow: visible | clip` is skipped as\n // this is required by the CSSOM spec\n if (getComputedStyle(parent)['overflow'] === 'hidden') {\n return false\n }\n\n return true\n },\n})\n```\n\n### skipOverflowHiddenElements\n\nType: `Boolean`
Default: `false`\n\nBy default the [spec](https://drafts.csswg.org/cssom-view/#scrolling-box) states that `overflow: hidden` elements should be scrollable because it has [been used to allow programatic scrolling](https://drafts.csswg.org/css-overflow-3/#valdef-overflow-hidden). This behavior can sometimes lead to [scrolling issues](https://github.com/scroll-into-view/scroll-into-view-if-needed/pull/225#issue-186419520) when you have a node that is a child of an `overflow: hidden` node.\n\nThis package follows the convention [adopted by Firefox](https://hg.mozilla.org/integration/fx-team/rev/c48c3ec05012#l7.18) of setting a boolean option to _not_ scroll all nodes with `overflow: hidden` set.\n\n[gzip-badge]: https://img.shields.io/bundlephobia/minzip/compute-scroll-into-view?label=gzip%20size&style=flat-square\n[size-badge]: https://img.shields.io/bundlephobia/min/compute-scroll-into-view?label=size&style=flat-square\n[unpkg-dist]: https://unpkg.com/compute-scroll-into-view/dist/\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/06/24/6cd7ebde44cc0c8b6634f420fd41c40b3b2d55a5245f74deb9c63b5e47b9587f497ae226b038e1993a35313b0fcdda8ed7cdc3ff112f56decbaef486b0d7 b/frontend/.npm-cache/_cacache/content-v2/sha512/06/24/6cd7ebde44cc0c8b6634f420fd41c40b3b2d55a5245f74deb9c63b5e47b9587f497ae226b038e1993a35313b0fcdda8ed7cdc3ff112f56decbaef486b0d7 new file mode 100644 index 0000000..650a0d5 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/06/24/6cd7ebde44cc0c8b6634f420fd41c40b3b2d55a5245f74deb9c63b5e47b9587f497ae226b038e1993a35313b0fcdda8ed7cdc3ff112f56decbaef486b0d7 @@ -0,0 +1 @@ +{"_id":"throttle-debounce","_rev":"40-c121439c62c0ddff062c1bddf6764a0c","name":"throttle-debounce","description":"Throttle and debounce functions.","dist-tags":{"latest":"5.0.2"},"versions":{"0.1.0":{"name":"throttle-debounce","version":"0.1.0","keywords":["throttle","debounce","browserify"],"author":{"url":"http://ivannikolic.com/","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@0.1.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"9ca97140174f10423a3bb0034c67f8819b8d22ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-0.1.0.tgz","integrity":"sha512-oygpHhNLdFnyb5lGmUiBc5mXonEHHQOMDYl9ZN7HynDZW9O7MvHynHDkiywCbUjMD72l1BmEJhqr6ko8SEu/fw==","signatures":[{"sig":"MEYCIQDqcdqyqdVgzzWigv21ic/kB+EsA76wYXR/A+DuHqy/ZgIhAIeivObLdJNKSZfhn/K81DZWHNo48A5FCol5Lv9Y3VtF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"9ca97140174f10423a3bb0034c67f8819b8d22ed","gitHead":"71ed19bd18ae03865c885b66900cf0ca60d4eec9","scripts":{"test":"grunt test"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"browserify":{"transform":["browserify-shim"]},"repository":{"url":"https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"2.1.10","description":"Throttle/debounce your functions.","directories":{"test":"test"},"_nodeVersion":"0.10.32","browserify-shim":{"jquery":"global:$"},"devDependencies":{"grunt":"^0.4.5","grunt-bump":"^0.0.13","grunt-jscs":"^0.6.1","browserify-shim":"^3.8.0","bundle-collapser":"^1.1.0","grunt-browserify":"^3.2.0","grunt-concurrent":"^1.0.0","load-grunt-tasks":"^0.6.0","grunt-contrib-copy":"^0.7.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.4.0","grunt-contrib-jshint":"^0.10.0","grunt-contrib-uglify":"^0.4.0","grunt-contrib-connect":"^0.9.0","grunt-compile-handlebars":"^1.0.0"}},"0.1.1":{"name":"throttle-debounce","version":"0.1.1","keywords":["throttle","debounce","browserify"],"author":{"url":"http://ivannikolic.com/","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@0.1.1","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"d286b6c5cb7b78e0bb81be034b29a22fb29455ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-0.1.1.tgz","integrity":"sha512-PeVsnMxGcbZPz6yguY3OXu68eFjDfLQqiXOMAdbTGwYkuQhy7EFZFn9Ocy76J78JWamUQVnj0m/pqvpBmgUWLQ==","signatures":[{"sig":"MEYCIQDFj+/oIYyclIFs+6e6FQwRUiNY54FZ9SB3CibehqHw/QIhALDm6nC4hKNuK4/Lq6WWXTTJLfz1zCvkhxQseTjXkbbo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","_from":".","_shasum":"d286b6c5cb7b78e0bb81be034b29a22fb29455ae","gitHead":"3b85a8dba946435996e3dbc1c429b41474efa51e","scripts":{"test":"grunt test"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"2.7.1","description":"Throttle/debounce your functions.","directories":{"test":"test"},"_nodeVersion":"0.10.35","dependencies":{"jquery":"^1.11.2"},"browserify-shim":{"jquery":"global:$"},"devDependencies":{"grunt":"^0.4.5","grunt-bump":"^0.0.13","grunt-jscs":"^0.6.1","browserify-shim":"^3.8.0","bundle-collapser":"^1.1.0","grunt-browserify":"^3.2.0","grunt-concurrent":"^1.0.0","load-grunt-tasks":"^0.6.0","grunt-contrib-copy":"^0.7.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-concat":"^0.4.0","grunt-contrib-jshint":"^0.10.0","grunt-contrib-uglify":"^0.4.0","grunt-contrib-connect":"^0.9.0","grunt-compile-handlebars":"^1.0.0"}},"1.0.0":{"name":"throttle-debounce","version":"1.0.0","keywords":["throttle","debounce","browserify"],"author":{"url":"http://ivannikolic.com/","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@1.0.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"487d4a9659a12b486f6928880e602d612ede0a7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-1.0.0.tgz","integrity":"sha512-UaQe/S7/JX+CftvSqVzxEwb8mKs+x9aF6v5pcfzQaFWybcMwF0LYPZVsq9Ju0Vi28S0mNDi0EeGMFdRGrRIpVQ==","signatures":[{"sig":"MEYCIQCotk3JENwPp004DF6syAX0AgPrA0kqBZA61yubSUDdLAIhALPvvNNhWoOaKWptX9FO1VFisbHgtDhisKJdJ3wy+2HA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"487d4a9659a12b486f6928880e602d612ede0a7c","engines":{"node":">=0.10.0"},"gitHead":"9e6862a1b77aa9ef07b68176971d2a7baa83e57e","scripts":{"test":"eslint {index,test/*}.js && karma start --single-run --browsers PhantomJS"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"2.14.22","description":"Throttle/debounce your functions.","directories":{"test":"test"},"_nodeVersion":"4.3.2","dependencies":{},"devDependencies":{"karma":"^0.13.22","mocha":"^2.4.5","eslint":"^1.10.3","qunitjs":"^1.23.1","watchify":"^3.7.0","browserify":"^13.0.0","karma-qunit":"^0.1.9","karma-browserify":"^5.0.4","phantomjs-prebuilt":"^2.1.7","eslint-config-niksy":"^1.0.6","karma-mocha-reporter":"^2.0.2","karma-chrome-launcher":"^0.2.3","karma-firefox-launcher":"^0.1.7","karma-phantomjs-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce-1.0.0.tgz_1462115436230_0.004830267978832126","host":"packages-12-west.internal.npmjs.com"}},"1.0.1":{"name":"throttle-debounce","version":"1.0.1","keywords":["throttle","debounce","browserify"],"author":{"url":"http://ivannikolic.com/","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@1.0.1","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"dad0fe130f9daf3719fdea33dc36a8e6ba7f30b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-1.0.1.tgz","integrity":"sha512-UY6k0BunhpXVx0Emi5PvBQYw8mFoqJtI2B3Cey3xvUD4+A+OhTCo28JoJwXjDXKDX1brQqQn+07f+6SjPJhoTg==","signatures":[{"sig":"MEUCIQDz2y0NMAL7K0ctF9MGThfx3tbiN+9krTFQwv1L72gssQIgRXd9el8pKI2YAPb73w9Fdg6Lx7TKElUVOzAy3wYDrRk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"dad0fe130f9daf3719fdea33dc36a8e6ba7f30b5","engines":{"node":">=0.10.0"},"gitHead":"61fdb73b733aa215ac4928af686406a5d5e83246","scripts":{"test":"eslint {index,test/*}.js && karma start --single-run --browsers PhantomJS"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"2.14.22","description":"Throttle/debounce your functions.","directories":{"test":"test"},"_nodeVersion":"4.3.2","dependencies":{},"devDependencies":{"karma":"^0.13.22","mocha":"^2.4.5","eslint":"^1.10.3","qunitjs":"^1.23.1","watchify":"^3.7.0","browserify":"^13.0.0","karma-qunit":"^0.1.9","karma-browserify":"^5.0.4","phantomjs-prebuilt":"^2.1.7","eslint-config-niksy":"^1.0.6","karma-mocha-reporter":"^2.0.2","karma-chrome-launcher":"^0.2.3","karma-firefox-launcher":"^0.1.7","karma-phantomjs-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce-1.0.1.tgz_1462115756603_0.010101843858137727","host":"packages-16-east.internal.npmjs.com"}},"1.1.0":{"name":"throttle-debounce","version":"1.1.0","keywords":["throttle","debounce","browserify"],"author":{"url":"http://ivannikolic.com/","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@1.1.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"51853da37be68a155cb6e827b3514a3c422e89cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-1.1.0.tgz","fileCount":12,"integrity":"sha512-XH8UiPCQcWNuk2LYePibW/4qL97+ZQ1AN3FNXwZRBNPPowo/NRU5fAlDCSNBJIYCKbioZfuYtMhG4quqoJhVzg==","signatures":[{"sig":"MEYCIQDhhbFkRCfn7h0ohuGRT6FfnJEY+vRViif9C9x+O8fwJgIhAMHOI5406FP/nsDCYYaQk3T/mQl56EISCVYDzD8gTniz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGkt2CRA9TVsSAnZWagAADhkP/jW4ziVrbdoROnsT5v3u\nMeFALy1sRnAqyfUDN2guGsEzBroq3jsMoLTpBZ7wcdELAXNvW8lOuIdJ/2v6\no+GDKzAAptRSBrzjNZ4jURS6gnU+0dRuGzv/3op70f4UbLBG6+63h1xxR8xP\naqsFsM7uB09jRUYcZhNyrWJYhHVobiqalbsr5+4H5OL+G0w0YnbzYc125P2O\nI4qPRha1R6cOzmUk8y+dhFaUepRemxKvK+w2r/+Nqn95sw/6LVaxRb+yVPyH\nL0lvUWnJzYTHtDWwy2UabnDGCJtMsiAmOigYz7ehUK6SfLB6YqDirKqEwIEL\nIU/4XAq/V4wjjRdD+4UuOeq3d20q/g1DT+hiZTrcGnDRoXm8J2tl5oSrDARo\nUXZEOabRMHIl8GILRt7RFTaMsK0X1mgjYe5w7TU4sX05rcTcGf/6sQTu5QI7\nJOMlsAdUJmllXTH6AcjMqRXxB5x71VPD3XwKJyiswXPAnWmXy5szoomVq4wX\nonWnAerlDGkSifNvY1mxKZGCNfIfp8ykavH8mogwTUS0Bs0igtcpS+T/6oWm\n5N1a/PvpZezf18QuQP6ci68pWdooWACTR68JC+ZvMyveWWPElJ58J676Os0S\nhazNXvOkXV5N2Ul4MQP1L+hspfspMMv6CHJaFUxekEE22ABW/tx/lnTZpFZG\nGNUh\r\n=s7IE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4"},"gitHead":"56087b915d6678b331a34e792922a6bafb6562b1","scripts":{"test":"eslint {index,test/*}.js && karma start --single-run --browsers PhantomJS"},"typings":"index.d.ts","_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.1.0","description":"Throttle/debounce your functions.","directories":{"test":"test"},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"karma":"^0.13.22","mocha":"^2.4.5","eslint":"^1.10.3","qunitjs":"^1.23.1","watchify":"^3.7.0","browserify":"^13.0.0","karma-qunit":"^0.1.9","karma-browserify":"^5.0.4","phantomjs-prebuilt":"^2.1.7","eslint-config-niksy":"^1.0.6","karma-mocha-reporter":"^2.0.2","karma-chrome-launcher":"^0.2.3","karma-firefox-launcher":"^0.1.7","karma-phantomjs-launcher":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_1.1.0_1528449909400_0.4534221955288247","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"throttle-debounce","version":"2.0.0","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@2.0.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"2d8d24bd8cf3cb0cc7bd1a2dbeb624b4081a1ed4","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-2.0.0.tgz","fileCount":6,"integrity":"sha512-wY6Sn/xDzgSfagWSj3Ijt5iEEPFwRwgIJbyUYlsptufSnFK0tkr+/qjKr69PAFeiQJnTzHuBZPk6C7nsN/MAOw==","signatures":[{"sig":"MEUCIBlVZ+brfM1yrLaxIz89vQ56cmEGOJ+1TtCws99Gz75hAiEAlUZZS6k0AKiLPP5LTy4wOp10YcKfEbWw1Jk9yhrw4BA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33473,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGlakCRA9TVsSAnZWagAACooP/01kKL7OhdLjWpdr+P+v\nK+hVKQ9abTGlbimg7gunjQJgCl7vnq1n965+HDpcX0ks5hVW6tRBiV82LuTR\nA4Aww7p4Xo8IvULrR2Z4DG4q7f11uukbrHZ3SU+i1NyAV3yFqHc8QhzTlI7Q\nQDfZjfcJE+cPzXmVVRFeS+BjOqcq6+4Fg3VXeQ0HPQSb1rn7UpNY0IQydoVK\n5AjNOYINbvHNgUPR6Zripu3jYYcDGIN+jy9S37CO9MezeFg/s0T+dS5YsgFV\n/np8jS34pmapD9Vth+NhNt6I78T/C7kda81/IDcrQSvzHjEpZO5evUzi8+EN\nlfI/GLwSO+sa/U/yYZRWojXI5xOKtitzHL6c5+6Y+z413rYskVirVXJsP3Xe\nA9CIRFveTVJ/eYEatN5bajzsOELNlDtB5Wr5MR4T8+CX3tjg9/evOPeFJGL2\nAC2c50B+Kqku2nv7ENYRWF2aMCO+QDVJwVem99xWNLzqvlQEKPKCvg2d0B25\nlKy38lNBIYpAVqIIwQ8S4tYfCthlav2xbhXJKkF5J4wOsmbRqOneAbgEiG7N\nAZIt8nJoqOcwI37AVtHuY0iqg1zU3oCFvrURR/DPGcSPUOmmaa/OMSQr1rCc\nVmZE9GPMQ6YGCR4KhWj56SH+N0AfCQUqooKxHS1CB8td3lsng5TvwChUo3Wa\nha1c\r\n=1w0P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","files":["index.cjs.js","index.esm.js","index.d.ts","LICENSE.md","README.md"],"module":"index.esm.js","engines":{"node":">=4"},"gitHead":"e0f77b93b3723fe87174fb2336d9065ea9d6e292","scripts":{"lint":"eslint {index,throttle,debounce}.js","test":"npm run lint && npm run test:automated","build":"rollup --config .rollup.js","prepublish":"npm run build","test:automated":"karma start","test:automated:local":"karma start --browsers Chrome","test:automated:local:watch":"npm run test:automated:local -- --auto-watch --no-single-run"},"typings":"index.d.ts","_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.1.0","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"karma":"^1.1.0","mocha":"^4.1.0","eslint":"^4.19.1","rollup":"^0.60.1","qunitjs":"^1.23.1","watchify":"^3.7.0","rollupify":"^0.5.0","browserify":"^13.0.0","karma-mocha":"^1.3.0","karma-qunit":"^0.1.9","karma-browserify":"^5.0.5","eslint-plugin-node":"^6.0.1","phantomjs-prebuilt":"^2.1.7","eslint-config-niksy":"^5.0.0","eslint-plugin-mocha":"^4.9.0","eslint-plugin-react":"^7.9.1","eslint-plugin-extend":"^0.1.1","karma-mocha-reporter":"^2.2.5","eslint-plugin-promise":"^3.8.0","eslint-plugin-unicorn":"^4.0.3","karma-chrome-launcher":"^1.0.1","karma-firefox-launcher":"^0.1.7","karma-phantomjs-launcher":"^1.0.0","karma-html2js-preprocessor":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_2.0.0_1528452771614_0.5515083833540528","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"throttle-debounce","version":"2.0.1","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@2.0.1","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"7307ddd6cd9acadb349132fbf6c18d78c88a5e62","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-2.0.1.tgz","fileCount":5,"integrity":"sha512-Sr6jZBlWShsAaSXKyNXyNicOrJW/KtkDqIEwHt4wYwWA2wa/q67Luhqoujg48V8hTk60wB56tYrJJn6jc2R7VA==","signatures":[{"sig":"MEUCIBh/WZgfOvfv5w1F+zjwJSNWfyRXKlYNBmw2WhwfCS6LAiEAmVlYhOPnonMJWg98geNnCgHnjBeLDPPP5gQoLWrGr5c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33106,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWdRQCRA9TVsSAnZWagAAgFUP/0wdI26ZfGlCPySlFNEF\n+R1SJBrsekIDrM9iy1mmFHCKEAN39DeMAt6S2mEou0nQjkSe+kd1lI2NB4y1\nW449y8cpsMig/7MFcrMzPK/bKKksJ8eumUJdMngZuNe0Gji2Nc2QEVJoeF8x\nMN4o3he0j2AttOKj9kz2KZO+g9qwjq5sjo0+9mbhnr0EVCGqn39WcSqHyGnR\ngri3d4FRjiyLAMmey2UisXcBQIq1QeRiCaYZpJZCIdNw1IXtV0JiickSG9Rj\n59CPxNUby1+G6KGJfM0ec0OOCd0UNL/fguLJJzTKTVyGPF8a1ZeqcyXcBNPX\nnZteQ9DwGQSzAk9JtMb7U46TiSBtWIwLq1wlhwcItZOiMjPTt2y/r91ZRwoz\nE3/dR4LKXTTs64sNw5tR4CCuHp1rSEe5Mg/2wS0ZiMsTT1IdRA4AJGazVN71\n7kr5zWV7dF/JdUZTKfSaxTLkevQXbWRUEMkgaY2KtIvv0Mqdx1ZX5qu5/cMn\nuc3zciz+BuM8pQIINvRQzFftPWq+hwJhQwLl7EouWhZxe/i8eTCy68apyMlS\nDxCCx5/ZFTNoiWRRVHaBHtCK5LG/ktTXvsKF304G+cHg/k5TszkAf3uKSjtA\ntHyYBSmAKKzwhOE5vRL9FdBP3UOEKB0yG/LZCfDAeqJes2XG4+hK2Ex6DWUD\nzfLk\r\n=Wxjv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","files":["index.cjs.js","index.esm.js","index.d.ts","LICENSE.md","README.md"],"module":"index.esm.js","engines":{"node":">=4"},"gitHead":"48879bed280f80d2b6228513378485597136daf8","scripts":{"lint":"eslint {index,throttle,debounce}.js","test":"npm run lint && npm run test:automated","build":"rollup --config .rollup.js","prepublish":"npm run build","test:automated":"karma start","test:automated:local":"karma start --browsers Chrome","test:automated:local:watch":"npm run test:automated:local -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.2.0","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"karma":"^1.1.0","mocha":"^4.1.0","eslint":"^4.19.1","rollup":"^0.60.1","qunitjs":"^1.23.1","watchify":"^3.7.0","rollupify":"^0.5.0","browserify":"^13.0.0","karma-mocha":"^1.3.0","karma-qunit":"^0.1.9","karma-browserify":"^5.0.5","eslint-plugin-node":"^6.0.1","phantomjs-prebuilt":"^2.1.7","eslint-config-niksy":"^5.0.0","eslint-plugin-mocha":"^4.9.0","eslint-plugin-react":"^7.9.1","eslint-plugin-extend":"^0.1.1","karma-mocha-reporter":"^2.2.5","eslint-plugin-promise":"^3.8.0","eslint-plugin-unicorn":"^4.0.3","karma-chrome-launcher":"^1.0.1","karma-firefox-launcher":"^0.1.7","karma-phantomjs-launcher":"^1.0.0","karma-html2js-preprocessor":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_2.0.1_1532613712242_0.8459629994592657","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"throttle-debounce","version":"2.1.0","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@2.1.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"257e648f0a56bd9e54fe0f132c4ab8611df4e1d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-2.1.0.tgz","fileCount":5,"integrity":"sha512-AOvyNahXQuU7NN+VVvOOX+uW6FPaWdAOdRP5HfwYxAfCzXTFKRMoIMk+n+po318+ktcChx+F1Dd91G3YHeMKyg==","signatures":[{"sig":"MEUCIFWBq3Ew0r2dHc8GHbiO0I8mMV0D/2UWvPn1atc94mLtAiEAibAKn/wxz/cicHxQEPxA/MLFaK7hSIzLsKFYbRcg5PE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPFw2CRA9TVsSAnZWagAA+JcP/A0VrFS2lBpNF6fnOZ8g\nKAsroe13l4YC0bMZJrlHNk7i495HMwog2gGcHfblj9o2kbbW1TCNfG9t5U7W\n8FtaSd0NDyLhdQpnY1pKj7zQrznnm8BSJ5MRVgDdHsnNZyLRPG9xkB3gjPJ2\n/T5wPxej77ObWyS+4cssOLT6sWI14AMkO9SgwfEoqqn2hVd0/mZJQAqf2R1z\nwD4GwRJDttnq+2JxQBFGDA9ts8t8vidW9cEkj5tRDudC92vrygNBoeGA8ccD\nhcBN4yS1QKWNe0ROwVXu8+PFl8q8ZHTHd3PNLvEAh/6wWSOBQP0f21EHkCqk\nU2ZUPGbwezSMkBB2hoaAPGQYITesTW+1cgpIku18GXLaLxxcLKpGQtlKGTlc\nBzqIBkqic+SzPLvIf7QWxz3NflRhp/0H36SUNzFOayKq4t3x22hpc5HM6cE7\nOV+R2NRFu0hZBPjaE2kJ+Oll6io+GEpnP1HgrilVYO0xDSPFdKvu26cZULlK\nI+IWfv/2CFhJcFYHCiNFvMlhkAUKnqKPlRo5TFLusypJOh1Wj2+pO+Ek+uDJ\nRhS9aLS+sHtf7LO54+D2+nMU0PKCv/KP9oxsBzj3Em5vG53iV5uDM0x1gw5W\nwtgRbLwxnFJc2MRICIzyzY7zTJWuDcobtd+pooKWZbqv+aN/7jmMi0i3bMaQ\n34J7\r\n=GTWQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","module":"dist/index.esm.js","engines":{"node":">=8"},"gitHead":"9dca7dcc0a54f4553770d6be8d1ee3d71074857f","scripts":{"lint":"eslint '{index,lib/**/*,test/**/*}.js'","test":"npm run lint && npm run test:automated","build":"rollup --config rollup.config.js","release":"np","prepublish":"npm run build","prepublishOnly":"npm run build","test:automated":"BABEL_ENV=test karma start","test:automated:local":"BABEL_ENV=test karma start --local","test:automated:local:watch":"npm run test:automated:local -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.5.0","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"np":"^3.0.4","esm":"^3.0.51","karma":"^1.1.0","eslint":"^5.4.0","rollup":"^1.0.0","qunitjs":"^1.23.1","webpack":"^4.12.0","minimist":"^1.2.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","babel-loader":"^8.0.4","karma-webpack":"^3.0.0","@babel/runtime":"^7.2.0","babel-preset-niksy":"^4.1.0","eslint-plugin-node":"^7.0.1","eslint-config-niksy":"^6.1.0","eslint-plugin-mocha":"^5.1.0","eslint-plugin-react":"^7.9.1","rollup-plugin-babel":"^4.2.0","eslint-plugin-extend":"^0.1.1","eslint-plugin-import":"^2.13.0","karma-mocha-reporter":"^2.2.5","eslint-plugin-promise":"^4.0.0","eslint-plugin-unicorn":"^5.0.0","karma-chrome-launcher":"^1.0.1","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","@babel/plugin-transform-runtime":"^7.2.0","@babel/plugin-transform-object-assign":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_2.1.0_1547459637558_0.9198340431823313","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"throttle-debounce","version":"2.2.0","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@2.2.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"f68f715b03a8689fd565f38f016db669c859dfc7","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-2.2.0.tgz","fileCount":8,"integrity":"sha512-Oy6p3auC6yLh4B3/WfCcsrFxCXI8xb9RuuBGjoJpbdgdbzg+Pv0P4wGXisMXg7BD4gSRaMcFuY8IIsDVDV4dag==","signatures":[{"sig":"MEYCIQDZau7FGyJpQjAwIbHPw3+VSyBmL9aM6DQJUY1lvL73iQIhAOfPjObcP8lBZ91D1fBEWHoP9mlKTK96lv2DOgvqHV3o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52450,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3lEkCRA9TVsSAnZWagAA5TcP/3biRB0Pu7dIDcC7G0Fw\nvyNzGmrLn13SukeRDIbhMZ8a1EiLGj2JD+JGsXk2Vb2hoCIhCsL1xbLciHo+\n1GLiiWmflPv4EEvGlAdOuMfwIBZKZQj8C8yf2haLvwbaWKAqpkkh+QJ0JOb5\nJ+o/1dkD+ImGyokLM3LxHv77WktTVPYprSo4mM+TZWcVHX4YzjUC2r/t94GS\nWAstVJupnA0Z0xjhmsGugFaRfhptOBbDEzBFf8ciKr8qbgYdptUSYL2Ok5EF\nMdH3jAAcJVaRrhqYf+6uloF0cqgW0fnU0uIFFP4lArGx2aftEfYt81l4S7xV\nwp4xJOGa1doVA+IoMPSScAMVNZoWvPX+jdi03dHtnqMbi1w5lEXeHJu02Wke\nkI24fDEtatCtAYr95IGIq5dRs/KPQ+HNfigNN8Xs54XJSZbs+wVuXYFXYOQm\nep0JsxwdkLIxgnPgxqxcX8KCJDlCFP9+Xi+Akn0XHHG0STZX/K0PzlwBep9l\naljqVQAyEeIL6EiU5UkK0FZ2frdXK3Q6KjtM2sG8ASX0k3ubBZIrk/qv9LHu\n97ELBZuahjyxyGDsMv/Y71G2NxNhj5Fd2WBMOrKZnUf8L4JzC5ok7R552FdG\nafV3ut8Kq7pmZHcdMavt7WNQ8udANSmXxohgg8YbT+kzHZjPn+ozm7vWJnAr\nJBbV\r\n=+N1K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.js","engines":{"node":">=8"},"gitHead":"e15378d61c8c113d7f298bfc6b2cf2f93eee25bb","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run lint && npm run test:automated","build":"rollup --config rollup.config.js","release":"np","version":"version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog","prepublishOnly":"npm run build","test:automated":"BABEL_ENV=test SERVICE_PORT=$(get-port) karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.13.6","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"8.16.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"np":"^3.0.4","esm":"^3.0.51","husky":"^3.1.0","karma":"^4.0.1","eslint":"^6.7.2","rollup":"^1.0.0","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^4.12.0","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^1.17.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^9.5.0","babel-loader":"^8.0.4","get-port-cli":"^2.0.0","karma-webpack":"^3.0.0","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","version-changelog":"^3.1.1","babel-preset-niksy":"^4.1.0","eslint-plugin-node":"^10.0.0","eslint-config-niksy":"^8.0.0","eslint-plugin-jsdoc":"^18.4.3","eslint-plugin-mocha":"^6.2.2","eslint-plugin-react":"^7.9.1","rollup-plugin-babel":"^4.2.0","eslint-plugin-extend":"^0.1.1","eslint-plugin-import":"^2.18.2","karma-mocha-reporter":"^2.2.5","eslint-plugin-promise":"^4.2.1","eslint-plugin-unicorn":"^14.0.1","karma-chrome-launcher":"^2.2.0","eslint-config-prettier":"^4.2.0","eslint-plugin-prettier":"^3.0.1","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.0.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/plugin-transform-object-assign":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_2.2.0_1591628068010_0.04405543366011133","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"throttle-debounce","version":"2.2.1","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@2.2.1","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"fbd933ae6793448816f7d5b3cae259d464c98137","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-2.2.1.tgz","fileCount":8,"integrity":"sha512-i9hAVld1f+woAiyNGqWelpDD5W1tpMroL3NofTz9xzwq6acWBlO2dC8k5EFSZepU6oOINtV5Q3aSPoRg7o4+fA==","signatures":[{"sig":"MEQCIBnHf9d7DuHIsd4U1vJRpjHJwmKwG9C3tu1NpL9N5zXpAiBijKe2Qir3g/mUQ2zzQWU3wgKewr4HHvJ0PVbAeW8DJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52457,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3lNuCRA9TVsSAnZWagAAMBAP/jfeQCcxvJWqXOyR68nw\nQdCnGCijFQ3JNNY6gYKeZTcqsvhxmeaNEfu7n1l77x6iyvLMIUr+jqhGbydj\nu21LCesf2n5ZIH5Z7w39HnrCb0UcOchMbBOSYZahlQyrDQ0GQFECCTElV3K/\n5uu941e40A5QB1dPygt5CMLkdUw4Ouc+o3jwUYvnju5XmR8Lqm1ZDJdKqMha\nmDQzB6fxu4wNxwnuju8Zxtoa/6n+5BoMm6xD/aJA4dSm1k4u5A4cR0vfBub8\nYiverU89UPaBT0Mv2IxOmNiZFf62SXyCYrKqfaOVjEcKWEO8h2iOCyxurGPK\nNQeVJLf8mBoXGTTIZkBcje3l96rKQbhRlD6P4UxyoQjv1YOENN4Qb1Xfipdu\ntYFOwTQoSF/T88VTp6xV+8vLBp+hTbQlrkCl2vX1qreUPOvPcn1lzcWOTTfN\nvaHRiCTk1HHwB3Wjefy9OA3T/8vQqD8gXXXaQeJOmS/5cM/Z63lgKw0c5AUh\nbi2ukwO6Z3uLssoMoMplhlCVrQmTYMTFnXWAVzijKx3dgYqula3FDnpDArBW\nUEihgy/6YIs7vfU+HMsgIvtabgb4n7xmkN6sRft4uLs4eSzXgxYANAuwvoMX\nJO2yCPI8anVCpdw5uziYpCnWdXms3nf3vUhn1pWwqTn721CeVjkP7j7xNtdS\nTjgl\r\n=wpuC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.js","engines":{"node":">=8"},"gitHead":"99e1bbe989c03bf06536cda5dd0521b116491db5","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run lint && npm run test:automated","build":"rollup --config rollup.config.js","release":"np","version":"version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN echo 'github-release-from-changelog'","prepublishOnly":"npm run build","test:automated":"BABEL_ENV=test SERVICE_PORT=$(get-port) karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.13.6","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"8.16.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"np":"^3.0.4","esm":"^3.0.51","husky":"^3.1.0","karma":"^4.0.1","eslint":"^6.7.2","rollup":"^1.0.0","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^4.12.0","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^1.17.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^9.5.0","babel-loader":"^8.0.4","get-port-cli":"^2.0.0","karma-webpack":"^3.0.0","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","version-changelog":"^3.1.1","babel-preset-niksy":"^4.1.0","eslint-plugin-node":"^10.0.0","eslint-config-niksy":"^8.0.0","eslint-plugin-jsdoc":"^18.4.3","eslint-plugin-mocha":"^6.2.2","eslint-plugin-react":"^7.9.1","rollup-plugin-babel":"^4.2.0","eslint-plugin-extend":"^0.1.1","eslint-plugin-import":"^2.18.2","karma-mocha-reporter":"^2.2.5","eslint-plugin-promise":"^4.2.1","eslint-plugin-unicorn":"^14.0.1","karma-chrome-launcher":"^2.2.0","eslint-config-prettier":"^4.2.0","eslint-plugin-prettier":"^3.0.1","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.0.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/plugin-transform-object-assign":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_2.2.1_1591628654223_0.7620916490235905","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"throttle-debounce","version":"2.3.0","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@2.3.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"fd31865e66502071e411817e241465b3e9c372e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-2.3.0.tgz","fileCount":10,"integrity":"sha512-H7oLPV0P7+jgvrk+6mwwwBDmxTaxnu9HMXmloNLXwnNO0ZxZ31Orah2n8lU1eMPvsaowP2CX+USCgyovXfdOFQ==","signatures":[{"sig":"MEUCIDY0S9zR6Q9MfO5nCeIdcjuOP2HvqQOPLSGawVKBD66BAiEA9zNV35nDXvJuqGOh/ponS75rPrYgrZFFDC63iZJGaVI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66376,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfM7jHCRA9TVsSAnZWagAApHgP/iJrt3XsN0SldfC7rEAP\nhpxI0+kILoZym7I1Usbsg65olBkkJp1KV+IcYT8hASnPZljEIJ9mEAA3iR59\nMTeIpO/m4VWb8ONG91rQ7Vh6eUGyD6Sr2P0ARoic737WAzab5JW8xQd06Qf1\nkwbnsChgbW1IFRS4fvJDgsf4lcPOtP+knG70ZbpbA63o9ZbOHYEboXLbQ85s\n50whdSDXjqNZ7svowtFKtAYTpEPI51PMH2tRIm7lBpB+M8NifYXATlPcCfNR\nQ4Mj7XBESkcZRZnQ3ehaJlAzo9ufTtbwW8v4s8bk16xvi0dLy8FFe8FbZtAY\nzDTk1NyLp/gcdpTqJ6KiGfEvgtFhqnm2BTBbwpub8Hto6QbH1nD+ArG5YBiO\nju8jXZfBuuEqGE6TxYDYbuqe+faeVg72SOVLXAvjmLj8KXVgKenkPsnqhJmo\nKwjon9LBesKa+ZGDEsz8ZeAi+C/OX/6jkJMwb1XuQzSP36kx6bv4KKeI6etf\nhLEXuPyaz3pOWs4f3tRb5qEhVrsoloqNlp5w5Ddi5ikbXyvdsyOQ9J2cqCaz\n7ICg79HywSHQDnyzuxhKwHNhHF8JpC9TzEA9fBHMIEO7Tom6t/H/hyECfSUF\n/h7wGGUZrp50stczJuVUzw62cngXZl6L0Vrw5eQZqz5bfUiZ4e1Tosp3EJpH\nGlol\r\n=rJy5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.cjs.js","module":"index.esm.js","browser":"index.umd.js","engines":{"node":">=8"},"gitHead":"6d840334982d8e07f212c4325ada062866555caf","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run lint && npm run test:automated","build":"rollup --config rollup.config.js","release":"np","version":"version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN echo 'github-release-from-changelog'","prepublishOnly":"npm run build","test:automated":"BABEL_ENV=test SERVICE_PORT=$(get-port) karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.14.4","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"np":"^3.0.4","esm":"^3.0.51","husky":"^3.1.0","karma":"^4.0.1","eslint":"^6.7.2","rollup":"^1.0.0","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^4.12.0","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^1.17.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^9.5.0","babel-loader":"^8.0.4","get-port-cli":"^2.0.0","karma-webpack":"^3.0.0","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","version-changelog":"^3.1.1","babel-preset-niksy":"^4.1.0","eslint-plugin-node":"^10.0.0","eslint-config-niksy":"^8.0.0","eslint-plugin-jsdoc":"^18.4.3","eslint-plugin-mocha":"^6.2.2","eslint-plugin-react":"^7.9.1","rollup-plugin-babel":"^4.2.0","eslint-plugin-extend":"^0.1.1","eslint-plugin-import":"^2.18.2","karma-mocha-reporter":"^2.2.5","eslint-plugin-promise":"^4.2.1","eslint-plugin-unicorn":"^14.0.1","karma-chrome-launcher":"^2.2.0","eslint-config-prettier":"^4.2.0","eslint-plugin-prettier":"^3.0.1","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.0.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/plugin-transform-object-assign":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_2.3.0_1597225159381_0.18281961170016547","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"throttle-debounce","version":"3.0.0","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@3.0.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"8d7fd809e123599b17c8d3cf0ee4c4106ab099f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-3.0.0.tgz","fileCount":13,"integrity":"sha512-2B0b5wmu8Hpmtsh9Q+1Lk7Eq0dd1u1XQAifrZr0EMshB80MthC1K7BK3FHG27VQ7g1GuW7fFThiobIjCTCIBTw==","signatures":[{"sig":"MEYCIQDh1MzOMQLsJ858c6SjH/Jk0TsgtZYk/it8Q9SyvD2KxwIhAOSOD40TiA63ZSPvmKVtTneSoQUzXTprrgD8o+7imhnC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67770,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmcfXCRA9TVsSAnZWagAA5ZMP/1q/3zyLt2XshIXu3MuZ\nRZkzzpNg9PCldd7Mr9o17Gfh96Z7T3SzvoaM2yLYv+jGKkGVp2zjaX97FcbE\nnpUrr1FhpTBBqny86E10rvBKbo6lnfOVPra2OHTJ04k6x3nxN+ryTXlUCt98\nqfbW6EG5EbycJaN5RJRer/z+Lli7I1bp6uYk1Mh8QYQrs3h4DuMwTC5lWbPc\nVBT8mkcIaol/OQ5T8jkDHgNw5+K7uZ9rpdapEojJkbv2qYIjGUcLWXcOsKLe\nL00MhROrNvwmd/35WSOs4Wn8CP+T45rQZOcvhWsxkzOhdkzo29xNXji6Bzpn\nKBuPrIoKLKTSO/61v0Up7QqzCqiqXUMFQ2tmC4n7F9kIQn4Hz145ZExYjijS\nNCdGzz7Dv+EWrypT4WxBYvLxhtwsTNRk4oAMmf4tBMacItGGNXggohEafek5\nWvHTsuFhlW+VwIjn9QQ+js58ScZO2B1RYFX/cpAEgrnhA2omCERXPddL1v/Z\nxiHVQnejGPu8iFc2smHc5s7fEp6L0K0dX/oz1+EhEGyEFPI7J+txniU8ikSm\nL5Aky86tS9wpOUiKcUWo+agGP5mB+sG/1mqYtM6DzsXsjlwlklHcNAaqYt+H\nlm9s9rUQUVXnxIGS/jfMjEOTqtUQUKHoRMblLlNPyIUdSpXzpc47+3Vc537V\n1K3f\r\n=I6VW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"cjs/index.js","unpkg":"umd/index.js","module":"esm/index.js","engines":{"node":">=10"},"exports":{".":{"import":"./esm/index.js","require":"./cjs/index.js"}},"gitHead":"0cdacc688dc2f60ef7b2fb6ee8e0ac336e43a60b","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run lint && npm run test:automated","build":"rollup --config rollup.config.js","release":"np --no-release-draft","version":"version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog","module-check":"node -e 'require(\"throttle-debounce\");' && node --input-type=module -e 'import \"throttle-debounce\";'","prepublishOnly":"npm run build && npm run module-check","test:automated":"BABEL_ENV=test karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"jsdelivr":"umd/index.js","repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.14.4","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"12.18.0","_hasShrinkwrap":false,"devDependencies":{"np":"^6.5.0","esm":"^3.0.51","husky":"^4.3.0","karma":"^5.2.3","mocha":"^4.1.0","eslint":"^7.11.0","rollup":"^2.32.1","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^4.44.2","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^2.1.2","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^10.4.2","babel-loader":"^8.1.0","get-port-cli":"^2.0.0","karma-webpack":"^4.0.2","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","version-changelog":"^3.1.1","babel-preset-niksy":"^4.1.0","eslint-plugin-node":"^11.1.0","eslint-config-niksy":"^9.0.0","eslint-plugin-jsdoc":"^30.7.3","eslint-plugin-mocha":"^8.0.0","eslint-plugin-react":"^7.9.1","rollup-plugin-babel":"^4.2.0","@rollup/plugin-babel":"^5.2.1","eslint-plugin-extend":"^0.1.1","eslint-plugin-import":"^2.22.1","karma-mocha-reporter":"^2.2.5","eslint-plugin-promise":"^4.1.1","eslint-plugin-unicorn":"^23.0.0","karma-chrome-launcher":"^3.1.0","eslint-config-prettier":"^6.14.0","eslint-plugin-prettier":"^3.0.1","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.6.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/plugin-transform-object-assign":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_3.0.0_1603913686701_0.031103391985898066","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"throttle-debounce","version":"3.0.1","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@3.0.1","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"32f94d84dfa894f786c9a1f290e7a645b6a19abb","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-3.0.1.tgz","fileCount":13,"integrity":"sha512-dTEWWNu6JmeVXY0ZYoPuH5cRIwc0MeGbJwah9KUNYSJwommQpCzTySTpEe8Gs1J23aeWEuAobe4Ag7EHVt/LOg==","signatures":[{"sig":"MEYCIQCRyNIWsTQrXkpmDThtJ6np+UpN4VpgqdK9rCZ4oJnRtwIhAPsGMVhozaRB/JfNL32XgfTGkZ01mRNiQIejBxVebitB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfn+n4CRA9TVsSAnZWagAA7VIP/RuqZeeeKaz1tIVWjoSV\nIuPgahisJf78ZnNO7K9XvepHT2fBM539C2Kuf+6eP8hOtk7sJqbiyY7rnVWs\n4MSXSFLkb3m7wKEKj6D4tpsAC7bRZsY5PecKRoBNw4IzB40dvSx9gc8dXMQt\nUi6A2ku8QQh9gShSglbd0rLSpSb8DFbHtzjJDeiiowy6LSpJCXhiKbmHWAkw\nPVKZ/vIscOn96ov2mI3oO7RXN4w0CtA6nSc5YDjvkXr9/eEnK2qaNBhcKv1h\nv39RbKn2Dt72y4eKiqhoJNimRNlhGWNgjaiiBkBl3XAi3HzK7/vYlgeqLHzf\nAPFow4iw6CB3khFN6mENNbNUvuHec9yvP5aP32nE/TSDpZx9ZSZ9gHt7RNYj\nAyXcA3aq/21VIM0QMHcb8UK/5lBb7hGJ9PBRchyjuwRmp2MIy/5BdO+nBLDw\nzV6b7lzowhsZisCFAR492qet0FEX429m3ExyHurp1M962j50zwX+fDf02UX+\nAIgzRIFOipbB9mvRoZJ1baJgccX11OzDomRPZGTgnsQ924p+ZEfI/j5Qusmz\nlLTg0+A8PO1ZPYnTUAsVdXqTBvjcbha7YSz3iwnjIbulKWP35D81riYMlHIl\ncXnEushDDK/FHQT1ddyzx5tKlGSKdwDjP8bGq6qv6Yqu2XsGnrak459BpsHy\ntUHc\r\n=PdyL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"cjs/index.js","unpkg":"umd/index.js","module":"esm/index.js","engines":{"node":">=10"},"exports":{".":{"import":"./esm/index.js","require":"./cjs/index.js"},"./package.json":"./package.json"},"gitHead":"67aab0fdfe701b700741bdc2202d923e4b1fc0c3","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run lint && npm run test:automated","build":"rollup --config rollup.config.js","release":"np --no-release-draft","version":"version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog","module-check":"node -e 'require(\"throttle-debounce\");' && node --input-type=module -e 'import \"throttle-debounce\";'","prepublishOnly":"npm run build && npm run module-check","test:automated":"BABEL_ENV=test karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"jsdelivr":"umd/index.js","repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"6.14.4","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"12.18.0","_hasShrinkwrap":false,"devDependencies":{"np":"^6.5.0","esm":"^3.0.51","husky":"^4.3.0","karma":"^5.2.3","mocha":"^4.1.0","eslint":"^7.11.0","rollup":"^2.32.1","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^4.44.2","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^2.1.2","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^10.4.2","babel-loader":"^8.1.0","get-port-cli":"^2.0.0","karma-webpack":"^4.0.2","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","version-changelog":"^3.1.1","babel-preset-niksy":"^4.1.0","eslint-plugin-node":"^11.1.0","eslint-config-niksy":"^9.0.0","eslint-plugin-jsdoc":"^30.7.3","eslint-plugin-mocha":"^8.0.0","eslint-plugin-react":"^7.9.1","rollup-plugin-babel":"^4.2.0","@rollup/plugin-babel":"^5.2.1","eslint-plugin-extend":"^0.1.1","eslint-plugin-import":"^2.22.1","karma-mocha-reporter":"^2.2.5","eslint-plugin-promise":"^4.1.1","eslint-plugin-unicorn":"^23.0.0","karma-chrome-launcher":"^3.1.0","eslint-config-prettier":"^6.14.0","eslint-plugin-prettier":"^3.0.1","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.6.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/plugin-transform-object-assign":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_3.0.1_1604315640303_0.4457450689021403","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"throttle-debounce","version":"4.0.0","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@4.0.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"ec763b1c050c3a8f73eddd2e853a720893102a40","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-4.0.0.tgz","fileCount":13,"integrity":"sha512-bO2OiH++k8Z3cTNZccOJRlxY5Sk3Tx3Kz6cQl3VY5pTRcEgqbPxwEKtrC00whFAo2jIBQlaH1ZG5mtfrBef3qw==","signatures":[{"sig":"MEQCIAZVq4mKfVF5k95IfGimq5uU79ODcPVMeFZYcdgw96yHAiAoOYSTicfKnEAJp/yTKQDScxewSKdFWZvuQz2FZnvf9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78592,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiU901ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmryqw/7BQB+vnbOvlRGJ62sb8HT9Fpsz1xb82lsYnlD4wyi2ZdKCoC9\r\no3H+xr52kqnwfOLnDJVfB1LqMbpOCZ9oTmsOIlH89uuZbSJZmBYftSsQABfO\r\nIOxSdac4P3fb23VJ6/HvIREd+aiHLKOVht1n4I7izdnC7gdSrEy8lOf3hDx4\r\nFYfBUY5xWx7xcCv/MR4UP/VHxmyBBH0Yz38tGLBeWwRkVijaPCak6N1EgKaA\r\nLAKz7Ryg9PRJCa97w5MrTMMcMsgc5ivwpI5/3dKKIuK7cHPN0LWvUH5giZOv\r\n2wLoalx8j3xraxw5gXqxLq7w7YRikaKDJHXBCPwipJdCJankvkVeBAJyFaKt\r\n114uNq+08QG55F+pCPr/VmgtbaXnKTDoafVMccoxbRk8nxtXQpD89xPcLT8m\r\nDKWaZKIOn2nZqls0/cWw8phyXxcNHbvVH4eLPZG9qbNGFZWC3FMUIZeJh4+M\r\n1o/njatbJVlYW72Gj5q2Op6dptFfIhsOD/4ku/dTv8USj1L0e8RFCcxh8AEc\r\nkpZsZvzDt+Sd7nKHcHcEMx4p6x2gpugiPTZG5EX10x4BP9uMfgaFvGMyIrDD\r\n7XAxN9o2WyhcRAvde9Ty1soOv7ifIW76VSO+U/3cWuoTxROP2atDU7xnFDAG\r\nm41HGPXE868nSsSKZTHMGEiGjMdQRdOG3e4=\r\n=vOdh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"cjs/index.js","unpkg":"umd/index.js","module":"esm/index.js","engines":{"node":">=12.22"},"exports":{".":{"import":"./esm/index.js","require":"./cjs/index.js"},"./package.json":"./package.json"},"gitHead":"84ae75db88a0ef796b56fcc2bf2435556012bc31","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run test:automated","build":"rollup --config rollup.config.js","release":"np --no-release-draft","version":"if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi","prerelease":"npm run lint && npm run build && npm run module-check","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog","module-check":"node -e 'require(\"throttle-debounce\");' && node --input-type=module -e 'import \"throttle-debounce\";'","prepublishOnly":"npm run build","test:automated":"BABEL_ENV=test karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"jsdelivr":"umd/index.js","repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"8.1.3","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"16.13.0","_hasShrinkwrap":false,"devDependencies":{"np":"^7.6.0","esm":"^3.0.51","husky":"^4.3.0","karma":"^5.2.3","eslint":"^8.5.0","rollup":"^2.32.1","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^5.2.0","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^2.4.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^10.4.2","babel-loader":"^8.1.0","get-port-cli":"^2.0.0","karma-webpack":"^5.0.0","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","@babel/preset-env":"^7.12.1","version-changelog":"^3.1.1","node-stdlib-browser":"^1.2.0","@rollup/plugin-babel":"^5.2.1","karma-mocha-reporter":"^2.2.5","eslint-config-nitpick":"^11.1.0","karma-chrome-launcher":"^3.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.6.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_4.0.0_1649663285171_0.051215790870408284","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"throttle-debounce","version":"4.0.1","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@4.0.1","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"f86656fe9c8a6b8218952ef36c3bf225089b1baf","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-4.0.1.tgz","fileCount":13,"integrity":"sha512-s3PedbXdZtr8v3J5Sxd5T/GmWG80BcK5GVpwDdvgEaUXsaMqQe4zxgmC4TA7B8luSDCPxo3CeSBS3F9rF1CZwg==","signatures":[{"sig":"MEYCIQCY4NjVYM9pfvf9Z5V3oemsXiWJZ48Tbi4TvCI1kOcH7QIhAO8Yw/AP+vy6CWxebhCoqJ6yNQ3QwCJeQtrNq5C4BiF1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWRHsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo1XBAAiH+vSXmkcmKdVzEoea6QV0MNRQkBkqUJa4LoL18OLw2Me+V6\r\nV9bEHrmGcYs+wxqBb4CpGalpdCyozQyw/qsKZsC9ekb8jyj7ODrlEXkG9PSj\r\nVa9IaDSY0Ig1BJ2J5UmQqCVBwLF6oDI9TJu3sHGT6dO8Yw1kn5G2dHouNRWB\r\nI1pDUpovSBfInjEWeEfy3nAC3P40g/6VSECiN00y2281PZDb6Lo41taAuL2h\r\nh3XT5l+/E1g9zPOOx/IKUvCeHgbXE1DqPGrcJAuBN1MGfq7DUrdfXvFPjSyp\r\noWIyCsF4M1L+1GWEIuncDBgZ3SJPYbLs7cnUK9i3P4MUJtOX8C0v2rYScYjx\r\npufkSZWWzroAgLxtDGOyfMu7F4U9hScbuI6ERDxC3Rcuat023Q/J3g7leipl\r\nr2pULnY52Zg8Zezv//skV8KUMSljmeZ5ikuvVf0qbXqFfkC/T9cNyEYFWjDJ\r\nbbBIYMfCXXl46sjrptQrKmqcICE/bFn+sRTBVsfNFvo/TXjFUiqxeP/h0gka\r\nBAWUJbpsQVPlDXijx57FZGDZkvvVUJ5pMmo/VdBkzTZQ5fD1/NT/7hRgYCkQ\r\neHgYTTrxRsCHwDCO61/2E+iigXfamFB0vh3KB0QGGI6a3dRLsJxY3SIjLfov\r\nY9K7gxmpudEAfzplHUIe3EgRBE5rt+uqFIw=\r\n=Cbdx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"cjs/index.js","unpkg":"umd/index.js","module":"esm/index.js","engines":{"node":">=12.22"},"exports":{".":{"import":"./esm/index.js","require":"./cjs/index.js"},"./package.json":"./package.json"},"gitHead":"203deec24d78abf50751a48c10d0ca7ab1896806","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run test:automated","build":"rollup --config rollup.config.js","release":"np --no-release-draft","version":"if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi","prerelease":"npm run lint && npm run build && npm run module-check","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog","module-check":"node -e 'require(\"throttle-debounce\");' && node --input-type=module -e 'import \"throttle-debounce\";'","prepublishOnly":"npm run build","test:automated":"BABEL_ENV=test karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"jsdelivr":"umd/index.js","repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"8.1.3","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"16.13.0","_hasShrinkwrap":false,"devDependencies":{"np":"^7.6.0","esm":"^3.0.51","husky":"^4.3.0","karma":"^5.2.3","eslint":"^8.5.0","rollup":"^2.32.1","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^5.2.0","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^2.4.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^10.4.2","babel-loader":"^8.1.0","get-port-cli":"^2.0.0","karma-webpack":"^5.0.0","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","@babel/preset-env":"^7.12.1","version-changelog":"^3.1.1","node-stdlib-browser":"^1.2.0","@rollup/plugin-babel":"^5.2.1","karma-mocha-reporter":"^2.2.5","eslint-config-nitpick":"^11.1.0","karma-chrome-launcher":"^3.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.6.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_4.0.1_1650004460503_0.7490592726031136","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"throttle-debounce","version":"5.0.0","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@5.0.0","maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"a17a4039e82a2ed38a5e7268e4132d6960d41933","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-5.0.0.tgz","fileCount":13,"integrity":"sha512-2iQTSgkkc1Zyk0MeVrt/3BvuOXYPl/R8Z0U2xxo9rjwNciaHDG3R+Lm6dh4EeUci49DanvBnuqI6jshoQQRGEg==","signatures":[{"sig":"MEQCICVrrDU5jQi2EuAzYysd2tE0h/1luaa+sF2Qm8Gf6AiMAiBO21V6lPPkqtyvWnVOrN1tBv5oqAHMbA/EkB+Jp8xrUA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":83093,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJib5N6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqbdhAAovhZ1xv5RnO04DnY5hxUpyWn/K4KkvSz9nn3nvdXlL4FtZwg\r\nQhiUxPvZiuXs3H3X4WYezESTOhgbL7E85GGO595R0Ztg1MVSG/BbQ+BBcUZd\r\nm4Hrv0Hms9EY6KSzhjAaFrCHArMG5Erzsfjvx7YGOsmg7G2AF2M2eSm7CNVV\r\nQtYvJqgPgKpycYmS0++ouhJ2eU+pcLF8nkJZC26ipdqmRusRA8W6BF+BJ4YW\r\n2BL+Ap49aI8hqEBW0i25HKIphNTAr1QBgLXHOF0EDbKcSA9SJwJ2ksxf4Fhe\r\nuzbPzdX7zCRMiipwW0R8TD5JSgpMZJp++jIq0ZwgUFIWEWp2vXhuA9FvRCRC\r\nRKXq+sUrKx61z2wRq+uFgltisGDaqMSUlC1JCMLzYtKKd5wxo/lIVUJPH30P\r\ngeFJiQYBkwzxzuW+mkY8iucAwHoAM5v4U12XKhO9EFgBGf5QukWy4SgPzENK\r\nPqGpYURL4NTCRK+y4BsFkM+tH/TJO6eynKhGYXuyfDbA2gRxwmQCBXAO+btm\r\n5Y/UFY3z129IE9NyUT6aNsihvvq90Z8Bz/5Z3JQbqf67ySZkJ+zxOKdKvBsC\r\nTRFLX1W0B29dnBCMtc6L/REGzjAfbAoAYnA1MJxPc2tZTobXJBOHDrm3n9NH\r\nS+SHKZi2sTUuVayFy3u5fikmwIHEbOwhdeM=\r\n=FDDT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"cjs/index.js","unpkg":"umd/index.js","module":"esm/index.js","engines":{"node":">=12.22"},"exports":{".":{"import":"./esm/index.js","require":"./cjs/index.js"},"./package.json":"./package.json"},"gitHead":"f60c45f6cc4848bebcb02800b34dc3708ccaa3c4","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run test:automated","build":"rollup --config rollup.config.js","release":"np --no-release-draft","version":"if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi","prerelease":"npm run lint && npm run build && npm run module-check","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog","module-check":"node -e 'require(\"throttle-debounce\");' && node --input-type=module -e 'import \"throttle-debounce\";'","prepublishOnly":"npm run build","test:automated":"BABEL_ENV=test karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"jsdelivr":"umd/index.js","repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"8.1.3","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"16.13.0","_hasShrinkwrap":false,"devDependencies":{"np":"^7.6.0","esm":"^3.0.51","husky":"^4.3.0","karma":"^5.2.3","eslint":"^8.5.0","rollup":"^2.32.1","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^5.2.0","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^2.4.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^10.4.2","babel-loader":"^8.1.0","get-port-cli":"^2.0.0","karma-webpack":"^5.0.0","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","@babel/preset-env":"^7.12.1","version-changelog":"^3.1.1","node-stdlib-browser":"^1.2.0","@rollup/plugin-babel":"^5.2.1","karma-mocha-reporter":"^2.2.5","eslint-config-nitpick":"^11.1.0","karma-chrome-launcher":"^3.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.6.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_5.0.0_1651479418065_0.5409698631962121","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"throttle-debounce","version":"5.0.1","keywords":["debounce","throttle"],"author":{"url":"http://ivannikolic.com","name":"Ivan Nikolić","email":"niksy5@gmail.com"},"license":"MIT","_id":"throttle-debounce@5.0.1","contributors":[{"url":"http://benalman.com","name":"Ben Alman"}],"homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"dist":{"shasum":"806835907183b9eaab281485f894797729489b7b","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-5.0.1.tgz","fileCount":13,"integrity":"sha512-mobESsRUkGlI61RMx4f3qCytoT0eDXMLkhqhI5KGOe2OVckj4+m26Wsz/30/P8A2WCV+hGoExbk0Tw1pvmhndQ==","signatures":[{"sig":"MEUCIH+c4MVvORpkgBAv1jJ5zpX6fBlYPdSWftbwl+zT6RbnAiEAvg+LAVQbU9Xs0zEiZAiqsPg2mq8YXZ6tDluSPkXGPOc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68435},"main":"cjs/index.js","unpkg":"umd/index.js","module":"esm/index.js","engines":{"node":">=12.22"},"exports":{".":{"import":"./esm/index.js","require":"./cjs/index.js"},"./package.json":"./package.json"},"gitHead":"c12c765612243cbc0a90bd390b6bfa7024ec168a","scripts":{"lint":"eslint '{index,debounce,throttle,test/**/*}.js'","test":"npm run test:automated","build":"rollup --config rollup.config.js","release":"np --no-release-draft","version":"if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi","prerelease":"npm run lint && npm run build && npm run module-check","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog","module-check":"node -e 'require(\"throttle-debounce\");' && node --input-type=module -e 'import \"throttle-debounce\";'","prepublishOnly":"npm run build","test:automated":"BABEL_ENV=test karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run"},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"jsdelivr":"umd/index.js","repository":{"url":"git+https://github.com/niksy/throttle-debounce.git","type":"git"},"_npmVersion":"10.2.4","description":"Throttle and debounce functions.","directories":{"test":"test"},"sideEffects":false,"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"devDependencies":{"np":"^7.6.0","esm":"^3.0.51","husky":"^4.3.0","karma":"^5.2.3","eslint":"^8.5.0","rollup":"^2.32.1","core-js":"^2.6.5","qunitjs":"^1.23.1","webpack":"^5.2.0","get-port":"^4.0.0","minimist":"^1.2.0","prettier":"^2.4.0","@babel/cli":"^7.2.3","@babel/core":"^7.2.2","karma-qunit":"^0.1.9","lint-staged":"^10.4.2","babel-loader":"^8.1.0","get-port-cli":"^2.0.0","karma-webpack":"^5.0.0","@babel/runtime":"^7.2.0","changelog-verify":"^1.1.2","@babel/preset-env":"^7.12.1","version-changelog":"^3.1.1","node-stdlib-browser":"^1.2.0","@rollup/plugin-babel":"^5.2.1","karma-mocha-reporter":"^2.2.5","eslint-config-nitpick":"^11.1.0","karma-chrome-launcher":"^3.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"^0.3.7","karma-browserstack-launcher":"^1.6.0","github-release-from-changelog":"^2.1.1","@babel/plugin-transform-runtime":"^7.2.0"},"_npmOperationalInternal":{"tmp":"tmp/throttle-debounce_5.0.1_1719237173077_0.40163377322233695","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"throttle-debounce","version":"5.0.2","description":"Throttle and debounce functions.","license":"MIT","author":{"name":"Ivan Nikolić","email":"niksy5@gmail.com","url":"http://ivannikolic.com"},"contributors":[{"name":"Ben Alman","url":"http://benalman.com"}],"sideEffects":false,"exports":{".":{"import":"./esm/index.js","require":"./cjs/index.js"},"./package.json":"./package.json"},"main":"cjs/index.js","jsdelivr":"umd/index.js","unpkg":"umd/index.js","module":"esm/index.js","directories":{"test":"test"},"scripts":{"build":"rollup --config rollup.config.js","lint":"eslint '{index,debounce,throttle,test/**/*}.js'","module-check":"node -e 'require(\"throttle-debounce\");' && node --input-type=module -e 'import \"throttle-debounce\";'","prepublishOnly":"npm run build","postpublish":"GITHUB_TOKEN=$GITHUB_RELEASE_TOKEN github-release-from-changelog","release":"np --no-release-draft","test":"npm run test:automated","test:automated":"BABEL_ENV=test karma start","test:automated:watch":"npm run test:automated -- --auto-watch --no-single-run","version":"if [ $(git rev-parse --abbrev-ref HEAD) == 'master' ]; then sed -i '' '/\\[unreleased\\]:/d' CHANGELOG.md && version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md; else echo; fi","prerelease":"npm run lint && npm run build && npm run module-check"},"devDependencies":{"@babel/cli":"^7.2.3","@babel/core":"^7.2.2","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.12.1","@babel/runtime":"^7.2.0","@rollup/plugin-babel":"^5.2.1","babel-loader":"^8.1.0","changelog-verify":"^1.1.2","core-js":"^2.6.5","eslint":"^8.5.0","eslint-config-nitpick":"^11.1.0","eslint-config-prettier":"^8.3.0","eslint-plugin-prettier":"^4.0.0","esm":"^3.0.51","get-port":"^4.0.0","get-port-cli":"^2.0.0","github-release-from-changelog":"^2.1.1","husky":"^4.3.0","karma":"^5.2.3","karma-browserstack-launcher":"^1.6.0","karma-chrome-launcher":"^3.1.0","karma-firefox-launcher":"^0.1.7","karma-mocha-reporter":"^2.2.5","karma-qunit":"^0.1.9","karma-sourcemap-loader":"^0.3.7","karma-webpack":"5.0.0","lint-staged":"^10.4.2","minimist":"^1.2.0","node-stdlib-browser":"^1.2.0","np":"^7.6.0","prettier":"^2.4.0","qunitjs":"^1.23.1","rollup":"^2.32.1","version-changelog":"^3.1.1","webpack":"^5.2.0"},"engines":{"node":">=12.22"},"keywords":["debounce","throttle"],"repository":{"type":"git","url":"git+https://github.com/niksy/throttle-debounce.git"},"bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"homepage":"https://github.com/niksy/throttle-debounce#readme","gitHead":"bb02ea22128987fdf41e5cc6a817ba2aeeb9f7a2","_id":"throttle-debounce@5.0.2","_nodeVersion":"12.22.12","_npmVersion":"6.14.16","dist":{"integrity":"sha512-B71/4oyj61iNH0KeCamLuE2rmKuTO5byTOSVwECM5FA7TiAiAW+UqTKZ9ERueC4qvgSttUhdmq1mXC3kJqGX7A==","shasum":"ec5549d84e053f043c9fd0f2a6dd892ff84456b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/throttle-debounce/-/throttle-debounce-5.0.2.tgz","fileCount":13,"unpackedSize":68632,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIH7OBLIX0Y2gyoDswRq5a8Se/CluMs0pWMozD85gsf6PAiBpOIvOjCg/U8Mb07QtrSYAZq3RBR5VT1BKnkyFriH9fg=="}]},"_npmUser":{"name":"niksy","email":"niksy5@gmail.com"},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/throttle-debounce_5.0.2_1719237981539_0.3825652833906503"},"_hasShrinkwrap":false}},"time":{"created":"2014-12-20T15:16:53.035Z","modified":"2024-06-24T14:06:21.939Z","0.1.0":"2014-12-20T15:16:53.035Z","0.1.1":"2015-03-15T15:31:20.874Z","1.0.0":"2016-05-01T15:10:38.423Z","1.0.1":"2016-05-01T15:15:57.518Z","1.1.0":"2018-06-08T09:25:09.523Z","2.0.0":"2018-06-08T10:12:51.727Z","2.0.1":"2018-07-26T14:01:52.366Z","2.1.0":"2019-01-14T09:53:57.669Z","2.2.0":"2020-06-08T14:54:28.122Z","2.2.1":"2020-06-08T15:04:14.441Z","2.3.0":"2020-08-12T09:39:19.478Z","3.0.0":"2020-10-28T19:34:46.947Z","3.0.1":"2020-11-02T11:14:00.404Z","4.0.0":"2022-04-11T07:48:05.362Z","4.0.1":"2022-04-15T06:34:20.654Z","5.0.0":"2022-05-02T08:16:58.249Z","5.0.1":"2024-06-24T13:52:53.253Z","5.0.2":"2024-06-24T14:06:21.768Z"},"maintainers":[{"name":"niksy","email":"niksy5@gmail.com"}],"author":{"name":"Ivan Nikolić","email":"niksy5@gmail.com","url":"http://ivannikolic.com"},"repository":{"type":"git","url":"git+https://github.com/niksy/throttle-debounce.git"},"keywords":["debounce","throttle"],"license":"MIT","homepage":"https://github.com/niksy/throttle-debounce#readme","bugs":{"url":"https://github.com/niksy/throttle-debounce/issues"},"readme":"# throttle-debounce\n\n[![Build Status][ci-img]][ci]\n[![BrowserStack Status][browserstack-img]][browserstack]\n[![Mentioned in Awesome Micro npm Packages][awesome-img]][awesome]\n\nThrottle and debounce functions.\n\nThis module is the same as [jquery-throttle-debounce][jquery-throttle-debounce]\n([with some differences](#differences-with-original-module)), but it’s\ntransferred to ES Modules and CommonJS format.\n\n## Install\n\n```sh\nnpm install throttle-debounce --save\n```\n\n## Usage\n\n### `throttle`\n\n```js\nimport { throttle } from 'throttle-debounce';\n\nconst throttleFunc = throttle(\n\t1000,\n\t(num) => {\n\t\tconsole.log('num:', num);\n\t},\n\t{ noLeading: false, noTrailing: false }\n);\n\n// Can also be used like this, because noLeading and noTrailing are false by default\nconst throttleFunc = throttle(1000, (num) => {\n\tconsole.log('num:', num);\n});\n\nthrottleFunc(1); // Will execute the callback\nthrottleFunc(2); // Won’t execute callback\nthrottleFunc(3); // Won’t execute callback\n\n// Will execute the callback, because noTrailing is false,\n// but if we set noTrailing to true, this callback won’t be executed\nthrottleFunc(4);\n\nsetTimeout(() => {\n\tthrottleFunc(10); // Will execute the callback\n}, 1200);\n\n// Output\n// num: 1\n// num: 4\n// num: 10\n```\n\n### `debounce`\n\n```js\nimport { debounce } from 'throttle-debounce';\n\nconst debounceFunc = debounce(\n\t1000,\n\t(num) => {\n\t\tconsole.log('num:', num);\n\t},\n\t{ atBegin: false }\n);\n\n// Can also be used like this, because atBegin is false by default\nconst debounceFunc = debounce(1000, (num) => {\n\tconsole.log('num:', num);\n});\n\n// Won’t execute the callback, because atBegin is false,\n// but if we set atBegin to true, this callback will be executed.\ndebounceFunc(1);\n\ndebounceFunc(2); // Won’t execute callback\ndebounceFunc(3); // Won’t execute callback\n\n// Will execute the callback,\n// but if we set atBegin to true, this callback won’t be executed.\ndebounceFunc(4);\n\nsetTimeout(() => {\n\tdebounceFunc(10); // Will execute the callback\n}, 1200);\n\n// Output\n// num: 4\n// num: 10\n```\n\n### Cancelling\n\nDebounce and throttle can both be cancelled by calling the `cancel` function.\n\n```js\nconst throttleFunc = throttle(300, () => {\n\t// Throttled function\n});\n\nthrottleFunc.cancel();\n\nconst debounceFunc = debounce(300, () => {\n\t// Debounced function\n});\n\ndebounceFunc.cancel();\n```\n\nThe logic that is being throttled or debounced will no longer be called.\n\nTo cancel only one upcoming debounced call, you can pass `upcomingOnly: true`\noption to `cancel` function:\n\n```js\nconst debounceFunc = debounce(300, () => {\n\t// Debounced function\n});\n\ndebounceFunc(); // will not be invoked\n\ndebounceFunc.cancel({ upcomingOnly: true });\n\ndebounceFunc(); // will be invoked\n```\n\n## API\n\n### throttle(delay, callback, { noLeading, noTrailing, debounceMode })\n\nReturns: `Function`\n\nThrottle execution of a function. Especially useful for rate limiting execution\nof handlers on events like resize and scroll.\n\n#### delay\n\nType: `Number`\n\nA zero-or-greater delay in milliseconds. For event callbacks, values around 100\nor 250 (or even higher) are most useful.\n\n#### callback\n\nType: `Function`\n\nA function to be executed after delay milliseconds. The `this` context and all\narguments are passed through, as-is, to `callback` when the throttled-function\nis executed.\n\n#### noTrailing\n\nType: `Boolean`\n\nOptional, defaults to false. If noTrailing is true, callback will only execute\nevery `delay` milliseconds while the throttled-function is being called. If\nnoTrailing is false or unspecified, callback will be executed one final time\nafter the last throttled-function call. (After the throttled-function has not\nbeen called for `delay` milliseconds, the internal counter is reset)\n\n#### noLeading\n\nType: `Boolean`\n\nOptional, defaults to false. If noLeading is false, the first throttled-function\ncall will execute callback immediately. If noLeading is true, the first the\ncallback execution will be skipped. It should be noted that callback will never\nexecuted if both noLeading = true and noTrailing = true.\n\n#### debounceMode\n\nType: `Boolean`\n\nIf `debounceMode` is true (at begin), schedule `clear` to execute after `delay`\nms. If `debounceMode` is false (at end), schedule `callback` to execute after\n`delay` ms.\n\n### debounce(delay, callback, { atBegin })\n\nReturns: `Function`\n\nDebounce execution of a function. Debouncing, unlike throttling, guarantees that\na function is only executed a single time, either at the very beginning of a\nseries of calls, or at the very end.\n\n#### delay\n\nType: `Number`\n\nA zero-or-greater delay in milliseconds. For event callbacks, values around 100\nor 250 (or even higher) are most useful.\n\n#### callback\n\nType: `Function`\n\nA function to be executed after delay milliseconds. The `this` context and all\narguments are passed through, as-is, to `callback` when the debounced-function\nis executed.\n\n#### atBegin\n\nType: `Boolean`\n\nOptional, defaults to false. If `atBegin` is false or unspecified, callback will\nonly be executed `delay` milliseconds after the last debounced-function call. If\n`atBegin` is true, callback will be executed only at the first\ndebounced-function call. (After the throttled-function has not been called for\n`delay` milliseconds, the internal counter is reset).\n\n## Differences with original module\n\n- Dependancy on jQuery is removed, so if you rely on GUIDs set by jQuery, plan\n accordingly\n- There is no standalone version available, so don’t rely on `$.throttle` and\n `$.debounce` to be available\n\n## Browser support\n\nTested in Chrome 72, Edge 15, Firefox 65 and should work in all modern browsers\n([support based on Browserslist configuration](https://browserslist.dev/?q=bGFzdCAzIG1ham9yIHZlcnNpb25zLCBzaW5jZSAyMDE5LCBlZGdlID49IDE1LCBub3QgaWUgPiAw)).\n\n## Test\n\nFor automated tests, run `npm run test:automated` (append `:watch` for watcher\nsupport).\n\n## License\n\n\n\nMIT © [Ivan Nikolić](http://ivannikolic.com)\n\n[ci]: https://github.com/niksy/throttle-debounce/actions?query=workflow%3ACI\n[ci-img]: https://github.com/niksy/throttle-debounce/actions/workflows/ci.yml/badge.svg?branch=master\n[browserstack]: https://www.browserstack.com/\n[browserstack-img]: https://img.shields.io/badge/browser%20testing-BrowserStack-informational?logo=data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA2NCA2NCI+CiAgPGRlZnMvPgogIDxyYWRpYWxHcmFkaWVudCBpZD0iYSIgY3g9IjIwLjk0Mjk3NiIgY3k9IjI4LjA5NDY3ODczIiByPSIzLjc5MTM0MTQxIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+CiAgICA8c3RvcCBvZmZzZXQ9IjAiIHN0b3AtY29sb3I9IiM3OTc5NzkiLz4KICAgIDxzdG9wIG9mZnNldD0iMSIgc3RvcC1jb2xvcj0iIzRjNGM0YyIvPgogIDwvcmFkaWFsR3JhZGllbnQ+CiAgPGcgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI5LjcyOTIwNCAtNTcuMTg3NjExKSBzY2FsZSgyLjk3MjkyKSI+CiAgICA8Y2lyY2xlIGN4PSIyMC43ODkiIGN5PSIzMC4wMjUiIHI9IjEwLjczOSIgZmlsbD0iI2Y0Yjk2MCIvPgogICAgPGNpcmNsZSBjeD0iMTkuNyIgY3k9IjI4LjkzNiIgcj0iOS43IiBmaWxsPSIjZTY2ZjMyIi8+CiAgICA8Y2lyY2xlIGN4PSIyMS4wMzYiIGN5PSIyNy42OTkiIHI9IjguNDEzIiBmaWxsPSIjZTQzYzQxIi8+CiAgICA8Y2lyY2xlIGN4PSIyMS42NzkiIGN5PSIyOC4zNDIiIHI9IjcuNzIiIGZpbGw9IiNiZGQwNDEiLz4KICAgIDxjaXJjbGUgY3g9IjIxLjEzNSIgY3k9IjI4LjkzNiIgcj0iNy4xNzYiIGZpbGw9IiM2ZGI1NGMiLz4KICAgIDxjaXJjbGUgY3g9IjE5Ljk5NyIgY3k9IjI3Ljc0OCIgcj0iNS45ODgiIGZpbGw9IiNhZWRhZTYiLz4KICAgIDxjaXJjbGUgY3g9IjIwLjkzNyIgY3k9IjI2Ljc1OCIgcj0iNS4wNDgiIGZpbGw9IiM1NmI4ZGUiLz4KICAgIDxjaXJjbGUgY3g9IjIxLjU4IiBjeT0iMjcuNDUxIiByPSI0LjQwNSIgZmlsbD0iIzAwYjFkNSIvPgogICAgPGNpcmNsZSBjeD0iMjAuOTM3IiBjeT0iMjguMDQ1IiByPSIzLjc2MSIgZmlsbD0idXJsKCNhKSIvPgogICAgPGNpcmNsZSBjeD0iMjAuOTM3IiBjeT0iMjguMDQ1IiByPSIzLjc2MSIgZmlsbD0iIzIyMWYxZiIvPgogICAgPGVsbGlwc2UgY3g9Ii0xNS4xNTkiIGN5PSIzMS40MDEiIGZpbGw9IiNmZmYiIHJ4PSIxLjE4OCIgcnk9Ii43NDIiIHRyYW5zZm9ybT0icm90YXRlKC02NS44MzQpIi8+CiAgPC9nPgo8L3N2Zz4K\n[awesome]: https://github.com/parro-it/awesome-micro-npm-packages\n[awesome-img]: https://awesome.re/mentioned-badge.svg\n[jquery-throttle-debounce]: https://github.com/cowboy/jquery-throttle-debounce\n\n\n","readmeFilename":"README.md","users":{"lmhs":true,"axiang":true,"bushuai":true,"jmsherry":true,"silvenon":true,"duepi.biz":true,"edwardxyt":true,"isenricho":true,"qqcome110":true,"arkanciscan":true,"mrmartineau":true},"contributors":[{"name":"Ben Alman","url":"http://benalman.com"}]} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/07/bd/7fe28ca3eb588d1f429e09a98bb84dab98ab933b96f24ce495c0408ce4503b4e2022016f94a93299f4446e782e2abe04adb5485d9aad665c2de426a197ec b/frontend/.npm-cache/_cacache/content-v2/sha512/07/bd/7fe28ca3eb588d1f429e09a98bb84dab98ab933b96f24ce495c0408ce4503b4e2022016f94a93299f4446e782e2abe04adb5485d9aad665c2de426a197ec new file mode 100644 index 0000000..0681cff Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/07/bd/7fe28ca3eb588d1f429e09a98bb84dab98ab933b96f24ce495c0408ce4503b4e2022016f94a93299f4446e782e2abe04adb5485d9aad665c2de426a197ec differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/0a/14/c21cca2e11eda49fbd775876d019cb98aebe9f5d3062bb8eb4393c16ad6a1bd7a8356d79f8bedcf4ecea5eedec0ca332409c4aae2e4e655905ad06283d0d b/frontend/.npm-cache/_cacache/content-v2/sha512/0a/14/c21cca2e11eda49fbd775876d019cb98aebe9f5d3062bb8eb4393c16ad6a1bd7a8356d79f8bedcf4ecea5eedec0ca332409c4aae2e4e655905ad06283d0d new file mode 100644 index 0000000..3511ce1 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/0a/14/c21cca2e11eda49fbd775876d019cb98aebe9f5d3062bb8eb4393c16ad6a1bd7a8356d79f8bedcf4ecea5eedec0ca332409c4aae2e4e655905ad06283d0d differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/0f/ec/e439109b03d7f5b5d5912b445a091dc63efe7470cc5caf3e17f24e4b4d2503d43930e3b98a24465036e9c8b514e45b082d6944a8d515454481bd65788562 b/frontend/.npm-cache/_cacache/content-v2/sha512/0f/ec/e439109b03d7f5b5d5912b445a091dc63efe7470cc5caf3e17f24e4b4d2503d43930e3b98a24465036e9c8b514e45b082d6944a8d515454481bd65788562 new file mode 100644 index 0000000..342c269 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/0f/ec/e439109b03d7f5b5d5912b445a091dc63efe7470cc5caf3e17f24e4b4d2503d43930e3b98a24465036e9c8b514e45b082d6944a8d515454481bd65788562 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/11/63/56b080bbb1228d3ac808e1894c81cfeec79289fd23918bc82fd2d5f0a999c2b515feabef957d96def6a1cdb47992d5b561d98c4fe7559442cab0e61fedd1 b/frontend/.npm-cache/_cacache/content-v2/sha512/11/63/56b080bbb1228d3ac808e1894c81cfeec79289fd23918bc82fd2d5f0a999c2b515feabef957d96def6a1cdb47992d5b561d98c4fe7559442cab0e61fedd1 new file mode 100644 index 0000000..332219c --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/11/63/56b080bbb1228d3ac808e1894c81cfeec79289fd23918bc82fd2d5f0a999c2b515feabef957d96def6a1cdb47992d5b561d98c4fe7559442cab0e61fedd1 @@ -0,0 +1 @@ +{"_id":"array-tree-filter","_rev":"16-e3c633e5bb0cdfc36d5fbc5fe842a66e","name":"array-tree-filter","dist-tags":{"latest":"3.0.3"},"versions":{"1.0.0":{"name":"array-tree-filter","version":"1.0.0","keywords":["array","tree","filter"],"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"array-tree-filter@1.0.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"homepage":"https://github.com/afc163/tree-filter#readme","bugs":{"url":"https://github.com/afc163/tree-filter/issues"},"dist":{"shasum":"1b52903b1f1f3092947a4a9b567a17a15d928cff","tarball":"https://mirrors.huaweicloud.com/repository/npm/array-tree-filter/-/array-tree-filter-1.0.0.tgz","integrity":"sha512-3gmKMFWHSJ1PIO2IPH+rcJzoktecEEMgU8lbdWy9lHhcod+5kLgxaoW/T/5636kzOyq62Zn5doAdpCZ9BHmK7w==","signatures":[{"sig":"MEYCIQD6HanGdpWX01dz4Z+jkvSLN2LEmVy2ETZ+USzCbMXWkwIhAJbG9XbYPfWF4JI2Da+GLjMuJI2vQ3zlOefP8tOahSwv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1b52903b1f1f3092947a4a9b567a17a15d928cff","gitHead":"c490b25d5eb088314c7489ebec884a1646405e0f","scripts":{"test":"tape test/*.js"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+ssh://git@github.com/afc163/tree-filter.git","type":"git"},"_npmVersion":"3.3.12","description":"filter in array tree","directories":{},"_nodeVersion":"5.1.1","devDependencies":{"tape":"^4.3.0"}},"1.0.1":{"name":"array-tree-filter","version":"1.0.1","keywords":["array","tree","filter"],"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"array-tree-filter@1.0.1","maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"homepage":"https://github.com/afc163/array-tree-filter#readme","bugs":{"url":"https://github.com/afc163/array-tree-filter/issues"},"dist":{"shasum":"0a8ad1eefd38ce88858632f9cc0423d7634e4d5d","tarball":"https://mirrors.huaweicloud.com/repository/npm/array-tree-filter/-/array-tree-filter-1.0.1.tgz","integrity":"sha512-pyKAvZtyEA4kcttaXEIMccJGom7sdO+bmZf44fowSpTsCuRYbcoxyP+lLtjEyzEVZLpNUA/7/NPPYeEfC9Pa3g==","signatures":[{"sig":"MEYCIQCqrshtMYhiH2Ect9RNDv1iA9gru02MpZ1Y9ygcnqy8uQIhANjIT24qGpaIW83Gx1016DLqDfZ8/Vo3jDVKDnNYveF3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0a8ad1eefd38ce88858632f9cc0423d7634e4d5d","gitHead":"f551be084e8dacd8dee796c7ce8adba408ba79d5","scripts":{"test":"tape test/*.js"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+ssh://git@github.com/afc163/array-tree-filter.git","type":"git"},"_npmVersion":"3.8.6","description":"filter in array tree","directories":{},"_nodeVersion":"5.12.0","devDependencies":{"tape":"^4.3.0"},"_npmOperationalInternal":{"tmp":"tmp/array-tree-filter-1.0.1.tgz_1469864006568_0.697450302541256","host":"packages-16-east.internal.npmjs.com"}},"2.0.0":{"name":"array-tree-filter","version":"2.0.0","keywords":["array","tree","filter"],"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"array-tree-filter@2.0.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"homepage":"https://github.com/afc163/array-tree-filter#readme","bugs":{"url":"https://github.com/afc163/array-tree-filter/issues"},"dist":{"shasum":"20fbc2d5a0de83242c0a9eb90894d4bfb7e2a69e","tarball":"https://mirrors.huaweicloud.com/repository/npm/array-tree-filter/-/array-tree-filter-2.0.0.tgz","integrity":"sha512-K3I75fvUcUMrKGmucRGYH9xaqIQmEHfka6eSodR4l3GXnr4wNgV2GyfmIqQWIimG1+8sDkYsC3A765eGZ1XVzQ==","signatures":[{"sig":"MEUCIFdcLTPl+bC/ykD53ojv2sXM8BHQoaVMQFNVuerVdwN7AiEAsJNz7W8noSmqtWEsy0Yav/fmw+7EQM/E1LjaFzKGiPE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/index.js","files":["lib"],"gitHead":"8f4429799382cc16a56c6b9b388eede34679bdb5","scripts":{"pub":"npm run build && npm publish","test":"npm run build && tape test/*.js","build":"rollup index.js --output.format umd --name 'arrayTreeFilter' --output.file lib/index.js"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+ssh://git@github.com/afc163/array-tree-filter.git","type":"git"},"_npmVersion":"5.5.1","description":"filter in array tree","directories":{},"_nodeVersion":"6.12.0","devDependencies":{"tape":"^4.3.0","rollup":"^0.52.1"},"_npmOperationalInternal":{"tmp":"tmp/array-tree-filter-2.0.0.tgz_1513258724489_0.4666398495901376","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"array-tree-filter","version":"2.1.0","keywords":["array","tree","filter"],"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"array-tree-filter@2.1.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"homepage":"https://github.com/afc163/array-tree-filter#readme","bugs":{"url":"https://github.com/afc163/array-tree-filter/issues"},"dist":{"shasum":"873ac00fec83749f255ac8dd083814b4f6329190","tarball":"https://mirrors.huaweicloud.com/repository/npm/array-tree-filter/-/array-tree-filter-2.1.0.tgz","fileCount":4,"integrity":"sha512-4ROwICNlNw/Hqa9v+rk5h22KjmzB1JGTMVKP2AKJBOCgb0yL0ASf0+YvCcLNNwquOHNX48jkeZIJ3a+oOQqKcw==","signatures":[{"sig":"MEUCIQDP8jjT0Lk3mNvBiT3scc37Cj4wBL0X6N3lreudMLk7cQIgFdMLpsKjBOQsbLseWd4gsEiswapeAYPh/pG3rfYtJuU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2951},"main":"lib/index.js","files":["lib","index.d.ts"],"gitHead":"86c80d74aeb31dd58b40b130fbe9107aefeacadb","scripts":{"pub":"npm run build && npm publish","tsc":"tsc","test":"npm run build && tape test/*.js","build":"npm run tsc && rollup index.js --output.format umd --name 'arrayTreeFilter' --output.file lib/index.js"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+ssh://git@github.com/afc163/array-tree-filter.git","type":"git"},"_npmVersion":"5.5.1","description":"filter in array tree","directories":{},"_nodeVersion":"8.9.4","_hasShrinkwrap":false,"devDependencies":{"tape":"^4.3.0","rollup":"^0.52.1","typescript":"^2.7.1"},"_npmOperationalInternal":{"tmp":"tmp/array-tree-filter_2.1.0_1517988886773_0.4501565076385423","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"array-tree-filter","version":"3.0.0","keywords":["array","tree","filter"],"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"array-tree-filter@3.0.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"homepage":"https://github.com/afc163/array-tree-filter#readme","bugs":{"url":"https://github.com/afc163/array-tree-filter/issues"},"dist":{"shasum":"8555c0b900a03caf20841063f6df0e895cbed65b","tarball":"https://mirrors.huaweicloud.com/repository/npm/array-tree-filter/-/array-tree-filter-3.0.0.tgz","fileCount":5,"integrity":"sha512-xBr75bryUSKfGtVCR7g0LPRcfR3nl4v66Zy473516wvlpkYEgAGrQ+snk5VuMV+Fsk3vZkatjO8C7CtROP4/3A==","signatures":[{"sig":"MEYCIQCgkd+BjnpJVMrqBU9tANe2bdsnKQl9qNvKdFYPYFPzNAIhANEDDvScSBlPH/8GEBg5gexVjuyZvf6urkZLJGQb+hEC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3533},"main":"index.js","type":"module","types":"./index.d.ts","gitHead":"11b76453bfb3284cefc0145994dc05a7994fda90","scripts":{"tsc":"tsc","test":"vitest --coverage","prepublishOnly":"npm run tsc"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+ssh://git@github.com/afc163/array-tree-filter.git","type":"git"},"_npmVersion":"10.8.3","description":"filter in array tree","directories":{},"_nodeVersion":"22.8.0","_hasShrinkwrap":false,"devDependencies":{"vitest":"^2.1.3","typescript":"^5.6.3","@vitest/coverage-v8":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/array-tree-filter_3.0.0_1729580284480_0.31408326073615656","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"array-tree-filter","version":"3.0.1","keywords":["array","tree","filter"],"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"array-tree-filter@3.0.1","maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"homepage":"https://github.com/afc163/array-tree-filter#readme","bugs":{"url":"https://github.com/afc163/array-tree-filter/issues"},"dist":{"shasum":"a0f749e3f2e9698d9e50e7a97d297d2db13e382d","tarball":"https://mirrors.huaweicloud.com/repository/npm/array-tree-filter/-/array-tree-filter-3.0.1.tgz","fileCount":5,"integrity":"sha512-s2zm+Lr/5cdrlrKMSYsrOsBFdOJa6SuMtiDeopDOVG51g7dt7p1+UVBXc1P/7FrMzOuL/mWm8RGYTPU71GJCSQ==","signatures":[{"sig":"MEUCIHhs8aZE1KZka+n7rl7YBkXHULkWVRGdwDUlmk6RlmWxAiEAgdm9cp+rIImYNyWJPQCErG3zGDbV81aC9tXQLnhDYmU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4326},"main":"index.js","type":"module","types":"./index.d.ts","gitHead":"3cc56bc20f893fc0817486d7ee0cf4cebdba1a6c","scripts":{"tsc":"tsc --noEmit","test":"npm run tsc && npm run build && vitest --coverage","build":"rollup index.js --output.format umd --name 'arrayTreeFilter' --output.file index.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+ssh://git@github.com/afc163/array-tree-filter.git","type":"git"},"_npmVersion":"10.8.3","description":"filter in array tree","directories":{},"_nodeVersion":"22.8.0","_hasShrinkwrap":false,"devDependencies":{"rollup":"^4.24.0","vitest":"^2.1.3","typescript":"^5.6.3","@vitest/coverage-v8":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/array-tree-filter_3.0.1_1729582135329_0.5110831111203931","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"array-tree-filter","version":"3.0.2","keywords":["array","tree","filter"],"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"array-tree-filter@3.0.2","maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"homepage":"https://github.com/afc163/array-tree-filter#readme","bugs":{"url":"https://github.com/afc163/array-tree-filter/issues"},"dist":{"shasum":"d9e85191292e0641baeb4baca3b8ab6dfab68462","tarball":"https://mirrors.huaweicloud.com/repository/npm/array-tree-filter/-/array-tree-filter-3.0.2.tgz","fileCount":5,"integrity":"sha512-wEMKJE81ReWEQ2L42dB4CRLdkJ495K2Co5n9Qc2KS05T2sFFw2Ip3BYyspM6I5r82NfF81JKNhMbC83QBhK9PA==","signatures":[{"sig":"MEUCIQDFcnFhLgrFPkYCesGF+Rtc5aym2UAdORo0MfRfk0S6cQIgUvIQAed1XYaeD2HeJU50C9AH9R83cn2KxXTriKsFMx4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4372},"main":"dist/index.js","type":"module","types":"./dist/index.d.ts","gitHead":"c29ab32172e09ae71f4fbaf2705ae90ffa81873b","scripts":{"tsc":"tsc --noEmit","test":"npm run tsc && npm run build && vitest --coverage","build":"ncc build index.ts -o dist","prepublishOnly":"npm run build"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+ssh://git@github.com/afc163/array-tree-filter.git","type":"git"},"_npmVersion":"10.8.3","description":"filter in array tree","directories":{},"_nodeVersion":"22.8.0","_hasShrinkwrap":false,"devDependencies":{"vitest":"^2.1.3","typescript":"^5.6.3","@vercel/ncc":"^0.38.2","@vitest/coverage-v8":"^2.1.3"},"_npmOperationalInternal":{"tmp":"tmp/array-tree-filter_3.0.2_1729583140958_0.12405962893352207","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"array-tree-filter","version":"3.0.3","description":"filter in array tree","main":"dist/index.js","type":"module","scripts":{"test":"npm run build && vitest --coverage","prepublishOnly":"npm run build","tsc":"tsc --noEmit","build":"tsc --build"},"repository":{"type":"git","url":"git+ssh://git@github.com/afc163/array-tree-filter.git"},"keywords":["array","tree","filter"],"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/afc163/array-tree-filter/issues"},"homepage":"https://github.com/afc163/array-tree-filter#readme","devDependencies":{"@vitest/coverage-v8":"^2.1.3","typescript":"^5.6.3","vitest":"^2.1.3"},"_id":"array-tree-filter@3.0.3","gitHead":"dacf4ada06be3b21c13237a8107db3a1d1ce2a26","types":"./dist/index.d.ts","_nodeVersion":"22.8.0","_npmVersion":"10.8.3","dist":{"integrity":"sha512-RoD6VN+jSQc6ODKZ/HXfDucBbly1jlPw+61N+Cq26m163+vYGHv5nwLVXmhq3Ynqwri1hYr+/DGHS3Fzkm/sgg==","shasum":"8fdf11c7a5f004b9ba5f07b0a57ed5109781be98","tarball":"https://mirrors.huaweicloud.com/repository/npm/array-tree-filter/-/array-tree-filter-3.0.3.tgz","fileCount":5,"unpackedSize":3528,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCpRI27SpjfQZCaMDDAsYNFSyt465sP1XyvVhHp6QwDlAIhAO9HcH56CQgfL8z8MQmGlp+Sx78r055sl3JRf5sM7zWO"}]},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"directories":{},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/array-tree-filter_3.0.3_1747967860035_0.4827205799139911"},"_hasShrinkwrap":false}},"time":{"created":"2015-12-23T16:13:35.755Z","modified":"2025-05-23T02:37:40.444Z","1.0.0":"2015-12-23T16:13:35.755Z","1.0.1":"2016-07-30T07:33:29.563Z","1.0.2":"2017-12-14T12:40:25.821Z","2.0.0":"2017-12-14T13:38:44.547Z","2.1.0":"2018-02-07T07:34:46.878Z","3.0.0":"2024-10-22T06:58:04.634Z","3.0.1":"2024-10-22T07:28:55.512Z","3.0.2":"2024-10-22T07:45:41.133Z","3.0.3":"2025-05-23T02:37:40.256Z"},"bugs":{"url":"https://github.com/afc163/array-tree-filter/issues"},"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","homepage":"https://github.com/afc163/array-tree-filter#readme","keywords":["array","tree","filter"],"repository":{"type":"git","url":"git+ssh://git@github.com/afc163/array-tree-filter.git"},"description":"filter in array tree","maintainers":[{"name":"afc163","email":"afc163@gmail.com"}],"readme":"# array-tree-filter\n\nFilter and traverse nested hierarchical tree structures.\n\n[![NPM version](https://img.shields.io/npm/v/array-tree-filter.svg?style=flat)](https://npmjs.org/package/array-tree-filter)\n[![NPM downloads](http://img.shields.io/npm/dm/array-tree-filter.svg?style=flat)](https://npmjs.org/package/array-tree-filter)\n[![codecov](https://codecov.io/gh/afc163/array-tree-filter/branch/main/graph/badge.svg?token=YOUR_CODECOV_TOKEN)](https://codecov.io/gh/afc163/array-tree-filter)\n\n```js\nimport arrayTreeFilter from 'array-tree-filter';\n\nconst data = [{\n value: 'a',\n children: [{\n value: 'b',\n children: [{\n value: 'c'\n }, {\n value: 'd',\n }]\n }],\n}];\nconst values = ['a', 'b', 'c'];\nconst result = arrayTreeFilter(\n data, (item, level) => item.value === values[level]\n);\n\nconsole.log(result);\n// [\n// { value: 'a', children: [...] },\n// { value: 'b', children: [...] },\n// { value: 'c', children: [...] }\n// ]\n","readmeFilename":"README.md","users":{"zoxon":true,"andfaulkner":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/12/55/618e41469f0101feebeb194041a1fd6b5f3bb805a0fa01c8bf244443d01a028683e240d500aa93bb25ea319ea91e4be8bbcce02769e18a1a2c64a2f8e9f3 b/frontend/.npm-cache/_cacache/content-v2/sha512/12/55/618e41469f0101feebeb194041a1fd6b5f3bb805a0fa01c8bf244443d01a028683e240d500aa93bb25ea319ea91e4be8bbcce02769e18a1a2c64a2f8e9f3 new file mode 100644 index 0000000..3ea4a30 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/12/55/618e41469f0101feebeb194041a1fd6b5f3bb805a0fa01c8bf244443d01a028683e240d500aa93bb25ea319ea91e4be8bbcce02769e18a1a2c64a2f8e9f3 @@ -0,0 +1 @@ +{"_id":"@ant-design/icons-svg","_rev":"59-50d1307003309b87bafaed1eb9723a9e","name":"@ant-design/icons-svg","dist-tags":{"alpha":"4.0.0-alpha.0","latest":"4.4.2"},"versions":{"4.0.0-alpha.0":{"name":"@ant-design/icons-svg","version":"4.0.0-alpha.0","license":"MIT","_id":"@ant-design/icons-svg@4.0.0-alpha.0","maintainers":[{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons#readme","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"c9e2607f463291a1fc73418969b7708cceceffb9","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.0.0-alpha.0.tgz","fileCount":2937,"integrity":"sha512-uK0/hQvXShhcXfSoNZqG4wWQx8l13FoKCqICC/kkeguXyKixueJEC+C6/X26HAtqXJcBmMZEuaT2AlLYs8xdZg==","signatures":[{"sig":"MEUCIClE93w/xbi1OTndpX1ifAO5/+CFPvlzdXkxjpx1U2cEAiEA8vNXREoQCOsp8XAWpczALvxt4xHqJPe4GBlK0DJVYWk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3380887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdP+7ICRA9TVsSAnZWagAAbt0P/0+WPza1mSQlvOV0VlnA\neiZDY/w/EyrqUL/GHdF/IiDYRlMqOKt1uv55gBcQTJsxRthW4lHwUpuxwDw4\nGwOV2+KL+RhxXNlAavto+NugGBujYleIFRHxIjgn1xSZNlpmQVKXd8L0i+MI\nYSC+AgCzWO6FEtksbJiz2txp8dRhHQyU+xqG/MzQC0lfjMxxXGEV5qTZBZ42\nd0hZctJRQzBQh1dzegAx3V6tSih45pjsCq08ecf5660HORJn3p94Yb8L1/YL\nYoxTDEIdcwnVP2DAq8Ia18hNWmtJR7n010c8PyFCHruHQQWRxUIAizNIvlaq\n9ohTZ7WCPIn7Sujgh/n88IPQLAvzQL2DQGw1yMMDR2bzyS/OliCPMMIZgifT\nzCufn7k+34CJN2C2O50sy/QL/C8L7egtpoCQlFk0qqCdsdD0pZde9+97KCQ3\nt6Xw54ken+BiIdbRjCi7vrmN9mum3kvr4/aZqDZH2f5lQ2wtTVOhPdw67tHW\nyavpDj9W4OQr9brNxMUPIujShv+uumKUp98d5vXJ1a+jhPWKDMynaJkBSAAn\n+WNEEjkFZN4ZVpAyYPQRGrB+O3rU76wk/6z8AbJM1RNGCAYgVOp+VmEAx4cp\n8uvofPtyJqJVqky39ZTc8c/7rCP3nU4ZYR+VGXUJMp1TwZL0aeTtgXuCOBS4\n+Z4F\r\n=JPPi\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"globals":{"ts-jest":{"skipBabel":true,"tsConfigFile":"./test/tsconfig.json"}},"testURL":"http://localhost","testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{"^.+\\.tsx?$":"ts-jest"},"moduleFileExtensions":["ts","tsx","js","jsx","json","node"],"testPathIgnorePatterns":["/packages/","/node_modules/","/.cache/"]},"main":"lib/index.js","module":"lib/index.es.js","gitHead":"225d4d2189720ee3b7e4a4d7a6d80e076fa15cbc","scripts":{"lint":"tslint -c tslint.json 'src/**/*.{ts,tsx}' 'site/**/*.{ts,tsx}' 'test/**/*.{ts,tsx}'","test":"npm run test:unit","build":"npm run build:lib && npm run build:index-es && npm run build:umd","start":"gatsby develop","generate":"cross-env TS_NODE_PROJECT=build/tsconfig.json node --require ts-node/register build/index.ts","build:lib":"cross-env NODE_ENV=production rimraf lib && tsc --project ./tsconfig.json --outDir lib","build:umd":"webpack --config umd.webpack.config.js -p","clean:src":"cross-env TS_NODE_PROJECT=build/tsconfig.json node --require ts-node/register build/scripts/clean.ts","test:unit":"jest","prepublish":"npm run lint && npm run test && npm run generate && npm run build","clean:build":"rimraf .cache es lib","build:index-es":"cross-env NODE_ENV=production rimraf lib/index.es.js && babel --extensions '.ts' --presets @babel/preset-typescript src/index.ts --out-file lib/index.es.js"},"_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"6.9.0","description":"Ant Design Icons","directories":{},"sideEffects":false,"_nodeVersion":"10.15.0","_hasShrinkwrap":false,"devDependencies":{"antd":"^3.8.2","jest":"^23.4.2","mobx":"^5.0.4","rxjs":"^6.2.2","svgo":"^1.3.0","chalk":"^2.4.1","react":"^16.4.2","gatsby":"^2.4.2","globby":"^8.0.1","lodash":"^4.17.10","parse5":"^5.1.0","rimraf":"^2.6.2","tslint":"^5.11.0","ts-jest":"^23.1.0","ts-node":"^7.0.1","fs-extra":"^7.0.0","prettier":"1.14.2","cross-env":"^5.2.0","react-dom":"^16.4.2","@babel/cli":"^7.0.0","@svgr/core":"^2.1.1","babel-core":"^6.26.3","babel-jest":"^23.4.2","mobx-react":"^5.2.5","typescript":"^3.0.1","webpackbar":"^2.6.1","@babel/core":"^7.0.0","@types/jest":"^23.3.1","@types/node":"^10.5.5","@types/svgo":"^1.0.1","webpack-cli":"^3.1.0","@types/react":"^16.4.7","@types/globby":"^8.0.0","@types/lodash":"^4.14.115","@types/parse5":"^5.0.0","@types/rimraf":"^2.0.2","@babel/runtime":"^7.0.0","@types/history":"^4.7.0","@types/fs-extra":"^5.0.4","@types/prettier":"^1.13.2","@babel/preset-env":"^7.0.0","styled-components":"^3.4.4","@babel/preset-react":"^7.0.0","@types/react-router":"3.0.20","babel-plugin-macros":"^2.4.0","@babel/preset-typescript":"^7.0.0","gatsby-plugin-typescript":"^2.0.13","gatsby-plugin-page-creator":"^2.0.12","@babel/plugin-transform-runtime":"^7.0.0","@babel/plugin-proposal-decorators":"^7.0.0","@babel/plugin-syntax-dynamic-import":"^7.0.0","@babel/plugin-proposal-class-properties":"^7.0.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.0.0-alpha.0_1564470983986_0.29498887736232526","host":"s3://npm-registry-packages"}},"4.0.0-alpha.4":{"name":"@ant-design/icons-svg","version":"4.0.0-alpha.4","license":"MIT","_id":"@ant-design/icons-svg@4.0.0-alpha.4","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"6a09c47021ff16877020c648cbc18686d467a9c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.0.0-alpha.4.tgz","fileCount":3954,"integrity":"sha512-gmXq/myfo8L1W8puStupdf+p7lPOZu4BzqO7rCxeV91kNBz1LC4Hp9hm8+piN1EHlUdchIsYu0Xx3RxymuSgIQ==","signatures":[{"sig":"MEUCIQCzwEpbbextPVTOF7Ih6MmpbTxSOsYubSmX0E5Xvlv1nAIgWoMHLumo5m2AHafqZyAPTRWpdSU3PlThW3dFadHdPlE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2625604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAhhnCRA9TVsSAnZWagAACBYP/j0ZyXZGXD9+3Zuk/bgT\nyQIT1Z26P4KYCeg+TiV0KO1NFfXmM84W2lvH/yJ0dQst5ihNA1bSZVwznZ9w\nQGAACf9PTUTCBv/jXOM7Vdj5S1/++UAfrl7X0hJpA/fGLiCoZdyhqSoR8Oi8\nl3XLki6AcG9209t6xsxKtUy0bA/4QekZ2pD9kK59Ue/bffaQD1IhwUslyUuf\nKMXDqydO1NM9cwCjiaiTVSV9hgQI31VZMPbhyOdKeEU+pmfM1A6hazaTLabU\n2IBx4/VlLGAajcrL2sEVnEmWCeK4DjnQnMqqKIpgnmPxiA9t6BKYmyd18aiE\nk/kQArhIJQ2Vx8kEZGMHnHDImr+nBsQEEZYwNnPyWsbzIb54/+Jlf1VGI47O\nE5yH5pfXbWe3xjcCdE5w8upRZJNZ28OF8w7c0a+efRxa2YeZuVXRf/ypg8T5\nFpu6oH4DAzg8KI5D5xdxCWQ8e2BQ/0dMzX9cE5jTCezPIZUEYYHe8U0xZqxY\nVkRe7HfAsfdAP11LJfPHc4qPWCCWLD6GHuZq4MhOoXPW29HIk8KBG8wtY0YO\n6QRCVnfl93T4c4oEnhFnkBSNk1fI6o3Q0P1OBGOig+3tTPW73lqQ2Udr7BJE\nvobM4tKo6SRxOrPKJzmmOEFp0zai8WgJHrmE6/Pd2gVK1LRMiVEUvW+SpbYJ\n0WDa\r\n=4sAl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"es/index.js","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","docz:dev":"docz dev","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","docz:build":"docz build","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"vagusx","email":"onlylae@sina.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"6.9.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"10.15.2","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","docz":"1.x","gulp":"^4.0.2","jest":"^24.9.0","svgo":"^1.3.2","react":"^16.12.0","vinyl":"^2.2.0","globby":"^10.0.1","lodash":"^4.17.15","stylis":"^3.5.4","tapable":"^1.1.3","ts-node":"^8.5.4","minipass":"^3.1.1","react-is":"^16.12.0","through2":"^3.0.1","cross-env":"^6.0.3","react-dom":"^16.12.0","babel-jest":"^24.9.0","gulp-clone":"^2.0.1","typescript":"^3.7.3","@babel/core":"^7.7.5","@types/gulp":"^4.0.6","@types/jest":"^24.0.23","@types/node":"^12.12.20","@types/svgo":"^1.3.0","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/react":"^16.9.16","merge-stream":"^2.0.0","@types/lodash":"^4.14.149","gulp-template":"^5.0.0","@types/tapable":"^1.0.4","@types/through2":"^2.0.34","@babel/preset-env":"^7.7.6","@rgrove/parse-xml":"^2.0.1","styled-components":"^5.0.0-rc.2","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","docz-theme-default":"^1.2.0","@types/merge-stream":"^1.1.2","@types/gulp-template":"^5.0.1","@babel/preset-typescript":"^7.7.4","@types/styled-components":"^4.4.1"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.0.0-alpha.4_1577195623135_0.8067928796374779","host":"s3://npm-registry-packages"}},"4.0.0-alpha.5":{"name":"@ant-design/icons-svg","version":"4.0.0-alpha.5","license":"MIT","_id":"@ant-design/icons-svg@4.0.0-alpha.5","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"292c235a9be73ccc6109becdd7cb385216cc7c3a","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.0.0-alpha.5.tgz","fileCount":3954,"integrity":"sha512-rL/1rDmbBu0zdBtIWte9TiGbxKBcR32Tq4ix57C7EBj33i6bpkUJr2wZKs3tGGEkUgqRKBXo38QSuXx0Vu7wNw==","signatures":[{"sig":"MEYCIQD9CKf704KUExva3fb/2JWHI2bvKEhc2MKrtbxmMIjDnwIhALh+ErwCr5fJT0oDEhlGYI/AxVpA+wT4Lf/ZE0bduY18","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2625604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeA01+CRA9TVsSAnZWagAA9sYP/jz618b0NcG0j3m9eOxO\nC9CpYDTRlK19uTjEjdFmp4Fxrd/943Z82uwrPK7CnJ84EiYsiaqnEv8iZF8D\nijyw5hhcu66K+YnZ+krydmljiFIePkGswtJgb0SxnPvh073QnLqCP75c0YwW\ncNHPcFFQ6FeMCd0t7y7gP0ogIPAbPfRju44MzTb3hsFcX/mX4ah/SvlCB2ID\npkTNpfaIJCCW1kiMx/vJVYgEwy5Jqc9iEcD6cEFA0ocVFi0kExEttyAAw70C\nSj4nw0u7oUfu8exTHqN7yofy2sZbsUYxKVToDRz8lZBM/QNGHyb5odcYibCd\nG0gZTFCYXOVCVJiJlX38a5s1zwmxLjv4XMDEDWyxW6FupbGUZxbFEVQd9DDh\nuiGJxASIPvXFY/QZJGZC3HQmKxG8cCQOnNiDKrco3il5HE76a9nMidBjFOFs\n06sspZEG2yfXOM5wxP4MOeUG/TL1bjtzZfM4rGTiBXPGMM2OauOynYOLmHXA\nTZKshd6B8Th3n065jbIAIv39eEl8fCoONGpmH4HGejvmEeZzpYvxKnsWwsYY\nxUciu1uDEEDuNpI4twc6y/rkLyJ1tgaxzchwX2wndz63ZJzSKwndTNowD1y1\nfigckSzbnyJ/b2xKgLsLJqXKPwn8/UdfYm0ER1YmIFVeGeXaWrmBgTBS0fAH\noVWA\r\n=RC6B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"es/index.js","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","docz:dev":"docz dev","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","docz:build":"docz build","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"vagusx","email":"onlylae@sina.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"6.9.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"10.15.2","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","docz":"1.x","gulp":"^4.0.2","jest":"^24.9.0","svgo":"^1.3.2","react":"^16.12.0","vinyl":"^2.2.0","globby":"^10.0.1","lodash":"^4.17.15","stylis":"^3.5.4","tapable":"^1.1.3","ts-node":"^8.5.4","minipass":"^3.1.1","react-is":"^16.12.0","through2":"^3.0.1","cross-env":"^6.0.3","react-dom":"^16.12.0","babel-jest":"^24.9.0","gulp-clone":"^2.0.1","typescript":"^3.7.3","@babel/core":"^7.7.5","@types/gulp":"^4.0.6","@types/jest":"^24.0.23","@types/node":"^12.12.20","@types/svgo":"^1.3.0","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/react":"^16.9.16","merge-stream":"^2.0.0","@types/lodash":"^4.14.149","gulp-template":"^5.0.0","@types/tapable":"^1.0.4","@types/through2":"^2.0.34","@babel/preset-env":"^7.7.6","@rgrove/parse-xml":"^2.0.1","styled-components":"^5.0.0-rc.2","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","docz-theme-default":"^1.2.0","@types/merge-stream":"^1.1.2","@types/gulp-template":"^5.0.1","@babel/preset-typescript":"^7.7.4","@types/styled-components":"^4.4.1"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.0.0-alpha.5_1577274750049_0.37192481140132805","host":"s3://npm-registry-packages"}},"4.0.0-rc.0":{"name":"@ant-design/icons-svg","version":"4.0.0-rc.0","license":"MIT","_id":"@ant-design/icons-svg@4.0.0-rc.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"32a14b936ff2d870ec36d350ae0256272d088853","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.0.0-rc.0.tgz","fileCount":3954,"integrity":"sha512-NJKTGVPIcWgTldUrFSj1TAkly31HeFDUPeveHQmOiIJyheplIr0uIdVwLP24Sv7zrAK9ML2Ffph9LT2dXVpJhQ==","signatures":[{"sig":"MEUCICUibsAPN0ezv1FPVguDazgx+HKkg6Atv4qvjD36kzRFAiEA6sLz/VkTRaeQoLwMysp2Qd5ycBrL4mJo77vmS0rO+oY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2625647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHrnzCRA9TVsSAnZWagAAqt8P/jdjNwI2A4Klw7Vwidx8\npYZnXHekgUIfzSRl89h0s63vZxXbyoUESSufle+msC9FAUXD0oRidVnRjsVT\nRxe4sOXpMXlsSiPHUqydo+UjvtddOhzZGbh1pYDZmNnnXBSppncuAzl3eWps\nilIYQT9FcaCbF/+Hnmd5yo3ICIcIDg5tt6z99mwGD9qDfoZdde4Lgryfluft\n8BUHDlfcpyHSHgpwvU9ZzWhFhZJWHgZlljcr0th/MzBknY7u0oaZ6tc2oZI2\nk1iVNa+Pt3HXvZd4YdckTeV+RDf52DQeOsMoKi45U6AkbkE/lEH5CtYJ+KnU\nBqe3EG6ppFv0PCBT1NCCOXRrRO2ro/yJRo6QEOdz50Uia5HyklOrQKeY6uOu\nAJz8MRr4QTZR9/uPBsJSAAKfdcGKKV405xUR5/SJd7g3OKSWkkSI6sTkNICD\n6AavmXTwFRb7CqsFI72UErMtdGzZgIoybw5tzYOXgCLEAfVXAmn1bGzb0Bvj\n4zj6jEqdDTFOh0SormNVdT5AnvO9LyOvbEvofJHNlCRTpLv+EAJPYSVnzZky\nlJ5WYQHiD7ApnTHKKTvSGuEYVrznFodiwuIKEb+G/AK065ddUAMJUtM+od1J\nwtfJn3dpuAw0wJnH/HLYHHafYh5VNg0aRSNvayfer4NLEdSOq6aTq9EMNEO+\nasLA\r\n=53m8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"es/index.js","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","docz:dev":"docz dev","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","docz:build":"docz build","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"vagusx","email":"onlylae@sina.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"6.9.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"10.15.2","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","docz":"1.x","gulp":"^4.0.2","jest":"^24.9.0","svgo":"^1.3.2","react":"^16.12.0","vinyl":"^2.2.0","globby":"^10.0.1","lodash":"^4.17.15","stylis":"^3.5.4","tapable":"^1.1.3","ts-node":"^8.5.4","minipass":"^3.1.1","react-is":"^16.12.0","through2":"^3.0.1","cross-env":"^6.0.3","react-dom":"^16.12.0","babel-jest":"^24.9.0","gulp-clone":"^2.0.1","typescript":"^3.7.3","@babel/core":"^7.7.5","@types/gulp":"^4.0.6","@types/jest":"^24.0.23","@types/node":"^12.12.20","@types/svgo":"^1.3.0","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/react":"^16.9.16","merge-stream":"^2.0.0","@types/lodash":"^4.14.149","gulp-template":"^5.0.0","@types/tapable":"^1.0.4","@types/through2":"^2.0.34","@babel/preset-env":"^7.7.6","@rgrove/parse-xml":"^2.0.1","styled-components":"^5.0.0-rc.2","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","docz-theme-default":"^1.2.0","@types/merge-stream":"^1.1.2","@types/gulp-template":"^5.0.1","@babel/preset-typescript":"^7.7.4","@types/styled-components":"^4.4.1"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.0.0-rc.0_1579071986726_0.040767128611608916","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@ant-design/icons-svg","version":"4.0.0","license":"MIT","_id":"@ant-design/icons-svg@4.0.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"6683db0df97c0c6900bb28a280faf391522ec734","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.0.0.tgz","fileCount":3954,"integrity":"sha512-Nai+cd3XUrv/z50gSk1FI08j6rENZ1e93rhKeLTBGwa5WrmHvhn2vowa5+voZW2qkXJn1btS6tdvTEDB90M0Pw==","signatures":[{"sig":"MEUCIQDQlCfNwDRyJwPK65QLMeDfIp0hIcVMpDzF+V7cwHgEqwIgDzViM1H6ry3UFL1PYDo7USUZA4GMZ0yIoYKnebOMXdo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2625642,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWISWCRA9TVsSAnZWagAAuuIQAJLR6kn6m8JELIgWHP8g\nCER2GAyweOg/Q0GI8Yh3uN2RdQIBRzyKm3riZpnl4X4FGWXzsZD2YwbG1Il+\nMbZSRIky8cF/xn6tXYqkFQbXGmx7GBMFetpC8h1SiGWKqFrVGbDqiiPPZVhl\ngmleSEtkAhITgtFENfYid3ZpAv+C02RyPmKKIFrDas5qEs3iHJI09pBWCB/O\nsgoWQdSPPxiBEVVRkUAV6x8UIW5o81B5YYgZ/alIcJFXCWMjehaYql4wSHSK\nbuXGLyZfm9VqmxLjacCPEAHfQpzxw2on9cvjwy2g6iLPqYglfKjSLs+F0CZg\nBnzRqMKXh1sxXK3sq/jPALfGV8lXTu+VB/g9sP4a7kIB+eBePqMo8Qa7Iw+f\nDLG8+xRqvoCov2RfKY3dsIuDOO96P4iVZMlYbn+O2YolDB9TIDpDBGU/5P01\nj4qiNpHQF9Qh9ad7ey02au3wtzDL4ezzRytvI3nSNq7psIIJ67sBAHNAnY3s\nvB2Tnljm8jOjNlHaaY6fKhaY1Ugc68P1+wVYymOdnTfCnz/QjQAVXPNLYOlb\n12Jhs0Px2JCb081FpmEBuoWmHcBLWCzUPX+lKM+JiapY/zQjcQimUVU1URvi\nRKsOwPQbyVKZ+wiolzfhHCurEXqSP1b8PsHKWuKyuSAR2if70qbUuY9DNIzR\nhUT5\r\n=kO/y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"es/index.js","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","docz:dev":"docz dev","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","docz:build":"docz build","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"6.9.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","docz":"1.x","gulp":"^4.0.2","jest":"^24.9.0","svgo":"^1.3.2","react":"^16.12.0","vinyl":"^2.2.0","globby":"^10.0.1","lodash":"^4.17.15","stylis":"^3.5.4","tapable":"^1.1.3","ts-node":"^8.5.4","minipass":"^3.1.1","react-is":"^16.12.0","through2":"^3.0.1","cross-env":"^6.0.3","react-dom":"^16.12.0","babel-jest":"^24.9.0","gulp-clone":"^2.0.1","typescript":"^3.7.3","@babel/core":"^7.7.5","@types/gulp":"^4.0.6","@types/jest":"^24.0.23","@types/node":"^12.12.20","@types/svgo":"^1.3.0","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/react":"^16.9.16","merge-stream":"^2.0.0","@types/lodash":"^4.14.149","gulp-template":"^5.0.0","@types/tapable":"^1.0.4","@types/through2":"^2.0.34","@babel/preset-env":"^7.7.6","@rgrove/parse-xml":"^2.0.1","styled-components":"^5.0.0-rc.2","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","docz-theme-default":"^1.2.0","@types/merge-stream":"^1.1.2","@types/gulp-template":"^5.0.1","@babel/preset-typescript":"^7.7.4","@types/styled-components":"^4.4.1"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.0.0_1582859414167_0.12191101992809994","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"@ant-design/icons-svg","version":"4.1.0","license":"MIT","_id":"@ant-design/icons-svg@4.1.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"480b025f4b20ef7fe8f47d4a4846e4fee84ea06c","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.1.0.tgz","fileCount":4742,"integrity":"sha512-Fi03PfuUqRs76aI3UWYpP864lkrfPo0hluwGqh7NJdLhvH4iRDc3jbJqZIvRDLHKbXrvAfPPV3+zjUccfFvWOQ==","signatures":[{"sig":"MEYCIQD8xDk+3dnOtJE6L8NRQ4tdNetEF52s3SskbIkyjqUg6wIhALW9k/EiGlRme+8FAYf2J11uZ202nZ3RJEP63UyITcpr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3180002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeouW/CRA9TVsSAnZWagAAXDoP/j01lkfQWGp1ZaglqQ9J\naaimL7Oo8DRAtIbUKDxOwjpCILyFFZZcs7XF/fTcbOdPh5IsrkYiashrO426\nuhf3GjFiJBrr3uJivlRXJgRRHK/Nx3V+ytDlBRHOXTYqw+UcbV0G8a/TCsFh\np/n4G/QT8puriHq6OWu2KSsDYuqNF7L6B1y/4EncaFEpQTAsv95YaBP9xt0v\nwcA/YsfUxdh/jM37G6tqgMbf86ZefDZw1L1updEiUwjUniU2QvqHsmHkToRs\n/5eSlmQai2XJVuVBZ1nDdIl927DxTlq9SxTNYGzuw6Wd9TDYZ2SeDh/Vin30\n2ejKFDjl48q6Tw9CyNeZpVBYMXfLCrE2/33Z1tCme1x1dxs5QQo5+AsMS+1+\nZbnTeLAJAbNCOtbfdFhbjm/7RTd1T/UyptphPdSmCJvzSUQUzUeixBz+AuRL\ng02cLlVe7dr+2TOKxONUbi44diFC0nbAtlL3RllDyzmu/XE7i84dw69hOSEP\nE6By3qs8udDmFsEzfnDxKBY0nTXBiX/lzk7j+nB6GWQV1JQ8toGbfVfoimE/\n81wGZzUV2WHKQ2Qb70dUrdnYksvvIY8chCPWaZUOggsq/dIiHvXH3fAlISeC\nYYsW/9PH3vjNI8/0zPLnfmjocUVB0DRPgV3z+sQK+64EjS4eark6KE9WMp+6\n2w7z\r\n=hgHC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"es/index.js","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"6.14.2","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"12.16.1","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^6.8.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^3.8.3","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.1.0_1587733950648_0.8198381351577655","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"@ant-design/icons-svg","version":"4.2.0","license":"MIT","_id":"@ant-design/icons-svg@4.2.0","maintainers":[{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"duxiaodong","email":"duxiaodong@darlin.me"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"mmmary","email":"1084406753@qq.com"},{"name":"carrietan","email":"12mytan@gmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"},{"name":"wendellhu95","email":"wendellhu95@outlook.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"a31fbcf636279521940a6541633b225f5cc53eab","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.2.0.tgz","fileCount":4748,"integrity":"sha512-tC55k1r1XJg9f/xtJyPRIazZE44unI/nmi+nHySXZ0E6sZ1WynDEu7jcSNQd+E6vf1WxKvA61Tqr5ikfXiv4cA==","signatures":[{"sig":"MEUCIDfY7Xa7+dr7oTm3Ic+br8UWvaukfWSo1CLDJ9NVv7xsAiEAtHZl+mBID5rKa8pmxkcm/FNjQ/V75Yypth3G1+W9wcw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3242392},"main":"lib/index.js","module":"es/index.js","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"7.6.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"14.15.1","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^3.8.3","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.2.0_1632477139438_0.290337756718539","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"@ant-design/icons-svg","version":"4.2.1","license":"MIT","_id":"@ant-design/icons-svg@4.2.1","maintainers":[{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"duxiaodong","email":"duxiaodong@darlin.me"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"mmmary","email":"1084406753@qq.com"},{"name":"carrietan","email":"12mytan@gmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"},{"name":"wendellhu95","email":"wendellhu95@outlook.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"8630da8eb4471a4aabdaed7d1ff6a97dcb2cf05a","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.2.1.tgz","fileCount":4748,"integrity":"sha512-EB0iwlKDGpG93hW8f85CTJTs4SvMX7tt5ceupvhALp1IF44SeUFOMhKUOYqpsoYWQKAOuTRDMqn75rEaKDp0Xw==","signatures":[{"sig":"MEQCIE6z+Rg2ViHxJWlU3roJg8R2xK/i/o1sy66enO1IVCUAAiANzPkwWGDZlsbomq2ZPRQUfREaACjK9opv+RO/mP14vw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3242392,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwyOtCRA9TVsSAnZWagAAVR4QAKOS7CbM26SBL+G6Nr8L\nhnIcnFQqUAfFoDEXW/f6oUZhYYUvQzJoHCNoAZHGx/jRyhnpAjBRe9YVVBvE\nB/OOtTRLa3hK4M8acQ62+NDSZC/tfKZ65CzoUw+qkfM5wIWfg8i00pcdv71A\n+l7tq7E2KmWOsuCIKeM3YJ/4zFXxyLxq5tXQSZOPqT3Ykly+zpALf8UWtT8B\n5GDyEJgsggT9WlLENJQC8numLHsWUc8IJmNO6vzM07wuIw1SWq2BMLPy6laT\nh56STgAtgVJH7QpLWHsl4tE8xihyGIFeLoHs3DUdErxdwIwQiV7bxy1Kcuw+\n2FNWVwR7yPbsAzhr1g0MoQ+tNLGuKk01gL7k5uOxj3QRYURYnL/vUY1CwcSS\n4HCeokNQvqjjRsW44D0+XLq0+EIxhiz1QmGbx4CiTuW402OWbP3jzuqYKIMz\n0ZqZLNytyYO31gCMCLxNfqdqmtK4e7y8m2hPtSgQB76uBHcNNOdBraRqUEjC\ndRqPSn7WoludmI1SPCKkAa3kAOH9orUSuJPt89MbSWGu47dziEFT+ONbYWqZ\n4gTozE5uCFYOJcJO96v5fadTNjEe2IY1eJ098NQDlvTj4+w3+VhBy7mtlor0\nz+28U5eWAjZjyRfPHRflD5F2hVRDAWFWLcN7eS3YTcCo7twZIoUBDCB5gjKL\n2P5/\r\n=oncb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"es/index.js","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"7.6.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"14.15.1","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^3.8.3","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.2.1_1632478167956_0.6567262565750889","host":"s3://npm-registry-packages"}},"4.3.0-0":{"name":"@ant-design/icons-svg","version":"4.3.0-0","license":"MIT","_id":"@ant-design/icons-svg@4.3.0-0","maintainers":[{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"ced7940f9dd122e82e61f469150d21b6a5f09258","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.3.0-0.tgz","fileCount":4748,"integrity":"sha512-/h8fH5HiKOrCiJo0ODTVhVKmNX+AEACaT/0DsHnNw7fzmKnefG00KWnfaguSL2yj98Ot1c9FSkxlcKYfJ6OFfg==","signatures":[{"sig":"MEUCICsuC24XT25f/ApOfbmcy+SZHEtCgKzp1EhduTJ/4B5gAiEA8xzX5lxG45OKhBx+R4dIVFFg9U2nwvQhx4avd3qbNOU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3249058},"main":"lib/index.js","types":"./lib/index.d.ts","module":"es/index.js","gitHead":"ce67885dd5eb3a1915dd23c878beb1b04b3f14c4","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"8.11.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"16.16.0","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^4.0.0","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.3.0-0_1690871197077_0.786125190799785","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"@ant-design/icons-svg","version":"4.3.0","license":"MIT","_id":"@ant-design/icons-svg@4.3.0","maintainers":[{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"cd8d3624bba50975e848591cea12cb6be132cd82","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.3.0.tgz","fileCount":4748,"integrity":"sha512-WOgvdH/1Wl8Z7VXigRbCa5djO14zxrNTzvrAQzhWiBQtEKT0uTc8K1ltjKZ8U1gPn/wXhMA8/jE39SJl0WNxSg==","signatures":[{"sig":"MEYCIQCqbv0S6cOPNjqvjhFtrKfWNRwY6ZaBt4Hlbp+vgwYMtQIhAKjty68wynDasFpgaovzoRmaG2VicCdaD9SPDBKXtRDW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3249056},"main":"lib/index.js","types":"./lib/index.d.ts","module":"es/index.js","gitHead":"cd460959a0d518c02c3b3e820bcb9a03bbeecc24","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"8.11.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"16.16.0","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^4.0.0","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.3.0_1690871810486_0.9352999184643342","host":"s3://npm-registry-packages"}},"4.3.1":{"name":"@ant-design/icons-svg","version":"4.3.1","license":"MIT","_id":"@ant-design/icons-svg@4.3.1","maintainers":[{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"4b2f65a17d4d32b526baa6414aca2117382bf8da","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.3.1.tgz","fileCount":4748,"integrity":"sha512-4QBZg8ccyC6LPIRii7A0bZUk3+lEDCLnhB+FVsflGdcWPPmV+j3fire4AwwoqHV/BibgvBmR9ZIo4s867smv+g==","signatures":[{"sig":"MEUCIEqsHGcUHzhiQ4kIaM8f7G0MIuxQAFho3RIkhgBURl1cAiEAkwP3JyatV3PMmCv5mf2MhVLbAGmCiAAiF6XDyQsEnFQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3283471},"main":"lib/index.js","types":"./lib/index.d.ts","module":"es/index.js","gitHead":"4ab94f341f63deccd1b7fa296f47ed88b818a3fe","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"8.11.0","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"16.16.0","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^4.0.0","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.3.1_1692870787080_0.019564475239840062","host":"s3://npm-registry-packages"}},"4.3.2":{"name":"@ant-design/icons-svg","version":"4.3.2","license":"MIT","_id":"@ant-design/icons-svg@4.3.2","maintainers":[{"name":"blueboylijian","email":"onlyyoulove3@gmail.com"},{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"ab2e082991877fdc85b2b32f0b68628b716bad23","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.3.2.tgz","fileCount":4748,"integrity":"sha512-s9WV19cXTC/Tux/XpDru/rCfPZQhGaho36B+9RrN1v5YsaKmE6dJ+fq6LQnXVBVYjzkqykEEK+1XG+SYiottTQ==","signatures":[{"sig":"MEUCIQDmucAfFXBgIiEEXjrQMJn1CVLqHD1onwNlnUJI0481fwIgUrfOpSUz/xvQ3/T/XKLIbUdWVOmjJHZZFUGhbv8IDdg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3293119},"main":"lib/index.js","types":"./lib/index.d.ts","module":"es/index.js","gitHead":"853d54519d617d546bf74e64b3082d1819f1cb13","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"9.8.1","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"18.18.2","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^4.0.0","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.3.2_1706000311656_0.06867117948087498","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"@ant-design/icons-svg","version":"4.4.0","license":"MIT","_id":"@ant-design/icons-svg@4.4.0","maintainers":[{"name":"blueboylijian","email":"onlyyoulove3@gmail.com"},{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"435b544291fdabe992b3fd17829ff88c04c628b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.4.0.tgz","fileCount":5003,"integrity":"sha512-71rcNssTaRL1ytvPLebKuc/8Bjqxs5V1YkTbqlSCvNa0Se+HmYJwWHhRTpsSHBh+sWFtc7xpGCTRW2Ta04XyHw==","signatures":[{"sig":"MEUCIA2r40Z1IcGzS9BLUU1g6cKES4f4DYvJE7zqA32pP0TXAiEAod6lgPVNbaN3UcSgrZjICN1TRiZNHTXCMcuZEORAk2Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3553158},"main":"lib/index.js","types":"./lib/index.d.ts","module":"es/index.js","gitHead":"b48a7bf72145fd8105a76a30d0f95478acceb562","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"9.8.1","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"18.18.2","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^4.0.0","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.4.0_1706696271937_0.7174835154644856","host":"s3://npm-registry-packages"}},"4.4.1":{"name":"@ant-design/icons-svg","version":"4.4.1","license":"MIT","_id":"@ant-design/icons-svg@4.4.1","maintainers":[{"name":"blueboylijian","email":"onlyyoulove3@gmail.com"},{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"8d595afbc195efc0a6b69d9eba6b6d94e98ee1bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.4.1.tgz","fileCount":5003,"integrity":"sha512-dIEsZNOeikwCsgSLpwE0Vsgiaj10bKcgut+CvGD5Dck4kOA+TuFcTCM+l2uEs4cMUANkfjrt3hDg1PzlDNhXqg==","signatures":[{"sig":"MEYCIQCysvmHUt17ZPAt1Jg6WT4ci1mBWKCW6WaEVKxASrKigAIhAOyQ7I98vCdcmhRV69+Q+i8faMbbUWrGxYjX4ZE3Hw/Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3554962},"main":"lib/index.js","types":"./lib/index.d.ts","module":"es/index.js","gitHead":"a5c842f0907463ae43fae94bdf03075d3337b887","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"9.8.1","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"18.18.2","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^4.0.0","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.4.1_1706757533142_0.16576870593210713","host":"s3://npm-registry-packages"}},"4.4.2":{"name":"@ant-design/icons-svg","version":"4.4.2","license":"MIT","_id":"@ant-design/icons-svg@4.4.2","maintainers":[{"name":"blueboylijian","email":"onlyyoulove3@gmail.com"},{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-icons/","bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"dist":{"shasum":"ed2be7fb4d82ac7e1d45a54a5b06d6cecf8be6f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/icons-svg/-/icons-svg-4.4.2.tgz","fileCount":5003,"integrity":"sha512-vHbT+zJEVzllwP+CM+ul7reTEfBR0vgxFe7+lREAsAA7YGsYpboiq2sQNeQeRvh09GfQgs/GyFEvZpJ9cLXpXA==","signatures":[{"sig":"MEQCIGzcamkS6oI+d+ihe+kawKJQjaEl2kjdKuFiQ7b03KygAiAvANkBa+8fn92vyWdOibMxdafeehC9ss9+seCLCEEdNA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":3555162},"main":"lib/index.js","types":"./lib/index.d.ts","module":"es/index.js","gitHead":"038764e4e46499212751a452704f64231fa756ba","scripts":{"g":"npm run generate","test":"cross-env NODE_ENV=test && npm run test:unit","build":"cross-env NODE_ENV=production && npm run build:es && npm run build:lib","digest":"node scripts/digest.js","build:es":"tsc --project tsconfig.build.json --module esnext --outDir es","generate":"cross-env NODE_ENV=production gulp --require ts-node/register/transpile-only","build:lib":"tsc --project tsconfig.build.json --module commonjs --outDir lib","test:unit":"jest","type-check":"tsc --noEmit","prepublishOnly":"npm run test && npm run g && npm run build && npm run type-check && npm run digest"},"_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"_npmVersion":"9.8.1","description":"Abstract nodes for ant design icons.","directories":{},"sideEffects":false,"_nodeVersion":"18.18.2","publishConfig":{"access":"public","registry":"https://registry.npmjs.org"},"_hasShrinkwrap":false,"devDependencies":{"del":"^5.1.0","gulp":"^4.0.2","jest":"^25.1.0","svgo":"^1.3.2","ramda":"^0.27.0","vinyl":"^2.2.0","eslint":"^7.16.0","globby":"^11.0.0","ts-node":"^8.6.2","through2":"^3.0.1","cross-env":"^7.0.0","babel-jest":"^25.1.0","gulp-clone":"^2.0.1","typescript":"^4.0.0","@babel/core":"^7.8.6","@types/gulp":"^4.0.6","@types/jest":"^25.1.3","@types/node":"^13.9.3","@types/svgo":"^1.3.1","gulp-concat":"^2.6.1","gulp-header":"^2.0.9","gulp-rename":"^2.0.0","@types/ramda":"^0.26.43","@types/through2":"^2.0.34","lodash.template":"^4.5.0","lodash.camelcase":"^4.3.0","@babel/preset-env":"^7.8.6","@rgrove/parse-xml":"^2.0.2","lodash.upperfirst":"^4.3.1","@types/gulp-concat":"^0.0.32","@types/gulp-rename":"^0.0.33","@types/lodash.template":"^4.4.6","@types/lodash.camelcase":"^4.3.6","@babel/preset-typescript":"^7.8.3","@types/lodash.upperfirst":"^4.3.6","@types/rgrove__parse-xml":"^1.1.0","@typescript-eslint/parser":"^2.21.0","@typescript-eslint/eslint-plugin":"^2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/icons-svg_4.4.2_1706769780151_0.7491622558519402","host":"s3://npm-registry-packages"}}},"time":{"created":"2019-07-30T07:16:23.798Z","modified":"2025-11-05T03:24:40.342Z","4.0.0-alpha.0":"2019-07-30T07:16:24.301Z","4.0.0-alpha.1":"2019-12-18T15:02:24.659Z","4.0.0-alpha.2":"2019-12-23T15:49:34.501Z","4.0.0-alpha.3":"2019-12-24T07:48:58.513Z","4.0.0-alpha.4":"2019-12-24T13:53:43.330Z","4.0.0-alpha.5":"2019-12-25T11:52:30.241Z","4.0.0-rc.0":"2020-01-15T07:06:27.323Z","4.0.0":"2020-02-28T03:10:14.454Z","4.1.0":"2020-04-24T13:12:30.986Z","4.2.0":"2021-09-24T09:52:19.693Z","4.2.1":"2021-09-24T10:09:28.166Z","4.3.0-0":"2023-08-01T06:26:37.418Z","4.3.0":"2023-08-01T06:36:50.724Z","4.3.1":"2023-08-24T09:53:07.546Z","4.3.2":"2024-01-23T08:58:31.919Z","4.4.0":"2024-01-31T10:17:52.178Z","4.4.1":"2024-02-01T03:18:53.445Z","4.4.2":"2024-02-01T06:43:00.450Z"},"bugs":{"url":"https://github.com/ant-design/ant-design-icons/issues"},"license":"MIT","homepage":"https://github.com/ant-design/ant-design-icons/","repository":{"url":"git+https://github.com/ant-design/ant-design-icons.git","type":"git"},"description":"Abstract nodes for ant design icons.","contributors":[{"name":"HeskeyBaozi","email":"hezhiyu233@foxmail.com"}],"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"smith3816@gmail.com","name":"zombiej"},{"email":"wasd2144@hotmail.com","name":"chenshuai2144"},{"email":"arvinx@foxmail.com","name":"arvinxx"},{"email":"1075746765@qq.com","name":"madccc"},{"email":"827743388@qq.com","name":"ranranup123"}],"readme":"

\nAnt Design Icons\n

\n\n

\n⭐ The abstract node of the Ant Design SVG icons.\n

\n\n
\n\n[![NPM version](https://img.shields.io/npm/v/@ant-design/icons-svg.svg?style=flat)](https://npmjs.org/package/@ant-design/icons-svg)\n[![NPM downloads](http://img.shields.io/npm/dm/@ant-design/icons-svg.svg?style=flat)](https://npmjs.org/package/@ant-design/icons-svg)\n\n
\n\nCheck [all icons list](https://github.com/ant-design/ant-design-icons/issues/227).\n\n## Install\n\n```bash\n# use yarn\n$ yarn add @ant-design/icons-svg\n\n# or use npm\n$ npm install @ant-design/icons-svg --save\n```\n\n## Use Library Adapter\n\n- React: See [@ant-design/icons](../icons-react) to learn about detail usage.\n\n## Contribution Guide 贡献指南\n\nSee contribution guide. [English](./docs/ContributionGuide.md) | [中文](./docs/ContributionGuide.zh-CN.md)\n\n## Get started\n\n```ts\nimport { AccountBookOutlined } from '@ant-design/icons-svg';\n// or\n// import AccountBookOutlined from '@ant-design/icons-svg/es/asn/AccountBookOutlined';\n\nconsole.log(AccountBookOutlined);\n// ==>\n// {\n// name: 'account-book',\n// theme: 'outlined',\n// icon: {\n// tag: 'svg',\n// attrs: {\n// viewBox: '64 64 896 896',\n// focusable: 'false'\n// },\n// children: [\n// {\n// tag: 'path',\n// attrs: {\n// d:\n// 'M880 184H712v-64c0-4.4-3.6-8-8-8h- ...'\n// }\n// }\n// ]\n// }\n// };\n```\n\n- Interfaces\n\nThis library export all SVG files as `IconDefinition`.\n\n```ts\n// types.d.ts\nexport declare type ThemeType = 'filled' | 'outlined' | 'twotone';\n\nexport interface AbstractNode {\n tag: string;\n attrs: {\n [key: string]: string;\n };\n children?: AbstractNode[];\n}\n\nexport interface IconDefinition {\n name: string; // kebab-case-style\n theme: ThemeType;\n icon:\n | ((primaryColor: string, secondaryColor: string) => AbstractNode)\n | AbstractNode;\n}\n```\n\n## Render Helpers\n\n```ts\nimport { AccountBookFilled } from '@ant-design/icons-svg';\nimport { renderIconDefinitionToSVGElement } from '@ant-design/icons-svg/es/helpers';\n\nconst svgHTMLString = renderIconDefinitionToSVGElement(AccountBookFilled, {\n extraSVGAttrs: { width: '1em', height: '1em', fill: 'currentColor' }\n});\n\nconsole.log(svgHTMLString);\n// ==>\n// ''\n```\n\n- Interfaces\n\n```ts\ndeclare function renderIconDefinitionToSVGElement(\n icon: IconDefinition,\n options?: HelperRenderOptions\n): string;\n\ninterface HelperRenderOptions {\n placeholders?: {\n primaryColor?: string; // default #333\n secondaryColor?: string; // default #E6E6E6\n };\n extraSVGAttrs?: {\n [key: string]: string;\n };\n}\n```\n","readmeFilename":"ReadMe.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/14/68/07da1f3328d8a6f658e3edd6a79053dc20220af42a796e6f9cda041261e3e1a5a1b9f9eb2b2ce0e2848a2b9fe3dee85189cd6857428b4fbfbde34da95d5c b/frontend/.npm-cache/_cacache/content-v2/sha512/14/68/07da1f3328d8a6f658e3edd6a79053dc20220af42a796e6f9cda041261e3e1a5a1b9f9eb2b2ce0e2848a2b9fe3dee85189cd6857428b4fbfbde34da95d5c new file mode 100644 index 0000000..234c769 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/14/68/07da1f3328d8a6f658e3edd6a79053dc20220af42a796e6f9cda041261e3e1a5a1b9f9eb2b2ce0e2848a2b9fe3dee85189cd6857428b4fbfbde34da95d5c differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/14/db/398d2db6fcceb728d96caf695119c24e791df4d9b39b7c9ca7db2d237f25402e7bfd5c0da65eed5ed9875f1c53801e3bd00744bf6ba5b52e7d3b82ed8b7d b/frontend/.npm-cache/_cacache/content-v2/sha512/14/db/398d2db6fcceb728d96caf695119c24e791df4d9b39b7c9ca7db2d237f25402e7bfd5c0da65eed5ed9875f1c53801e3bd00744bf6ba5b52e7d3b82ed8b7d new file mode 100644 index 0000000..81dc52f --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/14/db/398d2db6fcceb728d96caf695119c24e791df4d9b39b7c9ca7db2d237f25402e7bfd5c0da65eed5ed9875f1c53801e3bd00744bf6ba5b52e7d3b82ed8b7d @@ -0,0 +1 @@ +{"_id":"combined-stream","_rev":"45-8071877f56d51159c12935cada0a84d7","name":"combined-stream","description":"A stream that emits multiple other streams one after another.","dist-tags":{"latest":"1.0.8","next":"1.0.6-rc1"},"versions":{"0.0.0":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"0.0.0","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","engines":{"node":"*"},"dependencies":{},"devDependencies":{},"_id":"combined-stream@0.0.0","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.9-pre","_defaultsLoaded":true,"dist":{"shasum":"45550d8a25ee3b42de817cf675690732240e45d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-0.0.0.tgz","integrity":"sha512-LdFWln+/shOpBLCd2VfHUxEwP9m/kJ75dgBWKVLJ+Ye4PKOFbFE3c8ZnKDXQyu3qf+pfNWb/vtciWAmrcK+5Sg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF8hF+EshQdiKYDETWdpIAhXPdjavmXJshrXKe141vcTAiEA0jA1SdtS7fojBuSnvLvnP4kjZ4JKeS/xHY6NyuWa2nY="}]},"scripts":{},"directories":{}},"0.0.1":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"0.0.1","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","engines":{"node":"*"},"dependencies":{"delayed-stream":"0.0.5"},"devDependencies":{"far":"0.0.1"},"_id":"combined-stream@0.0.1","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.9-pre","_defaultsLoaded":true,"dist":{"shasum":"dff7a316813a9ec58ef03bde5c1fc7133a35f944","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-0.0.1.tgz","integrity":"sha512-e+lVCV60dvpBOTToTv42ygWML9zxzlNkjwKkFO1bjbK9vGvY1NF/2GBkDRuAOTG/NLCP8/zcv1Oif202ly9jDQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAoCvluqDe9r0IXGGqtWM0AwSpOLuWi/UJy0rUC0qj7RAiB9Np/kaRMJAyS/BnSjbGa3XWqX0sOvl8RcbQ+8cApa/Q=="}]},"scripts":{},"directories":{}},"0.0.2":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"0.0.2","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","engines":{"node":"*"},"dependencies":{"delayed-stream":"0.0.5"},"devDependencies":{"far":"0.0.1"},"_id":"combined-stream@0.0.2","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.9-pre","_defaultsLoaded":true,"dist":{"shasum":"6c1691577cfb5f842f7ac1fecd8515a13cb99c9c","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-0.0.2.tgz","integrity":"sha512-k8CpzliZ8WYzOSRw4et5c9GZBQsMXpowpEfidipCQt8XDP3bEM89Jghpfl/H6mqOnap4PODDTCzL1dob5997YA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGY8yVEomNqs8adoDE64xwsZTYDkSlrrUh0e8fYzGBt4AiEA6GwV9eBF8Sv0HaXXsNp45CZBYdrZMZUUGik+uJ4dtDI="}]},"scripts":{},"directories":{}},"0.0.3":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"0.0.3","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","engines":{"node":"*"},"dependencies":{"delayed-stream":"0.0.5"},"devDependencies":{"far":"0.0.1"},"_id":"combined-stream@0.0.3","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.9-pre","_defaultsLoaded":true,"dist":{"shasum":"a1d6223c463a000b21c9937c4b15ef41ba001f78","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-0.0.3.tgz","integrity":"sha512-obT/nnZll8VTnjKTUGtov1vYMCWaTLfrkIHmfioG1wzLMtG5dfMXenNH/wQ5aoxpPaDnJtuYFixDUxDl8V84yQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFdRsVKZY3KxEfRQ2vFCr3CJ4IWH42mcvQ0osB7RGDEyAiBFfP0xLWQ76sXppwCAxvtudmtEns1Az3+dCUTD/5mfeg=="}]},"scripts":{},"directories":{}},"0.0.4":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"0.0.4","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","engines":{"node":"*"},"dependencies":{"delayed-stream":"0.0.5"},"devDependencies":{"far":"0.0.1"},"_id":"combined-stream@0.0.4","dist":{"shasum":"2d1a43347dbe9515a4a2796732e5b88473840b22","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-0.0.4.tgz","integrity":"sha512-RVtYNBtwuVyncYQwuTnrsCIfsmsVPnGj1RI8xNeqhmuWFLfNUfaGxGbLWx4N10fNd+MnNVh+SO4f60/7ghV3fg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICqW1/d9hWOgsL5cWoJdoqf+M23HsGabYE5D6EhyH0ZXAiEA5mXYaNUK//89ww7SPH/sbGHFKPtUc7++k/Kb2FEp2tc="}]},"_npmVersion":"1.1.61","_npmUser":{"name":"celer","email":"dtyree77@gmail.com"},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"celer@scrypt.net"}],"directories":{}},"0.0.5":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"0.0.5","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"0.0.5"},"devDependencies":{"far":"~0.0.7"},"gitHead":"19d9bdd4c20f6806c2ae8adb00a53fb6fd154740","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@0.0.5","_shasum":"29ed76e5c9aad07c4acf9ca3d32601cce28697a2","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"celer@scrypt.net"},{"name":"alexindigo","email":"iam@alexindigo.com"}],"dist":{"shasum":"29ed76e5c9aad07c4acf9ca3d32601cce28697a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-0.0.5.tgz","integrity":"sha512-5iibGSlnX9jIyz9F0eSgaoazkVo+7+pQTPS9gJmrP9FcyCaxxaIRb8OLiu1nYHxDeFFTWkkLGe/bkvZdzhza+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCVKfIi6koT1itHhDQ0OQe6XJNZZDD1a40miPPectdtAAIgfwLMOvS9sL5zndqiuiBIGGcjZGxR69nU1t9Sxv0iJM4="}]},"directories":{}},"0.0.7":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"0.0.7","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"0.0.5"},"devDependencies":{"far":"~0.0.7"},"bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@0.0.7","dist":{"shasum":"0137e657baa5a7541c57ac37ac5fc07d73b4dc1f","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-0.0.7.tgz","integrity":"sha512-qfexlmLp9MyrkajQVyjEDb0Vj+KhRgR/rxLiVhaihlT+ZkX0lReqtH6Ack40CvMDERR4b5eFp3CreskpBs1Pig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA9L9SJUfAdOuM8+wB5e9/cME9gsVMu6sTd6Srky8xbXAiEA4e7pgDB24xOFR5t1TvB3B+CTGZ7VIaSIgV6Mczt66Bk="}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"felixge","email":"felix@debuggable.com"},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"celer@scrypt.net"},{"name":"alexindigo","email":"iam@alexindigo.com"}],"directories":{}},"1.0.0":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.0","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"0.0.5"},"devDependencies":{"far":"~0.0.7"},"gitHead":"8bb2526b074ba7da9ce430e4158b4b77dd89ecd8","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@1.0.0","_shasum":"d451d5a5f94340b3480e49b38bfd1811ab1b2110","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.6.4","_npmUser":{"name":"apechimp","email":"apeherder@gmail.com"},"dist":{"shasum":"d451d5a5f94340b3480e49b38bfd1811ab1b2110","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.0.tgz","integrity":"sha512-+cWz+97tOTM7FKdAWAIr4hViY2GJKjTDaXAv7Vh/bqP8ZHkZ9fIb5jEt0+mXsesS1i0LvL32z7xbALPl2VQeww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC8qCt13NOpMHIycnfz7ZS6aRRUVGkHXZ/kMCag0Lr1CwIgGuWR0jPMDnNUSl3SUci3u5AC47Pse2sJToHyI8XTA/I="}]},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"dtyree77@gmail.com"},{"name":"alexindigo","email":"iam@alexindigo.com"},{"name":"apechimp","email":"apeherder@gmail.com"}],"directories":{}},"1.0.1":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.1","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"^1.0.0"},"devDependencies":{"far":"~0.0.7"},"gitHead":"69b8207c14d7ff95b7e69c1cc00b496ebdca0644","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@1.0.1","_shasum":"d29988ca26d4a0fb85d384650ba8db5948d2f41b","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.6.4","_npmUser":{"name":"apechimp","email":"apeherder@gmail.com"},"dist":{"shasum":"d29988ca26d4a0fb85d384650ba8db5948d2f41b","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.1.tgz","integrity":"sha512-JS5TtJcwW51TyE/kVEAuBi9Kl6XIdho4VEfqXjg7gMthb1/13TOauaX7ZkmtyVTb5WEZrhCCuw/wjgHyOyEgaQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCgjvlJLqSoAIN/7qUMxIVs5Fml3BJa6rfgiMkmRxSL7gIgM1sX4pj+G3WRgGeQ8Vgevqugj0+ogodiWVMUhiQRbvo="}]},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"dtyree77@gmail.com"},{"name":"alexindigo","email":"iam@alexindigo.com"},{"name":"apechimp","email":"apeherder@gmail.com"}],"directories":{}},"1.0.2":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.2","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"^1.0.0"},"devDependencies":{"far":"~0.0.7"},"gitHead":"e73d8849659fc4c382f952986d88e8842f345fa5","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@1.0.2","_shasum":"6ae58023aef4deae6b0993948ab9a0d0af2b4b72","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.6.4","_npmUser":{"name":"apechimp","email":"apeherder@gmail.com"},"dist":{"shasum":"6ae58023aef4deae6b0993948ab9a0d0af2b4b72","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.2.tgz","integrity":"sha512-7LwwHCXWJGfsfu7DiXuYoIgqnRSls4MKXzwQbchsvX7A/xPbU0qwNbBCMeocRLmHqJP7rTaFBUmRPgqh27s6Nw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDKBg/3LxmF8IHOkSnmSBzsqQZ5wxkTm/qO+fjFha2a0AiBoJ/PTrrFajOSLXIMnApXvKHJD2kAbjEFQNrMniNrrQQ=="}]},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"dtyree77@gmail.com"},{"name":"alexindigo","email":"iam@alexindigo.com"},{"name":"apechimp","email":"apeherder@gmail.com"}],"directories":{}},"1.0.3":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.3","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"^1.0.0"},"devDependencies":{"far":"~0.0.7"},"license":"MIT","gitHead":"f1a12682aed63acb3cd66857104202a7e7ca5565","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@1.0.3","_shasum":"c224cc35d3cb98e25dead532472a18e8f75df5ab","_from":".","_npmVersion":"2.10.0","_nodeVersion":"2.0.1","_npmUser":{"name":"apechimp","email":"apeherder@gmail.com"},"dist":{"shasum":"c224cc35d3cb98e25dead532472a18e8f75df5ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.3.tgz","integrity":"sha512-ti+lCx2J0cWkksupsP2xxjb9XgXVX+6Zgf+fsKqcbNHHPoEOZkPgwU4kziJtbPUrJLsrp1RWXA+u0a7KwcgmzQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA5xSVClLVFyyKqdSrdym19zx49yGQPGib1pQo/mkQloAiEAzPbNTn5h5ouImQJpQwudh2/N+Wc38U9pP+Ka4PSf8ks="}]},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"dtyree77@gmail.com"},{"name":"alexindigo","email":"iam@alexindigo.com"},{"name":"apechimp","email":"apeherder@gmail.com"}],"directories":{}},"1.0.4":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.4","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"^1.0.0"},"devDependencies":{"far":"~0.0.7"},"license":"MIT","gitHead":"ffea6d5444d708a4e457286cc80b546c81af4756","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@1.0.4","_shasum":"f988793ed1a59c5e5c9e1e395c4207d409527c8b","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"dist":{"shasum":"f988793ed1a59c5e5c9e1e395c4207d409527c8b","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.4.tgz","integrity":"sha512-BX6ms9qZiZnVTxIo+CLS8q9V3w5FGQJPb/3tuwEQWdtLd7FDC6F78A6k8zhJabHXyT3jffZhGA/1QaSYnAoATA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDmZyoEQ/ZJpzZxRio6X5XPt9C+bhpsUfVRcrq+xCDghAiEAg+Oe3Bvb+j7pBVf1lBUzoguVVHMpMVlikqZLH+ry2Og="}]},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"dtyree77@gmail.com"},{"name":"alexindigo","email":"iam@alexindigo.com"},{"name":"apechimp","email":"apeherder@gmail.com"}],"directories":{}},"1.0.5":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.5","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"~1.0.0"},"devDependencies":{"far":"~0.0.7"},"license":"MIT","gitHead":"cfc7b815d090a109bcedb5bb0f6713148d55a6b7","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@1.0.5","_shasum":"938370a57b4a51dea2c77c15d5c5fdf895164009","_from":".","_npmVersion":"2.10.1","_nodeVersion":"0.12.4","_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"dist":{"shasum":"938370a57b4a51dea2c77c15d5c5fdf895164009","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.5.tgz","integrity":"sha512-JgSRe4l4UzPwpJuxfcPWEK1SCrL4dxNjp1uqrQLMop3QZUVo+hDU8w9BJKA4JPbulTWI+UzrI2UA3tK12yQ6bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDde6BwEmWCIEGgqzh8iZultwaoQtv8iNP/BVzlgc5FBgIhALHdUQrliZKVGTZIPxm8mag/QxZru6a7cz9P11yBfO+n"}]},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"celer","email":"dtyree77@gmail.com"},{"name":"alexindigo","email":"iam@alexindigo.com"},{"name":"apechimp","email":"apeherder@gmail.com"}],"directories":{}},"1.0.6-rc1":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.6-rc1","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"~1.0.0"},"devDependencies":{"far":"~0.0.7"},"license":"MIT","readmeFilename":"Readme.md","readme":"# combined-stream\n\nA stream that emits multiple other streams one after another.\n\n**NB** Currently `combined-stream` works with streams version 1 only. There is ongoing effort to switch this library to streams version 2. Any help is welcome. :) Meanwhile you can explore other libraries that provide streams2 support with more or less compatibility with `combined-stream`.\n\n- [combined-stream2](https://www.npmjs.com/package/combined-stream2): A drop-in streams2-compatible replacement for the combined-stream module.\n\n- [multistream](https://www.npmjs.com/package/multistream): A stream that emits multiple other streams one after another.\n\n## Installation\n\n``` bash\nnpm install combined-stream\n```\n\n## Usage\n\nHere is a simple example that shows how you can use combined-stream to combine\ntwo files into one:\n\n``` javascript\nvar CombinedStream = require('combined-stream');\nvar fs = require('fs');\n\nvar combinedStream = CombinedStream.create();\ncombinedStream.append(fs.createReadStream('file1.txt'));\ncombinedStream.append(fs.createReadStream('file2.txt'));\n\ncombinedStream.pipe(fs.createWriteStream('combined.txt'));\n```\n\nWhile the example above works great, it will pause all source streams until\nthey are needed. If you don't want that to happen, you can set `pauseStreams`\nto `false`:\n\n``` javascript\nvar CombinedStream = require('combined-stream');\nvar fs = require('fs');\n\nvar combinedStream = CombinedStream.create({pauseStreams: false});\ncombinedStream.append(fs.createReadStream('file1.txt'));\ncombinedStream.append(fs.createReadStream('file2.txt'));\n\ncombinedStream.pipe(fs.createWriteStream('combined.txt'));\n```\n\nHowever, what if you don't have all the source streams yet, or you don't want\nto allocate the resources (file descriptors, memory, etc.) for them right away?\nWell, in that case you can simply provide a callback that supplies the stream\nby calling a `next()` function:\n\n``` javascript\nvar CombinedStream = require('combined-stream');\nvar fs = require('fs');\n\nvar combinedStream = CombinedStream.create();\ncombinedStream.append(function(next) {\n next(fs.createReadStream('file1.txt'));\n});\ncombinedStream.append(function(next) {\n next(fs.createReadStream('file2.txt'));\n});\n\ncombinedStream.pipe(fs.createWriteStream('combined.txt'));\n```\n\n## API\n\n### CombinedStream.create([options])\n\nReturns a new combined stream object. Available options are:\n\n* `maxDataSize`\n* `pauseStreams`\n\nThe effect of those options is described below.\n\n### combinedStream.pauseStreams = `true`\n\nWhether to apply back pressure to the underlaying streams. If set to `false`,\nthe underlaying streams will never be paused. If set to `true`, the\nunderlaying streams will be paused right after being appended, as well as when\n`delayedStream.pipe()` wants to throttle.\n\n### combinedStream.maxDataSize = `2 * 1024 * 1024`\n\nThe maximum amount of bytes (or characters) to buffer for all source streams.\nIf this value is exceeded, `combinedStream` emits an `'error'` event.\n\n### combinedStream.dataSize = `0`\n\nThe amount of bytes (or characters) currently buffered by `combinedStream`.\n\n### combinedStream.append(stream)\n\nAppends the given `stream` to the combinedStream object. If `pauseStreams` is\nset to `true, this stream will also be paused right away.\n\n`streams` can also be a function that takes one parameter called `next`. `next`\nis a function that must be invoked in order to provide the `next` stream, see\nexample above.\n\nRegardless of how the `stream` is appended, combined-stream always attaches an\n`'error'` listener to it, so you don't have to do that manually.\n\nSpecial case: `stream` can also be a String or Buffer.\n\n### combinedStream.write(data)\n\nYou should not call this, `combinedStream` takes care of piping the appended\nstreams into itself for you.\n\n### combinedStream.resume()\n\nCauses `combinedStream` to start drain the streams it manages. The function is\nidempotent, and also emits a `'resume'` event each time which usually goes to\nthe stream that is currently being drained.\n\n### combinedStream.pause();\n\nIf `combinedStream.pauseStreams` is set to `false`, this does nothing.\nOtherwise a `'pause'` event is emitted, this goes to the stream that is\ncurrently being drained, so you can use it to apply back pressure.\n\n### combinedStream.end();\n\nSets `combinedStream.writable` to false, emits an `'end'` event, and removes\nall streams from the queue.\n\n### combinedStream.destroy();\n\nSame as `combinedStream.end()`, except it emits a `'close'` event instead of\n`'end'`.\n\n## License\n\ncombined-stream is licensed under the MIT license.\n","licenseText":"Copyright (c) 2011 Debuggable Limited \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","_id":"combined-stream@1.0.6-rc1","dist":{"shasum":"aca80f422f9778ddc1dc05980838189e5b34b913","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.6-rc1.tgz","fileCount":7,"unpackedSize":11074,"integrity":"sha512-OZGx7sV9JGMi4vmwkBYDE+Sm40kKoWSDnvrNh/iPRwYnZUjDpJiKIRi9bEW3F6p7uHcesA2HqEFhwiW09eQXOg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDyKUgQR7YGvGXx/rDvzSVuR75UahReNCqc2mlwkMr+XgIhAKIy/5fAY3Ty9+tkC5FwBxqwrgTg7G3A2jjedAowXyQc"}]},"maintainers":[{"email":"iam@alexindigo.com","name":"alexindigo"},{"email":"apeherder@gmail.com","name":"apechimp"},{"email":"dtyree77@gmail.com","name":"celer"},{"email":"felix@debuggable.com","name":"felixge"}],"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/combined-stream_1.0.6-rc1_1518453222275_0.3377146156635127"},"_hasShrinkwrap":false},"1.0.6":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.6","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"~1.0.0"},"devDependencies":{"far":"~0.0.7"},"license":"MIT","licenseText":"Copyright (c) 2011 Debuggable Limited \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","_id":"combined-stream@1.0.6","dist":{"shasum":"723e7df6e801ac5613113a7e445a9b69cb632818","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.6.tgz","fileCount":7,"unpackedSize":11070,"integrity":"sha512-cN6NJ9NnPLDiP/CpmVC1knLFqNjD9Hi1vPsacL/WQP3v8cqVbZpbpX6NHmYJo2fR4B80CgE4cEgPWiDauAQzPw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD6r5pwOjiudP2KIFrRgwCudBh59ozLpQYV6qRe8fku2gIhAKHIX3r8LRoYNGdlcYdMreWtwsFPzi7w51DI0JY5zUHK"}]},"maintainers":[{"email":"iam@alexindigo.com","name":"alexindigo"},{"email":"apeherder@gmail.com","name":"apechimp"},{"email":"dtyree77@gmail.com","name":"celer"},{"email":"felix@debuggable.com","name":"felixge"}],"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/combined-stream_1.0.6_1518539465161_0.17330394935691018"},"_hasShrinkwrap":false},"1.0.7":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.7","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"~1.0.0"},"devDependencies":{"far":"~0.0.7"},"license":"MIT","licenseText":"Copyright (c) 2011 Debuggable Limited \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","_id":"combined-stream@1.0.7","dist":{"shasum":"2d1d24317afb8abe95d6d2c0b07b57813539d828","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.7.tgz","integrity":"sha512-brWl9y6vOB1xYPZcpZde3N9zDByXTosAeMDo4p1wzo6UMOX4vumB+TP1RZ76sfE6Md68Q0NJSrE/gbezd4Ul+w==","fileCount":7,"unpackedSize":11070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboSiYCRA9TVsSAnZWagAA6nEP/14/QA43Q5Z7qBrSHpgY\nV6qK0agm+VHkkzPp7rIhYPMY4NxQWusR/rOazG7ynVrLwjZFqF3Pwk8EkiYz\nYy883nRP5LDTNzyP7u7PrNoXrxWnQQsoKxaUuxqhVRzLf+H+tvjBc/rA0iWO\nPeTyBKQ/41g+TNh82/ArNxDwS8WL33TJzM0QwvxgVpPS2xan4LFCsaAn4j5z\nTZhbHynupTnAcU7AFw7CBRGooWKByG0OtHg+eLh738aFz12aaMhvjmANp3ml\nSXQx7V72aACZiBsnSKlXEyhuaqRSSN2Pw9tmzau5rNzTPYL+CG06vDQm/gVy\nYx/pyrTAXmcsoKWb2wXnez7+F5AHxIqF/ucl+gG/FOa6GQ17PmYZ4d2Tdfog\nC4Gpn8ShW0zGR6AsyqaphSpVcN1oe0cJL1UAkekeJZTYhw2p2FxVz6crLBDd\nSfRVYRFc4bZLu2QUbKaTaqCkzOSH5oAGCk56F69IMQqV4Qd8XCjRCaFb67WO\n3kGdYRUv/YAJEKrgVaKPhZnwkfLMp2FtxPiD3D1dDkGcgeY26xsotZUyryw2\nJBCttUb1Qn019cZJJ+ljQGkODuZDJ6Z/ZNvPh0EqTkknYFbT/fWlcDtrSeXo\n5Usn3HEkeXxEgRiO9VvVj24Ak0F9Y7O1iuxmPo5YJSUKdyanbox3vQ5dUnzE\nDCR6\r\n=saAR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCr+pVHPpC/2uL2XI/FlczJc1xTH1gjXQtxDJ4rbJY0cQIhAJS6DZyD1qi7smrru2Yqr3gOt3MxeU0LkDbDHRK5bV76"}]},"maintainers":[{"email":"iam@alexindigo.com","name":"alexindigo"},{"email":"apeherder@gmail.com","name":"apechimp"},{"email":"dtyree77@gmail.com","name":"celer"},{"email":"felix@debuggable.com","name":"felixge"}],"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/combined-stream_1.0.7_1537288343882_0.48309285138952385"},"_hasShrinkwrap":false},"1.0.8":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"combined-stream","description":"A stream that emits multiple other streams one after another.","version":"1.0.8","homepage":"https://github.com/felixge/node-combined-stream","repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"main":"./lib/combined_stream","scripts":{"test":"node test/run.js"},"engines":{"node":">= 0.8"},"dependencies":{"delayed-stream":"~1.0.0"},"devDependencies":{"far":"~0.0.7"},"license":"MIT","gitHead":"5298bece5aba2cf4d2f5ec84c4fc128572c41cee","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"},"_id":"combined-stream@1.0.8","_nodeVersion":"11.10.1","_npmVersion":"6.7.0","dist":{"integrity":"sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==","shasum":"c3d45a8b34fd730631a110a8a2520682b31d5a7f","tarball":"https://mirrors.huaweicloud.com/repository/npm/combined-stream/-/combined-stream-1.0.8.tgz","fileCount":5,"unpackedSize":11514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2Fy6CRA9TVsSAnZWagAATdgP/jWKhLQFryvRCwoCinwZ\ndUb4hAUSB6aXMAVQWXTkK1udLiIz/LqmbcaUJQEQ3pNaDWWGrDAu9g33CmE2\nnu0spvkbANFO+ofHjP6Iz/ksSxeN4q/w24dcbMoBR8tuLZ+D0W9AgS15a4EF\n3cl13keIvZumC7292r8L8uHgx/1zHqCNBCtEIfIiaq1EsI8mZnfRS+K5mVdV\n3qo0Aqp1lOpfrVOG4dejc+HvN1bbSs6nz/BUilqtF2NmUqxkkrIGBf28DJck\nY7LVMjPRGHnXJkeAHkiLt0Mb6R2nrkBEnhuhxVkTuHVHkP+QRmlIN6ZEOVri\n2FFEPUVLrW/qb3PLUUG6EZLsHwaLX/g1j5Jsl+WdlC4vhSpzfMui+VBYcaG/\ncUMa+i9qKWIBwFMDzcqB/tU1oDFSfeeHw9K4FCnpRUl1nFfww0hqkMMxfXYu\nLrZ6TrbZpmmheUyzm8f5xLVOK4HML3HYgiww3kQ5c/AXMFvGojC7HV0xuiKU\nY9SBRF8Gv2t07GD/nAOj/dF6UlyVWCiToHRlLeHVikpqbgW4DeZ3VWmjtFTY\noU9YhCMxLD9nqkJ5BXVP31y6aFsUDghdD+ovWTZZoDWx00za4RwBXfm2LApQ\nuCw57cAw5NIbTTV3xY9SUnYm0ulV7bxSam6gslwAk4CuQCgyIYeKbkil48jB\nxgxh\r\n=Gn9i\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICHIvXrvlC143mKkbH000Cz0z37Evin0hKgTP+16b7hcAiAop4YDmR7pPHPu0uFc+OKWghshbne6mXZ5OYAZ8fq44w=="}]},"maintainers":[{"email":"iam@alexindigo.com","name":"alexindigo"},{"email":"apeherder@gmail.com","name":"apechimp"},{"email":"dtyree77@gmail.com","name":"celer"},{"email":"felix@debuggable.com","name":"felixge"}],"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/combined-stream_1.0.8_1557683385167_0.16390415386060164"},"_hasShrinkwrap":false}},"maintainers":[{"email":"iam@alexindigo.com","name":"alexindigo"},{"email":"apeherder@gmail.com","name":"apechimp"},{"email":"dtyree77@gmail.com","name":"celer"},{"email":"felix@debuggable.com","name":"felixge"}],"time":{"modified":"2022-06-13T06:33:58.025Z","created":"2011-05-24T06:36:14.531Z","0.0.0":"2011-05-24T06:36:15.190Z","0.0.1":"2011-05-24T09:46:38.486Z","0.0.6":"2011-05-27T13:43:57.926Z","0.0.2":"2011-05-27T13:46:53.900Z","0.0.3":"2011-05-28T13:49:43.181Z","0.0.4":"2013-02-02T18:29:01.654Z","0.0.5":"2014-06-24T08:39:18.882Z","0.0.7":"2014-10-31T10:18:38.784Z","1.0.0":"2015-05-04T21:29:45.965Z","1.0.1":"2015-05-05T01:13:50.245Z","1.0.2":"2015-05-09T14:25:06.378Z","1.0.3":"2015-05-19T12:43:10.026Z","1.0.4":"2015-06-14T15:09:18.379Z","1.0.5":"2015-06-15T03:19:17.202Z","1.0.6-rc1":"2018-02-12T16:33:42.335Z","1.0.6":"2018-02-13T16:31:05.240Z","1.0.7":"2018-09-18T16:32:24.107Z","1.0.8":"2019-05-12T17:49:45.337Z"},"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"repository":{"type":"git","url":"git://github.com/felixge/node-combined-stream.git"},"users":{"tunnckocore":true,"52u":true,"wisecolt":true,"anoubis":true,"nickeljew":true,"zousandian":true,"arefm":true,"ganeshkbhat":true,"zhenguo.zhao":true},"homepage":"https://github.com/felixge/node-combined-stream","readme":"# combined-stream\n\nA stream that emits multiple other streams one after another.\n\n**NB** Currently `combined-stream` works with streams version 1 only. There is ongoing effort to switch this library to streams version 2. Any help is welcome. :) Meanwhile you can explore other libraries that provide streams2 support with more or less compatibility with `combined-stream`.\n\n- [combined-stream2](https://www.npmjs.com/package/combined-stream2): A drop-in streams2-compatible replacement for the combined-stream module.\n\n- [multistream](https://www.npmjs.com/package/multistream): A stream that emits multiple other streams one after another.\n\n## Installation\n\n``` bash\nnpm install combined-stream\n```\n\n## Usage\n\nHere is a simple example that shows how you can use combined-stream to combine\ntwo files into one:\n\n``` javascript\nvar CombinedStream = require('combined-stream');\nvar fs = require('fs');\n\nvar combinedStream = CombinedStream.create();\ncombinedStream.append(fs.createReadStream('file1.txt'));\ncombinedStream.append(fs.createReadStream('file2.txt'));\n\ncombinedStream.pipe(fs.createWriteStream('combined.txt'));\n```\n\nWhile the example above works great, it will pause all source streams until\nthey are needed. If you don't want that to happen, you can set `pauseStreams`\nto `false`:\n\n``` javascript\nvar CombinedStream = require('combined-stream');\nvar fs = require('fs');\n\nvar combinedStream = CombinedStream.create({pauseStreams: false});\ncombinedStream.append(fs.createReadStream('file1.txt'));\ncombinedStream.append(fs.createReadStream('file2.txt'));\n\ncombinedStream.pipe(fs.createWriteStream('combined.txt'));\n```\n\nHowever, what if you don't have all the source streams yet, or you don't want\nto allocate the resources (file descriptors, memory, etc.) for them right away?\nWell, in that case you can simply provide a callback that supplies the stream\nby calling a `next()` function:\n\n``` javascript\nvar CombinedStream = require('combined-stream');\nvar fs = require('fs');\n\nvar combinedStream = CombinedStream.create();\ncombinedStream.append(function(next) {\n next(fs.createReadStream('file1.txt'));\n});\ncombinedStream.append(function(next) {\n next(fs.createReadStream('file2.txt'));\n});\n\ncombinedStream.pipe(fs.createWriteStream('combined.txt'));\n```\n\n## API\n\n### CombinedStream.create([options])\n\nReturns a new combined stream object. Available options are:\n\n* `maxDataSize`\n* `pauseStreams`\n\nThe effect of those options is described below.\n\n### combinedStream.pauseStreams = `true`\n\nWhether to apply back pressure to the underlaying streams. If set to `false`,\nthe underlaying streams will never be paused. If set to `true`, the\nunderlaying streams will be paused right after being appended, as well as when\n`delayedStream.pipe()` wants to throttle.\n\n### combinedStream.maxDataSize = `2 * 1024 * 1024`\n\nThe maximum amount of bytes (or characters) to buffer for all source streams.\nIf this value is exceeded, `combinedStream` emits an `'error'` event.\n\n### combinedStream.dataSize = `0`\n\nThe amount of bytes (or characters) currently buffered by `combinedStream`.\n\n### combinedStream.append(stream)\n\nAppends the given `stream` to the combinedStream object. If `pauseStreams` is\nset to `true, this stream will also be paused right away.\n\n`streams` can also be a function that takes one parameter called `next`. `next`\nis a function that must be invoked in order to provide the `next` stream, see\nexample above.\n\nRegardless of how the `stream` is appended, combined-stream always attaches an\n`'error'` listener to it, so you don't have to do that manually.\n\nSpecial case: `stream` can also be a String or Buffer.\n\n### combinedStream.write(data)\n\nYou should not call this, `combinedStream` takes care of piping the appended\nstreams into itself for you.\n\n### combinedStream.resume()\n\nCauses `combinedStream` to start drain the streams it manages. The function is\nidempotent, and also emits a `'resume'` event each time which usually goes to\nthe stream that is currently being drained.\n\n### combinedStream.pause();\n\nIf `combinedStream.pauseStreams` is set to `false`, this does nothing.\nOtherwise a `'pause'` event is emitted, this goes to the stream that is\ncurrently being drained, so you can use it to apply back pressure.\n\n### combinedStream.end();\n\nSets `combinedStream.writable` to false, emits an `'end'` event, and removes\nall streams from the queue.\n\n### combinedStream.destroy();\n\nSame as `combinedStream.end()`, except it emits a `'close'` event instead of\n`'end'`.\n\n## License\n\ncombined-stream is licensed under the MIT license.\n","readmeFilename":"Readme.md","license":"MIT","bugs":{"url":"https://github.com/felixge/node-combined-stream/issues"}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/15/03/783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476 b/frontend/.npm-cache/_cacache/content-v2/sha512/15/03/783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476 new file mode 100644 index 0000000..0d539dc Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/15/03/783117ee25e1dfedc05b04c2455e12920eafb690002b06599106f72f144e410751d9297b5214048385d973f73398c3187c943767be630e7bffb971da0476 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/18/32/d2e216f63aee16d783dbd228b2d48d605d164391e57a9777ee268a5a6b63fde596c81b934121fff01b10adf9a279a8578961adf8c3c2984def26129e77ff b/frontend/.npm-cache/_cacache/content-v2/sha512/18/32/d2e216f63aee16d783dbd228b2d48d605d164391e57a9777ee268a5a6b63fde596c81b934121fff01b10adf9a279a8578961adf8c3c2984def26129e77ff new file mode 100644 index 0000000..6801d47 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/18/32/d2e216f63aee16d783dbd228b2d48d605d164391e57a9777ee268a5a6b63fde596c81b934121fff01b10adf9a279a8578961adf8c3c2984def26129e77ff @@ -0,0 +1 @@ +{"_id":"typescript","_rev":"4154-9e8c55df754c1dfcac890867873c4b2c","name":"typescript","dist-tags":{"dev":"3.9.4","tag-for-publishing-older-releases":"4.1.6","insiders":"4.6.2-insiders.20220225","latest":"5.9.3","beta":"6.0.0-beta","rc":"6.0.1-rc","next":"6.0.0-dev.20260317"},"versions":{"0.8.0":{"name":"typescript","version":"0.8.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.8.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"e1725d0ebd476eed6c38fda07fdf6942e0f22a0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.8.0.tgz","integrity":"sha512-t4DYxzL6Gt3+TRuJXtmh+3KfcY5iSM8J4lzUgfQkTOr78xFbmor79x/dQEGMaiqO2HJBbFGO3RlIaxPzpP5JMA==","signatures":[{"sig":"MEUCID1VxFF8NlR/lQGGTXXVHarVXetSxtok9hrph2YPmMMMAiEAwb2iVL+FEeri3qMzbFlKJdCzU2kD1nUzGcEFwK7s9/o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://git01.codeplex.com/TypeScript","type":"git"},"_npmVersion":"1.1.61","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true},"0.8.1":{"name":"typescript","version":"0.8.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.8.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"9499f7fe4f4e56010a8c14a5ca000eeb9b5dd4eb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.8.1.tgz","integrity":"sha512-/cfem275IES0o4/zVD1UmXfE3k5j2OAianSI2Oa1gYzWhAJ44OjNlXv3LVIj5EZ0fgks/XBtzp8aXVsaYILTVg==","signatures":[{"sig":"MEUCIQC8yZCy+sqFVQvTbXSZb/MhCSQhZNHHBSzh8yPE0HorEQIgBOg3Eoc6qLqf+VRTtsi0trOvL2R7ehsHMY4RfU6rQts=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","engines":{"node":">=0.8.0"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true},"0.8.1-1":{"name":"typescript","version":"0.8.1-1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.8.1-1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"34d5563992404abb5eb9fac6a120961639935d77","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.8.1-1.tgz","integrity":"sha512-blLV1WNvI/lkk9RJM2uKpP45TwHd98dPx1qLPQDPfPhQiNjgOcIX/pEwKplRPUyB8ONzAj4pwZneolXncyh3rA==","signatures":[{"sig":"MEUCIQDWlZW5uojwAbPKJB5ghhYuYgzrZGs9RxrhxvW5u+ScIwIgCOYbfzVluRggcUJJuNCpgCzzzRB5Fc4URFBXJ8pEoZY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.1.65","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true},"0.8.2":{"name":"typescript","version":"0.8.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.8.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"8894a39e4f27547973162bda165f88d57e7c9d5e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.8.2.tgz","integrity":"sha512-rc182AVnpWJ2d6mSAjzALdgEZMJqtsAwPjogw7ch8NRa7iTD8vGG2YoZto1R5Bkt5xCXFcg5SrkRenYtI+poHQ==","signatures":[{"sig":"MEQCIE4n4EC3bVoseVJxnBansIfTGTnrDls5DBgjgB6Tr7FjAiB8L6bFEfiadmVv2iX59CEIwTmZ0EPQ4qHKAgzaNUbEDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.1.65","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"0.8.3":{"name":"typescript","version":"0.8.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.8.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"a16a4d5ad97bb35b06de3b9c9fb6b03b68fb00e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.8.3.tgz","integrity":"sha512-42GP2FBgk+/q8Y0MRt0vJoWx6I7ADAKBTnz7gK++gwQtzC3h54Yltqb8z+EFozZ4OHhz6uwLmXFthCn4oDOGxg==","signatures":[{"sig":"MEUCIDC98uD0Z4SXuxrGwojgjkYunhN/wCs7u3r2Zb11brZjAiEA/XBitszFAG1LG6b/Xb39hbbk2AHBFZf1LjmHyuHaLbk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.1.63","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"0.9.0":{"name":"typescript","version":"0.9.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.9.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"a01a5e6fdd643c7639fe3145907e0d5365665eab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.9.0.tgz","integrity":"sha512-8sm4aL114AiqdtQ98vnTv4xJ6iG0ENs5LLP2ve3fcRKoCSPfA62MpjoKDW3hyfxuSeyw2kZvrqrYL0dvi8EUYg==","signatures":[{"sig":"MEQCIBLfTNSpZ+Vrhm9QWRbrPET8xGwPhtCC+eVRcg+SBRY5AiBqaIhisBZWKs/qhk5SDmqFDzEB7NRf+W+p+nO2vEL3AQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.2.30","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"0.9.0-1":{"name":"typescript","version":"0.9.0-1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.9.0-1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"921e05ddaf9464cae6e5283326d3179c97ee5d22","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.9.0-1.tgz","integrity":"sha512-yHoqHF3gHK/z/eSkpyCV7H5JPp+bcG1YJaaawU1HmGWNuDjW7bqUtZ/lPuovre1Pc0SMesPna06mkCQyElXjbw==","signatures":[{"sig":"MEUCIHSP5yCgj3BFsuB00/E9WACvnUcGHnR9198pttdEZQuSAiEA+6kjUndvqxGegkHAble5qwkM6XngMteVGQOkMtqi9+w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.2.30","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"0.9.1":{"name":"typescript","version":"0.9.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.9.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"8615501483c8034358059ddbe3dff31a7e1c791e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.9.1.tgz","integrity":"sha512-F6shwhZfSPDxbLBi7yLelWZktA80l9BC6Kv8xLA5GOCrPRqgAC8KAYdA3Ndstb8VREnGhVt2ZAtfODqBmpszog==","signatures":[{"sig":"MEQCIHNsccKeepMxg1XfbdVM2I9RMTJW0BrY/i5fVAx2w2NsAiAt+QbOb4HhZMeIe79LYtcWIGjlxjLb5HmTtIF+iYgB2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"jont@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.1.65","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"0.9.1-1":{"name":"typescript","version":"0.9.1-1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.9.1-1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"ee56e64777f6d2c25e369b37f3842991f8f74746","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.9.1-1.tgz","integrity":"sha512-LymGwd29kJZm3xc7DrSMkE0NxczHAUEPqztVzqHZqDSs/2ZOMBA1m/I/H80AT/703r7+ZfqNBZCte+TZnNOEyA==","signatures":[{"sig":"MEQCIF3qfLm049h9M6+RhUKaEKpCNXQGPmADfulXQKFiiEgZAiBliYpRnC4XScIHvYsiqLwz3bCRwQ82UDP3O0ZrL6ARdQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.3.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"0.9.5":{"name":"typescript","version":"0.9.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.9.5","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"85ad88dfa75718320c6a0c0fa555e39ce8b88252","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.9.5.tgz","integrity":"sha512-TEfGbLyu9hJDS3WOVKSyJfHWtANlEHVyKDEbc7L3uQatBVrDlNj0/VfTOsq8cA51NoAFZBsv8I9XpIlC39ItPw==","signatures":[{"sig":"MEUCIQCXFIwBxtzEZ1y2ApZ+riqfmbKBCI2Rnw4sX98KonaP5gIgSkm60R1aEgAejjqbWRuSesrcm5IwRt5EeWJ7KAfF2Hk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.3.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"0.9.7":{"name":"typescript","version":"0.9.7","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@0.9.7","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"6a31e1ddd7ccd44c63c416bab5f21d58dbb3cad4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-0.9.7.tgz","integrity":"sha512-0ebvZOlaBlGiSE6VCXXWAvM2EZ6tCzwGCKGoj8eU5DHiXQgLu35dRlsSz/duoa8+DsP8dZa3w8EVY1XA1XXJuw==","signatures":[{"sig":"MEYCIQCaOWG2MggcNaQ+mdiBqug4OqhypcVsnGz/BX3IBtQthQIhANpvdHjEKmbexqEmduCWsybo5+ddlsRxidvMecpFSJlM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.2.18","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"1.0.0":{"name":"typescript","version":"1.0.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@1.0.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"5720a3d684560d19b7f58034c67e8384fe2f83ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.0.0.tgz","integrity":"sha512-ZCBoo2eOiZIBgrTaxUVc6ObslTDmV6KHzr+mMnQaHw0LfJoBPFGGx3tiw3LpbstM0/shecjT8obvN6ShFSkAYw==","signatures":[{"sig":"MEUCIQCuLRXu2VzPCt+njjG28Derb0MgsZ4eZkNNc9gugIoCygIgJDcMcrxZMr5XwC/xbIg78OPj73P6KMk7dJzuV06MbFI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.4.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"1.0.1":{"name":"typescript","version":"1.0.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@1.0.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"http://typescript.codeplex.com/workitem/list/basic"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"e8eacde3084a091d3fe29b60ac5862252662a25a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.0.1.tgz","integrity":"sha512-YrXpvrihkXMrJIWdChdua78XxhamZuCAWfKSpj2lPyACX7FtbwJL2SocH++yWe/VPTrVX0UZ3x6xHIyuQXrIOw==","signatures":[{"sig":"MEUCIQDjn/p0zJvNVC7Q8E/y2lEwBB6htMSgMylX9xGywDObTAIgLh8S0lT67SRej4ZEGEtGkuW5YEcvw5a1k7GTecIPr2w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","engines":{"node":">=0.8.0"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"http://typescript.codeplex.com/license","type":"Apache License 2.0"}],"repository":{"url":"https://git01.codeplex.com/typescript","type":"git"},"_npmVersion":"1.4.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"jake":"latest"}},"1.1.0-1":{"name":"typescript","version":"1.1.0-1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@1.1.0-1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"ad83fb48dd52312564fc795fb2e1ecc43d5e9d6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.1.0-1.tgz","integrity":"sha512-9U6utmzI83DlodrNW8GyhI/URY302m5u40auuHI2cNFNx7Cqx8k+BfhAplL/qCKgYRrn4+KK49bcNGPk72lRmA==","signatures":[{"sig":"MEUCICA7ERd9LlKeZvs4f4ex4NO8v0NCdUtsgbQyVJN4OLfAAiEA3P2Z4GuLfxPv0iIbTJLncpwglaqHVXW4DN+MPdIbEG8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/tsc.js","_from":".","_shasum":"ad83fb48dd52312564fc795fb2e1ecc43d5e9d6e","engines":{"node":">=0.8.0"},"gitHead":"4d63fde84a48561f3d886a1e46b7eadb92fbfbbc","scripts":{"test":"jake generate-code-coverage"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt","type":"Apache License 2.0"}],"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","istanbul":"latest","browserify":"latest","codeclimate-test-reporter":"latest"}},"1.3.0":{"name":"typescript","version":"1.3.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@1.3.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"b48262ac7444971b447ffc6bb56c69854eef02e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.3.0.tgz","integrity":"sha512-udSigEGeUezznWiLfG43S8yw8CbiuVsfej4swPrXSdNiDnwrT5pUGg1DstrMvDBi84xGqnq0QyAp3kEUtVkLTA==","signatures":[{"sig":"MEUCIQCMdyJHNjSxIyL81q3sn1rzY1qgzE2rfgp9XEd9bKmlCAIgNEgQ3wiy01loufXOj62rM7u3ts18T3ht+beCCZW1c/o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/tsc.js","_from":".","_shasum":"b48262ac7444971b447ffc6bb56c69854eef02e1","engines":{"node":">=0.8.0"},"gitHead":"39daf6cfbeb627b5aca5106977760e4272c67b8f","scripts":{"test":"jake generate-code-coverage"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt","type":"Apache License 2.0"}],"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","istanbul":"latest","browserify":"latest","codeclimate-test-reporter":"latest"}},"1.4.1":{"name":"typescript","version":"1.4.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@1.4.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc"},"dist":{"shasum":"eb4da986d1b7f01452eafb57559e0cc8f516cd48","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.4.1.tgz","integrity":"sha512-ZmFU3h/TzPofFlcMe8stHEBdrC/U0Mzs+s91OXEFKLMjjfPM1v/udHkvR0A4FLyjELdtRR8fgmjB/GeKBbW6UA==","signatures":[{"sig":"MEUCIQDG1pmIckhO987EBhzplrsIwSrP1kC/2tLrnPZ14GkOAgIgcRzMhSIUq0XJ1kTiqFbiVjJsxKJr+HIECdBswvZlW18=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescriptServices.js","_from":".","_shasum":"eb4da986d1b7f01452eafb57559e0cc8f516cd48","engines":{"node":">=0.8.0"},"gitHead":"3ab3f916c00755a1d9937f7116d1e9a80ddf2ef3","scripts":{"test":"jake generate-code-coverage"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt","type":"Apache License 2.0"}],"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","istanbul":"latest","browserify":"latest","codeclimate-test-reporter":"latest"}},"1.5.0-alpha":{"name":"typescript","version":"1.5.0-alpha","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@1.5.0-alpha","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3186ae01d409d9dd924eb35c57e90c2013b97497","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.5.0-alpha.tgz","integrity":"sha512-9WMysEuvMCrPDmpwcwFG7ouDf8+FZBNPtDXJn4MKl4kNkejVCNKEqZpC2S/OttZ0xJStzOcTX7B+K5PjulUE7g==","signatures":[{"sig":"MEYCIQCmMslC0eLjYmmY+d0ob5Ew/DRs/TNnFdiWMSFzYt/YDwIhAI28vEe0a/7b6RIIeQ5IaSMEAA5hX9vKNWLEyOgHEt8a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"3186ae01d409d9dd924eb35c57e90c2013b97497","engines":{"node":">=0.8.0"},"gitHead":"b18dd53242df31163390c411ac7ab5e9c282fea2","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt","type":"Apache License 2.0"}],"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","istanbul":"latest","browserify":"latest"}},"1.5.0-beta":{"name":"typescript","version":"1.5.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@1.5.0-beta","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"702cfc65692538bd5de273ffd49a86d5fc37598f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.5.0-beta.tgz","integrity":"sha512-Ir/7hte/O8at62Lh1zx2Ye0u8EpRc1xkyvpsdKJGBF/pIUMp0A9VWL95SOoe14lzDQzUROK9XKR0iIjJPhpVzQ==","signatures":[{"sig":"MEQCIHg4rQtee24QR9ZK1uxOqtoZ9u1xg/UQK8d9XV/0vSTxAiAxZRETiUhhWcW06XEbOd6Iht1kwYm3o3UjfujdjUTV6A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"702cfc65692538bd5de273ffd49a86d5fc37598f","engines":{"node":">=0.8.0"},"gitHead":"c233073d02536b33b3848541b538ad762c4729ba","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt","type":"Apache License 2.0"}],"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","istanbul":"latest","browserify":"latest"}},"1.5.3":{"name":"typescript","version":"1.5.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"_id":"typescript@1.5.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ce35e55f75b7a8d0ed571b503bd0a57157e523f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.5.3.tgz","integrity":"sha512-Wux4s7AfnapjkjEQ9gWRqKBAon83Zott4rr8q/QNEyBz8gT5u88O/HbjMifu1ad5GIm9q0vqEG1Pvn20/rFxKQ==","signatures":[{"sig":"MEQCIGY91yX9QftxRZ5tcFzvSuluzQcC1ag2e7jX3QjGOTRJAiARTxyeIiGxzqxW/sS1SdDyARQP+86++pJsmmBz3FmvAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"ce35e55f75b7a8d0ed571b503bd0a57157e523f7","engines":{"node":">=0.8.0"},"gitHead":"a24aa6f57d281bafd3535f0f4c3f492364a8b4d6","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"licenses":[{"url":"https://github.com/Microsoft/TypeScript/blob/master/LICENSE.txt","type":"Apache License 2.0"}],"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"0.12.7","preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","istanbul":"latest","browserify":"latest"}},"1.6.0-dev.20150722.1":{"name":"typescript","version":"1.6.0-dev.20150722.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150722.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"40b74fbed0edd6d1dcab45a83a39f43bd612505d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150722.1.tgz","integrity":"sha512-o+CKWtcjxlzbMrkUqElSkUdtCuu++d6imK1V+r39533j77jh0M5+pGdi8gYqJZ6m797K6GLZHDFj9nZZpucOWg==","signatures":[{"sig":"MEYCIQCJQyt6naa+4m1F9HkwNea2/DWRAIYeOMAxqqASZF12cgIhAJEkfLlWzEiQVPw+6FS85mYjzqZeM/fTpPFFac3iT4bS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"40b74fbed0edd6d1dcab45a83a39f43bd612505d","engines":{"node":">=0.8.0"},"gitHead":"50198247bbd8093923aead123617d9c0c1eae4db","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest"}},"1.6.0-dev.20150723":{"name":"typescript","version":"1.6.0-dev.20150723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150723","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c200155ff7c85613209f9d8da193bfd1f48f0202","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150723.tgz","integrity":"sha512-kU1y+fsQBgauHSVLyfikcGEBOj1k/3dgS++WR9LIc9iXlyoMCDCwaQrTt8PRiNU7cUuVUluzyGl2jS+bpNyEZg==","signatures":[{"sig":"MEQCIC3yLAS69DcPZ+2+8AfchsHe+3zXry7y8r3JC0kqk4K+AiBjsWFxJnvWXpsEfoMsFvV3GufJmb30eeBfXP8MqC+iJA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"c200155ff7c85613209f9d8da193bfd1f48f0202","engines":{"node":">=0.8.0"},"gitHead":"3805500e842ceb08d01022dacb183b38b64a4b9a","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150724":{"name":"typescript","version":"1.6.0-dev.20150724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150724","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d81057ea6f27b942c60f9aac686e041754bb2667","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150724.tgz","integrity":"sha512-CMdKjiYkZ1LFX7w6hNr2a0RzQ/WB3sR0qafkq2PZmClz/jRdR4Hpm4qWGp034d05nvEiHBdDZ2YnETGkPPTOgQ==","signatures":[{"sig":"MEYCIQCM1Ke3oSiYRBWHMJ2O92TedrfMYfIL4vYUvk7UN0NYvwIhAOWBT2jz10oEAHlEoHX9HktBD6Afz7/fVlIJpGb3KSEA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"d81057ea6f27b942c60f9aac686e041754bb2667","engines":{"node":">=0.8.0"},"gitHead":"e1fa3c551502a55d622f957e41dbeead53e07f6a","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150725":{"name":"typescript","version":"1.6.0-dev.20150725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150725","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"67819661dc1ebd3b7c79d64646ef81e93857daea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150725.tgz","integrity":"sha512-Ykb43MhW9ZEk/trunelfu0VwOGXSzHH2bXIfO3XyjkiX5xSnfJX84R3g6025KMw113KWrF7l+xx053tJca7SLA==","signatures":[{"sig":"MEYCIQCd0M7DqS6slToX8l8Zi2lVhdcauJEMsj6z1EQXoY2LCAIhANkU+HoxuMIzYjFDROlu6ZknCeFuAnaih52pCsIgqN8t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"67819661dc1ebd3b7c79d64646ef81e93857daea","engines":{"node":">=0.8.0"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150726":{"name":"typescript","version":"1.6.0-dev.20150726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150726","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4351781fc41a46c4a6930295a67a41fe34e1fb2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150726.tgz","integrity":"sha512-Oi13G+M8AYBH6HV9wZoqEeOqlHFwOXjIPU8NCcZCQGOsmIU6revi30a2nbkT+QHDbktTZ8FzaKu2XTGzb6cu2w==","signatures":[{"sig":"MEYCIQCUcVEBm+tr8Q6cpUNTChD7iDV5inyWnh8Xo0M92w7NVgIhAIWm0DyPFi7SMhf1QVYdnQyqvmGgHFTMWr4XSWuIqnnW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"4351781fc41a46c4a6930295a67a41fe34e1fb2e","engines":{"node":">=0.8.0"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150727":{"name":"typescript","version":"1.6.0-dev.20150727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150727","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b36f0e2217075742e0899117d1be8b35fc584e75","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150727.tgz","integrity":"sha512-r3e7HLh7XcL0q/eNvbsWj9jDnT29GQHLj1M2W8kgbwrFsawABJoCZalnhX7J1TYU5kBQHQC38Ny0X6bTaKdivw==","signatures":[{"sig":"MEUCIQDhBznGgTmEgWuYPf4+CHtLR9sDf4Bw8KI73+XpPzgBmwIgOolsMxPFoerkklL0zK7Cycy9v92tJV9K+qkD4k6upfI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"b36f0e2217075742e0899117d1be8b35fc584e75","engines":{"node":">=0.8.0"},"gitHead":"5bb2e2f584985b6b66a5ac337578fd1982f666c5","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150728":{"name":"typescript","version":"1.6.0-dev.20150728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150728","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4a3f6953984d1ca547949b4d7eb651a9da12f70e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150728.tgz","integrity":"sha512-cb8f9S71Er0jT4Eo5oPmrYzwOYtwrixpK8NWt8tiA2vF0DQDpbXHiqgy4yAdxKbnHec9sZqRdNT0fbnKUaS7aw==","signatures":[{"sig":"MEYCIQCKyGj/7C4W8dqSkG/zCuZzD84FiwwF7a6SSU3p3cKlBwIhAKd6jR5xaF/9uhbQoUBVoKQLNgwU4WU+JJk09FQ5wwT5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"4a3f6953984d1ca547949b4d7eb651a9da12f70e","engines":{"node":">=0.8.0"},"gitHead":"d0bc070fb8bcd90947f3f2005647c074736ec356","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150729":{"name":"typescript","version":"1.6.0-dev.20150729","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150729","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2d19bc8a55c3af022726a2c6460e486cd87f6a48","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150729.tgz","integrity":"sha512-TBmqpH75GIBi179QQibZcCY00gm/pmnZzpqFSYW1absxuBJsIGWDiDIP0wUjCYeJ4tEbd+0se6oQM98ueorF2w==","signatures":[{"sig":"MEUCIQCFib5V7ZNXDk1EVh2IylT2NKl7xfyA+XJZDOfT9GklCQIgD5otqahNHwbbDK/TF89RRMWZyDlZrrpPKL6x8OpPHKY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"2d19bc8a55c3af022726a2c6460e486cd87f6a48","engines":{"node":">=0.8.0"},"gitHead":"0a9fb1a7b5c77c070beed83c14478ecd01d2daef","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150730":{"name":"typescript","version":"1.6.0-dev.20150730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150730","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"973fe7336b6b8dd7e4a5a2b7fd198311b37f34aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150730.tgz","integrity":"sha512-5DDQqXLL3aWaT6xJuMDuu0ZljmC9nfwKVL++NDNj6iQXNJRftt3HJ/uCe2BY+D5/mS+vaXVNiFxPc1nW1lseqw==","signatures":[{"sig":"MEUCIHIk5+O9o9RqDmAk0jFtejCxlia8eCV5mgZ+YVZQDZanAiEAppASI5GOdReDCGZ3w7azZCtne2V36qNrVZnQfOWEHrE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./bin/typescript.js","_from":".","_shasum":"973fe7336b6b8dd7e4a5a2b7fd198311b37f34aa","engines":{"node":">=0.8.0"},"gitHead":"97e7b073f30ac1b399243b5299e6869edb0f36ec","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"preferGlobal":true,"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150731":{"name":"typescript","version":"1.6.0-dev.20150731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150731","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6a74b96a291d483315ef0fcfc0b6566f4289d9b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150731.tgz","integrity":"sha512-32WMtb633mQHEPsEdjFy7TAzqnYkEGWsHuORDGoU+MwhFYBpIiq/sSdKcrD980SZn+2KL8qND9CpI482l8s1DA==","signatures":[{"sig":"MEUCIQCogVVM5WpzVxt46USXe+aJaLSFWlBA+bHyAPAbvEb0MwIgV2yNmphjJngKYQw/0QQ5Xb4a0SORS8QEA6umxsI5VRA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6a74b96a291d483315ef0fcfc0b6566f4289d9b5","engines":{"node":">=0.8.0"},"gitHead":"7e9e920d1e1dc664ac170650fc93e21b2c616520","scripts":{"test":"jake runtests"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150801":{"name":"typescript","version":"1.6.0-dev.20150801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150801","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cb233850728db553cddb141036316579699427df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150801.tgz","integrity":"sha512-8LYvAVjZR7Oxx8SufQlHLBqT2d284jM6fwtihXoyM9reETDvUdWNLHOtLxpZkWOvGFqbhEoV2QcHe7e6Q9Y5NQ==","signatures":[{"sig":"MEQCIAnV0LtB4IobySvbcZW2qDXwsgEJ5wAeMUppnRyBPBoaAiBCexnn+AEn6rs/Uzwj6+VZ6lsNpz3gcNDA18tqxb3ozA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cb233850728db553cddb141036316579699427df","engines":{"node":">=0.8.0"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150802":{"name":"typescript","version":"1.6.0-dev.20150802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150802","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8f10759b983b26152e21c4b2ff890d3fa09c4064","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150802.tgz","integrity":"sha512-ln1wiZX8nkjbIs7U6GmSU0Z18r8V3PwJbWHWK0FI2b3JNlSXXXsUwEzDCEQjJPBBvBuZVdFjzk6wlrqOUg9eeg==","signatures":[{"sig":"MEUCIQCFR40NCWeGNQOW7l0pmCke3RuZOyDg6Ca1zNXMQpipYgIgNmZb6CNkn/q86pgiHyzBfgbWygoa0MVEhdxctx1gPrQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8f10759b983b26152e21c4b2ff890d3fa09c4064","engines":{"node":">=0.8.0"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150803":{"name":"typescript","version":"1.6.0-dev.20150803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150803","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"48dd162cf29826abbb32fea06dc5760427f61d07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150803.tgz","integrity":"sha512-dLFl+ye9XXRYFGyzLYnPlGw+tB8FbSEQAAPdTkvUQELyVQ9reqzTL741piNuNZyZ4DqkRK/5oUx0IzEbTNrZcA==","signatures":[{"sig":"MEUCIQD6mXowd8SK1FKLDsdgdyN3RSq4Usz1Z3L13NQWPKTgfAIgYqRbK9hOQF+TGaIWkXg/yqu+YGzHh/t7S16lerGYDcE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"48dd162cf29826abbb32fea06dc5760427f61d07","engines":{"node":">=0.8.0"},"gitHead":"a4a1a51db6968bd13c8be02af4900083b2f0584c","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150804":{"name":"typescript","version":"1.6.0-dev.20150804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150804","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"06dc84cb94f1236b2963ffeda137b6b581cca5a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150804.tgz","integrity":"sha512-nTghS0CTVtmqwrHXigGRV/eR7O7pQTWCqX9qbJBW49Cg9qXao8blQTtLe4+TA+ml+F2fiw9SifQfhr3/rFo6Ow==","signatures":[{"sig":"MEQCIEnjWKJbK8EH7BTF2dCW2ow0c3DYdjNJKYTIm/m32sWbAiADL8uqlMF/WHj5jBvFvvA0qhfsinsiakDzlLoXQNv2Vw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"06dc84cb94f1236b2963ffeda137b6b581cca5a7","engines":{"node":">=0.8.0"},"gitHead":"4c7b214a69c97eb1746b94712ff9a4c2202e2dca","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150805":{"name":"typescript","version":"1.6.0-dev.20150805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150805","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f8a038719cb699071e9d77f658dbf005923645c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150805.tgz","integrity":"sha512-PA574hRbwgHzjILduspg/bNvDf11DudE3KHYiXBW7MmHHbTpaV+dTZaLIwb9u5KTHZqWqOEcW4RAiS9bVIr7lA==","signatures":[{"sig":"MEUCIQCo9Gl8D5hUoeJMTlKvxA7zCQAjQn991f8KoBfeIVVvRQIgc8z6t8kvqIlGAq1erIv9YkVdWUtb9c4KHqtirFDBvmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f8a038719cb699071e9d77f658dbf005923645c4","engines":{"node":">=0.8.0"},"gitHead":"bb3fb7d98b4ac4cd62474dde15c226b26af30b5f","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150806":{"name":"typescript","version":"1.6.0-dev.20150806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150806","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b98c9b8ac5424b12b0e97face408a7ab2320c192","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150806.tgz","integrity":"sha512-OJ/+Fg6MucORtMyZEboH8qYxt44KzWzCLkVQwUKeOikHFlyySz3vZH5w9r+kB6Jj67Zh8HYiAJLwy/2FtbOHNg==","signatures":[{"sig":"MEUCIQCaqC+qFpOdKolLYdMzFKVUpnAHiTritQdcU30Foo9ugQIgHhj9/te9+5Q0hGBQAOeUCxG24IcyCynGb/pYAQ6bBP8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b98c9b8ac5424b12b0e97face408a7ab2320c192","engines":{"node":">=0.8.0"},"gitHead":"2b8ef5e6fd252dafedeb02a17bc2fbe902be1d8a","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150807":{"name":"typescript","version":"1.6.0-dev.20150807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150807","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3bb9bc5a929cc073f18759b1690a72ca15133f0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150807.tgz","integrity":"sha512-jLnFsVvCs02jDsIM8EcNllfsKlIu2G2XPsohSma2Yk4y++0POpoCjVyiW7bQ4OWJViCgh/W2Ol6ZXv1406EPfg==","signatures":[{"sig":"MEUCIQC2K7wwbLVcrhbdWKJfwHqrJlrKUDyiEiRRNmHFKp0q4gIgTvckJFSEVOBxaibT5tgT1YrVLetwu/0y0b44/ZxYqLs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3bb9bc5a929cc073f18759b1690a72ca15133f0a","engines":{"node":">=0.8.0"},"gitHead":"2f9248386e3169d2ed161ed9034d6bb4e61bf688","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150808":{"name":"typescript","version":"1.6.0-dev.20150808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150808","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4edbba25c7f8a9ac7ba2225eed2b09bb8adebb29","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150808.tgz","integrity":"sha512-lKaY9NBCmn1fsmC4FwTQN6kxjLafUYLm/+9388tRFbDzBEnyRLkyaOaESXz267JwwCIvGPH/9a4Lyw5b/uvAaw==","signatures":[{"sig":"MEQCIHXvflj37mC/UrhURwLnLpuAvRkY0fN2nMETKRJhOa+rAiATdiRpugVJJYdUxMTa4kk1yJXjTqd9YhEnnXqYK6A9rA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4edbba25c7f8a9ac7ba2225eed2b09bb8adebb29","engines":{"node":">=0.8.0"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150809":{"name":"typescript","version":"1.6.0-dev.20150809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150809","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3e12d787d11e0060804c125eb6e3584ba4e60c11","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150809.tgz","integrity":"sha512-LAYD4LcBVleJYItwg8c0kJa9wTGA9DoSg/RjnX6bsH52jnB/cbK6T5otKtd4bzSJQVZZi2pmQPj2+qlfeDAMQA==","signatures":[{"sig":"MEUCIQCAsmFQqNxeawmGMN0ANYWk+MgDoOQF16WqgNcQ3jd3AQIgBuiaedxHkHANXaRPU0ZIBh3QIfv71beXvU3B6QDfhgM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3e12d787d11e0060804c125eb6e3584ba4e60c11","engines":{"node":">=0.8.0"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150810":{"name":"typescript","version":"1.6.0-dev.20150810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150810","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2c9ae9563832357b6357e42d5ff87d1b71175f12","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150810.tgz","integrity":"sha512-pnhvDgoFFfJKvSgwui8pfU6UrRw+Mcvpqhh/wOJ+uY7VkzAyAyxA43R8Qas2TAvdPtxACYiZ6Cr/5RiJTfoA8g==","signatures":[{"sig":"MEQCIED2znM5u9OotkBKwHOB0OSpaG7Y/wJSwHPgz8zDhqMxAiBX36djjx4/BgtPiyFN4MKh/m/G/T/gl2AL1S6HPeHYjw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2c9ae9563832357b6357e42d5ff87d1b71175f12","engines":{"node":">=0.8.0"},"gitHead":"92f152cb8e9f132234727da9882763f08e13ec34","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150811":{"name":"typescript","version":"1.6.0-dev.20150811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150811","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"84e7632a069d6434d5619e2734b42317d7ef3b71","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150811.tgz","integrity":"sha512-2QOUJTuzuBnfaKsM18CuJ0IMAWPTi0iCqFamss5nu3oOVY+/O6Pzjp6GZ2gXTVlQkg9oMhi4tqVV7UE5mlCPDA==","signatures":[{"sig":"MEQCIBLdBYhOUOrNZkX/rdzY9EVNUALjSCyI+DnsDAPsx0HlAiBcGBmJeYGQ0E9hfLFa1s/BDpwoNDliOdQo1hyn61E37A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"84e7632a069d6434d5619e2734b42317d7ef3b71","engines":{"node":">=0.8.0"},"gitHead":"586abacec4e9c2e53aa9eda4f8632d03760148a7","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150812":{"name":"typescript","version":"1.6.0-dev.20150812","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150812","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a37cb03e0e10c71b913a104fe64e2e7ae1d7666e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150812.tgz","integrity":"sha512-LnmahOXKKYNbvrJgEeokgM5R4rg96aKPkAoGxQ+kazH589iSerdNqXxHhPY0n1Fi9S0mjsM5ZqVf93tVYDOcGg==","signatures":[{"sig":"MEUCIAmaxwsPRhj80Rbj/7L2bx53ib8Rcm9dBGC5oQY3+iYSAiEArqZNtzflBIhal/mS/l9oJbyPdytaThlarlNm6rBy5yU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a37cb03e0e10c71b913a104fe64e2e7ae1d7666e","engines":{"node":">=0.8.0"},"gitHead":"7c8da422302d4e46bdb38547a1e107df534173df","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150813":{"name":"typescript","version":"1.6.0-dev.20150813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150813","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a82d906a18646db26ac17aa97aa53b5770ced1f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150813.tgz","integrity":"sha512-NqFCTo6rUHt4te1CBS62L8mwqytIQQiDxc8r2w1gNIHA1nEM+NGlBE/1EjGLOe3vVOCF1r0FkUZyHiKofs7KNA==","signatures":[{"sig":"MEYCIQDIeNmT8dFKwU3Mvq40S2aqzX0Oc/fJwKoVYZFAGkx3hAIhANxQKVBhLxBm/OiH6iMv7effmIQmHi8mKz6yACKahpf1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a82d906a18646db26ac17aa97aa53b5770ced1f0","engines":{"node":">=0.8.0"},"gitHead":"f92aa8681a3298b1505b1867fad9cd7c674d1604","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150814":{"name":"typescript","version":"1.6.0-dev.20150814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150814","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8ac6894ee580d0fb92b991c9347f799deb164f64","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150814.tgz","integrity":"sha512-LV/KgzONnpOYfVNK/YIIJo99Xci9SXT/Y2CNic0zrlRxq5E9JlVPCO/XHZ37K7hbNsK0osR+5Q7axsFb41xjzg==","signatures":[{"sig":"MEQCIHQGcbg/p+xVJSmeezu39oNXIDj2kKX/XcTnRE5M0OGEAiBFqQiQ5ZsvlPr5V8BCGgX35Bs6ruIzR11jyZr3t2zudA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8ac6894ee580d0fb92b991c9347f799deb164f64","engines":{"node":">=0.8.0"},"gitHead":"e34238cb9232a01abf2f5ab29ea62745535bddf8","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150815":{"name":"typescript","version":"1.6.0-dev.20150815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150815","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8a49600339beda83155a24557d1b27c83930867b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150815.tgz","integrity":"sha512-oMtOY3j7nuAHA3fqh7IrFZq7DTlWgvtZsml6SO4gEEk4FrBIY2s2lz8E80QyumR9s+SgquPFst01Ndr8es6BVw==","signatures":[{"sig":"MEYCIQCb+DWEPcf93YWbcWaOM+WG2GYGwTJnuR7uQ8QqpPGSPgIhAI8pPGXAfN6yRQYPRxC4tpy2dxX6YxNU8SwkglxsaQ9n","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8a49600339beda83155a24557d1b27c83930867b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150816":{"name":"typescript","version":"1.6.0-dev.20150816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150816","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"52eb1f17853fa9ae7992be442fbea1f5c2d2a0cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150816.tgz","integrity":"sha512-5/DlIsbhmh61q/AHzgYgkK45XAKN4OTT1sQfdHhpVsjLkZl3SHGQS5ERyccoFMsDyPxT3XoyjOFQPpFAHoyGLw==","signatures":[{"sig":"MEUCIQCxgVMImuf1HqC/HaxAB+Ugxhv1vjb5LXwXO79MRCYeowIgMDatN7O0ZRorhHP6fiwfEiJkX59yq8z4DVAfJQGdTZ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"52eb1f17853fa9ae7992be442fbea1f5c2d2a0cd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150817":{"name":"typescript","version":"1.6.0-dev.20150817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150817","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7011b8db31f5fe3ec0fe6c3be756e8c13ed4a9cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150817.tgz","integrity":"sha512-4ydiQheX4EaX0HrZg6Vt0uzKx3X/FGMB+eJ7UZVjTq2LseBJudzIMzkbaoN8mopArtKUu9iDxcpS8AH/aS+NCg==","signatures":[{"sig":"MEQCIHAGKk+RakqEqApM4dj+dHj+Qsst9cLx/xfYZq9yI6+VAiAbH5IIenXCtAHtUR//goh3L8jISs2Fc/w7yCIYXtzqgw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7011b8db31f5fe3ec0fe6c3be756e8c13ed4a9cc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"53239d4a8bff80b7ae802a9a0392edd91d1a1295","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150818":{"name":"typescript","version":"1.6.0-dev.20150818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150818","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7a49836433b26eabe596fe20081259e6b025e4a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150818.tgz","integrity":"sha512-Ig9ft+8iZ2MlnihBeixB8tBq7AOoJNzMvjWG5wJZf0gPQNJd8j31mIEeoiH+EXBePQydBl6UIkgY7Z9nns42NA==","signatures":[{"sig":"MEQCIAtpcDFVD9aJHb84ee2zDuRSuoKdtgKdFp37DTAXAGO3AiBMwVjlzivy10CaI0GEZwB+5hgPqTEc+++DY1cadMoKkg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7a49836433b26eabe596fe20081259e6b025e4a3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e86f20785925b0b0c0f9a54f392f92ca8124eb14","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150819":{"name":"typescript","version":"1.6.0-dev.20150819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150819","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dcfd9b5beb0e1f4f56fb3b8891e2ba68d59804b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150819.tgz","integrity":"sha512-5/IyqozuCv38lyWzJl2KN/sTz5bfLWOl9pQGXtRuonI2vt1drUYvKgwZ+OsGC5vTxXFWYXotn3fnhN/MqYwtKg==","signatures":[{"sig":"MEUCIQCl87tMipmt75MMVVtegd4mErQoKPTP9/kdgumw3Kec6wIgPdxRavbipOteiJ9q/wnOo90coVdlsyAgMSusuBvdAtk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dcfd9b5beb0e1f4f56fb3b8891e2ba68d59804b1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"06841ebc6bdcdde48fc3ff1ca30238694ba7ef10","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150820":{"name":"typescript","version":"1.6.0-dev.20150820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150820","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"53b55e73bcd2344e57f5bcb1238c6bcdf721566b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150820.tgz","integrity":"sha512-GON8D0Dt7FGwa+bPmE7/oU4RFm/GafZQeVwXuVu69NphkphA6eXH/DR/UED9dxA+QnR3MiHnRfKqGxj+tTgSeg==","signatures":[{"sig":"MEUCIACbAsA7M7sbTIUtKvyvepbjGUnLI1BQZg+kaUJcVceDAiEAvwJNi361/cNz0+JhPY6vlAfcke+0D0l/O170bnt+vRA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"53b55e73bcd2344e57f5bcb1238c6bcdf721566b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"069d2dc724798d1249c334aa13b02a3c2f1617ea","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150821":{"name":"typescript","version":"1.6.0-dev.20150821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150821","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b8e18105970dfce6d41a951206889950b6b44b64","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150821.tgz","integrity":"sha512-cJZUjb9ov2Vm7SgW4IPVXS/evY319VFPuUYSzeFtApV7DHfpwWm2eWru1TuRCnEiOOYmz1BLEqZf6yRuliphVg==","signatures":[{"sig":"MEUCIB2fLpVq6qd/0LvS/EE4oGrYmKGzxjOTlJvaOsivPV/tAiEAu6DdbJdOhgXWa/kElocGENKgPdnIriC4GfzOeOzmAQw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b8e18105970dfce6d41a951206889950b6b44b64","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"425ad026aed673a0a6348c6fa2480e0c849fc1aa","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150822":{"name":"typescript","version":"1.6.0-dev.20150822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150822","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3e91c14dc04f66baf1b3607c140b2f107d84808c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150822.tgz","integrity":"sha512-9tPwaFOVQDsXi59ycBSFufAjBFDMdC8k8i4J7+gAOzDWtflpiPRc4uFeK/UkfVc5XK0eG+e+X2EyiiqYxR/yAw==","signatures":[{"sig":"MEUCICf3F//KWHTcrionJZG6q84Zwmw7qT1q655Pu86yrS9HAiEAxR9mjxIFDuLFAJOB2lqOrh8XiM2aGzIqkVJzstkzf2U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3e91c14dc04f66baf1b3607c140b2f107d84808c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150823":{"name":"typescript","version":"1.6.0-dev.20150823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150823","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"af8666bc21649a71b2145ae1bad0f4b88a17d590","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150823.tgz","integrity":"sha512-lhwrJi5oglTRRLmgPFt0PFDzSFR+oJMemEkSDqt8sBeyZShPseghoDDcQp0vrXFBxmFwJrTdjxSxbSVAQCzdtQ==","signatures":[{"sig":"MEUCIAsHVGi6v6QVSQkRTC252VNAK2Kv3gsDbtBp4MwI6OgbAiEAwrVntyukqw4woi/yRPqWXdrJZImMW8idP9GUp9mEy4Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"af8666bc21649a71b2145ae1bad0f4b88a17d590","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150824":{"name":"typescript","version":"1.6.0-dev.20150824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150824","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8616c1b3017e16e9b385a1c43dada0086ad6cfef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150824.tgz","integrity":"sha512-ErmpbbY62VEifDwRg/BtGDMPOmB5iK/Uouakxy75C/LpRAmxHLfXjz2enzo0f+D2cTxNuQjKOqj0xLRmXWOmCA==","signatures":[{"sig":"MEUCIGBJKjWvLwTsgEcKCQ+vmU64Bk12hz0h95dqezN+5kA8AiEAvPAinCZBHJnaH72bzjt2H2tfd2I4UXvlQr7Alr1+bgw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8616c1b3017e16e9b385a1c43dada0086ad6cfef","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"15fb496be8cb281d2e786c6b93b695073d0e5196","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150825":{"name":"typescript","version":"1.6.0-dev.20150825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150825","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9ce426d6e023ab7748663df504e90f7716f03394","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150825.tgz","integrity":"sha512-9s3J7ZTInBN2SGfDmED08sSRLbd8kLv0CCIbn+j5xm71uPQYNiKtuzJFD7I96YN1o1QbJJjc1vorAUZgThig1w==","signatures":[{"sig":"MEUCIQCSRgxZ8KN7KXM9xQw7RDisiMF4sD1+4fgRWUIZ2N9JQQIgPDacr9osLGsH+0lXEuIU+32Szv+PQHO1fj/r1oJ2+eM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9ce426d6e023ab7748663df504e90f7716f03394","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9a6db930b48b2e51216739aa0d9430e13121cc93","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150826":{"name":"typescript","version":"1.7.0-dev.20150826","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150826","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"52b7d41c97d47ae7a071801c2bd29496c0d33c46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150826.tgz","integrity":"sha512-MwMieVySx3qrpeKNEmKQX/H00ACbdiMyF5HiLIcYmmzwQBLVtePDpZjwrM0AYG8mG9RTwxawqZXXaQVOxXGwog==","signatures":[{"sig":"MEUCIQCn4f3j/Ouv6FVijenWOd7V5R2qq6V7UmZW3iImig6YfgIgPTNmJaKMpX15ztlDRoKH7fZHfOcgB21D1U0UcxoPFEg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"52b7d41c97d47ae7a071801c2bd29496c0d33c46","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ca593ec1abb7ac93d324224c90381b67c67aab9d","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150827":{"name":"typescript","version":"1.7.0-dev.20150827","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150827","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"639d118ce4300dadb3e097d0abe8b8128e741b2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150827.tgz","integrity":"sha512-A+TTuna09H1DKuvV2WJp76mXJcp27O16z6YCgzEjWxVeYfBHL0PcIAFocWK1SZAEqbmgP9/spVsOX+3vCTz+zg==","signatures":[{"sig":"MEQCIHdB1xOeO97WVE8hYShrKWg4yZoKGZUa6OfmyE41Z0IRAiB903rJjncUE3/C3tPqaWtotkN1IDEZtfJx3XNt1LZqvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"639d118ce4300dadb3e097d0abe8b8128e741b2e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c9c6d82376a0dceeee4c55a25147956a1d074dae","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150828":{"name":"typescript","version":"1.7.0-dev.20150828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150828","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"223b8ed67dc079e5caa9b56a9d3eba6c3886c328","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150828.tgz","integrity":"sha512-0ZwYVYxd7HWy3ZrOz93gw/ILbCjs7+xhGuU9hcEDdsdqYji8RsNAmGpubyqT50F8b2PecJ9HmPuV88MwhgrzMw==","signatures":[{"sig":"MEUCIQCCdeVD10PJS/DgqvjIn+EDzEJiUR1PLLbDMVg2g7vWlQIgTNFUwkO3LBEKFSPcVHAea60zkVx+QKWXE2W3cVzU7ww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"223b8ed67dc079e5caa9b56a9d3eba6c3886c328","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dec6bd9677fd95c64c0db8699ef05a3bba123ea1","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150829":{"name":"typescript","version":"1.7.0-dev.20150829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150829","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4c864ebafd31a49277ff78fabc1797575c0a66e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150829.tgz","integrity":"sha512-guk+tIwOWI/LNgPmYN6j4+ZUcDA0UGNLFkJxs24SmUiteOm0YKdm8KqW0s3NuxtnZYhWmkSx40dJ/ZlhUqPXsw==","signatures":[{"sig":"MEUCIQDTD/yIokaCVSOY54K3Wt3SeKSt4M38GAYBh6fJTUixGwIgbHPGGlyhg0YArPqp5Xby/WFTvVwN3Ca83zdBhUFbJxw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4c864ebafd31a49277ff78fabc1797575c0a66e9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7f6608b2b929c6057e3be505c94ebb56969e43d1","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150830":{"name":"typescript","version":"1.7.0-dev.20150830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150830","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"08ffc0765278758537a9865d84cdbfe43f09acdf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150830.tgz","integrity":"sha512-WEndlMrQj3TGTFFIssrzL5LnmbW2zs0gMAGnZAILbQ+SzmyDRpKtHIqEC3jZqxJq52Dybjhcz0g/uEzW85BxLw==","signatures":[{"sig":"MEQCIA+3uDkgLnRH7MibOCkKA9c5lCmSVesoIooXU7ui6LD6AiAVDgPnIu1kuu8+D40My6ID6cr6TWQarSHyvyXcbkN1Hg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"08ffc0765278758537a9865d84cdbfe43f09acdf","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7f6608b2b929c6057e3be505c94ebb56969e43d1","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150831":{"name":"typescript","version":"1.7.0-dev.20150831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150831","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"33f2945811ebe9f5fa9d7c00effa43bf2b498ef8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150831.tgz","integrity":"sha512-5QHhlG2vCkBG/UE5qJKrjvy3QUVU8iJIMATgm2R8YHRZhsWd4JMjPwcEWcBCiTwgbekiQcYzmi7AnQV09ivZMQ==","signatures":[{"sig":"MEUCIQC5l9bYrr69sUDDfpFrwVcjPF9NLD2v8ZrO5duW5nTsBAIgJnc2+6tnt+ymJ5qvUVOvH65Wyryv9JHy4z7uaY1d2Ng=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"33f2945811ebe9f5fa9d7c00effa43bf2b498ef8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d0281f0e0e289de4467bef639a491f7f14df2186","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150901":{"name":"typescript","version":"1.7.0-dev.20150901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150901","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9568599abac843eb0b9307d897c60c03e9f4ebbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150901.tgz","integrity":"sha512-rU65/5JyKJEd8bQg53cSIiBZSwUYjUwA51JElwqa9I/ovCwSIZQBTLK1pgvsFR3OyQiOhbMFTDCDEc1nBKavzw==","signatures":[{"sig":"MEYCIQDaLRFzt/9l4Ekd3H9CMjcSXJdeYuBZz0ULJOl7NZTpsQIhALlzBJ80veLCgkhJuBdvSIGrTT+JFv0w2e735QJeuAQm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9568599abac843eb0b9307d897c60c03e9f4ebbb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"90b345c01e34b1d7dc09c0a5814710df8a1f8a4f","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150902":{"name":"typescript","version":"1.7.0-dev.20150902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150902","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"94a864c92c094972d04ddda5b45be0b3a7a0d705","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150902.tgz","integrity":"sha512-pMejtkDNKTEB8hBcHA3EhkQ37lqqNaWiAclLKER8x22X4ZGZDctAt1y5UI2POF1DDwhr0p6c4utHm6q4BHbeTw==","signatures":[{"sig":"MEUCIQDeXKkGR9bSNgkf02onn58+f6wLbIo6z5Emrdki+S2WfgIgSeZoQhDjoky2QShpw3583auoOq6tDQM+kGZE2+xBw18=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"94a864c92c094972d04ddda5b45be0b3a7a0d705","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"06e25377ffdb0f89550f1a418d3e769fdfc3de7e","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-beta":{"name":"typescript","version":"1.6.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-beta","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3e3027d92282dbc8dd22472cc01e592ecb5196c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-beta.tgz","integrity":"sha512-UVmwJQryyQqWvwRgTT7pifwIU4wXzcV8qC+GVzedNxnJgByyvU2mriGV9fcgX+8RGqDRU3iLIExPCwFTYHvDcg==","signatures":[{"sig":"MEQCIH0i0VeE1YXxCTJ8O+tVq6SrNk1PeWfOoK0qnTgXTZ1PAiAhrJAc8gysHK4zSvTBFrxUTa1AXlbbtxNDeG67Bak5TQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3e3027d92282dbc8dd22472cc01e592ecb5196c9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5542e396d71b0a8100164cf24790fffcc5d5bbe2","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150903":{"name":"typescript","version":"1.7.0-dev.20150903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150903","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c0209454d786bfad0080c836e4bb6e49d6bfc7b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150903.tgz","integrity":"sha512-P6JGaxdDgsFRQbgkafx2as8zQzZt09KzJ4k3HG683JC+MWyomPENAyN7N8OFZYRQhiVp81jrfxliR6Lv+hC1KQ==","signatures":[{"sig":"MEMCH0rnMr0fmB7R8/Xitn5UcC1EryZK1DfN2wrKznvJBa4CIBC10yZCNZAhsEIDi/tPXwrMGH4o7LiLbhc9YMBuGHqp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c0209454d786bfad0080c836e4bb6e49d6bfc7b3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"690b87c2097b0101969c941f085b1f660ecc1a7e","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150904":{"name":"typescript","version":"1.7.0-dev.20150904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150904","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"be76af39353fd3d22cbb7a8dbe9d7585b2acd315","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150904.tgz","integrity":"sha512-7A0co6lSUJSR69ou2vUrTMn207T6Coy3XlPHpovZQ1Egw1zzjf558I2GbnxcNYQMQvcr1din5v2s3Ki0guCVwQ==","signatures":[{"sig":"MEUCIQCPmu2IamM2cFDM9hGISFvIgc1CNRJijCJDVzjnRlqt+wIgRpsZ4fACA6ey/N78WcIF1BPtlGe4M8uYMO6Ycx9O9Ds=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"be76af39353fd3d22cbb7a8dbe9d7585b2acd315","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dc867368200feaf56bbb9bb3317bfe357cce3fd5","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150905":{"name":"typescript","version":"1.6.0-dev.20150905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150905","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"728b246b9e1034e1c411b34a1ddf568794aaa4a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150905.tgz","integrity":"sha512-kk8FxAP7/MRRFRHrVfoaO3L5Af5j2hh4tC2gIZ8leFVc5IT/4oH5AixKskNftLPBLVXxUnrLVCYa3+pT7+u+tA==","signatures":[{"sig":"MEQCIFeHOBpeDJ4CCICFe+227WVeQzZnv3TtS0p+6+v+4JlrAiAQUyBnmLwzeenNtrWKBbxqsDUwv6Fxu8NH9XgqjhP/2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"728b246b9e1034e1c411b34a1ddf568794aaa4a8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4a85546f946f0cee28f77feaaa96d1c0797de09e","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150906":{"name":"typescript","version":"1.6.0-dev.20150906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150906","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ecc103d38053d5065d28bd5f88933ebfbade6f21","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150906.tgz","integrity":"sha512-eyaQTBI1K7dJU+Kp0f/cfBULmyjvoEhqgGruwbMnkzVVbSagZlv6IW+hFwXczFubcBrucoam+qDd+WoXDelJUQ==","signatures":[{"sig":"MEQCIHfLnO5JMWUUNMvqOdPOi+zCc0b+FzL/aZwdQT/kTNKqAiAeIWt1gpajwEsOV1GKPkw1pF6xZi7imctKm0vaNmxN/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ecc103d38053d5065d28bd5f88933ebfbade6f21","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"971c7770314467964c536242becad2555ef9c758","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150907":{"name":"typescript","version":"1.6.0-dev.20150907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150907","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"43a94fc14ac67d6aa5e89578c01f141429c24986","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150907.tgz","integrity":"sha512-fexWmamcMzphlkNyGUqXRs4hpWAJ12gGm94P0SrfLhs2kQwj+m6df0ulLwsWWZLgDqajwM1ONaMJV+c5OWZZIA==","signatures":[{"sig":"MEUCIQCXPF2CCw+EVvGkOlkP3STRnPKOj1WjPColsYVVgAI7CAIgWKU3oiveuavqM8og4kDmZ3Deci3z2HQudEeV1S+WMBc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"43a94fc14ac67d6aa5e89578c01f141429c24986","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"971c7770314467964c536242becad2555ef9c758","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150908":{"name":"typescript","version":"1.6.0-dev.20150908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150908","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4c708d1dc33c66131fbfafb9d34cc955594f38b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150908.tgz","integrity":"sha512-AJd7hUmVyuCRC0NWrCXMTSysQHmAlaXT9g6rJ9ApAl7Ne7V1QCParKMBpXb6wUG5uQmrPPmNlOHUGT1Y5f7NzA==","signatures":[{"sig":"MEUCIQC8huNPspz/SZCDzQHvq+7oYb7s6z2CU53s2tdMiEl7GwIgYw5TZgABttcUf5TVCviFzVi1T1JOenVQhIj1anFbsi8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4c708d1dc33c66131fbfafb9d34cc955594f38b3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"971c7770314467964c536242becad2555ef9c758","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150909":{"name":"typescript","version":"1.6.0-dev.20150909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150909","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"84f0cc47c4bc91c3f3309f0e2a90bc55fd06d3e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150909.tgz","integrity":"sha512-E5VHPde64+qlJE5Aii+jpOtawPD2kG35R+joxmSrQO401QWJRaBiNUPDZRUZ8kFSGxwzf3F7g6c6wSyiQl7ZYA==","signatures":[{"sig":"MEYCIQDaactclwRdUXh8tSXxoFTctLbvvhi/tEMgRZrmG0rf+gIhAK78e4fqTF7k1pJpyQYVgX3BAwSfxq4skY7ohwv4WM5A","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"84f0cc47c4bc91c3f3309f0e2a90bc55fd06d3e7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"971c7770314467964c536242becad2555ef9c758","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150910":{"name":"typescript","version":"1.6.0-dev.20150910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150910","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fefe9ea9c629a7f2e74647aa1878fb21378539de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150910.tgz","integrity":"sha512-i03PqkOJxMUM8016wygGzIuIUD0WekTgV3zOWJs2gGT6AOniUS9N1NsCov8ryXHCfMJ/i5oMpcWH8lr8wIoMYw==","signatures":[{"sig":"MEUCIA1WMBRAMjf2+fsET6v8Jp3e+KR83re9CU7v67qtrzunAiEAqeLmYyhCyFp54bktvo3Z64aGehnw5xMkcaKw3Wggk3M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fefe9ea9c629a7f2e74647aa1878fb21378539de","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a5c72014b0c345f6978bfe2fa38e5711c256e5af","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150911":{"name":"typescript","version":"1.6.0-dev.20150911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150911","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"71e1b4b36c1d4aff757449ea6426a3ee2a4acec7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150911.tgz","integrity":"sha512-8Yc5E8/pfp2xfeOuKofcZqhgchNAwzouvuBui8rfCfPq+HMshiI0L81ZmjijR/8LpSzJezKQYkihgL2R45X9vw==","signatures":[{"sig":"MEYCIQCmE3HcfcYJCzE22jBxRgeUIsntO/4P8A0rAFpCWdzlLwIhAKUmL2gZzn99X1HLtjnCTTgK0rtlAsUEg3nceOOMDf+N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"71e1b4b36c1d4aff757449ea6426a3ee2a4acec7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"b71969e45a7917db29a916a5aa9fca56a77ab048","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150912":{"name":"typescript","version":"1.6.0-dev.20150912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150912","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e9bf2409caa444ef6db0c1edd16ec34cc753717d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150912.tgz","integrity":"sha512-T+K3m9x6cvcWqAkarMM8YMMKmEcqLtfOPhfjw5MNNGMf/+qlE/fqbFFIhsO8UcA5hMDDO0qsScDYumikH+cEOA==","signatures":[{"sig":"MEUCIQDZplFcb/6O1Gc4GUPti32OMAPLJl3eKWBvTYTaJxXYCQIgYeQ5+tPan1tFyYsUrQUZ1dNT5udHbl4tTArxeVfofgA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e9bf2409caa444ef6db0c1edd16ec34cc753717d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150913":{"name":"typescript","version":"1.6.0-dev.20150913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150913","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"93022604b3b9e154b6ad4b203234f3ba8204eb86","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150913.tgz","integrity":"sha512-AijA8ChJDDYFf2qv+FduP7WtQbRBzYAHtv8841g3IwlPFjvmRInrGlngOJ3hcoCJY1bTbnTwmkPGFX9cWcurBg==","signatures":[{"sig":"MEQCIDgJNHr4JnguxoZ47UhQvv3saCO7atbE4Uss3N2+kuweAiBZG5YtOS3yluGu6ktlyUMYI40TGwOaCcA/EVa9Ma2qSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"93022604b3b9e154b6ad4b203234f3ba8204eb86","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150914":{"name":"typescript","version":"1.6.0-dev.20150914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150914","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"867b18d42991a3b51a4d9cf619bd4e07d8aafd39","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150914.tgz","integrity":"sha512-6nC8xdTPs3vYb2BQsKoxcz6kbrbAR4sa3xhsIeQcxqV62WcAODobVEvF+g17pwPvACgxZHyWnRC/O+PMrMDZGQ==","signatures":[{"sig":"MEUCIQCd0bg7MIZgHmOZ2G4alf2FFXMO7W932FxZQ5nIh/EIYgIgREfSLY0H4RVRNUG+5qTtTTxMfg5f7cYEMR7L4brETQU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"867b18d42991a3b51a4d9cf619bd4e07d8aafd39","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"90273f995db63e5671964c636bd16ad2ea863906","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.0-dev.20150915":{"name":"typescript","version":"1.6.0-dev.20150915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.0-dev.20150915","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4081386fa5adeef5aa5add29714e9ad9e1fcfca9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.0-dev.20150915.tgz","integrity":"sha512-471BgzMX9VHNTZcINsA8bTPcjexXtTo+Ssngboe/pCk+W/Wd6s6PmpQo5bHAAomJYTchgULYmSlazQmb0wHrVQ==","signatures":[{"sig":"MEUCIQDQuF7iT7rGef9FX0S0nr+a0yMvCWJ7hs88HinOUYE03QIgQePz++vCNiLLzCQGpr/iPslNdLnsjFSI8OiaYbeinHY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4081386fa5adeef5aa5add29714e9ad9e1fcfca9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"89718cf5a54fd67365d8f29e5f3e4a88f467bfe3","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150916":{"name":"typescript","version":"1.7.0-dev.20150916","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150916","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ab3258bc8779bfe373dee27dfca55e5f32d50eec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150916.tgz","integrity":"sha512-oyE9Pxs66uHDgNEj7uOANlLDtBiZebW7GqubdOsEOpE91B49EncsNri7OmHUY2hIyPxTYDj9YBu4PRMq4yOqLg==","signatures":[{"sig":"MEYCIQDGLWzZVnpTeWzsgB8PdKcUw6bbjMCytgYEdkYCkelEEgIhALK9PI5tmZ3CMM0KfwfP22tMs2t+kad5wnwczacaR8mr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ab3258bc8779bfe373dee27dfca55e5f32d50eec","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c9170b81a8f69994c1c03af50a10aafd9c75c524","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.6.2":{"name":"typescript","version":"1.6.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.6.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5b27254abeb111027cbf9450d3431bc5843191dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.6.2.tgz","integrity":"sha512-FC5jZDS/XjVKZefJbSv8CCHo4973XnxhBxRUAh9i6rKktMOuMk//celFsFt8cP6xE+IJQMfNPsbi5LH7DkllQA==","signatures":[{"sig":"MEYCIQCPY07W/qa7pe6eube+sVQ+hMAJNNs5jtJlVLSTtQQijAIhAJhYVDddnCQ2trKR8D2+jAwf8dkXRIVYR1Ma87Va+9Oe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5b27254abeb111027cbf9450d3431bc5843191dd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a44d8e76c68e7c685cef3d34943158021acd04e5","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150917":{"name":"typescript","version":"1.7.0-dev.20150917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150917","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7654d52fd67c1b9c8615b52285f7cfb4b4c301e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150917.tgz","integrity":"sha512-W2FHo2D5yHAyDgdf0Y0vgFVJo+AEX8WnpqusVKdj/5UBzgCcyvczSRgQp5D3HBYopKh9VGOWM5xNGDkHpcfk/A==","signatures":[{"sig":"MEYCIQD3lKjikj6/TOErJ9h97jhYP7BQLh3vYAvUfipSG5TTEwIhAKGAv7hDFuL9Ah5SJMg1onMcgQfNn8op/hyLGeOqhYq0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7654d52fd67c1b9c8615b52285f7cfb4b4c301e9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c9170b81a8f69994c1c03af50a10aafd9c75c524","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150918":{"name":"typescript","version":"1.7.0-dev.20150918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150918","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4788f8d6e4c438a23b354ee1da28c35cb99c705e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150918.tgz","integrity":"sha512-tzMYeJ8ZoBtUeWIj8Yj2ZiJJGiMu61hShHne7Ds+1llt3HhR/uZEZfVwsA9wZbL/FYy3mL4w1djc2is9IMN03w==","signatures":[{"sig":"MEUCIQDM6laFFBg/rbku+qlONKkGtjfGVL3Ty0hEimaboNmTnwIgcIqjIephoMMGZMZcOAE+54UWtaJImgY7NtNtnPu+WSE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4788f8d6e4c438a23b354ee1da28c35cb99c705e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cd390fd83b5f67f4a91c335c83147405515ad67e","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150919":{"name":"typescript","version":"1.7.0-dev.20150919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150919","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4067f01f00c68b2061bfc673afd81f0b716eb3e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150919.tgz","integrity":"sha512-xy5Afhcm/6xg1Y/7MQmvbdmYHqkdAI4W0h/Pi7AGtiIWHIiJfwSVBb18H7nNdKBhmQU9zWxcUMSZ6BmmubWd5A==","signatures":[{"sig":"MEUCIQCuuYqE591zSH/lNpYBESFShj+Uu4r8TRCXlgT1ikUDXAIgT/G4+EJoLoJbMuv8OksoaCn6vtjRGWAosdz36lCVzYE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4067f01f00c68b2061bfc673afd81f0b716eb3e7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c28efb7572f7ddea824b5f476c49f4f48de71f4b","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150920":{"name":"typescript","version":"1.7.0-dev.20150920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150920","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bffa407560373081cc74fc88a5059e13432e06d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150920.tgz","integrity":"sha512-sws0AUCXLLkMa8Fq/gzTsoPNK1dYpoCIflmT5wcxcOhTZ5H/bFoAkNZcDFkaqLY6NX2TvdCO6JSiXh+bD6OYvQ==","signatures":[{"sig":"MEUCIBoB49Sk2ydUgwH8tw2RdDyKmLXeyze1CoyNREwTDXjaAiEAmZcoxBcmUeQHVQmyuszFXhxDxw/zqicF8JdX0looYLA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bffa407560373081cc74fc88a5059e13432e06d5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"92f5f59a075a08de32a43b3dc09f7f54751b471e","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150921":{"name":"typescript","version":"1.7.0-dev.20150921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150921","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4fca86ae26638318370b14dce12280d85cf159c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150921.tgz","integrity":"sha512-VobDXGeMQLxGGtsgJIcfAm06fQcTyphitWSDoleoZt2noSR2RIqITfklf/VsDHjKIJwxr0ENCsL3y3ArFcwXrA==","signatures":[{"sig":"MEYCIQCvXzgHGt9txVotJCJ911EQh71qy2BfQCMnj76061mDJQIhAPhjsWgymo6kgID7Nf3DITUH39RcYinClN+BAqS6WgDc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4fca86ae26638318370b14dce12280d85cf159c0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"92f5f59a075a08de32a43b3dc09f7f54751b471e","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150922":{"name":"typescript","version":"1.7.0-dev.20150922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150922","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a59b823db4052496e03a65f7bd93d40c612cf056","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150922.tgz","integrity":"sha512-rLG2UNtxOdTmRjlU98e/SObqkPZqrxpyIRFXFibe2u/3JxucfLzFc5OoQXOfvZG6FYicwyvk7JiMzTaHtsGkIw==","signatures":[{"sig":"MEUCID6e/6QwUrQjLqZwJ4sAD9WhVM7LLA4LNaGN3SGjApKwAiEAy6zIy6Ya0dx5YqDG1udyZJgf7x8wnNxmVJ8Cz54mNe0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a59b823db4052496e03a65f7bd93d40c612cf056","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7b48a182c05ea4dea81bab73ecbbe9e013a79e99","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150923":{"name":"typescript","version":"1.7.0-dev.20150923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150923","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c3489dd958e69b927b818aabe279ca88cf780da0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150923.tgz","integrity":"sha512-ec3679M/DKMVUi/qq6DCEJNN0kYXQjP+mYSazCUfYy9nF9DnVtPnK1PC/+b9yvbsolID/PbGSKY1Uk/KVmHjeg==","signatures":[{"sig":"MEYCIQCyG0i72xoW+/xuQlUMlD74vBgjZPjVvOXn2wujpeuUugIhAKVD8sy5nBIJjinKgbNCRIsc1l32ch9ZMjLWZzDxTSFL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c3489dd958e69b927b818aabe279ca88cf780da0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5a77d67b630b5337aac2d90eeabaf4a8cbd018e8","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150924":{"name":"typescript","version":"1.7.0-dev.20150924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150924","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"db25eee548514b94c0f030c6f957ee62a0e43b8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150924.tgz","integrity":"sha512-0cbKcMuJgTQgtAWblA2YGxAIhICOkXTXi6Ah/vpilb/GidxMXZWf6xcSOrixUzrxPVet0kwfdQTx0WV3wijxtA==","signatures":[{"sig":"MEUCIF5K6tqr6F89qnfbRchZQ6G50q0BZEweibdz96efgA7LAiEAib15+3aTTKZobrs2ynQndFbe/VFk5Iyun+CzGVg6AWQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"db25eee548514b94c0f030c6f957ee62a0e43b8a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5a77d67b630b5337aac2d90eeabaf4a8cbd018e8","scripts":{"test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150925":{"name":"typescript","version":"1.7.0-dev.20150925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150925","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"39ac9b726e6c68ae837cbf2bc37d3d12a6914a63","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150925.tgz","integrity":"sha512-PzKof4tPzoOCT7OIYUB4rx5d/LIOvVdrnXgej1HMn9muJMfFomsVRgnLYiRNBY1AEuqmNy3VLi4/ldXdolDe+w==","signatures":[{"sig":"MEUCIDj6O38WP0G3ppWgTYLELoVy0Sm2HHp8NnmbfMB4irecAiEAqdrcU86ewsR4reQdKv0wyFsG+usLzPlpozHzgQEYPM0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"39ac9b726e6c68ae837cbf2bc37d3d12a6914a63","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"b8667816094525bc6d0a310dfec4be6cf41fb4d6","scripts":{"jake":"jake","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","postinstall":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150926":{"name":"typescript","version":"1.7.0-dev.20150926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150926","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"041bc4ce69914df379df141a4a3017bcbb505ced","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150926.tgz","integrity":"sha512-da4vLNzPDYn5eUTbDwvnhef39s0puUKar3IVXZH7+Ysz1U98XK4q5V91DhLetlcUVUB6/KXjgXWUazrdAwnRBQ==","signatures":[{"sig":"MEUCIENThxN+sAAsr8o08oknXHwkMm54dY2g9ZgzPaNDhPmYAiEA+x92x5cQ1ZHZfLqn36dTHnB9sQk9hLTjIB1kUb4bCQI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"041bc4ce69914df379df141a4a3017bcbb505ced","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","scripts":{"jake":"jake","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150927":{"name":"typescript","version":"1.7.0-dev.20150927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150927","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b51d9cb08748f226f642aa283fcfa91bc8155f4e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150927.tgz","integrity":"sha512-u2X0FFOvyd9ylj0t/MXpSP87CjnkSw1o19n0e6BL71ctSrn4+N7KbSCggcLCWOgjdAhZJyU8i0hUYqcCLcvKSA==","signatures":[{"sig":"MEYCIQCeBRzfimT7hEejeNsyKGZ9J1v1RWxEC3RVEk7YOKVdHwIhAKK1o9DFecWszLnj2BOf3SxVPN3+84j1WREUjVIMS1qN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b51d9cb08748f226f642aa283fcfa91bc8155f4e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","scripts":{"jake":"jake","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150928":{"name":"typescript","version":"1.7.0-dev.20150928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150928","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d6a843bbac2858726c20b9eaa752e58a9914872a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150928.tgz","integrity":"sha512-m6Qt9LMJD7uGTspryAlBy9mu3Ip+5RWZfEs2MlUeH/poWfCknUSzfmG1M3aUZw7qNfX8ED4KAwoiDIAc7hIUWw==","signatures":[{"sig":"MEUCIEcFXNV9oFJJtW3QFKCc3ENUeGSl1utth7mNTOKypfgEAiEAghMuRJavZIsbwNfl/ko03hAR1HhRtJ0Qi2KoLmGmZhk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d6a843bbac2858726c20b9eaa752e58a9914872a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d9559d58ca4f68bf51849d067fe2e9560b2e081f","scripts":{"jake":"jake","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150929":{"name":"typescript","version":"1.7.0-dev.20150929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150929","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a34b25a22a21c5dd7f2d69a5b72d0362bbf8a02a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150929.tgz","integrity":"sha512-A6sz5E+sB7ei0tebXRMNidHxVsVn+updhWat/NUyWWhHaHj9cen4vDN9Tofz/ONK3E1UyRN13nY/Ee2XfZnWUw==","signatures":[{"sig":"MEQCIH5BLkQcxUmXR+1P82cGENxnjRGtvIco/wkXxsHgKansAiAiCXVoIw80YWKgEEUlOlaP5DVaE0ErRNtnoK/ofDtYiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a34b25a22a21c5dd7f2d69a5b72d0362bbf8a02a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c55d6dc0e3d920cd31b8d983c863bf0eb1020709","scripts":{"jake":"jake","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20150930":{"name":"typescript","version":"1.7.0-dev.20150930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20150930","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"12676a6beea3fcf3f2072f2cfb7c0f1ab34bafbe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20150930.tgz","integrity":"sha512-O+PcchJbgl76kwnxgaBW7WGMsmyTojE7FUfmd16O0XeBmoZ9FRvvGF+pUPxjd4CHr6oVUb5d22Hlf+NR0TCNqg==","signatures":[{"sig":"MEUCIAP18cQ6xaFqkqWIew9wgDyNVGsl7FDvtd8ho2aaiSO4AiEAyOB32wBy31MuP+8shzKSilbkroe0SlqfSmICtR4yu8w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"12676a6beea3fcf3f2072f2cfb7c0f1ab34bafbe","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e0bf8cc3849fd6207ed8f8d628d75ce8f40d757f","scripts":{"jake":"jake","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151001":{"name":"typescript","version":"1.7.0-dev.20151001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151001","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5e2730627526a189876fc5aa92ecc3ff3eb2afef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151001.tgz","integrity":"sha512-VIPHsT5wRW8XhhG/p5yUoQtcWPj0leE8SNeiV0EAQVQLwdHAYK7m4f68f4jU8Ejeq5nlx6kxDok1jiKPhmgB0Q==","signatures":[{"sig":"MEUCICD3UIX/6wJlB1oShg/p4rRgqMKMXuhovauJH4mbRSL0AiEA9NqeQEflBfPtmCM7r8HjmrRSz+QAQXiCi4oqoip7eys=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5e2730627526a189876fc5aa92ecc3ff3eb2afef","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dfb95b869278a4b3e9cd81abf05b0b52553bcaa2","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151002":{"name":"typescript","version":"1.7.0-dev.20151002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151002","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8e469d25a2180efcfa899bed91a9dcf5254f87b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151002.tgz","integrity":"sha512-m0uDX15yFILr2OpKKrazTgkibz3dh0gFbiptdSDC7/RCPnP7zDPhsXZBXZILw9vkBqlp7PnfmRE3bBFwrasfSg==","signatures":[{"sig":"MEYCIQCjUFbaTOAsfa73SMRWdPooJcHcOER8K6dkgRUk2J0rtAIhAKPARvKhwzvWZaDGIysqaJOgcEkzLIY76e2EtANToJp1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8e469d25a2180efcfa899bed91a9dcf5254f87b2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cc95dcac1bec89ece5986b8a5c1e8e19bb160db2","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151003":{"name":"typescript","version":"1.7.0-dev.20151003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151003","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6e35ece47cc78821529b78509f10439316450d75","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151003.tgz","integrity":"sha512-pnwdYBuTOp+16v+lvfofhje0iMDqkvhS9GKjALEL3/5AE3LtgL16Isp/fkVziwE5Bwa/7b+eMlJ/VSJOlG+ruw==","signatures":[{"sig":"MEYCIQC6iWE6L8dE33NpD68rfW8eMORjVQ3yWFBpiWZTux09RAIhALEhnEx1Ec9HooNjwoCp3zxJRONL8YdUQ+ltIoojDBI9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6e35ece47cc78821529b78509f10439316450d75","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151004":{"name":"typescript","version":"1.7.0-dev.20151004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151004","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0ed090c573f7c89db61f9517cbbcb7e199635db5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151004.tgz","integrity":"sha512-KSEVIxgU88q8GdfwRZyzjUuJZ/bxWnSXBawhTGwZ2oQuhuKcePEIJhzADkt3x68L4CSg/CKCpKFd2ZtZJUI49A==","signatures":[{"sig":"MEUCIC0iPLR+GPvRMfrnmmfNKZIQ+gSGJeoB/pJTTufLj2JcAiEA/sQt8drEZOmkd9G4sszRUOtgA22qwtW6d8DDkNej6y0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0ed090c573f7c89db61f9517cbbcb7e199635db5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151005":{"name":"typescript","version":"1.7.0-dev.20151005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151005","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1491232d48f41996b9eb2a8a1ef3dcf271bd3033","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151005.tgz","integrity":"sha512-rzq9/a7lBL2EP12FZmOfol6M/V6XLFbiPh1z24YXtEpAExuYsq3JJtaqwu4PLRBR0j9DKkftB7JeuW25tMw8Vg==","signatures":[{"sig":"MEQCIH8gQmf8aWp9zbcVQH6ZUo1rjASAxvTVzXWvyOo/sn86AiB5IiO761f4BsP4IRjORouTn7VWp85F1Re1rAUlkYHhuA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1491232d48f41996b9eb2a8a1ef3dcf271bd3033","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"331d26f40271c7a21c6fa74ffac633b45f653dda","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests && npm run lint","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151006":{"name":"typescript","version":"1.7.0-dev.20151006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151006","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"863afb588b5130b7232375931c3824daf9b10842","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151006.tgz","integrity":"sha512-fSQoZ57JsDOtDQeNFsL5MJT79I+1kZtgFwFAKJnne6+OtJ0slT2KC4JmYGdjCSor003OCZ93GUgXV9nZXNfklw==","signatures":[{"sig":"MEUCIAbgcG//f3nUlipenirfx9pnKDWkdtwFSrJMvkuY8fGtAiEA0Mxxa3Bu2S3zU0dX7VZwszdx5fe/OD/TmJArpq4EV+A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"863afb588b5130b7232375931c3824daf9b10842","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"53cff210fd9c08f32764251bf773b8de9c454092","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151014":{"name":"typescript","version":"1.7.0-dev.20151014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151014","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"88f47ffc08da523859e95b8ad1c999dc4f192997","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151014.tgz","integrity":"sha512-a8pYGgQzZDaAMUkPu6IcTzJmRSdvSX4SCTRuaNv81sRHev2+yJ1Hl/U0k71RWUIrR/Z3QMZ0RtZ45cLPihTilQ==","signatures":[{"sig":"MEQCIECqtOMgfHRejQIJj/7sypXB26HN0ltlyBKOUGFq0hT5AiBvq4uvt9UsN5uEYu9ZXzL3i79J+E4f3ylBRS6JboD+kw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"88f47ffc08da523859e95b8ad1c999dc4f192997","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"21e30e0f59fe3e45aa1df2369687fbd534d78079","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151015":{"name":"typescript","version":"1.7.0-dev.20151015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151015","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e193643a2b785b4458edc44d22c459c44d8b92ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151015.tgz","integrity":"sha512-1wx/zd4j3W3n4LrPkarCwPssYaRQhdIO+bM1jLRfPFbtAhxgnkCLnNdONcvo24ExGVJqc/wZP909W7P9A3FFQQ==","signatures":[{"sig":"MEUCIEzGwrHnbCcj7mbPXR8Xbmq8JQ03ZKslBp1dQ2ujiGvpAiEA2aul3RtCOSqsXyi7A4aBEON+hdiNY+qSjEguC8dH1xA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e193643a2b785b4458edc44d22c459c44d8b92ed","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d703e092279a3f35d3b541db7de96ee0c217a702","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.7.0-dev.20151016":{"name":"typescript","version":"1.7.0-dev.20151016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.0-dev.20151016","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"638826bcb4fa50c215abf2208e2f655c03c296dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.0-dev.20151016.tgz","integrity":"sha512-AKAVb5E3VVIaPlil5RY6ULSwf3Qm8TgiwaU+s0LlmmXqKsDOwFInbdNxG67tvPVIDBLwHy+jDgA5f7MoZoxHqA==","signatures":[{"sig":"MEUCIAg/n/7CizILttZ/3RKePEnVGaRKiIAq+SH4IYgU7oqfAiEAliV8GsMkgCoy4R78yOfZx6IdERE75Xtvyw4Uy33fsFc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"638826bcb4fa50c215abf2208e2f655c03c296dc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"302db0a9d58fe6b108c4ec455883fa7a3c4fd991","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"1.4.28","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151017":{"name":"typescript","version":"1.8.0-dev.20151017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151017","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3d064e65959ae074371ca20678bbd0e82daec6fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151017.tgz","integrity":"sha512-pifpzxx73kiV9cChGgxSgbxAkHV7qjxosgtTdbRKy6MJtsU1HN2EeTqJKgriOERa1zskFzKxNu9Cxxiqpmt6Kg==","signatures":[{"sig":"MEUCIChDNMkHRiryCz6z34LXoLLIVX+b7C2DA70zF+k9tN1AAiEAuYPQ67HzZ26LJZ0bwflTYCYcWzdTNxy1B2bO3dT1qRM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3d064e65959ae074371ca20678bbd0e82daec6fa","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6aeec13d7efd1e7615e158d7669de14f06f2b803","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151018":{"name":"typescript","version":"1.8.0-dev.20151018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151018","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a6ddf655721b3a23f1b405c2e7051f019ed0bad6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151018.tgz","integrity":"sha512-4iF/d7/9bZTJ+RMK+8TlNdp6/yZ7fH/VHCxNBDjxtJY18XBNXdf3KHd6/S0iZ2epRtotHENlOGCOi2PYEIjA+A==","signatures":[{"sig":"MEQCIEv4r1tsVhRDLoB9jZyUZ5xxmyZg8TTbzfxZwUayZ9CHAiAlYavTsDRMUsWFpXnpBxolVvAW8dYhhtTbfFF8a/6w4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a6ddf655721b3a23f1b405c2e7051f019ed0bad6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6aeec13d7efd1e7615e158d7669de14f06f2b803","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151019":{"name":"typescript","version":"1.8.0-dev.20151019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151019","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1b5a51a8a34e493a40af7c720378d2ef74da2029","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151019.tgz","integrity":"sha512-diVoui8IqqYgFj/IEcfa09tp9Ta1fIWpTzEXLhPjmfcQG1EExYOlSyztHitlzKDV2ejc3UOiFC1fyh+jyE7cFg==","signatures":[{"sig":"MEYCIQCP34UcQNUB8tE78XXbNrVClDGRFNxONyuikpPKRkIPWwIhAKk5Gu4I53JbUNpJtuKfClwKnDg+C5C4wQ0k8f9tPUmg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1b5a51a8a34e493a40af7c720378d2ef74da2029","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"28c2887d504f94b2a67191b1956632653c2acb5d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151020":{"name":"typescript","version":"1.8.0-dev.20151020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151020","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dd798f1ac00e8c3e4e9069df83124af871a9a5a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151020.tgz","integrity":"sha512-Mq0KVaX8urcss1PT+Z0aGzvEEZa7MVTSQw/s46JFZienW2swfjNGDdSFTivocm0X0wVrLrtcekLIBHJ/vH1mzA==","signatures":[{"sig":"MEUCIQCSe+ZRWmFETT4bIhE8K0nCKcsnWzQEdUBRcfaaiALjNQIgEIUgB3jDBsm0g8HsWp7IBQtqgRQOWz9C5jwBjp7iSm4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dd798f1ac00e8c3e4e9069df83124af871a9a5a7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"1b3640760b96bcea0e595f68b4cbccf40068c3e1","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151021":{"name":"typescript","version":"1.8.0-dev.20151021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151021","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"895d42b30e6d03d19ade64f393956e59b245b8f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151021.tgz","integrity":"sha512-OP77pPEGOTQuo9MRQosE+AmPZ61o8tzeW05VcLyBuoeCyEs8TI6We/HrpuWavgcZ+mmQjHvukuXeQI5n8fJODg==","signatures":[{"sig":"MEUCID1ZFod5QPW4q6jjl0XsA+MrZT5bra+7/vDFjmKO/kE/AiEArFDA5suLC3zUSIU8l0eZA9gJ4NvPyIXpQguaT7a1pw8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"895d42b30e6d03d19ade64f393956e59b245b8f0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"853e9a24621d6ee1520c2a51db8c0863b9556da1","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151022":{"name":"typescript","version":"1.8.0-dev.20151022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151022","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7739b192e97741d16ca53ea583e03fae5c06cace","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151022.tgz","integrity":"sha512-2EkIRXCFuDhmyYevWR1CRK94rgm//yC6iLgOeVur/gIo2Nkif+MmCog2iXGXLGqAQLqYh1/QbUFFuceO6xrFQA==","signatures":[{"sig":"MEUCIQDhMkJGiG8XWaSOGpojx6e9tL1NUCZWYetivTPktcAhAAIgF0rqo9Y0qJeBJB/wEdOZ0KZltFFf1M+W3st81ERnbRs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7739b192e97741d16ca53ea583e03fae5c06cace","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9afc2b3c8fc254a6d88af1e47e0c881cb498b329","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151023":{"name":"typescript","version":"1.8.0-dev.20151023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151023","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6e6a3c23e11966673904c63a2136766aad91b4f3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151023.tgz","integrity":"sha512-Gr81gTwiPO4cwPteUUAB0XVIXfeSrR+3h+pd70ZK+97GY3g+ZU0TKLKqIFhY24iD5YxnW9P9yZdh4aTIwGwX6A==","signatures":[{"sig":"MEUCIQClATwaRO1EFhkM94Da7+8tyQJ+JLmxjehLfM/7pxbTlgIgOea492sU5Rba+yZEXuWArs1PpE1w6MvL6z9Me34GTFE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6e6a3c23e11966673904c63a2136766aad91b4f3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"bede6edc5106e3a4fbbfa9472f3473e61d21c884","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151024":{"name":"typescript","version":"1.8.0-dev.20151024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151024","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0d87f86c3917c1607ff2df87034345bcfe6be5bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151024.tgz","integrity":"sha512-5LMym6GYqGyqV7D+0inUUIwaasViNhMasCydCr8W508t9lFLvEB/6D0vJUFyKt3nnptlIwINss/gkp9nFQQmdA==","signatures":[{"sig":"MEUCIF+fnkbA9jFQxNz4851YA8Rh6QY3Ly56fY6SeHQw1p2DAiEA/P9vHzBd38VMLVa7V7ewqrMi5Q/1FXN6QVjvaP3RPgY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0d87f86c3917c1607ff2df87034345bcfe6be5bc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c4e54685c63509f85aa83b7ece05e3650b5ed8d3","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151025":{"name":"typescript","version":"1.8.0-dev.20151025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151025","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"04c961ad9e3739c3c2aaed9a7105cbd5b6ac6620","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151025.tgz","integrity":"sha512-wNqXkFzAiJV1aQmG1RttElhfjTzG80aoa0XvnAUyPvjgG6BHkUKimZI5d5e6Rw5goaVGWITFp4vjijHIDM+MAQ==","signatures":[{"sig":"MEYCIQCBcuN8hFyPe8oAkjKN5GERasRyqMIqxSwb+qRBz1fo1AIhAN6RUW59HHvfQCGBO967FozriEPXaQYQqByCMnXHC144","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"04c961ad9e3739c3c2aaed9a7105cbd5b6ac6620","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c3c66a40f1f6c5fd15337c62a410840d15934296","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151026":{"name":"typescript","version":"1.8.0-dev.20151026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151026","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e6f19393c6583ed0a0f5bb880cfeb97babb81b58","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151026.tgz","integrity":"sha512-IYsGZm6Ug7hHxRePWqgyWXJFG8Ft911w17sqQUynOEz3Hp1Au0wHQBWxe9x5f7vtO98pQFXmXtw6aUVdVu1iXQ==","signatures":[{"sig":"MEQCICBYkRX+KtUzHYD/HACBVTWH2O4F8SeumnEfJftT8q/RAiBrnewcyHMCQ3H1OW0Zk8Kya55hUOkuIHK2t0oIGjOGeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e6f19393c6583ed0a0f5bb880cfeb97babb81b58","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c3c66a40f1f6c5fd15337c62a410840d15934296","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151027":{"name":"typescript","version":"1.8.0-dev.20151027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151027","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"35aa18b1bdc171fce01c691a552c86cd3c2f0dde","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151027.tgz","integrity":"sha512-b2rp9y8annOrn6rNpV0mZP1Wc69Oar8l1V9Q8Caz/FWSxCAUbMtxWZDEES8VqN+ftwdTtpaoteDneWrORxyRig==","signatures":[{"sig":"MEUCICWboULBt8LfMYRTisN5qq4ypL3QwtkLbBK49Y6IT0HYAiEAmGGJFSG74SnbJpG5vmtr6UWoplkz1rRX5D4iCWfEn78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"35aa18b1bdc171fce01c691a552c86cd3c2f0dde","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a9058f9aa94da3be26663b9d98dc2f4498764331","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151028":{"name":"typescript","version":"1.8.0-dev.20151028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151028","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1f79cf084cdf80803cd8abaf16dba1ca19e5f05d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151028.tgz","integrity":"sha512-fXzSU+gYtLgycUWi0ppSENikUYCr9oUhDKOb+8+6aelCmIELGjcKbparrOnRnkS+Z5rMxx3IWALRdykV0BU3jw==","signatures":[{"sig":"MEQCIEKbgZuRuCTjO8x30QhDv+NjlorRVzzaLOg9Hfmur/M5AiAaqSdcd84X0FvLagoK4LZdYgsNAZL0u8eztG5vhdjfsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1f79cf084cdf80803cd8abaf16dba1ca19e5f05d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9201ba2857d97d683d9823aef83bf912f45e6284","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151029":{"name":"typescript","version":"1.8.0-dev.20151029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151029","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"562e0052173b8af0c7fd7c485a7d74e2af1ec490","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151029.tgz","integrity":"sha512-ocWDNkKePN7REdDEH28YfDV1SnDVlRGKiXrGD+vvRQWLLNArdwy6g1EzRbSVthjZwkzkGBYc/pNU24rFvp2ZcQ==","signatures":[{"sig":"MEUCIQCv0G42TAxqpHaUFDcElj9IuDLPW7rPhiLQ6xAZbJXHAgIgdW83uKOZvPZP9PvNh0iJXhU4bGCx+yz77u01t+DOJj8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"562e0052173b8af0c7fd7c485a7d74e2af1ec490","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"067e1ccef23ee12b7404c020079e45a993091597","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151030":{"name":"typescript","version":"1.8.0-dev.20151030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151030","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7e1bd7294bd522da6a18dbdd6bef4bccf7a7547b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151030.tgz","integrity":"sha512-6d45W5k2G3c89aJ7DvIsuPCJH0K6c0gZQWWKoF7zeLqscN4520SKMFELx081/P26siRCbRpkVZA6Z25ncuc2pQ==","signatures":[{"sig":"MEMCIBgAaUVIAsXOS0rrTGkHdyHU/Y4Xnhx68QJiKHtOfyzYAh9uoq+cbVIbERWhqDsCgbRJU3GzEfVK8kThlVTkvdfG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7e1bd7294bd522da6a18dbdd6bef4bccf7a7547b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"067e1ccef23ee12b7404c020079e45a993091597","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151031":{"name":"typescript","version":"1.8.0-dev.20151031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151031","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1c301478db52e39240bfff7086cb6429a45f5d9b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151031.tgz","integrity":"sha512-XNXhXK41nz/1Y8of2LH+ElomP+HZTo/wa27b+lDusKvrCX2ReqpePw9X6dPBwEPkuUzsaVRi7Kz3UB5lqvWXjw==","signatures":[{"sig":"MEUCIQCEMqGUTFCdbwdnZwgXkdRbuIq+yUt97ig/N5OVdEMJrgIgKXYbWpK1WM37v3a93C/ou2FpMSdDhLOMgZ0fc61TfXM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1c301478db52e39240bfff7086cb6429a45f5d9b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151101":{"name":"typescript","version":"1.8.0-dev.20151101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"effb545d6e5a1edd2f289f9e8da69d6fa118100e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151101.tgz","integrity":"sha512-kKiVEVzSWrjz+2kRVdkTWwwrrqqU799Nhox3ZiFdJ1AcXB63M0DpXgeHNlaKAeQBwyS4qqC63MHcnyC+wSVd+g==","signatures":[{"sig":"MEUCIQCe4lbv96Y9YFsS0drGOOG4KSebn6/WtelBuhSjZuHeZgIgWm5Y7oUziQxsor02v+bYLEN1SADJU9spq1k2v23p6fU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"effb545d6e5a1edd2f289f9e8da69d6fa118100e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151102":{"name":"typescript","version":"1.8.0-dev.20151102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151102","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"73aed16ea28bd3cbd21abba6349edbcb92f4f9d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151102.tgz","integrity":"sha512-yuhSN4cJ+cyBVNUwfv4OdL+m4N+BuA21P0jjGQRZoS0D3uBQEuCbCzqgy7qWfLHlPVlSV1cKfX8XFerWFQekwQ==","signatures":[{"sig":"MEUCIHat1/x8m5iKe0KjxZljwyO6+YQxDRNEBTSk62OR0nwkAiEA+rcT7mBASzd4dMtKWb2HYEE/6Bi730FdSz9NNf3Q/aE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"73aed16ea28bd3cbd21abba6349edbcb92f4f9d5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5cbcafadb9a4b7db2731dddfd103572377482a5c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151103":{"name":"typescript","version":"1.8.0-dev.20151103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"667f61aac78f0e1689d006b1fb7141f990c4bfce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151103.tgz","integrity":"sha512-ZXYUTH6PH1U4aefhiZkfGGDDzhL1Z2yZcGXo1bDWsLCRoajxFSb0/AggH0jaaDaxQD6paRB7YAJw0XNbLSLMxA==","signatures":[{"sig":"MEQCIE4Pee8AWghaS63eJCMEo/PogQfBvlFyHmAQy9G1DuZyAiADln3myCC3M0xIcMlKcbOLXeuSAnZNFyG9oCW33Xn97Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"667f61aac78f0e1689d006b1fb7141f990c4bfce","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ae2faf83ba746966728714e2f49e7d981822518d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151104":{"name":"typescript","version":"1.8.0-dev.20151104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151104","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e45384feb78e01f9607425fdcf6e3b2af71a43a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151104.tgz","integrity":"sha512-rwUkta8U/NGL1FJSrRzDN867WcvR0kZrC/5F4aDBaZ4RfVY1OFYwNxKAbEsY3mn7aaYFEV54s34daYawVfcfiw==","signatures":[{"sig":"MEUCIQDtqqLEvB/pKrl5uXvLysyM2+26hzKRQgM5SlbXKe+aQgIgKbGaZqNdWgY2X8xTMF+/WlXvHWqadETSfSDQFAWOLPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e45384feb78e01f9607425fdcf6e3b2af71a43a1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2c644476fbeded909426b7c87025ad05c1e13a4d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151105":{"name":"typescript","version":"1.8.0-dev.20151105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151105","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"11522aa6b65194737cbf4f6a71a79244787b351f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151105.tgz","integrity":"sha512-oKzU5eNELz6U3MoCTEhnVncXrUl6wz2eQ+yOq0JU+5kRVmK27IO5Ak6jsIMYZn7VXlf549VoH/+HkSPte+W03w==","signatures":[{"sig":"MEUCIQDqL/FttLWuPK3sfldqlQGeuit84T/MrVelBcOidYITfgIgOFfV2t6UdvsL863mQaP5EC3HbC0ADEPxqmiX1YQnN0M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"11522aa6b65194737cbf4f6a71a79244787b351f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"12c6a7400dffc10c41f9245da64fbd5beeceb3dc","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151106":{"name":"typescript","version":"1.8.0-dev.20151106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151106","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"89052cb1ea9f1403633a719b22fbca0fedc419ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151106.tgz","integrity":"sha512-1rVB/4LmMV2uI39pzt6guMox+pW0gNqSF3/Ebwh5giWBxpfirgQPbrkd5q9KPE0PP3r0Q2OaOtd2tcId2ybtmg==","signatures":[{"sig":"MEUCICmzLdx1jXYTyDlBH+gv8q31z9lI1LifytouOn+bE3J5AiEA8KWWF0+Bm+N4G+5RzNhGYxij1C26INgjam/dz0mTwvw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"89052cb1ea9f1403633a719b22fbca0fedc419ff","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9b4956fa1151e3fa07babcdfc421385a2f155487","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151107":{"name":"typescript","version":"1.8.0-dev.20151107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151107","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9ada1104380da21852ebfac4721f56f8abdbc809","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151107.tgz","integrity":"sha512-3Rj/cVe7zkzN501Le02PW8RcPU5IW3B/CGHSQvweS1R+lMR455y5oSXCWnwTciccG88IGX1m/a1DJjTfuhgxUw==","signatures":[{"sig":"MEQCIGudIBOdV08RVollxpXmNtKCEZ3jYXwIsy9CdRg06RYnAiBOu3v8M33ENnWnK9SWMKjN8zs0sw/k+ZoiNFaUUefVdA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9ada1104380da21852ebfac4721f56f8abdbc809","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d1c7a62a60b394165226aa37805b18c087788d1b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151108":{"name":"typescript","version":"1.8.0-dev.20151108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"da5a7aaae9a5fa3cefdca514fc00c5e18e5cad25","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151108.tgz","integrity":"sha512-lezQDL5dNQG2wtYcRcDL5T5FTleOROcYcxU+jpV6FArbx5krGW5ANqlTU5olKXFVKj+VMp/ruTqh6B0MgWVY1w==","signatures":[{"sig":"MEQCIAsqfIf98++axLCscPDSNvjedsV0tk8mHsQ6O/MKLRFXAiAfJPF/PBB011sDNbRHpqGSirFzHSLYK6PPxRQC+obQIw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"da5a7aaae9a5fa3cefdca514fc00c5e18e5cad25","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c3df2890fc9227707eb557faa752a7e7073dcb44","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151109":{"name":"typescript","version":"1.8.0-dev.20151109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151109","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a12e455d7ba5d5181a78da421266337612c7f481","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151109.tgz","integrity":"sha512-ps9qQ22HoMFA/KrzkX8t+c7fQ1PXOmkonyTNpxTip/b0PpQZ3/YFf1jWu6EF5DLZG/aBMRi4BXoaAIwyoZwJZg==","signatures":[{"sig":"MEUCIQDT8+rETwq2gNTkPL359p3TFpRyed+D3UHtiibS8Q7OWAIgIo1Qcqbxoh9iWOpxJx+fvcDVA+D24JNPpQT/OIVj1vc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a12e455d7ba5d5181a78da421266337612c7f481","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c3df2890fc9227707eb557faa752a7e7073dcb44","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151110":{"name":"typescript","version":"1.8.0-dev.20151110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f35fe46027bb6fb1dfb73013aaf21dea7fcbd081","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151110.tgz","integrity":"sha512-uBE9Df4CvdNgx46JaxqtkYHmdDddISsWdXnLBse8ifcd2H4HCsgOpjoiv/anAF/4yuxTx7+twldO+AwsUYyMyA==","signatures":[{"sig":"MEYCIQC0vvbevIAtgAbxAT+XZK8qTDCmE1+VLnQRHkGlnuprJAIhAMJ73SBvxlX6AXDoTCu5W7Ccot7fEsVllhMg8FSmuRkv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f35fe46027bb6fb1dfb73013aaf21dea7fcbd081","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9c284805ec46ed4807f205d6d5b1434745039381","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151111":{"name":"typescript","version":"1.8.0-dev.20151111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151111","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1d9dee6194249e28e67cee8b5028ccfdeb659461","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151111.tgz","integrity":"sha512-/dN4U5eAo1UjCaz/pfSCIvcFVZqBzMOdeGNRZg6JqQRHERKZqzrI33LbxkK4nDIobbIzhjxSx4IX3hxANs0Dpw==","signatures":[{"sig":"MEUCIQDPBzy9+uL5dbXRzr5ouELVqklTKYhAmbCW4YQrNc66qwIgeb1D+QL+QCbiDGvCtF7dtiUKjw1V5qdzgi8ykzn5Nfc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1d9dee6194249e28e67cee8b5028ccfdeb659461","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"75364b69889bd293f078aeb4913853a2e6e31e54","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151112":{"name":"typescript","version":"1.8.0-dev.20151112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151112","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"60c8834c48a69e66ff3d6e4c877091fad08ee8c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151112.tgz","integrity":"sha512-/jPln+tdtwqLpfVCcnIXJakMviQ/fXd9dkan3s2916CQ0DUyzPitJnyt/Rd7CR8SK4k+9HRqUqM5gnWP2y4bVg==","signatures":[{"sig":"MEYCIQCKqfJ7NerqGRj3Yc3Nwm04Fhcp9sFJaB1z/nv+2picIgIhAOwagJ5JIJ//BQJGObWS/wCdqmy4UPOBsBfOKzSNPDK/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"60c8834c48a69e66ff3d6e4c877091fad08ee8c3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ef02bf0915cae10c6debd9bf192786f98bbe9a04","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151113":{"name":"typescript","version":"1.8.0-dev.20151113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151113","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"95ebec2826077d3ffcdfb90c6af04d306fb0ad3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151113.tgz","integrity":"sha512-0mk8hCXgHVga550BK6b6V/AVDF5bmKQiV9L5OSaAdZVLOndTJpy9QikfQu6suvCInGzI+WU97N306et76Azxhg==","signatures":[{"sig":"MEUCIQC7kEv/oqk6bYRoGEGcIkIP59jqPlRlOEDtk6zyaHb0kAIgEx4znIDzqGRd4UgIUHxtvVNtbm/tWqHacsJJRGxOJdE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"95ebec2826077d3ffcdfb90c6af04d306fb0ad3e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3d6312a1da2f38677f89ba23ca6a1d72efa54ba2","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151114":{"name":"typescript","version":"1.8.0-dev.20151114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151114","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"61a91fa6d00c1c091ca08dd5a1b83e95629d36ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151114.tgz","integrity":"sha512-ngxUZ4cM5AiIYz3EOPKoZxXpS54UAnWAwvY1oOtPJLjQqIQbRA8rz3hDn8G/EYPNhj26aGdEQxmaPXCewaYzuA==","signatures":[{"sig":"MEUCIGHA1eQnQnuCBC/1KTgY0c0+DXgFQCgKXM/s46q5xly5AiEA2d9vaAE6YewJ4bSmFUE9Y/6b6nidpZjikKV2YlM9IgY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"61a91fa6d00c1c091ca08dd5a1b83e95629d36ce","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6b27ce4907b44d63ef7a218962514097347152e4","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151115":{"name":"typescript","version":"1.8.0-dev.20151115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4eb2ffea495d3f8a650a42101a21bc32aaac386c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151115.tgz","integrity":"sha512-1xtNveOljev7Tt4wIR/E8edke8maFs51jSLLLyxpykGSgVORsxtG6InG0acrbCSsicxAXvssQKYFim1yI0Or4Q==","signatures":[{"sig":"MEYCIQCE3Ps+dbNju63dzw1VkOV1my8JfiQ2ZAnqDrlqCyzvQQIhAK2umcuFbycw2ntlht4bIxjb8wMaFdEIEYsB8+P44/6f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4eb2ffea495d3f8a650a42101a21bc32aaac386c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"abb7a130e30255c01b2a4bc7437d3a4dc4ba1605","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151116":{"name":"typescript","version":"1.8.0-dev.20151116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"33e187196b11f2c3f04b7ba3d98cd83fed959606","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151116.tgz","integrity":"sha512-HnxJrpauDfNVehP8UpfTJvdc7ZtBacMNS1a6YiNuqV2fInDJtOav1+XY6eG6U2215K1/6Nazvs3f+gNKLNIfHg==","signatures":[{"sig":"MEYCIQCCH/6eYhU/c7NnASbyFTEQNRC7AZ3Z6Pof8xFXngHcdgIhAO+CBPiFXRgh0H4ahQc+F103eQ/GwHz9y4bO+q8u9rJS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"33e187196b11f2c3f04b7ba3d98cd83fed959606","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"abb7a130e30255c01b2a4bc7437d3a4dc4ba1605","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151117":{"name":"typescript","version":"1.8.0-dev.20151117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3a945b1d0ffd1be4b912ce615a41f1ab3e1d5cfd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151117.tgz","integrity":"sha512-3beUoRuIpnv6pbUaFc6Bprr2xyT7eUFfW3fZcs6fzhWgG/GkEzAMMEke87n+6/H2x8XXb91IVgJV6sJb01SMAA==","signatures":[{"sig":"MEYCIQDvgAyD+VoyL8ZA19jJ3xgkJycXfQ7NJVibuMgy4EyDqwIhAJJP+mL54ox+jG1u6+mn8B3LI71vM1F4sMXMCzw6UkBv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3a945b1d0ffd1be4b912ce615a41f1ab3e1d5cfd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"13bc120fe2f9afecc636b2d8a77946999d71a970","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151118":{"name":"typescript","version":"1.8.0-dev.20151118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b63b8aae5ba97c1ffe25c36af9f5141ea827fd4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151118.tgz","integrity":"sha512-ro/gz7/fZV3Jlt7b40AE2i+GOKgfF+xhvgYSj72nAzasUWtJquUwKyFnW2kJKZwG2Lh/bjY61cadmnoyMLyNUA==","signatures":[{"sig":"MEYCIQDi4UZrtOQ/REJUHvszp+mAZ9T1XhIMuRhai4JJuCP+WAIhAKqlqvSEjeeAVe0nhjsHWDDorixcpNLDkfVeePIeV2Kn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b63b8aae5ba97c1ffe25c36af9f5141ea827fd4d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5e84ed399ccd7ca1e3bdb71c64798ed0fe68cf22","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151119":{"name":"typescript","version":"1.8.0-dev.20151119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151119","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5289e9bd64efd721043206174fb21dbb96bb5d4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151119.tgz","integrity":"sha512-aXBrD1ovLwb8YfeLeKAhzkCrelIc7jMQoOjSe4fJroKaWVcalbwfdCQ7jJwaAU7ScYjfn+OC3rLpvtOu55kJtw==","signatures":[{"sig":"MEQCIBv4GVtyELMTGuIZoTycndWhDUaqJ7AfuQIAxkiBaY0EAiBc/hHxVA79fi0U7m/7yXsgWs4bJwA3JRGWMsp21GmImQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5289e9bd64efd721043206174fb21dbb96bb5d4d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"bd84b844ff8982ee0c2e8a7f9d777925760fea8a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151120":{"name":"typescript","version":"1.8.0-dev.20151120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151120","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b5a01a2e4e383f7e368413b68d5ba8f14703c092","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151120.tgz","integrity":"sha512-AZQg/fqHaLU9CwFCCg8z+KKXwMaaQdTuku82JCztAvdA/W1j+mSWxcDKkuechGhi96EE8QvcOkBE7F5DZ4N6gA==","signatures":[{"sig":"MEYCIQDDqjGa8mVk73kdtuScOUWFdFhTkrjQs8BYl0orNT0KtgIhANBuIlekxa9cchdK3PgLQp/9Jrvk1t5lUG8HI8sV4iu8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b5a01a2e4e383f7e368413b68d5ba8f14703c092","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"883b8d9347ceebfce97d2a6312344cd91bb06aef","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151121":{"name":"typescript","version":"1.8.0-dev.20151121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151121","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"58d395ea1c851878f8e74c7a5765e7de0b6ce5a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151121.tgz","integrity":"sha512-Chs0apH31CGFTm3X5AbsblAwNiDOaq6Ci+DPHtrt684jVTL03PS8WKe/7CFETUvK4oGHT+gM64BJkEMqQYzTEw==","signatures":[{"sig":"MEUCIQCPIYeZUgmWNOnxdjaw6WaP4tyWRxlGv/D61HH4/Ovf6gIgFBbC7xuQahN1ltAU5we7DwuzF2dWs4GUkQzwgb5MqCc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"58d395ea1c851878f8e74c7a5765e7de0b6ce5a4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c94dcbd770f0ed8631678c69d00e3c2d4f30613a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151122":{"name":"typescript","version":"1.8.0-dev.20151122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2ded2e6f29097be402741256035ab54f9b473020","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151122.tgz","integrity":"sha512-MMMIFRh63wVdrZvmgbdHUlrNX/9lhUKXQ5BoZN2qjdo6EPIqdRKb5tM/dSdCBa38wFER2rqPzyAku3fXwBoytg==","signatures":[{"sig":"MEUCIQD8G8kLXLhJnQeEFX2KBgqjp2RFXDNXHnJdx3w8qW0rQAIgBUV+p5M4+FrMdNYLh3MGp6lBnXJYe0GMObnyI3d8zlw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2ded2e6f29097be402741256035ab54f9b473020","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c94dcbd770f0ed8631678c69d00e3c2d4f30613a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151123":{"name":"typescript","version":"1.8.0-dev.20151123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5f8be34ae1a8d11a0cee55b45ca27484166f24a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151123.tgz","integrity":"sha512-NRS8OzV4fVgAdSOtN69e6K4BVv7KSMoYoduREM8bpeyMDgPDebn7PVIpf8qYQijZvgPHUL63NjB2JTRQTc+22g==","signatures":[{"sig":"MEQCID0K3u6v1P4ZkmXmzzZh19X+TW4Lri+9DFtBQgaH98ETAiAyH81DQvuD/YzT0C7ODoehrdscsmxbQm9C1UWZjeLkww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5f8be34ae1a8d11a0cee55b45ca27484166f24a3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"fbaba90ac96fd296da1f5912aab95785806754dc","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151124":{"name":"typescript","version":"1.8.0-dev.20151124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151124","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"25c2c3c1551ad9d5283109132434948b25bcf581","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151124.tgz","integrity":"sha512-4H5PgQj3xcxzz0C3Kfiowv6D2R+geifcCPBOg5sRh1/OQHfId0cugfT4K15uh/In6d1SIlce36/h8ff/sAuuGQ==","signatures":[{"sig":"MEQCIBu1S9g3Emh9/4bflfy2COKdqiUVGcDrOlNGSKBtIftGAiARGrC65XdfvinDii1fZZu/g+FgKpVzRYFlLUpB85O2MA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"25c2c3c1551ad9d5283109132434948b25bcf581","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"fb76dc95deecfee9e16d8e78b7abb4521901f840","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151125":{"name":"typescript","version":"1.8.0-dev.20151125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"20ec8882857c96420eca11e66ba8c387eb1f6b16","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151125.tgz","integrity":"sha512-7gyeSnv2lST7Qkg1Tv3jLBFTb3ijgSVCT+xrK/4qEfBjr7BSsdlcRvJqwPZbGJHatXU7V0S1RmCAm6wYsPxREw==","signatures":[{"sig":"MEYCIQCDh/pMFxBhWhM/EM88Cptl570R28+/w9bAkNm6rEQA8QIhAJkIuqyb0A1cQM22k9p1XM+b0tFvGUe5GXLThscxIhqe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"20ec8882857c96420eca11e66ba8c387eb1f6b16","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"8909c3a2dd42f99ad6130be36c11f1efe57efbd3","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151126":{"name":"typescript","version":"1.8.0-dev.20151126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151126","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fc01aa18ff63bc90fcf416fa482e8fc4eda6e24f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151126.tgz","integrity":"sha512-WR962C8BYfbd/o+QaAyokfN56C8Iy1EjNbkrfDLa9/+hKg440XTHuwY36GkF+ZnNr4Ptg2yUAirHlNqKmUOhIg==","signatures":[{"sig":"MEYCIQDksURcJ6GZn11geCWNG2l0JVj+mVaAqKreQpP1S3EuNQIhAO6KliMjm35LpTcWJNHNo/z2gU/7fS5ImYvDFMXGZIR1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fc01aa18ff63bc90fcf416fa482e8fc4eda6e24f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151127":{"name":"typescript","version":"1.8.0-dev.20151127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"03ad7bf27d4f5d36457dede9fbdcc40c5eeade36","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151127.tgz","integrity":"sha512-aVZHsCjLcKiSxkzjc4BXmrbZt+rBH7NPjHDtzMxYSR1PpiF86EhnuWQqTjpqFMEWdrQJVy9LA8ifuhD6qVlN5A==","signatures":[{"sig":"MEQCIH8iVyGj7qQujTJORJNbIa09ZDmDUYQfRJepjdjD1d/hAiBJUm0AjGmgxgnw+B6t+r6gzU2lR4YPKZbEjBNADxgBug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"03ad7bf27d4f5d36457dede9fbdcc40c5eeade36","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151128":{"name":"typescript","version":"1.8.0-dev.20151128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"316603f8933f8ad7deef0c382c907ecb21574bb5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151128.tgz","integrity":"sha512-x7+2sDG+OrxN8i40pie6U8jz17AzuvYrQFeUN57B5/5JlKrnfDbKf/bLl+ZxeiAapuxyggoh4cz0le9vgSaMFQ==","signatures":[{"sig":"MEYCIQDVexYt6Vq2xEjNxh1T7DFBdA9M2CXr6Jt4eobwisdpVwIhAJEryDbGeq4YsYZFlem9Xfi87e3OYUzQhCw1TP6Rxe19","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"316603f8933f8ad7deef0c382c907ecb21574bb5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"38215c68026f1abdd73ba6201c951b626d86d966","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151129":{"name":"typescript","version":"1.8.0-dev.20151129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151129","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4c18e707827e47ca3c294e4998400aee55247bda","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151129.tgz","integrity":"sha512-UY708AEUIPuZhyvJvhA9fDURz0wEiIik2ldDhPoPB3MG6w3EQ+TF1bNiP5frwcydaSViG2Z25olVn2W/9dRKbg==","signatures":[{"sig":"MEYCIQCqQswyDo2kePXc0mXlj5hG++iBxBLHdAXXFCHIvm0f1AIhAN+E+cS/jRYn5+15Q4m79YfEFaEBcK/OXaSNeVeuuBAU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4c18e707827e47ca3c294e4998400aee55247bda","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2f282a786a2690cbe6be6bc40898612b6155e48c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151130":{"name":"typescript","version":"1.8.0-dev.20151130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"155387bf9fcdaf0e9dcde95e2168598a4aa002e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151130.tgz","integrity":"sha512-CZ0I5CiAJG8rBnZgURzRiaS7B2Aypw8cAsJrpcq4k9vYC8eguVqXLL7JlJ/fK1/lRp6J9fI22EdxveYk4QpmFQ==","signatures":[{"sig":"MEYCIQDPNK5OvZQ5fWTSYTURdhdhAYpwldPP2fuCmM1lbUqY8AIhAMqn3uHTTY/ZnckWdDDPTlIWYjgmTB25O4UHqdicu1zZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"155387bf9fcdaf0e9dcde95e2168598a4aa002e1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2f282a786a2690cbe6be6bc40898612b6155e48c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.7.3":{"name":"typescript","version":"1.7.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"adf81fc4dc68d5374cc28d8bf2b660957468cff7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.3.tgz","integrity":"sha512-374JIkIfXAJXaFnmZoeeE5FwMsRwaHzVf6UvcsZnDEfatuINfCvAtaFOmgt1bWcfaeO6Kw1DDvmA7lWNv05roA==","signatures":[{"sig":"MEUCIGzHpgU0txgV6I0jQulZF4fNaP6SJvUuo3RgWKa47RoPAiEA+kX2x8W+4Ul8BKjFDgcf6wlALt+HYDc2SxmB15qM4G8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"adf81fc4dc68d5374cc28d8bf2b660957468cff7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a1ff917aa2ad10507673bebd2a61b669ad839eaf","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"latest","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151201":{"name":"typescript","version":"1.8.0-dev.20151201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dea113b35fead7e8bb820a5b0ebbd20e899dd65e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151201.tgz","integrity":"sha512-uB8tFDNNEZKvTuShJhx8d0w1k1TV0uyXNeANN3SvyCPaymHIfmSZeB1/Qp8InnJSvvoN/ZrrnVzPSEmgOQbPPA==","signatures":[{"sig":"MEYCIQDo6cwM8MetU7q3/44SE0BkyAPJgAK99inWtbdVdNS5eAIhAKoilTSRQ9EF4GKK90I90l5qESSKsmne+unKp48d0RgC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dea113b35fead7e8bb820a5b0ebbd20e899dd65e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dac1874c38c29352142757d14b06221af7590293","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151202":{"name":"typescript","version":"1.8.0-dev.20151202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151202","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8905ff9db6a6ce03ddc0a7be44193e573c645b13","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151202.tgz","integrity":"sha512-qeWBJ4Nhb926ddXGzEVQInquQOw4LfVEmlN1CpfNmMd+ZtOC2/N2u4XzhKr5em0FQ+c6LvuqFHkADaEmurL75g==","signatures":[{"sig":"MEUCIDsT7bJLKRcZr+RsbF+ZDuBUb+pceE3wJOPvY2mUaIVLAiEAv5lPGBFhR8vuLzPuAy+/9RGXF5NascBJF8zsCQdFLuE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8905ff9db6a6ce03ddc0a7be44193e573c645b13","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"19d7e629da07003de971a70fdf91aa5a560931ea","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151203":{"name":"typescript","version":"1.8.0-dev.20151203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151203","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"74386b5adea59ae0d76029a9c1b0f09e80b62fd7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151203.tgz","integrity":"sha512-vzVsPImsWyuJ4nS2WEd9/C9gQVj1EuGBrs1anyQz8iUJQEBa5T7LLS+zOLtCwVeH0wf1lZrSybMQ7UIEbUSE5w==","signatures":[{"sig":"MEQCIFzZ8340m7wvrDx3OdJ5heos0NjZBJGeEd365yNNglOcAiBibHlsA+hV0Yy6F6l1VDmgSOAqd/aDLGoFVUd4+r6tNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"74386b5adea59ae0d76029a9c1b0f09e80b62fd7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4137a103d886c8e042386b76b8e38ba173160602","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151204":{"name":"typescript","version":"1.8.0-dev.20151204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151204","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"972b3781849183561a80d6e2d47fba9798d78f61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151204.tgz","integrity":"sha512-Wsi1abNo/98iT3d/ZqIXHQ9SsXHb0DDiQ55i0Nr+zdMI9vPQDS00CPklH/oUt6cTLcok4AfFVJ5P6Q6IDAWZTA==","signatures":[{"sig":"MEYCIQDRj7Sw8vOSGVxT9zKgA98L7Yc1isU81UJ5IlonTjEmhQIhAM4hI8yRGDBRxYMUf1ylABpkgl5fEDqp9ylNmZfq7Pit","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"972b3781849183561a80d6e2d47fba9798d78f61","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3a4ac33240fb4d0641ecc8b385a3ad34af5f648c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151210":{"name":"typescript","version":"1.8.0-dev.20151210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151210","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"14b96a95c5c6c5a860d773b7a1601fd2c5c0e04e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151210.tgz","integrity":"sha512-NlY4p/mIwSQED1e36Z9CZhDO4H543K58+6PfstySnmCjbkHC9EcMAgqlt9eV6oikw2ZPsm4f6BlVrS0a1qtYQQ==","signatures":[{"sig":"MEQCIFp9RBYLcqm6JaihjifrNx5c83KP4wmmplSxQ0kijqzrAiAJ8O0pHmvyxUWXYB6yi3DEmzVbkrwrNoGLKD0yMWPsZQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"14b96a95c5c6c5a860d773b7a1601fd2c5c0e04e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ecfeb219657d94288d3fc28b82bb3947719f49f8","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151211":{"name":"typescript","version":"1.8.0-dev.20151211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151211","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2049992470fd0bb7e85de3bd24b3d512a16afac7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151211.tgz","integrity":"sha512-8MBB1SD7qZv11uHW4BDTr5dpyuqe5QwsCOk4msxgGQ+Te396CfqhWxmmRyctGyYp1mMY+GtEnf84JDwRHQySjA==","signatures":[{"sig":"MEUCIQCK4KeblWl0I46Aw+r/QQNpSfwD7ZmW97lHa8/GxL9VGwIgSNHfGSg5XSb/qkxe/YygFjMtFsbJLUaSb0ydCpj5Blk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2049992470fd0bb7e85de3bd24b3d512a16afac7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ff784770be6355c37cd4e119bf149c3ebb56f26b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151212":{"name":"typescript","version":"1.8.0-dev.20151212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151212","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0953ab469e7071a4365870b0fdabd10b06a98d34","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151212.tgz","integrity":"sha512-mzwSfhA2ExLGJoxEaYnwgIN0un0rNZW9+AzXD9DQqSMHwt93v2myNTmbbv6KgHLneM2z0TuZ4WhfAzV6alqwrw==","signatures":[{"sig":"MEYCIQD525NZgEExDlcM4gCvYlfBFzOpyS/uQxNn6ftKs8j2xgIhALrEK/nqyGHnHw7MeKT4IRb4XgxUiC+y7Pr81VMSPTje","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0953ab469e7071a4365870b0fdabd10b06a98d34","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9d1cc311448a10f765b11afe3eff9d217994e114","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151213":{"name":"typescript","version":"1.8.0-dev.20151213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c4580626596c1798ee34df89dab87b56e22e7ad5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151213.tgz","integrity":"sha512-vFev0AAGJlqVdSxrJ+7tX9g77XqisImI2ih8LSWJC52MJNTAJziErBwNj9av5F3g0+rWzCamwo8T2d92jlBewg==","signatures":[{"sig":"MEYCIQC3pkhI5EpjIWyDF2hz4Xriu1F3x8uTKIvZ0k99yRkOZQIhAMX9sp4w2qQD0BCB7R41uIseTecjx3A9mH0EBjoxxi9k","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c4580626596c1798ee34df89dab87b56e22e7ad5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"87036fe9f769c03f0a6b84148d385a7a8015c957","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151214":{"name":"typescript","version":"1.8.0-dev.20151214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1ab06f431c7a93c344e606505be738da08bd7d80","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151214.tgz","integrity":"sha512-KAdB14oGh+jHz+xQoHW79gg6NIc0GBITWh83FKmku7psAhxzL6+ytHTKfp4pkxFIht7ehaUrXM/+fW9+udvbKA==","signatures":[{"sig":"MEYCIQDfxq7lTIUgzM5Za4T4qGuJcinIQ60tGl0EsM9xVDbSxAIhAM3Gi81som9gYFpN3XxzA502tQPSd4lJ4b52r5iBg0Xh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1ab06f431c7a93c344e606505be738da08bd7d80","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"87036fe9f769c03f0a6b84148d385a7a8015c957","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.7.5":{"name":"typescript","version":"1.7.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.7.5","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a80fc231d9b95afeb9d10f0589560428dd0a045e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.7.5.tgz","integrity":"sha512-kxhllC9x9Cplc0CPWCBU6thg7ZT1SfISG43B5ji4CItrJ3+Et6CscIKWroF+E6a9MhsqmmTbRCkAA0/vhDyt5A==","signatures":[{"sig":"MEQCIETFj3bv+65ZlpXXiBUjSJ3TW3kedJDn+fXTjfQ8WF7pAiAfjtcXPvsL3ja6tAX6VaXi6syQ9WiAO2bMVJ4MgLjDnA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a80fc231d9b95afeb9d10f0589560428dd0a045e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"1a8406d8b05e8efea768a1788cc9024f9425a1e5","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"~2","istanbul":"latest","browserify":"latest","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151215":{"name":"typescript","version":"1.8.0-dev.20151215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151215","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"645efae13cfbb51ce1410a0e3d396b072f784377","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151215.tgz","integrity":"sha512-zwRfH0P928hHXuQrJNq2q6dST9zujidua+yJfkQ6VAoXPWuoegM3fCBJRgWya+XGAG5mX3buzVfpr/AiDL30ew==","signatures":[{"sig":"MEUCIQDC1+r6YyvvM9WyMVO6X8v140e4eloHzEHB36iHQnk5fwIgOUY0lK5+gj9/+3ddEpNIzeq8seWDglPVnnyyabneMFg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"645efae13cfbb51ce1410a0e3d396b072f784377","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2f447ee005ad8970cb1af64e43b3a52efe7b4ff3","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151216":{"name":"typescript","version":"1.8.0-dev.20151216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d5e3a4c4d32ca0178806fa1e15631e9839285290","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151216.tgz","integrity":"sha512-zOFMjl4K03LDnvaimT61+ofBZorJM1Zg7x4wz8h4j0tgmf0Q28DaGIC/dTkHa9JJ6PEESOTTM92CQo9I/GK3XQ==","signatures":[{"sig":"MEUCIQDAASqmNp+oVl1OSSgyHnks6fAa/txaiUoFQzWomQQAygIgJWvjpdzoAmjlfJirQFcYsig7ZAvPhhYAkh6gPjS77ZY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d5e3a4c4d32ca0178806fa1e15631e9839285290","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"55d4f0f7e40a2b8ec708a316448d43df682d03cd","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151217":{"name":"typescript","version":"1.8.0-dev.20151217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151217","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"32ce3bfc844567d7bde712705a680bea4be66d78","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151217.tgz","integrity":"sha512-SZaBF3HcXlfzakvXO52IIbROBsjdkc7a5TUC/kld9gS4XT1dkHMvCS3zTpUQVfxVlvmMBxhsz19Iz5w+0sflbw==","signatures":[{"sig":"MEQCIBeBc5v8V0sLMPObbXFfRAz1T/54OOJE0bJHmr9W98KoAiBbrKPKsi+sulCQjtrTe+D1KJrrB+zDWecXRfgnvApQ7g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"32ce3bfc844567d7bde712705a680bea4be66d78","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"55d4f0f7e40a2b8ec708a316448d43df682d03cd","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151218":{"name":"typescript","version":"1.8.0-dev.20151218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151218","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a81dcf35462e360cdc60fbc7f008091c0cc7c0bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151218.tgz","integrity":"sha512-BU2n8oX2py1J1Nvy84Rw484lTIIV3+GXORGgS5VQN51fLCePDUaaa2q/cRSc5j5dir5xTayqtbtL9DcNK2MGZQ==","signatures":[{"sig":"MEUCIDukIiJhyCWxofUJ7AGc70nGfHW1pMB/zdVExepBaC2TAiEA6zTBK5BwSXAHDYzaodgxumk5roPMsLKZ2FlH7KCYSZc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a81dcf35462e360cdc60fbc7f008091c0cc7c0bc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"bb1e5ab5ea104cede32d8bda00f8c689ddcc84a9","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151219":{"name":"typescript","version":"1.8.0-dev.20151219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151219","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d56df3437a20e4fb7297d35adf5aefc27ab0a771","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151219.tgz","integrity":"sha512-kPJ6r5t+NbXeh3oQDIbSF01rG25vkfPTWVH2DK5VWZkdJoqISHhhDeGVVvw3DFQVffPNKGnDm8QB7slDMXmw9g==","signatures":[{"sig":"MEQCIG5iTJyEFZSVFSDRBVok69IwMHDs8OBCm7gN8mbtp5ClAiBnKar8JD4r6Xsb1tcR6GQjiT5lMu7VcjFJgbVGdyF+eQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d56df3437a20e4fb7297d35adf5aefc27ab0a771","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"66a0f1d2ea9b100a1df857728af66a6e62f9f31b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151220":{"name":"typescript","version":"1.8.0-dev.20151220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"25fedec2a47fce49b696f1e1daf5a1578331a0b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151220.tgz","integrity":"sha512-p8B5yH4Cf6M7gtyDIcC5a8nUgNrjCGA2lz/0kBwgEAJ+jHVCE4c+cqUyLO/Mw3FLTaemlsL/m77XQDeDQ5nn/A==","signatures":[{"sig":"MEYCIQDyxD1KAtV19UKtoYRYmos0QufBv2KR7JYG7ZXCibsE/wIhAJvA+HS0FL4ZuC7z/BqvU8cgwgog9S6McCWklJduySd9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"25fedec2a47fce49b696f1e1daf5a1578331a0b5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"93a459b405314b4d4216b987be644255e4212265","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151221":{"name":"typescript","version":"1.8.0-dev.20151221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ceb240f5be22312ad9992b9da387243d0ed73a0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151221.tgz","integrity":"sha512-QAr1DwoqAMtetFV+EozGEf2yn73y7WxjtWJflJgPLJFQQukyPOs2Y5Zgt6Z300r4zeot3jKUhUyw9opAHC0miA==","signatures":[{"sig":"MEYCIQCukTs8+gczIY+ChK0OQgpbRGxIdJ1AtH0Akwu0SN7tEQIhAPT5Opn0eeh953RtrQctfpJZ2KdO9Lnmoowo/CjkKcxT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ceb240f5be22312ad9992b9da387243d0ed73a0c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"93a459b405314b4d4216b987be644255e4212265","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151222":{"name":"typescript","version":"1.8.0-dev.20151222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151222","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c739cef75efa8d01d82798c9dfe928f9b7c77197","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151222.tgz","integrity":"sha512-8DMT2Tkb9yfXD5GO9FwWO1aMhycpIBhLYWCkAkL5zdNHNCEq+9LXI/VdbW8wbtT9KLiVbMc71QEqJs49md0r3w==","signatures":[{"sig":"MEUCIBxu5UekmcrvjCK0d05DGJAh/azb9s6wJLedBUCYMrQcAiEAolyJDa8jrcpkzuhTcwduhmtQaUG95MEfwgARPJNFAqs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c739cef75efa8d01d82798c9dfe928f9b7c77197","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7785e8492670eeb65c19461f79db0b353ce63f76","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151223":{"name":"typescript","version":"1.8.0-dev.20151223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151223","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cd8a8a696691c169b7a6d5a2c62526239798afb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151223.tgz","integrity":"sha512-lrcCySc4d8k4/0Vl5Um3FV+yNWSMdQMHGXLNbJkhASnM+uSvTPBCfAj8DZWo02qQO6zbH1uFW9s6ArujT2K5iQ==","signatures":[{"sig":"MEYCIQC6qPBR2vdREOdUIzgw2LyyvDw7JghzRHvekA0/8knhKwIhAOrvhS+YZFpymXk96Wo/ujiHtnAYWSeM0Gr0Htwqv6w8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cd8a8a696691c169b7a6d5a2c62526239798afb6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151224":{"name":"typescript","version":"1.8.0-dev.20151224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151224","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a3d740a7084001062cd3766b4fdcf512b05cf6ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151224.tgz","integrity":"sha512-6TF1WURJlUgP2viXqKgzX5+yAYt+8H98wWvFV/4TAx7MFSVpa/mAf6SMwAc/CYq7AiGutihqVCSiB+Ul54nCoQ==","signatures":[{"sig":"MEYCIQCGNsxBp6Sb+EFjmlKDKoU7WFjmwO4gCIKd4yKcS8/ecQIhAPELPouPOI4r1U3CukOh/597l+c0JlZQfo7JfpFUSJfS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a3d740a7084001062cd3766b4fdcf512b05cf6ea","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151225":{"name":"typescript","version":"1.8.0-dev.20151225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151225","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8c7c7c8481c1973b79f9b1ef1fe9eb401ee729e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151225.tgz","integrity":"sha512-wJQCQeuafIBWseIBIhcsQni0gUkngEjdjy3jrifEQrvSMRztjhL/Xj7WuLBAIL1pOhWi65IPtWWArc6kJZpkFg==","signatures":[{"sig":"MEQCIC4DrkvhB/fPiV6Ta8detFTcekTeysbheBOsfi2KxoD7AiBFqqmhWjpETM7NAqh6/wfq49A0NYSUqb4NtLAcVyZFHQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8c7c7c8481c1973b79f9b1ef1fe9eb401ee729e3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151226":{"name":"typescript","version":"1.8.0-dev.20151226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151226","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f1f06f8fc537129216a2161d2e092e772aaca618","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151226.tgz","integrity":"sha512-I1aBp6zIH1gHAKxU7gMW+oZOuDs6oK6lYTyMUB5OO/oC2Qv/DzV0FtRzv53vkFLZv++PHe8IE6W1J7/sks4m7A==","signatures":[{"sig":"MEYCIQDVw7aO5+MAuHJWfl5t9w5umFM3Tf2IW41PHdl4VSz6IgIhAJt1dHo3iEPZ3KTFznLpmnhODWYgHpgfeCSvvGgtkTVO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f1f06f8fc537129216a2161d2e092e772aaca618","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151227":{"name":"typescript","version":"1.8.0-dev.20151227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151227","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4edde5442af8f1ab4e478c986c48925faa82db76","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151227.tgz","integrity":"sha512-3tGan8KJg9wc4uY/ml5ajY3jP+CE3QONCSLSo8qTn+JGMfGOgGBnuM9DW3om8zTjezzvxWpGKYUwr4QNKea0Gg==","signatures":[{"sig":"MEUCIQDhC+WZMAGqT7KaM3ndVpJFwRCOBPVgtfnTSgzSXi14lgIgVXSg3MWuQu5fCFBIuBzkWpucaJbSHTURX022CLmoIUg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4edde5442af8f1ab4e478c986c48925faa82db76","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151228":{"name":"typescript","version":"1.8.0-dev.20151228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151228","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"229f44f2489828efaac0b77462964eea48fbbbb5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151228.tgz","integrity":"sha512-sivwbOfyDFwSIPDQycEEtb//Tqbw+TX+9had8981y+1IBNw4N7i0NW9E5GTNOYE7CnaQwbBtF+K2xv0ymx17cg==","signatures":[{"sig":"MEUCIFoUz8J8tlElg9zfZzTHFJQV30IIqVJJMLNdERsFS4gzAiEAkNbb8SEb355+QeYkIt3yuvsR6UxWKLWB9Flwc9q1CcU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"229f44f2489828efaac0b77462964eea48fbbbb5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151229":{"name":"typescript","version":"1.8.0-dev.20151229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151229","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b2be8dd51237df9429f33cf51793b29da149fe48","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151229.tgz","integrity":"sha512-ZDsez1ikv3jGIa1gzw5eolrrVKJKvm43sYvowLms8QK5JLw3kP5akQx0Ctj/SquacPDqgxykyYWezUvYc/ytMg==","signatures":[{"sig":"MEQCIB3WCODYtfNuiDlOcqzbCiBb5epcKUeacXqtOQ4a6rIcAiBzaJlPHwT9Mlrtz62/fOOSIOYc0qG9/3n+TvTVhmktgQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b2be8dd51237df9429f33cf51793b29da149fe48","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72bb1d3decb1b8a8daeab3523275b2d89065410b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151230":{"name":"typescript","version":"1.8.0-dev.20151230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151230","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"61b3600eed002574fce96fedb95d4c231550a976","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151230.tgz","integrity":"sha512-c2C3I7G7QNsNn1rBLArOQmWmI4YRApL8NxM5RJXLxNoLer+zUgar7XfujFcN/+l3GPAAwqhN0P8yo1HLSuEcBA==","signatures":[{"sig":"MEUCIGKhYvVUx3e4rU3PCvNW2FTgIWlieOcYHrRyxn+QAZekAiEAhC7nWKOWtbFScxx3pkYG7B98XKVM9l2/BlvJO4CWuuA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"61b3600eed002574fce96fedb95d4c231550a976","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20151231":{"name":"typescript","version":"1.8.0-dev.20151231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20151231","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e31384479c8da17cc3a3d4f65942d761e65df610","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20151231.tgz","integrity":"sha512-6YUM1Y7s0TCW+W6q5YFSuUKH1GFV4EnatYEvdWFzUjbZA9SJ9AEi9pgkyQw+FckoDgI2JKGPbE18ddJCi5GmzA==","signatures":[{"sig":"MEUCIHE5BW8MlZA1vwFH4OM5/RVvyfpDSauME3d9c/96tZwHAiEA01cNBOtOp73fFfD0C+NbB+A1OVfYBZ0ClNaqzcykpcM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e31384479c8da17cc3a3d4f65942d761e65df610","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160101":{"name":"typescript","version":"1.8.0-dev.20160101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"95793742b19b5160510d30d5fb7e46a4db7354d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160101.tgz","integrity":"sha512-j8WeEMiBzDOZntc4NAEl4leZtClt26MhluuPeH3znnXcXa6W6FB1Ejr0jyjMIvfCFrrcj2otUM9eDFOGUzfoIw==","signatures":[{"sig":"MEQCICWBHpuN7C3e2hjJhYHJsJja8MgAx4hbHIfRqEuPJvwFAiBa6dTit42Q63rriI1e9/wVJfI/7bYkuHB2QyR2OZ2bmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"95793742b19b5160510d30d5fb7e46a4db7354d3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"376534981220fbbfee39ae97299aafe0d9c473ce","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160102":{"name":"typescript","version":"1.8.0-dev.20160102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160102","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"522cc5e879ec8fec35af1c2fd9fa96788fc65239","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160102.tgz","integrity":"sha512-GCGHfVnA3qAF+q675ztY0J5LKaQJGXHmLObvhWvcLmJzwNoik3hCBM+CeuTzwFWxHIHQS19Rcww6rI5TDOGJ0w==","signatures":[{"sig":"MEUCIQCV5ki4Cq0+VfMiw90E6+JuuOS0eGUhM/GSmtPKGxXa/QIgUCqrDy9yn2SSfIcHnlVOv/B1qFyih3kekk5mI/lh+jY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"522cc5e879ec8fec35af1c2fd9fa96788fc65239","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160103":{"name":"typescript","version":"1.8.0-dev.20160103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0c2d67d3dd9faf0b0cab7baa1c63a0443ddf7529","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160103.tgz","integrity":"sha512-pAz4uxwA8xzgM5NoWk7k/cLzJuTnd2AbtIATsiVeZbgbLt86/6j1p+0FMfjjO6XoYwWAL8sxIH2ecJvp7SubKA==","signatures":[{"sig":"MEUCIQCn2QxPu2nDcmZzsRycWytWtOd639dygn1xGDmvnMwa+wIgGr+TRRCKU2unK68qKVFbQ5OCPismF4dAyUfhrIygW84=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0c2d67d3dd9faf0b0cab7baa1c63a0443ddf7529","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160104":{"name":"typescript","version":"1.8.0-dev.20160104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160104","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"86f087fd295670d885ab60aa4b3e16466db35570","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160104.tgz","integrity":"sha512-6VOdG86REsQLXtxhGQKSRFlAgk6JOVOuwQ4l98W+xH75Vo1OR5ET5ftmqeO+2ft/Qlglh9OAWZ00v5qzzIL5VQ==","signatures":[{"sig":"MEQCIEUYzOIbJNDA6sbrY+CrgF29BC4ZzZzWWAcGgK6Y91FeAiBKzULufQ7Rtih+W/dKojXOaUMpwCV/l0MaXM+JHneepA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"86f087fd295670d885ab60aa4b3e16466db35570","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6be02062423a6b61d11cd58736c06afa2c8552b2","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160105":{"name":"typescript","version":"1.8.0-dev.20160105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160105","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a083b06c2c560b68174c821e643206586af2d389","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160105.tgz","integrity":"sha512-uYEQZH7YXNkm0cw4PF4MtrMlfGQViNYuVsxyz0KEVf+nk+eSguMN+k+LPZorb0lCP54cy+1kc0920xda5hrkLw==","signatures":[{"sig":"MEUCIQCfQJdNZVPvMtdzuIu1g2jI1H6x7pNkk8rCH/fhHG/oUgIgeIFJK0pBc0+fnPFIrqbwXNsKfsXbz6PoiWU9fsCy2Zo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a083b06c2c560b68174c821e643206586af2d389","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"fec691ec222374646a64e9b746df5308d98da8c1","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160106":{"name":"typescript","version":"1.8.0-dev.20160106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160106","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"51e09f12a071f7d1ed653dc5fb8ade14c3cf5f35","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160106.tgz","integrity":"sha512-QVhYb4tvo76pAQIsDabHNhx4u8ZNtatwnTHczzWMNqScbI9HxgNqmlgwSXD902o1U8Be5sHG51BTVdvlOTKrtw==","signatures":[{"sig":"MEQCIGbRsNPVsFoEy1gqRThRvA6scSIIY2bxM43Y5G0ehlVaAiAvS4lNnvs6UJkLGEw0G+KT0A1Z75khbMPjbFD1zPbE8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"51e09f12a071f7d1ed653dc5fb8ade14c3cf5f35","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ba0f7f52abc0ab93f573b9faf3c8c8ce29161181","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160107":{"name":"typescript","version":"1.8.0-dev.20160107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160107","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5b09d2e54b41965302839d40f1aec18858809a64","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160107.tgz","integrity":"sha512-+HWNr1bxWzEdAJU7KuibWFCxdKCaZTE6gX6TCwyOwOOJloVuJonX6oSN6j6bRxd+P/0t1ZMnY1K+ORFcjNm9zw==","signatures":[{"sig":"MEYCIQDWdz3o5629EF+iQhW7UfLc2uK5QvxpJYvV8Q/Q4Wu1mQIhAMgLxZavHn+uQz6djA1EUpuLmEI0Zc9ghWfcwrK2UzOh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5b09d2e54b41965302839d40f1aec18858809a64","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a861913852880aa266828542a7fdac16d139172e","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160108":{"name":"typescript","version":"1.8.0-dev.20160108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"656ec0577b949bfa2790769c749d5726568dc81e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160108.tgz","integrity":"sha512-tuhE1zUh9/qMF24VHmVGTyfvOxOu9YuoEfnySLmnFNOkrT7aWv10kplgTHBXXSmnj6BDq0uKa9O8H2lpW58ivA==","signatures":[{"sig":"MEUCIQDEty30RCXgPni/k6E9H8O2bgpYa8ewZBmI/hO7epK3YwIgetuRTfilK2Dy0oQr2rhocWvyZXLXg8o6zoLr/qBzIEw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"656ec0577b949bfa2790769c749d5726568dc81e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a444be84c44b26b3e5ef54cb15ad06504a205a94","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160109":{"name":"typescript","version":"1.8.0-dev.20160109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160109","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4e77d8c4e98e5a39c92138adaaa6de55f0386604","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160109.tgz","integrity":"sha512-YVgRUybQtXBa32jV7J9T3X17syBYtCShO/DjEj8r1veUuunQRHai71Rq2u26+9yUgTEWZx4f7YX3oB3DbQ50vQ==","signatures":[{"sig":"MEYCIQD9nbookI/5SmTq/nQxDULWQNlNa68Ah3NEMoCjS4H6IQIhAJ2sZ26D6gxQ5hPvi6PPKTKuDt7NYtFWsKglORl01hCO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4e77d8c4e98e5a39c92138adaaa6de55f0386604","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"531392811214383a4c38aacda5bbc37cc7a8d860","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160110":{"name":"typescript","version":"1.8.0-dev.20160110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dd3b5590d56010dbb782044930ad4d04979305c8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160110.tgz","integrity":"sha512-ic++g9PrXUeGY7hmJr161HqdqCXIdKdXUYWM4Nr4zbMoAMUo3psk/d9RchfE2CFg8lUelaLLfrQZgGXZ6m3eWw==","signatures":[{"sig":"MEUCIBT/Lq1ZmMcPtFV0a0aZrBQTuQuI42g8dvzAMyegH/V+AiEAxiQaiqsDRldOFA9kf4/YkQTOsB+L125MUcPFsi1sn9g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dd3b5590d56010dbb782044930ad4d04979305c8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"531392811214383a4c38aacda5bbc37cc7a8d860","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160111":{"name":"typescript","version":"1.8.0-dev.20160111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160111","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6a67aa500dd140d7f633596f1e6c5565fd4b3de8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160111.tgz","integrity":"sha512-iqCeqjzqr9nTNqsdZ7HH4eeCHTx0esxTdjTcPQ23FBJdEFoiAwKP2yjETuJ9sii6SKeJAFbZzqDidlUQnB8N9Q==","signatures":[{"sig":"MEQCIDADONbvQCpsshgMaQ0Al2demLi0k7H1G++b5SrmIObCAiB7F8R3/q1AS9TwfREM/KdkXJEFbn6Bjyu4arULTATsWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6a67aa500dd140d7f633596f1e6c5565fd4b3de8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"8cf347c0885a08dfbbf070d4610510c3f7f453ac","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160112":{"name":"typescript","version":"1.8.0-dev.20160112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160112","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"86e9f1626a3fc9b4e6b21feedd12b36922c61854","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160112.tgz","integrity":"sha512-StfW+4ZDHjpDW1jne7w5JT8QKKNXEY86iG9MW8Mp5lEY4kN1a4dJiBIl1mZ6BeC5zAu3mV6KBQmIhDOQTyvQCw==","signatures":[{"sig":"MEQCIDKOKgZJdxJ0Ml7qCMcc8eK+F5Hzy41RKLpCCKGv29b+AiBNfu4DyFCnYiS1/OSzCA94CwnesFo0z7tZe7PiMrHABA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"86e9f1626a3fc9b4e6b21feedd12b36922c61854","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"33bfd92f4866e01d373ce0fdea7737e849b9c840","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160113":{"name":"typescript","version":"1.8.0-dev.20160113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160113","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dc560834fafb60aab221ebf893dc0ffd72bc7fcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160113.tgz","integrity":"sha512-O9BQPwDC5Pjmy5b6T4NNB059Ehq3Kr1LCg/IYqdtWwOHQku+punw0DKoCHzygIsEthsBavbJplBwD7lnIF+ZbA==","signatures":[{"sig":"MEUCIQDMSMqEJP2o6yuGBnWQBoMTX/sf9zIMTSpuIoXoeoYbDwIgJ3a3whuBzaCLa8bd/8hEwp9bm5T9clXEgQjTzQJRVTA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dc560834fafb60aab221ebf893dc0ffd72bc7fcc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5f024a3c9f08d8475ca951db4a18858b42f665bf","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160114":{"name":"typescript","version":"1.8.0-dev.20160114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160114","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1e14eddd0ffa60b720ee28a159871b906e0dfdaa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160114.tgz","integrity":"sha512-ZHSG2fAP8ACBbTWiVjEWRJhZdh1lALKWmAvmX/CdLdOy4KQTR0J0VvvtHecWQTe8eaJGDYDp6NojUVtGefqylQ==","signatures":[{"sig":"MEQCIBPZUvkUIW7uI+JOf7nCsgXKd6kv7H8V7NMFqZy7EkCMAiBxBgjd3IVeDsldyv58sb4qsLJ1qb/AerJMAOa0IBhuaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1e14eddd0ffa60b720ee28a159871b906e0dfdaa","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9df1ed4dd32408fcaa92d031d1f3ff6468506b95","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160115":{"name":"typescript","version":"1.8.0-dev.20160115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f0f08b6791e07e367cd4413eee1956ec9d88aeff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160115.tgz","integrity":"sha512-t0ZdvLibsC+W3sHPM97tD8ySs2myivgQQTCZWOoBpSCepfIdaOTzN2kjkwy6nVCrPOFCAry9waB9euMwH77CpQ==","signatures":[{"sig":"MEUCICdqPxRr1Y+aQHCu8pbzzs5oRIs5VuFGkSW1MvtbRwVlAiEAqyuHD37N8fSfhplU5znGNCOMUBHTEo4dkeWFaAT5JAc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f0f08b6791e07e367cd4413eee1956ec9d88aeff","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"efc573f263156e1cd5d62b64375f9c99ef294f97","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"1.8.0-dev.20160113","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160116":{"name":"typescript","version":"1.8.0-dev.20160116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6b16fed8b3a33ef62e08fb16d7859292811e0800","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160116.tgz","integrity":"sha512-1mVZO8Py3b5+HypQmbM9msQXol7UZDSKEfu5q0JcUwEeeGua8J3jCxJOm4Quo6rDIqIO2rKRWQWy5097nW8DTQ==","signatures":[{"sig":"MEUCIFdHfr71Mkhba39YmdDlSBzEFNwKGx5hwkJfSfutsnsfAiEA5a3opDh385oNBTtOV6C/M3hVtO8YlvjxOxgQvYcOA7Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6b16fed8b3a33ef62e08fb16d7859292811e0800","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c6b0cf1a03e8e23ccb0baad3889a126aa4d970f4","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"1.8.0-dev.20160113","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160117":{"name":"typescript","version":"1.8.0-dev.20160117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"01de25b99b7beacfb0fa9931fe179d34973c72e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160117.tgz","integrity":"sha512-Ztslh56cXOBIsFdi7mFDYtleZbqOISw1LGy4Z3rmnVHJIItI8JT5/Q2mwDqf7Lt8p8R4Of8WuJz8J5g/NSPltQ==","signatures":[{"sig":"MEQCIGeXveEQ7tCVI2rePnFYNelx7Q2uMnupsK+wuMEGALH+AiB1dDDJiMGrXR9fqpNk2+soSZmRvDvLSn2ftX/iXqWsnA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"01de25b99b7beacfb0fa9931fe179d34973c72e6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160118":{"name":"typescript","version":"1.8.0-dev.20160118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a9a39c3255eaa57782672e2b38edf4c4a64b0834","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160118.tgz","integrity":"sha512-PHJeO5/Qc32Ph6/sauTIF8K/jcGroGUXJEBVh3lMkGZaxJnx1Zfp515av6P/7VhRaXej1nEM+R2SSK8ruCc8lw==","signatures":[{"sig":"MEYCIQCON4S6O5AZ869M7nmzTghHUDD3Dc1sv78IWOqlyiWa4gIhAPYe+olXKgDxddqvuOHlXIfp8Tnb1QcZed4CIHwYyC7h","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a9a39c3255eaa57782672e2b38edf4c4a64b0834","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160119":{"name":"typescript","version":"1.8.0-dev.20160119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160119","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ff29599240182b35444166ded1a5b874c9b025f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160119.tgz","integrity":"sha512-KFreX5ykkBBmGwGdiISNT2LEEmwSYrvk8u0RTtFSm9D3DK4vR9jZOVLZmVpUNx0pQsJyWtyyYoH+Ia8EsIOWPQ==","signatures":[{"sig":"MEUCIFBpmDwbnTXWs990fe7ucdmfqocSZ5W/NZY0MsMX+6TkAiEAqSq+UhwxEvQ7D1S+0GpyPTRTxCobsSmUuwoA9dGGC4o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ff29599240182b35444166ded1a5b874c9b025f6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"31bbac3c11c82af6cb93fd26ccf1632da6a04353","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160120":{"name":"typescript","version":"1.8.0-dev.20160120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160120","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"55b9ed4b46a690ed56c362b49ddbc2f80db7f787","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160120.tgz","integrity":"sha512-NUM2wGef22Mo+V5nPqMpSwVPcAEr7u10EvvvYWWYoNeGk4qCvV6mmtpdJEMrG+pSTKpc5bN7LXkzlNmYnnOVoQ==","signatures":[{"sig":"MEUCIGjvBrT9CRqdDOeCX73QwmZ/Sopl7Zw6Ba46RA21RIVLAiEA4S4nrYmSVICzj4BybbGee3APEHSTzz1QN1yCXLVFQfU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"55b9ed4b46a690ed56c362b49ddbc2f80db7f787","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"56141c2f8439df1a17f45f8c59c1cccba8964951","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160121":{"name":"typescript","version":"1.8.0-dev.20160121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160121","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2752deae010d5952a9adcafe6c4a57e24dec9f05","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160121.tgz","integrity":"sha512-eAdjw38taEKMPeQCpsQvezMj6cu5pwmukV7/6m9buDFUhG+ExpzukdnxUdQPR8CQKD07I9/ScTtGFOOHhIF9FQ==","signatures":[{"sig":"MEQCIH+7D2Q43k3fw/8xRA64xJrJ4bMcFBMblh/Wc2ic3EyYAiBcx2/cFwLiDDE97L1JqNUQ7eNZuPjQbT161jkanp3CaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2752deae010d5952a9adcafe6c4a57e24dec9f05","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ebfdeaab0c0f7bcb850c8e5cc4899f9c5a938107","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160122":{"name":"typescript","version":"1.8.0-dev.20160122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"69885016bf5f4a9a2ce97028cfa1b2d4f159c509","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160122.tgz","integrity":"sha512-+JJ/gH20l9bmS0Dpt7FBdxkx9nIDneC/ncQV98mlPkp0t2dqZmvysBxd2PeIbGUZV+2uYtPebERLBHZvoHwofw==","signatures":[{"sig":"MEUCIQCH+wNRiM6cWcYkbvKymqbqg4NYEWURle7PtBO8uWCdFgIgEZnP9MHhHmHET31/MR5u2cujyILOkCAwgHn/+T6+3Cg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"69885016bf5f4a9a2ce97028cfa1b2d4f159c509","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"931d162620c7e09377c12875834e1838c4cdd51b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160123":{"name":"typescript","version":"1.8.0-dev.20160123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2e160737e41a1e04c3eb5bf8f6d911a5fa18f7d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160123.tgz","integrity":"sha512-fM2bPYYSBOZ2Sf3wA4CBIZx3f/BjCVLsF+NzkN7io+M/OT0nyP6OAADXaAEaEVTni2P98qvjUFMb2r2+q9YLtg==","signatures":[{"sig":"MEYCIQC0ytu0E7WaNknrw7fXArJV2nK9rqrOVnYpN0iNPLVrLgIhAKuRxdQpLj90Jj1d0Ih+1U7oLsNYYRcL5sGNTwBIKBna","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2e160737e41a1e04c3eb5bf8f6d911a5fa18f7d7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"87fdfc81942ce7499bde0c6832fd7d551bb81c98","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160124":{"name":"typescript","version":"1.8.0-dev.20160124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160124","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"78383316a62c5fdb12f765ecac60e21cd662bafb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160124.tgz","integrity":"sha512-afnUz950NLVhBjA1uPlc5UUt26fD478DDteob6BhIkN3Imw1sQyjEFJvZiy2Hrq1bmvBLlIZkMYcIXkiqQvgzA==","signatures":[{"sig":"MEUCIQDTZU1NyyqKoSaRE94In/zKjQTwi6gz9maS9GLc70yr8gIgRcZtBkCPMaToWPtRaQXODynU9Xf5cITyUqJRoglYNL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"78383316a62c5fdb12f765ecac60e21cd662bafb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"87fdfc81942ce7499bde0c6832fd7d551bb81c98","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0-dev.20160125":{"name":"typescript","version":"1.8.0-dev.20160125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0-dev.20160125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"62a8df4066e3a67f8b98ed28911d43fae6b01803","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0-dev.20160125.tgz","integrity":"sha512-+aT+EdA3y3ld7JL+6KVoiGl7BZLWomj1/9AyB8KGMEhJDxbDvuX1vCBXkfE+QykJFATtZbgzDNZgnlqftzkteA==","signatures":[{"sig":"MEUCIQDMuATA06Uf3I9nTZkXACtD9nIpZGyHuIMf6uLEO3rzRwIgNKNQZ3sWW1hPUUk+/0EXqrqszjVMsGTSFFrpgY3wVDQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"62a8df4066e3a67f8b98ed28911d43fae6b01803","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f947f6abb430987a22270561938e6cb1b471c654","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.9.0-dev.20160126":{"name":"typescript","version":"1.9.0-dev.20160126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160126","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8cca11ee0dfada2e7a01b72037807db532f6dd56","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160126.tgz","integrity":"sha512-P30BfmVwI/z0CKd4RRrSdJDY3kB3NJecvRqUuxIbWqazJpkkRKkrBZsQNYv7lRLyqFXf191M1z+aNxi6b+Oztw==","signatures":[{"sig":"MEUCIQCX1T/AwSSfw9bYWblodAfHRBYjDls80v+TQIpy6T3+BwIgDQyy8sB8Nv+GOVYjAlLTaKauKnkGEm3gK8HRoIvl9y4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8cca11ee0dfada2e7a01b72037807db532f6dd56","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f70e255fa0bc29d77c535ccf7eaaae9ad91dadca","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.9.0-dev.20160127":{"name":"typescript","version":"1.9.0-dev.20160127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ddb403dee5578a7b24b052ea7904bb4f03be0ff2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160127.tgz","integrity":"sha512-k4CDld0yjApujgqSCBaufRxyMGPfZ4maHrxrbKP96DqsCZjc9MwL4Fz3EaJAY+MJ0adC+8B+WLhXsVCgrKs04g==","signatures":[{"sig":"MEUCIQDaIpQe1BqmMJmX6qDQwxLEPoogTuAFxq8QZ0KQxVAd0AIgbZGGcznpoObxmjegUNEiaDnea4Ky4GiEeN7ans/lZhE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ddb403dee5578a7b24b052ea7904bb4f03be0ff2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"265069e296a865e472b70f326840ca7b46f4ec39","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.9.0-dev.20160128":{"name":"typescript","version":"1.9.0-dev.20160128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"481cd7ac32aafe8bab9c4ec4c9d9d5d9c57cce53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160128.tgz","integrity":"sha512-65qhexSBYzx8bDytPsZOHGPNnWgEITum8u/ixLmxm7QOUhHk+Yaof2SL58qbfQqNescjxnhaUOt/2jBTImc/Qw==","signatures":[{"sig":"MEUCIBoeYyZtyynnEZS/AIvzsiy6VegH6yx7rrazBW0+GDOPAiEAzJI8SiDwSPrk0T/B0hXAGo033OqDwC1evf4+pbR5b1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"481cd7ac32aafe8bab9c4ec4c9d9d5d9c57cce53","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0981719bedcfca41c8b85e4aa80d44cb2175836a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.8.0":{"name":"typescript","version":"1.8.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cc5bc63d7f7d84ea26debd7adb774c0362b0ec11","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.0.tgz","integrity":"sha512-HwH1YDy07AF1+TNJN3+tZ9BxEahSWUBqlydC9Q0rEkNMTx11TDuYqAuXdNCxXOg8jlGW5LWKslD4xkOgAS2TFg==","signatures":[{"sig":"MEUCIQDZMNtBoIamQq1nMOJyk5sCmiNOOb3fQgTGBLwMZmoqxAIgYTKaptXTuGnCtUpj952SCqcJcl7i8P61g8tjxNuTXDc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cc5bc63d7f7d84ea26debd7adb774c0362b0ec11","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a288b84632c1400806df55025ca6b568cfa4d00e","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.9.0-dev.20160129":{"name":"typescript","version":"1.9.0-dev.20160129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160129","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d6c9f0ba7c29726ed8627e3a6e8e5e32786d8529","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160129.tgz","integrity":"sha512-wnk8BEx41pysc90gJTYksIqY8qv4anVSMcPrgZJn0fw94lqsLDA02fFCblrCXIP1hx5Ei0LEjogccuwKa+AZ4g==","signatures":[{"sig":"MEUCIAwCA8oh+iL0rufLgQGVSubz/mW/vf4+kLqgNWRSjWR5AiEAq7jUBQHjh1DCkd5UDQq1yiTkeLDKYxwZEwhPYGqui2Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d6c9f0ba7c29726ed8627e3a6e8e5e32786d8529","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e954929d4b00b86b93e7f83ab461223cd4747277","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.9.0-dev.20160130":{"name":"typescript","version":"1.9.0-dev.20160130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"954603b0f66156395b096aaf159cd336a104ff89","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160130.tgz","integrity":"sha512-YCptBKz1KKo91IKgeFn+hHZNR2xnQHWls43q1XgWiiabhM80AvcKyEh1h9pD+Vju2xcHg5wfDk98x1HYMw9r+Q==","signatures":[{"sig":"MEQCIEGI1V8Gh7Xnidh/EL+CSen7Rjx9aE1xRQlTDjxZDZq+AiA8FzerqUYfgJEyX2+t0EYUcEwGzHbyN2XYqIwVlClGGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"954603b0f66156395b096aaf159cd336a104ff89","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ebb1828763eb6cdf37a39b62654108b14621d9fd","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.9.0-dev.20160131":{"name":"typescript","version":"1.9.0-dev.20160131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160131","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5c789808a2b2ec65485104ea779690c87f11a21b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160131.tgz","integrity":"sha512-Hni0Y3XQLzJtVbGeY6ld7w3ZB7clo+pDuvHscduKdo3vw8K5/lBz78y0pMOQXfeOd4/2qkpEkQBUlSUM+WFN2g==","signatures":[{"sig":"MEUCIHOp8iCJj8xQljcJioo2gc2TRvrcYhZaKnCvGdpF5KCwAiEAmcz30w1wDK9eG4egIv/Ixbn0UwiieeFEJnG6J9wiL58=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5c789808a2b2ec65485104ea779690c87f11a21b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"39216e8811c2a11d8536b8d7e72dc12383c36c8e","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.9.0-dev.20160201":{"name":"typescript","version":"1.9.0-dev.20160201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7af05425031d9e93cdc4c3ef3b2145bf6321f1fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160201.tgz","integrity":"sha512-8Ykunl/xqDCc39dRFWQt2ZI816C6FJxz/hIl4JCBhgbMHqV8QoY8jZDR5QOQxPjWWKQQ5ccG1RgruEGd6anXQA==","signatures":[{"sig":"MEUCID4q1C/LKh6FBYzS2sdHInm1zFRRRgaSYBWP4CLf5NNyAiEA/v9BbUPwaGB7OgGqDA+OMdW7GqZrfsll+qM6LeXe7pw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7af05425031d9e93cdc4c3ef3b2145bf6321f1fe","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"39216e8811c2a11d8536b8d7e72dc12383c36c8e","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"}},"1.9.0-dev.20160202":{"name":"typescript","version":"1.9.0-dev.20160202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160202","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"02c2869eea489e8051f3b9b15483ae7c037a19e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160202.tgz","integrity":"sha512-fgBAj/LBtsFGeC8GySQioHAVMm/57MIjlAlcd8Qww0gOqFReJ5YoNmcNUdHXJptxGdoj6dV1VlHNx3jijGn2Jw==","signatures":[{"sig":"MEYCIQCGVWOzvY6yfKUsl0IM/mTN54wvz7AG1qGQsG7FvgUAcgIhALYOhgWn8KvuWgSYm5aJkZU8GJLIxTaSlPhM+8Wo1f+j","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"02c2869eea489e8051f3b9b15483ae7c037a19e6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"085593375723006b81d6c0278df98206c389c82b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160202.tgz_1454396874854_0.9711095087695867","host":"packages-8-eu.internal.npmjs.com"}},"1.9.0-dev.20160203":{"name":"typescript","version":"1.9.0-dev.20160203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160203","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"69756d9a617ca5d6205d5cb6af558b7991ad6781","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160203.tgz","integrity":"sha512-/MgVX69NFOSrbCqK/1+LC+RjB1Ix+aEaSOolo/sxKWK90xKuRR8eTBss+0URVwpvoCM09nwOnaYH0S/vluyUkg==","signatures":[{"sig":"MEQCIB7z2HiLnQyr8NpEGiQKp7YFBr19fAQu5xsFhTl48KX7AiAPYcAiGDe8Bb+KmfNVx0mt9H7kdojVAvOrfdHfssze6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"69756d9a617ca5d6205d5cb6af558b7991ad6781","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"33ef35889397f5e100b556935f906b355402b4f5","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160203.tgz_1454483276246_0.5838871169835329","host":"packages-6-west.internal.npmjs.com"}},"1.9.0-dev.20160204":{"name":"typescript","version":"1.9.0-dev.20160204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160204","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8ca2777f1102cf7a45b14e6020f846eef2a17303","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160204.tgz","integrity":"sha512-8jeJ2w3byhZ5SmiQpJCZWWGsINpN5+S7Xfqv7NRO2EZL3NjAsyZu68nRPcDA1JQ558XayNsIiPPbkknTjKsh+Q==","signatures":[{"sig":"MEUCIEtGbZx3jWoUq3AEt801PfVcuEDZAenxmDLr0hwZnehvAiEAmyA4fxen9uvmJRYPrl7eymIjhEogotsFVT0Wi/IYf6g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8ca2777f1102cf7a45b14e6020f846eef2a17303","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2fde7ab8fe6f45b8875691a1487527c7a598a87a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160204.tgz_1454569696822_0.8117012321017683","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160205":{"name":"typescript","version":"1.9.0-dev.20160205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160205","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4430520ea59f9ee8797819ea40b837987f87cacf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160205.tgz","integrity":"sha512-DiHR95PbZx/nVAWkyokpwYbbqYk4Q1IBQ8hhi7XLr0T1OKGuO/6S7NBpeRaMTmf1ZekDifh90FrpS9kHVpPSOQ==","signatures":[{"sig":"MEQCIDo4BHAX0XfYjkI1KhFt4sw8c2Yf32ILvI3Icwn9amWtAiAVam+nPQtt1XC2ZgIy9MtAtDsoYkPmZvx21iqOWhBe1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4430520ea59f9ee8797819ea40b837987f87cacf","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a324176102b4657b4de6759b5d03f5eeda38f422","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160205.tgz_1454656070166_0.019713323563337326","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160206":{"name":"typescript","version":"1.9.0-dev.20160206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8dc290f53473fa1acf771b2473342e1a99d91bd6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160206.tgz","integrity":"sha512-TYYbB5T5PyoThPRA03MRNV4mdDB6HrIT2XjfzfVfGP8Hf8g/2IqbbHQSRIWql8wp7Q8BrXtQpW1BnOCPgRcDSw==","signatures":[{"sig":"MEUCIQC1hnxbvqPQQy40Lg0C90E70A9yqg5VFOBag5R6GLNmFQIgO1HNd+Kf8gVNRNtSgQfmCRew4PFBcqiniEjwmrW0lyA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8dc290f53473fa1acf771b2473342e1a99d91bd6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d27d10ce2ff013d66ff73890726b06587bda18fa","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160206.tgz_1454742474366_0.9617997200693935","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160207":{"name":"typescript","version":"1.9.0-dev.20160207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5cea8edbcda05464ff869b484e4291e740bf0184","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160207.tgz","integrity":"sha512-905O4OL/8rEHAafuv3Y5CWEp4KPF8yjvlw9WHmqb3hDEyakHDOtt54y5hYT8O4MLI33iSD91TmCR585Orac2tw==","signatures":[{"sig":"MEQCIF1HMIlgzOka/Mw2mK8siHRE3aM+0e/UPegfGvgasqQ8AiBEdglznmOM66nN11RIc+JXie+hV0u1pYKwDZPfgnj5hA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5cea8edbcda05464ff869b484e4291e740bf0184","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d27d10ce2ff013d66ff73890726b06587bda18fa","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160207.tgz_1454828898519_0.22232033452019095","host":"packages-6-west.internal.npmjs.com"}},"1.9.0-dev.20160208":{"name":"typescript","version":"1.9.0-dev.20160208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160208","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ad7256de7632000e647ce49c7de50378a9e7ceda","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160208.tgz","integrity":"sha512-yRc65OybArWyxWIEXCPTF41EnI0lN8TSN/YjyMCec0oVejYQrMoFkkzKjzj/capOsqV9a8gIn5DU949dWUnTVQ==","signatures":[{"sig":"MEUCIH7felJPq74+rrFuwuUazLygVzPSnq1+zLSDLU3NMzMIAiEA94qFqV3Jw9zZ0vA53VGlCGHA9171CRW24kFVDt7XYYg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ad7256de7632000e647ce49c7de50378a9e7ceda","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"83c8c7db50c37394e24e2bef4332b78d5c0a2c6c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160208.tgz_1454915281655_0.269433454843238","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160209":{"name":"typescript","version":"1.9.0-dev.20160209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160209","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"47a5f9d54f3a5dde770851b53465a6d9e61336d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160209.tgz","integrity":"sha512-oIjhlhHej7qfi1RQO+0fNPjQV7QhtaU9UTYAgfyK1/9gqBp/r1N6vyu7oZ2c/quTqLm22EKIp/bxDp3SsPsVeQ==","signatures":[{"sig":"MEQCIDMcntDfwBRGia//G/nn1Dt9nxKvUoRv73v/Qa0nTbWBAiAGhysmQaTB2hfZTkjwFPGKQTYkp85z6ZuG86UJycb5vg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"47a5f9d54f3a5dde770851b53465a6d9e61336d8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4bf104349d621d85a78dd7a45dbdb6b519d53998","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160209.tgz_1455001669260_0.7950323321856558","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160210":{"name":"typescript","version":"1.9.0-dev.20160210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160210","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e5c36f17c4b85e16b176f54b646ce055ee5565c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160210.tgz","integrity":"sha512-V6aIAFZ7JbvnDAkaa69Tv7+wwzWM2tl3TTh0JEteIfEMO+AOvCqsW5l/Et7nmuxHBos9dHIDIR67IV7HZO4uqA==","signatures":[{"sig":"MEQCIHOA2sKd2MQxzB0jikkEwSlz7Z/s13DfGrz3Q1kiTWNgAiAX0jpV+53EN6t62dyGqzVWLqabG2xD9QbjrMWcgHu86A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e5c36f17c4b85e16b176f54b646ce055ee5565c2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dc0ff24dede91a29b8de39b4d0fe94ce2af26cba","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160210.tgz_1455088108575_0.23514309711754322","host":"packages-6-west.internal.npmjs.com"}},"1.9.0-dev.20160211":{"name":"typescript","version":"1.9.0-dev.20160211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160211","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aad950968463763470e71a8ba917e1945535a5cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160211.tgz","integrity":"sha512-wVi0HF+rHS36zoz4yLdT3dDDZXFWKJWXIzedLqS3MSh3FDH2m/MPUlq2A5KUYDgtk8Xe9MabTA/fHuv2TYbLXA==","signatures":[{"sig":"MEYCIQDAVPJtsJCwTFIewn1CNowMbBwDqQF67i0jEFoa/ulQmgIhANDwYWhpE1rDYCJLFwzJhd/5v+FclWGLH20Y+Dm2A66d","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aad950968463763470e71a8ba917e1945535a5cb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"faeae5e099bd73175d0e43850918172c4b6beeb6","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160211.tgz_1455174480938_0.11620918731205165","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160212":{"name":"typescript","version":"1.9.0-dev.20160212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160212","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"17f75b4831493798328585de69176e86d4fbf425","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160212.tgz","integrity":"sha512-h11gyeB1fBHby2hGpSRtvQZvdIai8YTkfBCv/s/kLQflNcQ6g+CDWmQY9z9OUDMz0h6dI+6HVZQ1U8z0fhOtwg==","signatures":[{"sig":"MEUCIQCELhgQGGx+vhvpNM6+etnOHMyWA3uGnDwjR6AKtk9FIQIgTg4TejvE1UWLLbnkzat6d+0nNyL6Ph+ykFxcVVXuzZU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"17f75b4831493798328585de69176e86d4fbf425","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"bf234887b0455deb142dce6854e77f4901533288","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160212.tgz_1455260887734_0.40710390196181834","host":"packages-6-west.internal.npmjs.com"}},"1.9.0-dev.20160213":{"name":"typescript","version":"1.9.0-dev.20160213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"223bf46fbfdb7113d32bef4f23db1ff03f9c94d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160213.tgz","integrity":"sha512-rjWmEEvFYJIxMPcx/PRCImTsyqZcAQYtPPaLEmej68pjkCrvWJlcTo+NqWVJicK/m4566MbU2CQOeTX9UNnJQg==","signatures":[{"sig":"MEUCIQCn7i3Yh0Uz6XARsmJllu/Hfeaf37bcmDiA7ug5JATgdAIgI7wnLzqqhZT4NtDQSMrqxOrHL82P0u33F8M/GW7CEG8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"223bf46fbfdb7113d32bef4f23db1ff03f9c94d3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c7fcd0204caf863f796fdb31b12f6c36debe431f","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160213.tgz_1455347281222_0.5364826386794448","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160214":{"name":"typescript","version":"1.9.0-dev.20160214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e287ddc553655e8bea03d93d0de44049c1289513","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160214.tgz","integrity":"sha512-IKSDCK933cXOLQ7nK3jWEVxYfRBDnHcYg/ywVhCRN2dO0yk5MvkMa2fkJq/doe//niAHNxSLmXtMz6dT1HwwPg==","signatures":[{"sig":"MEYCIQD3eTMLW+SQp6chtLk1zNKXbbvrnVV0y8wgx4SHFfOmIQIhAMjpAGSwsGy/snYx+xeEZpclcSdXecGu7+8YhwAfsnFy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e287ddc553655e8bea03d93d0de44049c1289513","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160214.tgz_1455433579553_0.06829693727195263","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160215":{"name":"typescript","version":"1.9.0-dev.20160215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160215","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8eb7b72ff0f52defd779d513592d1378c70afa6b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160215.tgz","integrity":"sha512-n6Ekhq14RKNTRNCZuNc6aodVrTOfkdPLakCijb2h1RmJwprOmBet4PFJApEc55mgiFD+nSTv797lFYJJbrNM8w==","signatures":[{"sig":"MEQCIDSXhL30ejNEDB+GH+VhDmBqSk4MNkB0Eg+vVSOHnhPxAiB5O0KpsKi60xagzcWXKtTQP/pOwyxUifXCSJe4O5b/FQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8eb7b72ff0f52defd779d513592d1378c70afa6b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160215.tgz_1455519957563_0.9513211254961789","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160216":{"name":"typescript","version":"1.9.0-dev.20160216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"af635ab38efc724a3eb32b4afe6425916c691c5c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160216.tgz","integrity":"sha512-qNEs92L5qrqCWd2XqYula+y/c0Rn3MgYXsxBMe43NJZjx92MQtRnCxOnyJ5ET3XAmJJrnOGdDn/fy967kuwWfg==","signatures":[{"sig":"MEUCIQC5j2kh8J0LQfaC+NLGd28kg77qxwd65MQDCswStwm5XAIgT52WkdKD8kO6lIJKvZpZ/TKMwbXDrZ3dO3cN9JT+0TY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"af635ab38efc724a3eb32b4afe6425916c691c5c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"af9dc417478672e05925b2af8b5b5924471bb0f9","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160216.tgz_1455606361415_0.5276871973183006","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160217":{"name":"typescript","version":"1.9.0-dev.20160217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160217","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"513374d962e9720b0e840d3f5b4018a6d99a27a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160217.tgz","integrity":"sha512-RrnR8adsA3x2p68/BCq2XldqdbJfe1YL86wlzXuxRDfLVf44AcxDSQWi5DTC91vmKRekKxNW7kqKelUvmPwteA==","signatures":[{"sig":"MEUCIGkES96rpitHafaZfbUl0rGzIVwQvhuJxpm/W2d8rZiYAiEA9QJ/yMIK7Agywx8TO0n5qrvJ0UGsv0y/npX9ANjntBA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"513374d962e9720b0e840d3f5b4018a6d99a27a2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"bde20c4ec7aa93e832a4abafab8815643effd660","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160217.tgz_1455693060726_0.09490322903729975","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160218":{"name":"typescript","version":"1.9.0-dev.20160218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160218","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c5f37a9928a7069a3d46882d8126cdd5fa0f7f7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160218.tgz","integrity":"sha512-R2QVomUvScSaYmVK0QzaSZRRKC34nJYBvqKZWqCbp67Adn6AbfwrMI8eNINPGCPgAJik7+XNHmOjZ/5kGp/Aow==","signatures":[{"sig":"MEUCIQDRq5KMrTG+RB2yGxWZzYYQZCgvyObI0lV/RBi+hdAG4wIgU8bgf8pXLkLJvFtesGc+OIaXilRe0U9l51odbpg0ORI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c5f37a9928a7069a3d46882d8126cdd5fa0f7f7c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"8a050ea18d51ee631e2ba4bdd13103c83ae0153a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160218.tgz_1455779314841_0.9889128576032817","host":"packages-6-west.internal.npmjs.com"}},"1.9.0-dev.20160219":{"name":"typescript","version":"1.9.0-dev.20160219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160219","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ae271b3610b5267a9ca4c48dcbddedcde54dcbc7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160219.tgz","integrity":"sha512-RCcy4Dbvzh4qgMtoWWeFHoY6yitKEzz2SAoesecNFjO5cFYAotgIDWt7lq7YVgBwZOXwXG5+VbFOsasNhUAm1Q==","signatures":[{"sig":"MEYCIQD8dH8DgxWgq4uvxNxZ4WaGLoMS97QKeFS0N85uH3AwSQIhAI2SSWUIq30yh5iIylqShZ4nfDTbkkOM7b9xETA5LdDL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ae271b3610b5267a9ca4c48dcbddedcde54dcbc7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3663d400270ccae8b69cbeeded8ffdc8fa12d7ad","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160219.tgz_1455865550471_0.8507915115915239","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160220":{"name":"typescript","version":"1.9.0-dev.20160220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ee15956a40b4b38048f88d9755ac2aab863835d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160220.tgz","integrity":"sha512-hLipSNUp5RGOm57IAvGHLtX64mKNSY+xvaaal6KEccWr86TjGKuQFlLeSbHXFDHXYe6Qr/7HE9ajltequXuDyw==","signatures":[{"sig":"MEYCIQCOMuB1+WXxwHIiYxDEj+52+bOgG5cfoUKCyt+qdmPNOgIhAOI+nXKQHkDfnAmOpHpQybkmr0xWgVC1QRF6DCpUNDku","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ee15956a40b4b38048f88d9755ac2aab863835d9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"11ec01b4760ab6be402cb9ae1fb6f6ff13b2880f","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160220.tgz_1455951966168_0.9614685259293765","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160221":{"name":"typescript","version":"1.9.0-dev.20160221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2cfeb7b817062484294448c0cb9f9e116d34cbb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160221.tgz","integrity":"sha512-SEtgIdEammYyoiCOeDujIzky2t2L25KbignYpa1/0xQ59V6/3q6dVH5gCQYR7nyTdswIokRfnnp6KkMzfs38zg==","signatures":[{"sig":"MEQCICbUZm7VScm8eCMwSwB9xGOGej7o1RfvBwDLhaULiXOoAiAW0zDI59DwS7/im/cjYo4d9JT6tmI6hpJUqPughLYkkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2cfeb7b817062484294448c0cb9f9e116d34cbb6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0436ba0cfbbc7ab431db53bd622b6f1988f72038","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160221.tgz_1456038359902_0.7702808754984289","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160222":{"name":"typescript","version":"1.9.0-dev.20160222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160222","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7cb083649b2d2a114a924c55a38ed13b853ed06c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160222.tgz","integrity":"sha512-XvRQADBJSLbG3jQmZp9GW7X+0MG8LRnRA+/viYGjTVgjXuqO4dA2v4pOdgAwgPTp1yaa0dJN1TOAmTrr7R9b9A==","signatures":[{"sig":"MEYCIQCqDjkeg8m2ZKXQKjmGqEYg/Y3/TDVS8PPaFKKJN8p1zQIhANL7AFLKcHGwyyqAv9SJArREBecFEVREunajiKKoSe+Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7cb083649b2d2a114a924c55a38ed13b853ed06c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0436ba0cfbbc7ab431db53bd622b6f1988f72038","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160222.tgz_1456124768245_0.6694028319325298","host":"packages-6-west.internal.npmjs.com"}},"1.8.2":{"name":"typescript","version":"1.8.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4d2ad7db172be67a913d09862b510133bad61b33","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.2.tgz","integrity":"sha512-Wxg4z87M0Sw0hZLS786UgXVwj2V8xiQWXdmweFPgPXzSREgDKSZ60rJ+JFOy+rqbe7i7hAReZkY940/N1r/bjQ==","signatures":[{"sig":"MEYCIQCED2tG+fteI9JOgjh90slB6oqpyXC69dsRhBrc1JFWUQIhALpsBSL09+cbIjA4XCJOR9m9k4wGSHwEYJAXJLAydqgR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4d2ad7db172be67a913d09862b510133bad61b33","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e5dd34f9e69f517182abfc996a10b8312b14e015","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.8.2.tgz_1456180363305_0.6699868906289339","host":"packages-6-west.internal.npmjs.com"}},"1.9.0-dev.20160223":{"name":"typescript","version":"1.9.0-dev.20160223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160223","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"297112467fb2a19be8b318e831d7eee6d5bc934d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160223.tgz","integrity":"sha512-CCV1jApQPJJHRPEpOXh/3o53iJ5SV8tn6KMhjte/llnOEsRiG0+Z/mF5D2RtZJZv1TVhIdPbmfEqvo6QNvezWw==","signatures":[{"sig":"MEUCIQDVwjhLXeymWY/UFdjpbXJ8ifB1d3RAx9H8XaUHEqpyTgIgduYTX6ypyG5/amiejKbXMEwVkxBV+RutpTcMejCB0D0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"297112467fb2a19be8b318e831d7eee6d5bc934d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160223.tgz_1456211306416_0.7794809127226472","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160224":{"name":"typescript","version":"1.9.0-dev.20160224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160224","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"315e3c25c7913b6740106c1f76201b4d3dd06f56","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160224.tgz","integrity":"sha512-vS3e418xZfkPJxta6407XPxARbeED+MZF4h+jKQdYT40iFrLVlZ3RH6M2g012wtBuXXO41jGY6o0nVhIqFeC0g==","signatures":[{"sig":"MEYCIQD87V0JIZHfT0m9cnANJbHnnxOUdLBRFU33lkDQmFapqAIhAOAELuXeOIwU40BayrRoqWHZQ43G2aPdhyN5qLxJ+nuw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"315e3c25c7913b6740106c1f76201b4d3dd06f56","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160224.tgz_1456297561918_0.6679575839079916","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160225":{"name":"typescript","version":"1.9.0-dev.20160225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160225","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"924724117a1604dcad2899cff3c7018783c1d044","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160225.tgz","integrity":"sha512-owpWskZrHR75h3irCUXo4jbJhHmw6uaBPqWLlf/xsGubecT0kFdgLNVsanGeLhOFj7irLo5VCwB/MReZdglshQ==","signatures":[{"sig":"MEUCIEiTojmXdjg0HuHCOt8dXhoJ3oPm/vKDTa2FfF03nsfKAiEAh1DRBdITAi52Pyte1AHoO1advibJwXiOhxD167c87ic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"924724117a1604dcad2899cff3c7018783c1d044","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160225.tgz_1456383958987_0.5908095738850534","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160226":{"name":"typescript","version":"1.9.0-dev.20160226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160226","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"26eb40a2a6b1c57fc359dc059624da7432d3992e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160226.tgz","integrity":"sha512-4zu2NFyszi+LyiZVzzFIg5gsJlaHY5Fu1ONmkm7oduqnq2RLFTaAlVqHbTWkapuGRtm3iX1t+B3kxhcLMHA3iw==","signatures":[{"sig":"MEUCIQChZGlGpjsv/KbKrd8gYYqdqorGCC+lBNn40HkKSPclGwIgK7cOfit7A9NIt35ICjiIiXrcFdeEn6sTzJ/E1xtUjow=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"26eb40a2a6b1c57fc359dc059624da7432d3992e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160226.tgz_1456470359572_0.9021623290609568","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160227":{"name":"typescript","version":"1.9.0-dev.20160227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160227","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"98a5b72ddc29cd86614b0e59b422cf4e2dd2bd95","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160227.tgz","integrity":"sha512-b6iC7Bje64I1wImSes7Igce67yL5KFS6OVCB/5SN5IOdsPFYIE+6ANtMxIkzTXz3UzHQt9hSJ2qD4EAyEOo67g==","signatures":[{"sig":"MEQCIAn4ejGKFVyPImCV5ONae0Bq+JMXNT1CH0PKapDhBM3pAiBt4pgCI4NRFOZRuJJMwbdRlHrWmuFAkEQc+Zghd6Vztw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"98a5b72ddc29cd86614b0e59b422cf4e2dd2bd95","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160227.tgz_1456556762515_0.19802480773068964","host":"packages-9-west.internal.npmjs.com"}},"1.9.0-dev.20160228":{"name":"typescript","version":"1.9.0-dev.20160228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160228","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"af70162002b8bea0602e49152f4ee1e36e00ced1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160228.tgz","integrity":"sha512-e8eMJTENLD1YfBufyFwxYNT/fftCBrBSlk5ObQ1GyWqlX9jTVO+Az3O7DCnXk9iJ68zWwA5ZzQUZghJai1sh6g==","signatures":[{"sig":"MEUCIQCcxPRBLJXSTPhOmtzeemhZSLjALlPqYSt13Es5hKa5EgIgZvUL+RpmoB0/BTsfLruwsSuFPWcJgsLwuqMA5vDt+pI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"af70162002b8bea0602e49152f4ee1e36e00ced1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160228.tgz_1456643161066_0.06011231360025704","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160229":{"name":"typescript","version":"1.9.0-dev.20160229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160229","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b8834b1b528a84a79ff91c661edbcb2228567a37","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160229.tgz","integrity":"sha512-cVvTTlb44ewsbh2EUeWG5gn+W7QlT7lHFIM1O5w4R/AuYNhBSVeRuVEO5YYex9glBNKL70VLei0kDor6VLII6w==","signatures":[{"sig":"MEQCIGrjwybRdQOIahjEW/jey3HdsjaBlYrl+TSeqPV3S+LkAiAiPLgE/r+M0KeuzEpKlX/Ed3PTQXtxUoL+Fq7S8XmUaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b8834b1b528a84a79ff91c661edbcb2228567a37","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160229.tgz_1456729568054_0.8636588684748858","host":"packages-5-east.internal.npmjs.com"}},"1.9.0-dev.20160301":{"name":"typescript","version":"1.9.0-dev.20160301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160301","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b80a86e10048ce442a86ce4bb1229e7388352619","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160301.tgz","integrity":"sha512-1TmSO8ihFhjtcRf/0tu7mcKHVzkzqFrfFDSAM2CwTTerlUAumGwMfYWIUPcku+WRrczIdqboXQzPtdwvEyUxag==","signatures":[{"sig":"MEUCID3qOg+lKm8MyUiWoitOXCKi+z+k5bbzlPj+zLHO0D5eAiEAlypXOSDKAfZF65BC34t7qkWlvS8cNq2gc1EcGh1DS8Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b80a86e10048ce442a86ce4bb1229e7388352619","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160301.tgz_1456815970858_0.07489930256269872","host":"packages-5-east.internal.npmjs.com"}},"1.8.5":{"name":"typescript","version":"1.8.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.5","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3a985c107e329573c74ef068aa04470501cd07a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.5.tgz","integrity":"sha512-hzQmMgPhYbtwP61juMNJepg8Ej3N0ef++c91CDbh0HLqclcR00G41pxIDc56GgNxxCJiBJ+VTgmcr6sDPNnXuQ==","signatures":[{"sig":"MEUCIQDtz9XRWwDU7qAIUstPNL+w3Li9/L/aIp4W/Vvd22EPmgIgKLvwJtAoLFTDwWG1zkyjDrpomzXeFtoBoBLtHOV03b8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3a985c107e329573c74ef068aa04470501cd07a3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dc4cd52a9a09bd4eee1fbebde98b41f2c503b335","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.8.5.tgz_1456873558742_0.867746451869607","host":"packages-13-west.internal.npmjs.com"}},"1.8.6":{"name":"typescript","version":"1.8.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.6","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e68ff57682180a263ab3a41009fd792fd4ae5ba5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.6.tgz","integrity":"sha512-YFAalD4B6wG4+Ed5KfXRLFJ/fg9dYpW1M/BExFzzGwWZjaHvsdkNGrCPSBQKfnLPlag7cxAklO9v0aBqYsdoJw==","signatures":[{"sig":"MEUCIQDVt+Lw4x8dofw03PEuSJgwxgnQJfOnpWeqWIecWPSFtQIgW+9Cyj/VYPNUFf4jIUGquxE3tO6lPB/m24UoQ82gXUM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e68ff57682180a263ab3a41009fd792fd4ae5ba5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dc4cd52a9a09bd4eee1fbebde98b41f2c503b335","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.8.6.tgz_1456881187432_0.06032153149135411","host":"packages-11-east.internal.npmjs.com"}},"1.8.7":{"name":"typescript","version":"1.8.7","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.7","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"35e3838de31c91cfe1d8c20e0e5785d386938a49","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.7.tgz","integrity":"sha512-cyQ88faHXPgtrVpfwfKWY8g7XwWyQBwsKhX4Imn3mYSWceG+auqTU5XEm6/HeUZK/+UXGw6fpkJbVKIPm9hyQw==","signatures":[{"sig":"MEQCIGdphDAL7GdKFdXim3hLGaEDdfcHdod5gWoX6ESXUubTAiBSFJGjtECDMNZU3itFzfq8amUC+bf9+cxYTc+tzv5D9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"35e3838de31c91cfe1d8c20e0e5785d386938a49","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c9cf5f9cc2a781c9bdb00206d9a1038b53be6bda","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.8.7.tgz_1456882108211_0.4195348753128201","host":"packages-11-east.internal.npmjs.com"}},"1.9.0-dev.20160302":{"name":"typescript","version":"1.9.0-dev.20160302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160302","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a0dc43ef30c4be8560e9635ff0ad392aca179b0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160302.tgz","integrity":"sha512-1nMfqsXXNdDmEXiYQ9gi6SuzLPIfzv+ZTMIFH87TCeG9rSPHDbwy7TowM+uHIhARYusV0Sj3yPv6S8uXU7NZsg==","signatures":[{"sig":"MEQCIFP6gMXrWBzmKuox4pXNSI7uKfpBINWObCY10wcoliSmAiBEyncmiiXy8JfYdzedBG34Nh9VkQeH4GhxiaPWZMl5lQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a0dc43ef30c4be8560e9635ff0ad392aca179b0c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e2c95551b348b10bed7d42fdaff857143e631a0d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160302.tgz_1456902377274_0.24457713356241584","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160302.1":{"name":"typescript","version":"1.9.0-dev.20160302.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160302.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f29aec19d2dec5ff52d387454762b7eafac50da1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160302.1.tgz","integrity":"sha512-8oAJFcwCcOCdi8j216/6uHIFmjS8V6lP7dano6bp98OpK39MUoiMD+8DglhIyi9eQFpN4hf6hLkIDz4D48Bxrw==","signatures":[{"sig":"MEQCIByWPDLwVp8bqYZ0FTW05KLy0SbUgPLqBjiM0m9DMJquAiBLhtHkATCUsjPB23yhKDh5plXg2B2/cnHT92o4AiXxaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f29aec19d2dec5ff52d387454762b7eafac50da1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"de47fcc113806e09df7c521edf500c6ab786459c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160302.1.tgz_1456954470253_0.6838582698255777","host":"packages-13-west.internal.npmjs.com"}},"1.9.0-dev.20160303":{"name":"typescript","version":"1.9.0-dev.20160303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160303","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"776b4b2327777d518bd3915c10f0945c838c84c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160303.tgz","integrity":"sha512-w5ZK++XFO83eGWqB+Nz7EBBCNtTui4IFXJpgteY8V7Lo0Wi6U4/hEQfF9OamwmKPoky+KSeOFPvvbGgoE1b6hg==","signatures":[{"sig":"MEYCIQDXWWP7/RbaqpPxSwlh0qh+U6EFEMVJ95kW9zAovSyO8gIhAMS0Ob2YfQH7VukTco9A1OGf1scRLlix0+4TjNdpT4G2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"776b4b2327777d518bd3915c10f0945c838c84c1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0f6dbd02506eb61f18e7317693b1598bcf294a24","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160303.tgz_1456988771804_0.688777522649616","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160304":{"name":"typescript","version":"1.9.0-dev.20160304","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160304","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8502bf04a90e1de5f4a7b3f5dcf154abcb938e2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160304.tgz","integrity":"sha512-Hqdtv6yjJFE5wzRPXwhpv9bKfb9CzGJdNi3/C9VOsHHgmvsb47VYvHVz9uKc116CKG4l+P5RyH61NeKCLyOB3g==","signatures":[{"sig":"MEYCIQCVRT+5cA9m4Ay6eL8OII0/y/uGNs9ptX4yT1G1ACzu+QIhAJFZOrLkSCP2YQHxHUdrdgmhIGPJ2gsiuPl3L/yDfgrH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8502bf04a90e1de5f4a7b3f5dcf154abcb938e2e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"311f8dd7d31c56ba962c73429d3007e03c2c113d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160304.tgz_1457075164560_0.5056934119202197","host":"packages-13-west.internal.npmjs.com"}},"1.9.0-dev.20160305":{"name":"typescript","version":"1.9.0-dev.20160305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160305","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3dfb4ade56cfb32645b42158b9d2372a13318136","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160305.tgz","integrity":"sha512-W/7tIVEJU27aX5CKU+WMsVeM5QNfsrqlqRqt1lGDvSPWZIePaEX/vXJVWpd5+N2BNjeXGMQwuHa2Q5egIbqf2Q==","signatures":[{"sig":"MEQCIF/oAnKJnBwSQtgxLTrRxVIEM4edySK/9fIkLTFwekQ5AiBxO9h21+nzX2HVwmcGhJXe59m3ONBNvAbT+ptD1Ibcgw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3dfb4ade56cfb32645b42158b9d2372a13318136","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160305.tgz_1457161570402_0.30450342409312725","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160306":{"name":"typescript","version":"1.9.0-dev.20160306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160306","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2433161eab5d4be09a02103dc3d4d5712d837f4e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160306.tgz","integrity":"sha512-qJUGbvJjPzrrxIXRWbXHztHnKixPPVvJYJRdoPcvYBsoHlboNhI5C5ehudi+ton3uTN6CIBP1IZUbE+rmSgsmg==","signatures":[{"sig":"MEQCIBeVDae4WSMq6dWEDDt6Aw2i63RVYGwH7MUbtnQZowliAiAK8x9dhoxMMc9XEmCq2QGNotx0XHpNgmXc49b3eNYXpw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2433161eab5d4be09a02103dc3d4d5712d837f4e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160306.tgz_1457247981217_0.029852013802155852","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160307":{"name":"typescript","version":"1.9.0-dev.20160307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160307","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5eb1b189f3ad6aba1ac53b57594173a9595aa2e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160307.tgz","integrity":"sha512-/RJ+eDhwGN88e26s85Eds2v/BLqTQs7q6eMus8PrQT95Oz4sfXAbve1zlXBvekzXVj647NFw6jYfZlWw4QHrww==","signatures":[{"sig":"MEUCIQCvyGosiQyNay1q249K0ry7w84h9c7VSQkuYwDzMd6yZQIgf0kPC0BaIF8HhFS22WIziuRy4iLbay/g8dwYcnsHzyM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5eb1b189f3ad6aba1ac53b57594173a9595aa2e0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a5354608fcafd986dcede6aa9832431a23cd3cdf","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160307.tgz_1457334376969_0.07311495346948504","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160308":{"name":"typescript","version":"1.9.0-dev.20160308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160308","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"17a9bd1f008f4683b43c5a57bc5f8a2bc09ade60","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160308.tgz","integrity":"sha512-MKqnqr/zlUiBVVWqVzuivYTaaqRcUt9XvS7Iwv66y9P9PB4ME+7O0WX98fJfwP6mzYOnB5uhRfX35rFQIp6Tmg==","signatures":[{"sig":"MEQCIDneLrOMeO990UAlY8Z/sXHiPgG241R+TrVoS+KT4LeRAiA57ZGU/NDEJ1wKswZs6YJkE2mLX5mvEdj9C5rTpCiPVg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"17a9bd1f008f4683b43c5a57bc5f8a2bc09ade60","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"01c329c05ed52bd13ff1ba48bc673c145ebc9a8f","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160308.tgz_1457420777849_0.6702823534142226","host":"packages-13-west.internal.npmjs.com"}},"1.9.0-dev.20160309":{"name":"typescript","version":"1.9.0-dev.20160309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160309","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5aff7d8dbacf9dde568615765802fe2af2ac294a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160309.tgz","integrity":"sha512-26bm9NJULeVtYZE2KugGAnVcwqWNZAVOa5GcO7g+esqylCINd42Du962WM9wLbgXZ7RkKZRRHLYrKxml8BUGLQ==","signatures":[{"sig":"MEUCIDbhwou6JVQCYOXguvjwhscSKPWVVFD03a09K+EWDbntAiEAl4kD/kKS6p8ULYEC+Vb9mo60vSv/pRS1Q+6+K3w61NE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5aff7d8dbacf9dde568615765802fe2af2ac294a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cc57ae0205e1c69567509c1d81c41d57235286d1","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160309.tgz_1457507173755_0.24544133385643363","host":"packages-13-west.internal.npmjs.com"}},"1.9.0-dev.20160310":{"name":"typescript","version":"1.9.0-dev.20160310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160310","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9e83c31cd1e7ea68019508d974ba7788594ede3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160310.tgz","integrity":"sha512-sOBe5nTe4fnnyP3zr8A45ks7Fja1KGYgmy/W5Yhl2Xe1Lq5epFq8bR+udPh508GT1KkGucTTxhLLOB0vELvNYQ==","signatures":[{"sig":"MEQCICmPDKz9Gp7wY9/Iyj87PMgPzt6TtSa3tvK7c1BAJrdEAiBqWr3i6Z5SUI07YgiFzmungY3XZ3mf5Cdv0XF0u4zVMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9e83c31cd1e7ea68019508d974ba7788594ede3e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f06423bffc705488f0f6c14ea70b8135a2421e34","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160310.tgz_1457593580951_0.5331563816871494","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160311":{"name":"typescript","version":"1.9.0-dev.20160311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160311","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6a4069a8198b85fc551ac9d0459f4ed9b9ae6755","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160311.tgz","integrity":"sha512-GefLiFl7kGJQBOdh+d4m8/qFTyYJdc7wweGYv4hlnza7jtMsVh02VigmVcblAoyPY8Jvlavcd28CWEvG6Gdlzw==","signatures":[{"sig":"MEUCIQCxT5F8pfZHVRxohvsM0hNELD3Bx6hUPvnf4C6xA7FAXwIgWZvLHPNtv5nt16k8kEgP6/UUI4MsmGfXm5Wuy07fkT4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6a4069a8198b85fc551ac9d0459f4ed9b9ae6755","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a75a02cc7b206fe4643d518d9903e036d8c172ae","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160311.tgz_1457679985408_0.9390316719654948","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160312":{"name":"typescript","version":"1.9.0-dev.20160312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160312","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"19ce36a1747641bf011ac281699df6637ff4087b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160312.tgz","integrity":"sha512-Ykhyvzhz8dUpx3RzOzRoBMpYRvCD8NrKB0j5+ZXE0In7wBEUa88f46vEaBcvs0OX3salo8TwWTwMdfdmYyoRCQ==","signatures":[{"sig":"MEYCIQCTd5G/dpxz7euu13FKpJ40GSPw6kHP5CBdLZWzQI2JDwIhAIyhCQP8sCJGNzZmZCujatakCFR2BBWbM5K3FofGS0ny","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"19ce36a1747641bf011ac281699df6637ff4087b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a75a02cc7b206fe4643d518d9903e036d8c172ae","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160312.tgz_1457766393541_0.5865376011934131","host":"packages-13-west.internal.npmjs.com"}},"1.9.0-dev.20160313":{"name":"typescript","version":"1.9.0-dev.20160313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160313","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"07d637213e8f4ceb3225f1aeabaf949a69d539e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160313.tgz","integrity":"sha512-CGMROSTr1mi731JQBwTcapIRyke/9rWj62pn9vi6pincV87nRCVGjSkqVE8km7p7Pa3XHuuCXLF+9c2cK7D2Dg==","signatures":[{"sig":"MEYCIQCWqKxfO9FGJAp4kGI2qeH+mBUNXGH9ehzMY65EeKGI0AIhAKJlMNAKyD3lZ5KXRFHDo7ZDd9SPwchv7k9YpvImveJW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"07d637213e8f4ceb3225f1aeabaf949a69d539e1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"74e498de03a045c36665a578a93cebde7bacd787","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160313.tgz_1457852781074_0.6428778232075274","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160315":{"name":"typescript","version":"1.9.0-dev.20160315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160315","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"421186197ba8690f360c5514f291a41b44e066e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160315.tgz","integrity":"sha512-9qw7LbSv6HOtw5LzW9JdPbPi4wt0pAV9m5oaCjnugk4r9YtR/XacVx+jp0tuzhgVvF+l4IeB+1n6l0jBQxqgUQ==","signatures":[{"sig":"MEUCICtoe5mOsBEHZa5P5UMIuITCGO10BrpE+HQirz2T9ZryAiEA/U5deKDdJbQnvlHuAQuaXlpsJwUuGl9RF0E1lSrZqIU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"421186197ba8690f360c5514f291a41b44e066e1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9f6f871e0128697105cde572f476031568df86cf","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160315.tgz_1458013502192_0.6463880718220025","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160316":{"name":"typescript","version":"1.9.0-dev.20160316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160316","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0c87fc702dd178a6f685f6c93dd69230dc73fdc5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160316.tgz","integrity":"sha512-toBOxNZ2ng6ZrW4Yl3JjCJY0FSAg2EYMShAlIcqtNw9RScNxi49hJqq3z+EmXbdnlNMqrESpiTS6HodD7XkWsQ==","signatures":[{"sig":"MEQCIFrksHJ2TQKeKA9RQfYIrx7q0xWhkMF6Gb8mMxjgeorPAiAmw195uh/B+br5ZzKp9023RBz67k1DXXIKIXg81yjOKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0c87fc702dd178a6f685f6c93dd69230dc73fdc5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"1156141b5e8d577451f03f36832448e6cac34459","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160316.tgz_1458108484363_0.450467805378139","host":"packages-13-west.internal.npmjs.com"}},"1.8.9":{"name":"typescript","version":"1.8.9","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.9","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b3b3a74059fd31cbd3ecad95d62465939e7ed5fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.9.tgz","integrity":"sha512-orKTYFUBnvozvQJqEreF6dA55Y334PtFbUJPkyqCwThYcnv7GnDaVwEQ0obHy9f9PDsm5x4ZTPEeJuLtTXqBXg==","signatures":[{"sig":"MEYCIQDNZGij3yHDTEmJYFZMvvrhG8Vfy4QWI8FPCtrqAk+PmgIhAOZLLJUkk9/DiwrVBVE7rk1WjEvhtP4y4WRB0I375mQY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b3b3a74059fd31cbd3ecad95d62465939e7ed5fa","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9ef75534e0fd5f92bef86b520dff768c11a2df4d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.0.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.8.9.tgz_1458169371557_0.7292261146940291","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160317":{"name":"typescript","version":"1.9.0-dev.20160317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160317","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e962b0013a312a10571a2f7d3dc4f40fdb1f5417","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160317.tgz","integrity":"sha512-ywC+twRUaXfkZ+VTtNQTibzAB3DOiPg9N93AVSIZfnH3xPEhiKqxu1TS5PhkgMPgdoIpnEyWaRtajkR2fO39jg==","signatures":[{"sig":"MEYCIQCuE6SFdoi3NXxh4wMhzfFeJbR7zh11zTx31dQPTy3LEgIhAM58U2rvl1/dvW5j2lt2hZNoIxQq8G5KSmiWwiive4ai","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e962b0013a312a10571a2f7d3dc4f40fdb1f5417","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"b5f418ffcc79a5b724239701d73b1812c09af2d2","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160317.tgz_1458194774697_0.21504958672448993","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160318":{"name":"typescript","version":"1.9.0-dev.20160318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160318","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"202201fe08c28430ab9854f6b947e55d5fa596b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160318.tgz","integrity":"sha512-jEiGWOTa946NXkkejVC4SYReFqdgWgVPtTWXQuL5y6gBMOalfqaSF5gYskO5GfpDfJQPj2VPLZcSTziKvV2HWQ==","signatures":[{"sig":"MEUCIGuBmaVQHEYny5rVe84P8CMgY2GcVrJ/PJ/kc6ayAXy+AiEAhci1PlszdvnVwJOpppEYVbi7Rf9dCXJU5AF53Aty1rQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"202201fe08c28430ab9854f6b947e55d5fa596b9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"279fec7a7d62407711ce57dc3e194df3b9da7d85","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160318.tgz_1458281194875_0.7512446625623852","host":"packages-13-west.internal.npmjs.com"}},"1.9.0-dev.20160319":{"name":"typescript","version":"1.9.0-dev.20160319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160319","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d2ea94b65287f29b58cb587cd178b1a6379ecb47","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160319.tgz","integrity":"sha512-BM136C4dFdi02EUrtcMNgfnoEqKWJ/bqc+CEOxxHc25vWIeniGGI4AS0ftRM1c9dDrUrNbj1at1V+vP2xLuphg==","signatures":[{"sig":"MEYCIQDuV5lHMXJKDmcqK0UfKzKE3DLSTbrq2lPTIG9V0UHSAwIhANmXCOj85L7o3c9Dcw/GhHIEW9CEPLSs+aifOGvRd/7m","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d2ea94b65287f29b58cb587cd178b1a6379ecb47","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160319.tgz_1458367584325_0.18974966928362846","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160320":{"name":"typescript","version":"1.9.0-dev.20160320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160320","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7ce83c826608496d8381d1949097a2d1547c0b58","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160320.tgz","integrity":"sha512-dxlC1NAtgzY+R/ntkaOpeu32apAxWtt2BTQTWSPYq2g82EYtSSgA148Wr4BEW4UI01yAFLTp8pJrvIwoM9oamg==","signatures":[{"sig":"MEUCIQD7qHtGu+3QLu+b3XGdHJl1iasaNTy18F7MZGtYvMfmXQIgfzOjhI9ScimthVpkknNGkonTR89VZRckdWOhFoegLWA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7ce83c826608496d8381d1949097a2d1547c0b58","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160320.tgz_1458453972842_0.4057519566267729","host":"packages-13-west.internal.npmjs.com"}},"1.9.0-dev.20160321":{"name":"typescript","version":"1.9.0-dev.20160321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160321","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"80ef26d666998ebc5af75bdc5dbc6f820f46ea79","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160321.tgz","integrity":"sha512-IuoQnwMLzwwmERfA1R2IoIAatKF3TSryvMXoZh0ONJdeoc6O6xBBQdPVjdfgMx3sITU8gGGU4SKO/HzrudN12A==","signatures":[{"sig":"MEUCIFHF4fezseAdX5+HI2DlIgWUclV+tqB02D9JwGJ90h5GAiEAhkkhdmIUTWD6+SE4nIBOKspfCqJdeJUEie1sltNr+vI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"80ef26d666998ebc5af75bdc5dbc6f820f46ea79","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"32178acdfe172354c1cac131c303ead7831c9334","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160321.tgz_1458540385260_0.4587331262882799","host":"packages-13-west.internal.npmjs.com"}},"1.9.0-dev.20160322":{"name":"typescript","version":"1.9.0-dev.20160322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160322","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"753b6a161032fbca00e108e51a37f4393d81a32f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160322.tgz","integrity":"sha512-8rImTqzqScwkmEhOjMnHZZQbZD+oZto/PAbE3xAPSFNnrvEUl80H5C24VGnIS4FqYgG7iCNEPHJgVt10CbJ9NQ==","signatures":[{"sig":"MEUCIQCRoMqvbJWeouPnkGxcUc6jxI5c6peSnejNh6tLFkQuHAIgGyK5K6fO/m/R55DhfVWevoh71X0Lh0RvnfAaBzaQ3KE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"753b6a161032fbca00e108e51a37f4393d81a32f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3853bb86d0f26e150666ab736092824eb781babc","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160322.tgz_1458626778766_0.22957354900427163","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160323":{"name":"typescript","version":"1.9.0-dev.20160323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160323","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"73fc33417b0de9fe670582090b4ba8c9ddf576c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160323.tgz","integrity":"sha512-g8uNjvHEYS+6kuSLcdZc+xe/ASyGbWYNU21su2Xz96CX2rF6GcnVZ8rE+qszUEYWZgUGa5nOjfC+EDAayt2Lfw==","signatures":[{"sig":"MEQCIFcLNxLLiU80/nnDRvVOTupWOpiuEpqp1TqTiYHcfU1wAiBjUqEu9wWs/pdX0TKhjolfVzTLB8tygo/Ph5sYP2gCIw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"73fc33417b0de9fe670582090b4ba8c9ddf576c6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9094e01e75d90c0d96796209bbbf1300eec61271","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160323.tgz_1458713179917_0.9914855759125203","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160324":{"name":"typescript","version":"1.9.0-dev.20160324","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160324","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b2bd8ee93267a18ccf3165b6a3127ac97d9dd1c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160324.tgz","integrity":"sha512-piH+JUi46qVVq/J8ZQqMc3uDqb2BRehrH+o8cVZgGw9FDAHhI+HFJfJTLFuHImjhK98ctNJ5PcC+Whq6GXgh9w==","signatures":[{"sig":"MEQCICyVijdFOvRtmZh9Sb27/PuBeFSQc179HPReY1sUbAXhAiAUN9X2Vo6HcH7lSG3cs3SzN9cV5GHm+e4Eq0TZTGYuLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b2bd8ee93267a18ccf3165b6a3127ac97d9dd1c0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"730f18955dc17068be33691f0fb0e0285ebbf9f5","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160324.tgz_1458799583843_0.8971534639131278","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160325":{"name":"typescript","version":"1.9.0-dev.20160325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160325","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5a97256adff928e4bc9cae4940a51b01d09b933a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160325.tgz","integrity":"sha512-Isci32loqpo9XGkyYoQI+PEhtGaJwUTbn6J9y5g1sF/E3jM0EGFiYBHNwW0uD7KttKeuRnGL2AkzIvGbtr0UTQ==","signatures":[{"sig":"MEQCIHOiOeAzbyE9sn5IzVw1hKf1YTMWjI3aG2wzhYLgCpusAiB7zSmFxwli0GKMuVVn7D8zjMDscypUPtNbX/f9r2kvuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5a97256adff928e4bc9cae4940a51b01d09b933a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6cc1b174fb6865f9558002d582a675127a4005ca","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160325.tgz_1458885982883_0.17193096573464572","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160326":{"name":"typescript","version":"1.9.0-dev.20160326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160326","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3d0ecf975c85686d5bbc81464ba3ca5456d5eb61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160326.tgz","integrity":"sha512-3W3HrIk/aDIctC8ZAcYCQ/+1kaNP4aqkVZcKpAa1XhvBV7OPcS3cr3T/ArZIu/iEHRtr1xH9/N7BBefoZ5W9+Q==","signatures":[{"sig":"MEUCIAJIBpUWI78wtVcaHP5bgKTB2x9NP/n1B0qgdPXueKP6AiEA5Mtyj9ce4QyzV4p2V6P/PZssVsJ+08K+nDNC1jea6Ew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3d0ecf975c85686d5bbc81464ba3ca5456d5eb61","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"8dc3b2eff0671fcc1b046d80de2c8991c920a65e","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160326.tgz_1458972386357_0.5337059921585023","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160327":{"name":"typescript","version":"1.9.0-dev.20160327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160327","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fd5cd642bef9178ad44c1e2704c043cc2c38457c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160327.tgz","integrity":"sha512-7fhyiZTwvtjAUR92TYF68e4YaExnVPWKyQjPDsF/M3bY3Wisa4ss+3tMI9uaiAguGrePKm/PHIOCH1EarhEYCQ==","signatures":[{"sig":"MEQCIGDw/JtNcmQXCOQ2g5q5KdGhXZzv9cBrtkx8+JB+XXIjAiB3TtiMnwLp3h92iFUfS/+Ye7gmpS4gNzWSuC/Yl1f5OQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fd5cd642bef9178ad44c1e2704c043cc2c38457c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"89350b35f040ce120db2e5a08db190bd3e9741fe","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160327.tgz_1459058781064_0.05373280239291489","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160328":{"name":"typescript","version":"1.9.0-dev.20160328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160328","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ddde82718701d9997021e88cac6a9ddb78438de0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160328.tgz","integrity":"sha512-CaxeIl6yrnChyM9JOUQP5AA1/Gpj+G/Dz+/8flAdOYRNIc+Nj4tWjyO5qrnkYc5KwekaqUDae6brkzuQ8IaSvg==","signatures":[{"sig":"MEUCICi1u1uP3xVrLF6noisxPtzT2y9YeUSlucys025U8Z/2AiEArvzBCtjaaYJSQwnqoEMRpaJEq+9XF6EuInzsION2RRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ddde82718701d9997021e88cac6a9ddb78438de0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"89350b35f040ce120db2e5a08db190bd3e9741fe","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160328.tgz_1459145251419_0.5560931398067623","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160329":{"name":"typescript","version":"1.9.0-dev.20160329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160329","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ef363c2db2165cfa989de035a12a4b7e5ef610b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160329.tgz","integrity":"sha512-YES6ozscRjZ3J39smRqfvl3H8rKwg+sJmEPhsUt/ASjVouL4FthT/zFkcSR/Vyx9/ffS2wGgRffwnqNyVr9N/w==","signatures":[{"sig":"MEQCIG4BQO8tNXWCZ+Z6wLqb9DWJDAaAY9eeiuPbiOZLfmc2AiBKxQPv6Ka0Q6EmZCCu+QAO/NcQbn+WA+LE/RLwsc6Qag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ef363c2db2165cfa989de035a12a4b7e5ef610b5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"25f8ef336c56e76f57e7303197186c6a76e3fd42","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160329.tgz_1459231583738_0.6694845447782427","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160330":{"name":"typescript","version":"1.9.0-dev.20160330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160330","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cab4feefe6bf90b40876e080311db47cbf75596e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160330.tgz","integrity":"sha512-zNJfqUAMaeNquydwbuP6ottyN/H+5HZKwkmBfMXBKnahBbbjCo+If3kEF8L2An57NyzjmN4tT6aR4pDQj6/ihA==","signatures":[{"sig":"MEQCICByWI2B1fYTEMzuxu7uPQvBw9Psc2Xb1gmV8uq0pxpOAiA2ckbY+QQ918y9ldzBOL834sZCoyPE86UQQ1SzaXuIaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cab4feefe6bf90b40876e080311db47cbf75596e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0556b15690d07cd9fdbd0ed40294c4e44b82a44a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160330.tgz_1459317983917_0.07969942642375827","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160331":{"name":"typescript","version":"1.9.0-dev.20160331","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160331","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"384895ed8cd10acaeeca05fc56b998f3fc5a5223","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160331.tgz","integrity":"sha512-zO+SCCSYiJV+5n3aG0lPQWJhyxQFnzRdJigBLwXWbiv+ayTk2ngHeI4QTp28/krE+8rHwOAVGZyNvE6uBtihfQ==","signatures":[{"sig":"MEYCIQDCCzz9fI81kZ8ba7RJnx/2grqZNFSOthj2maj83RmFNAIhANkpdckcqGsNJsaQsRHXubjGMgn0UkUW9Nnt8vk2jy1D","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"384895ed8cd10acaeeca05fc56b998f3fc5a5223","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160331.tgz_1459404522625_0.5131860044784844","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160401":{"name":"typescript","version":"1.9.0-dev.20160401","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160401","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"acc3b4c112d2ac8c6acf930fb5da2d7e4c1860ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160401.tgz","integrity":"sha512-4h8SM1TXI6TWcz0pTlPbqepERpnMBsEHBk6o5FRCZN/SQN3bXoZ5npl0a3dGDaCApNttDzRb/euKdVNF4GWPhQ==","signatures":[{"sig":"MEQCIAGtMzup7BfUAkcw9PwH3qglCm7sGOuHGQxfEW0g3AWqAiBU/DQ47lL3X+R0HLuAqcdHDIyBBvz8tI0lpPcsTT7jiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"acc3b4c112d2ac8c6acf930fb5da2d7e4c1860ff","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160401.tgz_1459490815932_0.7359500741586089","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160402":{"name":"typescript","version":"1.9.0-dev.20160402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160402","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"207b08676355401e0ad65640655a08c5cf80b721","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160402.tgz","integrity":"sha512-dfi6k0FhAO/SHLKwJjZJZBuzn/h4QjS6LggLe0MIm3Ao+0zB5P6uE3h7e+Es57A+hyQD5dlbp5xPFAef8FUAZw==","signatures":[{"sig":"MEQCIB7k6tiRGMV5YfoDljj4Yb2vy/Um3+7j3xHFSr/QUufHAiAHY54ELtv871uIIQKSzCFV7fl6pqri9K/3Z7Z8cN+JGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"207b08676355401e0ad65640655a08c5cf80b721","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160402.tgz_1459577208276_0.7721319389529526","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160403":{"name":"typescript","version":"1.9.0-dev.20160403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160403","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a2bbb6312bc0c4d0a9827772bdfe0f008727d419","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160403.tgz","integrity":"sha512-lUgInxmEwKUQ1U2DuBy3mVLBlwXzBZaidbLrQn74fwwt+oxCP1dlAsqvTvGlxWQkYViBWZ2EY0KoM+yL5ejK9w==","signatures":[{"sig":"MEUCIQCTPNPixLG1ZAadYVMtnJ/5NmXSbvvzFSWRGqp4hmiaFgIgYQKfmV5sUJID+QAK7MghpCpJYoPDWIOSpOzJkcngGV0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a2bbb6312bc0c4d0a9827772bdfe0f008727d419","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160403.tgz_1459663603517_0.6288528817240149","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160404":{"name":"typescript","version":"1.9.0-dev.20160404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160404","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0e7ad7886a1af966ab42af9c3fb1fef0e269781c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160404.tgz","integrity":"sha512-kS3WMkIg4Vt4/1VLftL8U2Bsr71j0foKIv4ijm+xnJ4zAsina7LkSqbwgUxPbkVMaFfBdeQbtddDO3CpxqkevQ==","signatures":[{"sig":"MEUCIHmWU7ReLKM65awdokrpRurFRn6muXXFr4/ghut2rzr5AiEA6Fi60wRs0Bii3BTKM1NQn/YMY9Jcg1jLBAO/Y6p62gk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0e7ad7886a1af966ab42af9c3fb1fef0e269781c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"68bdbe04e73fc4eb66d744a1a89bbd3baf162a87","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160404.tgz_1459749996164_0.5945021682418883","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160405":{"name":"typescript","version":"1.9.0-dev.20160405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160405","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"72db1600a5b884c528cc389ecb15b6d3cbfd35c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160405.tgz","integrity":"sha512-fTfcCQJWXK/blzKdUDQ/+sti1dEjQ0iraj9Q7UHPdbJypouRuMj4xDavidtNYnpR6DBdKAFPnGYGdObZiLL3dg==","signatures":[{"sig":"MEYCIQDGqz1iSlTWLHVbAcGLUNUaePZmA3W4ZTjdOJOncXU8AQIhAPOgSQwLEjQklBa9772EVv9vwbLq4rZHQXcpFqMkjxFU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"72db1600a5b884c528cc389ecb15b6d3cbfd35c5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"11887ccc29c8c4a087ad8b9929b37307d16e13ab","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160405.tgz_1459836528239_0.7472022236324847","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160406":{"name":"typescript","version":"1.9.0-dev.20160406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160406","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ed53dbc66f3ee8ea310501fa1c97afef7ae90b3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160406.tgz","integrity":"sha512-GP9U+zidFfJoRRMTjWw0S0URN6gOI0dffnfMTmvC26nzAl5rrxpgzXau3jvkwl0d8+t7LbVffyop4bLPDc5ixA==","signatures":[{"sig":"MEYCIQC6sulkEJ/DFtlbIz6plcUYykS30zbPm3Zl6qHb4WH6KgIhAOhNdHzKCZ5XTwCEOsqQ78NnZzyOxPLMHm2S1GcmFCEl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ed53dbc66f3ee8ea310501fa1c97afef7ae90b3f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"65fdfd214c5594efc7700b85b5f83fce714a5e2a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160406.tgz_1459922819856_0.5366591047495604","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160407":{"name":"typescript","version":"1.9.0-dev.20160407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160407","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8f7076ec834cda5d585b97bec42eafff14fc7cec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160407.tgz","integrity":"sha512-9NknM4QzOyQ74XeKTVuAqyH5hulxXaBtGCoCmxezZ1m31QL9JEVAT5wcaGOv2ODwYM0Cq2Fdv+lWFI0U4dlS7w==","signatures":[{"sig":"MEYCIQCeDNwcJ7Bdk2ZocwjoNM0t4HKhfddn7PMZHUY09Y82agIhAO8zIYwC6FmrevdxxKej+zKzaLF9UiBCPfM8ZBV4z7kq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8f7076ec834cda5d585b97bec42eafff14fc7cec","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3acff6def62aee4e398687b4356b7c18c28fcd92","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160407.tgz_1460009328830_0.541105451527983","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160408":{"name":"typescript","version":"1.9.0-dev.20160408","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160408","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0fab58c2fa44bd7562c9b410a495b29acfce4689","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160408.tgz","integrity":"sha512-OeYw6VjQP6e11wt95VILZX4lj1otXRf+x//NmgwVrZNYXBhr86aX/+01nm8gZwCEWF0+7zbcY4iYh8chqd9tSA==","signatures":[{"sig":"MEUCIEWxvovDFV7QfmxKrqooxMoGbRn9yp00h3OOuZp/IWjcAiEA7PagzCq6yEHF9PAmaw6/5e+n8btQBRTZr8k63QEKWfY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0fab58c2fa44bd7562c9b410a495b29acfce4689","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"58efc2ee05c5053e69fdcee5bfc8234b598b32a3","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160408.tgz_1460095708891_0.8075578715652227","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160409":{"name":"typescript","version":"1.9.0-dev.20160409","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160409","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8c620b87bf8887d76738b859d219f047f7b2e8f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160409.tgz","integrity":"sha512-lEBANWam8necH9saZKmNLTb5AX4zDOdpJYkKSXYv5/wSljJVFgnMPrioVwwaUnTI/VRxmdG21ZYCoLQ9qedrDw==","signatures":[{"sig":"MEUCID0Nmc20Dbtxj9qYX/VxTMrRu/JkCvNid1b0dS8LpQJuAiEAv9iPo02RNiE+NhtsjGzkkvfvFyCoLuaAImYoetPcnS0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8c620b87bf8887d76738b859d219f047f7b2e8f5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ac6224d600ceeaca02dad0890b776e004d462e8b","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160409.tgz_1460182111990_0.059267388889566064","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160411":{"name":"typescript","version":"1.9.0-dev.20160411","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160411","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e44cf2ef6808d571db70af37f95ef10e43b9f259","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160411.tgz","integrity":"sha512-PdWQHEF8kZZhVvU5tREW79sWzLSxeADOsSa2mYX33KQQvVad2G4TEfqt6/DmJX+VJsaBcIr9U+RZpKxkRhIIoQ==","signatures":[{"sig":"MEQCIBJFkt5PW06X03B0+O0t127SPbuOieeZlFWz9kk2D+7gAiAHwwOCC6msmCQtGqgzrjdkXHykTpN42IQnpw/d2sjtKQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e44cf2ef6808d571db70af37f95ef10e43b9f259","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"1.9.0-dev.20160408","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160411.tgz_1460395767996_0.1391923485789448","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160412":{"name":"typescript","version":"1.9.0-dev.20160412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160412","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c51a916638690883c65614c6c23c885673615b23","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160412.tgz","integrity":"sha512-bqwOQlF05g/a/rMmNRRWQty6sfAFF8Yp5AA+tvLnrlVOtV8gQTMWW+86SEj9BsP87kOrxK35EIQAEVmoQyh6Sw==","signatures":[{"sig":"MEQCICwiFAS2Ft+ZTSo5JBxts82UC2Xqw4N/rpXX9A5tuuWrAiAe7lWoivCX78GvJzFtG7oqoAMfQFDwGwWKA5Z/1PzWDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c51a916638690883c65614c6c23c885673615b23","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160412.tgz_1460441209759_0.5100526863243431","host":"packages-16-east.internal.npmjs.com"}},"1.8.10":{"name":"typescript","version":"1.8.10","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.8.10","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b475d6e0dff0bf50f296e5ca6ef9fbb5c7320f1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.8.10.tgz","integrity":"sha512-amAjhGr2ZKUcd3OpqmSWbyz57bveJcwLdVp4XY31zR3Lylq0ZG8MHAX4IpoJ5AypkdkKkMRRVoqY6lKWrR9uPQ==","signatures":[{"sig":"MEUCIQCfWkaCLZiHPt1X5GZazpn6bIIVbyG4VRvbhe5rqHTK9gIgd/Bh0PqYjC4/wTQJgArWO9TwVpC7I12me2lQv2tWRd4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b475d6e0dff0bf50f296e5ca6ef9fbb5c7320f1e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"794c57478ec2a44ee15fb3e245a4c5d2d1612375","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.9.0","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"2.3.4","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.8.10.tgz_1460493736776_0.9304528103675693","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160413":{"name":"typescript","version":"1.9.0-dev.20160413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160413","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"229220b1b49f8d49806237e4b4191f34a8a82010","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160413.tgz","integrity":"sha512-PyyAISWFMoGAoB1gcxQ/Z5B/ajzOfv7KrXoWYnl3ubCK33/OXSksABCtt0oLBShQE4QpMCkhec2T8UAqhcg35g==","signatures":[{"sig":"MEYCIQCYoWGNHxcwIzSBIgpNvlZxlcnAO7AGyDEDQYtcfnfsVwIhAIWV8JxYJu5ZINqVadLBoJYWp4Z3ZVb8fjRWCR0ssdBI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"229220b1b49f8d49806237e4b4191f34a8a82010","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160413.tgz_1460527612365_0.5787558434531093","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160414":{"name":"typescript","version":"1.9.0-dev.20160414","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160414","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cbbdb44e7a96d1442e9eaeab62ac7a94384f43d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160414.tgz","integrity":"sha512-MwEsGLhioK3ugIMHeVp6wnC25EQp2tOK52MvVhc7MccsU/eXxhmd3aeBsgHTUWtAPwRsZTMPitz6/mOgnshRgg==","signatures":[{"sig":"MEYCIQDI//U0Yh/TT+V9laWFf0m90R63qMJgWggUk5hUnF1fSQIhAI8WVNUu6CKAP1KtqDLCVgkLvV7m5H7V5FRNO68tfcdr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cbbdb44e7a96d1442e9eaeab62ac7a94384f43d8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160414.tgz_1460614033722_0.33345846668817103","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160415":{"name":"typescript","version":"1.9.0-dev.20160415","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160415","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1dc503dd61b977a98992af4d1b8346d8ddad687a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160415.tgz","integrity":"sha512-fFj3nt24Plp5XMpaVicM68nbYXwJKrFnkc0hkwMR90Dk0z87a229umeZOgBlSAw8lvwC/GmsZeQ14J+tFW5y5g==","signatures":[{"sig":"MEUCIHbyL8qEdNPy5bBbYpnZRH7J3EFq5qm+C2F+nswmPru2AiEA/WIfmsV0G9abChuH5iEcQ8ZQLYVNjvs2vba6XTpiNgM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1dc503dd61b977a98992af4d1b8346d8ddad687a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160415.tgz_1460700417038_0.9935393556952477","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160416":{"name":"typescript","version":"1.9.0-dev.20160416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160416","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"10d30c5fc4163ce976350b3b9c58e15f9f8afd23","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160416.tgz","integrity":"sha512-coArFNoAYMNftXJOiXUbWdz+/HStSRKSfHePzs6iSnOYKvux0C62adgLWt2R/eaCK2cWVo9S3dWuVrdjIs0HfQ==","signatures":[{"sig":"MEYCIQCOVIkx4yAZk5ocHmmlOV5VWHRGBVdBK+QBTy6GlfPh9gIhAI9LfZ5xyNtumdAMKZgp2J6XeUgRqOqpSS8dk8n7qivR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"10d30c5fc4163ce976350b3b9c58e15f9f8afd23","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160416.tgz_1460786813910_0.05212209839373827","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160417":{"name":"typescript","version":"1.9.0-dev.20160417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160417","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fb8ece2bc6698788c74ce44b804d1e80b9ef2d50","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160417.tgz","integrity":"sha512-W6N2pNF0sUxqcu0CBdwZPwdGLR4VX4B0oUIgyxElsvcdi54zLV7M+FUknNBSeNzPlB8ic2I9K/uLwc1srRE0dg==","signatures":[{"sig":"MEUCIDffp1vcAlnNWGE0gbhcM4JRQAyZqTeAMA4SwttMk/9pAiEAh8SvBbKzFgTfg6u7Z/XbQyWJbDRHl/rCq9Tqi38qDtc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fb8ece2bc6698788c74ce44b804d1e80b9ef2d50","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160417.tgz_1460873218025_0.6502671642228961","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160418":{"name":"typescript","version":"1.9.0-dev.20160418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160418","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f3dd5803c3990594d947f946a395da87f5157799","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160418.tgz","integrity":"sha512-+BfB68ywJTc9J+M9p1ww2stbNAuTJ+MkVRgaU3dcAPh9W2GazI5Z5+0MuEBURMw6hZ9gW6AbgKgFQ+r5r1fNGA==","signatures":[{"sig":"MEUCIDU733TeguBOyYsPH+fnpdRMw1etZkJDmfIHS/0atrrfAiEAjuE5nuurXYkkqFyLGewKznzzBch8Vyg/welTPlsu9w8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f3dd5803c3990594d947f946a395da87f5157799","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160418.tgz_1460959614463_0.7953340262174606","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160419":{"name":"typescript","version":"1.9.0-dev.20160419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160419","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0aa600013b22aa0bc376323fa8f7b9b41a827c00","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160419.tgz","integrity":"sha512-MqAcKgy6/kyysJ+MqzV+qypVHph1dhmXYJv/LcdIp+mT4yIMh+ib6jhX+s1jfGUhE09rJx7nJTlcJ6r+AFtbrA==","signatures":[{"sig":"MEUCIQDRjhDNymV6fyuRD5YBg0v6RQ0pcJZ4YvaE7w24gfl5YwIgC7lUB1ErlEks9Wsd997LNdMf0FFcG5xb0ov15PNWc6g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0aa600013b22aa0bc376323fa8f7b9b41a827c00","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160419.tgz_1461046020216_0.6218960657715797","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160420":{"name":"typescript","version":"1.9.0-dev.20160420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160420","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"654e74639fae480ddfd8c90ea4ad4c6588ab5bda","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160420.tgz","integrity":"sha512-a+PIucDLyQQkCPIhqFsOJrTxRfqDg2ihjafcZN11xgqRoLLrnbJrtD1HNwp+Vy3wQvhpH8Q0Xv9dSMr4fS3saw==","signatures":[{"sig":"MEUCIGScn253WNEOfzPS0pxl4j44iJ0FONmVfZxGaAY5ARlFAiEAxH2ehHejjMeWJ3dx/8Fv01HqimwrgsH+Y7qBLFBFy00=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"654e74639fae480ddfd8c90ea4ad4c6588ab5bda","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160420.tgz_1461132418680_0.9160798492375761","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160421":{"name":"typescript","version":"1.9.0-dev.20160421","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160421","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c5e2fc29823ad973feda0950d5dee0deabf3a3cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160421.tgz","integrity":"sha512-1+U0MubkHCejOXk5IxC7kp7V4RxyzYxJYz9zE6dbNozNUhMhbaidBlec2wdpaEjzofD5n/7MnobNIEdZrzMbPw==","signatures":[{"sig":"MEYCIQCxHnkCo9ZsaVcTJMQUhMszeL9COIBD/gKT+bSsXoPnbQIhAMmI0bwGu8kc6J1A5YjojC+iXr4WGWbwhzC51WzRBASb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c5e2fc29823ad973feda0950d5dee0deabf3a3cf","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160421.tgz_1461218924744_0.09192655375227332","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160422":{"name":"typescript","version":"1.9.0-dev.20160422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160422","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0d1cb660651fa5029019cd6491b5667215a47db2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160422.tgz","integrity":"sha512-ggR8DlCzi7aNIQDfKffhPttpCywIH24SPxo7n/XgyjUjiTm/Fxg5Y24gBDc81122RY/in8KGJxPAFqkwhh018Q==","signatures":[{"sig":"MEYCIQC6eJV8oMZWNZE85nEubL0HPnj6Zyj32TBywcxwSUgfIgIhALoMeibVz6tmlqgrFmklARaDnfv37zOueP4MvxZYLNCD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0d1cb660651fa5029019cd6491b5667215a47db2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160422.tgz_1461305207804_0.2526260947342962","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160423":{"name":"typescript","version":"1.9.0-dev.20160423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160423","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"99f26b6977769eda17722334c2551eae1ebb6565","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160423.tgz","integrity":"sha512-QnEg5hrF6NyfSquKZIDitPSFXPZH9LVqfoQ8KdnO4jUl+XrYZi1v3O1nDTHbaIjKDx0yN9KcYS4iVJOiBhRVew==","signatures":[{"sig":"MEUCIQDFBBi87YzbNsvRQ0oEeZQ2LMNEX7gxYXlEMJARFhxNcAIgaokBgwH6i6K/jEvLnEyXCTnVrAuayjbDvmvgoTFwQIo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"99f26b6977769eda17722334c2551eae1ebb6565","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160423.tgz_1461391622289_0.9419101537205279","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160424":{"name":"typescript","version":"1.9.0-dev.20160424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160424","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9b91e6b74b106ff3ed397108472242b86cc72606","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160424.tgz","integrity":"sha512-zmbnDA1UNBUxysMGn+wR+i9UINKV+zUmPZWQ1rWpHz9lBfC2oB4Tc3XlvF0FHOYEo+2HdjxEwfKBEfveGDsPbA==","signatures":[{"sig":"MEYCIQC53XIsTzKvwo8O0LWFpF/KOA6/9G37TvSQ5RWHTUpgLgIhAPM3Mx64x3jO8LRsldV65cSj/O5H2D06m3pvV+Nor117","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9b91e6b74b106ff3ed397108472242b86cc72606","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160424.tgz_1461478009410_0.9589254218153656","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160425":{"name":"typescript","version":"1.9.0-dev.20160425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160425","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fea561d6b5febd5b6eaafd72fbf91e4e66f18b40","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160425.tgz","integrity":"sha512-xmrsc+4Kj4Oc7MfKRRiBRPcY/3Ipv1rtEtWaJ8/S/CZjZX++swLhBJS7pDCjb8GhNWF0EeBR241KFwzEIWJ0lg==","signatures":[{"sig":"MEUCIQDZrVg8xXz4QqSnAyI2YfWvUlf7qNDcLTCgI37TDV+EHgIgAZTTvJWS6Fn6zO5EOgvqQWbryR18Gkl+90o3bvDaEko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fea561d6b5febd5b6eaafd72fbf91e4e66f18b40","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d280b1b7bc9f71491619fa61ee3fa99b54b96b26","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160425.tgz_1461564408038_0.04081986588425934","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160426":{"name":"typescript","version":"1.9.0-dev.20160426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160426","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9bcbeeb247305885718a5320225ced4d0e203912","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160426.tgz","integrity":"sha512-EapLkd9OI4dBxs2dwroRLKLrMOLKA9KKh5HFPGuElwFszLy1i2ZXiWFsBCQW5CVPoy12bjzWPRSGR0Os3aLV7g==","signatures":[{"sig":"MEYCIQD2+0VXvtdrMrNRi7Wmgja4RAzUxEeh7NOVE7Pl1bs4CwIhALToS2e/cvfZmp64VJxpW/ZiUo/GCKmypLx9dP2h5D4f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9bcbeeb247305885718a5320225ced4d0e203912","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"da0197527f1a3759c5c6efa699257cfb36a12420","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160426.tgz_1461650812035_0.5928841661661863","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160427":{"name":"typescript","version":"1.9.0-dev.20160427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160427","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ab8d1a6189b27df917e70a0ab3069a3d45c05b07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160427.tgz","integrity":"sha512-srFBCVLT5tEPPHFWiCyLNCujXC4E9crpX1r2lERjFgSD5J63MrDAuV2SYAinZVPPUPuJ6a184kM2ehiRhU6E9g==","signatures":[{"sig":"MEUCIQDMYWgtEj7ZYd0Cz1N5RtFhbHD4b5wHJ2jHgeVQY6xcbAIgPHFghrzJOyWEqHy4/tY4sLqKsAliygZw/roNQqCpHug=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ab8d1a6189b27df917e70a0ab3069a3d45c05b07","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e00f573de4955022d184ce100123a78d75941525","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160427.tgz_1461780529953_0.39602549583651125","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160428":{"name":"typescript","version":"1.9.0-dev.20160428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160428","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d9c6c5a532fbe18a9b3ffee297b1ade602d4a18e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160428.tgz","integrity":"sha512-UHQV0yc53ON3lSN+kd4JYsCnBIU6BEewU6eEj9mV/Oi3pwHSjmd54DVn3pBJSnpv3ikDOMdSKwjjWvy40GU2CQ==","signatures":[{"sig":"MEUCIQDlI7ed0nWGv23PI3YU91rlmy+f/AdAcd8iQm6DabgBFwIgWYWlVB9zWgcuiTzLKEvaa8dqG+ENywpL2TNQMBJZI24=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d9c6c5a532fbe18a9b3ffee297b1ade602d4a18e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4ebf4880e5ba28b8f39d7a55dd26e330349e165e","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160428.tgz_1461863726233_0.22797652590088546","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160428-1.0":{"name":"typescript","version":"1.9.0-dev.20160428-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160428-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3580c328cb539d7a7e35b14838ac9b3dda5a36d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160428-1.0.tgz","integrity":"sha512-XP2OroIoTcLjIWVPSciv3dlc7SfJ7mAx8rMxtAURaCQc0q6dqkguA4QI1zRUV0CLYtX4EBpUiLK5+0ZKkrQ1Xg==","signatures":[{"sig":"MEYCIQCd8frb6RSOqCON0wplv+7tsSZIh2eAsT5EmZSY2prUkwIhALuftrmejeoMy8nqukSU2CqryHMz/g1rlxwRtX6zCIx+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3580c328cb539d7a7e35b14838ac9b3dda5a36d1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4ebf4880e5ba28b8f39d7a55dd26e330349e165e","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160428-1.0.tgz_1461879631948_0.8235606146045029","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160429":{"name":"typescript","version":"1.9.0-dev.20160429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160429","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"03d8ae75fa9811f449a8d3efcaa0e4ba4fa5ef94","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160429.tgz","integrity":"sha512-lMpp0ma017bNheZwQNgbDJh1E0pg4xWNFVJYavjCPiyhKpdfZQt407/bcS6U8WBiyO8uwFbJxfap/7n9O0OTvw==","signatures":[{"sig":"MEYCIQDFGXUlVgIgS+mfUx4/JJIFEylmeSUKGf3NV66lRnZ0NgIhANCrRcCQqee5WkGtanQ7hc6jB8M5BevJY0LjYlOK07Ns","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"03d8ae75fa9811f449a8d3efcaa0e4ba4fa5ef94","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"91201211f438ff992ebc28ef94ab0bf4fe563930","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160429.tgz_1461910068825_0.3978662225417793","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160430":{"name":"typescript","version":"1.9.0-dev.20160430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160430","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3cf8c3e1eb66c8eb4ffcfadc22c24e6c149e34af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160430.tgz","integrity":"sha512-a966gupqhL0CeWCYLvtG45bct8mDYuC2xaHyWjdf8nJRT+zY8ZOa7QdRlKO6HST8gzgdhKu1+18DK+HJuyrWYg==","signatures":[{"sig":"MEUCIQDeEAD0p4DpFb96ZXNcZ317yKWuEPSMnB4tZx4AA8nYtgIgEu57W44fQmL+0lb+i+tQlOLAd2wMxxQIGPlTPsHv2CY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3cf8c3e1eb66c8eb4ffcfadc22c24e6c149e34af","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d1b60f8bfb6ff63521b36ff9cff024da2d544363","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160430.tgz_1461996469658_0.4692409059498459","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160501":{"name":"typescript","version":"1.9.0-dev.20160501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160501","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cd2d54f7f10cef7a4c531289eb80c13725117d3d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160501.tgz","integrity":"sha512-9PCo6DgJprfTzldp7V0HHR9DQQjSLA1j8LpJdv12I9OMSOGcKygnVUjB0wWRYAgZv3DU4jJH53RfKh7vXRGThw==","signatures":[{"sig":"MEQCIBypKs1+L9UMkUqK2bn+4B3dgIZHoW66geJwrF8VaHumAiAU9Jx1RhRoC1QucI5HnxAPUKLpWJNhATYpZOoX3EQ1DQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cd2d54f7f10cef7a4c531289eb80c13725117d3d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"bc5b6dc19ca0c9d2391eb24ba035775dcecda7aa","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160501.tgz_1462082864543_0.1551774051040411","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160502":{"name":"typescript","version":"1.9.0-dev.20160502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160502","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7d56c329f4655bd5cf7f957e78dc45c64e6300b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160502.tgz","integrity":"sha512-yCKO7MRsI8miX69PlzCYYz0RNOvMbKR2NhiwjouGVA4DA2SHRsndnHucsnEuUQQP5Bf/mzj3AXLu9SswqF34Pw==","signatures":[{"sig":"MEUCIC/dzevaHG0jkOZmBOmFr0vVp3k9DMvQAvkgxdS/1EQ5AiEAnAxiB0ZEbjBEEDk+cBa/8T+kTyUi/5uqQT66JB2afHs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7d56c329f4655bd5cf7f957e78dc45c64e6300b6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"10d09a739b1264e5b30fcdca826b4c79f12f8b3d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160502.tgz_1462169265627_0.5442298646084964","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160503":{"name":"typescript","version":"1.9.0-dev.20160503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160503","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"600898119e3301f26a184b9aba124d4ac9f427ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160503.tgz","integrity":"sha512-ceEwU+PzxcttdtZNOtTt1jl/P2sIlsyXprAv+NJfMaOoV8YQGPx6oFJKu7VLKFbFVhEAEgkowyhaEdtwh6Wbww==","signatures":[{"sig":"MEQCIHvgjyzxTOjcv6Z+nwpY4ShsKAhrludK7G9bC92horIaAiAiYNPQoX0uH1/VpmeEW315KboqdiowYcqxfMWr+E1Kpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"600898119e3301f26a184b9aba124d4ac9f427ff","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2ff9c915a02f07a37a1f135d6e7765399e113f0f","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160503.tgz_1462255676770_0.8820939129218459","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160504":{"name":"typescript","version":"1.9.0-dev.20160504","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160504","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"02aae60e2094556569a9117a89ae4a36b73c4a0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160504.tgz","integrity":"sha512-okwHNrhkx1PL4hoXBHcN10t7DRIx9guMVhJqbQZc3c4SHhwXeuuV83Qunkz7QNU/dnaTTdPBBLUIC0Mjf7IhtA==","signatures":[{"sig":"MEUCIQDCJrmDkOhDdbGrxlP1pIAxKvKoeGzz967Ym/RTlXmbHQIgc2PldCxaNtoar2zpiU/U2oLkLJ8EXUgE9NLoPdlPZf8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"02aae60e2094556569a9117a89ae4a36b73c4a0a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e9122a9f34079d865ea6bbacc5e0406d9d4c6b8f","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160504.tgz_1462342059888_0.9334118121769279","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160505":{"name":"typescript","version":"1.9.0-dev.20160505","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160505","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"24bcdfc86e448418c1eefcaa9950b657822cc536","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160505.tgz","integrity":"sha512-NjrS+g5EUIpSa2PEvClqcpRGKggcjCCA8TNViTvyfrWdX7Ezw+FqjU+/wQGK9q0VeHMIMlTURTO2ZhcoEgALGQ==","signatures":[{"sig":"MEQCIH897lTWboIdcU3cIkX9ZYR4Ah+EKp63ngY6RF+POaqCAiATp29PfBzgJG6HU63SBHvHweZt5Q+IMblkD3YSOMuL3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"24bcdfc86e448418c1eefcaa9950b657822cc536","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"674e84bd26854e835f783ab6411ecad353440e07","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160505.tgz_1462428464409_0.8521364210173488","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160506":{"name":"typescript","version":"1.9.0-dev.20160506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160506","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"19f79b5e30512217f0d1fb989ed18ddaeecff7c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160506.tgz","integrity":"sha512-79kkjefI1Lx1omwz5bKBR8DgDnoVODuZBdpZXbAYHEYDqzfkK+prB/nl+cHuUQ0FgP+/QdOtxtLqVL2uFKaXBg==","signatures":[{"sig":"MEYCIQCo8UCxlPASKC9ouu30GNEb2um/s5F+CFR4rzuKhQfPZAIhALO4WIiAH+azc3RbwSUp6nUrM0nInE44D/yqZfw7SabS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"19f79b5e30512217f0d1fb989ed18ddaeecff7c7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"bc6d6ea49a855294eca44323c269ed13ada0ff05","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160506.tgz_1462514872745_0.6224246406927705","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160507":{"name":"typescript","version":"1.9.0-dev.20160507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160507","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"91610cad5e4f5112dce731ae36feca97445919f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160507.tgz","integrity":"sha512-MbL1LqR6dUBe0lJNmhvPVDhBFBDKELkajVCSJ3Tx7QwlFj2kYNrIJVqbrZ2XXNyWaIGXhc0z+ny26aJTru4EUA==","signatures":[{"sig":"MEYCIQD05VYoaxXUNzQtRBqLnjCTXClFi6JCUxKruPlSecKgoAIhAIN4P/jQAJv+qFwCBmMspTlkYA5WWTJrsgRudLebYpRK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"91610cad5e4f5112dce731ae36feca97445919f0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"955cc69c70c0ccb4030357e4e6808fff740503ee","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160507.tgz_1462601283484_0.10752718057483435","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160508":{"name":"typescript","version":"1.9.0-dev.20160508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160508","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c63e4ea69ee05ebb929202b67751b78d34f39485","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160508.tgz","integrity":"sha512-vhbFzqTTehQ3tQJWlMw3hhhgbMrHDiMDp/42Ex4jesdR6yrWaH4z3SqqBghnFhZpnGU0B/rn/C7PkygSXnnQ2A==","signatures":[{"sig":"MEYCIQDDne+8+NCtfY9dIk/vzfnmgp3xNYmSkX/vvygQPXiwcgIhAPON+V9xD+xzC4fbAaEbgRxnG+mewJPL+s47F32H7T+/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c63e4ea69ee05ebb929202b67751b78d34f39485","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72c19ec80603bb129f5bcd28e422263bdc59a67a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160508.tgz_1462687665522_0.5605683689936996","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160509":{"name":"typescript","version":"1.9.0-dev.20160509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160509","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a42783c7ae63e6ab0356017f2e90a81669ff8af6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160509.tgz","integrity":"sha512-KCQPBpLQkOJUwk/RzG/m2HJ8LGQWRmzvQjPuuCqexvzDeFp8Uro0KAxK/kgitkyB2lDkTua/1F1+K82/ksteEg==","signatures":[{"sig":"MEUCIQD0WRF3stCw9atcEuphISo66H6KTAH/9U/+l9fIH/J3pwIgNGf5RJDcL0/CLYKO6W6zuX9Arong3ZvRAJHOeQHMwdA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a42783c7ae63e6ab0356017f2e90a81669ff8af6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"72c19ec80603bb129f5bcd28e422263bdc59a67a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160509.tgz_1462774058200_0.2839383187238127","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160510":{"name":"typescript","version":"1.9.0-dev.20160510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160510","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a692b160bf8b8028830b7d8ba6ccfcf9b2016af4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160510.tgz","integrity":"sha512-7XCT2EbN0E6DZhoi9VVIwxXEOpF5zS8BH24ZJKZ9fB0B/AL1l2JVmqbH9TwDsT+mO03mM4GhbUYQf9BlsfCnKA==","signatures":[{"sig":"MEUCIQCsdAplCGFzh7PR/ryR3G5Apj0qyYsjRuWdNaSM4yk89QIgH/UhpA17yP68SLVFAQuxRFHrRe6/5u8vUSO5uISyN5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a692b160bf8b8028830b7d8ba6ccfcf9b2016af4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"16fccf5d38457510e49c5e49af87b161083a46b0","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160510.tgz_1462860511997_0.8680063146166503","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160511":{"name":"typescript","version":"1.9.0-dev.20160511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160511","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aa26c9646737bc2db5b62619d91c25336eabbf51","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160511.tgz","integrity":"sha512-4sx6Kthy2QKuCPEpOnPlt+QU3cCGbfZ5u3rbdgmkCaTZDi9NgCF/ZQRWrOQqTfwFtwsS5AP3YctHFEcglYLv+g==","signatures":[{"sig":"MEYCIQC4UwggZvXMHBXOr7hjPfkzzwIrY3c+Zm+r4O1mLiAhAQIhANcs0l6D9+mknc49TTHsDhZMdbrXQaa/Q8Y+tVi6Z7kA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aa26c9646737bc2db5b62619d91c25336eabbf51","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"b68e93966a976f1609b78db023f379263081722f","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160511.tgz_1462946872047_0.8531200606375933","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160512":{"name":"typescript","version":"1.9.0-dev.20160512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160512","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ae6260f63c8bf3103d40a1b2ab7392747ffdd4a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160512.tgz","integrity":"sha512-D8pQtsPG/IXdsQFrogg+0AvGAz9rs99ZLsWNYAG9xUoNRJQAEr6i6L3iWsSclaqugjX3ThYgZw+A0AxefKbZmw==","signatures":[{"sig":"MEYCIQDKO5IgPOu8rM2cs0U/Sy8Er9GkiewPiA2fPBw9+FleSQIhAMOKHwJtOWMGlL4T2a3me0nN2WhD92pldjtpfYT8O8T5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ae6260f63c8bf3103d40a1b2ab7392747ffdd4a9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d8d5dafe1a701a0b9466e53637f0ff3c63d55835","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160512.tgz_1463033278560_0.7497424657922238","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160513":{"name":"typescript","version":"1.9.0-dev.20160513","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160513","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1e41c70e7ec2544bf11c9b2ffcf67054fb90aeef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160513.tgz","integrity":"sha512-RABOhOOcKKt/19z+6XnNL44x1FTC8jHhlcBxO6LYePkUWVH/HYxfcseti7RRpTL9KhDOgc3g8+J6pJ9dmUgJNQ==","signatures":[{"sig":"MEYCIQCabLsECbkrIjj+YUfvyyC89lfLCTc0HAbmdmoPl+vq9gIhALbed4ivqgmuNtZ5d7hcJteCIM5Ig+P4GkYiSARBI4R+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1e41c70e7ec2544bf11c9b2ffcf67054fb90aeef","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160513.tgz_1463119672955_0.38495120662264526","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160514":{"name":"typescript","version":"1.9.0-dev.20160514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160514","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6024bc10d8a953b271232ee3379d472cf0b1e206","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160514.tgz","integrity":"sha512-vfAjcqxmBbQsQdzIPLeCd9eKmWPLI+p24Mp7JefgOotoGsZcHzvNMDNIqn3mz6YVglNdlBBMPYGWPGB01MQfcQ==","signatures":[{"sig":"MEQCIFLxeBKLtPZTd3LBEWR+SEpdn753DGzcsWJrQDXYPFJ2AiBXK8aDS1wwiByh0J3xAy9Xur9EanwBlcVYmDQrKPq45Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6024bc10d8a953b271232ee3379d472cf0b1e206","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160514.tgz_1463206056860_0.8671938341576606","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160515":{"name":"typescript","version":"1.9.0-dev.20160515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160515","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7cebafc17db5739a0b7e1bd2b0676356ddbe8015","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160515.tgz","integrity":"sha512-N3Dgpr13h9mZbH9dYaoSEDy0fjJlD33bS/CGOStKEAj3ggawMcwz598SrA4KA4LfCTeJFVv56zkuPFcYIOGycA==","signatures":[{"sig":"MEUCICY++PLOrqN8ojeprfDyKGTrmj2rYg4ZJ7lekWP9pjeqAiEA5XFmZ8PiiG4zWA87iTFAui1tBp/2sgPzJWAuFaZDkj0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7cebafc17db5739a0b7e1bd2b0676356ddbe8015","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160515.tgz_1463292466119_0.6810538019053638","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160516":{"name":"typescript","version":"1.9.0-dev.20160516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160516","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0428e87817b8cccfa578f03a3801bb2cc95b6ebf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160516.tgz","integrity":"sha512-sXGwE2n9wFGwgIItiZtb/YMzv64c9pNWDydjx2yb9N9+mNhMJkDBYbzjPVc/in3cMQ3mCvwnYf4dKHZTM1qjzg==","signatures":[{"sig":"MEQCIBFmajzyhkJyAHvBxVPyi2lTrqJ8IBgj7fsh1LY7eWQfAiBhm+fjMaiocDeUK1HfdnCidmCjgf5D22Ri1+JuLZz8fg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0428e87817b8cccfa578f03a3801bb2cc95b6ebf","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cf749307b9c5f100514964974382153fb5ddc172","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160516.tgz_1463378869648_0.21358249825425446","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160517-1.0":{"name":"typescript","version":"1.9.0-dev.20160517-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160517-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aedf47b5ef7eb3d995290a5a8e863c37de405635","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160517-1.0.tgz","integrity":"sha512-BR7ESSfGBDjzract9kiMoZIU5vk0UBUr5m/AArS/2uyRWOKkf7FhpYgVA7DuK5qUH2TB0ibBgxBBXZqz7yDLXA==","signatures":[{"sig":"MEYCIQCv+G44plLcDHAu1E/Es9ZQMD5Dr6uGmDlbTD/4Kz9lEAIhAKU8bOk15zWUseJbuTFSHRq1af+DSGiRzkzgyO7dpvI8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aedf47b5ef7eb3d995290a5a8e863c37de405635","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3fb16f5930e32c9e59a52fe978678e9d3b195e76","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160517-1.0.tgz_1463465264772_0.694688108516857","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160518-1.0":{"name":"typescript","version":"1.9.0-dev.20160518-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160518-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"764c7fe54fccf976fbb42070d355cdd25fb8d97f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160518-1.0.tgz","integrity":"sha512-/BglgdFR4+z9xgJfoycNZLl8bwJ+lriYV300bJyJKfo98AyhuDGTk5zElnwR7u1fYtbaEbrakVq0SqwIGgkDGw==","signatures":[{"sig":"MEQCIFjYOh8xFWXvp8jQ72SscuwrFPR+qHcOWUeLYns0mKybAiBrrwo6Gr99ou+/5lb/L7lfQU1eN2DtMnnYF7jHKtlPFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"764c7fe54fccf976fbb42070d355cdd25fb8d97f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c62b6cb6fc7d0b01696816e04dfb70f68d826541","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160518-1.0.tgz_1463551664224_0.10587316239252687","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160519-1.0":{"name":"typescript","version":"1.9.0-dev.20160519-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160519-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8bc100161ada9e5ee77487ee05d5004e2253683f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160519-1.0.tgz","integrity":"sha512-sCQhEXK21DHAiJaGIzt+4u2anO66OHkOQ4wytb5syQpqpOOkbWxpHzvk4rHFmamDuobRE0rBogZkp/bGw2N8Tg==","signatures":[{"sig":"MEUCIQDlyntq8VhNrAGU+5tByFS2ANINU+RlmS8gqDxzdqEBmQIgXMC/Sow5E5Xo9SxAdqtwfNFs2FDKgv3Xbm3yBqVUMq8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8bc100161ada9e5ee77487ee05d5004e2253683f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9ffc7a9df91e488b120720306c8f4a85ed86ab7d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160519-1.0.tgz_1463638111297_0.44213212723843753","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160520-1.0":{"name":"typescript","version":"1.9.0-dev.20160520-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160520-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"36f18a2e69c7d91fe7255d867b55f2f295cafe9a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160520-1.0.tgz","integrity":"sha512-QLaxVDhGENcApzUkwNqHjFasmi/yIsQ/sNQkWP3OSO0PGbUxpIXUSVzd5BJuabOdxyAimKHCJJEjVlETietbHw==","signatures":[{"sig":"MEUCIQCEovjx7kf+mB135kqx78+9VXD7btFelICVU9Fdo63qRwIgAjf039yA/o34UsDhpD+bseKiFxQUcxdbIzCBNmRK2Xs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"36f18a2e69c7d91fe7255d867b55f2f295cafe9a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f95f51fefcc3d169972e3f2e4275e6e97c105a81","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160520-1.0.tgz_1463724469221_0.14544494962319732","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160521-1.0":{"name":"typescript","version":"1.9.0-dev.20160521-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160521-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2dac650ba25dd48247c1acef041bd0cb233f3d0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160521-1.0.tgz","integrity":"sha512-OZBOO8plDkvdR+GPx2fSQPOLKdkLAWOdERoO++MQFsk6YNw8/2dNnXNmntSofGVH+BZaQOhLJnb969uszYd3vg==","signatures":[{"sig":"MEUCIQCFYrRyd+g3Ebbj+sJUyVjwadLaUctlb5N1TK/Dqt8uvgIgBZ97Vagh2satApo2PcYSMmmnpa87X4Tm6sC0fKVntSo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2dac650ba25dd48247c1acef041bd0cb233f3d0c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d69f57bc1db5e68cf7b2a253fe9d3c1f6e348fb8","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160521-1.0.tgz_1463810866444_0.45348995574750006","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160522-1.0":{"name":"typescript","version":"1.9.0-dev.20160522-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160522-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6e79581b1cc4ffdcd16d95b80e30464f7d370aa9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160522-1.0.tgz","integrity":"sha512-0VBfALpozk77EQAAw0aqf3FAF9ZhDRXjmDxt7sFFr6F4cjeoIoCxFtKu6lDjw52Jn6cjGrts7hfHMVcRnFO2yQ==","signatures":[{"sig":"MEUCIH6tZ6FO4yhnbjyHb2aEJ8zqqIZ3vguNVceUo1Jf7JN7AiEAxX7uEWD4lI6/jZitSSdWU2XI892IWCB8jjKUYP493+4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6e79581b1cc4ffdcd16d95b80e30464f7d370aa9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3f9efa039aff8db77c791ddad2dc6c933151f963","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160522-1.0.tgz_1463897250442_0.7497013963293284","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160523-1.0":{"name":"typescript","version":"1.9.0-dev.20160523-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160523-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eb9fb14d437ea8def6083e1be6946c4c3d235465","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160523-1.0.tgz","integrity":"sha512-z7B7r6YfrPHLZSpGl9g5IeSCaI1M8fWHCWdFedm3XwZjIMwF+Ubo1sd1biIiPxptGQbdrSaWdJpgkXMf30sDlA==","signatures":[{"sig":"MEYCIQD5VNv+TTJxuJUZtBfk9hZva48BbvkLebHU/IFcLJKBiwIhAPq3FTNfDfkH9pwg58FgU6ukHjNimBExmzKHQVJpA/vY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"eb9fb14d437ea8def6083e1be6946c4c3d235465","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3f9efa039aff8db77c791ddad2dc6c933151f963","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160523-1.0.tgz_1463983642667_0.24825826566666365","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160524-1.0":{"name":"typescript","version":"1.9.0-dev.20160524-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160524-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cd0e0433924456ae6214fae6f7b177407bb323e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160524-1.0.tgz","integrity":"sha512-ioxLSUYY8syiMI/FqWXHwXvpox+h0pE0WvqhG/lAn7c9AOELHRxhdx9/rvw2y+YN3K7QRv/0gqN0KdCbajJs+Q==","signatures":[{"sig":"MEYCIQDCg87K8vj/RFvxHXiOYPCqkNFxNMGP78AhE7Oeqe4n9wIhAOBySOAe+l1VK98Wy4AZc6TmARFF3RHLW3qIqtAQcr/z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cd0e0433924456ae6214fae6f7b177407bb323e4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"27292e4292554a219ab3acd1e87935a4871f2979","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160524-1.0.tgz_1464070110959_0.280155367217958","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160525-1.0":{"name":"typescript","version":"1.9.0-dev.20160525-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160525-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"36aeba8ea2b642bf278f747722789ab653dc1ec5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160525-1.0.tgz","integrity":"sha512-di40ui/RDXCkdZx6LdNHCvLtTU3OEZGuuEdPKP9x4CFeihgIVSQumS634QIwM1dRaT6zHNZiIJ5DoUmXSCnaaQ==","signatures":[{"sig":"MEUCIQDKOwURPBjaL1kDHYe0sSgdaZC8vsiJnjE3P0r8irhCLgIgAT+Kc9KS55vLninaJ9gnOJ16XnY9O7PH96ISMcSQ3eQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"36aeba8ea2b642bf278f747722789ab653dc1ec5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7173fa8d024d6a251d5b4f3c4a24b0b8adc4f12f","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160525-1.0.tgz_1464156448928_0.2952012966852635","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160526-1.0":{"name":"typescript","version":"1.9.0-dev.20160526-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160526-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f5402223ee142848bc90aa819b8421b8c8ea96cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160526-1.0.tgz","integrity":"sha512-3FcPH9XZxKsd68gN1uBcKvCBuza0N9nWqpCWHg/9d6AnABM9MYZDV9YPpCNBrtGiZuz8Ljotm9+dsHxyTGDR5g==","signatures":[{"sig":"MEYCIQDRe7jvpVeNKmci0vq6ESlX1m1dEDx1SWERpCof9AuYcwIhANM1pBCp7wO0pONcYcVf1hgcJ/XlmfhCEHzzGN5Vq/Yt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f5402223ee142848bc90aa819b8421b8c8ea96cb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6173696b257f7c2d9673917c51c3a7d07c05fbfc","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160526-1.0.tgz_1464242917310_0.45966357295401394","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160527-1.0":{"name":"typescript","version":"1.9.0-dev.20160527-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160527-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b05887fb272acde401262d5972299e4cd7f6f27d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160527-1.0.tgz","integrity":"sha512-d3936RYlUO9ZxDSW0TkjJ5cuWx9Ha9+MmjWMBYcX0skXVvrBibsPzp3Y2ImCHU9U/bMPNwyHsNm0hXWLLYC9Sg==","signatures":[{"sig":"MEUCICe65RxmTMsU6Ks9VjzhbrSooXKhUofdH3we+mW8/VmWAiEA2eYoX3kAvOikoq99enisnC3lo40wNFQQZFZjO/OgXDs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b05887fb272acde401262d5972299e4cd7f6f27d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"154729d40e255182da274dad7b7c383c3e8c9cfd","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160527-1.0.tgz_1464329292247_0.18406790774315596","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160528-1.0":{"name":"typescript","version":"1.9.0-dev.20160528-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160528-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"835ac1c4ad6fb36484c14d049dc60a5b1f61862b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160528-1.0.tgz","integrity":"sha512-8IPZmJgfxaTr6QFDFZC3REcawDFJIBxjg2KmWGILiavcaBV5/HMh8Jp4wVe0IFC/Vn+/jWq7h6SCxcpe+A7b2A==","signatures":[{"sig":"MEQCIE55t/rq1ZeSbTPFIhPUrg5wRxpvpv+cJq7Nqtmk1kyOAiAaSXcOMOH6ejgFNWd4NlBqoKUehbw/tu5vtlnrD/Lflw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"835ac1c4ad6fb36484c14d049dc60a5b1f61862b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160528-1.0.tgz_1464415682692_0.8020553400274366","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160529-1.0":{"name":"typescript","version":"1.9.0-dev.20160529-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160529-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8a843079b6c72dcbdc446f1339974b5bd922684a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160529-1.0.tgz","integrity":"sha512-0lu00yuJlmwmspwzrjmv5BCT2JqAQyA6bLOfcYzeoWggOyAW9VulqPpRaoM11cc4Q6+Oin/2SyA+Q8miXnc2hg==","signatures":[{"sig":"MEUCIQDiJdibehZMNVrsX+o9xSc9AALWPwonlhSrxDVQuH2CAwIgbKgEb6P2NwLICl2kfhWCSgCxNyF4ZnuW50j/Z9zIHP0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8a843079b6c72dcbdc446f1339974b5bd922684a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160529-1.0.tgz_1464502084183_0.12294790963642299","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160530-1.0":{"name":"typescript","version":"1.9.0-dev.20160530-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160530-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d906c96e572b20e2d3d7ddd617f034b00da973c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160530-1.0.tgz","integrity":"sha512-GmGKi36L7WOZqpmXijzffy8QRbfQ7k1DWPSXfzDI4FDH9UhbfEGlv1J+SkxPJZwF9BjhVu471GZYTg4mVgOp0A==","signatures":[{"sig":"MEUCIQDm/1ZFoJix4nA3pq/GiIphwW1+ZmTgNgNIAjBYcTwl1wIgdUhg4wFCgKooi8yI1yLaZuVKlqLqeXWlp7DByDNwrIA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d906c96e572b20e2d3d7ddd617f034b00da973c6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160530-1.0.tgz_1464588463043_0.9400265559088439","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160531-1.0":{"name":"typescript","version":"1.9.0-dev.20160531-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160531-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0f5beb937622a0fd10b7d030a686aa0a9f34fb0f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160531-1.0.tgz","integrity":"sha512-HxnOmZhEYLANcJ0LrYzz3gs3wWYIVLTgm7QroxwFoWAz1MG2OvXHFmWpaw7+gw6QjWcCzcUaLkBNzGZ9OHXfiw==","signatures":[{"sig":"MEUCIQDQDaj46/Hb7QhvzhECBO2jYZ5ecqb3xrZDT0FyZCr4dwIgGa03VnuAHjRoPjiXn221uTq0ktLho8qf00iA/vfc8O0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0f5beb937622a0fd10b7d030a686aa0a9f34fb0f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e9de47f6a95c29cc0776c4ca402df804aa732879","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160531-1.0.tgz_1464674872374_0.29905563429929316","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160601-1.0":{"name":"typescript","version":"1.9.0-dev.20160601-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160601-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"41fd19ecd08ad31bc298473eea82b60dbd1f110c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160601-1.0.tgz","integrity":"sha512-kWMRLS31fYKDTsNosyDXrhQ5j6uj8y07VUhjKxerd0nLhyyMX1wWhkkFToQsjFRBGO8sp5FL4tCLp9KXX8IVUg==","signatures":[{"sig":"MEYCIQCAdD0qxoeoPZt+QaeBIZgxqm0Q5WiQ5OaDXIcEg5Uj7AIhAMQqlFYX+UH0pAszReQFrg1w9Hx6z7hqYBUvMtfnFPDX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"41fd19ecd08ad31bc298473eea82b60dbd1f110c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"166f399d176486a1247c54dcd6ad4a18e33c18f3","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160601-1.0.tgz_1464761284684_0.6037666590418667","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160602-1.0":{"name":"typescript","version":"1.9.0-dev.20160602-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160602-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"780f2a90b37e6ffa1394a714560c5e760d6bbc95","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160602-1.0.tgz","integrity":"sha512-Rf0PC6WDHm9MA+4WZ9/www+QYY+O43j6/CN8B5suBEPorS19i0L4QTgQgDlExMe8lMAurgEiFhDabGCN/PpLgw==","signatures":[{"sig":"MEUCIQD22AzMgJy6jSnmcIkumK8kOFna1reLfBKwye/bckW0DgIgNNtGbABLsS7RF8kgGKK7SaVInnInIRbDg7KjVjV3F4o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"780f2a90b37e6ffa1394a714560c5e760d6bbc95","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"166f399d176486a1247c54dcd6ad4a18e33c18f3","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160602-1.0.tgz_1464847696126_0.6565910340286791","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160603-1.0":{"name":"typescript","version":"1.9.0-dev.20160603-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160603-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4612e231e5802807c3af0338a2a4c7a1fe5f11e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160603-1.0.tgz","integrity":"sha512-lkP+OH4KdJX8kWffc+r0crxkJzcwJ3PBmzjJ4Yi69JsI6R2J/E1/NLmsluCAj6lk80d2lPqQoDfEBXjMY37qMw==","signatures":[{"sig":"MEUCIAiDOf6kHUzEtuvWr2mqXmmvPbzMS0xP8dqS2isq7fibAiEAkWKtKVwrb+ugTyP9AH7sZJr6n0kPYVNAER1T57WBVis=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4612e231e5802807c3af0338a2a4c7a1fe5f11e1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3853555b49ccea3a5bba1163d983571ef25cf694","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160603-1.0.tgz_1464934094365_0.31391331111080945","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160604-1.0":{"name":"typescript","version":"1.9.0-dev.20160604-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160604-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"900bb262c8e657854c2f52d7235610a95fd01e3a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160604-1.0.tgz","integrity":"sha512-DfZvFf7rknWZCRaDVkDD0MVj7/6Z6VqK7VJgtsBDwKhOyiDgA0519pTLwj7DVDLV1/mXfGpw7kIx/WZhNJaiRw==","signatures":[{"sig":"MEUCIEkXqgO9f2FJwjXQ93uYJ/tybomK71bzue9hnok6DC8tAiEAww9zZ5naaHPCPKJJxmqfg+IN02CPxEjnUIlZGukj8bg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"900bb262c8e657854c2f52d7235610a95fd01e3a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160604-1.0.tgz_1465020484312_0.9461174772586673","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160605-1.0":{"name":"typescript","version":"1.9.0-dev.20160605-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160605-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1b71a635c58f4daed601f153e6832c53b611a8b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160605-1.0.tgz","integrity":"sha512-Z5ZcQ5dmn4RqiZWHoXAC6CSwylpEtBOZH5FkA6jBtgbdUEce+whfXjm5C9RDAyFvL50z5iFGCxwBniFxHEqlQA==","signatures":[{"sig":"MEUCIGibtrA6psLSntEsKuowtW1jdl2Z5n/4+m0HDE7tURZhAiEAkGUm5u6M74Sn26slc7DZ4J9o+KpXKseUyBoiIQ7OEog=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1b71a635c58f4daed601f153e6832c53b611a8b1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160605-1.0.tgz_1465106892507_0.898524829884991","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160606-1.0":{"name":"typescript","version":"1.9.0-dev.20160606-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160606-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"90e12c913882508c0438b1dfe862a4e96cd06b9a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160606-1.0.tgz","integrity":"sha512-SGCPCo6JqjIs047PikAL/n2pBullTFmTtltL9qGbfDQyzOSH+SHb2RZu5FGjE/C/y1OUDZ5QJhDShTK/iQusgw==","signatures":[{"sig":"MEYCIQDSBy2bSzUVWi9vkEk/TjVzHrgmuKDlF5NmokRtyoyPKwIhAOCJwHPvDd8rsRU3b/7NaNUEqnUTb8qRRmC4NKHlnwnn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"90e12c913882508c0438b1dfe862a4e96cd06b9a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6dcd5877a072193830c18687228e742e62e1fd24","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160606-1.0.tgz_1465193290946_0.7177782678045332","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160607-1.0":{"name":"typescript","version":"1.9.0-dev.20160607-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160607-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"df9c78d5706abb1dc51dd00a8012f7ebf3cfee23","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160607-1.0.tgz","integrity":"sha512-5smigWO0AdVRFQLt4re6hqVIi1zVLcbgRtR6ZcBtAY+JKo7wLrOQz1QUS8kKMrjA0quuSUHBim9ceBnYcK46gA==","signatures":[{"sig":"MEYCIQC6gYKojEuMQRHPfTfSpjFKptH6zl+AaoNYGYVl+zfLUQIhAI82J08k5ynTbELTTbB1WVjWtfigqaLrexNeaptfgm1r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"df9c78d5706abb1dc51dd00a8012f7ebf3cfee23","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"52d8a78419b6ff27499274ade4a36ff3cfd058da","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160607-1.0.tgz_1465279702182_0.8184833158738911","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160608-1.0":{"name":"typescript","version":"1.9.0-dev.20160608-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160608-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8771e06f5bd59107c731ba0ad9b4a6976209bbf2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160608-1.0.tgz","integrity":"sha512-IKevtXb7bgWQijqM3+1EvP/1qSD5/3+esaIgf+BYJEd26NcgLNW52tXVDUTnB/lEIKSExdjmdvN5v5eEVGcIFw==","signatures":[{"sig":"MEYCIQDN6ZpE8sSNFTub3VJdLpjKKYdaD8LbArRneN/i/hv2vgIhALqX3zUcB2AuIZjma85DEKHWK9XRAuDysAPf72cdqWg2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8771e06f5bd59107c731ba0ad9b4a6976209bbf2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cdf4cded154b942d65bd3d645ee8d67adae4ecb6","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160608-1.0.tgz_1465366110815_0.4723525489680469","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160609-1.0":{"name":"typescript","version":"1.9.0-dev.20160609-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160609-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8784329a17d72407881d39fc7d49ea1522e39c38","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160609-1.0.tgz","integrity":"sha512-lMcjuosu/2F8nWQI0Pq18U5oMqObSiPC9uLLO4p0ae6XQcGDH0KcqrBR8vND4BCcn3YLWD8A9I8H1XiC1jiGYg==","signatures":[{"sig":"MEUCIQDiniSEN7emDf0XSW3BEgaX+zXYHFJCtoBOlcZwhcLmgwIgMZKI21HOA3MyIvYnjdMVYf8Te1El3AzFYi188zqKkxQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8784329a17d72407881d39fc7d49ea1522e39c38","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9e122909d4343e564617414dc7151213f1bf73d2","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160609-1.0.tgz_1465452477903_0.5440968133043498","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160610-1.0":{"name":"typescript","version":"1.9.0-dev.20160610-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160610-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"768216dcc2528b9445b5cecaeb599b22ca8a3072","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160610-1.0.tgz","integrity":"sha512-m8Q3hQuPvFEjxZo7Y7hp9k0xtfkZ2vsnV9PWOie9mNpVwzyrRqKhWiGDldr6jGYcHdXJ8RWcTOF0GhM51n5wlQ==","signatures":[{"sig":"MEQCIE4bT9xPNkZVQmVqr3+y2pqwYFa7ORe3Az5I/OPWAdyxAiBMAJpwK4Tobt9sxmS9i2NvlK5NzTmhA5aAVVD9x/mmqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"768216dcc2528b9445b5cecaeb599b22ca8a3072","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2b46656b4a0ff5528c6d6316823c183897ff2277","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160610-1.0.tgz_1465538901967_0.9905812302604318","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160611-1.0":{"name":"typescript","version":"1.9.0-dev.20160611-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160611-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"00e9fbae5e484049059b26f2042c13f0e324eed5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160611-1.0.tgz","integrity":"sha512-9f7dllDHqdztwRVpVhiuHI0v2DP+J3GfhXmPJrbL+glACRWYkt4Txe29BOxJAnqgoyWHqVj6NqWPRFSi7EAF5Q==","signatures":[{"sig":"MEUCIDK8WO4tuaHr5QGpdoqyIW6Rn/x/zvIbvCtFse8iR6ehAiEAkbiJVZwV4awb1JEEfQTiafzogE5XP6IUU+qD8lI6m/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"00e9fbae5e484049059b26f2042c13f0e324eed5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160611-1.0.tgz_1465625305012_0.1377795049920678","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160612-1.0":{"name":"typescript","version":"1.9.0-dev.20160612-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160612-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2ae212f98e60c74bbfca27e48cd2caf50cfcba2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160612-1.0.tgz","integrity":"sha512-VvSOObfaBQoHq4LEIaXjl1I9thm/PyDlDACfS7DhdXEB+nXV4kQUQzHAWR6xlrsNVWDiOgTsp7zF0JhlcwHpJg==","signatures":[{"sig":"MEQCICyOcTWnUk5sm223d886iT9dOa+IBpJlA4ck4K3UydJ3AiBFKNUl7p/21GU6Mza9fu/rHpFtIGxF7I0hX5URTxfGtw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2ae212f98e60c74bbfca27e48cd2caf50cfcba2c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160612-1.0.tgz_1465711707201_0.5763158404733986","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160613-1.0":{"name":"typescript","version":"1.9.0-dev.20160613-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160613-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"49daca27d5aaf2d2606f2d23ae95fb8bb38378ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160613-1.0.tgz","integrity":"sha512-FSoPn33ezg7ml4emUvhoi9RT+Ja9UiHdHJcWFAtJvn4DmhxkTF9t697NPeDU6YOV7n0w6f5zHbahsusbW3eKjQ==","signatures":[{"sig":"MEYCIQDnvaqpix0tiXuPuC1OF+0QOkXvxSKfyHn3gX93uQK7kAIhAOBaB359vech9fWLv+rAEAgRKC7wGWm2c7ITYXhMBZb9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"49daca27d5aaf2d2606f2d23ae95fb8bb38378ff","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"81d1ccfe87d8c872deaebe490d29ba6bb1a2fe88","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160613-1.0.tgz_1465798065856_0.7256635501980782","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160614-1.0":{"name":"typescript","version":"1.9.0-dev.20160614-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160614-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"18c07473113ba76824928f8e5d3d0654c880c247","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160614-1.0.tgz","integrity":"sha512-6QJHKg/Z0Y+SchWS+oeFKsCxYQJDBgHDXwnwqLtBwjl/61jfSbuL5wxsFzuLsxEUo5b1u+vka1wPPrsldniLLQ==","signatures":[{"sig":"MEQCIAdXT+Aw4sXd8JTxdZ64k39ilvQF/qfwZTqrar0L+05UAiAFk/dUE/MZEKvoPk37KTgrgU4/xfbNmuDyvzxmPxFhOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"18c07473113ba76824928f8e5d3d0654c880c247","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f9923efd0981cbff405c03500a397244f0d3f8b8","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160614-1.0.tgz_1465884478592_0.47812855150550604","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160615-1.0":{"name":"typescript","version":"1.9.0-dev.20160615-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160615-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"23374ae3b9b58e87467d1493631a49b31a1a48ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160615-1.0.tgz","integrity":"sha512-3ATNrIJs95/G4UG3GaCr/sBpyJnjUM51x6+/myO9a1HJh1KIvqz3ptsg8E5Mbi8700GbWjCJ2hP0Aj3KVwhH5w==","signatures":[{"sig":"MEYCIQCjY/JY13cRZE+cYRKbaOndo/Ahq1lal8kRUt5CdzxF7wIhAL36ayf64j5h9D0kUg90rze6IcH3OX+VxkPfoog+Zvji","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"23374ae3b9b58e87467d1493631a49b31a1a48ae","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"38c89af6b2d8ec050607e9cf370d35d0e42ea50d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160615-1.0.tgz_1465970888466_0.45856522070243955","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160616-1.0":{"name":"typescript","version":"1.9.0-dev.20160616-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160616-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4ebf5ba11e4035869cb9894eabeba4d8982880ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160616-1.0.tgz","integrity":"sha512-PUyxt2UJNAvVQqW9Cuab9ScrAMrJryDOMhbmvwqLmYJs9G780eVa8GaGahZPMKfXRs7MIkkq3f7pqzvb0jddhA==","signatures":[{"sig":"MEQCIFcEIKV3jAD4kk0uk+mhG1Etm+LhvNTCTm09+ZoLqiv3AiBBTqlpDefI4E9wQ0Wp+ND8178PSmgwSYHoMjCjzqwEQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4ebf5ba11e4035869cb9894eabeba4d8982880ca","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"95ae809faafb7311b33b7ece737bb1474e6e479d","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160616-1.0.tgz_1466057280886_0.7519359402358532","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160617-1.0":{"name":"typescript","version":"1.9.0-dev.20160617-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160617-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"878301d8b4e346d194129f793a9dd1eff18cfcef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160617-1.0.tgz","integrity":"sha512-TpPxsw5tn4AfuSWnVDBRIRzJqfvVE0+3u2TFgJi5IHuQJj6CmDVWukt+ziHeM9dbox3WaVOlsKw4IRghnlLcrA==","signatures":[{"sig":"MEUCIQCUiqAuzU/gooMzv5grEYj/tu0kCwzxDPArJKThX+YvCQIgZEQorRmrHN0d7YktFZUBXipW1CLoJtWkBe3M3sXayDk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"878301d8b4e346d194129f793a9dd1eff18cfcef","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0e6f8eb2bca776acdb11a6cbf45b37b2d195650a","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160617-1.0.tgz_1466143718910_0.10595914931036532","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160618-1.0":{"name":"typescript","version":"1.9.0-dev.20160618-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160618-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c24b81721693f0673def37650f9ffaf1903631fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160618-1.0.tgz","integrity":"sha512-4i8Wph6XXJObeQZhBfeF3HSkgpEn54jgs46y1tfzvmnwehDylvtQXFNUXQfM2bFGIz5zPq2a/fnfxyojEuOQWw==","signatures":[{"sig":"MEQCIGkuQC6+WzPek2pMKJE4ucZofSjJvcQQ3lSdOhMwandsAiA6q9b3pAGpgMFAezmGu+0gOYG87gaHekMS2otPpXNyIw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c24b81721693f0673def37650f9ffaf1903631fe","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3fe546b9eaac9afff44251d2434c21a47c41cd99","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160618-1.0.tgz_1466230081176_0.1526259151287377","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160619-1.0":{"name":"typescript","version":"1.9.0-dev.20160619-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160619-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d9beb66e8eb7ba4808500ca7bc77e1daddd648bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160619-1.0.tgz","integrity":"sha512-QR4dE+fNI6ogvbsikbVfqP1kEFCZTv1ITWpY2gxOBWF/Mn2HAD6o4jdESDKIPg0lExrsIljqC3RpE4u3sNYsZQ==","signatures":[{"sig":"MEUCIQCzCXBkeeDoL9poxAX7F7vFBDPmSj/K3cr4LqBB6f3DigIgcjKXxOzAvpSA4aiIrnWALBntP4qv5zcrboHkYYEF/FU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d9beb66e8eb7ba4808500ca7bc77e1daddd648bf","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ba78d1e35c02f66bcaaec07c56e7b6c754846823","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160619-1.0.tgz_1466316494852_0.11166878417134285","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160620-1.0":{"name":"typescript","version":"1.9.0-dev.20160620-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160620-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"59e112d2a23399114f820a5e5bd3e1a4837f0feb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160620-1.0.tgz","integrity":"sha512-XdZPDbpb4VBS2QXz4gZ3A/LpLZgXCGjgA14a1zz2CfGfLJalHZIU7F1XoDcm4sKR2D9hUr8oQ2puyil3bjxhCg==","signatures":[{"sig":"MEUCIQCzvMZ3UdMWjpJU0/jXkDCCFvMvzWb0KhLhWsjTb+npwwIgBgZd/HRkACLgZmlRPa1Fye9vlcbsEXIXlOxAoBymMR0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"59e112d2a23399114f820a5e5bd3e1a4837f0feb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ba78d1e35c02f66bcaaec07c56e7b6c754846823","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160620-1.0.tgz_1466402890838_0.15002755378372967","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160622-1.0":{"name":"typescript","version":"1.9.0-dev.20160622-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160622-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d3a2e3100cd43cc4b8c5fd618031c146aca35523","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160622-1.0.tgz","integrity":"sha512-yIiu/LkUm7Ubn7fwgr2vSUg8K2HOVGWqFwlnwBjSNE8NLfkJgjw/+PETo57ETzY+2QONFeBxkUEbYvF/Mm7sNA==","signatures":[{"sig":"MEQCIE/NZyboGZ9Ez9E6z6TDahzZgXRrFcmfJxc0B7AOtgKjAiAMYviSLd6BeUKAhWY62PrrDK5JwkTK8AstZeHMXTUVeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d3a2e3100cd43cc4b8c5fd618031c146aca35523","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"12bfb7e98751d7f8b2bb12aa51273aa8a4fbd59e","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160622-1.0.tgz_1466575666395_0.5454677157104015","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160623-1.0":{"name":"typescript","version":"1.9.0-dev.20160623-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160623-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"86448d296743fdd7e641c93467cdb56ee78ad42a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160623-1.0.tgz","integrity":"sha512-DpXYxJSPhCa9sqN5zs2cNGQLnmqqGp3hioGb0IGiBd7Lg0yCcTfSGH6bcKt/g/04TqSlYloL1yWKbBdrvDcTEQ==","signatures":[{"sig":"MEQCIAr8DTudH6s3CXvvo3Kg1IoRZwSxUq35VbguvSXZC71pAiBfhk+eD+2YPBokFkajX3zOpA9bx73cra/X0AlKqS+xpQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"86448d296743fdd7e641c93467cdb56ee78ad42a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9134ed3b7dbe5181a0398c2aea40d30397f2b39c","scripts":{"jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"tsd":"latest","chai":"latest","jake":"latest","mocha":"latest","tslint":"next","istanbul":"latest","browserify":"latest","typescript":"next","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160623-1.0.tgz_1466662076622_0.9902041908353567","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160624-1.0":{"name":"typescript","version":"1.9.0-dev.20160624-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160624-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5d3f5fcf690f44b9d652e00ee9480db1e4e2ecd8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160624-1.0.tgz","integrity":"sha512-XjH0ogzdC5QARz0dbHarwapfDjTJ2D5KcZtJEGdOQ+gw/n4/LCVQL1vdnD141LsejCN3XWaJ4TWIJx72dggzsA==","signatures":[{"sig":"MEYCIQCtGcHaMJromgRNGdsWqHm9+/eYp2mw13MEga+95JFIEQIhAO675pEkujCTx1NIZHMo7rkbPV/BqMCJ40M7X6IWGvg2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5d3f5fcf690f44b9d652e00ee9480db1e4e2ecd8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"69e2f0e4590965ab3f971fee25d6752f726c01ff","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160624-1.0.tgz_1466748508170_0.39683223562315106","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160625-1.0":{"name":"typescript","version":"1.9.0-dev.20160625-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160625-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5fd9d96ea24d0fdd1dffe6f1e275970392d13be5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160625-1.0.tgz","integrity":"sha512-xQspjxGhB0FG/vIfIsm0Gmw+LMq8dnPZXvO1A5bJ/xKINa3YFE6AQ8gXCk6FmHVGwTQLgQJ3aDn5MFbWD8fk5Q==","signatures":[{"sig":"MEYCIQC7dJdSMTu+XcGQ2SzzKHIOz7ia5gYCQ/mRikdSQQxdigIhAI6qC5N9JUemW6TsLmPgQPN513UIDE7NCPFnYRTpiS1w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5fd9d96ea24d0fdd1dffe6f1e275970392d13be5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160625-1.0.tgz_1466834910717_0.11769267776980996","host":"packages-16-east.internal.npmjs.com"}},"1.9.0-dev.20160626-1.0":{"name":"typescript","version":"1.9.0-dev.20160626-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160626-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9947ac4fd4017ee34454e8d2b8c281c7f55e44d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160626-1.0.tgz","integrity":"sha512-ODku1Cc6VnvuHlupcvGU9x4jpsVqYcHU32SD6FQG9SSdGX0Y4RFbT71Qa19JVKDgvL70wAC7h6vmSCW/p8mTRg==","signatures":[{"sig":"MEQCIGMOaq5l95rUhB7rirYvD/zorg1T5hzoqlGUXjijZKGbAiAroilVodQVCDNtqVqzHxATUGBQJTqURBxNFzmt7yELhw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9947ac4fd4017ee34454e8d2b8c281c7f55e44d7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160626-1.0.tgz_1466921317329_0.36675865505822003","host":"packages-12-west.internal.npmjs.com"}},"1.9.0-dev.20160627-1.0":{"name":"typescript","version":"1.9.0-dev.20160627-1.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@1.9.0-dev.20160627-1.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a868521c774b7f76ad468cfcd5d899ede9b72859","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-1.9.0-dev.20160627-1.0.tgz","integrity":"sha512-5q4xP34pPkUPMAspQiigjFJgQjNDygfWGuiSJ5wv+3Amqb1TsEB3DLmIBUfL/L7T0/r/5XQ45f0nJ2yz5FyhqA==","signatures":[{"sig":"MEUCIDjw0H9+ndSDymVaWnu2cAKBDzwic4az16rvmAMqsjh/AiEAqThgC83Lr1dH6eIrmuA2H2s0KOsfrUEEu4kRMkzXAJ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a868521c774b7f76ad468cfcd5d899ede9b72859","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"be2ca35b004f2079464fdca454c08a5019020260","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-1.9.0-dev.20160627-1.0.tgz_1467007710798_0.6816966694314033","host":"packages-16-east.internal.npmjs.com"}},"2.0.0-dev.20160628":{"name":"typescript","version":"2.0.0-dev.20160628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160628","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d906f5c0cee84578913793ac03ba91c655e380d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160628.tgz","integrity":"sha512-pbl+hUyPLCpbX97xjr2A9mhPr3mHtzOwizWVJ02YmlCC/SmQq9KIgAFju0ZxowcJwuar36SC60scVQoXO27nOA==","signatures":[{"sig":"MEQCIEc906wz8rpw1swDzJs7u6CPrHEDZ8zDa3UVtfJ+8dN+AiAcsnK5IvppZEUpZ3HjFx6TLbl4MqeV73Z8QZ3CXulvcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d906f5c0cee84578913793ac03ba91c655e380d7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6be7d9caa60c261f1be6a61be9e6851e835b9d61","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160628.tgz_1467094120337_0.7582901283167303","host":"packages-16-east.internal.npmjs.com"}},"2.0.0-dev.20160629":{"name":"typescript","version":"2.0.0-dev.20160629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160629","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"98d431ed98a401735eae0e998d726c11dcfa3450","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160629.tgz","integrity":"sha512-cM3tKixN/1nQMwc+IVEZzcSkGfZfqF1T0kRtbzvKaSdMxEhPUrRn5Tsk0R+QpoAPnbtGXsgYWyCdANTPBQz2CQ==","signatures":[{"sig":"MEUCIQCat4Wc4DTAel7bRAvlBq/8yLS+8ZNrILzNGJqqpx47lQIgSxv33hLKEJuqjzlWcQ9mFY7hTKfh/CpWJcaCPtSRLZ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"98d431ed98a401735eae0e998d726c11dcfa3450","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"47bee47c7553956988c7188271733f91bc4f7541","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160629.tgz_1467180525137_0.15340073965489864","host":"packages-16-east.internal.npmjs.com"}},"2.0.0-dev.20160630":{"name":"typescript","version":"2.0.0-dev.20160630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160630","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4b9f1ca02eca2f6e4380b5100059cb216b5fe9b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160630.tgz","integrity":"sha512-OfFrMMPxZhaI1LADvhj1iPjsWHQaVAe1DqCPtga3V+KtK6k8ikqPgqVld/yYHCftXJYeKr+tqNKep+PeVSbaJQ==","signatures":[{"sig":"MEUCIHIbjQSQA0dq/AsvqA0jLQecQNKslbiL0eA08mhOIIXwAiEA0UNu50BTW2JB0SuvTWCqiuF99tKmpYWjEVE4iMiXYV4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4b9f1ca02eca2f6e4380b5100059cb216b5fe9b0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7b77f6b3fd88f012a2b1f93cd49505ac5cef1099","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160630.tgz_1467266918023_0.9832048646640033","host":"packages-16-east.internal.npmjs.com"}},"2.0.0-dev.20160701":{"name":"typescript","version":"2.0.0-dev.20160701","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160701","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d42f8b45ab2e569bec8e656c29fa92efaf202d7d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160701.tgz","integrity":"sha512-UzPJaXNO2MdQvtC2jPYiyHLbq679xGnmrWm7MedZxU3evKTUc3lboyMXR8DH0pLP6otyEyKBG7DC1aH5c7YlcQ==","signatures":[{"sig":"MEQCIHvxY+L38+7N4F1BJJ7Ge345ghVNqe1UlqQTlZi4xxwjAiAXf/R8oeHovRnmyVo9ujBMF3XKD9UTuSG4mulUVnMGnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d42f8b45ab2e569bec8e656c29fa92efaf202d7d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"613e2d33b6bebc96ab9fc3a111d61b2a30015490","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160701.tgz_1467353346141_0.8765618782490492","host":"packages-16-east.internal.npmjs.com"}},"2.0.0-dev.20160702":{"name":"typescript","version":"2.0.0-dev.20160702","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160702","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"83f1dd272907306dba804a12e769fbde9c749529","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160702.tgz","integrity":"sha512-cnT0QKOBk3Q71GxuE1QlSR+KRO38V8mWIUDckUT5t0YsFcgFPKjLDIolHdkVtlnyX3sVqyHJKypNgLj1xPuYOA==","signatures":[{"sig":"MEYCIQCktfDFjgAarjGaadsKe2/66HN3e0PXmX4UbdMrmnJUygIhALrUFBJ5BiJW86h0c4ZfoKPB8EDlAwPD2iVEkRGHPSLT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"83f1dd272907306dba804a12e769fbde9c749529","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"1d03be0f90827b59ce7dbd20a45d125a0a387527","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160702.tgz_1467439724167_0.4842175703961402","host":"packages-16-east.internal.npmjs.com"}},"2.0.0-dev.20160703":{"name":"typescript","version":"2.0.0-dev.20160703","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160703","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"79cd90d5f63f4a6ee83524c3fc1f057660e170d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160703.tgz","integrity":"sha512-ZO+Ns6lXwExwHi7NEtjbleWbPPfhsRE3ML7lNWSedAkavcwzkCasZifbkX2yB1IXWbkqPPOH85lvs7ytkD98Wg==","signatures":[{"sig":"MEUCIQCzLaA3qGcfpMgqJwuyyzq1CyZC56D4S8IzX6B0L0lCbgIgKRxYMhwbrrhokCkRjSwo8sxHiCvbPLCAwOWXfp2cB04=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"79cd90d5f63f4a6ee83524c3fc1f057660e170d8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"19c141aefed7920291a11398daca4d076f862e67","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160703.tgz_1467526112554_0.3352405352052301","host":"packages-16-east.internal.npmjs.com"}},"2.0.0-dev.20160704":{"name":"typescript","version":"2.0.0-dev.20160704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160704","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4d588d534d530d7faecca2d5e696f7b5f4d61785","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160704.tgz","integrity":"sha512-MUf+5U+OL0t14H5eRyTrj8Wt6mDCvkqur8I61xMY00HVjRs9ZJ+7mxDxMmpxZkhkXEoRg0IA+SL89uBypeH0cg==","signatures":[{"sig":"MEYCIQCK94sqjRBPlFvrew8TE71n8h2W01lTr/oqLVJ0iW5H8QIhAL7vMOOhEalOAqBTFNCpNliBxyV5/9SDyqdHHjku5cfk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4d588d534d530d7faecca2d5e696f7b5f4d61785","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c2730ce659733b89b8599440837a3046ca734a75","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160704.tgz_1467612514952_0.47343565733172","host":"packages-12-west.internal.npmjs.com"}},"2.0.0-dev.20160705":{"name":"typescript","version":"2.0.0-dev.20160705","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160705","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"43d9efcdee4fd34a4c49a360fa5a430125190f66","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160705.tgz","integrity":"sha512-oa3W4OhNTNN6FNRgRIYL7pOrloTei1bFqyTnpaXUb7Tf/qEspY1VAALBliKOEdZ0fECdjMvKy7dPTxQHdPAzYQ==","signatures":[{"sig":"MEYCIQCWwpR6r4ZuwwGqC5hW5B6YtAl81YGAHQ8gm7U868FihAIhAPKTXouYtZx+c/33ewpnYuu/O4NbD4lEqMhzF0atT6nh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"43d9efcdee4fd34a4c49a360fa5a430125190f66","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c2730ce659733b89b8599440837a3046ca734a75","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160705.tgz_1467698926437_0.838360367808491","host":"packages-12-west.internal.npmjs.com"}},"2.0.0-dev.20160706":{"name":"typescript","version":"2.0.0-dev.20160706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160706","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aee3aaed4895c52beede6b34c08d8c91a0a0e0d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160706.tgz","integrity":"sha512-nJv1toAyOa8tA6RtUV08TVC/l4SpYTtl65C3clJu7fBZmqNLyj/XoA7naBpOD2cYAhhVW5bSQhQtwyqP4X5gGA==","signatures":[{"sig":"MEYCIQDluSLz+Ba8yinV1cokXMrVboK2XvK/6yJzzpsdPhYs9QIhAIOFQRFqs3n6ik9svkPF9igEbVllRUbWCuKN3rpYP46H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aee3aaed4895c52beede6b34c08d8c91a0a0e0d0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"29985f33b7cabf9f549721c368ba2118d147779f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160706.tgz_1467785381557_0.09087051870301366","host":"packages-12-west.internal.npmjs.com"}},"2.0.0-dev.20160707":{"name":"typescript","version":"2.0.0-dev.20160707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160707","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e2ad33dfcb1c6502d5a151154a51cf9f85e09f1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160707.tgz","integrity":"sha512-O+m/jnE+3m7ZI3VQgopWRXErZLdDbVIluypq4GRll5d5++RGe0dB3hvd5Rzz0P6A3Ij1hhbtoXmByMT8rTn5lw==","signatures":[{"sig":"MEYCIQDGL1VBbTx4uHK486GrmBcDb9KsUWNbVvkaCmgx9phcgwIhAKpHniEWeA0VCFAOSqprsGRKScY3pPbW0qVACnGnOHbq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e2ad33dfcb1c6502d5a151154a51cf9f85e09f1b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a03941237334f6757c932254d58f1833fa1b004a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160707.tgz_1467871761621_0.6881850478239357","host":"packages-12-west.internal.npmjs.com"}},"2.0.0-dev.20160711":{"name":"typescript","version":"2.0.0-dev.20160711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0-dev.20160711","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"509628fb1b27a9cc2412f0d03a0554bc19f7b5fb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0-dev.20160711.tgz","integrity":"sha512-sWXoRyCNXaa6Lw7G7XNXzvQMMHY0ThQG9Q95BfZcMMVGQ2josqIa7saCBPaKoSIkDB1L53p/PBh0DVtrap7zSg==","signatures":[{"sig":"MEYCIQD35FuVmAjVmbAX9fqbEubEuCvUgfimkCRb8wgHnYmnbwIhAL2xcodzv1WnTz0OHNo1pGRTou5NJZjngRIECuWASiGi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"509628fb1b27a9cc2412f0d03a0554bc19f7b5fb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"37eac5fb7f9d2484cfef3ae344d91aa622b9aa86","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0-dev.20160711.tgz_1468248247690_0.022030749125406146","host":"packages-16-east.internal.npmjs.com"}},"2.0.0":{"name":"typescript","version":"2.0.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"14795f9c39e06022597a2a09eb733adabef9b08c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.0.tgz","integrity":"sha512-qb9m9Zbxuk5AGS0YS+sbmIUjX6Y6xka5cQw+tL0V/7CFAr/8obG2CwDxZ7Ky8CFfclL8xCTUppeqDUkyBC7dGg==","signatures":[{"sig":"MEUCIEt4V28pPGEIEdZarzbwpyOa9qxPWsh2QvsEl+ARTUr8AiEAkCwtjXQIFgW4uh0UMG3DRvfkjSDI4izLV22zdpJuemc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"14795f9c39e06022597a2a09eb733adabef9b08c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"87e95069fc6a5a46804f7328a8ef0d180e17734a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.0.tgz_1468253608465_0.3713174283038825","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160712":{"name":"typescript","version":"2.1.0-dev.20160712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160712","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d2e62dd5ddd39f20fc532516a46f97bd1fce3ee7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160712.tgz","integrity":"sha512-nNeOfYw6ojTNArDwE2mr3zF3Aboj45NyyiDmig3bTb0ujGGKPrFD3hVT+v9KnVk5nrOmXkr5US4TKzyoPHai1Q==","signatures":[{"sig":"MEYCIQCqVZoODEOpYsYcqm2l5krfelPWc7JsFRx2J+7IyD/aGQIhAMG8V2mtqKI0Tn35WNDO1Kvqmtq1n3XCbMNPB+cK6hvc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d2e62dd5ddd39f20fc532516a46f97bd1fce3ee7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"48ab0ce07fa72bb5bd66a571026f8af1839027c3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.2.6","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160712.tgz_1468303743673_0.07090933294966817","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160713":{"name":"typescript","version":"2.1.0-dev.20160713","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160713","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"963a4687ad986fabfa5e5a8888e08849983376aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160713.tgz","integrity":"sha512-OUYS8TAo3Y+luVFk0vstw5qwvAGfMqnEPpKHIGiDC3MlsSxjucEfeX2lE+Gbdh4yYgxaV9PCUqTHeB2BHXEZug==","signatures":[{"sig":"MEUCIQCMn89v/wfbX3dj3moqyGwAF+Ki8rlnYqO4BTzJhqYVUwIgW5Wb7lWhmQ2R3g32SqMLc/6uv+/AHNklHl7Go08vocQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"963a4687ad986fabfa5e5a8888e08849983376aa","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f9d29370b659ad33418aed029f120c43c0f36e5c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160713.tgz_1468390142147_0.09949590777978301","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160714":{"name":"typescript","version":"2.1.0-dev.20160714","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160714","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"df30a21d765255654a173336b64c9b2cbc9bbf0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160714.tgz","integrity":"sha512-5Dnm9DfgJab0KlKSjmIHAL0bkoBVDmtvNoykHWeCSjsnvwsLk0wfzqNqPBo8rfYTTjUgDUNg+ZhQq9r92srPNQ==","signatures":[{"sig":"MEUCIQCtfP9nVirlj4S+EH+kAktiLD26XHnR9lCt3jAcryiClQIgT1Z3MVWVxcckFf9pFV6gGR+IHNgsc+Gh//XV3gZa7z4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"df30a21d765255654a173336b64c9b2cbc9bbf0b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cc4b331460277105ee925d1ea9ae9ba6bdc98e98","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160714.tgz_1468476533620_0.45549040636979043","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160715":{"name":"typescript","version":"2.1.0-dev.20160715","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160715","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"069f75c0c31f2d9c03f98355f616742dd869d306","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160715.tgz","integrity":"sha512-ZaE0dCL8IRqpXNA0aFRxB6GIIih/bgcYbQoxeZoyssj+uDLGoIyndYTerEP+oJbbY8n5WxqCoaEnwq1q4LiygA==","signatures":[{"sig":"MEUCIQC6eeYViIwWpvDn6rJODBCnxmc+pJbnFWcQnvaafuXOGgIgeSLXdyebiqBF3az5kYIvXlTzO0a1rxsr96zlPn3sJrI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"069f75c0c31f2d9c03f98355f616742dd869d306","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f16f27661fab070ab0aad2a771459f2cfb4f301c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160715.tgz_1468562934312_0.10801825835369527","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160716":{"name":"typescript","version":"2.1.0-dev.20160716","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160716","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2c8a4c4a6342cfca9959f5c033872fb37117fe00","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160716.tgz","integrity":"sha512-S6UMdztlAOIXRrMtonmra2MqS1/kbestSS9TFQGNmALhCEL2gppQBPB+McyhtpBHDEhvxCeqer3Klq1CpmhAZw==","signatures":[{"sig":"MEUCIQDHLA0qf8Rnes+XtytEm3l+/8Ot1jxKmpt8FI8anryIuQIgAtJ4Y3RwV4BbLyMDdM9oKLbYYLYx+uSt4KJoK5Rh+XY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2c8a4c4a6342cfca9959f5c033872fb37117fe00","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160716.tgz_1468649332986_0.016943665221333504","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160717":{"name":"typescript","version":"2.1.0-dev.20160717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160717","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"473c9c7b05ed57f6d811371098e14cc934c36928","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160717.tgz","integrity":"sha512-Yd/IsIQ6Rg8Z43vJuYmJFbHQB781jpJq5XAX36aAOhK7IKL82D5xWvxu0nZqDpGKRM2DVIJFoGx6oqhj+E1BUw==","signatures":[{"sig":"MEYCIQDN5iz2R6oH8R75dqb7nrji/BjTG6vN2PfnfRFF/HHLCQIhANtrvtP7oz75l/X4S7p+CG8YYOxNnthUzcZHadVTIRPk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"473c9c7b05ed57f6d811371098e14cc934c36928","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160717.tgz_1468735742605_0.8430407578125596","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160718":{"name":"typescript","version":"2.1.0-dev.20160718","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160718","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bc9b20eb1b962cd59ced771b5acbc7ee919b5fbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160718.tgz","integrity":"sha512-ieEsvNftU7ecjnKa+TEnbnhcl8FzqP695kfji78VNCFmydLudigarTGYg8NsF3GkHC0a6RH46LUqlm8frugF1w==","signatures":[{"sig":"MEUCIEIbDKZSeBHiSGrVC7UpOGlf2AGY8X6YipzbmViEgll+AiEA1SWsR/dUs/aDE6yFog+CYXnp6TUgs+9PvkwGb85mo14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bc9b20eb1b962cd59ced771b5acbc7ee919b5fbb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"87f75ff8233e655fb6eb66953b1eb871a4269a98","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160718.tgz_1468822160717_0.8979758773930371","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160719":{"name":"typescript","version":"2.1.0-dev.20160719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160719","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"106abb8d8e4fddab0b295434f6e0d71aa589e303","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160719.tgz","integrity":"sha512-piFaEJ9uvs+gG8mSEKuJtz6GxfNMkoroo+WsgT43886cR+SDhsWhX2oZ4njtGo4OSqUiVlU+BKCsFxNmyz8rNg==","signatures":[{"sig":"MEQCICRRumlVNnohwnx6D3TMeua1Ep+tw51yMbAF0O82RrjrAiB2oB/dxsrZdg6WJWqw+4+F2yfy+W3LA4qD9eJZF6bnWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"106abb8d8e4fddab0b295434f6e0d71aa589e303","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e52e1659dbc030bff127e7e2e5041d014cf35314","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160719.tgz_1468908544598_0.2308966713026166","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160720":{"name":"typescript","version":"2.1.0-dev.20160720","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160720","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dc635cc1cedbcd9d59b13f5c1717aa297022f6d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160720.tgz","integrity":"sha512-4avRllFZfxkx+Jse20p2jEjgDpmkbVLi1QDeLcqqlStD1VdKTPJ2Os0cv3qtjJB5Kl4wiXuEqnvLELk3GaAJew==","signatures":[{"sig":"MEQCIGv7lLab81DzqE9VxYxwIkQlU7iDBBLiARN401psCJuiAiBlrhrx9dVo4DyuwOXtac9FP48UekTOUIC0ITsxA2XQQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dc635cc1cedbcd9d59b13f5c1717aa297022f6d1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"80db0f2f166d0a3547319fce789c31604e8fc83b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160720.tgz_1468994942188_0.40555884619243443","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160721":{"name":"typescript","version":"2.1.0-dev.20160721","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160721","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1a110738b2ee15e0f15b330b385a7e096a6e4541","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160721.tgz","integrity":"sha512-CPsB3uRBgSUG3G4U11iV6YoV+xML/ztJhOHVwCDQHfF97Rz41QBPDxma+ScJYGt1FAzjnztWWcbspk22vWCfSg==","signatures":[{"sig":"MEUCIDXvU+shnYTH/BXLj6lKYjpbqW6iEZ4X8A0ZGiPoBDUdAiEAglk/oqtqhWoUaWxJs2px7QTCHq1767Xo7z/I1zVEGEg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1a110738b2ee15e0f15b330b385a7e096a6e4541","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a2f45e95993d07cb8475301da7bae24e631cdb8c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160721.tgz_1469081377386_0.6835812421049923","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160722":{"name":"typescript","version":"2.1.0-dev.20160722","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160722","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1e0b51b06d0f6866b436a1a47f4a634c28475dcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160722.tgz","integrity":"sha512-Sgnfp310I9qdL7kzyfWu5urT3OjjylU2H1Tf0o41fKN3EPifzx5RFZ2O4LI4vFa2vaTrHj3p04ukbH3VwNtarg==","signatures":[{"sig":"MEYCIQCOggA2i01eCq9QDM8kr2IPV3eNm//Sm2v3p/MwoxrcjAIhALSzglhgioPa3J5UDG+RZ34n2Z8CDVCtw4xaym0i+0ig","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1e0b51b06d0f6866b436a1a47f4a634c28475dcc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f24341f719866af6b31f96e6eebafba1852ac80a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160722.tgz_1469167729180_0.8946240255609155","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160723":{"name":"typescript","version":"2.1.0-dev.20160723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160723","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ee60546c072bfe0138775086a2f72c21b13eecba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160723.tgz","integrity":"sha512-LNikbq9EURFIXNTWBdHY3UPvt260DIqFIxK52t5nG+mECvFA524StyiBG3o4kPXaZVTgCM3mqHtkSpkGd1YvCA==","signatures":[{"sig":"MEUCIQCIsFLNDZdJRVbF4T7t+iaeTy4i0vJw/mkVTlUAj4EMzgIgGTqP3Fa0mUvDVy3pn41Ud1pHjkdiF8SoiFIB0DzcPgo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ee60546c072bfe0138775086a2f72c21b13eecba","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a0406c777fa67aefb947d0b94878fa25b28e0b4f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160723.tgz_1469254122389_0.7930373614653945","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160724":{"name":"typescript","version":"2.1.0-dev.20160724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160724","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5c3a7e1f50e3de0959ca83c3fb6a9448dfe0e3d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160724.tgz","integrity":"sha512-DNJBOATBqosdm2NoPZGyqOcluwdPuyO2cDPP9jKwGPEmcOCPPLUizeIA8bh8uG9p13NxLfs1VUoAEyfOGVnq0w==","signatures":[{"sig":"MEUCIHeUpWCrrdnvGogjf2bEX/PvQAFt8UXEkJH+vTtH+ZrBAiEA2Lm67Q+FROvTSVoRmeWPiVz0Kjp5nrVWCpQh+fVCpKE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5c3a7e1f50e3de0959ca83c3fb6a9448dfe0e3d0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6a6f5db814ddb9fc8e5d7eba9b2858d8ca3474de","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160724.tgz_1469340519469_0.15275051956996322","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160725":{"name":"typescript","version":"2.1.0-dev.20160725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160725","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cd0f7b85cd5c2091593945ce48692b014bbee3dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160725.tgz","integrity":"sha512-VEAHGs7UO9mr27p+F4SHchEsDkKzEPjXSHlBEkegXOqFOeZ3YlY/XI2nBpAd6/GwiNk0pwhBlivJcf+kR+qf9A==","signatures":[{"sig":"MEYCIQCcszPKimYTyljSFXCdwA3F/R0UeFsYuDaPd9uBgdXJqgIhAKSy0grdwfPLFfMyVCAjo+CcZ5GlPSjO6po38MAvPHZr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cd0f7b85cd5c2091593945ce48692b014bbee3dd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6a6f5db814ddb9fc8e5d7eba9b2858d8ca3474de","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160725.tgz_1469426907149_0.20951781678013504","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160726":{"name":"typescript","version":"2.1.0-dev.20160726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160726","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cba12d2b89f2575c645f7b17aa02c9f5099e1b7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160726.tgz","integrity":"sha512-MwJckyL7Oc4T9klQUfVLVxTs1iijUjTznPcijr0GszdHKrzpvzq74ZZd5ye5qhtqLyNkEGTnRjc5fGAneQ7YnA==","signatures":[{"sig":"MEQCIGqpTu07Jyc52ytuMnry+OcaBMuNrw5umtEamqHPP9w0AiBVrhFWml7r3qmdXgXo7jRBQQ4Jt/lDtwjhMmpUVAC99g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cba12d2b89f2575c645f7b17aa02c9f5099e1b7c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3ad83cb8894d609200c82ac4e6af846131eff6d0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"~1.1.0","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160726.tgz_1469513322941_0.8623922280967236","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160727":{"name":"typescript","version":"2.1.0-dev.20160727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160727","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"423c1381f5472fa0b394f60c18ecdf825791451e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160727.tgz","integrity":"sha512-Hdl5vFUvVDp/9ee5wZ2lTUClgLFwrpwCQmpTxCRRGHrmsZb1JZrbf4npPgC4+OqX5xzHMmtybzGHMvrwhvM8hw==","signatures":[{"sig":"MEUCIQCuBNxslEZhxLcPK8DBFhZQy1hb7DqR52C/zVby4A6YrAIgQgZyO1e30ZJmxX6gEltb+Qm0RpZdvtAeIs3CEHb5tME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"423c1381f5472fa0b394f60c18ecdf825791451e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a32234c56272becb255701ea61965ce8691e993b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"~1.1.0","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160727.tgz_1469599729005_0.1671870572026819","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160728":{"name":"typescript","version":"2.1.0-dev.20160728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160728","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"83c8cf32315fdeccb592d0459203ac84a2bc78a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160728.tgz","integrity":"sha512-g2qz3hQoBxaXK02831GOHhDl/2uwjZSHGViPHdGiYGCOI3YzAesIlNhKm17IjUDN39pp8D6mQxDHssEQnMialg==","signatures":[{"sig":"MEUCIQDZdd1tl9iGgymOMAdyblvg6KZD8WOlQKW5sSPx+bM/BwIgbtrRo/8VgCjoDu2xmE8QOH4fvZPfhWjblhtGkDS6Jwc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"83c8cf32315fdeccb592d0459203ac84a2bc78a5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"07837439944c42f1fb021a98fe9ef8d78f0df3bd","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160728.tgz_1469686116960_0.9044479886069894","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160729":{"name":"typescript","version":"2.1.0-dev.20160729","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160729","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b97de8e63e0dbd24120844e349143fe61f28b460","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160729.tgz","integrity":"sha512-X+Vy/PdGVVY8Njl2Lu/GCf4iFphxLGe5qb7nIF68JTUrIoLgtqQEAbXX0Z0FJxeocH9UoRYRdQEUtMMpcwu1PA==","signatures":[{"sig":"MEUCICwmaILLgNfNWGYWy8aB0Jb3xcRbJQTHr5OjQxydPyGUAiEAp+QzwpV8f6af92CDh+lxMZE15g9iVpKyjWJrTcgloOk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b97de8e63e0dbd24120844e349143fe61f28b460","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"013744bf858809a1b9ccbf58719ec477b2417bb5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160729.tgz_1469772541792_0.7931645456701517","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160730":{"name":"typescript","version":"2.1.0-dev.20160730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160730","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"edcbe327023a813c29cca4a23f02573a4b115134","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160730.tgz","integrity":"sha512-NeuCpzqwNATE+KbRAIqLYm61tMZyepHHsjFYQcOOvxJCx4Dbx554VCwmhpQybzZ9VGgfbhOdtovK9hX7yV9I5A==","signatures":[{"sig":"MEUCIGZzNLLZv6TvnPHQvi3ARb88YcLoJCbTckBAio1NW61oAiEAmU7AgazCWe5kDpD/b/V3fTArea4/9dTD3nHRRNdSQBQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"edcbe327023a813c29cca4a23f02573a4b115134","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"394dbbf280dfcd6d8d11c625494a2b1c1b5438de","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160730.tgz_1469858939491_0.6722474263515323","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160731":{"name":"typescript","version":"2.1.0-dev.20160731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160731","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"26a8d20435dedf7982dc584621c4d86788fc9ce3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160731.tgz","integrity":"sha512-D8ncwUoOc9j7gSwf0ZxxthmiTne9Qe0IyJhvJ4yWBmsP8bqE2oaXCharkdlahgqAiw0mRzg+tT8T/DUeoMppRw==","signatures":[{"sig":"MEQCIHC1NmatDtZKILs2p6cnoXxsZEgy+W1XNTpjQ0zSh2pPAiAaNbTT69h46rBgnUeUViaeyakAMZ77S4HZUjQKyZkgmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"26a8d20435dedf7982dc584621c4d86788fc9ce3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"1d979ccc8cbdff99d92a8c3a4b4b2d73b311b340","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160731.tgz_1469945315707_0.6564060875680298","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160801":{"name":"typescript","version":"2.1.0-dev.20160801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160801","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"10bb9cac35e8bead9ca67eca795f6672b878b7dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160801.tgz","integrity":"sha512-bDuJY+FgJs6LUWa+FI2Wyq+DjgzWv7/rqqYrsIdlTJyfLKt+bL6LEGLmHEIpi86J4POhkr4ZiUOg0MJAjfGO1A==","signatures":[{"sig":"MEQCIELwrLCHXpnGjrozUu5ZBp64CvoAAqAWKd+PTT/JVVgEAiBjAmFPa5GCZb1YqPgkGiD4SesIiPRZbeFdQrM9puOcBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"10bb9cac35e8bead9ca67eca795f6672b878b7dc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"030fbdc0d514633690fb3e26284d85fe865fb784","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160801.tgz_1470031714838_0.4720172912348062","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160802":{"name":"typescript","version":"2.1.0-dev.20160802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160802","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"389c4a7b187a2347ce32a54541df008117dee2b7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160802.tgz","integrity":"sha512-uMBSM13AjSPWRPtrlN5WvZPo8T5hFcJC5qHJSDKGH40BSNt47CcBdyvG/UEQ1Z+RGtUt7MJZaGUcduc60ZpoZA==","signatures":[{"sig":"MEUCIEMqmmDJejJr2bmYaF2OuYZcJ9//smI7F7ZY53bYMR1xAiEA6FGsKWtrKP2vS+qce1Mw905SZJbHFKIh/wQmo7DYo3I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"389c4a7b187a2347ce32a54541df008117dee2b7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f06413b8d4a86b9a3a4d0b9b42e22d096ecbaf7e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160802.tgz_1470118150726_0.2683816652279347","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160803":{"name":"typescript","version":"2.1.0-dev.20160803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160803","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3f9147ba7b028ab13518c073a0b96efb8368ecb7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160803.tgz","integrity":"sha512-PoJw7Tj+CbjDfJCc2WyX9H53u8VIVOp0Y94OrI3zqdDRNuM3QJLnyG0L0HZi69jwMjg7caZym9itirqNde6JhA==","signatures":[{"sig":"MEUCIGsLEEe1kBf7bKlAadfRnIXB+3FM46AKjJ6juakO1QiXAiEAqptvnhaKqvKuiBT524xHl5k3FB4IbNV7IuM8f5yBhSs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3f9147ba7b028ab13518c073a0b96efb8368ecb7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0eeb9cbd0c9d89f0bc5d72ea7ad9248f0302cd37","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160803.tgz_1470204536419_0.38205055915750563","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160804":{"name":"typescript","version":"2.1.0-dev.20160804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160804","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0c00cbf26345931693075261ee5c9e07fa3fcf17","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160804.tgz","integrity":"sha512-2FsIrYUKe1wljFoDzgKOx+N4QoZOCtLTvMftRt/siqHzmvq2Qe51t12kK6VEVxy8/ZLLvxG7RVuWlWeptJVgXg==","signatures":[{"sig":"MEQCICluOsjaQrvIhBDG9Y2Cl0gv361ZIefHl/OUWHRnjFSBAiA45xwTR8DQmSm4KPJN4xKEWg28ENfZJkdJ/9jaueVdiQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0c00cbf26345931693075261ee5c9e07fa3fcf17","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"14f0aa0ace2d9748350cf80bc0d8fa6cab7c1aaf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160804.tgz_1470290939372_0.0748732858337462","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160805":{"name":"typescript","version":"2.1.0-dev.20160805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160805","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e294e8f14fe00244b91225f85c61f5b48ee0240a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160805.tgz","integrity":"sha512-QMPkc7+zoHfVAoHAYKyLCZcB2p7uIH3fWMO6xERTDapouEXI5uG41XqSTBUkAhWiE3EOpHtWxDgmmhn81rLkUw==","signatures":[{"sig":"MEUCIQC8VMlLmu60i+i2m4gSHZEeeL/JQJsom13QpYxUl6btaAIgUA0+bkj1uOn/RXOCfXBwUsB8kgv78zgLO0IuFeduyx8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e294e8f14fe00244b91225f85c61f5b48ee0240a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"18fb33d36fbac6d296b4e7d9a94beb29b57de607","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160805.tgz_1470377331334_0.1990865666884929","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160806":{"name":"typescript","version":"2.1.0-dev.20160806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160806","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"75188fcd65240c7300de4826dbe0d6c1256cb591","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160806.tgz","integrity":"sha512-DLVq6Dn7V48J7+XUySwLxPihEec5XFkzuzhIC/NUc+H5R0tTqoXh976PyaMsYNey3PL44jJQpZ4fi91N2Rzk4w==","signatures":[{"sig":"MEUCICpbfvqYUVnrkM0L+Ug2rtSu0Go2G2WMlhP/bYK31y84AiEA/Lz1j6REbgU4VXtO28wiHRBJyYnydIZBhzzjADDCGME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"75188fcd65240c7300de4826dbe0d6c1256cb591","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160806.tgz_1470463738505_0.40200612926855683","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160807":{"name":"typescript","version":"2.1.0-dev.20160807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160807","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dc3b2f4b3e7b1fa89846be8610d87317907f7e81","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160807.tgz","integrity":"sha512-+mz6dvSlQsn7XB/OZ1NzI+kkWWo0TNEkEK5ZYB4GrpRLd5N4MkKycZga6nnb/7Miyv6bAeivvy/MxvAxgDuO2Q==","signatures":[{"sig":"MEYCIQDHq4xzIYaWpIbJAfiZAh1IrLMLGIXCumDxl/gciCAacQIhAKOTEAbemdOxJCXtZmhtcEoYf8sdcsld7LohFuwtMK1p","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dc3b2f4b3e7b1fa89846be8610d87317907f7e81","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160807.tgz_1470550134277_0.0006399520207196474","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160808":{"name":"typescript","version":"2.1.0-dev.20160808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160808","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8c78f9b751ff15504a21238604b8257655392873","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160808.tgz","integrity":"sha512-Bi1bHoKfDG2U4BgpNnDbf+oUJYnnchRvNkB4j85tJ3Z7KxHTWY4ql2LZm1/7bts9bCT2aZEJI+MS4qH69B8C/g==","signatures":[{"sig":"MEYCIQCMiBNoM6B9DwTX9Aq+g74iSCwOPa+eOm+eBpQmFL4XlgIhAOzmWvVeo4/lAvzrRCdNIKrk8oLPvxBrQdMHAJw3z9YQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8c78f9b751ff15504a21238604b8257655392873","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"269b8285387f5a7fdf1a2d2aafa40e96a425576d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160808.tgz_1470636525586_0.7663002426270396","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160809":{"name":"typescript","version":"2.1.0-dev.20160809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160809","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"78978a34e6e67a16ddb77a307e2f36361e976507","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160809.tgz","integrity":"sha512-aeAof8AxayK0h4/reNk+VOEW+UwNmdMpR9V+U5LuvSVOjaaNLfg6M3OtLq7V0BEAIxBwxMnDMHFjQSfVB4Zlgg==","signatures":[{"sig":"MEUCIQCAk+ts2WLgAoGgcjk11SLs9uqwCwHQP3IENUR0tcuqQwIgbAsXnDK3jcLmRJD0aMBK7DzmEdeFd6qRyZxcH9Y6XO0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"78978a34e6e67a16ddb77a307e2f36361e976507","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3f1ec7ad4bda8fb546beece999f5f20ef6fe9f24","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160809.tgz_1470722946802_0.299858161713928","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160810":{"name":"typescript","version":"2.1.0-dev.20160810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160810","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d87bf00a31c7c9e9288f175b03021ab2c4f575f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160810.tgz","integrity":"sha512-KBsH3tfNHfgQpCkQ1KMkvBiAJhV9P4HVjGFoW5UHN8CPQpe1gYUzPYcCpGG1/UCHfno4H3kItubKn8e7oQ4OQA==","signatures":[{"sig":"MEUCIQDJ0shJ7aoxTrt1Wbo89Mabpf+0mW916HY43KEe2ES+NgIgIrnbZqH/WMxhAgP+gFE4qnpY3AUQxGVcOWdk0lC5sA0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d87bf00a31c7c9e9288f175b03021ab2c4f575f7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"557fc38446ff9e5fcfc3104dbea64e10bdf104c8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160810.tgz_1470809357022_0.4564399600494653","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160811":{"name":"typescript","version":"2.1.0-dev.20160811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160811","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d21a322f73876f840ffdece9c6a9d116ebae1c20","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160811.tgz","integrity":"sha512-sRIp6tKEzaXyG6Xr86RdxNykeVgnT8O20pYItq0JEqY3aM5bGHWdbvwSmq6ccBS2/z7K/qHwkMexNetsCyUqDg==","signatures":[{"sig":"MEUCIQDl/syJkw91bUYGqvvWe05pLl9gEsnZr+nORdQuavaeQAIgdSr1VlKwtrZ6FGyy38hyYCffSUAWrP35uWpuUJabw1g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d21a322f73876f840ffdece9c6a9d116ebae1c20","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e16326de8b910926f95bcf9f16aed0db5265d1fb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160811.tgz_1470895759068_0.3161159004084766","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160812":{"name":"typescript","version":"2.1.0-dev.20160812","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160812","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"89811b1bd7bcae11e20a6afcf9cc27e964390974","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160812.tgz","integrity":"sha512-k+FcuN1yoAgR6/oo8LMvDK2skvcJ1dYrvTyEj0xD39/7DmdpE/pcKuXwKk2xHwOKvUS7LlDVmpX/84+4vdLYUQ==","signatures":[{"sig":"MEQCIE5Dv279zfSlJpuvvFVsjaPPQMVRTYUPElHJIx/88yh9AiArW4BrZIS2IR/698xI6ABittgy7CaOSn0vi0entfnIPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"89811b1bd7bcae11e20a6afcf9cc27e964390974","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9ac13abfd196f662ce606d8d99cb8791c2ad61fe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160812.tgz_1470982209610_0.7519830877427012","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160813":{"name":"typescript","version":"2.1.0-dev.20160813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160813","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f6077bd42def3836f9f8b3ec9421c036a437fd6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160813.tgz","integrity":"sha512-limhoSF7t10kLYCx/AN1TPs/daR2JdGx2Ih2a/zqj7re+4JsD9BSXeVuzoh85smTG4RFHnl8MtDq5DpvL0Nx4Q==","signatures":[{"sig":"MEQCIGy6yHGIfrwV/cc+OhJR1NlgbVSI2PGAfP2J6f7ufCKcAiA10yzoYoX8yS3sqgX8iYN3qJx8l/+9a6w58ZeNFuWlpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f6077bd42def3836f9f8b3ec9421c036a437fd6c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5bdde3b284826cb07a335012ce697327b7627fac","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160813.tgz_1471068472603_0.24529314250685275","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160814":{"name":"typescript","version":"2.1.0-dev.20160814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160814","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"530aa056ab0965da456cb09e00aa606273e8ee7d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160814.tgz","integrity":"sha512-5K4Hr5eW5B7D1M+UBPNlH6zGD5I52Y+fm9PUI/Tj4hYewID/i7KcMOG+wpisca4j+sDlndemC6VOuQjlx7FfCw==","signatures":[{"sig":"MEQCIFK1urHAqowjIMchsHmut+GSAJqgEFCChqKERy5t/F/BAiA/YHU0R39VXmjEEG8VodA/58QM0yBqmU0wdfJuSAumKA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"530aa056ab0965da456cb09e00aa606273e8ee7d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"10d1e02916578e4ece7bd24352f144be1eb72305","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160814.tgz_1471154868995_0.23773130122572184","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160815":{"name":"typescript","version":"2.1.0-dev.20160815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160815","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"49c579b3e436a24d4c69b109f59c2d8472c09bea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160815.tgz","integrity":"sha512-Q3+RDAJIezxl6cePyv5LXK1JG9TUmiBw2Ak63Ly/ejXMf2WVOxfrloQ5IinMaAQAu4vji0rYtVHhql6R+u2Dnw==","signatures":[{"sig":"MEYCIQCfqo1GdFuEkX8QnzxVqomM0iii9cS6QkBhpkKZIzQWSQIhAMAKvkWzoyyvD8uOk3GyexjIcS407nQhkZh901lOQeSD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"49c579b3e436a24d4c69b109f59c2d8472c09bea","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"78cea2adb5a344aadf7f7eed2a0809131743b005","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160815.tgz_1471241270722_0.4718144480139017","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160816":{"name":"typescript","version":"2.1.0-dev.20160816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160816","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5018dff33de398656867bd6a6a9d41c8ae71d34b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160816.tgz","integrity":"sha512-fELG/7M7yjmh9tqYqa9ZKVTnla1SR+8fSz6CHomOte9g9m7lb9h5BRgLXKeQ9Rin/Z3JYoHz205L3fq65q+ZhA==","signatures":[{"sig":"MEYCIQCx0MyrmxQWl+dUiQbQSStqGAD7Zu0viFl6j8bqUKXYtgIhAJ4n+7EFvI9/uVxzl0CiDRM0rXw+c5d4fKoWcwFq1/04","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5018dff33de398656867bd6a6a9d41c8ae71d34b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"80c04f8e97aa7ab6c0e1fb604bf1551e7057183c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160816.tgz_1471327639000_0.2738156788982451","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160817":{"name":"typescript","version":"2.1.0-dev.20160817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160817","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"968b03a6d87cb64bf8521f68687e4e1fd3264225","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160817.tgz","integrity":"sha512-R+R6iGSDCjH7F5L9FXs26VXDXSGWuOrrFC9th9ASwmHiUb32g1IUHc+z4/up9rlHkRXqtvauTT9G44ttLEtBUw==","signatures":[{"sig":"MEQCIFgu2LYueRIdITvf7wWsSCmK6k0tQ13mNLIsnQ+xb2QEAiBj/bFlHmrQw+ivZRq7Cp1A/cEXWOgfg0KwXsruLioxfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"968b03a6d87cb64bf8521f68687e4e1fd3264225","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"11c5c4ee8e27baa7766ebe2e3090990a2e72c922","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160817.tgz_1471414043504_0.42726909439079463","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160818":{"name":"typescript","version":"2.1.0-dev.20160818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160818","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e2011c4f2fab3ba53d8609fdb92c39f67068c4d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160818.tgz","integrity":"sha512-T0gEzKygW1FIMQmIRxn/ufJqoTLUFW220DyBsr4/XPk4RDgyG6FN6eILEvm/UGDpbLaUh4pUNbXWQX7CqVk5/A==","signatures":[{"sig":"MEQCIH3Vbn7EBM78m37UbJBU0k5Q699hIgZbVocVUHOpk+JbAiA9GVXXKQgmYhGujbfp9vKigcAUvbVcJCkjXaR5VzM49Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e2011c4f2fab3ba53d8609fdb92c39f67068c4d0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"da8fc5d5a90dc18e83a137ba7e04d38854fc1c7d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160818.tgz_1471500417712_0.8612639494240284","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160819":{"name":"typescript","version":"2.1.0-dev.20160819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160819","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7e9f142502da3b5f784b686391830e74db074a35","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160819.tgz","integrity":"sha512-74hl6Q6uv9kpBRq1i57JCbA+ulHQp9bgTErUqFnsYF1NAf8yjIAqqltmuz5R9i1f/F09fqoov4tJndF0FQ705Q==","signatures":[{"sig":"MEUCIGADgVRAwK8fmgPwGQwzVmheSn4iRqRHVeb9ZlAqCWL8AiEAsDW3bQ/5bSf9Iv+QEBTGrYCozXwSWo5TvTtbltEWflo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7e9f142502da3b5f784b686391830e74db074a35","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a621c09606ceeb3010a58cd0f48184a88370e613","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160819.tgz_1471586815129_0.48295718687586486","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160820":{"name":"typescript","version":"2.1.0-dev.20160820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160820","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"507567984e0747178d10c6b349adc7fc9564cfaa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160820.tgz","integrity":"sha512-jLlnu3S1ufps0j3bCsLabtE6BeVisojhQkMeG7roXz+sxqgTa9JghQadbmZ9VuKdntW0plDL8eaa322Bgn/Bpw==","signatures":[{"sig":"MEUCIGX5G01KAQN+1za9tJmPG7OUlxs246f9bGjzPuIQIvnNAiEAomYOhx+IwUcFbaYcBVJ27ZFvMQH0pIvZvAmTAEeH3z8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"507567984e0747178d10c6b349adc7fc9564cfaa","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d8ab09819560991807c489f5ac1a391be86d3de6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160820.tgz_1471673215161_0.07676441548392177","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160821":{"name":"typescript","version":"2.1.0-dev.20160821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160821","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8b040fd08390f19c29c8a463883f67b43133385f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160821.tgz","integrity":"sha512-wjuXZdlnKvP4hBq2z78RvgqIjbX2AvcrudRx99UHqVvt01Gxkc6uZ8PSIzl2yIH9S+dBA2AxQ7Zt5CF5h2SMRg==","signatures":[{"sig":"MEQCIFmJdtZ/xeqBlokn6mlsH2vBEL5F2nJ8bIocaoIFA1ZUAiA/aCwotO6P9PEe63G04Dqn+yNJjSjngSXWgjjfh20eow==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8b040fd08390f19c29c8a463883f67b43133385f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"66f6f9ba05e1a3ebdeb0a66e0603f40ab3e9b8a3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160821.tgz_1471759613787_0.36157523607835174","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160822":{"name":"typescript","version":"2.1.0-dev.20160822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160822","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"08eaac7f751127771fe024c3bf3c9c47fd6b3ad9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160822.tgz","integrity":"sha512-8uFDheayO6wlPuCWkrEa5RE8saszHeryszLpY3IOAOqA+H5PVVy1jsE4dGOJFRcWvG8LGKDgvq8irOcKcYYNEw==","signatures":[{"sig":"MEYCIQCGenUSg/IxwqG7RTrW+jNmsufwtv3QTUDZljcBo/1eugIhAMYvojHXTmGmrMzbTJma7lvSPF4B2v4ymlx1dS8+4dwp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"08eaac7f751127771fe024c3bf3c9c47fd6b3ad9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"66f6f9ba05e1a3ebdeb0a66e0603f40ab3e9b8a3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160822.tgz_1471846003035_0.5255277927499264","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160823":{"name":"typescript","version":"2.1.0-dev.20160823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160823","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e18198b0fad51e32b38ba4a35655185d6cf97e2a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160823.tgz","integrity":"sha512-rlzXCcVOqn2ZfTDY/i6CAAC4G60qGxOChiLRHHWMxQ7zIWx5W1jPWaM32q+WX0SfpjxyWdj6JKH2kAExiDYs+w==","signatures":[{"sig":"MEUCIC6R2jlCn4MEG14jv7jL89lr4Z0LwgqJJu4gFVForTraAiEApOFGVBB3FPTtNG63pAFbOrDhjm6LWbp1ttNWdGPA6+U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e18198b0fad51e32b38ba4a35655185d6cf97e2a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"93de502656a7a0cdf30737513d29bcb396c79662","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160823.tgz_1471932415212_0.7927686260081828","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160824":{"name":"typescript","version":"2.1.0-dev.20160824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160824","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6601e4b55a72ee35052c6a73943e6b2e9ca77791","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160824.tgz","integrity":"sha512-RdWITkeDOFlbiJfynNnfujWGS2b8uq+9pIbApaX5ZsIG0OdEbob3F1C9kQQLHYLBAPA6O3D4Y5A2PRYxdWu0Xw==","signatures":[{"sig":"MEYCIQCWlOMSyWmJ1Zj359oVe1Rcmfu3ZqGpOcC75BXqQQby2wIhAMjRDm/NCV+P2Pot8q2rY+327VkRYTbIfUtKTq2jdwxb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6601e4b55a72ee35052c6a73943e6b2e9ca77791","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ddb5a00410d695d35b55c5482876a16f7c696c4b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160824.tgz_1472018824029_0.1678892495110631","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160825":{"name":"typescript","version":"2.1.0-dev.20160825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160825","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e9eefc6e9c5d054d5ee30356a378bba80bc648a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160825.tgz","integrity":"sha512-Bt61EIoT1y0NHorQf2FXn4vCnfCStLstw5tsioohXislZKUl2fNb0uxdb0OiUvT7Ugf7bXuo9eXEeniqhb9X3w==","signatures":[{"sig":"MEUCIFR9jxeAWkM4eA+Jr+I8V4hbr8ru8deYeeYU59sldlwSAiEAhsHUXvB8jAkqOVlR55kEH0ucpI0dWJY9IIUEKgrQTP8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e9eefc6e9c5d054d5ee30356a378bba80bc648a8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ddb5a00410d695d35b55c5482876a16f7c696c4b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160825.tgz_1472105221420_0.7407153714448214","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160826":{"name":"typescript","version":"2.1.0-dev.20160826","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160826","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7fc749693fa9689b4918276af2fc82e190519679","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160826.tgz","integrity":"sha512-1Z/QfI5czQ9yuGvTsDiE0UF5IxowXLIW7dHoJ6wh1EwDe4HzAVkjqsL9jLZGhnQBAIQqE1MqTvlfjyk0Aq65yQ==","signatures":[{"sig":"MEQCIBbHqy+H7TLrh9IKlm1JMOUXMRoUPFZTjvfV5PuPfBavAiB8Sb1/yvZWT4SOeoo1nAObrfOPl/yNSHZuRIm+zGy4Mw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7fc749693fa9689b4918276af2fc82e190519679","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c72f5e28e819eac8ebfda080a0aa681d445c58a8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160826.tgz_1472191630823_0.3509740678127855","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160827":{"name":"typescript","version":"2.1.0-dev.20160827","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160827","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d690df775c4288ba79a0a2a16a6ae6f7df79b590","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160827.tgz","integrity":"sha512-UxEqeZGPrh8smXbildl+pAXOaBp+LaWr9Yx0AiCv+HX++B6/yBK5Gy1GzdmIZEPkGMobBoJHuW4AFEf2ZRooPA==","signatures":[{"sig":"MEUCICkKwz6OXktOE5UoLkq53DSfm+xTN/aAmuT1DntULykqAiEAwmHy755ApQWC402AJWAxFKjgHM8/i6eHp37jXmDvP44=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d690df775c4288ba79a0a2a16a6ae6f7df79b590","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"598ca48c94535156c842ddc13fddd24aac1130fe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160827.tgz_1472278022360_0.19597334624268115","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160828":{"name":"typescript","version":"2.1.0-dev.20160828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160828","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"60036997b6f30b0681cd004d5f635e2a1432cf32","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160828.tgz","integrity":"sha512-Wn8dvyyqLyhOMESqSEAfzwIBLfk/gyd58vUB9O+Af1iBY6nZpaXs6DC44UusKzkPAyi+61BVgxHxPcW/0LRwxA==","signatures":[{"sig":"MEUCIGgvZv+KgjuBy+aZm9DpzdCFOOu2s/a8HOtT5irel+nMAiEAviZ/b42Rq1bGzTAIGWt6MLYHhxtY33oM2Nzg4Fshgu8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"60036997b6f30b0681cd004d5f635e2a1432cf32","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"598ca48c94535156c842ddc13fddd24aac1130fe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160828.tgz_1472364419748_0.08881452330388129","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160829":{"name":"typescript","version":"2.1.0-dev.20160829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160829","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1cb22b81ba618c19c284c26ad87c16cf4edebc88","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160829.tgz","integrity":"sha512-Zga+gGFgJK649OMiJuFMO07cNbpWZPZSoEc8si3gmAW4DUjMx5nTBoV+itrrV1+DJNftZoIjo/w9wZxzOTu0bg==","signatures":[{"sig":"MEUCICDIM4ilMtTSD/7SgyIGBl5TefeNXwDAqh9F0cuaE+qyAiEAr5LGlBQNdNbFLi2UoKQWyRtnwcAzTqjhp0aH18aH52Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1cb22b81ba618c19c284c26ad87c16cf4edebc88","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0485bb6b56b38749b83a23626243627a42472d50","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160829.tgz_1472450834836_0.5940582328476012","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160830":{"name":"typescript","version":"2.1.0-dev.20160830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160830","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4ec8efd6d1c73c0a7da6e6364c71d7df766b26b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160830.tgz","integrity":"sha512-BiKcE7FeVj/YT3p9l3vKUwXNWxjS+zjyYYmjeTMcsq2rfTdZp45S+v4wmP8Rhzrn0fpqzfdWkge/5HX4x09TUQ==","signatures":[{"sig":"MEUCIQDYekx0knugoBearNDnWaHwhV/pSZDOf7Kagt20zfPy0QIgc6I+X9leyelYuXQu67foTqx5lrW8vl5xXXe9SrBFdqg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4ec8efd6d1c73c0a7da6e6364c71d7df766b26b9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0485bb6b56b38749b83a23626243627a42472d50","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160830.tgz_1472537194354_0.999076668638736","host":"packages-16-east.internal.npmjs.com"}},"2.0.2":{"name":"typescript","version":"2.0.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a63f848074498a4dfa7f293afda0835d501d9540","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.2.tgz","integrity":"sha512-eiTFO9Pmm6GAv3fnBQXAun+siVNWTlXDKlFOAwGlzRNLIWGKOfIv/jSkNL9Wo8K3+x5fyHAvOd16e38RSQB99g==","signatures":[{"sig":"MEYCIQCgMQQ0E7j31MLkRzvoe0/2x5RAgcLLwvD5vtnBrkYPLwIhAMcmvhcI5hSafyh9o1cyWXnEOG9UYswmpzO8iHXV07cc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a63f848074498a4dfa7f293afda0835d501d9540","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d6dac6a6cb83164db329482357dbd2ed3a6f459b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.2.tgz_1472573195120_0.8466535992920399","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160831":{"name":"typescript","version":"2.1.0-dev.20160831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160831","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6e9098beae752a5cc388a3319df32779c456e2d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160831.tgz","integrity":"sha512-PD5EVep5Y795lWGMV9nRL666/aeRB20/IP97ZWT3A6vl+ONJebQVcy8kAgVt+pOHvwPWvdsZ1IAwr0UeCL4uTQ==","signatures":[{"sig":"MEQCIEnQk/hIwhcAyXF8eHMC1cmjMYW/MCj+jS5/8SIth9+AAiA8nIndNla2CIOzI2txWlu/QHzYmx/n23sboaOh2arHXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6e9098beae752a5cc388a3319df32779c456e2d4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0b9573118454ab2420abc168405be1a78b482b57","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160831.tgz_1472623615739_0.517490531783551","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160901":{"name":"typescript","version":"2.1.0-dev.20160901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160901","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e7d6ee18f76aef1600a4e620eb20fca748b1cc61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160901.tgz","integrity":"sha512-XSQWle/+ge3Spa9NofYXxdNkz0ZykCrGZG4FP+p8tjH3tcMhrbhapMXcdPpIw+nPmmHDrpfYoHJ1/eTdCsF/Kw==","signatures":[{"sig":"MEYCIQDjoZQdsSNQYyUHNjdj22bcJlHvUoUbR7dWTsGVmzXjvwIhAP9tC2d1pIEk94yw+zT2lfyxQbN9JkdWTqwzgarhFcX/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e7d6ee18f76aef1600a4e620eb20fca748b1cc61","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"707d61d7fe953b04b3ad117294a33135573ced3a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160901.tgz_1472710009861_0.3333348776213825","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160902":{"name":"typescript","version":"2.1.0-dev.20160902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160902","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ca19d07675b4de78a3f41d3a919a5d2c9c2129bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160902.tgz","integrity":"sha512-lrjlrpT1vZ4jUqWnX0pT+uDJ/5r/64LonkDZkJocVfEGjSq5GMhZFulzwcfuL9NFrgEnVtHeGGNZyjDBEnUNew==","signatures":[{"sig":"MEQCIETcBPIz1dAC55XOs7EyUyLne75kwUBxs6mfWaNOHxQ/AiBhk3FJGDBZIeThft5DYvppuBMP/G1Qd+gHCIUjLpECiQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ca19d07675b4de78a3f41d3a919a5d2c9c2129bf","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"8038eb943e6509a5da3377853ca04986bededbb1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160902.tgz_1472796426229_0.9049535642843693","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160903":{"name":"typescript","version":"2.1.0-dev.20160903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160903","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fd16d831e3b0cba8f426af44dacc4ca52a245b1d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160903.tgz","integrity":"sha512-+Q2ZclvP87bz4Ws4LqXlJMDhlkVTFSXEtWL1PX4TDJ8DFYEdeoUzGXZjjiUwtRylC8PryvBOf1bmHc6stjFCyA==","signatures":[{"sig":"MEUCIQCSe6brvR9+2eg8G7tsP32LQjpOmO9+OTOsMd/MXqL2cQIgMuwi37LJs4bAvz+VVhlsU+LO4zVEk/qKA0tFDrAfVzg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fd16d831e3b0cba8f426af44dacc4ca52a245b1d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"32b6746afe193bfa0cd07798768134f1b8963fe1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160903.tgz_1472883057481_0.34614215698093176","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160904":{"name":"typescript","version":"2.1.0-dev.20160904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160904","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4ef619c7ca0bf0098626548e2b24762f4963eb59","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160904.tgz","integrity":"sha512-zvvUwrE5omFP5c8nKqjyETVOgzLIZzswdgY+/LXVsTEGW7gv+MdFru/sEO82QdftWl+g+iAUnGe+bBMg4YxP6w==","signatures":[{"sig":"MEUCIBseOR33ZjWBuTiSiCI1gw7usi1mKkzdu6E7kPpVxDaGAiEAsQP07QnTczlMhWbdKfoILx4G8UTLqYVrFZpOw8hYSNI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4ef619c7ca0bf0098626548e2b24762f4963eb59","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"32b6746afe193bfa0cd07798768134f1b8963fe1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160904.tgz_1472969422811_0.8531629010103643","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160905":{"name":"typescript","version":"2.1.0-dev.20160905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160905","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ac6f7c84d0049b36b980342bc1570e88375d1ded","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160905.tgz","integrity":"sha512-JbWpf7VBa56NdPKjFeTWwryvH+l5OWmGNOlVgJrfQLHyorSjdOknlDk5OUsWTRvJI/KNyV8o5O9piYfYsZm1ug==","signatures":[{"sig":"MEUCIHYA66Wl4ZjRbFThgcVc8UaACr46TZg5F4WNsV7XvUy+AiEAwqYn31JReawlbIxR1iTI0WT+oZ6DdyrB9I1YhmVUC5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ac6f7c84d0049b36b980342bc1570e88375d1ded","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2379000f8a9b2bbd1fface413387927ea2b31876","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160905.tgz_1473055825707_0.8476049695163965","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160906":{"name":"typescript","version":"2.1.0-dev.20160906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160906","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f2c39ba7df449ddd233bb16ad44e1c54e27550ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160906.tgz","integrity":"sha512-3h7VuuxsmwssmEvqDUkY6o2gKfsNt68L/hBZ4EhQG8kqZAaOs6QB3PWvlJ4HgSwQD0ifzHwCBT3BCVfJ6ARrbA==","signatures":[{"sig":"MEUCIASlBZDL695AhZ7vLqFobPd3Z82svKWYsgxbJwMZQILJAiEArAwApHeF8X30U66pLfq6VRiiAox62/WVKxpCGyDnf6o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f2c39ba7df449ddd233bb16ad44e1c54e27550ec","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2379000f8a9b2bbd1fface413387927ea2b31876","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160906.tgz_1473142303407_0.41269476944580674","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160907":{"name":"typescript","version":"2.1.0-dev.20160907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160907","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a16034e0e161e0efda465790f977174935d9ae77","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160907.tgz","integrity":"sha512-0LuAPpMjMHryP5iO0Ss2KYEr4JmOL7ce9z9CEpAWB3muexnusM5k+qgiHDyv1N9dpZPn3pE4XeLFEqRi2HIiig==","signatures":[{"sig":"MEYCIQDRqJCdCiDBzKD7qSnY9h0tagOeXR7LHt0qiEXvN1K+6AIhAMn/FiJku7WyP4AAn+ilfx/JhNFTOATddSTKS+50mxqu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a16034e0e161e0efda465790f977174935d9ae77","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"46856462816b54e32a9d962e218d6e3f8ff42348","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160907.tgz_1473228446083_0.6078537025023252","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160908":{"name":"typescript","version":"2.1.0-dev.20160908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160908","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"09358786ccf7562c177f5c62808fea334e81b4e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160908.tgz","integrity":"sha512-yXyqiHSovifbwTDkU0up2jB5TxAp0FkXPzYu7Gn4pXfPwWQ04lcKigmW6j7UiUGyU+jmL+egiOnnj+WUsXjo2w==","signatures":[{"sig":"MEQCIG129lKX8eikZD+x39TrNl751+cnkaQ6WwR57J20a1DmAiBP4m2Oc+e0AgWyh2n9PpXYveWJMH5UYRyC0LXHs5HaCQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"09358786ccf7562c177f5c62808fea334e81b4e1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"874846a5348516f1a0decbe3e8d3e0d5222b6589","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.1.0-dev.20160906","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160908.tgz_1473314850284_0.8407958562020212","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160909":{"name":"typescript","version":"2.1.0-dev.20160909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160909","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"adcf80b182769ea0a8144cbfd875e235756966ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160909.tgz","integrity":"sha512-TqtK7dwJPDdJN7sIE38XtgjSifIiyDImrmtjw3rWqpRHn2s0/JMehJQ1vSSMb0oxb/QglqfPl0LqqYpdm3ZrAw==","signatures":[{"sig":"MEQCIGVQ23/q4ANNlp/gvYQM8QIzdxDOt/1ei8irLIVp83erAiALd2oQVpFcCe8mPpra55reXJhjEc0xXoGJadH8iSN8LQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"adcf80b182769ea0a8144cbfd875e235756966ca","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6b25dab5e3735452b25f821178c28e51421db3c0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160909.tgz_1473401250770_0.6093201250769198","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160910":{"name":"typescript","version":"2.1.0-dev.20160910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160910","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"02a0977e6d276ad8f10e04d12a6e437ce096e116","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160910.tgz","integrity":"sha512-L+F5vkIhPbr3Xl4RMtQN6gF80JgISgxIzrFTj+8LFg4Weo8hjO7nAsSKGjO4vaUg3VET9psTEhn0jkLjfSI+Mw==","signatures":[{"sig":"MEUCIDo3cTMDULzKayK0cSvSFBhg2F+1a1q0Z9Ldf7AC7MXLAiEAosl+qsVmRz+JeH0tQu5OpXE+dJuz73a8j8SniS7kx0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"02a0977e6d276ad8f10e04d12a6e437ce096e116","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2305c685607f274992b12ac6a0dc5224b0667e89","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160910.tgz_1473487650637_0.1020425409078598","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160911":{"name":"typescript","version":"2.1.0-dev.20160911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160911","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b3b97c88a8d808a567874e8065a1c59dfd1b1852","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160911.tgz","integrity":"sha512-2vsrzuNuugjTOvMKs7Oq2T5Y5ZeL7a/ZTEni83orl3Fs321+s7W5I1jyYwdk4U5SkHdhFQ+UO86Cm5VawRL9Tg==","signatures":[{"sig":"MEUCICnJegFe+47ahRIcSvx8x9Vx/125/ApCcolUp65qads9AiEAl4S1EAfonN52maaw65rR/vtkAbLEaDJscqvWO1IKv2E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b3b97c88a8d808a567874e8065a1c59dfd1b1852","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2305c685607f274992b12ac6a0dc5224b0667e89","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160911.tgz_1473574072096_0.10062081716023386","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160912":{"name":"typescript","version":"2.1.0-dev.20160912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160912","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2f8f846a549997470bb25e86d0ab8155333e6bcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160912.tgz","integrity":"sha512-FaC/2gTRnZxFn9CcdTUWnHXelHBFl3zDrF40Ek6FL8DRZgeRhhKUvTbbGLkC8xNHUTPkTUZwbvq2v/og/OyDag==","signatures":[{"sig":"MEUCID8Tgsqgsi1YJRN9l2Ex3zlnVVkNBR4RJ7HUA0DaQSm9AiEAqZTxPD7TFqkOdUzj7iGgBkboBZuHJQrgVG9/cls/fPk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2f8f846a549997470bb25e86d0ab8155333e6bcc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3cca17e17d77224d3de2064fad26e0a339e237e2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"2.15.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"4.4.7","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160912.tgz_1473660433879_0.11540155904367566","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160913":{"name":"typescript","version":"2.1.0-dev.20160913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160913","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"846f37d76467a871065f25aec001da1962892a37","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160913.tgz","integrity":"sha512-ozqQQgZDGjOYFAm3p8apweyyzxmzsJv0H8gT/FE6/sggqFOgy1SHAbM9Ctprjly0DMEc3T+h/1l3wO+iKx0wig==","signatures":[{"sig":"MEUCIQDsgsTBNerqdjyS0YbGHWz8NAt0mgf53X0BNrz15L68WwIgaSH1rj/0e+iLOabmJDzPYP3EPkcdfg4nbzbS54c8adE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"846f37d76467a871065f25aec001da1962892a37","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9812ab5666e67518663c0d9e1a94af51be399f0a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160913.tgz_1473746890251_0.21147283888421953","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160914":{"name":"typescript","version":"2.1.0-dev.20160914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160914","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6697b363ae21da192171f8423e86ea6757fcc2d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160914.tgz","integrity":"sha512-anRXdfqlYgGhd6eLlgxC+e0U8zAyrrdDc5/rhip3PfftboEttrf7+plrWVGgh7DS0bs+iFxeV/PdjwHlpNUQvw==","signatures":[{"sig":"MEQCIHoUbiKxKKY5kSDgNs71UJWyEs40UPyOwr+TTZkPGXPHAiAsoRT0q3E/vSRGDgBxaJaKfN6R/yeVB90B4GhaM4/V7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6697b363ae21da192171f8423e86ea6757fcc2d9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"fe642f558633d8ea0cbfa75cc7e0a82c6d7ae2aa","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160914.tgz_1473833280114_0.5509565267711878","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160915":{"name":"typescript","version":"2.1.0-dev.20160915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160915","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2e0086bc1cd0ab146aa2dc945dee3429ba43b5db","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160915.tgz","integrity":"sha512-DGoF8+rrxCQprER8Qo1ymV2xNJGex3MJq3N9zHlPlEz8T1l59vRcpseRBfxbJCX+cDknk7Q4MNc91Wv2r77r/A==","signatures":[{"sig":"MEYCIQD/DNnPuKGCVrCM7KXgjklxsnvzKJK98Hb7dPE+8EoqBQIhALYg8UOPyz/k2Karcevedy5JCQ6dFZIy68TrJKHoKS34","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2e0086bc1cd0ab146aa2dc945dee3429ba43b5db","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"bbf80a733c84cc0fefbf87210e8b19c727dbe0d6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160915.tgz_1473919678310_0.7899313119705766","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160916":{"name":"typescript","version":"2.1.0-dev.20160916","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160916","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"13972b9636005f37a46fa6de1c1a878bc54cca0f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160916.tgz","integrity":"sha512-ODgaV8056LMi4enc+R6O1u5iWWRih1vhcpgSheRZaZFEnSLjqkDaSeZFlO2DvfQ4Ul/6Pjp96+Tnx3Ze2RXeNw==","signatures":[{"sig":"MEUCIQC49H8x0QfDX9lpI3eH6TMnsROcs5ficujb7B5qQmCEOAIgQv2mfzDO6omKfju+sCCvUwMX/SAfSYGOvXzLNMcFS9I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"13972b9636005f37a46fa6de1c1a878bc54cca0f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"50d243e469f7e85ea23a941de9308aa8974981c7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160916.tgz_1474006088134_0.7629320709966123","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160917":{"name":"typescript","version":"2.1.0-dev.20160917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160917","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0ddfda2542065c0a95d40360cca641dedddcb8f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160917.tgz","integrity":"sha512-2/B9bjyMzo7bbbkgRlXbpLx3ljH/4NZZqmsAv4JAuLAkDqI2LyO3vtHWi6T/ZxECnVtPtweHaq9zVqTrOgX3xg==","signatures":[{"sig":"MEQCIAqJxtBCy5KXfuvJpzGK35e/WTYqwZHRjm78E1P9vqf0AiB7EtaTJ+BVJxL5dTnNkdNbeOJW1L+//yBl/FME2x7B5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0ddfda2542065c0a95d40360cca641dedddcb8f2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"02547fe664a1b5d1f07ea459f054c34e356d3746","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160917.tgz_1474092519988_0.7764203362166882","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160918":{"name":"typescript","version":"2.1.0-dev.20160918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160918","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5c3507013b4664ce4d49a42078d7d3a5d9c7f32d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160918.tgz","integrity":"sha512-8xRbaHXcc8bvDTCqE5I0yH/7QrTyxzKgkEDGRkfV5Lbozt4S0mEJTivQPUk5CE9SFnjcC0D2mZp2kI0De1ZWrA==","signatures":[{"sig":"MEUCIQCU37fIUOokwhi62L8hGzVryrfD7EycKNY3FyipAycYdgIgO2Q4bDkSqEqb0JJZYrwX+I5O8VoTI+gEgVH7Dne/KzQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5c3507013b4664ce4d49a42078d7d3a5d9c7f32d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"02547fe664a1b5d1f07ea459f054c34e356d3746","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160918.tgz_1474178903558_0.22842928464524448","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160919":{"name":"typescript","version":"2.1.0-dev.20160919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160919","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e8c9f9175a49a47135a1a79dca49676c51311e1a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160919.tgz","integrity":"sha512-0xdIxcrj4qzkVR9RRKt0thgLP4SjizU0e9M4eW+UJaDtSdCyz5tCa/K/TSsPLPajqbGLDFNMtSk6heaeM8fRtw==","signatures":[{"sig":"MEQCIE3sG9qvTtKzhfq/m21vtzwChFALMVpOL4pbxRr8l+SCAiAlaKcEM/SQZREGi15MGe92F46EphsjPRQ1yrG8buhiOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e8c9f9175a49a47135a1a79dca49676c51311e1a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"b7d1d11ba32fe0aa01d7c06ad43c2c7f7d9ffb7f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160919.tgz_1474265316838_0.3610878540202975","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160920":{"name":"typescript","version":"2.1.0-dev.20160920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160920","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6327e7aafecdf7d336922b84a76f32a5c46b866b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160920.tgz","integrity":"sha512-OuR7eOSY78SeAWFu0OUJqhmsVQyojnIKcgdT8VK+MCUA+AoI/NE0CF7xseonQzbBvQJzUk8Qgd6X8k/uZayI+A==","signatures":[{"sig":"MEQCIBl5Ls/cw1uqQSMSk2HBLfH8Qk+bm2dwL5KMPduWasl2AiAemrBxPHeANWYKOTZUh/AMQAqrgK8TxSqsQDkgSDoWxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6327e7aafecdf7d336922b84a76f32a5c46b866b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"070aa83cc06b2974639bbefcde98e6e2fb5fe693","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160920.tgz_1474396973555_0.9266280450392514","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160921":{"name":"typescript","version":"2.1.0-dev.20160921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160921","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2a3dd4701a9f29d373b51997f41df1f18a1fd383","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160921.tgz","integrity":"sha512-squCGsGCO4EV0V4mB56jm7Su+3+PBOgda5EWcwL/gfRzLC3u5TvGMuM318KfWnG1STlr4Ujf0I/WRS/mOS9FhQ==","signatures":[{"sig":"MEUCIQCMKcolRkcC6ksjVIjOgX4saN3RTdksY4rtoEem31XgCgIgY95LvbR0qQgvjVkYYOTNATwxWDosnJcDUAmM1JuZjb4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2a3dd4701a9f29d373b51997f41df1f18a1fd383","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"070aa83cc06b2974639bbefcde98e6e2fb5fe693","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160921.tgz_1474438075089_0.24451784463599324","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160922":{"name":"typescript","version":"2.1.0-dev.20160922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160922","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f4a25d2cc7efa7c0b9764b0b77d49dd200667e5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160922.tgz","integrity":"sha512-y7JDTYrmqlQxBTFs+/0pkLtFHn8oJU/sPyKYFAb0CwI2jMVG21Bmnwz+vp37/RwQeOJbNl68p1Iu2UBUFeJrTA==","signatures":[{"sig":"MEQCIBD+tHYdSxbYv+QsL9l72IfXWrZlQA1Pl0J+rJ6tqSC1AiBwwd0Y69iCjTmnNqmg3Q9HwydMPDNpCkxasbrlku3taw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f4a25d2cc7efa7c0b9764b0b77d49dd200667e5b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160922.tgz_1474524497536_0.23874470149166882","host":"packages-12-west.internal.npmjs.com"}},"2.0.3":{"name":"typescript","version":"2.0.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"33dec9eae86b8eee327dd419ca050c853cabd514","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.3.tgz","integrity":"sha512-VMzzasFNZ8NAp/t4UQeOIAa6x2c3XXB6+URGufGpPPRyWm197B0dPu9S7t4MGhXCv7oCDvo+Hx/qF7LLI8dOjw==","signatures":[{"sig":"MEYCIQDQFXysFlUgO2OUZW4jF6K6AqqNBm01OVDN4JK6fLZ4sgIhAMDPq+t5+bU5zAmY+4yKRLM/ddX/1clIShmqWvzpmm6L","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"33dec9eae86b8eee327dd419ca050c853cabd514","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4f65a2885e000c27e5f079171d440797d7307b97","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.3.tgz_1474560003144_0.4724818258546293","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160923":{"name":"typescript","version":"2.1.0-dev.20160923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160923","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4bbab1acd3ca38b5c6e2f806a5a5dd6c4fb11b3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160923.tgz","integrity":"sha512-YYiwfyMtGLbRxnDJa5/D0T8fa4vUNiD5tUWwdD1aOl56+ISSfdwunu9+NN7duRyrVDFn9cIXF5z1LOsjVF0UJg==","signatures":[{"sig":"MEUCIG5O2kQ+89ECJd41CwpUjB/R1lMOuxejst13aHEKoM8CAiEAmc5RCtSHWTw784wnjc9rwNko7xuaRH9RjnMZRynGPGE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4bbab1acd3ca38b5c6e2f806a5a5dd6c4fb11b3b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160923.tgz_1474610875190_0.1106874574907124","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160924":{"name":"typescript","version":"2.1.0-dev.20160924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160924","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d49db8bcd6b529510f8d86bec0cf1519225aaf85","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160924.tgz","integrity":"sha512-pUIy5hvpiZ8LwtM+PomcnE0YT5VHSEW2ywyIBi8GFJpORxqK/Q1BsEoNPuDWLJbzskOOYBK67j1G+kNrOru+/Q==","signatures":[{"sig":"MEQCICNVV+1pgtXoSAhIKojrWVvFhGgtyDXdopGhWaxw9vcGAiAdI33VwM2v4R1/VVTHDLn1slh66kZjzlXPc3RZSNJlaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d49db8bcd6b529510f8d86bec0cf1519225aaf85","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160924.tgz_1474697272859_0.6839036403689533","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160925":{"name":"typescript","version":"2.1.0-dev.20160925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160925","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"44df5d3c20d9dfa819381c35fbd08b3246a45701","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160925.tgz","integrity":"sha512-gbhspk1EL2YoLpiN0iKA5u/mHkduoaIMFKbT41kWeKyzP30Ug+EbkFdTOZq/m3oSc0kGAedGkkBOOy763zJxug==","signatures":[{"sig":"MEQCIDhcPJxm0EA4F2ZTzsoo8oBkytZhj2cb3cftBymPdIHbAiBIhRNdeX3t4E/1Wj4vzq1Fvg8CJciEvKv3M8EJqvdMOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"44df5d3c20d9dfa819381c35fbd08b3246a45701","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"95c3eccbe9f3f7e1857ce157d437e6b80b3c9c6f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160925.tgz_1474783696093_0.69422786985524","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160926":{"name":"typescript","version":"2.1.0-dev.20160926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160926","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b7d1e1e6d5537875ccb67ba71971dac2fc23a0ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160926.tgz","integrity":"sha512-lKH+wKOCA5mRmkKd4cXKig+leMrJDqh6f9yzMY0mR6JdD08HfN/f+IcD4+Srng5KrJuj583wn2KU2QBQsypBGw==","signatures":[{"sig":"MEUCIQDS+cNakQ8DheS4c457PTl+meZh7zxicjNxkq3XjByTyQIgaNriop3QHxnj554KKviWLRh6eq/ReLYh9twKWUBVVw4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b7d1e1e6d5537875ccb67ba71971dac2fc23a0ca","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9950b98b58b453668d0bfab4f07617eda4633152","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160926.tgz_1474870093461_0.1468853773549199","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160927":{"name":"typescript","version":"2.1.0-dev.20160927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160927","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"44704b148f16b0ef9502c4dc363036c1a3908b23","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160927.tgz","integrity":"sha512-PXiGMyLUW6ik5V/14nOSyiMYUmMbOlCmdt/E/PuyCdsM26txI5f0K1HqWdDWXy1mi+bnuhfGXcfh0BiqrjpcVg==","signatures":[{"sig":"MEQCIHnz4tkmzuzSjZtCdGr98XHolXAwtYCywKwSmQYGsbwrAiB+L6aCT4gJ3ugOS981oticloE24Ltwe+UIz1vs5p8Zew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"44704b148f16b0ef9502c4dc363036c1a3908b23","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a633652f08db9efe43ea63df76ecc6edadbb89c5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160927.tgz_1474956490080_0.12269348627887666","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20160928":{"name":"typescript","version":"2.1.0-dev.20160928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160928","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"915bf924979be9b436748d612d8895d613a7a020","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160928.tgz","integrity":"sha512-xfhlF33NzGQ3yb7fHGVpmYkupW31cQFbaG6TGiWAa/xlb3Zrx8XC/VAIPO9Pi4otyYjW4o/jBsHN65RWZ65xbA==","signatures":[{"sig":"MEUCIFYpI3h9SAqjT2Bplritum8yPoLZF3yKasSHZQoPoVzzAiEApWfJlIyx1KAiMB23TobMmQaSptSK9AAQOqLlkncjP/g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"915bf924979be9b436748d612d8895d613a7a020","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"60ab007d3abf3faa39776c4708c1cc14b43dbcc2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160928.tgz_1475042896102_0.5659565720707178","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160929":{"name":"typescript","version":"2.1.0-dev.20160929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160929","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a9fe8a0f4135a2b3413ff0316a83315506778344","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160929.tgz","integrity":"sha512-m4374JW9+yzPwof3/yx3uCw8uKnmTX4tYdYaudM82WM9+TCmUgr28avbB2vh+shCtSpcG4f38d6HtP6/GhtXlg==","signatures":[{"sig":"MEUCIQC4RgxUDommJ2CSQ65igdPkyAWzUxgzZGgUY/AvpyuHfQIgR4QTsnlksaXq9PoV3Z1QUN9IXaXhT/ITC2jV4YxCP4Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a9fe8a0f4135a2b3413ff0316a83315506778344","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"60ab007d3abf3faa39776c4708c1cc14b43dbcc2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160929.tgz_1475129280349_0.6854292876087129","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20160930":{"name":"typescript","version":"2.1.0-dev.20160930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20160930","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9fd3fe380ab0ae767338145a98f3c34cc0e33148","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20160930.tgz","integrity":"sha512-pF1/Cosoc5cPLjSyc73fckHu2/Xcv6VuVbsjesdYXixhyuGY9hckbuCHyIC16fX2cK5ni8aY4HH+mAoaTGhJ9A==","signatures":[{"sig":"MEUCIDVFfKH6mkivYXTpLaMlNbYhlQ0OaqbuCg0CmAk3TCKlAiEA/kV+QNdyd2kFrSYiNjciyioWEOkdpiQdE79sb+gUJEk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9fd3fe380ab0ae767338145a98f3c34cc0e33148","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"edd8eb8733c965b0145267a6d2cf3b39705639eb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20160930.tgz_1475215698555_0.2479304620064795","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161001":{"name":"typescript","version":"2.1.0-dev.20161001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161001","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7a76ed1cd7d3c6a569a2dac8c816a1f6df65dfe5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161001.tgz","integrity":"sha512-OJfATakcw7yXADDFCasSX3UnXkBvlLibIgybwEPv63WazYFlCHieh/D7Kwku23tAcmEliKvBi064QiqOTrb5pw==","signatures":[{"sig":"MEUCIEXTbenMhhaXjpsPMfakKtzDQ9Gif/xtK9AESmj8MsOzAiEA2b1dt7bdbHes09eWV4l3UWZEyLvyjTcaoPuesEp9qZU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7a76ed1cd7d3c6a569a2dac8c816a1f6df65dfe5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d1ac8dde0b2a9bc4929cc45a918e29dda651dafe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161001.tgz_1475302125087_0.5224863062612712","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161002":{"name":"typescript","version":"2.1.0-dev.20161002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161002","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0472060e9a9442bc2d4599c89b84441df32eac65","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161002.tgz","integrity":"sha512-BxUwMYmXucJXvIic1pNM/RVfvwQZUDyDQOWYRvzsv98ZlsYvs7KfTuAUhhfeXicrKjHcs/kWViXiLEyz4SPKDQ==","signatures":[{"sig":"MEUCIQDuChkkFLmomrdDlpakAEGS6rUHbeiq3OyMKM6W9JyJGAIgICBsr4nifEvIQRhRi9g9dVk4jH6OaO9TppR99WB27sA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0472060e9a9442bc2d4599c89b84441df32eac65","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7a1635f2f4a26151a0a4015cd5e5734e66aa65f7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161002.tgz_1475388515946_0.7307403273880482","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161003":{"name":"typescript","version":"2.1.0-dev.20161003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161003","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"124b2bb1459829320e17516ca908330c586f88f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161003.tgz","integrity":"sha512-HmJ4QDm0/EBym6yOHvGb5SkhpMuFT+DM6vIiyakpN74yTUBjH0gdMwdmNErPNe4hkmhN2mS5/lQ65mYYSMfiTQ==","signatures":[{"sig":"MEUCIQDyIkFwtoWf8RZk6Vuv2SW1qEVUMboRf5EIPlDXm+mGzAIgFoMxw2NMf2ytCehhEhoRhRIJ4rikS8jODx7LKDTQ8Mg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"124b2bb1459829320e17516ca908330c586f88f1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7a1635f2f4a26151a0a4015cd5e5734e66aa65f7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161003.tgz_1475474900531_0.32315184106118977","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161004":{"name":"typescript","version":"2.1.0-dev.20161004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161004","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eae4bd868605b2ae20cb1c65fc4f73fd7881b056","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161004.tgz","integrity":"sha512-ubBw0ufrLUhaJrmVYrqYLL85QV4A1UkLOw29EqvhyxlpFnjWV1FKP0p5ozCuVHBJt24YgY5b2L+8qT70+G4g8A==","signatures":[{"sig":"MEUCIQC9bWMBzJFn++0Tw5FV4KsFpNZosxC4Xq5QGUO1tRnQ/wIgcnRirVpwIkY73ddqMDxOcDUnBzE6HkUphmkstiBRjzs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"eae4bd868605b2ae20cb1c65fc4f73fd7881b056","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a0fc9059f927b289461ded2128b802d56118cd37","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161004.tgz_1475561324799_0.25964410114102066","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161005":{"name":"typescript","version":"2.1.0-dev.20161005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161005","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"34d9e4e1b3c39acb88d0118fe09fb26acf144ca4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161005.tgz","integrity":"sha512-EJ2CAmoTmU48NSKAoRkcsXIKIOBio2rmka0LXVk6AdQ4kdFb53dNI0VXxMiVeENkBmJ3/Z11VQLE3vGjdZbIBA==","signatures":[{"sig":"MEYCIQCxi3zMzCh8qvS6kNdfVVfsKx2k+f+DQOh7//X30SQLqQIhAIbIszqyCnHdWRDO096aGkyaTiULy2LQVmKtxBrYx4De","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"34d9e4e1b3c39acb88d0118fe09fb26acf144ca4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ebb17e801923e041c03fae1363d60de4e2f20bf5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161005.tgz_1475647723256_0.45440940582193434","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161006":{"name":"typescript","version":"2.1.0-dev.20161006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161006","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7a8fbd3f34daaefa6386fed0dee15f97ab8c70fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161006.tgz","integrity":"sha512-3M6ZDhGcnSogcsVIMOIk4sZzvvFlAwU1bg57lB7jVJtPDoUw9EU3C2yhU59SFVcMlvmVqwVvvaCdDL263f9+bQ==","signatures":[{"sig":"MEYCIQDDGHG8e2QXKADOFdbhzilmJOCcOGbtsL0Gp47oqDCxBgIhAJznNls1/Q9+7tqgNeflqiQn6bg0zAz/YFgiAfoKwGE8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7a8fbd3f34daaefa6386fed0dee15f97ab8c70fc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d72a0430ca1c2c9140ced639a54d5f18bbafb96d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161006.tgz_1475734136888_0.38792360899969935","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161007":{"name":"typescript","version":"2.1.0-dev.20161007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161007","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"304d8dfa408a4c8447b63a24495cb9285837be45","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161007.tgz","integrity":"sha512-XMsSX5Q4xNVjUm5lMp1VBcYnmMN7f0UutoRLY/I1vvg4C1Cjegh+tC4S+LD1FMrSjh9R7WVBoB/Fyr9+B4Ibyw==","signatures":[{"sig":"MEQCIHIh223xHMvrnt44o8jPBOzuE4excqLD++nOeOXsEDj9AiBMwMtRc0FcdbqqhgmJ+Q3xO5tuDuiDW86U/EZzx+R9WQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"304d8dfa408a4c8447b63a24495cb9285837be45","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9c0d6b2175a8aaa40dc528ebcc000b644c699559","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161007.tgz_1475820526479_0.48157797125168145","host":"packages-16-east.internal.npmjs.com"}},"2.0.6-insiders.20161007":{"name":"typescript","version":"2.0.6-insiders.20161007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.6-insiders.20161007","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"79e5135c932c10869a804468bc35b760806dbc94","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.6-insiders.20161007.tgz","integrity":"sha512-6F+vvljkySuP5dc+69cMks4M1JHMxjtWEK6r5H8J7AiyG/9YJHzGhp7OkSUQeHzua794gFyQEgz9a3HhwelAWA==","signatures":[{"sig":"MEQCIC6Y74e+aV/4vKY5GtNK0xgPSOQfgvLqzUVvFWdkAaF2AiATKBhCZ98WMOrTPctLS3ornnl5BBBMzy+c+POvaA+WmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"79e5135c932c10869a804468bc35b760806dbc94","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ca8057e5c7781bfeefd81c8234369c8c5b2f7d19","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.6-insiders.20161007.tgz_1475884013859_0.36589682660996914","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161008":{"name":"typescript","version":"2.1.0-dev.20161008","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161008","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e3d9f8e2d44c103368906359a98d740d4e2257a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161008.tgz","integrity":"sha512-gYYBZWglOTS6ifMRxKzaCgThLnTIDZuD7Osns+9QoGJJ4HfYDJaVa4yLnnx1YJ5niT8af4S4ZybI2CvR8D9bUQ==","signatures":[{"sig":"MEQCIBBfkOr+UsXakHtM9DEDhkiB/D8y3UypycXj7EfrTUyqAiB2ufRvJvDtgqiHzZNPq3gntdbO7L/7YL3ZUkHMhbbN/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e3d9f8e2d44c103368906359a98d740d4e2257a3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161008.tgz_1475906961410_0.3471648287959397","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161009":{"name":"typescript","version":"2.1.0-dev.20161009","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161009","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5bd1188042760fd2ee1cf4c470f4668a9d012127","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161009.tgz","integrity":"sha512-rz5UVfv5a0/TJLjVjcqO7pA5ArzVTCNTMO1s5A/716rsal/D6NoiywCPg6BN2NzWSRQRyiKxjHcdXT3X0oLp5w==","signatures":[{"sig":"MEUCIFAqa06Y/YXNz8MhjR1UZRGV1Nws+y2EGWTgFd4NPrpEAiEA4g51mB0RJfCEzvlxPPwjU+YTxPYSoiuH7jcdohaUVjo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5bd1188042760fd2ee1cf4c470f4668a9d012127","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161009.tgz_1475993309386_0.8348111747764051","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161010":{"name":"typescript","version":"2.1.0-dev.20161010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161010","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8786e1e14650cc4c7be019e1759b131453cee363","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161010.tgz","integrity":"sha512-Db2LYIzaYSGk/u++R2Djk19wy18ZJrJLv94AGE3U96u0Qi2fzrEabl+G/Bj/cStrVejXrQM36CGsIrqQ30pZ5A==","signatures":[{"sig":"MEYCIQCWMQrH5qSt8hQr9Oh5qbzmf70pLMTM4F0JyyiuqDoSjQIhAJPzgvGcUvtgyuEKLkQ+cAdgiADbWniHWrrFjYXQPgy+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8786e1e14650cc4c7be019e1759b131453cee363","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"d34916abf8682af409d4b1426f0bb0c2f1700eac","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161010.tgz_1476079702829_0.3145750726107508","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161011":{"name":"typescript","version":"2.1.0-dev.20161011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161011","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"06319024a2708d64921f4cda18791a3b49d47725","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161011.tgz","integrity":"sha512-ZiC622S/Hnrn2KCBkK//ow8D0GBQ7xVreZq8Fp5vr4zUqJa9ztUmft+OWF9q5+0YP1/VSMRmABXJxkxdYiHzhQ==","signatures":[{"sig":"MEUCIQDlhWFCSWfweMxDl5LD9bCpbGi7lF3R5WwjYoEDdt5YxwIgNm2BzWLG97qjzftyDoMSpsVmGowg6Lc5EIXy81yXKug=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"06319024a2708d64921f4cda18791a3b49d47725","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3b0515fd8b8742d1c25c70642e853a9ed4e324c7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161011.tgz_1476166122404_0.24179362575523555","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161012":{"name":"typescript","version":"2.1.0-dev.20161012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161012","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f03053419a0d6528217f8112087b404e3290a2dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161012.tgz","integrity":"sha512-9bEEfIpLf4CJhCZsFz1XoqKkSO2Cq8u0SfM3SIguUiQzZsNxGvHnGFVsjJ7ae8I30Hbg73FCqYwEzigDH+hSoQ==","signatures":[{"sig":"MEUCIQDAG/LSa0FWZ90lP9YxX8lYjMZSK5HZEVI2ZZnuzg26jAIgYS98ovyZLUK5YDw3Ey0SOLR8odqjvelRl+8kEJTbPmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f03053419a0d6528217f8112087b404e3290a2dd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9f73ae59035b17ff7498d1e2d968137f06404d82","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161012.tgz_1476252527707_0.5056233052164316","host":"packages-12-west.internal.npmjs.com"}},"2.0.6-insiders.20161012":{"name":"typescript","version":"2.0.6-insiders.20161012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.6-insiders.20161012","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0d3635b7fc1c752ffb8f4707bc6808c8c4d7f006","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.6-insiders.20161012.tgz","integrity":"sha512-AubRHdcGxXDtSsQu/Kf225OgllBMmFxnqsS89fCLmyEkMzYkQqCZHxHvrnSqhxVraR4We3MaQyycUCCqgkiidg==","signatures":[{"sig":"MEUCIQDXDUE0IlhLyEPGhPu8FWOcj8v/go9ImS+DDf1aegj2jgIgbG/zV1eID9Aj6T0eoMFK5V+vsnSTawfAb7d0DhI74nA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0d3635b7fc1c752ffb8f4707bc6808c8c4d7f006","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"635313ee45e1edd09e5e6e849cc58d2ffdacdfc8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.6-insiders.20161012.tgz_1476321779893_0.024057665141299367","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161013":{"name":"typescript","version":"2.1.0-dev.20161013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161013","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"79b8ce0e3bf97153ac392a9a5d275a8c832016d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161013.tgz","integrity":"sha512-/6kThp49GOGUh1XRQtB5r6yoBetlkebQ159CufJeBvZCsrdfzpaRLSg3nVfYTH4p9vi4Foaa+LJQhZVd5+azlQ==","signatures":[{"sig":"MEUCIQDak8g0bqpuXYzGju64LPcnxGyjICXKn8ViranaG0Bk6AIgd7XMPxe76eBup8+u2wYnP7TA8ASrKl2pkXVJLXOEpsg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"79b8ce0e3bf97153ac392a9a5d275a8c832016d8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"31a55e64523ec38b6e484f92fb2756b57e4f439d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161013.tgz_1476338937439_0.36088081705383956","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161014":{"name":"typescript","version":"2.1.0-dev.20161014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161014","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a5a32c64f0fd95d055de6687705a588fe8ffd901","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161014.tgz","integrity":"sha512-+hkhZxfQbo19U//YODgzKYX0auC6Wi7dfWt9IxygFgbhBY9XL3zOV6slDHweHzBiYyjAjmFTqkH4rvlHs0fXUw==","signatures":[{"sig":"MEQCIAairZ9Ot874Yx7zE5csAb2k6x3Yz4xaSYtr+M5tiLOCAiB4h0fpctpwShBdisclXy99xPJkw6NFqYb9CuN77TSI6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a5a32c64f0fd95d055de6687705a588fe8ffd901","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cdafc9dca1df725e6684a84433d147710870e2bd","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161014.tgz_1476425316282_0.6303214551880956","host":"packages-12-west.internal.npmjs.com"}},"2.0.6-insiders.20161014":{"name":"typescript","version":"2.0.6-insiders.20161014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.6-insiders.20161014","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4a2ca944708ecef95e2d6179d8b03e49e52c82b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.6-insiders.20161014.tgz","integrity":"sha512-Tun0qG+7Px8UPN49haLZYskHHCYMnbgEgatM8ib/2n3yJHjBq0dpqRTm4r2b0KtAtvvjJgY/211zxJ4GxBn+9g==","signatures":[{"sig":"MEUCIQC5TxcNObT0RqRwtm7DM/rRXZnHTmvwYcG2iuNyoqnVIwIgWYIekUxXQzLfjT9Y3i0U54H+QziiTYtATknjBeuf46I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4a2ca944708ecef95e2d6179d8b03e49e52c82b2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3030442f525b52c8fe11822b9d5a79deb0b45b48","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.6-insiders.20161014.tgz_1476472277614_0.1924369919579476","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161015":{"name":"typescript","version":"2.1.0-dev.20161015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161015","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8754ef8f5d95d54ded7e2857116cd9676285fb9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161015.tgz","integrity":"sha512-BbZo1g76rksnJLKVAtSTKe1918XFQnZiG6fDbOidwjRM6sVJsGWYBIN1B4qehXYfpJh7Ajzg9BcmXYITpyMu/w==","signatures":[{"sig":"MEUCIQClT+s2UYr99f1n9NuIcxYPwxt0esPGaVogltLheoSJYQIgQTAbfyXwsjGNxPti/34uYJTMsuX6oy7sKEQNibNLHmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8754ef8f5d95d54ded7e2857116cd9676285fb9f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a1cbfcae4b2560f2709a88e4d41185ac548c5e5c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161015.tgz_1476511737558_0.49819342722184956","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161016":{"name":"typescript","version":"2.1.0-dev.20161016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161016","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0158cafe224e2e1fa4aa5b9e884f6b65ba577ca3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161016.tgz","integrity":"sha512-S/LK4AjuFg10Uo2Fcv7sAzdRIGpIr1Mtcm2AKfzSza7jVcYnKyyVKjVPrr3zPIqm/4G5xcdEtHZ4ZZwFAAP5Rw==","signatures":[{"sig":"MEQCIG8UZONItA69K5OW5bNixZCzVAYzTGshLLWgsfgUrcBHAiBgdwtOdBdU/G02LUqO9gbEoVaQ8OGWIG2OXJFyyJsgkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0158cafe224e2e1fa4aa5b9e884f6b65ba577ca3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"65b1cf665e6d387a09aa7c6dde149992ca05aa17","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161016.tgz_1476598117198_0.09547841153107584","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161017":{"name":"typescript","version":"2.1.0-dev.20161017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161017","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eee37999418fd7f9f5b8bc8f5adf38d235a995cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161017.tgz","integrity":"sha512-Bo8Z1h1yyLSQsAosY7i8EmFIpEuudPirqr7IQvwvLVevPcIgpmn4YfKSYRA1vNav5jMvd8LbaszD4YxZMDjOUg==","signatures":[{"sig":"MEQCIB/ar2/CUBVcepnKh4I1xISm5yOwFTfDAF/ucFWkW3rrAiBPBqOeGIe6sAl/GcF6MVdZTaxg8fxc+o76x5dtMgbeWg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"eee37999418fd7f9f5b8bc8f5adf38d235a995cb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"65b1cf665e6d387a09aa7c6dde149992ca05aa17","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161017.tgz_1476684542482_0.7064095779787749","host":"packages-12-west.internal.npmjs.com"}},"2.0.6-insiders.20161017":{"name":"typescript","version":"2.0.6-insiders.20161017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.6-insiders.20161017","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aeabc76cb09b33057bdc4bfda26a1e8c94257d4e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.6-insiders.20161017.tgz","integrity":"sha512-yl5uawJMDdtayhVMntSXK/Sv5R0GN9uF18kTFpR4a4KzMxsSlWYfXaAJfjPRU1w1aHHGw2r0N3VsV1gy7KkM0A==","signatures":[{"sig":"MEYCIQCFhGAoLRB8FTHYXruE1Vj4s7eFjtv/Z1ftKKSJ/jlzDQIhAKEK5pq7DrSz4ynWrppmGr1Cz6o8o8j+5+5lpmjuoxq5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aeabc76cb09b33057bdc4bfda26a1e8c94257d4e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ea3cbfbca43dcc1f3256afd42e78fdaf76e0454c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.6-insiders.20161017.tgz_1476754516742_0.9117188674863428","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161018":{"name":"typescript","version":"2.1.0-dev.20161018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161018","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0dec581b522c54678969925128f45cca95cffdc0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161018.tgz","integrity":"sha512-bU7DW6z8L+FOgoutH9F3J7VeahysKdffYOHwtKrP2Dn2BJ59fv4OiKjCeqp29yJhp/STXgsoMw+Moo4lpoWYCQ==","signatures":[{"sig":"MEYCIQCFsAHwSTSCSqcD1bdIktUFcnqUcziDBEPPNvhqlEzH8AIhAIgn2IcdHrdN2iId4q1HOmNeTRMsHzJkTfEndNcu0QUn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0dec581b522c54678969925128f45cca95cffdc0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"68c485d9f94036a7f6953bfb8e03e5c4816bea80","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161018.tgz_1476770924850_0.3112610881216824","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161019":{"name":"typescript","version":"2.1.0-dev.20161019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161019","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"45c6a32b1b4a00dd87c8e1e3ee3e00b80f61b5c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161019.tgz","integrity":"sha512-acFsNSQRDR5FTy5HaQsHlc+xobu6Yzy4iZN1ViL0SIY+LksDQ9dQQgVFzqaLkwM2xG/buvj/hzlYs0CywxqPxQ==","signatures":[{"sig":"MEUCIDiud43CpYsWik+9TfD+ixnAHQK+7Slgd91cwuFIiSsxAiEA1NVbeaZnFBiDHPX+s6fEjpzrXMNy382F5tA2U86NB60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"45c6a32b1b4a00dd87c8e1e3ee3e00b80f61b5c0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"14e5de3b1d6eafa2d3213a72b8599ecc972ed419","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161019.tgz_1476857338759_0.9975527203641832","host":"packages-16-east.internal.npmjs.com"}},"2.1.0-dev.20161020":{"name":"typescript","version":"2.1.0-dev.20161020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161020","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c4cf57674d10f3da5017a88c53b7506b3a9cd03e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161020.tgz","integrity":"sha512-t2ccBYAXpic6vjblFesCeDDWb/aMXv1mrWQixhbqTJBoAw04cXELNcP9KDk26EOXItmZGCTjyjcuV+U+taxQYQ==","signatures":[{"sig":"MEUCIQDiZs3xVHq6oBFktpYtaDZU+0QGJrafCVcsL4/tCBA1uAIgV6bmWc4TgPdjWvXs69bNtcElSwo4r9Ag/19DboB97PI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c4cf57674d10f3da5017a88c53b7506b3a9cd03e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4fbbbed321baa58418b9379b418278d31400fe3e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161020.tgz_1476943757696_0.4401043807156384","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161021":{"name":"typescript","version":"2.1.0-dev.20161021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161021","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f4d3b80d72efa99539f0461372cde182d14cdf41","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161021.tgz","integrity":"sha512-/8jTnOKi+B3CaHlV6IjBx1nkmU7ReyETy6WHNiKbH+wsGiWVTkGqhzSdquoTJeq8drdkU9Vkz8gB5Yte3CFLuw==","signatures":[{"sig":"MEUCIEIugAjv2tj9PETcb6K445NPFQu5gOgyjcHJAZryfxJYAiEAh2cx5RsT+rNTizeGb9ksCjDHRNurx2N40+dLQvgz75c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f4d3b80d72efa99539f0461372cde182d14cdf41","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3263fdec7cd4f464ec211fd8c82865039da79d7e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161021.tgz_1477030128544_0.9167353224474937","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161022":{"name":"typescript","version":"2.1.0-dev.20161022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161022","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"efbbe17ca29f88c110f7c94e9a88d849e32e30f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161022.tgz","integrity":"sha512-FJa82RJ6jIiZpfk+Hbjqw1L9FjQZ/mOgL/iPA12nOdhpSYKu761xHVPlRcd0lJOA/5+wtTMNtyX1covvp+Mqnw==","signatures":[{"sig":"MEUCIQDIPJgA03N/ovtpbv0/o8CFEPcj++mWLOBZOtV/D6nLywIgXDDH3aeLK4MIhF3JzUZW5TiBkQFOxrxNQ2pVY737tAs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"efbbe17ca29f88c110f7c94e9a88d849e32e30f4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161022.tgz_1477116509148_0.12494631693698466","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161023":{"name":"typescript","version":"2.1.0-dev.20161023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161023","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7065b4f858b53ec73f4cf865f28f6483fff6e400","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161023.tgz","integrity":"sha512-bDFIuoJOoEXOySkUDGIscaZdlwiaefVibfOJy0/DmunJ0FwViH4i5lJ4NKocVgxQwnjJMO5StyFvkus/p0WlgA==","signatures":[{"sig":"MEUCICbo9wIWjn5O5H04Glf/DAri68yJuLEhgHQZuBex2PujAiEA5EKsUiP2WGfb7WR9lJ0q9lxSfhJG3vRvlZvME3hlGmk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7065b4f858b53ec73f4cf865f28f6483fff6e400","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161023.tgz_1477202944705_0.21954477997496724","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161024":{"name":"typescript","version":"2.1.0-dev.20161024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161024","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8c9bd571ce990a1bc01444e28b5124658145b83a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161024.tgz","integrity":"sha512-u49Cgxbp5hzDPj9Y7wmgBCxkFfnH4BctNHXfC9fLxERsBDoDGS2RPYK2eUDZG+iJbxenxEMhBKM9zCXmzonBww==","signatures":[{"sig":"MEQCIASsExqUgW2+QKLS6amUapgjwzM29slNMGfl5tm5RbyWAiBUVGAvx/ARNphe77YgfeurqJv7YtAfrVcpcw6WwfQ2UA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8c9bd571ce990a1bc01444e28b5124658145b83a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cef9d8597914f633f51c15b5ae6f9691c4dcfbc5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161024.tgz_1477289335302_0.23214965988881886","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161025":{"name":"typescript","version":"2.1.0-dev.20161025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161025","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"183de682d0b22b23fd1a040d6559b193d1bc0c7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161025.tgz","integrity":"sha512-F5RtvvCxsD4Z8QHGJdO79w9X2G8uaZKp2LEQQfGt0lVrrkwAapeS8y1EodURrs6nCsIUz7R0SdAPB1YDWoGkPA==","signatures":[{"sig":"MEQCIHqb9u0SQr6mzyqOvlOKg5Qylx0X2x8ZPjYMXYoQFP8ZAiAER4vtiINJddpW0dW+JD+Czk3C/XmjWlVPMFCkHlLX6A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"183de682d0b22b23fd1a040d6559b193d1bc0c7c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"3bdff73c16b5a7eca2407500254764618b35bce4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161025.tgz_1477375752671_0.7953087924979627","host":"packages-12-west.internal.npmjs.com"}},"2.0.6":{"name":"typescript","version":"2.0.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.6","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5385499ac9811508c2c43e0ea07a1ddca435e111","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.6.tgz","integrity":"sha512-sGCGLHTuI6gQO1A7mqB0pIh+fQXwIcGZ6VbMaRm5VuGrZAAr4IMBmGbfuFJgK7SouPpUVGL+WxDAA+8Hx+a/JA==","signatures":[{"sig":"MEQCIFkguSS+njHxJQSeNiiMh22EYDtCtMXVd353Enrt0bgAAiBmQ3/5/w4vuvYFUoOxhHWfXv7a2jo7Re9vIJxRVQmXeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5385499ac9811508c2c43e0ea07a1ddca435e111","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"80bca648441e0ddd4c1cec26a17da27d9cc49c91","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.6.tgz_1477418019854_0.024905235040932894","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161026":{"name":"typescript","version":"2.1.0-dev.20161026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161026","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9157eb9af6ee7d8c39ab8b8ba417ccf18c6069e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161026.tgz","integrity":"sha512-H1kcYSS+pzDtaZDZ1yfLu4XqHtWLMA2MP+doDn0JdCEPVxD/CUU7m4nqNUQGrfwpBbNlctMGpZc9fs/TzOZJhA==","signatures":[{"sig":"MEUCIEecLlYaw1dvAHM+vSvOGbSfGNhvWtXLNdUBFJquz3hAAiEAinHgnmXo8wUwkoRNKJ/Q8wCYGclZrkOHnawBvMt3M/4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9157eb9af6ee7d8c39ab8b8ba417ccf18c6069e7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f6b82d5e9ff4ee5a9e2188536b9d6dcf57d3c893","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161026.tgz_1477462182202_0.7571386282797903","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161027":{"name":"typescript","version":"2.1.0-dev.20161027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161027","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f6456102956dee194398fa1ad093b944c8db4f0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161027.tgz","integrity":"sha512-f5m7wD6GlnECnhTCPF2kkJBm11fRlvIiU5L7Fks5ysm60+eVcGJNDTlflfu65VjYhwWft89PqvdTh8QfCVmcFg==","signatures":[{"sig":"MEYCIQDVbfP36hiHKvKN3+N91/KEbGt9HzQXypFieO+f4aOgsQIhAKhXtJyeDbUlzeXATLwHpW/BGmtU1hzw7Q2TCg0pYBh4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f6456102956dee194398fa1ad093b944c8db4f0a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e6bea90a1f34a1fb00b0f6d842c97ca3aae50891","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161027.tgz_1477548536110_0.5045525862369686","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161028":{"name":"typescript","version":"2.1.0-dev.20161028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161028","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4b7b67c734254db040566f7289f7eda5e9565825","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161028.tgz","integrity":"sha512-PVeMFm3Fucn8eRBw4uCEowA/qk69+OfPKNnCQw7JzAKKDFHdk4QA/ND4yPQnZO2fYaIst4wVVq0Vjw7nUV/npg==","signatures":[{"sig":"MEUCIG0C2b7PxiKBy5DeVkQO5ZKd0CYSEje31W/rJkezP6OpAiEAk6bIS4OVOhYHF9W2ppLF7KSOoR/ph2AWMtCkzOUNAhU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4b7b67c734254db040566f7289f7eda5e9565825","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4513ae3034a21c728d610a74c39ab833646024e9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161028.tgz_1477634924869_0.5119802274275571","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161029":{"name":"typescript","version":"2.1.0-dev.20161029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161029","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"889598d3b2a3b5c8d7e2ad6a8ba7f300eff27caa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161029.tgz","integrity":"sha512-9fJeO7hFVawEznUx31aECpzDgNVQaaRJtkR6uOgFvA3sddmuakhND4x+1mQPXLqOMKU4NbpIi4uyhkp770dVfA==","signatures":[{"sig":"MEUCIQC7OfIVhUwGRxn0ARsWTMZrEqJI2KEfaUj6u6Vi3jHaNwIgTN2rWMB9lSsDmqWDTMaLko7Mm+FG5JbpIh5jVYGnE3E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"889598d3b2a3b5c8d7e2ad6a8ba7f300eff27caa","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"980f9fd2a91c956b7bf09c19fd8b8f968cf6f278","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161029.tgz_1477721337236_0.40156461601145566","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161030":{"name":"typescript","version":"2.1.0-dev.20161030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161030","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bf258553c416dd5bbd6227eed728a9098dab5081","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161030.tgz","integrity":"sha512-qkpQ0Mgzp+aRzLCPnsEfovWe4GNWMFsrOHnzhEdiEiTV7MaesKE0xdkTKi7PWgdkluB/Hi9HadmDzuMvQC9oUw==","signatures":[{"sig":"MEYCIQDNCqYZVVeugiz8c7bDRz722G2JaxV9kGBO61GSFpeiaQIhAPUBoBJjhfZXfMmjXUIp1EUmuaUhO6WoETV7mKKN75p7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bf258553c416dd5bbd6227eed728a9098dab5081","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"44ce59d1d8c0148e7f32dfa55ea65a2b394bfbb9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161030.tgz_1477807750758_0.0829834605101496","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161031":{"name":"typescript","version":"2.1.0-dev.20161031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161031","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bcea4c7c0b6c9cf1f7bfa403bd64513c8fc782b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161031.tgz","integrity":"sha512-ENjO4JWvm1rHxuy/jMA29chheBXyQg77Po4p2hG6zf4OC8xV+VfQKJu5yO4OHV6wTvBApqAyGn/CoLjLBOvxWg==","signatures":[{"sig":"MEUCIFAjRi67UjWOHuB/qQWxFRFlPcXgyMKD96bCWzmZp7+uAiEAluaNVntSLDQZZjZGtWY+T+e1VvOYCjfrh4cvxRu1ETs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bcea4c7c0b6c9cf1f7bfa403bd64513c8fc782b0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"44ce59d1d8c0148e7f32dfa55ea65a2b394bfbb9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161031.tgz_1477894126372_0.20539986807852983","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161101":{"name":"typescript","version":"2.1.0-dev.20161101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c2abfbb4eaf2be5972d95799ebdce28d73a239af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161101.tgz","integrity":"sha512-xoht8hbRxAI+vNKOyOQqfLuTs+HSQY5XTkzr7rw9+PjeVUe18rWrNJPei5jG1YTKibb5spAkQ+ARwLd+BEZSsA==","signatures":[{"sig":"MEQCIEa4GgymKV+ZjII+lv98rQN/X1QlR1p+EiL/brpcL47GAiBtNtgM0ZHu9mIdzx6m7TaosgeqXsxAsm73rH9dxsmVGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c2abfbb4eaf2be5972d95799ebdce28d73a239af","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4371889854d67cfabf39b22dd9f2cb9822152596","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161101.tgz_1477980536904_0.8716443288139999","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161102":{"name":"typescript","version":"2.1.0-dev.20161102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161102","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"780d4a676b9df09c866e536cb40cf9f93feee65b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161102.tgz","integrity":"sha512-VtRr5J0IuLJhm+CaRPGK3RzxOv80zz+GkJaj2HmkBovGnNI1UDqZW88JE24OOmv/pK6yCTWVzEt1qx5uaD0kvA==","signatures":[{"sig":"MEQCIGuja04qXop2bFkvgpg6CyO16iczlCU5Sl8TPX35HDMoAiBWuv1JI64+TqihF6R43J/x2k6gaJIUqPkYoBIO0T2utA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"780d4a676b9df09c866e536cb40cf9f93feee65b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"6b94bae437b96614266c38b653aee3aad541d865","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161102.tgz_1478066924952_0.37231264053843915","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161103":{"name":"typescript","version":"2.1.0-dev.20161103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"747a2e148526cd10d8e7723e731bdbbf57f3b65e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161103.tgz","integrity":"sha512-60uKNcnwMEAfyfw0DCg2ppC0HFD8VbMh9hXc3MFT9hV5+Pw4oevlUvGsvxKBbLEsN0E+6U0JXNjIAnlX++vT/Q==","signatures":[{"sig":"MEUCIHNJDkjLbOzQ8EMAswrupA0RKyXDWAtyPUW9oouKvD0NAiEA8Hz2mWkYvcgea9SeOSD8ErVS68OwguqkMSwA2RaVCsg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"747a2e148526cd10d8e7723e731bdbbf57f3b65e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ab75ea75d337d82138083c52caea7419f3b20929","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161103.tgz_1478153338922_0.7183836842887104","host":"packages-18-east.internal.npmjs.com"}},"2.0.7":{"name":"typescript","version":"2.0.7","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.7","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"efc39e8822e240d0b741d06ff86708137bcdb5e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.7.tgz","integrity":"sha512-eNpNxW9ttTDixAYbwl7sf1J3u8Ij2jCaUMQBR/37iDGIrgEBuTPAwvIr/lTXxOqxEcBeqM/QaPW6NnSFYjfRjA==","signatures":[{"sig":"MEYCIQCkI0PsgFQyG2x533VpkF0589E0A/unMo8wHdOs6s2heAIhAIXrOrSaUaTj2dWfmFW8P6MgH39M4RLyiyu+Um5KMYNn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"efc39e8822e240d0b741d06ff86708137bcdb5e4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dbf69b7873367377ee2fae4eea198074a6f6f7c6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.7.tgz_1478210687167_0.05890897079370916","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161104":{"name":"typescript","version":"2.1.0-dev.20161104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161104","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"01ebabbc76b36c6fb56a77f9df34fc7fe5fe8512","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161104.tgz","integrity":"sha512-ykRDZ+WcwBaRmP5Xe5yErhIMw53QlSYVHNSUXuj12Wxe47iP5W6+BctlkfWPyOsSkXlokFFuHAqq0nkGSlhwKQ==","signatures":[{"sig":"MEUCIDj4tbzSm4DF1qCnQ/HSMTXMCkjn59TQqMJ7K7UkQBz7AiEA0J65mk8acWkspMGFmwZiws2e7aOJokKmouakMdfR/L0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"01ebabbc76b36c6fb56a77f9df34fc7fe5fe8512","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"1c004bf317a3e9103572668191055ba1c86f1788","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161104.tgz_1478239758532_0.9955955028999597","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161105":{"name":"typescript","version":"2.1.0-dev.20161105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161105","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"be261e6cfeccaad5026aeab22f938ae0d91f5897","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161105.tgz","integrity":"sha512-9IqKS4Jp9Xtv7Kbj14WxmD/VGmruf9jrnpBz/aXCiG1VCeDqV8eszF5IBcciIJMgL56WpAQC6muBYyN01euvlQ==","signatures":[{"sig":"MEYCIQDhmikihxpD2HWlYQHAlwAoSpeIaPHKjSdIjjE6kfdWBwIhAM6XBZZkkhwY/GDg3qONJDqyhRr4Iw1NpO/eS1AkujHf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"be261e6cfeccaad5026aeab22f938ae0d91f5897","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161105.tgz_1478326155953_0.10281790257431567","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161106":{"name":"typescript","version":"2.1.0-dev.20161106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161106","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f6197280f92e2b306f40c0bc89ccece954b5764d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161106.tgz","integrity":"sha512-E2NzeDUMM956eXwNvxHsba/eEb1rEbi9p40sbQ0TOIOAh2NGkEDHTm13DcNkjLE3YM/lY8hwIvnG13/OEwNRkA==","signatures":[{"sig":"MEYCIQCYCgtEltRD6xy1NDNEeEwoTZzGkcZZyqqdd0jaZWoGuwIhAJUmPdExGcmZqj3vIPHTGy+W0QfrUCIL8FRvi7Mippob","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f6197280f92e2b306f40c0bc89ccece954b5764d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161106.tgz_1478412540497_0.039761449210345745","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161107":{"name":"typescript","version":"2.1.0-dev.20161107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161107","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"420e8ea43693dde3ab62853fd1edbafce53087a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161107.tgz","integrity":"sha512-h4RCpN5bDzKg4/ZDabSrH8Y3S1YlNfLLkfvqT6ohnj3Dg8kd3maVLC0FHIgdqqVPtgScDtL+DQebTka85BxMhQ==","signatures":[{"sig":"MEYCIQD8juig0lTAqTImQ2eG73a7/AaljnzP5rUJVQXOrWb0ywIhAOJmcXKBNRSnVtX9zCUquamPMiAHlVYp7w/H71L2uUEI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"420e8ea43693dde3ab62853fd1edbafce53087a3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ed4fead087ab0fea1811e4b42b6d8e599ee13f1e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161107.tgz_1478502525023_0.5875145960599184","host":"packages-18-east.internal.npmjs.com"}},"2.0.8":{"name":"typescript","version":"2.0.8","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.8","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c249f530890e0f992e71733b2e0554d792cb8970","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.8.tgz","integrity":"sha512-XnJdDFyT1mw2S432I/3RaOGO6kfdspsITNg9YgwXXsSyIpqQRhZOhosklgteCNfbYJK+/y7IWsfxunNYQiUihA==","signatures":[{"sig":"MEUCIQCt8iCp/IAo/Kd3sfcPXTbH4chLwk0F7OI5iADS5fPUbwIgbzOkkqcfPyEJX8DvsFuNQMX3TS1NnOVXwaF4UyZ+WXQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c249f530890e0f992e71733b2e0554d792cb8970","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"cc81fa76ff822bd4ea1be41b4ed9c61346984fd0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.8.tgz_1478568615372_0.22711650398559868","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161108":{"name":"typescript","version":"2.1.0-dev.20161108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0a1a63a47741c74359fac7fe877b254b0f88ca5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161108.tgz","integrity":"sha512-mg61zbPubE5rq1uwxIRTc4WvbeHllNDQuEdagqgNBm018RJFfftuAdd8g+N5q/P0g3MNUlZND9MWKDEWtPiuAQ==","signatures":[{"sig":"MEUCIHOKQMpeWN6JBBH83Z4i0xTQTa3awxmZR5BQ6/dtcbTqAiEAjyg/IqeKpm5mReR8M0uEzwlc5hpjHcs2S108lLiyheU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0a1a63a47741c74359fac7fe877b254b0f88ca5f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"84f8f8bba89ff459180852179c31ea7e9105736d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161108.tgz_1478588941321_0.6590555729344487","host":"packages-18-east.internal.npmjs.com"}},"2.1.1":{"name":"typescript","version":"2.1.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"41c2b64472f529331b2055c0424862b44ce58d42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.1.tgz","integrity":"sha512-BUQIyoprrW/20drNowXsbbxnCpMhmcXwJW1FpvabWa5U4pXMRNDF3Bj4TPYmhNNkIXqmWmBa02e/8O24Z6UVMA==","signatures":[{"sig":"MEUCIQCZFAkVec77+ZA+CE8w2Ky+ddxoGMbxP9MqD3wtyvscNAIgE5gl/Qwek4nBmavAjhzLwaGQ5VHDsktd7Kg/YRMlidA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"41c2b64472f529331b2055c0424862b44ce58d42","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"8e8ec9f81d6282c70ef268736c5ed4541c3facbe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.1.0-dev.20161101","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.1.tgz_1478626299474_0.7849834312219173","host":"packages-12-west.internal.npmjs.com"}},"2.1.0-dev.20161109":{"name":"typescript","version":"2.1.0-dev.20161109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161109","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4b0bd9899f30e2154cc3270a589c0bb09971cd8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161109.tgz","integrity":"sha512-95EyUsKhoWvo2LgLw0u3NwgRtBM0UZMp4RZOSeFCutxmQqNc7399K13YwBC9a7IckIbyAwpjYuXHxK+KWEmgzA==","signatures":[{"sig":"MEUCIGPfFHSjXxjJH3il+n38v1zAKFbJxoEGA9Ftb1//LwTvAiEA+wD3opWxZOD0OvrGONgJiOWxC748pODJcbgXqRke2ko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4b0bd9899f30e2154cc3270a589c0bb09971cd8a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"28cc9385035a65f5dcd74a4f9b47e7022678302f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161109.tgz_1478675364370_0.1273908147122711","host":"packages-18-east.internal.npmjs.com"}},"2.1.0-dev.20161110":{"name":"typescript","version":"2.1.0-dev.20161110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.0-dev.20161110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0a42c357ede83149a203b9ad227d6718ce796f57","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.0-dev.20161110.tgz","integrity":"sha512-kzZN6hbQEVa8VkiRGEnzJoRz3NWUbGHKtkHdUQQvMGvdOGvWvpjj6Rh/xCtL17PINSH90pG6B98/HyKy/QJtlw==","signatures":[{"sig":"MEQCIDZA/0mwuIUvVDgIo9mAFyZkeu1VB+nD2fB56frhetxFAiBE5rOrdmVcOrB8FKlqt1t+USOJPFSBfZirJCjmU4oeBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0a42c357ede83149a203b9ad227d6718ce796f57","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"28cc9385035a65f5dcd74a4f9b47e7022678302f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.0-dev.20161110.tgz_1478761727251_0.26640002080239356","host":"packages-12-west.internal.npmjs.com"}},"2.0.9":{"name":"typescript","version":"2.0.9","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.9","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b4f5fecc3f44d5c717f3b3e7c331e5bbb147a53d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.9.tgz","integrity":"sha512-WCvqhPa/xS/F4C3a5JKfuA8tGNYu1sib1njJQv/cTrHvMqjFVfR7HqrR+qGDbVRWelPzCSJHAN1cwGlFxOZHdQ==","signatures":[{"sig":"MEUCIANm1ohwJ/c+jAzBqjZCJzUqscJ+SVb0K4OWoN7zz4cdAiEAz3PpQVipku3BKwzEW7P/zvE95NXJfqskEwdoA8gr/2E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b4f5fecc3f44d5c717f3b3e7c331e5bbb147a53d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"dcaad61583ef89b131b71c81af90b4ab0c1c9c98","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.9.tgz_1478827360713_0.8075786849949509","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161111":{"name":"typescript","version":"2.2.0-dev.20161111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161111","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"166fbbef16a4ed2751bb094c818c6d481f93c413","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161111.tgz","integrity":"sha512-mrPCOusnx/DwIuhmx9bgqIHebcy24puGuRx6kc+dyL1I3HJgmPyU8bCIdEwqyDi+T/7gnVCIGSO4SgfxjHTnmg==","signatures":[{"sig":"MEUCIDnDIm4y9K0DUMQIHTTn3M6HHxvDMaRnUsEwuB+TRbuEAiEAk/C8Bux5pJoSsnJJEvT4L35zsJe1V2vVXbmU+QnQ8oU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"166fbbef16a4ed2751bb094c818c6d481f93c413","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ea309fe504368075781267261341d4cc83fdd917","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161111.tgz_1478848141703_0.5502103539183736","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161112":{"name":"typescript","version":"2.2.0-dev.20161112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161112","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"94e32074737839e967f85640bf1661f031cf51d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161112.tgz","integrity":"sha512-QlY+8avKVqZey0XUZd1CAS2Vbwiu+QRiRvWMNPNX3ndPg+cgUzHg30eZ5zS9LrsqFV+ygQVpXmQJfL9s/4RiIQ==","signatures":[{"sig":"MEUCIQDDyIz5+7UoQfahja4J/YwpI5+yVcM4aVwyd/wc9hwmsAIgZyudhnGuTX/UEYLfZbulweK2XVb6sAlt/g3+vMn7mzI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"94e32074737839e967f85640bf1661f031cf51d9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0e879c0bbf3edf9f5c9fda7a81b9d99f726f41b3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161112.tgz_1478934542520_0.6979609068948776","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161113":{"name":"typescript","version":"2.2.0-dev.20161113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161113","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d0b7249e1231cc6217fcd7e519532e59b83f9970","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161113.tgz","integrity":"sha512-Qpp6mmS/NOvPF3hex3bcKwEQG0tpTs5NM/oddkELa+hO5iY4QVNTcALCbGcJZmdvIhCwa4+A0SKCrwlsccLLEg==","signatures":[{"sig":"MEYCIQDN9BKMXqjzoPIz03FdMSQq27oO+CO/5rpkqRHGId0MuQIhAJii36PTXC72D1C07R7OM8NGq5czbkurxrYGdrHEt4p8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d0b7249e1231cc6217fcd7e519532e59b83f9970","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"0e879c0bbf3edf9f5c9fda7a81b9d99f726f41b3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","tsd":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161113.tgz_1479020940703_0.49589275009930134","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161114":{"name":"typescript","version":"2.2.0-dev.20161114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161114","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9a31b8ecf0e2e144d6a8714195650b21ddd0021b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161114.tgz","integrity":"sha512-3iflY31GyIyi6/3AKm4ZOqUUr2AT2tNT5j4X2wgCrltE8xGskuSJcbHZZDyHE5RLRi7SYwhv2rpWeFYGQQNL9A==","signatures":[{"sig":"MEYCIQD2LOBhBYlcFSq9UezSJiJGu+yd2AzHrJUvLz7zMYvphQIhAKcO4WWnLSAdipWhGoKEDvrYac9+vnLednGP8YfUaz/V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9a31b8ecf0e2e144d6a8714195650b21ddd0021b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f437c8f3184b32c15f1bd11f73adf9ea4edf57b9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161114.tgz_1479107317444_0.27877750992774963","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161115":{"name":"typescript","version":"2.2.0-dev.20161115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"62a9ff8878ac32d8029c3959b33fbae900ee7173","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161115.tgz","integrity":"sha512-zIO1OSgd7HGkhrj5Q3FFHKKQlSYOaREsSF18nGsl2RAcMwUtbp0k+2d+dZwabH5karSo1q/yWWOhYnfpAaOrIA==","signatures":[{"sig":"MEUCIDjGo8D74lI/S7BIEOKqzxyNhczYi7GHJG00GsKqnEfUAiEA01WZDgb7NEx8VEur7+tEZnVTYaa5erjwH/bd+NXUOdQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"62a9ff8878ac32d8029c3959b33fbae900ee7173","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"ddf2ad4ba110f097e722cc177dacfa33f61dd7d7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161115.tgz_1479193723510_0.6717711850069463","host":"packages-12-west.internal.npmjs.com"}},"2.0.10":{"name":"typescript","version":"2.0.10","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.0.10","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ccdd4ed86fd5550a407101a0814012e1b3fac3dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.0.10.tgz","integrity":"sha512-A1McfqUmeBy/8UpP106D7ShCZ3/C6w1muFGDEQ+2EhvwHcWC4uduBntOM8lXlHWOnWOA1vHo48lKe9ZDrJZsJg==","signatures":[{"sig":"MEYCIQCz6i/n/spwX0yXKg/BTzvZgtegbIg2dAf3Ey/uOOpmVQIhAJyfpqhc4/2ZZg4dGKyIeaJba/LLsFM+poB21CrWHBSb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ccdd4ed86fd5550a407101a0814012e1b3fac3dd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"790a5c7735373475505dfc98af6d87241b165ed3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"3.15.1","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"2.0.*","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.0.10.tgz_1479251255708_0.7381546567194164","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161116":{"name":"typescript","version":"2.2.0-dev.20161116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"30be49322b4ff71bae979a334c155e61e3934e60","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161116.tgz","integrity":"sha512-Aw2os8L0aYLbnYQU0GvP4WTsww6PerJZVj1PFHR9PrxwU9ntOE1nlghimZcMF5N4tK5jd9lP8quTJY/OXfmq9g==","signatures":[{"sig":"MEQCIGZwG/gRdj/9yeb08yYkgfbqXy1Zol5yq4EwyEPF8qJKAiBGP8kGT5EC8TYRtfsnbjpg+uxzuwYIU23pDVk9p8DUQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"30be49322b4ff71bae979a334c155e61e3934e60","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a7d97c0ecee3b4de313ec805564298c88fd6b877","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161116.tgz_1479280153654_0.9548490364104509","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161117":{"name":"typescript","version":"2.2.0-dev.20161117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"302dcb24cf33604eea32f7a5699ccf12fca9bef3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161117.tgz","integrity":"sha512-vszErdMGslJPfI0JFyX5BG93m1v8JHg9VEknv4h4KUJnOGU5+J4qbRR7Bx7cQvjY+wmFHVvCtM7y581Bg4l3yg==","signatures":[{"sig":"MEQCIGW30JrHQLgs6kGg1EJL8KNJBsh5Qds0mklK4CYT7/wGAiAMRYrfGDJ8sCW95dWXeqj0pwRyb6V5a9v0z9Gc0R02fg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"302dcb24cf33604eea32f7a5699ccf12fca9bef3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"52ec508e27fccd8a1d7c601918b70417086b9798","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161117.tgz_1479366771709_0.956751512363553","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161118":{"name":"typescript","version":"2.2.0-dev.20161118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"017e95055790c2cc79fd5f96b28c8a9372d80b4f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161118.tgz","integrity":"sha512-p2MWOZatJRq+2XAIixQS1oy5TOwgz1bL1mv4EAgg52BriuHlb0h0o2GjZHaIH4WU+/PU+KFTu8xl4J43wsUASA==","signatures":[{"sig":"MEYCIQCu1jTtpsc2dGY1UPIKKUKRD0XvIKy/dcirWv0PN5+l7QIhALUSeJz8eybMz9uWbOhNkOutCgkp3HnGZ3YUspAI3Xvz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"017e95055790c2cc79fd5f96b28c8a9372d80b4f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"9fec77551c25a0c7930f84cfd10d4d71b866268b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161118.tgz_1479453133017_0.346922678174451","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161120":{"name":"typescript","version":"2.2.0-dev.20161120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161120","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0cb085179728f97d256475afc02046bba55accc2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161120.tgz","integrity":"sha512-sKlX44GKYXc+VLt72IJ6vLnD9ffEE4nrID+FZEWw1uSVZnvsuZut5/Xu6vN3pQyJgbITf2BNVfQjQSMq0NrUgQ==","signatures":[{"sig":"MEUCIQCPtOY0i2OsVw7CJcbIHfOvXcv7O9yunwrChcGa231jgwIgQyL0nNO0z75TuKZLEsO4+T4C2KdmBzGsBvNDm+EZhy0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0cb085179728f97d256475afc02046bba55accc2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f2a7434fa3735bb123e5818adae89271f51350cf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161120.tgz_1479625976653_0.6373305409215391","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161121":{"name":"typescript","version":"2.2.0-dev.20161121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161121","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3108e22686267c84d62b3c8dcfe77cee971d869c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161121.tgz","integrity":"sha512-eTZwMiZR1bQXdSRtF5VxHpH7zuE9LUfj6/MqZ1Mbbl8kkYYrK90+NUFiCLmg5FNFE1Aq4Ly/PN8apCgWJPIHMg==","signatures":[{"sig":"MEQCIEA+jncnkYDsSVq3DJn7tuDUFPv+zQX+3bRz1QRm/3I6AiB2PNdFWLO2VtCE7/x0Sk19PE5b/oIKvYC1l7BJohTvWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3108e22686267c84d62b3c8dcfe77cee971d869c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"998246af9c7cb7e116b421b83983da90ec948546","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161121.tgz_1479712388580_0.23873995756730437","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161122":{"name":"typescript","version":"2.2.0-dev.20161122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"da70f3dae1677d51d10a29079f7a2f9cab8464e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161122.tgz","integrity":"sha512-q03qcWCzJlIiVHvo/0utBrcfDpFQ/RBpq0lL3Is6tMJkEItl8An/56ueBR6yAO+yqmXtexYOMe/ld+Yl8nmIGA==","signatures":[{"sig":"MEUCIQDzxhGFIXEtkukTDTGiHMM4P14GxOt8LRuFOlr8euOGigIgIuE184cuXb0VQHakHoSepTLcgBLX2mURMp79C0MHAWA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"da70f3dae1677d51d10a29079f7a2f9cab8464e1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"2d16b19ef9693f21e09bc933ee5a1709d848aaec","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161122.tgz_1479798759363_0.20626080594956875","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161123":{"name":"typescript","version":"2.2.0-dev.20161123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bdd7d9e84db2475801a03eb71303b9b629ddf8f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161123.tgz","integrity":"sha512-cfZjQODz9vSgJ/6QpUv5ulx1TmmjPYSDrOkHen3e/0Mbb+dSx70BLhaP/tGb9D37Tt/auAmgmpl9pvFcq+bo8Q==","signatures":[{"sig":"MEUCIQC/MFVLPUGX8SQxmsaem14C/ooekONv0QS+yRlelpAEygIgP9YICQAWSpgXByd9eVoHbXmGKcMezsi1WPHiFrBHig8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bdd7d9e84db2475801a03eb71303b9b629ddf8f6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"855431a9431a0454e7f683e5d1ba4b12b4a33f2a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161123.tgz_1479885212055_0.7795378363225609","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161124":{"name":"typescript","version":"2.2.0-dev.20161124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161124","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9902edafadefef09d21c65c42c4b39433fffc72d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161124.tgz","integrity":"sha512-kvCkWogiKaedJoNwNg2A4f9N7DT3wJw3edrBGXse/ttQmKcPEgznM4CCzKFbECRSC2SBA4aYkHfLG/0ERwOrIw==","signatures":[{"sig":"MEUCIHzBD//MyqEwszWzd0s3Rbp6xefkRTAeL/J7sj9VB6uDAiEAkERCwWPlwQTyguU+ScP9cfYwJhxM9UCkpZwimLzMr+U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9902edafadefef09d21c65c42c4b39433fffc72d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e128add54eb13192f1ec836a6623ae765fcaa758","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161124.tgz_1479971585031_0.39477067976258695","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161125":{"name":"typescript","version":"2.2.0-dev.20161125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ee8c22665933a99492231ce42c2663a456b22841","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161125.tgz","integrity":"sha512-E+BaH2+hgrO62LwCS9kKFD3aPu6mO1uUygs/Lq257WylRv+KB3D1ELXeD3rL1S75yEE00rdmlNlH9kx63BvEVQ==","signatures":[{"sig":"MEQCICox2u/zzFmkOQIhJtfk7Zl8IRL6qh+aIG4791s77MHVAiAEkoqVzlCNOUB8j2ssXg3nhOH8lhhLx9ZJ/brG5N0smw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ee8c22665933a99492231ce42c2663a456b22841","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e128add54eb13192f1ec836a6623ae765fcaa758","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161125.tgz_1480057976122_0.7113316936884075","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161126":{"name":"typescript","version":"2.2.0-dev.20161126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161126","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a73105db486686cb0cabb0a90e2103cad5069334","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161126.tgz","integrity":"sha512-ypjnFqHjifGLzViFldS1Rpm2RVeaMoIeeGNKEPPJrewwmizXzJVsDommMkjz11HSJoPBr/fgjGSHgYiqCB1AAw==","signatures":[{"sig":"MEYCIQD7ePinDbTFyKjzs8jabN/xCypYoI/FDGMYwl3QSzlMsgIhAPFBVS2+LXIKHX9C0IOLff6n98XfIDkW9v9XgvXg6oha","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a73105db486686cb0cabb0a90e2103cad5069334","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"5ba678a619465d1ab78c1f1c4be79448a0217587","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161126.tgz_1480144418290_0.9434746277984232","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161127":{"name":"typescript","version":"2.2.0-dev.20161127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3da590d1a0f15da9c39d2ebeab2006fb6b4d8949","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161127.tgz","integrity":"sha512-wsOZ9wkMgiqoWpoiusu+gxMsc6mouzmLX0mTR9gr87qB3tT4MjqZtrIfiMLPXZ4H2Ta10xbSdZcfQE9OlEJrqw==","signatures":[{"sig":"MEQCIGSBMfu6GXSiEZdUOJaQ2BhNk5LBoiexZfbdu1gZ85vQAiBERP1GwoOvRLpM14gP7MC6zEjpZHsicwTa5gORs7eWFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3da590d1a0f15da9c39d2ebeab2006fb6b4d8949","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"88b7d539783511aa326338f93a3b8a0c40d55d4c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161127.tgz_1480230803732_0.03623790247365832","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161128":{"name":"typescript","version":"2.2.0-dev.20161128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1609ccf1268c57ba151864755cccd23d99266d68","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161128.tgz","integrity":"sha512-4lDpMDnOggTA/lWnYL/k5gLBVbfhiqumgGBajxyP6MIA9L0pNbklYjqC4l5jeIF4h+vJY7JeGxZAJKKjIgnD+A==","signatures":[{"sig":"MEYCIQDuc5GTt9mTcynIWIUYX0NSPuzCcQm6Jshyujn4jtRtHwIhAMmoFuPvL6X6fTYx4KX0fxC87g2xcSzBkWGnRSvRdFLZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1609ccf1268c57ba151864755cccd23d99266d68","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"88b7d539783511aa326338f93a3b8a0c40d55d4c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161128.tgz_1480317187122_0.8314359069336206","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161129":{"name":"typescript","version":"2.2.0-dev.20161129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161129","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f39bc67c5eecf5aab925504b72145be571a1e708","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161129.tgz","integrity":"sha512-xAK/UvHv3L31eRUwXTtQhRkWQneDsHowkqMzorNolvZ25FSuFv6i6Ub2Iul2EAESmL6v8u4yVb+tqvUR6m0nZw==","signatures":[{"sig":"MEYCIQCUEkzbU+M1aKTgW+iwX7XRSUeyJSoeSfsLs1IzmmCNkAIhAKwO5fx/NRarQwDjY7ngoNqmJuhijxK/Tl9VTBbNRZj9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f39bc67c5eecf5aab925504b72145be571a1e708","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"e313fef68324c1bbd4d89d6ad868a37c4b728ee9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161129.tgz_1480403567329_0.5650821782182902","host":"packages-12-west.internal.npmjs.com"}},"2.1.3-insiders.20161130":{"name":"typescript","version":"2.1.3-insiders.20161130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.3-insiders.20161130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"551668ba383827bdf4033aa99c6c4c3f0bd80cec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.3-insiders.20161130.tgz","integrity":"sha512-c0XL7abB2mZydy5uqIcyL9DpNTPPSgpwkQr6QD51z//54MmPmJa2G5gIMH/M4n2DDo9xVQwVymfv4pwRziamBw==","signatures":[{"sig":"MEUCICEW/TvIPzGmLXBefn0BxySnsQV5T/8FptRHQDNtwv35AiEAlFzD4gtNbDCifoozbPspPjk7CSOJ9O4inl16jswsKoI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"551668ba383827bdf4033aa99c6c4c3f0bd80cec","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"501bfb53260a265f12b684fc36f2855587981b6a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.2","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.3-insiders.20161130.tgz_1480469442801_0.6932965891901404","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161130":{"name":"typescript","version":"2.2.0-dev.20161130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d8c132bbf89714b744c09e348a33e02488afee24","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161130.tgz","integrity":"sha512-KeODGC01V/ULjlOQLE0l2ix0gJQgOlscgp0Nh39+sVdsjKDj0ibsLjM/GmmwNHa46Hkfa+eGGyvQGZjGJnP/zA==","signatures":[{"sig":"MEQCICfNu0vxyQofvJk2ixTtSOY5dv3DZs9E6m5OvfnC9szLAiBYRF6ZjqiV0DT86H+OdctYaxj55tMXh4iRXdyU7iUEqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d8c132bbf89714b744c09e348a33e02488afee24","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"4c9bdb932af4f04f4455848c80280f2c7e8da613","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161130.tgz_1480489974965_0.9337933983188123","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161201":{"name":"typescript","version":"2.2.0-dev.20161201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"14b7a5b09d591aaf91ebabac27fac44830bcc6c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161201.tgz","integrity":"sha512-5PflZdwNxjwk1hAFrcZGHd1h6NxT9WAyM8PEOv48s+mMeF/cSS0PnhOCx+krMfLF5ICvfHHU26iJ2VdF6ZrrrA==","signatures":[{"sig":"MEQCIFb3+zW28D86/w5j54g2mBlK6QwWnm7cTjduUh/LM/QPAiAxOM616IbWnWobyIjBU55VIk92EDbl/48nO5PTY0JecQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"14b7a5b09d591aaf91ebabac27fac44830bcc6c4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"fc1f6e3ee6acea2176488a120999f4d2b0f48825","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161201.tgz_1480576319686_0.08125246106646955","host":"packages-18-east.internal.npmjs.com"}},"2.1.4-insiders.20161201":{"name":"typescript","version":"2.1.4-insiders.20161201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.4-insiders.20161201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c184e100495604f3e646981f14f06392b2186e50","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.4-insiders.20161201.tgz","integrity":"sha512-Yinc8ZbKck6tk4Z7kVujEZ/rFyUmd1QIt/qHojhvX2pnvhGw21M5mIVpkoG892rt5y04SS8++zPhBCQcqc3Anw==","signatures":[{"sig":"MEUCIQDSAcV1d+Gjr2r6JexECxbjBVwwISgw5BHrn+l2WBSjtAIgU9X3HYlEAQdWMuRbjXa6DJpPELG1wzw1NX7bo3PmpYc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c184e100495604f3e646981f14f06392b2186e50","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a9621760b3dec02f36bebba4bbd28bf615bf68c9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.2","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.4-insiders.20161201.tgz_1480625328124_0.9393948612269014","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161202":{"name":"typescript","version":"2.2.0-dev.20161202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161202","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c4ccc0c8e6f0bd25405d12f96aff4e01ffb892a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161202.tgz","integrity":"sha512-jLxN9/XNFUphyaJiPmmbSSF3yujUvWfpLHLQksX+yVMkvd/ktgfGve/9gm3NpBg3FzbifryE+e+Ezg6cXVp6aQ==","signatures":[{"sig":"MEUCIAzTzM2IctOnhMnQfk2uPXQnSInEO+Whygnwonafi4HLAiEA+tqWME4X+3nvy8O9/cWAS5pT8Tyk5qmD6k3S7OBWPG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c4ccc0c8e6f0bd25405d12f96aff4e01ffb892a2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"efe7b65fa6846154bfd0e42184762df490fb8068","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161202.tgz_1480662739336_0.5403089607134461","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161203":{"name":"typescript","version":"2.2.0-dev.20161203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161203","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fc7ebfee8a68a15c5e2762c1d072c76e1e00100d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161203.tgz","integrity":"sha512-UQEUYZC+p//DZU+PhKmDzK+WTwKvl/Ewen1qup/QOGwmeld7KiA3qdRYkzLMEsflLAEVHptiZWGyRgO0dXqxFw==","signatures":[{"sig":"MEQCIEmD5DnGc+rjbaPXMNH4elwAharrzXD2QP88kbV0r2tBAiA1Dvtk5we8Vxe9BCYTugtcqACO2hLmrd8Uh6riHCz2Mw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fc7ebfee8a68a15c5e2762c1d072c76e1e00100d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"a230cb7e772970b38c51d1f506243b23b98ebcb0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161203.tgz_1480749138960_0.1989189174491912","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161204":{"name":"typescript","version":"2.2.0-dev.20161204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161204","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"74774de05d27467626559dba4f37e383c475bbc5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161204.tgz","integrity":"sha512-rHTbmI01cT5XaILYwS1U/nmxMwlVMZSvAzdPA63AX7sbgr5IygVTP7cGpRgjJdMkJhXqivwZaOZQMlQeVRgKGQ==","signatures":[{"sig":"MEUCIQCEtiRpV59uGUDIJ5UBpNdy6AL2T1tXBsWGG7hX1KkexQIgD5Lfeo7zVHUuNlypwiSR42KLpw9IYPUC7wdL7vAJcnM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"74774de05d27467626559dba4f37e383c475bbc5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f61a22478ad34a560c8cd1fa8f72ae0a2407ced6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161204.tgz_1480835549285_0.4754345240071416","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161205":{"name":"typescript","version":"2.2.0-dev.20161205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161205","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5d03250ff4acbfddd641129eb97098156f11f1a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161205.tgz","integrity":"sha512-VLP/qyiOzQywpfr04iV6o8fQNgcfZ/gzq2g2/brfXz7ZaqQaCDI++GW2C5l+zv5oWbgAgvphleFRz/7y95QfLA==","signatures":[{"sig":"MEQCIEBVIDcJrAN06Fl9u6cq3Vxdh+5N7jh26S6hddjylyqNAiAzTJB6d3BSCNeHwiZcJSdTm6hviD45vG0D1sRpIEY/IA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5d03250ff4acbfddd641129eb97098156f11f1a9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"b7e8a6d1f163a50e9a73716e267abbb5996ffbbc","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161205.tgz_1480921957812_0.9915765910409391","host":"packages-18-east.internal.npmjs.com"}},"2.1.4-insiders.20161206":{"name":"typescript","version":"2.1.4-insiders.20161206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.4-insiders.20161206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9f816358519f4f40d6d35d0220085e77afd979cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.4-insiders.20161206.tgz","integrity":"sha512-MKzi4Ub1aOlGZZBswfDZhVnOjoRm5keIaLWc7nQMll8/mHCWD4cpIP4yjdZGKdd0fCb2rLVoXu1gqjHK9z3QGw==","signatures":[{"sig":"MEUCIB/M4/RCF+dXTIgy8bTr10kPXBaY7e1XaZ+qhOcMtaj3AiEAwyWLLANm65ljD5NxlAa4kwHQaVNveL/XAEWzVZdhhsE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9f816358519f4f40d6d35d0220085e77afd979cb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"409311f3634afdcf0423670661758fe9e7c87a99","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.2","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.4-insiders.20161206.tgz_1480991715921_0.3231662584003061","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161206":{"name":"typescript","version":"2.2.0-dev.20161206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"12afecd7146249a84c1b06338c9cda29261fd00d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161206.tgz","integrity":"sha512-hpK1+CXuSMAkxdubpWtdLJ5b7Fyil3o0aBORhLttXevJwvZg7ZauUR2FAmQteKDCR1Khot70tRw7hBMdXo3/lQ==","signatures":[{"sig":"MEQCIA1DboNTLS4+TnWa94e30dHqtTlXYa0Vy3+vDh8gPLr+AiAShtfOTrd1weadQQ1NXWw7KSxAxiF1FHTW4tpQjS9qIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"12afecd7146249a84c1b06338c9cda29261fd00d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"225d6d6aef11484708e319940f148b89edfb6323","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161206.tgz_1481008354576_0.23662444949150085","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161207":{"name":"typescript","version":"2.2.0-dev.20161207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0b9cc8e95c1adc2dd91bb4fff303e573b9f2a650","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161207.tgz","integrity":"sha512-LeBuvsXCTOKHQtqtph27jBfqwu8VBp0JtyX+lgsal8/4aiwxuAb+tqG84wO1tTKJifzpTEPhT+AjtXHwmuidcg==","signatures":[{"sig":"MEQCIDZ03nCFjlJdBxbE80DhLwovbwhQ9rDPtcu7BkbHGA4wAiBP8btH67fEFxBgYRipHjcwPrCRVpnk7mPXPX8PUFnhuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0b9cc8e95c1adc2dd91bb4fff303e573b9f2a650","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"c1ec7eff08f3d98f3310be885d1a1a01e7e6eeb6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161207.tgz_1481094792932_0.09472501534037292","host":"packages-12-west.internal.npmjs.com"}},"2.1.4":{"name":"typescript","version":"2.1.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.4","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b53b69fb841126acb1dd4b397d21daba87572251","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.4.tgz","integrity":"sha512-XMTszCqW84ik3mFyO7aOmkbiryZ0J7H9bQwAHD0NhvC2T7XlocVIPwYrS4DZ73H53ETTBXMjgQLGdx7uwxsWRA==","signatures":[{"sig":"MEYCIQCYpi8LhLQ5FvmuCjQqYMjxVflmFb4V01efgPXWjD9PRQIhAJBeeFF/r0GxvjKISotBh53epaPjK7oIJd5m2JNHbL2M","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b53b69fb841126acb1dd4b397d21daba87572251","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"409311f3634afdcf0423670661758fe9e7c87a99","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.8.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.2","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.4.tgz_1481130051247_0.27785680117085576","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161208":{"name":"typescript","version":"2.2.0-dev.20161208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161208","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"241592b53a6ff814f1316edaba7629178eeac192","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161208.tgz","integrity":"sha512-sQp3RCuHtGaTdScYfIDwnlYyPinCq2JQdWR45ymtVkNAiXkTi1DOX1x3UUzrqbnZonRricFyurDtXCOaJTlY2A==","signatures":[{"sig":"MEUCID966eb0mdFSBK+j7hApwOIY3B4Nzbz14SRaRP+kbHXSAiEAllZbpIfEkCerYmcBosDhTzCMHTcMDv9iRGSRbLbLyGc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"241592b53a6ff814f1316edaba7629178eeac192","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"91f0194e6aee5b7a612b84bef2f8b25a069423d9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161208.tgz_1481181198783_0.3199639576487243","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161209":{"name":"typescript","version":"2.2.0-dev.20161209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161209","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fbaa0dd50ca145f2eb659c9d0fab3ac833761315","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161209.tgz","integrity":"sha512-WjHRpojR8LeXY2s8tv3lG1WsSHva+MW1ApebTTdaiXL5/KqY0Is/6SPAvyrev06m+IAgaMrjqxrwCIRv6aAT6w==","signatures":[{"sig":"MEUCIQD1hnf8at9Q/trfCM/9gRjKA1kY2hnQ/Wlfg4CflwWdxAIgCiV0YmHmb0jFXOlyL3oto87XNiZhwDc3+ZcokvoHKhU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fbaa0dd50ca145f2eb659c9d0fab3ac833761315","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7da338350406f60e9bb26ea0ad0ee8d97e12fd4e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161209.tgz_1481267581150_0.05701764393597841","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161210":{"name":"typescript","version":"2.2.0-dev.20161210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161210","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9bfa2186c9fd8976f7fb54aa74aa3fe65b3f5e2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161210.tgz","integrity":"sha512-B5tndYCnrP1ZS8TIVS2OVFAy31MRksXfAdnLOErw7tYZKEejCwiQZG++lOU5rW7BeWZoxtBL+m4ASZemm13N+g==","signatures":[{"sig":"MEUCIQDM3gYry5NTWqrHXwSpebOfU1xEkrWDFNc1tx7v7CHB4wIgbFSNbHQUNLpeknSdVVVlqX9r2IHQ8D+PzZTPu5ycTkM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9bfa2186c9fd8976f7fb54aa74aa3fe65b3f5e2d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"f27fe0d7814676b23062668556ba4be0b15ffec9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161210.tgz_1481353962537_0.0605899952352047","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161211":{"name":"typescript","version":"2.2.0-dev.20161211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161211","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aae660106b16945abf6bbb6d74a007205f92cd0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161211.tgz","integrity":"sha512-2PMg80eCBWY3FwfJRcHGn9USftq5QjV0I4rWkb9gemt85ZFrP9DeRIr87CjnEF6Ba95jMPXMizP6wbW4TkCCdw==","signatures":[{"sig":"MEUCIHMUmctvuRLkb8swikF0hyPccX5hfhGq/JamHketChmHAiEA1GB9uHTvHBQ7IV6dtL35MAIIbQ+IsBgRMzT7UJ2EP1c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aae660106b16945abf6bbb6d74a007205f92cd0a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7c5c664a1cca6d24e0aaefdb76f450cf4237f59f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161211.tgz_1481440362863_0.16706183273345232","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161212":{"name":"typescript","version":"2.2.0-dev.20161212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161212","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"97c6561f6e95b9b1402b733e0e106079dcf99a7f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161212.tgz","integrity":"sha512-tRzcsoL7+XMU9nKO0GXXyeos7GehfauOpvXC/pULXYtw6n4x86rVnSRvLFZZT7QydK+mvjntFCAzotXPksi1qQ==","signatures":[{"sig":"MEYCIQDqWBMF/cGAZ4ID/SE5IiasyAb7DWc5uR+ODRuh6bunSgIhANi2GIplbxMiFqNeXqZYyTE4lFPVqQFdRtPcCJJp86E0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"97c6561f6e95b9b1402b733e0e106079dcf99a7f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=0.8.0"},"gitHead":"7c5c664a1cca6d24e0aaefdb76f450cf4237f59f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161212.tgz_1481526763835_0.888421154115349","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161213":{"name":"typescript","version":"2.2.0-dev.20161213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dbd806dae796b46ec5918dcb619ea0119f74687e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161213.tgz","integrity":"sha512-6kbYAvaW97zb3UvFSn4buoUGiclHGhMYQYmFMOLuEmzUUhFtssSITi+Gq0CXZxSqoc7c/iVay3p97fxGEHXlig==","signatures":[{"sig":"MEQCIEfsPddWhSUos8y2KNj7ozH3IhPdDBlww+cfKMcn3IV6AiBg6unZs2vmm8X+f76IslJmLA8Th50g6ULJQj3nCq4QjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dbd806dae796b46ec5918dcb619ea0119f74687e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"c76a3a6feff5bc0bdf10b304373453fd295aa1ca","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161213.tgz_1481613148027_0.8980310650076717","host":"packages-18-east.internal.npmjs.com"}},"2.1.5-insiders.20161213":{"name":"typescript","version":"2.1.5-insiders.20161213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.5-insiders.20161213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a4ff2d04205c1595879a577e1daa2d26292713a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.5-insiders.20161213.tgz","integrity":"sha512-aJzvQaQqz6N0TnmqhxFDfDnv7Jppe6wtpWMtwUqRe2hQCxaC8HEq0+LSk0oqlWy7ew6RSbk7KJY4l/S+EF89Gw==","signatures":[{"sig":"MEQCIGUc2z2FkD3ddNAluusnVu7z4yT/alsCiLfk5WQuwXWwAiA0fdNTk5Io+T/Cct3qgFD8GJ2LmFWml9pw5Au/HXjwIA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a4ff2d04205c1595879a577e1daa2d26292713a5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a6decf98bffabcfb50f928ce10f00ea9e2d66206","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.2","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.5-insiders.20161213.tgz_1481672577351_0.33862460241653025","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161214":{"name":"typescript","version":"2.2.0-dev.20161214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"50da518d9bcacdef84766f251d7834d846959197","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161214.tgz","integrity":"sha512-TPg7LluXlNV5ssoAMIUoS76Go5CDsSA+zXxiME0Jd0HMkjjX9GqsTLMP+bTDYsK9+iUp/u7FfCafyPpYs6+ovA==","signatures":[{"sig":"MEUCIGiK7OHeR0XVKgVlpl4CqnQKdAhh3zoRxVM1jH4RWnZhAiEAlypLBVEkhey5nvVvCcivX8uBRHU89eLSSh75BPFS5oA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"50da518d9bcacdef84766f251d7834d846959197","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8f4cefe4fd68c6fcdf312506f20e36ea5edc8cea","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161214.tgz_1481699626689_0.2389619799796492","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161215":{"name":"typescript","version":"2.2.0-dev.20161215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161215","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"574d53d5a842e0cf18e5d8f81409a898d378bba1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161215.tgz","integrity":"sha512-d6SX+w/4M2psv+HaCsg9LCd8zTKgGPOj9Mq3s/v7rFoKV/B07NIwReroFkI/kusJQLx10A8jvSIZyUgO3ZVlJg==","signatures":[{"sig":"MEUCIQDyDM9Y9csfJtyDpkzrr3o5QK0wA8oifLKMfjKY3O1/ugIgDSST/So3Tcu3p+GbduxZ5awBZ+VumzRKUoQLJFn/l8Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"574d53d5a842e0cf18e5d8f81409a898d378bba1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"366dfc052f5c1104e2b5cdfdb44c1de581093120","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161215.tgz_1481785995378_0.7674646461382508","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161216":{"name":"typescript","version":"2.2.0-dev.20161216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"21715a1cdf9335a4b112efbf27b05799421e048a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161216.tgz","integrity":"sha512-H+73pigLYNlPPUhIVfbKXYJ1C6dTTeezKYbKjKpuubgikkf7IJR0r2UERyN6lLahB4ai3Fba4W9CFUbispI/7A==","signatures":[{"sig":"MEQCICCmQJ+KRXNDgzs69pEZXo014r+3ZVjNUJ0I8HcN/jgMAiBXvCoZT80yhNGmRzOrxpJn/h3+yo5h+3vsTX33MLgvEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"21715a1cdf9335a4b112efbf27b05799421e048a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161216.tgz_1481872419118_0.02583544421941042","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161217":{"name":"typescript","version":"2.2.0-dev.20161217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161217","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d78cb0bb4085ba29263f23f110ab20a31cadcf8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161217.tgz","integrity":"sha512-YLJTp5BYjlvFKxFA/p/4MRi5P+U1uiKierGtcUaUzF6aid4AWYuA2HyKA5aizsMRFwe+gGTObFbdF+7qM59Rrg==","signatures":[{"sig":"MEQCIAIuUVTiMIF7MiOZXpQ1xVof0bqH535R4BhDdD9nhp8sAiAhMlSMi/dA+zsi2DHRFc7+izyqBM8oCTncQiblJPlj2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d78cb0bb4085ba29263f23f110ab20a31cadcf8c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161217.tgz_1481958726052_0.6019192733801901","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161218":{"name":"typescript","version":"2.2.0-dev.20161218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161218","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f94c333e6171dd0cdac8ec5d2e988a8f32072ec0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161218.tgz","integrity":"sha512-MDNIma5OvYIix/Mdrn7vDYSVaBhYh0HpcENHQbpXCFpZZ90EceAo1XM3gvkFO4C/UhMJV7gWcqMPcxdAYScTtA==","signatures":[{"sig":"MEQCIAZ5QxChUja3OY5b0GaKxOBDboA7XNWDNlHgivDQORFhAiA4/deIcWYsDn4gYQb/6b6Vk1vLpRHmGgT9DXPJHqyvOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f94c333e6171dd0cdac8ec5d2e988a8f32072ec0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161218.tgz_1482045175678_0.21156570361927152","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161219":{"name":"typescript","version":"2.2.0-dev.20161219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161219","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"651c3a97a2ece104f1d45b7d9f9f5585784be7c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161219.tgz","integrity":"sha512-cGI0FEgjMmHrBqkJaf3cscq67bur12fWBeUEBjG8TWtknFTgvoVADl9XD7lJi0mKUxkVt/qt9e6gmm7wyyZCAA==","signatures":[{"sig":"MEUCIAPvYHfqbkv5ZbMFLPR4nvXIoA5LIfnTnHCiWUiN4r8pAiEA0XqFPNZucfYiFjtMzGVoG9gWpbfUteibB4Qabyw50/4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"651c3a97a2ece104f1d45b7d9f9f5585784be7c7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"0f78f537800582efb2e0f20b3a8e498302161ad9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161219.tgz_1482131578949_0.17140014516189694","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161220":{"name":"typescript","version":"2.2.0-dev.20161220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c43cce2d7fdbaeb99bddaf148a9c8efda269da3a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161220.tgz","integrity":"sha512-Wq+i6f9VHbfcDZRr10dqkqKvsgrwYh8LYpJvmK2F08lnCOoUyN1fRcfTU2K2ahp7xcXEvqCkTRSQKestAIEW5Q==","signatures":[{"sig":"MEQCIF2YzcVcNtwDIN7KSBisYfguCv73yM4eGDJBl7IGQi66AiA3Ak8MAN1+dFXXKjJAjOwlZBScykJkMInUBd8YVGFWhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c43cce2d7fdbaeb99bddaf148a9c8efda269da3a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8ae0376e75e4429c57a61e54ddbd5718fba1c0ae","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161220.tgz_1482217955822_0.894822426373139","host":"packages-18-east.internal.npmjs.com"}},"2.1.5-insiders.20161220":{"name":"typescript","version":"2.1.5-insiders.20161220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.5-insiders.20161220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a0916b27ffcb45137d227b1af1c687b1d6edcdf6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.5-insiders.20161220.tgz","integrity":"sha512-i5pY5OGrZ7T5fWI2RscMVZ0ROUjotDCIgEaN2NnXjaYQ7APRXo2FlxgsoVqWZeVRogM205bKAjePGYMnAtpoWQ==","signatures":[{"sig":"MEUCIQCpLnWdakbBO9wkZquO+rF12KSF3vivdVXLv1AeJQRO4wIgD7iLQ7o6L9C4NT4aYf6qHo7aWSdv4hF/EgLc23EdKCg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a0916b27ffcb45137d227b1af1c687b1d6edcdf6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"e7668b0954a5e43d4bfd578ec93b52f1d1b0f157","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.5-insiders.20161220.tgz_1482281809930_0.2728759376332164","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161221":{"name":"typescript","version":"2.2.0-dev.20161221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cfe8234a1069df7dd26c958a6e3dc050b9ca3baf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161221.tgz","integrity":"sha512-3jMzv0d3VkWUS3WDtaIRN4YVxmDkizKRJKSA71bWYCZKQ+D036zz1SPDqOCACZLMKQw45KKbwqbOlaR/HA0Rng==","signatures":[{"sig":"MEUCIQC4k2vwZu+6kqTr8jrNfZ8vVS/DBE3AcsTOA/Qcdg6IcwIgW5IHUMsOqeIKK88/HOWsg7aUbgB8C6QN/yvtBmyssoo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cfe8234a1069df7dd26c958a6e3dc050b9ca3baf","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"1045f3bffb5dd7d5cddd40de22eeda08d8cb95c6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161221.tgz_1482304413176_0.8108997775707394","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161222":{"name":"typescript","version":"2.2.0-dev.20161222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161222","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8b9557b1acf43a3a589aa5a159ff649fae890264","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161222.tgz","integrity":"sha512-7YXJ56STNAi3IozsXnod8uYrA75ltxxY2lBP8K1RZDTRZD3bxDZKdCwFYtgM9yWGkFKgOlU3uxd/Mpfc7OFeEw==","signatures":[{"sig":"MEQCIEH0EO2Fw5OW1EDMiN+bCR0Eu7OTxoyGFpkxozFAIg7xAiBTCTvzASFx9owZ4Pzc3r4XuxSoIx4xEIy3PU+DRy6l0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8b9557b1acf43a3a589aa5a159ff649fae890264","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"c563e83c992c487b74887acbddc6100192e7b936","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161222.tgz_1482390791917_0.42031432525254786","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161223":{"name":"typescript","version":"2.2.0-dev.20161223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161223","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"77327613489667adbb1f7094f1dd002dfcdc4ac4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161223.tgz","integrity":"sha512-LiawYDKk6grwwf++o5jSSO7FQTthW92z0rDoqsPCUS0dQyKD4g5RKqRN1yskpFsVQeNvImRUUSWlweDmJOgXUQ==","signatures":[{"sig":"MEUCICQEUKUemeFXufh2rmlvonWwd3+aebDBQAdFrvfRARbIAiEA1eNIUaPZhtaOiPJeRNGbHTno4L9DgNr/umbhFqfLO4I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"77327613489667adbb1f7094f1dd002dfcdc4ac4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161223.tgz_1482477265351_0.9342312722001225","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161224":{"name":"typescript","version":"2.2.0-dev.20161224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161224","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d0ab7b01eb517bd4dad4a93aa027e806cca611a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161224.tgz","integrity":"sha512-tCiag+sfOfa8sR8RepwoaeE9x2VHqYL5ILcr1Z7cYCvY+pP31txPXiglveCvCMDojtVvTRzS9mpQMzg4a8A5yg==","signatures":[{"sig":"MEQCIDb6pmB3jev8FRT7sSI4A2EStd4gqfFs0oAw2Pz/f0IFAiAFTsEFIrR16r+sfmyuZJLPSFseD9vHBCMxqRuN19E/mw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d0ab7b01eb517bd4dad4a93aa027e806cca611a7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161224.tgz_1482563632028_0.6224180145654827","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161225":{"name":"typescript","version":"2.2.0-dev.20161225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161225","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"97d3a1fbb5317bf596f464730cca69cdba48040c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161225.tgz","integrity":"sha512-3sIir5RJmJYpx2S/BoRbQjTMPW0d7rlhSvvMFneyEaqabnM3CCOawvrnIURzxEN/NF57kH7MLPlT1sJ68thHgQ==","signatures":[{"sig":"MEUCIFYUcWc6ay495F/DNi5knv7LiWbw97Rcrk7B/xyQFSHdAiEArkayUoEs8tTfXVKrmMhwjXipCTuKPDs31yfEanUHCqE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"97d3a1fbb5317bf596f464730cca69cdba48040c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161225.tgz_1482650056742_0.2672628532163799","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161226":{"name":"typescript","version":"2.2.0-dev.20161226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161226","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d459d1ec60ece941c38e87d62e806f20ecef0fa7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161226.tgz","integrity":"sha512-ifcVI95jvfAfc2Czahod/9Q++tscEtATvJIdQMvH/QmLmF4AII2ww4cQzd7WlzeZIkbV7hU0c/VZM9rgTDkrog==","signatures":[{"sig":"MEUCIQCob7aL0HOn+UZeBUnddrzrfFc+VTOZdvNEj71ftwYWRwIgWjYpOOM/4ThQv+J7St8btpNfzx+nP8KF3gx8cvbATHI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d459d1ec60ece941c38e87d62e806f20ecef0fa7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"20097d7961de7b7b1924bf8b05a92e5a405fcf85","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161226.tgz_1482736392971_0.7695751842111349","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161227":{"name":"typescript","version":"2.2.0-dev.20161227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161227","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c02a4d0656762ca1b8100df03cd42b54374e390b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161227.tgz","integrity":"sha512-9XWHkb/PqfV1mteNmgw//dx/G8QoMW2sjzRyXT4jiIfWDDBlGxNORZM0z/IC3eSnqqkqRqBArWcDTc0+KBRqrA==","signatures":[{"sig":"MEUCIQCW7ehxHTfK1LddG9tEkNh7dNfQqKT8wnWL3CameQyGDAIgHQkiUDPhPN4CpXqlEZx70YcKnsh/PXIefJRCj8utwvU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c02a4d0656762ca1b8100df03cd42b54374e390b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"f0ad56d86eec4f95270c0f9a93df116623beeadf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161227.tgz_1482822785257_0.039209105307236314","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161228":{"name":"typescript","version":"2.2.0-dev.20161228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161228","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"da6b4efb374d6003bd253ed91f8ebb893e8af3b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161228.tgz","integrity":"sha512-9nLR5h6PPNMDDhgDoF6ChjFyROQSWe7uLYNWWxfX+8qowmtf4NLPE3yX3ijzJY3dRwa2igHJmZC8wEgeL1uWSA==","signatures":[{"sig":"MEUCIHSrV6lN2yLhRSIT0uanEXXaVfzCflvmAt82Q4DOtxINAiEA/x+mz6um3yKaGfUF7Ks9YyPymOnUoHGSzmenGANbJWM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"da6b4efb374d6003bd253ed91f8ebb893e8af3b5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b82fe52ca4e8eb3380fdba97b1c99cbaba9ec6a3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161228.tgz_1482909238713_0.26161810476332903","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20161229":{"name":"typescript","version":"2.2.0-dev.20161229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161229","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"42b45664623455fc138f6d470291d639310efb97","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161229.tgz","integrity":"sha512-GxWXA0j68xzQ/XFaLNHWWSsQ6neki2jYjXQ/ivaVS9u80jyXhCHsqGD4cVAXdobzXctgYvcfP+nHnCqBsm4TuQ==","signatures":[{"sig":"MEYCIQDub+CRUIec5KzkJNMM8VDSyP4m41qjc3XlQ1xwnzk8SwIhAJPmBD96ajjkGTYDbC7f+Ge/wRWnaqX2GPBExWEJx/aR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"42b45664623455fc138f6d470291d639310efb97","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"69e0677ea1630daec111b5129aae609809d511e9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161229.tgz_1482995544909_0.3763244494330138","host":"packages-12-west.internal.npmjs.com"}},"2.1.5-insiders.20161229":{"name":"typescript","version":"2.1.5-insiders.20161229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.5-insiders.20161229","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fa0ef18f53a4ff748c0f378bc79b22abd047488e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.5-insiders.20161229.tgz","integrity":"sha512-/wZMpu7BEZUh9DT/VZRcvmnepVNCP9D/VjQJEZpvurzM+GJB83Y+vIMNB/e/KxJkIWiAJAU1p3ZE4CqkNASOZQ==","signatures":[{"sig":"MEUCIFDifTulj6wZp1V7wMhhG4qIjMJffB3pMF41MU2f9UL4AiEA4cteVW95P+4kW3Na9N4DyYrWg0ZCJ5tOnQRxenRRI0s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fa0ef18f53a4ff748c0f378bc79b22abd047488e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"32cec588ff26dd563d806d982dc6e0da436cfcb2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.5-insiders.20161229.tgz_1483043343767_0.0900745433755219","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161230":{"name":"typescript","version":"2.2.0-dev.20161230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161230","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e65873e2f09694d4e8219e93fb1502a2076c383a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161230.tgz","integrity":"sha512-GBNmJnRvkt81XhLv498G4Ku0+snpDoZIFE/ZyJHO/uJ4Bzc9J4fIwji6tzzRFWP/aBLhew75ZJtA51fs4y161g==","signatures":[{"sig":"MEYCIQDR/IKncKKXB4ZLdafIJHuuZrfHbx5hdly8Q3ar69lBgwIhAKpP5GJkwj2JFy1akZnzgXdMPwyf8hG6RkyKTcXb/oX0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e65873e2f09694d4e8219e93fb1502a2076c383a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"69e0677ea1630daec111b5129aae609809d511e9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161230.tgz_1483082010772_0.4904611848760396","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20161231":{"name":"typescript","version":"2.2.0-dev.20161231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20161231","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4c864e06d0f02f0f4ac508182128d1f181727aed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20161231.tgz","integrity":"sha512-+YHqYUJso2mSr7B2XEhRtTkyaOgyf3w6XTPCdqkAFDpTRLHNFqL9w4AeexiFnz6798LWCo4pAiHl8rJq2+eMIA==","signatures":[{"sig":"MEUCIBjafowyLrvW5Nk74lxlml8uQkPayTjFB7Nz+OIm4ggXAiEAiktCpKo0tfzQW5LCqkYixikVUOCvjfHSWQT0OVzIYnQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4c864e06d0f02f0f4ac508182128d1f181727aed","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"524fa64c8d5fcbd767db383a5fbf0edef4be6363","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20161231.tgz_1483168367075_0.6248227499891073","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170101":{"name":"typescript","version":"2.2.0-dev.20170101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"28a941bfd5a114241d4c9025a8d1cde541efcd3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170101.tgz","integrity":"sha512-x2pbeR6azKA6+69FX4FJm+jdxWe/cA5pfqLkUpmeYEdVQ8uczF7/rjmDB51K2Q3JzeHRVjBd4lY0aP3XBqj6IA==","signatures":[{"sig":"MEYCIQDCYBQS3eg63i0suMuk76002z91u5Y/11+KkQJX6BFJIgIhAIjEaQNezM0d+H8z8Pmi29O8nTJch/snZLRyRIsSxTPT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"28a941bfd5a114241d4c9025a8d1cde541efcd3b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170101.tgz_1483254790937_0.44726586574688554","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170102":{"name":"typescript","version":"2.2.0-dev.20170102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170102","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4f4728112cdf748b6b4b96bf4a1499f956e17300","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170102.tgz","integrity":"sha512-Iz8Gq0EN8mxG8zdFYtWks243jzk44WFH07xiVWBUF0eLcYutQe7P27DUSZBD7/5pRI8l5eoftd0VmQMhLAee7Q==","signatures":[{"sig":"MEQCIEmMHQrzZpJoUpRTTPUGJNueqCTHlPkKwbWQG9Vu1E++AiBt+7yjFNhn5MkOZqiRweKeTTjmeE57p6+yCZ0WQ0F+uA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4f4728112cdf748b6b4b96bf4a1499f956e17300","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170102.tgz_1483341194205_0.6682365364395082","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170103":{"name":"typescript","version":"2.2.0-dev.20170103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0a67020f9b01ca6f97c4f08fc007d314dda1d701","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170103.tgz","integrity":"sha512-CeKTZ+cmxnPmQ+GKGbEX2kSnlMv7NkkJhjAh/1wydLACPjkwjHrk3DEC5/SlIYFXx8BJlp6kwv2Tgs3eU4sJrg==","signatures":[{"sig":"MEQCIEwhXOBFXEDhWOkX5+riUs3wDX92EGHvtvA6brqFNThXAiBPXxvxP7OOpYfSIqG36/77OGYZ/3yNH4dufywUK+H5Mg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0a67020f9b01ca6f97c4f08fc007d314dda1d701","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"88c68256e62a1b1b287c5f170d8d1549124ec611","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170103.tgz_1483427581458_0.8395918915048242","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170104":{"name":"typescript","version":"2.2.0-dev.20170104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170104","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b89abec833ae38f7d9feabf3484c41fe91634174","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170104.tgz","integrity":"sha512-3aII77zmo3EL50tkQuv7W1oqaQJw7eeJgiAk/Sv6zIqfrCSHscE7rfVkEcW4cztcQtCT/nhY6amCDtbaH66wVw==","signatures":[{"sig":"MEUCIQDyPxxl/O58zGaRmFSXBRRB7cK5Lr2vsSNBXNQorTcDOAIgSjdsOt/YJYd+EKgxwc4OjR/wF4D5MFFQsabV238p8ME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b89abec833ae38f7d9feabf3484c41fe91634174","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"abc9b0dc36515608a86de6574452f2b90e579014","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170104.tgz_1483513973310_0.18742245412431657","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170105":{"name":"typescript","version":"2.2.0-dev.20170105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170105","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"43e93d2c506788764333cca13caca53a9c7f8405","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170105.tgz","integrity":"sha512-x61O63cEsQlPBm7dfW501t/VyczH8kqUYQAi11Trk1hd6yYQWFmj4CUc2hP7ZylVNtAvnvQBoJe0WGblx4TmHw==","signatures":[{"sig":"MEUCIQDGUFfVjcwUCyxbvW1sXxo8ZaMugiTtA7p0lbqmdW3mVgIgToJqmLhu5Gn9UWrIMMocb+fLezuLv/JyFlrAIQ0rMrg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"43e93d2c506788764333cca13caca53a9c7f8405","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"58ad85a2747d00cea381187b3ce0290dd6fc4609","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170105.tgz_1483600366198_0.723907069535926","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170106":{"name":"typescript","version":"2.2.0-dev.20170106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170106","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cb6b3d95a0faa2b0898cffcfa96e69336679d058","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170106.tgz","integrity":"sha512-gENE192tyPW3f7/61wFbsED5hIbNA6pG8ArlvDlhcA2jNCblbwjTXOU3HhOUJTZPluzzj97TCksnYq5XCmIrGg==","signatures":[{"sig":"MEQCIFkB5huGOumazJ2sHI5f77NBT7EhDcocsR77Zg6596+PAiBAWL/kQCmQsL2j36LUF/mn6zdDor+BWzHFipVsG/HcNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cb6b3d95a0faa2b0898cffcfa96e69336679d058","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"91af4ae6b3f797eb7911963c22e800f5b96d96ec","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170106.tgz_1483686720437_0.23857056605629623","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170107":{"name":"typescript","version":"2.2.0-dev.20170107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170107","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d80d9d3fc8a6a97e88a425c9d42d213e071f9a4c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170107.tgz","integrity":"sha512-XageG3hblifkARseRykKm3YW4409kpYk88nsBPPr8a52aG7gT0qtbb3CB3YSXbhaiKX87VJLu3gq0el/zLordA==","signatures":[{"sig":"MEUCIQDWkR5msAvctMWdqE+5/t9eDHcocdQhPP/qip4pmUMcGQIgNT29biAUsi5hWGQj/VtsOfa82h01RGbUD7vvHKVUEvE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d80d9d3fc8a6a97e88a425c9d42d213e071f9a4c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170107.tgz_1483773218011_0.5047358772717416","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170108":{"name":"typescript","version":"2.2.0-dev.20170108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4e5c3611c32695d13b2978db1d9e16e410ea9ee8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170108.tgz","integrity":"sha512-G7VlWWsoBaaq46rpq/QQIcBHwhLmlvUu9pco1ATfdxXHKCoyfw4B+WnFzQZFIbAIKH7mrrppgyBklaKb7DCfvQ==","signatures":[{"sig":"MEQCIB3KBFoRoFsUj1rbJ3Cxo9q3Wmfafj8MccxHAycCS1j7AiBegTN5W3LzLzdxckbC/NQ8QydVyBEXa8ZzvwAKRU//7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4e5c3611c32695d13b2978db1d9e16e410ea9ee8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170108.tgz_1483859636709_0.8535481714643538","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170109":{"name":"typescript","version":"2.2.0-dev.20170109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170109","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"497f56de9b678629503e017c1524f2534d1ad298","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170109.tgz","integrity":"sha512-2MMU01X7km1iYXlva2vUs4Fz6jfRwydsXumOyWoOSJB+jc+WhSuybPXyfIf/wt9NBR17AopofaghxaX7fDqwPw==","signatures":[{"sig":"MEYCIQDVU/6gLVNKrgg9X+zJ00w1EACcXmC6FDMLq20q2w4JYwIhAIFBdWRDX4flf5qrbJifvy1Ko7tQY5yeiZHNKtritwRl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"497f56de9b678629503e017c1524f2534d1ad298","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5b075ff924083d3891e3d34bfe2b4a8b4949665c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170109.tgz_1483945996990_0.2822617399506271","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170110":{"name":"typescript","version":"2.2.0-dev.20170110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"19b166d88e8574286cc1ea2767fa6cf35a61567c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170110.tgz","integrity":"sha512-gY9QdI4XzaEMQdReHtwZrC+lfFVt/LeYeGkwsn6TiFPtL/jrJ8f5FagsvX/pzhf/ulLnzZdO8uT5BaJ2jzan2w==","signatures":[{"sig":"MEYCIQDozYyoGZuxM54KhJH3STrIJ+dWEP1dNrfOaTxM3PwY2wIhAL0LDeBDnP8cpa9z/EdlnOqJQQ84W4G+5ae4oIxVBUn9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"19b166d88e8574286cc1ea2767fa6cf35a61567c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"46938e0c1f2807b1bb7eca6b76052660328d372e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170110.tgz_1484032445056_0.44486652011983097","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170111":{"name":"typescript","version":"2.2.0-dev.20170111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170111","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3c7d5d598287fc5b47060f229ededfc68ede7058","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170111.tgz","integrity":"sha512-6Yq2nM4xA5CaSfgvsk4YEPijDIc/e6CE9SXwBcE+u/VzJWdKYpUicQYyXuOpQd6duI0npZ1sQLRoOtZiZ64VRQ==","signatures":[{"sig":"MEQCIEzFcbC68hoXTP+S93viejHpjx5R1SGY9FYmC6S7fW3CAiB7QAKwELKG/nZOoASMTQmvI3xxnmGzmh7rA9G0Rd/RUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3c7d5d598287fc5b47060f229ededfc68ede7058","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5e6c5ef2f07dfa343434a88bc18efc805a693c9d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170111.tgz_1484118774394_0.0945057647768408","host":"packages-12-west.internal.npmjs.com"}},"2.1.5":{"name":"typescript","version":"2.1.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.5","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6fe9479e00e01855247cea216e7561bafcdbcd4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.5.tgz","integrity":"sha512-OHCRjnoBo9+v90Afp4lidM1gHsx4jrIa6M+M2R/RDxn3sUfNGy6lP/TmgD9D56ebthSu18ikELqJt9Gov3FDmA==","signatures":[{"sig":"MEQCIECKick/QLl00sKBHT+wtIZqeH54t0BKGzLrLFs723NEAiAVP0lfn+cYBg87d5mx5LjYSZuMjzp56KhggofN77lqcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6fe9479e00e01855247cea216e7561bafcdbcd4a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2dbc531cf4cd8758dc0c94465d874d1013d3c5a4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.5.tgz_1484179264972_0.1603098378982395","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170112":{"name":"typescript","version":"2.2.0-dev.20170112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170112","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d1cd3481ea7e99a6c3aef81e6daf53326f533bb9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170112.tgz","integrity":"sha512-r19Ml+GVPkPaPHjSpIBZlxvZfXYWTThYE0tgJwugXMx93m78yIo1ZsBbN6+UF88wuI984E8hnXyOuHvhiizLrQ==","signatures":[{"sig":"MEUCIQCJexFWrMDNrz8IijUmYpwYJN7V+nOMgv7v98w9ZVH15AIgTWRQjvPt6DxHghgjDErivxWq7SjZ57NFoYd5Cjy8Svo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d1cd3481ea7e99a6c3aef81e6daf53326f533bb9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"04da7074f9c7b7fe9bb5a8db1b2d845b9344bfe5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170112.tgz_1484205187777_0.17803838895633817","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170113":{"name":"typescript","version":"2.2.0-dev.20170113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170113","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aad3c1cb95c040e63c51a103a834964fccf409f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170113.tgz","integrity":"sha512-wVfjQyMaVxdiGhkp1txMIzAHJcRLORQW/sQL04wMZaduUjhj85TH6PcFBeHhQrfBqo47ppIpvztsy1kUaFA1Qg==","signatures":[{"sig":"MEUCIQCcg4ASvfq2nIPIRd5ifDPkAl1nhs3uaW3Z/fF92ddTwQIgIKFQUyyQ6zXY0nJXpkW5E+hF7WINnjcBDE996AtFunY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aad3c1cb95c040e63c51a103a834964fccf409f5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2711303539dd9af4f0396aa17497e75b5b44f90d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170113.tgz_1484291557944_0.823063746560365","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170114":{"name":"typescript","version":"2.2.0-dev.20170114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170114","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cbff198a27561dbaa3c4d85a63d05c2277d8b5de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170114.tgz","integrity":"sha512-N7kgtY7oaxT50IlAFnU7UMiC8zU/iTJB1mVIUZknINL6niRgd026LeYuGpXk1TwuTmBJcrn2/lCSa+Ew6xIM8g==","signatures":[{"sig":"MEUCIQDSugrC6iUa3ycfb/RpeEVyBywiod3tkelQbdVl2+4c/QIgNAjL3lwiMCzkH7Ll7HznxzKxfdR5PEsCIxE5GAViioU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cbff198a27561dbaa3c4d85a63d05c2277d8b5de","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d86d85021128ddd45c9347b5bc8e222ece317d6f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170114.tgz_1484377977031_0.4164725127629936","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170115":{"name":"typescript","version":"2.2.0-dev.20170115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"94e92f177079bc7022ab00e700a2270892268bc4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170115.tgz","integrity":"sha512-RRM9JRIl2Sw9nADUzhIOvaIkkjjQ4OMaeZ+XUOSsfhnE0R5zurCxFwZTnyRmKfC2ylgkpxqYX/oN576kseko9Q==","signatures":[{"sig":"MEUCIQDWY5UfFK1SHJWatzi1ovFLQ78KWV6fj8RQlPuKI+QUgQIgLXsS1HffxY2Aw1KSZngpUw/SLiOqystx0RQr+LSmkwQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"94e92f177079bc7022ab00e700a2270892268bc4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"c320c884d6f8422dc0bebb0e80d276379e5d5b88","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170115.tgz_1484464356106_0.6945959134027362","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170116":{"name":"typescript","version":"2.2.0-dev.20170116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"768943f755a92760cdcfa5d3860805fae62f5b1d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170116.tgz","integrity":"sha512-dyZ0WNUqX0AJe/kBhKrwMqKVFjjlckQK8NB7w4IfmLttGHS8QNKtPKjLzf29tLBdIwHm5LuHIM5kOinKoAHk4w==","signatures":[{"sig":"MEQCIC054QkW04wIEoCKtOR8mXibtYIaw9WfxqKtSxPmKC0FAiByNmFsqO3IA8/eAVMRDGLe2tm0MuRvaUJS0mBCp0l1dw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"768943f755a92760cdcfa5d3860805fae62f5b1d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"e254a09d6ea840672617d63216374287a5779277","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170116.tgz_1484550747556_0.18172956677153707","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170117":{"name":"typescript","version":"2.2.0-dev.20170117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6e8f0a306c3b6d26901321333ba9a7a301150379","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170117.tgz","integrity":"sha512-gMsGD5wT6h2oRBbemnMA4p9RINHrpgkOMvOtYiulQP9f1RgYqcJSTt2F/T8VsoAFPBNzRrgoBvkyT7xDd2QTMQ==","signatures":[{"sig":"MEUCIByWGN3z6RiqxbN51elodsjbNZzhEZIF5TUIiymxmi1UAiEA9JMMyibki09n9Fdvnp0LDcNaAWJfFBbbrxq+zJrXWVc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6e8f0a306c3b6d26901321333ba9a7a301150379","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d6fde0c07fcffce6602195313f119bd8e35ba777","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170117.tgz_1484637159341_0.1085028750821948","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170118":{"name":"typescript","version":"2.2.0-dev.20170118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f61747a04c71996d8dfc85cdc5c1f45e6e3f9a55","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170118.tgz","integrity":"sha512-MJr83bDuZjM0sUntm3ZWQZ8/1IGPTTzSfBSfqtYOJesjr47NdCOUDWcB7kYDmVNHKkyB7PPa3PB6ezUjx7YNjg==","signatures":[{"sig":"MEYCIQCeQK0sKcEQIFZTeBS+fe5IDA19zLvoq7sc2nD4NfSbpQIhAPPWyYowssywdPJR1B5PDnApUMsBlFtVz0UBAvgRxm1+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f61747a04c71996d8dfc85cdc5c1f45e6e3f9a55","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"381960f9eab5c37825f939c42bf375ca61d5b67d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170118.tgz_1484723582415_0.04217548295855522","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170119":{"name":"typescript","version":"2.2.0-dev.20170119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170119","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3c0c7657f784ddecf9acd30c415ed665523a77af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170119.tgz","integrity":"sha512-NMtvuGHnRZFNlD05GaOIjeNZ5LP3LFv7Y7SrBYEVo5+ZGO4ZaWGoEHPVpWTqNdlzmzdNZUXFy92svF+09+wg5A==","signatures":[{"sig":"MEUCICMDMl6zrQU0zUkk2mCnuwwEOVLkg87IRexoy3b3k99wAiEAmZ6GKvqGTWNVIwe2mj4hPcR6wS9f856KRufJJ1oYVG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3c0c7657f784ddecf9acd30c415ed665523a77af","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2c48e26f191f73e1a2394ec062df4b7111f97d46","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170119.tgz_1484809905487_0.3045387309975922","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170120":{"name":"typescript","version":"2.2.0-dev.20170120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170120","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4729ced2532dfdebc170cbbbc9ea3fb57fa5181f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170120.tgz","integrity":"sha512-GqcN3gJ4KULk2hx3pPK8v0eYswQhKkh3cZzIusHaiFvDRjJPaRKTpD2HnPfHZm1hcs9cMTrcpeBnRHow0+z//Q==","signatures":[{"sig":"MEQCIExruzcuJxHbFrkGh9Tc+F6HFkgBcDwlrnQeLUc80zWhAiANqQU6bjuYoRVF7QLR8IYgyFAWy17/TBwWzCUZKfjLzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4729ced2532dfdebc170cbbbc9ea3fb57fa5181f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"0a535f0bf7193741e6b4acf5b7dfea88e2d4beca","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170120.tgz_1484896341305_0.11423544608987868","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170121":{"name":"typescript","version":"2.2.0-dev.20170121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170121","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ceda8c8127a0307531d76862b012a2bd918a7f0d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170121.tgz","integrity":"sha512-/A8uDX6C42xU0AgAhuHTmRJR5i/3CvnwahZ3bGPvRgUUGhfWHXRUTq5BnIlfmkwKErLxCBbIHtvti7GkOV8I4Q==","signatures":[{"sig":"MEYCIQCLQkBDNHrMlnIKU6KVLaINa/TRDvXWcABfjB2s1iOGVwIhAKRJB4AhfasnSH0W6J0meFdMrPykjDiC1kT09k7ZnVLx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ceda8c8127a0307531d76862b012a2bd918a7f0d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"4ee8213dde3a08b29d3add176cae92bdb20c5415","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170121.tgz_1484982732591_0.99959297478199","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170122":{"name":"typescript","version":"2.2.0-dev.20170122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e46aa6050f1af2a37df4eb41304991ded1f4f2c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170122.tgz","integrity":"sha512-CtemAvp2mKvGD488qYHS4vCn/o2oLEvU60+gj120fBPZRfVtNBwFJEZHRGQpQk+Agi9ZJsKF35ATzb/d8TzeLw==","signatures":[{"sig":"MEQCIGGFcjq87ntfFEAY9FTkEcQ+Oem1bH74kOiRI163BBmxAiA6lHsrxVvdCWJWofXx2oXHo6K7HeWJMo28ZEZJHrjL3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e46aa6050f1af2a37df4eb41304991ded1f4f2c4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5b9004e1bc24d2bb53de1dd04ba042ed69da45f4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170122.tgz_1485069121751_0.15194945689290762","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170123":{"name":"typescript","version":"2.2.0-dev.20170123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b9d798e096a31c1ed5d27ea30b1224d3c077e808","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170123.tgz","integrity":"sha512-NR7fifbR0CZ5BoZvVK6eKXJ8104Q0SDVYZPtXbKwGoXsZtD42KefZElIDoOR6HfranphJBPFGf4VKyWZZctPzQ==","signatures":[{"sig":"MEQCIBMJoFLaSgYvLE/e8XdvOFJTeOmJQzBaTKaw4U+R2e07AiArU7i7NVMtOMxvMnh4V2oD4LH4m7nvFOGSFbsxnTE9Mw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b9d798e096a31c1ed5d27ea30b1224d3c077e808","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"3cf326a8c4e968532cc4cc063fbaea0ed253f335","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170123.tgz_1485155499897_0.22202752716839314","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170124":{"name":"typescript","version":"2.2.0-dev.20170124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170124","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"56de2ede0427292bdbee86f6863abe6ec8f7efcd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170124.tgz","integrity":"sha512-Y32TewRYXY00CA+rnx0AOWX3Qtk/vVRTTG10P7XzO3x+GHvy37OaA523zPI6FVBMk+PdCUZ86fYsZAGg8sJzow==","signatures":[{"sig":"MEUCIQC9r47+yypDiOnWy+Aewp3/gdwmvg+DExTMmNY/aIw8+AIgKjyCyxgSd0dHtn9Kc3j9dTyT9LDGbDQTVsNSYAWb62Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"56de2ede0427292bdbee86f6863abe6ec8f7efcd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"f6ee80c675343d873d5f9d53f9e4ca1f25d3d5ef","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170124.tgz_1485241917745_0.6177540123462677","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170125":{"name":"typescript","version":"2.2.0-dev.20170125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a0d0cf4ee24405b85e53dbea3e59cd71bd5ae4de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170125.tgz","integrity":"sha512-RNgsJNKjSdBJS55b3eOWhtaWEI4e+vN5X7PdWKzUlztLyFFdGTaDoC5ccTq7VE6nqJKRMKTb7EJ3jM8lBplyPw==","signatures":[{"sig":"MEUCIHlOQLh9Twvk0s5+QzkEHlbB1tuH/LiWGGcrS9SebfRxAiEAxSSk0cWSSiELDrc8eotFDWcTBCEAMcTALfkTaPzOXEQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a0d0cf4ee24405b85e53dbea3e59cd71bd5ae4de","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8144c89c9c63ce1bf90adbb35f366fe2ae821c1f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170125.tgz_1485328328282_0.31463755993172526","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170126":{"name":"typescript","version":"2.2.0-dev.20170126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170126","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"422ce13f80582465f398d1f2bc7fecc90b89cc99","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170126.tgz","integrity":"sha512-T28xtyVnqXagHCi+37Q7sxAsb7xA9KmuKbxOI+H43n8U0Rp5wFCEg57sOvmcI4tsIIJhpCSJyn/ZOQjjJE79Dw==","signatures":[{"sig":"MEYCIQCDu8K10M1J7CwV+wlVhEpBev/UzpjnlohdNrTYZ/c6JQIhAPtF8lRQ+C1qojeEby1ioVcBeLoCt7yV6kA2fm9Lsonb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"422ce13f80582465f398d1f2bc7fecc90b89cc99","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"feb08b8b43b715653d20a34c75a882d75fa3ff94","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170126.tgz_1485414735932_0.8313646414317191","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170127":{"name":"typescript","version":"2.2.0-dev.20170127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"94191ea34e6f53d64a4d0291cc76f7c14417dd54","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170127.tgz","integrity":"sha512-QskPVbzu2Dvizn76r+rPZZCbuw3s2QoeUTuiMrk7wcEf/LQATFv0ICZxTIWpWptHNIjzbcFZ2uIoRqDvqC1SHw==","signatures":[{"sig":"MEUCIQCvKsUyuhlQdBFGAn89Xk9wedLlLOLE1FHWLYEtfYyNXwIgalQK/kEm4D5zixj1gBOC7UsFDNdL51o4QtsWEVSyi8k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"94191ea34e6f53d64a4d0291cc76f7c14417dd54","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"64dd8065aa2292f46629f6ed976e42ec852d4189","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170127.tgz_1485501122464_0.3802980538457632","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170128":{"name":"typescript","version":"2.2.0-dev.20170128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5ec0e9bb023a53998281f2372d90f4db058e4949","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170128.tgz","integrity":"sha512-9TWlmLbhKg9MdrZr0zWRllhRnsMc1Eg2c71qq3fKcTCuaT3RpNQqgmOdHIYkujy5GjCUoa83xSjR4wxAJOzzvQ==","signatures":[{"sig":"MEUCIQDedlc0nQD0/bmTnpWbdbNdZ76HMBoty037cuLVV+xKaAIgERBt0n+NYAeQfE4I4lPX+5dgRjx/fkIbWXcm8csTbYU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5ec0e9bb023a53998281f2372d90f4db058e4949","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170128.tgz_1485587546324_0.4883508156053722","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170129":{"name":"typescript","version":"2.2.0-dev.20170129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170129","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e36f7e51ef1d6d9c783540b41b81da258666d0ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170129.tgz","integrity":"sha512-6fXIl4HnBQvTU65iLj0v509Q/SveQBMvlbxLFJBIP35rfJXkNx33m5moSIa6EeIoItpkdOPSL9dCoFyefenuYw==","signatures":[{"sig":"MEQCIFF9Wq5NT6qMaYfB+rkRhQ+N+3Wa8BZx6AfLTHULN4gPAiAhNgPIj6EdUSG0SLVo5vnbvM8RGLuhIOqbnj1VsmBuaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e36f7e51ef1d6d9c783540b41b81da258666d0ca","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170129.tgz_1485673922008_0.8512706779874861","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170130":{"name":"typescript","version":"2.2.0-dev.20170130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"93f4a216242395fd43ac4684c6d7531440a155a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170130.tgz","integrity":"sha512-3YHZmySG8lKxJobohQwL5bFIkl7+BJ+yNMxFJ4I32fHDAeGwyrUSOx44ry32uuE6OMGkWSkBvFjnreAdrP4uLQ==","signatures":[{"sig":"MEQCIFAPwb+ZcCv81RTN7e70gBPqCHqLTbRdvmrzHgaegvuvAiA77ro0sg83560SwZvzqlQYu7jBBhWh2powEozglM+QCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"93f4a216242395fd43ac4684c6d7531440a155a5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"aeeff28fd6e7a6b599f8eff084008ac9bdc36d03","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170130.tgz_1485760318339_0.5075052718166262","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170131":{"name":"typescript","version":"2.2.0-dev.20170131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170131","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e2c68c5379d94c7970a8a037b97d9910024a487f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170131.tgz","integrity":"sha512-Aw3ofP6LRnZLc4tm4/fplXm9Mqkt0mKKQetEWrtD7am8gBfQ3VJJeeAarsFhareVQugI9p8bo7rCVg8aGoeKoA==","signatures":[{"sig":"MEQCIBHdOysyYx5Al8k7B7Nm2gns613mETc2DduU8agfwx9AAiB8qruEm4QFkk3iIZARVPa4FLHX8vFoDXSGlAhoKAcXdQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e2c68c5379d94c7970a8a037b97d9910024a487f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"445421b68b23a3fcb1a64d9541f31b5e0131ed34","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170131.tgz_1485846742698_0.8980157203041017","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170201":{"name":"typescript","version":"2.2.0-dev.20170201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3d66dbb15f2f52e4464ca571179c607140cd86f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170201.tgz","integrity":"sha512-tjUSEP+GfutfyRG0sIXLO4ITFShszNXJZ9t8b1kl9MblI11Qj/7tsJr6GVsbUhT43N0BoR/9LaHpfd11HGgekQ==","signatures":[{"sig":"MEUCID42gC60nXujCWZN3qo/UGq7tkIkopPOXs3E9yuESt5wAiEA0tUrhuzgpHY5HkNvR7f85/YGoQ8M1/2IMsiKXE2BEBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3d66dbb15f2f52e4464ca571179c607140cd86f9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"cf20850e79c5bd2b89a1bc486bf2421fff2ec3be","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170201.tgz_1485933127689_0.10152681241743267","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170202":{"name":"typescript","version":"2.2.0-dev.20170202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170202","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3a2d9d7506592aea2c9ed461603473f8dd5a15a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170202.tgz","integrity":"sha512-nscDlaAX0MkuJLZkJkNK749huXMmJyEbc79xN+zx6zkyhWEujuwKHMkVihXBZX/VoxLIY7FLf0fHK6AidkmktA==","signatures":[{"sig":"MEYCIQCrHZkwCGumUxS4mKp7qMT7JyxzbQi0XcdaFwS0fUqFZAIhAMihTMMjh8UhTLTLI/DdYKdUHykVFlZwY7JYtDV78948","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3a2d9d7506592aea2c9ed461603473f8dd5a15a1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"1f92bacdc81e7ae6706ad8776121e1db986a8b27","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170202.tgz_1486019575162_0.6554185508284718","host":"packages-18-east.internal.npmjs.com"}},"2.2.0":{"name":"typescript","version":"2.2.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"626f2fc70087d2480f21ebb12c1888288c8614e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0.tgz","integrity":"sha512-JHeXepbsIG8VMFnj7ZjQ4/iVATRau86UOeZdAvYtd88uqOz/9E0h4TW384wlnqTHSMyt3FcSkMEE3n2s5Q3n2w==","signatures":[{"sig":"MEYCIQCGnV3Xyiw3wSQ/gybAOdxMbNPCVSsSDxbBddf4aA14zAIhAIKKDcez4TawSqYhqrrfU5+gcDK0Q3G1lMYHvnSS1syT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"626f2fc70087d2480f21ebb12c1888288c8614e3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"adedc1953b9a1136b5067f5224a3b4e7cd5b8956","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0.tgz_1486061390712_0.39234997518360615","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170203":{"name":"typescript","version":"2.2.0-dev.20170203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170203","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1c31f75ba7a7939596bd756d612c9916c805098f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170203.tgz","integrity":"sha512-mapbjI9sjbh14CKs5DKC46Q1Q4eD3C6yWWikCW7GTRePxBgRc3q/dPBZg5fL2IX2Hd4QPbFWnhoQ4/na+cHnDw==","signatures":[{"sig":"MEUCICDf1o8fspVrmOHe69mJicgjtrvfwcUdW/8TKVjFK8ARAiEAnO5zKKvLrm3mboh0ibj4sU39P+/u0qmRc0CRSmDuv10=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1c31f75ba7a7939596bd756d612c9916c805098f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"df643d8d02cc91993fde3d2a801817b78ecaa504","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170203.tgz_1486105980243_0.9502690832596272","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170204":{"name":"typescript","version":"2.2.0-dev.20170204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170204","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eb6e934c515862961262ca30e9d0580d7c3dace4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170204.tgz","integrity":"sha512-8v+6B211AldWCfkWAeZfmFBS8rcACrcHDjVGkxSdLO+wKSZQUkimjf2J2AZKC5/Ps/1xE57Droeax7FuKdd4zA==","signatures":[{"sig":"MEUCICyN6mVZ8pPQzOJYuLP2nDF8cetP+j5HmQYLPLhiGjdtAiEA8EGh5TBrYCoP49ZfY3zvp/IMkvIXrcrs11EVxTF6NfI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"eb6e934c515862961262ca30e9d0580d7c3dace4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170204.tgz_1486192380815_0.8688694909214973","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170205":{"name":"typescript","version":"2.2.0-dev.20170205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170205","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7a1bd15f57c2e772574adb53da0c49e4f3474701","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170205.tgz","integrity":"sha512-HFeM9S0a/F2YeAYf9g54Xi9/4IiJYrwGqwe8CcWx0rISirW0F1l1LS/E4KZH7Vf6ldkNjg0TGlK2EBCzOe43kg==","signatures":[{"sig":"MEQCIBMeK1jLmSeuVXbQkHh1EJr+F8cDNjKBmxavC8F1QISJAiBbySuF3KSxnzijNoZHMFM4F5+dMwZ2vHJ8xfJ/hEZVHg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7a1bd15f57c2e772574adb53da0c49e4f3474701","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170205.tgz_1486278810775_0.738462820649147","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170206":{"name":"typescript","version":"2.2.0-dev.20170206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b2142f31b8b99bb7a04c558b96f47de87749d7b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170206.tgz","integrity":"sha512-kuBi+7iYNKw4yIsfIwvPrgauCY+kGntld7TH1JXm9zq1g5WaWBB5IWAP4LGDdd79zbTbyvET5vQOWgs83ODP2w==","signatures":[{"sig":"MEQCIHX13QR0wNb+Zc/tPF3r613m4GWJb/YBMQGGrawYncrwAiBC2rQGP6pHMT/C0ZyI5RIw/T6JBtYVehW49MlLOP1CCw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b2142f31b8b99bb7a04c558b96f47de87749d7b3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"501084a93c5dec70da02d2dad1d16d5f84cd3b7e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170206.tgz_1486365153475_0.25099812215194106","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170207":{"name":"typescript","version":"2.2.0-dev.20170207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d315d5236a1639db2c727107c1308e257b25b552","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170207.tgz","integrity":"sha512-ZnOBfC678bv0/lu2GcX0quijMxJYZ+GFsa8I7SMVEhQVDzle0VjBlorGGE7VYi7dK4Z3sJwQ9ZoInaZNkuleUw==","signatures":[{"sig":"MEQCIBBAH6JxZj239inExAMqXs3+SLG04/m1IqdjJkWIMKj9AiAkX8kwgFfKPWl8uZA0rKAtsf5wrFCv+uZ4Np0qPV49Qg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d315d5236a1639db2c727107c1308e257b25b552","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"955b10edf9893b3c471b6d882ff0132dd8d6fbd3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170207.tgz_1486451596704_0.9667003168724477","host":"packages-12-west.internal.npmjs.com"}},"2.1.6":{"name":"typescript","version":"2.1.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.1.6","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"40c7e6e9e5da7961b7718b55505f9cac9487a607","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.1.6.tgz","integrity":"sha512-K3UOLVZbmb0mXh2dNfvY20u5PSqiyyhDHcCboXVRsmLavjbuZocp9D3fPdtAWZmdQ1UERwxqLeGmXDSQsWcL8g==","signatures":[{"sig":"MEYCIQDSXKS5ZGK5JTIbaGfw371/UlqEvFFlWfL2T+1sZcw+SQIhAKUjpia0yaA3oYUfQaSbm5Iaz+kfw2d5oznZPU3H5XR7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"40c7e6e9e5da7961b7718b55505f9cac9487a607","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"496e7ab55937c699ffd449960876a1285a7b5cbf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.0.0-dev.3","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.1.6.tgz_1486595501310_0.9944379008375108","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170209":{"name":"typescript","version":"2.2.0-dev.20170209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170209","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5e7ce5998a742560be871a5397163b40f7918843","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170209.tgz","integrity":"sha512-2ZCFJuFH+Q//0OZpjw0N3u39DMcSgJgJWuMD3z4YPnFryQYpF27mZ0JdATsxvZPNHGzLMNVkU3UZB41I5MqsVA==","signatures":[{"sig":"MEUCIHfV6LfMrEu/PtpeZgvDIPUi4aI2UzwSUU5ndezdYUA4AiEA2fYBtz1tamdILtpCAPvDbD8C55Ub93qpHMbcUGZ17/I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5e7ce5998a742560be871a5397163b40f7918843","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"de71002c8ea9bf5f70f33c6f0465b548077fc0cc","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170209.tgz_1486624420728_0.42641089321114123","host":"packages-18-east.internal.npmjs.com"}},"2.2.1-insiders.20170209":{"name":"typescript","version":"2.2.1-insiders.20170209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.1-insiders.20170209","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1ebe5928668b3c98dd5c6e0d7cfcab7513204422","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.1-insiders.20170209.tgz","integrity":"sha512-kxXv+RCN+VKQPkW4OHE7s9IJmI9+WuTpJGaSYPpufvUpw6w0QynQoj0V736Gy5W/nA8XiT5ceWjSc5KKlur1vg==","signatures":[{"sig":"MEQCIChjIGePMRRWk2wHo+cPkJADqRBERF3c1sKyXbthgMc9AiAPP9Wj8/0kE6vI5s7taelynBKfCzOp8o8P+lJ8gMYPNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1ebe5928668b3c98dd5c6e0d7cfcab7513204422","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d2e28809b1eeade6be1842f963d56ba8393d892c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.3.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.1-insiders.20170209.tgz_1486680244454_0.8263627483975142","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170210":{"name":"typescript","version":"2.2.0-dev.20170210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170210","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a2977fb63b349434e24945779d3927e20f7dac30","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170210.tgz","integrity":"sha512-x1mG8Msc1l9UgDo5DjzhrnZx6fWbqvX9iSzGqi9VPNFLSJSB+TQSLdDNQdxY8iT9zJl8mnETE2MhBk2EdgqCMg==","signatures":[{"sig":"MEUCIQDgqOYNgniKktj13S88hn+lLVdzt1f3Q1NOcDz1FNfLkwIgYvWaM86m9Hux4X6OEEswWGVxyH7V4diK/3YlHLtbY4A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a2977fb63b349434e24945779d3927e20f7dac30","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170210.tgz_1486710750301_0.0810329255182296","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170211":{"name":"typescript","version":"2.2.0-dev.20170211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170211","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f25f254d22379d7174692f4337f667998742b4f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170211.tgz","integrity":"sha512-EB1SQFl7E+Eyx0sHqhimIUWILajxuEUzPHzhr5exZYxQu2roaBdChI1S6Cnkk6tb8btEB4F5ndBTOXRQHFebwA==","signatures":[{"sig":"MEUCIDZ/sI1DIX3skePsU3vBB71/QvdoqaLA2dLw/iQpjAdkAiEA49CbD+BV70SxGm5A/Y2vW1UILtfaRhdMhlTBnpUHHKY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f25f254d22379d7174692f4337f667998742b4f0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170211.tgz_1486797220530_0.29570633405819535","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170212":{"name":"typescript","version":"2.2.0-dev.20170212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170212","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"86e333268b5ca7831f69004a00c22e3636f72f23","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170212.tgz","integrity":"sha512-CeGSy/62IM1SE0WoE33WNylTNb+XDyTRkIPqBIWcLVBfoj6vkVaDb0tkcafmP9+HQZ7ZSVRV23lQeSdp+nJ2Ww==","signatures":[{"sig":"MEYCIQCDEOVY5G8U5r2r1n/edAgfrT1/gdr7O+u/IgqWQ465lgIhAPmQlhopm2n9WGo+3soTv6UHsPteHSOOadUJjE64nAi7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"86e333268b5ca7831f69004a00c22e3636f72f23","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170212.tgz_1486883612578_0.7773494201246649","host":"packages-12-west.internal.npmjs.com"}},"2.2.0-dev.20170213":{"name":"typescript","version":"2.2.0-dev.20170213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"670305acc0b84cf027540da44012096b67ba8522","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170213.tgz","integrity":"sha512-ZhzsiNCmo9JU3tHuqTL4g7OFspfZKBi9+zYNlFvIMk6zIr7Ez3mGENnK4zxopWs/zYBa0ZpJiNkFXEk8WtkENg==","signatures":[{"sig":"MEQCIDPAPUswneW3fj6qzDCu/aeS1GR5+DtTMfycHdTzy1zbAiAySeek0Q2CT9ybRo9j/1PF4noMUlOjYjT0WHTiOo+Mmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"670305acc0b84cf027540da44012096b67ba8522","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2fc634f46048bb00f1cf27a798761fd70f269ec1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170213.tgz_1486970011393_0.16446392936632037","host":"packages-18-east.internal.npmjs.com"}},"2.2.0-dev.20170214":{"name":"typescript","version":"2.2.0-dev.20170214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.0-dev.20170214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"21270c32330487af0c81575ed846e78467a0688a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.0-dev.20170214.tgz","integrity":"sha512-Ue6bL56yDNZ3CpQxnriwx2bTrrCjzRN6OSYQY63kF6Y02rqBs44AvnPdLBbWCR7T+0ylSIdaUsYuXcV5MkMNOg==","signatures":[{"sig":"MEUCIQDaLGKzTeB4e2HtmvXXAV1n7bJ2Hy7YwD0ix8ViugHY6AIgT9w5bEMOikOMD7jOb4oBnV8OdF33W8cD7l7Mv+FFAhw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"21270c32330487af0c81575ed846e78467a0688a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"f673f48fad7eaff4dadb09e90d42a321c072a3b0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.0-dev.20170214.tgz_1487056448710_0.6919095281045884","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170215":{"name":"typescript","version":"2.3.0-dev.20170215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170215","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ce51c674741a2320062b433279cccb3242de7d35","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170215.tgz","integrity":"sha512-Cwru+3Z3CzJnP0m9oFAG6R9qqhgHfYT6BgfyC5Sy3ddiL0UUuy2pun7fPGUWHQb3tYJnPU/rmc18J6W4IXGiPg==","signatures":[{"sig":"MEUCIQCtJeN4R7wZ0d4hdrWv6bf4vqs8B5QPNo69rVy+Dv3ciQIgEC3791/U/RbVRSPgVQdV7kKjqJXRLrrDr6VYmYkVth8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ce51c674741a2320062b433279cccb3242de7d35","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"9be853fb8ffb312c42b5c736c0e8d19d367333bd","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170215.tgz_1487142822847_0.9743815443944186","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170216":{"name":"typescript","version":"2.3.0-dev.20170216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"24b2d229c84c38f6d6d167112c64dc4dd0d49618","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170216.tgz","integrity":"sha512-ssXrVQjAvcayt33iSGcg7UWPWxeBdgKlATHmvUSkHzYt8SrydW8VimZTb2CfDCFiwS9JnmuHEg9xKdjiRA/sfw==","signatures":[{"sig":"MEYCIQDMgLDmUu8LU30vCIPLQ1WuI2ljA3n9kH5qZ1mQBZ19jAIhALmDGgvoOHWzDiv8ikS7fdS6zDZoKD7reqO5r96KgsE6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"24b2d229c84c38f6d6d167112c64dc4dd0d49618","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"593ee683b91c716d6fd5afaec10370c7b4d01879","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170216.tgz_1487229168523_0.8742075513582677","host":"packages-12-west.internal.npmjs.com"}},"2.2.1-insiders.20170216":{"name":"typescript","version":"2.2.1-insiders.20170216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.1-insiders.20170216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d738e909e9fdbbb454178ac0f96fb88496628b19","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.1-insiders.20170216.tgz","integrity":"sha512-9GyKJcThJ6f4/R+h56flizCMvHLBAMj0jwOccbtxtwyhoi6dftBOuIR7zvmDfhxbFo0lkXPZVAvblzqhnDhOGw==","signatures":[{"sig":"MEUCIQCVRsiI/qiApo+FJXolu3KOYIGKcaA0RWPbw/AAfIy+fgIgC2Yj1g9WQgAMWdQOKdSnN9GjcrF90GaGq5G4hqLID3g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d738e909e9fdbbb454178ac0f96fb88496628b19","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"510b384e26a7966e122995d0d60506c742f0be3b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.3.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.1-insiders.20170216.tgz_1487276607312_0.844479345716536","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170217":{"name":"typescript","version":"2.3.0-dev.20170217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170217","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"92bf04d972a1d130169c1667fddc58a59d9d516c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170217.tgz","integrity":"sha512-jY5WnWCSefwzWVL2DMRDrTHORy7mwKp7AOfR+Naa7U9+FIAhW3XSSePeVC6AmrTX6B2+beq3rg1vZWu9YmfVWQ==","signatures":[{"sig":"MEUCIQCul8kqt51DXj+YP0wVaJSv4ufYh1p1t+eouDxStSVZiwIgIOhUhyM6DetgkgrrtkKnKpGelgA/zF+qEuzi/kyhvuY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"92bf04d972a1d130169c1667fddc58a59d9d516c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ef25b25c1fb64602f99a6278f24d42c1b6d53d90","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170217.tgz_1487318050221_0.6788658662699163","host":"packages-18-east.internal.npmjs.com"}},"2.2.1-insiders.20170217":{"name":"typescript","version":"2.2.1-insiders.20170217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.1-insiders.20170217","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4c4dc2537248fd5942e1f971be9a8d250c8e14ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.1-insiders.20170217.tgz","integrity":"sha512-snYwenKn0TZN9qqJkj98QmsOdeFwuqswRp2QY4tGLho/J9YNQ7uaYk07p7aP3k0hMOgtr8yYFYOnCiTi6EY27Q==","signatures":[{"sig":"MEQCIC33Oivkdhcnonf/SvFIOR7DuHHH08MmCka8R9Q9EhldAiBDQF1oqk8bYQqpuQ70AxRvHEw3/XeMCs4VWoGvg2BeKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4c4dc2537248fd5942e1f971be9a8d250c8e14ca","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a29e8cf2406dd41aea48be0fb68cde6a2e972564","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.3.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.1-insiders.20170217.tgz_1487381656311_0.45682990783825517","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170218":{"name":"typescript","version":"2.3.0-dev.20170218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170218","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"97f737636b9dbd4bbc552941e75b968f03cefdc4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170218.tgz","integrity":"sha512-3K4zvtAMya9W+O624Xp1zDtcOVM+I3DzRJ8Z0oMu5DWEqXajzQvPwNtJIyvUjyjxPvc6B3q/YBLJPIJ2UF2YJQ==","signatures":[{"sig":"MEUCIDEiFvfDMMM9yPH2IJZpBvcqkr7U5dG/+Ps6cZE7MRSGAiEAwffL9SMx9b+N3Q1xg4I15prCUykv0bNXvr0YrgC8rYc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"97f737636b9dbd4bbc552941e75b968f03cefdc4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170218.tgz_1487402020130_0.6244159613270313","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170219":{"name":"typescript","version":"2.3.0-dev.20170219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170219","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2ff5f00d0ac017bd2aa398fe98a68d45944bb5fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170219.tgz","integrity":"sha512-DYgXDzZTm4OOLJDdhh+BPc9DOEkFRsue+n0qE3dSj4Vt7TYX1Uiy5WWnf1pZlh5DY1wqcEVFv3DJQlOmAzphfA==","signatures":[{"sig":"MEUCIQDRZTCBpKsj0DWaH074BdE2LercrFC2rS6YBVSoEzIQUQIgXnRiNL7QEJbxSYSh1DQcOBc21dyLN7s6jkkqkzyfR1A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2ff5f00d0ac017bd2aa398fe98a68d45944bb5fc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170219.tgz_1487488363817_0.9817882874049246","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170220":{"name":"typescript","version":"2.3.0-dev.20170220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"15a337e92b40db9d3b51a3293c781c1319c49857","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170220.tgz","integrity":"sha512-zHPmN8cOAdltovhQ/GorozFcqsLxxlRvwyPjfpvf9XhCqn+/Fosk+ILePzVUS220Df5KN9SaZXEZZXQ17rlMbg==","signatures":[{"sig":"MEQCIDXMcJi9mJYbRmUckSRW02dmqwYptfkegLkPLRGtO/VEAiA1b9ZM/rImF/cAV2wShl98iuitgUK0PWup1/Z5mAekTA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"15a337e92b40db9d3b51a3293c781c1319c49857","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2d62245607916af9056c222d1a082b3efc347282","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170220.tgz_1487574809128_0.2833214891143143","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170221":{"name":"typescript","version":"2.3.0-dev.20170221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7bfec654bc2b1aac45b06cd050158232af03e99c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170221.tgz","integrity":"sha512-lUAFg1KtUI3xWeSzkfpMxdycHn08i4P4Wh+dpeA98eJNpL7eo8814yn/jm/ELf5h7aPjeU5F1el5tdMCbQ139w==","signatures":[{"sig":"MEQCIDqDjJSffZeSixZlMujCs+k6NJnMTSJXA+o0/7XYKvFPAiB4GAQ+FR9AvJvyrCMLWfeq11VcI+3TKjPKH0iok3WE0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7bfec654bc2b1aac45b06cd050158232af03e99c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b4d2b1db0d77bf886aa844d23c198d16ba7b67ae","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170221.tgz_1487661159366_0.4418482293840498","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170222":{"name":"typescript","version":"2.3.0-dev.20170222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170222","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"76627ef9c2a70b7b08ea13d44378764c3100ae71","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170222.tgz","integrity":"sha512-iB/BMaF7ro1r3XtOy1SQfvxEdGzekxerfupHWxfDesT3Z0AhgkCayhb/zfJ3QsxRfAQ5R+u1EzNUvQ3DgCHMTA==","signatures":[{"sig":"MEUCIQComfR4kO9ZkiDQn0B3fKwXXy+66cvXS05JroHc6MMZygIgE5jor78mZFXkM59gdo/o1DcuCnBuNh/dD/emwZoV7Uo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"76627ef9c2a70b7b08ea13d44378764c3100ae71","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"359823b4beb792092c0a7a1558f9c7134584be1f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170222.tgz_1487747576470_0.4557544216513634","host":"packages-12-west.internal.npmjs.com"}},"2.2.1":{"name":"typescript","version":"2.2.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4862b662b988a4c8ff691cc7969622d24db76ae9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.1.tgz","integrity":"sha512-B5nx5IYw1gmtvzMtwTGoKTep3640E0XCbH4kRhuT52poZ/K9Omvgx+GfwHXfO2S8pd00FaJIs+uq4zMq6QXH8Q==","signatures":[{"sig":"MEUCIA3H/PaEs2dnPi1ATKyBXnkRdFD9KzU545jCAi+Zu2VSAiEAmMxNwvpdQWhcZ8cWEXIXPHFkN64EFaPrVx56zCTB+84=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4862b662b988a4c8ff691cc7969622d24db76ae9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a29e8cf2406dd41aea48be0fb68cde6a2e972564","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.3.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.1.tgz_1487783888523_0.46052183769643307","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170223":{"name":"typescript","version":"2.3.0-dev.20170223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170223","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"286494c36625ea2eb26f963ed205cd9ca5c41447","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170223.tgz","integrity":"sha512-DmaohazwGIzNcdcC6jbQr3SuBTSTP+KMqL2mTNhsYmbddI33426v3yYfL4faBBqt+6XXd2goVrI1QbHHnhsWQQ==","signatures":[{"sig":"MEUCIQCwGE3s86GYW7oovVh4jbdlWXjRliKDINd2iMY4f4pjBgIgCbQGxo59R4Auxy5qBBAmZMMgytlpmAPLYVaehDW/A3A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"286494c36625ea2eb26f963ed205cd9ca5c41447","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"65da012527937a3074c62655d60ee08fee809f7f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170223.tgz_1487833942740_0.4773260762449354","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170224":{"name":"typescript","version":"2.3.0-dev.20170224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170224","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"062a2b874bde1dfba6147396188df59994d89332","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170224.tgz","integrity":"sha512-gGwdIZ6ZSbux09+I0iBX/JaBQxZoAzeniZs0QIimKhtOAav7cMn352yT/jNcZQaTTnaCumS+3egY4Wiy7TGsTg==","signatures":[{"sig":"MEUCID1wKE1VQYfUc+dVuJx9p1ZF1JOySPPhGSy0DlCkA/LNAiEAng3brOt9SB5ZLq6A/jlvrEuNmrVbenH9KLBP5JocjIg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"062a2b874bde1dfba6147396188df59994d89332","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2d4b4c9c805a552369eb9a776a9b97cb280371c6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170224.tgz_1487920410372_0.6417732781264931","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170225":{"name":"typescript","version":"2.3.0-dev.20170225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170225","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7d7ca24838afabafb95a2fe50a4578e2d6fb442e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170225.tgz","integrity":"sha512-wduLLKbLAs8X7B6u3AoBJ2FShe9HIo98lOY8ReGEfjGGOnRqnRkUz1XpStLhxTb8+TNJd+EcMJe4FProHB7uLA==","signatures":[{"sig":"MEUCIECDYXZfjl0xYazS85mjhxYUPEOYJnvCSDxd+te0366PAiEA0ICguAoj1ZuefmvWPTuqWvYZn1XGqss6cpZX4LqU1pQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7d7ca24838afabafb95a2fe50a4578e2d6fb442e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5b23dbc9990e1d65b22998ff0e3ef12f8247a110","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170225.tgz_1488006783880_0.5387127101421356","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170226":{"name":"typescript","version":"2.3.0-dev.20170226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170226","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"33a79d909668a6491d480c6c95bd6362425bfcd9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170226.tgz","integrity":"sha512-4inZUWi1/rhmQ0yQxPxsX0qkxrPvHSsZbLu6iQOhNPsQYjE0xxJuf57L6506d5Zv+t4erX1N22Bx0dIlEVZVog==","signatures":[{"sig":"MEQCIF6azO4o8r7SPNCNb/WI6U/PcjO+T9kG6FDM6jUcZ8keAiBi46JZQuao7rnBHSwrshiysz1ygf6i+CIi3XXQbE5jwQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"33a79d909668a6491d480c6c95bd6362425bfcd9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"87d804e4715f6c5bb0cf3693b1da386242e57219","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170226.tgz_1488093190246_0.2693984794896096","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170227":{"name":"typescript","version":"2.3.0-dev.20170227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170227","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c974c59575acd25dba67c9dec8467e6076e54746","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170227.tgz","integrity":"sha512-xqZjEfboQqB+HWdtwWFeA20Qg2IpekLo/g03oRTnxUxPH9OzrbJk7wUjny8wln3b7Cb9lsqUbPRaEDuup5dhJQ==","signatures":[{"sig":"MEYCIQCRAQQdQIjqI6tmNZhXNYNB56IOTjNpU+G7pHEuIGdFSwIhAN9cG1C6a6yjZxhI49Hjmdk73oH9SomF3pZ/f3/Y5S2S","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c974c59575acd25dba67c9dec8467e6076e54746","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"87d804e4715f6c5bb0cf3693b1da386242e57219","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170227.tgz_1488179583252_0.09349140617996454","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170228":{"name":"typescript","version":"2.3.0-dev.20170228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170228","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"78d59062c0cf8bc64172f6634bda3cda52da0191","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170228.tgz","integrity":"sha512-XsM3Iy+wor4qmjEyOtd3jCiyFG/SwoG0vGtIt4kP5mZNjlKgS5E6CLCd8BVbFwzpNBIBMYafaDTjT7ef5+jllw==","signatures":[{"sig":"MEUCIBLcUqFleqq+GJaK8uzmHENTqy3ez+59MJZvIUWV6KUFAiEA+dFgZ0YZYROx92tLvtL/CuKoA3ovXjCCNa7wGSY/kVg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"78d59062c0cf8bc64172f6634bda3cda52da0191","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"4f1d7a56b904d49e3f545579f99d43a06ad13371","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170228.tgz_1488266011823_0.5093146003782749","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170301":{"name":"typescript","version":"2.3.0-dev.20170301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170301","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f79d0a1162569439544ca8d3f290b5ad7a78e25e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170301.tgz","integrity":"sha512-XKK9HVqHXqNI38juwCBzZlCrY4XSfcERfGa7LDGSW4bZuOQrwzFp4ZAOW1KiCyZDpLOGqqUNrBge4IeHf6oZcQ==","signatures":[{"sig":"MEUCIQDY0/9ApTOsTvZCKzTgqIdo42IalviMqGc2+SDDX+XvmgIgFNUtfzQoj94R/TCi6zH4Fu0lJodWUCl4ZaCVnZiiJNY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f79d0a1162569439544ca8d3f290b5ad7a78e25e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"97965574edadfa09f3171ded366327637afb0deb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170301.tgz_1488352377974_0.12241558427922428","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170302":{"name":"typescript","version":"2.3.0-dev.20170302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170302","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7bd3aa93a032be88b39f7563781338aac939d3f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170302.tgz","integrity":"sha512-vRFDIv5NqEGsFTqI3rdoZT1eZcRY9YnxVV7SXq8f9jijxpXrgCweRJu2UbHkM6DNR2Rt62/Hbv2uSJucKCQGWA==","signatures":[{"sig":"MEYCIQDwyS1JHwEtIMLhDtquKk/MwsiZb8Earzf7YDnd89VOEgIhAKFUJHLm4VFn9YCgiR3+slzhkZKgaRBGnlDCDulzBXt+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7bd3aa93a032be88b39f7563781338aac939d3f6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5abb8f3caa27e30a99797064b8383c2b9a5887f0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170302.tgz_1488438847699_0.35560158547014","host":"packages-18-east.internal.npmjs.com"}},"2.2.2-insiders.20170302":{"name":"typescript","version":"2.2.2-insiders.20170302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.2-insiders.20170302","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"29cd01fd94467d3fc61f08808edb143ac05dd6cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.2-insiders.20170302.tgz","integrity":"sha512-10txxBUvuz0EVLFpHMKcWiJRgSKpCjo9lyRXbYsabMaZCqhKD45j2v8QiXOJENsIB2d1CNpedm8jXJAKaN07Dw==","signatures":[{"sig":"MEYCIQDCcvUwI0zjXzNeAtivt+DbmrBdp9Fy5WF/WF2AJZHp1wIhAK3SRzBuwKaywJBI6LFjJf08Aao/cX4qNd0AZwWQwnyl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"29cd01fd94467d3fc61f08808edb143ac05dd6cb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"f6b17387b63ac60d022ef3a9086498bb1021e1c9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.3.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.2-insiders.20170302.tgz_1488486091028_0.7144766061101109","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170303":{"name":"typescript","version":"2.3.0-dev.20170303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170303","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a94608c40d62f8675bafe5df7dc78a2a77bb71ba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170303.tgz","integrity":"sha512-uZu8NUkcf+D3TqE/IpQ9Gu/+FT0qVnqhLuwN73OKYXfp6Ztf3uHbMIwlH2Z+jZ3jrVLDba1coy4ZsE/DKww1OQ==","signatures":[{"sig":"MEQCIH8GX5d7Yte9cY+nhbPAVVXiAJGvvSOd8Loip9HJ9EUUAiAIAEclhU9wIpds0LWFYEvYrEic4ePafc6N/WDXeidQtQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a94608c40d62f8675bafe5df7dc78a2a77bb71ba","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5abb8f3caa27e30a99797064b8383c2b9a5887f0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170303.tgz_1488525165279_0.5675947822164744","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170306":{"name":"typescript","version":"2.3.0-dev.20170306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170306","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1b2af5681473d13950ebc7319f120c607b6b34b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170306.tgz","integrity":"sha512-RRdCOSdPWGM8C48YgKdCrKWrqYmcr3fNhJF3VwqObK+FKE9EGormRnzV5N4TqHqqTbhCt0a0cbiGODjef/i68A==","signatures":[{"sig":"MEYCIQCxrPFzvpCDSRUh9z3CxvFjT65ZusrY4Hyg5bk9J4DI9gIhAOoVzk001WOiYuZ0D4LCYAOGzGqa8jbGTCMqnUYXhtIN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1b2af5681473d13950ebc7319f120c607b6b34b4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b1520345bec020280c3cd8a38fca5f0d43f4761e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170306.tgz_1488784360238_0.4072050414979458","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170307":{"name":"typescript","version":"2.3.0-dev.20170307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170307","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"06536bf8b16b351c0f5ab155233676c459a7f9c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170307.tgz","integrity":"sha512-BGdhr7w7BCf/SzJILQhgsWRcgfe10JLfllIkOO95eZcN7DWa1vV+aqOZlG7MKeRrqfo46deyK0+V7jcqPYVa2A==","signatures":[{"sig":"MEUCIQC+4zCux9Oewe9mH3zKYLcmP6AaSQ+WnhPEybfeRzlMNAIgdkni8IxAM3Q7S/Nro6iqnl31gUtEFF77rSc4GLvSlck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"06536bf8b16b351c0f5ab155233676c459a7f9c9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"89f43d13e0a4786c99a9b3fb527b7c085ce90330","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170307.tgz_1488870867994_0.35902652982622385","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170308":{"name":"typescript","version":"2.3.0-dev.20170308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170308","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a1b64c39e180369803b2fca08dd086057a1658fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170308.tgz","integrity":"sha512-8BVweG93r/KfeyoXZ5BGbtSg2jFgfbEmo6kuwSdFCIG70lQQtUnccC13Bcu+1paLHLC6e1gVBM6F4687+i/fAA==","signatures":[{"sig":"MEYCIQCTKKIuy7b5zYLEa/OS7EY939bXAgDydvNWOhl01qIIiwIhAP5YR+PTQxKI8udcFZAliWLkLoTQPK+R8qWR4SLY9yJ4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a1b64c39e180369803b2fca08dd086057a1658fa","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"1bf4f06b2a9548e881c664c7441a388f4e1fdeec","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170308.tgz_1488957235823_0.7635773809161037","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170310":{"name":"typescript","version":"2.3.0-dev.20170310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170310","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eca1f6cfc4c2e2ab5b0531aebb22529c89ec3603","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170310.tgz","integrity":"sha512-YAt7p1anlGFjyJJwMOCiKUqOkOG6m2aRHeexXwTt9pQjamOgV4CrztfCmX5AXo6LVbfRG3g4tqJq6SFsvDUDnA==","signatures":[{"sig":"MEQCIBR1NM110twZDZ1KGRy2swwZMD0RD3aFOPZYKhLrWL92AiALflNwYKZHrGX3UPgoc31p7vKMfibsa+HaAzjv1yExMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"eca1f6cfc4c2e2ab5b0531aebb22529c89ec3603","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"940d165b0d9b697b32cf0b015b3b680f7bc146bc","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170310.tgz_1489130000060_0.7234955036547035","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170311":{"name":"typescript","version":"2.3.0-dev.20170311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170311","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9522446db838650e7b1f056fcbae08a102d6192c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170311.tgz","integrity":"sha512-0jG8DSsEgOsQl7Op0eCkPzAHsayPBqYaAz6bqqUncbSCECpcwnU/RIWy4pQlJtRwJBdxjB/f4WwySJuryTQ9Qg==","signatures":[{"sig":"MEYCIQD1gziRIf2kRu3h2QvdYabdEwQLluU1oiySMRw+n8b9OgIhALSBWIAPbNhEHLQChin9lOfF/MYLVYTDPa5CKnUvabnh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9522446db838650e7b1f056fcbae08a102d6192c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170311.tgz_1489216463061_0.06440871255472302","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170312":{"name":"typescript","version":"2.3.0-dev.20170312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170312","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6a954357d988eacfcfe0c90695b6250b16f8cb75","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170312.tgz","integrity":"sha512-7bCEBgmBUwsjkKn73/HlPWQMPGPEWDJuFpsEtWJ+LHda/xb/z6gYI9KelPHTaWZWXsT15OtjrJRM22BH/mAtCA==","signatures":[{"sig":"MEUCIHPhIVD+fVpO08yRRXLMIqvs1wqPaNWoIv1slHof1R6UAiEAxqCb8t2fM8+qiDWnz1MIKFqTLFQPfd4v+cRU/LuKS6Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6a954357d988eacfcfe0c90695b6250b16f8cb75","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170312.tgz_1489302798770_0.14295845618471503","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170313":{"name":"typescript","version":"2.3.0-dev.20170313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170313","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9fe7e4b8c4ee5106ced0dea59e621d403a079969","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170313.tgz","integrity":"sha512-dDVV0Rbn54LfLdBeTJ3f8jdKJrdL31VdQoml+1i0yG6/GqplW8xwlga6il6a8KP64XXwtNIx1h39ddH10mS90w==","signatures":[{"sig":"MEYCIQDvKNBL9rqaXtHBamMLFJ6470/QMBJYY1kBITHFaHDINQIhAOhL3sjGiCj1dA4kCC2QwhRFZysHW/ojpi824qSKtVfy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9fe7e4b8c4ee5106ced0dea59e621d403a079969","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"6632e324edbb263bdd699468a92a4f4518fdb9e6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170313.tgz_1489385620806_0.6741911380086094","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170314":{"name":"typescript","version":"2.3.0-dev.20170314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170314","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2cda5cdd31f747b24920d818bf25a7e0ba447f3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170314.tgz","integrity":"sha512-P+S57578RQUOH7pINFnd5G205RDJJlO4OsMxo2rtcEQUA0eFFQf2rp92cFYsYabuLd+l584ykkW1OrkGKJVEZg==","signatures":[{"sig":"MEQCID3r5CBSCoUBTBJMsZXSutulqF2+70UEdYGFGJIpsiRxAiAF2KAcbvtf4yA+cVcKB5i7/zhv4eQPTR+GxD9QVGCe4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2cda5cdd31f747b24920d818bf25a7e0ba447f3c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ea57fbc59f85a7f9f690ea1bc1e1813c7db03508","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170314.tgz_1489472056462_0.24466043477877975","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170315":{"name":"typescript","version":"2.3.0-dev.20170315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170315","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"596f0db2388da256dfa1b4cb3fb5da6a18e21aca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170315.tgz","integrity":"sha512-HsAmGZIY/geAQTjVywFIJA9QP1l+i2zO9YxhaUniO9JhRdZRUbbatGW4wl+5GzAy2pLk8tv4rV2IObEg+JWxQw==","signatures":[{"sig":"MEQCIArfQWdEkBCuf6ZOSbROhPIvr1h9Hl831R0IgS6esIQ3AiBxLzrf9iGq6sEuYHmU6E+jvCKzhxG5Nph8aqMzyefayA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"596f0db2388da256dfa1b4cb3fb5da6a18e21aca","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ea57fbc59f85a7f9f690ea1bc1e1813c7db03508","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170315.tgz_1489558420582_0.8582374423276633","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170316":{"name":"typescript","version":"2.3.0-dev.20170316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170316","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cb04176ecbc67a93e8c35ea9f4f0400b9e189006","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170316.tgz","integrity":"sha512-T410exiRI3xpgIWKlONG3+UkJ7fp6d4lLrtpo9vo0lEMXB4TDcMmPMD+StSvYvXIxYHK8jBPFKRPdKl0ld0I8Q==","signatures":[{"sig":"MEUCIF26t3qZMWBySc5TCZJ/96kJNksROYI5j5WISAq1gttRAiEA9wgAcquSvg7u964eo3hfD1AVpnVLr/NnTykwHK+boGE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cb04176ecbc67a93e8c35ea9f4f0400b9e189006","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"4b3cd6a1dba38109a3176c5c93f4424507b225db","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170316.tgz_1489644844075_0.47445191931910813","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170317":{"name":"typescript","version":"2.3.0-dev.20170317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170317","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8a3b13aa75b92b2bfb0074dd92a45d8be973a696","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170317.tgz","integrity":"sha512-8UytaMPM8XTAW7NClp32fsh5ogTbHta6mx1kv+pA7t5xBQ6tSPfO6mdW6TwTnDkC+fA4lOgg5WpvHs/7PhqcJQ==","signatures":[{"sig":"MEYCIQCWJXuWgKZjwh7mrSwDOVRPWvu9/8svHLMRRoVrRW5YYgIhANPFZPRozm85ssBLkHQ9ylXex2+RaR3PvggLVBAM/QOQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8a3b13aa75b92b2bfb0074dd92a45d8be973a696","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"595342615b8e9c729626668f3a1eff3c764fb77b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170317.tgz_1489731311331_0.4602776581887156","host":"packages-12-west.internal.npmjs.com"}},"2.2.2-insiders.20170317":{"name":"typescript","version":"2.2.2-insiders.20170317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.2-insiders.20170317","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4e671cdbd7706f7b4c1d096081a55b6bee49a979","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.2-insiders.20170317.tgz","integrity":"sha512-FLi8rKNEZjtdw83JghbLyvYCJC4DhO9oRJqLfFOO4cJ7AnYw+9tpnM0QSu5BZK22LCz/8MQt6NdNLstbgu1KiA==","signatures":[{"sig":"MEUCIENimIsAlq6/fW0BfQK2zkchFCeKfsS2QSVSxTXbpz4fAiEA//lQgfRj/U4IP1mqGSMarsJxn2VMmcyVhG/FlLAoZ3E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4e671cdbd7706f7b4c1d096081a55b6bee49a979","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d89553f63edab8d790e76afdfd4b541551732f6e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.3.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.2-insiders.20170317.tgz_1489797987145_0.16657975665293634","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170318":{"name":"typescript","version":"2.3.0-dev.20170318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170318","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"23ee34280ddf23a4cef659fbafdf01d463a16e73","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170318.tgz","integrity":"sha512-el8P00orbveV6FovXzhzhXnuwcaz6t0qaavXIllbdW/n6zA3h0ehZuPgk8yYweCuovzDJAU31axnJqmEt6hMog==","signatures":[{"sig":"MEQCIFOOaP61VWpiaMClN3ULIxZ2O/tTMg4QmsLVs9pe16eoAiBk+3jINjMDDaoP0GLs5+pbz9XjTgJfDz231VGITf45dw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"23ee34280ddf23a4cef659fbafdf01d463a16e73","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170318.tgz_1489817660573_0.36834536166861653","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170319":{"name":"typescript","version":"2.3.0-dev.20170319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170319","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8333a9e83d1ea015a64b908d4718ad90532a86f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170319.tgz","integrity":"sha512-8iUT/Z96CV6s/ogH971javwcrZE6Sn97jS0/HWAKXV/XFlAVKuw98Gv+LS+VAR5QKCr90yf18EJGzlJzB+kIdw==","signatures":[{"sig":"MEQCID7Ynh14nCiFPWCjKMxQ01wZv7zvoW9MH8j5PY2bLR3BAiBFrcz/YmpqAlzOigU8MyfD6fSVgrda100CNkZCxaJITA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8333a9e83d1ea015a64b908d4718ad90532a86f2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170319.tgz_1489904073372_0.6401022975333035","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170320":{"name":"typescript","version":"2.3.0-dev.20170320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170320","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b95fadf23dd9578e652965d5e529f3d84130dc51","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170320.tgz","integrity":"sha512-vyrrqTLFPnxMiI+C1loFACrGKBLhjwRW2WWqJNMVOwCPPFkS0xcW9cG3RYTDiurXdifPCG74gtJXvGNVNNv6Ig==","signatures":[{"sig":"MEQCIBv137Gjc6CEWZ2nH8ySUhBCYt0wjlCtG/kPLtiDU43bAiA9Ew0Dfa61mtnnM+UXIhsDbgk7R0dbz1KkHH2GH0mnBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b95fadf23dd9578e652965d5e529f3d84130dc51","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ac67b94a6ea209760bfc31d9328337a16c41a0c1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170320.tgz_1489990425049_0.22680562431924045","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170321":{"name":"typescript","version":"2.3.0-dev.20170321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170321","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"91b181a65cb70dc435d24f7fde9a2c3e134199c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170321.tgz","integrity":"sha512-7w9T5WSQcV7v3+hqhz89yFBT069iSn60RWUYhVVuLm6YizHa/pKgud8p06sBPoY3SkGSzphk1e2d3TIsLVIIoA==","signatures":[{"sig":"MEUCIQCZv6EBEPi2hRZU+EQ85Y7l/nZ5pTDjmzf8odcSK7v7kAIgCKYTRODGHVOQnsajfpoHYWZeO7vUNzL6j/oE15xO7ik=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"91b181a65cb70dc435d24f7fde9a2c3e134199c1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b6dfa39ce0b930b38cd391c6148efa8ea3fe960a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170321.tgz_1490076865343_0.545285859843716","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170322":{"name":"typescript","version":"2.3.0-dev.20170322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170322","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"73a2250d18d2030931fa8359352d0113e49f5e6a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170322.tgz","integrity":"sha512-bFNTJitlfPJpOMHkngqA2Q3i+gkMDCtSqxkOS0J221WvObMAjLMBk1xaEH48Ch/5uXmNUys/Y0ugOuKvwaVd/Q==","signatures":[{"sig":"MEYCIQCyZf0EPpx54nLOXXNmhfKFLkUzu4LiP3mRfHMPZsNkyQIhAMN0CTR6V/AgPoPy7KgwVY6RqJyCbLww7j4NNDev/TWQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"73a2250d18d2030931fa8359352d0113e49f5e6a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"4a1cf5d1828ea1d0f40797022385063140e490f9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170322.tgz_1490163225415_0.6654169601388276","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170323":{"name":"typescript","version":"2.3.0-dev.20170323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170323","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a2a996e9da2b4c635d914afbe681cfad13ba00ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170323.tgz","integrity":"sha512-CJgSUtkXfF66SA3d51oB4SfZWFclubZxn75Rbb+2910pOyYoix4zIbnn7SkKVWSu0ebSw56q85No3L6HjpgSoA==","signatures":[{"sig":"MEUCIQD/9BNi1dTEUgS7tAwSBho71MlbwC7Iz5HimzU+qUum7QIgJKFaEzucCL1FMl8+Mau8lNeUN1Bnds1tjp27VJOtCOQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a2a996e9da2b4c635d914afbe681cfad13ba00ea","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"aad80ad1380f4db622c4643edf58d8573d9db43c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170323.tgz_1490249659289_0.06077407603152096","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170324":{"name":"typescript","version":"2.3.0-dev.20170324","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170324","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2db07374d873b40863ac435cd4b05f55575b34b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170324.tgz","integrity":"sha512-FnT+nNKiP5mKGwLYWA1FHo0nLqa1XPiwjAimyEtHw6sC7blNcwB9ZMK4qjOj+u6Y9nj0FEC2GdLh2WJg8XZ7BQ==","signatures":[{"sig":"MEYCIQDhWEdjJSyWbF0ETOImOq46NPXNMdTE9C2LofkBEZruCwIhAMmJc8pLpaDzGZxe+CcuX9zQauQVGSKvtlmdpCjq3RDm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2db07374d873b40863ac435cd4b05f55575b34b1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a9d8df2e5a9486738540cfb90fc42670004a8078","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170324.tgz_1490335961898_0.454483937472105","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170325":{"name":"typescript","version":"2.3.0-dev.20170325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170325","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"61333b1de560a4846401eb83688a522826b4dfeb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170325.tgz","integrity":"sha512-uXBm/XYawDenVKtWFtj1va7AZqsg2KMyQ8ikAET5OkXq0pGdKWemZNThWyMAtIG/ajWdANL/vXSAuOKh/lQZOQ==","signatures":[{"sig":"MEYCIQC1OB2FDPdCi8zLDIMhfd380VWjbe9nqoPsOpRyRPBXGwIhAJ9S2tfbNVWKGWq2QruLKW2mcwh5bI1eSl4teUaDLAVx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"61333b1de560a4846401eb83688a522826b4dfeb","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"9e8b3d9c3ba683311fac6306d816137d20a931b3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170325.tgz_1490422394943_0.17851735767908394","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170326":{"name":"typescript","version":"2.3.0-dev.20170326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170326","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"81995ac5a20e1fc1f18a7abd5ff3bf4ff7f59be0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170326.tgz","integrity":"sha512-xzVrr3l1bZSWOxWUx+5ODIT42Htz4fOaqFAsDOTcs/1d9cuMI1sgsg49rTEAxX69AcKtHZFEshwflMJeoqcbBg==","signatures":[{"sig":"MEYCIQCRfDTfKWv4q1eiLDFfUTe/ZGbtgf0i7+VpchURentY3AIhAPBXwnhhxE40ZJJrCZMHfik8/V+jQ4BfinK+3GKf/7Vc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"81995ac5a20e1fc1f18a7abd5ff3bf4ff7f59be0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"9e8b3d9c3ba683311fac6306d816137d20a931b3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170326.tgz_1490508783189_0.6131800184957683","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170327":{"name":"typescript","version":"2.3.0-dev.20170327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170327","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1b8e456554bbd1b5caa96157571b8ac76bf0b698","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170327.tgz","integrity":"sha512-a2kgfhl6OnpWg5JZU54VT2ymeq54HkEDB6KtnMqvAptn9A41RjlP5Rtc1T6Mi5Eu4rCMI8BhmifHFZpGVuvewA==","signatures":[{"sig":"MEUCIQCRgEM6uiEiABvmKJYix8DLOPrDzNyaXQmcUS0jT6Wg7QIgbH80zoA9Nj49AGMyUOXc4HoEniqB4OTibewFkywmAVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1b8e456554bbd1b5caa96157571b8ac76bf0b698","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"02e487ac08fac6d3564ae45d1f1f7473ec558a92","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170327.tgz_1490595182672_0.10577051434665918","host":"packages-18-east.internal.npmjs.com"}},"2.2.2":{"name":"typescript","version":"2.2.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.2.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"606022508479b55ffa368b58fee963a03dfd7b0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.2.2.tgz","integrity":"sha512-ZQXTJ7IcU5Yg8Mz8VzVFDrguzIDpRxNlD8yjowh1F0cbruhWnd92YJ/c6gHjopRINwhgpe5bDx7fOD6nAagwmQ==","signatures":[{"sig":"MEUCIGJERLqJ1EA2dOp+rgjHkCL29tx7zXLFgUGeJ7MHXzb0AiEAj12TydwATWG9VzApq2dlnN4NPE4Uaj2qVuWl8LR6H+w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"606022508479b55ffa368b58fee963a03dfd7b0c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d89553f63edab8d790e76afdfd4b541551732f6e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"4.3.0-dev.0","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.3","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.2.2.tgz_1490637295228_0.5542608459945768","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170328":{"name":"typescript","version":"2.3.0-dev.20170328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170328","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8d08ac18b99ea02fead6999c1be1c07b5bb44132","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170328.tgz","integrity":"sha512-ddYR167opynBJw021D92bZx2whTv09DxmesFhvNbyN5WrLbHcuvjrqWYcUY8TeXhyBGYtP//Z6F6jwtQmdn0gA==","signatures":[{"sig":"MEUCIQCrMfV83JozAQkhHsb03ijJl4oNRUjSkwJQQCE4f9nhJwIgfvlsYLl5vteovhCVJW9yMxWzqxHhX54DH1rzXbVSZaM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8d08ac18b99ea02fead6999c1be1c07b5bb44132","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"0fd0903280d9c5090f18bcc22b7df7ca608857b1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170328.tgz_1490681560372_0.8197383997030556","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170329":{"name":"typescript","version":"2.3.0-dev.20170329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170329","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"29e6132d3003e4b1f5742fadf5854d5b4067719f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170329.tgz","integrity":"sha512-v8nhMeRHagdAUwqRDmPO53iCQtkDwLxNX6I+Gpzhst54dM5K9QiJwL2WI5xdv6L+ctaH5HsFJlnTJ6/RilmLpg==","signatures":[{"sig":"MEUCIFPy2YvHjFOA0c1D/mbzI7J7H1C6cC3b38Zo1I7T+xxbAiEApyDlX6xoC/Shw2jNXyBvGP7GgChjteOFWC2u891smww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"29e6132d3003e4b1f5742fadf5854d5b4067719f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"3ab7c868d97c1d0d4676c775271c7fb5e187be79","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170329.tgz_1490767984306_0.38311975286342204","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170330":{"name":"typescript","version":"2.3.0-dev.20170330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170330","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"84b28bd284f7c8f2c4aca69006ffa66ba721d23a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170330.tgz","integrity":"sha512-gXb3ZxlkxIZvyngnzXF6xPYC/ookmGsbIF0WXM6FfWPVu4U8ubfS3nzktcmCDGSMPui9RHZBJc85eTwCw7kmEA==","signatures":[{"sig":"MEUCICwEssicNPu3NTJxz+9ggQ/s17C2XP4tiQkNjlPlDXRsAiEA2c+7E5F60TInFyya+iDEFMRw117e3Fqxad/MrXqckWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"84b28bd284f7c8f2c4aca69006ffa66ba721d23a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"e298f759c3981c287fb5b26747afebda7a02b226","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170330.tgz_1490854417868_0.6821240275166929","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170331":{"name":"typescript","version":"2.3.0-dev.20170331","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170331","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"969ed460092801745c831b2fc2311ae22aa6b014","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170331.tgz","integrity":"sha512-Cqf/CknUN3isS6FJfxMQtnmAKXAzqcCI95QQx16Z9YJ14bUAOp1pOZcinqZ+rQT+Y/WaTnchxoHj6ah0Hgt2Bw==","signatures":[{"sig":"MEYCIQDm6wa8+WshnzZVz5eshFNPg8E6Al0fElOllxCOhP/skQIhAI2HQ7A/Vy2TOl1NkeNVAnQs791GW9x19jYPEIbZq3Jq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"969ed460092801745c831b2fc2311ae22aa6b014","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"045998767344d5cd580d9cbcc3d7e1300e614505","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170331.tgz_1490940814528_0.16316868970170617","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170401":{"name":"typescript","version":"2.3.0-dev.20170401","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170401","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1a0c0429c9f2f286054c13ddad572b8b7280a471","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170401.tgz","integrity":"sha512-ZP5wMQovNnhabLhi+1qvMXY0LOpzmSu/iAHY3n/+5jTR8Pwyi4nothNTVkaRItmVPX1a/6WROO55Vcc4To2nCQ==","signatures":[{"sig":"MEUCIQCkfBvZlYnyPogTi6suLC+nMkkP6wt0+1R+6+wlX29xrQIgPGX5R97u3PDFcOhD9HFL8Q2v2duFZynnNzIlXemjY1Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1a0c0429c9f2f286054c13ddad572b8b7280a471","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170401.tgz_1491027268688_0.6173566083889455","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170402":{"name":"typescript","version":"2.3.0-dev.20170402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170402","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"76088cb4f86bfbeebbb3618d0b27bbf336985411","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170402.tgz","integrity":"sha512-VtFLkcGeUMwVfDKXt7yGFnIl3PpvJUiwtYrXc0U76SMlxxyG2APnXC0iyOfpYFQ7rkUtmKxZ7kGSXJQAI8O8hg==","signatures":[{"sig":"MEYCIQDmHRtkKzMUUYmylKzTiw1sSWlykbz8WUdrHB5zXlPn2AIhAPUnK42xPGFwo0NVx5g4lnzLVsWI7euxbE5uP/X2YTT6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"76088cb4f86bfbeebbb3618d0b27bbf336985411","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170402.tgz_1491113634293_0.7933439661283046","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170403":{"name":"typescript","version":"2.3.0-dev.20170403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170403","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"12ebbac4fd77098a28426e1e1ab8fa7ed465970d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170403.tgz","integrity":"sha512-FuQyLs51JDNqyMi/RgWwumhB90NK3hYABHQOftFtsUB1yGhZ5SSeKhSWu8kvO6kZTjq1AHmEhGsAKn1l4qTnDw==","signatures":[{"sig":"MEYCIQCTo1PFPDksQ+KYz/hBSxVXHD/MsgTJ4mG+k+d7l8Yk+QIhAMQC7Nusb2ooPxVSPX7EEtwU/qwKsoPkyDzLglNhN4oB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"12ebbac4fd77098a28426e1e1ab8fa7ed465970d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a62869c81ecd6b1c75f41e2f780ffe2ea178678c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170403.tgz_1491200093316_0.9425895011518151","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170404":{"name":"typescript","version":"2.3.0-dev.20170404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170404","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"73069bb7fef52d5ad4d9c29dbc1d97c241f4cb06","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170404.tgz","integrity":"sha512-LwV0p79DeOIPG1Ry91NeucaRMsns+IlRv3CO/Osk8dZwfGgy1mEcVuuFtRXoaDK5ZlyFKZaGtBkfm/bqtfrXqQ==","signatures":[{"sig":"MEUCIHGM4u3x8uFeo8CbB0ugfbwItw7aykTXtO5lFWZSUroHAiEAyX7DRF0tW3pbvr2Cgp+9ZuNulFY9vhG9sRLhXVMmnno=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"73069bb7fef52d5ad4d9c29dbc1d97c241f4cb06","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"7de3539b49623f6c6967744664e143d9671b9d60","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170404.tgz_1491286449522_0.11321780132129788","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170405":{"name":"typescript","version":"2.3.0-dev.20170405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170405","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0455b48e702e6f4a10c2250429476edd421931cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170405.tgz","integrity":"sha512-C6OtuJkIbgOE4vvHbztZqXEAoSwes0Bw4iOlz1R+9K1CD3FxrJ+4aBO1L9bCLhhQ4yqeQxlQ3kKz6To+GkzR7w==","signatures":[{"sig":"MEUCIQDbCnKjTtrL7PdNRLFSchzKBv6Lv76pggMx4tTYtk7ikgIgMB9lna2i8orTV/OV/vsFR2tajQOs/R9ouXv/wfhtyJ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0455b48e702e6f4a10c2250429476edd421931cc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"41fb0aaf6cfe77613876908716e7291518b430df","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170405.tgz_1491372865328_0.5709740710444748","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170406":{"name":"typescript","version":"2.3.0-dev.20170406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170406","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c3aad80489259749c1d0903e420f3d8464e02b01","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170406.tgz","integrity":"sha512-fe0keoCphXE3LNOkGNQGt8lDFxDyzhBHIKHtlzAus8mLxEBptZzN7aRqcnZVqrPK3KZgqI5+xBp5Tc+YUAWjug==","signatures":[{"sig":"MEUCIQDoZNS7UEUUvccmk0kCf+rlbljJWHJ0r0SDim70e5NCngIgZJPNdjflBWw8doPoFwkC9jCc+vmsvYssiflC3GaaKcM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c3aad80489259749c1d0903e420f3d8464e02b01","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"dce7fca83d6bbf0bf72fd0a4237ad152599bd2f7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170406.tgz_1491459261498_0.19047211855649948","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170407":{"name":"typescript","version":"2.3.0-dev.20170407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170407","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a28c41ab3633eb31ee8d090f7a961947b77c46cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170407.tgz","integrity":"sha512-tnmoDij1DO0j1+lKUY4A4KQ6Q4JGTr8IeSGQisf2fulgctSGkB0R+vV+VJ3dl7ouMlu3uWmbj/Tki4zo1Mxqag==","signatures":[{"sig":"MEUCIQD8nSJI8CpZX+OKWLFQ6lvTHfpyKErgALXHcUKH8wQkHQIgKXrFxW9AYbE+caT5AOCbR5xHRz5cyK0CrEOm0zIpvMU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a28c41ab3633eb31ee8d090f7a961947b77c46cc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"3029b8fe38edde707c016a99b2edfa5b08a6e852","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170407.tgz_1491545665115_0.7655672621913254","host":"packages-18-east.internal.npmjs.com"}},"2.3.0":{"name":"typescript","version":"2.3.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2e63e09284392bc8158a2444c33e2093795c0418","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0.tgz","integrity":"sha512-41KiJx7Kr9NPbDyVA6rG2IZy85YQlQal0q4/pe5Q6CzFMOsQwTal4+N0nwZ3AdQ7Uz65L21a+1TcLrzFdiDypw==","signatures":[{"sig":"MEUCIQDJpPg2mQi39wrt39cMaoEzfrbQLD1WwC6HWaAcN+7LYQIgFhqROWfciRBgsJOU1NmA+rw0pp4/c+AJdmIVDGDGyoY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2e63e09284392bc8158a2444c33e2093795c0418","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"154d25c5fa2e6c7add01b1ebabe40dd31369a65a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0.tgz_1491840208657_0.6297718936111778","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170411":{"name":"typescript","version":"2.3.0-dev.20170411","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170411","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cc3ccf87dc0f4c4004a58efd38021fcef68ffb85","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170411.tgz","integrity":"sha512-Kz1UUybimOzb5iReNOETRcBJQZBicN+IfRQeVkc94cGsuHC8zEfERf2bDOTdNN3xiusQr+okmB55IoZY7qWVfw==","signatures":[{"sig":"MEUCIQCoHoMdEtACXyu3oPk4kcuY2vH0PF514vIpKSrUqx38OwIgAnsgktrlIYF20IWUdZl7FPqeqwiFrIeg81LG90yR3KQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"cc3ccf87dc0f4c4004a58efd38021fcef68ffb85","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2ca90b7eb64d208becb0ed1dbae0b625ab21ae4f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170411.tgz_1491891267807_0.1916531950701028","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170412":{"name":"typescript","version":"2.3.0-dev.20170412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170412","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d99df60ea6ebaac5e3114c157914c4090917f882","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170412.tgz","integrity":"sha512-3OIo30P2xfYC3USm1aqkNVfOt0AFkDAv6HyPPugQt8gO0PkeSZdVAAzOh7LaOA/2JiofmUnPPNcoioQk6hLfCA==","signatures":[{"sig":"MEQCIFdLERZn6lYudPjeyrokRkRzaaB0DhDfulamAUxGQWRKAiAW65UyTXzKEYdyJERxGIbJX4LxTkFk2vsafqNXb6sF2A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d99df60ea6ebaac5e3114c157914c4090917f882","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"397efbde56ea8cf41672cd7844221d6a4aaf0564","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170412.tgz_1491977647747_0.8821107533294708","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170413":{"name":"typescript","version":"2.3.0-dev.20170413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170413","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0e7c299b6422ffbfe3923019bbde44f9a4a6a65b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170413.tgz","integrity":"sha512-e+CB6bfadM9Ka/d2mUICZji1lwqFTnxowXGzgOyvkwx4w2sCnQdYjUkQAgoH8tSrpaMwsz3pTXtMLht2GBT1GQ==","signatures":[{"sig":"MEQCIBP4ZTDRumiJHQvf/58pa+S2Q7xYukYbCvVHI4PSnm1RAiAC0COMe2qa8HHMS0eOkboZRZ7OrHq37602ut6XOSlAEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0e7c299b6422ffbfe3923019bbde44f9a4a6a65b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"014845a6378916f08d6433b817cc1b250d1695c7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170413.tgz_1492063997156_0.1166076275985688","host":"packages-18-east.internal.npmjs.com"}},"2.3.1-insiders.20170413":{"name":"typescript","version":"2.3.1-insiders.20170413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.1-insiders.20170413","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c7d00781a218367662441f78a96c365bdad578f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.1-insiders.20170413.tgz","integrity":"sha512-nhpZgB5uC1kQJtmKTI40hMDdPY/w9vPLk/+qYUloWIU42Mg6Imt9CANTQwCce7H86F099EsXGhLnxdZmiGbtTw==","signatures":[{"sig":"MEYCIQDckAC2k/v0etX/PiPTrHnPI5YlFpi3oIDxDHsdZkkKSgIhANezBjW2nOsagApLkQ43bLMUaYFGJEnWkhjsop2zPSmM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c7d00781a218367662441f78a96c365bdad578f6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"339d2eed8e67a61b7e8fd8113f67d7f6fbb75f4a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.1-insiders.20170413.tgz_1492123502109_0.158065645955503","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170414":{"name":"typescript","version":"2.3.0-dev.20170414","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170414","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"21199d254e3436215c1cefc60fc5bd266de573ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170414.tgz","integrity":"sha512-2leXfuvAKr2hJsoWc/1B6DTk+p1lGvbYkAaVvJqWSDuYTjB7TUckbz6kDmYrFIFnTnZ1zD/xfTpG/G6NxB7rUg==","signatures":[{"sig":"MEQCIAWJxQ3W0/IHroyufM+X5/211lhS1pw1It0HlQCE3X45AiAcq3CcuCNtaqn5+W4XUTk4KTvBZHYWeoaAxEa2GQCLYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"21199d254e3436215c1cefc60fc5bd266de573ce","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d129199f4115229ca5e53d6624f2c8e9b02ce821","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170414.tgz_1492150395837_0.8312366106547415","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170415":{"name":"typescript","version":"2.3.0-dev.20170415","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170415","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7db31dbf8004a7476af5ef51e5a427811be25424","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170415.tgz","integrity":"sha512-CymAA/DBV0IAYE2M9h+PHd3q0Zv4nX4i6CCrTWhzWZD17x+GyY0OX66ASSYGz4bcorXRg8ZOGdT7qA8++Md4Qw==","signatures":[{"sig":"MEUCIQChmW5PNaLc/pC4tUfICbAouqgE2kalGjeQQ+SgpIO1EQIgLV4nZlIyv5AIr65qPmKDGW74ihciw1TgUgVaww2iWq4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7db31dbf8004a7476af5ef51e5a427811be25424","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170415.tgz_1492236804080_0.1122789210639894","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170416":{"name":"typescript","version":"2.3.0-dev.20170416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170416","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a7fd546221aa85ca10c2fca0ec725989179fa7ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170416.tgz","integrity":"sha512-TsvaEWy6KB4J6LnSiAdWT3r9I25JBrZm8deTrmiWHI+tzwoDvUtVDvLXgnIzHIWc1yjeEF4PXICYIbQfJ32Xzw==","signatures":[{"sig":"MEMCH0yQkE/qYbI43engiwSFz+LdpTi6EE2OvVT0RRg8qUECIFJYqdIXEVdEQozQYPsiv4UP7ImiV1zIBvMZlrarWlrA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a7fd546221aa85ca10c2fca0ec725989179fa7ce","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170416.tgz_1492323201927_0.9220518998336047","host":"packages-18-east.internal.npmjs.com"}},"2.3.1-insiders.20170416":{"name":"typescript","version":"2.3.1-insiders.20170416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.1-insiders.20170416","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0725a3eceddf23c0ff8ea8057d7979f1c1c25cec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.1-insiders.20170416.tgz","integrity":"sha512-seuPfDkRckGd3pCU2K4c0hqBYHi+8sGFiV+ugRLD0toE3Pb/V6VL/pjfe0AxLR71xln24YHCMOBdkRe31m/kRg==","signatures":[{"sig":"MEYCIQDrq38VMXiilsw9yolXoQhY1QJv4psYRN+vcjLmVEDdEgIhAIT9QB/8BOBQzXFtEofjr1YpAv4d6AXDYrKOZxuNwC3Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0725a3eceddf23c0ff8ea8057d7979f1c1c25cec","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"54b057658373c04a421d02ec84b5008a0f32ff9d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.1-insiders.20170416.tgz_1492386460365_0.5193431144580245","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170417":{"name":"typescript","version":"2.3.0-dev.20170417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170417","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3c7c3eff1f74ca57f22ee65bd33cda7694f6de05","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170417.tgz","integrity":"sha512-M39BrKdarvfaLX7tSvVXHsqKqfHWJhcauAFoewx44zBx8qlJjVUmdx2SfLcMORnSMLVXLVFIw0Tib5IweuPuVA==","signatures":[{"sig":"MEUCIEzX43yzn0c1JntqUN2X0gPrdz5jjJsRlVm9VaPU27TNAiEAzCp8FVElNQd/KyIV6HV3UmKltbUnf3KN4v09bIoHK+8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3c7c3eff1f74ca57f22ee65bd33cda7694f6de05","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"af64ef8b67ba18b0a9d582aa1187f2681f1d8a51","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170417.tgz_1492409618275_0.6164822389837354","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170418":{"name":"typescript","version":"2.3.0-dev.20170418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170418","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e969d9342c5c1efb2e89d0712e583c512a84fc53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170418.tgz","integrity":"sha512-TtyMSn8UV8ikTKgdxeLp+a757Iteo4RqHr1KVAqsUICZW/f1sbfDy4M4911rToczYysbDZP+U8KJwjAT5//enw==","signatures":[{"sig":"MEUCIQDkh0ChNPWsAks925Na4hxWo9eXnziPp7VVkxSYtFHq8AIgJ/N8IUwNmu7FDrjJkGpwXcpWiOak8zdkEc0ir1b7gEA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e969d9342c5c1efb2e89d0712e583c512a84fc53","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b038d28ed4490924f115b2268086313f67f9d5a5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170418.tgz_1492496047014_0.9742859634570777","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170419":{"name":"typescript","version":"2.3.0-dev.20170419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170419","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f713796c4462cca1478d073a36036fdbdcc3175c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170419.tgz","integrity":"sha512-hyemCM9q82u9t+RVa8tjM2XjEurgIOog80/8A2iYWXfwg1oJslK41Jb92usCcqNENWGPGRIlJAsaqB79BbWGVg==","signatures":[{"sig":"MEYCIQC0IJyNZv8FEbjIEuh0iujWIHQyf8asA0Kq/YWn0ETBgwIhALCcYk7e4AIE4SlX7pDLYoInWy4sDbHsivJP8xOtUal8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f713796c4462cca1478d073a36036fdbdcc3175c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"2e43c869b43b40c43eafb8926bee7e32d018cc38","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170419.tgz_1492582437922_0.9829002011101693","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170420":{"name":"typescript","version":"2.3.0-dev.20170420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170420","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"19405cc5fea53da3fb4b8212c67dfbc6e7ff2d1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170420.tgz","integrity":"sha512-7D3AUM2tYtO86oaQc9cgtkrYb6iN4AlkBXvid98MV4luaSjFwaXeI133xbGn831YfHNGOtxhNzOlOlA5FuSlXg==","signatures":[{"sig":"MEYCIQDQQ5boJgeeXwdzDMXjns3WTo6VvMPrQvWRfbppaL68FQIhAKal7U+JiZg72p1QZ6kjlAsrONssAKou0cst2iwEL9dm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"19405cc5fea53da3fb4b8212c67dfbc6e7ff2d1b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b267492127fcc93b8a11c66991ee32581cc998f5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170420.tgz_1492668892628_0.037822855869308114","host":"packages-18-east.internal.npmjs.com"}},"2.3.1-insiders.20170420":{"name":"typescript","version":"2.3.1-insiders.20170420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.1-insiders.20170420","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bdbed7b2ba60b4cad94685cdbcf28983f376ea14","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.1-insiders.20170420.tgz","integrity":"sha512-HjoVceRL6Y0R9uQgurNzMjZnR4lHsnoe/5QBP1dgDc+eLH8MVwmy7VHsaSyd95zNYIAzA5lz646rIIvsdcbcyg==","signatures":[{"sig":"MEYCIQDRKhdVw4XRCKA5W13gWGk1ibEjaCHVppg33b7ZlUvEbQIhAP2vOvpDzEfHvuxRem1Vn1SNU5MrSzROJZwbmnCdCM5s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bdbed7b2ba60b4cad94685cdbcf28983f376ea14","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"54b5635d4e01f9fbe5946e1bcadc264d5b9b0826","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.1-insiders.20170420.tgz_1492727634757_0.7956692227162421","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170421":{"name":"typescript","version":"2.3.0-dev.20170421","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170421","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fe00e5e7362e3ab359e89822b41931557424937a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170421.tgz","integrity":"sha512-0Vb4N+ippjjAmkjcVkaEE2BfBhjKSRXkKv588ofQuxr3VIPtgLzCh0TNFIiJTnVk5a3TLku+u9utHbsEBLPX9A==","signatures":[{"sig":"MEQCIGyqWQwQFAxnhw+1DUb6V7k0E6pF7IW/cJ2/IrKg+1qUAiA6CNdtJw9z4noQ8CrIH0pXmmT467bUhpuji6ZFoYQmYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fe00e5e7362e3ab359e89822b41931557424937a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8534b430beff7f122091d19d2536b5cc798860ce","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170421.tgz_1492755278448_0.1750998159404844","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170422":{"name":"typescript","version":"2.3.0-dev.20170422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170422","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d510155a0672d13bff6a327edce13f0697ba3858","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170422.tgz","integrity":"sha512-mVBUJYc3z06FOFGJ30cs7+FfG0fAaQ4dECunNHQErtGPAY1SVua619zk2no9MhLuT55w3MAoPiPk+SYe2AsyAw==","signatures":[{"sig":"MEUCIAUuIgiU0365F3fnMwO3POS9pNDKCKU8rN+u1SdNCZr9AiEA+DlJfRSnNMjpYFzf8kRFEDQp5djFg1o2Xsbeu4g7cGo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d510155a0672d13bff6a327edce13f0697ba3858","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170422.tgz_1492841571700_0.3049152474850416","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170423":{"name":"typescript","version":"2.3.0-dev.20170423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170423","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c65b643314d2e7aa607718f3d59da2059f01fabe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170423.tgz","integrity":"sha512-13bcKQ9D+R0MckFnx49aJHBagpWKoHWlCcFmfysp2Z78yC5UhdWuNEQ87/i6TpLfefnral2JV5cFkR59ZwT6nQ==","signatures":[{"sig":"MEYCIQCBE3+Ve92xFU+u9r2fL8aqgtOnrcB2C6ghZlxCd2GnzQIhALFMilM+70y+TqywB1Ta/NqMjkv4u5VwERdBXvhhRo2C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c65b643314d2e7aa607718f3d59da2059f01fabe","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170423.tgz_1492928040947_0.13977562775835395","host":"packages-12-west.internal.npmjs.com"}},"2.3.0-dev.20170424":{"name":"typescript","version":"2.3.0-dev.20170424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170424","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aecc55e12cf4d27abab9387eab48b8d98ebb002a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170424.tgz","integrity":"sha512-CzuRYA2/sztQo5HdkB9tBvy52w+ppO7n+IhjSp5gkyB2ewKMFcBj/0wkfS9k8/Bq0nUDeFHvGL4y+H96qxlB9Q==","signatures":[{"sig":"MEYCIQDHkphR/lSO6EsUpuZAFI0VdSkWsfswqpnKOO9lLwTzGQIhAPVWyHyKgpvxoaPDoF6S0fMLtLD/lwzUcTPI59O4dYbL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aecc55e12cf4d27abab9387eab48b8d98ebb002a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a1a2006074a01ca0b75b08294377cc52302e3e71","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170424.tgz_1493014412551_0.7090106357354671","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170425":{"name":"typescript","version":"2.3.0-dev.20170425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170425","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"75bb5c53d12760c02603bf1edea6dc451a725c26","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170425.tgz","integrity":"sha512-cWwbZ8jLhrXhltOu9Kza5UPc9TUrDGmbVNqVzbXBonA/tqKYK7w5nfF/0mNcIX/WJkxA7oKMSR3mrwaVgoOBxg==","signatures":[{"sig":"MEUCIQC0X2SUdGJw15S+ZVvb6iy44XEp8bpl336GkB76387BWAIgDgXo4jCyG3oa9pRYm8RjEmt7DTQ1LoOerWJvUra0mjc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"75bb5c53d12760c02603bf1edea6dc451a725c26","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"da5fd936e6db8de4aafe3399761a58c390189d68","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170425.tgz_1493100824053_0.011530429823324084","host":"packages-18-east.internal.npmjs.com"}},"2.3.1-insiders.20170425":{"name":"typescript","version":"2.3.1-insiders.20170425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.1-insiders.20170425","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"edb0eb21c73492f6ac5bee6abd50858b77926160","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.1-insiders.20170425.tgz","integrity":"sha512-p0cD9sd0/bEjdSO1PeX3SZ2WsSBFTQNiMqPqxuqSCSg5BQ/ZefuHC5tpQjlo6HoG2JIhd3hIhcEKzXtLbCqHFg==","signatures":[{"sig":"MEQCIA+4YrsE9XKqjv6E9whSzZXwjidjNeC5llWd6HPBquAUAiBZ1w7LEkmzsM0lxhcfysyRYxuyR9kLEJj7RD93Oybzdg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"edb0eb21c73492f6ac5bee6abd50858b77926160","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8a85f4a61ea200ffdd35113b0fca77a901c5be84","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.1-insiders.20170425.tgz_1493151536666_0.8746582888998091","host":"packages-12-west.internal.npmjs.com"}},"2.3.1-insiders.20170425.1":{"name":"typescript","version":"2.3.1-insiders.20170425.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.1-insiders.20170425.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fd44d9c0d2487026bdf694042a27cfa2570c13cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.1-insiders.20170425.1.tgz","integrity":"sha512-WzYMx5XuuqD4L02p+qmqb9Wzkn40TEtjm1/O/zENm3OGrpypFMQmzagIzBpOwopZDBd2KaAjiX29FjHUyuXBuQ==","signatures":[{"sig":"MEUCIDf60nTDzTgcT0u2V638qkhrZNn1GcprmirQDjoRTmIwAiEA75NGIIk1Dd9Ae30fAEhVLuTzJBL3nVNf6mqK4VZCyV0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fd44d9c0d2487026bdf694042a27cfa2570c13cc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"47e55697788261526237d694d8bdc11a99b80f37","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.1-insiders.20170425.1.tgz_1493161017864_0.9299850440584123","host":"packages-18-east.internal.npmjs.com"}},"2.3.0-dev.20170426":{"name":"typescript","version":"2.3.0-dev.20170426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.0-dev.20170426","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d0cb8b4263dfe65363f2b2c4b6ab12182b586e68","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.0-dev.20170426.tgz","integrity":"sha512-mqoVQ04HVC2kqYFvc8ilbSiUsrGZtdH9zQMvOVioJOU+SKdniO3DmpRJT9R6C/AmOCqw3SGXOV8B0rCm2xM3kw==","signatures":[{"sig":"MEYCIQCu8uFaoiafJarXihUNF4eY3CU92MibVd7u8rzhP8mcUQIhAOkSZYK8wZy6ZowsT9/XS/+UZ9Ui6Yans6WSDOYNjXXs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"d0cb8b4263dfe65363f2b2c4b6ab12182b586e68","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"6756e3e44c3b21d021a7542b63f2de84b65695c4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.0-dev.20170426.tgz_1493187219539_0.7928366877604276","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170427":{"name":"typescript","version":"2.4.0-dev.20170427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170427","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"be25af61b8fb909b0c9e694d85e2efd0ad490da1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170427.tgz","integrity":"sha512-EAlqI8FPUPzCbm9yMoNaraPykn/3OS9udQ9uKXdB26daGpM1fofwL7AozBzWS9guGVxlSqGF+xazs5M2bMAJdA==","signatures":[{"sig":"MEYCIQD8ph42VhcDYSIdpResGgbXKsTyFPaiRhEsKeFIgx1KUgIhAIWYUYgQgMySxaZU1+fNEMLFwpHd33KHfAv+B8wO6+Bi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"be25af61b8fb909b0c9e694d85e2efd0ad490da1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"441d76206578db4069c030b173ae660137532764","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170427.tgz_1493273658002_0.3647042296361178","host":"packages-18-east.internal.npmjs.com"}},"2.3.1":{"name":"typescript","version":"2.3.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e3361fb395c6c3f9c69faeeabc9503f8bdecaea1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.1.tgz","integrity":"sha512-8yv0VYy+SqEf5m1+atgtLat4lwKGHZRnINqSNt5wamBNSUdLMSW+ckYh5dMxwtI2n0nMEwgbeVVBm7xT3h1kEA==","signatures":[{"sig":"MEUCIB6wTp1P2Fc77W1eIm2oQ3cXY+tvwTCj6SYE4flGKb1VAiEAsOE0rESfdD9HFlzkVkKxGAlQ+2L5OBcqTbmX36N15C4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e3361fb395c6c3f9c69faeeabc9503f8bdecaea1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"47e55697788261526237d694d8bdc11a99b80f37","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.1.tgz_1493308925365_0.5768524957820773","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170428":{"name":"typescript","version":"2.4.0-dev.20170428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170428","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b522f4006066f580652f520362b92f76e111d447","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170428.tgz","integrity":"sha512-E7J6k4KMsKaTI3M71Ymxj4hU8bJSZrB0IE+Xftf/eVPiyfnfWBOlYrg6zsNyWNEmYMtcjs7CGtRxmy3GoPb3SA==","signatures":[{"sig":"MEUCIQDYwiX63Sa36qMb/GxpF1XL9Mwzalnoh5l2cIMbDta8DwIgLbbuUvc6tRM34wIDGjJ4F3HgTrjHP7opg5UIJTFkMfU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b522f4006066f580652f520362b92f76e111d447","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"3d23b9c15a2c2f234696fb025df3ca40de4f3d20","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170428.tgz_1493360015510_0.3306410457007587","host":"packages-12-west.internal.npmjs.com"}},"2.3.2":{"name":"typescript","version":"2.3.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f0f045e196f69a72f06b25fd3bd39d01c3ce9984","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.2.tgz","integrity":"sha512-k33X5cB289um3zfG9TvmvyqnniutYr9pSLq1hvIND7eW8sEhuzJQAG9JYis5TZOtf+JAKJ+gR6F/vHq/KYD3eQ==","signatures":[{"sig":"MEYCIQCO43PCvnrdycBAaYD5Vj5yQTbR0KbteWaQaY18gjLgdQIhALS/DTYc2ZRbmVuCiPjkjXK0zbgOWBYj40261vjMl8aY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f0f045e196f69a72f06b25fd3bd39d01c3ce9984","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d1a202dca63cf747791048e1ed4b8ffe0efbf601","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.2.tgz_1493417999844_0.5394609735812992","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170429":{"name":"typescript","version":"2.4.0-dev.20170429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170429","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f37349f882a02d230ddca8c00a7ae90d3e6494d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170429.tgz","integrity":"sha512-QbNu+Ez5v/O3U0yT0Zc64BKCYcKidqf5Qje7sF38qjHUZlApoM7d100mD1UTAK2ARnLkRBDRcW6Q0UC5VjpQWg==","signatures":[{"sig":"MEUCIBCant1+V9BmKszxoha51p0TGIwJCmKhPhgo2qHuIWvcAiEAqecjnfKhRZmsPu6PpC6cYQRb5LpKcWabBrMY55IaRTI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f37349f882a02d230ddca8c00a7ae90d3e6494d1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170429.tgz_1493446433360_0.4333729138597846","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170430":{"name":"typescript","version":"2.4.0-dev.20170430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170430","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f3a077c42ae6b39e136b194aa379e5a0c0504d97","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170430.tgz","integrity":"sha512-QqtuKM2D1gD3FIoSGFxw2hNjENLqbEswJ3Z1Up5JtFNsWr7NtmMUn2aLhSKPKD1A/RAW86aFW00ozQyystIjTg==","signatures":[{"sig":"MEUCIGlhZz3ozSlxXqEPjvz3hNXCG6eaxE9VZvoRPiQCPp0wAiEAlWn/PBnMQg+Qy2yzctAXC5PDDlEWmdw9dgdMAB2pU9Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f3a077c42ae6b39e136b194aa379e5a0c0504d97","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170430.tgz_1493532833741_0.16693749744445086","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170501":{"name":"typescript","version":"2.4.0-dev.20170501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170501","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"985f875d2576282fa31745fd9a37aca4f35a55a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170501.tgz","integrity":"sha512-dngMOBSsK8Pl3IDLeDEq9pXmYA80hWmBQuwNlD2nFxqDgHewexZDBJbiNcoyTTyG6IxL2Ro5T4m4F/KkvdaDpg==","signatures":[{"sig":"MEYCIQC9BlCpMZ96y6IpvjGDLQOb5t54qAANG05ZvTbsDAs9swIhAP6svvs+Q+fDNDweTlPIABUY0N6jTmJHFZOSgCIe+QHt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"985f875d2576282fa31745fd9a37aca4f35a55a3","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"7080c4155b2c6cc69c5dae3f312d720d434da3a3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170501.tgz_1493619255846_0.21991519257426262","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170502":{"name":"typescript","version":"2.4.0-dev.20170502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170502","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"330a18e538dc07c74ad20c1175409447b6f6ea4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170502.tgz","integrity":"sha512-2MevDcL+4ewI2K/T3smpua2BJ+kWpIRmr6tdJhw6sbUvz+wc7jeCea8EEOXvvk2U+pDcQz33FaGaLMp+kaYcPw==","signatures":[{"sig":"MEUCIFTX30UqMQGK5KVtGOeoQaLKw63cNsT89ez0zfywdil3AiEArq7o1F+bxvaN6HiTOzd1g7AtEWVwYLIvD0s7I97PB90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"330a18e538dc07c74ad20c1175409447b6f6ea4a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"1db4f96fd14fc3de5ae3704e925afd6474cfb8f5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170502.tgz_1493705647172_0.7484273998998106","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170503":{"name":"typescript","version":"2.4.0-dev.20170503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170503","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9d570bd4fe62fb974fe1a0985ba1eec266b3282e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170503.tgz","integrity":"sha512-m1CUKtdLjzIf6mMtp+d7vOKZkFu40kMFXw5oSoBxPi020m2WHf2Ducd8qSfshQvQMy/0MfbaOfW0/Hu9Zx1n5A==","signatures":[{"sig":"MEUCIA1CrG1HaOdraZYU0jYm6+QNkVeMZxQTGikhITWX9XWcAiEAumtO2KHrZBJFuvGDgIybWusD12vqkKbMgYt3Yc7tROM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9d570bd4fe62fb974fe1a0985ba1eec266b3282e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"78df75426f95086dbaa5f10f296ba249c81ce854","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170503.tgz_1493792014937_0.27708687516860664","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170504":{"name":"typescript","version":"2.4.0-dev.20170504","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170504","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"339cd61ac33be86b03d26f1f2a030d1634e2d617","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170504.tgz","integrity":"sha512-HrO9kEsvA8AcaDOiNeHX8YnEtBCOi+j6CIexFWcI911+HIP9hQ8QzbvBIhgQ6iXymKB5YOl+NRPo2PtGQPwoiA==","signatures":[{"sig":"MEUCIQDemGL3CPWD1IpXLFY5Zfu0uGE/dXnh38Ac+1R73E/KzAIgfS7ENibzgXbSqCLqfu3bFYTb7E/X/rx6ih3SEnsIrUw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"339cd61ac33be86b03d26f1f2a030d1634e2d617","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"e1c97e104fd555547bf9a5243bfdd2178fba6f06","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170504.tgz_1493878447814_0.8768008411861956","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170505":{"name":"typescript","version":"2.4.0-dev.20170505","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170505","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0034ab8d60ef1648362349b22cd1060e1cf3c125","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170505.tgz","integrity":"sha512-84qaRsF92veVTZavTnKDvoZkpJhdZGsrFLFA4yWeFwGPO4bZAVUGOGlY+GrakTZOLmV3hK+CzmKaI8mnZXeBtQ==","signatures":[{"sig":"MEYCIQDxS1GiGrw1vkV9poRXnHblFAkhRLu1LAwHxzsNzLRAWwIhAO87kZGN8B4y4uuWtuxX8g3Xp09MRbQ3C7ZjBUG7IMz9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0034ab8d60ef1648362349b22cd1060e1cf3c125","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"96aca4c7d090ed0842bc464c3ab683400f9679ef","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170505.tgz_1493964844818_0.6065928242169321","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170506":{"name":"typescript","version":"2.4.0-dev.20170506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170506","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5be7245d27dde43b1e1c9a18cb7c88890a41499c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170506.tgz","integrity":"sha512-O/gHE2X/MupArhJxzP9ouP10QxQK97LGiTsR8a/4DvCZuZXLUphjmAiQEuRPpi1cqSSA6cGjmYiKiF4MduX9rA==","signatures":[{"sig":"MEQCIGRPyYkwTBYz5RHNqXeqj+HfG+kRvldryrUXFCoQC7fqAiAMS78wa/VbrczdSqo09wYmersRKv37FZuZso4vb9D8KA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5be7245d27dde43b1e1c9a18cb7c88890a41499c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"83da3268ed6b6a0a316dcc76be9c5f4fa03e6421","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170506.tgz_1494051262617_0.6603467997629195","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170507":{"name":"typescript","version":"2.4.0-dev.20170507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170507","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f0ab1103e60ac6a951f3463cee707d902da489e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170507.tgz","integrity":"sha512-21b7DsOzjDNpqnaXLSxIfAg4BRN+6QHxlO8Wnpug2NZD1m5A5h6JCuYttvIsgc6bwRtrUrC/2KzYUesRMapuQw==","signatures":[{"sig":"MEQCICeKnVALQm5zCDa0adNDxAFwPm86pa+cboqomG+cV+iEAiAylfFqnWFRgZ01yyBLf2iWILjgxiOIy3gBVirxJMHUQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f0ab1103e60ac6a951f3463cee707d902da489e4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"83da3268ed6b6a0a316dcc76be9c5f4fa03e6421","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170507.tgz_1494137639689_0.22025651903823018","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170508":{"name":"typescript","version":"2.4.0-dev.20170508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170508","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"66c776281eaf64a1ded0291cd66d695ee39cbcea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170508.tgz","integrity":"sha512-c9EYz0aK/mk41cHBj2eE5GIfzDvvxdeARs47NNxADf5UDHDcOR6TkyNgXTQn4OKOg8ynkv60hg6amJZzrfCx7Q==","signatures":[{"sig":"MEUCIQDYf875V5kfvFFf3OOW1b0kPkPD9jKl88KW/o44MP5kpgIgRB6Axo+iRNCayPEAttQHJu8DCM3lBMKMkjGW6Aj89OQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"66c776281eaf64a1ded0291cd66d695ee39cbcea","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"c39a6835048d68977076e558d78653a5226d07af","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170508.tgz_1494224027126_0.15943677094765007","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170509":{"name":"typescript","version":"2.4.0-dev.20170509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170509","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"684374cfe46cff71bff67bf18e33de28a62d879d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170509.tgz","integrity":"sha512-TklEaRGmXglWHMDP5whAwWBE4kOhK8JVDxKhkm/d0hHfSux7vcIjKYE+ueSRfS4C7d7oLpnHJwyMbjmUXT60YA==","signatures":[{"sig":"MEYCIQDiLAEkoUD5WmyUJNHK1e96ss5fRDzrRyJ0Ty12jdG2KAIhAI4q5kuWKDIrrun6ZvmQ88Z82KFcvgU+n6s8AqS76LqW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"684374cfe46cff71bff67bf18e33de28a62d879d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"cb723cf1dcf6a595f3777080352fae0ddac10746","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170509.tgz_1494310427588_0.7747447807341814","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170510":{"name":"typescript","version":"2.4.0-dev.20170510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170510","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e4db6af2e02ac01972e6afe3ae3ab51a94bb0ea1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170510.tgz","integrity":"sha512-DeNCdgh4NCi+uMgG9AT7H6vBH8T57wSjdJW970AUU1g70qW9J3AJUV6vng8CtcAp9bzfbdbY/CB1gRG5agUlQw==","signatures":[{"sig":"MEQCIHrd6yJtN38bL4Twl8ll9tORVu4d1DEzGd+dfblm3/xvAiAutD9uQOmaEH8BqeHqqUfCpcTq5VAtNxgMtxKil+Y8VQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e4db6af2e02ac01972e6afe3ae3ab51a94bb0ea1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"17375989359a7392e468668632661fee4302d1a6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170510.tgz_1494396887962_0.9603664940223098","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170511":{"name":"typescript","version":"2.4.0-dev.20170511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170511","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dd23bd45a7cd8d53fa9102d966a657bbf7e30a60","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170511.tgz","integrity":"sha512-ahnU0Wq79YYDc7W8hpr0cjmchy5y64rv3URndzvz73TJZKW3QPjkrSnxT9Cfog5NXhl8FvNmH8HFqkBcUZopAg==","signatures":[{"sig":"MEUCIFMZY/gFuOYdxgnENQjpzD3GYyaoMDmjOoVOw2piRpfkAiEA8T5xG93onrNHb5irA+3F47myKFYN7HBM26ER0PTQJsI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"dd23bd45a7cd8d53fa9102d966a657bbf7e30a60","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"066bb16173a9f07197f9d205d56763645c31080f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170511.tgz_1494483246812_0.7860567506868392","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170512":{"name":"typescript","version":"2.4.0-dev.20170512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170512","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"95b3c58c0f93123060f15a3bcba749f2e153fd9e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170512.tgz","integrity":"sha512-AHlBndw8TScdZ0oA3rmKZNVX2+9Te2xzsDcoZ7aaCIwHSksaKnF8l5NKXfPcFaI4WU3gyjhRCwUjhnaC0f3U/w==","signatures":[{"sig":"MEUCIQD0coqASG+EDJkaBGmc4/Mnb7DnJrmT4ayspRqpZt5JvAIgES8rWOej2FW4JJCUSpWbgdy/hrdfG5/rGNRaAsqnKyQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"95b3c58c0f93123060f15a3bcba749f2e153fd9e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a12ec1af438d2769064442dfb675c8eef2386520","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170512.tgz_1494569680836_0.2586050610989332","host":"packages-12-west.internal.npmjs.com"}},"2.3.3-insiders.20170512":{"name":"typescript","version":"2.3.3-insiders.20170512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.3-insiders.20170512","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6125088311f1b7f9ff6ba73e0b5380a6c85dd2ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.3-insiders.20170512.tgz","integrity":"sha512-GQqCvzp8sB4gAyM5J46BF2RisyjPlaAH9+RYh6kE5lL2hT2VWlcXcohYSi2Bqt+gBRM3hjOeg50BjAQgOwxG4w==","signatures":[{"sig":"MEUCIQDpcgK2+fRU5uOOtFmv2zXdNXcQaAOI8vMgId2JoWTLRwIgGabTi59Dl5Op4rK19R7e7q/WWdG+/1RMtYPY4VaP/g8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6125088311f1b7f9ff6ba73e0b5380a6c85dd2ce","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8534a5abfcc53c71b028ff6e3bc0ab2fbf3b98c8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.3-insiders.20170512.tgz_1494619465150_0.9099700697697699","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170513":{"name":"typescript","version":"2.4.0-dev.20170513","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170513","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8eada73ab61821276c2c760d99b2579b7f7c8605","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170513.tgz","integrity":"sha512-rGK5Bfbs6YECkypnysO9OV2hQyTrPgHcL72ii36DpiZjsnuQSwUoFOvhm9xkgO4X5PnnpkOMCf0AEaz+U+RyFA==","signatures":[{"sig":"MEUCIQCCAxTPqu1PbDbyUPKDKijlXjLmHHORWhkTDjWPlni/0QIgKctptxh++kwQH81emPp6cESx0gOkYT+K3V0XJmwHBos=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8eada73ab61821276c2c760d99b2579b7f7c8605","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170513.tgz_1494656036940_0.9074124610051513","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170514":{"name":"typescript","version":"2.4.0-dev.20170514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170514","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8d42a700d773711aa944fbb8b84d43ec42d2fe4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170514.tgz","integrity":"sha512-Cb+2AF33nqW8SYHbenfDQe+KcasFwbSE0iUpiLGaQzrKU6gJ4fOEFGSsetb9sdTcLhbtCFdNCBih5VvAz41IGw==","signatures":[{"sig":"MEUCIQCWBfkdO78xGhs/EqC66kiBuAZT3JAr/Sk48yaFAh0DLQIgHPsK4/F7vBCgepeAGXFIfPto64WjM0IMJtLIkdwLDYY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8d42a700d773711aa944fbb8b84d43ec42d2fe4a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170514.tgz_1494742467393_0.8630482391454279","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170515":{"name":"typescript","version":"2.4.0-dev.20170515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170515","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8c85659e0a86242094fdd1f0ba18df4dcfa991c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170515.tgz","integrity":"sha512-hwWqYr38NZyUJc2mOzpVUr3WOrJpQoBT+Gi/k3JsleWt/53CLCWkLTBqLqXbctBSlcocaOq3O1kNtxsVmliwpA==","signatures":[{"sig":"MEYCIQDIW5x4jRjzPpAfUj9v0pgghwKAiRGBThgzr2V5IJ3EsAIhAL0IBgahYL0E365mkCh4GSrownfSAng5ptA8CZ1VW3LK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"8c85659e0a86242094fdd1f0ba18df4dcfa991c2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"50e2912cd24d197c1303164eb88fc43c022605c2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170515.tgz_1494828816950_0.7814069930464029","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170516":{"name":"typescript","version":"2.4.0-dev.20170516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170516","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1c79263c784287083616fd7ea88cd74309a8a93e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170516.tgz","integrity":"sha512-T5zGyQBT+fqe+xtLxyFvPStMDHVUaJ6FplNBLGm5fhFOCuXYsiI/xmVbojxqbCexfAnOSkKaT0DgNrIlsv2NeQ==","signatures":[{"sig":"MEQCID2mLnjxvY4qDV1uYRZVmMkAZGlvjiKK4zs5mSyN5o77AiAPb6+pP9QzyiC/I+dnHYRRBIQkbQNZLteXOGsU2l3Lgw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1c79263c784287083616fd7ea88cd74309a8a93e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d51e467238db9229ca0620607067c083aee07cc3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170516.tgz_1494915368305_0.6557889515534043","host":"packages-18-east.internal.npmjs.com"}},"2.4.0-dev.20170517":{"name":"typescript","version":"2.4.0-dev.20170517","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170517","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9ffbd0637e461a2039d44cb6bdb58128a9cabf3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170517.tgz","integrity":"sha512-HIDx1xHt7EGoyAPwzIrrfSJt+qfBYjpBNeCyl9WxlEb6fX8YtKURS42ippYQO3UL4CcY0uo2p+D2rjuf0DRCKA==","signatures":[{"sig":"MEYCIQD1DUfwZ53GiGKLPswlsBTglQcXtoGK8ACEiTL1kp74ZgIhANsU0WSBjDjCt/r6WysUjURjhSpgxtGSyy96AW7D2cGM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9ffbd0637e461a2039d44cb6bdb58128a9cabf3c","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ebcbd8f82883a0d7af999c80e669af527f8c2b8b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170517.tgz_1495001686017_0.04209134099073708","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170518":{"name":"typescript","version":"2.4.0-dev.20170518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170518","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"304d0a8209836bd9e6e361ee287c6699ba8fd60f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170518.tgz","integrity":"sha512-fV/7bMilJhPgzE0EDWspJjNHy7FZAeo149u2Z/59ZdanOY1EEZ8iOYJXK/JXhVM7EoUTXgIdJMu09d6tezgd1Q==","signatures":[{"sig":"MEQCIHhUMlHDY+xlDCoCgB0fpPlSjSQBYANR0paPqfdZ7HYuAiB/3AMrKvOns+DtNxSQppyfAk+VOnCu+akDT42GyaQF3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"304d0a8209836bd9e6e361ee287c6699ba8fd60f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5e20c1ce11b7be240868fd14d350ea5f40f61a9c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170518.tgz_1495088104843_0.23690050467848778","host":"packages-12-west.internal.npmjs.com"}},"2.4.0-dev.20170519":{"name":"typescript","version":"2.4.0-dev.20170519","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170519","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f25373f3e9497843ee90718490f6a721b61ac857","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170519.tgz","integrity":"sha512-Ug5+01WUjoXAaXu78/Ipot9YWylNAdgDH8cjqJaZLDzA1KTFdXNcWpQp3aQpHZZYAVLBj0E03m7bDpaUDEwTZQ==","signatures":[{"sig":"MEYCIQDbOLMbm/hLM4vu6CooiACu5y5bNLO1DX0FHFji8hyAOAIhAMcwGbrHjQGSPTNRtvgeq/sLrTyiJ2zSyp35sN5xhuqc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f25373f3e9497843ee90718490f6a721b61ac857","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ada39c506d2c5e1d2feaea4b3e2f0fb414537955","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170519.tgz_1495174412134_0.9675724904518574","host":"packages-12-west.internal.npmjs.com"}},"2.3.3":{"name":"typescript","version":"2.3.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9639f3c3b40148e8ca97fe08a51dd1891bb6be22","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.3.tgz","integrity":"sha512-/AVo6DultTMR1uBhJV8Rzs4HKqfUR33dREsFnzP6BAFz1o/v9guifnoj3+xJIEHmxZlBjxuF48orvU1n6JmPlg==","signatures":[{"sig":"MEYCIQC5aRNqpPPIRM9GIadaoVsTKlWAC5MBJqFcNQe942MbbgIhAJxQNYJKdgUezheaRIRekht4Gb/brPIT7vtLaOqIXoU1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9639f3c3b40148e8ca97fe08a51dd1891bb6be22","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"e2cc27bec226eabaf52bd05d4ea3b44db115e463","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.3.tgz_1495486124091_0.5831131974700838","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170523":{"name":"typescript","version":"2.4.0-dev.20170523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170523","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6ca100fbd11ceeaab256232dbb960da8ec4c18b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170523.tgz","integrity":"sha512-PNecivsblf5WkG3n4R02yvzI3d8z5OqwM6v6DH0yAulve/aUlD+Ypn8ewi6Na3+ZUFS9DaPuji2GrkfM5UyNuQ==","signatures":[{"sig":"MEYCIQCP9Tt3x9QpMvabz/dkfN1tTYaz8M0dVQ6E7XC1IJ4zHAIhANMmWUgx9F/d5O4EMoKaldVsfHzj0l7TeOCmFo/w/3O5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6ca100fbd11ceeaab256232dbb960da8ec4c18b1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"567b10d71c0901b8e6127fb4987a018aad37da29","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170523.tgz_1495520070595_0.4316156262066215","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170524":{"name":"typescript","version":"2.4.0-dev.20170524","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170524","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f818a6ae2237ffa33aae7b8ed728c6b45c7566ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170524.tgz","integrity":"sha512-k6Nmph27rPALhoooVMACnx3SAT1Hp6RpL4pkbePlwPCeVjQf33rV5i/n8Qwis879+7W3IZxJ3OJcsH4EaALwFA==","signatures":[{"sig":"MEUCIFOH9yaDrEivb8Yp7VbI0l+rTg3IGDlFn2sWYAsIdo2GAiEApSf00L4Ov3dJEZe6Btt0YRxDElQSdrF5ZinT/TWofnc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f818a6ae2237ffa33aae7b8ed728c6b45c7566ce","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b4ee6b19aac530a208ea2d448b83fbcb61e0f4b7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170524.tgz_1495606458418_0.5361861803103238","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170525":{"name":"typescript","version":"2.4.0-dev.20170525","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170525","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e16405f2e73ea44e19cdab26c503e048bc2f33b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170525.tgz","integrity":"sha512-PQsii08ew9JFq0Bq1qxnEAsrl5WUW9xtiuaRNFAeuJ+nyT127N7cBeqQQXS4gOHxR5YytwcnBquYWyooVEBYpg==","signatures":[{"sig":"MEYCIQD4UFte3gOtWB71xUnX6niEUnFuzsdj/OSfw90XJK7lCQIhAMU3SLZh1xplYRs0OGc/wle0T5oqdsHS054dCvaEeVsn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e16405f2e73ea44e19cdab26c503e048bc2f33b1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ebbfca98479cf553cbb4f2483cb42749e0445706","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170525.tgz_1495692835269_0.2893072769511491","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170526":{"name":"typescript","version":"2.4.0-dev.20170526","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170526","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"54a5f19be127c3b654e056336f2144b26a234702","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170526.tgz","integrity":"sha512-NWE9eEOlXogz3YYRsHS6qlnxDScrJM0lxffiJKJ03JcNeDle4hW0rC5H61sjOSMoYinic7QAkp401W19rnKvww==","signatures":[{"sig":"MEYCIQDSKDW188HXucGZN2p3Eg6p2Z8mzwODZQbJmK7wrzHHrAIhANDuK8fB89JONnvFfdBus+EXl6023TVfTNSlVghptNbc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"54a5f19be127c3b654e056336f2144b26a234702","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"068256b8b080ee1b0e9c376a27ccfcd45d9a2fd1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170526.tgz_1495779247431_0.28441603551618755","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170527":{"name":"typescript","version":"2.4.0-dev.20170527","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170527","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5820981349f3fdac44f7c74702888ad66c0dae09","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170527.tgz","integrity":"sha512-nJbGTmxbDmS5iYaLZtH3lJ505DHukSHm/N6y78SZ6x/eGeM+phmbsTMSA+IkHJ4YrcTdZ52ugKR7mJv4sDPmOw==","signatures":[{"sig":"MEUCIFR84fBHwbvWjCy0nKlssz10uGQNeKGkAPPvYsHuI0zQAiEA1fmtmHjy9ofrYB1aAjYQA9Xl59nWIwBWdhsC3YZyC5E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5820981349f3fdac44f7c74702888ad66c0dae09","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170527.tgz_1495865732654_0.5217105017509311","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170528":{"name":"typescript","version":"2.4.0-dev.20170528","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170528","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"39c710d0d36dbe0a6f3b285a29a5ca912f33269a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170528.tgz","integrity":"sha512-RhBvY7y7sERf3B6llCojM+rKcz6ZYgnKDMmgx4lhUvjsaW6ssImJP+mFujRWDVeWeEkIQBd3HEDIZMMOeZjuPw==","signatures":[{"sig":"MEQCIDE9yxv8nKvJlDsyKA+ynY+KbEJg9vnsOfB9vPunH0PIAiAr3clpXKCiza21H49yqzLFfXOK5R3/wamHQ3OB0UYwSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"39c710d0d36dbe0a6f3b285a29a5ca912f33269a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170528.tgz_1495952126366_0.9542548106983304","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170529":{"name":"typescript","version":"2.4.0-dev.20170529","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170529","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"602da5a441a922dbc652272b49241096a780030b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170529.tgz","integrity":"sha512-V38Jq3opTO7CRAhkna++he8zz+OfpkFOtAwT2LWeoruacDD/mz8xjOk6wY5Y3hkWYzOEDvNL9G7Twk7ePLsPxQ==","signatures":[{"sig":"MEUCIQDa+zSAaOzshvxuwif3ikX69ufx+LVRF+Au3JAVFoHjPQIgEvGglNXBTbLXJrcD+zhQHuUrFmcL6WLm1PjWkSvTWYA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"602da5a441a922dbc652272b49241096a780030b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170529.tgz_1496038484122_0.7580587721895427","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170530":{"name":"typescript","version":"2.4.0-dev.20170530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170530","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7191e199debb180eaeff543e12a74cf0f63da024","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170530.tgz","integrity":"sha512-m9B8XC36exxZR9i95HUq+FOm7gD/wubxzbD6k5KNoOSgDlLjokhGQkTFM83LzGX54hRYaHWSuOPOvjO3ISYGmA==","signatures":[{"sig":"MEQCIBqrNHzEgMA7ln9cjzj7RH4lIRdvGPgv4D4hZ21Odc56AiA0Z8n8tBy/8Uke2sQ6G5NQj288rllyzouOUZfXJhGKqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"7191e199debb180eaeff543e12a74cf0f63da024","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"bcf84f49589eb00decd0567efcd6d9eb789d5452","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170530.tgz_1496124908301_0.32724879309535027","host":"s3://npm-registry-packages"}},"2.3.4":{"name":"typescript","version":"2.3.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.3.4","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3d38321828231e434f287514959c37a82b629f42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.3.4.tgz","integrity":"sha512-+3YA3hpUsl9lWPPsPQshiyXvU9EgJhvMoG2V74b6D2BddGePqRbQWNztTvpoUjlpf+3TUIL14C4Cad4QNvOVfQ==","signatures":[{"sig":"MEQCIEYPsSXomQkGs3+NecXMkmfFWVltHXibGNcOomQ1glfLAiBugHvzA/7Lq6RUKDMmkyn6mrLSioFJGitRfaGiGXJvPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3d38321828231e434f287514959c37a82b629f42","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"1a579d929f1d0ee4d45de7cee505970a24a40cc7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"next","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.3.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"3.1.5","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/gulp-typescript":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.3.4.tgz_1496178348815_0.7538054259493947","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170531":{"name":"typescript","version":"2.4.0-dev.20170531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170531","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2fe549be0e5e6af9d0159fc20c4de84ba0bd7a2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170531.tgz","integrity":"sha512-+5FIsLrDCyEgGIL10mk5ZTOfGVbvbc96NL6VNZ8Tk7SMeqw4fyQniewQ8HGosBetXAoolzdNP/bgHdnSZ1vo+g==","signatures":[{"sig":"MEUCIAycr4O8iwAyUthEjLWOYvxdO8p/WiT71PeV/wBUX3ZPAiEA+PBqcsheOu66Y2FQBzTkivSXy0KHT+KoTCR/Sb5g4qA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2fe549be0e5e6af9d0159fc20c4de84ba0bd7a2d","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"1cc860d88ccaf4008185530eab2f3c20d89be4b4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170531.tgz_1496211329078_0.46013076952658594","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170601":{"name":"typescript","version":"2.4.0-dev.20170601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170601","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9bac807d61a6a02340264ebaaefca08606d22b61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170601.tgz","integrity":"sha512-KZ74suRpr9gHIL7sbb93zlLPZPnMSz/jC96DsmwcCrKaeiE1eO7SCxe0FLWQe1T70xsnniQIl03KHylovFEy0A==","signatures":[{"sig":"MEUCIHqEzgmY0L0XbhbUKcOfo91/fEgcxnMY8/yLV4ufkl3oAiEAmnsax8VivJwYPYYnEGg9trDRhRdCh0GfDibIsL2ZlN8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"9bac807d61a6a02340264ebaaefca08606d22b61","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"928da675aca56fc0d9eab42e7fe6fa12859d3849","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170601.tgz_1496297695557_0.7038231657352298","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170602":{"name":"typescript","version":"2.4.0-dev.20170602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170602","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ad5276b2038d3526b6664dde3eec25a2d80fb568","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170602.tgz","integrity":"sha512-YO7vTXT0w39nQmfxDWRR5MMgWRanBlkuHhUIozmnA2pdIaJvEPxk1MUh2GBBvxo9CbL4M6OxPNEvNFfuWnAMww==","signatures":[{"sig":"MEYCIQCDqChH/b1Ehxvr2V3zBGarU3Hy6MptQM9U9OI3OKeTOAIhAONj+IC+hTtjJbezGy1kQhxt3I49NfxDTtFSxT0WnLKm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ad5276b2038d3526b6664dde3eec25a2d80fb568","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b62e1b57455562da9b8e1d2ab102753400820c87","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170602.tgz_1496384203814_0.552362612914294","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170603":{"name":"typescript","version":"2.4.0-dev.20170603","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170603","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"206f9b2b4941d894f9f7f78560bebb2a8a5ce0d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170603.tgz","integrity":"sha512-zq83GkgV5ICF1pt0/kUNrKluZCvVpQfOmN4Kxd5H08khrctQe2+Ynf8c5Ot/daLekAEG1lX/Ihp5cbdSdwcVuw==","signatures":[{"sig":"MEUCIApHZHjWhBCwgOuT0YiEx42zpKUTkSMXStyE8RHH4iRBAiEA4LK+LG/N6z1qxZ2DGWQSk0LYYlrBEwqjEQmvpbIgRuU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"206f9b2b4941d894f9f7f78560bebb2a8a5ce0d9","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5ea8466103747fe38e846999577bbb0f2ce1b553","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170603.tgz_1496470543921_0.6570289363153279","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170604":{"name":"typescript","version":"2.4.0-dev.20170604","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170604","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"958dd881a1237fa98210a0183dc9e36bf2d55e81","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170604.tgz","integrity":"sha512-z4rnnhbIQG5Q5VV7KmZdlP+m88LGPPKCJpR9HpQXEjzon1J4sdzNqQzy+4QwoPUiujPn+7ZuFi0YdJwfCQdu+g==","signatures":[{"sig":"MEQCIFfeMuGahU/eUcmlzj73ZR0XbMN2tA3v96Cfb9FHMYVaAiB++CEbvRP5zi3YWa1HGXP7ZyGKk4a3QKKQWGb8QE/Arg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"958dd881a1237fa98210a0183dc9e36bf2d55e81","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"5ea8466103747fe38e846999577bbb0f2ce1b553","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170604.tgz_1496556927105_0.20389424357563257","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170605":{"name":"typescript","version":"2.4.0-dev.20170605","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170605","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3784b5edb80bf030cac673f3326852b5306d2467","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170605.tgz","integrity":"sha512-VstP+LTsLQWcivJFX7bWt1I1o8x9TNXI+LmoiuA/y8SMyYpOyDuFDUa8Kq313QpaMZsydFu3KWevH1lYYnPEdQ==","signatures":[{"sig":"MEYCIQDCMFS05gh0uqORqWsmFkZfVEK9zyRXKD7946E/GOEUdAIhAOAX+HgJmVQbo5+0vICLXaRocRdceN31glMyklAfwk6q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3784b5edb80bf030cac673f3326852b5306d2467","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a76b4b1f28ec4c6af5aaaca092116691af89962e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170605.tgz_1496643296641_0.2915412576403469","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170606":{"name":"typescript","version":"2.4.0-dev.20170606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170606","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ba4564118523aa6de4d1ca514d9911e78e051f46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170606.tgz","integrity":"sha512-tUkZfYtu9H1EM7jyJ5Jqf/AAaxNIvZuBWa+LpMrjthjqNATaTmCE3ITqwjkxfqwvLQCCLdSvppVe+6FxmeAPOg==","signatures":[{"sig":"MEUCIB56PMbJD9qkOn0dgQTPNseXOvvBTGFuCHA6UnkKB/PyAiEAuG/lAmrr1Dy95NCslAvLnXxHY4+1wRMkFJZ9EuvjE2k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ba4564118523aa6de4d1ca514d9911e78e051f46","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a6e1cedfd7d9fe423019a53980668612bf14bfa0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170606.tgz_1496729715025_0.2007577084004879","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170607":{"name":"typescript","version":"2.4.0-dev.20170607","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170607","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5286a741bb5df1c4425c1b107fb3efa95ed35ce8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170607.tgz","integrity":"sha512-zYu26r0xPba3dxWwSMb1dvedyd2eiZA0uFCojRMf4N8wia0RcQ9UhgTFz7+7Fr3xSQMKIjkHtzki3e7ODJ1iGA==","signatures":[{"sig":"MEUCIA+Bd3/mQGO07kW9Tp1Fz9SaGTrAH1bvZqXz3CAzrbRkAiEA5xu0YsHKicvI8ZXaCSoLgYvAzhBcY2EuHrnvX5Kwb0c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5286a741bb5df1c4425c1b107fb3efa95ed35ce8","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"6007eb7dfb816cf2d021f0057cda2dd1c62b352b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170607.tgz_1496816083540_0.852469478501007","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170608":{"name":"typescript","version":"2.4.0-dev.20170608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170608","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a6e7eff5ec3ba9f43eb10907b2d1bda4326bb65a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170608.tgz","integrity":"sha512-F1ZZWMViGwuG4fgFDKHqEMA19hVU982fMvFxO9q0pNBTmxbKoFxGl8Aj3RRGEK9Xu+KzCw07OtTtrCehsnNvbQ==","signatures":[{"sig":"MEYCIQDoenvk30hRvObUL1u+ncQE/6jn8MVP0CGJoJm+Y7xT3AIhAPlRl56uA/A2YaJGJvloCfPZqWbOR7znywrOwGmMY/LW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a6e7eff5ec3ba9f43eb10907b2d1bda4326bb65a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"158a6371e934a173a65d7524d99d22cf48799308","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170608.tgz_1496902510265_0.803620767313987","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170609":{"name":"typescript","version":"2.4.0-dev.20170609","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170609","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"17dc560bf9817e27d002ed49330d5421487203d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170609.tgz","integrity":"sha512-+Y2JaSMaWaW0ih+wfbX9n5H0LKMvvcM2lOy/wUf78H8yVIjmd0KOhDIHZdXNG3PytpntwuJY4xlTd60KU1RzDQ==","signatures":[{"sig":"MEUCIFOY4SlgN/yHk8+7WpuDJAnjeAxyi0SyOE7fIM5ZyE9hAiEAnRSuPw+TjBZL82XS7kvae0U7/QSb2V0AxhEPVKSm18M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"17dc560bf9817e27d002ed49330d5421487203d5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"0d36d0e39fc9b9833a61b51d66be1f762fa8f454","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170609.tgz_1496988882960_0.277833839179948","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170610":{"name":"typescript","version":"2.4.0-dev.20170610","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170610","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"95d03a7c8ae3fbdd24c981e4a2d86c88985716ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170610.tgz","integrity":"sha512-qXxwqXoQLgMHFxVzK+SKZIAHHi+OR64+G9lgK8GpYwAF9FumS+CGFIk94Dxf+8JRqrID4JCtnzZuzf/mXynJfw==","signatures":[{"sig":"MEUCIHm/82pI+k+Rs+cw7UIycPjgliKaIj1VtQErk4YWJg9EAiEAwg2jsuc3SAv1OEtDhPYmNdRtjNkAHcEsKUgCQo6O9L0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"95d03a7c8ae3fbdd24c981e4a2d86c88985716ad","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"09321b3834af09d7ae55ee86c7664850f189a708","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170610.tgz_1497075087607_0.27730330103076994","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170611":{"name":"typescript","version":"2.4.0-dev.20170611","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170611","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fc5064e14705c15f0dbad9b9051e3a093b684285","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170611.tgz","integrity":"sha512-fHXK3X3ywY1qGZ51BuzKWzRW85lmFuHhoegekYB6PhpPVq1juAaprfkgavYieD3XuxgSTs19EY35O9FSRHCO8A==","signatures":[{"sig":"MEUCIQCFyzbwU831YwjUcBqpsWoiXLvDqTnEb3WX1CU2jBV7WQIgRqqNaVil5ARRZEpXmekm9lAGNJMNMI9HeMw6SMnNTKU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"fc5064e14705c15f0dbad9b9051e3a093b684285","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a404edae384f758e604a9457a9476de613436b68","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170611.tgz_1497161884706_0.37688726815395057","host":"s3://npm-registry-packages"}},"2.4.0-dev.20170612":{"name":"typescript","version":"2.4.0-dev.20170612","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0-dev.20170612","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c81152dac3d4a2962dfc128a8d87cf7873ecb284","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0-dev.20170612.tgz","integrity":"sha512-JisEsOoefljAq0enlEe7bbq4EOdwjQTnKH49o2+BVp/Qxf8TDtp5JrYcD7szsxmET7jjmwJRmJ6mqvJnPHAlNQ==","signatures":[{"sig":"MEYCIQCv9nZ9vzryyRN4IOaGzBBUGerc1OZ0vVxyZ6di9/nHzAIhANB/hu+tnTJTvl/8dsRiS+B9DK83Vn216U1NAOI5NPD6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c81152dac3d4a2962dfc128a8d87cf7873ecb284","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a404edae384f758e604a9457a9476de613436b68","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0-dev.20170612.tgz_1497248288643_0.08571731275878847","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"typescript","version":"2.4.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aef5a8d404beba36ad339abf079ddddfffba86dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.0.tgz","integrity":"sha512-jFRndmgzNIBgazQZ6f6mrnjPhgVyh+35yrHtxoCQZJkD8zaUs1MqpaI53SGtuLV8MW1K62dm4EYk9A2tIDGOng==","signatures":[{"sig":"MEYCIQCpWfiqTTl7Eo9ryCmBkijnT8aG5gCYVCI2iDFJdh5A9QIhAIaqJDzOVL4OevZFrlS8/4CW1QKG0EzwstGdqlTL6Pon","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"aef5a8d404beba36ad339abf079ddddfffba86dd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"14fa6ac8eb5a8aed75865ee3a5a9f7caf6353aa2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.0.tgz_1497295633780_0.158932140795514","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170613":{"name":"typescript","version":"2.5.0-dev.20170613","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170613","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0819ffc7be1617b10728154dba65568ec454fd12","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170613.tgz","integrity":"sha512-ZpEQuMW+x0l/cMrkApQzuEXAYPVwyft2W2gLNp88DuL53S9ZqZtGeYIeQk/A/GS8g8JxT9uHSgAHfnxym4yjpw==","signatures":[{"sig":"MEUCIE+oXf0NeeeGHT++GCwJ/ctesFjXDJm1jMZs4zQkR1otAiEAkwjgeYaucPkRloGEO+ZKmokWr2W/6KJT3U+3ozpIlsI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0819ffc7be1617b10728154dba65568ec454fd12","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"1d0087dd2d04e48e52f08c85e0489af6e683e56c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170613.tgz_1497334606000_0.8287351259496063","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170614":{"name":"typescript","version":"2.5.0-dev.20170614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170614","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eb77ed212a5e49ebc8392ba0a95713ef87d9f6f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170614.tgz","integrity":"sha512-JDisEiFi10G9H4gDZXc+26LpB3b7AhdNLr+BMwITQBuxO0xLWS6LofE8hRijT7WN01aNloGLh93hrz3mzE6Rgg==","signatures":[{"sig":"MEUCIQCXKUzzIR5D4O28AlA0Pnh3cD02PVRO2qlUxyY3ISVKKQIgRFJhXeIhJ4ZNu9UnBr9rK/ZuX1RJeVbvbkXB/Q0dGPU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"eb77ed212a5e49ebc8392ba0a95713ef87d9f6f1","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"fbe002a59534a522330d047b367409d57d3fc97d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170614.tgz_1497421009104_0.2152184033766389","host":"s3://npm-registry-packages"}},"2.4.1-insiders.20170614":{"name":"typescript","version":"2.4.1-insiders.20170614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.1-insiders.20170614","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4f12ed67ba4230a9c0c03c30c46345e7cf585087","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.1-insiders.20170614.tgz","integrity":"sha512-fW4FvSBto3KNihKVSIBAPzBft+GiQwqK+EKlzPoSaDp1J9wm5nsdN0nrublcGFl9fjZlseTeMSm3n8tkLWIiSA==","signatures":[{"sig":"MEUCIFYNNPV7KWVVo5cukHfNL4bBmz2I+f3qQ0M3C+h2I6G4AiEAr2mYjtzJmWZGQ1evoy0erO8jd75u8oWPxNWivSy47Yk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"4f12ed67ba4230a9c0c03c30c46345e7cf585087","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"ed9cde9845cdbdc58ae40077ca59b436a4765c60","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.1-insiders.20170614.tgz_1497484895443_0.7764965672977269","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170615":{"name":"typescript","version":"2.5.0-dev.20170615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170615","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"30babe46483cb1ec742c397e2c9910532cb145a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170615.tgz","integrity":"sha512-aWIF0e4CM63E6V4N0yad6WtwI7TvCAy7P4WidZiJxkWMJuDTSRw1jFT1NLeD7uRl8qxtuOBpakFgYqryNX3rtw==","signatures":[{"sig":"MEQCIDE8VJ239Gb/RHj/EyzpMZDzWB6DGAmoRn1H9TGBKavSAiAd12ZWN+1u+Zk22JnPfwqi0adkplZLvihH7s4UQ2pvpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"30babe46483cb1ec742c397e2c9910532cb145a4","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"26ab0cd138cb4570ac80b2355c562bb39cb294a4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170615.tgz_1497507288722_0.48306851112283766","host":"s3://npm-registry-packages"}},"2.4.1-insiders.20170615":{"name":"typescript","version":"2.4.1-insiders.20170615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.1-insiders.20170615","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1cf1dfa212b1ecf557a1192525633f1966b21daf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.1-insiders.20170615.tgz","integrity":"sha512-UCQrTUApmltYbYKJvtwlO66ITm5vGyLcIud+0DaijTZrVo0Jn//7B3GqVWIYjdIY8++3mdogIzNhNeAbJuni/w==","signatures":[{"sig":"MEYCIQCRmsqCv54vKQFgUAjYj15zAxE81Ujx9ucm8gj0LnFqYwIhAJzT93VrMgeqmn4qi146698rDNOdvyl0wvFQ6KM6Jzcz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1cf1dfa212b1ecf557a1192525633f1966b21daf","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"0968ed97ad4eeb27f9417d071ca8cf1c521ebb56","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.1-insiders.20170615.tgz_1497568087897_0.27685667341575027","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170616":{"name":"typescript","version":"2.5.0-dev.20170616","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170616","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6bf9b32b28c1cb181f45affcd51d057b97c2867e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170616.tgz","integrity":"sha512-lkyMaKlmAAVfw0I2bu8ZaCdQZEeBUqO47KQJjAwzH29rXGFQZsmnod+74uLbJpe46rUGxO52T3s1hc7QlqU/Rw==","signatures":[{"sig":"MEYCIQCueOC0CrxOtJRK/IA0hJGe/RI4JLY4/ewp7Std4KoXhwIhAMfhYCXsuME0Vak/q8AhT/4dssxIGvsKSMy4+fnw8VA4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6bf9b32b28c1cb181f45affcd51d057b97c2867e","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"31653de3c391e08f3f326abc77ede73532c42bd9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170616.tgz_1497593548188_0.6918158680200577","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170617":{"name":"typescript","version":"2.5.0-dev.20170617","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170617","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5c72d3d4ea278f8db662f513c6911cd31378f024","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170617.tgz","integrity":"sha512-Z94HKt8ZAUXg2E8kfuhvgEIoFKBs+aIJXOagBiVmk0knMA+tDSl9tuPTL8Ez5d93QQwur3IQ/1COKjY1MmxeXg==","signatures":[{"sig":"MEUCIQDDtWoUW4w5qjQ+eCUvQEbl+5Iqk1ZtpJ/kq6XzWsKc1wIgSYe+J5b2H+tF0lVUzf/Er003P49lJpBP3gn6WqXxkuY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"5c72d3d4ea278f8db662f513c6911cd31378f024","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170617.tgz_1497680008788_0.029210101114585996","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170618":{"name":"typescript","version":"2.5.0-dev.20170618","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170618","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e94cf09b2048705026964dcb20dc0d83e90581ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170618.tgz","integrity":"sha512-8/xbp3nbtmkwcblnpTp4vMb9nSDfkzjZc2uxKa/iG+J3LMlKLV2ZXxIxtm5KEatfra6ZRNbhJtWxkbBhf6rEFg==","signatures":[{"sig":"MEUCIAWPm9/zW3bf6aBhtEQ2092p42DjAHp+71pj0YuGG71LAiEA0+loX2mQHd9BXG8Xm996xNa/wwR+s64KR0V4LbvvMrk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e94cf09b2048705026964dcb20dc0d83e90581ab","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170618.tgz_1497766378237_0.06250596581958234","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170619":{"name":"typescript","version":"2.5.0-dev.20170619","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170619","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6f473787affba5252601081cc22caaed0d8fc9e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170619.tgz","integrity":"sha512-fWQ0ZNquOHDYD0vXbcoF6/aSdaZidiXFzKBD8OIs5apJjrxbO+qoQqNHZ4XOa5vZzgwXmsiqyT8vYhU9ZzaZSw==","signatures":[{"sig":"MEUCIEx4/bfmKlKdrxFbvGfIMEtsO8LxD3bO+Uxy9MeL5vJdAiEAtvneaBTfqA2Q+EUK0N9Xa5ugLW+2xNnyoPAVTYfKF5o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"6f473787affba5252601081cc22caaed0d8fc9e6","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a2776648cd48d4937b076fb8b3e935d3d5fb27e1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170619.tgz_1497852763394_0.7942032963037491","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170621":{"name":"typescript","version":"2.5.0-dev.20170621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170621","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e735c4d23386fd1b31006608d9525ad97729f30b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170621.tgz","integrity":"sha512-gBTWJS3zylaU5jVCaYDeasp8gpB1Y/m2o1kmF+rH6Kg4FgkOJpYta8kz9PdLi2e+PlBG5LFVCf/ETsoTpStF0Q==","signatures":[{"sig":"MEQCIHy94g7Kt3wx1boziXNOdfcgQp4Hog0T1Ypncf0Pi0HoAiBVjL9b2FgSCSDITFcw2h3ilvvjgrIiw5CnhGijg9nK0w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"e735c4d23386fd1b31006608d9525ad97729f30b","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"f1fb1b9ed94b8880f48cfcbb40f6117b14c44831","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170621.tgz_1498025629869_0.48150102607905865","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170622":{"name":"typescript","version":"2.5.0-dev.20170622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170622","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bacc72fd035603f5be0b6a4e0d3e38f0624fecfe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170622.tgz","integrity":"sha512-1bptgfH6VSCPEtgeIfgFo8h0gfPJHjwClwOV//mx5JvYcj3wdFQGGPf6//FaN9U+4AvDwdTC2kST/4G4UpUveA==","signatures":[{"sig":"MEYCIQDsKzWlGP0wGjI+pE8pZE8V4EOZX45RKVru53jxBGaNOwIhAIjwzMVx9EL50WIcFXoneIouag4BqpycBIFnOZneOSV9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bacc72fd035603f5be0b6a4e0d3e38f0624fecfe","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"f1fb1b9ed94b8880f48cfcbb40f6117b14c44831","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170622.tgz_1498111963251_0.7094265660271049","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170623":{"name":"typescript","version":"2.5.0-dev.20170623","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170623","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b52cb8bc008e3e23801f32599eee608c9b3e7e15","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170623.tgz","integrity":"sha512-9pQjQ0QX6OZkQ5dhtLi4t04wCo1Vsc6wJnMFwqoN8vKEzRBfMt40GrObT5PuO1FtKRPmlyBsuz1xn6Fm3MlD/A==","signatures":[{"sig":"MEQCIGGellk8Gu4+1clHDeyLcjVjZGv/cnzEntxyebR2ryoTAiB1wdkUyrlC1SNL4xlCzVboqUZaWspQFHh01YWwX0IdJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b52cb8bc008e3e23801f32599eee608c9b3e7e15","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"6a111928b4dd40144b2d091016175ebcf5b65cf1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170623.tgz_1498198395801_0.08560115844011307","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170624":{"name":"typescript","version":"2.5.0-dev.20170624","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170624","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"21fe9e20cb239bea79f2a945330009b646bf6112","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170624.tgz","integrity":"sha512-VT1ov8F0tPTC0pIp7in3CFSZEy4iussgOt/MhP1eoX4i4A80YxWTX1y177D0OkoMDqVVftEkteZji1wYKT6ROA==","signatures":[{"sig":"MEUCICEJOnXjmAJqszEcwi60+XdWUr75nF30qGeXyPxIrrCfAiEA34iaScSKnp4bSC2Umkr3ZwZl7hXUdmw1Ur3cbjb3VfQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"21fe9e20cb239bea79f2a945330009b646bf6112","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170624.tgz_1498285047483_0.8907331405207515","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170625":{"name":"typescript","version":"2.5.0-dev.20170625","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170625","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"86e3b7242a8f1973c02b79cc03886e7b4166c8a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170625.tgz","integrity":"sha512-nQHemKBKGKNc/iUWsL8DL0KIijQlYMLMoYI7gkSB+EC8UN5LRz7A9EfL31/JhAwWHq00wmqRqGELl/l5UBrJDg==","signatures":[{"sig":"MEYCIQDdrdx6ZH2V7P2nIgSwoUA3pLHj1irU71pOOyww180s4QIhAPWP4GIfprv7nVEyQiTifiDTMf3lemNh/XlFsu8cNGx6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"86e3b7242a8f1973c02b79cc03886e7b4166c8a7","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170625.tgz_1498371252336_0.1582546541467309","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170626":{"name":"typescript","version":"2.5.0-dev.20170626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170626","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"138dcf6f3e1885b656bcd6445305f3df9e0039b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170626.tgz","integrity":"sha512-3qa8wvMvTE0/IrSpzaSobDO4MDtBCcnyheYotkamrYaYrvkfmZR4N6MD++Z6WKeugjG6wXTw/R7FGG+zReMobg==","signatures":[{"sig":"MEUCIQDKoW6RAivsjpJ2KCDNQPIKeoxgTLoOX03RGlrBQqkowAIgB196Oo7NzSMlMzSa6L+YwEMJC0PRvhBhWVBUCGra7tU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"138dcf6f3e1885b656bcd6445305f3df9e0039b5","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"fd22a88abcbca57c3a2961955537904481c9c62b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170626.tgz_1498457575110_0.5473527244757861","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170627":{"name":"typescript","version":"2.5.0-dev.20170627","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170627","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"da16f7b25521b429f2bef3169995f8aa0f6fb74a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170627.tgz","integrity":"sha512-BdPv4fh2BpH7GH4M56oSW7dshTkfJiIfu+W5acuy6sJOAq0W+Z4rPdU/sj2fU/oEsVDTThxAOZUNh3LUAzUlNA==","signatures":[{"sig":"MEUCIQDrlph82bIrmQeXkAX5nNkwED7sjApLxdwpN1xUIX3SfQIgXHSFZ1cFwKy2q82S3WD+S7jUQfTjCDEkTNNOhUmz9Dk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"da16f7b25521b429f2bef3169995f8aa0f6fb74a","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"aeb5264b74658c976165699db1489bdc65675533","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170627.tgz_1498543998499_0.15347767365165055","host":"s3://npm-registry-packages"}},"2.4.1":{"name":"typescript","version":"2.4.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c3ccb16ddaa0b2314de031e7e6fee89e5ba346bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.1.tgz","integrity":"sha512-3O/A1TbKiXlfWsBv+X9QpzylORsBSXZuIG8GMzYvPTFCrkc65iXKd4gAkVN/jmLgSkmdTDMRY5XyNu+DxZD7mQ==","signatures":[{"sig":"MEYCIQC8yqsLNgHCXzwqbZ2XRFLE9+9Q3Zoh9df3W+4gQ3m2ZgIhAPDlryopY5mu6OwmBLyLn+8A/vHIWMcTyCJEQxmorNNl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"c3ccb16ddaa0b2314de031e7e6fee89e5ba346bc","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.1.tgz_1498582143995_0.344432222424075","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170628":{"name":"typescript","version":"2.5.0-dev.20170628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170628","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3d6951f6bce326d9e72dca3ce60ea80bdbc4a799","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170628.tgz","integrity":"sha512-CE3uO8E/n7DCIaoB9naNmk6jCj6hrJvPjpCWkCGuDXEDOOvQOw1IwD+HTS4aqJY73fY9TMWGuECH9qw3qQ0grA==","signatures":[{"sig":"MEQCIGDUs7j+qimT0jdYWJ4adqOTKQ85GCcHvHFoULDDw0i2AiBqKp0h56XpcbmSJQSDTcZ16N3/t/S/xREWoVQu8tioWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3d6951f6bce326d9e72dca3ce60ea80bdbc4a799","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"e52b996484770dc2c051e9735f33dac8b0697713","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170628.tgz_1498630475317_0.6575480056926608","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170629":{"name":"typescript","version":"2.5.0-dev.20170629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170629","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ebdcdab19a7d109bf2ca0545761b0410430c8ae0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170629.tgz","integrity":"sha512-bL2D1N5MXTwmX8Ir5QVoSUviU1cENdsveJPAxhH1INbPHQxslLSGQqEZRTxcI34Po5IkEZ2Wl1YSI1gJSCNxLw==","signatures":[{"sig":"MEUCIQCVQ+CG4g7lMHH3NbzvVP3w10vZ1FMCu6R7gxAzXEHAbgIgC12A3wbZvn/iUnGwzd0bdsC13nnc7If5oRKm6oh7u8w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ebdcdab19a7d109bf2ca0545761b0410430c8ae0","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"51fb7e9a81a8821f2219cf68591faf36c66e01fa","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170629.tgz_1498716816922_0.8733491846360266","host":"s3://npm-registry-packages"}},"2.4.1-insiders.20170630":{"name":"typescript","version":"2.4.1-insiders.20170630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.1-insiders.20170630","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a4bdde1fc8bdf5f3626c5183a0959cd31aaf0603","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.1-insiders.20170630.tgz","integrity":"sha512-m08fR33f2u+QpI1+Pwv78d5b3uKLcRaUCCUZm0k2HYMhrOiyButCHm2zRVXUOPNHtDL3+nVNCOHq7Q7CXjPaQQ==","signatures":[{"sig":"MEQCIDLjNMwjynGar/sM5ZyoMf3PqwDCntq+GLJquHkiVyhOAiAt655P//6GhtUJ35JjkC1AYlWLIvAP1YyG/yb0B7JWMQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a4bdde1fc8bdf5f3626c5183a0959cd31aaf0603","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.1-insiders.20170630.tgz_1498858916100_0.4537896611727774","host":"s3://npm-registry-packages"}},"2.4.2-insiders.20170630":{"name":"typescript","version":"2.4.2-insiders.20170630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.2-insiders.20170630","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1a0dee346f27083a1db9a29ac06601c2e7914e82","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.2-insiders.20170630.tgz","integrity":"sha512-YypfnmUQJ/msGwNXSJa8gNYf5iCIlpt8X+D7HCyzQRMKsSDivJTVm0fQiBB2SHjeFUPkbMKHjAqBEsHLJ77ynw==","signatures":[{"sig":"MEQCIGt67vXx4lQ+s4s+TQ1X0rMlSzseOBiZiyVcLKyULlVsAiBMiy0q0m4LHj+Jh9zPklumIkzhPdhan8aEI9fPfCAYJQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1a0dee346f27083a1db9a29ac06601c2e7914e82","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"8b2fe136f8cac532445bb3de89abd134592172d1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.2-insiders.20170630.tgz_1498859300734_0.9975741151720285","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170707":{"name":"typescript","version":"2.5.0-dev.20170707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170707","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f915e2f1e3ced9077adaefa0867392d063970fa2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170707.tgz","integrity":"sha512-WgfPb7iYd6/dT4UcRQGtTqWsnmO6DapCTXbVazF/gDyYcbAUnO2JZ2PQB+yX5odfS0epIIlCCENhy2HnWhcNGA==","signatures":[{"sig":"MEYCIQDTkB2OkrWNt6R6lHDzsgZ8uCOgl52eW0rTY/p3jtBPOwIhAIO/em0OOLRE+d4pG3qhn8R+RXpWPh+5s0L2iOtpNUie","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f915e2f1e3ced9077adaefa0867392d063970fa2","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d4c11bfa1b1e9b15d5f02211b37e590e38a9a2e2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170707.tgz_1499452226907_0.2818260572385043","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170712":{"name":"typescript","version":"2.5.0-dev.20170712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170712","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bd6bfd67bd532dd5c6cdd976a42c343c8da705cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170712.tgz","integrity":"sha512-COwdLO9qWOH4Nf8O2/ohVFa7X8D4VuMFwiYCNz36o+9kkvbDyv1XzWkCN4saiq9HsvIMm3YNNYR40pzqlhrx8w==","signatures":[{"sig":"MEUCID/85BPUURUw/pUkKOf0e6RQCa9N0J0+ztofzOuQSg/TAiEAg9i8Yk4L6ljec1G9JXqlwDOHzRcfeHYzoG5dSLqRl90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bd6bfd67bd532dd5c6cdd976a42c343c8da705cd","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"38f6db52ac30f9dedbaf45565260e16d9add051a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170712.tgz_1499844559782_0.8934026737697423","host":"s3://npm-registry-packages"}},"2.4.2-insiders.20170719":{"name":"typescript","version":"2.4.2-insiders.20170719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.2-insiders.20170719","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"30e0912a37e61a851045d31a46a9bec3a1c15590","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.2-insiders.20170719.tgz","integrity":"sha512-Ts6/F4NPUS572xfqvCFbTEorsIXVm9HbL+qYI+f9b/QoCzX4Ftgq7LCiq8j6tGOFb2lfc3EhAv5mPZ0C9V7Oww==","signatures":[{"sig":"MEYCIQDWAjoSVnyk/qSqmefWBLPqgNmQxy5B/rlgcFsjkGjKZAIhAKwDf1qjqJpESBfucYfYI/PSNUPJT96BGhn8ry4uhGhG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"30e0912a37e61a851045d31a46a9bec3a1c15590","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"6105867bb05abc365d8d7f4fbd03e14a8d50117e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.2-insiders.20170719.tgz_1500498187000_0.43802667362615466","host":"s3://npm-registry-packages"}},"2.4.2":{"name":"typescript","version":"2.4.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.4.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f8395f85d459276067c988aa41837a8f82870844","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.4.2.tgz","integrity":"sha512-a6qhFjx88CqXM92QX6e5zwbYavxaknEdFhh/ZrBmuHEP+r2ye102uvhCkWdian4u5Ee17W+8fAN7xtdM8KeQ7A==","signatures":[{"sig":"MEUCIB3THqDHD1w6pOxLdSdkyjUoeNtaD69VyCkySJvQmh5GAiEArM657phGrgiPaYrHS6ZGU7YKJ5xe/wxkfJaltpzT4pQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"f8395f85d459276067c988aa41837a8f82870844","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"6105867bb05abc365d8d7f4fbd03e14a8d50117e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"latest","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.4.2.tgz_1500500117839_0.337849831674248","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170719":{"name":"typescript","version":"2.5.0-dev.20170719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170719","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2976f0e8961a86d79c8fc55d007d6e286505954f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170719.tgz","integrity":"sha512-baRITVJG41fiGnttiUg7nw2SkD2g0l8EnwAKJOf6dsN9CacQSTX4ORzqOFjNTQeJIms7bS0y6m04CaOxqPte5g==","signatures":[{"sig":"MEUCIQCkyEmUn6M4r1l4EXYpa/ABIULF+f57W/fZkhLLGi33jQIgO3mKvh+ER6+AysWCaAPJsvPTQkeAa/lwPrKoPD/j1wM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2976f0e8961a86d79c8fc55d007d6e286505954f","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"f37d9068ff14a2d8a4955d4a872b8ee33046d388","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170719.tgz_1500504031517_0.33982362947426736","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170725":{"name":"typescript","version":"2.5.0-dev.20170725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170725","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bff038db3910533cf57d5b245f6bcbd657dc3f29","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170725.tgz","integrity":"sha512-PQ9IHEgTUuTXKnE7WnrKR0JNujhHSMSLHOqv7QZiugylwpzdVBR8fE89NcdKIatQvJ08J/FWL6rm0iWqlP1m5g==","signatures":[{"sig":"MEUCIFouO2gFYTMSYl1P5oAWY2Y9XfA1i0DeIMjtskJ2BzGWAiEArsKi+dFDrugcGvrxYLhZboNpXqZmNCL4Ii7Ozvjk1Kw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"bff038db3910533cf57d5b245f6bcbd657dc3f29","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"d74cb24640e622a6b2171abab93d26e1726fe1ed","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170725.tgz_1501005192726_0.16440121550112963","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170727":{"name":"typescript","version":"2.5.0-dev.20170727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170727","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"07357cb534fbb20df7d5b7ed5b0602359c9e1db9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170727.tgz","integrity":"sha512-HJuDc/hRGrAsGBSjdo5hMdKNs6SW0vC90Z11UizASp25ecJR5Wht+7yMoHBbt0cUFNzbQjXC9XQ5BfYnNmbZKQ==","signatures":[{"sig":"MEUCIQDbH3ZBYNBxQhpJc8aHHMMao5rc1l0V5oXcR6AwBSZU+AIgBOX8X4EhyBiSzeE7YGX2MrBO0A9y0pRHbkRdDwtwUAg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"977d907417006c8698a0ce346195cda2d4a87361","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.0.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.1.4","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170727.tgz_1501177903435_0.2618401749059558","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170731":{"name":"typescript","version":"2.5.0-dev.20170731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170731","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9b966de87df7c564e013efd654cb81204ba6356e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170731.tgz","integrity":"sha512-UER8sKLiiQHm+2lf1PBOfeGWPukhqrmIcZ8SGNWRZ7PpPTZepvbgq8wJwPM6dMocs1CtdmkA+fqfVkL3GRTNtA==","signatures":[{"sig":"MEUCIQCMyJZHPjq2i53L6/YeobAZKCJ2L1yGaL2vhFlBze5lxQIgBhCUViuo+RMxF0aW5+Mj5va410OcG4JtER8RwR/xFnY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"f945b26b540c264c769e2241826221917071d46b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.1.4","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170731.tgz_1501520773114_0.1292343782261014","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170801":{"name":"typescript","version":"2.5.0-dev.20170801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170801","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fec0f6da5826e90784391626dc76df0f3c032d08","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170801.tgz","integrity":"sha512-LqJNvQzmzQ5VH1Roh4SNyirfmZcsDMsMUQdlX8flYZWmkcGsNKt06nukOvkQrmLnynrwFSoDCdsITInqUivvmg==","signatures":[{"sig":"MEQCIFbeDTtiFe2iqrSPpGRfZ04BHNpKaiJZ0AC4EhfR7elTAiB3zk3dv4CDNAbs69QvYVm4c7k6D3mrwVE13ydp10kysw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"b74ec1c58b1c01e9331422315a7451d8eaee1ac1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.0.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.1.4","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","into-stream":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170801.tgz_1501611907971_0.894744741730392","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170803":{"name":"typescript","version":"2.5.0-dev.20170803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170803","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ac8f506f46ee04e66fff4eeb6b79ba90c03d33e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170803.tgz","integrity":"sha512-Jmcaeth43JUaVtjzjPeJsrKRjfCLz6CGBsskbj6UjwrhCWnJs/G0V/UCfshwFSYRuQjI+HoAlwkZj9Kijc0LCg==","signatures":[{"sig":"MEUCICcB4Sj6HBGgM1PaS6iExiPrylPFIBtT+VvPsjc/cvLlAiEA1itmotHLkXHja78JP5GnyuSQfNxpqr6g2lzS8tBtR2M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"15527619823f191aaef8e3324cc6c0d460909a09","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.0.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.1.4","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170803.tgz_1501782569561_0.4590054606087506","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170807":{"name":"typescript","version":"2.5.0-dev.20170807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170807","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b6aeb59066b5200d318adbb3cca64648d0c63812","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170807.tgz","integrity":"sha512-NAb8DjK9lA3dWeFDapZYJEyR9xXLgTZWeQyPq8uX2Gf1vfF1Gu6Fx3B93yoACZDfvMtPAThcqfB99JKIKDfEig==","signatures":[{"sig":"MEQCIE6D+a/7QRPRZnWrQlUeevHX23ZZlcHngtxRwqjyVf4lAiA+TJAeJOjp0vwea752RrV84BGhZW13AgR2Ro8WNYlLow==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"a453eff575a18a94a22bd3c908a6df0e1c3dc392","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.0.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.1.4","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170807.tgz_1502125972130_0.3852668828330934","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170808":{"name":"typescript","version":"2.5.0-dev.20170808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170808","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"89e017e404b058414d0b992cedfd2d9865164a75","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170808.tgz","integrity":"sha512-Gb+2vCDs47CMtRzpoc41Uia4UDV4biDYZo9Z5nTwINftcI96FecFCQgJQAMLF8G4bKR4pwKmOuiSN1JyGInN3A==","signatures":[{"sig":"MEUCIQC+JL+cVVK6GcHdetz5tvIbAJTxaRUQvUmsgGI61NZh/QIgEcHjW/jvIBL/WKhSfFWyy7WspEQ8qQp3Rn+p/p9gjHI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false},"engines":{"node":">=4.2.0"},"gitHead":"3deb39bba6bfa7dc0482bf1a6ad4494ed04dc3c1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.1.4","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170808.tgz_1502227864822_0.4436050308868289","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170815":{"name":"typescript","version":"2.5.0-dev.20170815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170815","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ea5884dcc0766cfab609b1fb08a0d2b1b39d2c41","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170815.tgz","integrity":"sha512-hiBnt3zdLo3liDWHVHFp3R26drPDgChejIrUYyRnZ0tI/nCG3EbJiVMV/YGQo4KQTM5U37KGqkN/FdE1FY/NGg==","signatures":[{"sig":"MEQCIHtyO03Ybd69NSTYLIvBYGPXFDkh2uQ/bYgK0VYxHrvVAiB+3Qljop7DxTIc+C6lpEfr2JyApRAPWlyl0WCn3p/ugA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7409648416b2eff6173c24ab530948f002c42c96","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170815.tgz_1502819606886_0.5707058594562113","host":"s3://npm-registry-packages"}},"2.5.0-dev.20170816":{"name":"typescript","version":"2.5.0-dev.20170816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0-dev.20170816","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a569a9cb7b484ada4006c2cd4a0139bada93af7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0-dev.20170816.tgz","integrity":"sha512-7H+5j8lTRgwcYz5IppnDw8Lei0odIdpAq2Fj71Miusk3RuZyxKgWvD1g1SOcJyWiT+Z/EjWFzVbH0VJLtVd8HQ==","signatures":[{"sig":"MEUCICyAXb19oVQiuafrcTxLdMFNC8G3pH/cUxzGQHZNiAQrAiEAvOjWgNB8nzDoHGruL+ZpYy1+ZMhyZc3uBoesRdiLDIc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ce2ac1751e044316066286c285818ff2d9cbbca6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0-dev.20170816.tgz_1502894604033_0.7334152809344232","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170817":{"name":"typescript","version":"2.6.0-dev.20170817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170817","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dc9ec8bd893f20ebf79745bf152857b424a5f74d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170817.tgz","integrity":"sha512-MZ6HqMi+yP4vgdtOTrcIIGAhHx7BXDskyXM7To7MeOM6OG8AaUj6vDrNPrv+zSb/FHHvwoWQYOJtEIQKMrTr2g==","signatures":[{"sig":"MEUCIQDWcGQd6/y9QKfE3gt0IUFFlHUWpRci7sIAJfKPHt4OvwIgDsKVG4stBlLGkNuYmPQ5wfG011A1VAEyAtF+3w0O890=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"babb88a0aa4f240baee1264f68e77f1a5be67bfb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170817.tgz_1502981953498_0.7536783607210964","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"typescript","version":"2.5.0","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.0","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"60989e74cad93c28fe35f7f7b41fe9b205a25701","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.0.tgz","integrity":"sha512-O+kHENcJ+LDqMeToLMwGTvdhqMt5NuNwxs/IMaXID+Vfs6+JOej+MTNBOKtjStUQlMLDIT0Bp5cPO40b9MDXvA==","signatures":[{"sig":"MEYCIQC3ruz9r3RQ+dBEBcMYnRo/9yX+uG1Nif/uBv1aeb9jvwIhAJBOYHTS94gBp7h7P8z3eNNHqeqEWcx8qNMsZ1naQLv1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"60989e74cad93c28fe35f7f7b41fe9b205a25701","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a5c9f40344d625ab3a86acad474fcc8474412fc0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.0.tgz_1502992377510_0.32360745524056256","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170818":{"name":"typescript","version":"2.6.0-dev.20170818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170818","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2f169638e89e38b35dd6944de594c4e41dba77b7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170818.tgz","integrity":"sha512-AeXs7+Q4CMl7vhyUcUYo63JWt/MTv3lrNBfQkx2HNZbWZRl2PqlcoI716cicvRMXCuoyhamSyh22SA07w5Zl9A==","signatures":[{"sig":"MEQCIHuVnttzUGpGDw5Z6e+d5p1pJn++XCmk/rscvOljqpJ2AiAA9ufkBSESIH3H2ejyPeoV8GcTW5aiZL5eizJ38QlmFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"eef7d8bd3d974528464c7968deab78b747568c06","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170818.tgz_1503067645106_0.661298593506217","host":"s3://npm-registry-packages"}},"2.5.1":{"name":"typescript","version":"2.5.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ce7cc93ada3de19475cc9d17e3adea7aee1832aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.1.tgz","integrity":"sha512-bjJnDzatnA5sYRquTyC8KZ+9bEHShTPBxLKRZ5SZMZWt3TZ92ANtKHcb6wlhK1oTckQc7YMFE2chtvITyXjjEg==","signatures":[{"sig":"MEYCIQDqZ/g5QVedN5up0wukCjxS/VzaW3kKqB64i7oUi0oYpgIhAMlfdQ1P7V2ClCjG6Oo3yWqoJ1lAJFqX4Tn+jM7x/sTT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ce7cc93ada3de19475cc9d17e3adea7aee1832aa","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"baeedab96c609ec3b48877b7f535b587e0f480c3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.1.tgz_1503082167983_0.16344557818956673","host":"s3://npm-registry-packages"}},"2.5.1-insiders.20170818":{"name":"typescript","version":"2.5.1-insiders.20170818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.1-insiders.20170818","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2ac5924f002a8a5176c18b7d4d8ddc78c2da4b6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.1-insiders.20170818.tgz","integrity":"sha512-C3ePtjU9lldkmmh9cmSf6kF1LrUyHa3l9Yjlc3kWbRudNBwISQEHOqOzn3FCPfqBG3SzKG8inMP/rRAGR7xT/Q==","signatures":[{"sig":"MEUCIQDdnt13A1LqDxky1twANP3eRKUFNwYqa4Fmc5M9HIShKQIgILdhGbBTLNJbvmYJ9qvcwJ0WtrdAJWAg51kW4P1qFLQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"2ac5924f002a8a5176c18b7d4d8ddc78c2da4b6c","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"baeedab96c609ec3b48877b7f535b587e0f480c3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.1-insiders.20170818.tgz_1503094723642_0.472465283004567","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170819":{"name":"typescript","version":"2.6.0-dev.20170819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170819","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"219a43fe5b3842f60e465a3b8af87bd9a1dcfc58","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170819.tgz","integrity":"sha512-zo10SV0RPiIzAcr108qjczvcoTDI4MAhOgSI6MbAH2wOdvgMRqf7xkqf6GgfPAoM7uPT2D7vShfF+9QR8Inc3A==","signatures":[{"sig":"MEQCIHZaPvoAOs/50ihufErrrxXduBR1ACX9d7lxMk5HhKhpAiBHMDOczPSc79my/baj4uFatTZ2Vyw+GuQyv4FhHeUyBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5e8e735db55e82ff0cf4bddaf4f0fe6d8a4d39f7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170819.tgz_1503154016756_0.6348706351127476","host":"s3://npm-registry-packages"}},"2.5.1-insiders.20170822":{"name":"typescript","version":"2.5.1-insiders.20170822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.1-insiders.20170822","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1d2e941776d15142d699cef4e209bf904a6aa50a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.1-insiders.20170822.tgz","integrity":"sha512-K/YkOjY09q/kJqYP3oi3PeLuIxSobXYO32+yIDqqel9GFtSU5zkbP+GoJw1FfnFG0O/BzYNBVmA8t9RZndg2nw==","signatures":[{"sig":"MEUCIHs4YrQ8Oy5YTf7t68tEd28wQzB94kRrk4DhxYd+yqrgAiEAww9n0Q6QYQIa0yI/DNi4Kir7tJOfKeWO8PsXLTIhNAE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1d2e941776d15142d699cef4e209bf904a6aa50a","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f5698fc9ab65f1b2cba1e0191b1e2c371844a45a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.1-insiders.20170822.tgz_1503362862792_0.2260023602284491","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170822":{"name":"typescript","version":"2.6.0-dev.20170822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170822","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"808c45bf362228491da9fa0295b7c05eec1d2715","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170822.tgz","integrity":"sha512-RBKtNKF7czIAhmPLP0bp/lUUSY/PbEuM5zkzxNmItbgXSn+S90pxGKnwofrZYFoiudZc0dVTBV6EnlTXmMBX7w==","signatures":[{"sig":"MEYCIQD33pQyMhWFp30qqYZQACAYDe7jqhWNb45mjzxLiCxHQwIhAJ+iLxhRN9hlJbKifS2O+2keaoIUcLmQicqYHsICR3TK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2b1078441570ac2ad18788d39422cdfdabeb2835","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170822.tgz_1503413075730_0.9618717215489596","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170823":{"name":"typescript","version":"2.6.0-dev.20170823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170823","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e39a10e9928c467c452daccec574f7fa408e7227","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170823.tgz","integrity":"sha512-CXMBkISao3hUdpO/mpBde4i5f4/H/tQyD8dA/YpL/44284LqWKEk8R1RHhnL0PbY0S+7ApMdaklhml3+zMh0Rw==","signatures":[{"sig":"MEUCIEKMlTD0PhSBKJWLnsDWJEioB77Rhb+tDq6XfwJuvDt6AiEAkq9PJto7PsTqxBm18lVw/JyPzm7mn3+ntkSGEKQgkBE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8d44e48dd0f63a2f48bd5045d4833e709c299a3b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","dependencies":{"browser-resolve":"^1.11.2"},"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170823.tgz_1503500317997_0.16027968609705567","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170824":{"name":"typescript","version":"2.6.0-dev.20170824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170824","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c941c50612daa44d76d73f4bbcab70baf56dad26","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170824.tgz","integrity":"sha512-lLus5j815vVk3ib7w399VFVyQ+6RwXUgZKNa7gkDdflkdXi5Ss2jbQq0P/64XX6DJ+OiT5gwLrXaGN+szxEM5w==","signatures":[{"sig":"MEYCIQCrksHEvnzUTGsrx84yleJ6CltcwAhOIfhbeSqlKL/QPQIhAJqGWuWoowI4+O2ettsg1wqQXZ1tyvMyKO9Km8S0RTOi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cd2ea9a12f2bf42fcd4747782b34543a6c36c08c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","dependencies":{"browser-resolve":"^1.11.2"},"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170824.tgz_1503586029679_0.5719394437037408","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170825":{"name":"typescript","version":"2.6.0-dev.20170825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170825","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"031ec551b4118e17a5969a8adf9c9481412c7b5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170825.tgz","integrity":"sha512-lqC2EiQ4kV3MwPFGmku4mzHRHXilf/do6quUYytd9uQN2Gwp7PZKCh4dK1s+VHe2o3C64IKNKZZNhtChysiguw==","signatures":[{"sig":"MEUCIEeaAI5U59zIAMZ9AERa1u3mXRsRI4QcStK9u0prqvGBAiEAzedWHPhNmcqj38FPkHqS9N7OiQ8slSN4v6ney07bnqQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"62eaaf92069dc450128cd93320db877460722fde","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","dependencies":{"browser-resolve":"^1.11.2"},"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170825.tgz_1503672911731_0.3976198988966644","host":"s3://npm-registry-packages"}},"2.5.1-insiders.20170825":{"name":"typescript","version":"2.5.1-insiders.20170825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.1-insiders.20170825","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1a353093e4c4806b139f2706a3c10399d02c3706","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.1-insiders.20170825.tgz","integrity":"sha512-r2mrP+HfV767H77QIqpUEDySaazPnOe6sR/iYDN47j8UQTrGhEeD+bpRb5QKnQ0prVbQPMnu7LMEXDe55D59dw==","signatures":[{"sig":"MEYCIQCMimrzqDZa/cl2ETywKhijoq8c9X8Sm0lNKQx6aoN0IAIhAPJ8urQBYRXUN6pbv1GG6Z1vlWFKxHvq2dd2/ufkvDRZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"1a353093e4c4806b139f2706a3c10399d02c3706","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2a2773fbb40653fba294fd690c9ea4d602c79f81","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.1-insiders.20170825.tgz_1503700963882_0.87099987315014","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170826":{"name":"typescript","version":"2.6.0-dev.20170826","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170826","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4dd23e502f915496c245d558eb0feb13605ac432","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170826.tgz","integrity":"sha512-QDEA+/GuGgtLGkIbXbmXJr9sff7jHET0FV5Hut5EB7Ti8oroyuNIDU1DIic/FtQOuPlyA96n3qVmSXe9ol2++g==","signatures":[{"sig":"MEUCIQD4D+dUKbwsnWTVPoramL8FEUDFGTU5zQtNwwBUFZ6HZAIgHN8b719fXVKL64RiCh0B2HnAW+27okmpxyC/P3zPiHo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a32d99dfc8da65565ea037e76770f0dd2711a735","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","dependencies":{"browser-resolve":"^1.11.2"},"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170826.tgz_1503759011862_0.9020352093502879","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170829":{"name":"typescript","version":"2.6.0-dev.20170829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170829","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"af3900993978d443bd39121509f22df4369e844c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170829.tgz","integrity":"sha512-mmHkDLs67phJUnIJ9QihFPafSnxJWCY7J5uDTsgc5Xg8GaQnAkRanmG03sAh24qKXOGk5ndugz2CmbCf56cQSg==","signatures":[{"sig":"MEUCIQCOkAaIGV1HF35JSUCJrF5H0LREeV85k7pm+VodOSaQ6wIgBJh73F83jLW+XMuWMv8KeV6K3Bo9xG/HiB8QvEvC+iM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3ea031cf1cd8cbef03d02261bdc50e1b9a62276a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170829.tgz_1504018669764_0.4772330252453685","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170830":{"name":"typescript","version":"2.6.0-dev.20170830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170830","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d2672549fa1568db5eb2b3437f5ed635ca15a55b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170830.tgz","integrity":"sha512-15GiU986suiDKa264HRFuMR2y2jAuN7a7E1DfalkzdezEcq+b6wsV9VOrhT7IhHQCJDGFEkFYgUCgbroPWidBQ==","signatures":[{"sig":"MEUCIQDQqKK+JmgXLYXP+HQxAtNaim7Vlq4JveGB2IXIeDhB7QIgTLemQG3ySy9CECPi1SZyEUclayZkorx62J2sDDgF+T0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"27e590dd5ec517007c3eb0d00b497233e63132d4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170830.tgz_1504104825119_0.39269257872365415","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170831":{"name":"typescript","version":"2.6.0-dev.20170831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170831","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"43b57e5ede485aaecf57a258bc4f8066eec2b1ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170831.tgz","integrity":"sha512-pJinwANv8d2ePk8QvAoicrjXsj4H0cxgDP/GmXpdlCL0XZ2KYIwKiot9w2nyoCM9rrZ9OuYxmzlkT3KpG1Cxow==","signatures":[{"sig":"MEYCIQDw1ScmT2TVjr/52NueOHjaHu7IolwnVSD1foJ7foSvkgIhANj9ZxB0icEzY67Ff2hOrptNvr7HvuJG5F/e3/BYWfBE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4c543230c6b01a755c362bad7255a655821fed31","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170831.tgz_1504191139221_0.42834356031380594","host":"s3://npm-registry-packages"}},"2.5.2":{"name":"typescript","version":"2.5.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.2.tgz","integrity":"sha512-fExd1zMlJ/xQsNna/P9OsdN88hqBdBgKNhgqK4iewCe4BaIOAO9lK6/LDzwgmCFHCoQ14ULdxnLUmQjzu/Yybw==","signatures":[{"sig":"MEYCIQC228FIQmgu6vwmS4W9C8wus0mqAWahAkeGvCSXxxHkwQIhAKjsD2NDqBxsUgOQaH4wR6os1whZVyOc0wsfYRB6fp6b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"038a95f7d9bbb420b1bf35ba31d4c5c1dd3ffe34","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"171c664fefd945301ab0aaf287b3d1f288c67900","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.2.tgz_1504197626785_0.12888751062564552","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170901":{"name":"typescript","version":"2.6.0-dev.20170901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170901","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"008e5c1b4a2ca1f5f2ffaeb867611aca14618801","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170901.tgz","integrity":"sha512-futB+1BkGh06e75CpcdCOgB188oZ9ieaecTGL04pxJHlx5wy7Y4a/o5O8aLJEwllrXJgUvDemMMRI4MWwydbYQ==","signatures":[{"sig":"MEUCIAj+0Lb7Ntvglpjbzt9a82Vawbp3oOXrgH61hquJd6anAiEAjAXf/BK7Btcbz5AF5Z19aBUICUk6DpiGu09XwzQI8QE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c7b4ed3a91964915b953b34ad2ae72f36e7d6efe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170901.tgz_1504277589428_0.5665403136517853","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170902":{"name":"typescript","version":"2.6.0-dev.20170902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170902","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"039bb81ff445a3048564816b5496f4d43d839cb7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170902.tgz","integrity":"sha512-7P6DWJnxKtjll270Uxx1tJFDO9DcFX7EwZR1Z2HGekl2DSaiS6ZFfitHgdeemfh5imqna4z7ccQF5vOKOhGGXg==","signatures":[{"sig":"MEQCIC0Hog9G1bE7TWQqiVhdNw3zsA8uGTy2B3RNnOq0gH5eAiBmKOvo4tECANFiPgvS+pGNarpGMn5T7ehTh3k6BfftTA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"541920eb314e200fb0b5ba989359e8fb7f6f8a4c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170902.tgz_1504363574271_0.843000358203426","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170904":{"name":"typescript","version":"2.6.0-dev.20170904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170904","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"541cfafe30460ea9e0db24e5a04d61d3b0737856","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170904.tgz","integrity":"sha512-xd0k7yuB0+DvjYMvUsE5p4NBID0YZi0RXSDGHkHZT+QU+YktA+dDtTM9eMNgbaOIg5PuxZFdZBc6bktAptQSVg==","signatures":[{"sig":"MEYCIQCzCQYcec1FRMZmejOsxt5JEGMp30OmG4/VyDBoM25zbwIhAI96Ri6U/66uJEYzERM9tOuNzZCTlc4qnqpvbKXQ6dcj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1edecac0aba9486d8497a5ab592c39fc32a6a635","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170904.tgz_1504536512624_0.25852116104215384","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170906":{"name":"typescript","version":"2.6.0-dev.20170906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170906","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cd0a13368fd76d3f469e402f5b07199f66d395b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170906.tgz","integrity":"sha512-ddIhI4462HWNCrb/tUQDCXVuoUYZ8kmeCFjipfPrdHvG72Kd1AezmMCSixU+GTIezzhLFJqxBwfAEq9k42H6lg==","signatures":[{"sig":"MEYCIQD20lWJyRDgA4oBMihH6vdrlps88WICA7Bsu+Qu91x91wIhAM2L/3+Q5fF5/OWb4fjbjSnFEFkRQvegGKbJumCo942j","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d790f1d9d36aa60545296ae8c8dff6d92d34b2e6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170906.tgz_1504709744615_0.9891123035922647","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170907":{"name":"typescript","version":"2.6.0-dev.20170907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170907","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7fc5e641c8670c68ef48fa297b35a0f611e1c685","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170907.tgz","integrity":"sha512-2zGxr+tSPyvu0RVuC3Tl7gx5SmNQL05eAutjQJHSTvz/fE3Y3bnW3n9+u81vNnpzoBQ9M6Y6TBbyfNr1+LP7Qw==","signatures":[{"sig":"MEYCIQCrtOny/LWo/P0de79JiSSYU5J1wJdAilRFE2fZ+ocEmAIhAKfS0T1DsOO2atgd+Pq7y0CTQxl2FNkB89EY3aQJx6Xv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b533b24686d5f2c799e2c5edf6283243b6a8d2df","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170907.tgz_1504795786265_0.41996534704230726","host":"s3://npm-registry-packages"}},"2.5.3-insiders.20170908":{"name":"typescript","version":"2.5.3-insiders.20170908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.3-insiders.20170908","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"95ab62d6aad9e6f0d7a039b33925a0d385ee0c8d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.3-insiders.20170908.tgz","integrity":"sha512-MjrKiWc1GkJAnBqL9PLWaQV1L5wAkx+rHCcm9st+kRspEc5A5Xm3xCqcfAbRDpjrc6k6qbHUrrPvDGJZM+s4GQ==","signatures":[{"sig":"MEUCIEWIWfdm3kHDdGz53Og7hcQ385xy0X8klfYbb+Fj789UAiEAyCL5YOl3msr9D9LSh8MKBVz3AeVIU999YdVtaZnoHQI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"95ab62d6aad9e6f0d7a039b33925a0d385ee0c8d","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"655145ca58b4b4bc3c9b101b4959c5637a61c8e3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.3-insiders.20170908.tgz_1504829181119_0.009933083783835173","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170908":{"name":"typescript","version":"2.6.0-dev.20170908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170908","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6347ba004c0f7335bea35d6d5b405fad933bbe25","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170908.tgz","integrity":"sha512-Ik2B9MWdfG1P6TWq5umytEyPJqangpEQ0xxaE9RJGmpbBAokL+j3xW1BUxhShB2SYBZDmiNW72/0yQwuR2LFJg==","signatures":[{"sig":"MEUCIQDG949fc+Af5hISsazXRTe9XjIL5WhP6VVIol25eyIbcgIgMR8dUTHI67nAv5z3+LbvH2r33gQKwl88LaEDgs+IQ60=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"02cfb81ac0c9b870d31be14b16b0a08ea24ed32a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170908.tgz_1504851041947_0.36501152510754764","host":"s3://npm-registry-packages"}},"2.5.3-insiders.20170909":{"name":"typescript","version":"2.5.3-insiders.20170909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.3-insiders.20170909","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ec192d0a7c2948489f98b9169966333f45fdf647","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.3-insiders.20170909.tgz","integrity":"sha512-RCLUy13tPvfTmFSBdMfuE7yJTYAbAYG+PAFqd89XDrYugDbRlZb3sej3BogFVtePjfrlkzmqAc+eMs21jjqYag==","signatures":[{"sig":"MEQCIBADC0Wo84gAlynePYzDBCwRa5li/CyfZu2zqnFw/agHAiBft1e8JMgwJ+y7Y5Z99ls0kOnWAHv6YZec+D7bOZN8GQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ec192d0a7c2948489f98b9169966333f45fdf647","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c476a08188be95273037838d9d7cdb750e39924d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.3-insiders.20170909.tgz_1504918202005_0.3444040399044752","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170909":{"name":"typescript","version":"2.6.0-dev.20170909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170909","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0e5e6ff4b7f964f1e876d15d48742678daac4c8f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170909.tgz","integrity":"sha512-aV8r0BmnlqTuMO3Dgs12TKE4eu9xmsquQ4KnWkzrh0G3vYhCcQ/uul8ZM33FnjToUtJLaKuRKYgXhzeNTNsyGw==","signatures":[{"sig":"MEQCIH0bJ38wpsTWqNDqTdgXYSLLxbCJ8/OdmmB2/xzJJrRDAiA1tnHF2hYV9z8nb8/ZwIOaeKmDf2lvhF2NXVMdnKb1Fg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"409d6597ebde2fce5673c9704907e339c8a5dc2d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170909.tgz_1504937442041_0.8490883414633572","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170910":{"name":"typescript","version":"2.6.0-dev.20170910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170910","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"caa83f1ecee5dcbb950f28c370f482eb3770a672","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170910.tgz","integrity":"sha512-L2VE1pe1UG1X3o29MFk/UkK7ePui+tZIXeQ8NKjFqFb1mCoQ3u3bzkRx1t3sq1epGGUlkep+er60l01G3oAovQ==","signatures":[{"sig":"MEYCIQD/cikIhrVYmg6kivv3kWMzPOTV/P8XM8qkaTJ5lB5oMAIhAIL313EEanTl/PEqL/FwlZs1KP7L68W/60lxIDSxLiCD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"eb80799ef0e2e47d8a1ae74f395d1fcadd263340","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170910.tgz_1505023784729_0.4940042616799474","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170912":{"name":"typescript","version":"2.6.0-dev.20170912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170912","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ee362716445f7864473f9fdfc8abc051f9f0e5cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170912.tgz","integrity":"sha512-j+yNuRMlQlUdehdToVOda0ExJ+Mb1LeMp/j3ZZT8+FmDcbJxxX5wWBzjjJYn0CBL9llLkVpVuAfRCewYQZ1/Bg==","signatures":[{"sig":"MEYCIQCfcy7TcvkkhPZaXRDsyhdMe1kidG0jhTcf6LQXCiN1mwIhAIEZK0ViFm32bydMgJpTFotCFQadSP7khpP3A3R0Lel3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2fbc2259a120c7be22397f01b6f99ce3c4306536","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170912.tgz_1505196602031_0.31803425145335495","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170913":{"name":"typescript","version":"2.6.0-dev.20170913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170913","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"723a7cf648481bf5dd763bd60a81a86c9417a052","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170913.tgz","integrity":"sha512-2qJp4Qg9BxnjClMYpkwMCBmFgJ6i94l8p5onOryv5Iiag3VenfwgBa9ONMY8s04AVnBTD8tZPNokZY1HAymZYw==","signatures":[{"sig":"MEUCIHImXb6/hEI8AMWKQXkinzzNOqhOuwS+u3qFVlEVYfl1AiEAtnJfNuebkygZbjShF/4e1HsAHB+8NEYuyqqnpTP+VNY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f2c81cc4f4068ef30b1f38da503887e44be03ac9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170913.tgz_1505282950404_0.06867827312089503","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170914":{"name":"typescript","version":"2.6.0-dev.20170914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170914","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4f01c8303be9b61f22d4614ea323035a2fc1b8a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170914.tgz","integrity":"sha512-WzNhZEHbT8rjt1t2g6v3Y9zWwkgfqyDR/XcFalDfaG4UxKznjrabdKJ27SJbkQe9cZacAplpIlMHPW/KzGzHzQ==","signatures":[{"sig":"MEUCIQCtz24swm23xW9oSzO37CGazemzyx2q/Yutc/dDQ3rEhAIgJx00aa5n4Ko+PSjajw3e4yoQYNNeFn6erzntf1w6Zys=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"be5c00f4c9626848fe8e812aad32b86020c296bc","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170914.tgz_1505369341623_0.07892251969315112","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170915":{"name":"typescript","version":"2.6.0-dev.20170915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170915","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3d1bceac42f833af844e36dd9ca17c2d7d006d26","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170915.tgz","integrity":"sha512-NAfnuKDjex4HM5Ug8ftLtCORX+HTPH5AW5DUqommA/g0xPQLslwO9no/eX3StmFrnRpqxjNB25h4WCFeuasTCg==","signatures":[{"sig":"MEQCIBssU4NRJ3LcumZkgSWWQ2VRtfDVu5SCs1n8HDsWuKBSAiBNhwuWyw2yNmK3Mxv0yk6OTl+uhhLpGCEyX6DvUtR7gA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fd4a8d1516e5e5ae8c0c8b7f47ed4191a1799e68","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170915.tgz_1505455848509_0.17834743740968406","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170916":{"name":"typescript","version":"2.6.0-dev.20170916","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170916","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a341a4969bbcf1b0cf19e55bc91cd55082abd37e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170916.tgz","integrity":"sha512-vS2ZnfmOcxDWykW9tHCPNgfjhdrgrw4XZ3uM7wrThxYjh8MI+xDbp1jwLc6kSMSFayTXfuV9UnztRWNa+TqoKw==","signatures":[{"sig":"MEYCIQDUyUv7PHuYyFcTcfozSoevUj9vGnpPEicpsKj70hFleQIhANtMX3j/25njmuH/lclc+awwKpR5iUEUHt2XVNCwmUzx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0ac8406cd7896f347e17576e7f6c99e767cb35d1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170916.tgz_1505542174487_0.7293181656859815","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170919":{"name":"typescript","version":"2.6.0-dev.20170919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170919","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"08574044531d223fc781f7e517eb7de435f8b10a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170919.tgz","integrity":"sha512-JuWdfW+tUzvJfk+EruNNYwh8eVtKRfAwrHr6yf3Oz+Cc3CFn10tgcIqWH6j3wkjDssCIcCO5w3CWIrQ+nmt0nA==","signatures":[{"sig":"MEYCIQCVhVwvVqVp9H2x7eNmBJRFede/WbQEK2E2rtfWhhY00wIhAKRk48RBFjoIwPvnYO9++ddX8Wi6BzWXWgZ7Mmurxl1J","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"21bbee4044b792bd835423dbb3db6608ae492d24","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170919.tgz_1505801388816_0.4943979496601969","host":"s3://npm-registry-packages"}},"2.5.3-insiders.20170919":{"name":"typescript","version":"2.5.3-insiders.20170919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.3-insiders.20170919","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eb3c26c12db206f4c36a85ea7d2c142e3c4dd72e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.3-insiders.20170919.tgz","integrity":"sha512-qB/0UCSAPpi0ItKNTBwPot+iA2LDJYtWrNeRR3OedPI/KG34zSYl76m6BpweMIWB4Gg33mUAY50cadnMAamkcw==","signatures":[{"sig":"MEQCIH1xToKSnvFLx3+apjL/UQyQfOejVBQQp3JzrjaGMOHAAiB66t02NfCCy+JeA/T/20C2BTNDm/LBsdceFePufsNJZw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"eb3c26c12db206f4c36a85ea7d2c142e3c4dd72e","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4a63ed7afa7361db95661c552114c70b75f56879","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.3-insiders.20170919.tgz_1505863483759_0.9550785711035132","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170920":{"name":"typescript","version":"2.6.0-dev.20170920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170920","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"511a16aa1f5cf88fc7a912c6ff516fd0d563ca05","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170920.tgz","integrity":"sha512-2+tsTOwQUztFl1bBYzuH/4+mLFDNKjGsB2GFTtRf3o44D/2yh/yzpaAmh3/XIkhSWm58dM7Jp/7WhxC7/IouWA==","signatures":[{"sig":"MEQCICZLG4YPGHI5kZX+xKdfnZF5s+sb45ZCiHAGTFI5uqOjAiAVdTEWN2L1V0kYoCWtsXYDODbxK0zFtBtawAwO71wihQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8245597bfef17b8983b6a642e9326bce64276633","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170920.tgz_1505887909596_0.7675170639995486","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170921":{"name":"typescript","version":"2.6.0-dev.20170921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170921","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b0a1f3a4549a9d17e5a91b17e5d255b3090a737c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170921.tgz","integrity":"sha512-sJey1YEppB52tuS2HDQEG3k+EIAF5TJm/AB3lmH1chyBcUVsOg1++Iyx4YSZvSIsGnBMO4+WdJ/scvwF7QjECw==","signatures":[{"sig":"MEUCICs/a1RXkcrWEJok+WWa2XtBOlBKuZxy5eEQifv4Pvd+AiEAxlqypQBdohDheOOJakNGWZGTwovS0OpwMuqQJGVOLV0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d9951cbb8ec8de855f04310b987a7cd2082e7e1e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170921.tgz_1505974381487_0.5453188403043896","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170922":{"name":"typescript","version":"2.6.0-dev.20170922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170922","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a9bab359496679cdf80832720140b24eb7c95e42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170922.tgz","integrity":"sha512-X4q3zz464yG54r3nU9chLk2gC+qkH4dP9QzxoG+WIQ8iDAbJIgaecPZFMB9j4XXagjya4Z1KVLPUlSNX7EAKKw==","signatures":[{"sig":"MEQCIANCpftIMhk9RD37LqJU8GxmImaAZiK+3pi+xYE4F8znAiBwHHe5RuBUePSHU1unnwFGf3efSakjUkE/LuipQp+anw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"30839378ac593386fc0a2a88512e2d26c38f3a24","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170922.tgz_1506060552389_0.26522842957638204","host":"s3://npm-registry-packages"}},"2.5.3-insiders.20170922":{"name":"typescript","version":"2.5.3-insiders.20170922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.3-insiders.20170922","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0401084c938b26aaa53375c5864c951692af8dc8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.3-insiders.20170922.tgz","integrity":"sha512-gluBKWw1QPfpRxDvzCf3WmQ7NYjwZtAV1T6F2flXvDE2+sw+gda4GZ8VzkvcFuOU6qx1I6/e7jH0o2Q39OXE5A==","signatures":[{"sig":"MEUCIBDwY1+uvIPnh/vc+53/86Te/ZlqB5yzCpe7DYLXvtpFAiEAzxdTH2OOA1iTv/iEbP+udbRj9250mXo88c/fy+2wT0w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"0401084c938b26aaa53375c5864c951692af8dc8","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"94b4f8b79e370020cb31995e8fb0b78f9ba94349","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.3-insiders.20170922.tgz_1506118061598_0.9430080126039684","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170923":{"name":"typescript","version":"2.6.0-dev.20170923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170923","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9318afa292dc1c87325bdc4fff3d169807219c2a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170923.tgz","integrity":"sha512-KqWJdDTBjpM6IlUbTOfsB1GhQv4GEkBidniiiI3zwBhOtXLdJYZPdtGfz8nX42AUDcIcifRBjwIy5aOCvO1KqQ==","signatures":[{"sig":"MEUCIGsNndjS/IpiiQcEOw6fa2HvobJhqaXHn/59v5p0YSJ0AiEAr6tGy9REt73Qys2BJGaX7HfKblmMZvrmMYJ0zQfucec=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0abfd6a16504db3d3a557447fa32634222867574","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170923.tgz_1506147062960_0.05495683755725622","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170926":{"name":"typescript","version":"2.6.0-dev.20170926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170926","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"69aca48d0d7c38b69638dbb798e499349b86044a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170926.tgz","integrity":"sha512-Hb8TZnA2fH75G8l7Al8gbv6KR/jXnvXXQbrq3k7gAHHAGo8wsLrPSTYqBdInfm9LmZKS+qi+Ix0vfTHxmpidow==","signatures":[{"sig":"MEUCIQCkFjZvuPMW7Yn1SB/o1flKY4s7Eh8O618a8qYmXxMIsAIgTkLPO7Y3lI2w/Sw75nJ7IqxjLA0dDnv7ZEJDhK/dvSM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"70087ed0d80157439d1a40858d3b361829457bcf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170926.tgz_1506406244720_0.8128603189252317","host":"s3://npm-registry-packages"}},"2.5.3":{"name":"typescript","version":"2.5.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.5.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"df3dcdc38f3beb800d4bc322646b04a3f6ca7f0d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.5.3.tgz","integrity":"sha512-ptLSQs2S4QuS6/OD1eAKG+S5G8QQtrU5RT32JULdZQtM1L3WTi34Wsu48Yndzi8xsObRAB9RPt/KhA9wlpEF6w==","signatures":[{"sig":"MEYCIQClMk6c4URoFHHikw56L9rGW0Wlf8Fg4AtdYE311yQoCwIhAOeUvgOydj/i5mexh2ryqpuy+kzR0OtJ2MNhK0WoA1my","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"94b4f8b79e370020cb31995e8fb0b78f9ba94349","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.5.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.5.3.tgz_1506461635237_0.99989277520217","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170927":{"name":"typescript","version":"2.6.0-dev.20170927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170927","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d462f9e2c81258f3dcc4afb23c7104c4388f2962","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170927.tgz","integrity":"sha512-9eHvfg8PZivz8hUOrCV8G/Aj6Zk+Fa5ao0+colK59ALr9SQG9POCSjDGI/Sc3l+Q8oiPzEauGkC8eqRJSpRF1Q==","signatures":[{"sig":"MEUCIB/AdwMkbBfAeBd4H5+xRjQ20t+3u0/XTID4GfnnzaIFAiEAusRLinS8OxE2VdqlS9WDE8sSzQFHwWN0irozLk0xV3Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6ffee104ca7f8ec18170ff560bea9ed5e9e91fd2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170927.tgz_1506492751148_0.7486718771979213","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170928":{"name":"typescript","version":"2.6.0-dev.20170928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170928","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4d13c1e864d16627eea5f73ac9fb15d7f0b70d9d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170928.tgz","integrity":"sha512-1sku5CE2cYFf7E86+NX6qRhSfHysLt1q1CmwXa/7othr/4Yeljxg1/jW72gFr08bM3eKXc9sxu+S5F2DCHTSyw==","signatures":[{"sig":"MEUCIAo5TuiuPOPA+l1UufaoHUlvNeTKgwosfrwhngICZE5LAiEA0fZh3L5GouvOdcer4bXvtqxUKIujEMmrGtimyyFKRFE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9b77dd6a98a85d4a37c389518b10ae12e46cc931","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170928.tgz_1506579179624_0.8129954724572599","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170929":{"name":"typescript","version":"2.6.0-dev.20170929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170929","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b3502c926bf639a4319b2fe66418187625d64bda","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170929.tgz","integrity":"sha512-+xfpZgprJrstxVUUGnAWFXyhGCVsLj2VVT2mkcLJiOeQ394q4fHlhdfPZ+CTLAvptcK9Kv18lq8L5UdpedQYyQ==","signatures":[{"sig":"MEUCIBL7ozMsePkzeV5BDPCaLZrieFvvjyvRw4CYhI1nhAQyAiEAvBSWIMhIGguBts30KgN3vqnPBdO79g632I8SVMAVeQQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8e4c559f2c9e67df770d4a1a10a9a0536e26c8a9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170929.tgz_1506665581129_0.8851116439327598","host":"s3://npm-registry-packages"}},"2.6.0-dev.20170930":{"name":"typescript","version":"2.6.0-dev.20170930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20170930","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1ddb510dc99724f8a8f8279ff17c0b4f01ee2c26","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20170930.tgz","integrity":"sha512-cBcLhR8YEyBkRAaH984WLIl0W48sUlHjRyvA7RBPp+sfojrtQa2tFuuoT9Zf42LXOSUSaawc1ImKKBPgq0jioA==","signatures":[{"sig":"MEUCIQD4/opGoq/nQNAQ3VU7o6m0eTfvcFm6eC4Q1Bsl2ejGEwIgMBQ5//iWdRKHDhnNJzJGenSx5i/lQZ3VXAot75kelTY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7aee3a102c60b2d1778963d14843a89badbb7baa","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20170930.tgz_1506752310810_0.8041006671264768","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171003":{"name":"typescript","version":"2.6.0-dev.20171003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171003","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e1d0d6e2df40d8a6a444b5e67c32aa8e6392901a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171003.tgz","integrity":"sha512-IHkdJVI/pFJZoLnl215lTR5RaKQRYLajTNRcK1koSmrS5rU6dJeUNJvSpd+sHVX0mjZTQa4almxTNoTUSlFkNQ==","signatures":[{"sig":"MEUCIQDTCiJlf1p0yC2Zm8zFPhy+4Bp+PV0r209TmEB0vw01vgIgLmPUwLHYWMp35utIVnq+W4hnGgG3icWTxaZ0Aw/nFNM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5c7a3d050d62b4b6a9cb65c71f2bfd0e79f06bcf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171003.tgz_1507055313753_0.3599447822198272","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171004":{"name":"typescript","version":"2.6.0-dev.20171004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171004","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e661eeaaec21bb916403680baebca30fb5c5faac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171004.tgz","integrity":"sha512-oSsUBvAZBXpQLhwZ8vGgCxThOXBloVUgGsAtZJupGw+AUQXwPSSLyCeNve/9kmImUy87LPfI7C6N/+Fw+KuPIQ==","signatures":[{"sig":"MEUCIENaw1LJsQqQuTORBz1mvFeY4KxULMWEQeLLHKFDTWxBAiEAx2t8SRB+Bklk6AJp3P9ShEDPMnjY9jSlybSq4mSyMnc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a3853d0774fd5312cd0b5a6b2dedbbd2a08bb966","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171004.tgz_1507097294702_0.9235125558916479","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171005":{"name":"typescript","version":"2.6.0-dev.20171005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171005","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"002e8a48528eb1d0aa81dac65615f510773fb7c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171005.tgz","integrity":"sha512-tnlYauRIL6QH3EYSmwEE+Rr/+a3nQruUJFbVCyIQL7r14hkpzLRz4uqV/Vix1Cmnf7Q1K4yU3l+YcoekVjM1tQ==","signatures":[{"sig":"MEUCIHVIBvR9va77ZySZOJonkrb+aqyaZYBMC7GxkIW22FZZAiEArfOvZ+v8hilSerM7sh2PSh/sbHZpb9InX08BnSycF0w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c02865f3573840ccfd5db7ec7119905e7cb054ea","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171005.tgz_1507183731975_0.19798404118046165","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171006":{"name":"typescript","version":"2.6.0-dev.20171006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171006","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a2d066e9748b39a72353469e8c0c9a98012e1509","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171006.tgz","integrity":"sha512-Sy/znvSyAjnLRPzAvBYkqoSbwHbW+2pcUEM2TlfAoQQcbb6WpxP5jCX9hk0xSU3FvZ/+MnUV16/F2Y3bFUao8w==","signatures":[{"sig":"MEQCICjxBEIMw71HMFfMFAjz/AdH3Wm3oe5o5vlgLTWSIeulAiBVwjwKdy5rJba9Gnc4M+/JWRhfrD8lr2ZBesaCfvN1wg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7a4c3314e816bc7a7589d1e6e52328c38f1fc693","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171006.tgz_1507270406209_0.18894772650673985","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171007":{"name":"typescript","version":"2.6.0-dev.20171007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171007","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"feead6b2bd906771c95fb8ae27e146d5b5ff6cd6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171007.tgz","integrity":"sha512-WUcr7tsml8tyMXjNqqx7X5A9qRP2HjwR2v8uJlZzlGG61zFieZIxEjuj9PG/rhepApCF1BzZih+mZPz0jSpkPg==","signatures":[{"sig":"MEUCIC9NEvnYm+eXK+rVnhvGUO6MU3nn5JP/0TMsKFadOUOmAiEApR4gfeaj/VJ5SfaTyJbL54fmLx2w7yg7l7nkl0U0rHs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e821c2b6e9f244264779045fd1720fb9d16c0bb2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171007.tgz_1507356787746_0.3167004967108369","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171010":{"name":"typescript","version":"2.6.0-dev.20171010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171010","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f769d7c0a1706951306b8dd04bf93954cc625bf3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171010.tgz","integrity":"sha512-zxYkmQlYx3wAyQV0CyXHeTXfPK/93rPCLMdUHTmx2nMy1qhlJXhu8cbBcLkk8Ytx7emOL0FMHIAF9RtDTzOsGw==","signatures":[{"sig":"MEUCIQDDxOK7PcM/3QTzb74gxUMwubmf44/GtQX78Eqw4bz0EgIgCM3Dj+J1N2YCwPkWs/Zv9d2doZ6f5XnJ+PBGOK21GNM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d23e5f1ee2fbe67db4ed0a5ac6dc856dfc7ce9c8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171010.tgz_1507616081902_0.8465295415371656","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171011":{"name":"typescript","version":"2.6.0-dev.20171011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171011","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"579ba897d319817ee202d0d203571d2ee255565e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171011.tgz","integrity":"sha512-il66U8zNRbF875Gq6cP3K/CthG7Dp9PRpu5w5mVHaPcolzJhrdLa3K2WavqqJg/7h7sPOZvsU8nYdXO61sHagg==","signatures":[{"sig":"MEUCIQCavUqaxQJqlGMqHwsA3l5rIIY6R8lcYEyTWdNID0nWbwIgRgkA1ShWyazmDo0F2fctLQ+mf6ddcrp7nqibiXb1wpA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a7fa187fb2ac58892593e8936ac728d61a57eacb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171011.tgz_1507702508700_0.6046215759124607","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171012":{"name":"typescript","version":"2.6.0-dev.20171012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171012","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"42248ee530755effea01cfae7c3166c78ba02ddf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171012.tgz","integrity":"sha512-KLp7Z0f++UiDRlLomR48pzOwj2We/8WPkKPn9uA5Nmm7qD9xLD0pf7qEqs7EaNHCmGSdDl5bSwU2GHuVRsb2qg==","signatures":[{"sig":"MEYCIQCqFu74zBudN5flGzHLWHCCZ8cfJYzM3Regz+fRu4Q0KAIhAJEpwFXC93LWGR1efg4AFjDHXi3E/jybapW7/5ahC0Xh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"728d2a92ce2f3771ce726f4f6094eba094113ef9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171012.tgz_1507788936190_0.5870849860366434","host":"s3://npm-registry-packages"}},"2.6.0-rc":{"name":"typescript","version":"2.6.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6a8022e2dd3e7033f2dcf187cff7925ea3c8ac25","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-rc.tgz","integrity":"sha512-5dDv8NNGYmipBdXnt9mqWqIbzQ/mY5XWjrLeNEROmkHGJ6TnacHUihXi2SvKMHQsCafbJZqaSO+agMRl8F36GA==","signatures":[{"sig":"MEQCIHppBEx/ArMvoptNoae2NYZsFjcHt/ixw2eoEYBBvbUqAiAUmXv6OYhjflLOEF+QqO3UW+uwnmvRwhbpJI9tMY+4GQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1c790bc4f9bf5102b98c50839ced416ae61b5612","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.6.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-rc.tgz_1507834848444_0.3845503672491759","host":"s3://npm-registry-packages"}},"2.6.0-insiders.20171013":{"name":"typescript","version":"2.6.0-insiders.20171013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-insiders.20171013","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2df25d9ea71f90ef41f8fe3b0829d09c1779de8d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-insiders.20171013.tgz","integrity":"sha512-FcbP+P7z75P1CpI3brE9Zq9Q+XVzRS9K9OpAsIXszH+v/XczUq3SsXj8a1LVyuoZLmptjtj2roLDU2jhAyxMsw==","signatures":[{"sig":"MEQCID8lvKzjA9BVmzJ2AI6O39TxNhfxof7CgLI+cDaE6NC2AiBpGZve5ERQvq8KnyP3vhRtQpcM329i9byq2n5zjDUjmg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1c790bc4f9bf5102b98c50839ced416ae61b5612","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.6.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-insiders.20171013.tgz_1507856359790_0.6845306647010148","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171013":{"name":"typescript","version":"2.6.0-dev.20171013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171013","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7e4105e79af43bf7d08de72cc66becce1d55ce93","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171013.tgz","integrity":"sha512-pa7taT9kgn/svoK9mbeUORPt9GgOSgimd79ZNno7JTzrFQLU8pXnCrfSvGaprs2RKEpB+UEDxLx38WpWQ4r73g==","signatures":[{"sig":"MEYCIQChv7EDQEtvDs/uWUhq7hDGLimLJd2+l/5B0Rbi/um2qQIhAIqB8z6vE+7007KKMsWT5JbGoCsRqBK+YRgB5eK7qBBF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d940cdadfe52999eb37593bb4bcc531ac41c7d48","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171013.tgz_1507875320039_0.5154560105875134","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171014":{"name":"typescript","version":"2.6.0-dev.20171014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171014","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f36a038efc6db6f8aa03cc20fa4c1980084ade74","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171014.tgz","integrity":"sha512-Sm0LDjHwRky4mj4cWXykbfcko1iEsKGBBsVjOWYP5bhHuWQxYrcvdcYLQw7NhH1P7tdIE8eCGn4VMuilpFqj4A==","signatures":[{"sig":"MEYCIQD93TR5NCtHZv18s5lFQCKzYYSvgTlW/Tdjssr1IeEnmgIhAPVxwfocjxO6u1xtKpLOPypk8vhqGyM3Elqgwn5soFFj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"48d380f32875c1f95ce42921877736d74cb3786e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171014.tgz_1507961793902_0.19397647166624665","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171015":{"name":"typescript","version":"2.6.0-dev.20171015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171015","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d0df2cf511bfb58056fb80ab8ee7e390e664c82c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171015.tgz","integrity":"sha512-nzEix2LsOs5r/iU9hH1ixfRjjC+Yo/2nCMPrvlCF08rqjfR4KPydEjv6NhcCLZABrQt2s0wcWq46irZeuonSUQ==","signatures":[{"sig":"MEUCIGOuFXOnwE1zU55SMOcZvgqnUqfKz7784a9UWDEcpq27AiEA4s1FlruWG8zk2uF9LyzHIm3CyPGPPtYQRx5vOi1h6ko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d4c037739500d9f8b42753c57806881a7cd1bd2a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171015.tgz_1508048184364_0.48484851513057947","host":"s3://npm-registry-packages"}},"2.6.1-insiders.20171016":{"name":"typescript","version":"2.6.1-insiders.20171016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.1-insiders.20171016","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b8bc42e404c7bb938ed6f829cc688e8b41835f0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.1-insiders.20171016.tgz","integrity":"sha512-1Q8QHGag/zwAK4p7L5YfnBb+BJttj5FLKpBW37FNXZVtd+78W7CTSSSA/y5DH0zsWvTqCStCCR2Eizl5N3yt2A==","signatures":[{"sig":"MEQCIHzouKVJcIa6zocrJwdvqSTIiy1haOLQk6BHU7qwa6hAAiBggAH9BJ1M0Ekt0dpWraplSCsTuaZsqF39GkMcu/VZfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"b8bc42e404c7bb938ed6f829cc688e8b41835f0b","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1ccc04fe0a892e0e3c416b08efb7281fc6518c24","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.1-insiders.20171016.tgz_1508200677332_0.1356320276390761","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171017":{"name":"typescript","version":"2.6.0-dev.20171017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171017","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9778f4316de15cf35b7dbcdb18a90c1e4468ecad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171017.tgz","integrity":"sha512-cpAFL3ZFANrG8itNrDfbvlA4y27CwkchkFUvxFlYF7xzXxHcvZuUoXCBWxZbhRFOcrAD0uyoVEPSFtnXqnSPSA==","signatures":[{"sig":"MEUCIQDfnEnzPJCrE+J+eddT0malQt7BaJo6Fl8lEvaVzPiZEQIgbFurMX7brjl9n6n7AxO/zrrbS1WJ+uIiuF54jZWEfpA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fcb48dd906c3d8be98423f206dac9386efb4fe48","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171017.tgz_1508220954721_0.9118635861668736","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171018":{"name":"typescript","version":"2.6.0-dev.20171018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171018","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"91e5c1bf84c5b60685796405379403b988f6feb4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171018.tgz","integrity":"sha512-Cot/6K8cPa+M8PppS27QS17jvMW8iKTe97txz5vVnYVGzMejI/b9NxhyYah2TCFl2BCCDt7UdC3F92RMWwvAGQ==","signatures":[{"sig":"MEUCIAp+kXepCQ1+mMnWf7a18V2ihhYnjSVpol4iUsaiwcrRAiEAsY1zb4aAz/OUyd8EWB1Y2aJNEMAwvPMdTM9nSiSqko4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"574ebf7575da8388e8baea94751a092138998bf3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171018.tgz_1508307678619_0.26038321550004184","host":"s3://npm-registry-packages"}},"2.6.0-dev.20171019":{"name":"typescript","version":"2.6.0-dev.20171019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.0-dev.20171019","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fb752aee55ec89404e29cf564c285f143c3b0db9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.0-dev.20171019.tgz","integrity":"sha512-KsPchRvXhG1lIferka0Lff2n/yHFZRmPRNnc0jPlU7v9l9ca27KisaUNemMnXuBIpWDgvokxR7peA4JqGWuXUw==","signatures":[{"sig":"MEYCIQD6htQwQRNu/VrEJzKOTS9DLelBUrQPWNdU3ErWH8MfhQIhAP2yOpBJRGQ7onRM9RGvxH2GWHxmLiGX3N4REy9xKr4G","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8212c962cdc8286ed9067c8446898bb0dc618c92","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.0-dev.20171019.tgz_1508393794653_0.9536942585837096","host":"s3://npm-registry-packages"}},"2.6.1-insiders.20171019":{"name":"typescript","version":"2.6.1-insiders.20171019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.1-insiders.20171019","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a8fa40e50723435ee4e685b6e2f66dd5c5930609","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.1-insiders.20171019.tgz","integrity":"sha512-svUsZSbtPrDkoNsyMn6M3LIczL1RcjaBeaCDJh+nHlYJYeenUJpcHew2LeUTbaqXYNxE5kRk+WkCfDcilnseGw==","signatures":[{"sig":"MEQCIFat+dy9GODSsFx81S9XoaUwtoQ4pmJ1saJA6m2UzL7+AiAalCuTJspatYsDQ2npOXdd3FpfaN9mVAcko0/5H0w1Kw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"a8fa40e50723435ee4e685b6e2f66dd5c5930609","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4c1d076268469ea8ab7f10d037a508425f36d1d2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.1-insiders.20171019.tgz_1508455274205_0.15572443162091076","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171020":{"name":"typescript","version":"2.7.0-dev.20171020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171020","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0003a879e3107f9df23adb8dc5fba90d0db79bbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171020.tgz","integrity":"sha512-Sy1F2YVw7nj2pcMP2bE6YK5dviaY2WRJb12t27EUiW4wkD8GiaZ0sgNBdTKRcvTNFJ8KXjwnl+Ysi5+J5BlcHw==","signatures":[{"sig":"MEUCIQDd16kao5QfedLjibeqnh/wOz2MbagBdsBy2jNBqC3qGgIgGdCgu/y2dfPLFs1KtBjz2dbJWVi/EX3dxl6tPMcJUFk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1ea1254e8ee676f4c9356b3372d83677fd450594","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171020.tgz_1508480133646_0.7079664517659694","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171021":{"name":"typescript","version":"2.7.0-dev.20171021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171021","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"32d945ef7deb0fcff6634173a903507efeef8d35","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171021.tgz","integrity":"sha512-PRBTt1WnEwGwA7CTN0B7AlHgobx1zZ+zpEW/OzcFfBfJgbCsBL28CkIz0ZpsAJNstWOtpC6+BYpwP6Vvne0jHA==","signatures":[{"sig":"MEYCIQDXWJBolg5cIIknxLvz1B2WmEqefNjAD45a47msbVyOJQIhAP4nMVUCd9cQqx3n6WtZGSrTQa3BOjUN77FseEUYLziL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ceba50750b7bd6c8cfc21a5886e6eb9de7f82a36","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171021.tgz_1508566427556_0.5624312383588403","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171024":{"name":"typescript","version":"2.7.0-dev.20171024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171024","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8bd83bafae5955bd2fb683bc4acb499adb92bcf3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171024.tgz","integrity":"sha512-0FcjKogIW+OGhV4R/lK8r+gPlR2r+lSTu3YGIKbZ3gJWKBzgxTQuuQtQ/B4jdXsSPlEw9NczZe0aKM5K4lq9XQ==","signatures":[{"sig":"MEQCIC5CDNTOypK5EZoiPhv48aWYNmt+6kldELcO+ik6AruMAiABwuw6eutMVW/he0G+6/45yPntFXKXbdr7Nh/HgK2uwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"538f1bf4f4d090cdb97dde63bc005bf580e91de5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171024.tgz_1508825839220_0.32846161909401417","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171025":{"name":"typescript","version":"2.7.0-dev.20171025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171025","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"111f4617d164df470594f22f9d4a7cf8fceb9d5d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171025.tgz","integrity":"sha512-S9qiHmddviPhZdMfvfm1NzrTpRewCgcKkdhFjMoeyXdcFgqf/7ViMkl8KVeGWpSxWrkWHKUHR/4P6r9lyvNx2w==","signatures":[{"sig":"MEUCIERvC674qxnsP0tXiP5vqZD5zU5Nrak85xWr2/z2FxrjAiEAvB+7gM679TD5AvfPD68X7mWJ/cdFBGyr/1nbZZdsWtQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fd8980830ca35f07d838de5457504b95e6974d3c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171025.tgz_1508912198532_0.9580594752915204","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171026":{"name":"typescript","version":"2.7.0-dev.20171026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171026","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6d6e1cc753136a262074d5a72425f2d8ec4072a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171026.tgz","integrity":"sha512-YhlZhFNhe8YrBmZlQWYLpqZVVZisZaUMCqwkDGqvyW/QZqyz4JHSX/iTZbiTqHSwfLHwpexj5W59panej8NrKQ==","signatures":[{"sig":"MEQCIHQlIO5eAK3eVnJrn/AiI5SZbZ+j7P4hNcsaOFaSGI15AiBZgKpCM997Ey8SQZAEzpHtcHVbQtKjsAdKU116Obv5NQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"63dcdef6cf062fd0f0d83ca8758ad8bbf730b519","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171026.tgz_1508998932122_0.5784391157794744","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171027":{"name":"typescript","version":"2.7.0-dev.20171027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171027","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"caf2c8d675e1d121bc4c4a17ae6bf924feb3feb5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171027.tgz","integrity":"sha512-0QAKfJIZRTpZFKDGxMl7fqYNpzEYC12YHb8P8WbKglrp3UZeLkzTA5FRtejER3M942BD5SE1rpA5MTbyloo2fg==","signatures":[{"sig":"MEUCIQDLagsYrX2LPMwimxGreC0/mlfJIvq9Q2KDxRbZGrBN5QIgV10Ek118pPcGeR3XTN0LXoybeenpciODSv/zig9GeYY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3e333e834e29ae1a90111996d04b737a34fc5e9a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171027.tgz_1509085450761_0.956389591563493","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171028":{"name":"typescript","version":"2.7.0-dev.20171028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171028","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e4d7db84babe19d37f104aca0872589cfb6f4376","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171028.tgz","integrity":"sha512-yGXRXmQzgtkaLCVIUOrC7XKNpLEx2MBYWdqXUVuCk0jGFk58M0GVhCHxtonzQ1efBqf9kH7iD/O7IeCxOka6MA==","signatures":[{"sig":"MEYCIQCAKroXino+EQ6C5FrwKFbRP/J0Khj4GtIalxMbSEyJGwIhAPX6XhAHcacgcJ1ivSQCKgAFzAeZfi5SfthHmBvIMwUz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b5f292d932d91ab88cec97719f81ec49161baf40","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171028.tgz_1509171820567_0.703912922879681","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171029":{"name":"typescript","version":"2.7.0-dev.20171029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171029","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aea8338cc7e43563362bf5f1b4ab54e94378e66e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171029.tgz","integrity":"sha512-6LkYg0PcYzgI+huB0QwNkRNVaOKKtzUfV9ulYWq8wlIcjsHp66bfh+h21Rf3GMbGK4ta60M3uHpo8OFJQMCRIA==","signatures":[{"sig":"MEQCIDFZmxfZ3ESYWkU4m4tfi6Fcd304NV4c9sOTDN01iLQYAiB8UbEDMfis79OzTNDCbmmETdDDV2WFUCrWThj8LjN/EQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7798f69558b3227f525ac3b56cb2cd8d03bc294b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171029.tgz_1509257558385_0.6019481397233903","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171031":{"name":"typescript","version":"2.7.0-dev.20171031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171031","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"486494720deaba53f60a541697c665f6d512f4a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171031.tgz","integrity":"sha512-m+B7AVXCZWmLYuggkpjakH6iyeupVrOQjGpH1qmkj1JD8aC0sqjs5R7e5csa0dKT66IlmUrrTVdzcrCXOTw7Ag==","signatures":[{"sig":"MEUCIHn9hLSLSCvS1PH2ox7ZDEWtHsymnuSMqphumo97ptwFAiEAinjy9SnOQ/9Udkuhgj5YWljNS7jyoNbX428knt6eQco=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c66e3178ced0cff5c78b8d07035072fc6617f873","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171031.tgz_1509430596836_0.6702833094168454","host":"s3://npm-registry-packages"}},"2.6.1":{"name":"typescript","version":"2.6.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ef39cdea27abac0b500242d6726ab90e0c846631","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.1.tgz","integrity":"sha512-tS2ybGoZKXHJqL+skWRSR0twQf3HmVGaMY8tNfOdi+tvlmPo+JN/ZYAdZuIBzGfPXxcAFhdp4fQM6LxqqU9cig==","signatures":[{"sig":"MEUCIQCEWSoUjF1we1Amt/1F8Ib64toYRMutJsQWJ/T3YodRQQIgH7m/AHZcFoEF2ThOPNUJwnirf9/nLNKOWUZDzvOonFs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"ef39cdea27abac0b500242d6726ab90e0c846631","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"477bdc78bbd092dbed60451fc684735bc401160a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.1.tgz_1509469018429_0.16281037800945342","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171101":{"name":"typescript","version":"2.7.0-dev.20171101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ec249c0e94344d560f753f5c83ae74ca01d29a1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171101.tgz","integrity":"sha512-PaErYUxbwNE8ujeaGonhnFl7iaVkzvsQOuLUIkgDn+jtXLpoXvJRcvPBgXobKOcvWtehVLm2tYcyz61hQehSyA==","signatures":[{"sig":"MEQCIBpVlirDLNq+Swcs4VHCxQqz0ysTQmurruvCipIQq/WpAiB0JpJmA9KDt/vRcugxX8AtVlX8vSHc/IfYSAOcQHyCag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"53ad019ba1c5ced4c0333f19fcd69bd31c07aa85","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171101.tgz_1509516960728_0.7434560302644968","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171102":{"name":"typescript","version":"2.7.0-dev.20171102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171102","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1f11b8c37abd4be1001fd88f4a2f55fb1259a85e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171102.tgz","integrity":"sha512-2KoOkcT9vU0s8nrHAezC5q+gffqj3Df/QG4ZqsY6EN6gzz/5toOFWCwEQ6tMTkJRUZZ0xNAoPAazgJp+X9ff+A==","signatures":[{"sig":"MEQCIGv+e4NLWkLCB4drw8CZlVFUjONaSi/oO5nK8JiqUSCzAiBMqF7fiijarrb8W8nuYH4gJ4zUdkyLXXkh3+nImueH+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1a7a587a9ea11371c3748a632ac7613d20d1e5d2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171102.tgz_1509603286538_0.14505293872207403","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171103":{"name":"typescript","version":"2.7.0-dev.20171103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0e9318e4890701846dd5e542a81573818b4fb311","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171103.tgz","integrity":"sha512-Nt5F/G7/gRJJja893J7ZKjMhySWPt1iq6AJq68z0oQZmDfr/kb/3NtLQIxEtMyZN9tHAjeV4QKCy6TtqxRhJPw==","signatures":[{"sig":"MEQCICFjxN6ptOm3VdLtzRIt6TtR1hwEVnCw1RbRzwEevDN5AiA3oPtle7SUIuLlqa5cC+7n+CNo+XWmS3vWem0zyBJ1VA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a8d3cd6dfe6de3e38d025b2e3556670df251e3c0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.3.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171103.tgz_1509689642183_0.7157303355634212","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171104":{"name":"typescript","version":"2.7.0-dev.20171104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171104","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c91e9313a96a27aef9287ab5d6a10543cb709011","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171104.tgz","integrity":"sha512-ZnGly45fZWMDrehrOFcZ9TyDvdTznT76Bg4WiSXjICxnUBgcDgiEgHtA597egTRMKOAgZbQXfeYnbktZ+xtrOg==","signatures":[{"sig":"MEQCIEZb1JSxtnbJUdq4lOdJwhlpIzz8ITpuxPIWbCF6SSm/AiB9pqcHW1OakzjOfWKp3GkW2Y9yE2i/71NAIpZYSSWEtg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8d5b0529b2bb7650d471b4d64fd88061cde4707d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171104.tgz_1509776198656_0.7404391807503998","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171108":{"name":"typescript","version":"2.7.0-dev.20171108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bd316b6bb0455394d7dc37ae109ca28005b62094","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171108.tgz","integrity":"sha512-tdNqrIdsTBEksRSBsbEVaSmVA7tkk6Q7N4z30Q0NSiVh1GYDg15tpBn7JD+53bFgtOekpnEn/n/cOc0p16FIbQ==","signatures":[{"sig":"MEQCIFBsdRffniSLUd5wEv5ZtNdS4RH5CTpPIDRsGiUpFdddAiAbXptqkIL5iJx+1u3E2SmKu8z2B/W0NHCp8R+uEVbYNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b64944ad17450ddde30d648fce89fbb3e3599eb0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171108.tgz_1510121600352_0.3250115273986012","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171109":{"name":"typescript","version":"2.7.0-dev.20171109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171109","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5b8d55cf06b95f6ffb6fbe76d25f00df6c95afd6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171109.tgz","integrity":"sha512-FC8/zn3R1HLPSiZkJsVB450L8X8Eg0PoHVqz6emXb5z3f8uyM8SxxU6iL2x89DoeQyg/xaguWvuLbJnE1hB9Cg==","signatures":[{"sig":"MEYCIQDUNIKA9tEMBIEsvI4dI4VEu0/M5S88871Lr0ROv5E9RAIhAKamR5NoaHkVyFQJztT1Il0eBhNMABuLLXvWBmD+WZy6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ceaeffa3ab2024aa4a8ff11a7a5d6826d1bd2bf3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171109.tgz_1510208248611_0.6093420449178666","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171110":{"name":"typescript","version":"2.7.0-dev.20171110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b83240d5e9aec6c3a9dc6cab2e92e8008a820cb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171110.tgz","integrity":"sha512-cdQOWn0KBq213PVV1ZrQ9NZTeGrxS7JY0MHWaDE09fLayIyFfIePDRxIZjjTioM5eUl3vKiXA0jz4FQOW64jVA==","signatures":[{"sig":"MEQCIGMhKfig0r8eQuoWHB8Xv+/2H2jx3T9uOqTSGJozJv79AiAm9BpbukxMoDFjn/BwF358Gf4Bs1lhMOsvXzg0N5tXbA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"16efae24338f09c9059c8ec1525166f521110935","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171110.tgz_1510294730310_0.6765591120347381","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171111":{"name":"typescript","version":"2.7.0-dev.20171111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171111","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9f5771356206df2ea5ce316fd2b7e7c44a97f996","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171111.tgz","integrity":"sha512-BJJz5gQ2NWQWHUSHQSMNaXvPM52DK2W/BvCzRnPkseiYgH/NsC9huPBD2sJ3VbDgoNI48F0BGWkoqsMM2ELkvQ==","signatures":[{"sig":"MEYCIQDj+cP4+/08rX2SuVWOnz9+BxXCYRyYkCmvTKn01yVDiAIhAKf2bGiIa9Ac3F37oL47+R4gN5Udgl6hwSgcWxs2gwUa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d2eb8ba640f997c988b6c944fbaef61ab1e142ff","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171111.tgz_1510381393296_0.8131012378726155","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171112":{"name":"typescript","version":"2.7.0-dev.20171112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171112","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"546557c10d2feaac7b94323685f0af38f7aa0832","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171112.tgz","integrity":"sha512-b1VZBtbO/DSXZN9KWSXl5lRa8c1dQu+cWODv1GsOfFo8K6RC98m/nKm/fUdC/VZIZxhtzC798TuanbKo4rVZGA==","signatures":[{"sig":"MEQCIBrIacelpQlHTY232zl7VZFbdl+Js3SDpMZnJZxi4LRPAiBZHgFFMiLfl4qkRXiTyhOx2M07gU5D15tZOnglq2uEgQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b8fbf884d0f01c1a20bb921cc0a65d6c1a517ee8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171112.tgz_1510467217930_0.5014296700246632","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171114":{"name":"typescript","version":"2.7.0-dev.20171114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171114","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"79d730a18d9a67309bbef9a364b8853daf9f3d9d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171114.tgz","integrity":"sha512-mm4+m9IHtf4gqOxEU8ZwLAzWAbP+xZoEZbdchPitTcDpO2HQv4CkVSM0Dunilt5xLod8hb8qeJNq5H5fg0XIzQ==","signatures":[{"sig":"MEYCIQC8OTu1bpQA5rmyDFH26SH1qhIVFgbnPrdafeH2Cam7CgIhAOFUs+fuMoBlY7UAoy8o+aQ9hxC0hBs2w/QbWxSFB7mM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"bee12e6eac13cfabdbe28d5f7ed4372fc24712fa","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171114.tgz_1510640884275_0.612911474192515","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171115":{"name":"typescript","version":"2.7.0-dev.20171115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2fe9e2d2dd381d6485a6572c9f13cd4ab67a5261","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171115.tgz","integrity":"sha512-6M5T2dQY2G7871nYAOtUD9dlSsjaGUvOSZEEi4ECSbIWIkbUXCvzVWubZhnb9j57FTqy4IpOTzldcHKCsRlCZg==","signatures":[{"sig":"MEUCIFRfctVf0SXB1R11Y08mMtfVpXa3U8ZoOncvn+FcUdxjAiEA2U8XKAujK8tPHjlTyxEdYaRw3bRUfqOCLmBwmAhPN0g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8a7b8445de0e3419b0303346805ec71ca4ed6e2e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171115.tgz_1510726659161_0.1635249019600451","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171116":{"name":"typescript","version":"2.7.0-dev.20171116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bf692cb7929aa83305c0a42937e2bd871d09fc86","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171116.tgz","integrity":"sha512-gAeUoaNxUo0m922dtJE7ng7fdNIhrZkJCOGEj0ETERMTR7I6wmC2g2f9qE2DcRxwYntitnoJAeyKhJ7LZqoxTA==","signatures":[{"sig":"MEUCIEt2yrzlHiOiTuCRXSwXjEDneGfWbiXyX5jpUSCAa1atAiEAv45zcEci0nyIGHJUnpskF1rhl3IPwncK2DJizXqebUg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b4ea7006f1f9f098103263bf56f61c47caa545af","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171116.tgz_1510813295863_0.7656756765209138","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171117":{"name":"typescript","version":"2.7.0-dev.20171117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bc4527c388386882980c548672452d1b00e26616","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171117.tgz","integrity":"sha512-UAflUlbG6kZvtZAHnF2wbua3f2g4uYLsgWkntP8j5LkEwI4+g0NXzC8G7bWA4w2HmzNlnJTXT25p1KdpHzK/Tg==","signatures":[{"sig":"MEYCIQDSGlIFu7dReEw/zsED15rij1/vWfAfEOw88lzwFiNbzgIhAOpqwhTYIo/w2eyvaFefLhkK+H668zoOwmYcd050fbg5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"12989456d191e820329ce98d06b0b1103055bc5b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171117.tgz_1510899963522_0.9288466216530651","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171118":{"name":"typescript","version":"2.7.0-dev.20171118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d7cddb2b523f13f632ead5964f5584fc2e74f855","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171118.tgz","integrity":"sha512-OponZ47LDVOIsxLY70gNEyZ8goIxOFPdcXJru3HqUoYBA8rOPMeN/XXzDvJi664PJywdF8E13gkuiRHdywTr3A==","signatures":[{"sig":"MEUCICkbiGyscx4GRydcyvrS5GYR1WXa5DNgH1Gniit353c6AiEAkdsMaW/odb2Weis8+bWUOWWj9eZqkAfDF4FMo3y1zeE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6c4c10c7cf294dc71f943314e29a7dd1b6e88c6a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171118.tgz_1510986016847_0.14841227675788105","host":"s3://npm-registry-packages"}},"2.6.2-insiders.20171120":{"name":"typescript","version":"2.6.2-insiders.20171120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.2-insiders.20171120","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d2f4c36831fa663639624799a62814cbdca9aaae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.2-insiders.20171120.tgz","integrity":"sha512-hLtSTJQQY09AZGqhraD+SJsxE3h1uG8PhTBYbYBJhumHNzod4Y3j743wAjkfpRCbt0Ej31mew8kV5Qny8IPIFw==","signatures":[{"sig":"MEUCICi3ddFCqxOC57TulJxdq7eVevG3GbwNy+W2yPGQUSp7AiEAzQrGWdU0qt1wcsXZK7TpIlVyVhlZlFBwAQmp1Jgzk8c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6513bed4d3d83b873c4866a91b99ab852dfa1956","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.2.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.6.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.2-insiders.20171120.tgz_1511219768031_0.7574593869503587","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171121":{"name":"typescript","version":"2.7.0-dev.20171121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171121","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5922d22931098bdf131d9eb0490b3cffea5c2ec6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171121.tgz","integrity":"sha512-rIUKj0hFWT6NvEPvo8+3zZTVFxJQYupmIKXOne95EAKdyJ5yTOPRQWuX7iUyxTUt81+K+at6kQAp7dJ+rKhb+Q==","signatures":[{"sig":"MEUCIBufq51s7xa8PRpOS2x02jaGOpB+yO4Tpjhl7TFexVENAiEAw+UtjvQ8WHNE39B/rGY6Z+5CrfVj9+AdgpU/BZev5aU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cc7b46bb75fca66d0a1501750bf0c365fa11b179","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171121.tgz_1511245065511_0.43605618411675096","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171122":{"name":"typescript","version":"2.7.0-dev.20171122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d4e430678a00129273bbac91b5bee1baa897c315","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171122.tgz","integrity":"sha512-xRqZJdvzA6+O1/lqpnFS65QVJB2dzuaNKUueZGWFLUqXqq/bv2tLIuWAwDUyVhDNHbtrg6VpB6hhCpR6TcHzMw==","signatures":[{"sig":"MEUCIQDYghAeM3aJGtIeGUs61LDYZH7e0ojO5Q6TCbgiBEgzSAIgLcB+p+YDaH2+QR+AHQ8CUrAqGgUGO/hAM5AWkMCCO1A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"332a61ee8b40a6afd87525e47bee03ae23247833","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171122.tgz_1511331880446_0.36954339034855366","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171123":{"name":"typescript","version":"2.7.0-dev.20171123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1b20465cd004cc7d8453487c7dbf48e0fdc5b208","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171123.tgz","integrity":"sha512-NPgs9Yt0D4Xbgr5QWEQ4hNQX8SzwfPDrjEOq4dNyQz4vb0YmZkScqUSy87/jc+JNmwf9AyTXDH0e+jSwTTl/5A==","signatures":[{"sig":"MEUCIQCf9cgqGWAANCv91MkfCfZ79mwtLuWEHhDIqM59c8HXMgIgDv1Iam9tbCg8yeZ1pTXnvJ50qbq1UeGiY55IywMEakk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8c889333d85e862b6579e017e8d10ce048b33aef","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171123.tgz_1511418259128_0.18761202902533114","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171124":{"name":"typescript","version":"2.7.0-dev.20171124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171124","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"434b2829f586290dec109dd4c089e36027ef9cd7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171124.tgz","integrity":"sha512-sJMx4549BgmKw152H0IfOIm3zqQS9pOsEiOpg4kX1FmuKYa4aAnTauTlvnC/NVdt1qtrLYvgq2LAIXNwI5QI7w==","signatures":[{"sig":"MEQCIHRJLMrp6ND8O91G3aHHrhIxfyVWcusaTnx0kUuhJHreAiBnFpSV0HyLex9EfipKVZ5E3E2/nJUDAFh/I43DI0wOwA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0d9bc55033a3b5c8f68622803409476c7a6f82b4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171124.tgz_1511504352484_0.6056827106513083","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171125":{"name":"typescript","version":"2.7.0-dev.20171125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"68c28d0d8846955d0cccc50dfe407cb8c9fdc2a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171125.tgz","integrity":"sha512-frQQvIY/wHw1ycW0mALl9RK33TOUQryFO0ybW5nJeayyz4lYiXv6eB81WTCj+6lmA6zwZdF4rTN7hZ9CJr4faQ==","signatures":[{"sig":"MEUCIHBTRMR5k0TkI0RB2oA1nxP2x0V/zXOuIubV9fTyMkqzAiEA0sfzzeur+kThf+7VRmOy7fgLacclkJCK/6C+YKA+WH8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"568e52d55087984c3e4f2df9f95101f5eadbdbd5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171125.tgz_1511590633743_0.21556506864726543","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171126":{"name":"typescript","version":"2.7.0-dev.20171126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171126","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f7d13d156bc9a2fdedb47cfc593595eb3728c605","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171126.tgz","integrity":"sha512-/srxUzGJqkOF4NS69Q+Tivwa8J2fjrsBaF+5/WcY+fayYdk4RQnfCLB6Ux4htDzY2UmMy73ZPXuIkt1i90qATQ==","signatures":[{"sig":"MEUCIQDmyhui7DB6Md8T+NrjCMlu7O+ZUSfl5Q59SiTtSSLyFwIgM4DpH35d1z/ZyL7IIbINxI9p3DOoKOBZ1KETTcVvPu8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0ae5a8995e8b395bb3088d00e40e7933763a0945","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171126.tgz_1511677009978_0.5246562317479402","host":"s3://npm-registry-packages"}},"2.6.2":{"name":"typescript","version":"2.6.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.6.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3c5b6fd7f6de0914269027f03c0946758f7673a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.6.2.tgz","integrity":"sha512-L0QfAFYU8U/ucTqDptb0Hq67++OwqdSKDAAXmpaECxEkPOIpydxh4p0p9BRDG0kliZHFJBAWZDHR0nomxF/E7A==","signatures":[{"sig":"MEQCIHmqJl2V0+ZY7lQVFCUKodhuoHzKdIVDWoGhh/t6vHX4AiBf2m5IIO4o8DwW1ULLpvskLMCLdDRpihtz0HyNlRxJdg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","_from":".","_shasum":"3c5b6fd7f6de0914269027f03c0946758f7673a4","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"54426a14f4c232da8e563d20ca8e71263e1c96b5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"3.10.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"7.2.1","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.6.1","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.6.2.tgz_1511806648239_0.8767166533507407","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171128":{"name":"typescript","version":"2.7.0-dev.20171128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"55ebfe6a14cae76e91616bfadee0f9d4439eada6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171128.tgz","integrity":"sha512-7YSRUJzBGlIVVBvqPzoszcJB0eCKh9+uX2YFfRNW1JJ5ZZhT7hH//CLni6U5Na+XYm7cgFi9yxdm9buIvcOFWw==","signatures":[{"sig":"MEYCIQCRdJmLLJm226/drdlbFTVmivKNa1OokdDpfW4he3VE2wIhAO6VkkyYt/OYmUvGy2ze3JrgEcFWl67erXnVIFBZjioj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d2da58e0cae0a2575ff1f1175712f57bcb83db05","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171128.tgz_1511850661249_0.0834644720889628","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171129":{"name":"typescript","version":"2.7.0-dev.20171129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171129","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"873780fdc8ef90c17979d9beb0ea7dc04eed42a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171129.tgz","integrity":"sha512-ol/AGcRTNWfQQIyPxeqiDmzKIYmRsCjvAUS5XMpGLNGjelU2GmvJJlwrQP5H2NOCV4njdgF0pgcVrXENRvIVyQ==","signatures":[{"sig":"MEYCIQDlAqPLdrq0Te1/SKn1UqMDE2pC85U4K0yytLVv+vPBUAIhAJA/kLH78BQ5mPr/GaJrN+9FkS2+V4/y0x/NtG0a1oBs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b6f53eb5a943a236183d6dd23e21047428dda82b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171129.tgz_1511937133928_0.6490056074690074","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171130":{"name":"typescript","version":"2.7.0-dev.20171130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"74185f7a07bae17d5d70bb240dde3f0c2a79cdf7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171130.tgz","integrity":"sha512-AthI3Irg733CPaN4Ci5xjqTsc9G0KA6yBQ0fOfHo41ZaXDStrp10Lsxksljr18N/wTRMiJEjp9SA7Jc7bDqvwQ==","signatures":[{"sig":"MEQCIEhV3mq5Hp2JoOFi4URCw3v8U2mPTP8igKVfTBIFce2BAiBmgKx4dTjjtQgDxTvgoWJjCjmmsd6nJLmFYolrRrq1UQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cdd3cd4f514248c353cb540a98445a57ad619bb3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171130.tgz_1512022701950_0.13930127653293312","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171201":{"name":"typescript","version":"2.7.0-dev.20171201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"12a62d87a64b5c443ffeeca5ae1492c1eb74101f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171201.tgz","integrity":"sha512-v1Oy3pGRIsscRRoQpkqiYsVGBrf6RBoG3AzSKocKGfedxv0WPrCvxKApl9LPg4mBgLo7IEzF32E2Q+X+U15O3A==","signatures":[{"sig":"MEUCIHadamijykC3gkFlGrUc+wGs1xh3XH8wfD3jdXN5BJ3pAiEAj7nO3lZnip5zrfrZj8eeR58pe2rUPVb+EsQ0HJ+l2O8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8f1cdc9b0c649f1e4fe9d96718be93277baa2ecd","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171201.tgz_1512109025548_0.3620126966852695","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171202":{"name":"typescript","version":"2.7.0-dev.20171202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171202","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"332d583e650a94b3ac2bc423ea26fe45724477a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171202.tgz","integrity":"sha512-izkFJwSD2sb0Hipu38rBJ7TLcYXlsRl6QZI+lVwcpftTPQE7Cd9AbKc3nHWpQ3REEVXmV7kIq5fhyaC2C/0mwg==","signatures":[{"sig":"MEQCIBZbhO8e7YrIATFBYDB34Q/gP5eWeprG9YSaD9eU8rBcAiBNZSNreQu14DNzNAuBsna6qVgvhcwDkJ5+p+dw3I/6vQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e90bf5e81bcd1c1d023e37873a5198d0d4e7e41e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171202.tgz_1512195446698_0.6781525209080428","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171203":{"name":"typescript","version":"2.7.0-dev.20171203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171203","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"14039d585f3a331e4da84d4bc7ce559ca3b51ba9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171203.tgz","integrity":"sha512-FyhV7OvieIXzjktOb9YmixEIR8olL8IrnonCmJQWGnj8Wt6eoQQKQlkXWPy8mpwEaSIXw/nQO0NpGQ+nWokhRw==","signatures":[{"sig":"MEQCIGJL73y6X5nhNEZbuKcC1h+/KthlyfJ1jf6CpNgAZ8gTAiAP8jCCodwy3XUNMKFsS19rRLLy6II3Jj36RKPrIJfxrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"49a48ffd4d7ed76fa4033752d1d55a1ad31ab18a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171203.tgz_1512281777048_0.05915719526819885","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171205":{"name":"typescript","version":"2.7.0-dev.20171205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171205","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d64f0d7ea6b56e6a3e6351fb78e5e6edbe5f0941","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171205.tgz","integrity":"sha512-vPQQqQjTNLO2SzVQADu6svncQZT6nonsMmpYVnP1ZGDIIa9xomu9OtKmsv71W8nca7WQEPVPCr/ngnlfVHEU5Q==","signatures":[{"sig":"MEQCIDojmEfls0Rb6Vlgjd/+Dd6mCjRLaZT1E9dfd77YdGkVAiAqIaDoodb8+G+VOEyk+GGiP+HQuXVtKEtY7bGjBMaqyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e42ecea8fb08e843188bb7b3b5f907e626a36a8a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171205.tgz_1512455497520_0.7154463592451066","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171206":{"name":"typescript","version":"2.7.0-dev.20171206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3a7db27843a50e395201dc0e1ec8874342585823","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171206.tgz","integrity":"sha512-sq6ZlGCblvrxxbdOik5E/aDnw0+2nclNy3u8zeE+rZRqxFObzmpwrgLQP8Xa4xo23GMuBNuvjSEolucxJOuGyg==","signatures":[{"sig":"MEUCIQDEfy/G7pRcy1hKu+ENygFvLN0y5Oxp9+280eqNh5Lt8QIgPE3Tha1GpKnvLoJOs31gseCTa/fdp9j1U9vKqiDYRzs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3a3bb8e3f07a1dac3e1297d08e2733eb7e7347d8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171206.tgz_1512542176992_0.9748989699874073","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171207":{"name":"typescript","version":"2.7.0-dev.20171207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"753a060292221046a537c5eee30f1fa7afdee29e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171207.tgz","integrity":"sha512-394zbMCIrmMOPYJTq/BCW0klX+xDxFE+grLo0vrUeUe5bU+Csud2G2ILPLp4FwyHCHgA7c4jXIkzj+DRjjipZw==","signatures":[{"sig":"MEUCIQD+lx921ez8asju7SqKOUubTXM3wgN2WW1oCqRo2pf9PQIgP/OwZZKiNPcibH2u4s2s31OADO8teRQ+SJroh7Rlawc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"477c1f57a985f3336475e9e65d323e5455df3e75","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171207.tgz_1512628692851_0.8101834668777883","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171208":{"name":"typescript","version":"2.7.0-dev.20171208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171208","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c7de27d1af41747730baf9010d31d177b0f324b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171208.tgz","integrity":"sha512-7l5KJiFEKAID5XWNq0egz9ZXDI5cZjzhJd+rthgNPNsZw0RXkMRpmBk8wVpfP4t0rDkiL9WpzvAbEAF2KEGd9w==","signatures":[{"sig":"MEQCIEyFMYq0vZHvs3S7ZA3TBlOHxP1NJTkzuJ8FTK2B4EJYAiBeMUOACxOw1iT0CCAWarrYZsULqYLlgvdYQhiSxdbm1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8d209a3672dddb5ebe7e846b35d510f409cd507f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171208.tgz_1512714991995_0.9054313988890499","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171209":{"name":"typescript","version":"2.7.0-dev.20171209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171209","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f0e038b1603217b48cdd98b376f728d46012129c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171209.tgz","integrity":"sha512-4ETBmIehQBmJOVwb/awg+EHMjpq3esymYD+tKRvxHv3cW+1s9+t8kdozn3/Fk50vAH13YtOHxuOcvU7OXrdG5Q==","signatures":[{"sig":"MEUCIQDJpl0J5IlU71ZHiDKiQKk0hlOa/Ib2Zv9TyUt28bJuuQIgZ3HWwLcTF+Mk1w72hvKMvGdHfZdY0+ocEBl8JZEgnZk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9e51882d9cb1efdd164e27e98f3de2d5294b8257","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171209.tgz_1512800882680_0.7125193176325411","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171212":{"name":"typescript","version":"2.7.0-dev.20171212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171212","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e46f0735832d78d91376f248758ae1e55600ab7b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171212.tgz","integrity":"sha512-D9eP7T4QjfsoFNi35iOYTgLgwQE+OrVkWFQ2p+MbgKd0W2Qupqe6COyyQPoUeXvOrB5rbaIkeomh+VFMOPjtKg==","signatures":[{"sig":"MEUCIDABCNwQ5CCTeEr/J51bsh5BcR61CctG3V6qPQeCRkPyAiEA+ZDSENbIyErdobFVcEf8ZxRG2Nu4CqwA3ksefiCXvPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3aa192a870a3d81575ed1431d2d16ebb3a3db079","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171212.tgz_1513059471359_0.42005243338644505","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171213":{"name":"typescript","version":"2.7.0-dev.20171213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f6d085f769ffaf76f1cd488de2b679e277cea31a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171213.tgz","integrity":"sha512-HiKU18Mj3aXcFv8fZlWINoRPUa+Iuyk6bflJ1JtkD4jpVzidfLN2zdetDIiIOWqJrwWHsPNk+mqRg54Su+/W4Q==","signatures":[{"sig":"MEYCIQDY23Q3CGq/br/962pXvwWwAGUCG1f05ibtsEqjCIiboQIhALFgBDqgJ6zBDJdmeftxKOBPbNhxtohkSDiB+PWPo/8T","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9ae67026d7f121be67d772ad3bf6b9167334b216","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171213.tgz_1513145963334_0.6618895113933831","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171214":{"name":"typescript","version":"2.7.0-dev.20171214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e8c1b0bc5148e11150079b4373dd09921b0d9244","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171214.tgz","integrity":"sha512-frLKPilNYRhALI0wq4xUwOx+1nOnZKmpoIpxxpIu+yCXP0DIc79/RmfBwAwfxtDifVqaPaluVUFq9hHWa4F2Iw==","signatures":[{"sig":"MEUCIQDOmUyhe5p2w0ihGdqyVG7NWcdLwIk+1ndOlraRkLUBsgIgBQ8CiRm7D4rhR+C/cwgED2o7bgdjVzEL3FGkxfrjrag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2368ad7eefdf1aa3ce9678ac2b1649a2db8bcef3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171214.tgz_1513232344441_0.9608038102742285","host":"s3://npm-registry-packages"}},"2.7.0-insiders.20171214":{"name":"typescript","version":"2.7.0-insiders.20171214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-insiders.20171214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"841344ddae5f498a97c0435fcd12860480050e71","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-insiders.20171214.tgz","integrity":"sha512-k61ip2yVZg5cTziSBnilKRnGwJwjDleAjv86Dbl50vl8lMfDyZ4xQIbc5mz5aAsZAI/QZXfMcyOFOULO9AF5vw==","signatures":[{"sig":"MEQCIELlzCiNm1YSpF+cbBpDazXWP7XV6rCJOsJzRUN6cnLwAiBeOHYAZ6vSJS3RUQh5INaQkmZy514XFRvmLYSlmWnK3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"26c1a49d59dae5c7572ee82828752ba49ac7dd19","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.2.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","mocha":"latest","vinyl":"latest","colors":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/colors":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-insiders.20171214.tgz_1513289936963_0.8040244339499623","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171215":{"name":"typescript","version":"2.7.0-dev.20171215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171215","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"069fe6937904ee5e8b2d76ce5b7a8d42d186fe14","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171215.tgz","integrity":"sha512-i1BAdDEpdGf9A5Ax5oxeUgDDpdidSzFRFX7+7UYLqLBMqSN4R47JDJjyGHJF+i4DEXJmEu0Ykfa12nEcAGwTnA==","signatures":[{"sig":"MEYCIQC6262LuAvguw6pI5WV7SNwggGRHY4vCUd1a9RM9x7oCwIhAPeWfLYCQIAa2OtzIa08fTTdq/Ep6RHtkU0kzLNGMpqX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"423ab2e03dec6ede17beaa1aa02cb697d890fc88","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171215.tgz_1513319231145_0.545740137109533","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171216":{"name":"typescript","version":"2.7.0-dev.20171216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ae3ff4ea462a8a5f37923108edeedfcaf9c5f1b7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171216.tgz","integrity":"sha512-RYVNBWK/OXgXWUY2xJVYVLN3cgqv9a1sPC+oXKDW+zeiRqkrqAQcs4HQUZn3TmyAwb0GcFaVEJRbXb1b1K9DEQ==","signatures":[{"sig":"MEYCIQDGGiNv1N+ErbGSRXuCnnf2gBfAX9a7XSA8uV1pi9zeMQIhALPOE2qpliTU0sThWtPmM4kMxB2aGN8d6R+FHkO2hVP/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"aa9e2ba31822ba7b002cf1c436e2c6cd6954972b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171216.tgz_1513405579940_0.950414395192638","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171219":{"name":"typescript","version":"2.7.0-dev.20171219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171219","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bc42c11d2b0ff44d60b53c4171cf30fa02b4bff1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171219.tgz","integrity":"sha512-gqyvX26+pX/aaWW8+E/y5KYv2BGQcRAI366DBu0dxsy9lOusuppu4Zt5m2vJyRHhLYiuk0QDj+b+tUP8sc7i+Q==","signatures":[{"sig":"MEUCIQDeKmk3T+GW4s/G+U6ua22gZpjLZCJqo+EFUc0SA1OAWQIgUHkOo4HGwbmITvVVUC/va4/aNNdaQ31cdQHI7KLprIE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6c15fc663485987a69d8be8feff7833b916fdb02","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171219.tgz_1513664655733_0.8562055891379714","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171220":{"name":"typescript","version":"2.7.0-dev.20171220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1a9a5efb78c92f5bb1d87c7db3140da60fc2a440","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171220.tgz","integrity":"sha512-FpuHYniUwj5luzeVVqUY3CtUYu3XfN2YMUvR31B9Y+eL5126d5xZAHhY9abznjfqIF/TM7xnpj1Dry8fC3x8xg==","signatures":[{"sig":"MEUCIQDvTSj77c1nq7xHh4lVP3pwo9lT5f7w8CLep2y0iJNBaAIgHaKWeFsE1uXJd1rtAEGL3bHSVOVf6DZDRE5R9NvB2hA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8173733ead1bf6e72397cd68e522fe25423a56a4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171220.tgz_1513750676734_0.272092804312706","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171221":{"name":"typescript","version":"2.7.0-dev.20171221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"619e94e3dd6012c00536cb16730d907f16acacd3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171221.tgz","integrity":"sha512-PM09fTK1T0WSZHNDXqrB/P6lTaQkzAnXlx23Q5J/21oQ8kgU7B7TtUFTX7zzdSZnH78j49aUx5bVuQCRJkBowg==","signatures":[{"sig":"MEQCIACWtkIOfV6ZLU7QdfVgmN4IiQXLO6tqUV2ze41hLYRMAiB5rvewqK2rrTvJsyBVp6iDSra00eXdM+vNCCE9ZCKVYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e08e6633ebf090bd93a0bf6880316d59a45556f1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171221.tgz_1513837497008_0.8636708438862115","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171222":{"name":"typescript","version":"2.7.0-dev.20171222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171222","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4c29cf459831ef5863e6adb98235ab6d96ad7c88","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171222.tgz","integrity":"sha512-8oeulYD2UgbpW+wAmPzb7YaGJaxbZvdq8N7sJ2feaVmwXNDuXXZh2HiDI+8AMX9losRUIodo7uSeVR3A/Mrv0w==","signatures":[{"sig":"MEYCIQCQ6phe6b65g1Q1lWVQGKA58ASXm3aIXx9GbkmkvD7OAgIhAPMrRtW/OZIkPSpJ7F3gwv3wJVbGlKBxHXiQ1lUTe0og","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7ad0d7b9fdbadf6081e6cf909b44e84a8ac7942d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171222.tgz_1513923455890_0.15567407896742225","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171223":{"name":"typescript","version":"2.7.0-dev.20171223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171223","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1bf658be9c733ef1a7bae651396a49a17c307365","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171223.tgz","integrity":"sha512-Q9olYV47QAHE4Sx+OCZDzTJKgvPpeKH6roucwXFYnrPJKkbrtmZzmF6+7VYM/rkhGRj22+M0k/yObmGMs6rSfQ==","signatures":[{"sig":"MEUCIBRNSfCZY6Fu3vWrfxLlnb3+hHPKqPshrQUEU4qjlzJVAiEApE55//MTVAuAWwcYWbLvlE4YesSna9Uv5yaTb0Dnzak=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fd4ac106778a86bd58918a9da4877d72387845ef","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171223.tgz_1514009784613_0.34367261873558164","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171224":{"name":"typescript","version":"2.7.0-dev.20171224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171224","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"52e99b867410d28d1c8cb88d3651e2650ff9d252","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171224.tgz","integrity":"sha512-TXmx9YgRwRVdExn2SA6fHCgEtmw/yJv+MXn39kdHSb8xg+41KEZKQwwiLOp6l/OgIeHL2PICCl9apt0ORK8AGw==","signatures":[{"sig":"MEUCIQCZ+Ow45UB96BkUAlHgdXzBhhn4RJJKLQg+lF9tEj9AkgIgI9VrfwyiWC2i2QZKIp2/ysJiYvOfNry13D28AiBhgbU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"46262405bca681ab8b8f01a6ba072f8d73ef532f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171224.tgz_1514096188168_0.7725425474345684","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171226":{"name":"typescript","version":"2.7.0-dev.20171226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171226","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f13145a9da9c9fc6b35514171a4ad35811089c83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171226.tgz","integrity":"sha512-iOD4mO63Ipm3YxKgmohyvHpXvqWtISLnjNBFufuNG7qX80ToSmd6qT0QQw1NCrzxeym1QOrYOX2MmiiGEhjnJA==","signatures":[{"sig":"MEUCIQCTFUXpN8yiXy95zPwLCEeC+wEvtXTnNCeDdYFaPOQ9jwIgNlSGv/9MaX2aPJl09n9Y3nDIhN2Joj6OUuHSkRce/90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b15ecfc51c84cc3b9a44d3ee167c2d18e7664278","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171226.tgz_1514269001522_0.4775751477573067","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171229":{"name":"typescript","version":"2.7.0-dev.20171229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171229","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7c7348d554c1b1548d70e5bad490d17049a19106","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171229.tgz","integrity":"sha512-1mlIq637aWmZqB1sGZ09cmzTbCdWPed/iIp571HyvmHpnyy5Gn6rUwtzx9iSglwEfing0K8seAgT7Glf+ugDCA==","signatures":[{"sig":"MEUCIHN3lb0+BHgD87P/xCSasGyzGhS657lxS2er18HGgoNaAiEArlLb0QEjt5llpXCGSn4bLWH4y3TzLBKaIDdQaBKUJKo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7cddbf5ad7c5df033d46839857ee4cadc558cbf7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171229.tgz_1514529039187_0.657717518042773","host":"s3://npm-registry-packages"}},"2.7.0-dev.20171230":{"name":"typescript","version":"2.7.0-dev.20171230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20171230","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d245060f3881832c592235b917083b6a581d206d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20171230.tgz","integrity":"sha512-A5cw41X6MQNUCvreRUyqh6HAf61O+OeE1o2tZFh6hXLOo2aEQsrP7diRiu7Mw7/XvOfCpcyFOtgE6AYXvYe1JA==","signatures":[{"sig":"MEUCICu8gydpNXR3HQt8q9NLuQEfUPqzV8ZBFpjGi33q0YYXAiEA9QoYrBiIBhEtYYuUSVJAbFrEWgl9QNyGkFESacQEbYE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0477f91dbad209809363323042f34926d3a6e175","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20171230.tgz_1514615136667_0.5855078753083944","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180103":{"name":"typescript","version":"2.7.0-dev.20180103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b5855826bd0f520b379852a748cb8a6954d3c411","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180103.tgz","integrity":"sha512-f6CmdvhaXyqngowgGu7R6wSffwjAJUb29XpVkrfwEYO5T8M0EqaOPaq5XFx10Gi4umK+YGLV6A9rRYzUY8qhrw==","signatures":[{"sig":"MEYCIQCYSLwaYCXh3g51KZw6ayjwcTfWyAY5qmz8CEddhq38mQIhAOpXFgGZglaiUS5cSya6Vyd64LQwy/YYP9JcRLc9r59E","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"29378b2ce21320336c276045371cee302bbc4db1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180103.tgz_1514960364135_0.2845246933866292","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180104":{"name":"typescript","version":"2.7.0-dev.20180104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180104","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ec00799bf9c34791c4f6f6ff268b1734db7730a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180104.tgz","integrity":"sha512-ao+HbCE1hbdQXckjo3EXaPpKtqwmkzfOEin1HMj7TDi21PEm1xVv8iuN8xmDBMWA9zv1wmz/dR3LdKIkOUndJQ==","signatures":[{"sig":"MEUCIQCGSrR5tKuOww5N7MhuvXMMwtNV1xbZBmTlTpIexvgDLgIgRiGFwy4yllAhJ1OBdAgOwTFs5znkgUEz6PCQ89amCSc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e3a20e7f0aa9cd76104f45c5a6997ff59ea39ebc","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180104.tgz_1515047077085_0.5438133957795799","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180105":{"name":"typescript","version":"2.7.0-dev.20180105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180105","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5df2476cd9c38086e61d031a0f48b5047fcb3f37","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180105.tgz","integrity":"sha512-vCiuU6w3qtngOadGnY9/B4o5KB1JCVnV970PGLcpuw2AMbNLOhiMpp08nQQkpZvTIL3lJyQGeYhcDbdIEnzdsA==","signatures":[{"sig":"MEUCIQDCrxCcQCB2Wlo5Fw5f1YFRteg4qKO9WC/dKyFAVHS80wIgQvYpj7BZlQHiyqAFKlBT4ghNo0bgA3BowgF+eu89z54=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4eb633e0d9ac8e022cdd745206062de573ae5b77","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180105.tgz_1515133033210_0.1527466243132949","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180106":{"name":"typescript","version":"2.7.0-dev.20180106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180106","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"87f06d13e64ff52fd8539568a0bdae417703d650","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180106.tgz","integrity":"sha512-UvQkXDDUZIYWGyRZ/iO48djM/96bPQiCL/5O0qN75RVvlCC6yEqYmVhCw51RQa/iW8gIKtIuFGcVMzZKqnkmLw==","signatures":[{"sig":"MEQCIFeYCKeJ5uwGUZd3jrLWD+e/ekI/tpe28DS//NfOOwogAiBIgdlhHs2vV1LaNz59xjH6ymBLHhwzpb2zYZPBm7ad0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1957dfef8ea1f56df286e3f409d888d7bf557615","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180106.tgz_1515220175562_0.6198401900473982","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180107":{"name":"typescript","version":"2.7.0-dev.20180107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180107","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8b35d19ac2b1384264e26f36f2a5b1ce86c81913","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180107.tgz","integrity":"sha512-WiBvqEuVUGKwBn6jKyLPLpQYzpe6ccsejXNfemSd90QmmAb0WoeQa24gtOKV9Pt7DE7TioDv+oQlPDs35Jr0/g==","signatures":[{"sig":"MEUCIQC4RykT6BOWRihcbQkRQAF4Md3xubqSI9moYP5PFlS/IgIgf4s6/I3q23mU005+Q+dcPgyCNZHvsgw2xBUp4SyTp4o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"28a818f6ee5eba034dda8b1108cd6dbd874938bf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180107.tgz_1515306897337_0.8528149088378996","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180108":{"name":"typescript","version":"2.7.0-dev.20180108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c83d5610b7a8765cc6962331ef8c9b2577040ed5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180108.tgz","integrity":"sha512-ZlggGsch8Y2d0LqAlCYGRzm/gdm2bqSpb4rdthY+YvpPsQqFixT0tU8sgjeRibMXW9hbS2Hz6kibS8L2oUKWfQ==","signatures":[{"sig":"MEYCIQDwycfsodSN0Es8dZFudrNNlv3mfXtI33YLIvh9u2KwGwIhAOctkRormwManr2YSj9Yz+BEt+JC7BObbzla95MPXkuU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"943e52211bd1677c0b9f5073874e304d1338c0b4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180108.tgz_1515392760930_0.9011138600762933","host":"s3://npm-registry-packages"}},"2.7.0-insiders.20180108":{"name":"typescript","version":"2.7.0-insiders.20180108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-insiders.20180108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b9230ca5a0020e92133f63e6a4272f8c1b301bdb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-insiders.20180108.tgz","integrity":"sha512-WWCT0HFa+Yg0kpIf1+PZxI9C2GfMvR8Zl1OJEWO9gTq6RS1BcR7tfw5L/zsSK+FAiy6IopNNF9QwXgZC87zeNQ==","signatures":[{"sig":"MEUCIDYHMrv386o5BBQW9C09qNndxUJQGXWiaeHdV+IO985fAiEAuFAQ+vHGyUyi1stgg+LfsiaVRewOUi7LMCmoEnm2mmE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c6e4373403059d66743839a0677050edbf7deb04","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.2.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-insiders.20180108.tgz_1515397839626_0.20366831682622433","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180109":{"name":"typescript","version":"2.7.0-dev.20180109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180109","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8ffb23a38903b7ba7abff12b7d5c10dc2675c987","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180109.tgz","integrity":"sha512-/0Zwo+4gpa9H2mXiWJzcu8BFd0hGvjGcp88z109I5pZ+z2shSy/94U5363hpwmxjv1/FtSd06qMDpAkIIqEEpw==","signatures":[{"sig":"MEYCIQCxwusqdmnS5rDzfpp/WXK3/myrB6SF2kGzTOb/R5U29gIhAJAVhWu5QXIQe8YGijRFahpPu9i/MUOiiOwXxR9r5KJl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ef5a289966f1ce1a72c9865272b068e5f5c6fa50","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180109.tgz_1515479688124_0.049829047406092286","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180110":{"name":"typescript","version":"2.7.0-dev.20180110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7015652744d330bc1fd8a5979617a583145d6094","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180110.tgz","integrity":"sha512-hfeNQxcOIk4jkBhKEpwZFTLbv6Z0pctN5NpfO0U25XmM54fOQrgfkEM8oZeQJ+N+UODQYD5/RXmZyyTww3O3XA==","signatures":[{"sig":"MEYCIQCGXg76Kx3Q2zTJOoEgYfREw5NbtbahZAEpqP41sdgskgIhALM81Nd4h3RaF5AJMuEdeQ73tt14O/TCivmQWV6qWxGh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c9ef52b9d818f1192ac3146385bbaddb599d5afe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180110.tgz_1515566324462_0.6713724983856082","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180111":{"name":"typescript","version":"2.7.0-dev.20180111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180111","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9d8114598082059d1aaaafdcb9180ee00098ba58","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180111.tgz","integrity":"sha512-CtrIC/ZYWWxah0gJqB6li52VncEjNoD7bWxC+wNUNQEFdooPvgXaHlg3dTmku19D3kVoGV7f05v29cV/jLaC5Q==","signatures":[{"sig":"MEYCIQCBqqA9yL31PYimgCh3lsTBFa5Fc1H1dpyFn7F43eaQlgIhAIomNVl4lrEjs6RodKgDMdq6trzOMg8+Ongef4ioJ1Vw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"40b896a73c2dd998353fa56e6b812a6d4f991ec7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180111.tgz_1515652724043_0.057831637328490615","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180112":{"name":"typescript","version":"2.7.0-dev.20180112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180112","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"659271ec59e63e0909750bbe7124a12a29f7635e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180112.tgz","integrity":"sha512-SWck5nYGZU+foIlTOeKNOQX8KdIFVCrneRtk/nZqDbSRA9PTez5KZ6Xo8BAesfhJlbGKTyeE/CZOsmNXbCvlXw==","signatures":[{"sig":"MEQCIAtsCaEPVtmL7e5ur1nY+5ChzfR5YBMGwiHOqNiKqu8mAiAzXhp+EDDntROEBnDmTd/1EWrPUDgx0nDyQ18x+LJc8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b529d5ba1f4904649e564e0c7bf3f7aab18b9abb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180112.tgz_1515738905007_0.30535420635715127","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180113":{"name":"typescript","version":"2.7.0-dev.20180113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180113","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"32ff993fd017b91cfe26c94c1f8e243eeb5098a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180113.tgz","integrity":"sha512-oIhiPaxLc+2rIUVtS5EwA6PssygnkXC1B5o/9rqV6J9TIOkQjV9LzLyngYcwbJux82+Xb88kXn+rJiKeOSM9aQ==","signatures":[{"sig":"MEYCIQD2EETWQQiMKSlMpeFrUb9DhRmHoXNhMn3dW2dZGHIGDgIhAJLbJmd+01/eUnG3QKNpvwsHHwSVxb1T1i291cH/e6IZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2f29b7125b615d3cb5dc639c4918754896b301d9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180113.tgz_1515825494664_0.9777903973590583","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180116":{"name":"typescript","version":"2.7.0-dev.20180116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2a77af3949f6752f862c8704310e9da7a0e82db5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180116.tgz","integrity":"sha512-qVEa3OSmHI4upo6ig54jKaC4LkjMf5g8qVWva5h5yuoAjk90tSxhvy22oTVd/CgcqkzWLEO/mMQwMFJ+iFomjA==","signatures":[{"sig":"MEUCIQCjsugAYgZXF+7KY/8kPSn6Rh0inpklbBGBRuwaG2dpnAIgOLi58OIviVYnyPPIXj1NF/HjH7QxdiwnGhRGbhW5Dls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f0ce80a5c77684e886e341bcbc25056257f4d574","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180116.tgz_1516084459588_0.17047911905683577","host":"s3://npm-registry-packages"}},"2.7.0-rc":{"name":"typescript","version":"2.7.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bf86a065a3a0be1e072c3fb7d64e8976f33b8365","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-rc.tgz","integrity":"sha512-uQpL5isp2Pnn0N4mvow85Ob0Nwqr7fD6wME0pmBZ/RYad9OTIry4aTsfnsLa0lnOKvs2FRRm/TRHoc/fgn19wg==","signatures":[{"sig":"MEUCIQCBPseEsHYhJd2JeqfZFFHr4xyq0iKgMmE4Khm/wRcbBAIgHc4c9ZpOIFf2l3/ypzv3MDgzk3Fuuu2bEac46j6Xp/s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f08ac66acaeec6fc747d6582af4d59edef3c4b6e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.2.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-rc.tgz_1516212850454_0.9958619659300894","host":"s3://npm-registry-packages"}},"2.7.0-insiders.20180117":{"name":"typescript","version":"2.7.0-insiders.20180117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-insiders.20180117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"01761dd795e6ad1d6a11a1e898c9b14d068d0097","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-insiders.20180117.tgz","integrity":"sha512-rYrA2Xtgp5cmytQtTWIhQkVxFHI8YB3BH2wkqixBryLIEef7UXLo5AhlkoD0QLSZLQaFeXPlfW9ouLTD3Rga8w==","signatures":[{"sig":"MEUCIQC/oQ2CllsuF+xiAH7Zn+pQUbyWLdLB1QlwH1L0/RyniQIgcPyMI2G0VQm2gbl3pTKNQDRONdqA0Z9FYKRPL6hFQi8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3c988e8f5ab4ee3aa8cd8bfb350dd3915b96662f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.2.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-insiders.20180117.tgz_1516224459597_0.32260961388237774","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180118":{"name":"typescript","version":"2.7.0-dev.20180118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f357c430f93387512cb58e125da080d03862bcf9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180118.tgz","integrity":"sha512-S62mGgKVTo0SmMmNL+dXVAPIyXkpE6hocqIVqJXgrJCtk1wxNvDhL+nYFOHoINul/42osRi4ou7nhN8hdVv7pw==","signatures":[{"sig":"MEUCIBpf8rztkdnZdDFu5FYNNdGpiKrtXXtiCgRT4yscxfdyAiEAl4iVNP1IgfKGJWR0WfYbaKvkOI7jVDxvVzqtp3gRB9I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3fc8f9d367f58833f2650a34aec480f927539632","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180118.tgz_1516258721712_0.3364407478366047","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180119":{"name":"typescript","version":"2.7.0-dev.20180119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180119","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4e2f4b01a77305a6245c76141454bd5abfbc7e02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180119.tgz","integrity":"sha512-sP+ia023Zxogr8deze5FNraOKRLC0IBm4B4VSEQ47z2el0HLu4gkvYHZ7R4kPKlpBMx4TBMXEEWmiB6x8wRpcg==","signatures":[{"sig":"MEYCIQCQZ8pgJAAjdOyAkano5x0Mi+nbC+5s39TZTFQg5QcswgIhAOW+7Mdrc0ogcer2Fd65zkyn87MO6bQQ67/nBXfSB3Zm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ac7b87cabee6c0c12d9cffa30226f1314dff778b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180119.tgz_1516344351330_0.542229761602357","host":"s3://npm-registry-packages"}},"2.7.0-insiders.20180119":{"name":"typescript","version":"2.7.0-insiders.20180119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-insiders.20180119","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"556c59eaabb0758dd1a2f0b0602a355746d33277","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-insiders.20180119.tgz","integrity":"sha512-0TGfCUC0iNfIFMzSvcjFi4lmnZj9/RN0neZwzOjKq8GdZn0QfqAqjYGtR7sYicURUP8KKRlln9YbHICivPCYqg==","signatures":[{"sig":"MEUCIQC9U+Yoavm28tfewPQdeEC5U6NKnK+4OHAa7TFq0w68dgIgM+fcolSoU/W+5ermjxHxtFwE8pCUER59jMo8ZGOhVY4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"eed85737b8371a050664c34f0ea1cfbb022d296b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.2.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-insiders.20180119.tgz_1516403068172_0.9395666511263698","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180120":{"name":"typescript","version":"2.7.0-dev.20180120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180120","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"64470f65617bc9cdd95b23dcedf210f83aa73771","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180120.tgz","integrity":"sha512-h9m3UrKUbgOulbtb6zU+iST9l+9DtavWV/UCCS5s8CZ80V37dnktZ0ZYFQDyS2w8tx1nNvLhgHxZ7w7qRqKAOw==","signatures":[{"sig":"MEUCIFC0DB6Zek4jOEezLQcDMg0+vczoWk7X/5DfzMhbCO2lAiEA+k+gPpnpO+Pg8OkSQs5mdkuNhFHPg2nTvCvTaL8lleI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a7c53c70d2d74520483a892eb3e9ca55daf655cf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180120.tgz_1516429878923_0.2897972210776061","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180122":{"name":"typescript","version":"2.7.0-dev.20180122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c86ed9a2896f919e09f569eecc2c3de76a2693db","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180122.tgz","integrity":"sha512-6TMOI45ftMLMcrApFLB6bAjQpTjb9YhowpXm8l0PoL0Yv+Y62Nlh49/cBmC/bLO45ILUcTy3e7vhHUFV67tw1A==","signatures":[{"sig":"MEUCIQDLaGjtYyn/maSFL1/0C6zPv1OUXDlJhdfdffKhesbONQIgS+OOvP2ERKRkCf24tMjUhhpBDTxoK0EKQHkFyHU2lII=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"92bde084c1e5ce42ac9491273dec3e846fc61c7e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180122.tgz_1516602521529_0.6360943089239299","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180123":{"name":"typescript","version":"2.7.0-dev.20180123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7a16e507eca9fd0bf8be973fe13bedd8aef68977","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180123.tgz","integrity":"sha512-zRAc41t9pcm1V05ezznaFuTioIesP4X6meu2ku3HInkLbmFFrxWdk4vsctJlqHXBOK1MWk3PVF4Nq4vepHLozA==","signatures":[{"sig":"MEQCICXoISTJa2dxVFJOXvDazLHRsiyHsq2Y4l65+2MtjNjaAiBxF32P97lZKH2ctteU2gk75tZA0SsYXyHZWjoWd0ymcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a3387cc41f2aa7d0266b7d293fd43fbdf3aca1a7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180123.tgz_1516689111869_0.20407956303097308","host":"s3://npm-registry-packages"}},"2.7.0-dev.20180124":{"name":"typescript","version":"2.7.0-dev.20180124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.0-dev.20180124","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3243ae65cedeeb232c41550ed98e5f21255124bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.0-dev.20180124.tgz","integrity":"sha512-I/niWDWjeglf84nrCBulBUXdsYpVsqQex4HS0H/v80aO5czXHvNnsWfR+0K9aJNC3Msx586HxsE6ayBVroTwcA==","signatures":[{"sig":"MEUCIH2aKYY8bWpWgI4JQVqhhMhFJcSs6CTEZDmMV1oGEXhqAiEAgf1NgjACvoHnQo/etAxf0klYZXuQ0xZdz5ZMwwzYebI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5b5a00745997768fad7d3a4c98931af179fa277a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.0-dev.20180124.tgz_1516776525273_0.21239947946742177","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180125":{"name":"typescript","version":"2.8.0-dev.20180125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4f55c6a03a4a366c3c1a2806eb98cd22e6e0842a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180125.tgz","integrity":"sha512-D5kzJ/iG752X4Nko+Ga3B9Iu/96qj2MIiqAhDIVuzMIdVp1Hi7MHrDqzaU/FjLCiiq2OuhBdIRqkk3Vr5a57HA==","signatures":[{"sig":"MEQCIDHiGBo7uX8cb1EX6lfr1pWJekqALuknSOJjDZBQeLhKAiBKSRfRCqoPKA23p+jYqxxOrbB1A+paTZBlIrXtDnV/eQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3a807db8eee0a3e15a8bc0952fcc0f61786c174a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180125.tgz_1516862092122_0.5625560011249036","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180126":{"name":"typescript","version":"2.8.0-dev.20180126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180126","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a20a22470bb1aa714fe6023ea4aa2b1b0bf50dd1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180126.tgz","integrity":"sha512-w5Gax62G8WFWM/OZrigy5IKWajiZ6r5ujd+IsI86uAECFMoyBBMvRzEG+rx19JKR86Ye8ZAAig+sZ90YWh+08A==","signatures":[{"sig":"MEUCIAqTYJRsTAN//GOJuAUIfKmTTE92KgXPAG/CHizDQsL5AiEAmR9cCTwC1bA6psBw8y5kHqktBKQ1YxIrJzNwquVTLyw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cae4bc5e83b38e724a13a3f8d86920b7c167a757","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180126.tgz_1516948457634_0.8019342278130352","host":"s3://npm-registry-packages"}},"2.8.0-insiders.20180127":{"name":"typescript","version":"2.8.0-insiders.20180127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-insiders.20180127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ceffc20983754a6127ee7c806676f0b30d0fc1ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-insiders.20180127.tgz","integrity":"sha512-YVhjNsX+6kTkftiqr2om1Rf9OVq3fFux8P32Kph3F60AEp+btcHSTCUNgliM7LxJchUUbWGhIJfUEgDUI/B3jw==","signatures":[{"sig":"MEUCIA6z/c9QHoK0XVGA7XlFMdx0WSEiFO2L37L9Kc/dY8rxAiEAqq6JvnoKWJGVMJlaQqx9NUMS6sL6m4NRxclObqjml5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"02e79849ef7259a1985391d85faea1cd6d86c3d0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-insiders.20180127.tgz_1517016086052_0.41613950906321406","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180127":{"name":"typescript","version":"2.8.0-dev.20180127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"289893b34fc86d6ad572b4cbf01e6df815e22fdf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180127.tgz","integrity":"sha512-TIbpsD4IOK38KMpBfUHifMO50tU6zi7rVMTgW3Aa4gb34cweTFlor//LeC14bMU1/HUs0AkaBG1Mk/a2tJ4TkA==","signatures":[{"sig":"MEUCID0cipD/SjTwF0H8mKMbkSY3R8g5xsoq4g0dRcdDjZMdAiEAoP1SITZMTFSPGuJE/sjHQHDijP87q8CIXveRgE3vDWM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"02e79849ef7259a1985391d85faea1cd6d86c3d0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180127.tgz_1517034671030_0.5888421137351543","host":"s3://npm-registry-packages"}},"2.7.1-insiders.20180127":{"name":"typescript","version":"2.7.1-insiders.20180127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.1-insiders.20180127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"db1f0d903e86c0867ec5c6e04ef10ded9ad9399b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.1-insiders.20180127.tgz","integrity":"sha512-JwG57XB+OCV5aWA3mETCR3G/bc/X7qWYDep1Qz8kCiWp3kwgOL7A5Q+NMvDrzjNvtl6g4MYF5XT4TCp/9MgXXA==","signatures":[{"sig":"MEUCIQCSuJ3t1jxkDmEPg6Zbb7JD8NdqoYzQ5uNc6Suq776p3gIgIRaL9/Djp/ZfZfrmugX6d5HuwfS31rchn2mxYV4yUx8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3815a795b970cb10c8d291180bee0807379a7ac5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.1-insiders.20180127.tgz_1517084364149_0.12700343527831137","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180130":{"name":"typescript","version":"2.8.0-dev.20180130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"69df189a9ee5c9e65899a9d505ad7b34eaa2023a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180130.tgz","integrity":"sha512-vpUMJLlpBucunsK0M+VzpVzhTF8Eof+/k9UhoK35YZkIAz0J3VusAgE2GGy7SdYHrsON58Yv/yVrq9q23/RLvw==","signatures":[{"sig":"MEQCIHtGv/n+U+Rk+2JWExZO8OTc2XaKzBgP9uJ1gCSrsKndAiBdVVi9wfH9HtmrX+H9jMvKNNr5q+4dBWENk07ig22Zvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6fadd4888df8eb9b984a1a91ee97fe763aced3b9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180130.tgz_1517293926746_0.23661555908620358","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180131":{"name":"typescript","version":"2.8.0-dev.20180131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180131","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"358c965092a3f40db75e6dd24f43307f6adce7d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180131.tgz","integrity":"sha512-oF6AgiagZhSKUWzig2eKVrAgeWBsxOIt6vd6Zb6kAkYjLccDQtMUm0877C1is/9X/x3GhntxYiApx99U070iXg==","signatures":[{"sig":"MEQCIEOplNjqeRboVR3+dge9n6/7XLZq43BHFb0J0JyZL1gvAiA/M5O+XxCxYZhJNNo+o7UoYXigkaC7ZiP4ZwbrCaKE6A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6419e7ca4fbed1c32d5b752fa35f60d973a39ca3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180131.tgz_1517381295069_0.23462358978576958","host":"s3://npm-registry-packages"}},"2.7.1":{"name":"typescript","version":"2.7.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bb3682c2c791ac90e7c6210b26478a8da085c359","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.1.tgz","integrity":"sha512-bqB1yS6o9TNA9ZC/MJxM0FZzPnZdtHj0xWK/IZ5khzVqdpGul/R/EIiHRgFXlwTD7PSIaYVnGKq1QgMCu2mnqw==","signatures":[{"sig":"MEQCID+7i0Vw+fYM7oSiaRWwy4vztMAUVRcs3sq5Vbf3v3c6AiAU3bMmVKN5CwqUfPQXDSIuH/Ixzj1AFPrLdrB3hwUfbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0951a94a61dd6f1d4032ac2a549444d347d4927f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.7.1.tgz_1517419329317_0.8297794633544981","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180201":{"name":"typescript","version":"2.8.0-dev.20180201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b4f4d5fdeab745ba4a9898542d9f3dde31ed9994","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180201.tgz","integrity":"sha512-rJoZuRqxr2aNjlud7NoeMARbY7/bD1AtQZjWIL8ONzr/Ym0FWpuu0f+t0zv1bRx5aZFue1cwFXw7Z+Gbvv6+NA==","signatures":[{"sig":"MEUCICm0gdJs7nQYT0fZj9eiYcB6R0sfPKtlDBXMobJMSfZhAiEAotCdff3AcP0kta450KplZ3FrAQYrBQFVNgbeFoUKaeY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f96c04cb2b450625190722f92eee7b7db268787e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180201.tgz_1517466988864_0.5271698676515371","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180202":{"name":"typescript","version":"2.8.0-dev.20180202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180202","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"09c96851af6e29f50f10a877c5726ae1a94761b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180202.tgz","integrity":"sha512-w9o+8TEMPx8mXmRVj4glcL/DtVnQQMNRrZOzkO6AESXkj+P3ifDVIB9fbeuHkmwGb+Yt23Z6fNT6XlUrDCKzSA==","signatures":[{"sig":"MEUCIGBEhLSHwyHq8+3W3JV51GyluovD3qakGU/l+bXPXSZTAiEA9Z/VC4sPMRid2tWAM6hpeL7elXhU81kJIfFQhfkaBVs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"06c5d393b59d3ac7734e11aab73e16d01cd2ca73","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180202.tgz_1517553658412_0.5032443227246404","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180203":{"name":"typescript","version":"2.8.0-dev.20180203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180203","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"75a96b26dd3f438143d9ef444ef57c33292f8e87","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180203.tgz","integrity":"sha512-YzAn/qLiytIjeYMuuAviZeyrW31O3rvTC36lJ5CSIKRAl2C7r1/hcbNLNgVoVnFrpyvCuwKPYQnblqszhf9bPw==","signatures":[{"sig":"MEUCIQDIv6O2qmRvn7K3yZY6I2ix3lygDHyctZ9dCYAOOfj49QIgYFXbSRFz6uIuUp1LkyK6z5A5PL9kyT8e1rLD7knpfhY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"89de4c9a3ab3f7f88a141f1529b77628204bff73","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180203.tgz_1517639732544_0.8922425315249711","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180204":{"name":"typescript","version":"2.8.0-dev.20180204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180204","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5cb08a98792693bad7ef4c184111777bc9dfa754","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180204.tgz","integrity":"sha512-0OIYj+jIWs9T0H0k5oHEMz0l0AvA38KDFEpd6RrIxTEpvfDPmCMHELpGfF/7bVwtyODrvm2I77z3D8tOintFMg==","signatures":[{"sig":"MEQCIHVCKP2r2LRzOqHPqdZ1Z46HWv6cNcIzleRcDFGBbsfzAiBOFx52YBbtJIaLF3Y3ouB9m094wLcCAYWL0drjfTOv2A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3ef1b56ee9afc7ceba7e3d5f25081ca09882131a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180204.tgz_1517725765976_0.01191381667740643","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180206":{"name":"typescript","version":"2.8.0-dev.20180206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a62f6b732668b57a1b2e44feedf44d323821ea45","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180206.tgz","integrity":"sha512-QjAB6EIinOa5znHR8GLbFwDD6bTTyoqIOSCBuX6xTiMQQFhpAxViP5Aux4DzpdYz36qG3mqAVJKICJAw7qF6eg==","signatures":[{"sig":"MEQCIFkF7zEnWXVTIOXA+diloaIIw6Ggk2Dr++XaWdKdCOCyAiBf/yPEpEMgcJ6XYyJ1spAJU0kb1bk+tBGPDibuyBXeDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"10dfb93299d3d6afd12cf621d60ba1aa27cc0809","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript-2.8.0-dev.20180206.tgz_1517899174846_0.04756855615414679","host":"s3://npm-registry-packages"}},"2.7.2-dev.20180207":{"name":"typescript","version":"2.7.2-dev.20180207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.2-dev.20180207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cce45b8a291be54342d10947a7c5745d38f5b373","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.2-dev.20180207.tgz","fileCount":73,"integrity":"sha512-6BM5tdFCVxMNWdgq07rDZo9nilDCwen3oz70q9aoxsCCtm2/gjWJ2q3NisgEfGglgKJKhAFxuMV6GrpWp0SkOA==","signatures":[{"sig":"MEUCIFUPCYKSU7JCYkTvDBpHicEYJsa5BFCdLOuki26fGDOoAiEAwTbA2m2C+PnWxpzSvhBda2a4rTXlbISdyT2ddC4onrM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36370918},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"24fcc3f554bf32d8204128a88ff63d7a8c4b2877","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.7","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.7.2-dev.20180207_1518048730386_0.17862674609605445","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180208":{"name":"typescript","version":"2.8.0-dev.20180208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180208","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ea47e6f7bbf1b6c154670b450c9e5b794ed94013","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180208.tgz","fileCount":72,"integrity":"sha512-iGasZX0HPnUQwkhRuTDNX1P2HWRozq5fugCLaBFe+Jc/y0S8/DKjhaRetOrcsaXrP4bJyRqxX9H/a/gnvV8SpQ==","signatures":[{"sig":"MEUCIQCFbdFqtJgVMF99wJcsTIeWhvD4QYanfB6njhKNx02ZFAIgKQFm6igzaVye2I8SwMD+wWb8JgL5IunJ6BvWlG7IxU8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36387151},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"871e71d4efafb128c5bea4dcdd262adf92a1e72e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180208_1518071891845_0.4712530538694193","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180209":{"name":"typescript","version":"2.8.0-dev.20180209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180209","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"28d7584c611dbdae9f839864c8d1a1d5a31a1bb9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180209.tgz","fileCount":72,"integrity":"sha512-wGZk9O/i+d3IlCyvMaQhqMAmop5JH57QeEPn/b5BzZI91tRcXwDo+aSPdYWf72BIpK24KO7FXXzr07Kc/uxPKg==","signatures":[{"sig":"MEQCIFGyA4+S0smFZY3r3ZdztaJvR2ixi2cYWnxlTBzEK7KAAiAbTHxC/PQgwUVJvrClItRlhbY08vltyNhxY+G2xnKQ9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36398211},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"868a9ee117173a60167626131a78eec00f19b716","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180209_1518158244778_0.05520770015332088","host":"s3://npm-registry-packages"}},"2.7.2-insiders.20180209":{"name":"typescript","version":"2.7.2-insiders.20180209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.2-insiders.20180209","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f5fd92cededf56e8d20f7b49f75d086a80afdf3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.2-insiders.20180209.tgz","fileCount":73,"integrity":"sha512-vdlhXAfjTgw6FVUYJKoCnatQuoluUv6dqXl5qV4IXInFRzC/8nHysxUSZG14wrunMI3FsejI2tKmzBLrhw6hBQ==","signatures":[{"sig":"MEQCIGDj1v+//3dvrxqnLfTAFcIfKfwMkYYGz5KIw0OBtFcVAiB/dqWKmxz5mbYZwtSYqjkzlPcZ8NfwbMOIrgvhUlpw4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36368095},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"24fcc3f554bf32d8204128a88ff63d7a8c4b2877","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.2.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.7","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.7.2-insiders.20180209_1518217333927_0.3502067756041636","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180210":{"name":"typescript","version":"2.8.0-dev.20180210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180210","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aaed45f60c53ea6c866bc9992eb56387982919a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180210.tgz","fileCount":72,"integrity":"sha512-E6KoA/iaDIX3J0D1jN/qJfdUTkpuCfgR+oC6o1aBsfcwou2ZLco5k9M9O39lekFFmgT7JttPMQoaZputbu3brQ==","signatures":[{"sig":"MEQCIDOIiM2tnX7FN1Z+U8L8sz4nNL27oXQhxnElPB1mBrY2AiAbz/S4IGldEVhcc8rnnH14D1sIEoeXeemMEU9OLKqbzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36426156},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"57d94b96612ef7e9c6138de9c0cc8ba4715d1c19","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180210_1518244738675_0.7204054218979552","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180211":{"name":"typescript","version":"2.8.0-dev.20180211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180211","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"864c01de310ae18349b631f77b2e067604e37560","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180211.tgz","fileCount":72,"integrity":"sha512-noZFjJ9q+hdgtSi9oz0HSpe305IjFf5MBuFeioj7k7y3Y1rAOE7KgfBYoKBuVpuPENHzCk4EJlv+nAl6clBw5g==","signatures":[{"sig":"MEYCIQCkcPqWxOEMHgsE7c9LG+VJfHwFoJEc/vjcp4xYMeSRjQIhAPZ0PDGve6g+ywUwNNrZ//N+vwu/vUylIwr3dA/RARV6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36439292},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"611ebc7aadd7a44a4c0447698bfda9222a78cb66","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180211_1518330739674_0.8676419419039227","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180213":{"name":"typescript","version":"2.8.0-dev.20180213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c04f5189ecc1feb29e40318ebcfc396fbe8ad832","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180213.tgz","fileCount":72,"integrity":"sha512-U8OjhKh3mbQVYc6LIKNL0VmnPD2gMY0FYVaXYxBAKBY0lyMApcNY6b67BY2ifyn3s9Mj6ZhxPPnqx+PfaC68gg==","signatures":[{"sig":"MEUCID44CAH+2Vb2Xe2DzBICyIs7t99Utd7s8yHiDcvYPfN6AiEAhgjTaZoUEESvBJUhKNA1uvkcYXevhJqPC6zZwPy/4ME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36409620},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"74f01abfcff60806e87f2af5ad31ffd425af806f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180213_1518503766125_0.9299734923369067","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180214":{"name":"typescript","version":"2.8.0-dev.20180214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cb60dfd8a47d15200412f29310d6cd28493dbb08","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180214.tgz","fileCount":72,"integrity":"sha512-B8FazLtI2OX9uVwiyEXk6bqtz1HPjWKYFR5r6C5V4+EQyMzkGPVtdK/JzD3IID4ZhcZrA42sBJReWrzVHJddcQ==","signatures":[{"sig":"MEYCIQDI6djCtfUYR7mpgNhMEXlIg11bCBOSyExwxioUYotIkQIhAJRQHJnrS4SYMnfvU1J39d9I3OVHM1oGxkzQZvCh/TZM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36421845},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"80464e8ff145bae5f09253f626d94556f2077f0f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180214_1518590145393_0.08998105691341252","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180215":{"name":"typescript","version":"2.8.0-dev.20180215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180215","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2baf13be7c234a1a79a77552bf015da31e3fe4b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180215.tgz","fileCount":72,"integrity":"sha512-JoMYuK3tVVKtAIpC4/6Nr2PszRb0CUlK6GevpyZN4EbtuynJ9W4LT3UoOHXTNDkf3e1QGm5A0a74YZkVKQP/JA==","signatures":[{"sig":"MEYCIQDljHB73kE2Rlb6YoUHJ87WefeeT+Eiq/Ks56I1iGi+uwIhANOLqOh8O9L0kdxQwdPjEF5etUMyQXfHphlO8p2HZ+EW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36422127},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8518343dc8762475a5e92c9f80b5c5725bd81796","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180215_1518676784461_0.5078019503200384","host":"s3://npm-registry-packages"}},"2.7.2":{"name":"typescript","version":"2.7.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.7.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2d615a1ef4aee4f574425cdff7026edf81919836","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.7.2.tgz","fileCount":73,"integrity":"sha512-p5TCYZDAO0m4G344hD+wx/LATebLWZNkkh2asWUFqSsD2OrDNhbAHuSjobrmsUmdzjJjEeZVU9g1h3O6vpstnw==","signatures":[{"sig":"MEQCIAzXpKJdVaehQvOJvIud522upH75eqDWWwKpFMJRPJZOAiBhxUpvuIbjUzxxHloQyn2PBj2GJ1TZQMXNSonYWDTsdw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36366737},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"90e6f4984a52c6e403d2b799492ea81fd5d9dd71","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.2.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"^2.7","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.7.2_1518720313356_0.35853084358629217","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180216":{"name":"typescript","version":"2.8.0-dev.20180216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"450849396dab789e8d1added80f08da9115347e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180216.tgz","fileCount":72,"integrity":"sha512-M2//dOMpHN0cWCuKsnHAbGhk66UX+0MBQ/stN9FlVIs1mewYO+hXeWmfiHRv1KWrdgI8lADPFofvGKl7hjggGw==","signatures":[{"sig":"MEUCIHosdq80qg+tRaI+Nje6lRNTCMlZCY7eh26W1YNEUC8fAiEAqxkT50G7Ear+2PerdnwRvcaR1tw9zkHuXTPETAVBixY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36413563},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cfc234f959db400023e303ded85c2566408d807d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180216_1518763327190_0.6523202713183918","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180217":{"name":"typescript","version":"2.8.0-dev.20180217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180217","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d695c2e459d3f66944f364019cff6ed65ac260c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180217.tgz","fileCount":73,"integrity":"sha512-2eAO3wEwHhIQtPuonZrxcvJo3ZaiwIRmMM1VkTKOr0GGm3rhboPYxaNWEYXKjkYHy+WELrMMKCAJkzlcSwwatg==","signatures":[{"sig":"MEUCIQCLEub5L3eNuht/HJyrtMgUjW3K6bnH2pQyl1+QG7y/ggIgbth6x7B3nlRbTnGkcbNVKnGTMcFm5BZhHRAg+970dQs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36521242},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b3edc8f9f4d9cf4203c4c4493e4f0f3dc96c845d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180217_1518849410911_0.39801835054802814","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180220":{"name":"typescript","version":"2.8.0-dev.20180220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5ac7b8f82c6adb4ba000bcdcebe99db0bf71f950","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180220.tgz","fileCount":73,"integrity":"sha512-nGJSSYmAmbhxFBs7Din47ldlRWjibp5s+ysmIRmVwDGJ8u6bVZcEqV/Tnh0cXbebEvQLp4C7xlstF21p/l73vA==","signatures":[{"sig":"MEQCIFvPKPVT7d975g6XeIOwgawamTVQQgjpnlOJBIc+hBX0AiBrgVFhSmMMxW0fZZZMgwSPOjZmW+MCCl6CsTw3HGVIFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36522665},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7e908dbe91a401102535630d63425d90d9015c0c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180220_1519109059547_0.6176488917846343","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180221":{"name":"typescript","version":"2.8.0-dev.20180221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6f86d3ade73aa553582ba66accbf613cc1a348f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180221.tgz","fileCount":73,"integrity":"sha512-V53SRiHY7DtoUx8j2aPdyeAZLqJ9cIFdzEPZMKbAfvAsxSXCEZ8v/Zz/cw7g2RzwNvE62kM705bKRw5LgYLvIg==","signatures":[{"sig":"MEYCIQD5fUQV0iv1E0/UlHJb0QQFKNoJecC6F3gWC6ZBjuXhkAIhAO+BiZDdpMy561x3ohNjtsbmkLSTef7rPwnhcV9x/4t6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36520782},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4833657c335bcfbc16975437ae3639c32ea148c5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180221_1519194942654_0.9404990572442904","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180222":{"name":"typescript","version":"2.8.0-dev.20180222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180222","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"50ee5fd5c76f2c9817e949803f946d74a559fc01","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180222.tgz","fileCount":73,"integrity":"sha512-K7RvdG7MuggHhq19XmjTgfXyFzbekUlwmqs8NY4RsTJRBg0dKHLofHkx7JdiESNSyq7aw9EH4zPLWQJ99f3BHA==","signatures":[{"sig":"MEQCIGS2GqRUAT1+yvDLUOtt5VTZkAna3KUXmeyhHrJRhCOhAiA4FShb7n4++TmqwfUlPp+QMzudUTUUfrxyZ10Y3zIQNw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36535988},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"95213f00834ca380627f2a810ae49a50b281d86e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180222_1519281553584_0.5102318370466847","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180223":{"name":"typescript","version":"2.8.0-dev.20180223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180223","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bd069be8684dd1ab76c183ae8ef4ee49d7019492","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180223.tgz","fileCount":73,"integrity":"sha512-RcoAg+IpPWgIObKhfgTZlq5OlQkcOzE+Y+6zIxakVrv8mhq1YOHdjgNLrSmD8PjyzkbIj44/dWxvuI2bxzGVAg==","signatures":[{"sig":"MEQCIG4wyF1mtxmkj4VV26hzl6kPiVk4InsHHswIS6nEvM0iAiB8oDvS7rI99edYrFDMmVUY0ogf1lvYGwUmKpXHX+9eUA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36528369},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e8fb58709716c980326615047d34d7902c64af3e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180223_1519367710819_0.43793163817051717","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180224":{"name":"typescript","version":"2.8.0-dev.20180224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180224","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"15fcc62103d2e5bc34dbc3615c3b781c09db440f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180224.tgz","fileCount":73,"integrity":"sha512-fbkIRWQBJ2Iwgjev4ekCuHEqNJEgSoc18ER5gHiaO9HiLuVZCCQBuEKRzDd6EZaQ3EYn3T5aQCphdkJsdTX2NQ==","signatures":[{"sig":"MEUCIQCwXbF3tbkqv5UrRsM08y0lNO1iAODrfTw65Eyb+TogwAIgczLJHhXz0j8p1ns0gvV9S2tR0jR7njnOaJMcREPXzVo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36569255},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b31aa4e012fc4c2afc9c2200f18b9e79edac160b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180224_1519453896092_0.9886814855552231","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180227":{"name":"typescript","version":"2.8.0-dev.20180227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180227","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8cecb57a101499bf024ebe4b1fa5a5873d68499f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180227.tgz","fileCount":73,"integrity":"sha512-0SnnkCkO+ZxW6un8Ylyd1+q2gyPYoev3DGWJAhpkQr/P6RqmYd8lHuZ/T8vNXCPfUaQygJu3rPLMNMGP+lSnEQ==","signatures":[{"sig":"MEQCICJ4QQdyKW6hiJ71SuT9aO9OK4bW/qrIh6WPfQjUUdFhAiBK06PcwczS2uqPNx56DkQK69ltRcUXHPj2ANVIDVeqTw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36607414},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"32c63a26284c0fcf6dfbdce709f3da680c2940d9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180227_1519713667984_0.6264634322223994","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180228":{"name":"typescript","version":"2.8.0-dev.20180228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180228","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b10b5b25210ab3cf56ce563c22adbe1aad801722","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180228.tgz","fileCount":73,"integrity":"sha512-4T/VzD14bhgljLb5S4civ2CuSE6pG0i13lvMpizsCteImSpWWesqKbgpPoxRdlDUqBpEUzmUe2Ivv/K+eHygsg==","signatures":[{"sig":"MEUCIHbPpR1yXWO88YvE5CMx851clndrmLMve4WBPabGsm3DAiEAsjrKwHO1gbd3QL8mwXLDhMbicl7RwsSvr7774aJconU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36609268},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c1128d6957c7e60f54ef6b7c5cd7e1308fa2bb69","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180228_1519799880089_0.7323577842893272","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180301":{"name":"typescript","version":"2.8.0-dev.20180301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180301","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ada6c617e5d592a90bc67c4f68e953b41682c4a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180301.tgz","fileCount":73,"integrity":"sha512-lk3/1760gfEGP/lHtEm/hZnXx4LQAAyYz/5UufMWxMJ3jk3WxFaeThI43QyuuikBg6RdxpnYRsei4OyyzjF3gQ==","signatures":[{"sig":"MEQCIHFR76ekddco1xEErDcbxR8kXVGrVGypIPhUAVOSzwoXAiBfakgHwqvzfewmlefEd8HyLJdDRrhQiTGoi4UgfC+52g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36609585},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d0cdeef51206b7fe877a2953550067f4e11d1546","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180301_1519886880519_0.46640639564738184","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180302":{"name":"typescript","version":"2.8.0-dev.20180302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180302","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e40c3be7aeac0bfce3c695e3043cbb2c42f99fb9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180302.tgz","fileCount":74,"integrity":"sha512-oVgvZ/Erwb0XTz1nGqcFe7PxetVEpLVZxUEFtRUgMmT4dWrMnjpaWfc23JHPIMvBm3eP8cWRhKhcuOYIEjXWmg==","signatures":[{"sig":"MEUCIQCGE/1nO9q+BRNQog9vvLi+dGM2MwqSaCHK0Nd0J2P4NwIgMTp4lhDaBbeya48y/j3y19mbWhupGsmrLboYqsV1BSU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36623418},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"dfa1a90b25b0ea171470de9a207075948cd34eda","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180302_1519972572046_0.5904230102353956","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180307":{"name":"typescript","version":"2.8.0-dev.20180307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180307","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9fb3f53fecf6a84e17c1d222f216bbfdcb381a92","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180307.tgz","fileCount":72,"integrity":"sha512-v8gWVik3uKhHSzx8VEKDR9t/jAEtJrxgwBde9hbt6re579n/xjB7ROUCzvcy9Le4BzxAQGmOOP7HsQG+h4Nvzg==","signatures":[{"sig":"MEUCIQDyMmgyVuy8HlPF13kpcjr4kPhSkZCoYX3UZ0DEfcRkzQIgenjxlhi7iOEhW57XLNqeE0NOsowhiXKCDM5eN3U1Ny0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35498315},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1e06637652ffc05c79c05e4112cea7d561cc17a1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180307_1520404948670_0.0708791791311345","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180308":{"name":"typescript","version":"2.8.0-dev.20180308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180308","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d089f067fa8b7190984bc2ea340679bbddc1bd62","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180308.tgz","fileCount":72,"integrity":"sha512-UI8bxYQmgCSdS+Keh7w7KTXSbsJ56GFRHeNxhpAyhrEuP5Tf8pikoAa71UaPXZJBWnP0ZAscHlXjrPlrfwk4Jg==","signatures":[{"sig":"MEUCIANDDbjhfouTKAdlGdu09HgjUr/W2fpS4gB590ZOzqogAiEA/+lWKqlCo2Estg3+f+dP4V8Xx8xMNMCMdFUacg/GJOw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35680538},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"88ba1ef2de9674fd6baae67cfc6aaf04cf63891c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180308_1520491837093_0.8298272053837825","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180314":{"name":"typescript","version":"2.8.0-dev.20180314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180314","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f22fd0d7d2f28c2b5b7fc2eecb84df0608aa1efa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180314.tgz","fileCount":72,"integrity":"sha512-WDW4Dn7D6Foz4Q/1HbGurWav2AVT8WKIrzrFcS1obdTV+7yfLdI5O+iAQHunl/Lc1pDAGORpF6NeMDbzpX/1fA==","signatures":[{"sig":"MEQCH2eWrH07EXWZFDqusFZlrdx1WSGRpXV2qXO8CID4QkwCIQDrrt4rsx3ua05ls+hmaPLLgy2YMaKaAyYp/reFBtiNyw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35888463},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8d172aa353787a54e0cfeaaa114c290f7dde6b5a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180314_1521009486549_0.4085662925159581","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180315":{"name":"typescript","version":"2.8.0-dev.20180315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180315","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8e2e49131bdd21b938b5c51e04f9cd068528907e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180315.tgz","fileCount":72,"integrity":"sha512-oeNSiBFB4v53b/2j3ZhocSUs4qRjf/quv3Kw6rZGdz+B53IrWWKAYH1BmKk9Vvnk/2Q1GZNOvlK1oSOvqp9/iA==","signatures":[{"sig":"MEQCIFVegHkcRhU/2biuDwqQAObROWT+c8Bc5iYpP2aSJVfyAiA1qSSUaTC5/8ktURJQuYvt1li7uDRsNFSFaRxNGNriOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35900248},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0666b281b0a33bfda98edb982af71d5e541f7468","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180315_1521096424294_0.1749125748960736","host":"s3://npm-registry-packages"}},"2.8.0-rc":{"name":"typescript","version":"2.8.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a0256b7d1d39fb7493ba0403f55e95d31e8bc374","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-rc.tgz","fileCount":71,"integrity":"sha512-PUUMWd0sLgmrLd+zRxBgHC1sCfkMvkAid48gCwhAULMxwjbYFyHkYqF1AOnF0kThXWi/K2jb2nBmA8kunRxvWA==","signatures":[{"sig":"MEYCIQCwToGr9NIxeNQhY+IM5y1Az7g3h6oVocxq3o/AZ7EQjAIhAJTGfvHXyAV/L36c/qi+ZSJt+jTsp5svCsFArSbbY4z+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35869707},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b5dfad1f61b188c96b86899079e727455f4a8412","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-rc_1521147790772_0.34349149110103494","host":"s3://npm-registry-packages"}},"2.8.0-insiders.20180315":{"name":"typescript","version":"2.8.0-insiders.20180315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-insiders.20180315","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"be9282e0240f688109252d2e553ecc06120a8719","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-insiders.20180315.tgz","fileCount":71,"integrity":"sha512-IQrctc+qh1AA7ckc9W/mZEyd3+O1xTH9I13eLWd5Nmri9WL3NUFGpL3pPkc8CWYpAO8BForoM1brS0ZKZqk2gA==","signatures":[{"sig":"MEQCIH+rIt14Ew46iIto7YNV75SS0j+b9/lAHf2vyUNwGi9GAiBThXPyZiJ1ZFjhe/eqoxbwJ2U/HPRzz5hg15osSejbRQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35869812},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b5dfad1f61b188c96b86899079e727455f4a8412","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-insiders.20180315_1521157986122_0.9365604216947683","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180316":{"name":"typescript","version":"2.8.0-dev.20180316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180316","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b33818a7e842d127a9af3f5d51d30b81df4177d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180316.tgz","fileCount":72,"integrity":"sha512-ojjBNFI89XCgC1xs8+gbDDvbm69M0TKcpkhlZTkrSpjdSZEvBl6VRQ5yh4ea4JaV5SpVwIMiR7K53SQd8grvvw==","signatures":[{"sig":"MEQCIDjz8STXV0MLeAsGSFeLVmTOTMmgHATKXvRQI5elxuAXAiAXFn/6GfhCfNvx0kLVAZPNDcbjZNxt66iz+Cn4FexAOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35899829},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"19ec83fcdfc756aff805490fd1d1ab0048b56fff","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180316_1521183224529_0.4524455217649823","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180317":{"name":"typescript","version":"2.8.0-dev.20180317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180317","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bb9a0130f6e8953c0afc7c568b1215b80abbd791","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180317.tgz","fileCount":72,"integrity":"sha512-CorxqJ2TC+ROURlNOD74zhgLnWE0KNwI8ZDB0g099DsEr2H9l8YDftcj0iBmDlvfLcZUIaidwG7lU4jAp6QlHQ==","signatures":[{"sig":"MEUCIQDNyzhdr4MLT5t9zp+KGMEoCxF7Q8Tz/UCzOdfxR1EAMQIgeSdunMlf82sxcKCxSBROLoyspb8KZcNtTwEaniHLN/U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35902487},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"bb23e9601f5ea0b4fe1e97545ef01535fa18a23d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180317_1521269007082_0.1722882807060031","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180318":{"name":"typescript","version":"2.8.0-dev.20180318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180318","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3216a51abd61cdf45c0387bc180f6de556916448","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180318.tgz","fileCount":72,"integrity":"sha512-3yf65OziJSNJhL5PYUqLNr1Bm7wwZA6HJ/hcMiu1o33MIZiTTWKCy2IzE9932KQYqmbPLZxPT4RS/0Q5DBJnWA==","signatures":[{"sig":"MEUCIQCWkU6L0byU9gwmuo75TUSBXY8KgPUv+jtfcVj3bKPt2gIgE5irxaRwzp33OySS6s4PZTAbA0R2QMsReQpoJGsddRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35902456},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c48662c891ce810f5627a0f6a8594049cccceeb5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180318_1521354719862_0.7507660245307048","host":"s3://npm-registry-packages"}},"2.8.0-insiders.20180320":{"name":"typescript","version":"2.8.0-insiders.20180320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-insiders.20180320","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"30fb1dd0230a271a9b174820feafdc9d8da2497d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-insiders.20180320.tgz","fileCount":71,"integrity":"sha512-4wlGlEyue/zAplalS1GOzaoP9lNTUh5ewLV+5v3s7rF5W0q9o5GdWUSjkpnzh6WM23AXBKHq8tmn0q5Qs6DFsg==","signatures":[{"sig":"MEYCIQDTIeOpptW2+FvuNoFMf0jPO4NZBmtF1/7Twb5U2d4VcAIhAK77EX5Zxl9pn2+0gsaB4wGbjCzSEzmXXq8tylIaU0wJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35884741},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0f024f5e32b7b853ae962a005113c51bb468e418","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-insiders.20180320_1521518185952_0.5572307791416204","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180320":{"name":"typescript","version":"2.8.0-dev.20180320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180320","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4fe6a6509e84a77339dbf512e81ec35314e9530e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180320.tgz","fileCount":72,"integrity":"sha512-rvTiAsXzIeZpifulDClAJsD6CgsaLIj/BhnO259Uxs/zjvtDz7PG6Ai6X9c3xpfnU3S5O7TnCX7xq0cdDUDGYw==","signatures":[{"sig":"MEYCIQDXYUFa/y1LhzIwB+zT9vH5hst5KdIJD5nh5ptOEI3+xgIhAI2KPPC/Cy2MBv2S1vgTYKlW7FSBid9hAKDWdLFjlzwr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35902500},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6aa0afb87d97e0f03938d39e488c69d03d663242","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180320_1521527736125_0.04096175080974329","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180321":{"name":"typescript","version":"2.8.0-dev.20180321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180321","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7e6f299b2a34e4171c5e25ce98c8986b8c266207","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180321.tgz","fileCount":72,"integrity":"sha512-Rb/PG2seK4smuKLNlN5xiTtorVjkRKKMGuCNmwWyEXcZJlaLyKhlyYh4/pcbjVc6e1Im0TLTFXapSak7XBuW0A==","signatures":[{"sig":"MEUCIQC/wOF72HWatabi4qlFmeZqrY7ccqH74ocEz6dppdcyEgIgD1qL6iK+Vd1bCeOnKbT+uEdME+LqlRePl1x+APjX5a8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35930465},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6a86534d815325c3945c560d4252c666ea8123ef","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180321_1521614280321_0.5289052819885991","host":"s3://npm-registry-packages"}},"2.8.0-dev.20180322":{"name":"typescript","version":"2.8.0-dev.20180322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.0-dev.20180322","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4f67eccf5670b17b062a4aa868e71ea94ef5c7a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.0-dev.20180322.tgz","fileCount":72,"integrity":"sha512-dSYa9IAoj3CRAxtKx9+cSCQLetB7OLtHXhvQWeWY6PPIXvbpAC41ulQWX3TUAkMYU9NS/kGIU8TFM9VFpinJTg==","signatures":[{"sig":"MEYCIQCqubzVKV0wIl7PEYl+Zu5xXLo6hO0hFc9dxir473QUmgIhAM1IA0VpBJSydf8pLAqAPRX4a+x8sVuyMR1LuuypdnZW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35939999},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"16697f6c7dbf411637fa975385ecf43ac295ec82","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.0-dev.20180322_1521701223562_0.9930831365343977","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180323":{"name":"typescript","version":"2.9.0-dev.20180323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180323","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9b33b1366a2b9af88e5e4de9a8e502f1df8b5aad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180323.tgz","fileCount":72,"integrity":"sha512-0rhbdcxqnuqvOuJ2t/nVtk5lX02V2qwKCCWQuFpVhOJU58ALieTlAo19Y5XHV99pbaUpGwWYp5zk/Go5ahSpFg==","signatures":[{"sig":"MEQCIADLWzlDa9ZYzliNk+4d8Yr91F8fP0eP3LcUKmv+VcXVAiAQXr5viCvvA77rJC9f5G4id1pPnC2fNzuSKCSKW0qsEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35968734},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"78c12cdb9de090b4be528571ffb5434ff42dc133","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180323_1521787251847_0.671677178528191","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180324":{"name":"typescript","version":"2.9.0-dev.20180324","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180324","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"40c59f9a8ee09b788e2ec9b9abbd24a85bcedafc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180324.tgz","fileCount":72,"integrity":"sha512-NWWMdVWetK2y0QII2OWWHZaZMRrGFCVe+fGFRlo6ThhqSIuxnkbFGiIx8WUopMX5KUQq9aTgJGy11I32oqCd7A==","signatures":[{"sig":"MEUCIB77D/3AhCBSjIKQtXM3zia+wY0YOGcVmvgeeqPADNYPAiEAlPTG34hkGSUD5R0AzgV2bsqpMyvvZp/05hBktChgqpo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35972461},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9557e4ad961c97e553e85e94a08f39ff72d3218e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180324_1521873741215_0.16030879834903078","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180325":{"name":"typescript","version":"2.9.0-dev.20180325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180325","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9c78b44c647f58a276a7e2317cd0e89163d87aca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180325.tgz","fileCount":72,"integrity":"sha512-w42V3MoOXi02+t/dd+WsuF6HRLDSJACeiFHxcRfvsB0INsw7xu9cGuh0fwwOYQK8HwT3yyKD4hVts8v45Ki6zg==","signatures":[{"sig":"MEUCIQDHqgtBebsUdDtqrDjj5aNuqX0Ov5FU0MJRe46qw+i3zgIgCqwDfBAwDQlNlPFMsEpXH/sBslDyUxSrkg7u5dIEJUA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35972789},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3710218d95e5dd07e9452a6d8a7a80149632062a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180325_1521959643737_0.9198226384111372","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180327":{"name":"typescript","version":"2.9.0-dev.20180327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180327","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f27ca1d6761c7de5e530ead9c9321b9f66c13d1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180327.tgz","fileCount":72,"integrity":"sha512-p31rW79yR+Nkf9czoz4qKnBkI44huOZrRyYpk7gaAnO4Z1La0uPilAy9ZwsfsUIdppeK6FP4UCN1J30VreJBng==","signatures":[{"sig":"MEQCIG7AdGTVfjSCr1Xfd0ZP7n0RtrNRjtjL33ai/wvfXnL8AiATMKMRWSX+zm3JevtKqQ8aTivv+oJ3NRQzS/7eYyZk/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36096916},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"dcbc478efa19435e74cb1cbea6405b336533e8d7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180327_1522132356582_0.4272406707503891","host":"s3://npm-registry-packages"}},"2.8.1":{"name":"typescript","version":"2.8.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6160e4f8f195d5ba81d4876f9c0cc1fbc0820624","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.1.tgz","fileCount":71,"integrity":"sha512-Ao/f6d/4EPLq0YwzsQz8iXflezpTkQzqAyenTiw4kCUGr1uPiFLC3+fZ+gMZz6eeI/qdRUqvC+HxIJzUAzEFdg==","signatures":[{"sig":"MEQCIAXcsFewSmrBVIq85zgj6byS9+V57g0oWUL0DAPgY6CRAiALZoG6czKHJcqrFqQfHBkfoqQ6BmblI0eEQmYxnE4oRQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35900541},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b28e3b09dcce0e0d9100336c55a3ec27a3eabf41","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.1_1522167629942_0.3962771008981971","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180328":{"name":"typescript","version":"2.9.0-dev.20180328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180328","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7f38af87cba211e3a01933cca6cda830389b22f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180328.tgz","fileCount":72,"integrity":"sha512-Ubfmv2U23rqhYDKWH/j1YYnlrcGxmJj/ZBK+IeNfvkuaYTIPT+8+4SrMyfgeDe37aX4V8G8zkXx0Nga8OCO/SQ==","signatures":[{"sig":"MEQCICryPkehrFEafLf7PZz+mm3/9wjJXmlp3wtnEKH6xTM2AiAiXard/u41yzA8oR6iv8TCnOapHdwrBy+SYbCjKszk8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36109626},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"66bf5b4e9d2796dd03f5a5b65a9f5b51f3b282a8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180328_1522219433359_0.12771270839023408","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180329":{"name":"typescript","version":"2.9.0-dev.20180329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180329","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7bc0b6fa6cb6b8367b0e37e995f2b3c0d542609b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180329.tgz","fileCount":72,"integrity":"sha512-XBp1BUOtS2P2dqIe5wxLaQuyV3NfOUDX6aWMPk+Q1lYIdq/lI8k6KQOQ2BEA2jykxYuhyp2mKVvC9CzABnHLiw==","signatures":[{"sig":"MEUCIQDrjKe9gRioWfDzIzOCFOGbgSxqlOkr1s/7/C/EvWzGcwIgdTuCKNuM9f2agCoSn7keRw2EOBzADcmswv6p6GK6nvc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36100458},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e40f2943b1b6f96710db82555b29c760f2f793b0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180329_1522305426304_0.7658409489236728","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180330":{"name":"typescript","version":"2.9.0-dev.20180330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180330","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7c3bea24f39e9d2bdf8114d938ddf7a6b02d8861","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180330.tgz","fileCount":72,"integrity":"sha512-JWXn30Tu6cRkG8feC7Qr+Tkm0A1iDlpSo9dBcVaK+mGeaegnfeG5aBzNG5JMTYiG8UMuhDqQe6q2RvPucRybAg==","signatures":[{"sig":"MEQCIHzx95CqYg6XW8DMp7dEC79RlpXjQ22MQm0LRNL8ZPyuAiBjbO7kw3mv8wxdw8uympuhlRRSD5SmwlnZ6XwvBoC8tA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36148855},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7714a2bb5be7b2ebe04601f5b4e518ce07057408","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180330_1522391363946_0.8406185879991561","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180331":{"name":"typescript","version":"2.9.0-dev.20180331","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180331","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0e2c40306a3e41b72d9a0619ff18a24ddafb8e71","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180331.tgz","fileCount":72,"integrity":"sha512-QO5Ie2y41KStRdnqQ5Aw4RHFOfu/jyu4K3ThoTqSem0kDDVVHI+MitTuk7oa5h/e5VrCmYZ9QykPyO0J9HSVMQ==","signatures":[{"sig":"MEUCIQCI2G3v7CL1Vn1LLeoU9mPxUjx+jDSPRPT9CVY6+TcoWQIgMbhS4p4oOS+pfC98f1BfhUsGTCCGC5vpjdJU+EB4XJ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36145239},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9b558f95350a547dffdac96334157d3b2f74762e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180331_1522477747944_0.6931420361844773","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180401":{"name":"typescript","version":"2.9.0-dev.20180401","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180401","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"30c7fe88afddb11bf3ecbf6951c0dc6b3d1afc93","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180401.tgz","fileCount":72,"integrity":"sha512-OLhMZJekddnPK/VF1iFX6hmUm2jdcOjGviTS0zqcUQeqtsWhn8zog+uxj8AT6Ri3Jok5kyQHKBT6pNO2JG/ydA==","signatures":[{"sig":"MEQCIEifblh3L39tXNbRUvhuzQTAj1x3/3S595HD70e1FuvhAiAVHEm7sQBOTifjevTuFrOIKHJKhiS3oaCxCA7doZaodg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36147948},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b3829523b2b2928b15237206e171a5465dc2211b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180401_1522564078229_0.8447503629659365","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180402":{"name":"typescript","version":"2.9.0-dev.20180402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180402","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a443761d82212ec5626289b72055492d888b9b26","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180402.tgz","fileCount":72,"integrity":"sha512-3KesGmXK/niHKaJUAHrZTmJ/fLEAgCtG6bWo05VF+b9WLoy+FMNYxuC4bQyaJf0WLydlKHR8RIjE8Z2rK+6Q8Q==","signatures":[{"sig":"MEUCIAgtxwu+x93Ja3vgUUCKjOzQsb6V9punVa5YllvJnyyoAiEAtSjxyY5J6E7qbGjjFrcxrfVeoze5aVbbbQM6zx7nkQs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36164174},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0fd8fb8697ed88d66cea117e165f68a9ac010e8d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180402_1522651009027_0.8543317508514325","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180403":{"name":"typescript","version":"2.9.0-dev.20180403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180403","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bd53070924f7da6c087aa0d9f955e31b4231496b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180403.tgz","fileCount":72,"integrity":"sha512-RsqEH06pfGHHCAu9crY8LcqLTNGhJCOqDbnuAlK+qPB4KtsFQjaN6Bywrj/J2FEuRfJGow2nkoHA24WOFovjMg==","signatures":[{"sig":"MEUCIQDb+KkOgAhD1pXutx8QcADRWNheYG287auBqwswJfEUDgIgXfvGCyx2+XxXXezNJHGikfoVpcE+YABexjQLzuq9P+s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36243587},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ae61ebac8d995dca89728c750914c07c553a22a6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180403_1522738026232_0.7110983833900435","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180404":{"name":"typescript","version":"2.9.0-dev.20180404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180404","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a2378f56a3cccd36fd11e717a178a351c40bf53e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180404.tgz","fileCount":72,"integrity":"sha512-UdM6mevKwRvKuBeZqJVuJH7KMqcWII7hO0Wy1hoSv6XFBysKmEVaCS7nImOaz7bubLeKMXpP/dZIsHZRZWg5Dg==","signatures":[{"sig":"MEQCIG0VxmupVxenRmIVA07ND+sBHVG/SQvjAuuXIF16Rs4yAiBvNwuV3YSyuV9o2MxcVCAUfi5qD9+lwVr8YY2QPJt9Hw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36276480},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"db74229a89246963be198d8a5c3931b4907b3ca7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180404_1522823567382_0.29864449513291436","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180405":{"name":"typescript","version":"2.9.0-dev.20180405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180405","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c204f6d1a8e5263dd3e7f153e25a4cdf0d2693ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180405.tgz","fileCount":72,"integrity":"sha512-8okcz49OWZV8AwaRO0xzQiq+0PdrS20k26eopF5sGc3hjM2852LluBw7/uiERX/RF3b4VBUTIb/TZmUtOJFH5g==","signatures":[{"sig":"MEUCIQCy4PVOxpQXwQUFCZxMi4CiwlAdNOSPOeWJBuwwoLE4fAIgRqyo0Q5VJWp1xYlhbvE9YztXbSO9psp6rcAW4dLvp+A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36309831},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"de669cf82754980d35fbcb607f4cb10e2626da39","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180405_1522909874043_0.9575367037392084","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180406":{"name":"typescript","version":"2.9.0-dev.20180406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180406","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9a3cbe5a27a9dfb862c21e5f3f233efad753560b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180406.tgz","fileCount":72,"integrity":"sha512-pzUsBB3jZnQfpLUs5hLvI3Pj6+LI1r/6pnodLXIDeNkgS8xLkWQTs2rpfypLg10gidwo3mxABFzu+e9OCU3ynA==","signatures":[{"sig":"MEUCIQCC5v38oLFsz97muuQNAWY3i6mPWAxNj4z7FquSLPEKCwIgWYtkbryAdNS62WZYAkxaJvABZ+Z3llrWAggiM4xGsXQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36320770},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2167b244414a83ccec18edc6d88434cf0ace7475","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180406_1522996205290_0.3835805023152785","host":"s3://npm-registry-packages"}},"2.8.3-insiders.20180407":{"name":"typescript","version":"2.8.3-insiders.20180407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.3-insiders.20180407","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"915f010e258e51c9539bcf986cfd84d0271d8cab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.3-insiders.20180407.tgz","fileCount":71,"integrity":"sha512-9HdFCZSIr3cTedvmmYR3EssSAdBuOqmqDyjSsqcpH5UBG/I488g4oFvUaXP33x7XKJ9lissfyNeUe15lXxzvDQ==","signatures":[{"sig":"MEYCIQChqn4KVUTM+dGsVAdmyuvd/f6FwfAuX1g51OBjrsAELgIhAIS8hD0c5U9Ud86kxTK5x/C1EqlLs68f+UVgMPVl94xU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35934822},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7deda06f644f871f3978dfc0528612c97bb3c15f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.3-insiders.20180407_1523060716298_0.7910717543691477","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180407":{"name":"typescript","version":"2.9.0-dev.20180407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180407","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"04b2460c4052fc389b7f33c021aa0c465defd51c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180407.tgz","fileCount":72,"integrity":"sha512-Tg0/hU2hSz+4pb5Lj5+bj1uLldN7C8NO5Ik19WfftMlpeXRyZQJzglV0oncmsXOfN9gG+JC0xnO58YspE6sZ1w==","signatures":[{"sig":"MEYCIQDJeUr4Fly5+eqXkMYGjBq5Qs6TizMzofFXG2kburpZrAIhAKgZ695VkbVFyMgU2AbKeaGcBWYQHEgiT3lt9dqLHvbN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36328534},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4170f35abcec2710c4549d0b3a14d39dd9692988","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180407_1523082732334_0.1576601007776257","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180409":{"name":"typescript","version":"2.9.0-dev.20180409","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180409","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c2a68e9bf45157bdea38c4e68a752350d42440df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180409.tgz","fileCount":72,"integrity":"sha512-yGz04OMwldm/opxRu9xKM9IAw0SalrKTfSX6Ut/4BbwXDHhfSG2fLBJTxREQKHSR8azv9aOBfwhGvIbdc5FaVg==","signatures":[{"sig":"MEUCIG9/Y6oaLY5FNCDwPVveW/sGsIXpP06n0dGTKKm74HRIAiEApANSVwJuwh5w2mxjukEkdSMfMvFf51jMAhSoQQwKaoE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36328788},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ae0ccf340fddb398bfe1ef2e1522624d47ce9b18","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180409_1523255582738_0.9232850703194744","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180410":{"name":"typescript","version":"2.9.0-dev.20180410","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180410","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5fb2fc8c3e3169493d9ce59057ccbe6cbfe12c40","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180410.tgz","fileCount":72,"integrity":"sha512-0f47t10YM2c5fxEE3opmvok3hlZiJhFYSHpgFt/VgY4BaBf8uRIs1vuZTD53uo5UWpBztzTjbS2Nf0bhhTsQaA==","signatures":[{"sig":"MEUCIQCSzxLxWdpx9H+jFebZmZXHbl9fA3qBWN19/bzS8fJrTgIgHvidWfH4TkbiAcE3JZv3W3KAxHwxGRPFZE11+oQF2VU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36349050},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"668c5ff5d6eccc410253eda41e3ec18ed629ccf5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180410_1523342455830_0.8875135115699424","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180411":{"name":"typescript","version":"2.9.0-dev.20180411","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180411","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0791768b1e4d4d10bfc8b84cdf1239050065c859","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180411.tgz","fileCount":72,"integrity":"sha512-5YCBzhxdkzCsH3/AWBCiaF1xB6dNs/KGdo1F0uRcouL65YL+d4+/2kT26AoXpFxeRfaeDTqX4Ds0ndYdaugnyA==","signatures":[{"sig":"MEUCIQC1U6Gk4vw/2JVVSxx+cmKPx5WJgfsLEyENlSUGawpDggIgUaVDDalaQldHQZuNQjBm/n7n4BDEyVqVZjSI4wT1y/o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36406439},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1fb2a12b0fe01ad327b239625f8333d20f59543d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180411_1523429677998_0.9531285054448404","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180412":{"name":"typescript","version":"2.9.0-dev.20180412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180412","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5380b2afb44b720b0d8164f844b90ebd81948a7e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180412.tgz","fileCount":72,"integrity":"sha512-QLEitLx9FmompsUejhVTTJBQwikdqFaUDizTtN7rHWb0PkaQ0USjoiJKg+/cPAeB/eLsXv5Wiaf1gy6xCZRJHA==","signatures":[{"sig":"MEYCIQDL1FdlLNLRlsaeJdj1diA9Y5BanHlx9+fuvu4wK6OhPwIhAMTFmzNTXhJEoYDuZjIZqh/H5wYr/qoyPOx0IxL95J+h","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36412304},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"edcf08714515f2a9ff5cbe65f4e8c233c11582fa","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180412_1523515259456_0.19949766421836923","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180414":{"name":"typescript","version":"2.9.0-dev.20180414","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180414","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"10193f90523b29802ecb68ecf6199007d62add50","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180414.tgz","fileCount":72,"integrity":"sha512-9wS/WxRJGXYs/EFNS4HrByWi6bGHPMhqEecAS9162kAZkTrwk75C9yU28ZjZ/rTgkXSqgvS3jWxgGhe3Nrkkvg==","signatures":[{"sig":"MEQCIH3+oPlfKwtmTGqfJQ+lMnfImwj4d/+10t1jJ1jFqEGgAiBz+kRyUdOXw8kOquTrU7deN7xOIPQs3C24xCnRlTXgWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36507959,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa0aylCRA9TVsSAnZWagAAdDMP/2/RoVFf5wJ/m0twcYon\nZnO5YH6tPO6vhvN4xPjPRLViPRHZPwjGX5tOrdva0/hY8cCN/CMcYBdra/I4\ni8B83skdgO0enORB8gg6gr2QWlRiLvw5FWNHF6/Ixzi+Wa0vcDiRuFpsEp3K\nn01mnEWqFf64RzvJUeQ1geKt3h377Cd6sLaYpHqeeL/AHtR8pe6MX0P/GrHQ\nS+IQqvmgTAbbk9VC2t9ZfrHhP2vXkXVP0FmkkuzZaBLmj6yhDz0PrqrNwZJF\nXjmYIYAqqp17xUanuTgorFoQrkC+3R/ykWs8tbHqNEObcVliy9HF9kGTgNSG\ngB67ljwyYVDvi2dnPL/uQJU0/gMtsO8K3nmHBKFo1u2rGXGkqx+hBwqa6lXX\nWqLb5aNhePSfh4xpYpQlCSn6zcIHRTTa1Gu40Opv1NA5bVgpPVm7swur5mW1\n+3fD9xoJxwSnS14hNQ/ii3wTr7jGwji00l+5e6adRZoAoOM+p9OcRoVmxFte\n6wKz8nf/X35K5knnsqIDzPKDrZDyhIn6KWwsJ+j1RYcdZ/2VDOXDJZ4icYKq\nRszAvtM1gdoKNOEcSCEHWmMGuiuDC6HsdO8LzXZ6SCN1U6qIZ9uVp8ADzmuh\nsICtrBeQ85de5Sawrj9VpuxeJ5cE/nEXlYceoPDrw4eF8Bj8KPFBP6xNKT9n\nRUq3\r\n=eoPV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"23ed9f842301ab8c7894823afc7a356da960adcf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180414_1523690660845_0.7746904707515669","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180418":{"name":"typescript","version":"2.9.0-dev.20180418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180418","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a3097c3d478d0ea11068a18e643055fcd74d8cb0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180418.tgz","fileCount":73,"integrity":"sha512-PyWtc0u50ypLNWISWq9O3nZ025Ar16d94Ukv/qMyL9AUWXz5MTPvFdyFqPrwyLamoQG3sJlykZQefAFHhIxLlw==","signatures":[{"sig":"MEUCIQDkkiMfxiKGL7ydkxZb+pgkR1bwyEfjVSPqZC+Rn5hwegIgNnVXegIhIDLOR3DPPI6o9sdYY7v0Z5z0bMskAzXHiFs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36568188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa1uySCRA9TVsSAnZWagAA7CIP/AksOl55fMWszJec1Mcr\nbqqdWQF5Zjwi5ijZ+JmJYJeFT+CULDhASF8rDusUxU1vN/oEG96AwFJHv3KV\nVdHhUxz4rHRxVVzzFf7esL8QyBFRwKg90jX2bfJUEiZD4uu+T3wXmoqP2wdb\n/uYI1/EMUAkJJ1qCx0jMTJhQqkOmuvcZ+2TWCHb9kLvfEXufVRo5o1oVno47\nwndBQRvaPUySChzADf6RQRonNJ9i321/P+j0cFqIVSg0GwqgQy8PTsxiWX5Q\nWPVvHIpAKuX6j5I1qK71mv9mzdLdwXmCLZ7iucj+cGMLLQkA/T0/+Q8R8Eds\nn7EHSQf7QfmNJAxhqZu9+/IsL9BDq+uwduci9ZsD4c+s+4SljHecnW/eQSvv\n49nSkvKEJxGzO8fDjZsfCwOPkxElRihmlEHxT6VZe/XhNdNc8A4p/24ZSalM\nFJ21FGW7lrlx6QbltC+LdvzvKZpDwo0djfPQRZYk7IkJ+gFWfMMsjP5PFcra\ndcTIvHrhIPI5KIi2EJNloz0IuDKdZv422IR9pFCNZwom9CLUZ575NwOAgMyB\nFkgfbQjaiTg3NjvVQqIVsG6k1jNx+MpXClO74ZnlljBd/mODqbcRmP8QCvR0\nXXNA/DhHLHJMG/2Afv975IHTHp6iqDmyU+5SQFSsWr4NBDZPLfE8COSrMDoJ\nba9t\r\n=9JDN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0bc6470f1d0b28f48365fdd9ff628192c3e2dcc2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180418_1524034705975_0.9390557998403479","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180419":{"name":"typescript","version":"2.9.0-dev.20180419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180419","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ec2f6b1447de34d6357bab8b669eccdc55288abe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180419.tgz","fileCount":73,"integrity":"sha512-Fe7WMJJlAHWC+s7WKxx84UhgH5mdJirexp3Q7cU+SY6TD07/UtNTT49SeBPuvkoDdhoDDgNLmfaU4b9Q6jJDgQ==","signatures":[{"sig":"MEQCIHZSz1ZmgP1YAG8VGWECImsqI2hkzLf19NcT90EskwAeAiBbKuDkG22p2EeZ2H+T9M9CYViKvcr6RlK+r1QlxtXP6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36567514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2D0aCRA9TVsSAnZWagAAfuMP/RSa+gJ9ChVX8YAD6tFc\nQ6oE61UfzYwHRy6cTzudhgENxnf5KxB8I1HNf55yknCV+R7pIOPkbS1y+3gz\nAjMBNY6m9x/4gGiy56oAM2H24oNhNHqLKD5ymCpQ5se8AFMQphY7+Sk9sSFo\ncTtLuVShNPggB+h7kJupDtw9Y0BbTZ26DXYi2u4RfVRWnJXvdUcvch4C/RQh\noz5oBeDtE+xLRoWOk5MukTanALMeZN3eUH4I0HbH6F553btzutIQY0tfrCYv\n8sAeYGkH4H4ZQisfx7cOEjlqKpAn3u95kNjwOORR7CMo3gs0UBSo4+0DNO2h\nFzJSQ/+0G0y89JlIwcIZDHAk89JxjzvOgKFakpwrRuootprYYjHF82qIF0c6\nOyJvdiaKPd73fek1txAkk/o4gFeRrkLzwDZ3pnv9VatLjrzoTHSvEXS6lLbU\n+9TqtQUxdozlDQVzMsMnpJUkpSWkfEb5m4QOQ438qXC1iXG9Pfg9QfmNqsKk\nGZz3H2TggOLqh0lAqDbw3eVE6MJX/VrH6yFIUTG4inydBRibkLWbigb6dr6w\nk5TDIOLsQUD5JmXcQsPoDY/rLp2ICpoms9+50vfGOHd5d1Tx7jjXpXJk7dhK\n5I9atMlf2kkDB0hNXlfLZD0oWU5fKYEByB+yVKB50d440hsDsGSXqKuMIc9G\nfkdW\r\n=MdB/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"238ed7a94ca78350294548a164d75624a787e119","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180419_1524120857488_0.12110367807771372","host":"s3://npm-registry-packages"}},"2.8.3":{"name":"typescript","version":"2.8.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5d817f9b6f31bb871835f4edf0089f21abe6c170","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.3.tgz","fileCount":71,"integrity":"sha512-K7g15Bb6Ra4lKf7Iq2l/I5/En+hLIHmxWZGq3D4DIRNFxMNV6j2SHSvDOqs2tGd4UvD/fJvrwopzQXjLrT7Itw==","signatures":[{"sig":"MEQCIDqv+Hu4AWHTyVrnyvYtz11u4/E3q3CPePqucCgnLP50AiA7Lt3mALqBQyTclTFXt1322veNPDuDc8uPyDa0arnFag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35935233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2QgdCRA9TVsSAnZWagAAqh4P/j2oBAP68+i9VNyHWZQ6\nSv3iYaKePU3XQMUwdi//0Srizl1gJWDhQuOAiIT5ht/6qff2AO8dQjZ85VIO\nW3mT0oKq/srhEufdBSSY5rmoX0VA+pWoKrpWoYKVES71eOPcJRYR9HkSYUDp\nhmfULBKgVeqUMGj/kXrudOe+IKwB5QcubumIexeDhdl76UWARxZ4OOhHP8OM\nQhQMpbxsjKp2HDBy1DV2E2Ei6UN8XmDPzujIl0dXUu0gUJPo6a0ZQ8kNwZSr\nsJXu45v4Wp3UrKlv8sjp+nfM1e+RlayZUBEkU01ROn1VkLjhk5eMWFp0AAXW\ngOyJGCJRMXXQWkKIah7282Q6Cy3ApeXY8mpzP/Xgm576iTVy25hY+mTY7Bwb\nFsF2fAiuEuKp+xD13JNP6EBW6ZPm80gC8YHng2m1nN4NdqoVGfNBlExYKpTT\nsSGMU2VE8RIK9Uc/YGxpio5STgvDULjr4ER9Q/oBfICYe+53GWv/2YPEjpSa\nwzPqT9QvmFibQv+5dZBUV5Kq8Q2zd67MoYVuy9klpoZcLZFmq2EfMmI8Gstr\ngKAP+0w8BuMkVDm379DyuhW9bjDQRQXXCKMXr9uVz/SjLdw1SMG1Apgdrp0z\nx4u76D4zJqKNjBqK3C/NnR85yZM3EjRLf5KwlFqpI3RRgrS2unBYWk31wBBU\nDvU0\r\n=2bkE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"80fff90e919d358dad9e3e1d3a49b5deecd12633","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.3_1524172828432_0.703407541791931","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180420":{"name":"typescript","version":"2.9.0-dev.20180420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180420","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c828fdf776f95e858fa8f9276eed27ca4c320099","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180420.tgz","fileCount":73,"integrity":"sha512-diqOetIH0TQcgAdyl9mNOd1HOP3khAdFNaoZYPAZEwp63s1TtntmsAZcwdeqDCOsifdBPo776MjBxYkpqTUjOw==","signatures":[{"sig":"MEYCIQC+6BE5UjGFZLXo7kqyvDaSvjSj2XMKW4DhLabZ/XudwgIhAMpTbzQKHNmONyIgyBXBn2/4UvnzIIlMUzQp0K2SsNKp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36600388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2YuUCRA9TVsSAnZWagAAifIP/2jSuSxuxRxsgFnFWXrV\nlLEULDM9e0vag+zijRhBF46b9uus0VyFE99EYW8uVwyUXjfRrspG2mSarGWN\nH3HfzQ3bZ0ddcQn5BjaFhlO+NgG8OFQf2GEb6eVyxpDkczFPkMJfvOkdKT4o\nQvxYuzFjUNEHMb6Q+irNUQcup3UdJf4AY1LoPhz8T1m5LQU8WZCXJNYvlhFo\n2kmTItAFSQ0Ww8YwfH8ihfCgCNvi9/ecdXIMFKl3v+WOGZ6SyybMMv1fIByv\nPz41Vy9YUr7J0Z/fAGfFz+21XN9fESOUpsqpLRRP5I68tGUhyqsSnpHgCcbX\n99SFQQsjhk6bqGSqi7wjRD3pQc5CgL7d5TgsMIu6C4Rdg8w9lXzEhfnA88WS\nZmPOcplrO4aZweRvhgaRMYMsYUf7996sNtSyBhqLqDKdTPhplMzE6xP9Zxov\nKL3kMWI/4BdDxJD9rzIOLp7hLe53Ku8KqJOFrtNS2xwVuqEPN+mAbW6OweEI\nTodOu+484pEgSZ7aEfMA0ZXeIGgUf72FSd6JZLVs6OviOtucYgjhITlJCMqm\nDPoS8oT1HxUBg4W0mDIbfDZQcLCc9CVy6UHAjIf73xFo64cNBFaSVstccTzY\nYJDloggLvg5APaVIn8cptblo7oQo02fIB8dqA8PAlu4cFGhKTazHsAy5lnix\nz0Ys\r\n=z1H1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2449e8db1c8e956312e2b755a49ab1a69867354c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180420_1524206483750_0.3751161634890179","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180421":{"name":"typescript","version":"2.9.0-dev.20180421","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180421","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b937b164ce73f833f2ed5c36571e238898b264ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180421.tgz","fileCount":73,"integrity":"sha512-Kkny/jcMLwNNPcAc8y74ql0d5O88v5FHzQzN9EuFskYPqs3Ynl2TV1KJr5DGTXtCjKmo2ZKIuTdq5zmVWK8Q+Q==","signatures":[{"sig":"MEYCIQCU33MFlQZxBpvRkN8CRrljfAmJtTZ4qyJxeuxqYx+ooQIhAOE5gRiyaIcWETzS2TezH9vhv1FNDYKlmx5V/OcIl1BD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36632429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa2t8nCRA9TVsSAnZWagAAb/UQAJmU+uuH/lN1wkolGgfO\nN/MpyiGFulwENs+aY66d0a/Fl0NiBD2lSYrdXhLtj2+e9Bf2wvy8MWtwkxEc\nSSoaVLKjXte1CAlEFxdYDu4/Isvqmhh+PN/afukeJwcAThOXr+RnST13uSFh\nG0aHRSqwDVMBopCbwkWqWxHlCOtE6Qrn+Capljh9SY5jttU4EpwX/YdFdo0j\nGZDg2Fp8abIbE7kWvPWF5FeAOMT3kzlrKghH/X4NDSuQKuvVmIUlVQ+buQxM\nl+EmYRQZ981KuInqFO5JYPJY/FBvaULpgVs+bIPgFxuVnnZizORw5ocjNcjU\nKRWfdO0U2WTmPM/03PlAIOCcv8gGNbzmzZ4y+W8RlqcebtaMt/xZb0lUV5iP\nznZ15pmudhm6oJgJC/BOKNwgxRnb2zI4u1YRJ7GRE/XkQK/P1uzSoHHwmBye\n70Idcp3q2BI3MKYeQER/lSsw/U65liHkQ8dKmkSrpwXM6n3uerrAKRl+Y3bp\nu4rhX1B9mvpEnET4+7omEyvAnIbH+WZDK0GPiZQHVqCgioy6hCfKGHpdKm84\nPZ63+QyNjjFQPIoW6OnB02jeoxJDv4kGsCT8+Hw2DyGyif9xm/VHOWB1kudX\nRUK3SY7qFNEh1Hz0jmmbCmLn/k7WjEVmEf/0ySNqYTXm95TwVBFGn4bExVo+\nvOEG\r\n=ZlL2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8b0fd95ae50c2b9fb1c00c3fba79babf7def0df8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180421_1524293414806_0.14531038962829057","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180422":{"name":"typescript","version":"2.9.0-dev.20180422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180422","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0957efbad5df6351a187a436d76fa4dc56ac1c3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180422.tgz","fileCount":73,"integrity":"sha512-ZoshrwzODq7xGMgxo5o1NimTC3+9W+eeSdgiDY6gd8KTtzm0roLk1LlVheUrqGWmpZO8rTdP3tCKsuBIPf7R4A==","signatures":[{"sig":"MEYCIQD+KHw0eOcWaSr+vI4HO8thyZQH1etG1IG+WKTSwuqBLAIhAIgWwZb+0+YfoqxFWrrEd3bpnqcc6StM9WyZjBkI15g8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36636104,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3C2bCRA9TVsSAnZWagAAIdoQAJdmse+D+ulN85E36Wf9\nBeO4WXEHyfTnr+2wGco9Mn8JWFhHQxSBYhn+bLxn545NAR0pwFy3aVK4CwzX\nU/mbNck2YxPiWAWRy84WcpR4N3I72Hcyd5THw21z1FDJRic+J4lgNnzoz0KJ\n/U6xhz42rTXcJidtGo+mbF91U7QXxhJI0yaLfWgsWKtm6uBSMuIf2D4st9gG\nU8Xxt1UOqsAUn3/ioQCug6KPNGavjDlZVX0k67ZPVCGccLH00+bs/u3eu+OJ\nTJizuRJODkZdyG6O6cOXzHHxEabAzqSmsXJ5nzEzF59/r31jR0IQYSlRd5Qq\nvkPiczV0bui19IDJqHPaUT/C+9DKr8f/FRS7Ull+h4zBtteRbzGc307DR/XD\nvT9ELjBhij92BVGhirQ/WCLEkODSxXy8OMXY/Njzp7LhRSPbtTtysM2jFvqO\nucxicwZWL2wIThPXbevUcNlir6KFuGnNYYQxXEOxQVQLpKkj1ThmH9JGQbHx\ntHQt3Z0bI34LbpobvVMJxjxCBVL6WSjg5bdlRKFxzcauc/60Jkqh82YC8xpA\n8dqqES0D236d7CFP9O0GTiiKkQWnDGsALhvh9qOp7Tc54UUrPazCTzfllRbW\nmMIwwlKBCzBRsUKHUWP8RTuymq46qu5mLYHbjiThyeC+tuW0zNEjvfEcTNuj\n+raP\r\n=Vrl7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"eb112ab492c26c6346ea587646dd617093e72b78","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180422_1524379032514_0.7413558187978542","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180424":{"name":"typescript","version":"2.9.0-dev.20180424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180424","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"07fab78bd174a3904a1c3e9391e3bd0b02d41746","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180424.tgz","fileCount":73,"integrity":"sha512-4wIVBrmeKJyRz/6VDBKMbU9CuuhEcPK6g0IwNPBFnmrAb1zqPGMky/cY+GYdKNZ1vZZdfWedJjQY8dlDRD9MqQ==","signatures":[{"sig":"MEUCIEcJxRmoEl67JQWogyNTgN+vG7y4Jvm3D3x6WMMCGx4gAiEAuG4AAWA9J8/QfGApKVfVN8muKlDDTgdKjUx19QDQdjA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36663234,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3tCeCRA9TVsSAnZWagAAsCAP/jaksG+RKIMGx3WSk6lz\n7UTJTTcmEF4fMP1O8OeNy6kV9+iW6cCPa2lEW4VaSbDAvTLq/6A9ssgokb93\nAhTdVSsYKaWJw9By1hQzMmEoOpN1vIkjp+U1oMbNo3riW9BK9+crUWfvJ/5a\n5ZgAyqnZad5N+39lnehjWTTYegJETQdrdl1vTsliEz4nMHd9tmuKdLFCYBG4\nFB5hWjly6wKL63q9E/I2rFoHpu5YSQzVHCPesBP45Zn+eArNUGXTzTxG3Rku\nDzt7tNVxx8ABWBlzIEcoo+JZPQRmmo/9Ns3QIYXJLTmNFnj5fXcYFrhaCqm4\nooOZZQWiw3f1wzOmBZAB0XovlorBQQ7NwTRqKX5FI7o5+XSbssPG8NXkqkNO\ntEu8bDGRX7e9UDJWDUTTTAt/PdQMskkBDzVAa/QD+g43jdxarDQRv5bY9Ufi\nHWOOvuN+yMz+pYkfjPfxBpmv2RWwIM335dg8y55XuxH+kEY+b+gz36vIRKhM\ncyhb7+7mc1pq9UBT1BMvBvdmrmqDU3NJnu27aNJbF2LX7NsUtzXb18tj52Ni\nQHTuKw5tK9Vz+LJIxEmMpP9/wtWV3ywhRwv87gSjUiPYE074Nyh1LfYBbOBz\nCtz7DucqE8XxIkYp4DTcjpDZdzrzJNAX7vsSXbsl/AZWHhf9f4BXH2bKseha\nKx7N\r\n=wpUk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"054a6ff354dcb25152babb7a6d230a687abce94c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180424_1524551838330_0.5369347857267841","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180425":{"name":"typescript","version":"2.9.0-dev.20180425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180425","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"059388a4e82cae7c850259d05625ae493a4c2817","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180425.tgz","fileCount":73,"integrity":"sha512-6t/l13ofVeTSJVD78b20E0rkoOcFPrst5bK9vCGDbbjzx+Ab3HoV7fSTuwB8zMEvpxHwQtR+0kR3XUy06HzwUg==","signatures":[{"sig":"MEQCIHNFjd/Fafb5U8FU1SViLgzhUl9eCSma7CHsfYAn0S2JAiBVUgkjjJ3FpR16fth6NWZW3XN1p5XiQ3syIQ7Z1pvZQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36670841,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4CQSCRA9TVsSAnZWagAAl2oP/RfIBv3Xe4N6ospRjy5N\nzQ+jcuDUuCjPW5Whd8pW/SjZmGuPdvJowfaMeu4Uqg+2HAv5B3/1DmTrRly1\nC1dHWRMLKpfHHlhhz8AZmacdvWuPZSlnl2L4li6iKYWQtFXevGlSg3jkmJlY\ndI7F3ey7z8VUZFQtaA81WJRpdJyI7ZBOzdUkdVwF3uba/Dr5TkdrRrPJ22CZ\nWXOI1H9/HtMXTH6lLYfSjd2cU+5up9tmeuRdRadk8IOvHNilNoEDbSZyzT73\nCKq+00QIpV+XxAd62uQjZ9IZclJomcqyKqKY0uezNzqrmLkSIj4/3qZrR8nO\nbOwC5dsuMUICrzU7n3JgqEvx9OeZg+WsOmzKBY1gDIq/cw084WHh4J0jtjmy\nB7tQK0G0BWgPvauhVOeGBUPRp4oXOo9a33X443ClmhUm7wofMg38YlPOrNOQ\n8081X4ydFNF9sU+ZudqS0URd7lHuzMmr5BV8ZWKAmcabp/SrymykCKawlNsv\n/vFyEZfjkIIoHsokH02o6Nc0ITCHhBMyAlOYpqs0AXohbu4xDH1ZsANxdGqf\nJEqjbMWY0YAwGptHnG4YklapiGYmmZ8IeWhomiNqglYV24fgIlZTN9IkUZp4\nZVojGBC8DaCVsORVkfCFstR8hYifNETWzdEc3vOblUdnMiZWWWQ1Ehwu9F2h\nUcB7\r\n=I7vq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1f59e6f77a4df9196f83a7ece856cc6d9e0d5467","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180425_1524638737754_0.9350712193660844","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180426":{"name":"typescript","version":"2.9.0-dev.20180426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180426","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d6b8d31c6b874ccd66d4165fd0e692d2a9e0e972","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180426.tgz","fileCount":73,"integrity":"sha512-pOZL6v+xwvTMHS3yTMyo1bHyOjQ8EoA+gTDDYHkgit4zkxIVaJvx+0VvN5uRbvpP3h7LfSu9oOhCa1X+WmInHw==","signatures":[{"sig":"MEUCIEBH3c2rXurhzWXqwN+Zf83kIJy2f0MkLRyCsNqxb2dMAiEAj+YugKFzbyptpG0JkKTsttKNmUqKtOI+j8D7fnE74hY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36686758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4XqfCRA9TVsSAnZWagAAfX4P/2xaSH7yVepqVyFcaexA\n2B6NTRAFLUXSXIEs5yTeuMWFTy2R5OjIiFFb6zgxrjaNO1bxYKIScO1o83xK\nicyPckBsdQZBAHFydA3hH9JJw98G8HWoLNaBPkQJEw6NKDFUDlC6aBIq3MT0\nCOZ2MyNYj677oO72AE5AkBD0mNv9xdvXJxsB1rlSrtL5SIznzSffiRdYhXaY\n6/y+AjNhb+q9ayJ13NKnikyhdXldGWb+rx2jSKFzUppe+GxPCEm4K+9NWOii\nBjDHrHnG0NEUYUnM0n0KZboVCLBbexi6tmX9u4mvg4C3W0ziq488DVfYDuXy\ngyjfN50vbISQFSBi68EezmpkAKSyJWb1c5DkDdonJOb4d4bxC2zft5gnxedu\nLG6XfB+EM/NJArzwZDFArG+fGyHAdoJSNMEVW7Tpnux8jIXX7M1+MBIW97G5\nfvhoBEiAqUJT7BzXGXL7cmhVQjJd7/fB3eLcr0VahoObNpSIWX+bUtQP76bA\nFQjOP6eGwNf2fyMqbblFjdAFeJ7SGcfx33IMopYlrF6f7hWAFkGBWoYzXNza\nMnVvb9IrLNJPrHNEuqfjT5y7sg+1LR5iIvYsLOX9qnxJRV0xYPVBO7JTsgML\nYJuX2ailMvO6Mp1H+Gh0WRz/dujpaUmbRbH+Hs8C/TqmVUBMs1OHcZG3Oi1y\nZ2je\r\n=ZKS4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"76e7d91a2627353dd462dfa563448b731e82cea6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180426_1524726430478_0.8418876740285621","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180427":{"name":"typescript","version":"2.9.0-dev.20180427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180427","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cc3f23532b3b9200e92ba45a9289e6b81cceafbd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180427.tgz","fileCount":73,"integrity":"sha512-3PRIPuRUYzlyPXye+VyFBk6+d7+sDKuA1noGRr1BZcQiHfy2d7P9SmJVRM7PnmEYVRZi3ZB8VXn6bcYP8P3t9w==","signatures":[{"sig":"MEYCIQDE9XJCyyGuHMuzYJl7qiSoRwQQoJCcH54v7GLwxAYrjAIhAJ3j5tr6AIMfWAiqjGynw2wWkVaAg6gDoLI7q/XmTtvl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36695088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa4sd2CRA9TVsSAnZWagAA8xoP/0N8Xw1/ZtU9BMYmKKb9\n5XHAp2gd+ByqaMzpityr+vuznItmbncQFMtcLAT95ni9y4aNqXPblE8VO0Vt\n3kIZ1h6701u8CzmWuNhBmrHr5niRpST1MRKNzbK6Ia19kUmOOJAFQciy6jHq\n648HfD1QbgpXmJIttBb9caTL4L5dDbOZ0Gvg+EttKcvTQM37xg4KE+TOozAM\nNivPFjHE6xHbVMMvhDdFf+Oyu5BQj4Vx0f41PK35Ir03L33+JCkFhXjxCH2C\nPtF+u6PKh7y5110ZVIM1jn+4aNnmD3tTizSoMEpmjz86jurZ1iAc5SQex3Oi\nhm/N9opqxhbXzKo77ueuHgrjWJO4HTlCq7K0prgikr9WujuD0RYwhQA9bWgg\nJvlE+oaYBHwKuFXJjsPq3kcRRrmdgFVlVG+sVUvV8/q8gHNa3P746gz5DjG/\nQoTOriqNSzRJ7geC/ux5ySqZgggRA+D/o7qpY2tnrtVZJimTGo079C65VhLW\nxw/42gEnw/IJ1HvhrEo8eXOidTn1I4AC/VMvQdyfIiW9kdcTrQdnocM8ZGrz\nrqGoeq04MXw/SEkRBbuNUalbrzDXyc3adkOacnIwBwZVvLny7gf1gu1aMjdl\n74TSPgbWyNLCcp8qzy7NHXrs/uFcj8KWOJLZoFtWFS2ZJH5N8D4/IIkELhwS\n3xlf\r\n=p4HO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"bcb5599bf2a1f0db0592f3b680e303f8884ffad0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180427_1524811638237_0.06050559668884237","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180428":{"name":"typescript","version":"2.9.0-dev.20180428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180428","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"305d1bacd1db81126fb5d7aaad6f6b318d854ca5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180428.tgz","fileCount":73,"integrity":"sha512-3zuY7TefiIF8s/+ZLYHXUYCta4bLx4VmeR0Wao2WkdMoYEudMEJhpvqFKvXgJJBDk8UmtA9ijQlR1F4MgOvO7g==","signatures":[{"sig":"MEUCID82u48yiGnQa0SOe5HT2fQ7MBuV3Lr3TRNHzMR/4qaUAiEAl21M2NSlelCjhZOFdkVT+ZGv7qtp3sgYm0BFN6/EQjE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36753380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5BoJCRA9TVsSAnZWagAA1scP/1k1q1Y3W4AvRYuP7/TV\nqymtgjFC8CaiDfrWRQC8mxhNjVUsLdeYYkG5RTYo4yYEzPwuvsb6WcqQ9ad4\nstFOMcNJvDmOSOzmvinauFjHMlmrft6NpQbwGQjkoeZHO0M4+WhjDZbYxHlo\n76aAvOs99P0Nb/MLmTrsgYqyKQalqh4PqHA499fWTqznYYK5QlV2pCJtbSZ0\nGn4s5a3DqvfTf/+P+dOVEFijX7hQIBjiiQk/liFin7W8q6U3cQRtwKXKBy4s\nSj/d5LmfLnAXQPTkbESXBKhOeX9Hk9oE1hxHC3kqY7IoGx+nmiwYN4ax2rYy\nTpoK+DOU4Kf5xkedSSpH6LrJ/HTltzpQjzqCt8LzX/5L7EScx5H+bcaXLF/z\nLWsvlnAFa8ywGdkXEHwnlexoQrCd7dma6maDTuxgZf5mcCH0UWuANS0ueit7\nfuOZ5axgcqYvnKTD/qd7BkapoXp8D5Tr2pkMneUp+g12APiNnGjewv0ne7yi\nu/5DQuinGhyRn4gHYOJ+muN1DizUpguyDscye6kc7xgF/FnUi/lzQUDazXFA\nlwNfcG+8Sk/zoSNc/hJ0jTpY2Ky52PHPvEmGg80L0IzBTGkI1HsGvQh6Pxz2\nhZgTJiPSX6zJPwIjXYCGprfq6ZyU9zqwFd0C7HWzresmMHOGP2gjbTD06FsL\n+Kah\r\n=fkab\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"443c1c7965b968bf7cdf6de1e91c1d29040092c5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180428_1524898313123_0.9452451964562463","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180429":{"name":"typescript","version":"2.9.0-dev.20180429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180429","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6c94855f9223bad78feca7145f9fdb3ff2e11e07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180429.tgz","fileCount":73,"integrity":"sha512-+itL/5p3HG+XOB7NmLxc5ec3wkFmOWGxBXkOulh6PndBGajB7DH8G5ii9riDqFRyxgIERXiUoT3GsQuftJ4g4w==","signatures":[{"sig":"MEUCIQCOCu0uk2/pb3KVu6lDcdDK7S2pMAsrFzftM2DswuRZIQIgFQpmuG/04LBiO3WTUjkAvtPL3+jF+Roem0ONUepUem8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36752654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5WgRCRA9TVsSAnZWagAATyYP/iSKtR5tRK5nGUM+heo5\nFw1Ykebney+EIij1RkUe2zcjUx5uwKGL4l+xjIkBvXiJUHhlSPZELR6Nb0Xl\nOvxxlINku62xjvr3LdcPCaZ16TN/SH7WCqYJYwiavraumyEztPkQGSvs2+8+\nZCmllJxYgX/hmNmk0IzvegAEXKUBL88SFXEQzAz58WpB4R8jIT/2pIxnCDb9\np40OWxV1iO7yYHaTJ62tNH1tPY0o/lAWhZVltKFYhMbA+DsI26dq3npFSq7g\n3EjSPntfaFKWx+SxV6rYs6w/ocXfzYWxqmPJUyTzo4zkm4wn/V0YZZ6at55N\nzHrYdJ7qUZ5CCy/PEwUGf11suB2AyLxWKk14VW/jUHmdgX6BmLEvYuzilsa3\n+ZInl3TKIuPuVoNNeIdtqTWId9J5WiboIx3UC0ql38GXQJfkxD+D3BhVTE/8\nFM9TEAr7jzlm1oCcnhLO6fJz1WgTx2Py9S9iElGrAX0kZTVrIES4Ta281FDq\nZyv6Yn4WtcKL7kkVAelInYfrj2S4sj6mLtY2JuJKgB4tL97wKrzZqawmybzO\nF9JUdld0T3ILC/ef6netBQ+gCAP/eF4Zl+kPWSHfCa98U6c+vIHDv+4AUxjU\njp+wj8GX8Luo26RKWsk+kNxpFy7NNHqLTF4KX/oZApSuUGT7INCx788Axhqo\nEtRw\r\n=dOGs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"732661c70bbb50102434186cef31fdf66386cb04","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180429_1524983824251_0.10242994753790957","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180430":{"name":"typescript","version":"2.9.0-dev.20180430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180430","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f69f2482654fedf4f74fca612b63c1298256d411","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180430.tgz","fileCount":73,"integrity":"sha512-KaYA4BpYsxHrnsZFs2DS/fhUkv9dTw72WMZBnCT2VFzn8R036PWjK8StbMaNHh4na9DEViGEEFg5bYBF3wDiIA==","signatures":[{"sig":"MEQCIFkrnypyhqYiXOohaNoQbBNxvO+GoTHjTxSTXPFxdXQ7AiAmkFtM/jrv0v/shsPLRSCH+gO0lZT67PS8w6+0wvlYPA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36750324,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5rp1CRA9TVsSAnZWagAAWAgP/RU5gZugduRvIZxye09a\n7eBZypfIp9aZrbgmUHHZC0zEaQWZSiGWEaGoX3SXNR2W2kj0wt9izrLnWngQ\nf4jZWkMKwuD/YO98m9MVe2iVPfhnxD56eR0kx/zHWkZ2mNCiaVZ0kpMRiMFF\nM2/d6xAEwZmpReq/AS6Xr6bpg6z90fBv0cW5Lp94hMqTXOEH2QAFWSP6hP55\nsEmMkiZz0QkBgs6uZSMakxMDJW/ETDDZEqHmHsYXy3pGNa+5jEBQ2x7S5U7M\n4NS0hc/0pbFDPTqWcv8kd/ztYsuRys/SGV+XrPWGyMLLf1zN2S3oaMIHao8/\nZ0NnRFKpL9GwEMz+GOKz4K+TJPtyUedosJ4IA/0GecNXqjvmDyUzp6JuWk6f\nGjwxWgprB8VhDDQvOcsbmLlgfA4bvC9nQPvxHCVMeuOW+IBxXIzSP0z4nX6t\n2Rk2iq6Oq7TI/lk7crH7O19gnkDpOCaw7fbKKu2Jnlr8s6mtM8TDc/mzpJlN\nyeuw/FrxPJjz3XCEyq38toDiccLu2OTYcH9FUAhPjbaLmh23pNjTwqQuoDC/\nGrz8KLBYhHZOArRG01EYuvsOTT1Ll0kaHJR63TByAXqxwtPL3Dr8ZFeHpm/C\nHhWlAJT+c68PT6+/J//HF311WBnH4xF/blFmKNf32fqnZVtI9/ibzb8EWwwD\nU92A\r\n=i9wB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"33d20e93216d309a31797671922c2a57345da93b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180430_1525070453031_0.5919275776029267","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180501":{"name":"typescript","version":"2.9.0-dev.20180501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180501","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f476b65e5f7cc504e4f3928d05beba1298a70214","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180501.tgz","fileCount":74,"integrity":"sha512-JG/KrrOqBsBdoyJccEXPEwUZcLhE9MhCaX4ahtPZkUgRXAVwW2vDwJpTEKy9lU4F5iu6q7iwgefaVuqgm0pFuQ==","signatures":[{"sig":"MEQCIBrvdyS+Sy9zG+UcaFKecK6rE2bokrqxNvAQHgnd8jeLAiBMckC0QYqhcK2P7f3iNCOyudgxgwaKZQhci6onY4fCJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36782127,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6A8NCRA9TVsSAnZWagAA++oP/2tFMLSib01ecfr4u8Rx\nGpGrIDoK2sofvcmj3aGvZAQAKexrYgxzxcGggB93qy8/tct0ZFBengVJQeXo\n4BTL1RJsq7kSRLrTrLm59NpFNZluZ5Be9dtIR1lmHauE3P3vkogv51UD92bn\nu90HDVskzA3lrdzrHp1BISKeZcFKjWYDYC4tdKQXHV5nGXEpJSAXMWoGvXxY\nSzEDkQvmVvZ07UTRs3azjikLl6ita/6E3MUeIZ1kJLr512pDDx+LcaRHEyLX\nVYo1ENsh3a7YO3kdiX31PVUVzCq7eAne3cGAysnWDE9R0yBMJ2xvBN8ZWUtD\nb1bYOFlfqPtNbdunW+HxR6pnyp/OZLsU54g+FYc9Nb/BeJINIq3SchCUpWP7\njaxoI+TkL0UVFQVPvlu/4mS1rq72iE4rgwOVrRXg4zu+/I0DTHEQHszxNePi\nj/QIGEjcFPwJRl6Kv7LFdeSkrIaBrT+A98vqAppbEKzMyhsF3Ukv9zz3XKDX\nZyE8H1Bei5pvNHM97OUAr+AIIMSL01jRPnWGCjHuNFoXR+QPAX4tyktU3Iy4\nGUq0yz6E2wi/mJVP7wPaWLjF/amF4FNJYYAaitEf1ycKeTnuegig9Zs/yDpE\noBrcOtCFy0elXp/28tmCkCPSd7rZQtI7wMNul6tbpf3kD0G2OPjiQCcUFGfz\nvQI1\r\n=uSTH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5ea4d3b2bb74a4f1e10714700dc6b91079600b6d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180501_1525157644303_0.9092716159450218","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180502":{"name":"typescript","version":"2.9.0-dev.20180502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180502","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c0056291fe41778be5da3ecbdf035005bb7b85ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180502.tgz","fileCount":74,"integrity":"sha512-I99c1baksJprs72kkFujvmER3tDLDm0l9ADbPPxOW06+Ohx7jOfoau/Gr/4efPkAXGoKccKfGCcyhaAgGPM9Ug==","signatures":[{"sig":"MEYCIQCF5guLy8QVgw2E2tyVQbskHPxJt2zh+tOiSUqcexHeXgIhAJup0X2NuifcCxzqjFCt/IV07rWod6ZzdgvyggJ0cLjc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36800508,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6V9/CRA9TVsSAnZWagAARJUP+QFDMwnzyCrhmJ9+oKAa\nQny/iyZP8n2Q38iIQ0xjTWtYqWNuB6QRmcwph19VqprMl/u6UmtVgsue3rSl\ny/3qW/ltGSeWcFgqCE8KthfA2f8sOKF+okyXYEd01vnduDqfQ2OGfOPKiAFF\nNjknYWogQt26W+Bp/zjXzKDdwrjT6DG6z8dMuzzlqnH4uvxpEt3C1jVDLkIy\n7P7j68xCtjS0MDiW1nJK4o7wdf9T/1txSp2nCQ84cTPab2VeuPSFcJB8s9J0\nABTB2JIPDMW+705lh/Gaz8EB27ndo6d9WyiDEIKdyP+6j3fpkKeUSfY+Rfdg\nEhVaiwVIYRvplxRT0t5yOJ/1dS1Wre42brX42axS3plyfsAo+lTX0p0F+v/8\nZik3DQnW9fT97xPSAV/a/mWSKJ4GO3OVi9x+6prJvsXtrXqqjAha6F8WyW1Z\n6KyppoEG11AR75a30AuqMaBoRlRiikTNnj8hMQGw+0j8yPMRaUFH1hwczJj7\ne3xmrAiU0jcKhSrWs0UMuYyuYDPN2syryFwi5a0R37ximyO8dH0vdgFAJTq6\n8K+d8jBD2GiIqlE8PHIsAnn/CG/mqIjUW50oRjPOTAysRjbI+FidzsybMKd5\nYK6zhVOqzPrC8oXZQcq63QEfmm4SD9hyVLJHBXBJLQn0B3Ssu2ZzirTpe8MN\n6Od8\r\n=LV4/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"081322ba30b44e3f627aa23aa3b30975c43cc38c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180502_1525243774368_0.3855710931026963","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180503":{"name":"typescript","version":"2.9.0-dev.20180503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180503","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"26feac2d2120c558fac25b5fe8108a85d0405c4b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180503.tgz","fileCount":74,"integrity":"sha512-kSPEQCZYCFhmI57l9NRrs2saNPREnNRq6mQsLe2ArPAw4hGLVz3+XjKw9euHiJPWfo7J43OpsprkMXPto8pUNg==","signatures":[{"sig":"MEUCIGiyXdUv/uHoHewmVAJwyH3XrDAYrVqM1ACxT4MK4fAzAiEA6MQ0hPtLqAebAQa7uUzDY/Csy4mv/K5NIFnvKOcIn1E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36846922,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6rBCCRA9TVsSAnZWagAAuvcP/RmEmfKBvT9XFNJ1oS6f\nw2ciOCRFDlRrwtaY+N/jBOFbLRFxl2ik5IM+7Ub2ovopVzkiGkUbY4OVSrvH\nYEp4SDPVf/s3ClzPiyXe3zv1GwXAYuKJWA47VTqnrBz/fX/yxyyjG8NQV731\nVR2un9KSsHfBWjo7tlF0GUAhHt3TsL72t9rsD0dZ0XeIvcAyqjNAA8yfq/Vm\nCgDe0IF2SGcM016EZzdBAPuLdZfeUBt53LmeIBVq7HSHqktSdTMqmDXzQCCQ\nbvISLFvm3RGryDfGWAMiMNeiV+JKJt2bCSSGtQSBC1pwqwr+Zq3YAuDw1TYW\np/v+IJHe36UeBbwL58S+6lC10ukDPJSYDUfggLEFGfnvAccusceTYRAfgpFa\nkfPFVlt/F7DvCBpLh7Tgxq45V+2VuTvU7QXYfM+6Zo/lJ9FeGC/vVNyiFvQZ\nCU5alWGZNYcZkJlq/VtbWSIY8yv/FCszv60syHMexqu2w43g0DzKEBeYc8k3\nlCr/cUqkAM3xjoYVBOW0jlfNZOPwfPCORm72Er7at+TIu7UdTttsvTsNvhrA\nHxdU3KDbYXr9Cq2bvuvZgg2kDqZKE558WYACgW8ZKjbuvJRLRriYlbPZLMEx\nnQr2cuRnDbCH9li3PyFPZJzNyAA72vuwUoVfRIkdYsx8lBmOMJn5ebRwy48O\nk+Ds\r\n=6xXl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"254d284ec0781c9d69b51736a7b29bf62e6f865c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180503_1525329985999_0.5362427884173984","host":"s3://npm-registry-packages"}},"2.9.0-insiders.20180503":{"name":"typescript","version":"2.9.0-insiders.20180503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-insiders.20180503","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dc5363403e7b384ad85b1a74a96412c36ea238a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-insiders.20180503.tgz","fileCount":83,"integrity":"sha512-9zt7QrKVs1QeDGir3MipNYadRltXzZDix+mHnWWt9QogjWPcrkWILFHkciAV5PPrVjclEh/a3G2jEmfIR2l2oA==","signatures":[{"sig":"MEYCIQD61SKSMmCC8x00XudWbTsPX/mHvBWeu90YGxyw6++lRwIhAK5mI1mHxzDYCfmc8VevIk/0N55Yd9xL/4ylxLRQk94O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80100695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa62VnCRA9TVsSAnZWagAA0hoQAJIevA4L8W9DJLKDHoa3\npYx20EHdl/xzKwETzhYfndQ9PpIOS/ETK6p2kmRYvnkT8LSczBBBSyWsdlA9\nfC8s/O91syEZxtC3B8iJ8C5UQr7+B44zZuQqEYyPNKROGWrNRkyL6xteaFSr\n9BxycnGCw2Eed0BEhXy4n9Nm/h2rye+X47IWDeeoE6yxD1eh8quaeXdk8mKl\nb5jTAHKbn8EWY/oCElXuBBcMVjvF8/IQ509cqQ9OeUfzIijLcJSJiTAiJ2dZ\n2ldqB+27zpA8Qd9jtX1azP3MCl5RXEPIiidOQB5Au9GK/Nk7kO0NXTyvg2nX\nhBKRBKvbnbEcVPqgHpzkt/OJTLSCAadJ1tfNIVGX7LP4+qJXtdXgxa+6tGhm\nt9qUhVIlADCThx+mcG0rJFXixT9uhGbvHtjz/xEsqzrG/ZnzT/HujzfK6UCt\nf0hvgaVOrJk2f7y7OzrzRyfX1xqR7+LNXIg7kBM4llxW7NmRtHb6zIqS/JUP\n7XjP8eolNb8I2mEsDRIemG9oigyuq8JTcIEzhPoEB2xXTxzBcuDjUWcauQG2\nOFy0PbFvE8HF/JgUW1AL81eyzg1c6C5x9zUb1lEw42NacsZfMDLjOnSjdGP4\nVFyV6mvLbJdcldv3W5zZ2r2+kZFyEndk8QxxVuryWDwc2r6I4e0H+kc5SvXr\nhTXN\r\n=uhkN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1cf1b92889033e56e20f7118c49e9ca3c8514d19","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-insiders.20180503_1525376359340_0.9269234337434782","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180505":{"name":"typescript","version":"2.9.0-dev.20180505","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180505","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f1202b14d14f97230afbcaf82db447a770f1fe9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180505.tgz","fileCount":83,"integrity":"sha512-vdQfHeDZ/H2KNfAPGApyEKjnp08+nmj/xy1ZPWHmfrrbfCOEAUDr9rAnmI4prvG2c1FD3TPDwkyR3iCURdTitA==","signatures":[{"sig":"MEQCIBVwlb2lVGR0Xij6EY2rqHrN0Awhp9+1c0+Qsvc+2LesAiBjsCXhQXkxYVGvKPhUXmooo0twezpH3378fXHBwFXg4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80169126,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7VTtCRA9TVsSAnZWagAAkNYP/0s81h+UzHSZrPZ+t8LZ\njiR0o4ovRy/uaXU1vnRu7MYHSSk6144bySybADvsgilspBt0QdU3E4xsHN8o\nvCG3jSRapQjb6ZTzIfPU3AzpuzLxgcRUBiVVntveOWjmgsAyQv2bZNmPRw98\nLpRZGYrixYNIEsOuDIRThr9tMYJ4Nv10CpVbQ48a87aAAPGoHcx+y5y5dbF5\ndvR0ocK7mNJiKdED4PqtwoRyCmO5aNnuH15NyaK1g2bbnFBJIQNn8Lf6IVvV\nkDRaafnAMRLa1AVVdS4httkAh38INrVdLrPpOGHoV/Q9jkHHrCeDaQf/sj/8\niSu/eaMeYA/J19/njSzLhcFk5V0iNXLpIJTGIx8hBY5GuayQjpVaANj0EDlC\npEd7Mq+6JLrkaCso1z6xQd6/HZRkKGQNyKPFWK/0I1HdnlkwOUPZVFLwDLp4\nAWPK78sVQTYKK70PdXtANDXFudZt5fjXQgS1MT6koDPYt2cPBbySwcp0ECAq\n4p7UPJOIsdNImKDQaA68RgS+GB1qCvA1/pcQkt3CJXuLOtP92WdgAwsV4Mzc\nHvcMsWdpTKws3V/axHFtgBgxgYVBU5zJA5Nr/OVuJMqirAYAges01o/BVHZV\nEra3jba2V/Q58Vfm+RS6gv4RXwd1oVnvE7YxaNp+Ybc3UianpaTSIkSrmsB0\nX2gc\r\n=Opoj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1fd1dff5e764fde1d425468576670fc002f534e4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180505_1525503213171_0.2889804836546983","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180506":{"name":"typescript","version":"2.9.0-dev.20180506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180506","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e20070caa88fca90227cf040459402611a74e13f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180506.tgz","fileCount":83,"integrity":"sha512-RiwOOSwBvPNtHR/LZpzbTuRhYC2AcCyQV4wgejKHeamLHA6kF3HI5bWwkrbuvhD5vA3HoJCuzFVC2hAz9ecy1Q==","signatures":[{"sig":"MEYCIQD8/cz+yQnwYFlgAIl4Q0lnQJlpy4loWsB4NKbaACWzZAIhAIopeKT0JkElllkXYzpPj3Nbc43H04eKaYSzH9a+Holy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80170655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7qh6CRA9TVsSAnZWagAAa54P/jyFrmayfw9fXrpb6H3a\ncmJJ2+V8b6VDP/zNKf2azeql0+QRlXbnq7Tt60lBamWbsOU2g1TTBcPDSgiW\n2pCYDd+TvAIyMyZwI7aArgo8VtNRiWcSD6d3pW/3BYj+3fVT+k0U1ikfrlOd\nrRZ/o7E+gEhwNBGUC/fvwbftBe3+wRSKBJTr9kpw+wqI+GJ0CrIp181mhksH\nPTErPENH44RowtmzPPzx4v3Sgr+Bc26VIhfn1jcG6uPA6ViK6u+G85upik3y\nsQVMrS2Z4FHUhGRU7hj4QUWiXFpzQ+vxv5mE20vP3xfFUU3x94UtKgkRby2y\nVFOiLhzESptZtyzD0/8A34F3PiaWf6j2w3onbUC+j7doMgI6BDZTI2lpFxoA\nVRPWUtHY0ACgKpnuKZW8HOygqZLLk6MdeoIyiTANdcyEo2d+7jCPUTfBtD6i\na7xDG9VNhZ2oFcY9wF8Se+iOHND7NpQpDvjJHsGUbvSnDmK2DNCqXm63v2XY\nnVmABS4qO+TL8gcJOa2/DID7y+bcTYBjF9A+OVgWk4wYFwSvccZjfRpUdsCW\nZj/kJF1XSBmvuiSm/I1YU7aDB6RSIiLeTXxlyGWovrKQIHC/B47HvO4SuMF6\n0/67U/Hynd2f10MzxSGB27Qc03oJlB9v91d/35nBFoR8kPpqCNZM7xftBBY7\nrtF4\r\n=jZQC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0f79b5b6f6ded887f08d0f8935e7d2ee9dfef363","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.3.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180506_1525590138012_0.12341186807852278","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180509":{"name":"typescript","version":"2.9.0-dev.20180509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180509","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f2eb8c5bb6e37354fdea089b0fccaadc3fe66e0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180509.tgz","fileCount":83,"integrity":"sha512-gI7oEGFIPMOC0K0K7M+LlOTq4+EYuH4Lsb50m1ZFoNouh3PPfgOVbOnGijBmdNkwVhDfxMTAoUPyWJ41wggwxQ==","signatures":[{"sig":"MEYCIQDOCMS/BVsa8yJKtc1wafjcgIM3qnBLlqJSESWFie1HegIhAMZesOWLYRUrVDyG6/EZHd1ktj0E3qjYOw7QDyIUTNpx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80355777,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa82/qCRA9TVsSAnZWagAARfcQAI04Lc8b32uMncUOf5hB\nJwo+pB7ZwaiEyaQ5qo+nce65ifXZa2G29xbAnA9pwRbDJ098LUFFDeFAqxRu\n3qRZSgRrAQO1x+s9/q3gZwsHy6f+qq/D0hXRMMknliD39gdOA/wzTQ99DbgZ\n79vk/Hpsp+tjc6YYoRgWFXUe938z5Qc4dxb/xsQD+Uk6MkWx43zeZYI/FCnM\n1UakJ1OO3hdAY10FoEkgk7L9g0qAPDusQ+XNdLxNKwFE/rVLUiZLW0OrwOYX\n4emN2VeSuj+u0DI8r/vOfdufPWmJeRViaWo+lHDkCEMTebiKDtVPxl1ENP+X\nF+VaHR8F+MQLgMErFmSOb9/zs4uMxCvNAzyeqzypoO4pN2a2rmR+HX/W4r8a\nIHiu+7vkyPojwFTJ5LOoBkm1+5PGFR15NlJHVnT0RoQYIIIkWNNBxyGYrims\nUhXlNaU7SlRkohY17vOAl0XBJhYHczsFix/h6E3P/RAemHtAdLXWHa0dpZqE\ntskb5aKwtWSjGyzwMzp3syF9O4vSvl53cxs8pmIYMA6V482sgQwodcCRI/Nb\nCgnBvRnT7pCBB8zDLED/GtGDDHaNKumLvR+YilnraKVn2Uf3NlLw277O66/f\nueniby9rso+4Ml2TM/wlI/qs51+h7DqLfP8OiiIl4cKvNUNe2zUT8EkDVLLB\nROHB\r\n=KIO0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ec9c1556ad848298621d4af86f545ef39d445807","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180509_1525903337909_0.947034276177988","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180510":{"name":"typescript","version":"2.9.0-dev.20180510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180510","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9f039785ce560e221afa418107281eecfe295e0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180510.tgz","fileCount":83,"integrity":"sha512-nKmOhDcdSQ4xAmxEb0s0cuWZPskk/Cfnt3U0AAVU/eOi6AkLeNkFl2/V7A9muss0b/A9oozaPMhratYkBLmtZw==","signatures":[{"sig":"MEUCIEu5RpXm5H9E0F9m78Amb/38CpnQzn03UNqBIbfBY2E2AiEAqeFkvl51eYRoBl2lVbyEEEPr3UK4m+m1BwCkK0kCxz8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80371985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8+KNCRA9TVsSAnZWagAA6u4P/2hDYHn8IjQXuSQqdwwk\nLUTTPym59JeVnRqLs3QrD0P+LmfLC8mUjvLlqi6Ri31s0Xn12Gr5F5B6NTKj\n35PksuQ0RTTK4lc9sv4exY+Y5iAWWDxuQ5e0d01mIR8mK+yNT3mLUCAc3a1Z\ns2GJPUhYENZWSU1sBznrQ77CiZVmxv8HTPUfRvD+WXAQJ5J/tZJa+5REiaWL\nNiIywmiUidnOwZtsWnkarRXngg54makg7dowXx4envOZeFiVxUbB0wNB9MCY\nCHw7BDdThgSvu5ynBRZ8+lgCWNgI1LV0IsaMANElSC0DAtkdNSQl2wlF4/An\nHFUM1GNJtwh6u94qFavdn9+7EXSGjjhJsUO5FLiQRguyCWLv1cLqIZqoSies\ni1h7Rr+CPCX4kurb7uIVEFruIbaZRoZRI4NXM5dnD2f03kmBbWu6zhln5n76\noIbsF6LvIhJyS6Nup2Q2eQga9MpLkT6vp6FSKGblHSg9leAC9sFhQSDMiHfe\nXhmbtlMG/fyrAR4bz5KxdYrPJPjBGkQpIad8Bc8tt7iN2rsIAUFqgdtgivi4\ngPPPKg/kHpeuOgVFhJSUGUubV9w2faM7IoXFZHl2og24tbOLWhexlJtN9UYN\ndFtiz7NhWK7wtTWahZodqhkBHiuhGaNDeJlAyFFc5UWwFREVNjiDRDLjBAr/\n0GMN\r\n=vvOi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b5233d322d2cf74e65d6b33bdee3e439704a1c29","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180510_1525932684007_0.6054143768960119","host":"s3://npm-registry-packages"}},"2.9.0-insiders.20180510":{"name":"typescript","version":"2.9.0-insiders.20180510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-insiders.20180510","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2f9c37b904ddd8f8151e5eb25be11a3c4744b13f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-insiders.20180510.tgz","fileCount":83,"integrity":"sha512-upTIsxtLLe2FJ4x0K3c/lXItlGAL1mLOnjsdyL+ai8oKPSudTsujSXyeXDqpYTEN0joHEbZflpcntY53Ogc+eQ==","signatures":[{"sig":"MEQCIErGvZloFu+JmvBqCZXGcff85QHkoYz1hYrnbtNN9IQ4AiBCBSVN8uOf+RrgWVhYvfOl9R54v2PngE2R2KpYbuJHEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80542622,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9JXYCRA9TVsSAnZWagAAnrkP/R88laoltvo6H3LAuhNp\ne8p8dTWon3dL+dquZMKWhKwji8lQYO8e+aJ7+BC+cIQhGsCAdC6cgSYV7MPs\n2BccEI/by6DY6VJqXW/n+WBiyKPCPxfAcb/5pF2PUWMaVY8jPKMs55oJxbt2\ng1olsSwscIlPbd7knKLJp8LV+Nd0Ywcg4LYdA3+NpFlgtLMkJO/P6FZifs8C\nq8EUC4mO8Qumh1CI8Y3Lkzmqk5XpejTbr98oP7/d2Zo8Q1lsDSwdH6hTvriH\nPmk8tt8ZGccmH3Ju971bkhngiMblFcVFP2RaPef/eIRINHUBI+ALdwd6riQo\nJmmwy+bqzLi+KIhzDnBcitFZMQFUhTl+PRzZ2BhySORCI2a3fkVmpStJ3hbZ\nX3CFAzrVYytVXvRwTg+yKWe8p4H5U5K5ox7cBzTG1JL7kllXm9w8BbjoUWzJ\nqTq9tWtwn9LucEQAHg7Ju81b7a4+6z4pb3XNXw0A6mp191/BABPEmzFr+fM+\nogpgYjBR4lAPL/IIZGpOOICqPATec34mXy6N2WKOr6iOs5NenyWRPT6kn5Is\nGffusqAY8YM8kmHaBhei+RgpFVQXjpEPW7evjXCImYjmgjDQII2JfoEzRXnb\nyv/ZnpyQwPnxP3DWah5Fcpm4J6cI51/huuU+zM327K7yOSpcVEglj7Gt3IFp\nTcY7\r\n=EsVr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7271ec12404b8c24d43815838b6a459ab9b9cfab","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-insiders.20180510_1525978584099_0.35855109921413764","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180511":{"name":"typescript","version":"2.9.0-dev.20180511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180511","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e864f6b9bf9e7f654d26f5401e74b76871f5a8e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180511.tgz","fileCount":83,"integrity":"sha512-MqdkCsW+5cLKdHLTPSSA1kEFYklh8v8PFWYBSdlPBYCU6SmMJ6RwUoBPwlb+EPSgeivRxESlqat3eTSxJvkxIg==","signatures":[{"sig":"MEQCIBHVBO8Wjkb2CgNUAoRdEgIpgc3JMOeYQI0NODQsHDtVAiBWEJMyaWH7mbM/oi5qbXEXzesNZjt1xe9hQcuoejpOqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80580639,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9TP/CRA9TVsSAnZWagAAqyEP/3+gwVp+Rz5LskArrdeP\nNafMu0FjTcpJnrOwf3lpd7lDlQyKhUwlgc0QPWOI5EyuSoIIRm7k/cRmJWKN\nvG7KOek6gLNTqYlPgG/hp097IqYBfAmH219wcVhMqYV8QeVsa+WmcGIpLbuA\nc5XOyNDf6bWyRmc5+DtMHVLvJUnVW1zt94GpAKFPR2eUCMiRjK3hB4M9jMiO\nFhPJsZEaZAaL1soIOXn7Q4sJVILSWVeB+GQcVd0RXV0egCUfQRjLFOMlUbta\nt1cdvz05jcNpCGeA93Q8jyMOBafEIWcdkDrYuHV6UHqyGerOihba1cXa6CLZ\nLRQqLtwSvDt6FU3NF2Qh04l7ajYPiaWmk9bNgDwe+2xKKDhQkcYzwWQIp0XP\n1EpZ47XgI+uRvmUk1qIq7aycgj1ObDGmbHkoc9Gn5qDZyEBtXepY+EOJiQcH\ne5VdP9XohXXJZSDF3rD6SRfwEoZ/oHX96zrBsY0wmjKY9fErHngOdnrf+M8l\nw1rpbrKQlb5/LBeAQQO91b+hu2o+TviIahurQl7WHbZnL8N3CF3qYqng/3r4\nfGHCYmH3x/4jKJ9i68o3h3zbqhUkmh8tmmnDel1pcw7LTk6cgb5z8XnpsQQs\nS+s5B6iQKlF1fp/iCHkkDWldc2dDZsXaCY5IsqliKJRHhv7MASgJXoVhmrpj\n1AON\r\n=VLh1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5ca375c22ccd2589f2df1e167990825fda6315f5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180511_1526019070890_0.2837050254002733","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180512":{"name":"typescript","version":"2.9.0-dev.20180512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180512","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fa4bf0c8cb42ab810d772def0b9244267bd5d80c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180512.tgz","fileCount":83,"integrity":"sha512-IoShsqB7aix2NsKnaKqlCuerZdWp0OHIrWufUY2mfV1vDf8FTmBA49AODKbWySTQCi2YBB6SGqih9FLMEBjZJA==","signatures":[{"sig":"MEUCIQDqDl+/Vl+U7saI0KbUOu+P4bj2Lp8rzKJELHi7y3RNDAIgfEhkA+OfNyfQxxx1lhlEJr64MMS1+nnkaIYnIK+hHsQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80590856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9oVzCRA9TVsSAnZWagAA+2EP/27kzlm91nmoFRxe1URy\n4Z7R0dKhIdZPazEtcSLfcHrP/URIX1EqQERnd+1qe1oy4zaVDim9I632ttPj\nzOfcGeVBrQx7Owo7wXZkLMWoUBHHhRWPyRMPnl+DdAlwFYoUowKLn8rJq76D\nXBHkuTBmVqCD7NhQNAppUxHreTX1mu045hGSjq7GqYesyg3A5pHw3wkBppA0\nTvOT+9plNZ/2+RBiRiEtiMskQONfx8g611ejU/XFWzY/1gGrUsC5wtbkEcOi\npHqEKJsQRKXeDpy3ml3sHbrRaypxy+BZEn84+MzymLcmB5WQl62J9y5KDpc4\njucKgVgekPHZqebUYjT2mNm5nNX2FXEBCeKjhGCiYDrEIwOcP3prt04O0WXd\nfwMCViVGcORhYz2MtxwvtQ++KNISXctHhnk0SKw89/JQ68ooJ+WPPh5R9ba4\n0uEdI/EXSBaz+dmV+zuARdaNq9X8LZYrS5g0zXJvFPHiaAqLdNOWJGllTyPr\nxpB4PLUioGVFvwQbN0RcaObRFiLJ3Sx9wHXNg0UW9BftXjXlD1vDf2wYgojj\nocJhYHrNqX4uZvnDF5WtMUBGXwsnKjkl4v7E/Cwd4yLJVTs5oiVHpGAwDknd\naR5nZ9JQnop3U2RXkx9Z+Qk6g5en/g++WLo/GfKh/4qpCiEgaGzEakhwHI8k\n4/WE\r\n=Ii6c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d990f294f8703b4d3346b34b7d984cd9f91c2868","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180512_1526105457412_0.9875103703947403","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180515":{"name":"typescript","version":"2.9.0-dev.20180515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180515","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"12cbe6b3d61f6367b6b6b77a0b33f5234b248cb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180515.tgz","fileCount":83,"integrity":"sha512-tkBul+7ibjTC/gKjz/ggyREb3km0MhbgthAtSEmVjUWP8WGgCWyLnGqzlHpgZN8teu6e69ox+0kLYNnJQ6gzlQ==","signatures":[{"sig":"MEUCIDIKjH612nTfQaTuEYO5n2DkVgq6od7xT3ouePAG5oJ8AiEAgpFG+iEmZMIpDJ9a/W1A43N8rYbNd7uw+H1n2Yw/8ac=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80604880,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+nn0CRA9TVsSAnZWagAAgBcP/RfnmVW2feztFX82N64D\nyLKHKDRX2qhVhvBe/fna/TOQ4vtov1V5ztleVNeJFUmXVDpyrye9ETBBO9PC\nLVGdyIgV9FF0XbPj1pSJ0NuO7WPbfikYk80oNNDO650ASYyC5/cY0n+ENGXN\nBzvDP3gARExfIOCqO5B/pou5Hco4DCqiFGpyZORrhIabnDX2cpmLSKuprWAH\nCaOdxAHSK+kNl3YXugZmfHjgvm/zndQ1Wrl0/w6GEGgDXj/yXUscUYwKfAyh\n4OkzE7FzObunf6TQH5kuXLbc1jxmzo2J0cTy+8rTwiXItbkGK39cTV36dqNZ\nZBj21i9v8nGB7BYDIeyzqNi2tyIulV6A3S0RmZKVLH5ZHz02x5fQb3P6pp1Z\nMt2DFGIqa1NXH4wnXmlIeHoJrCmtjdOsmx+muL3xWTuVBMPhsEIn5AUe/saT\nVD/cjhbnArkT24C0yWMiPj7EDAXTKyRxPICTS23R2ZNZNG3Qcne5VF0rn2IU\nB2l5IALOI1qi45u0n5ZfVTbac/Gq10uLF7crUlrGuyeT5WcR6GuNmjDhHG5p\nQ5QYSdx0cPtkawPDjJYTfkEsP+Am0WRKKmGVxhSLzd1nkgyApHmwj2gxFQrA\neQoZ30uahoDiP8BRMHvh+e5fanB7oYm+9N7sKbdfJXYfYepOYImXU4DU70Un\naMJc\r\n=i6pg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ba4bf21eade396ac0d82ab1278dfddc6ce69c653","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180515_1526364658990_0.1857079249715654","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180516":{"name":"typescript","version":"2.9.0-dev.20180516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180516","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8ef56c66b3cfe04e894970323e0905c29f8c0d89","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180516.tgz","fileCount":83,"integrity":"sha512-H2GdFFdcjShV45iYGGkpTOIKVRrjS5agbRimCSkd7GEmMidLxdoot164zTb4qVvYuWAPEXqqAFdY8sVaZhOLGA==","signatures":[{"sig":"MEUCIQC8VsWgNYGCP6eISTUkqSA3+fu+oy4jA1aF4X0ozilZogIgEEbrMwppDSO6HIcTzKqSGYPN6KKMyFDKxzRzWp5Jdyw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80620764,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+8tqCRA9TVsSAnZWagAAMt8P/3XzniCZgF3Woi0JjrTo\n5qcXZDkpTwyxhTcSrxybTPs0ohMgwlx1JVPeP3YJec277hatLi7ujoxIRB3Q\n49u5Z8p5PlkY7CaJFUOD9tBaoOE+UYT+gzlFgIUGUshAI+ukYIYGhMosw4Qj\nJ9Wd2l+AB0AYMJx19abqj5WPBonQGkAxYYubs9i5ALzRmI3GzaprDioCUdrO\nMKpnQwCwe6WkxICq8bagImJykYSx6phQm+Cw+g9kRkCDnAhPxLZ1oCxEipFi\nxy5r1lxACvWwAeiMo0jgdWvTtoy/BE3Im3a0P5SEnR2xcCglKX5KOCVFexXA\nVwwEGXMYxQbt34lukWMTQfBA4q4grmzj4omQr8cz47jPMgFIAZhp+UwMGq6k\nKfTrNzKDIHrPLuzwwiGYKnRYy8QLOmeArfTga+8HjykTvt/kQMNd/t1w6nQZ\nesJPppzOsTLHX9qMM4BBLUsTpHIK+7dGgbXRwNi/XIsNvU5FO0r11QrIBG+2\nKFCPSn0dSQ37m8SrLnhfScfqwaDWjcWoEx6vs7Mt3ZSowzRK0qhLVoql0g4c\n9LbB2IZCvewpej2QlMKkFqHlINfj8adRDdMZ8Q7mR+7onOvcbBM4F7IGxOdQ\n4Kq8RhLpsmD87ATxt/bkOI2/CRR5Dcgs0GWvSJ08WRrz185VkXorBQzUKOc7\n2o5A\r\n=IN37\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b4ca23d8f9133036e2bb19e848960cfd8dd8bd31","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180516_1526451049876_0.14551511656807414","host":"s3://npm-registry-packages"}},"2.9.0-rc":{"name":"typescript","version":"2.9.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c0fe5d7f2445d664538d21494274814cdfad468d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-rc.tgz","fileCount":83,"integrity":"sha512-4dZ8bFgwR7DfIf8AHOETFGCFTHXXgwtfD33sGINcpa6/95E68pByTTssms9VXO0RDDGa8Jp9MreDv/G94OWg4w==","signatures":[{"sig":"MEUCIGD1fnXEBpEBVd1y2wMxLPazL3cVm+jtmcZUvXjv5QJqAiEA0KCs2QZC+PUW5tLFrTvlcMDJQ4yV+DESW5MShk6ghKY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80595984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/JV6CRA9TVsSAnZWagAAiIgP/i+m5phkb0QjhcD8L5+m\nlbtsdPgfp7wqZDfv6Ke4brcZgJVLQKt63VsSUeAHKzMeX77bbe3Sz5kBC2BM\nL/eaT5JQqnNyVSkA+5ZJXnBVVeXj0ni+zr7F2K3uTmJ5IdsnpmxWXgo3ZGWc\ni7Be4cBZ3e+Vo/frLeZ6s2xjQqlewwriWekF3SQnS0rZqokOS3ELV/AeaJj9\nVy4yBRUbuZzRY+CjNO9KkxIXuIA/T2g2iG1YiLUV2GFoghXtc5S1yQ2hb8Lw\nlpD4bWtxidYp0jMAgZ9OxXVcGJFtV4xgZZklz0K/DD73xZplYcYWDc8CU/qE\n5SuCwRA4lVGuU4tVryd0E531bdWYDw5LjvVMyohelWuxefroZbsBLR9YuYWF\nXCxG2TsEU7NUcNXPdzmze617125GcblN9V/z06kbZAfMD4rG/L1lMFEaX/od\nTWrB6sYlr+OwY+W8CuvQVjWd7dnA4BZgkkDVaTGx6KdJ1/iTl5KF9dnmBia3\n4aqLAb10WoWUgZDLI4FRBMtZCi1NCvqwPNi52sNjxl+5U99KT/Z1b2GXlV3e\nzS1XndKwcUI5Ldzp5Kgv4ccULOvB7buHuh89MqmgL//lMVRIhS2rX9t7OsUt\nC55SvJ+xk+9KjgZjSx59Rw0m1IjCVLFayktVg7zYiFWKX7AQUFhEu/E4jFTF\n19TY\r\n=TbDH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2b0add9ff9f9a9a4d5a4056aecdfe50140aa930c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-rc_1526502776961_0.2974395072342515","host":"s3://npm-registry-packages"}},"2.9.1-insiders.20180516":{"name":"typescript","version":"2.9.1-insiders.20180516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.1-insiders.20180516","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aab5261edb2c162c2d0c1754bb3092d4ff6efed0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.1-insiders.20180516.tgz","fileCount":83,"integrity":"sha512-YFgr70hyhzGTQlDLLzRwblITJKb7X0LbWgZ5Xb8dSoZKxtP5Oj4lLih+eRvUxDHSnIfe4IfA4gUZkbsp9Dc0Ng==","signatures":[{"sig":"MEYCIQD3XKQzJpOBbnhyMC2EQY2Uawre1QEGfnuq14q4LY4rnQIhAOnqcetfmCzrnk67QNidqpSX3aRbh2ajRMf1lB9PEHyS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80641359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/LvVCRA9TVsSAnZWagAALocP/jPm1NPRFPvaeGtBn8yM\n1nRmF5dSXjg/VqiyfduUSsZ55ISWWSFhpyjAKJIHEvkslmiu+pTWo8DQc9/s\n24siCnUEKQ3by/J9QbD/B5tgOzo+5xsWllFvJatPjqSQBu/sP2t/PkkXNbMi\np4Tnsz+eZ23MB0ImHewKnmYE4+j8X5fiuAwYMNZtKiPvM8LtgCXLtJpfvI3k\ntGiswJmFyOhqglBAHJulM6rX9Ub4lIAU7Wa/Zi9bf0dqxfEfqkJwUnLszAKs\ngb02ZljNoPFrmDHcjjaZNsOVkSiYFhZreZdxahmrnZHgVJ5d/Vcd5Bki24gI\noiNTf1GSQ2bDEHHwdh+ICEn/B6akanfbMvvtRv4PvLcIf6L8lFenAdB3ENTD\nkfbxZqC+/fLJ/GDUzXDakACMvvkjZxHIOhG9CxSjmDIdz3ESXIVbALh20Hsg\nuUXz9+Chhulw7KesMIoDWqzKXS8h0wKIcqpLueRLFYa493af40Q2hkbxSooE\nBZTUD30Q2XrQNeAUrSs6s/0mRJseTxOuoZboamUxRQvH3omImm7p1Cn12IKB\ny9EDRPJA0EM9CdKzrW7xwOcW8nKbScITrWV+KAGafZ6gE89WQX5m6efUhOaS\nn7zG5aThlfdzCxwurK5aHm6B+Gd/Ekgg7VK45JXddq0UKKU3hL2yj2vaSSXm\n2uvA\r\n=Zyj7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"37d2b2b70844bdf8eb3fa597ee4809e7acd31740","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.1-insiders.20180516_1526512595327_0.6445182984780997","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180518":{"name":"typescript","version":"2.9.0-dev.20180518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180518","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7c709cb5d59e60a5e346cc5856277fd7b8ced68c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180518.tgz","fileCount":83,"integrity":"sha512-FWW+p6V3heeUJPQk77p2jnBpjZKgjm2DBotA+oVFCpPwrLVoV6sYxlq+73jFpbR56vPdRa+eaMHxxFZXVNuJLg==","signatures":[{"sig":"MEYCIQCl2qpz7LvGMd/ynzU8SsKSPZyN9oMv1vekTQ6GIgmE7gIhAKO6N+d+vkHHW/+lh6mTeo9/Bd00GjKLC6AWsKIIN0rT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80749669,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/m6ACRA9TVsSAnZWagAAeZwP/0SYUVHQWmaVRn4eZDZ0\n1V6XVyU38Gy+8uXikceTao9KDanS7Epzx4xQ+vZZtJ1H8sxNmAAfdTGdeNzV\nU8FTgvzpywP3DJrDS0Zuenv19oGozMPnGQJepgT5XH9Facj2Sv6ZuBK4/hDX\nT1uyJFEmakiGe43hytmH3xQ7EACj8yYtRniw/KWIsGHCFKjveHMxw+NgFOCh\nyrpBArwCJbElxBai8TkY2INlWVrbzu3DYR0IY0UUMTMhgw10n76aBSghGXpA\nJ7Saer8K9NqFngR/ePu4zaIxuizDbMlo5ulZCrwAwgUjY/BincLwdhIFg83v\nhEOOYbNCVlLvibGXLYbNQm8soGrKs6Ft2+OF2eZGnr0Ae7bjIF6bmiaYmjVf\nnvOoz8+1zitWVouWHWkAwoXq4Y+gPNQwx0nDvmSDlpnKbSyJ3OBU+MymUnoL\n4E4C6UYWeSb5O+X7yGDtbmrkcuSuaOVfXXRLVeX1AACz+KBgO8Mig0bfmyPr\nqMXj5HT3s/FCbZ4DWfccZOp5mgTDgvoTlq8yqTATVM/Ng7aJOXd2XvFFr5G/\nQg5aPAWJpmwn4sofXt5aQ+5Z5P5+tgQqt2MsGkjtqk1BszCAkbIvl+AIy5JH\nZYboMYAzdY7fQFPq+hy9w2xbr5XjRXAOMIcLWgVnvhQzd0IKydu01OayXCSR\nY3K9\r\n=sGGs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8c2ed976a5a476fa5007529b20b21b2690805f94","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180518_1526623871848_0.32862635005474683","host":"s3://npm-registry-packages"}},"2.9.0-dev.20180519":{"name":"typescript","version":"2.9.0-dev.20180519","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.0-dev.20180519","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ba158b88bdd4e3d38552e18022f5a05c8d3995f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.0-dev.20180519.tgz","fileCount":83,"integrity":"sha512-WQKPDm2m+LlNYCpwsi0AClQW+S4JxcEzYIoBVw+259yL3JPDRok5a9J+3jKh+2u54KVdoKTSVNJdp2WxvMtZAA==","signatures":[{"sig":"MEMCIGVzp/xd4Ho5qZLCX57P6f/AnpexPapVIojbzLh4Ii06Ah9NP/ktQMxt4+w3FgD8qOhoZykBCUz/3/lGUOZDXx+t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":80771057,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa/7+wCRA9TVsSAnZWagAAqQ4QAIMR/o0Rt61+odqnjIVl\nZIyU0EdGltqfKtwonc1ogplFDso4IVR0sQmX2RHLa4nO3xzpj6myDDpsuJPs\nROfR2emrhZKDmcI2UqYO2BejloZohigFAEVNPzT1EwD1pSyBJhtNDpSfnzTd\nZfYH7P8HvNn059cMOd44os8kmRwiJjvKgNuzXOchNA58NnclWQjpIBySh2rR\nsFinAgUUbRet8WpLlkt4+kaWEBMRjtvDrerGpF+Jl5UJyaX1Llr+5B9GPXsw\neCsEKRCo3IAz1YP+oeEfWVHCcpheqv9dPszb4axwvHW2oRLBkrTwMF+bAcRb\n3Nac1ron6+IP0iS8hEflKWD8fGQ08sVBwzOb5BPB6ZgwkFXvBq4hwjxklLWe\ni2HoQkKvfbz7G1AmTmOBGWynyFHAmjDvbS/0z9kGEoymW1AShggmvDDd4f09\nOQmqKi9gq39F4QXNi/CTkJVErq+GhhMwwrqbAVGqA1RWNMcVPBVGi/adwOsU\nP+wFi22XuUWrEKJ6ntLebckFfuLwmvrctWzY3xAh4OwQlfYZZhDiglGSvKNr\nFFZd+9p2glFOu4Czq47eHWdFCVia9IuLLEiUUM2FunIW+9eUPAQna5ZWILpP\n7tzSXsmToZw9XEYcAssV+mPuz03KaWgaQiUWyEFVpR3GtY9ggj+mc+5fEGep\nntZF\r\n=VJYi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6103f9f64457f2c6394210d222375102a89ba01e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.0-dev.20180519_1526710191611_0.2310521636405669","host":"s3://npm-registry-packages"}},"2.9.1-insiders.20180521":{"name":"typescript","version":"2.9.1-insiders.20180521","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.1-insiders.20180521","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"37e9c05f00aa99864c3f66781e607ae0097c2b0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.1-insiders.20180521.tgz","fileCount":72,"integrity":"sha512-2G7xKUZjn5WVx2cUNas2TdSpZN0foJMnYo8c1r18cfKe9zD0yu8ZvHQOhdqOSCfkorbsDsYejBKVX3va/UmUrA==","signatures":[{"sig":"MEYCIQDYktQwn8xq2NKZ53h4Ungnxp9j6oTyGO1plrhyeV02awIhAKNJcsP+1KfWSjiGP8r1DylAQgfmDC2RTkVpIkMplnG1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37542555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbA1X+CRA9TVsSAnZWagAAY28P/iFJMAErxIjBhG67qXP8\nTYuVHmyQmLSVjtYt+D9CX9PQPY8hvaP+A46auiTVGUSgKyz1Lwg1Tz4fJ2ju\nUwxm5EiV0R2fSFtn0xNYRPonLy+4HmQaTAkCPMBDtskOS8wSPwIefdvc1lLW\nXoNPCdt8kYfNbbNnZUL7F0Wrs60xWB76fMYwome3ihUOd5htFmpYZ6nI17pW\nuMhqRZzgltNW4wSxvDulcWSpPvOMM5WJPfPd3zL+mcZhiLST2ozfk3mNK4jt\noCDP+b8+Mk7fwQaREeO/xysmDFEjg+sh3EPzo9qR9XJYrFCvNZZX4HXf9uYM\nap908kOtx5CMERxOqV1QDDLe0cD7fRgAAFrJ6XAzjg1ShvkGxjE8+8kG6oHV\n8+hVPSX5a3SmYI+0yF6hnX15R5c0Zv2jMefaNIi2OaTPSmBRg5m5lE1IxdaM\nOv9BVGalLU6We1rnBRKOQHfmoUm5TNGPILTHJbksWNT1FWF0pt/L/DOE1+v0\nwo0ClLwivf5buSgjtXD/zrTrh9j5xN2nYAEuRSuDSAbBFG/zTpBYj1AfxBpZ\ndcnrH7A77Nen/lMskUoEs38AP15hG/d2OEl1GW5wx7PMgjKv1lMvfoHHU+Bo\nreePXVofm5mgPXWkmonHr3mQGDFEzM+J+FbgcLz2mrpYKqQY6je1EnEJTZ+1\ns3pc\r\n=J3rW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8995126563f1bcb441526b4f8490bc791d7a4b5a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.1-insiders.20180521_1526945278227_0.5333623198624629","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180522":{"name":"typescript","version":"3.0.0-dev.20180522","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180522","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9c9fc115ec0c5e727d7f291325b64fd5c891c3a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180522.tgz","fileCount":73,"integrity":"sha512-/8nx63FE39r823Z07e9UnTQ2/L50iu4EWaonNxU7zY1BPHjl7ezWK1tAP7pAJpGbxdCAt+j0Xt88/MqdTM57rg==","signatures":[{"sig":"MEYCIQCEPAFURJGTYxVg/8oQN1/UcEU+m1DpnYXX1noaZGxN4gIhALBU/XM6KntgqOUYp9tiXU2G/pf6pnckqnzA/FbkrPIp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37688052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbA7S9CRA9TVsSAnZWagAAfSQP/RSvIWe+9ad5i8z5hMl/\n7qzx0YpsTzWmsfwnfxetSeEbyZTeEdSaQuOCbB8NGKpeXnSufx4DeFggmppE\nQxMaCWhbot6i9HGrRga6SZEqTpwewmxFYOrCCFqJFKNgzC3myuYJX87ZNwAJ\ncb6gSA/5mcu9B25HNTtENJE9olfzV5GdPP0cngeBC90IVDtlFO3iSOUjXMxy\nfgVeWbGZJz1UObFqUDug+60UTCTlrOUyIZUkGsny8l/cXn5OR8zrSwhzzwdn\ny3t8dL/9zvrfyofrlpCVhNYZWPVgZECj3W14alZ5jS1E9wYTxS208V3gztA5\nCMQHcv9353v87LsQHX2+Wct7Uwf49+VXLhNKcDMMu9BHB93DV4+Dp1tsMs7f\nni+hm8W9UXqqgPCL5QBLruFtf+a0n/GvzicYfAJj/G4pqx0AR5f8nTpNl1it\nZwgnq2yFCGsyn2pntBpkJE+EyfbON6lOPGGAf5wyrw0rRCzpdo9j42/PcofT\ny2Y5AWU7k9CzenbI/AOR6OC4Zs3HqP4jx0DiM8dcciAc7qQVI7lgVgwkYNfQ\nKK1/s/dpg6PpgjRxWhFj0mDilZeNt4JPHIOUz4JrOlEQhigeWHZCtMOUxrTI\ndNxlZFrjAgEbwEvBXlzO2evSjOc7xwq/pqZeg6kqeoreg6YqucpdABKBMmVC\nSGZa\r\n=/czt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a9e89ce3f1127a92b3a60057a655862844a76f70","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180522_1526969532713_0.9753501860387337","host":"s3://npm-registry-packages"}},"2.9.1-insiders.20180523":{"name":"typescript","version":"2.9.1-insiders.20180523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.1-insiders.20180523","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ea74ee12a800148a87d48a8fce526bdc643cabf9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.1-insiders.20180523.tgz","fileCount":72,"integrity":"sha512-e5ZJVtF111MZy+76amIxpz64GidfW7s5SrTRXd1x1dUax5XiKYHPSxFCMswawpvQrplvhBb++Fmn5QRd+SThKQ==","signatures":[{"sig":"MEYCIQDFfVOF1HhyN8Ry/DHiTf7OK3dV5iwZ0pB8hcqYrDkd1QIhAOgCjNGLvebSoS12Lx6y3M3YBzw8CamKPMxSO+cFhPVX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37566149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBf+bCRA9TVsSAnZWagAAf00P/3baGcaqsQJ4nZi3c81f\neFTsp59R//PcQkNv3m3+TTmMFixf4ASA0oDrUy4WuqSPHfAHa1rzlW/+2WCF\ncjuZqmJL3GR6FII7BaxuMOyupxtwhSvDBH5z/wKpjFlQCa+ff+1QWPGcDmQN\nHg3+DUwFfYqdCCxsQDvPc4ox1kdflfL4HFDxPM2KFTcS5XCOFCkxxqk0tzOI\nJbd9sHuECHIJZy0qVsYykdyhpmX+NHLKKexALgggugUvGRxjOPScawzFHOLQ\nxZ1ECzSCh5cFm0i9Hay71r0DGxYfxBvnN+JEQWnS8v5gAAhbEBXmJHxvi1SQ\ndaZoYyGJGX3At7iNh6ZYSC1Hq8A9PZKJqAJvtqXAHTnu2qDHbq6uhosfU+c3\n4xZJdkP0mbQq5EMs5bLWhs/15XYRGSqq0R6ISHPEauIzwTlXBx/yU2m3L+Rc\nhktustuHj34AX8la8v7aneH/7su/4LncTbuAcsZvA1P2mjh/TBL2ZNzjgujt\ncMVNqrU+sVsUteZy5Rkud6tTOkQJ7v1rOGYihzNsBGo0LVrhuwj3OXFSmcw3\nlJgU3NCH6Uf0RxLZkig4xVi4CSEsf8v7I8aEO1AMAfVwG/TsphxacUlgkfjq\n01pKQCnegpZrsxuInMoBuCH4tmxQO6eht1bbnH5UAKLQaaqXb5HtR6DU6J1q\n4ztV\r\n=Ghlx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4144f45725640d603a2eb310efc61c77d0777ca0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.1-insiders.20180523_1527119771187_0.2746842855157403","host":"s3://npm-registry-packages"}},"2.9.1-insiders.20180525":{"name":"typescript","version":"2.9.1-insiders.20180525","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.1-insiders.20180525","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f28e73af2b9f2411c872a1a79a7a84ee54e5f7d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.1-insiders.20180525.tgz","fileCount":72,"integrity":"sha512-6f+/9JF7clvPB43hmpdkAY5pbmPP68B5SUtJ1nd4ss15H2BdouF7tHvQYZD2+3EC2syWRo35eEaToVCNckwugA==","signatures":[{"sig":"MEQCIBc5guVW3WCe5dIdxt+rQ1ah9Gn98uWOjQK2W4xYQEFOAiAVcu385tVcCf6vUH25oAt9fB9+FBQDrBbYOIl9TZfhgA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37571972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbB2jUCRA9TVsSAnZWagAAHaAP+gJbz6V7VPjVPIjH1XtZ\noMlG0L4cJV64yLjigK84muEH9K3nKdDHuyEiGvRR3S0qTqS2PZzHW7qJ91VQ\nSDK0eaXqIJI45okBeucn9KWNaS8GfW+oCndI1HzQ2KOnbBvGh6Gj2NCHQVT0\nQEKPt+RJCN0NeMTEYvpNVg4ukTBJUfmIxzewOZLOvYT2PGaV44oHxIxFZFxI\nXlE9bcWYiG6SIn1x0wjD9lehTIUX87DhxDxc0p5EF273RzWfJX7/La0Cys+f\nOwnTm5Tg5Q7nqB65/b2DRzo/KZX2LheZz7X8fuR5cP93gxKQRoVfBXLZg6zD\nCGGKobWWyC8MeRDQLnI+EGFH4YcnVZ6mFz1WXkY+z31NmK6tP2DvdD27esZW\nrDEdA/rFReSx05VbsZE4kMpILLYgQ6303pZksm5IU90EHob7uXK1myMc7Yy9\nvSCZ4tvrlsU/bD714PZnwyJxEAgWM9kO4wB3QK5b/UWtX/p14wf0r0KPefzm\nESAB7xFmvHZpqGfsdxeBvQWkUM0EkSndgXhwajjeawW9Q0dToxsA5e9Xo1Fs\ndLSxJEZ0bWd6y2y/oGmV/1AAQ9B4Jpv39REltGF/+6dxAUWzBoJaDt6zze5Z\no5cdCUME1SyMYYtLn95BBP+ckmT3wNa89/c8UrOKkArFdA5fYvSvNFxdVkJi\nKbu/\r\n=pyVX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"30415cd4f45f0fb035d9e0b25d1b5d9bf6047a02","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.1-insiders.20180525_1527212243865_0.5300665196855372","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180526":{"name":"typescript","version":"3.0.0-dev.20180526","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180526","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"98e2ad71ce10db18a6b2e0d350e0f739e5ae896e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180526.tgz","fileCount":73,"integrity":"sha512-xwPtyCVyUqg+OzRiNkg+w6YrJD7vJuXTlk0E1bJTHJVF8PaYqInmHmEJEflQnnPyRRrvtA+BXwF5KKicLtlvPQ==","signatures":[{"sig":"MEUCIDdC5YXNbxcajKLm6jNPPg43annwWzUZDgKpAEMLYaiUAiEA/tT0b+wNIs3kC+Q8nk29rUdVYNfTOyFPtBF3ts1dSZQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37800655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCPp7CRA9TVsSAnZWagAAuycP/jGcXumjIW/7Seue/HtG\nEyAKf57ySlxu6wigE0fc/yUu1zNyFx4Y3dk2IPL7ZIdm+kbVW1Nl2UVMhV8Q\nvcMwAwn437k0sr5foD2rTUPK+IQI9e5g40cuioBkREOTxd6DJwXm8bgiYJXf\n4kY1UwKLVhkIx9Sh4XuQ4sD/+b5ZJi7NLFzMl3XEamj6+STeiEibsmSY+URx\nTVFZFQSMZdxW9guBOkPXjvWyRK8Rw1uRYOT+QB3droO2GC/PGZSRHUMb4guI\n6olOg008D+vv6DO97sB8vTP8nsWL9k1oLzstRMKGwmrEclAIL8oRoBPWYUl7\nDZSOiIEuBgARuj9t9HagYae7gysKQ8q2ecsBicMUtRQej057DAORiFX0QAGl\nexsrd/qe0rh9D1rxS1u0zErj+WVUhdWHQMTjLXE79DYt1ilFPKBG6lSPlShQ\nHvo8kagLvagrBUL3RN2MKri3A0x7pxF9XHeNFPyP/aAXDbH+h3GLA+V5OwM7\n62lV4t3KJKNCwrXou6Fto4OK30R2RiDVXAHTEJX0mllSaSTDlg0jOFrYJ8yJ\nwIOfNVdZ/EyQkDt1Sfpvq0Yok68+GgFVuyffNAntDYYj00POp8WfkQ5LYKgF\n+O/8kF3YDt1mp5D2vcrrEArZD384wZt0YsLM+qNNB8qboUQt797twCpLZEFR\n8Qgw\r\n=OG9Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"927343cf3a34cb14b03a06a8e2a2295c8bf18c5f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180526_1527315067240_0.2327914426673281","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180530":{"name":"typescript","version":"3.0.0-dev.20180530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180530","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f85c80e74b6271375cd2d91e4a735b852f05cfd0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180530.tgz","fileCount":73,"integrity":"sha512-N0EmFD2sNkPCvjIHheTiwVL/ZSP7s3ZF1mRnSbMkfBN5b+yyIYhed7K1vnEQCByO5ZmhVZg81xidcBwhuCXu/g==","signatures":[{"sig":"MEUCIHCG2WSCgIR1wt+WNCI8/4eNxrzMwy6UPoAjT+XRIn9SAiEAmRW+iyEgCPfVqiG1YktZ3r8//shUKIRObglDPLsauZM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37814511,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDkC1CRA9TVsSAnZWagAA3iYP+QBJ6pxpMgjuT3lyGW8d\n8ngbNNSVDsguPoF5cfJUUzRfY7Kx4nsdYmsM2hVshwGFsf2qpJN1vj/UmeN7\n/LAprnV3g/BaQD2GP07/rT5q6TciteC9AJe8YLvspdf0BwCXSqq2/yubpOCQ\nhZf58EVD2ADRpOwQhSMBIppD04XmP4uZil8fq4ctMYx+pj2zq6iqVFqk+x69\nNn/Q/eaIbVYrsSio06qVb2jmDOmQpjkb11oa960WngNhnB/Wk+VIicnaIDIQ\nqP6my9PlUk3eEtTagfO7c7I1ikOgb+Jbb7IOLipBnheDpx4IfVebK58jPJv0\nJga779AooaP0ebHPKRxxI1SE69aUZt1nWd1k/Ibp52aVCypJ27jvpB8MqzDK\nPsVNylfHpKEHTikamjNbNTcBrxks0kuylzJtP3mVdvzFS4muDq2uhSSGwr78\nPR7EEB6GSX68b07U8tzqcd5q/Ceb0v3dOYO4Bn1L57mVkUb1NddohhLsZyE5\nGzM99jXbHwSJLj4zlsILWNbByosp4leBxAtFGktyMFzNDqV2FM7VKL5KfQ50\nkuCMfzzsN1lRNqt+RaLvfa9tqhDIzBCXmbrZEp85hD92YwkhNZIgUEhDDv7Y\nrTZC0A1QwHrPOtMF8x3ObmYWrKJvI+rFD/OuYMGLn78cdCqlT9xTDwms43z9\n+N/S\r\n=8QTZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"364fce393d6f53aab08f088c022faebd669b0097","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180530_1527660724748_0.5382579471352196","host":"s3://npm-registry-packages"}},"2.8.4":{"name":"typescript","version":"2.8.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.8.4","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0b1db68e6bdfb0b767fa2ab642136a35b059b199","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.8.4.tgz","fileCount":71,"integrity":"sha512-IIU5cN1mR5J3z9jjdESJbnxikTrEz3lzAw/D0Tf45jHpBp55nY31UkUvmVHoffCfKHTqJs3fCLPDxknQTTFegQ==","signatures":[{"sig":"MEUCIBPw0Tp5xuYMdMQ+xCBVoHX/Dn46pEsVoTwS8JTNOP9+AiEAyAz1+SHYvHcU/4QaUpmpQL/qKmOD5cUld58Wi9XhHC4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35938439,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDwOqCRA9TVsSAnZWagAAHb0P/1TQ5Ss6dAwML3OQta2B\n2SLQrwtre+XwU2OoHQCoUSmOCc8C8Re6FTIl5V0uhc2yqFiMKNxh8djcP9ob\nEHfZlAwcIbTTq9fgXbBhiCqkRiT1s2oaND1d1xNWuNo0UHV/ajplU5/frosr\nhihbnVnwP101cBhpKPMN9xak3FWPSzhS0tn//OSbsvoTK1hUZvoRLN9WSy4W\nCQY3d3J5+G1QtWjfqqipLndD+ixQvG+jjoDb99w9qwok571mwjBaf+Uln9yK\n7AIKUZ5arGArvYv1/w2jH3xU3px1wGmXNJp0zSw2M35KvRWBuDvGajufC25A\nYzdCmb9fPUvHuenUPJRdxcIhxyBkg/9G25TgZHdVw1EWHmsIm7h8OjqfGrFd\n5P/hafdsfU2tXWa5u90Uaq4ERd89wj3Hf3p0e7E5UUflyQvcuqiMvC+fYXV0\nDBBry3y8Nfl79Hs4SHLKzoiQ9wI9fkYY9PQhDDyJfFnPJAfOlgl4FyHZWGpd\n8L+eEqPzh1FE4RLqs2w9yCrAg1L9uEPn5YbkNy3ZqazhaL2BmkenFEpTAOLV\nLQ74WczcXtVj+PYS5bvqGkUCwbqnktQKebFNUvO4mtOfur7vs10DxpJvWBbJ\npnjwjmLg6mJBb5w4IqZABclYArHx41h1M2dTrXoNRWVsk7pOh+X3Mi+7PBuT\nDqgD\r\n=Crra\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c59ea304bc49d93385c22be7b8d2b401891ebc04","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","ts-node":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.8.4_1527710633913_0.29202417413702975","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180531":{"name":"typescript","version":"3.0.0-dev.20180531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180531","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"91b8bc5485d60d10e668c2a338a63d1c3db33c97","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180531.tgz","fileCount":73,"integrity":"sha512-KOb6ecZRRWEGRQldW5z99TbIqxVujDxwHTWqzssrGPJLh0rNvORPaGVyLxlijZXbWfADYyurns0Ezmoe1ge5hg==","signatures":[{"sig":"MEUCIGeEHHSeIaHU/EewOa+550k3DQZhC0U7exvQrt+/qD/EAiEAw1oT1w/Gb7SP/7BTaiybvnZFwxQ/LS3Wx1ZQ7MBqook=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37879206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbD5I8CRA9TVsSAnZWagAA6TIP/0mzIF6kZHHuggZUBrni\ngN7JiLPpAOsmu1XYInl6SjIeWYq/0J6RJJt88uigWlblyDSYqb/kwP5ZzgjO\nNd9MTgBWX1769aiy/GKS5f8RyFWOgc0a3jxhKp0MlsVkXhdO6+yADhpjvWYR\ncGS9Isii25rQNJNQ1lPAMkvxgfIw8aD/5iLuaSmByeF6gDyHcTKizLysQaEd\nqwI6B1JYuHRLN2IsLDvkAmJzTpkMt5DNfzZfOiIZhmHmt8BUdKY/BHjJWlIp\n1OUE9M4w6KfkJrWlsDKcEGpUrcWyJWmiPdM/Dr/ROrpoglaDZ+wYjimC/2pE\nw9JO84fejNRuz9ijVsW9Th5rC+kjMgWBQp4EpZDD0qx9bNM465zvNcjrs9AV\nUqY2rJDgO1kBXIfpfHY9eqbaBRJRGsQ45FCnVcnrPLzc80WxnIBXeVeY06dZ\nh0gGtqCerqe4Oqb/vq41D/vdy/xvWJ137Za4zvwKSdU39VOxfHvo63ug9ueB\n4ox0WQqhUnQFLJsEWPN0zxQRd2IIu/PM5Ls9OSGbVDX3GXKlzGXOa1qoqcHQ\nFR014ssVfXSqy1DGwpwDlvIgJQ05+zTacEj6FuGe95XP0SzpetPQlAr/np0Z\nYolqY1ayDPjeBj9phsRtKuY/tNRJOg9r4CQzmD6Rh6C8dPAvX13gZd/asOb6\n+Dhw\r\n=8jZV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"576a7333787133b08ab1af72c2409ef869b2ab1e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180531_1527747131753_0.9877779865626117","host":"s3://npm-registry-packages"}},"2.9.1":{"name":"typescript","version":"2.9.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fdb19d2c67a15d11995fd15640e373e09ab09961","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.1.tgz","fileCount":72,"integrity":"sha512-h6pM2f/GDchCFlldnriOhs1QHuwbnmj6/v7499eMHqPeW4V2G0elua2eIc2nu8v2NdHV0Gm+tzX83Hr6nUFjQA==","signatures":[{"sig":"MEUCIQD0hJCrN98TscM0LzlxRbs6LsAHACbLnJ+7Sq5ObAJhDgIgHQG4JnAYSjOj9/cidEaO4y23NQxm9Iv9uLwJ/rvaJwk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37572479,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEB9hCRA9TVsSAnZWagAAQfoQAJO1DxvZ3Fe+qJhPx7Gr\nDCR00iREUHXADIFNVkVjJmClK0PEzBpZDnfRCS36Mn3AJt36bEUqyNrjWRuL\n6uv4W636UsYgAAqtHDipjKpAaiKjKTfFI1z3X/q11nIW5kzxm0gLGrMoseTr\nFmyEVolfAIWNDo5QAs2S9C2q41ZwzKtMgS/gx1kh9LoFDWY98/4tIWyEmAK6\nVKZi3TyR8aY/hZE8H3I4Ms2hRCxIz4O+ubwKLANSslpboyblqIN25UnVPHDX\nPVrg25CqQLgb4QRiS0d5qCHL9jWBugNA2OLH8jvXHRaqQA8onuEE7eQMryZP\nAh82ExoYmTWQnK1Hll4hrMX/yBe4H47I21TaHSKh7MCq+jhPsD6fG5Xs/juP\n5NK0vqb1lKOUdz5Upv/QEbn0ZlD4bu4BhduooSFtmqj1RovP5R5I9k0jtMbh\naXeGQ7yLRbY7YaL6VPcMuMPJSfoVxXMJXNoD33kwohhXxJzfJtf3Bv+J1GwP\nfeEejiSDXZ5NZyDcfyJYhe/DmJLns+SUZyfq0o25vHFWXd7g4QLbxNiqyBf/\nkbHZl0+NjVb6FWkUoZ0bEVGbjbTJ9vkW743q196vSsJcOrq6YLGZ3fKKYrcs\n01CMJ79ZReT7em3rKxX2lLWGq28Xp+qZ+U2rQ2MEkBLuDqCqF+yh/vL78mwm\nw6XF\r\n=f8uw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4ce4f58243fcb933f2845ccad7497bd0e92ced09","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.1_1527783265489_0.6496125572816736","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180601":{"name":"typescript","version":"3.0.0-dev.20180601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180601","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e0d3b9a3c0378335dc69710b8b6218f8ccd43663","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180601.tgz","fileCount":74,"integrity":"sha512-GIpPvsYSnVLcplzQp5cGyij/Xz7NdB0kPNWW6beRJUn9x0m3Wea3fl4RyGLdz3K1OyfQJhPdWSdQKZWkmmx0XA==","signatures":[{"sig":"MEYCIQDpn0KydQj+Xj5+uC8FpaL5ACvI099ot7Oc0whVapPMVAIhAMXeYxq0ILk0ZFkYYgJYGIcsig58vHBUtARVBVTpcEnv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37902601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEOOzCRA9TVsSAnZWagAAXooQAIm0jGsXLhSJUMBtGUqz\najDcVgUH4EH2yP+eQXzDafEoLIpswQs3GuWwV69zn3pbLxKqvLaMEJGTmZWN\n8jq98DqWG7zVX3rU3U0xltDklRt15V1CamlzBy/1qArBGR1XYR2d8MeAIIq0\nQnbnOjNOeyY5I0ql+Ok/acnqDTLDzrzfO9LfSyNZ4FevnDmMqeXrVPcZa+G5\nvsbqK0PAwe+hB48sqSYrhIU1th9EqX4Wxi62PcaBjoizx93W9flyyH6namcX\n9BdPz8CDkMeGTFF2XVosuO675kIcqy1MIFE9CT7Y0hmcuT21s9Om7PjT7YK4\nJOUe514qCqDLPDyXXn3WYYJjJTPlsHNAqSWpRdIfihVThu1xDMNBiBL2cEiw\ng1WCtVJ6uSt9qAROCOxV6K+4yhdaVR4a1gtTd3TGcrSTs51SpbHpU1tKa0Mh\n5W60+vk70dDhoAcX5IHvtLmcLHEHZ2HUoF+TipRfou00BzzYLxBk3TZbcqD7\nGWudYaa0Xk2Cw5Koupy9z5GmKvYPRHTGrpzCwnQ9H0Q+1oD3vPlwDfu0CdlM\no4Z2aV73OwG8fNdugBvQ/jRF2lNnElY0cx1S2mdrSLX4esTXfRMJ94tRvxRm\nRZV0Zt6mji3zGq5TRVPMGQ7mr+SDUNtxcgxf6+iEWTn4qvUQzkXc620AAHCz\n9GHT\r\n=Td2M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9d42ab983d12780eb2a2e8e90dc63e532a36b462","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180601_1527833522562_0.862370052465294","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180602":{"name":"typescript","version":"3.0.0-dev.20180602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180602","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ca368c199b4e3cbfd25b82ecece3f2b13349c893","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180602.tgz","fileCount":74,"integrity":"sha512-lQNa0+qiovpbnodUsTfywrUcFmYQAmMbJ2Q7Z73RXOxO2h2bNN36+Vy34DYibTcqZnpY5fDAcAFs+4h+BX0adg==","signatures":[{"sig":"MEYCIQDv+IdwNew9UTyqeV4wB2ErWVHKVZUi/DIna3J+IfGgOAIhANVhS0DFKUc6vmMItWOrNdEYCXUUNVX7N2xUfLyHDW1M","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37943166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbEjUeCRA9TVsSAnZWagAAoDcQAJGflonC6dlktFKsDMlF\n5cXO8X2Dze3KZWkLN92UstW0xCVMZfCToswcqdR+iDOXc1ZOy+/oEDBHG2mH\nvAwUqy0PGoJOfkiAkes307p1mkwnMH+iKSFQuhYUuC+WACoAQS1c+0PTMuw9\nDgKYC5TL1ppjM6+5y2EsonccBiTnjuXrvjvC26BG2awo1xeg1zmPzVHHUUrb\nqc7X8diCztrwD9zxnP1AJ8IDpFxiiVA1IFuhz1/M0rprywtK/Wg/U7oiaFg9\nPKcbqDQZ38c95GJtsFKNa7LBNWiiQbxqLEKBXPtN7oFz3xF3c8mwU60NGirv\nUL0OyV8LnvPdR2UrguOLVU5fr5yeoPbbtyXWhZ97LFWKMjHCR9S0jZEn3W7I\ncQzmJOWy2SDWjUKoirCi/GZRQXxrLMfIiNDePRtErUK5z9xxDZpoNxCaf5zK\ncCRvp8dAnIExM6gdy5nQEI95D1ITfkkyP16LvcgKhzGDauBl6VuF+Ebfm/hW\nAcYZS4I0WGohPwO6qPU1O/D4NEVUUovDA7fP4PsrBwqYPkrwaha+cenNfauF\nwfTBjtm2YFiNIV2eWgr63XYIpGJU9tckk2K6nPSAF8I/ZZM/vOWcQhtu4Eq+\nQ4UHNJfowCAkvGzw3nPnZeAMSzWBhQHByYNZ13Mqls2hnNoo0FUKTOZzeNQ9\n5NZG\r\n=Kutx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ed728f186b9bb725cc10f89956cfc52280aa053c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180602_1527919901587_0.16458716178403243","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180605":{"name":"typescript","version":"3.0.0-dev.20180605","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180605","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8ad9bd2421242c09624fab8a8390eb06cb7baef8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180605.tgz","fileCount":75,"integrity":"sha512-rvIKJcWvrMCWkTrTHvGZL/V2Vfo57MPj8ohYDQcEV3pF0U6fS2DmFePMK19yLheN/FJayr6SvNyJ4DSS5axxmw==","signatures":[{"sig":"MEYCIQDqN2mGt9JxFKyk280dgxvgQ2OLgq/qaZC71asuSzjWPAIhAN/FElj5jrlCvw0lYMFvs/YYm83vOChqM4MvNxn+XUNk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33819859,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbFinQCRA9TVsSAnZWagAADV8P/1w/h/5DYjlY3aPktaKJ\nFP9/PsuXHz/367yM2J/yTiU+yX/JynF9LFY7yWJMzg/Cqm2LYYFqqCRJWl9B\n/sJGnVE6IaZlkA4PPqqub2o3TRuaqmeZNlpuS1F9vqMphYFvXpn3+2Ttn2pZ\n8Lc4zGV6jw0pqbEWA2hlb7ehvHAwXbLgfO6YOkr8rU+PVKy3SdnTt8ux8u5c\nl39eTMDw5Q2pXZgp6NuuPfGcHsdJMQ4EtOKry9ENWNtY0wcnfw/ZktoZIEJH\nSDbw6irYiGc9xDhAu4Drd67QjZIY2NYbe/mcObUXiQIi6vPE6UgJDLtpPwM8\nxybcVLIA4Jbpb07CZMs34cTk0yn/8jpmxv/LDAbyOoQQNv0IkYl7GXvAyElk\nnyKj22BqT3b1C4kDPokmIgorN6TsWs+nb4OU2mX+xMMd1nCPV9rbmDp6yY/Y\nPCon/ZcImCdmIUd1vlWSwNw4oQWYtEtDPkd5fSgWYx1FrAnV8Z5hh4k+Xe+D\n1MEMFyHwA0rqZShHcwtA/VIQQ2ctDLSuyabNynGOG6xOuHdcUuqflpT3afN2\nNObJzYVUuzC8vohcP39kdrKI3APev9UUIF/HjFdu1IhSsODENO2TXh8t6eUJ\naxCxU3GNBOG50073mh/6wdPsIt2S0KBsNnMjtCocBsuKO1VATlVmYDDy+vh6\n6uWS\r\n=bNZT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7a5dec4d7b64743e5acc6d41c44d9907fe91250a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180605_1528179151905_0.1641030041074656","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180606":{"name":"typescript","version":"3.0.0-dev.20180606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180606","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8fa79b16903f8383ad2cf5559c47dc468971fa0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180606.tgz","fileCount":75,"integrity":"sha512-1bOyVDw7f36jEWKuIarg7ryDs/QH483qJ6bP0WI8T5U9F0vnFfjnvfSx0fhM1iSoodfWrsaidmKVNyg/U1/5KA==","signatures":[{"sig":"MEQCIFc1IloisjGQ8Tmwl6fjOa4phFEj6pQuXO+3LBeTowv2AiA3zKIZPZ84fU9R2r1rxAN+K10SpbAlug6v5ATUyo+vMQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33834090,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbF3swCRA9TVsSAnZWagAAC/gQAJ+9UBi5ocPVrAv2Sw+v\nUlzf1jqMx7uArDlYePSd+4GlsC/bD2xUBvVUwvWVFQ4ir2+UMbDjYlQIqACg\npofHDX2FVnb014AV/DEfl7f27z1G1iF+zelWoZ6YCgM9FCBqgggWPigmHy9v\nL8p5LxZplgJP+16PbXeLFgp8J0nTfwdw0Ms88GU5qPR4uqH6BrLNkblcu5lW\nCU2yAd1OAirUQuZULCpmjSR/+JZwjy+56pfL+XegzQqci8VyI1eELzkN+yFb\nJ8fcRwqt5rFNDHHcN+BBn2Ocm36auVaTkbP4eDKGbKgUEOt2HTlH1yV9ccUn\n3XGsLml7l+TUE97OEQF86GNkg3eFWIBT7BnG/Q75ZPdCNchGIu1fYpwz3P9T\n5RMSgL4R2QazMihWkr6yUpVm9YgcuzKbTYFJJ0jUujiEBIeVftlhOSUGDzEF\nFNCc2Q52io9pc2AGIj6q7leZ2/9FE7lWbihDqEmpOc+y1vIs0VDnVhM52Xvu\nGNSg09DYOeDji/gDFoXLFxOPop9O+FvKhAX92FumLlVXf4DrVX7SLoXpg4h9\nDuAxGFZX4unH4a28Lr8fdh2oNcS6W0/EepKTre23vYDlEVNj0B2IfwDbf4nv\nZ+WhGf0i2Q0HdjI+K4Zp91GVAcTC/oOPXjpVvlNex3kW14RYNtAPGdlordEa\n4GUD\r\n=bsAP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8d737ca9593dffb7243acbe1a1eea0464113b54e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180606_1528265519952_0.72555219855305","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180607":{"name":"typescript","version":"3.0.0-dev.20180607","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180607","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b48c4ad8a0b1da23f1b0863a6a827fa8fc1e9b26","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180607.tgz","fileCount":75,"integrity":"sha512-ww0dJQOBrksEgU++TzfFSBslO92FQURL7NCzQyB40+5BmNQ8k1hBP47HzzqO1RyRzWcJ2OmRZBZBQDRgMxVGVg==","signatures":[{"sig":"MEYCIQCldQOh63U4gALbAjZYSwIJ8kJfCAuwdN9B1uwx2cHO+QIhAPUsVw1qs8UxLYtm5Vt4qWYfYiG7mMl/R4nu2GxhEVEu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33840799,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGMx0CRA9TVsSAnZWagAA+JgP+wc8ilHkAyTyDQkz3hAO\n8ItZGyQYXx1ZDEsS6I3FlD2ihdEbK4m5K+oUtBnheb5SfyCa3YXYiM1Vx4bl\nSDcCa4lpe4rwSYF5Ofrmoyz7ZbiIyYCgaSYjkt/ekLz4C4QkSTlx4/xKypCg\nnpQfuzW2Rn5PbfMvdv/1dqO+fRUFiK62F08JY2UQZaL0ac4QS5lO1LZ0bJ6Q\npHjXPsw0i+wZv/dNbgKtc8HM7YJefQKbbfXqLhRIfPJxxx/ku2ACGQQyB59h\nVW73SxUv2hbwW5kprWK3a/FLzSHgJBXUAG9SQcRv/SEfkmPMgut9gEkzmWif\nCrF6vmR8Yv8dzsqJj1iZUl6An01r0QipQdu0Y0/xz4EjNvoERuBKMUVDfD/T\n1TIfqSwcMdcezyTww3XM6OHXXOMNX2e6eIwJ/Hxlr9MFVi5J2eLTMg90uO4z\n1sAPSjEYuShAqlKpW+Zntr8rCx3Fw7uk+mMmTHSXZ8CJKMJiGn+PVx+87RJt\ncMrCW+iEAMLwfr/eSpwvqopQ69MfvlS0laAH2cIfbKKJYb/nHbzn9TYIRQMN\nfmtglUeu1XyKXBRbqe3P+R9sZzIh/+WZBiaGTyuudG/kJ7V8RXyTNFSzT/uS\nZ2+XKaOlGuf1fDiSfqtAUVs0thuOTd3gjSZrjXiKuADMKZ3pI3WtLlvLxQ1Y\ntgsj\r\n=vLTv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8b77b13166df82f32d1edbc121ba42c46006a3a0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180607_1528351859756_0.16369564737000197","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180608":{"name":"typescript","version":"3.0.0-dev.20180608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180608","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0143145fd9dc2fc3e0cd166e69faf69f3f2d3354","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180608.tgz","fileCount":75,"integrity":"sha512-v6q6Da6a33LzL4a1iXpkEZ5WAwA0TEkrVhh689dUCbUg3l5CLO3xajPMIz3hzgaIMLyX6EpJwDJjLRbsMHzdjg==","signatures":[{"sig":"MEYCIQDsy+R9Eqpa/H6E0Zp0hx8SH+NX/UYn1VufiOrJhzFeLAIhAOKZukTIXeEgErHbFdjI9ep6XZ8XwqfZKfIVUCBN0c5P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33854988,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGh5XCRA9TVsSAnZWagAAFAgP/iwq7T7JyeFVNY2MU6NN\nWrQpkeGZ64owVz0Ct4mOs0462p8N6tnU9IySBqcasC98wVK14qfPioxi29/J\nx3UOz2275X/x/G20zbKLVwYFE1dFPjW7/Yq/r+A70i3GPmF0DVrkxP/uYwwg\nIMjuqGwydu5SWJ5ZMILOUKidNVKPLwFFUvctSvSIYv7aGmiYPv3hYGnbWlXj\nw5Vh8L3dNUwQcnlAI57SZjhfC7zGKipZeQq6SC8kAvPE9suCmpnq8HUKUOtT\nwpU770StSuNQPm+2wipr3AyVX/gBgKPKRGxsGwWN7bvKnjm2gONuIPiVu3/n\ndBLXOTv3bcnG4UgJXNmryrUBC6aFtYKrMgc30oz5kzjpsz9d2J4ZkuHXmZUU\nU4RChK6dwPRf8VhhVxihhYNJgASIteKIcggKVe29+V1QPyjYHOVmdzAKFMIh\ngyuWpS2nzkU/BQnYSs8mpeMdCXi2G9/Fo+F95tAnR2MBg14JXO6kYDY2qCFN\n7cgbj+CfzS7dS+mb0PDPGU43tQ2n8MYFd6dDX/D/NPsjjddohqeGKJYUrWUN\n1Jybz7NDR2resxydnfAmrONVOhBGK4DwHEV4/61JLvo3mHkbPeJ8oT08mIbk\nPpyn0gI/fu31XRyamYS1Q6RB3Zwnkxo1ML0k/WP6w+aH6CGYJ1MpNYJehx5G\nfqyg\r\n=UcD9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"17eaf50b73c1355d2fd15bdc3912aa64a73483dd","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180608_1528438358354_0.8853656866059125","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180609":{"name":"typescript","version":"3.0.0-dev.20180609","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180609","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e25f3377eef4bec04207168c9b57d9e94557b4e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180609.tgz","fileCount":75,"integrity":"sha512-bqO5mSGbxZoiY/9Y1bnnU36dC5CfnrA9I9WKf3QB0qMuJakoofO2DNTDRwsypyhCThlNtF2Ls/OMj3Txglu4Xg==","signatures":[{"sig":"MEQCIGIPmUxToKV/tP4FewoWlAVnGU4g2ighexERIdUPW3xmAiAqBl5gads2sJa89Sr2qhZwl8twNvBdpBzNiuGtPKsbEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":33860035,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbG2+zCRA9TVsSAnZWagAAF/8P/1vpVAWpK7/Muiwi/SJn\nOWdV93RNIN/FjL8N7jrQOr9DU5Z358Np/CaRmJl+BE6UkkkREFSNnPJyhXWa\n2N19jW0mUmFOXQxuM36SJzRE8cV7LUVcvzHlr44MwaIywuo01hwcrxNfw5GD\nlVCbgxjJthGrl6ONnCn/M86Mhdu3o2xYP/c79JQxOhe8MoKyUrnKxcUWx21n\nE4+t87XAL2f+6+7DuQ7GgkkWi+3+z5gG8XS+eMwDsmlrI11nIVPHaDjNb2Sv\nQB5F7eXz3U5YwnE7WbqSlGJkOjMI/ppG55KohmMih5bT4F2N+KYH6GlOzdi0\nt7VntyOUh+K4tlY6yogbI9kbrkgE53gEFGTlez3PQ/TPNZQVsMo8D8yv2nh6\n5+biX/4/Z5w0d1PW9fPZ3do3KmoADHOo+cEPUMVNiU3HifF96giCwiKJ8Ege\nPX3E4+1b5U1DVyKIlKG6SOStYjHbZP/7I3xAPuEPdXQoiq4YCvXaEZH7s3R2\nXrSTIZbb0P4PdD2IVJUsTLKk3OfGdmOMFaryW/OCNHGlLUkblB3bLRlANE0V\nlO3u5TXDvFFiDA7g83nNgYJndN2090f13MOAWqzT8nXmAsiGDKi7sWevnfsK\ntuwZXkeCWGuwTlbpQBavWkjCfSnwf/i7dDIJpf6Smmqa6Vv2OOslj5HVHnJe\n1yR4\r\n=cQA2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"04187bde8de24f1913099ce04cf22dbb8d20e59c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180609_1528524722734_0.1987921135675328","host":"s3://npm-registry-packages"}},"2.9.2":{"name":"typescript","version":"2.9.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@2.9.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1cbf61d05d6b96269244eb6a3bce4bd914e0f00c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-2.9.2.tgz","fileCount":72,"integrity":"sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==","signatures":[{"sig":"MEUCIQC9mlQfRTzbteYP0kHvZiaEA0B6Mq2SwMCo1aEnqHxDuwIgWJnmEebsj6euAyNFrfp9GNYKHsYpEkd1hw/hwiHTqvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37696174,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbIWP+CRA9TVsSAnZWagAATgIP/R69jiC8IoCeMfBICQjA\nZgfYcb6wVn5u/W3+v+NkHRg+z2gSeWFuYT7CsY+ICLRElgORTlpSA9CMZa38\niLQHIZgaEkjet+G1gpM1tteQXzybUXi9LDQoNh92LI3BAMAf+QdDed0sS+xW\nyTG+Sj+IIG4sfsCh9gq5UiNDg3Nw7U/mDr248H6T7/3tVNzPp7hLTaB0w2/J\n0y2vdgF2vEq8kVruYJHzqaKYOeQSIvpupwYdS013A9CkhhXKdDcOxO3KbTQE\nAXwUYWHMA1rcA+c917udohfj7havAcVU2FOtJoXwwQNVj/GIwazBHrJUG3mK\nx78kDjd7aZLLq1XXkJFhRWBDCZjnNpOBtYpZF73sgLFFYzg8xYjV8HM7fe0x\nlYJmZDffZO4qPJmEhUjZeN7cNV1f9+cw6+2F6OmzHfrVKL2E/ulP2LZboOeE\nzWXSkv504heFoXukCoyTMqf5LsT5KM6trfWTxFAFiiPOtTihxmfD8cy+3nC+\ne/OhY2kccSFKiDY7LXQoaSXb0qR9l3ZlGqwhfGZg4X2N1FrscKZMzovQwiE0\nkjF/fTGa1i7wrryuvKYaBBrZNgzKJE4YfrU97LU1KvYTQWEs5aFghKM6iLNO\nHPwZ6yu2cfSPg48Szf1rtSJaQbpWNXS0m8hrt3C9/fhgvVbZFZUw1aXRdTSc\nqwQf\r\n=mLwt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"da1d3cce6fbf109fd322210901d6bf504fdcf42f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_2.9.2_1528914942120_0.7475624472595328","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180615":{"name":"typescript","version":"3.0.0-dev.20180615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180615","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"649492d11ee6c1b3b3ee6d89e91282d0224efa07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180615.tgz","fileCount":75,"integrity":"sha512-mMCQoQ1WgqjynnZNZ2U/bvqP89LSuhces7fv4IBWsykoTxsr+NU1l6rNK0a6AE39jEqit8ufsZqUD189bNiP0A==","signatures":[{"sig":"MEUCIACMU8512sCP8EcNJWPVYF+ij641S7UpQCjA+c+9YkjlAiEAj3mUx0yVy65p0vKBUOrFuDhRAPavbYDRurYdJUUCCYw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39943712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJEDUCRA9TVsSAnZWagAAS3MQAI1XDx9vyxJwAdVbd0q/\nfVbRSyZN24+mAxXVPlNDU8e3QISvxW0x+iFaJJMVlv+weY5nHL7BooJ0WmQL\ngB4wjE87e8MTOytkHCNUxVQovDEOr+L/Zbd1NbcWn65met2ePL3UO+6Ie80F\nz1upx+bB4SpYjdx3heynVToko9wzjC5//blLUUFrkCOfGhFmfxOfdjGBPEil\nDNlakK6kPhYjAIK67H3fz0kbCfNoNBTvenTJ/BVKmoXuzq+/Q9wf/PfmcNi2\nBta/tTc7YdnwA/wUkj3nsBowJ8/Te0skb7V91B0tgigD3oLJAiXWuSfdLcMN\nULI7rjfy/qqi2bCr1ERGMvnBLSm8LR0zoQysfmUfef0K4mGIyudQoM+EyYpz\nuuv9djnylyDGE1lYrc5bIU1oAEYio1Pvj+hJ6bXgpWFqHjuosf93EcXK8iAo\nQrV112tGmAdLUXeJ265Oy6oPAfvwPz+lUPQJ/x5fdzXtTZzPlKTHPAGXJIji\nQlY8yiXiTGVY/MW6DGMU4fUofa+WxBwmokDm5IEFdkS/dRV64zGVqf7DvrXg\nnGg+SsaRNldBfyBLyAEVVbaG9ylrLGT0znZnNCm5xtTUtdqvI+BJLNb0Stnj\nFO4engHoWoiMZWVB5KJkuHiXgTEeWa6VQ1DRq7+qwwSeaOM/tSwuID07Sju/\nYgHB\r\n=VQxz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f597589e54f1aa1160c7738b6987ea510af65de1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180615_1529102548139_0.5758591081438871","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180616":{"name":"typescript","version":"3.0.0-dev.20180616","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180616","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1d1a3af3adfc85e620ce599ebfa022858bf2047e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180616.tgz","fileCount":75,"integrity":"sha512-g4rjc9/p4iCRgnHTMSqXO4hpPTDCuqYaz1b//UX9QG+HXQv1CwD0SM5OvcDqtLFPK2RG5xUxhwPzhLXt6Wv75A==","signatures":[{"sig":"MEUCIGFhrEEO2JlAqZ42R6Hm0O6mlMZexgQFWAr/N4tfwFP2AiEAzsakhoinRle5Q6LzM3FipugRmrCyBFysDFLl6PKzZC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39943705,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbJKpUCRA9TVsSAnZWagAAWHkP/35V0y5pAdHkkvTyTdCq\n4zfYCm/OBUiafGmu6AhSTvm+DIZbVgtRUzuSxy1GlJQCuWtgNwov1lnWceCn\nujwhun4iI2u/SkuMUE8mAzIIGpH/Y1aXIDv7MZ5XvpvQraduTVJRUVN98nPG\nZMsI37Aw9BVnNiuYgeiTaTWqE37D9ZPYoLHjwPrqID5DCPVteoOoa2MjEgZu\nbNdmLqjR+eozdlrdCEac5Sj+5vRVYVtFvlyWOpKe3O+OUoKq8pmLagPJBR6W\nZYTnfgq4RziX+3d9poZlf5pBxYI1rPTBDfUMQRKzNSD48irDSUuwJdO+7cAH\nZfsOQ8RwhZ86FAfQDZ/rbfho8ND2+oR2l/HCn+Ihr/ITRvVZ4U2xX0JBDWJ+\nUUAtKWrLB1O6Qou1cxujyqTVpyBpZ7WrccJvDMXDL09999AcDq1CIXUJ7f/q\neb6f5/Dd6zHtA8nq9WenVahrxViXjgis1w9Bmw7kedGLyGtuDGIlss6ccwaU\ntkuFJF9eTkmdvgRkIK9TjCC/hAjUiZ1RUovPdYYDmcs2tOmtNTSdyvWtNbAn\nUUay2FbVYE8hL21R1SPHFCRhh56DPAkD21Zn/nbSo3ZN5tUxZnv29BezaPXM\nJHuVOlQWSumpgaPrhMiLiX4uXi5KvjiL4qaz3m6DLjVYIwnQfnvSy08fdTOD\nJlVC\r\n=jYhY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3846e7b06eed371ab1d3d8d9919e2e51c62b8bff","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180616_1529129555810_0.4972173639209545","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180619":{"name":"typescript","version":"3.0.0-dev.20180619","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180619","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d0a9d25dd47763ca9611d7d41de3fedea62efb04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180619.tgz","fileCount":75,"integrity":"sha512-kSxEtsbDkVRQ1nFQKteiAQnwO+KS65dcdqmH3NsdVZ5LwPb0l5cbnicZHKlPpqX2LsQxQ9qnqYXSQDI66VGQGw==","signatures":[{"sig":"MEUCIQCmXvn62oWyzNBNdI01fXVVnrzggTzegmaginLrGovqGAIgEJf7ZZxqNa+C4zaCtFKcbgz1WZP2kHt3b0TdjZkXRF4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39946394,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKJ6+CRA9TVsSAnZWagAAzEgQAI8dlbx3Zn+qgqUJuuK+\nvhPpqnq1TKM4PReoHIn5gqNyJ53XXs3cDl+meB2VOePmaxiFBmB/iFehxF22\n1Ll0Vnm1mPFue5a42TmCMPedngBkYnq20MBvmPxJ9wZAuTxpoXccWYllxv+z\nlpuA06aJq6SZSq/mKFiZU+ATunRJ5J6oymY6L3uWt5FfhF0pKK4Pl6/26wzd\nVJrFXwOr1PH2b2tzDGxO6BhUYxeqzCCbx8uOWi6PPy4rwCKI4xIv3gw8xEZM\nZuMpkrrH7nN8QxswEAUKSdTXYe0YFLEvWL/OfZTg/ony6Ah8M8PipbZZWpoL\nJt90H6wT9nc7Qas4t4cDoBPCSUjIoNa0lvH103GNKi1+Hb3ZU3vFFox79e3O\ncYgQV0xP/pGPnq5UAg8/2HsZjJztko+ZmRqxdvKKPp9fscdQlCjIMy0evQCk\nTBL+rSXIE+5st4HWEG+Qt3rfjMZcmVY6JaN4c9H/vZiNALRTh8JPiYHebjDx\n/WgBRkVdds1CDUoDaSD8++I8oSolWP1gg2fZLD+EnqU+MvGEETm7b6wpJSCl\nIttCM6i/0Fs3MP1e5EWDKhLxe/x4ijTMbZvo5QEKjIFPw7u5fc8+D5rUykSr\nrQLpag/dFK+VMy0bnuqfIqXqPm+DvSrDGDX0H+5IGu5ig5pJXlujVk7giaY4\nEbrG\r\n=abtn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4fafe0b50226e27a517817e2631e22871e232c37","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180619_1529388733937_0.9861995065120195","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180620":{"name":"typescript","version":"3.0.0-dev.20180620","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180620","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a485c7a9257823b0f1ce62e843f41f61642bcf8e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180620.tgz","fileCount":76,"integrity":"sha512-SVD+Xo3eN5vlOJltvcrMG8Oy08lKbgSlTUaCdJ2cdb4Tp0Pq++yL0CIxBw3j/Mmul/O4qle8YmDcgkGR48AzMQ==","signatures":[{"sig":"MEUCIQDKhHTdFvDotBgwgn/O+s+66sDRy16mkFT4XIogcOZp2QIgRMTrI1scrPvYMn7V5nyighm4eLkHZbW/nv+ogGzWVZU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39949644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKtZ3CRA9TVsSAnZWagAAX/MQAKCul2oGqv79PXjobOI3\nOa6pT2Gx/x3LBvE3RqYmq8q+bzOyIqXWwY01vk82Si3iwsi5I4YbpbGOkwQG\nCSv98lsBz6JIH4xE8LIhKj6y2Bfsa+xNHl2Z+LzNVbiBGmyA0lwA46hm8DNJ\nTKWZwM+pwgUrjCxVYIOAqwXR+vHxxcHbbeuVGWUDAkL9mZzXpp5izX3dHlKq\nUv5jnn+SreW5Eah6NWLmHgTIVzqcPHttyfthb16ExzdiplOw/YOX4ANtfE5H\nce2EIrKBvlPCcE7p5sUQK/pKx72r5ruTCDuoLSvcO8jSlX/nMWcmn7HY14bb\nnqmLjtpQtsDcRRhyXImpY/k61K0K8eKt6bTONTX10UJ6w3bKU61BVGlO6+Fx\nxiZvBACKOo9s/htDT552ZzLJTPQm0/347A7DIIJGuYitgwM1K2VpxKygpeX6\nH5K35WbxXjVG63Kk+IptNo0pOOX+6oWjXcwQvb+S2VKt7Qhamqc3rJEPcLXy\nGsMM2TNxjCLsm8pVBihbBEqBlz9WZj9umiP26/dOMVpWMmLaLufBPGLo5zka\ncd7RhVG10VKfF2kG7YC8f6b6+kHecf054qs+xXDoWJ3Y3F/tpSJMC8WnazV1\nPoFPnSGSx2gj/hCv01SAOfmc0LxNQmKP+VfBRUGIKLj0nPemfezG1KrYlGmB\nt/9w\r\n=VXV0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f3e2e891da9a50cafd1f10b64872c7d919c223ee","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180620_1529534070273_0.72408591566015","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180621":{"name":"typescript","version":"3.0.0-dev.20180621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180621","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a910b3cff52a3352a1a3fdbf748e160704eb6b82","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180621.tgz","fileCount":76,"integrity":"sha512-uexojVffHYeV7Mb2CFbbUxjN0f7Jz9biKIXGXU4H2sLnG9YChZCt9pCXkTt25TzdStwEn9jk3YAdIE7ixNllDg==","signatures":[{"sig":"MEUCIQCqrwe9ttpoY/UAkQWI3XQpUPSgZYViPSl8qUFo/mIK+gIgcaFX4PUIIitW+0BWgfSFCBSwieEku0s5PW5iB4aq8UA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39952745,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbK0HUCRA9TVsSAnZWagAAP7kP/Amh6jRqp0GnwI6xOVZ0\n2AVdkdrb+6V0DSNaiXF6dxKpE3mTCbSUlTDH97lNlMqs3ZmwViBpWgzD0y9O\n6TD+NU0zy4cYgbwWehMFUwr8ZOCrBZbAq4BOjliINdBfeLjPE2eGB4sdZEUy\nhvEAdUWtWMg7m+1OcG10vslrbyEMnmwLoeAQhfW0aSK5Z1zmOtu4noM/HjJ9\nLWiVYUKgI/wQoWGfp4MQ2Ew85IT0IxyNeMyziEyfz7ADxTTrszermoZuTfJz\n6jWs0s0UXbfEMI8oV11LD1L9/+pl4r8mXnLsZDvF/PmgK9hJxSZi1dMICJTR\n4Iq5tM5vaB9v7Z/81+N5nfpFBWjeWbn60DLMyEFH0oG+d5lCt67T7tyWH3M/\nazQZWfmB4QmRYEafYHBz4BtU8KiL44HBA6BIxMhAQ6XatAF00+luVyUQZdCK\nRJd2xNFH7ZmauBNb79iibKiiMixqeg+6pamyC1aHQt4TbJQ/hYVOEDO1K2Rz\n3o7zDCdxRxDvFANS9wDTmjyP6dMO+OiH3y/rox0NQkVeGmaH1VhFJcctRff/\nk0ttf3/KD1kMJEEdn6KZpub8050s7TDkSZBKl6Rjvfz7DFCzFEaKfDfDciIq\n2Sk6M6u6Q3kwctYkoBZikRUXO/pCaFB1BWnNyiSC1bcHt1nNssb5sSJwT6dg\nxrBZ\r\n=/D7+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0f55566cf48bdc5f817f0b888c6b485e42eff870","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","sorcery":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","travis-fold":"latest","@types/mocha":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180621_1529561556068_0.2564190758001281","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180622":{"name":"typescript","version":"3.0.0-dev.20180622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180622","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"16cb2d9cd90cda892810439f75b0b92762b8e745","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180622.tgz","fileCount":79,"integrity":"sha512-S1eswgx+659zyhcBeQbe6S2yPmf73/Fp0xV72AsK7pGH9q/VRXPpVqATL3tQRWws7xxUrL4K2UrmpSvVwVePRw==","signatures":[{"sig":"MEQCH2vrcbkjSQnCoh6MtySYudzZA3TXwmLCGaFMLjrBwkoCIQDLD3OupVT7OZNWC3SNrpDUNmiKbJtptEwIPMr10JG2Lw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40460840,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbLJPOCRA9TVsSAnZWagAAkIwP/0ppSO3yvbZOxZiHZB4n\nRXAfu2m4HKjfvupmMa37cCBCd3D/agF6f2bpU1llGU1Y1BvAjOpSEl16YJ9Z\nP9EZMfAS0io02Rw4Vzf7QtpL57PW5xIbucgJYSfD1TDHYvELCFfxyys7vQ/1\n66oFbsu4HAGwBvF8m4hIXGe0fHmDCUmfZd7PWhhm50EBUMvRsWuLyqk1pcSR\nQEH4grivha70HPhYJjzqeKESqlXLFwcBGamyk+JW52I2MHYQS08fzcT9CGZA\n41AKMKM2IXjTQZQBtGYUP02KR6K76zNjIKgrV7EzWUZHG2tUcLUO45mrRBkt\nKMmN7ZLgQY32E7oOFaBR0x6ZuG5w3BvFPTu7RgKhxnMt1ck+kHV9MVyTLiag\nvhb7kdQXCQqhiOTWoy/2JL+Lo1cOyPgSe0lDFJMQICFFwIDImjWVBK/0zcOg\nkoBJIwIz7YBViEV5lBh8gB/YQCb5fdps9xxCnuLVErxfZa7I0NUBXH3WKSW+\nr/avlG8eBpeuQh8X18obdBTtSPYgmM6VqWE5aQ0P2gVjEaFkQ4VU0OZAMlXa\nREOrgEh0T81BufQvRJb/kQ4RdI2rmXD+XFCdxWl5rFqBhTYq/2+QRZe7Iz2O\n2knAIzDrFRiizqBIYanE4ZuH7FnEsxYhktWEW6luWCk0R4F3guu33AUqURu8\ns2sq\r\n=MkcV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cfe65d183ddfccce0748c5aed7088c2b0600840c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","sorcery":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180622_1529648078011_0.6021180143867768","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180623":{"name":"typescript","version":"3.0.0-dev.20180623","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180623","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2121f0c77a8737bdd9f028eb84ac328c35274fbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180623.tgz","fileCount":79,"integrity":"sha512-By1zWKpF8QgS78C+R1M4Lr070thxU6baA19UNPtuNILfkIhv3AVkCYMSxChJWmbvXEhsHOV7LVOHa1dlerf05A==","signatures":[{"sig":"MEQCIExJEKUyie0l7diPKiSt6Ciwh1Zw1kXAcsol9O/q+/dFAiA37eckBActc55OZUS3rveqGROHUAISMAxQiUT7S9kEtg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40466991,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbLeTDCRA9TVsSAnZWagAAMNoQAIpgAr3BTBJ4hB5f9d6a\nvaL82/QkRYrkFeNDEWWnwUAyZuk8S0uv7Flr+nnMJ39ixWRE537ZZLxqoAdP\naGSymNh4Up9yjR7X3tWDdDv1GW7VbFmQFhlcyRw58iuAGwfOcMRv2XH62eyu\nq6ez+wn54gQZHScT7D3c3tso+Fv3ylXrmuiZ2AUf0/s+ZgWleTCiApZDQw5S\nRRGkk+iDcQfLFsKa5EOGvJaIuSG7NXRTdsPqssaq8oiiNSUDmzEA0PqNbG3n\nFI4rhWLds/TAlxZfjjsJ5WgTjuNBjTrob081R4WDVPbBw7SV+J+c610H5Irh\nQSAwloK63m3e0D67L0uil6YT5RVJaFoUD129P5O4q66qJ3RKfJN6YtV996NF\nLbmyQBbgnHbqFXPS/3RrNhHVSCvESa/bOzsDnVQLh2nPv8YvxswTGYiRu2JI\ng0nBXKzWlXRX5WKPMmMUKa/okJxRXk6nR2RpIxskLLd5aO2szoeMQ2NENlWv\n5Qo0gl0iUF8BhhM6xHT35WRCD+6QoLikFABYkfq6mgt6qt+vJ7belytJXx55\n7/8fn3iEGvLW/MxT9C/3JFD2ChiJNetwbRcY/WvwzPhOWlRj1ewDO2W+aWbv\nAfZYzThj/d5M6fcMov/PkbOXdJQe4KJ+FA93jFG2SRRZN1xpONLXsdHbzSX6\nzyh8\r\n=SgNL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"22d33d229259cab9f589fcfff19060ba1cdac936","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","sorcery":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180623_1529734339006_0.9698477502109792","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180626":{"name":"typescript","version":"3.0.0-dev.20180626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180626","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fb6be91cfc8e8757d551e83af208d0083be61499","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180626.tgz","fileCount":79,"integrity":"sha512-OQH9osIC4CdsVzVvsb2RenRTVPRKwSIMIpRy2J42XNOEUP+vhX56BX1Z47K3l//LEGY0xG7zF7qVKCDlUhhrlg==","signatures":[{"sig":"MEYCIQDULIYbnnFevSd7fkDRag4LV09Wk1GemkVMA4iprElDbgIhAOGYp3jMAaox95ggvKSUTBZDeRXT0CxpEnI1R4PgKRDR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40633051,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMdmZCRA9TVsSAnZWagAAj7oP/As4KZW7AcBwgNj8uiXD\nEVtk9tc1oSnnw1F+jNbDWfp81NtmIWlhpXIjfhAgtXW4rjIFEI2HLyXzmkhX\n1Xx5D+H8JjnckkHeepmGWUhA9NP4wNPJdUCcNZ5YT+8zrQgvd88dQbPTgxbG\n9GHZOtrfmrU/xTn/OS+fcYmKSeE7AE9MK3UTy1PDMiDBQTc7nIdCxHHFdBSH\nlIUqchAwl3bjvAMMvWVInzUqZchWigdkgbPRYUMcLddtoPhFuh8khPIFX/vw\nurQ4gnhgKSPTb0qyyL+Qsjl4RSJ2NabZLMiHgXkrEX+kVzVpvTC3iA4tf4Yr\nC2tsrQLMmn/EboO4UO4vDYjmz0hvVw6K0blLlMbgRNAXAACMGsCPQHu+HMQ5\np+CkOMadCyRe03JtXy1DYKtJUI1A7eemv1Izwavs9otVgC8UcrCYgb9e9pJS\n0uNqLFXK6y+SPmgCDxTYQb3cDx96eKxfCehZAkRHBiKOZE//eGjX4AbjqCvD\nE21nYGqMTPatfn0ezSbv76IVn0osxmD6FzJF95B50Dnp3l/cdf3QzCvKv8jp\nhpaxWi7OLEUNMbbqacclbY2L0jkNLYE99INrSSZeGcECS5zcfVIIbO5fmgk3\nJYxvea0upRNfkZ7KhAIhh3NDB3e96m+3KujscNzv6S1BXoBVQlvVkyOB0iQT\nRwwg\r\n=nPQ6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"70975cd08f48497f3ae6538ff69bf50cac23706b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180626_1529993624841_0.20680919477452075","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180628":{"name":"typescript","version":"3.0.0-dev.20180628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180628","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9f70006d4e04daa5bb7a8b9db96e3728683330a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180628.tgz","fileCount":76,"integrity":"sha512-BVzzZyFSo21+/qnBdFrqvknaxQoOVir6IPVSJ4r+23sgcw7ePSEki7ReKNn99C/iknqpxSbXnezAk3I2BYEaZw==","signatures":[{"sig":"MEQCICB8EhWI2a++RNgY0wFCfUEmY4093P1iAHrOGVrR+YyvAiAzfRrH+oVr2azf9Bj1MpTPgwFQrM8QsC6umMsROXZw2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40714852,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbNClgCRA9TVsSAnZWagAAhCoP/0qnPYqO3pUFxmqBa9tG\ns0C9scqkDwzyMyP2ElkYsmgSjATefz3YXxc6emWbrcLU8Ag+VR+yDB74iaXk\nZ80RDoCySWnnfbI0Qh2cPjBzyncxXYkomOf8+t96WtzeeMW10spRVS6H/jJd\ndFsr+mzptxhEdfmb0AdXMcWwA/kz07d1OPvCqy+9eguRzN+4acnYhzu5jRPo\nBAf9izqq1isbj8aSxI5ZBxpWb19qYHdJRuBR3R2q74csPAMUj1xJQWSEs8Jw\n4CxMnCnpCTfvG/It1B6PmQeuxCzrtohJEmbPA7nEDKFAgbcDLJG1gTlSQc4l\n6X6gSDoHCChOxpRHkQcynPgIN8piXaN2zwJef1p/hHN4JKHNHbmhtDSrheTP\nReC4Sl38GjOTw519rvF6yBo4oj18qBZpDOAOHeo5DhTXanrYEHQdT/ejWQbb\nqgPWCNJYA1MOCAHQzKPe4sI6lFmzVpFjAL0F1+L2FI6nOYMpXuTF8Am0+zeS\n08wEFD3JjPCv5SIz8OvXjqogozyIcvYXuPBkIKlKnwZtq1Y8i0rb+SLLGXJX\n+978xTZ2Jlxsj5nE427KPQaGZ8BpP3g9VaFOqFe5zxP703vEKLqomO5RTUxU\nBkp2cuW148E4rljkGtPMSi0/aYmgaXZ/IVxWTrZunu9HBxkm53TqBrc2UOZJ\nAjfz\r\n=a9P1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"16f045b7f502d0b4d7ef82d001ebe1c092feed21","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"9.4.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180628_1530145119821_0.3673472166349685","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180629":{"name":"typescript","version":"3.0.0-dev.20180629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180629","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"91e7bcfa89aa1ba8a10417fcda618a50c921f154","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180629.tgz","fileCount":79,"integrity":"sha512-3VwPgl4zfs4cIFxOOWGFWo2CVItayz3hhET2P8feKvp/sYpoSmkkziOpLqkUaBjWhB73WbXDa0DN/VtLa6pQ+A==","signatures":[{"sig":"MEYCIQDiOlnj6GpI972+JDW6jcFju1M4wrCEHvw+lVkRtsZhRwIhAK8Azw7GS3xXHWlddQhaS/7HZmwS3jCutYUTofo7LlqX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40655808,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbNc25CRA9TVsSAnZWagAAIj4P/RKJAQM+kC8xuYpf3uWl\njw9oTkECERf8NCJpNyFn8GN9eEkeV0CW/xQC1gbjnsC89htGLRkyw4cxrgrV\nHzLUD6iZfetgXS4PZaNNh+Z6wDZ/DTFyVjtJCjpTjo4msLLpONbgD7tbZDCO\nTxmf60eharV3K0CjxJqksVL3DMQOMEDE8yeD4LgdrIWOl5ku7sCjNwk63VHb\ns6I8eBsJR4Bz1WpMGsc8zqELWouc4fJ1oqDp0ySAAmNtI/kU3PH6lK89gEl2\n60N8ylbJlI5bNeQTrnToevRxQO560FxNTFOuTPBHFagLCS8JAtdBLLc5AbK0\n5FPIuQf5iBGQqo92WcVHtUzAZsLJ89FA+lbmatzQkXxjafKw2WaLmZRQkERT\nUvGVwdCQpMRYUvN2toRisr6TVcnw5Rt84k0a5A+P+esowpwMrAyZkABU1eam\nbTfSIr6mI6s2svrHT4D1o2jj0XfETGrQ5xEBOUUN1Gh7m6eDRimrx/gh3b86\npETLCse7WRs0aXVaEAgFDo8lFxKRp+nU4a8uIq+8g6SACysEDumjFoB3NhFf\nKPCgbUcFvL0Y2geT6jHAlheJTUDqR3kg6y9gPHXHxgMR+y+d/CSe6vYVoOmI\njFNJRUlVVwnNz53bojUOb/BvioY3TWyCYWhm0+p8b3H6NXOoZFnOCwzJq4A9\nFk4O\r\n=wJCb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f23c180a3888548a9dd75c8a4d8cb2d0945b0ea0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180629_1530252729152_0.4233332604222677","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180630":{"name":"typescript","version":"3.0.0-dev.20180630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180630","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"467d6c31b3e2b1d9a63401b56283700a4771097d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180630.tgz","fileCount":80,"integrity":"sha512-Cuc8Pf6c8a1YMbwzv+0UuUPapAxgKeHy2yyFvPQlBnRITAXI88/V+5qkPuNLzKGTJTbmGtu8VP+iEKq3tSbxOw==","signatures":[{"sig":"MEUCIQDowXpgp5odb9vGWFnnKJrJyd2I+Us9lcDZo9OS8jtQSAIgIsL3ZJpeh0DX3QglBSQPPRjyJrxiKL3txX/7iypp8iI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55164351,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbNx+oCRA9TVsSAnZWagAABmQP/jgYaWSaxsZBnDJxhPxA\ndslixX39FJNG1aYULASDfGeVtpNQqVxBcZ0aiEv63iloou76a/BGb94AedVT\nJy+lHR5wX99yzuCeLIOcdVXMTEIU5YSj05i0n0ZOlqeg2SlZ+7lz05Y2CXH0\nRmGN5eeoyil4Sug1rMC/zjpWLZkasg4wmB/VtxFTKHVc5MHKOAurEONJQjvV\n15eRRaMHJuv4+XJh/vHSZIs8Y44iLpKkG27dAicSPiBSA2xmmGiMHpayYBEc\nPuFsuKvBgWHJTQ+ymzSqZ5PHYKo39XkXd0Z8Su/GIynbqGRbUmNalXbvsSe0\ngHKlW5w+GxcW/b6HdM/RzDLrQ/GmnLj6Pg8GEni6YegZiZ1Yo6hLVvXR94vn\nyumMzWBIFG1IzRHY7hFbO0qguIewKhZ4fqCBsJG9NA9OboheLMcJXXfOJyC7\n+onBKl5+c63PxVls6bVoWftSScJSIjILDaTnELU3UT+L1k6MHBWMOggNwvjN\nQJ3mJP/21v2m5C7uYM2k4W6IBH+YSvxa8ssmIWN7kKlKDy9lplO/u4bj2KAP\nU9QKVKgZ+odWovpWRhGCUzQv3VERp7O87gsPr8hDViWQBWPqSSxxdbWtR/fk\ngcVjbxEiiyETg453X1Xb8scJgLoX5aUfohGAtIm7YrENf710NRCbWroNMCEl\naAUQ\r\n=ICo5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a1746d4cfe357ce8f38619e46578f817dfc03f9c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180630_1530339239752_0.05967138216912349","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180703":{"name":"typescript","version":"3.0.0-dev.20180703","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180703","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9e7c2bd60ef764721223abf8237026b921733a35","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180703.tgz","fileCount":80,"integrity":"sha512-JkaEKt6pwu90wwhpULzt8z/ojXakGAVwbWSVZjrcPmLaQ6ytDZrWoBofvQpFPDQSwptE6LRf+lJNfT9JZ0rFJg==","signatures":[{"sig":"MEUCIQDfXTMEHPww5hshKcIJN8JLr9Wj60m9JhpuPyDo4eWAQwIgBmYFvRk4H02w6+Be7NTwoBJP2D5P7lNXOWXiVhBoC4s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55241475,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbOxQfCRA9TVsSAnZWagAADe4P/Ax5UfYXWzq1pd6BD1jx\nwaQ+1lohXs06G7tOMkBpv4d5xA0PETB63Am67M/yHioeWFPaL+JWfxCmMBJA\n3FiFQv/Sikt6oVXRNoH5nKG3fLqUJlKqWADVBLy3e7ESUaQY4T1OTzmoHJww\nNfSGGToHVtcy/aUCtE7uYhOzr/Kn4EPEpWAtKWlg3wWY5E09i/xKczN1VvO1\nJWZRX5T5Z7HSznnKjUjKIhTn3pAP3yYztLLSBlizyuAUOPkR4H/07wVhD4dz\n702VIHF936OIytdT94BezF8yKM1KJtfVqtLy8Me9Pa376flzvR8lBVR3Z/yD\npUE2kXG8rA3Xe24K2/JojPBHoe9u8hCsZFK4+f+cdR0Nmuii3bQ8qWXzEreb\nPD+94PSL1349U+1cyt1lCOAnDIGjxIJOVbMlG9uctmyNGFzxJpN6Ze6UE0Z7\npDYuFXxOonaKPr9r8s+k/VT4tPHfZcwvCK1qyk1LbEk7RGAwt7CtdFFu8OFx\n/k6tdE0xuwSQPpf+pfXET26o4C/Uam7pKPGQ466rERni1BVPqmeOVnKlm3wo\nHum9jz2tBX9Iivocqrr7B1/6QZedGbqovpA96VNkVdS0BoGCyOcIyl6rX1Kw\n7jIh8bdzS6MWHhxaKJ0EHGvCT44s/KxB/d+ZBF4qq6bx25I5Tepp3LaIo4bI\nYIQ8\r\n=MSn4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"efc1b7df082e8c2b074c84468fc5b8a30d82d738","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180703_1530598430652_0.4852877721415103","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180704":{"name":"typescript","version":"3.0.0-dev.20180704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180704","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"929405d2ff0318550bb346cc818cc0d2eb215577","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180704.tgz","fileCount":80,"integrity":"sha512-5/P4rA2BNnuFn0o9o+WBsvrbZ+3BXV9HNUjETW4BlkxuYn1azIgqQ7NJwyOpns1DLu8xkAfJarc9rT4ECgWb2w==","signatures":[{"sig":"MEYCIQC0ZvumHkPNsouH//h+IPQWVkQcKbhyZP5mU6obt04OlwIhAMfGOn41RQFae4EdwIgmB3KjNyGKYGkIfYbFteBuw610","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55351667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPGXVCRA9TVsSAnZWagAAnNoQAKDZzTqdl7OhGs98a5fY\n9Ncr+xbxPJY3AIPyYn1F/pyUVubornQURdTE3DD2JqO2uEfWcfWd9DV7I25h\n9jZ79jCDnq6l3yWR7Tm150Y8uXkZl5tqmMplhMG1UOjaL7tN+Q6DaWTohoPW\nITgZC5fepEVDtumrmeAwt1dElR57DQRy1ppEFoeirC3do6Apmn15QqyS1i8y\n7TKsKlgL1aMfWsRaqzqc65peIVJO2ZX4SiKTe1sbC789fwy1Sp9XSFhWV52j\nq89ZIwmHW1hYrxJP09b27wthDYkZRY3nVxwMfzL0o83keJiaELqw59bBKsu0\nhii+h75WqYkPAemvySTU8yZQPbJPgsD+9nigUz/EXLVxwQz9PLwpQKZIbfqh\nkll0ghsLCyXmDgPSZfBwsHPQKQ6NyR91vKQgELb4yrEcw3eEOIM4a/qvLVdD\n+yVL8IGfBGuktSY8DBZV9p72U//XEaRGm7+oEqVQ3Q/zSyyNaG8BvHSWqs7g\ndGgvmygZ6RtzEfgwAMv4ppMqbbFzxPqao6w45bKS5bgCPHOXPBvR2Z5H5dFL\nL8jsqWEEpUKvXjwKFFL6OfDd0tQb59zT0VnAYnmOqkeX9JR3zWKXAIFhbPxK\n4BhYyYRB0DvkdsDyvfh8gPa8ctgJHPGNUdyLBj1JekLREVZYA+w/IadahZkc\nTlCG\r\n=qTyx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"84f5aa540e650f2e291eeb3600deabec6882f507","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180704_1530684884802_0.37592764856359384","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180705":{"name":"typescript","version":"3.0.0-dev.20180705","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180705","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6b75721aeb4edd5906002d319088e1727d0fe929","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180705.tgz","fileCount":80,"integrity":"sha512-B6wOJcHWth4NL6EuP+Gefzd11BeLGSNh/sjHIPPYsBqtRvgJDzufIFr6QLzO2IDVZ4D7qLwg6YzvHGDHPg5tgQ==","signatures":[{"sig":"MEMCIHraR0dvc6keq9hKwCZLZySz5BqBuXGpT9Od+KcrwAN7Ah9EFa+qhP1psz5i7WinoMBZZlwFrE/Szl3tja1SR+SS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55351667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPbeUCRA9TVsSAnZWagAAa34QAJQkORXOD0eX+oEi5QuA\nUPM3ePUBQ/Kw7v/bCMH457K9joxnOEnyd510a7KPIJCEsVZk9v1VWCKvsWId\n0ldF1GE2Zu7MI7OcJbcqcvcFqF9TlZ9vUv2UTM0BOVPQkjt99gO0Mie9HYdt\ndZU4n2o1PU9YzqvXqokk/0fI6+j638r5TUmNX2l8CF9WtIXIuJML8mxYYWaY\ny2u2mF9Xzu2QswZdNEnPPYJchR6h1h+UgOXNfJok8S5KpSovuRSAC0JMwfB2\njsW3EPloLI6iqOmryWXgQRcqq2gAUvCk9Ou/bQsvS+81UzAgExwLvDOAcsd3\n+eeNJKuXqqVRgNlu3++Mh23iJihLfhcfYQCeo4p29VAVKqbdHaYo2OanBICy\nxN2rCeX8TASP5vQo2R+Cp0YiR8AOeYVr2mjcc373k+QNBc83NEleZfjHWA4x\nviCRl6o+nI8+El2lNHMn4j6zcR61OTVFFQzW7eLOZU1os6Zfwn7rRm0uN+0k\nxZ4L1a1PLzLQINLbJKdkIBSVBwkVObgirOAhwDUHXd4QBIz2O5WFm/FKktXN\nuYeTgsg5gJVAnnfq9ZHq0auFnTzW2X4e37AOeiZJNpo4OH8PEgjpCiqMv9bA\nkYiCBE5AaUVvczuSAn8VHhcHps4jVPOAG6ZGnVZPvWtQeo1r2iT9QGBLVWAg\nr5Md\r\n=1wUP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1579bfdd467832505122bfc94508c5a6ae43bb22","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180705_1530771348464_0.6215778525465914","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180706":{"name":"typescript","version":"3.0.0-dev.20180706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180706","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7db1e22669389a6f16a644b9ffc1c6d65ed5bb80","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180706.tgz","fileCount":80,"integrity":"sha512-FDGcMfvqDr4xoYhyspX/0SshPQCHFYbegQtggwxJLAWHtMjmutN+DrdNqEGwpX5nGKP96Ek34SN7HDRJegqZzw==","signatures":[{"sig":"MEQCIBAXoYz0UIwg8IYL6X0F0koAKaNvpWk5Svnh5XTT7oOPAiA+e7w0z2kILHWWm+7tvFYk15mCX/mjWDUvywn46bQPyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55386338,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPwhMCRA9TVsSAnZWagAAjlEP/RIxlXxuuh0K6J4WIkHH\nUnmYUmIooYGDOo4Cq0+X7mJkHf6Rfw7vmeZgZ2ZIZZmFBpsfYvr97VmRiTdc\nWU8mspgAF29uCIzVyHxlKHjogLyTY6ReLVl/01TDlkocrwD5Fd8cf14blNYz\nFF5GKofn0/DeW+jPNQs4damVHEWi5ZecHL8tqWt3qI2Ko+j/aYRD4nZaOned\nC6MqErbG5Vnx7GwGMUiU4sOS7CglHmG1fY0QvaK43XcKlLt6pa1UgvZgaUDA\nao79S/zNRPz/B7NDOrcE/BGOioiSFu+ohRS9lcqmgExhjwobXPns0VYNLMes\n/sUR56UdXG94Nb9upsD4AiKy+kuBlhI+BA7IILdFQOp522hvXElnenoEFC1/\n2tnNL5CCH4IAFhOZw1AhPP02k+4oooWsvKx7JmqfSpUavx0mNeW/n7+hPCke\nsuXtpkYvvxX/8voQUuBTQCzgxFtpdmRgJsUOb4g7pDckAQQKQ6wVVXHqmaIF\nk/2pY2yVf/aVkorXGBlqMWF7jYkQ+B/7IY5XutEUXZYJoX1uO49ZTcSlAHJ0\nb2QbxJlif1dNUWh3+xqab1TWhavq1QUUvbfegoKxZU4Z6SF59ysLiGnVJnKJ\nWscK7JmEwcl8dLXy38xtQPGU3WCVPYts/vBX8j2bnaekxZU1T2YPf6eeKZvd\nOvPx\r\n=1rMD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7a082d45f8546cf737f946823ba2e235e420f8a9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180706_1530857547590_0.7742931745242041","host":"s3://npm-registry-packages"}},"3.0.0-insiders.20180706":{"name":"typescript","version":"3.0.0-insiders.20180706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-insiders.20180706","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"684c6c8ca1eefb11e79b6c072a92046ffd75184e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-insiders.20180706.tgz","fileCount":80,"integrity":"sha512-W71YcK12VB5Bg2dMaJNygG9lOMNZxAk1JFcU0FXfMO+3CxmQxR8Ck8do9+epB2P6sBgbcRU7GAj4RxRIy7R+Qw==","signatures":[{"sig":"MEUCIQCcULh5IaB5RGMUw56fv6aCazAMOWCTNsJ5A8Jf+bM8AAIgQS9HVkgNtWMkiy68hPry6KkURn6dVp61e7zJXeUhq6g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55386358,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbP+KWCRA9TVsSAnZWagAARCcP/1WBPjtB6GdRcbOVqqvl\nDnH22jhSiK4CB1VV1jU9yopOraq6P0bpGGue0NexOq+y5ex4K59pkvBEtQmU\n6DaynmXdSEDzz1HHr1+TtWzOqijLMQN/70LvGSdhWs1yEH5mbmq03RDf9G3d\ncqZunjmVN3LyOzYctuhWEalsqtPIekRQ6KJZMVaHPyqFcP+H7Re+BIj7juGu\ne28z0BrS+MtZtAM5GcDGCU8VGI+3KXpHpD5NE827ZAIeoAdZWJUmHygdOTcE\n4NzpkBggiHyWrjgNzy9emOnbkOv1JORlr89kyimuNHuPk7N2IzFTcP+VrvYw\nayXgYpbtamwchGW/URqMnUgu6MnFs8kN6hldyUlqMCwFiNmxnuGw7bdwV5G1\ndYCrfIREatZzlKNhMBts2wEe2yJcfd0QHZx2M12TsK4ZUs144Z4ft/uupy73\nEzKumuQJNsibryhgud9ZAlHxQbdazyGASFUhD8IstSse6fk37h85JcJEn6QD\nsjQpPDpEimgixrqn7EtlQqXcJU9X+epY2KhcGyZBHD+RqOaPGKus5+SP7qK3\nXGjyIuFrJt9kuHxBO6DILOlVtblzT6Rn1vR3KGjTW4ESX3Pk3SefFtv90CYq\nm8kujYcqPam2D+7TlnNiSIgRxMdO0B9ZCaH61lvdAO2Ht6AD/TBacuvhvEn8\nf28Y\r\n=jVbD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7e1711dfb6759b6773abe2bcf6e956aac5399523","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-insiders.20180706_1530913429824_0.6074312552736998","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180707":{"name":"typescript","version":"3.0.0-dev.20180707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180707","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1520047c865f8e7d12ae755ba67f78e0d5f8aa43","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180707.tgz","fileCount":80,"integrity":"sha512-AP1tZuUy4CW716f/m2F8LK6U25x/FV1+96hTnruCHiuFFIUx8XbFH8h/0azebb7xNvxGollTraW8VQxD29VFCA==","signatures":[{"sig":"MEUCIA9q54IuLQ9XEIgXgff6Dr8/hUtO9/40yyVfhK8AmY4mAiEAjA06SQZk6JBY6f/6bPKog/JG7cdiFeT64fmwxcQxo2M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55429461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbQFm+CRA9TVsSAnZWagAA7pkP/A9I3Ym3fCj2K35hl4Tp\n51Z7zmU/4P+5SyNOlhU4VizyjJDOrCT0s5OGdEdqMsrikWUAB/1wWjT4Z6vP\nRF2Qj70dDCQxWh4rVXhrq54ht43QzG7j8cUMQ8AL5PL8NENAtivH38gCjGU9\n0jELrC42BPYgCOoT8MVfAQYsmO8YDl3QwzICME6qbEKBK61VycG9x7e4XmPr\niBNhgK3E/ujFTFAsEf8peXIHiYLgfp/tAonxEEwiJtWoCs+5qIrIsKfK5nYF\nwfGaCiqUqTsFCKTl+0SEq6I8hBBCngMVWmfagWX93xA8BOJmBrVeDk7/2NLS\nHEisi/mYbG1t619l4Fm1i+FHt7FQlpmxJpoqx9+wupWq3IJ+Zx5lyUfcpm0w\nDg2ME3FE0t7+r15O9DtmDWJEGLHUvkiX6DdRdfFoB8ptvAKSc7Lic6E71ARG\nyd408CBlFaU5b8vDV+E0yL1Xum8g3QabIfi9fMpvYZe1bmSxwSDf6Qu1P2Sh\nY6rtH/PKxBO9cKEYM0lyeZfeISk54neV2tvE5JpZ8d0FEEmFjABgbPyCx7lA\nhUbfIk29eEyyJbE/x55AK2A1/kwYFHQyeVZ6Imscu5FycIt8gyhk5Bk/45gn\nepTAF+l3UE4ToN/TqlzgUehW9OBdNDCg+YN+ya2UEPnzDxEKsaDX3LOh36mX\nFYHv\r\n=vx2j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"10b174abc16228a921b339f0d5a413e3b8e46b30","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180707_1530943933767_0.04708104983104722","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180710":{"name":"typescript","version":"3.0.0-dev.20180710","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180710","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"19a5ad2191ddc1f4d5cb29c2f20d37bb98613848","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180710.tgz","fileCount":80,"integrity":"sha512-fessARCIEs76sEgyq0Cs9fKVdcbX0H+k7dsjm7yiXr7WXBuGyv9z86Bfc4qagvADhL9TYLOdN/OFvRy4816/qg==","signatures":[{"sig":"MEUCIQCB6nRa0bgFrRm6/f2IEpAGntjsFR4osXhxhAu1yQ8nqQIga+BJJCa5P0TSbjVe780Lm5hf7A/NwUocAhCsLFcXLho=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55457988,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbRE5SCRA9TVsSAnZWagAAXzgP/iWLr/XCw6QMITcg68vl\nwuME+ktzgBrAM7hRQsUcAxGaM5X2NvH1JV5moVuXQqNWGDB2AIDc6yc1K3r/\nunDMV21ykbIhcok5F6eqh13SONddaz3U2i/MQ+2qD3u5RXqwdD+iREwtk9Ct\nTE1n9CxwLNcjHCh7Kb2IPerTR1mU/91emVEQpEAlfNR+khd5YSdQZZMwLjyk\ns7j8TIeBaUU/1IDznKtogn374brvqo5RIZ47OWgRQAqnlhxEiCe2vu9VMIR2\nmkQVsHxCuHEJk/CyF4TXLSWo73iICeuzo5fsjoGz6hpe01DcP6FWtM5xCpxy\n+ZNF70pthlKfDnBwVQiPwepc0G5WfyzaNojNb4AKf9KVckt0yFx1cG9oBK2z\nkMb3D3b5a7/zfNGpEsXyZiFLIQwQeC9z8mY4CD1RX9TUHhyIGHWixS/U+SL3\nGS3fl8BmVRx5xnvVqtwgcnuncGgqzk10XDqy/Q0P2EqqZ2FyBq3hkR2PEYKi\nL+Xg48MPjt6lvHdS3CZD3u0p2n1jFWtoeE9xVfWdek3yXu9lAZr8nkmCIFQT\nzvAlPTnNygS/hVQZKdUd1R1dhWp+qsoLJwiDX9BDaWxxNnazLakujtMeuW/t\nrG+CfdTNi4DYx2De1rieDXSj4Wq1x2uGz0ED8u936Q1ZKDPZ2wAMBhePciAn\nlK76\r\n=fJ05\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b3b6c3bdbcf6496931d5a5c272ea80bf33fc86eb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180710_1531203154121_0.4307940253412381","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180711":{"name":"typescript","version":"3.0.0-dev.20180711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180711","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aa3d44fd3e3514779d0dd92f47be297ba1f327df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180711.tgz","fileCount":80,"integrity":"sha512-0yDMWKFPzDGfnGw2aUyyFmaHdMWuQivShEeCNzncZYFV81pMnBmfct/nY9TcSYBo4fsNm9QQKAo7n+4Qsd1tsw==","signatures":[{"sig":"MEQCIDlOhNGKPXif09WxCu7jwpaMMv27/yecm5+bXsTbh0xjAiATbSHsTUQwIM+IqwsguK/Tn45Mxqypgtb5ft1JllDfcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55329984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbRZ/xCRA9TVsSAnZWagAANQwP/imEDiCj8lvzIMaHFt/r\nj8yQoJliYtmfJ7M9OdGxdNn/k5N9HzJ8Tybb9oR6PBcwESh8ERD7xw+zzy9O\n6OEpP0wiuC51Lvyvqt89nBftFsXTpegjUmDbnmECjFD6h6WI9N1rmz0PqHFq\nrOrwLgxHyjq6f5zkSpMZFb+IMJVRTVai1p0el+N9wunZ7GurqLaP02pbsQFV\nftd7hbkruYfAuX+AIg7UyUNGCq9RToHRe2d9pdvGpKaNGwwGMWRMty/LPWkI\noiBCIYJdLI82WvJHi/3CJZHyQj51dHrBeHTc3fgY/LTV9Z9E6dRpx46DvWNS\nKssjDolrgOCrlJP+CyQvQXGL3lvQvz1qWTjCaqgxtEr+4qqV5li3G6IPVXsK\n9OuQnYgy/+p5JVgROi/pZnmcmOuoFiQNQnCd1x5+4l8Cu2eBYGnyWqtBf3Y8\npr/ohWdtzqh6bNENhR6YFAzjFVK2wpNtZXFnecDlep4rteBHwxug3p0lTeko\nDstqHiyvwTAeUbrq4uHta6urwreVQx51W1XA3ByqixzZmVtvSjJlAuMfAhAq\nlR9ocRnKGhsGORTpk6yPV5+/PedizKLJdKfvbFot2UTP7ji5B4J6LQlVx4a9\n0A3XsBmKpAZll6HcYWahji1h00114oOsuiI4V0JmSGoQb8TQIratFMQCMu30\n/05Y\r\n=iG4U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8a559e4630fccc7ff3f7c716e37b1c5cbb9acb17","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180711_1531289584699_0.3756331775588988","host":"s3://npm-registry-packages"}},"3.0.0-dev.20180712":{"name":"typescript","version":"3.0.0-dev.20180712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-dev.20180712","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ffdadf6a5a108c44d5325e83e2afbd088f2a5f84","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-dev.20180712.tgz","fileCount":80,"integrity":"sha512-/GUbjTjrETF82RpLdOE99DyPMEH3DrlaElXCwzB7515FNgvho6sMYUDlvEM/q0U5+gESDHpNuc+cm9JiCW7n0w==","signatures":[{"sig":"MEUCIBIRRZQ86D475fbsdHvJ3WTO3PJltTupHFoaUqRq12xbAiEAksisC1XGvWHm98s3E9z7IncbWKdrruJwhaXypwzk8cI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55372188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbRvGECRA9TVsSAnZWagAAT/0P/3drjMZEFzZ9DUPGxoXb\nPzGsdL9cBuPsgDTsBsmUyiJVaLk0ywm1LtvWzhRAOQ8ObdMPF18tiigiUqyu\nPEHXZPzgzQnQ/MbP98W3uBF1HvyefFd5eD0p2jXPC2mNymtNRez9aspyHoc6\nqHTIEIHxH2mIvfRVnk1NfYUJGROJIzh+fGfLq41lNsIujKz617g0tF3G/C1X\nkeCzyR8VQZCpFQScgqwOb6Ywtc82bvhB4NYe/lBRyYLdQ6/vragC6OhMH7Mg\nVEFyz9idqkmaxnt4z9hEG38G6TTa8YeQQ21L7slh7WBUqz3k8WQbZ4OtI2SM\nB0VNCAFjI6Zl2EtPKy9vaIWdVStDTHSOmC2gJTXBoYUCGhBU4ysVAR3+7nSn\nrXPGa5AHKioEpf1GBcFT1Px2OEcMbusTiTYpVdKaIMvQw3RJgJw50AvKtmRg\nxaE4bvVc3aVaer6kS7eUGecCdFORVf+qEMot9kR2SbdlQj5JkS9duJmzX+Wl\n25T1F9lhMTdgfPctvPxZBleR50jX6vb27dQAMw1P2CA/a6k+WlmQiceIHVbs\nDWiM7JTdDQbFAJnduziZ0FUYIQSBdMYeiiBHEjrBzQDqRGm6QKt1JUvHhSAk\nKzko6CjDEgXe2vVE7GICjGOjnX7azR8/oT3PdNLty6wQLBTbE24kJSRn8UFK\nmFkQ\r\n=TK6v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"66e9aaac18de0a608f1f375cf30e449cfd4a503b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-dev.20180712_1531376004258_0.6700264086169205","host":"s3://npm-registry-packages"}},"3.0.0-rc":{"name":"typescript","version":"3.0.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"13553808426d393d3f92c054f4fa6f24589549c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.0-rc.tgz","fileCount":76,"integrity":"sha512-//6ivFupDRi+rtsivXnYNfXK7URxdvO18hhxgNpbiIVBE611+1NCiiEfgjjx53TU7fjxlhWPuv3RRj5hJF62/w==","signatures":[{"sig":"MEYCIQCzvTXJ6tYtU3HyK/XppGYdFB3G5DM1ke6TSSQlRjCyEAIhAKwHbto2RiXHXcDqaF2vvcnjQgurYRPfHcitW0TCfD+6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40883558,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbR4hLCRA9TVsSAnZWagAA4jUP/iuZdP0IGcTbzajwvW68\nfkTDDUuNFqxoECd7CT3l5Asw1DVomw/3wguPoG5bWRifBr4eu/6xnRGqK/PQ\nkIPgk4rI/djntt8zHMMmZIuunkMJOV5nm1KXljvy7cjVufkrsh7b0jdu84/J\nryrmuLK1lr0bTusyGr+X3KnTSQ4ck1YaPR9CfG/G95A1OR9lkWl7H1MEFnSW\nW74VoKLyfUg6jlRzxSh1LvpifjTtMqFsp3VHQ394Ap1YKuk7IE37Otg1Cn/j\ntSmYVWW1oZKb2bur9jkPuZXwKjUOV/TjclUQ6fFYjKkjsQLXmbvSJ2vh04tU\ncRTcNmBYaG9h6m2ZIpbu/nlLxTEDJxy6KVBtmXLp6bjRHiUW0hJz+lOPrNyn\nWkm9nkNJn+5sOO4zX3Tk3Blud9ItK0HImJYHhtSKHVQ5aQfg37GUpOuT9Lbk\nY+M0k4YezdkYhvZ1wvg1AlZyoz6KarGRnSo9mDQ7c50w0/mfCq3sxiTV/BcN\nWVTjJ4ftHqyMga86ZOvyHrlFkhecvE/3a14gY0Ku7j4NMnM4qP7y1fqVRysq\n+Bo+PsSP0V+CnPnAyqOCsOFtEhhUY3MXK9YKuITET8wjhZxLMoX+S8otOObD\nkPXNNv5Kc3SghNYdp7tToTK5hHYU0j+Gf1ds9KgHSAULfCmx9s5rmK8UGDFE\nhxZV\r\n=nN+u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b71355d5b5c85de7431869a9b327cce86a62947e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.0-rc_1531414603121_0.7167222902484227","host":"s3://npm-registry-packages"}},"3.0.1-insiders.20180713":{"name":"typescript","version":"3.0.1-insiders.20180713","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.1-insiders.20180713","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"02775b5197ab02b79ed5b84e7483c18ed164e55e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.1-insiders.20180713.tgz","fileCount":76,"integrity":"sha512-EKCHxip2fvCSOUkwo/JqK48kM7LZZz8Ip77gdvAPAChqydGL7Oo0w+/NiReycf6T5EzvI4m6mAtiWrYSgVQyZg==","signatures":[{"sig":"MEUCIQDg+AnTKxjhXKT4GIG80P/eMRE/MVBI40Ii+DcSuzBfWAIgd/oo8O9UwgB2xlvnWhaqaUbyb7LbGajPgBYTb9qleP4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40976915,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSNjdCRA9TVsSAnZWagAA2HkQAIb6K7ONYMwHd+6JDenq\n6luVxxiyRaFGg0BU73i1IKB8H0mJ4arhG35Ppie9nXZasJB329HiCOXCMrA+\nggfiOsijJ4jWp0+Uf+rOUnx1W3oa1zLsIbpuxZATYETbea5tx9wjhFhLNXkc\npdGsiitIcPxiFWiKxWX6dOxOMVw2xzuaJflQYzf//qe9fD/1GaWYNGMCKm/S\nz2WNZvgSbcoG/XfDS4ofUpmF47ZPTXyRAgUyrrKR77ZF2BCmDWh6fwXGvm8l\nAz9bZgQ+rUjlbC6ZxsggZ8lbouqJuBC+wOJFzYIMO/4K3u8PaGsGVH+392wD\nkJ87iL5+lRn/AsOGHfa2DwY7ywNrPIseAXH6UtfRO+Z9CGIIkYuVr8rmFjLZ\nIsUwiP/x3IR4WUtgmwB3rR/uHgMPtg6ecpQ28cRmInK79KV+watKEk0S06pG\ntG8//0rTxdnPLYBi4QicXGEMykXrAggojDV+0Flb14CGzz7iy/1qtxfk0Xl8\nJtmQOB2wVMQ9/oj7WJ8TT55RbyNjDksNsNjWmoCy729A4xpIN3WCR7jyjHSy\nGrgJ6/Y+vDPhaQnYJPjhRpu83Y7EHZGPqLN5FV2zwv/Hi0Gp7h3ofx0uSbJt\neoezPvJx1cQdKY2Bi4j17cr5bazgH7ui3WQZ+00YTVIBk0RqyARjxv1OwmnZ\nwhcB\r\n=n5l2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"07174788a9f162421220e8efd7b6179f4978d5da","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.1-insiders.20180713_1531500764976_0.2020600021139598","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180717":{"name":"typescript","version":"3.1.0-dev.20180717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180717","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a623e4df35ee102641020b1fe9dd5258547be74a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180717.tgz","fileCount":82,"integrity":"sha512-ALnZUGSBVvIsKmiEl0fx1DeZruoXNTa1tkyEKsc+FYJFKQdxf9IMGuZHtSvDX5fWpxx/MoWg3rGItjyNxDqJ8w==","signatures":[{"sig":"MEUCIQDvkf7oprfr4SjFEOgLuOQPSa9HP8RLnOYGFdB509ORkQIgCjag6HL7FV7MmYAgDb0LX0J9xvdTjXUjbSNoX09EDmk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42011597,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTgmiCRA9TVsSAnZWagAA8zcQAJ1m03PxzqeInFbES4eg\n3B3rTH3nhCWYkNSfvkaU+98p+5dDPu+eMXtIbU/Ck5ZS/706BJzDqMVV05Fo\nRAM4sSrxHtELOR+PO4HcVyHxlKsaQwALzme8OQZ6Tp9QwY5m4s2wasxo34F7\nnfWEzCHKA/WAqQNBcVN0NmiZLjK3ekuOZof52d6DxHcznY9iPBEle9oyrHIb\nUQRyx6ub/leG4nyRWrE9SAzKdjIxJtAX3sphnbohi/bMxubVJ17kiMY6nm4m\ndfmhnlL2WsqkrzhedWD44qBkTqmG2IIn/2nsX46+I9iywCyNJBKAjl0bz/40\nBtzkpUFrHERlf+76B/eHZBWTYL1Z9zFoEcGg3tY/9ZAxtmX2fnmRPVI1wsw0\ndsZWE+Rvk2JyfOA9U3vEewr3jaI8T6WBPdPbL96ZeueAhRT5JxbBNn6QvYT2\ntL0gfyD+ez/pJc23Kt6GNpBkGL/Dr9SJUDjIIuIbIE405l0NEDWOE+i1N98u\nTH4rKslAxd0pXRQi7zzgSKJohTQdR4B0P2A/ay3cfx6uJcfYElXtwlr9eQFK\nrVLYqkjYdQPT0Qpo3dCybUnIzRWRoNbf9e1e2JVElSWeu1UJ5GgAN2U9OP7w\nlRzcLFNNt9NotdVezlpxZvMit/jPP5bJxY233N5aCGktEXNIVUcblotWagkH\nqVbG\r\n=6l3d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"204ce175ddeff414455b34e9718532edfba8358b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.5.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180717_1531840930432_0.07752961699297378","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180721":{"name":"typescript","version":"3.1.0-dev.20180721","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180721","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"690467dccdf00c2910611ce3eb8efcffd5f43dbd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180721.tgz","fileCount":80,"integrity":"sha512-q0nLSs1tOBM4gfTWyiwot73kDs502xZ5HYwYoZLmkjRTXIA+pWr3Z2csfOp8s3lG90kvSt/gxxhriEJgIscnHQ==","signatures":[{"sig":"MEUCIQDP4FhxvFWt2vJy5O11WYSt80KQ+8pOQesKaaVXnQnIjgIgGtdTubiXRm9W2zrUc6ezthU6FJ0nRtmiWwMqgNpdqwI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55465230,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbUs8JCRA9TVsSAnZWagAAhJ0P/jYhhViiQzEfCR2KJXxm\n5kBKWjweDY9biOVAgOYNryrGEpDTHFrn5Za1jr9VhHlbIXqyyBe+VBdCEC6D\ns8XkdJpQsgL5B3ETnktSuc4DqIS5bknbUaDyHXRVib63/dULSec+k/aGww73\n9m7DhloyCLtu//J75j17Z834dM/pMlkkUaiihsVT1T/1yBEpXVIWWn2dziyu\nrl2F4G9OHdykh4Qk9wou/AOfhZFPfEH6Yo0v5BflJWQk52y1Q2AfXgNb+hHs\nb9+/x+AovxGBJUEbQaNt7imE93VtqHZB+PMgTjbBPI9Ckvi+Yt274LqYIrOK\nqectZbZo+r+q3U6NNRLCZlx8KtSZQQxxMBn8A8DSGT+CPHEV2aiXC9dKaKaW\ntP4X4DWcoTXJcehkXwkFrYCjZnjXztBTVPlKjCd4zD8zyQmzA+0bGAPdlQCC\nDtI9uhF+YgS0X8cXsM4joea7s+K602hpleF7GleExVsiVTSsE1azSS08zZfH\nt+pFSkr88qOY7mbnyrErYi62zmf8w0tmGzZGCEWTJz5VGmDEsw805HeeV/Wu\nb20JG3uM17r73v5QbiKRlj+RsBio9o/08BUhEtiATipzrmL523P8z6EbEbr9\nvP3IM622C5To1Os5WVfPqrfDIVlBZaxggp/inMum5jMnToTZNJXbNjniKbf4\nnl6b\r\n=5sUK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"93722c89426425972d08aa2220311ed411a4d9eb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180721_1532153609047_0.796856442954498","host":"s3://npm-registry-packages"}},"3.0.1-insiders.20180723":{"name":"typescript","version":"3.0.1-insiders.20180723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.1-insiders.20180723","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"266fbafb349a6429777ab3525cda3bb0a2adc661","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.1-insiders.20180723.tgz","fileCount":80,"integrity":"sha512-eYsBBCHtpfokYFJm5pViWU/j/o0w6gnG6b9Sk+s8KIBVIInlXydPmjNfFwQtQ0xeGwGkRMWbQHBAgrJDO4qyKw==","signatures":[{"sig":"MEYCIQD7xf3e+rjH1wLyKTN3QKpVG4A77GlTzSzO0IqVBwKsWQIhAJeiKhSNUf1cbU0hy9LxVxRzXwWs3uWWStgajpnhY8+a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55419449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVmtWCRA9TVsSAnZWagAAwq4QAKARz5zGyFtJFstQgT4i\nb1mqeDem7dLtx4/TtyBH1HTDkUZSPGS1y6K2IwKN4UA+gNSNU/xz7tsbSI6G\nO39IS7mpLiZf9kWW/QSL4//TBvZxiVvuEB7cUurFWVNQv3+EUNrqP/Lx+7z2\nLoc/8NbfixPR73MphMbiKVTXNT2pYmwtSzS6sgnHz/y8Ax4wONT/pc7dDGRr\n1AZ2Nf+DPyd8ECgxKfqNiSamRD1yP4Yal744zpIDIHzLBwOaklnRw7el5gb4\nSmhFDAaR9CUAuRpwUQSzTWFEGsm/ZKsqcZvrAGgDvlRj/EXVo7UqXDFb6Lj+\nkrJXHq/OxOythgtNaNJiHlPt4PqdpkDPNIMb/q1NhRIINR/tBQ0pR//5TG2L\nW9XTt7cKuqv0n7oykmFVJWQdPK5grj7017tPkT+TDBmmBzdrz/5GhT+mGtYl\numqaJO7rEY4OzTddoueMf/A1yU2xc0Pc3oS+OFmNPcJzRXw3WnhMrwQ0N/a2\nZ+bPXAEG1xL6c28GDO0spZBzPEy0sKfMfAEP39cWGpt5ZMC2wFw72u6VbpsK\nYQPYzafuOrc9A6DDMz2o0Tg2HrU2alNOnu+D91XffnuHPlA+Xr5JkL4mnr4a\nQ/Efbj21Mn8KZWRfmmXVFIVByMEEJw8KSvYQzvlVkudMhZXoeM6qoVcPGBO2\nKYw3\r\n=k4Vi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8817d9e5bc4c0fee3d4215e8c7887083b429e5d1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.1-insiders.20180723_1532390230143_0.7839168487521915","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180724":{"name":"typescript","version":"3.1.0-dev.20180724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180724","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fd55116ea638b85b93058954d011cfe22a8bfbe3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180724.tgz","fileCount":80,"integrity":"sha512-yqRakCWNbgmkw5MGUWgmuPD5CNlCNVE4BkT4bjQsUEdXYmwcYSR27NhVMXBqJVIS7UPSzABZ/Yda+umMQ3B8MA==","signatures":[{"sig":"MEQCIEpT5dhPLPZvXLKNLfEEI60v5JEnVMTy5JkuT7ir+3smAiA7q9CjR9IsnojeEtFimcM6tK/h824drZPBhsPPUENR8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":55467119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbVsN8CRA9TVsSAnZWagAA7hIP/2G/3DUsNkBKeNs8E/vb\nLwkE7HtX0DXXQI0r5ytrtc31EJESb5TDnUIiUjPG/qxepdmhXfm6xrUFGVU3\ngaCTbfIfbRUcoo7joaGBBMU6aOrzKN6d/mZ5lthcPHo0Q4Nm05wciQxRANSu\ndTAfj9spvythmk9Ccz2yTSlWyv19N2TptuBRuUle8GTzpXWUuGioF4V+06vJ\nZpW1XyVJMh9eYNdiXp3KmnCBdSa32symwVdAzxAyn/OAzOc7LZa7ezx+G/Dx\nj6810RkJ6bb/OyEyewTJWZYzuxFgXKYOTkAQbXRU1AZcEkkadUdTvlCD7QOQ\ntLlg+rjZwF4SxFWYCOYkaZUB5oJPXsWimMYuHe04Pm96Y7lP9dAUxB7urAD4\n5MtvuJefecMvf/WOZmKRqQ9TqZ3Nr5hZVu96JozhbrdmUIND5qzV0BwBMu03\n7BAOu+4jY0vLA2VryaubGAAyIE6Qqv24+2hbjIkzkUmn3Qf4bTtmTuWl2ekF\nP2Eve0mSa+/H6huUniT0gsSMFNRMpdle9M/mVJ1+ddT7vAJ7E5O+qSrdnFr5\nTetuHOmn6F5O743K57MJ8PwALNFHRsyP5SGpLQj22IU04bKK4tBcS8scsRIf\n9XN78LgsRlpazV6Xgyn0sBYMJ9qI69W0kFRZVhl7fhyKiVOrUjM3sinMCWxD\nt4pb\r\n=63lj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"30c41492d93c2fff0752f0f256464db2d89d652c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180724_1532412795599_0.7689687116907007","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180725":{"name":"typescript","version":"3.1.0-dev.20180725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180725","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3165d22ba9ebcfbeddd1cdbe0fe83bd5c1c030f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180725.tgz","fileCount":78,"integrity":"sha512-X7gCA2Jnvn5o2LnjGwZXubnL2JUx9IEhAR4bH7ut5YjQIvYLsmcy6Z4VTbKdpuM97FxZp+qphoWxY174P2r2EQ==","signatures":[{"sig":"MEYCIQDxGkv2q857AfHF/ZgkCVPbnC0sLuL1kDy50NnstDvhtgIhAIzM0UzbrGi7rcMprO2w7dJODXHVipFu3UdEMiCL9pRc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40825191,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWBT2CRA9TVsSAnZWagAAR4oQAKKoisp/s1u0dEg5MvFL\n7kUo5zF78g8GNNx+YkxTAqTQlXH5j2HplhibRMfWnxp3enmaji5iYW/HU9+V\nXa+t90LbrKcOg0S0p4d30GqFmJy4o3GreZz/Fmq2Rpcg2EnauvhTzO3rBEZ8\nmuN9uVfEw3GoV7Um+fX+oL8VS+gZ5m6MYomZOr40vXj683mJdyWuPLia2KiD\n2/fRTgiGYQu+Y+sb536oPumyZxQ6FMDCWZbOL9gsl8msq1mzq3+FR5vDbUTf\n6i30x/JYisXoBxXNDDelWC8uUH4uIz1rk32yM32GetqhRG8mZrgFq0hQgxX7\nKGrL3QTa4QjvIMQoVUucoP8BpHf1rDnXsgyy3b6AikUhxtkhMisus13czXYH\nGMn/lKxKAETp+SkffPz8/JXVIGGlur9acd1HqMHSe1e4SFNw3peibVFTJhbM\ndbigYZO+iYFWGcF5mzWcpuEPW6xzEgjuwUmGGipL8BfUqjP9Hf5McQLUgvMJ\n06TTTnBAMXQ9kAMUvjUBOa/RQz3iCI8w/9AtJG5eJ9mxEPBL7GFJmKanOQLk\nQoCBjcTla1yFcSr4S/WTOv4ftKjBPDQdKA3MS1v9amoJ4he2mjEzmQ4SRU2h\ngiBdy5MEPhA1G5Q6e/7RLKvZ7uDLDSzbkYtz8EVJUHG8K6fFGbuzWop9NVgQ\nOI84\r\n=kUxa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e4d4b0ae4bdc1c9ee38f243fe7d287eb355bebbb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180725_1532499189629_0.44151734952393173","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180726":{"name":"typescript","version":"3.1.0-dev.20180726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180726","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e163396a209de57b2d86f8ce3680602e8e5c59e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180726.tgz","fileCount":78,"integrity":"sha512-Ty04VdHbH8HIDJJDeiPRZEbiGUsdblxzKLOf5YOquuXkaDwf9sKomhWXmIwaxz47AwbGv1fkLBGHTRmxZZ+lag==","signatures":[{"sig":"MEQCIAM+vSLU0BbOpEW4JiILWQMHF8pb/JzpV6GY7UNSJm6QAiBJ1hbjZ1TbYgiA3KXJo5ZugxeSR/oiJqJwCmGblo6rfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40843462,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWWZhCRA9TVsSAnZWagAAKKwP/0c7uBcGsoVhY/TsxmAh\n05/gDKsG0zy2TeVW0m6YvST+NJ10EEPEeDejPw2SH1J/w0LFQDRc7TfG5EYb\nEp9w0m+7zi8HEVyhncq6ZCRy9wdPgr8VA8qseXpz13qL9+PBvnwImxb+huuI\n1PuX8zdCKfs4UHNm0wPNXDeRot7nloTTOwU8TT1cbQ4lu6jrRKpgpEoirGhR\nqsCft0WEq7hvD9dNrT0GJclonvQ+HJYttj4ke+j95kxnNNfQMvqScHLRIwcN\n0v1YkLDM1JLoHaPlVKj5tOhSTBSG/U1UnEbIOrq6T3n7UH17YMgPI9Nvu6oY\ndr9RvKKP1QC4YmX0U4UwLX7K/rSdYLiqoj8KZXexU5Zi79vukbI049gXnVCl\nB5L48hPXC/Dre0Ofyq0aBhWWBXi68WWr+eZDNg90MaBr2MbXS2kOuJEC6oWj\nOuDNUg/fQuNBf14SOBDHweW0YR7P5O8vMYZ2iWoqYE98yFNXPrGh1DrxEVJH\nDS805HYOav6ooyNWNitQMAZcg6270S2InPB7f9U9t2x32ch2wFW3Jx3FNjmZ\nYUgxCErk5eamjG8i7/sO7TNeYMAt9ZaCaiDnIASvepfYwnTHkTS6vnYsZorF\nnuZ80n1lMnWviI56v0FY4GvO6jCIKNUN9ZQgtq6svzR+qUlsnHyrk8dkXb4+\nihk6\r\n=XB/8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2b14bcbb56e8dc2cb4d859a485ef0b362331cdba","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180726_1532585569146_0.948161028025378","host":"s3://npm-registry-packages"}},"3.0.1-insiders.20180726":{"name":"typescript","version":"3.0.1-insiders.20180726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.1-insiders.20180726","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3f921f23c8768b6fb665ee8a6895b5fca14b0c5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.1-insiders.20180726.tgz","fileCount":78,"integrity":"sha512-fSY7XOiD1xObVp+vCamB9Hivvvu/SlUu/tzoPz+7xZGk2pqVTRFG7+1a2okxIBVV+C1ePXOR163PIjB3+L4SPA==","signatures":[{"sig":"MEUCIQCiSmBr/rTpRRq/dhywEnhCrZimfC7FuB3x+S4Va32DTQIgM14vEVa0SqlGe/JC0HCwkMWKZ8FLGQY25w93+LmNbZE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40780772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWhEDCRA9TVsSAnZWagAAbNIP/2YoR6+tgI6QdGaX+rMv\nXf3hM8RhS3v/PRVj/qYqC40qt/0l3QoQCnFkRn3UpY9EjKZ8i+saxpJzEdH/\nhSGVfbnNNGpbJsWc77yBsakA8POvoMNh6dTZpoGUb3lwYBXffV1eIaugjXDn\nWQeToanghOIxBSuh1lM5/sJImfWmzl1QLFIKzpZywUltX/ly2X4420jlCvTt\n1Vvh8XfXZY2DevQYlvhX1ryycUtKfzIGShroRwomrOjQMXxpXGD2kz0lyTVQ\nUNLO1993Y+7lZJvSP8NmPA8XodKqsg9t1RMrL4mVcg3fd8QicLwDHFHGY1I0\n9iuItNfNcZJ1hzlCkc/dQTQWMTEIneqHwofU+JcYeb/i+H1FbCWRImXt1yu0\n0jc7hJeAAHzBHQc3AFiVzZoWqmmHN2pMZHyO+GDLmIE9hYZgekKkZ46w/JD9\nmySFQ5DI//CVYdj63WxlIE3Q+1V29uxI2aba34hC1LEbws1LQeyp2DKeCPtQ\nAeQ6qm/TpJ/KiZH6am4C8CXk9AGnLyvQRv5Q7oyXkXUtwGVmYwA7+2wLnJuw\nryHMNx1Xmw9ZU9ba7y1C1Eyg1gG7p2/c+zOxkwyEm+ynkmvhLDGF4RVFFRYP\n2YwZXGdwbHF2vKf9G7uAkSSWYU36VtWfA+xOqi1gFnUA7Anb2sX0WWKNaOPl\nY6Su\r\n=RnvQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"dedf5d413b9bcfe69564e59dd3e1f96ee9280c63","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.1-insiders.20180726_1532629251215_0.24044530135241393","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180727":{"name":"typescript","version":"3.1.0-dev.20180727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180727","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dec7ac54fb393b55c3c5b8f53499bb11183cfb0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180727.tgz","fileCount":78,"integrity":"sha512-5i3dg8ysZ6XSF95T2ZCgAHm0EXpl2d/0Cw/yhFMVaBYvUjDWqlwpWHIZe4pjxNLvhHxq6Wzj+kKb+zY9fXYRSw==","signatures":[{"sig":"MEUCIEdIFW9XQUXzEdiPdI/aFEf0WLRowimQJ9tF6lAb/vn1AiEAtOMD0+gALkYprijoRv5//aEm/PXQfrWcReIuKCAiNzQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40857951,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbWrfHCRA9TVsSAnZWagAAkm8P/2MHJpecYFr2XbxES6Ig\nmHziBh5UrkqhSsCzzteJwlCiB2nVlP/qPGm6FZM6qPNETb1VWH9Dqjn8IiB3\nOAb1oNqj2t9Gmg6OnyCjcN0NBnHXrgQ11h+LFqS8QVnhh767CpqmCLTWePEO\n4G6KMwRYrG7z/Du8qbrViNU/FSVApMVLhIIUv9nDxLpvmHqaCHTK5X6ixmrF\nFMBlvJXlovRMLNh1T3cEDFr3KFm6ieumqo6qiDoyp0yV0sebC7KOpakvzpN+\nbNID1yHty6KsPP1LeyNuVqui0BqW4Mu77oR2y9S94kI1aPH/HQYs78sGztZX\ntGWrGisrpSfpze78XSQZKeQ/J3KXIbj+Pbem7cIYCOvGsBrsnlErfCHmgn7u\nnVcrnRibSc4Oo3V0ZMMBNwrsmNtg09pg2bd7CaCjmiClDpKSl14OSqRt3o+m\nQATzQBvQFiG99IErRe2UtoaxHQ9sCRgmaejff44JwF/4ykgLytAOhW8ehBZ3\noJht+DVd0xwVvKpV+UtPHfmB6cFraGs4x8rc3hFnT5tYErojnEqV9UqmDbQC\n8e5+03Dr9n1GixFKeOQDlWaD1F3rCv84K3ijgHaoWgqen24yr8VD226PmmKT\ndjmWjvUN0hrStGkIJRFdYtlsanRpLbeNYc72wghtQX9uzl1t8mAyG8cXgtUn\nWs6C\r\n=C+BE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3bfe91cdd87df86dc96fc45c008bf4458d3563b8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180727_1532671942757_0.16802560918605547","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180728":{"name":"typescript","version":"3.1.0-dev.20180728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180728","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"013a376f1bd17243de42bb5bd16e7a98e0e25feb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180728.tgz","fileCount":78,"integrity":"sha512-BXxwXB5+xa47C70I+P1o+yVriR3kz0MFr6q9UsxnndnuKZh5HrNKr+JcW3BzgK+pHZMS7CcnuCIcEGfL0hPW0g==","signatures":[{"sig":"MEYCIQD1Y4kbXK4lB3uBvAZaF4US2v9zcRab/A95czMXi031dQIhAOsf3QTdrA+UqiNcxqAIMgt58T+patFNGnOkrM77XINr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40881566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbXAk/CRA9TVsSAnZWagAAg7oP/AoDt4s8+OvRkwWY6f6a\naQu1pFVI/c7nzcTOh+a+J28m7/WmPCDdsDY03m26AskWILugwdiHrR08pPTx\nrD2j2Jy2t/wv9q8QBHiX6cfOPkUmhYvP922K1H+dQksnz6ZQedENTdDtJnG1\n3u/ROjJdEDo0j6JfHi/LqyHMlaFBjhxZCKtXCieHt8veM9FC76VF4HsRO/Ru\nmz/morw/W2CVYf1i7Skj6CdP/wAx1nZH6HKGGUa77g/UNu/fkhyJTVgvqOHv\nHQPPS0A1IQU9fzX9vrrsxJDQCtzLv3Pvg1fkAtUcvpOUKbXzFPXAuU1aI/F7\n2fu8NUtMRLKLqlJVEr1cEjWFL4qs2OzESgf9mRsx7YEV1yiWagnh+RVz5c9o\nJCsUAnDyUP6pYZT+X9GsOF1ZD0F60QgewC4TL21/P9HczZvsS/t6bbkMOOM7\n6aajLeLK+x4omCspDAc5VIkq99Z5ZIJ6Lq+F5zNTuWNeP26fETemW201VY2+\nUmZ3JYRtmlDHNj86cu00DjgJBFWWWYvhAM1s3Hv1M2VQamJ5vsYvcmretwbf\n9cf8ku6So2ZfWziLkkLRX2iZM37PggdbWyrt0DRRMNYY11o7e5dZRB065Ah0\n2jXYHhBsXZLvdexLf/PHxvLs9OnzIBxpbX1bINeCG3VIib1vR71btVPQ8Z3s\n+XpL\r\n=xbbh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5e1872f0c0640ec48bb7855f200dbf8e9fea3fb0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180728_1532758334640_0.9859488457499721","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"typescript","version":"3.0.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"43738f29585d3a87575520a4b93ab6026ef11fdb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.1.tgz","fileCount":75,"integrity":"sha512-zQIMOmC+372pC/CCVLqnQ0zSBiY7HHodU7mpQdjiZddek4GMj31I3dUJ7gAs9o65X7mnRma6OokOkc6f9jjfBg==","signatures":[{"sig":"MEUCIAqjWzIQaUsBPgKyg0h42O/ClJqs0BiN0ZIWTD3SdAKrAiEA3AWq0eBRNRBv8a8qS//ucGc/JZIANmRLyJscqWBFkV0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40324032,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbXzr5CRA9TVsSAnZWagAAMDYP/2LyWDYStgPS8tS87meL\nwMojZWbzg4PdhRNAjumRDNdlAzc2iidZmlTubi0GCOrXGoqzDyzK2lDPeWqu\nfIDgDzXqZxK/urpkcQJ5ny73Prx0lXfc8CDoUn3ltxH0hgva1H/ELFyqzvo3\nDH1FttuESx7VcIP/QJBRfck+tYvQcPQ94ZAWbtSp3LLGbeOmMnJt4TrM2HFE\nM51xqeQNir3TjrgWPN1veCRMBBtWlZ1OCF0QG6Jea0qQV7KoswjcmtMoDaCy\nWzXVarEbuyGE32MLW/ocJ900ykN7Gcv7zx8y7oCOqoE9D7h18J3snWvplQE/\nyGc4A8veovqpKo48Kz9lAQb17EJAHJNibdA41FZ9fS8QTgDzCKUa0LyRlL7C\nfzuvczGE5siSyW4uA0XLjQd8pbgyd0OB5dep/zmqGHrXVW7UMxwQXqVswopt\nN29NL4x7hGC/0w2vzqtxWSsGiV+MaOT+mnU0tVZl+P/XIIlJ9KbjXloI5tF9\nJY3NQan4UBp/1F0tiUh8VHpOgyKLhyCOrxnj8xKvPQ2H19+FCDJPSnmeVjM+\nfB6qoLGYoqS63A+B6vbgIfC44enEi31JMLsJLvgbSqVuS0YcA1r9uGKC9eVH\npD2IHpN4GKgM3vN9MKQ4geLwjK5SGsEPkOb9HWmraVAU6UhywEnKZCI9n9g/\nLlYw\r\n=Tuwx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"dedf5d413b9bcfe69564e59dd3e1f96ee9280c63","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.1_1532967672359_0.4248735105370005","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180731":{"name":"typescript","version":"3.1.0-dev.20180731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180731","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c613a2c85cd3fadd50e2bc5e9179fa496d79a4a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180731.tgz","fileCount":78,"integrity":"sha512-mqKq/RGYXlj/619ihl8ay/60HQMd9DkraBHcPz+LP0Nu6TuHjvpA6aAs+AURuEnyyf7evB/6yEEWtCSKvKBO0g==","signatures":[{"sig":"MEUCIQD2FaXO/cxwLq5ijs4cIk7ndwfrUqsTSgOizs6SKdn0CwIgKs80GuayEsCqYzoa3mkB6fbaA/8FQgyCDTVvM62OmbQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40895306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbX/3iCRA9TVsSAnZWagAA/eoP/iIWtEkp3S8I4nFucVu7\n8aCQaPEN9Qp9820/IdtxCGWYuNDVNaPD1q9I/vksRpr9H7WmHoaxOpt8qngr\nvdFrIWHr/IicuapMYUb1s+UEn6oIirA7gYBLMQgYx8StBDv9gFg9uk2pxMb/\ntVNt5ULJB7iBQt0gk68AvGiL9kZkfS+YZ1bvXKr6Bk9vexLNqk4+Ay5+elvF\nx+YOoUFw99tNLBIaxDKb+5TZM9iU9Xd8kRhmnTcpG8/juax7gaO9EsWqG5h6\niNR+S+QqsR+QO72ndnsaFJg7fnPnWH+ckXOJ5lgkifTIyFCYz9OQVxbwXUxL\nhB3soedyuDgwcYH51JfhHl/PwMw08tcAPHQGOtxZ85DREKWJbKfdCJlX/msc\nAbaeeQOUJ8jZdL9JsE9A18SnjHcjr19TgyKTCrK91/6LaaqZOfFo8pj9bdAB\nnP2NGDKcpKqLcjWs0cmBw4LnNZfnzPnOjVFfPWFI/D5Jfe/IBpcfzw5iTTum\nP0yuecJFbL+Chwnh3/fpZYD2vlpM9xP9dgJgHJhEAMxY459wnSCyDC6UAFcP\n4LV7qSj5/npMY/c1uWgPkwRGN3+pj+jN0yTBuwNzM6QwvGFCgOOKZaV65pOA\nS9kFfpvFG1YovpwVUheObo7WflEi21Q0IsNRdij2BzFDRlnxKr3faJp1BmeF\nH+20\r\n=ZTeT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e2a8f996d03e984cf9ed9473dede8dd13de49ff1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180731_1533017570235_0.8622199884640531","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180801":{"name":"typescript","version":"3.1.0-dev.20180801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180801","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e6fa5c284afb10445f0c4ca0a1c0c16329fea351","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180801.tgz","fileCount":78,"integrity":"sha512-IhvPNhjjGf7evWeq4wMMrpvq3prp3zN0kYRdwAap6avah1n5LO8iDk6KAzxO6g1jl0M15MdmOyBKkJzRlECSug==","signatures":[{"sig":"MEQCIGNdRypH5un+vFzoOh54hTRj7XHNXHh3YkJ86LZ0cG5BAiAVF9vz7Pc3MWCv4H2k6M3JHy9VOrv7SeqfqXEbjixSGw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40972752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYU+PCRA9TVsSAnZWagAAdqQP/2W4o9vCUWj57rOiSQGi\nvinEUsJ+grYJrwTPnON4LcevNsS/hFbUKjbOOmzoEeqlVdb7jkjhq8ULKitf\n/XI7P790rjTi+rTyvW4C0PtkESu8AtGj1Z52t0cVOGQeunMyQsfcY7OVcvKp\nRTKMaxzTGGmr7MTLYG5ctmUnw2q5xsijCJD24oSNhaCnwCIvoMo/tVjdMDAo\nIAxnb1xQfNhe64ZMbQ+4GVgY3ClrtKIj6N5e5R5SmzAxMH0mmj9cAm+evK2X\nkCvJZibXankuOn2IaAqeCs50Xrr/9gBgoDfXPGHNmrZk9hsa1NgElYbSvbxf\nqB3gUjsUTTdgOd+8dpw+bJaGYbTILSkm5EcRcH1rpI5EavBoPfSA7KwP+32W\nnAuxsVlLb5kK7LHodiRHj/X1PMd+pY1PXB8L8HSvQeipvhZ0U+8NKftFXUso\nvG7f+R3eFtJHY2HAWSwzqvVILPqOraWH8b3bO8WR9RLYsr2tW1P0ijhZSce5\nBJMEI6ufg7+Ur5CoRR7Q5WQ1tKoTgB00cSPMoJaK4VanrmcE1WX/R33DjNzg\nlN1rB4cqWpEKEI1qnZCIZ+aBINRdC9bsVa0bg5VkWhfkEq1UUcaO2lCW1sml\n9kn3tzUB8/OJOd05W89YpVTu5COivFf2HL3S1KYUjduLFhQMqFKMHZjsU1Ld\nT2AK\r\n=cjq4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9c9f3e3cf9991502c546640a78365ab8e1ea6b52","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180801_1533104014976_0.7065104749700466","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180802":{"name":"typescript","version":"3.1.0-dev.20180802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180802","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c4f61dca4d410330a374675af777eff9b93bddaf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180802.tgz","fileCount":78,"integrity":"sha512-eWmwrkRZO46kZQIGtxuoU2Mg8WldQ49aXeTv+HLqghlHTBjCe1h8wu9hunGPeTwgcWs0ouLY4Ny9jN3RImflmg==","signatures":[{"sig":"MEQCIEg3bGkFQv9wwRPxUxVyem+bQDta7CN/+80deaMFj57/AiBRPvLJBSjtBugwa8+f10ZFM2cm3TTMVLsCqrzYVoC7Cg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41023436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYqELCRA9TVsSAnZWagAA/cAP/iFHc6QlNzVNWvNBgMBt\nHTapsszReqno8B2HA9/oeyDHMTPZAOofctltEVPx4QY9qvCaJJdRf082uTXb\nKqgIIc+eazUc2sWIh22fAWJIc7RynzOflfXCZdyOAec45f2FSdwe5jV3ifS/\nO7/e3rxttE6BPKcHZnKuXR4kusuxvdxgXBQq2b0obGiJr/r4v9rEK46ECYph\nvujblA7hpLhsybda9KZdtpmx546v/t2yKT4Zahilc3LOgPOy3LcfOBpcrGlL\nLDZjMRHUJHO+NCSUYuCxTGVIq8GvmZTtpbGGEzI5KpeUPHrAOGXRT3y3czIc\n438kJClK0FbckgX3MCTJrpLKzGiebb7shWSTrupz09khzwOQQ4E14gmRkvLq\nt7NAZF/UpmLAErTGXdtqXF6RrYQLVAudlQJLEpbvjNUniMKZPBu5B810ZG1k\nQfklqDatdG8YXrVYmoXABPIxC4X0Q9vLDMAK+rHLjkDxMGhaWJDB7D/oIMNi\nJYNmomO/3SgyFI76wbbuJRve4NBdEqj0tUcP4jeLaJFVRCOZP1Gsqkh1pNiC\nsx3eQk5BY4CNNFT9JYYBnEmSqqhqcqHdDx270VT9AJBNk4i+gVNC1Taihng9\nmydCMvK60BPpUWIA/8023Ljd8tKEczkSt6idATFuF024iZ1hCWp4FAkZwhcJ\nfYOk\r\n=knx/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3ab7a98ecf048da3c3caaf23462ef77d3be71424","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180802_1533190409928_0.6953193730945657","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180803":{"name":"typescript","version":"3.1.0-dev.20180803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180803","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bef1cf4124e9600e8e8a024d201fd9d7bcb83ff9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180803.tgz","fileCount":78,"integrity":"sha512-AOdQHrAA9yLrn3AFVaTIT/JW6eIraQn0DkwcI6QRnto3oViVzd8nypDEacb7rHJ2GIds4aVe+LbsS8gRqvmRMQ==","signatures":[{"sig":"MEQCIAXBWSngph+WQIs4QMOseAazPcWc5MAELrZvQ4aqDO/IAiAyBcmCKA9PbZO/ec3s4cZQCO7SEzESmxxWYaUMeTj/VQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41039714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbY/J5CRA9TVsSAnZWagAAOFEP/AqB1DLT0s8moWDmYiNa\nuao+Mv3iDCZRVkh8vgq3wknfEkefU30cyBr6TDwkYFk9kTEMs806bQkHghUk\neSdk99+D9VAOXhUf8HSpsEjZwrcJgTv8sZTvcEq8LxwRbC9Qn2olF9Hw6vU4\nheHuZOqPlTt4dw9PMkh95Tgl3Xvb/kijytU7H2H4Rw9Sx3ExFt+BV2McOybe\nXMGZO8MfMt4I/JscToiOezSnOSUG+4p6DPmVc+OsFhDyOhsW9mS7gkBtz1SO\neNFFeoJBdyzFtykHkAP2lEc2f4BeqJEiuCKVIa41FtfezRKjLmUsA7i096zh\nZnHyZf1h1b1IYgIb8PfNMC+ieinPwLwdeBacHQ1r5A7LIC10re1VXGkgxdDg\nizWGFipECmQ1PDm2gPqjO0tO036CTSyUK+VNoO1T2arWEFUVnZK9/QZYPylh\nvE2NVkG1iCSuviGMsh1EamDb+8nhcttgml72eafUyQeZhfjJgG1USv/Q7YWM\nBH2VW6k/4L2cUz5pkV5694mjX+YOjNP25w9Ni355uYK8l9Vej1MYbmoQmJz/\n1d6bVHzC0AB9vXZ46miL/goBstsgO/aqDQR74jwwH3cpG82fvZSKOnvLQGVV\naopwozDcLmgDIzwaY+C7CFPY01ySKevYvexF/9o89VRhULCP7RzjdvFkSM2v\ng4EF\r\n=I7KL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9df88316a2f26a83dd5635e149038f0c10168e63","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180803_1533276792210_0.26530785582332417","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180804":{"name":"typescript","version":"3.1.0-dev.20180804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180804","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"266909032a9cafb008243f417d5a5f81630f6b58","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180804.tgz","fileCount":78,"integrity":"sha512-4R45oI/Jj/MDGlqFxzZTFgyASsBpEGOOQKsedPZQq9PfsIPFGA2WuSlU6riv5j/t8sDYsZhZjhw3BfP3ZOJD5g==","signatures":[{"sig":"MEYCIQCMI4zP5xkSXlMIjXK7DYSm6MtSva9F7gWK5ciUYUgPQgIhAMPxclHhmsge1WDHiUILBb3hRE6Ipq2RA5Er8qELmlSw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41045041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZUQUCRA9TVsSAnZWagAAg14P/A3BcdzJ7ZdkOgsIg9Wp\nrdvZ8Jj9akqZTKRZAiwM/1hoaE9OVLbEolzAxANtHxzDj3YpdlL255QS+K/3\n1KQcvGHWXhJPCmL+SC4CG6bp5Kmel9ORTmHk6TWu/QF2IfdP3lvcDA/eAkqK\nm5VpJvAzQ5gSBBWZh34LuqQU+xNdMgF+HH1dOLtkwuOaB3z2KG9ZK6idD7TE\n14sB/kjYO8ygZAoPrJQrjRgCdyaSZW0UfZfISbtPMd1htY62AvyFivnToIgf\nsRa/LkTTkNi4TyLc7OAEDnAigderOooxXzn7FfbBIZSrnTCLfLzuXi3zTxyo\ngntuOcklbXeFNmDEY3kA3jVXRxeDBKIa9ojSLgcLgf+Sp67lY5mw7IcrS0kK\ncL2Euc+KDL4H8LOPn8UXnRGMtm1kIzes4roEwjla14QWvFQ9t/gXFFGFHLOK\n0ei9AGnRkR+6o/cSmlzBC7N+3wJY2Rmewm5N68dhKFaT9NlEihLEPc3EPDIY\nYkMvGo6yKTpLTOqEueCAkRn/f6KubaVkeHUxAv1CAV60+Qr4JvK931L0aNLr\njJeEuOAwVv+MFNJQ3jWTaYK111HcRAHFzzY13OGTZK5ut7YMOoeYcdpjo6fl\nw3FeXO66K0gfCuR/cS842ZsZlOSr8oaXOJ8IdkcC4xgxKuD+g6Qr2bC4me2a\ngXtK\r\n=fjpC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3ef067f7d9a042336903b33bc6404cf61390fd55","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180804_1533363219183_0.6920978263812794","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180807":{"name":"typescript","version":"3.1.0-dev.20180807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180807","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"17774f3b12c7d81e323dd8274f389e135eddddbc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180807.tgz","fileCount":78,"integrity":"sha512-sGnPUxU+vm/XOmlJ3g9CRldFKXB9YKk1+sbEq3JVNULpwHGpDZ5lZw9/M63c6sCdW90wvP2HghnsBD26V99ASA==","signatures":[{"sig":"MEUCIF/FOgLGrytbli3rBlOxT52xu+m2WNCcl7FLCY0+ZcafAiEAuNJbu77NGU3z5UEuv5y9IPGx6BCO80+vOPkxKgnIPAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41068564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaTiPCRA9TVsSAnZWagAAQmcP/R3ZH3InDxFFewGPhLf+\n4ch1vRaK0iVlG/2DIo9hMBa0fPF6othJw2xV7BUZyYA7QQ9CkuV2/b6hT1Ay\nbcOBAxLgroHCBq++1yOkEP3XWvgANBxoRlMlgzNBTdClgeRqKtLGJ5tM9oD9\n1BlW1cYqEOGertRviLwWb3jN0L8i0pwYkzrhyq3J2bolfc6EiDf7JjybmtHD\nU7WH9s4XmHSE+mpUmLRDK7+ZsNeEAZin6vT/YOJtQZr09frbMcD4ybHmzaEq\nMozs3mnaTxPQUZvJD4XZxWzQqS8xzwHii1aho6yvNLX9v+PJBkenkfcxjJos\n6R7Jifnv6nyexKETzKE9jKWYvT49KGFbY4LnXTDEfW8GWSSLIM6FMcaLxWMv\nuEog5gA1+bo40wxPRryi/1d9+pnvs+yQa8O3oVkb5xRgUIhmUys8RxNz4Tcr\niXDM4a+vR/RXmA93VBFpN61M33/zo8xuIVmU2IiR8dClZaO1MLEGZNL/xpnm\nNmCvxpfknLVoT0MjUmIUjUUOeojmoGncLcUFGBcbKPrFzZVnHfJK/zVCNUQw\naTPg2ZbI7Xalg6+4t5F/KQ4aGqmgHKxPDYjNI5kdshweOk04X9kuoVfxEGtO\nXePmnqSprnmvHI7TYp/l52wdf5udemji9jtyYQxPuRI1Aoqmi4KwaiWk5+6A\n2nvK\r\n=P1a+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"937afab4b026c9ed527c8369275c749fc8f2af99","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180807_1533622414580_0.37304458255777595","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180808":{"name":"typescript","version":"3.1.0-dev.20180808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180808","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c74081db8c79788df9be4d99277571f9c11d49d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180808.tgz","fileCount":78,"integrity":"sha512-APEkHAai4/btrmvU5Fd4fwyXQiXcFwFxz9AoZPsZcLxBGJvfkLw7Vz1tg7fCKrutPXldkv31MJnpq8MWQSr8hA==","signatures":[{"sig":"MEUCIBnggysbVN4pjCfsm0CyUSwj9VPsjMJ74T+fI9ZsEPXkAiEA1q89UHZwmb1nCtkA6UpAXB9Z0ZgvFJHnlhZXXho3NtU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41080002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbaooGCRA9TVsSAnZWagAAa4QP/iaoNayMYLSWJtnT/e7g\nNyuoWKj4AlXWa++4mhl3CdRtohOZRy8sP839HZf57vmvktYA57q7KetDjVr1\nvUet2Sx3VUfJoCC8B8QtdzWWd9B4f8fxfLaSbBwj2QysDwRF0fLpmtXKZTHD\nPSTT7uvtKvjFIdJGCLIw9+4zFNXUOBkyJICSrx+op+ZkBkPMI3t336j6NPpf\ncoH+udBwKqHJgrvFyr7oYFOpvU0w+rQdFRsxTl322Gr26wgyokuUe1n7DkiQ\nzGWZ92Ldc/u1E+sgwKNACKOF+0k+dGspz02QFD2kFbt9Is9t60Dpu3Xl6PyR\ns2o/dy557poK20KhH+FKkMsPVoheEWrgH9257uS3df6F+SFY5YcMmPMtB8vB\n0r+GCCNWLsPxA6wVmr7QS8kj7+nCaHsV82SI+NqD2+9opQ5hE6KKawAOKTN6\nLdMWwbgn/5tt9ZpwaJ8CTi+21EThLr3ZXsz0mwH4uTndyKcpRYcoP1nUmsgr\nRuPSnyCBAxKVsrhlg/pV3lZJ6wTaZZQx5VgZG2taX0Gl/3RvpFOqVuHhmW/8\nOfczd1gKNyTultxWtv6T0BUP7bSE34VwTYCaWAN01itvNBrQYXAghZt8Vu9R\nYct1hIATHMq9yFkxYstg5HdejUal8bwX7TsASZ1SctllMfdNBebmSpeanpGH\nZ1h4\r\n=yIUJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1a05f13aefd2b59da94cb1b1b5da2a5d1bd04411","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180808_1533708805007_0.277762357469612","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180809":{"name":"typescript","version":"3.1.0-dev.20180809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180809","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3384f7d4fbdee02a305408cee28e93bd75b49a0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180809.tgz","fileCount":78,"integrity":"sha512-reuzRgpPMU5zUMpC0d7kEp4OPg9ZR8nwMiSbkSbYyt01eKlH1Q5WTS1azCw4+ASxXhILYM1fbcvTI7uohWspxw==","signatures":[{"sig":"MEQCIH5KOcgFnU/SlIdJsHNtTwtbEM7iHOR1utqEJHtC7YnhAiBEZdJMKQqRxPH5dAkE7IdSDZL9Jz3X8zBE0+NFk8enqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41079642,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJba9uJCRA9TVsSAnZWagAAC58QAIwHEABc+TyXHlNDbNKy\nwBB0LxVf2/kUSkoqZt3JBFc20RfiOy17o2GSiZmOn2hWMpHDE8AExGTzQ3nK\n5rpcSsolZji5pZBvZHR9V38NRq/06BVDb+4uheR0/JwV2Q9QS+wfVHFxQKnU\nChE5gDj4i9FenqzOuZOgZI3DypxLcfZDgEZic3DLAZL2rZcSGatkU8buqhwR\nFJOJc308NxXwEf6cPrJBwHyGKLHS9CcVkzFK+4Z5TRhfpO+z5E2CkSCeiO/t\nKKJVlxv+0kfoHRQh9xFN7SNuVsi4AXsnJWqEJwjAgHJHr98UGV+hYuVmfey3\nYRvZS0F54QaWJzF/EIdiEhX8FXg/xY7bkt5Hg/UahP8aY+LvmltutgNgfjA6\nayGnsmFrydQrmhtr/ouI/GEsYgQaraoTq4Z9gZriLaYeNRST8RYhkL+Mvht1\nVnXKQ8mk2GuACZuLVDLfCSRSy/ZrJNUfY4HfBC5vJ80E5z7PyGXPpwpiVVNa\nRdRWCmpnUhM3sgvZg4kVxA+odhHaLPRYj10dUjkHK5n4ZIdbHFgLP9VKGfUv\ncGAwaDBJBbiNJSjt8FJHIc5JgG4/HWVnBOkTiPUzSSj4NhaW41+YEadwBEow\nLzzy3Vu31YLp9enTkhxdbo5ClmA7K5JPTpKKgu+ZP8NOYHbLn6N4UYDNOKn3\nRfLs\r\n=9jLN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a36a53bfdb5592b018ad87c7b4b32b9382787a06","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180809_1533795208399_0.14558993254008046","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180810":{"name":"typescript","version":"3.1.0-dev.20180810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180810","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4e3c194fd3c1e87dd7c91f9ad63494fa835952c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180810.tgz","fileCount":78,"integrity":"sha512-VFy+GNeSR0UGU2foHHSCt6cLZmkc4VPGIjQJlcRXhUp/HlyKNg5IWMsZ1uLQG/uGdw+VaHUcU12w88GFj5iRVQ==","signatures":[{"sig":"MEYCIQDgVoTPOwdCaWY+9eqgdjFBWHYdD5OROGCygZzo27WeuQIhAJZYcOskVwrdLLxYY+JnghAQwrZBWj9x5DE+sfFqZN/i","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41090695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbSz7CRA9TVsSAnZWagAAkQEP+gMEOxc05WPttbLnRF7L\nLb5mMYwFBd1H1ZLQ98/ZNplq2J9hXs7sX1rRCQPoBXIQLXXV3pTpZORooQ3h\njQIkO9jcsBKgBmsth6ab7RF9IHH3qB/Yc9OV66VsOVHrTA2CqpMKkb1UkI11\neA296fltYt9vp+7L+wurwK2us4CTUjVPvJcUPd820xdAxqbHvtA0F/3ZbdrU\nP+eyQmM4sRZkQ95dGto3QGhdzNG3WoIv+nfTv5xzCWPiSH8HpBFrQZBEWlWx\nk0jD36CAu4wsFdyIUloFJwSGlOycuff58/DJlGMCzO3YVspUR7VgavAXAPMS\nrw5dvCe48v1pfW+CzjGs32FJJNMFt3cdjmb/xgX1+budPnoOHJmBP66+s8jg\n7Ao1qMJeFXEiQbkKc9ZkBSGDFlEW/6pwjCuvbDo5u7EsUcpt9PoiJG9pvgUJ\nPVkZgx4if8xUsDRRvZXwZzWrA/Pg0qb7rpEyxWlLX3fbXSiGZhXQHEUgwULi\nPnCLQzDgsOzx//Xy0+53nU5/3Ctrvo1l53KFnFiT6uQPtg3tRmb3cTB4Od2U\nMHQhDbhhwATXzTMQw8WUddH/1WkA8EmWvxi05ZkH2HruQnymlSwYbXe32SFZ\nKkjttepkuYStj0HBZ4jAiCbRwdlN6QEAPeVUyK0fJlinXYHFeST0NKl4Q/y+\n8BqG\r\n=TalS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a73161e9d5a6c914d6c49cf6a7b76550a307f13d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180810_1533881594156_0.8805682847869529","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180813":{"name":"typescript","version":"3.1.0-dev.20180813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180813","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c522ff37f1ba845eb9197e8a3f6ffe78da7a8913","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180813.tgz","fileCount":78,"integrity":"sha512-3sooaeRS1KvHoZ/hE8v2VhlxojcPvHBVZ5jXi070GscZA9BeZ/sXA21Un5m9xqeXMESrWFt7onto2xZfwj2XQg==","signatures":[{"sig":"MEYCIQDD0YB/lIgm7km5QASWEan22IujY7N4yu2X5ESewi1SyQIhAK2b2imRcqckF9lLZB3cYVAh/qTNS1uHkDT3XbNxIMX+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41241727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcdZqCRA9TVsSAnZWagAAEnwP/1z/IoWQgYMksgkSXOu/\nsr0Me47pLx5TfNz0UQpwi65zd3+4HyhekvD9RUCCTquve8hNhc9djuJyvRSO\nVXs1IaGE4FDvz+kJhulpWRb/02bfBaURdCc1WnirugqXOYpnpUSuHOxTe+mf\norEil59xWULTw7vWnyRGChHEcOWmWz5yK3+14AyznzfrtDhvKW0NhNBjoHda\nPynkffjIXnvicm0fz0oBT4YR50q0IXN7m8TK3QChFsZhO+L6PBbdZBRASVyI\nOYhuhKRV5FnPeh9VhuG979QkRYpZvPpqdRE+jNNstZnleGUlcfPBUE5xTwWV\nbyVSyLf0r3lkd3Ycrvm8RiGYyYU294X8p7sZy+yMdH1E8gPPI5pcXYDJAkvZ\nMYsxcR2+b2XTeN/xeL1ARC6MTm1/0qcYeGlECNCrXswWP7n6gM9ICvAfCIAY\nbpzJLl9Qfwpx58bMj4SU8Py757zc4PrSD4fBhpUlbgpa1Vh3UYcS6Iq1oXz4\nEVvPwq6KWOPPrkxwpKO0+MlxyaE7AajpZ3nUZpBPogthq5E3vO1Gmf6hhR54\nyKPaBSkNCKlpPlmgrzAY8j8WsVN9NO2hiClfEcsqt1tb5tmiCDcqYA12Qpvj\neTws2VXWPUyGHSA+oVvBIX/EPu2PlEbHbaknZbCYM4etIEg8eTjsL9zVMegh\nNdwd\r\n=YOuR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ad63468ed57cd9761418bcd1c7740d1dd1eb5269","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180813_1534187113991_0.27632787321381547","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180817":{"name":"typescript","version":"3.1.0-dev.20180817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180817","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"efe1281f7ac97e3aa794427cbe9c166e2438dd5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180817.tgz","fileCount":78,"integrity":"sha512-N3IRNgfmXzM8gm+PdMAS7KHLqMtfqblRphKuaqriJ42AEUnRLXLqgzdtFNxHLiU8DsXoUXGUkZH8sEeNnsUa8Q==","signatures":[{"sig":"MEYCIQC8hJT0xNspgoFNs0fGEs/+YpssnNCoXoBu2YobZZfrJwIhAPldXro3Qw75prSLeDZOljvY00tlGKTOtMxo1RcRF6vr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41271278,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbdmd2CRA9TVsSAnZWagAAMr4P/izY+0kAleoDiQAM2MXH\nz5jdTydM/osU/YBZZCVwrTE8mxeK4aP7g6MmsDnQ0vElri9zewSV8bLbjZHP\njQsb1csEkN6QdHlC/pWBdfWY49PNB540nDxLpytCgTprqpwHTQDDJyk3oxFJ\nZCCwQ+UZtPDWxeUaI5BGzKQNEymwsc2UHj1Vy6oJvGY9KeHGC5JbpqPUd+i5\nk/gs8bkpRCkQgiASMyufEpNGRXbK9NSMbcB35ANGCKLbYH27nTGZvzeJ2r12\noj4a06SrTj+FYRe6Or/lQu3QrRIypGOGpcKIfhM9qJFYtF9xetoOjUmevMwc\nUPV89rmM8UpSL7mjGLvjmUOeaXDBcy2edzdnRjkx8zcL8janBYm+8eqBdXIG\nnaY5mPmXcF+FGE4/PCuNKbX1GMkvp7JBH1aotrLpP1v9DE5iBjY1Vtz9523X\nn5WZjs7FJGPJXC+74Eoa8hlyJjXeJVh6FpIAXrTUfpd5W5DZv8mAjKguJVdf\nHRV2vwSi6/0hvR2JnCu8WPHju6Zn9edrVAejU5uGQRWFxWGotyNocn/SXzJZ\nOHm900Ew2mjkG1u9FaeYDMZ5+yf1yTjl65IziWHlFN40kgbeWHwq0nbJc19/\nLDCE+lNrsUceJXYrdwgdSyzOmewVaiX+DKm3+h/OYW0HErT+CzYJWunqKAiN\n9uQ0\r\n=rhzE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6fd725f3eae6595303071395417311d01a371cee","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180817_1534486389267_0.9807611126149254","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180818":{"name":"typescript","version":"3.1.0-dev.20180818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180818","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9bcc3e3fcc7d96ffbf4b3099d00b5c8a69da2e61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180818.tgz","fileCount":78,"integrity":"sha512-AeDlIvKKv/FtiMkJ2qZvdS4YRm6gKCdVKgxfALr2iNdeRt0eCG/on0bbTTa/STE28hyIDtph7K6zEmeBVEK1GA==","signatures":[{"sig":"MEUCIQCZSLGeUsIE7pZ71sh6wh6oEZnhDht8Ry14aaZBnBGBlAIgXkud+67ghDLstJ9U9JR6EE8HXpIrOaheoImDJqqlFe4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41184891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbd7j0CRA9TVsSAnZWagAA29EP/3TKR5HsOATmGTcEFkRU\nJlGmCadr4mT4R8OlMVYupBw8FOJBepCSBqLndnPvk6vD3eMFE+Mk8wndWA8L\n1bBqLXf2BFJ72dl/5iEu/4jf08Vzf5jVtkBcRE5Hnn0/BGjjuOx0BM0vBiDH\nEUymBqSo0uue8bQ+niW9PH96aVoOYnrPx1oo8VUBeIlnpO88N7GEt7iGv/lF\nXt17iQh18BATNYg1UAgG5VSmo19yNfubPM1g/3yJ+KozutI6n2pbRgLBQPGR\nEZ3MlHqatWeyrEmSFDdIzCFf5s+LnX/l070uM1XJyDxfIqGXdDYz0ZLRT4NA\ndoXuLVt0dzPgHQ7Ld5YzoHhBG8hWM0Rimgyn4bRxzkg1Ere8Ij2Yp+62+74K\nfXj8UODvBXXv0jSjk53mYHHYjuOXytzRSP3nxej6lFzESmM9ZjvjuNzGqbmJ\nMHOSu4QZjFu9HidnllClV58VjCsFkm9yGxNB1Ap8xAD3jzjWV6VMsEDR1u6F\n1hHZv1iJj7x+FsfqMutFRN53XA0A+L5+17aZA4y0a+6fwR8ANdDKJxIvp3A4\nbmjPfci14Kcgwq6Y1eUZw+VfuhzILoO/sTduOf3krZLFjXyMiI5iPIcF2JNA\n3H/l4t9HQBdTp4RYW8P/YUzL5KPd/1tejS3bDNp98LWpSnfAtcnOObkmYuiq\n5i2K\r\n=4Ae/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"435a12e476eefabb77451540839d150cef498408","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180818_1534572787146_0.9430505471378698","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180821":{"name":"typescript","version":"3.1.0-dev.20180821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180821","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"56d44d584900d663a076f16059d56f4e6d7618c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180821.tgz","fileCount":78,"integrity":"sha512-yc+X82TiXdqKmiASbg4XCgExu5L5BU7HwJneOd0MtZ97PyWBzaK9SKWoaYyzvCIscck4A03Nm8xX59G6iS3f0Q==","signatures":[{"sig":"MEUCICRkYWtQsaA2ZSEYVfkM5G4XvK+WLd9OeuSZXTu5FdXlAiEAo5nh7/3dnhZgEOZC6XeW5GhXL2vOc7reDUftWOPOi4g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41189323,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbe612CRA9TVsSAnZWagAAeysQAIXntpj2W+hPHBzswq9A\nWTdXkTtnmmOcI45qwVuhXOGF78iB9Zz6mJRvRheqXuRUm+y0FKHe6VJfrhdQ\nmUTQG5QfWl/mfYnbvpRfM7payZ4Vnl7rP7lZZQk+lP1vabXu1Weoy5iZlJOh\nP1ebL3+i95AUWvCUl9m93hIU6GjfFFrdsCxq05v7jNmCtLZJFZY8oS468+Xd\njItN7AL7Gnr2rmZfLyf/rAT9h62wqCp/Gu/RqdkpfhDT1DXfu+yvOkFRmX1I\n5zHBJSZo3bvDuGTmBlOuCd+GEyz2PgzaW95BlYm1phh0bPKr5ZxSsYULlSnz\nwKN4BgtdP64wLB2zGOxMkrgaDsQHIGTG+i82a3qwRH3Co6ysl2kUvUqFzkYL\nemVOtiStLBdVOS3qkbyKxEgHCnwgHtt3LxCo2sZv+EJIFV5teeMS90ctQx/a\nBFspCbb6yFxfjywN0fBY0Z7xzTwbvSb3yMK5coynT9gmwGckZf4dvUFTJZX7\nIR1wwWtqrhmHXUepCrKgfcqc9rNBONN1txQw/spzsFcGcSA8i7Q3peJRWAk4\nMK4G0VzUK/naMSjvo3luIgwnJsX3ukzH+9Uei+Zseb7tTSxsDEsrci8uL6TL\nIJziwBewmU3kM7BjKb20n26H5up2F8K2ySc+Qz5lpIJFUNPiVcxoclHicz1n\nmWz7\r\n=RRgt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"103f894d38f2f3220df046f31269e7885ae9e76b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180821_1534831989010_0.9854172395414722","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180822":{"name":"typescript","version":"3.1.0-dev.20180822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180822","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"727176ee91a611e2de026dee7e68258786d6cfc0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180822.tgz","fileCount":78,"integrity":"sha512-xmI9G1mGR6NyDYTsrI47Cb9S8g77Lo4GZtp1o+cIXHQ3KRadUDLIkzrE81nXki20T7afnABbfk6l4mJOBB/stA==","signatures":[{"sig":"MEUCIQCyUejmVVA1hbWch6wiwsA9rN4lh9UzHgQkFXyG2I3f5wIgLv4zdko4dajmhqMjPWk8tCw36UU8saT09tNWdUlsxhg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41201387,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfP8LCRA9TVsSAnZWagAAYQUP/11AyyukDQz6FnaxCKxY\n8rdu1S+F7xBycXNhLZeNqQU07bxNoRB8Ca0ZXwMeBRbSolqGitIZ1s3hJADA\n3kif5bHbh3RBpBBj3MJ552/ODsIPUhazpnZzANOhrnD8EclI3VTHQA8E3dXr\nafa6gedZpiKkc60FxFqIufoYMEIoJzNyMMwWKqr0UDMZZ/dOR+/iHHAkyL2v\n4RvKKqEQn/s63dwwlU8iSihPL99Xz/b4/su4A4eIv1N/towSl2l8NUjChok4\nOyBFmvEKH9tf7KoVO6ogMsW6GV1kzMcsW+J/p3WmQ69rmqBLPmqU0LH1SDRl\n5T0InLw5F7F1g1OSH6PU0AHa7i3i5NWPBWMxQJWkZVHaWMDld53VYxDtVhUV\nOKYavmqJ0rKnY2v3t9AOzvHhpJqQXeLV53fhS238fD296EeHgJm7EFHdViV9\nFQTo8BIcNqCz09HSoRgyk/Xg1jvArkWFSmAetyhB4PeumEhtEjoJoGRF1Nui\niAawPUfxOYId5pEZCGhYAq3Ma1/FdyG9n5VTYHjerITwLy0tD7tDYW5GW71S\n7Q7cp8OTSvdc+xY9RH68j7wbLJ7e20SzWkUslzFJoBxNA1e2dTkH+iQQsaqF\nfxJwDpHjjxeyONI0OBqTbCu6tVtoEuFQ5q+uEDlAC54F9uUVn76P4gKFL5TW\nBKKD\r\n=o9Eb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"93c76cb617b2e0dded38244e1a2dbfcb8ce74067","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180822_1534918410186_0.7609432800564233","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180823":{"name":"typescript","version":"3.1.0-dev.20180823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180823","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"08a3691a4ffd1aa7cdf80d22a99ed7e760ac4738","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180823.tgz","fileCount":78,"integrity":"sha512-HQKI///Q7Mm0de/CXyH7m9j6ht3wptNJFY/Qvu1OjOg11csNP+fBZWxSPSoPI4aVa5r3r6f3InDE2rMUjmujKw==","signatures":[{"sig":"MEYCIQD1EIHmAfXrS/kDp7uTFxsLL1jrE3qY+DeajSoDaXq+NwIhAOiQHvscXdGUbIBdDPI1HU+P4vjMWBtXu3jxrk36xPav","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41204507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbflCcCRA9TVsSAnZWagAAtKAP/1fEGd8iwRg+Qwo5RLAM\ngBvEvEV4SMbDnDeCTSoaQs/RkXugWKxKe+Dz4Jzu3GooYyvFFWm9mCTRsHui\nU45ay8bFia5orSAwwfN+jKtnWwpivhRb6ZRIUhBiE0Z8on/9AWv6MqdZC3/V\nlUKgG6Hibo5+5/GEbaAS1yepsfX/mLP0rJVaSKyFW8BJTdeqVHAZTdCZpDO9\npijHOA6SBRsoHYXcIcwu2uWopSx0fT3xN213RdEaQhlu5PKW7EZ5QfTSCyKm\nynPnaxv2bm6BOJsd614FuGXbLC53wG9uaFVB7H2aeYK1Ro6ndrAMcwzzr0ZA\nBhSvu5ZajMYJeDIX9IjJZlGh07vPntnC+tqC/XFE2bETdcC/CyMIbT134bYC\nwL4Fuk9kECpmAEXb6NNDSPd7SI2uQeMpjaHQeb2lMdUjVgz1CVT2IBgf9kh7\nPXV/QaKQVxcjoVbxQCLB4OS4JllDE10C1MLI6GuistrAlFnhH6jsHGJ5mtdH\nLHjg6u7ncktPE3VxOxMLpfDJXG/lsFNmRpR9DNT3erO3icbYWPTyP7IESOgz\nY81STj9ADiPsUts3Jj1YCbSK7eY6ZdeGDXpQ3fPdPeeFPun+9L1D15AXbYnB\nqZFb17snkNvEF8Wf9rd7ORfw9paRoXi08smXWuUNf4+43LOcDVyatCeuDofV\nwcnp\r\n=U06N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5e8b63cd1d6dbc6b271bc15228a0fabde5ab7ef5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"5.6.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180823_1535004827471_0.11774253149442115","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180824":{"name":"typescript","version":"3.1.0-dev.20180824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180824","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2591d04e971fecf7bab16541a64ca51a55072a96","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180824.tgz","fileCount":78,"integrity":"sha512-i3hARDDnibG78Es74lH5recq8575KvU7fdjHYJU5wg0BTEaQXEDutsKaKMUK3ttVEPtj3Qd38mlhnl/ppW7dJA==","signatures":[{"sig":"MEUCIE0mhDaJXJvee3x7JTt7/UoR+5doO26cLYw0OI+q6iQnAiEA0l/NC4+Ngap89RUqz45GP3P+Va34LV2rVYKe1ngUPPA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41205744,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbf6H5CRA9TVsSAnZWagAAMtgP/jNdj+3R0j3y4WsdF0Tx\nfQS6pyBlH5Pw6gqjHEEJZrEeZnqSnKKfH9TMeulR/1F59dlr6AwhkKuXJ4hT\nq6AMgVX5hwRIDLT73wUQ421NU0dYadbzxGBtRO9LUV1WafiJA5n30UAdzhtc\ndQaEElywB0JBQRY7m0j0yc9GPtP18/EAgITN1WlOKkWlYFLAei/JT7Cr8NaT\nUYBf4x3AUdTkwqCJCjsXx2AH53CP4cGWJOopaTitHK19Z5RwuFkOCZb8EcD5\nfGQ97sM8vg+0JJrGHklcUIXcHhNyYrnkezDHiyuL8Dsgta1WlP5fkgi+uMM+\n+QuUyDzLoFbiuaoetmldeChTBjy+HETfQTHuSWIE9EmVklwxc16cPgKBHdZB\n9K221hRg7eVo0nvLWmgQViF4Sv+1snICtGs5+5I45udgoYKN2GEv3ineHkma\nx7k/k+t19DLWv4DNmlQcYW05wPwKSkHPKDQBkq0c1fU2gmXZgu+7sy7KoIeu\nIUL0qPn9RRmYQzmW4aPhuraYbtIFzzaQNoy3Kwl931KaDq2ZVlUaM3FuGFZ/\nMPTk0b4z85AVN6TFcPcN4M5jiNiXQ9tNXDVo4HtHxpGeZN4KNYB5tESWyhk2\njf74X04mU+xEOOs90rEXhHwg2Tlo5BqtteDj4/b6/1YZaAINrUAQ+MvsuoVu\nki1l\r\n=BsB1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8ba501926a48c244b13ef3c96c2bf0942628e003","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180824_1535091192387_0.637359564199405","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180825":{"name":"typescript","version":"3.1.0-dev.20180825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180825","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"43f5fb27a3ea9b80857a97a6bd5f724f68202eba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180825.tgz","fileCount":78,"integrity":"sha512-41kSTqH1Ldvm4LTVZsueUoOtl4q+EltySLT0YxcHJii2Mbs9369nt8cCfw3r3fE4DYm8VxVo74iplKFf69kMWA==","signatures":[{"sig":"MEYCIQD8zc7DbNqkdps2HyJVZWbDc5hIsyr0b10CPQKuLQSfkQIhAKIrnh4XLDNjrPWQXKJlVvtvbTKEozuckRsRF9vxPrL/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41205458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbgPOfCRA9TVsSAnZWagAA+voP/ikfrmFjWVGuoL+d9FQ0\n7FyrawSLksvvHxr4kNGIVhAWdGpOfYeHQvoILD+b8CTVTa45kocVNu5V7uJW\n07Smsd+t7kdAwymIvBmuAxVlIOMI/CkhtBOEQQZ/ttGPeTC7pzrocE4aDnoB\nFbeXIjycUZVhwIlU5RnkXbHIGhOcFAEXioUc6ALU10or2HaS2i+M1k4PjaCX\naiCQdF8GGvcCbdAjekdaAZKeWLuPDkiWvnHdwm33cYjzfD2EGkLlzZQOw9TM\nO7c4uTqygtUc337uuAObbhOG2unGtHR8ftIbxV5/jHD1UdM62RwsryaiQKrm\nQzy4ADVbJysoEYTRPA/8rhHtiJqdmijpCfDGdbtrhjrtBlEySKhuwR7cVX5s\nG8dBQBTvvHl+vH/37xDPyK0P8JBfXeRmV6+nSKpjz3p1VguAekrazQrpV2NH\ntkLEpDcUwZixQCMCcvKL3kxlTG3h8MeTGCZFEvRKicyYBnK4j7z0qz4sZmsP\n2bgR/b8dCz6QgLJKJEXHX1VVCubTV4/acdYm/TVG2Nro428xxfEivGx04rxC\nDodcErDHdOacMiXuxzMuwSz5loyYJfhlMFf32aA+JA0i9Wbbg0IlEHrOzCYH\nCfNW2iKj7Nud0Gcg1g1uDfDp+rVnwSETMRWm5TDLXfR9MqFvhHgwg9OvGj/u\n8wwH\r\n=BfUC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b5998d9b495adae9a3ba212a2dc4957d9f30beb8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180825_1535177630216_0.6354285243138642","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180828":{"name":"typescript","version":"3.1.0-dev.20180828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180828","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"40048246fd84c587b19f795a25c798f215c0080e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180828.tgz","fileCount":78,"integrity":"sha512-nZJ48bDoqRJT3VEpdsPwMVN/t6ZOTTjKqMNQyXfORzh1u/R0cMaE2WAMN/YnTlIKDZ/UAvoKHZFayqPS+URkZQ==","signatures":[{"sig":"MEUCIEwBRxgUoO+3ffwZej0ayd7CLOY/kJgPEbs/lzY6nAn7AiEAgRSaTZejBtTu6JTs8j6Ml77jypf4ycI5rNAUCFeyhjY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41224906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhOgwCRA9TVsSAnZWagAAD4IP/1G/ChoyC45PyaGX83Nx\nydxg1zAn/Y0OT4E8G1FQ7WS2SMRaOQ/1e34Oc6UH7yel08KNABgh6SB1M0J7\nv9JneOW/uoBS2Fsv0fW3RPe9I6LzLCVIgLDPla1MjM6eG+nSjRYO4MKyBaP0\neoSzqTZiyGlRXKior4iH25WNSJVuCCbAeEnQhCi7oiteUfzC9HU5gaHgHXZ/\nSIuweeFnmpH6ZY4YZR9EFZvJ74726Mr5+vener/wsKTV+cFEQiXreGpAjiyC\nafmr3VwKj1Q5nA+oWQ/CxcXVRI6vnRDSSlwM4EZXHMjEbeUgrkcx5PlgyjO5\nPQQ4XuZ39KWVCLKMP6XyUlJn+Mgs1Jvais4T0snqfdDHgj94Gn6OYEAbLLNQ\nSSq/8Sn04jlrToq7WJN39cjZ1oiI6RG9ToJnUBsUayJa3UgRFMAlmCQ8+28e\nwmGQfmeBRTrkTA0C5miOB/lDdMnoFhEbAIelexrrSPKU17X1f4fI8ypG2nai\ndg3VlmS+0Qq/GUVVoWuoBi9e2KR6y4yaUfebBm8uah0FjkneeJKCo6cqOGfv\nYzjxk0kciSVjb6KuK8C0PN9GeYvnGl2MpmBEv8HQ6TqNwqpR4VpT6psFwYfo\npxLXEvDAU1f/OQ3jzC3tyU9QEvXphhKnaZQRy86wWQI3gNYhB4Aevb6IAD8O\nZlWu\r\n=CPEz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ac0d5da6313a6ee8965bf8dfff57aa00053d4532","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180828_1535436847701_0.16604037020692242","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180829":{"name":"typescript","version":"3.1.0-dev.20180829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180829","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"048c56ac149e7d19e2b741588b1f4d0b05f1cd60","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180829.tgz","fileCount":78,"integrity":"sha512-ieG3un1CaQTuHf3NMvisNlCOpRD48XJ+PrUuDRjpDpnpWQHQWbQ+dOI4F/wp37VTxLqpuIQ08ORc5ymwDuA3Vw==","signatures":[{"sig":"MEQCIHKL9m2pGzdhJgtJHOCK095oOGht8Cl+ZXkZ+fQEnWghAiBxTAo/GqH62D2hTjOmJ18NmkA61/u2NUlefEEbPzRiPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41296846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhjl5CRA9TVsSAnZWagAAsngQAIJ2Crnrta0cqUW1xGWP\n3gTDhbP28VzFunvXGBpQnedfX/+aPfRq03ZXak721uQrTcJurlToGaCYQ333\nyQZxIJ2Sz3EzO+11huV7J+TbTcxX+0s2DhqOrywPU1iNCbU2/tzGKt/p/icy\naws5hqYU6UBDl8o9kHAoi7vu80DtY98LZO08glAkssko1ZNBgsUDY8ms1vul\nzpVuYZWKRotvxh5o+PXsOOyC5ghloxtmXMUNJF7z9OGFGJiorfBVISralOxc\nsBA08Yz+bzEd3WSEJeUYjEq8rsLjcyudlO48fhAnjaNiwA0O14gszb6z7c8W\nCKTsMOWgjjlju2mvNCHihNf3ztApCDpKW7mlHrFLieWYMhp3IOTTttPBVHnn\ni1rN57pVSJ3kKitKY9hK5cCAaxO8uGDHjU00orx5XDUaVJ5Wj2E62twO2SfE\nfzVFDiZDsQGJab8eK9+UKz/47e9kbDRmr9t/wkuNfQJWKAzqOiReMA73yQes\n3KjX+Wmz0UGgybyPbezNgHgtPAJz2womdN08oH1uNLLJcFnToOkPeMtxVeA1\nx96eExXhnYNTbjjPT+8KCsD5IbUOEFeeahb1LQDl3XGu0u9DV8eSyletDoNo\nEWNA4/PkW+GTsCcqtRsahJSAHhSAFnxsBv61DnwAXrIzzB5lO+ddgCJK9Yo8\n5dna\r\n=026S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"30f611b0558c3c594e25d0280d91567e26c61ecb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180829_1535523192782_0.678422178855802","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"typescript","version":"3.0.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4853b3e275ecdaa27f78fda46dc273a7eb7fc1c8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.3.tgz","fileCount":75,"integrity":"sha512-kk80vLW9iGtjMnIv11qyxLqZm20UklzuR2tL0QAnDIygIUIemcZMxlMWudl9OOt76H3ntVzcTiddQ1/pAAJMYg==","signatures":[{"sig":"MEYCIQCgfuwUQgxFJ9M/jiFaI/7/DAySqj6CB8c5UxqCmU/9HwIhAIuv/fiCfllCGDV4qCVY1WMtjEBZD/BF5XAvrh4oiDtk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40980141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhxc4CRA9TVsSAnZWagAAymwP/0LigEt9IcAK+b1iFDLV\n+SHvB6I5SmmMKMbCgv/AGNuxUB284UW/nmxGC6LyfjEB1HPwKq7eMPEH6wdK\nGgV1EKLxOd9jq/nuyzwxf/BmWp8r4pa2DEE2BC91W4cx+iA+1xZw1lLiMc9H\n86+aT8cnfNyYjUPj+BvD1DOoU3HhYwfNnCgkout3FM0lufE/wL3y0tYt4lph\nToA1NKCie2rz9FaI+egJr5CgkFqCKZ1jXK8tjEoAqFE3VO6mGAFblcs44bGf\nDs0R3agMl8SN/lBwRnM7OHDFwXsdDg4F3rX+/VYFkoo1kXJjzH+Hlk1syy+f\nHBMmgTnPheSZdNk2oiAWeosx9oQA4lUOnQfP2yKtV+5sl1m1IF4/X2Ia6LDA\naH4ux6QEF7VR5tXwQcjUrgiy4c0DvtzBrQ4roPxJ3TG8wM9Y/Qlv/npPf71X\nK+s5ylU6afunqp9fye6C8wUh/dDFgrMnkvSQtw8j8hdsUSZpTbnFNx7oOJ0T\n9dZ2Nsjs0BnKjEUsaC/gNNThm4pPx0yxGxEB7xU06u99ecbu1XwR/mTQxMcL\nT8G4z23hyZOlkym5kNyXCxoHmcvuJBfwAzhZG0Jtk0rF0Znucjqqykfh81AR\nrFgN6LpDu/qRQKdExc0Mx4MP/nrW7b88lA+XP3jSvNRROh+O3TrfqTvbl+Gi\njxMn\r\n=ZG6a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c698baf5fcce062f76464717d3cbc69c0717a1de","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.3_1535579959632_0.5790767140978528","host":"s3://npm-registry-packages"}},"3.0.3-insiders.20180829":{"name":"typescript","version":"3.0.3-insiders.20180829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.0.3-insiders.20180829","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"763a2c441800b321e542d91436246704ee4c6241","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.0.3-insiders.20180829.tgz","fileCount":78,"integrity":"sha512-kSoShq6Cm8+bUaZQuvMcdIe/DPaI6+nB5FK4DQW0n+nimt2wNPY7rDa6ekAq4AJfaHPQyz7QIs24zMjcOSEOzg==","signatures":[{"sig":"MEUCIHMgu9/CUslvUHYCUBfkQctRpeMipglS73p9wuapdaPxAiEAzegzVSqTU6IcvqkwLfcfP0sP1+831DwFXZ3/+dl3BCU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40783557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbhxpiCRA9TVsSAnZWagAARTEP/Aoknnj4mxU8v2Qi1LnM\ntEBGczpTuuswCIV/00oRwgR5do/9zRHMGn8fduMdcVKQ/INBcL0gq0lIfpt/\noDIIy7bo0/Snzf2tQq6JZ0AEZSSavs2j9MZ4P3fbspPUm676IfVMUSYlAoX4\n5xD+UrlTHK4SyelVwYZp+9+4amLHrcexYQ8ApQRgQfTegYa10WIw59atHJ3i\nZ7Mez511e8pe8G/m5Ae9YWc/sPMTYi21ECLwlSEQw7UrMGvl2XNF8PF+Od9i\nzqWK2uU2Kirak1ZFb01LZoglkObcpnxORrDD9Vi83MYVyjwAA5tN6KlqQRef\n3J6iX/KqOxioglV36IXKynfyEQxQty1lzeyewZi2PJ9RkahDeu8Jeny1uF5K\nkWGOp/nq8+4UWwmgOh/gGNMs2XZKmxwpA7m7TE6wO38KThC0WWSMAPTAYl2x\nNp+GeZ4gXE9QfQvpfFVMDjUhRNSki/jGy4RyodjNRFW5nn2elv9HsJo30hID\nGbYscxjaEUD9muFBJMcbiieTiVjDUSVFWoQy+4OZfdSM2l/XfeYkeCnfeoAl\nVaOvffctn/4WIFHGWqS87qtmwE8D9HZII2Uw9n+0BbQ0gFzXuwaE1Irh62r8\nfcnMCjxxyg471QWMZ36rR38y1tKieuscUF5KGoZE7B+shjAI0ja8vfVxbVvh\n/1Nf\r\n=YHXF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9faffc92d21c57835c8a270044c7e7d8f8282bb4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.0.3-insiders.20180829_1535580769881_0.22891459255050517","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180830":{"name":"typescript","version":"3.1.0-dev.20180830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180830","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1dd010ea38d475033f3586888d1fb4e37b2b2463","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180830.tgz","fileCount":78,"integrity":"sha512-hY8EMVGF0jWm/D189KQEw7jIC84Nf9ZvUEwcD8DJCce8ft9C2kzc+dpOJiHbcj8TiE8xLMOSgfrmy7Wk1UD/+A==","signatures":[{"sig":"MEYCIQCm4ay5Tl1HfcgqlcUGxCNb0NRSrTt/ITwZIwpj5IZnngIhAPPRrQ1FB2TzuZwBmjXyTjC1I+/cizKNkBWBsz1tB1HD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41309296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbh4sqCRA9TVsSAnZWagAAzX4P/1HYbEuhofSsiiGrYo3Q\nM9AUYSjhi204hPgAGyPrXxB7rhcYy5WlrOSRLPKcJIz88jtYzt+nvoMm0uuI\nx8ARJTt8zSMIAc+u2MrdTzB1owehaQCwzUsUpEzdFtfQDbBdXxiCEP1HB5zL\npyQQUbIV7yktqfvveYTfGu5g3HIoMlBzked0NkqDJEdjQxIpp8V76PAlSf4V\nw05dy0Ef9XHaQpzC2f6M+PwfynG4bvMZi9LZtThCRFerghlYp0KJH0pGN3yo\nLrzTowM7XMISNt/MAfI/FrrUd96jJcNI5AnzKlPwGVV1oY14qVtKbYeIADBr\nCshQFi1/ICNyM86q/QIhST0dKo1ZARzmIjnVvdjWm989ZqjiUzM+Ixy7XoN2\n2FsVS07y2iUhAgaRCbPd6StfWGVBHekP3fLuGdLycU+Q28hTfMMER846gikP\ntDvzLkSc/6LqnCqEAD8GbMrbCQLDLv6+N2fSsT/KVEpfkP/Fiv1HE3htbDiC\nHk5o9dhtKP0bgwV7LyU5RpvtankmbiZPZY+eby8BTGi+3I0sGyqNh4i8onjm\nu0iRQJmQkBbsQsrswyA+zXR+xjCHqEiMzgxaoBoRKG5CxvQRtt0RS6UgRrUa\nM37UhxeHYYdzel/kL8JOlkGgiQagRlOjTG8aYY7CsPZMd3nVqV7Z0WLNP43N\nUdk1\r\n=JyG/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d5b7edba8a16e6f3306e13bb5a4942faee8c93b4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180830_1535609641756_0.2385475510265802","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180831":{"name":"typescript","version":"3.1.0-dev.20180831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180831","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d1c0c715f17368417cad96bda042cf26d56f3d61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180831.tgz","fileCount":78,"integrity":"sha512-VFEzyWbWeJsZNYZ3liI3xHRYcD67NRIYcRS3g//P4EbccW07Et6hj0FBjXKKmPus0EF0CZYQceAYP05S9pCM7g==","signatures":[{"sig":"MEYCIQDnryJNgeBuK074XMB4VeivSTnWjwi2v6+7CVjk4H93nwIhAPMAalbsEwLxs4kfJjzlw+aF+rqOPQALfgSzE3Bdfnh3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41316907,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbiNyzCRA9TVsSAnZWagAA5p0P/1/rV4y5XLkvAHGBe1cb\n2GaQGS0cYF6U+UMW0fC/C+ikjKOYY24jdUb1ebbhAJSyDspThlJ5hYhB2uO/\nkioHTffHmPMHa1APLnNt7NEW2ry+Rt/Fs1In6sir9Qw914utcfElroAOR6i7\ni2U8+AkflX/QjY6fcsdIHh/jKVfNmjpxd7RInM+IPHdgKFf52Cgh9IwbAWwt\nnd6XgLAh3uUXNF2tnJAA/307CBV4iSD1G3uHfi+i3JwMm+pCzxi4dVPIbKMB\nFS1+8j5CbAgUzVbhBtr/daU0vhNQ36RXzFEBkKB1IKlwfKuV7AsqX0VNCpfG\ntS/9YsiSKcaOkYTHwB+DUrKcpQ52n5Q2/cVyG1XxA+SyV45G3BRiNUiGiSSr\nVCjtXHWRVt9UYnNzLxxg1fEwi3E8aZGo/RMVioGUWkk6ynoZkFYe5ew3n1TA\n59FJwwdvO617cjxLtO8YDjWWEOCjTxSqxGhe3oGWIpZYWfOcxOTcP40rb7If\n05ak3D0GOJKGeRAmsH6S9fSKM8FxFtIrqpAItfk6Cmk9ZW9JReepDPloY9Xu\nQ1jWzgnQCBhuqeosLmKSDI0bKzloNtxkvkgnSGvGMYHAiQS3Fe4lR2/u5pfd\nU/81jVL+21vgOl8y7wpZ9h7WYhH2uaktgnEZr6CNY2xWxpvy7tgMznVwbJZ2\nGw4u\r\n=ZkZG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d293b679f69a3254761dafa70136efc820a5de6f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180831_1535696050319_0.8114346096656122","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180901":{"name":"typescript","version":"3.1.0-dev.20180901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180901","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"732cbb9ae31e39930bdf05a855868640609b8c83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180901.tgz","fileCount":78,"integrity":"sha512-pKlqTQEoTPqnR2TGnDdS6taNQkwnbnrXxWJlAij1xa21n5bjB8fZ31s+I2Qc/2YztyDgyrkmMDm+kjo6wyRY4w==","signatures":[{"sig":"MEUCIQDYV+m0MJEEhL/RsGeWb+ajZNcw+7xk9adiDXFL6rebjQIgImqlDPx8ogHnoLT2apOAKIHOY+iJnUv5FYNfrJEMPsA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41319144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbii41CRA9TVsSAnZWagAArBwP/iuarDLu4RZXpZ8VoroR\nsAUKmmLSrgy5EZ6eWrW1gnVD0t/vbw1xV/O20ZzGxvWqyp22P/eeiAamnrYV\n7/Il7lgVXSPtddWAvH6FC/QXPXcWnlgeHHFJlgiqdRUaScew5zo7oQJTRanl\nG7qd8Tv29RWW4qE+o6jVJjikNs9yWqYa1gBllVe0+YnhiDTp/D4310elmRS0\ni57yCqeJ8iEcYvklReShEOnWOeUzG9qIG2HsszVMjWAJ0wS3QAwk6b3UnKKd\nuVaBRAOrNQL16C/f7VCSrKf8Mr5v/TwYDRnYer3zu29xE/ZZs5SntQ00jkjd\n1Lgh1eulNKGurx4zpmKX+4JhemzAf+oHQwsj9eeOo/Yu7BQrJukGX2JMfrHO\nEzPYX+vfn/NCt1FP8EF0W6BXjbaNuj7aL76y3fe3CDc40m62FrpTxHW73H/l\nzkQQ2E5tGn3qP2hZvGINu9X/vv9QaBQowHhdvX0GVUpdXLzR1ThF+ixWDHaF\nLozG0O3whQOC79m1/yKKJ3Yn2EH/nepKAcyaMHykPGrGeSOuh7NUl2a1soEC\nawywVFhnN+tRL/MXvRYMCnX+Kq8lNIIw8xuwnpYdLtgkj2eB1w+yHLYO/ka5\nVaRvC8lyNGCSQfVLo2C56WhJyHwY9AtFo4wIuEL8XV3/1mBimLlpAT0KtnYv\nYqFO\r\n=UU8s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"45101491c0b077c509b25830ef0ee5f85b293754","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180901_1535782452814_0.41580302998563123","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180904":{"name":"typescript","version":"3.1.0-dev.20180904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180904","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"90130204548fef2ec51901657caf74ecac1e3100","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180904.tgz","fileCount":78,"integrity":"sha512-S66rC/Dd6uytkOwjl57yObP1+3FUPZCB4Ljhwku47aCIN9j7fba/Q0DdlXhircaHTdMa+OextXy+gbTSnCHJpg==","signatures":[{"sig":"MEUCIDigTc/xPIfEjw4fzxwZwDIVeuSVZbz9h8JUWKfl19+SAiEAoAZBlSsmObGA/ABQ8rABCJgUAMXZ87tW1OHDhmskymM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41326444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjv/+CRA9TVsSAnZWagAAE9gQAJCbl16ebV0HwRBbV/CF\nboSju4SZVNp1T3sfm5RL+dAUkz+kSLKhzRWbAN/oUqWQzEf/XRUGWepXUVxu\nkQ+KvKXmzFzPB7Dv9CcAATSN0b+jlx/0BfTCal2rExt2HeKpITuIV5fG+0cP\nrSB1u4zIRrVUTQfU0LqSbqLijH5N3VdDYNu4VBWEKE9foD1ddzVT0eiiq2Ei\nYVTeb+w+T31zHxrKM3mHG/ZCcdNmLLWLFa3PWBzs64cuAjEt3P/+r6R9NxmR\nkgzDS8nvM/e83GqPOVXvfJdBLWeLrWTyaYWVVwlZYFpzgjgNxp9F//25Tcx+\nnYQTOlUHx9Dn7iLy7B759WCDAXvHZdfr9Zwph+caoC/idNxeBqXKxPf/2rib\naKSrnNQm4uI4JbRNzgV55/PMWW18lrWumO/+WJWsr4LQ+eAIWY92S6cU7B7n\nCuJeAq5UTmvEln/evFuqnmuIHsY6oEmAZKi1Tt19p73uDyM/TUPuMDkBYnNI\nr0wjjyDdqB7I9zBCbDQGw92QsOEnQ1TBbTd94x3vw0ac+jUp/0BW04Hx8Qe+\nLLHNqdIB+Oyp1KFOBjwwFtWFe2IlP7WEznY978O4y08MFLRO1YMy6fO0P901\nTTdhuDx+07o8lnm2kt7bEscgZhg8dFe7R9abdy7G8TcPaWlxa/mdezaz2Rdm\n5DCq\r\n=uoqz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0ac3a0a9375854011326ec6ae90e137fe7b49298","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180904_1536098301346_0.4430037312102191","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180905":{"name":"typescript","version":"3.1.0-dev.20180905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180905","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9e144c5e60d8fcc0d218274fd545c0012799823a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180905.tgz","fileCount":78,"integrity":"sha512-NSyc2nL9MkdJnhUTqTnzF5eIqdz2hxgT7cpmd5lNEcll8eNxVQWJawrFCi/NytnxUjrANNRas5fW2SHOuZnOgw==","signatures":[{"sig":"MEUCIFNK2dbQI8sEgFK/dK3VqC34YCjO9qTh3izQndvOP2R0AiEAwB7INTCieEdk8oG7huUpDH6wF9/S2JA5Ky2OaVTPHSE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41350448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbj3RkCRA9TVsSAnZWagAACRsQAIucIZhh3erqawFChy+x\nxXGnjzJMWadm1ZV3RYy0qlgm4SsbaHg0BqYfPWOJ5vUnFtssOiEGPYwhM/Os\n2jUxDfMwR0prTehktLbMFT17eWCVSd/dr9/5JDWPa1AY8qnpWDKukVnCN0UL\npu+q8p0EESK4dKULFCv5FeEwrBlATK9PXA6tBlSN3BjqAa+eyq72mdxb8cUf\nDPbIw52Ll6rr6eKbgummkqCmmJ2J8hV1bgDul4iuv1TxYJZc75qIZeiGaZUv\nNNO76cEN1G9NN5gAan0l6a+suWGKuiZ15zCcUtwtmS9t9epnbNLz9YMMfkYe\ntruTpbyhuuZWknmohm2MgPBfmuPgjEdwHdK+tLgFwk1wyCBAEZAwVDpue1eE\n+q21t2IMYezVLYi3UfvhijzWqwJLmpnruecNJeGqmVgviVqfdUk3v69EqTDZ\nxlUC0V8Iec1A3vVUL3tW9o0uLVewKUodx7wlVWZfhasjGZWpgdMqfwPHjLb3\nwQN4ydsX3ZjB40I8lY6S0enzvmDC2i+9FM82ngql34iJiujmYczKQZojDg9g\nB8LXxefF77mIP1JYeWC9zQeYIdqlUPQblgqIWmnwmQXI4h8xeiPGttE/viWK\nJVwt44vcg6L7GUYP5LxPdgzwgmYJiN+WeLcS/D6PwAyT0XRlPrA/8v1KvJUl\nYdp1\r\n=u1Yy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4ac8976750dcaf3caa5d6424d2ea00eb916feafe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180905_1536128099154_0.7830276172860369","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180906":{"name":"typescript","version":"3.1.0-dev.20180906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180906","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0f790cee67f9266fca77d3b0922b06c1d9d2bc85","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180906.tgz","fileCount":78,"integrity":"sha512-WnRnaTcZpsOY4HAf33n/yiv1T4ifylgrj2uO620M5KPmS5hwzGGjHxtT1vOP2tOgD2yrO9UvmhlSXE6ymYU+WA==","signatures":[{"sig":"MEUCIBxLvzIdP1UjhihBeG5d0ppN6/ZFGF7V0MHW10SUvb3zAiEArWrM2IfhXAc4poDMh+nfVTEgn/9jV4Mds/vfSWjGUFs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41385100,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkMWqCRA9TVsSAnZWagAAb8YP/07vqD3QqP5DrcK1F4oT\nLLd+CphzFS1HrnRdum/xA5tAUMUUAm7Q3TKkklz48wCcIiY80vv3NrOcDmf7\nsL231F/kOMKfT9kUY4wg1fzdZ/v0GAcjYpjc4f8Xm9jXHpjQAuR0h+sqr14+\n1vZ+xX1JWK4XnB0sUjGRYQWWNJgsRosXa2ChlDjSGQVyJElGxVPo8SG90W2L\nJLZPkfng7aLL0thOMuFaodCMuuPT0WxKjUhfRR6IkQZjJacDMho3XMkxl/kd\nnpKYQs5S/WtP8o0uNeGeyUYFAi0MWWnrQrdFGV7+BWOWpWCknGMsOVJ8UdWx\nm283pFzyRlvtDwmjAYJNhWaHK4WhY3VOMPyJTM1SV19b3DtCaIC8YnbpPtAb\nDFAYgn01YAQcoDKNxILeRqUl2f/jMuEBd4z9yPiU8/ntXVwt1Cc8Q+t5XHxp\nIhRrIvXvHSAOra7RMuQPHGFR6k5Z1r3SgJ8VV4ijbWMCTxgzxF+Qf3/7i0Lq\nndyNE42Cj4kRXWaQ/duBwhF09aiLamYOR5o2+wDsADhuCm73FCCSHLD4SnXc\nUlGhvqgkicayg1jRIlXVFtQY3k7OFIJSw+vQTh72vP/BNL46veRa2+4TUn6n\nEBQVOlqul8kh9gWhmvPcuui1/ZdUbCfaGnYqRkdFxasOMeVSQRJT+kecSHIA\no8YC\r\n=RvYl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c62920ac81192f9c68fd0a3993218683dd825395","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180906_1536214441060_0.9669938845596007","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180907":{"name":"typescript","version":"3.1.0-dev.20180907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180907","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3a56e9934287224e8dd8d1d0329f5bb65d652436","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180907.tgz","fileCount":78,"integrity":"sha512-IpE5lIbY+wa1BjWGH0Hq0cVxu1h1/ibJ+9f5hchMDKHKi3TFRJ5pGhuKTxLlsIISkzLn8o9JJa/Wy14UjHDMJQ==","signatures":[{"sig":"MEQCIFEPMXe2Q3OkyozraCk5N79fv21IYm1/tyKQ3RZnrukMAiAbogu1+1m5P9a3PhgN42nxiQFc44O3xO0lacw/Lo/ysg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41472149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbkt3mCRA9TVsSAnZWagAAEswP/i1jFOOwD+UhzTwH286u\n/fVsYek4xWGUgBHuOGsWyfmhJadmuFKH6zetSj7eGLu6cMr7/Dbkz97RL8LJ\nv9Zgd6zRTtKriZ+kGyakrHiwWCsVpBAYyxPfc1u431SkToH0EAQCKUM9q+qo\nXE9IjEhsMZiL4x7lZA1SMRgbWsjTzyzJhWdWu26FRFCCB7kuLebA512BrrAk\nrRmj1VSVbXVHNOr9IUICuYx6BNz83lTVeU/olwZJ7pYiFmUcRs0hpkp6tbMk\nMWG7m7XgNDcYx0NzwHeMjwbhgd5jXjHYcpnlUCWYHY1mZEWb5h9zTFQMAB6m\nnk0LumdO2WpKHTUwGrMy5/3qHI+5WNN8L1639MhqsvCFaZpvAtVJsvMxDxeB\nGMDGuVR8ugxp0iYg1/Sqw+XmxJL+NgUplQ57tb5mR/0ZE1gelAY2Gt/wMKvS\nOuWeex5MkqChN4yvE23vlTrZBgIzL6Xo36Yt3lTOtIbawHBiQydJjr5TYowd\njDQM6GTZnyZJFw84kOcJW/BlYoFg5BaqoQVSaNR4FokKGdVQHFyjw8ORuSYg\n81WXA1cC6FwyqWhB2pfBDzeklKiPHmpaSTwWm8YcavJlXhEw+3vdbuPBubvC\nTS9dhglILvK44Fgvxm6vJO0jNw1NBgU3P4rbAuBmJpKPpXXtqkpup6cwCO86\nNnw2\r\n=ptWY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cbde861af6324f03a574b1bcc4f241d38fa17c77","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180907_1536351718006_0.9660768563659965","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180912":{"name":"typescript","version":"3.1.0-dev.20180912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180912","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f42ab06efbe71d110d24fe21a6173cd00e8eee30","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180912.tgz","fileCount":78,"integrity":"sha512-7OLNQLuSEZ19tc7460AI8aGKf2ettDoN1rfflUifn2qFkuoe6xIaTQ+Qx6rHP4gu+BhhD5CJ3U9rsGdejgwJDw==","signatures":[{"sig":"MEYCIQDLwG9INDVQaX2slTLDatBFMFvrgYh+K4ALt84QjwIeBgIhAOz/Dmma+7Ob2dCFewsyJPM/CwiWsPg7AOdGj/bYaUZR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41671947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmK6rCRA9TVsSAnZWagAAj6oP+QB2R4G3uFwsmwSN8gOA\nJqHFUN4EmmLCJQ0cb/bNdutuass31RKfu9OMb7PKtTLu0yiGEo9w41Pb13/f\nUVgG/P5dsL4G0wIz6rUL1nUuoC6xioScSI1YS+ieUVwfxQ6Fsl6xEw1WF5gy\nOgDhfeLR+x+xrryMnffMJFkXYSyGV6ZFYuLLmhVxoHy72ACSqwpx52cYDVaA\n4Wr937YSNtJLrqgtvyVP5cOu6TZQ9XM9gtIq+zDOdDV7nY/c7mpiT1N62Gdp\nUtRmWiqQDTc0pRSo2/A+IrRz9JtLhok73rZyozoLVoQNdYyGzkTxC1j28Lp1\nr42UO/kbaCkkV2nlvNqyUPmSyIulNz15T3I3EXdDynMm+eque/AGnfVXVmU2\n1s0Y65Cs/hki+ErcwhAPNGA4aDVud/iBEBw8GkRRAaKahUXkGjUOF4/qy5yt\nNPfqq8zFuxinbDd9wHr2TvAe5qa/tohOEfyLivItNxIiWRzI/m/eImhgy0uG\ntHP75+TLN/qumQy6B0YD3nLpgQIa7B2xWx2Ut+NHqebPX/wDwJMvIlg0GoP0\nOnaMh8LRcUWuW6Mg6WZaFYHDbCJOOXL0jLBY+ixcx8btZ25zhECqbSLn6uDO\nKKo8O43l8Q2Vl/K6mrmrD0ghEumQ8dnnmjxiJ5qWlZtGjSY3p6+v8CCMrZPu\ng0xF\r\n=NUwb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f2a1a428ea99ace495a8ca769b0a7c857ea6486a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180912_1536732842391_0.7180915437976743","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180913":{"name":"typescript","version":"3.1.0-dev.20180913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180913","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"48ee20a0096950eb0e9dff008f2ba04d9f7c0dd9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180913.tgz","fileCount":78,"integrity":"sha512-s/QlV3XU3XW78eU1lc0o4TRWxFj0sPcFQ/09QqId+W3YD5pbomX9lBhost6mfjzoYUHHyTFlzXbOBFip44buag==","signatures":[{"sig":"MEUCIQDMr/txKI+hTc8lU9+z/0V6JqTanlaa/k0Kq9Q9mXPcjwIgNIjyaEUOSqlcS2AxDl1imJr0yRPOuXUE13b0E6KXWoY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41674149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmgAsCRA9TVsSAnZWagAA1csP/3A4vabjE8vskZsJRwiA\nVf8PU+K3H17Yi5sGc129a8ekVTtj+1Vk/Ju1bkcQ3g34wj5V/1ZvDk1en+/F\n0HNkIEAsmzY2g8HLyHEYPiLKpvN6ImYJoNZfm1K7wH9xAXoeNU7MVax0L46D\nTWHaFUx5VlsxSI7dVj56kNGe5QILjmVFWfrI9YiR+TugdSIf9vZHeFDXjrMM\nGjeoSOcuOtMdF/rU+25KzaNO38eK1mj5HC8fORzsTCDrp01pFMMSP2+MJxIN\nQdWXh+5niMeDcDqym0rYhJOMEfGhaY+f3y/4927hWQDbyn1K1xCP3u2GwCVB\nAFp3FgJlACkXx08vtzsu9Vmtwqa02pePujLwkeH6fep1RiYQokUNBmAq2doY\nGdmglpFssezvC2YDAXbAG3YuoOSGk6jSTk6Ew4yj+5Qi4NaD7fdaupKyvyrl\n/L75HNF//2g7bZaRYkFR726JDo6UFjQKZMjxZwWXP9F0XsRFciDaH+xGg0i5\nwOuRkKZsJCsLxkCjKyGPpwuMCCCkyeELBP8M1KXukXp7wfljX6sIGCyDontH\nUB05cFEBywJHDt5RoB4/FKUJn3/oqVfNYs8j1/yLLoZ/r+a7OLqTFZLb1f8J\nQQh9w4ElH5dCHMTklJSaodsnWmtS5ROgqrdohtkZdyLIRZyJqa/jsnJKBuYV\nBUT2\r\n=MEFT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2b888c30f9a86c33d95cc9796baec1b3a3e29091","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180913_1536819242797_0.23794870551507197","host":"s3://npm-registry-packages"}},"3.1.0-rc.20180911":{"name":"typescript","version":"3.1.0-rc.20180911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-rc.20180911","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"73654821f9064dfe75a0440899ff0e2238338584","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-rc.20180911.tgz","fileCount":75,"integrity":"sha512-q6WeNUmkB6GNKftShDNLr9/aBSCVEFQ+8PF9/DwF/EswfCj1l6BmxtDU8s8eFlmgOmwOqBLaYdut6BEjvnzYVg==","signatures":[{"sig":"MEYCIQCYBDAcNAplyZJMkpobHFVn4tTiinjVfgHBu9d5J2N36gIhAKais0dwmkP2TAagPk7DKPJrJ0N1ZhA/0GwE4H8NpTei","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41829657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmqPUCRA9TVsSAnZWagAAgWsP/1r/9sskYjOyWzdFJYR+\noSTCfVVIv7DYZvpGSBH52SZQFY7ZL33lD8flfQ1fDeMhlHAceFvQZWq5Jox2\na3EqJudWXVMLUdREU79VicQ2V6NaMikanX+PJH8c0Ew5kv5Hd7eJfs4jANPt\nn3klpidusUrj024IbjZAybJOI91cmd7UcUG/ufsFvDIhnEcY4RtWrqNWj7E+\nGg+KJPHeS2XuGVmmT3nyfOqNRC9zFolTvQCDZkH+nxRTlsXXPBEQsBnVBZc6\neSuvqSW46NM34INQsrwmW68SruVORtbRPTTTWZ9jNARq7FB9dRm7I/eb/HDC\ng0v/b+4V2Cpd6m5GNLQ9eP88DzFherQo3EogHzz+yzip6xqWa84j35jBMpn0\nLUGfQCd6ZdvX6BYdRv+WQj/2gES8EjPcDX4L3dCu+H5VgU7nVSQAGHHGF4FG\nZlNw8qJALbhRgNdiOTN3nRLczKDN3z4diqoZzNKXb1961prJ43EjuKAWZjkj\n9CTL5OFNozTk/mfsIjQ9nmZl/H1I8f4g98Qt0G9TRphBlL32N3dn/oY7ZNJZ\nzMkT4PBpLIvsy5TNef59YPlyuRxawPOY4C+o+rgyhwnDTrFgVPUc2SJokC0Y\nsuUqi0hj1Z53sUFFX/ULp99LVaLIvqCh7HwLbMRH22h7WBQ+BlOGA8IHM2dh\nGurL\r\n=W69C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"40b7bc181d830da29de855a56dc03a78b5219285","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-rc.20180911_1536861139738_0.056557927875404035","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180914":{"name":"typescript","version":"3.1.0-dev.20180914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180914","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cd2db3b6082f0965ee850726a777b58a851986fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180914.tgz","fileCount":78,"integrity":"sha512-7TQab4/oao62nn+tMk96LTPcVXRdiWDIxr70GqcV6o0iy6W/lPNb741tb0vmBBujFYiqg+dXASNWCKd3XLVxnQ==","signatures":[{"sig":"MEUCICodA58F8ONX5si9xEUBqtugjqaM4iNxUKDy31ciIT/GAiEAm1Dc7FYTYUlwrf7H4/g9QO70nB8Uu9vwnwU0Tq/wC/E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41675763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbm1G2CRA9TVsSAnZWagAAg5kP/idzfjzTrHxCndkSmbqT\nRKbYtU0cHfDSoVe3h+EHHKWEOGToXbRMUUnmceeposhqKSk+BciGL0cGEt6y\naPxeQpbFv84LhgAMgkL9H0FkWma2hZyeL+/t3m3j9Q6PjhgHysCdpR4PgHbB\niCNtk544F6DWX+gj51aZz/unAZzv+i5DY+FnzSFaNPUDPoJHKduqLRseHVSb\ni7AaM3GhwBlHeC63qmoWwTP0A9xY6UsRwrBT5Glhd1fSu6JdlSNwFQbJ8QAm\nKbcoa0SOEDbWmE9YkteJpEymkPn1TEAVeRPgb4f78tKBrFMfJ60Z4+xdowV7\nZVXMpWZACxakohR/5WpPbePSAk2RRr0irKw3d9fTfrUCUlzqWaynpWfax3Na\nQYv2gWAJtlgMTdiLOgYXNZhU1wGhMml6bKLED4nxzGWRnnxdi507V34VL+Jz\nZYPj+ghBOcw2c/VC+0XoxQzGS62uM5L4NuFt2OJPdchU94fD8PDlEEIzKr02\nKRxZX1oA1Pz+ooqE03k575MbxXXtu7US3MEn1l7zjn0TTIMs1NOAvD/BuU88\nFf9xwmKWM1b4gFOIuEcJEskCxhh4UIUCf3oPCsZ3tfRK9AqA9YVdi2YHFZNA\nOzLz5UGZh7M5tyGF5OKzvZ382iydbX1f/tKDxj8/mrcnpXZkR4iXxNJQ56jQ\n2rTx\r\n=UWid\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ee7d0e21dad5ea53be7170e06a8636a19c0d8d6d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180914_1536905653367_0.9353027269641978","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180915":{"name":"typescript","version":"3.1.0-dev.20180915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180915","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"808c5f333003fe9efe650ff3c4b89bd01652414b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180915.tgz","fileCount":78,"integrity":"sha512-zfKgfXwLEt6LKAkDt9EI4sULt1KN652kvxWZ4WS5o1eR4rgT1xOCyJCXJlXW9E53RmLZgi+yJxu71ktw9QxggA==","signatures":[{"sig":"MEYCIQCdsN8E8+r8/rFPbfvntLNwVmHpxuz8vCEfVSrth9YeIAIhAJCVNue+4HqnnLxjG8PoMvc0aast95rdPeX4aJMs8g8+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41727513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbnKPMCRA9TVsSAnZWagAAhI4P/iQfqZg1u1L9DAAKFAbZ\ncaMFuttGfAsk69z6WGc1FLprl7crey+GNilxwZIWfSw8dkSNv9BdCzn9t7bY\nuwqvyXdMDfHV96tcsJI93q76BvewYyuCa1gBknqge8gEJigldwcTHrqDM/Uu\nP8bAYb5kwDQTFUlrf76/mZS9hexlgXLJwsJ/lOZImnJojIxi+I8EQV58Sohb\nIwoBzK5AGh1YmEeguzJcRYLVd9+rD4u3oPBFqnl3yxMgKrK28m06q0HgNcC+\nZZ/w3Rn0db3JHIIOIhmOPjErZ2IJn3iDmlgFpvUqHBpb3VKDY2Y646jU/nO8\nbr89eXZHgpkJUi+YUewGKlNN9GsFT9r8n/N7DlfZtPP136e6Aae4d7du5DMv\n6QG1e9zixMQ5oS4qM+mc5wSogxpPhDM5e1btpzGJ37DHQB+EQqnrF4yeq3xJ\noUuKgR84VxFUa3f4ssbGTKFIKJYZb/VrJsbPdjLMoYKPiEQvuO6xrj1op86G\nOYgn1YdeaJHWEiSgLkkYB8N04qnqHwZReIsHrYlqkjZXJO0dFL2ZaHGm+3pV\nJ7I38gC1SWjy0BDWoqO79qz/fOyf6Blk24zkX4F2hETRy9sjoOYLR4FOQs+x\nveMDaTVESlfXJ4EaRtK0zJTmo3XrW676qOitZegYCDYxiKUb2lIF9gr3hPhp\nU9VK\r\n=DjgV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e4718564e5b2c1f2e7bbef27fc480fd8172dfdc0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180915_1536992203520_0.018680404293467845","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180918":{"name":"typescript","version":"3.1.0-dev.20180918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180918","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"17ca3de221cfef96b5e33c5444b0c9ca1d104c02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180918.tgz","fileCount":78,"integrity":"sha512-4Oc7ZP8lZo+mqTnD0PEbp1UxIv8g7Q11o3I9fw5+2J6GWykpuxyyheZH9x/VaRZ15V2qKEjEuouedqd9GHoxaQ==","signatures":[{"sig":"MEQCICigKEULSk545a32EKVT9tR748oUfSAlFnozaERd9lfQAiATrkj6R4uCF+Ynaox756nANuQDSW/lZZdUlrtn5cF6tg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41788139,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboJenCRA9TVsSAnZWagAA+H8P/3odXTkAtmlFo50gejlX\nzJTlfeiYheQcam/bXV/bugc6YLJ2ltOIG5k+CR3MkB+ZHV338egfelK/OpR2\na1WHrkfc9/RC1+y9auTm5Nfi3NvGlKzKWiZkUPp2n2hsbGB1pLU7bP6cjGhF\nrB90JfYyk/+gFfpoHAUSsfCbAFSUGODXVzSz1cwWBwez4fFIUs0G855vhZjF\nBPrAU8JoKT8b8eey89BZ7QkbWoz+YgWyjbDdMJC8l/yiwv0Aud6fs9iHeGXj\ny9WCUOzDOQwzm8A0PzOS0RA+fx1rrzF70Oor+tXBb0bXC4qD7p8Drgb5rTkJ\nirJsA9lfmApFBluKyElthuFN5m3gHq8NGhwWMc4l6uRguKt6FObB2IwmiDGL\nadI0y2+NtinUk+gbMe19Qu+793sVNYknwFFUIjICD+Mfo+GisYiJVX/z4DAi\ncU9C8fHoFJWtvC1hB5w8ijFIKHi9PJxlFIc/RvmyOoPdsCzbY9q/6HeQdFVf\n15NDW7CegZ2f+ssQUWisXuE8jLfq8NvNeH6lbNVDhkZkI2hBkoGBUA2hCkIS\nxi3P4oNvhkuRLFNdaZZ+LTRy0dgoMrshvIB8lncMcA7u5s60tM/dsoZvHumj\ni2Qc6AmsFOZ+lu34uw37oIbju69KH9rq8ITUCjhxkdB0YfSOdN7/swruHiJ7\nicGK\r\n=SRdx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"83fe1ead04545d9dce8d4a45e6619134d00a5248","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180918_1537251238380_0.5974936353331399","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180919":{"name":"typescript","version":"3.1.0-dev.20180919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180919","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"15e4397645438ea89117dbaf88e9d463a666b4b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180919.tgz","fileCount":78,"integrity":"sha512-IbOmXD0XLj5b1z5Bza6Po6qer1yL4T+kfUsCX9WBUQLeZJISlUsQmlgKg5UF6D8ZlsEhmv5PCvf9oAMB3C6Auw==","signatures":[{"sig":"MEQCICkjwtm+hi4wtkDM0oWCUbSOqmD1yvnRG8BZfx6wA/bsAiAU8INPipinD4V40DdCpyPsKUv4nL8e6MJoIkY/uAXd9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41940619,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJboekxCRA9TVsSAnZWagAA36YP/3RR747N9lduHGpPa8L3\nsNkm+GFNN7lFJ1xO/85+C/q7xMAS2/moHWAGV47Ig5jinGt8qXHoE3HPbt9V\nbt7ww70b5eH9FxwlaVunQwNDcCbL4+JACltH/0Dbimax1bdEjkyw1q6BdfpJ\nsU3KJs2aWOjuUNPkntywZbEVOPVVR8cjhwDWcR0vU1E/jvgsqqIOSZK3AD/t\n/X7mQCOXJZgy1J534Yv+CNr9KWkrpaBeD5M2zaSnVNdklZKumDg89ZQbUZV1\nIjsVrZG1BXu8TDgL79jGJ1biF76qXRtyBdI/LWTDo2+3EJJ4Pzid+e0ZyNmj\n0luS38S7rAvzkOTYZnouff+04+NqO6sRiEy6m4ZYIaizQ+K+b8e7uYqaxduk\n2nW53rZb2bsHDXGh2PrAUm+1/R1tsWuvZ89e1L6MbG372ukzTuc1snj8HnUi\nwXsUOZL6SMzIiUheNyAfggsiWkZzcmms34M+e5JDmfk18NSvGWD4R9seGr/s\nFPToCvy7bOnzhYDliYWtbWMc9tPL6Qfrj58Xp8FmY2FpiJa5VVs0fomtHqDH\n7OVOnIz1XfDAdZytG8czUbmTqSsvxkjUYY8AjLRFECyuq5JANyFTzh6S4uGf\nn41/OI/45MpHvHFX9aiLpzu433J2NS79xpXSZXMgGoab5AByt5umu8+ENUQ3\nSHwW\r\n=DC3r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"90d3f8b573e3372b71952379dea7f8fb3023f8f7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180919_1537337648404_0.6129952401681864","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180920":{"name":"typescript","version":"3.1.0-dev.20180920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180920","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4851d2b9cfa2a2d25312c018c32a1f5c77b93307","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180920.tgz","fileCount":78,"integrity":"sha512-tlSOvBDxBGcdcNbNmaZM8uq9vHUYN2l2MDBmTtjab6TBOMIqdRIxkwoN3IszD/+qXBuaFMHHsIxqSpVZE4/TVQ==","signatures":[{"sig":"MEUCIAfRAvVZR971ToCDRT0NM6KIFyz3h7lusnR+lWVoym/+AiEAwkfb+yBAC73cERbMhfSaTV9YKVWaUqXdJFssGJbzq5w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41941035,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbozrUCRA9TVsSAnZWagAAPvcP/jNnX2ifNrQwkvpXoDuW\nvzVYBtxJ5TR84OWLsm45U6b3qeq6KXUZgpMxyXtWPYImwEZUtQsI/iIzUdyp\nC6+W6p1nem4T3bZDkmHLlIVUs0SjZHuRsphKoIu6UFsTval/D+cc3hoe19wT\n7nil2db8uKbKvQ9VEojh1zIs1gCpAFyiHr90Uz7acZyRn/RzwyPVsrA5hdTJ\nl9UA4HrC2wn7bSKjA3lpeq+b7dnEKV10GioZRvg/dbESgNBggZOptX0uyo8X\nV6rNbanhslAdpLR8Ob9yHeedzSO8vnfhzHX6lKe4HR791rPfonB2bxl/vF64\nU/dQKvZQ8fSzZHzZ95JO8EKNhs6NCrANlxxl20AmGhkD3IMuBEe8SZL6iay6\nv5+LNGAkcKyBUL8w1Kl6TqCdQqQksi/x1sZiQghAH4s0cqj69re7Gj3x3UGo\nLm5UHExN/kfa42PrbGQn3V3GT+yPF8SS1aRKhdqCDhmXTRruA7wqNJ/YwzQW\nbvLWdZba0QV4fVAFOWavzGqWKjc1sepRaXAgBmfKxgCnOwMOwNRtd3vcyFcG\n5i5sObX62PwH4wm2LfrU4VMCpSVCeZspxXVFdwpP9jHToqaz4Ee9oa6OawHG\nT06zZZtWmE2Ghxsy3HOa7vQp6yefvcXkFFYseoFQHD7NdGO2EW56VFsHMwtG\niOSK\r\n=0ifF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"67d8263b30e5a8b60cc04899b8ff1b6f69544343","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180920_1537424083564_0.9599857218850778","host":"s3://npm-registry-packages"}},"3.1.0-insiders.20180920":{"name":"typescript","version":"3.1.0-insiders.20180920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-insiders.20180920","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c113741f3f701aad6f14170d4a03820005bcf3e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-insiders.20180920.tgz","fileCount":78,"integrity":"sha512-Q4uBzDMflzfwQxL4r1LeNvXmGqRGiZN3esU5vmHLV6492AXVkzACx3MKhcEM6ktLZyAFcyMsAAYSAOp2kXjcKQ==","signatures":[{"sig":"MEUCIQDB05051nSGxLKdDuNJS5UUFFLT12p4Jvxmt/X2Q1Dk6wIgJncbQeGRSq9kjwK5L7hFpRoKvD+Ums7pWFM63Dtu9d4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41940644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbo/9jCRA9TVsSAnZWagAAGGgQAIleUPC+28NQksyBj3aN\nLNVemXZg+JL5j95YoUh4iy0ggCo3IGVwS4ySe8MYTYw+k/LJuPuQ5hba6J+K\neahfU/hK2Y00+xFd+wzXmgzXm5C+MTvMkoryLmpquftrrEAGlMVyhXC0dwap\nTsqIzEYftcNYtWVSNioWH/jGsXXUq3Ay8ePeZ745XqMpIIHq6kBthRcq69fb\neXNhqJbGZqJ/ASybaIrLkhupP75Pqpkl7OmhsoYSNbRlUONDMqLbRZyfvEE6\ngOpq6YMpqSDys8LYdds9keP3CbNbIIbTlIbZeYzRbpPfcmZptUKUo+HJAjq5\nYoQmKLxDXo9Jbir32dKfKdhmc2tLGoNe+kX9shiy0maK8Mq0kQl2raWRvvTj\nNbkP8ux43ocavMWJ/Dmw2T4ndcmzEjmKpf4KX476vj5c4vyZl34BEsfhQr8U\nTX34z71wK8PEi4CCM3AN3aYoMna/IH3ZVWXuZ9tRmFPA8A0uP/TRZw7Ru+EA\nBkTK6nKo493BhjMLLhesZRcuJl0RwpR1RIxHtMTD/g+IRtWtoOWUy5HYX6te\nnU9PwtldWWBauUrLgYtSO4WmV4rXa71BLo6fwG3yCw6YHrpasedUypj3eczH\nXR4lBLtik8Wf0+MvsCA6JO5HaIsgF5VPqWDNRYmW4sDT1qV5F2sxwjxbi1Z9\nYf2o\r\n=RnXW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"910319152780206724b319463aaac0b2491972d0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-insiders.20180920_1537474402333_0.5324316164890786","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180921":{"name":"typescript","version":"3.1.0-dev.20180921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180921","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"10a0d9c509070ec386227ef1fd45df136eaefb6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180921.tgz","fileCount":78,"integrity":"sha512-fTvNk94RiTAL9/KrOgIj97fmI5QyX8pY58U61m8GOpabyTuhlvwWJDeqcdKGdx1jL3nVQA6L50YZJSVqG6cWdw==","signatures":[{"sig":"MEQCIHbHox0CoXL36y5dgRF+sP75ZEmbz2+748/SS3cy2JFmAiAijpol8CIEKThTS5N5EWhE5lF4K/508LAhRgCFQaE67Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41951153,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpIw6CRA9TVsSAnZWagAAg14P/2sSH9QdyFgMQuo0Cnse\n5Vni+kNbB2BfN2AzCuzaq8QwLQ3afpZ4XmKtsYTTjDmuwW+0BF9z7lmGvwHZ\nVyFRMZRb8KAsA/g4S6mnOmXKiljuVx8uN8RmqsmXNUsCEeH/klG32uMRmd5M\nP0Sdza2NlaEykQgdUhv6VRdnco8uOABIzKG/WHPKDFmeHFoRnaRm+/WshSQy\nBiCybRsf58gzzSMo0qDgmNbExfKMAgDxEXoQ96ybdKYyZ08R5Jcacc0zM6JT\nqN+IwIl1K5jZHjjp74wmFTvCYN31l0W1qCC7bLJ+G1rWitxNxrjyTATp+W/H\nBK0/jrNeGoxHcIU4h9q1ZOfr8/DwHh5zb87kYjg41Dyb9So0VGScGN0gi4Q7\nepfzplCL6IA8X0eH3IInZGab9/C27AKcoGduSp0Lbx7Gn+xBd700MVv8GDS4\nbNDKgcGDEvdehNaOTpI9CZhO7pwWSmT8q/KV+HL2oIo3krbxziuslLktfUa7\nLrOe0r6ieSTmLMAU6Mn1Hj1mSyTObZ+7HMFlZ4ae74e/4JIRs8Rc9YBSJBpD\nFNXjCbF6mKhfU5MJ97OHWnhTvR3kvROn/k/putx48sX9mLR+lrp27K3/AvOK\nRtj5nkIiALslGqIb4N06N9CxmNYiFQ01tNwbvMaTIMPzxwEGVlDscLVONkps\nUhLE\r\n=T/i3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"219bb44b4dc47aa41d1934625d409643e177b1c3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180921_1537510457211_0.05461904261258965","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180922":{"name":"typescript","version":"3.1.0-dev.20180922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180922","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2f84f71e2272eaaa232748a17f1ec9527ee4d486","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180922.tgz","fileCount":78,"integrity":"sha512-G3HJcuhJPG2yhkgTAu0btcXLTQSIxwDMk5oDcMe9NHBqh+NYDoSU4sGTvFpMoyuaMMXqbBBobJgumJsBWb1+Zg==","signatures":[{"sig":"MEQCIGgldeY8ZyetB+TOZjiKPMxnrPRrkd/OJuv9Kq6MVL7NAiADwh3Zre+59dqOaV7cFOYpyrOLEfNJNlxM0UTEAxisHA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41963779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpd2/CRA9TVsSAnZWagAAIOoQAKQHUhsxg3bgffv3OFbt\nJqBMDzGfZxrPzXjHS5LayYfExpEkUGuc5KWBcqnworv+bCTdwcLg+sSOqYGI\nkLRJnkw59Ko/gfWkmlr+/KYeRHUqWRtzfAKbVUYA+jeYG/uUcl5LU3FU3Od7\nr2ms1kZZMah0bX+yOfI3anZayBn0PT9R3G5t0jCJJ68N+G0+N0db4jk8tRH/\ntS/K8pVgdKSEI66nedrTI1vpYFT2f1oBdEFnUi6mPPj+LVPrWLPiF17EnjWP\n6XGTIo2SvxyRJwnG/l8eMuGTpac36512NH6WjsZTT3Rra4oY04YZTwvrqiMt\nwmkq5ip6/uhVCaasdFHsEGPIyiF5XkqJerJvinRmlm+S1zGRDVMrpT7RO5/z\n+aBkpQ1SmvG+m0mVOCsd59Fam86RJDeP0gIYFBIS+VZEmvrjvVQJ3uTbHIPI\nKzx8KHvU+Ua/n7oGEK/T9KaRkL/fQ1GM//l2TfQqCAu4JIcLNWzUMvlnjYVS\nTRENHVEUxatXZu09JjTbGzvOX03UcL4xVTyxNLGtUcceK7/POn2izTbjBGao\niSRn90slHZZt40CjTvecce57AgW8Ow4De+yCN0zF5dQ8mGN/kjtzS+PqObcQ\nSx1PXTcFdBcBK8td7IPm3xdO/it7w9kuvpUhbDy9aiCMg1Tt2kR8uduO2Yvs\n/UlZ\r\n=2lv8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5fb39769ada9ff72d905c62069aab136c93f38a8","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180922_1537596862194_0.6945448270678825","host":"s3://npm-registry-packages"}},"3.1.0-dev.20180925":{"name":"typescript","version":"3.1.0-dev.20180925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.0-dev.20180925","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e2c8ce5cd70219a489904328efea87f81168dfa0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.0-dev.20180925.tgz","fileCount":78,"integrity":"sha512-/e/T1trdDXoRUysMuoo0flJEviH3ChMZCVif2PmAcJ7K1FdiwQsPcjCAR8VhWI0Va/S6vIShjiy/IkRfxUlqGw==","signatures":[{"sig":"MEQCIF8gYibsOGuOGG8WH8Qao50Be2V9SK/iPaYpGKus197FAiA+O5iATVTLkAQGJB9B96YDhGHqOqrwTdf5levHIvd2Aw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41983579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqdJPCRA9TVsSAnZWagAAMGMP/RUvYrMN6QFMvRIVrJMa\now1QnrBEk0x15Q4OscVBEQEeiqkdmFC/l4RI72ztPxfE2X29k9FQYv4Jdp8G\nwPLANlTSzzmJr6l4nCGjokyq2ajg9cqDXNFsRrK1W9SdJ8deYojiYGXrZHAk\n+tELxZfVIupCJSFeRdjpcQ9c/+AC1eRwyoRmE2ac4JChR7OyAgiAL5ro2xy8\nm4fTeUtMIh7CNdbisjfKje+2cQ5jlOOiC+u8+Af2q3PRJptkoyshv1gbWdPU\nr92UKgqNqUCJjpAHmJm9JZQHV3+kp7fniivQ06B9D2diyfP7BvutHKmwZqNH\nanh4Ih6gfsgQhJmYBjwS3bHetL01tB9Zl5LA7PoQXkWUiOEHKyEO+acX02Jn\nVrYIKGV4j0VKkVPc8eHv2BlWgvoi+2OKn4O48XVEhXK5dKVAeW7F4qQfalio\nBoAp9yPTatGeUunkZd+OJnV6UbS0Jr0TNVIzk+rTT+CXy1PCOieURHOlW9ye\nwaj2Z/DQW4bzTfmzYAl5n7yomT7miIRAnRxJigaOD7x6X5/Gl65htBwm8TTs\nbYH9AvpT8w2evMEdoBG/72wd1hON9Qw/5H1dMsH48VQx5C/Gtp9h0fGrYryu\n5Mz0O5Dq3LSmLpJP+O1V5YH/7JBz1InL9ycvCMkD6gLDkXqS1DRd1/1MA9mK\nGrxz\r\n=BjyV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e36957aba146ad67f648e66ce81b90508afecd83","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.11.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.0-dev.20180925_1537856077890_0.6117310464025816","host":"s3://npm-registry-packages"}},"3.1.1-insiders.20180925":{"name":"typescript","version":"3.1.1-insiders.20180925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.1-insiders.20180925","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"29822d0b44999c36418ea7bbdfc633106e5cff63","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.1-insiders.20180925.tgz","fileCount":78,"integrity":"sha512-sYCp22n4FDSXKvN7kjLAD6pay1cRaD7lswq1eHYPuM/7KJVWmVWIpKdUXG5dFGJPyuUUzv3sm1mxwMXshkTKdA==","signatures":[{"sig":"MEUCIQCaIA5drmrZ8Ce0X2FTf1oK+DFk/VwX/WYLNBdvh+StBAIgArMByAXiQrR+ylbz4iUgGkbw/W4VU1v+yYsddMOy2W4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41947739,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqqO7CRA9TVsSAnZWagAAdKQP/R9/h4f7SpcfL7WAlEp0\nV8ohORcIPUXG8Hpdn7Ddui7IyvJfKuHUxnKI8Y03rgkkwTGndNI19Dyma2pX\nYnQd2WNxYm543qE91Q/kOBu6Fn17H4VzDyOdvnfjoTW7mG2tFz0K+Kwr2qkP\nQh2fP/9yOfU0cCgrraMsZ/kDJPtDGSd4fK9h3LsUxQ47ZhbzIz1+Bi2NTwM8\nPEnNBU+2Hp3y7IJzvZL3w5ZI/GzLRBRZ8F3uk5vlEeKS5IwALVwdcOyMEwbM\nPV5lNlMEIEnd5N9NXXqAqyKxjXyDOfJF3VdlGxG8w2Ua7jTdgWk5BFGZU5Yh\ntJ8o7GGW4CQO3DsmLf46pw0nkrKnGKIHxGNal+hlGUfUS/MuWTEB5VWx/YYk\nxmm9go6siy1wUl5UCu+yAXam9h3WKjFTrQYnkWM5Vb2kbVRVxbSMSbXKyGFb\nQwL9AXBfxDy0lZ5DORpy+ZPREHrgmtOk1OSFDOztUHBbYG3GpkNiv5fQopmL\nX6gMARtRLm8ObTgYbKxWiv8/JG4g+JNKu2Gmbd2tKFrvPPlk1faQGUF3TAhl\nulJA7i9bjWVIwPTUihR1zTZqsE5dgl4aVj3K2unzi2Czm1+zCgZU6DmvBvmN\n7i2vu8FGl2ZwLfibA8GvW5B32iYzD6CVr3qLxEFAZ+6+y3AjdJPDGwfOhaAk\ncADe\r\n=aTeh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"29dbbff5bffcc7ebc14f28a553c7b1ef644a89d7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.1-insiders.20180925_1537909690189_0.7586466501316342","host":"s3://npm-registry-packages"}},"3.2.0-dev.20180926":{"name":"typescript","version":"3.2.0-dev.20180926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20180926","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"75eda57fd2e10925fefdef32fdc5edf5b442d375","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20180926.tgz","fileCount":78,"integrity":"sha512-5WipK8st5fXwEYTFQ4y/C+xMkS472NDC5xaTnZkEcv9c62ECq+uvYPweqVi3BZghcCkkqnINk+iODCiCXi4OuA==","signatures":[{"sig":"MEYCIQCzKxkiRZ/FKyEc123ZtKiouGSKjyTDJ3iFnf/PBu4mFQIhAM4ZXmlzrgxQY+6BtgFewD0i7HFAeS0Bt+Oarx9SIrjr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41983579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqyPQCRA9TVsSAnZWagAAvW0P/AgLRlx5/kqn9vpIjSTH\n2IT4Trb+fIdMhgmNI8GLov8sbG3LYRx5ZRcJdJLVFnFXoZsH/MSP7HlZuxsL\nDDdOp9IEHS3Jh5TuN6m+xtWR+fnPLDyMFkCutYVQc0/Uq6n8P6+CwcLxfDcX\nqiTkpTsLbhhcfgrBRcOhs9Ggxg9AcZPKfBVI4EA7Ti7xiGACeSrWZDPrpXnh\n5zfV1tCQFkoi9f/gS4+iYhTYi318P3vsgWjn/0sq/tPeM66r6VOTtd7nUJNJ\nxs0OuTJSbVTWxoNgHuxlpqfhtyZkhHWLmpsEK5bsRn1MkLdMsWeetUK9fWQ7\nBV3qaXUCB3mcpOoJyhQgTVk7LNTUA/MGouBmaUeyhxMpZYUm3Uj+Q7PSh2mY\nnVfSmIAEheBSsq4a+uhuEFZGKf8hoQjmHVF+TWcEFO5896NdifAS8zWan6At\nwOk+Tl8NGyLE4zuli8gPaP4/jEY87tbXZFFzn+GAqVPzDUWs2rLWW+vI4n69\nvmvP2GVr8jjchzKBcWfKxLbnJs6tX2Xbk8UyuvbUBH+3FXKDtwzrwak6CoEi\n0QeT3TaWDAWo8AIZ8nn+mV+HoRTpIMros5VKlKeZrZGTjxU9S6uYCe3oNyHb\n65NfFMcTR9oKAayZoHtaLTWxLlpc3BxhHvcopEkAozZM5FKt4sm6nhw0YOR6\nTyt1\r\n=xSXu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b065902a99dd6d30c270a374909402aa3f0003e3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20180926_1537942479850_0.8986789091667309","host":"s3://npm-registry-packages"}},"3.1.1-insiders.20180926":{"name":"typescript","version":"3.1.1-insiders.20180926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.1-insiders.20180926","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f043ae9bd68ad7f392a6c25d005a623275116866","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.1-insiders.20180926.tgz","fileCount":78,"integrity":"sha512-k1OJSHOp2SKjlF+qWcx78HLXRG5QIx6hRFn3i36hDar/N+Kk83oyZQE6oFPy+c3FUJPc5PIJwBaJbpYN/GJnqQ==","signatures":[{"sig":"MEUCIBH0Ig4bngNfQk8imL3jbzOOqsYkQEh61T6EChmysgfbAiEAi15hD704FMUtATEZCDwF6iBcFvWpSDXGEBPfFOysH1w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41947907,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbq62SCRA9TVsSAnZWagAAdW0P/i+nhizx5CPI/oZxx74+\nVzg2KJWWHe/PWaw4Jk6VER/vMxydmi0IiaqrwVGH5nS+U3+qvFfapfyuG7TN\nl8pGZV+HOAn96YXtrI01/ZGeqbZeZxdeNYxUbvYLH8jPG6bERkHKIIB8+Z0P\n9sx+WgxcNk5Ky8Qh1iG3YrGSFq7poUIFVWmpiZytrYkLmV038KAZ9DP3n2vj\nA59eWKtiAPirD9Apyeg2ZVyG2NyLPIFO4HElq0O1BeuyrSCqaeEiguqUxIvH\nDkRIkJ1YR+zP5Ti8T7I5rC41UDicjenjVzlGEfFu3JZssbQi2FmYuo42qhjK\nxroO4tStF5pgEalqrG7XucgZwhbk4GbpI17mt9FK3LYPaZ9HosdBbVaYLKKu\nZCX7bY6MKdq+tMHskxaEGUdu3fPR5LjlUFtojOq8hyYjmUusEhyGqrt51ORe\ng/SLWO18MFfUQxNSaln3wBSg6zemw8tpZ3AoMM4JJtE/V3D0vuagQr0JwTwc\ny60vWIwY9B2M/H2SgzgV7fVuvCls5C/QcH7Fd7DBea1XMcRKdVp1i7BAMprV\nl12QlzfpzV1IJGTQnFv13iQt8tA3vCHBlzGytIdb8udShjVdOciQwCfdxCAY\ntOpKzxEgCIhUnMX12LZl6BkZ+uBBn3Md9Cw6hnmzMAiQFR0+bQRWrEggmH7g\n8zM7\r\n=J95K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"53105b3afff2b3e054d5e3f2ff013d124ae783b4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.1-insiders.20180926_1537977745433_0.9587496781284532","host":"s3://npm-registry-packages"}},"3.2.0-dev.20180927":{"name":"typescript","version":"3.2.0-dev.20180927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20180927","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8cbdeaf42ac09aeec228b0a66c040c94ee93999e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20180927.tgz","fileCount":78,"integrity":"sha512-vwRHSzgTegs+RE1TBhHH0U2nFNcuGXPlA9GzxweQA+VNlnMnIhVvqMWbrLmYjhfw0sduryOgglX0KJpVPxlcaA==","signatures":[{"sig":"MEQCIEqQWg2HrUe4Uej9d7XLp+ADi5tkpWjbDiJn2QGjXKIJAiA4mUgHYxDxwEE93Sn63CqFNuaKexNApop9FsWvjLh6Yw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42011412,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrHVBCRA9TVsSAnZWagAAyvkQAIcsxUXdKapg6DACAgwZ\nzTtoTwz4jbbZUqNRT1oU2MA1cVSaWDF+QPB0fakSF/hr7wGHq3SmfkT9BBID\n6MKDMTWJODHHkarn4zMiL8YjaDduOld/JZSrYuUbmDGQyLuAWG9V6UAs4hMb\nkfwkO/SgybnCE8/25OPdLFpDrDvJJKN7/K9pr9BtP46TNXhp9GdsaBnOLLh6\ncfwe/0ZVBjs/R5MaC/RX8zgXctEDOJKpx9r2uryp9GkcgKC8kn1nczpgKJY3\n9cDmTT+ISNB+zzN7624kCnbVSP36LL48nZ5SjpSlI60gRSMxxIJSdIo7TZju\nHH48pF+0jgNKNNV2NLc9KEvobZiAAi33yAw4ZJmUWIy8J6QErhZE3rVT0yKk\n55P2pOVZrxm0tPBoIp5BR+AQuOASOotdkJ1KC6mRnPUmVymPrydLGZCfYDN+\nE5U6+zI7qpXeuv0fxCOa/KpdGZAsFrCUI45yMsx6xMKVZOZWTj7EJz+oOzaz\nZLQCLmy2L/egsTkFsNeUlcJ021A99uIWj2zhbXGTWkhVC/C7D+cHR3E5jqB5\nRxQAJ8Ppc13DhF33wYIOa+8ECgoT8aKSkN+2eiEHeeIZmKlSVr//FLfHvDQ6\nz2j5Wv1EPyHW5Ki+sVTPbBsOO4fGKWByk1RGuIoHK+k+ik8sWDl1w9wLazRZ\nUJoQ\r\n=8lN/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0a97663843e11f745d9998d54db0970ee3bfb748","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20180927_1538028864325_0.8778014055832002","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"typescript","version":"3.1.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3362ba9dd1e482ebb2355b02dfe8bcd19a2c7c96","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.1.tgz","fileCount":75,"integrity":"sha512-Veu0w4dTc/9wlWNf2jeRInNodKlcdLgemvPsrNpfu5Pq39sgfFjvIIgTsvUHCoLBnMhPoUA+tFxsXjU6VexVRQ==","signatures":[{"sig":"MEQCIDXtP9jYsOoN5qUbdJlt9IJRrTg3uUCkoIajW+3TVQiJAiBFG5z4sGEFjS2hkbFDDgfO8SJfLdr5ca2GoFhG/TCkug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42162331,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrOm1CRA9TVsSAnZWagAAKeEP/1gvBA1crNddPUwz0HHy\n/QKhSrfZk/BrbRslRBM240IrCypK+81Nq1PR+xzEqJMhgXLC01BBXTo83RuV\nscUOx2EA32jimDjhiaGAjvcfznnrYpPpoQJnF5bapAsxVDZxZ3wpOTqYEKFc\nmbXL2v9ZVdPzxuDDF29BRktsfUq3HcqgitRtkge31nGMvSKAr52LBXmLbb79\nhgTn3+CO6s3l5Hq4sM76bA/l3enp0RzMhvH4ud6yornrL6d7J3z1H10NQzRf\n5dxQ1KMcVIqNyJeON6LeItTPOgaSeif/YUQw8bSQhwXP+vidKBI6r3jZ4JLc\n1l/SWSQEs8jrRFiIIijKj9xT+YjoJ7h7fjKEyUTMJ3kkoRWNmA5d8TTp8m8p\nbbqu9OIPO+32bhscScTlrKoW1mvzIv+yB+w0XV1QsqEF+NDy6Th1yw+8UGYI\nGaogfHhjEkkK1JupusvVst3bQB/fNtCiqbFRL+54KENFQGhMoTLqlTK3b49B\ntMVUq4VlF/by4lgPq80/r0kYHyVtlGYxvH4nwaZifHn/MGn1xlmhlknYo66X\nooNSstbVzbzRtaY8GWHevEaYYcrx82z2qxQYUON5N2lF7qemv08WsIxjNIhn\nB1LnnuN2kifYucX5Ck2H4YG4gVdNARTYjKt1nFPdXIpM4Qi79+4u+tnkW32t\ne4yL\r\n=+w4D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f4a643fdf06ff9bf1c99439b2c596c99a7f1306a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.1_1538058675985_0.7576419625833002","host":"s3://npm-registry-packages"}},"3.2.0-dev.20180928":{"name":"typescript","version":"3.2.0-dev.20180928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20180928","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1361fd2c3f9871cfc09f81a71ebd8944aa3bf7e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20180928.tgz","fileCount":78,"integrity":"sha512-NL2vDXCDnxLnGaocjjJ66BgTJlQ6jOyNPvBtu1DEkBMdSocaC0m4rpOuBic1cxUVxshHnfs574uZiJCwpvvjng==","signatures":[{"sig":"MEYCIQColdxia4yRvkp+Y9rignYEd/TNaLDmvkKA2swGVyWkuwIhAP5H2/UltbkrTZsOvRTX+tK+3mq8VdKCEzY0c8G+TL6t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42095924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrixACRA9TVsSAnZWagAAOuQQAKKhMDdp0eSal3QnvL1I\n9TIW8q6LIgArKvPvSxWTeyE/SGo+KBTK73mp6P6hl/CTUle9yTFaeYOEJZy4\nA/lORhVS03gWnFZLD42Xh12t18Ir2PlFkcY6Fgs/5xdf5wrKK2b8BuPpMdsN\nDIjbb8wmP70yepcaJ+Vln346mXyOtGwhRMs2XHDbHmWnJwaQ36Kf0w3SgGKr\niObNEYHA6STRj9pQzqT9SFXcobSVhVd5ZkD0UoNTnkJUJ77a9LhW0HvUglu5\n3IhKdMlS/CAi3t5pb0QztTDsAurgdMunepeqGtr31hraHLV5C118c7e0dZ13\nn9FNgb+eCxOEVhqfwzhIcx0eXi6PCmwha/rKYEB3MxIvT65bz2g5PLZhIAcw\nCGgd90AHpnJlZRCH0taOVR1VKEkWrAx+h84sp6eHyoFUrcdZAMoAx6hjNq2g\n/3QdI9KMI63T+tDsBWaLbkeUBemNdr7CiQ27oEHNZ2mNc9B9OGfs4IVSJntT\nPtnu2/4RSA1ODzwGU63FjbGbA6VN+fMgBgWJnK6lgACaxYRZFFiv+d4lKJ1N\n6S4jz830U86sR8af/xstPFCQJjKCYgELJB8qSkGsAaSNASuMfUZHC63cqW46\nFDCDzT6RtYagUpmyZNVKZtsg0hwsrL9UTp3UiQvUYVKBi6nZHcOvMrFNQclA\n3KnK\r\n=yLuv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"bde81deed29c92b941a366531602c4abdf13e29d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20180928_1538141247536_0.03458815609982291","host":"s3://npm-registry-packages"}},"3.2.0-dev.20180929":{"name":"typescript","version":"3.2.0-dev.20180929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20180929","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5aa53fd7ef6f67fd1fcc1df2b06dcfa72933c973","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20180929.tgz","fileCount":78,"integrity":"sha512-dS/u6V50zw9LZgWu/SHKKRgIG4rkz/gFqCPQmofCUntDOiLTuVbQqGY33JllBOKie++838G4uAL956m3QIXNuA==","signatures":[{"sig":"MEQCIHi11Ai+cO4JLsIlEf1doZnTNQ3rM9q+1mPhKoz2DRO6AiBFBHQrm4KQREd4YCP3UWJ7obbJnIzE7pcilm6sBTlggA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42097365,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrxg8CRA9TVsSAnZWagAAO3YP/Atdojpz0fdeT5jz/fAm\naROWBzwJkxoLoUASnuanEVQZkySN1iIbYnb9fmM9N1cYztmg38505PvKzsub\nSxMBfqJ2W42qWrbBH/umH3devIsq7nYilbPlJDPR0A3v6sXmc+WxcRUjEMFo\n4R9QQLrp24FZpA0/tUFFEDzVcrQudQeoqC3+I8uIqNYUEUpGIf2JHTotlmCS\nq+bku55s+h9Ac+CyDiBBAdL5yAIqi7fTZoyEsLsGPB2zQznBzfk1gYyxbO7/\n4qXC1sMBPQGX1SZ9cBAy7sFjUvAgs8twVatv+6+TpR9fROeWHRVJVHaHpm6s\nmsyAIaBeKxmbjU8m62739cNbSy8+lR6egJTDgUwolEr2FEQ6OkZbgvzKHuyh\nJJijxcdVKssUakUrL5wnYzM8kDR+zcVKFGH2DPzxF9Tni+Hmo9Y760aCEmyj\nAcnCyc+M49rZxb4TuGO2lhzTsag1DHXkgAPeUFgvRr7XoMV1NLtbVlwHAVA4\n7sr4t9fkWSBnSWcGNh5Sj9py+sakE5FgDLRVcory8Wzbb15SvxZAtWnxYybW\n8Ai8WgEDx6cXH8+l4VB/nfr/zFXuWtegBmP9sb8iNX+dRQ/qJaq6bv310Pfw\nelbDlJouy+beJdVOa23IptYuvViiTPKoYePrLUTWUEtuJJxswXe+dbncorbe\ngBMd\r\n=/kuA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e1a4c2779f93c8389d1589e543920a61771e97ec","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20180929_1538201659039_0.5907871991482849","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181002":{"name":"typescript","version":"3.2.0-dev.20181002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181002","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2e538bc2b27399f022b8e43755e042a908966ab1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181002.tgz","fileCount":78,"integrity":"sha512-Syptj3/XpKSmXBVjiyhMX3RZ6YEHfe8WAdow9hnzZi0SXVwafokgf/Tmj6+fKC3Ms2ngY3yRmi6vij5QVxtecw==","signatures":[{"sig":"MEYCIQD6wobjXZbckr1eQKYPB8gxw7QKyCxV82fHnLT2zmbdQwIhAMCoj2hs5GQ7eCsdlocAr88XY4grqfQ2uo+Y5sJC7pzF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42107185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbsw0NCRA9TVsSAnZWagAAu6cP/RHjKCwaMkrvshh84Emf\n2EK0fHOFwRjIZC5CrdXS+ZA1ZOfu7RwuZKndmgtQoN34YA4mbI/pjf6yiebo\nY/sv8BMSTksAOyQtnAthCMnrXyo1TBXsecDZiugScez7KCAM7nDMBwhSuV91\nejAnDUZv8PB3VSYdrfsg9CN2cazjf2YXFxCF5x6+MFgzimoNxlt11wUYnv+i\nTUuH7423oqkdNGXAUPl6y4rdbjT9YSzXLLoYbPcLPkkbfFwdLGcd5TVku+zD\nalY+gGhYnJVr2mitFoXKLpvOqJwbAN3EWRikhJ2r8HsaNylMxM13zozqpHuf\n6f7rWtdCCVSG4q9nxK54QHlPdZ0KkK9cESajvcrWo9J5Y2MHjkD8Yymx1jQN\nf3PwgaGEFXnc3RO8N9Fp6KJ4uRQXaTd6SypncHevWi8m1bBUAKNZtUkQhh0x\n0e0ICyMtB78emI9P5DcR7sfZEzTj2/kSvoWNj7pz5sYWqJ5qctpt8ULD1EQT\n/Bzm+s4GVyLUO9I8jWfAKErLrmOrC6XHT88T1nb+1C5YG0qRuDom46HU/TOv\nET/dhFVnievtr4dnp5Oj/8L/Db8M0Jqmd3joeSd1mwvREPS8NlUTKUTNQErm\nGqsf5/V51VFaKdGhmMU9k3c2wBXAI+nJOizFV2H5O2wCgYU9nKNtIziTJaqx\nD0Mb\r\n=nft8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f356cd6c8956ed274b2010b3003d237e0762816b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181002_1538460940110_0.07245996177650094","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181003":{"name":"typescript","version":"3.2.0-dev.20181003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181003","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2dc0fb60c7b2ebdb964267bb42127f679546f7ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181003.tgz","fileCount":78,"integrity":"sha512-9G3H7r9DLiFrZ833iDwqt7wvk97N1SA8UAMu2zw6m3vQDhHJQJz7uwoF8i2O1rP5WfQXkWxvpCom2CHqljq6Dg==","signatures":[{"sig":"MEUCIQDfC6gyslFaP+UCCfODvp4GmMHtj04VhDNvz8f8htBHGwIgeSfvJxgzdowlhYwEj/Ope0o9e7cg1/uncmjUnt6/h/I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42106489,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtF4HCRA9TVsSAnZWagAAYBwP/ijjEU+Ti771J76qxaH2\nK8FzUBytOuGI6wJ3jDYmg76Rhd4birudhkPS9OSsHao+4pPWkEeDvyJRDJjL\nlKuXoZwHawgdL7VUth8EBxjgiSUSJUZBI4b6xcN+j4T5HLSRdbCLzavGq3Or\nkhagUxsc+Zyczs6voIXgSAGJoonT3suOxYtNAm7Gjdpb55IImVIj/MWNcuWi\nPXsbnrg6MCl8ITIUhL2I9/xyvUyfg/C3E1gX0R+/SFC5MZe3hohHS4zBVTZa\nh7rNNdStt08opKHFNlh4QjZDmQnlk7FsFzmoQtoFhouVVdjFRu2Ov0V1SPCR\nXKQtEG60sipBurSEKyL2V4aSUGDJ161kKteAxCelgJxk3dnq2tEeZhyxH5cp\nVQ38eGV3OfUCPHpdGWofNwdbXv9G7uZKnz6KW0oLOvcGBdfTzuJpiC9w6BVr\nPFdwn08r0I6UOkrw8tNxU2zDKrN3QWEX1JiJbpMA/mOAc1d4TXSxczap7P9t\n9T5n9UP7Ckr+66iV6Uuyf73QKwR4saaQ2JZcwFPtNRagh8NT/oyIgZ+j97Ky\n0/mABXkmYd0zWjE8wN6nNYHI2NjDGBr8zFOwB7QNcbF7M6mwI7dcfsnR3red\n2I2PiV3Xonng5yz39maYO7lEhjUjYWc7p6/o2kc0b8WEFvEX1v2L17E9wKrx\nFUQp\r\n=VV76\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ef4ae3ff13943df1108a4fdf96cc1d5c1123396a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181003_1538547206300_0.48622582816138094","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181004":{"name":"typescript","version":"3.2.0-dev.20181004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181004","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ac75518858a134a7a3345b23c67ce5c6333279f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181004.tgz","fileCount":78,"integrity":"sha512-Z23RIddFV2Nnze2j4AT/NewQ9aeMOzxVYKUZwDormi/eKL/6v7SlHIelXpweVYIHy6gPpV1HMhFxBQ4+f8TrxA==","signatures":[{"sig":"MEYCIQCrdfTpcMsE1VeH2sgGvzqtfyu0BmdcAy0h010e+pJaYwIhAPm3gfsNodOScDCfW8PT4kNt2N7KlmssMQYY/jJRbfic","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42102512,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbta+1CRA9TVsSAnZWagAAPkAP+wQnMBQGFD2QNNqjpobB\nCA7rEwHdM23FY9yY2hv7a/RGDObGK9UqCHi8VK23RKA4Z1AmNz5VK5gE8ebz\nyN6LruEN/NnxRRenNC+J6ZrfJojohUr6XKSo5Uptwws5J5rR12OvrVPHoMjp\nd78tct3IEx1LXXIHEB4z1Pi+B68gYUpfQuNb6kPmx8YpJv5ZIlfYCJn+Xo+h\nAEY0qc5j7cEHf7tYoXkTYQ3R3F2DdOvyIreipS+QDulVX53/lbwlm1bk9SNp\nSDn8xS3O+KRKqOheAKSGyYRHeJnsSW+dmxZl4rOU5v3iV/DECNKVhp/sdb62\nnoB+XrJFccapx5GHj82NuiqGG+sZdEQqf68yPa12SyIbatWl61ktJoGh0k5J\nYl8U/O0z9bn9v8QOL66OhfWfswqirWUVf4twvRVUHOlgiX/VBtHWtGXrjeqF\nixTTzC2gOCzaTr8jWmW8dF154u5peHVya8u1+9w6dSj9djvZ8b/kKXFbA5sK\nt+KExa72CfU1sxDae+OdCUzBdV85/WgLaeaOYffHwBFxp7orvGVvirsj1ZZA\nSj+BMlKU2xmPatROkrb02Vb6quAW7wDZOyKpQIA/fdQIGTEc8tFhxHE64lXl\nWlzCuRC+nkYekvIQTN91pbzh9OSDNmwoyG9N4+dn942iC+FIICYRJWgVVxsJ\ncgVx\r\n=u8eO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4ed85b7c44028970c7c3d3061ec2b1ab2bea3321","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181004_1538633652072_0.17372672133544098","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181006":{"name":"typescript","version":"3.2.0-dev.20181006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181006","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"87386f1f19250afaceb65eea26e5cfa223f9ad8e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181006.tgz","fileCount":79,"integrity":"sha512-Hxbkj5GZAUyaRZKc4q2wBeCBerO5yymUehnPHFLM2nYWdTmnZGKKfnCbgrwRgIBSYmrhGQZChoc1ksOi3+9LcQ==","signatures":[{"sig":"MEUCIQCzP+eU6csMLbKtxeIGbGHMp/sIIC4frsdSX1oaDrco3AIgL29IbKFiNazhh6sjX+YDh9c2vb0A4DDtc+az7VrwJXI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42160379,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbuFLUCRA9TVsSAnZWagAA6iYP/0zIwIagVZ0/Hz2WVVob\nxM+yp215LsaMnkBVIyMjWmf1TW3tkJ+YYGW9o25mwPOWr5gJY9c06LNlxoLn\nX5vM4FOZOSnx7/uNVVcexSmu2qEOqY6w6ZYrjWRBrEhP7bngfnGJabzOyz4f\nMZS88B6m5cq9sZAEJhA7hRca7XjO4+irx0scRt1+0frj4kFm6FaLPve8ub7i\npycec59wt7TbOH36qYtVcPqFH3/IbVk+c8ofmxQGO5nolDEUCOEV2ayaE5I3\n5rUUbZizvw4xhWAznGHVT6jPviHlv17t2ijvc+DZRuaYklWS+2GzGfAbZMd6\nUud4vXiao0mLPZGQt9d1cQ4qc1H4Syf3sEtiVP82807GEf6XLNoQ3YuJgSlb\nyoHvGEamWLWYQMeNIvSoKBsZsiOYgrlXNZ+/pBwASVJ37ZN0yGMOHJdn+vgr\nQWP7cafMJLHtk0aQqHv8QDhCFO3mmEqKQId8oEnPBKwLWQyGruIKdZsdltN+\npuDbyWDxWzrv4Pc8NPGlUafT2mcaPkJZjyjJwy6i7CMcTjAJRDpgL5RisOrH\nvyFycjm5ycgiKmDeYhiO+Ce6SpHjsohN4kBEMJBA5dkJ/PPJTGxGRp6wmINX\nmBgEoDBEQaRDET35q/oB1L/EETDI+2vr5VWo/Jxm/ZmhKfKGg1ZePkY8zol6\n5NGx\r\n=aw+b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"85a3475df87b9c10240570f32090970262c99b54","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181006_1538806483797_0.7814940953134444","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181009":{"name":"typescript","version":"3.2.0-dev.20181009","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181009","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7601fde5df790f14ff32b4514c59030d19bc32a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181009.tgz","fileCount":79,"integrity":"sha512-lKRhRYX1xrAWJ1Jt1JfyhF+QIWEOVKn6xO57/39VqM1sSuA0ZIJuBGhmh9JwVScz70o/7tNcHA6+W5CqIPtNPw==","signatures":[{"sig":"MEQCIE6eqOEa+DNRIB+KLmAZHVHfcrVP9ek+wGEoVXD2SSO+AiB8b3bvrwpygP5riOHRxKZJBn9MOyPyVrQqOqDXi3yiew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42188030,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvEdbCRA9TVsSAnZWagAAYMwQAIoMNzKMQ4DKtOoV49ue\n9V50rvcszmms89LwrIESc6z3ZUYJk/k4pvswe2yVDYVtMkqWWE4AC2gEYREu\n9dMtumo8ydzr9MBvY9DW6aBbp0PDJeVAsVMA8MRpYnW/KV2XpDq441gEZTBd\nuYg2I8liKIPKudyVddTCiBkp1IdaKgCrKUXfdHtxJj0xUmQZbhE8RjdAAStK\nXSBURv93JofxO+qCZDyunIba+d+qlmTf/3AJk4GWhD46JX/rOcrcj+zii8dd\no2bqHEJQHkOUFhg8SjAvQU69AIWaQzD8wFqhuOtQCNeB795Nts8csu5oo3lh\n508puXbZIdL3yh8TFFajzNkVUMkjgZTe2ShpsycToQi7OwtCm7RKK5CTP9HV\npQ+klVPC/SwN8yDr+B/Q/8TZ1OD38redpqYiqbdejN+4InSWuicCffjic7Gu\nB0Ln40Dt5TAXngHgF+9wwO91l1gkqWdurk/I5VxmKMj6E8GL6pdQ9P+0ZXek\nvmanF7OwbDgB/bfHUzrIPqXnbzUjKIihK6L9TNEboTHkaJpJJf0v3nluvLoo\nVG53NTPoNdsmANrgRfwGcQDNzwdOpTeu9bE0fcBTI2ZmFYCY8jgQntLcvgij\nfkTPZFb+tF8sRvqIqovZJe4QMyb2d4ZGnMO6Dx7M0svuu9Ly97829Z5pPPcN\nebc7\r\n=J5fz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f6ca10565d8fb0a9737b687b85e14ee94ad244d7","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181009_1539065690279_0.9993202810544259","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"typescript","version":"3.1.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c03a5d16f30bb60ad8bb6fe8e7cb212eedeec950","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.2.tgz","fileCount":75,"integrity":"sha512-gOoGJWbNnFAfP9FlrSV63LYD5DJqYJHG5ky1kOXSl3pCImn4rqWy/flyq1BRd4iChQsoCqjbQaqtmXO4yCVPCA==","signatures":[{"sig":"MEUCIHRzNvwAjhG4f7gYJRbELg0YXT82KPdGsDvfx/prYdk0AiEAoE1595bZ8X/sLUZQcoxZ7E3f9gEH9igVOTk3TZdz8OA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41519923,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvSpZCRA9TVsSAnZWagAAznAP/ioBUMpk+eBNpZNJKT0o\n/Iyp3L97rynhbOdcjiCf4LxzvguZgDPCLAllJIi+DK+fy+GDuqSqBehfkBrf\ndxoYEJToKUDS1aqvBeCDsR6UPIFBEHpLCEcKgR2BRzY0tvHd3BT23naGpkmZ\nPldA2Ibezjkdrnz3EIEVoE6M0HTmd8NHU0Y83NsBJbdHKHO20vbsezYDZqyP\n+Ma6y0vcQ9CiXojkoZn3CNtkS6aSxLQ9eLaAFBq1/JdS7gi+QovBMRELCDbO\nCLgdxAtYDiPKXTvbaPJB99B6chRSeP+a/zsFUXalPEHovyIgPrEdXc18idIf\n9k7rpnOpWlEyAUpgtvNCG/VO+hi7MHR9DRe4fCZOHzKDyXAEz7khrOxeNXov\nZczjh6Hz3WmlwznWHOwoii3yjRlV2pRuRDP3+C376Y1LMb/Ib2p6sgNeXD6u\nqv2MtOrvNLe3xMO7hy4IAcoudPpbMvK2ugZVP3/6acrQIiGWIqAvlevU2fPg\n7SUcl4053PZLGamUBEB2k6xQf2JsUD0wudNaEzGavOR3pDLW/MQdauxyyXVU\nkrtQonFkIoycszEb4bsullL0RbybCY0uy9NiX1XSkCSVqx16Ttfv/BG3KVWx\ngxYEJZnbERcpB3WKz0g6o+PLjdyLoTC5xBLWOY+rpynWoB9NpKJZePbvuLRR\npxay\r\n=g0WX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ec0cfab76b5f26104bf97a1a50bebe48a923008f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.2_1539123798351_0.9847013873584767","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181010":{"name":"typescript","version":"3.2.0-dev.20181010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181010","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"97cef66be35bc93fc2c118823e6d6c367d985897","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181010.tgz","fileCount":79,"integrity":"sha512-LRrLTy4i3jluXTML/3RirE3mMRO7jsr6OfNiuFMJa1Sp5ZNbY+bowuWUrWn0c/0XKb/IZOBywEL4Fwdm52/YmQ==","signatures":[{"sig":"MEUCIHybEffK4klLwGd19zGbaKnKpgbLefgerGmMWIxFrpjgAiEAmj6DUMk2AKvTX/c50nvAdAUrAYV+WM/OGVD4AtidM8s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42220034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvZigCRA9TVsSAnZWagAAR4sP/jPy8jPllNYAVtlI8ozZ\nW1lQvheMhLY9kOwOxrV5ar+FEAMKC6joBX9uBad6oagQwiz55ykoIUaMoION\nM7aYee+R7cxboXu1OKTa/Yb9pYc9ykSot72dB5Umc+zcqLn06nB1Z8f4l2Hh\nQIDQMEYIrmIf72tiKm3MTw/E0MAS8f5qjg94hhDHAL/sXm0qmX83d6KkALrB\n7oxxiyfuH4sLSxChcjiDI/Q8zp66L9DA1JVeUlLtVNwOA68at9MBh8Q/u7Tg\nOd7PZst7ObN0vQqh2B804+HzzULrEHBI6a/ha6Ms82+Kh9YiNyKZ683CG+Z+\nBEuyEO/x6f5voaZSBTILifL1rdtwdsHEtdelYbRufQTy8xJdNlQUIZZN6ObE\nhatliixUYcw1SZ0Fv4R2g3lZVQSZUOl+MSWTk+o8f1e7tGpnAWY1yfTX6Neb\nCT4eTzzKttNW4wYRCdUa+SVCUU+rjAz+ZLMzymoAauG3XBM4bKgcODUvBm7g\nlpeZnBnahGOrhRBZRBb3LlEwOKb0APpzaCNVTyO/AznAxlKlHvGW2ZepczLS\nbdQhSAoxZnjBrifyDXg/6Qt6YXNofDCrYFtw+TDRLd6bxdbYEsE3WszVY//h\ne5j+icT+hg4J2VPgM04Io25Tfc0G4fSzGv1q52SJWBuQ5+/mITEH5Ac3aqz1\n/7QW\r\n=WYQC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"07966dcb124ee379a4f062c1032fec0a6c4eaf19","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181010_1539152031734_0.8975913720632263","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181011":{"name":"typescript","version":"3.2.0-dev.20181011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181011","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fa28696ae5c216a2f03b30a0ee282ca8730a480e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181011.tgz","fileCount":79,"integrity":"sha512-YzHmvZSiFIyVOo6g4rpB+BQXl1m3BD2cgpDBhGGGWUuWHAHx3vuJFelShYol7kSPcrrl40PJfCH3AkohK34EcA==","signatures":[{"sig":"MEYCIQCJ/7TQnF7YsGZisUW5xyR5+wt+1qnmi/MtqZ0rE86UxAIhAO7eTT556rB07nk2TRfhSYPMmBfwNwyMcz2xR0KSPuLZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42225683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvunzCRA9TVsSAnZWagAAYOgP/1vAVMWJIpl1KWbMfk/J\ns1l+hT2xIbTkNF1x+0o8TWunNrcgHBULl1smkNyOtk9VQiDBS1GRwoy11kG6\ns7kXqIPxGa+dcLzKjjg+eGEQWx9innCW7gRH0a9HlP3l6aZ7A1v5kQ6eNdf6\n9y+S9xb40DqHc6g8OAqdiGcciLjqAlJIz9Xm/HClKMOYDoerHJsEmA6hdm5/\namW1I+Lj/ulv53NNOY+Jdd0pt2UoDxz/IGKKM6Rbc75yNWhY9e6hIBQcKC6V\nyEgtNviXsN9vnOzDaa9hOeNS4bNCWwz2C9dKaEhAoGK4IePguoESoEJuLCrw\ncGcZydc9rJQAm1E6isnTGsvAITsd81UC4juoSM9sfKMu6QFpgzZwkKxO1Sm0\nerj6YcD8leJ7sD95dQaIDbwK9qKBC1x2uV6+Po5pX5UYS/NuOV/sEYHE+8g5\nJ3yzg1UVxIuMoZ3pYOfaeQT0NvV1W93ORHe2/04y/huBykUv8S9k9fgA7VNm\npSgJnz0aBjRUDwT5irVW+Ys54SFs2bITsBI9odE0++NPHM6sB75VpiT9Fxaw\n0j9KVNhWNSjzQl5yhD/ZRH7Naykb40TMh4eAbSh8c2gw1gwsLqyJluEIT+Sm\nml7/T7NPQNj0TgSYGW+JL+8QUDgSluJNhLm97TmUmapX9mi5pfaAFpKHbMLY\n8CRr\r\n=5Xsl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b2bae85cceb310354f6ba1ac4bcc9d75fe9a6402","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181011_1539238386076_0.07734207141204186","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"typescript","version":"3.1.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"01b70247a6d3c2467f70c45795ef5ea18ce191d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.3.tgz","fileCount":75,"integrity":"sha512-+81MUSyX+BaSo+u2RbozuQk/UWx6hfG0a5gHu4ANEM4sU96XbuIyAB+rWBW1u70c6a5QuZfuYICn3s2UjuHUpA==","signatures":[{"sig":"MEUCIGEuXmT3q8wtS/GFbShqnrSQTBWYfvzjYOd+8BuUEuKNAiEA46H1MCquuCEJXKzW6rp49Py5m3fhNCSbegVfn+nCeCk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42170861,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbv9qpCRA9TVsSAnZWagAA9pEP/2ymt/4zN0HVKXqyVWc2\njQ1vaOva6G3SvteaI6qvJFQE/K/oQ+tQA6MEVV4oqpoD6d7o+Yt97yVRcXJa\n2eInUro/GLJbhjM9ZJcooWdrcwXQ42VPgqiCcKH8zdtVfEVnUlceOXrnABpl\n0Hpsyy5Pm3/+BeiAsUmeUQp/sM6bfBNaYxAMC1tXjXDXBi8etMTsO4MGuR88\nRQj7z+My8tSvjaFlq1++QcZvQYcCoef1Pjj9S4iVhoxNfzccVNPJPR2rfkyb\nkGBk7JHvKWkcgPdj3C3vgdklOr6+k2lrV5wNWgEZPgLglprMwnhGCz8VHylH\nyFY5wOAxYvfN2+vuOX9sKlEJDM+bm60+JTsdquX+jHP8pmudXHd5GuRjXehf\nroxbit2m/uVMBTiYKQSfQtLpkMDKvValHugdrxZYqu5p1/evYyjUJcIiwFIp\nDb4N5usJnLkyJvLWm+bLqBrV939vZk8aKIqSb9a2DufdAPihwKE+g+9Tc5qA\nq3m4+M4ieVVj1BtAfhxAKQG6O5wdnTUWqudHt2TkaRELM5X5Vs3/KFgHtstj\n3460Yi8CURmkecJbWOZOu/K9u+DAguLQjP4FJJCm9jcYcBntABe0xEJ2CKXL\nAXWXAjOgRgh3rUsPhDvPxtbK3tWdGiBaUP7SohY0baqw9lZm6C/70Kt9H/e6\nanft\r\n=0h0L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"45387b875a1099dc1e43b4ed2b7914d1a2f631df","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.3_1539300007908_0.6988841285787872","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181017":{"name":"typescript","version":"3.2.0-dev.20181017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181017","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5d07b1051ade4f41a0ec197df7e38ac48c01d05b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181017.tgz","fileCount":79,"integrity":"sha512-NwwjGaKjzZREqOAwtz4l3cOD2GqTh6+Nz1ddhDiAR2SGwpWSIHj2//EBkJSO+MuhnlZ52rNGVZl3UIEsOTeE2w==","signatures":[{"sig":"MEUCIEXoFvssJ6XvYIWvMjrcriPwaJNzv0s2ftW9u7zZFVkyAiEA2k09jx6Vrm1cd1d6EqgPmO1ht9fhvVEGix3+ODxDsFo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42135061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbxtNPCRA9TVsSAnZWagAAbTAP/3rXnDP958MNmx5+LOTr\nhJjuz1gL7eqIukzHbZrh0Hfx7eZErB+Qtp5QUETcudrlK49WqQgORgUVDHxX\n/0jGe4oWH3kI6tV9pSBAwK6O3IP1I6d92oEayzzm1Is0ZQDncETbX59+ytrv\n/fTpP6xiU3RkpQlaJKur8RTgINZh2WqbPQKVq2l32iopnILB5XEFBsD2qMxQ\nW11apNKFahf/hC+a55xGNId1BkSkwF20gvGXy7HdaDR6nvYPmLvWfcYCbRt/\n/bQ0PsA9ev316/Blyk3WmPk94MLJv+3ZSHPXfKFYMgEBb1wnGI/gxEfLP9wy\n57TUYNJB6oh5ajYOh0/EKl3Iem8hkmq2RmzztLgUu7iJkrYKPAmnT6dO3yn7\nwMHgHXc8SnF3mY7JomzoHB8pCaDEtj/dReWvUnhRY1as31KVdSvge/o51CAo\n2iGygCepp6xnsdQlPjAh2h20JZIyk+3MM25209nAIkmgJN3/pi4fA4B5dKKq\ncYNCrjlB+57FsxYVmZfdAQqjLoparGoHjPdAdRvg4G3JjHC76t8/dqPn9VBK\nZIuvBhG+IfHyzQYqCxY5dNwQowFVXEL+yNUur4lmuzVWRNd8cUD8hiFXQs3i\noUYHI0luME5BpGmvtlYkfq4r2+WoD8YsxLzLlqyAjZKsHpniy4D9md6LyLao\ntm4t\r\n=lxbu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7b5ef64e760101bbd3553d991f51f6cd56cf2e5b","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181017_1539756876059_0.3493665460949864","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181018":{"name":"typescript","version":"3.2.0-dev.20181018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181018","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2f05d613e86d06d814214a1101b3b8bf58d52950","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181018.tgz","fileCount":79,"integrity":"sha512-BML75AnK2PZu54xULlF3zQaJh1flrtt66NEYc4NBHZwCh1jFbVP2E8nNpoRcZyMh4EiSCvX3r6zUpPYcY10vzQ==","signatures":[{"sig":"MEUCIQCoHUpxIN4fPzficx9mVAmQDnAJE1Gh53XVv0wKvc7uGgIgdNR8seVNrggDzkxDIuW5qmX/cUjDcsESLLPiyAkhZi0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42138963,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbyCTQCRA9TVsSAnZWagAAfQIP/2wlZJiKXYpBVJ43xjS7\nrOF4p+Qpyjx0ewrlcvzW9h+pXylgUJZHHxlcuXDRFvA7Bwp4T3SUvQWiAFK1\ndT0eDI4XNS21fJOP+rLrDHGHemC1XAsC5OYV4P859mdYyQH/jwlAsxLvClUb\nQ3BPE9nuE+IRKjn51juepwxc0Jg03ymrPbgjvm9tJVJYlBaLELLvj28gnQwM\nOyHc6LBHXFArtnSi7H0A9LCbP6z0XDxM+D8g+C0s7XK49Whl9y13s0IR73B8\nyPPEIRth9JbjPB3Z70l2VGCLNrkIfHZO1AnOVUEd+lE4sT4vC487r4bi9K7C\n1xIUjAT4lTmlIO00g4SxoClJ1IL/IarbwXIIsdC9rcThm/TM0qYUsVOBcIQc\nCs0pTYEgw3TMc5e0JvX0tLCMbM1RLa6XkrB7aLlB03Rtz/hUoqg8SRz0W+Xu\ncZyKTCoXJlIJQIVhskGyZ5KJ8rKvnaJVsku06PChhjFAJhHH4eKIRnPfTJSM\nJrN2HZI6lZfUoDUyJ6oVB/piEyIpROVw+AIMS+Y7hEilFTTpHZ6e4rvxlTxC\nNKBTxvsSxiAy1V+YVYQNDk+ooaZ+EAB4KKP7Ciyw7x2QHZRoWa8JHQr6dEi7\nRWB6zBX/3ztIfmy+soqf3zperErbDuTvXHBhdhbNKo2p/MVDZI7ktRsbDwkF\nMbvu\r\n=14JE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e58371e03aaf7e3435d12fcfd04751588ea7ed7d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181018_1539843279506_0.32498946973288123","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181019":{"name":"typescript","version":"3.2.0-dev.20181019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181019","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e1d344a7e6ee1511ed5266cc8e753be0a74a3b51","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181019.tgz","fileCount":79,"integrity":"sha512-E/cYQ0JFkgTwcpqV03SkQr+Tg0AWTNG7qE2xLS7W7zQiVgjbdoI0QLH7qQdlKNyLKvKZCixOVYo2JQzjc6I+ZQ==","signatures":[{"sig":"MEUCIQD+jBY7ubWzXe8VwX8rdPCzz42lAgAYBFPeBXGfqL9x+gIgfkOmTDU+WAyojdN1h/ERsYMZj3N3j/+ycNaFxIUsx3M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42202710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbyXYrCRA9TVsSAnZWagAApEcP/A0GBvd3HNal8smDHr7c\nqxPCG60a0Vu1YRlaW6m+UzoL98nZH7QKui18hng6r7YwIlDs3BYEJ5aulkH7\nU6FJa4p3OdeIMHYCDikNKjrEuFBdFRrsYfqocXcbju3DXDsvqUOakpU9qYQ1\nILejAlDrz2suiDEk6db+g2x6QTLTCNUqaKOqqV5Hc1aC0SChDUKlCWoQWxBI\nPY4d3+0XKK4JH3oIEg5PeSHhtNKDeu6xLMhs+Xk1TQPQI94Lf8mrgdRMdjpB\nka08vZ5VSXRg1DB+85qXtEmhO1znU0HGKHJIy4iNXVdqsEyvtCFQlF5XBEZP\nUphCChUnxvyESuk2GzzhZj5/rtuyNsQl9dpVgluN4brSTQr+fwbq/zjNqFia\nTsEgJc4DMlGLx3/Rm/fcG2pQI8dq26WouxGbEWMk37lhqxTZSNjbT6SgqlBW\nW7TYPr2mXWnsWMq03xIT8Y3uYwwr1dpjx3UZ6zvcc8D34qtcuMd39/hHFXt5\nu5q4ztfmoCk2pZU2ToDovObRes8WAIbCfIIWkFWOxamq9BBYPYLuUntQvEwd\npDkxPnr9faPwk9y4Dk3diwan2NFwAvFaw4BkLhV7dcyEK3SfRR/Z5WIIZDYe\nOLvFxJMnTJUYyxCkDSB2PJfo0jbG+fT6zjPhUB/UOcFfQdZ9ayBWseUDFNMh\nzlDk\r\n=pkox\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a3c22683ab7462dc71935b3219098a3a3c98c9ea","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181019_1539929642581_0.5397014994902745","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181020":{"name":"typescript","version":"3.2.0-dev.20181020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181020","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9383c467d060087c0e4744fb41c75f98769d6d43","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181020.tgz","fileCount":79,"integrity":"sha512-htN82ybynLdG98dbdxIzxJV8upd+YK65LgDlofECMmQkrsjO9aQSDdq/evLgDvMIePGpNRYk6GYiS2NsptRKBw==","signatures":[{"sig":"MEQCIDvxZdMzS6ljWyURxJStBLUf3vF0hZCiy475uCWTayp8AiBkYC+4n7UuNVVxTJChI2zGaSiJ9EaDhka+O0Dd8T0tQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42279107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbysfzCRA9TVsSAnZWagAArBgP/3HhOoS3PzUX5WJoXRFl\nhmhfWd8F/amB2ReBrjVASj6dhJBX5YLik1zhUhud50N9QzLXeVq225td1XuK\ncyICv/38r6UbO9F+X5m5p/fc/Yhgcg07un6SE3Jd9ZNScN+OlzOqYXaiEHNN\n172//HE8OTS7fiw1lICuFD52VwKe3DSZv1rAbjmcUhq+ouUT+EeDPgUnh5mJ\nefK9NmzBN2+gW6VXRtnicYyh6L75ga+oSjQJHUOlDNcfCjnvnVL3MSY21QHz\nbXnQ0jLfA+esMXaLHKW0vKSu7/snWbaSmAl+uFg44kgOybLWc6xk2OCH3MkP\n6ncExV7oxAw0g/bO6JT6i5UQI9gcvtc6uCtiolugmy7vxNxyrAkaF6l+39Pk\nlDYOhOtKX5CvD4R8SbbZEzbp0vzPj2NmPeIxIZ9J3KuY2/9numDZY1tNTcsN\nIysTFN4QZmiaRfsAkrEn5IMtiNSeskVQA5n+knBeqxDn1TnHUnixyljBTd9+\nE7c5AuGAr6ZWp0io0x7zSAj2r3hAVpfQdDOLpi1GA5EmBrLZwLEvv3+BCg8k\n9D8USL3vKz37Cd59TWPC6IkIPQB1JJqaNf2AGyunXPWGpbBZwUFGh/9nH+dF\n4xHecA98AV8R7p8ZUBLx0fh2ozalugMy0aqKUOQH7tUsAqMAr2JS1KHYw74M\n8ONp\r\n=KBk3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"72244c5b03ec13a77088c4b2f016708007655ce0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181020_1540016113903_0.9180956671452261","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181023":{"name":"typescript","version":"3.2.0-dev.20181023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181023","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a89a4019cfcf6a30e167547282e51192a83d5e4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181023.tgz","fileCount":79,"integrity":"sha512-qTv31d/po+iFPOfpOspGAper4wT72E936HaUQ0O7ecqefsKm7S13dPdBDFjJ4RmNL8MScl6R7BdU9h0CcITdVQ==","signatures":[{"sig":"MEUCIQChs2F3I4V7xGNo6WyJNU/URAq4d4hQ0WOTmfnwn+E2yQIgaUWL1mk8ZFwWhP/KuoRizobG88XSRFwthmJTutubhG8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42291664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbzryzCRA9TVsSAnZWagAAwz8P/247ldKHTPav81s2EGfP\nYRCFjcgqkPTSiFEdsne3el+7gDCxfEpN6xw5bZUAuKuF2HvXB6CJ4NlPqDHp\nSZ+jZfPJ4sBo4wnx7Hpb1+yDrhwv5FlJBc3UB30T+IA0PIvwsZZth/QDkZ1K\nwd0zMSryTn02ubwZKDVYGSeG3afoFeAjTVIdkyNta9CaxrfHIUYA+nA9c0/F\nU3cmk0RUif+tDJG/YgtRQoSaceN7PHlKPeG8binUog7Ie/0nLHnu+w5EPfy9\ngzGmqWRxlB8diGxPkBZYu8lmeyU7oETs7rHr44HYejvCmnN9RaS/ba381slZ\nRAW9AxtoxF3Ml3gTadcJRGeyHTwwCwqGL6esIeSxDP66LaunL6n5M+LNuGtP\n2kdA6UW7EqFvEoHQkZFFPfEEL3dhk3B8UDT+j6e0P+3vl8jkTbmkRBwrF/SC\nSyCvxspPC33kRYtODQ7woyLBhWnIoRX1a8enY9X8jzFMOZRVBnRVwaZKZ4RJ\nIyuUIat/sJRBGmAsqyObC3cvvESHSxZAn5g0f3MNnsfwCLDEHG0TcNv6hPrW\n2Xr15sLB5LXDcrluyQr/GAQ5grIVqjPhqUu27g7cKgw5jUtx8HiFvokfVwaW\nvzZ+fX8cm7nnFBQBvr0P+u0Ya2n25lUEOQHeCclnvYjsUD9at34tpRP76KWs\nJsY3\r\n=ZjX+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fbd6cad437390693e69707928896d7da620a803e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181023_1540275378972_0.866688887003833","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181024":{"name":"typescript","version":"3.2.0-dev.20181024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181024","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"361f47936e729238997391fb884055439eb0b82f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181024.tgz","fileCount":79,"integrity":"sha512-ZrkJxg3+LugTiOtfZf1x5Ub/SGXsjyHpAwUJOkI7BXKZ0CBBWK04thR/79OfC2KzBAWQsmHlsLu/TlQ1f3cjhA==","signatures":[{"sig":"MEUCIBha30yDnr8aEQxbmhvGbciIHCpxQQJ97QnmUwUk7Fr4AiEA51hPBK8D2gOI0wtNPz+MbmSuQDYeAiBWn6ns9AFZHMU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42306113,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0PIsCRA9TVsSAnZWagAA8OEQAJAnKGeDeYNewvdoweQw\nUKjDV8tCKXScx5xCyJdnUyLTQCOIEvMOLGaTskbrtVWbhSj+g8ruWeZNSwd5\n6jcScc5iyTRqd9cB8rNZfBWxkvYkMLegJV5mPfdNh9fmGspO9PZm3IKwmc6d\n8PSmFDuRFSQx7pI0JmT3KnvRGA4Z6HWokwJpNeEaedWAzfV8sV+7X2W6iJqP\nCc6KNnlrI1XqnPT/V7DD75r9RpApLZVcEEL9fRKI8uIOJAhdPRiILTFW6BfN\ncPrLZViSUADJz3uyW2UNBb8XGe3XUR0s59aBdjjsU9c72w9qL+cAxP9mv6GH\ne5+l1D0GgxTlBGsoVXBfFFiQXOFQHPTlVZGzf4h5l0msYoA97niYLGqpI672\nkwanN0Jzr439mBAVow+5IXbEW/a5cBY72T0Dl1+qUzqtdXEHhQj/9Mk8EsYM\ngdERjXQroi8dSeCq1dwrle/BaNoI5ETxG4qtGoe7K1q4upjmvM+f/MTdj4tf\nvHffXJ/nHZqo2wz0Zz/2d8gTPlK8MaCsaSVA8Mfr+KQZJ9buD8eOoU5h+6mE\nLUv4ObhnuE+c33QWhUYOwlMW/v51Dqb5d/Pd/mfx6lokfYxu+4i/s7F3tlc7\nEKmfUdBzfhK31UP9Ox2GxqoHXD6w5dEg1pE9OEbS7vRXKFm3dB6/1RkVPAWc\nF1Hq\r\n=A2rN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"64091950546f18209bca48edfa2e3433036c4756","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181024_1540420139336_0.5608908947459419","host":"s3://npm-registry-packages"}},"3.1.3-insiders.20181024":{"name":"typescript","version":"3.1.3-insiders.20181024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.3-insiders.20181024","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aadf571e99ab8fabc926d320472363152732e115","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.3-insiders.20181024.tgz","fileCount":78,"integrity":"sha512-QEgFnwoq6FNCs1GhRjyLp3mpRcnIvkznDQHEBAO7JTo8Awzu1Xx0N9LBgXumxTO5ooQxOIJFIev6BG8P0mtTwA==","signatures":[{"sig":"MEYCIQC0DKInIz7yGQswlLOP2bartTefzb92pZFTkDi+z3pmzQIhAPxoWZpeBOsd/rAcCaS/WAVaWjRYzvxHv0E6xjR7dlhi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41961863,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0QX/CRA9TVsSAnZWagAANzoP/jgBkNR10BY+RkPxFhw3\nPKktPMCpIREqpObv/ulfgOiNYs+dZ/qH4GMvNKw97z2S/fxef6tYWZJ1NZyZ\nwR7hEOfkq+VNiNdBYB7Br2ZRZ+e0nWyzIySiSPthmTPmI79yroaI5I4CApkk\nXU0YTcVLxtiCnQ/tWBRoQVHhCULP9MH2TdRGA7v8rEHo0/9cfjuGmUdSrJ6k\n7ff9VwpmmQMis+QCpVBEeQcRs/ekkJQS4/3WNWoKgL06ESIIeOtXI1A9dEPp\nE8ccfR2K/TgonUYQeKwl6ja3+iQWV62nG1CV4dbiMWdAgRh51igPoyrc8heL\nRXgPB4Sc99oAtaqPedrUBKvdYxaw0+fKichnqyVgWiHPa4lINUeUck24cTe9\nc9qpAC3khKiAL1itM6E9EdUQYqn6xJKLEBXKV8OESwfWVAXtvi5YDjWLpaeV\nFeaBzp1DME2ubyfgwDrGJedkr7eld7jZ3VmTBQdkym4fwlIqJ9payXtRfgiZ\nwcqYszQgblWqqyN8td2mrCSoHmDivTrmR++vo158pTJvImVbjlsvREUBA43s\n/mkBGQ3KWuIGO7Y4bHkJEwNK9OkK1TTHwCzhM8COvAQxBKqcUBm5PhR8yhO1\nBZhmMIJrTQEHnyuRsFM1KddQc3gFHSG2YPBInVwXS8DviXDq29MmOQ9JT63j\nfCTs\r\n=eXUw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2cd9ebadcbadeea03e4601ddb09bfa671328b15e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.3-insiders.20181024_1540425214819_0.787026742689545","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181025":{"name":"typescript","version":"3.2.0-dev.20181025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181025","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bb7b7faedf02fb46322dbffbc85417ed4a89a21b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181025.tgz","fileCount":79,"integrity":"sha512-1xRlhW6GCB2jWVKhS311HWSIdBMdkUdPzbmc2L9ONx0QvP1+PIfgJIdLdTLS4iuhMoAVQegqIpMkC3f0QZ2pQQ==","signatures":[{"sig":"MEUCIQDy0eM5lC8hfni5Osl0cg3bCHRi0QR2/26IduhYKs2RhQIgJqsuvDX+1f9z6I+M5NczVcbdb05fPruIfLCT1/UGdME=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42362058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0V+gCRA9TVsSAnZWagAAJ2IQAJxk65vSqDGxkXJr5f1q\nVXunoQOZ3nnfnfHN/lwvHQhsbNezkrFaxY7yWUgMX3RddHlRrxy0nyKqrBGm\nfxAAWDxzsyML6w0d6U80Yr/0PEXvDWFI1eRcmq5XeVMxK4W/vmJYvGp6/oeA\nO5dVj5Vm38eGQLP6l0PVz95M0VAhkUbC/VA0Yw6Qxc47xfFv1ZZHWbHEd/Cp\nwKvXLssSiJoNT22H5/iujri9pDDUB6OVgTD+hJBH+ARojTrIUAghEsbT7OVJ\n7D5ImfmApRYTSbXlHz/kjAZjhR/R3SvEuZq20x4M8E7vlIs3UOw/pfGZy89L\nOHvmSfruQI6/pMwFbLdnRUj22UE6QxCO465qW+AeRHsa315KMqUxk1GLYK2q\nDk4Vwr8V29+/RGfQNlKrF+Wfge8K5jHDHK0l+Bq8l5KyAKjquV8bx9euRlEb\n6k4HPW41awWpvUxrzec+wEE+pA4kISR2KjOxWff+wmAf1c8dQ/2tD4gXKofu\ngaAkulnUUiJDl1ZXuX1DLl8BusVUCR0lnBpKZ1pXbRwRZiyyVrtlye33k/iq\nGmxIph63ITyAA5OiVuQTgL0T8p5ZdLrHLR+QezvwhvtQQp788nUQLjVxxgOu\nvx75TN8/vDxSHvSHQCzOCcq4axBcQnruMwIxGsiMjvrpcVOHIa8kooIp6fr5\nRnOH\r\n=4PMq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"42740d66c2621dae3740a5f849fccbe988d0d7ad","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181025_1540448159173_0.3366569571668885","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181026":{"name":"typescript","version":"3.2.0-dev.20181026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181026","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"74ddb886a89c9f4ed81743beb448d16d909d9a9c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181026.tgz","fileCount":79,"integrity":"sha512-YCdiKW5Cx4G2U+kDQpNy5OA8wKwdFEY6viuleol2/iBSs5dEr2SUenYD1VLWT5/Fkj2UUDolhSTfLDfi3Nf+LA==","signatures":[{"sig":"MEQCIGAmwTBVscSs4OoM+4DbSu0txvquQs7U+IDuYlZfAYKTAiAJI15n4Cf+Wo+O5nHy3L5SiW4v8xf5UISTL+2FTGccVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42373008,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb0rFKCRA9TVsSAnZWagAAH8gP/i/lw8Pxx59AW2c32M/l\n6AvvT1wEtatZXyzEQnz0wktdJQq2dkMhenyyQ023/kJIQRKrcwX3zOUwh5av\nnAKCFOoIQcZN9/8QLXR43KeKkX3bA2Xn4y+BLz+peONeUoQWS93J8VTxy94N\nZK+zdqwwH4SK65grq1fOIPL+GFeC1DdHgpPYttzbv8lDtOZE0QxVxAuugIeg\nAkuOvGRRi5jHl5oJ/IA9eynrSiJ+atkBedW58PktI8X14W7hrWo1z2rRXNJ9\n0aAn48kkd1xmbYiVUZIy9FD7FZKmDr4E9z0V7A0OWiyhFUlO95FoCZoSI+jv\nQ4pndcDfYXzNhl728GLYC7c61PbR/jVNKFPqReH5qmvtUc8hMDjSqQALYvCV\npshkvPhtDoGp2Bpx5TbUw3gv4tLR8O8fZK4B462T6DVB4Q8M9uH06paTaX4p\n1fq5MrzKYqi8IXj+/LDYfkpHr8pFvH9pGmgBKzUqMU0NJ+X0a+y3PhoTwXWb\nbgTGX7pGaykU0JIfqEWyxPewY2Jpeym4Ieo6TtI8QNhddL48EVCLYjVKsV4K\nKr5uO9z39eokw7Kg6AFpgKLQrCj8tynGJ8FuQ2mPkWzxUle430tocyabWEwY\nFd2K0IcCmfEOTRHjWDY8/f5jHOl1g1aZcDVLtxKqOPjMllVR0oZhlKn0Xd9Y\nw6oA\r\n=5azA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0e372e98e83e649a1a7c103ea3dd4df8ce5f51bb","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181026_1540534601154_0.7908215704708632","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181027":{"name":"typescript","version":"3.2.0-dev.20181027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181027","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8f30b9c44d255dcbc0e803fa4fd0196ccd8f630a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181027.tgz","fileCount":79,"integrity":"sha512-mRKqWa8rr7j40xa/7nSkhsa7jSwAoH1PlQInCDQ+G1UVUsMfA7vdSo4Qf/jq2/wd2wqnF3M4TSvQYiYU+52aFA==","signatures":[{"sig":"MEUCIHszcPbds9zhs81wVDdcZffHnZT8ffnFW0qr2AvllBrYAiEA4UP4J0BxFPhihW+zFBkYbNZrjmc1RzXcSiaBw2VlZ1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42393170,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1AK+CRA9TVsSAnZWagAA4MsQAJa7ucRD2sxnjH0y1JRV\nC0Bc1qcx/eeeIAqe6oW+rTUGo/fYt2E17d+9SVJ8rIzyg1IEZTWkY5IOIlU4\nBQlGLFIIMHbwf6YQrbeF3ykLwFSNw45OLxri2oEAWfTXn1RBwyHGPsWgU2Ct\nwyu23UZqHkdPof19ge0wCfqvP6GFimibniw1Mn51wJ4tuo04c1kIxIlMpepK\nhcacUMagqAKWgAwkpV2bHUv1bBgLrKfIiC4sWysHZutUDLGqlORLk4euyLX2\ngM2jiLftm8pfaBiMEO4b6GocNVXSnfJDhw9ZtoVSwdIAsKxzfavOfJWLQGyd\nIXluZ+Z2beXG74MFNHy8dowJ0TNp5P0WHbMz/m3ESnmJyNlOAt0Lm4jGc5mC\nccEObGvLDozgvbEY3N7HnffGWcsXMnvSYi4uv0yf69Olkwu+stwkTfeM9G6i\ngibo1xyC6wUd49Xnniq4q/0CMcHeohR/XQQx8f5c95A+7CCo5J4jWw/wmw+4\nfP7T5OxzGvvNCMd6/z6p6nONmxHZZZxS2VpwBSF8qOOSroojkP5XqEx/nn8K\nuE/pwhNu1CN0Y6jOTTDogca7UHMmLIhGegcj8V03y+ReFCrMPHEBGxi4XNEN\nkHnSvKchQ1SuK9QV2PxgMcyDMrjQ6hymgQ1Iwq0erBi1zFKitIpcs+yYpu8/\nfXYm\r\n=zFT/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e2100cd2cc6ba488cdd2a4bf055d78e2af4f0b5f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181027_1540620985594_0.8677988938202499","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"typescript","version":"3.1.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.4","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c74ef7b3c2da65beff548b903022cb8c3cd997ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.4.tgz","fileCount":75,"integrity":"sha512-JZHJtA6ZL15+Q3Dqkbh8iCUmvxD3iJ7ujXS+fVkKnwIVAdHc5BJTDNM0aTrnr2luKulFjU7W+SRhDZvi66Ru7Q==","signatures":[{"sig":"MEQCID0TxfDPx6R2O2N0T2bQ2M468uS3JzGiSCm7adYqWk0EAiAMpCEndlJs/HnIIDsU9qXHMcEHv5BRTBatly3Lt41+zA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42181240,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb14BGCRA9TVsSAnZWagAADK4P/AluTaPKniyj/uPlD8Mp\nhAZuPMT1ssiOSsCmydssHzY4hJ61K4JYMsIJLkqVRNllIME2UBYpQvGJn/Xl\nJ8haq3mP83LwdSPuWIqhBUPERFOnRoGJJ9j5Kxb2TNH+HM4AFles+JsuPnCR\n5ij+0Zj2mhOgeM83y5i7miH9hLxFaqJ1hPa9pPQHs0xpc15Fu/QaRGkVWd8K\n+jdG5pw8yDxqHGclPAWl7nOAz73tbB8HYh8WAzJzBJH5Dd6jkqj99sn4P1iY\np5QP07zhlmook/kFOYKzYJXpmo9NucopqN12EI1pJA3DirZqsIv69IMqKjPn\nhnhkPzLxKd9AIkQYxnCouHOqG+pW3Fx4BYYnCL1dbiwmLu+6TgA8qY01n6Ih\nDDWqIfYFPikfRKAzRL88beNAaj2cLgeMcHYVjdZeIeyrs9Te14sVRGc+/vXs\nDdnaVxn5lqFtOsvi9jj9RUUD7exYDPCba8XS+qOzATanpjXR11tUBSlSUOkZ\n7xcgsGjPjEz2gjvoQtZvhWnCsISE7PQXKa8Vud4Q4rZcDKCAToTu+A2uo07B\nQhgassTz5ovA92AthYEaVU6mft/84C1gj2DAsYsq0Zg7jMWTPBhQe0WnBWL5\nIFYk0+LmA9rK3jaaYDC9LKkY/96Ftt7T0J+8pZ60uMw8Q5Boydrd21ry2so/\ns5sS\r\n=jXrV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9733858944ca6204dff137e03373da4668347ce0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.4_1540849733477_0.30309740192278123","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181030":{"name":"typescript","version":"3.2.0-dev.20181030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181030","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a80e3377101224aad5e1e3a341f320b5a9b9b1ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181030.tgz","fileCount":79,"integrity":"sha512-UqZfZY7xAojS2f9SdLTEJ78Itxs1rlZZSlIHffQwFxdnO/jhMBmcVgaVpT+dsjnbuWnZKcX3Dozkdw06TjB8pg==","signatures":[{"sig":"MEUCIQCZozgvD27zaecY5J67CCZYz52OU89vDYxuDVBDc539vQIgeLLxDbn0P9NyVjzYnwMm2Mmxif0CtrHstAEnPZZvHdI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42438214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1/cqCRA9TVsSAnZWagAA/3cP+gJ8O1qCddR6qr6ot1C7\nK2HSTcdwx5tVl6UUTf+25XFYJXZ3SS9SvH8phjAiHANV/B09rHflV2A111KN\noyQuAd2WSYbVQ2vIobd2DJD5HS2mdxTQua2wpGop93NZECWtulDGT9SqVLfu\nt0eW8RZXWx9QQ+iRnsAKbGpNNQsPxLG4q/JBIeGcmLvB150lTWou0D4J6lBF\nw9xN66K4lBZjbzbdTj1vQIadcnR0B/N2kAHstJ+ohRAuy/ZkkH0pJd/jymsO\nXxkRKrml0l1HOqlxCbF48gLmzeUHvvVVPZKU6gvD70qPJYNzVY0EZXTNfkR9\nmmxNcBB2V9bqwtRKYVc2nGT7Jv+i3U92xveEUW77NGIsMGwpWkCAH9/iN0C5\n9vWKnJsYfv6Oc/SOlYXvLNnFz+m4d7Dm6pDH6GiikFuHkQL1JVpy9rlYA5iy\nChq00h9QXQGskxN/rKLREVzrpxuSfnynQjx5cMHGzhcZnvlz7k9X6PDiLD7N\nqlFtGQC+0mbe8Ze6Li8x43piJhRhtA+s2S1X/EQlUn00NF1PIsRNHFeAf05x\noxDtyn2ri+OCsOr18c82gcs9zZBW+jgKCkxeGCjJEefH21PIDVpD8CX4GilE\nV92D3lfc+Va1f1+NKErVYvI42mn0ieB5srHP7r2op8yPEfn8FfQ/Jrfq0xHd\nCY0H\r\n=7VwA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1c4590341f927cea82c4bfa9748a08f61431d5e2","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181030_1540880169072_0.7074201768045283","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181031":{"name":"typescript","version":"3.2.0-dev.20181031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181031","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"25042e2584246c9810ea4f08106e248fd84877c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181031.tgz","fileCount":79,"integrity":"sha512-MkAdVLdevMLrCQjkbei2yPP2OtgxsVL1i0mgC1k2iGlhGvEoBFhKQvmDU4peOkW8wxvGEq+PmxHV/kOo9+pAJQ==","signatures":[{"sig":"MEUCIBZlWDA6ZjBQ+NG1ArcgRdgkRmg3YywW7pZ5lp6V0Y+sAiEA2w745O/19gH2aGUTdKIjeR3aeXyy4WDBROMp9ufkNNE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42458921,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2UhtCRA9TVsSAnZWagAAI1oP/0v8PXliiWjlTb6DjLYX\necjePF+KcVwLxSwIsvdMKADngweeSJASDQPdiqV+hVrjnHbUf83mVn/dVEBz\n8G7m9c3x4uXtEV2WCywf4rrP69LnZ8WiNy6HRP6B0oMJXbQTpwLiq4qaBByD\nSCZGFy+jJHu672UOoiy8FyG2PQjNdENABw+6cLmQvuk4f3++VCVNiRZBLxh2\nxfrBRlXrIu2sDEC2yhIm406BW3a39i0QkzsVRubWp51M+JpwM9O9MBdcZ3LT\nRZZ9HibFpqN2BS4S5qGzZ2UA8/OWzHxn5TQriHPp/TlBOl5sdbdiFtrkOVz5\nV069sXigup5Gd1ZuHqdghdqIsftDwgz5gNEHKNbe+oFiREamfdoN/LKV7XVr\nVP6irb0cmhRaf/uvDQYXNt+cgsy0AYYfjembKbOZWIefVgmwnNTu9ZE+4ylp\nIwNPVidtxPiMFCesOiFqlOf93QlsVyu8e765QnIm3NUvbPAz5FFcTIfFB2vP\nvse6dFIadnWg/yQpdaJeVy18xunHHMdF/NFNkQh72N+JfEBKRKiwY9JUGeuI\n7+y2E4794g9ZLOLY9aTB0yql4QyBfJjlo1WZO6Df99EsJbuz0zlNaMX+tr26\nFw3yR56WL2NVb1GgIBO5h4pkgC5yW1Nrkc2a5vxCErxNodtRDaZqV9uyq2hO\njAGZ\r\n=M7Vy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"dce6668070ee5661e0e963b1634e048157a5fb54","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181031_1540966508263_0.4786924164565214","host":"s3://npm-registry-packages"}},"3.1.5":{"name":"typescript","version":"3.1.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.5","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"93d8b6864375325a91177372cb370ae0ae3a0703","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.5.tgz","fileCount":75,"integrity":"sha512-muYNWV9j5+3mXoKD6oPONKuGUmYiFX14gfo9lWm9ZXRHOqVDQiB4q1CzFPbF4QLV2E9TZXH6oK55oQ94rn3PpA==","signatures":[{"sig":"MEYCIQDyJ4kafe40pkHCObp8OgtPx1CX4GMdhvvDlVGwE8t2cwIhAKw7YKZVpOgBchQx3wFBjTAZ7gHKouF/6TEpiy1R7Nw1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42181876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2hCECRA9TVsSAnZWagAAoZQP/iKIcSulPi7TG91hteZ+\nNXfuUBezzTkCLrXeeFwEWlcnRlb/8R0Yq4FXC9ftJF65mVBdM3VWXxAMC6i0\naN3TUx8pY9rkWiuRIlgXrccDhFk/VCMLhQiFhuz1SpRL+d+XgyOTD2NIIkv4\nQ5DAQYkmjW7ez91xPPAI3G8ev68FJpt8zNzGJ4AsGKX9fBz2BTLZ+iYKsd01\ncNRM044wSDh6fajdwUHQKJeAyh2TEhaE78pdTO7aTfZiKYDSEdVaM8w5a8sr\nhiYUYzGSTCSIb6ZMpievMj9eZMDusQgjkUbUKbVpUYjnJK5C8+SznkVTcDYD\n95pAo6FHn8YTv4FsxQHhTGBX2RH+Xp99+w/IiwJEP/0IXfCyYZMeQd5ASNUJ\nSaSgLFO19aqga8r8ngQBipAZ7gSSOF+ofz9o5phr/i2DSJhcwrsAFo0/YArk\nJ/xPomtwm6M/pHWG6hJkwF6A9dXt5FZkD3DRubLFBIcSuyXr57GQ3hMVoRWq\nxGxyZGUUOS+BmB3rG1Q0N4oZVvrKgY4FUqCmnzvqygwNjWPiwnlflzi18hK6\nurdhkXq5KbAK0u3R/nwQNkwTyLXeoZlGwGazGOLtpoxsfq0MjsSun++k9bfE\nSlASVrxlDM0wXaCIYq6Cve65jWwO4nTwKqqlxn90zaZUSViKI8+JRHGRrlgl\nTTlN\r\n=pq5D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"84d1de761b7930e22a0ea5d91e27dc0ce04f9eac","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.5_1541017730873_0.39491685653449426","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181101":{"name":"typescript","version":"3.2.0-dev.20181101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bd38f9b2977c396e8225ee66ad75c4593e31b763","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181101.tgz","fileCount":79,"integrity":"sha512-7OL68e1Ab4L5EyKsscjgta0i6tiwzzeYCnmd6sLOJyy0GAvvuNKbtHQlICBhF227z8K0P8r/OQoL32If5So2Cw==","signatures":[{"sig":"MEQCIEM0cWufurVNTOpx349UyZ3r7X5wYTSEw5Nd0DyE0rjoAiBSpGJCZ2OdYAcKsr3zssw2fNUzeuzZRrty8ZRMtehBQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42496843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2ppMCRA9TVsSAnZWagAAjzIP/1dy8RzN0Xc1AtfwU1o3\nrf5IGwbtvO542NUUyiWzWlL6pC0fl6eYp9FYFuD1jZOdS5Sujmj+T0hrcTZB\njjj5ZM54CkjNLc8SEsmKoQ/UdtYZIfOVKj3dpeTiQ1fa0AN6IgP4STvoRhcn\nXIxoXdNjTmjtmtgrZe5/SAzhrLSZxlmydvgh4zu1nGnOPlyTByzPPdBY4WkQ\nWtgH/UfpIyHbEsh3+0ZL9itfMQXLtKjlmXro64x1sVLt9nSbUTTCgvE1w2Mq\noFmC+ONUKR70m1d1OWUtKThOHKaAArzL1XFWXEeRTHkw+SAPJGTV2XKYjMkS\nNvu1KRPt+5N0fQbudXgy0qtofnSnvtsWM4SxZWTmzUNNwdXCiiNhweQ9+d3B\n0Ir6s7jF3kegqGdoxSTccnr+dRO117lsjDjOOrLU8vgL0kfYeRAAeE9IXeA5\nfFGx6IXxDhLnTlA6u0Bi9ccfd2ZMtyCpTmBHzE7UuAy70WEn3aSl24oSpiPz\nIsHfvdBsUsMxmZvC9i2ch++1Is6o7YXbPGh7vcnVtj4we9YvJQm5Ip56G2eH\nFTSDRvJ+d9FN6BuYB3UHFfmrBPVZvL4DJqgsP/f8mNc3wls2psUHMpvcGsy8\nONl1/NKKxZOOhrHp0dJkrgS0k8Hp704E7K0ZYEApwZTQp0BaxkSSvmXtkNAw\njJqq\r\n=S4Mw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c780186a927534352eb9f987c4849e429b4c160d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181101_1541053003023_0.5034169074701997","host":"s3://npm-registry-packages"}},"3.1.6":{"name":"typescript","version":"3.1.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.6","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b6543a83cfc8c2befb3f4c8fba6896f5b0c9be68","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.6.tgz","fileCount":75,"integrity":"sha512-tDMYfVtvpb96msS1lDX9MEdHrW4yOuZ4Kdc4Him9oU796XldPYF/t2+uKoX0BBa0hXXwDlqYQbXY5Rzjzc5hBA==","signatures":[{"sig":"MEYCIQDW79uvc/SStjjlYPPDBOXO6qIoyAchajYGea7/pauc8wIhALTVWvzACq+mXzlxKHo26ftdmqQvm7Cf2outlidXv2dt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42180892,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb22hmCRA9TVsSAnZWagAAfiMP/jsxVwBeB9kaFCEP5J0a\n8b4OxSp4cmYS7S5b+Qrnoaz7/JMbsyZdVH9ThvU2t0OA4ts+TUUMG6JVF70D\ntNQNbmQwjyvjHPxKPS/dqSYU6prWFjkRRsiBXz3dv3wnW7wx92dfrTgGuRIx\ntnn0neTnmU+pBbQ48r8J30/EDQFny66rXSLsxA10DCswgvEUnxqr5KEYywKu\nZXSHxEw5h5b/FOwKsjVzfz8ZF7pvDe7iIQUP4aU+71ZujdnCYLqo5eJRHJct\n6QbYldo9Qf7q4trADAM6PU5jwzG1EEux/pAFIur3Z1syX0LVPbuIi7YCiNan\nD469JZrRiZ4Y9oVYRNCV0HrETQ5JakfmwfYndXdn9sPHsNiZpRlmipwEpG+F\nK4yFG7TB4ArsA/6liLyIAUAlxM56xYlTK5phmAw0CuH76ejTs//I0CgGrzkp\nFQjGdPwsQlLzS7iXvdHpt94y6RrLlVv00oukDXdwbB73HBD+7x+x8OtZvJOZ\naYq4ZbVulUNXRj3wQEeR2/VzBjSwohHhFkJGzA+cUEX+nu0U+RRHhDbcSZ9g\n6tzECFtog4iVJe2a2fVXcT2iuAvWroGjWN2viPUWxhOCoU/uOYOnAFE5i+WQ\nUUb4hi+3lvfOUjTboiWL7oULpJMlSE4EMHolPVBs842z6D4YYTfRmFiBoDFU\nlDjK\r\n=52yO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"457cbba56de1285825b83c5796285702549201ec","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.6_1541105765047_0.9850383262105045","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181102":{"name":"typescript","version":"3.2.0-dev.20181102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181102","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eccbc20fc88bb4680962f1e67410e6f4374be241","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181102.tgz","fileCount":79,"integrity":"sha512-fjHMxgzARm5KkT3WBS2j0/TaD2l49Oj9DknJUT3pMpg+wtE7EY7wMQsxgB3++8fDZzD++ybJ7L34y6G+59c24Q==","signatures":[{"sig":"MEUCIHBz9eJkKu34wjO6Froy9WnpLEHhpk96tiUSI6hEblZPAiEAs5+x/yt1tPjpTTtcxOJlAOme6rYB2swIWniyTlsMxR4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42488193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb2+ujCRA9TVsSAnZWagAAVzcQAJUbW1j4NMSLBMRtBGva\nhNbHPfkP6mYvS0Fgjoye9SwsO4ZQUX19JfLe0O7SCj2adZA6zuGKA9HOuXma\n1PJ5PjMu+7jarqZJA/hRvhfo2ojzTtbyTPF0syYtYsbySzeTZlBqHdDJWGz5\nY+yE15XK/t07B8qYS1CxdD7eaikvq7eO6dbAdOgiUg1zS9DNr/ky+FCKwgCn\n5XlwZU5RKSv49M2Ia9jtAo/0qT3//tpx0X1T5nFnW8wCJ8c6ebRct12O/B2u\n3uG4n/QRLgFUbbLoUXPpx6LFISE04mk3EXMGm8iJwYAFegp68H+Nqq8rTCTj\ngAlYgZDpoMkJ4Q1aMG+sH6s8KInLBpTZrQ3uFY8lB6Vh0wEP8O8+M6Aa7uGg\nwfgi8AdyTk6JOTQ94S93UoveUxDj43GnHKw7zjuKP+i2Wt/Oejaq3Mc50OTn\nH9KTCrFZLUivyWpiIdv9PqOl+j2IUmzkF+IFjQxto8q2GzDJCvwkF57s2MQe\nh/nLsxaYSzBJCQQEzycYLh9gaOu7lcM/+mBJpGNrU1r/rR1MbZ05PStVd974\nXdHAFPORq22rWTad2OESa65T6g/hhNgAckrQRaDLLU7gEBhkKPsH9Gy4jW/q\nWSfsxdBMCUdjsiJSL1IwjS77raDERpbS/3wCMp1avsnRotVSmq/ZkUEm6Pv9\nWAkq\r\n=g0D/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"29dc7b28110b96e833043bfb5c54bcf6ee79bf10","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181102_1541139362093_0.17540658325497493","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181103":{"name":"typescript","version":"3.2.0-dev.20181103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"14647f81e20f5127a89c4713b77ef51cbe8f15bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181103.tgz","fileCount":79,"integrity":"sha512-BFpfAJDjz9VXYxu7x+atT108mE9ED8nKqG/QY2QRV5zdhn3079FDLCL9SrBR2pLKH6LPUQNzybB1SIKBy5NN5A==","signatures":[{"sig":"MEUCIFmdthSf2xHa9rVZYTmEEIOxB6rOx0s/BK/1Y3mGvMv/AiEA6Q8yUf5qsBfUeJjwGH9mBla3Xa3u8H7ktWGV4rmVbcI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42513055,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb3T1HCRA9TVsSAnZWagAA6ZUQAIrn7niHDhVy8UmnIfTy\ne5Oo8srY0/Id/CBHQkQTgqMh7by2CImA8wYoFDkcgclUtQsfpovVG1Xic2gs\nSaHcd7n6crWHHLXj0cnyAk2eJAnJXC/gvk6/InP3PbJ51BWcn8RBg+jHVCYq\nvz8h1s/pMfUBm9MsQ8bhXufi4Jy990fS+IK/xL9KGcuFf0baISddcH3to4RG\nqguKM1EpiXnqMYxLQjz8lQsE0D/mbr8qvdV9FoM+UshdG88SRGApN4D2NvWd\naCKl4KQzwdpJrrJ0Qr4yfmOlkXcmFZkwb9SYb3ZQAFwO+EYHa4rWv7arh6jP\norjbKxUfTM+jmY7GH3WzKHRK+3vVlwB6CbaxBftGGPrwMKBZvI6qinE7JuvM\nLGh0jhyBOqNxkkHY6QSkwgx9Wy5SHEK6i8N9NEyExV5LCsLf8vFu5r7W1+iu\nLlh1NZCBw7bZ9qpheJN/+lh37H4h+NDltql70NyokeHP05mgZCwzp053eDHW\nPuKPSX3dV60uXNKYZMzYCn76oX6+our5frjPYDkqIAp0wZrH8hMKhkEkSaPt\n5op1dsUToQUKZRrWodfiI2hZFsg5osBhEoRGe6asvtE8RUjhxc6tNXqjig/W\nPLQdXJb+z5zs1Y8F/Jp3TP+m7qwgBWzDE8tgLwWG6t/08rdgnpm9iSu4tpyN\nwZun\r\n=QLox\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"eba83f4ea76112fa66d036f09038e868cda760ba","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181103_1541225798956_0.34029658077640734","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181106":{"name":"typescript","version":"3.2.0-dev.20181106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181106","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5481754a3399f5eaf9a9bbb2ed15464f574b7a7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181106.tgz","fileCount":80,"integrity":"sha512-k/PaWTBbpKpykJYBD1OqzdyDi+BGOz9FYGid67ZD4AVVSzn15TmrOdXrHFfe+B5Odv+As0SFfki8ZUMvW0MoiQ==","signatures":[{"sig":"MEQCIG7IgV4fvzLcq3XEs720bkXyQMKHGqSZB1jc9+1bIBd6AiBj4iLsFPiBq8mEnAgqQ8U46dcQ2BCW9iLzJC9lRE9HWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42684264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4T/aCRA9TVsSAnZWagAA4mUP/0rGd/YF4nT4GfINTLi8\ne88N/J0v8LhNNo34Fe0j0wvtU7PCGw8ZNGL4KrEgO/G8eVePnaxJCqARrY4k\nfiu8W24Ddq48YpV3hOa0ObAVywxQpy+L1xKjpeMYUykqxvaLqcPGm7QfV7VF\n4NiRrEKqUdfbIBiSQO6q8tadXD4QCqEd6S/gK6A3z6P4UOC7E8spsXRYsBYW\nFchNMxi/2NlZKZrqEW52OToewMnvLnEU0hhmK7MkKVl0HCAXEfSpdAWup6+S\ned8vB82i//++oiNzAmHi/c9BcsD2rr57B1uv/jVsZgxulqF2+M/RKEEpaxSK\naGmKRByUhmdJpfgv94nqqSuYxAuTW6LWj84TmbHUiO+B2793WOvWbECnak+H\n76W/UehksB8eV3DdKsYqjEz5FXw1pSYbVTfPxv5HOlVk+HCcH4wykbTELYES\nqi4xdP8T59mtd0DlGZ0H69v+vQsHvJhy0q5sjpQnTF/vqbcPB3Rvvt8zmaEn\nikbJK8uMJtsQf793ioIJgYVyORtatzd+MqUVuegE7DpPrM3zbSSw/tX0wC6g\njVJ9k+wPDyvkv6UJE4RUr/2IBJy1mryLflDXkfiaPs9c+pm32NQp2U8m1eRQ\nHBBe+Z0QWgsOZ6vkYdkC1nolApyIuo09rW86gzho83ABOdgFSJO9pY9L569r\nb0Sp\r\n=dgec\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"929791868fc67d790cb156e34f0286d82196be23","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181106_1541488601122_0.1869372603473296","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181107":{"name":"typescript","version":"3.2.0-dev.20181107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181107","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bf080a808d9c2e3ca828fbb9835331bc1d878e1a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181107.tgz","fileCount":80,"integrity":"sha512-2LReeaWhtx20VxQ78nudW2HJD9Am3nAcLfuFI2SGRLpQxnEss6bKDXy+3SxawNTLDI8gn7YdalR/3bCSA6qgiw==","signatures":[{"sig":"MEUCIQCVFXVAkZMWpt0MSbtU5jBWzIdyM1WSBr7K96LZtx7uwQIgbjR2ZCSu2SFYQYT+Rtjupkz97n6mhLqLjU7atlTl9oY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42683067,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4pFgCRA9TVsSAnZWagAAAJgP/2sqWTKQYw9adH557mcP\nyoKOqsTktVVb+UXlzFa9TS/dtRZAaXylLhYyLL+I0jsKMktRilQXM9DqGa1O\nY6yw2aXs30ngoG7xMLCv8xWvBDpKra83iAaApv2JRBL/v55PWOLCQSrumaf9\nE/Nvjbx5KJLAVqvDmHLZOqhdTzgiaTdDdKAqXMAVWeBEZC37277FQ3/N0xig\noNLP6sBUWebDN25MSmuD92fhjEP/A3QAT1siLO6HpRbejgQY9n0U17OUJQvv\npyLUBM50jsWbhPOYzd+lQSpB0Hzh/vHNjvvFYF2bJH1+UFuzUVWJYXN707eR\nVLmF3vlYrmxXVEDboLnkCs7CZEcMkH1e3T2RzzH9FO0EdQZP1GAMDWq8JLXj\n7JCNGYPHn8iGEVhWTQAi0yy3PPNA/g9lO6jLk9Qt4j2a34GdV2nXs/4O3YBs\nwB82K7zjp7HhclgkqkeAurbTXDF++n25UDUf6herbo4A4vZLxuEjRXCFV6D4\n5JYbwrrDqwRqFqEWxtgT5KuKv/UN3MEnNTqakfqKWxLfdUvo09i5zR/pUayZ\nqcFOKOu2lcICKLSa9HiG7pBNTbsOlz23nGbjQ6F4BXNMo3wWfT9CYsPFLe27\nbRVTOT9sb/q+mcIJCmEbYQg2NDhU3jFHy6Nwip8Sj+oLOhmrIXUiLxufnop1\n0uWT\r\n=MKwQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"59a8c94ff172db4151ba66421d4ef1dc78635c3f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181107_1541575006882_0.4889107752471349","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181110":{"name":"typescript","version":"3.2.0-dev.20181110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4f4f4f3cd4f0d259227dacac2f7e5b163faa1771","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181110.tgz","fileCount":80,"integrity":"sha512-s5t9wN6HVrp0Y3ueHL6ES9B3x/dO0XR8wztNuQeDSSR6Kueto/L3yziU8YLaOMCcFo53l+txZNtkUFO5FE/UNg==","signatures":[{"sig":"MEUCIQDABkV0BFxQT3lOOGV+hfVUCrrGTlIU+zxoa8ogSxux9wIgX7Bcye3epXQqOjA7iyrevr+EvKlcA6a3W4vfja/QYS4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42791080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5iLJCRA9TVsSAnZWagAAKFAP/1Gwlf41NGghJYzmACJm\n69ycXkCwXUpAlovU0U7Uo4MFxt+3DxsozF20eKzyr41BudGIqdX3/Dds7cec\nEAwUmTqnyQaiJWrfpGh86ZKIMvb9K7cN9FGdcZxr1lJjTwbujh6B/lgu6gHs\n4m5yzBx/iEDtDhHbqgHeZe5tgxf1avbdTkNIRtpiSnkhwF22CtcOzpA7qGkW\nFF3bymonIyz34lhCmGxCW5f4wkO+apwqDqL1yml32nAAiSFP2Mx+Lsc9plvc\n4kEW4Wr1NAWmjBKD11UfmgFevCR3lg9or4WZF0fRRGGBF1mdL7ArirzcckvA\nM1SJ5BgvNMnOrsT3vXHcg+ilfPyp/L8qw5NDdoNYuDk93J9HB3gQgMHuy7xC\noBluznNbFCsEBmJxnf9zBl/k0WD8XknjZHpdP0rCUpGzQOlerHPz7UAX/5XE\nxzcDByjmS563L5iWHYJgDDakYD0hfi7vjvxNYPcgUfoIUAaFr6/6tYLNM2Dx\nbJjI4iYmm083qOriJFAA7bxabrJu7JbVKMNlytuLxHRXIEeuac9L/Qry/nqw\nezCzWlps6kPS+BGsT15WA1PQxUK9h8dr3QP0xUTc72lFy7PIyS7V44pbfzxE\nGhTg0Pepcxa8pfOaLirhhc6NUUqOcU6GccMcrPEgcwO55NPvDrH3sITIvCuU\nl/sV\r\n=fq3B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"02ca5bebbf4ba40938d22d68cbbe548332d67e15","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181110_1541808840275_0.5405665154514945","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181113":{"name":"typescript","version":"3.2.0-dev.20181113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181113","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2d48b6f62843c6cbd0dd41a0ee9015bd7d22dcca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181113.tgz","fileCount":80,"integrity":"sha512-OoyIVhVzYUT33UCQfr1iBfhpk6iF7qSCgtRU/klz5tpWfIjvsOH+2jILNQNzaSoz5l3ulXCQNeAxDy10zRhz6w==","signatures":[{"sig":"MEYCIQCdK0nMobgJxeVbUyzDol3vyAWX2gD0pYAjQlXyghGm2wIhAIt/gVXQSByjrz+35V28q3cKipFLHkPY1mhXxx4Nc7VM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42853082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6npxCRA9TVsSAnZWagAAxWsP/2jY7penqmvwNPMD8mA1\nsSYxN9U1DHHOssYRe/yMKyiTmfzxmmJZWdZU1tJ+hriWIWPGc/W/cMr1/mwx\nn5ufdelpkeFwh//dYZIF97y9r3lD7N13Pl6T15rrq0KRW5+MbRpirvhuIcA2\nnzJTbfkV6DlGm5/9vQR+e+yM28zhfeBulZ2rgvb2hkUJyurcmNUMbpkvHZhD\nqSGaj0Huy8IfcoI31R5hbRdXk2/cyIwSsArWbUq/tmOaPr6XzrzyiQ83mCm+\nAbATu+RpwruVgBSpddsJEazn3wZ5Z+rVgl81o/Mqfx41F1AYq8E7WwFe1y83\nVZuL31k9092Bxsw+3ziChz1Pbtlz/FTpURW7Gxr9DbRO1L58YJF+o/Rwauym\nsVSlEPNWXWWk1M1puRYeqUdTvv1fHEIxiUiGN2Mz9OebfRZPK/njcpUVZD3x\nuHzdugD1DiVC95gE0xFCs3ec9xPSR2sWPScv/uBJduI+iBgL1I5JWeef7o/L\nmp/ImtL2/zJRmEXRgjkBCyWDhkwzUBI9Tf/2q0+OV5u8SwDQrIMuuNqvXWgI\ndWz7ykuB4j0HcqvhKZD1oOPDjMB9QhS28GCiwDi80FTJ9/1GWVxPHhOo6U80\nMSkBCZweP9J5XuQa2k+Bbfits36zkKnq5jshezUBghIn3mdfopgFHG4lCOSc\n64bf\r\n=Ougc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"004dc8960069c0217a2e804ffc19fc02917ab043","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181113_1542093424665_0.4451451489593241","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181114":{"name":"typescript","version":"3.2.0-dev.20181114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181114","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0a1f6669eeb9d8ea264d0a9da5a033f9cec887a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181114.tgz","fileCount":80,"integrity":"sha512-b4fOrD957l7EWDaHFeSLrr696gPHnG+Qv6i2q8M53oqmk/2gHRqXGAJjrOeXzgymLaHXXwPbiw6laSyiDUfdlQ==","signatures":[{"sig":"MEUCICrOsyj9EkYupuhmxranLAa92mRYYtAfX5Jdj1BliiVLAiEAtaLEmvU+Oi63JA+mVT3hmcSOzAtFXsqYEbJGhA34cmY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42895623,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb68vFCRA9TVsSAnZWagAAVcwP/ixi+PkwPfjafRJwIEwp\nDi3pLQcOTaKBHNNAJ1R3TUHWJ4oZB9EALRrYHTKDB7gqhsoxgn5TzkGavV2Y\nodttkmLJVskr3NaKABOQnAq4l/oQiOprpWuqpeNWEaheKMBfwHrfUBw81eR2\n0roROYXVasaLj/3yidbJvNQ81XdO7XN3t0/rohKOjo3Dz0qvXpyJloxU4zN5\nEFgLzd4R5JFC/1uR2afLfembckrSNJHJTOL/NjrTFaZ+tr7o2okFzE5c4pR4\nNsEHgri4+b6ZTs6KGL8C/ur2NicHoPaRZGoyH/bcQfB2uL0fvaKmkK1X73Nl\n1Y43l3c4fjIGlydsccrse/C6Hy2a3Id0ffnlw3eYFpfIf31mLctsNazEwQ9l\nzwl3TscydvyZB3DB3yJ66ubWGFBtFDJLJNlJZVDOyRz6GtQHfHefsEG8RtdI\nooxmMc5wn6OZrekH3J25OgPNU+QmMhGN7fs4Tm3uRf0zIGCtWvT07u+eDAyI\n52JDMpuYr+BPy9Qki+uDhTBjbmedpRp7FP7WiMlmo8s3qnI9ZTOY5ltLmMeW\naFNwI/re7XSZZvUWnslYZRtjaVj1Y0KifUgw2Ma7ACC1sv6w344k1XCKI0yb\ntQOQrB/djg4vugaEptzXV5XyGMUKSh4AultjEta0457CCrzrfKsGv3cfA9NM\ndEeu\r\n=9Dhx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f4fb28daa98e6167db8d5cd8191d854581d1c279","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181114_1542179780073_0.005320767280309058","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181115":{"name":"typescript","version":"3.2.0-dev.20181115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"19d23d64658198e334e4d42c560ad61ffe33ced7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181115.tgz","fileCount":80,"integrity":"sha512-fXDJgHrq8szvuaqp/SqsksAjY0IzmRlJxMHjFTBbdKDJFKR0dvSZ4OFlb2clrijZ5vF4HtIPB5yfMLtH3Nr/sA==","signatures":[{"sig":"MEQCIDsxb4g3k/ECHR591DBFRkN6v5K5BD6r/6mv90A7cPuMAiB4Q2RhcHumTGjBoH3Kp9Tscp/Q5kbEZO7uBFm3j1XWAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42911062,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7R15CRA9TVsSAnZWagAAhCEP/i9eTVEMSaOufoPCspL6\nKmuICE0r1G2+hyUhYIcqpgIGf7bXSq4vzUvtKM0mqwzEjj6ovJBlD9FOzWlm\nu6WRTqLBNudzpX6muzWl9N2axMnFcCZ3plKFyBvI3n1LQ7+wQqnFR9zWyK2w\ns84iVET/aE0jdtl4ZsLAq8IM/MosatJj0nod9KA2Oaa0iXWbqw37P6/CC7f8\nX9FXp/hfhQnHuqgJLTA7c0FksvlruWL8rTvVSBxKQPOvBiLy1ziNXmD7jWl3\nUqZPkQ/OG+9et8+r2m7vG9BzD3BaIt6JpX3zcURPgQuM1Qaz4dWCr0QK97ZG\naCbNkv2hfann4w/NbOx00M3Fu3rt6L3SnVyVTNq4Lc4MCE69ZkN+2zAa5IgT\n+0J+tc8V9FzdP5SmUNL85p7JZsa1UjuGc2LFhDp8J87/UvfgydvmCxcEeKyB\nS48I509YWVkyCu4leSjpr1GbC5cbOG1/NHanXrrlp6xwCo4yF5eG7dILG7jF\nOgmnF/fwabL/cJX1zYWs1SgwFcksKi+UXhZH5KJRQGkZGW1djZooIfQdyt8N\nBY48lMOjIySOkyOdRYbIUYhPMKdRzX75+eHMY7XZSE/M9aH54vbB7Quub05m\ntTMtOnkXIrYdFd+dWdO2lzapS41AIT66F7m9qKmKCl/AzdE1Z4BCXfpbDoor\n05GR\r\n=uCL+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2600250a2482508dc9f579ac4cc299bc4924b450","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181115_1542266232351_0.16311885796610381","host":"s3://npm-registry-packages"}},"3.2.0-rc":{"name":"typescript","version":"3.2.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7c3816f1c761b096f4f1712382e872f4da8f263e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-rc.tgz","fileCount":77,"integrity":"sha512-RgKDOpEdbU9dAkB4TzxWy46wiyNUKQo0NM0bB7WfvEFw50yu046ldQXpOUYMUTLIAHnToOCtHsu39MYE8o6NCw==","signatures":[{"sig":"MEYCIQCJGAgeTGBdM6v/axe/oAZE3Id7XSwTrIgLEQz79WefhgIhAJwqLKe2j79gPf7NVpOj7EBw/9tDrnjv/o6xoP9XdYOs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42393945,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7etgCRA9TVsSAnZWagAAXWkQAKKQmmaZFBcB1jbNExvb\nya493NhJr7y7KaPXHZ3DgQHYEs9VgGxTA6KgSeD+WRYX9v/PSYPTMFVUuTFM\n012A+Qwozy8dJqD0mlFX6aF+XX+65JUTK3ypKn1OIIlXPHa4flHlWi3uSLLU\nIrtIIy3yYMrRR+LdoNyfTxwkJwbCY7TU/xsPK3CJj+Lvj4remu0alP7C7MA/\nbC1TOuDJB7WRmpvJ+lIh7hUVg8BwajSRprHgoDf7NlUvnE9ZQQqZr6hon2Rt\nxPEBgBc3qGvPYWXnKLXjzHFD92z58Kuf3nn74k78vgJ146fG6WVQ+PA19rp6\nJI0IG0OGd54fRvGAmpUFjX29gPw0HsQ+qxNHQJkDbzSZV67qSySxH54atniI\nrfJCW9PgURKu15N/gBhw2ugou4le8QpCYZm0FqCKAZHDdV78KFwk+bfQU4/e\nc1C5h+rFbYnywUS1oB2i+RkgbY9MNY2YSKZ/CXO4GnGyu53t0Qqs9OEp6m2W\nDHuK892Yqo30143pjAsI8IBwg2b6VQHSSo4glNJQhl92y2hvDViEUYqNKMFu\nvcb7RjXsAY7tKQfl8JC5vByU68Ut8u6KQlgPSBRIvX/Lp//BOAjxKbUr+agv\n2RigR+ildVoVFEOWhUb9+pY9zeY6KTAlWaeCK+nzf4i1zrS3571pS8RkHhFj\ndpGk\r\n=ISW3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1df61cb180d45593afdc6bf09301ee7ae656f6e6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-rc_1542318942972_0.6146058931694043","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181116":{"name":"typescript","version":"3.2.0-dev.20181116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0a405b3385d6f180df78bf557167c0a608b5a501","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181116.tgz","fileCount":80,"integrity":"sha512-+UUHAGhfccJe1ZnHbqp0uixDjT/yMguznOvF1p+16ytQPJaFo2MfIt6on4PZlgl7VhdxtENSfzl44xxjWsfj8Q==","signatures":[{"sig":"MEYCIQCxkUJSNgPgc81KgOHvxlSh6ZRm/4VN7Ixtx8275IMaYQIhAPsmRdS1B+jxuFF4H1d3AkXticfw4SCa6tq8exZdGNFU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42937448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7m7cCRA9TVsSAnZWagAAVzYP/0pT4xQOjMjKTS70P39T\ngu2NUjyVIOAQhJ3HBVGcXjiQSWyRD4rHzac6QFnu3dLSjNMO15rqTxWxn9tt\ncAFbzfoj7us+fEc8+YswxOiiJio8aStD0YtsAYji2EZPkJaZx2TLBgD4b5uF\nxgOBYimj6IiEOaE1ubhCRhH4Ke85LyWAeMroVhbgJSKSxIRqD+8+B8iRZ9tG\nmkPKQIj0ESJ7dBfZCwTsrHZZAKxevgezPXGQr4A0Qhu5KAu14b84tiQtOFmI\nDGwgUsa2yJCrTOaIezBnmP6b4k5BeXI7qzL7lXbr8ZqaL+rGmbI4geJrEfQ0\nAl2Q7/OkPAbZ8SD1Yloj/Kc7JgyV5jxc7zEpJlFtosV5hzHAiKCClcFw2X5B\npHWiNMlz1h+nXWEGXp2zfaJoYdjAAtlMUroZzrdud5lMh5t6Wmn+1P+ob5Vd\nAq9ZPICbr+Jey8zEiRxEdDQeezjl23N8hW/6fJd29cbWd7gYqC3OK9EADwzQ\n6BJsr7LR4Ix9R5Q25fAfHBXF1zM+HvWRGdIzJKJrdmxHU/TvB6CDnIb8RgpV\ngy64pNZ6KvR0YdqgoEi5W6Qf+JSC7gMRcY2muO0O+SeDU3IcM1Au3wk8x+E7\n6Tpc9uKwIlh/75k2Hz9jVa73vtQUzogmS9/Mm6gWs5+ICXuXSLsQRsjVwnFS\nB7qg\r\n=KlEa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b059135c51ee93f8fb44dd70a2ca67674ff7a877","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181116_1542352603960_0.8587564738842359","host":"s3://npm-registry-packages"}},"3.2.0-dev.20181117":{"name":"typescript","version":"3.2.0-dev.20181117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.0-dev.20181117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"58a8cab074668a0e33ced2bc3c537dc5531c6eee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.0-dev.20181117.tgz","fileCount":80,"integrity":"sha512-SWiOhEQfhelK6Jb6g2fU2AHUnXhY10xeCVweMZCAlmTGKiDhq5inJfn3cHNPNcRd3xFLAsEdE2Wqdoz8iCy4OA==","signatures":[{"sig":"MEQCIC8Iold2Jrs2C8su7PlzAH837UiYbNW+00TqXsIk7JpmAiBQlzk1C0c4w+SDEH1/3ZePIsasKfLxztq3D4w+VhMNcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42947448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb78BfCRA9TVsSAnZWagAAMCUP/RvgZpow7Xk61J1MmAhr\nAN+ouGissXOt2dqhSdSrt3oLgZ9jYzPttULDaxx7qsqC1pQwLn06o5bZwXWP\nTQXqWm3/sh7YHeqRkL5vJ3sEqaJhLYF0PVsGry8t1ViYFxgewzfpufyA/WyD\n0N9RCS8xQLAiGcmV4WAixysOGKrX1D1rcNOqXX/Zxdv+/BI9T2ZyU9E7pa1g\nEZsvG5xohcMC7+Qbws1ytb7IIxbRuL3UgL+elnXBGw10ORNFVN7LwReBAkus\n33/W3rjEJu4IIO0QiVsgnc9VcPbXJrMT2tu4Uaroh5jNHubTrJ7BNzosf7lQ\nUMLQnQCEXf1sQtuf+IqZHcCj3lYkFzbhFCVoWUTBb63Jys8zLIELYhCd2pnt\nGxOTnHCnO/W7CBEaedlzDpDVZOZRSqSFSzg3NUrW3NDKkuaDwSQYpbLv3dj+\nHyOa6N9lq+2gylrMvJ6LGyzJLfX7QG6V1ypEt7FiK8VhtuNmaKZv7onsOuJA\n/1xX10aMN/AzBYjh55eHrqcXF/L62T02H6TH95BAi4ZZV18E2TwW99cTjQDD\nKpWHvce+bbvOFWpfW3eNoatoX+eh7Ojis+bMIXtk8JbVScsm9rK8dw/y5/Md\nkzZc+gOY34wkrAPZj3BFJifMBvSRndXrORbJ4yHPgv9/Ykwaatdv1HC2L8g8\njTX0\r\n=lcdA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"608a8307accdfdf0f0ae8fb8b356adedee939d09","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.0-dev.20181117_1542439006421_0.8464124015151728","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181121":{"name":"typescript","version":"3.3.0-dev.20181121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181121","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f59b52f98e85c993b38e158b0fe3244f3d71e1ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181121.tgz","fileCount":80,"integrity":"sha512-KRLFDzWrQP3c0ypBQ49mAG1/LVPaTxzXOEwAWtNI1Ccvpw67/vHt1OnS7u+B+K3klA7iBVjv8Lcytdn1K/7b2g==","signatures":[{"sig":"MEYCIQCqhQnaWC04fxZVXeAwn5BKxYB4GnRevcLJLPjTul6+hQIhAJt2pt3e32OxQh/9a5kSKB30MCbHlrE+3ewckJwEdai5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42950595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9QZ1CRA9TVsSAnZWagAAZ40P/2haXmL6kmrPgfcK0Wi0\nt6gCAZGfqMsVpyDeS3om3gSJfGqfjRs8r+keyijiqqG+QGqVZagmuZAdZXAT\nFIin9A6q237KbwK4pUcorZ3FaVKsfSo32Brqjkklly1Op7NNHPd7e98F6C2J\nNdX3aofNuGzgNkEC7Acl/YaL4kQTHAk53OaZPB1VJs1Y0qOh5lY/GFkVwTc8\nGrZrG9IYARrwIsmCfQ/JkbxHvAdeGcRi0iVNlCG5taFCctDg8dOPeuRFjEpu\n0im3bHAwojE4avxepNw1w9UjBKCWMUe9rk0Fm4mcUurX0uf1xGkFIhY3qL4f\nzINpywDekMPYfm41lsN+JqiqsgoZMwCVh9JE5uwxjQhLZmG+proTVRAaocCY\nZ6ltGRuosRWCaTXlgu0kI/sCbM80KNcmVqpNJK/QbkBNL7UsrO8XVHNypc9X\nBARp63+entmz2zrDOB1RRfCkpf+SYd5ECSi9tfl9AMnyHu8cQQ4oDyc0sYWM\nMl2Cjub9RVajEir0Mf8gyhDC0fLmNSIFOeSyBBvpw/b6ub5TVWy4sg+lfeQT\nxRHycbu9JYQxHEY7HPabtgqHPmCRoP1OPbBkl0peH3NpJCzv+2PX50L2iEer\nVd9Gy7VJgBr0HlsWsy9lNN0pstlGaQbPox0sg4Dbs2h84LCBvI2FUabN8o/T\nb6iQ\r\n=jgor\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"94d7e3039341a812e18e64610f7ce1413241b66a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181121_1542784627881_0.2648140562023098","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181122":{"name":"typescript","version":"3.3.0-dev.20181122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8e83a477c1ac4983c09a7ffd37126412d3756045","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181122.tgz","fileCount":80,"integrity":"sha512-tYYZPLAMfweT/HN+0MsTLZ2Poqq6LoccRzzyvTMkruRRXpxooqo91g9C9yhTD1eFf8hTsiy6j7HJzkrSTflr1A==","signatures":[{"sig":"MEYCIQC1etWWQ77BTLpx5y8XCmyzs7Mq/UA3gXgW/FCF7i+JSwIhAJRckO/CJLuEyRm4KVMl0sakTTYHC59J11KFqdOcmkFo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42988871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9lgUCRA9TVsSAnZWagAA47kP/2cvlbfKKgacJJ1NUHyK\nRtoPRPmOmIn2at7qyPOgloOYKtMwfn2OZKAAk+DW9JNbB79tTE60WNkaSXo1\ntS/DJRb51XmBM3rNaBnm0Qrqy374gF8Zmjt9mZcF5aWmDq4leijbKF8PgFp4\n1jk9OQoAFxjn8vKmAM8WsV7qKNdaf7fHItdU+d59KN2druEo5kbgPOJ84tSG\nX20VFnwzL0FrfaQ3cqQ7hGPhO+JyF5NejvzUMVOjKRh4IJAfnXJ/DVd6PobK\nJmGslyHiDj0zg591utFl7om7EgkIisjDL2yuEXH/6GgMcXZJ/0M5yXjhw3fP\nL6VUChZcr3eLNq5rzXwmMuHRBNJD3zf8tJV18u0XbvPfjbQwy7BJpbOfodHx\nKlltlrbDKvfTrLlEF66W5MZT1EjZ7TuOIXEKHBTRsyFwzlopwa4fmxwoJkoY\nFDsJYr6TWzJ8mjze+II7foEybx5MtUZSZ3ZR3DifME5gvuAu+PuNlbZVv4ED\nW15xwSna8lNR5SdDjdee2Byg01Bd9VDoBkMffPZC30mdeGrZoBdYfE+OsJz5\n7ElzM17IT54M2MtbholbMVKIHTKAbjF46aFAGtiya8sBskagC1Ssuzf3Cq1g\nIXeVgp42OZ8o3dQUlcKtUQsJgN5RmJFBsgvmBdeeuM+JFJ8npn5LLHaO4DwY\n7xtM\r\n=zQHZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3e4c5c95abd515eb9713b881d27ab3a93cc00461","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181122_1542871059143_0.772713487946074","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181127":{"name":"typescript","version":"3.3.0-dev.20181127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e608597eec811417b17dc33938e504c2aaab95b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181127.tgz","fileCount":80,"integrity":"sha512-LHB208RG88fqINemsRqckHuqEPzAqzu7jx2McYP2J0A4zGlQe+jyfRj0IONqlAQtuIxTh+ScSly0PXQiqEENMw==","signatures":[{"sig":"MEUCIAMntZMyF6Wvw4/6fsp5x43C91z+2vpbGYq7ucCKJRcVAiEAysdLD9r77zp3wXpDdulVfgsIzz2MBS73UMCIZPGwfYA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43002379,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/O7HCRA9TVsSAnZWagAA4XoQAKCFSNXPMdP0NQWd1gZ0\nBN/OTkrjJxjHpjR5aHYXqsBflMZkqgn2M6iFpSRYLSMvf7X6IxuqwDgntVA1\nydAkvlWsAutlzgG+WSgodB97ROodK0RGHOvEZtTZgcgNT0EV+EQYerzn0jrk\nbe1X9VWW/U4IIhSVBIwxsN4Wws1uOMTzpv282m49QJ8t5MX7b76SL/Ux5hNx\nVKSWQZI+daUxdmgb55w7El85PslfnSc8KzUppKJjuO/xQnvIlzrp1aTEVrGi\nB+QJh5e6AOPsx35u+Tc8StTA6lrkhEEaT6+mqERCksH1q4P1LmOSKm/An+T1\naF8USv05z3N8v/L7HEgiizu5zIADwIZKGtx5ID+2Gctt5yEUBEYwkKan1nGt\nyeTmxoVAxesUinn/lrojpYtEEPhuHfrnb/85xtiXYblrKjR5lIWIccaL4Wvu\n3R9ZigCAP9oAPVW0CE727Jgan4Gg7AQlArYHIePo03vA1h5VQjtUO48bnSpO\n3rpButU9jWC8ed0x90x6CjYoEXgrUeCZZh+bfRgvmSk6IMeoG9TChbdpp+WX\n8uEbmnRCrJtmIGVClWlelhV5g6SEmMbbJjCESpA4zxyAIHOk3aRtpqVnvcSf\nP/BWkHfvOxbbgPwOuoASbYXQI8acAgFQxJPIJMD6LEIHmc5dVHXvdwjxVRU8\n+Y/1\r\n=ejei\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"aa3734c14834afb454c49bc956489980d990a765","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181127_1543302854079_0.7594717750744273","host":"s3://npm-registry-packages"}},"3.2.1-insiders.20181127":{"name":"typescript","version":"3.2.1-insiders.20181127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.1-insiders.20181127","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"92d0fd5491fd67afe1f9ecdf892cabaa7f851f1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.1-insiders.20181127.tgz","fileCount":80,"integrity":"sha512-E+ujgS5E/Z2GdMB7TQO7gwOfeGKvvRxvjif+BgjJhhrSV6iiwfFvYLiD/NRI/rR6/Og1PxQpbx7jxPQOjJ8gVQ==","signatures":[{"sig":"MEQCIF0BOeEOBy/Hqwm74af845l1q/xpjnuDyjtq6EJrlYh3AiB4bFD3hSLMJWzL9evtoKykMC6prIeddqTiWq+ARLX1vg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42997345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/dPrCRA9TVsSAnZWagAAJZQP/3ukQKl5i4kaIptVUg3y\noySxQnBslHB14gPAgMvNwyK/muZQ1bQgdta5hUO5fKf9iW6AxE989aAFNkc1\nGypx6pxL+5dO4usjGVINTpDJAsUVdaLzWsdDsYSGk03FPOGNMd7uD0S5E9v5\niTz+v09NymjnDIExOkLDIz+s9ghaAGEqXBDWCuByCCRfChoozbC3kID2nDDZ\nnfkl/gyPnE54hI5CdlQKQUjQbCeYCftcCtkCck3GeRMApz0Afqg1k4Uj35cC\nlirkdZXw9IM2D6T0Ne1wVQbGf5IltSFRr64IV78fRB3eT5nMzl0VicVcr2uH\nP6+QmVGrSEpUa5tyADabsFqLWMuiHDKc4nXn/kacDy+FFAHgnpgTBfY4txTa\n7+ezeOX8vwL60Tl+9TqfO6FxuqRExwAmhCJL8m+QyxQQH+PnI3QG3UMkR8UQ\ntc/tZHxtdcaj3lsxAEadIxLZ7cFDyTo7Lx5h8yVnT4CKnyGhjjzVv/hPGWaR\nPoRJCwZ5zF0MDMNn8Ckfn0FwHkoiUCH+VSH7etWFb4150FqjATIm13rcyz2W\nbG7Ddf4fxzDYz6mNYw4KzYx6kD60ucLghcFp7Pl9zmqXqtViyaN6Ron4MPg8\n2VN0gMZQzb/IeufJjtr/tXI99DWQUY3J5ruqAhH/cY17hnDCSOsYhosO6K/b\nMl00\r\n=/bh1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0576d8d2d898a6e54b8cb590fa3e1fdaeeca46e4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.1-insiders.20181127_1543361513244_0.2415685484262149","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181128":{"name":"typescript","version":"3.3.0-dev.20181128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0ece127a35df76b5bb9e2f177956366416e8455c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181128.tgz","fileCount":80,"integrity":"sha512-qTLx4xuqp2CPP2XhPg7jANCLBQWXKiwQuoDDJC48CsXbgVWtpnII7UjkHqUXg9MJlsHLgVE+g9BJwnfMutYUXQ==","signatures":[{"sig":"MEUCIEN2xtEjsWorRhvamCJFinl9CjzVrlmItghcKX2QSJx1AiEA8iuwW/5NVVh8Y/NcA3AKNAI/ZuJIblHdWbt4nQVENuo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43002379,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/j/1CRA9TVsSAnZWagAADVYP/jvOqJOOOQAo0H741SxB\nSV4NDgtvZSvubgjzPz2BvT5qY2+3StQzD10aRYeSTVhTRYSQNAcegAcoe0Ys\nSXbyC4RwmmMvAgGT7tw9YzquSJ0szemZKIrU9pq42PxJ3BLxjPR8cHqdgfPv\n72MOL0jG0CMAHPW0kdtavkkfq4PdJ21CzgFoCdiUwDEcyfdqRSfHEnwuvLhP\n+Ly6lhFscN5s+MXb40zFBml38rzWKM3ptmFTJNSGqxJ/lk8ecQsl2agt+NZt\nPDdnUCKU8KIkmpN2k8OfZpv0xWjn6kKg742MFfZRuDvaWaacRREt51Pihh2C\ngbgUYArI7tTny+DR9ya0qjX6e2P4skLH3Mwl49Q7oaE8uNdQzHW44GEBfate\n9wL56UNVM93rtWcBodmkbWloXznf+R6HdQDJUbM2aRsGSFNpNQ3C1TG7IbFp\ntgLeFQhEL3fqL9pRrLpJ5w/B3m1G1wVTjTli+pmuuX72BC5R2Nsbx+UU31y3\n7jrOybBQaHr6fRR8fz/js1f0K/yQb+cTOHvKXY81VvaDeJcdlURaEXMsg3Ps\nJrMbviGiEC/VIuaM1upSAydkWyzPxQEdCP5wciNJYLMf8NNHJ0BxJ1h6V+jn\n9LsBathkRYZB71iTYihuE6QJVdLeS1KiRXJItE4LHycJkI8SNslX6xZ9G+dV\n6Dvw\r\n=Vo/i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"aa3734c14834afb454c49bc956489980d990a765","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181128_1543389172590_0.20116991904248605","host":"s3://npm-registry-packages"}},"3.2.1-insiders.20181128":{"name":"typescript","version":"3.2.1-insiders.20181128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.1-insiders.20181128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"928d9a291389fd825f364a01e86ffb8940a8a866","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.1-insiders.20181128.tgz","fileCount":80,"integrity":"sha512-xolqpOHDDEogJJwkF+vpfzSRwPvmkbjx/drrPHqlDBCppV9gfDEUgr2NbHVfqPP5CiI6NY0k5Z5jLWI8jO+4fQ==","signatures":[{"sig":"MEUCIQDhMJamT42WcVL7hcvcXptF0BVYNjFmmdHo3ob7mD+a2wIgPLHlXacEVStcxG8lPVPY8td2mXplZblFmiYXHO2OIbM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42999737,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/ylgCRA9TVsSAnZWagAADbwP/j9/V7/Hu0C/mODlkvgM\ntI2JUrx+QhlTRFF6496WnYt0G1LZN3roculskwj8Z95jv2jlOrnX8f9R3/5E\nVHiwaG+kFdWxLn0iF+zYaoivBAcWjyVO9HtB3gu1W4d0sY0ojqTfBut/2EZ9\n7vq3sjkSu/3wIksmHsUvt4nEHsdXIWJUwp5aAnvnRkbKtiUFWToO9giEbjDW\ncUYcyU9FF4eE03s+7RLGZzDpDOpjSqf7odC4FTvZYtN7iEJybpwisYXe82eZ\n6/yGHpVFQpjYrQUT9ZlYdyUIYx+jZz1jHlJISTBZ9yGL8jC5+NwtcUR3Ioas\nRAPl77wtdTPvJoaQFr1vU6Tz24Z0WX8Ej2G0gcxKdm5hmmgc+VUIziJh/FoJ\nMVV/gRwTSbxX+tGIRnfncVNGvnsgMv3pPUyjUVTeu2ZhJg+YpZc2ufdVpTlh\nvux1VYBzkxB0G3jNXSXY4PHCSEU7SdAC0GQsLVZsULaL3ATV1C7JatfaMmGN\nR/Oa3YvrFgg0fCSNGrQ1U3iZDGK00VIV3kttqV+LGx5mCmWGRihmxTg4HIE4\nsOu42sMjJHICDTnBDBJNRLksn3vOVdmQb3RykQOueWQWA9C55r7jbK6lXLp/\nT8a4diTrGvlKBQN2n/yCT1aew40U3OU0xKjsrJ1uyVcGceL5QNfcREupGA9I\n/n5X\r\n=2GmU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"37cbfe254cc30f2d9d13c172a66d9a36fed525f0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.1-insiders.20181128_1543448926889_0.6871395742262187","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181129":{"name":"typescript","version":"3.3.0-dev.20181129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181129","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0e774721b32910b45e906df731a0554e11023edc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181129.tgz","fileCount":80,"integrity":"sha512-N0Woqzxa4XnhTBREUUirSsmEYnB3tm6XMlJqTzOc5Bb6+t6sD2+OsovSSQ428G8o1/GTb0HZ+bXP0/v3mwvgjw==","signatures":[{"sig":"MEYCIQDWr001s7dQzqMXVOg2/Xww1wycsgK0HN1kg72IJ5CTUAIhALyIGs05xnOVz8YR0Jhh2ok4sM3auLCWL/TMNmL+SgYC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43005185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/5GZCRA9TVsSAnZWagAAok0P/1q2zZYASBz2eV79WZ5H\ndtZiNOfWqNIXMY2nsi0z5xx181tppPm9e5/pmaQlyVt+n7DmjGQ6F3H7vN6E\nF06MNDGUtF+9wjKWnZ9swYxGfHakBqgJhmHr84+FNVRtus95lPPQ3EEMTc8h\nThcyNWqQNpWrQj9gnkJ8xPuUsO6zzxJ6Ii8NFBGPCX6A2VIVeWipuPBN3sPI\nojF/xTmnZaWRZBYVmUezYBJPEAoSar0j3xu1EbNSX6pogkXRIBe1LLGJ486U\nSFcj6S9FpuWZT4rbXmP5j808SJjm2ty3KF4wj3zsWHyEv55U+B/vglAaKKXK\nMoE3Tl+yyTCObP++y7hg/amXXh23N7XBcKoB2bAz0BiZuh0paDVfT877gWWW\nRUgwVvvnFS+uqzw+/PMiaBboKFmpwlOn2PSajQmqm4xb4ZKfc5S5+kW269Rk\noG9QbrbKDppdOgXouUEmQQjnnEM5RYS8TJs7aLgxUlIVd1JN2x3LmQPyjrrW\nR+dbLSwWj6KZApNLrzRxTQTvEQV7p5FAldxYJ3nISl2byYPxKLW7vGeNPhEk\nD7aJ1XVF/fS4OqZ2GEy8/k4i+hxy48nUHO6rxTXiQ/RpwZ3sHePWWtdeaWAd\ncYrtkSZUaQsV/h2oAGPTfyj0srJlAKMZzAEH3QkVEaAVzzqZaxwrjyDbJ7c/\nhZ47\r\n=RcBI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"36dc04b9820b0ae515908513b5aaee2bacf88d53","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181129_1543475608667_0.6132133501576897","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"typescript","version":"3.2.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0b7a04b8cf3868188de914d9568bd030f0c56192","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.1.tgz","fileCount":78,"integrity":"sha512-jw7P2z/h6aPT4AENXDGjcfHTu5CSqzsbZc6YlUIebTyBAq8XaKp78x7VcSh30xwSCcsu5irZkYZUSFP1MrAMbg==","signatures":[{"sig":"MEUCIFpy8ijNNbOcHqkyfHBf9Pyk4YOh0YwDG6mo1LfAwADbAiEA7WMP5yuRY3sOG2cyzG8Ryk5Atf9zdcYYtEXVa3bEfcw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42534414,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcADc4CRA9TVsSAnZWagAAv84P/isyVETo6c73n/8sZuDj\n5WeGMsIQ7LCARQOhTEZQuRdTAVL9KzjBEIIQXl2jKFQbP24EUdr6tv56fwY5\n9d4Bxy4D22+2WonCXueldbXV0eQXadEAL1HwFbhhFUDu+Ww8tU5ppujyB/tb\nEFeYFf1UqniOOBl08D39bxeX/XYIexhrzRPJZt5ck4IxFttnx1a/dXOx+fBE\nHG9vDW77ngp/pVHaR4M863sk72QW0ZTROBhljVukjNZgrTsQWjcVvCpG4Ux7\nmNFvLEfAfGtsRsGZ0qCyHvhH4dOuizN5UWsSe4dzmEsj4ky3lTPESIsE8XdP\nbvc/UcIc9c86pAcOTFmcSlp4NBzioHWEsXTg9fT1GVRx70ccRxQ5i8rTJvvD\nibd27wPTDIVzU5KoBkoBWMG8C2PPEwv3wvfEB4r4Ij46RQOiYSolvBGBgc3w\nkza+TqH4pFtJcJrP0Z89334ombAKTVdQzWbblo/E6jywqX8FKr01GqVS31QH\niF/nJQ3l0BkpDYux9jVmPxBoiVw9fAB0xFHUzvt9m1nbz6G/ObxcYzXhxpQC\nTvFMtwSV7McNewSAh/n1fF6cNhHJ55cWE7M8xDm27pfDQjYg3QQBY5Bivrkl\ngq6fMXP5Gmf5yoz7by5K+4Ql6uPsOdKMQUASPaR6DnGIC6rATaxDfbbEnsjL\ny7r3\r\n=d3tQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9aae7a668e68d987d1159cc808b679c1f742b3b4","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.1_1543518007422_0.060074837414050286","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181130":{"name":"typescript","version":"3.3.0-dev.20181130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cb2a06ec768d7dde0ab359cb243ef9363fa68fcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181130.tgz","fileCount":80,"integrity":"sha512-18QC4WaZ15W2GcpjFAqXqt31Vugitc6QWHUjS7OiEBUYnfAtql2gWMs18Q5FX617QAfyTBpOp1KH8TQ/1Uem3Q==","signatures":[{"sig":"MEQCIDswjjhXO6UaGH+rHPJY3mohJX7kbC5AM0KdQBCZzxXLAiBb6N/F82gdIVaqUKPRAhOW/4hmnFw06JNMv1e5N4PZmA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43007284,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAONICRA9TVsSAnZWagAAp8sP/RGcryhbkZcd3jgCE/GG\nDoQIBCVLx8Yt+KDYWNaXeGEmedSqm0lGBR/j6VmWcyfdFdonsBrHV4MlegTt\ncTT/ncBg9vvtOJOGSyjR8iKNKysh8bdZEysEyPtw4kknux+orf7PcCr/fdbd\ni9jGwccQZzB/QLEnhqZqYcqBH2pSCnoGFiu7gLSZLVFoh8bxpO064AxpAqPk\nDpJSS1RILZns1jZgrp+kMGd8HbbdchdnwAAne6FOmmaz6gDCk86oM66XMoaW\nktaCOf9CLAxSlyd+GHcy0qPrJfCcSvM8uIM4JDIgH/sebr+qRK3h6j5fBZRF\no0+RrIkFFUgosEkAecsmE7FpmylR4jKpg0ozxD3OVR9sLyEH2l/pOvgAsLgx\naWyJk9chBQy4j1Y16XWrlW6BRcVc4x23nXkIW/I5xAp4/vNn4neuaJbaGSth\nVk81zBzfav3fVBicSVkKVTO1/mNxfObazDPYJkwUwdt+xmTv2ZuKhqZXYobQ\nsrrN0X3tV6uTuCg/7LFDmHA2CKacS5EQGUHImNrgcb7lhIIHBIMzSCopzk4N\nP1S64/jbohfa+pzIvgMgRZYsXq6spwao51M1H7lDYUphicyfcI+xtnaACyIJ\nBD3arEKoweC5QsszQaWRZgV2p8UVXc7Y6aafW4Ed0agetcLfGQ9gN1BM6j4d\nCWMn\r\n=Q7t+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3d8668c3d499dfb18465740f37a91ee6543d6984","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181130_1543562052008_0.9519741141444575","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181201":{"name":"typescript","version":"3.3.0-dev.20181201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e99ac9c58f26ad6eeaf20dd360bb8f2a1895b708","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181201.tgz","fileCount":80,"integrity":"sha512-s6U94E8viHQrFuOrBv4fa9hs2YKk4Qqob03LdXzCXos37JbY7iGQY5Ol68aOEzXVByqcixMex1BkQSGuwsJyUA==","signatures":[{"sig":"MEQCIF0j1fFeqhmzLm7ZbwspcidgqSXUTaK0HPQinEJvoc5rAiBAcJ419ruABtPbb8jiKwExtxXPPucmZ51mz4HLmgaEPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43007326,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcAjSNCRA9TVsSAnZWagAA/dIP/2fNA/fgq+cnSOMHKe0/\nLu/FeILKdNPmDHFupaGZIah8er2me0/QsfqPNkEb7ZBMwx4S+25pKlzL4w4J\nadIdKoNqkzvNxKJZaTpueMSxVFqNU8m5rA0AWxwTO+yhDiCnXzGSNoynQG8t\nOB3GY7Od6K6IG+XRV4Qawao6qT7n6FbMe4DA267ztWY8WFTHlj+GorJ4mFYE\nMnMXhrAKYQ9IU5pcZPZwZKRDF4DKtks0p20ce0QfRziZjncrX00SHQqLpTBr\nE3GVaAuftarckEHaUKdKunPJh6MfcEp+9vDI+G5cCyk+irZ7AiB20yL/EYmD\n18esTLlKCS/2OVFozuOJ/yEZi8hCexlUMp7B64F+O8h0yY9ynG+gyC5u2GBI\nBc7lLK/ARiUxz4ybhS8ggZnXQ+yoj9KDmEytLwOEcqh6aWAQGBW6553lpxtr\n5uteZ0C2C4u3vvghRR8um3UsLq+Zekz9t1KkqxBcLA56u062V1DOzoFIvrlE\nNHTOrY2CLG1+uLgfLHOoYfLVOfUKoICok5uPnNtwDk+EdkMHOAWKhoIVCW8g\nZ6sEkY+TyB5IliqzaGWPlT/4jwpZHHweSVyJdA9xfH0B5brFnDzhNMU2cjgP\nTZGemheICgKAyGWg+ChknRAjpEsQo5mB2ZSugHcQIx4Mo4F33Pdu4WbcO7hI\nI520\r\n=29v2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4263285a7ef1365820eada60e805e5f97bc54a65","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"8.12.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181201_1543648396197_0.15673621359191925","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181204":{"name":"typescript","version":"3.3.0-dev.20181204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181204","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cc5d52381ab3ccef2b2df31430bfd9610870a231","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181204.tgz","fileCount":80,"integrity":"sha512-aXaJRKPjsLJn3S7kuKawBbPrhoeIIasdCbqy6g6mMzWm+uNO1sEGh5MI6guFvaICDfCFPpALtzo9AbZSU65zOQ==","signatures":[{"sig":"MEUCIQDBnXqDXXaXbFwpK4T0yph5Hf40dM7+ofeBHid6Mxe3sAIgSOPNdnQatnZL+55vN2IQLsURp8SeMlyZq8exA8V3E9k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43010664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcBikVCRA9TVsSAnZWagAAIscQAJn8zLRTZj+nhcLb+xtx\nbvr8LtD1GEuVH6k4bvxAUPLlbBRuwNSyIiyd3m6podHOt2E5+TzmTeYt3DAp\nJaP0k41r9+1n1Q3XxbSI20jN7dqC5DQ9Sg6RZmLqcU1vRQpApW4I261pir0Z\n6y525mtt8sUC8b/A5UNvARkZPQX9Au/BqJxLgX5Sojq8WxWo00Q0ePmChug1\nW8/XtFym1n/csP+aleN2QzRSxbACF56tVohQd/cYVFECyVxFY51M5EWbgU5e\ncpvHBiurXrP+KCSkRj/IYJdsjeQN03bERJ9SBklMrQt9c9T3l44rbQW/qjDE\njLrYrbq2g+gYEZe5u6BwSFNoJlrvLrBfM0K89AkXc9F+BSTmPcHpsPf4T5B+\n9C32jP/rwPIlEViaeul/9qurSOtKe+lvdtFNZ+xfWnYcDb+LpY2vRggBzuD4\nslMh6RsxyreDjl1fSBIeTKG5FUr8skSaig25MJabffC1Wh2N4S6wescknYOS\nVoagJnmMG9Xiu20uf9VmD7K022zWBfM4JygHvgym6iEey9rajuq7AIWc0ep2\nNYXDTPqJ83vAdtZM9kSXTjsKiEsr1UycR3+tldroJmVah+IUNNJF6VrYU+t1\nbKR4HEDFRf7oWWlCoXb0wUE7X1pCce52xNnWZVPqITFpyXZKbbhSV0z27mOr\nHAfC\r\n=B0cW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2103ed69e68c29b2ad4fe05d72edfca0a35f55f3","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181204_1543907604242_0.18000262198695727","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181205":{"name":"typescript","version":"3.3.0-dev.20181205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181205","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4a586afb65affdf29bd82708deec6cf55b9d95d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181205.tgz","fileCount":80,"integrity":"sha512-XYoXPbSZrlKZOA5ykKjzwvGjAtwEhII/hBFXoGzbxfIWaT5uPcg3dISdE8qZ7jb6Xg1vjV2ghtTevToE2+IvCA==","signatures":[{"sig":"MEQCIF+QSeWDVM6kbMiUgD6c0ir4ghfKN6zWPzFx54808E6kAiAqW53afhXo7GZC/86gdXZvtRpR5rYkGRnOKRWJ+V571w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43011361,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcB3rfCRA9TVsSAnZWagAAjZwP/1kjcMaXmJ8E9Knk1hEx\nHGQbKhuMwAQ0UNAoEFKvxk1ZNSwdtdW1UH0vbxjoT16BRTsUeIiZK9F1otJo\n/Gdehwca9JveWct1KvCKTlYWAr4D4de5nWHeSNQMjOjPNOHJuvARAjo1LG9O\nOgmZMwL4Roxhox5PT82YJDw5GUIcKFDbzIdksIqPDXQcXXXMUAVLi5jUPlFw\nLuElJKlhmxAMC3//pMpakMSl03xn+Bfr1x7litYFjxvVGsX7v7hrRcTib8sp\n6k5+VslLt0s+0+VTeu/tt4lIfftKgAqlkEjuX915KYkAIufXbE1kq84vQZHQ\n2vJD4pPqfvFiCIpUu8kRPKL/7+oC0lcJYjeiWQ2zYMnrXOE3NtPUvxtmIHeW\nE2sFMOPpbqBN1ar0K7NH2GWbmRAkwj05Il8XMPMslay8ZmC718J/RsMo54JA\nGtD2Q6w2/ea7i720cr/JHYFbSYbt8lTBgSGRWqggTgopvlt6xdtMthO19isw\nl+uUjRlrwimkhCZea5/0gtT3fLwnL2QPa/UkPTeoUhSHAPRNpueQkvLWa244\n8pLamUHzqvlQ7UR8JcAXn4w4L0zk6bqzYGen0gV4F/EzZNVyHJZZLLPLBVHe\nlH5pwZhtHCfhguYci+2FBbRAuQM+dXO/3iDb479MNobb4nGJRW34cbCKrgPr\nm/vn\r\n=Vsz+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"86ec885c3397b1bdd543ed47d493a464199e7675","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181205_1543994078049_0.8406056287233334","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181206":{"name":"typescript","version":"3.3.0-dev.20181206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"af8d243efaf8f9a550fff33336653a9fb66f5d1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181206.tgz","fileCount":80,"integrity":"sha512-QXBG3zYWOCf2R/9gcYx8b2takjV+n0iLLqH9STlmMtl8lV/bAtZ9OtZ8XZY9TCZc0rIwbnjg0VEOlkyp/NHqZg==","signatures":[{"sig":"MEUCIDR0uzo50NGyRz1u8A9AyPxeZ3R4+609nP3946kV/cZ9AiEAhEuYQKDkCtP2XL+xI6yqWcod8ZS9wIVcspWrXAMuZhw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43014277,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCMvuCRA9TVsSAnZWagAAHDEP/j+zaI6GRkUtWhnIZnir\nXBj8DDha35KlrkCxNFVRRhxxvR4M5fpjTy0Tx9GnNKL/lhrNLW4krPZdbHn1\nLD11m6N99s0Uz+iDCN3x5Da+herIp3RIXywa4XnqollbJOXOWnvDSJlIMYAv\nWyjXN820ZYXtcqLISuvnG7mVAPya+rv98XsUhruMrNbmXBVcPtjJUeZj0ghs\nrAHVuN1kU9twetG9BajnF4b/2/CEV6C4rAMMLnrouljqioYEm7JMel9Mpsyz\nPyD9+mT9hkqeV0EaTzqoh5W+of2+j+eHbGjsGJb5vZ6ZTmNT4KxblGJNRu7z\n2/F4ZURyuEPIJrXUDtmhv+O4UAApUS6fnZwKBEvs+YeQFoCbI2qmp2fqZv4I\nfctH7u98bR5uxA1EAJVhb9rU01V5U8ASvlt8Y9cgjK5FeOPXQpKzBC3j0v58\nHpo5oSCFLc5H2kEP+9/cyc6hu+sgTt+f9t5tk+b+MU7waXwnnFzLy3891i6X\nz7crcFEWK2u5gBAhKou2Wjw1xo0N4uaf1YKYKgRxQ9ZUxGL0ddBRy1t0hpXI\nt0GIAmJpbyvEA7UT9qRtt4sqO6bwp1XAbhKZw3KvyxOeME+QnkMYPOtt7Ypw\nqFMOZ5I0wi4HbRezBm/DSvXU3BSMakt9o8bq+L8mljVIz5WbXWOS4dZmEVQY\npenK\r\n=48hl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"07dbc56208f3fc412869827335d08d496a1b3dac","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181206_1544080364918_0.19406662444388934","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"typescript","version":"3.2.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fe8101c46aa123f8353523ebdcf5730c2ae493e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.2.tgz","fileCount":78,"integrity":"sha512-VCj5UiSyHBjwfYacmDuc/NOk4QQixbE+Wn7MFJuS0nRuPQbof132Pw4u53dm264O8LPc2MVsc7RJNml5szurkg==","signatures":[{"sig":"MEUCIHo617EQRc3w2wwm3Jc2iPq2Q9mnx+ZEioY4pbSFvDpJAiEA4yNzIe6wqx/cAJuht0TdUpb6gNtlKxcxxLfL44UOHMs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42533606,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCdLeCRA9TVsSAnZWagAAOSQP/1+BjUmA/kEEA6/PdIbk\nSWUuihVnwbEgiUKCu69WBHuuikZiIWERglVbXcYasIDhbBy21pAZrHKZ0M/t\nyGKjulNq2CbZFrUWThSYqpQsH3eqZi+eeWlvrfeUaEYgMGHixw/9pMWQAChX\nPhC819txe3+COWWozq70P/BKm8iM7nsMWrmGTp6MAqcTgjvU4ED7IkQanW1k\nD8iKn6jpHiSSJAj6rMRwyq0Zbd2TBJiuJV75hc9Vu/xylAr1u7IWR7y+yRzl\n09JZFdLqO+JmYXGlHnCg2YL2fSnGz5HzCm+UNCWBfzh/eY7LHAco3xDviHbC\nAujjs4dSPBr8EX8zESNWYMZ5D9D4y4bMKh5wnxr/whYWvM1mIY+yd9WiBAR0\nQaw8tin4J5vB46/M8HisOsIj90ZzHzPLabnEeo+LsxsPB8WsAyTpn9ID2Rgw\nSkYgszdiS43A4VNjOWxDqSPAiElfFBxm3myowZfzlRK0WAS88LngdOJg6DEV\npovf44x1rTkUUVtbI/eHL7Zn53BLmli3FdKiczunU3KiTHpC+KjojVhtXUgV\nj1NZ2Awxepooy3R6NEI5QrP1CZ0V2MTwPLZ8FSRlaLsZnYix4uOFEQ6sEPqA\n9g3R/Rz2u/14cdff+S/lsn4EH3w4vNg3dXq3uW0F1RcNXM0CvGezIgN6W+2b\nNpSf\r\n=7zgJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0ed5432733bbd1e283abdab7a7cd6bdc48a1a99a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.2_1544147677652_0.41360680523027016","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181207":{"name":"typescript","version":"3.3.0-dev.20181207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"69a02903d09ff6ffd6ec245d56748041e83fcf89","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181207.tgz","fileCount":80,"integrity":"sha512-YO9dIxYBjzPZlNTTomPOT+aQOi8Cdn6MP0C7+dami2ZcJi0qURyc8b039/ReNDTuCWEbpyq1ICdPFz3JJlSe/Q==","signatures":[{"sig":"MEQCICzOh5b4F8G5fTXoBdGljSojB0iybidTBmfgTFirhBliAiAKYbc7ftytrG193lmaKVzkAcpoo66Tzles2p+lohLRYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43019317,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCh20CRA9TVsSAnZWagAAK8AP/3HuuE7Ro3HUKKUB/f9G\nOF8aVJKQ6SCod3931jpphZFfrxQQXHsgW8F4c7GZd/5cQ5M+4M3TYopqpgFT\ns0wAVdhivYxwY8F20B321oLCHiLQdufFNWTu2FElbA7Bvg0dcjttp+DMy3eZ\nxXloQ86OJxVzaBC7B/RwJ3Te7QiLX7JvbSHmpb1F/fCgdTxXBo3WmpwUtxcY\nmTlr4bvIV8wHnZyummrVGMWNzy/2GnFef5MkcSeCkCJTnvY0ydzdpF73Iw31\nyVMmM/x1Y97YiEFvYTaXs9EDkNcVMECnAlE8AbQLpWo6+fylYAyx2g8KVDcK\nDrNGqtF8kD3vkOB62oI81hFDnjzoa/4ewwwqjW5Hc/Z5UFf5MJbgfDBEVg9K\n/K9EK09lvrMQYJoSv03GS6j3QSuHdC9jb5NtpPApfyyiZ21ybvaA803yrIgu\n5NIBZMd2xFxwBRtGw8p9//WGVofTYlqKcYL8DcXC1go/FBRNaWYjMZEdbsvb\n1wb2fmygYFh2GIPIh/Jzh57rZqj6zAa0ofxhVTQ0dfUi6Ae6+C2eleD0Hw7+\nCDXVD3+gCPX6yiZ+XIIMnRpZiykeX0/EHJWgUF1+7RZNS38v0xk43dloh8NI\nk7lEBS9c91CQPWeA0yo2fR1b+b9liC66ihNRUqHSdMLXkOYyDcYIPP1aku2v\n8Vif\r\n=6hsn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"71286e3d49c10e0e99faac360a6bbd40f12db7b6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181207_1544166834994_0.5275217307627837","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181208":{"name":"typescript","version":"3.3.0-dev.20181208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181208","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aa690406c35f10c71b5f7028787c7241d8983335","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181208.tgz","fileCount":80,"integrity":"sha512-4rliZIMqzdcGik+n8E6XFgZ4WvIggOsnLYRLvrAmxMIsvMFZFL/SM9Vm8r68tK1+LOvsz5m7kASDmmufR+hvLw==","signatures":[{"sig":"MEYCIQDP0yRdcIk+2vTPaZvJzEmR7kYfZ5U0eypKAqbWaitCfQIhAOl7oNFIXXOzfssviy4amqP3nCwxnQPV59yJSroKbkxU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43025237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcC27gCRA9TVsSAnZWagAAzwsQAJdx64ERnZQ9r5nvQJL7\nQ+MiT35IKIFvwjsYDZaB4OLIX2PW9AYnpNGdf7PCsxuwoiYi8exo39gy3zAv\nk/7oflPvBIMaAgBboDiTi1nGDFhEGqYdUtlAwfEbzrXVQ5vAmgIsKazL1scZ\ngPSh1uLPhNBRAdXtNcw5iOBarBsUR4BuRaNHNMk32UCqtFxZmenTIYdGJBtI\nmfrLMiZETKs68ScuGqtCuop5UBoBEN9GPh0QXguST6chk90oLg28L57T3M0Z\nvqQTb4jVD+M/sc33UOBGWSXtGDwFshDMl85E09hDLHQEKNMdesEPzq6IbmIi\n/INDPQxbVhMORevIOc8LHZHj27/mZ7nrFrVE/GSqp0WU/uFRAflqmvzo29wB\ntNRqH1b8ze6ovU6u5owYdc2VG2xQnU0m5Pp/Kxv92CnS8zhlpE7KE1YPwc2a\nlRGLfxOSnVtY4A/IeBhCjgLXzIpQIVw/fX2kno0TQZbDSDp5UWowg6IpTCFL\nO66Pvodou71MlGKNRWVe4x7dBVPy5FwP9zt8bvrlnFk1zrWMpohszS7dK/X/\necJjOKMxRWRjtioFYGavQV3IuXAONxnb0Y0fAE6zOh5wQa2txM6geAlD0GKS\nGTU69ewjotUwwtawYe0C0ToRRTJUZLrbupPiq/ljQj5f17Q/xorlp5ItOa+5\n7X7a\r\n=1SQP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c2898db9dd58c9b0681d6131ed6076d71d89e6b5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181208_1544253151617_0.672314634304666","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181211":{"name":"typescript","version":"3.3.0-dev.20181211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181211","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e2147a2257cacaaa00ebfeb3ba11abb333dc1cb2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181211.tgz","fileCount":77,"integrity":"sha512-0o1UfBi971vC0FrzDaXn5QYMKFCGLn9RXMlJf71VC+ogxZy19eNiuODTmHNP2LAO1dWCwUg9NhpKU+IxmZ3KBg==","signatures":[{"sig":"MEUCIBA0MagKtoqndaJtb8W/3d3z2AD7QOYKlwpNokMp4aJQAiEAoeOoi0u6noWXQkj0ztzjuxJ6G+Ss5z7SZ8O8HYZN+OU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42573122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcD2NmCRA9TVsSAnZWagAAS+AP/j+Ubr8sQLsLvMn0g7h6\nzNaPTuJuFA8fpeGdhv7QNOD2czML8YPrnRghJaNbgVPFsJsbgC25DfuHSnsy\n1zd7TPK+s2nInSEKOBxqYSO/Ou1DFiAKAbr7A4b7zkAyRgU6kTk5UqtLxYrP\nPXkNrgzpekDSejxTImURzna52+numo675khO9ifS3hU1Z99Zkir1K9Ihe1Nn\n0whQVncG3Ib/bBRBtu+tn9mujE18ngFsipVjJ/K1kI+I9c9knxGwy9TP+U4/\n87uwF/SxBbjxga40iiLq2fMhV0DX1wgibbdguIkSMxpd002FkgWYbVkafXrf\nx+r3LOiwxPhUezEauoKHwxf1ojDvP+e/oPGvXj7QOw/6nhZ5mZrWL3oyyAs9\nPOb7smWQ6G7QtC6LJzAJfzmFWjWLb68YZ9R9aNGxxqaI9fExOZSTg1FVckSP\nTxnKulF4Qna0o/dxDNz2R23vYKA2WDDGn8nBIE+1qey247wDsY5yiLHbE/Kk\nKvQUMJBLyRYIazpdUj7U0cTXfiLj9EjicIeTF+gOoMFQdvQwh5vJrxWZ2ljb\nlQgyOYAH1vtk8PECM2K0QXs7YjOPgZTF4Mr0J5bozTV4qizz6SLKQoZXxtlg\nIyf/7m5befoR1DZmdrQhJcvZO5wyKRkIUAmuLCNwODwIbA6mnHbwrFhGBPRL\nvPQH\r\n=fU8h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3c408d8054f3b0675b49890fa96c470b70e5e395","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181211_1544512356321_0.40787794463339466","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181212":{"name":"typescript","version":"3.3.0-dev.20181212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181212","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8a1535bd123d377fc5f27f6f874042f9cc44a9b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181212.tgz","fileCount":77,"integrity":"sha512-ThWeDEVDmniAs6VLZfCMCVYGc6F/HOHmBDg9GyWr0bBOP7ubzee0erFe3hwIp77hYeNpRYXu2GmNbbysOb0SVg==","signatures":[{"sig":"MEUCIQC0q6XmHySavSw3EsOVzgeSppfZ6XQIm6yLGFGeXWySOgIgQCbJg7A2fYWL6BfNW+G7PpzLDNMdBJDKJ4Fzf7+fDMU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42579162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEViiCRA9TVsSAnZWagAAQ3wQAKDu3aYNCgprijG8PntL\n8gLxo03zDwHn9h5LxJOm55u5N96LA8RnyibWxx1mJ9LvpNM35Anmwp2cxtsl\nzGq4ZAleIPxafiIZqpYTlG12tpU3Q5NrvZrnA+GM8Q/LdQ+sefnz71jO1day\nGf0boTE1E+cj/FKnOihwr1omwSCzNIG2AmyC29Kg8OQFIiaSJoKRC7/1m9YM\nqPSTA2hKIBOjs8VU48J5h61AVhCa4IrOJXvEMMOoJfodLXPtLuxaLv+G8cRL\nDmSFDtLCA2UlfFHSZat8p3x1tCz3E7Jml5I7eyQcqaBHuXCZYYYkzimW/gjn\nsG2NGr9NwaThFmvPmSQYJ0UjcOtDfbABQbwO/+OCbd99u8jKIqi361Oh2RPw\nejOEbKqkAGRDVI8LLPSdznOwbV/0ceDFmNC7G12TKyiExmawb/VCBTANrUCG\nHZtREYDxYljQjcN31wuiypNI0tL1R65TGJ0nebHjUEDij0ixNg8/i9HG1YcY\n0/K58I22mo07Nv3aOruEXg5Wff++WrcCEcL8Xd/vkABaLOqVBdpdC/poM5i1\n7jORh/Sb+P3BnZMa0JgObUMobBFpbkEFPcABViG2YJSwEUOqay5HfyVp7Gx8\nC9b7ooWPI8oGFDnm/HE0SGh7ONfbJIQh431oBgsqMkRysqZtI6hMSzRoShhK\nUQWL\r\n=6VdY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fecbdb68bd1230757cd35f63397af006926edfa5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181212_1544640673697_0.049684818915269435","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181213":{"name":"typescript","version":"3.3.0-dev.20181213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6841546d816a712ccdaef29d778ff25b2e7c7233","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181213.tgz","fileCount":77,"integrity":"sha512-r5RkOJsu5zMQ3K0OMhX/w/kA8m0moO5lZg0SAjuiLGZ/LPQo+Q/ysuICqVK5B5vq/mYov0cTlJu0vEP2b7vQ+Q==","signatures":[{"sig":"MEUCIHRHDWgfSIfTKCNSEEP/+B39heowSMyyJ7UB5VPHTfjyAiEAz49t1SphfxbpYMk7orFZaskWirPzddarsNNvCoEfIyI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42580810,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEgZPCRA9TVsSAnZWagAAgoMP/0dGlV8hN7TngC5Om/OQ\nWeJfQrvbj6aoROcEM+k2c1yF2/ytO/NvSsNo8Tw07wsYMMCIetix6oH2SJOM\ncz8qoHYhc0q3wCxmPeYQ6pCJsMc6+u/97Ao9gsORvCeFMl5iBW0JePlCsgjJ\nqY6YDGGXtLjOcvAKhgcSo3Wb26pkq0rlP2DzxJtrxnF6DxGm7Sq00tEAz1fg\nCadWU+liV2IeFH+rf+l/ssMJ0b3YtoOmgVeUIp19j1MVif52ZK8R2dM5Y4L1\nDvjEFiHzPbjFQxkSfuHuHG6PktbpBDDfPrdkbfmjnMp0Wd52EmGNcEtUVhTG\ne6xwCRbhjAfhF2oMFXioq9p8QU9Y/1az28BrgWc5TLNUw09SgOgdfsXft84h\nINWt+itCViz8AvtfNoYcl4eQtRASzgvCid1OoYlDBLHj2wTa4gqi/EhE/r65\nX9ndTN5chO5Iz45dWsfX5XiDKVFTFicnRV5UH+UVK6wXrzMAX46ASo9T3dy2\n1jSkZvfd974ElYyPZabV40iYfJYHJxmElFY8MzN4ZdNgTYpp1ViNvX82Zm9x\npMs86bNumtB0wmL8uxql4267c9PBW9H3pS+lukrrW+bEgDLhLN3p4WvsqD+j\nDsSDB75HTBVUbSi1LzZDhnv1Upy1H3dqRP1iiKYqDtYEBMfK+5ZOlTfc4q5I\nhNSI\r\n=q7h/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5788446aa1757042a15d25b550e7a9bb95e58d97","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181213_1544685134765_0.12694575050385515","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181214":{"name":"typescript","version":"3.3.0-dev.20181214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"36890168e9b965727204eaa0ee05de2782fd2e40","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181214.tgz","fileCount":77,"integrity":"sha512-dy3hilVp3gHsKEqj837gzo6YLn5IuX+5obTkdLJuvceYQ1B/fBnj4Y+FB44IQdmZ4oaeQd5+7u+uI6vDvp5FhQ==","signatures":[{"sig":"MEYCIQCcjahcvya/1xJKIz0wzJqN5pz/cB/V672tGsLDMltDFgIhANwq4h+U4WooLbS/tb/Ofar1XRHJsWxffD5t0MYc29q7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42583927,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcE1feCRA9TVsSAnZWagAAiTIP/jMUN/EaEXJSiKwUvJTB\n4fcKEH5fMH5HFJjYS1rnf/wFNLCTLPdupiAqDI6MEkAJ4O21h9LBCDj4t7iE\nKkGha61xmq90W1TJeToqTcpqDrzMYQU59BIfnkAiu4CeLnuDmMmz02z135Bj\nVQbuZTqdq6wTvQd6c7+TCEV4wq3qUjgMK/ZIZ24TtELJO+l8q0qOgOV/HwX5\n+x+BAf4wshzxuwiMahaZyCUm6tapDf208IFaonnVeBcxONEmEsdINGj3xgSg\n3Nh7UfkluRQvZ8DPZ0l7hjbYzGU/YGvZIRs0mCnqGdKVE03ujkGdq71dZTAg\nxQTeN/80KcQyYWLY6zJAsKNKD41G4Khr5YZuPJmsHkam4/Gz2HtL0ek2oPTG\ngp95LkElGg0MlwF4PpMTKBSI2I07UbCdF5jREuXK8zpTFEHrz6sEGscuqAhH\nFaFBea3KEDjHTb4R8GHmlguCr6VvVgMgrRONR/gmkDguixOzHG6fHDAjj0IV\n1/eBnykVaQSYthW76adkUBdQQefpZFkJF14g+Hh6wFx12lNs3I6vl9wOzyK7\n3MdxSL35jXsRAtrqyRbzDKgffwN9KKIgz5z2ZN5bcBgw9psNEjX+8diIIbVZ\nlmidO7J8Vo0nXa89GaBmp5lEkhQBT3tCfAI+a1kFAoogMA47qX8iLGxT2Q9g\nijV3\r\n=vRuN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4d74f67325d305f52a2b00b4f30b5a4f3210c649","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.4.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181214_1544771549790_0.7253863735716399","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181218":{"name":"typescript","version":"3.3.0-dev.20181218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181218","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3b9f822a1c483d846e8813194e787cfdd5e854f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181218.tgz","fileCount":77,"integrity":"sha512-3UkemHFrD3IIoYvcjUCVbhFK+Sf3PTT5uuRJYeorncPChHHWvH8O+aSm8pG5/glBHhKcznhXDRaY0RtCWR1sLA==","signatures":[{"sig":"MEUCIDS/3tOReaNvsoiDcgKD5TMmxbbq5LufgWqdkoeYo0+rAiEAxxifkxf06jCNfuTqHmY2axXNkYEfhTnPTEeLrnExFew=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42583791,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGJ3NCRA9TVsSAnZWagAA3ikQAIfXG5erpL1Egn5H6qmg\nOPrtXN2IPqyyutpRa7bJavbpVPVL1dRvjxIDOIGAqDGyY1882vIPKu1eB6Kv\nKqYXt7vWC/cBsnfr3/dLyr3GN4Z3JiB3XVQp95eA+b6zrL/k6KzkAMhYhHZs\nT/yT07voHlBIE4kgUGPzt4jLE4GSR/bvCJhFnYCqKPW3TA0ZbPVikiLkNzFL\noY4EQjKRrrdJqFVVlTAUaYFBL2Um60aOjvu5kRBjhW/oY8/hgD+nmM0JsNCZ\nQFjH0SSrHmULO9+gwNuiAgq31kotv7dLudO88Q1dDgirMc6CF0C4FiMthQp2\nDj0kdtjnPADeVrV0nCwUjPVTN4qhySKJWrCYUWgoutwTjrwLNsy0tcU2AYD9\ntRefml9Yns/nPvMcYVZ4r7GhjOWkYqeCI6W1oMlYXVnJr0rqjTmczqaihiyJ\no1u4gOUjfO9QC1PKlt9YnGOnEAMF0Ba/H/FEYbPsEaSOVW526NLBjTcaYkM6\nV7IW2hWAqys3mQIBhHWVQywKuHJK5b6j6Qo5SRXE0yjvDsmAWZe92EXpO/ZZ\nCPBok/hza50cdbMyAlG2RSluHArPlo64oVF1X6CVuX2ij+TtkJAhLCwBqaTa\nGKEAJjipojkAz9BRRAgdjgLoJXyEaCqg1LhfqdbodgOed8ZDephapCVbuHDB\nikhP\r\n=P2hi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c5ee5ea7f2440a11886e78b48f3d3010b2aafbaf","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181218_1545117132723_0.9710253790412791","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181219":{"name":"typescript","version":"3.3.0-dev.20181219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181219","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bf5a2cd8f824b079505aecda1cb33262253264aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181219.tgz","fileCount":77,"integrity":"sha512-XI3kgfhOyUi+XTxDhrCsdCh/UUUzs8eYpNyQhdaF98zuXNI/8G1x1A9cckp1DYFoRYDopjgLMDvTN42mD3FV/w==","signatures":[{"sig":"MEUCIQCnSxeu1BqHfiXBeK79tWdK+SvWXkjQxn7G2UDF/j3/uAIgTE5Z5g1d4HnCcIxV+aOEfWfVEC/tXc6es/YXMWf5hGA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42596488,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGe+zCRA9TVsSAnZWagAA3LIP/2GB1C2oOUb+MV89+PBa\nFaC//JTyniCR2t8S0551/QrwN+XWVFUsb3Qqk0bYJEq/QHSh2GywJNI1OaEv\nYcIoIBpLiGTGRW+2ADoCyMhDT2CXDnd6uApIxqRa7FQRZdHkjR4m+/4TkO/m\nGG/RcEss0wzB/IzMAk/ukT1nbSrx2grtXU7dmLfMnVG07zsOkwp6231hzUI1\nbA9YCU3kWe/V9XC/YklYf+lONNcUn6oYqwbhKMJkgJZGPqCsZJZu3VXgoL0Y\nQ0aRBgF2h6tiRZpjGQge9FSoOebRAl7BnpABvSWcBBiNxfYqRgbxuasDGX4z\njwlHpKePL8RZBrayTmfVVFFLjbfJH31cO3YQa4TnpqO9Nx3beFcn9d6rn206\nOoPsZvl7ykjAGk6F4yivKbnFF+5Ho41vqiteh8Iq5zGYZ8bVa8fsqg7z7FGn\nMx7iILoX+z/7nfWSVkHL5kFvdRWTMMglrfee1FqXXg0+XCmOODc6lA8GZnmh\naisZvmkl8dKDwUYCxlV6dfNZJWtdbs9FLWWrhgG2glOyjWRO2tQTjoxZKr7u\nvV45NHHOFp7SU/RMvAF+ZGZL+uQ7xvpk2KOYJjzfJ366FZs4EqMxWVPMVwnX\nPPsLma85ww8v4QvUTIc5ZfE3+W9CKbPJMuHSEfhXtHInfelDlUBbLZoWnjvo\nbyTS\r\n=fdT+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d23effc200cc31b464dfce5096860d484d19694d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181219_1545203634151_0.7332642886228646","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181220":{"name":"typescript","version":"3.3.0-dev.20181220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"28460e8ce6c251f4079445cb6316dc98d46d6ebc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181220.tgz","fileCount":77,"integrity":"sha512-hhfWQyjp3W297jwg+iRK2uiHx6JaBtpWdTJkE/o/v4H2algNYAeQu1lLiu/WhbyfTQHGsem9TZrJRJ/bMmQK4w==","signatures":[{"sig":"MEUCIQDqZXtaeqmJOZp5OdwwVaIXvUSC8DjXF5zoou8q+whukQIgGUu0Jr6Sva72dJVppu4bfQJG72e2r+YOQGsrzjss+HM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42666095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcG0FUCRA9TVsSAnZWagAAI8UP/RCO+Yjc4YB5i4umpjaT\nTUKL3rxQutpj+W+DKmWowU5Xvg6VgJ4HFSln6h/L4jI0LJIqefTTxnDg8D0I\nijZROY8U2G3srDtpIv5gp43/ySOCntwk57iAr81Yl/gjhIhP0pG6PPkkGZu3\nZDs1mGnP6PXO982pq0K+ApgPv/uUNhxeSor9iPeZhWIkvtS/tUfEBLwD/q+L\nY1kolxPuri5c4cLg2XvG1p68tHIM8cAjcXxadjoUbES7herxc0VOcXQByZB6\nMJKTkCc8tq0TWM/dKDRTWWVJtYWg1lFsZcbwHIbeMEa0/pNV1TIW0ZLh21oq\nD5kwOANLsN61jMkYTvRyn4DOu6a7Mt2Xhx0TLRMrbXzipgfjztp6wIB+t9sS\n/5cwBjZ5D8YSwdaGqBfjbIwOePNesjYk3dg6JUI9G/JZfcvTiCY3SDmDA4Nu\nZSqaAYIyOnQIfEajhqTs4+9NXlnCmBq3u6cGO9+S+pTbaNxlNawQDK0Gm0/9\nMEnjErv/zr38r2Ak8IrwpvTuWWBhzUv0wnOu4tkuXDegCUuWQ7B2V21zUus3\n4KudZ+tXyqqLw3TNEWE44fkehCpYWG4K6ZoGDZTDpABEhCsDaMK3lfeTA05d\n7W0Pqw2nd9ggq8Jc82HTuXipLmAfoHsl55ugDMMQKhasF4HKheuYbFL55YlC\ndXqk\r\n=n0ib\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"08022d57c8c068767c6594df83e0012a8e154e3c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181220_1545290067673_0.08527592825150099","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181221":{"name":"typescript","version":"3.3.0-dev.20181221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"abb0490f7274b0f6cefad1d622d9147ff58f1894","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181221.tgz","fileCount":77,"integrity":"sha512-vReSF1bOGIKkCd7EhmUhLouAwnBKtiXQQeM87PYeiIyJJydNmyGwNHw/G+xzeiVfj7K6iYr1MLR2z7qFwQ5k5Q==","signatures":[{"sig":"MEYCIQD1ZWVlz6MgzPxLgEWI8B5QNo5ejqQQTOSLQHb/nzlCEwIhAIG1SITBwuX5JB0oQDfABF8rGVpgNz3mcIH4hb91ysTY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42666095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcHJKcCRA9TVsSAnZWagAAZPQP/0Y3yoroSxul/5FXNToc\n9ynqqFaoqyLshV1EdkdiquvMljKDa8BNASEEVcM6eScMr/5gOnN2BjvzMY7i\nlpH/odW38Xbwxdy8rQcZT+02b3e4ziJtk0DctKF71UwsTHTpAkGcKNooA8d6\n2GQxMj4/1z2B4bMxJ8Wcgh0ZcHl44PvJ0GcnHBetQbSQp2d0QOxvPBIsaWO3\n9A/8SC4CMaLPXGYv+dhkkGdY+DifPuQztQBd0OE05D5GqVJgGfK9kiM/2LS3\nXTA9PwtdK1WviZ2xwUW4shHs8U7PE2yo9Djt20zxjVYT24DlRIsC2XwtcnmG\nH23G33RinhnA7SiZ7X6HAOXfeG8+rJB+G6jY0GuZBtLcZIgZg2zuQsDFRJmu\nibRtNthFvoc5hLOsh3oyMJT2VY6DexiHoYc6RJWq2EGdMMw3/lLUk7mKhZ3m\niy0egm/EfuIn2mP0TYxA6xwhjvCRtbSQI9BZf4jfvKOIJ0I4LGwK5hEB6NKL\nhUMVtG8+LwzR1TkTAlUPOfh/+DzOwZrAXcJnzl8ckUVAy7c29J4OrOxN7fur\nNsw0flJ9PpgaAZ6EI9mYNSkArteTQkm+eChnjyvGJSpiqn5FIsBlyznL2o/w\nPaa8KQyLpu21e3kAST1mug2O/A72drL2xJAjBXrL9yrXIywwxA1rk5e2bkZP\nVu+d\r\n=QoBg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a139303413e48f8b1cd4cab43574c534363c8094","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181221_1545376411220_0.761600030313025","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181222":{"name":"typescript","version":"3.3.0-dev.20181222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181222","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f877a356797f35130e7a8e31aac94f3acd58f5e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181222.tgz","fileCount":77,"integrity":"sha512-vngsINlRTs0hQjbmlySVBb3QUH/O0Sse2hPsTGXK03KUYFyo8996IYfrnfRKthTx8tymOZ+/W1vH++o+rMhWOw==","signatures":[{"sig":"MEUCIA0RHAStmTBKBB40U+R+s5A+zBKwinSglsah0A49hnfPAiEAsJGJBcAzrIlMDRENDSiwomDLOFaKsvSuRl7zMY/ZD9s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42666095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcHeQxCRA9TVsSAnZWagAA4z8P/0nhzf6xVM6yKRr7BWSY\nb8vwno4aIAnECAkol8SVS60W8IU8tyboDn3Io+zkpVE5SfMUA7wD5AtODOOz\nOweyn7Y53o3xWNC8MG932AWXpgtN5DbUETXGDolNQ4vg7xVAuMj63u2WcsSk\nsNCAJLxj22KFtjo6/mm0JQxuzE82pmwvMiqH7nYMMx/i144ITp4xvNiDloVb\nbxwSnvd9F7cBl+RvuudRTZnMRQEKmhfXNij3LUYO21jEJNNW4mz6PPQIfHB5\nmAjOl3BHx+Ja5NczLWY4Xv9aaOWIPvCNN9Dl7HlmKRdjAq37Imn4ZMpE48Hy\nUDtRioKbvO2nE6UQ2W1HLHGCW3myBH/QdN94Gg3Jbtx58Yy5KHHviiUGiaL3\n2oxxuns9dNlLv6jjvG01ho3HEu/V7FiCljfDtITjq9r4HtLpDW2XsmF5k/SM\njapJpKcyYYrwytLjzfMFZ4AYSAY0cBiu0JzkZ4tLdK0At732SN8nYIHKHbXv\nKUH1BOhFtqwYkJ+dNJuhOVACv5mJMqwI5FE18OYaDVuTMYDU6aLMh6Azs7NR\nK5fxLmRSp7pcp6x3epkeOJUQ91pA8AWP3NL+q1CMx/67O58VCSOPYbQul8q0\nUW/5KsWBEfddHgY8TzzXudycxbd7KHhqiCr+hvuBsi+3zMTNHQx3pjfJ3xGY\nflAo\r\n=Kvzu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b8def16e92f609327971f07232757fa6c7d29a56","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181222_1545462829362_0.9255332438273587","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181228":{"name":"typescript","version":"3.3.0-dev.20181228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181228","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"309ee1401c1c0d0c705697cec6fc131a3c7d8168","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181228.tgz","fileCount":77,"integrity":"sha512-Jh08has1FBNPYKiliA8fwxnxgsS0AqqWVbdQc2qb3rVCV8l0JYxgjRvXr5Skc0oT6HWjMmgiRm7SSPtbHl5vZg==","signatures":[{"sig":"MEUCIHZ+k/hYUZYfL69E+c023/FmThXQ9kRQhMrKyUYi4mdUAiEAjz/kw/kRCnpV6EIJQyDtTvvjznHULqaqbz6d+39JUlc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42666111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcJc0ZCRA9TVsSAnZWagAAOlEP/iLw3yDZ1FKiiPUoP47x\n1g9LfRD1KHB0munTExMgl6uzLaZgSni5I1vzaGeyTrL/sjEyGW+vWdJwF+Ns\nv1tHWDx5NiBrMqy0Prexe0+9++ixXZc0Kei8JLL6CKpxunVHxPN+aaE8IaOZ\nd6MSfr/fiAoGsgSuILiACzPmTa4RjEoR8L4bYo83KXTQYBlYct+w5VRhOYkT\noSyq/5PLYabaia6mcnz6+/HPF69c1ZwrwMU3OHdqf5R/gVdd++wI8Tf4/HOK\nVu+MhUg+AzWNnYRg+mxfIoUsnK7eDhbHrjwsOQaL2axTOk+s+DWlttWc1fSI\nZbwIUbG3aNWnOfsaiiwiBgclEuE7uafEaevyICf8r5kDw2jcEePas9tCrzye\nTqD383JsZcOV1i17p/YHNelaU2ZeZrkRIuJ+mekI/2GxGk6DqyqLrXVv7yBY\nimfyGd3C++1NQJ9pIJi+Putxe8/VUpB0Ixiu19Rga7QrfxTTALVr08Qj9Mp9\n3NJG5Dx6jLniX2ndyVf+tbryJc0Rysj7f3tBVEmU0I5mgPOOyuoLU1DndnIM\nP0Vfm7mcARMrUVd+c9JipZudu3V1HeEudFpEcBJO3SxYJyoJNW5r5gFK0f39\nm95c9A1iqf2eUu6VzMHp1RkpA8UobeLRea7F58op1xqO/IGY6qW4g6hQrK2Q\neDu5\r\n=wVEu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6ffe42781c0940d428654babcc459c0dc557ebbe","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181228_1545981207925_0.43957522550603323","host":"s3://npm-registry-packages"}},"3.3.0-dev.20181229":{"name":"typescript","version":"3.3.0-dev.20181229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20181229","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a850c2f85963e9f166f1648580af39ca481bf5ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20181229.tgz","fileCount":77,"integrity":"sha512-iGESc1KSi0RmsYk1dxoxWospBoh1V/EvJeshf5Ei56rUawxhhHfS1pwa/TTar6K3NTEHqWHwZczowHZe+m6bmA==","signatures":[{"sig":"MEYCIQDko+1GTcy27DNAh3SPBhZzBjSJd2XSMH9CvO6nSnSN9QIhAPP5WneqCmvW//mHDuS1E8+jnYIIs5ApovjBsFkjsbn5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42666549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcJx7ECRA9TVsSAnZWagAAJLEP/0nN+zoHxjGy9H3NBtUg\nLqBJ4ZnVU3rnMoOVvK/zyIj1m1h1DIY9/hQzx6iM07SQqTy2fg9kPipOS+Wr\nuWQ0rwChNE/I46k7YndMF1vQvrhKAZ50rXb6iQmcyj/hoSy0SzVGYGQ0wCB7\navdls7Id5e6qAh9YmwxwfG7suLbDQyICPlEyvtf0lMiGFgPQP1CqdCkWFFFM\nqee8h0Lf2kQSP1r4hhe47o7txC/BSmgT4GjDiyTfTLotoLKDLsAlPTIehWbA\nTJ0Lo4vwmF9Jih3k7hn+5yb7hL7enYds1/Xn1qEpvKHxnkWyo1hfQAKWRhY3\nNwgdlylW0jyyHaVNnJXWxrim6ifjeADMZnFWe0aElWVqXQZ9HXFDeXZDziz9\nb2P5DK9V/q00cpTuMnHO7V6fx7lkNTUXz0MaKFYKDn99dpF0jc/3vGl+5NHd\nGaLkGwzSaXGGvv+vEHd2838wSf/sRVBwN4d8go0hq9710U66QJIM0pOfjhlz\nnEecuGYvQw5IKChkscMtpHdFKJivN3aFC3Jl6HDIqjuYKtHodSqk+x/Zhm9s\nXlSwzC33ejHNBWLugxWYEGO1yuelbqijpWw2Ye84o4QzIAYNsbB2zWlRXfUu\n/wc3l0MEytIL7bXtGY9HGbHKubW2pCMyAg8J/UlCgkA1Dosuu/z12M6/V8Ou\nAc1p\r\n=a5KA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8e1403144d0c9274fc6ea2cd6620cf6d00c42c83","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20181229_1546067651171_0.9793571691190319","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190101":{"name":"typescript","version":"3.3.0-dev.20190101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2eecb7a9c6c63d447615b6e6b2d6e648cfdc4caa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190101.tgz","fileCount":77,"integrity":"sha512-pmpqjyS64DIfnCJ8XGFXlTC+g3hCud69EYEudjS/alwlVx2qedQedY36ASHPRopiZxJcwHCkM/CypDiQtfQZVw==","signatures":[{"sig":"MEYCIQDS2koWoPWw2uX7vktp4VR7/MvjU4kEJGTvBKFhamnuNwIhAKPzhNy5AZbM/Mg0A7MOxALW0HN3LpNdLi9QCxAop84s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42684022,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcKxNBCRA9TVsSAnZWagAAY9gQAIRcS0Lu2AB/MA3zmVHy\nqOA2miIucSrxzb7jubacBjmjGml0NHgGSTcboM8C8Nk92LJMPVN1uZpXYpee\nfUY3lZp+DO7RRI2QWHVOEEcRMYybCAI05BacJrNLkcLjxZQdzKqddduFqtPt\nw+OY7cHxoA4YZKsgw77/XTqE2zlVeCgteutw8kHic2IatJUg2qGKh17oJvlz\n9j1oFmiepkrl9vvjwqMoYKgtg1B/X8XONlfUdNwUkwViD7JInnG7sqkOPMcB\n23bjJnwZMz1t3JYGfrPwuroySBA+mf5MacC56BxQAz5HuP2Qk80hVrcTzneR\nmLM/mvifmJx7fw5WN8JnTBD9iIatzi2yVhRba6Db2A57hC2p4piRmd9aLKJv\nHByYFIMpPriHwTbhrQcKegkobKPBdTj/fnvmh0ZKc37Sgr0XxXFZ9l4XOP8J\nNI/LJYg6/XfqOniR0AJjgv1DA8nMMs3wVPFcuHRA1fQM54r2xvzDNFbOe80z\nQzm9MwLf6YmPufTgjZPt5xd66z8M6obTiDf3O3q+YnmDdpZ2Kde+3i2RMnT2\nTc1AWV+K+QDPvcHSksbCTVuYA1tQ/6R04Uqh2N0XtXZofisLv9spBLT/FE+t\npy5kegIKcoGBMrGKbL38G7aLH2xuDtXPjO4E2cvL3g0AqLXKRuacPeWZfdlr\nPKgV\r\n=7Rnp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"799656a03757975c83deae53ce5d6be54131fd93","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190101_1546326847887_0.2791277990817709","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190103":{"name":"typescript","version":"3.3.0-dev.20190103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4577b7fb125269038c166090f73d2fcfddab6d6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190103.tgz","fileCount":77,"integrity":"sha512-M08hghscVjUuE2X0mtKrNmxN2PSmvIQ9mLT0iKgIjV9hzdAfRrTSolOPz24E+/CsVaBStM7OWBr6VQ0yTvoPMA==","signatures":[{"sig":"MEQCIEg8aeAQ0RVFr0Av5Tn9Q5CgF6U4fTse2eZhN9yaK7gnAiA8iBp32aCyXnPOTSitUFF0ODexUGeWWSvaIT18wy4zrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42684149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLhvgCRA9TVsSAnZWagAADPYP/3iOSZTdDU37MwaVzU/W\nnPs/OxaFOOwXgmFwDmffgzETzyEc/Bppur/1fqs9TOuySwkRLLWw2H4zoQiR\nT7atpt6LNuUD7V+onJ8XjOKNy1gksIP3HSe/zpXwnoM1SM5zJxvzXb1cE+mH\nLkUUudfVNnxxdRChjCCGqOz+qGoI+AB/H5Ljxcvdj4CX7L+sKicqVh2s4mXz\npkVwfZk22jUAUHZ2d50FyjXLoDXFv+t34KYJdRr2E9gUu7M31WZ7z8YEAYiz\njYQDrgAQ6z9rCuH0FhFMiXefOoTXn5x4RdKIeK0NFk2FIEegKyOdXKr8HM6d\n6SbhiAlzHps4XFL7VMsT8qfKNbsTxcpeGuitZHXJD2I4VufRhoyo7q43jwXd\nnhsd2RgVCpUPcdvneUrTfJRCTOBEGieH2mznkSNUYM+RziiwUcLXkgHQU5cL\ndZMtp9uGe75pZ2bujs/mcx8FhBSQBpZ6+Qh7JMBxcjEcJn9nyZ7L1IUVPX0z\n00L5zGYSOo7lCnQTzcsp6ioiywfVscFgGmfFUDkLomEoDcEz4i5A1/ePzTCC\nDo2yk3s2o4Ld1h+PKDfbuz+vKc/FPrXlKOTRlU79M5KiKHsOJI0bwtGYoILa\nq/cY53J7JGfcPzSIi8OhOOXf/AQ9qZxsnFPTDdq5N80A1P7MLN5bkSsXxosF\nIM8v\r\n=qs26\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b2f76e9dc88b3b9815eee9a7374967a4ddf41c0e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190103_1546525662647_0.21346578903356095","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190104":{"name":"typescript","version":"3.3.0-dev.20190104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190104","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6f9577e47e68bd660e58aec7b52f636aecc24939","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190104.tgz","fileCount":77,"integrity":"sha512-U+8TfJvWJ3AG2W+r8DEl/3H8XPtNYpiEQJdHCmPevU7SMpUIi1kE+pjLBL73xk4OVdpVkRKI6BwhSw209qly8w==","signatures":[{"sig":"MEUCIQDYJmJ1RW3ZEeZ4Tbr9XBmBGPhwJQ8cO6QisqSmKp4bkwIgd2lw3CFHn+yebrkFQxA4O/m+M3T6O9zlOwolnt1O7ao=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42688812,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLwfSCRA9TVsSAnZWagAAqBEQAIRAO4fn5KGCZI4XAidE\n8nPA/e7HT4LbSDLIEgW/95/UpgN05Lkfma/mHDd/E5N8zaqd3WGfMCxoPvxg\nsem7J4+RlzXownSBMKevicQ1Kio97o7vCMbQrlEQnq+WYnOoPN6PqeOCwxkE\nza9EYx44+cY7HRsK+unm0RCvzVHHyTJ/bMb0lOOdaVDcy6xZga6mCAStak4k\nwA5kW7BvoLFBJVym/D6XSdJORwNglzn4IPbJOdr53wC+fNxlrEZ/fLH8It8i\nfXYjI4tRfUo8jPeUyrszN8FHFYfm7kR1O+b6pV8KqS1sJD+0jbjpgPW1UHjl\nAld1oG5LnbXdoXHNs8QnTvSilB/rXeLrcYIPV9JSWZxtW2eYa8HSvJrDFZMS\nIZ45pBCjdxsHlE+G7Lz3S01ik/7qIeOV3UkEx20eMXP5DB67Zjz/dEDIDx5q\nJ9m/fe9agjZchPW5gkQboAdMjBjWtIpPD0J7bhtrFuBj1ZLe3uEep5LHc6Sb\n0RU8duMsSMpY09UlMYzfvCvnRRsFaO8wt+NzrYsUq/SjG87pIg5AmDOw52Vs\nIbAiVKiIVKRTn72tqP/dae00qXTgKd2OUkfz/Qticg6GKEokrmoUjfYWmgJA\nxkv4E0w1L1xiJk7p5NvnbD1f/Vv2VlGKq2cUB4sRcWNRDJh31+Oyf5pcS3/f\nbdCi\r\n=9KbF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b7d7d5f7b39a5b9619c77590e5fe7f434ed68f1e","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190104_1546586065269_0.519009454616103","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190105":{"name":"typescript","version":"3.3.0-dev.20190105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190105","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"67408f553a30f7e92b4e9afe299aaa224c7a2ea2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190105.tgz","fileCount":77,"integrity":"sha512-YEAfFaWIdfu0Er6Qvhf1RuzboUFvpbV9p77uOKVIHBYQc3Q61fPJiXQYA7l0liBctT3gzb1ZepgetC1k1Sdx7g==","signatures":[{"sig":"MEUCIQD6R70v20DcOxZzqVyO7lBtpqP7QXXSsHLOeOevATZkpgIgWqUNKtSfxCw+R9Ixx6aqQ5E8jY0yLy7MK7ug7fz0Zw8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42688928,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMFjrCRA9TVsSAnZWagAAMWAP/1hlBOaFhDUsmJw6hTwm\n6QxIuempmJfcu0294NMZwXwXHacCMFGlQRawq7H68YscbDSmexvvNCshy8eu\nxPxtTTV1hQSNRMfPDcuXfL2+3JEk6g/oMUopPzevne4OYDzC8H9YElqyM1AM\nTbesHswAho4Fjyy2IkZIVvoA/rblygfep7fafdIXP+ogjY6JcGKipJvJZjpD\n6XtF4GZkSIknXCrrCYEI26jKD9efGiPp8bhKllPB6TfFwwMLtGh9DCszaWcP\nlaivLsnoCuyxKf2hyU4XlrkV49P3imr3Rd81RMpcazpeJXlOXcJ4/21Foq9O\n350s28PCL23Yhz20iBR1OSHGN3FVJRsZ4zo5/9a3MPOtaIFtbj8xGTXMQbP/\nBlJrKo/oK21hh0pollgLgKI8C4wVWFldkABL0cGcqCo+gP12QNrBZQtIbogo\nHjhP4IMsV1JtAV3oV+kLr9LQ0Euzt+3KmHiVHDfIn855Q7n7PlkZnIwNpwwG\n9hKwMwVAPSio6KzbcsFNT1UJVgenC0S98pMYlOX2jeMUSbd4VdWHtrTyvXH6\naj7AMcaD8PMvKtUVrxLDrTye4MXWvor+bj7rZfA2pJ/1cGx2uppjPwJBPKAo\nEP+hA0qzgoQt/Rh1VkTC+51EneeGoi7sd6p7kooAxLV2jfs7/PBfT8OAggft\nfpn5\r\n=PjIy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5135b83bf9c29d0d11a7b35771a2482b1279d039","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190105_1546672362494_0.3731539084801765","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190108":{"name":"typescript","version":"3.3.0-dev.20190108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4ac2e3f7b619a961bfae0750412bf9e79fafe720","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190108.tgz","fileCount":77,"integrity":"sha512-GNGczOoEyZtqbY72G6fNnyCsgSw/gSLyVxHfduDalKl0tOrIt+mEV5JyVQzEMsmcyO821/3QsCjulJHS5KFOWg==","signatures":[{"sig":"MEQCIGmD+74OqHBNRoQh49rXwJIhmtfOZcJQ/E/wAS/vp5wMAiA3YWo4r7iLB5/wVskLN8HBfyIJGfi074cVPjTg51GlhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42688920,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNE25CRA9TVsSAnZWagAAN/wQAIU7mT/nmUPz/9+xoMOV\n5akH0URMgkIJ3VLPPqDOeaXri/RdcJ0LQnwQ2hj8wreD5RiRAyvvSiLXWnbP\nk4LXpEjXNiSv92GOL69TF9AEies+h4+QZlBwIe9gDTIHPjpTa+rV874Qwpcg\nDm2K2cvw+nZjETisr7DHnryFsoBqmfB8/UqQXFojgpyQ3eIzA13Ai+cSjAj/\nSqbY2SsjI2JE0iwyE/xiSOL7YvPVYtV33vJ5ocVFLWlqUcPpfwXSioO03yD8\npC/N8OCFNd9wRobxqX84iGsVM6btJafHyeZEjrBsrK8xX/Jb6IZYmCJQWJH3\nnhUF67sBFXl9co2XiYB0PVPrF6AclBB+22ui27huHBEEoflEMLlIg4a7/eHa\nydKTPvUfW+rx58UZDp6SgDIQ9xONPfer/nXAVR0ppq8XosDkhP++rZd6/X2R\nUA0YIXl9gcYUE38FwNiyodaJ+gpMQFfvoby7lXl/NkraYct3qksSxJPaPooP\nfcWFnJcSbZM1ZvbzagzsoysYNgYmaZPOKyqviGW77xdRJMQgZN2pnZVW0FG7\nv9790px7FdSNUOA/MhdUHvJAm0l+MSVIkGODKDFfQ33lvA4GfZIYD9hmBgrr\nOLGTYmK0xxveqi/2Ab4zxE6iq0u1DuQ04AHGkq2gwlYbpzxGxnQBmfc84oOk\nncS4\r\n=tD/W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4a0bc59f77265ea116be8d9c5f16bb5185663a8c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190108_1546931640616_0.8238836774818901","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190109":{"name":"typescript","version":"3.3.0-dev.20190109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190109","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b9c75c132981bb8acd1efb42ca77d11860cb97eb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190109.tgz","fileCount":78,"integrity":"sha512-B1mfcggVeVPkPM4KtFnxMrzz6gcK/M80DZAVskhCT6V9ntErVuRBw3LZxAZKUfbC0TT1u++Ng+bJIt7CVM7SIw==","signatures":[{"sig":"MEUCIQDOKyTLZq1lgIQej7hoNk6jUXwkmDFPYNhu1yMmRxKBqwIgR81YVkLtQJPtKOZj4RKc+4VxmYKSHvTcL8SjQkIUxMs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42692865,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNoDQCRA9TVsSAnZWagAAB/UP/i0FndpVCmMICydhFyVv\nB+FF0Jf9xYk3oQfmjhOoRM0jJikjBRdrpa81p5ZNrWFvo2NOINYiSvwopR1r\nGZqdH0kwZjWAY2LlYJO6kXofdYNP24gCbY1b/hdwm0vWLLnSieIQH8+S6x+N\nx5QHnPq+waKR9sdRHSXc8oW4ya5BtW2t1l50Ib7NQlV+35mi/SYvk3MP/KFB\nO9ZNCooDgHKsWqFsAg5Ju5SfNAfchfbDEzYK4SwtCjet28DbGzkCqMFudJI0\nMYIVxYg6KdPv5oqlpIfCXt1rdHm2ONdiKbLf6VR+VYW56HGUb9B7RxXJWw7t\n22nsNQjhmGU7MgVaVVlsnCE0xbxnlaLbtBmn45Z/BaCGe6SHt0eEe1gAYF2e\nlUymlM/rdA2BrA9jmnONBzRjYfs8wce8ZmTsrM3Tjsj2naFSE/hs5qW80rjZ\n3sWjLbfh/3qqsIo6op2my7WS2pqE3vDClazIbEdTSqlexmmXLa87SNekrbqS\n1XzLvS24kveQV0PZxs315nuz4fp8C29QlnVA/o+CjlWYZ4cnkXzCyswFo4Ev\n3A4RcnU6vBzynTz40Bg8/Tbvuipfbqesbb1wdjrj9Qo0gJzDkQ3hhmlSnCDu\nxLJPd6lQFpmPt26GvRr1OBaIrf6+PoshUq0GfIv4rkWFXu65hK0CtCbkVVSr\nN9Ah\r\n=QMJw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d0aff9bdcd95ee5ed260a6ab21137e9e220c9895","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190109_1547075791227_0.7135836956858583","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190110":{"name":"typescript","version":"3.3.0-dev.20190110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3904786315ffd8aa10144b6e10562895206b8ffd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190110.tgz","fileCount":78,"integrity":"sha512-KX6KnWq717uH4cXe9RZruhwnhPufqBLDrxAHy6k3A5JHPnIRuaK2cdij+TQNG8nur3PO6dTLWo4rgwdBsFz/qw==","signatures":[{"sig":"MEUCIQChU8gWCIiJkziMqmMtk+ymVHzEHjn1M3/Ht6PZ8t5vDwIgEkhqFb7xKetmemyooeSA890elDKqqPw8q+uQ+D3ClVo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42692115,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNvDHCRA9TVsSAnZWagAAVTcP/R+chKw0UYNQ4GkdmsAm\nuGO+27zM37DwR+rZ7GBVSYya5kEwXzDZsFr1eVyf9stdpUAMS5Ecc3BClqCw\nWBO5JGzCRCKj5aJzh11GMsejBzO4ZycEB54lBNY6Q5SCkAWlQgSs7PnJkt4S\n0x9sjlsMQZSFyDqMsG6Ry95m/VGPukG8yGiC+w7EH894yVLRyhpiD1tD1WDF\n3oQmAwRGF3j4wOCSAqji5G0Aj0gx5+GLQZQZLsiOtFw8XvwMxKBl/gDpfDFX\nIZYz04PDAiBbWJ6FAdNhC/bZw4ViIYlBtLQIVrGSliWOKP47enIQuwzQGYbK\nQIY+cn2q3uF91yXu37JbgFxr1TX7XMOpbtuKIsOE74/HG04T25/qii4U8DU1\n69GwwrWVEpbQZvNTTV97A0qkFze0pWBxv1zeHik09ch7OR4BikexwDpsc/6A\ntCPjpg4U7e+F4XmGsnOZKdEy/bRlf2zaVGNXvrKs+qi9h35j1x6+CFK7sNsH\nKn97q6cmHiEC7OWHDATqiZqcu0zOBwHy24Koh5DwItTe2GdTuThZzXw6z3AC\n3s1RoMqIfCiPAG+HhFzil3clqesNuJn55Pxh0WHJwQTbycwZP1Pj+/VPEI4k\nmjCjldR8HuhPI7ac0EKZ41okNbV9cXQ0Lk2bKHdxgwnsT4n9cpOrQfLysVEP\nAqi3\r\n=wGFp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"52b82560e8e8f4e3c0c6273c3711d727ee60597a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190110_1547104454478_0.5749176324392373","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190111":{"name":"typescript","version":"3.3.0-dev.20190111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190111","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f74d5e153e1f3d1c3e60134147941fa0bd5ec43c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190111.tgz","fileCount":78,"integrity":"sha512-WiPUBppi2M5I3g24CqKXM5y6wu5flFSBWoY3M8MydbHGJeQQ8UT7rRbCFOaqDDywZSFtZXgryPUb16ldeE/+bw==","signatures":[{"sig":"MEYCIQD/SsslQiM/u6n8a2byRWa8VEoVYlLMOdSxv4Wqt3irpQIhAM7GlEBnWmFmvznDli+2RuDq3XX0UiGN5l9qizBQ9xVz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42699273,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOEItCRA9TVsSAnZWagAAR4gP/3/15+jzVVtvKlmRqv93\n2lAAVa+UMSxgWR4oAZ1IQiC4MBk/HBFCmPWhqBXUWPegZsxxuO1VdBX6o3Kq\n5r6TwgZae+/qHTmYeTlJEMLsfOKxh2Ez2xrBz31rSuMqhtD6WxGOVDWuCOMf\nqz9AJoo5IsrvYTLfXHx/GxoFMNa/8PLAF9pqfbgVdkCBPYEXdltpSYjlKvU2\n2pgcpc245S0nm32A9p5Or570eCaChZlNfTSYL/ieP79SEJpe75FkiqHxDkuY\ntYmUX9mTCz1FV8FNw69ziT1KAjwN6o3l8X94nxMp0h0kOTTwr6vaJ7IEgiIl\n2k1p9Z/mD2aq9nIjc2NCL2++Uj4PLwLEQ1HDC+tYDpDp/35q+tMuIeSH96Y9\neMhz9wcslkLjSpfuK/RzUKyn3Jwop617yPatP9Pin3xT2CfCaXYExVEzijZh\nyJCBit+w1duNWbaReSS+5PA84lIuJYRKl4aCHeO8DOD45s2rMhTDq8QCYQJV\nQXAbwsAzHDec+EXmGFkbmNJFGJCQBQ6/rum77MjpwOzTeNGY5LcEY0vHJQ7Y\nSKGUZFoQzbuRsR3kD8XcKC4mr4pAH3te9/VowrYTC0R/g4Twu0d1lfJnp7oV\nkKH7mMSVP8PWcC7WEPDmOQ5YbZego3Ww+2rbgSpkikzS8ZkDVZFy0E5n/UuY\nVwht\r\n=j2Lt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"aba0b700b638498a7774003b053074193c890103","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190111_1547190828934_0.32773040429021405","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190112":{"name":"typescript","version":"3.3.0-dev.20190112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190112","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7d0485527d10db1acbfbc6f87bcd8541ec71c32f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190112.tgz","fileCount":78,"integrity":"sha512-aEfjOBzSPfd/sxQwEz6y+xl8+bYmGb2zl+sGIoJUNaKV+xk/Cf4bWtTlHcP/sTBRDQoE4iCT2gZZBmxfe3hWyg==","signatures":[{"sig":"MEQCIAkGp8WohIci8duZNL7KPG+hkrwqSoRce1FeNKWnCXiEAiBvlP//y+ztdmRbg7wMVWHws3GstsWeSBRo9KWmgvewGA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42713703,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOZO1CRA9TVsSAnZWagAAS6EP/Avb1jJTgKlIFnK1U4UJ\n+sPyf5MmR797SxVqx6npRIQf+4pJ4NgBdlbV8H6gRF/fVDDvrsK7BiepxnuV\nzSx/IL43+bLBoj0trYMDXzDFXcHPeIYP8G7898qGL3wT5glSIJBFO7Q546ao\n14+jy0uZLe+sYgagj5Y/CQ/gZDT73oEj7kHoNdYPrROvJ9qRvLq4SogBRLqj\nZvSEoqEswejVwM+fjCgAuxjsbTvxOYu2vnhLjpvL7QK4Po2lMKUhPR9wJ34w\n2+OtBT3InUuyXrndItUxAEH3Gy94gbzA2AO6WdX3xQ2o5b5hR2QWyE2kc5pK\n+15H95wbJ5/TyjpU/9lKOT3Xy/DQibBw0AdCdGXZKComHBrKEIrUHsnuu1TM\nNw1ao3ELhI75hLTSDWyZvf38+aNt/rvz9bW9IhpEuBX7xlm52jroweAXgzOm\nTPYtu/Y6xeJXs1zQqOn2AnGLN3uO8wMXsw3Ybyre6ks/8qHW8EyCSxswwCRC\n3d2+VN3xd2qxT6FJSZTDQr6c1io40XH7lehNWsXZNBAnD9dIOV2LeuYsuNA8\nb1XEeg/gk9b4uLcInZw+VVrNQWyvF13vKYLyCRrY3mEI/1aQWD0LZdG5sssK\nyd47fpb0ArVm+qjiRZEczOduu8gZ2jj6q8bAW9ilxet9AJA+p1UL9QmRvuUq\nVk12\r\n=vQjF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fadd95f72b5ad7f7f1cffa2b6ac82f612694462c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190112_1547277236661_0.995636894010365","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190115":{"name":"typescript","version":"3.3.0-dev.20190115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d3d2d055cc38eafcabce8738f8e56155eac42ff5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190115.tgz","fileCount":78,"integrity":"sha512-m2uYko/Dp7WXbuMPu5BRFob935/xPb5ybzHAu7X0CNXDMMED6p5qY7rqGN+sd9BSy8xrYnzBpqmzWeGW8PCs0w==","signatures":[{"sig":"MEUCIQCEWFfIt5ULGlNeYwNaMtojsGJnlsLo+mvDOHIBVM5IiQIgR41oHXxWYv7KtgR8AT1NTC2U3532qsPVB+wnFA9YJlM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42727620,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPYhMCRA9TVsSAnZWagAAyd8QAIPbwI/zgSa7mfsK55p/\nPoq4KDzF+3BYeGEfggwH7PKszdkEpv58PINcFjw2EQrpYWnGtif5aV7J+5Oi\nNK9iPUbDq7S9/SXuAXwSiT5WR7cZ5okuQTyNwkT3d90BBtMAjihgO7WjCdis\nRgtaXw3zArAokg3esitGxxor8UYufXb8TV75layZlvPVu2TGPOvIcvVFZgLL\nXLOxmOUB75YotNAHd8nbjNFVZPzfqLAIUnXyT7o+BkIhU0DjcxPgZ2ulJe7p\nMjkgMSVLWmWOJNTM1PBqXkvZGkslP6c6Jtqc8URZ464toh7351u2QRigE0FC\nJJs/435dkBk9bwYnWHuNLRFbWXORiYAS6oL7N/shZ447mIM0anmYNFQ0efzA\nr+32Wu77rxtRrS/NEm8Z4PsyjFLCdv9cioOT2cBlkYAqIcWg1xlnGa+ukgLX\n49yG5fOIq5u3JV4tOkNdKcNijzhsHOgrgiJttak0X0wR6KKxfFyBzHdWiD/z\ndg3Lc3Ovm7vGk1GOZRZ4dwO2hcehnLrMsC9BWllGGyx7UZAvreKMQZTNfHP6\nkwMzH/TvQTATgVSYNAzEVDoju/Rj4345juFcIYR+2SH+rBjNdWzW/eldtCDj\nyabFJH6g6LVuAgdUTSzvmDYEqXyBcbcXOWvZfc/IubAqL8GoEfTrc9WbRzEs\nts+7\r\n=FkYy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d53619a30df2f8fd47ca3ab81fa7947eb9cbabee","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190115_1547536459500_0.16803354007490934","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190116":{"name":"typescript","version":"3.3.0-dev.20190116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"594a6570e7e77f9c599c70f8730e969eb01adcb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190116.tgz","fileCount":78,"integrity":"sha512-/2tBCidbXK3iCcrA+S6ZubYW6zmDeiY650BqSx/vtBHWCpP9r/Y3Hu7vqj9uGIFozdgA5XleTn3aK3T7n+k9wA==","signatures":[{"sig":"MEQCIDj6wqmZn6qt3i9uZ8EoxvJwmO63q0K7UCLJ40SqItsoAiBK0PxGoKvPkzGc8ejQXEkzN8nPzHfrtVID/RI6BrTbcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42780713,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcP2xPCRA9TVsSAnZWagAApI4QAIiY/Yiw3XbItbROzox9\nBqx0OrQ6BRrpNpWyHvr0DokqSD6AgF+M0vg1ycyPfiZDvDsiMo3FwT/ztEf/\n2dOlIYHMDVa6sZBUP2XbMR6US8khz2yNkqtgx6adGbxi2YpyPTtC2ubYMqOz\n9D8Ith+jQp/Gdbmmkcx4Sca1qfg8gZ/S1CmHLl/1EmAuSA1nm+qFYzTwT7TU\n37iGW8LSPQ1QoDCiJtKHxQAz1SqvjVb4F5CFRlsbc7YXVVi04eRx0u/iRtGh\nWUF7YcYI515aa9JPITnsJiYtEiWOHKHXkvtWw250XRE96xnyZ6yjFTvtfQJ0\nXyPsa28ST+seLknvP12wtF+7UUtu/cEfpUywV+kzxM6CewHrLTto/Drv6dmL\nGwk9UoQvmre9TzyOom5dI88QUFCJEAEJddKoaKg0HgIgWSeKTqo1v0B2Paas\nRn6uTpruQnY3o45/HujLKnYkH8pgy43QxBcx9jm2EHE+Oh3QkgMkA0ztriJn\nrwfpTy8sD49M9RQKPXXowx0PCBElisfMUDlhTukCPMjHpbLCwf/Sgth0VBRy\n9QQznJdrYQlUa+TJOVSiOp536wNvJxQMEgvQ1nPI9Hu/RqZGTIeI5n44i2T3\nYfMbO7xkbr1BMQ+lFzcDY8h5tJTuQOfSfci/6st8hV5R/w+EZLtizYF/Mx3W\narte\r\n=rSf8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"41a7bf4b7365bd628b8756811d1334f877413a4a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190116_1547660366645_0.5346270881821171","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190117":{"name":"typescript","version":"3.3.0-dev.20190117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5fd2cc2fc29cf6f18bf9f5e5b9e198417f04473b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190117.tgz","fileCount":78,"integrity":"sha512-Hziz2ZbDNZnwcv1105AJmUlQOXCF5LfIFjaAUP/QaN4101UaZP2y6q3J7rwezG8WpWPTBnXLqGKNb86U7oaBBg==","signatures":[{"sig":"MEUCIDbbUWV2bNC2WqGUBTcIRkRFEprDs+E6nYXhyHJlFRN2AiEA01htCXSWYGEW4m8yKdXhGPUJYhNQDXHjqijSQ6eKl4U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42792740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQCuICRA9TVsSAnZWagAAZToP/Aql0xcjIpobTpobYw6M\ngoKpdp0OIw+5vlhxSd6KSv5bHc3u5bCsSIS+5MlfFr9enmGgRJV4AG11Qqiz\nAFZyXzgD4J9A6PjUZ5077Dh9vokt93unvg4TGx9nX6YNOzqIbaV8J4Dr7K5o\ntA8sQ6r29rZX4275jpjLCLMMGAL8vStL8RA0rZbbyjQAlMuYOIJxj2ocMbzn\npH1MJlfNBHrHi1foFsTuoYC8t+FKT2Cw0cXp4TRphr57EMOdplZOTKNJSt9C\nfBXlqpMDbyjZf+5f0/pueQb9ivx/mwZxsge5jbSisrTXSjgN1X8JDjmVWubx\nHvYIuwTUlqpVzqnS9rVl4PAbu558k10arKGz58+fRXVBOWXgpBD8Tcebvm7S\nYoLiS3Xz6KuTGqkbRpcQu/YMljnx3ay/sQ/VZLdT3OANgLRyil92qlTbMUd+\nKnmbd1/8J0rI19Dp9W6NMfafCzTZpd0Qd4Fn7e2TaroH0YRIv+niMDQLSbUL\n6MiQyqkXgx9GwbC/DbQ8bdRnmnC7lMNpStVdJ03DmZofiYWwFJ3gtekTOien\nReNnNGua4n1hXW6JL1QedoOJHv66nnz58mgjXlDdbINd1NtP+0of7OfOcXwX\nn+W2FWB8PNvBYl5t640R/sBzf8cWwraMUCVaUHjXWld1DIErO70hngAKIrYQ\nGKDv\r\n=gdUr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a9c5a0472f83958f4a70f4ce66cc299b4b2c332c","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190117_1547709319680_0.6730075942851879","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"typescript","version":"3.2.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.2.4","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c585cb952912263d915b462726ce244ba510ef3d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.2.4.tgz","fileCount":77,"integrity":"sha512-0RNDbSdEokBeEAkgNbxJ+BLwSManFy9TeXz8uW+48j/xhEXv1ePME60olyzw2XzUqUBNAYFeJadIqAgNqIACwg==","signatures":[{"sig":"MEUCIQDGr7PWClH9NGRbJ59VvgRLRQ1I4bSUVFQlV4Ls4soxpwIgNxyobl2KN/Jsar1Axu/EiG7w71q2CyJrFaJYXmG26zU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42538210,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQQJQCRA9TVsSAnZWagAAhtsP/iNpbS1fAZkqW8UT2Th/\nEZgGvq8bmUFNaC8KtE+M25U7mdeWLUC6CW5giHN0JUTC783J1sYBKLctQs8k\nPGHniDTfKFlI5YCcbyejciYdFNrhsSkdVx4G2oXZyGjc2hK+N1DjDTGNUb53\nELA3z0YaOKE2Gh0o1WO+lxstqAgOvSHPXay8SGRdatoMHc6zp9wLsy8cVJ/e\n4csbIt6ykYS2E6McfawBnsH6lkMlp43gVZYzEGtzNqDoQCpNkyZUKnBSQXK5\nOMQdgQ/G90WcpX0B02eX039+iyi9+hW3m+mGj768XpI+1IhlfeKgpunhGfRV\nKAzGtIKgBvy6x5HtKbQgvh4xH+3qkh7dPeJ26tSxLU0MqVgVuNUjhMvLrc9T\ncTD2eK6lvuj82Xhxv8RgZnslLf24x7r/QrUt1A8OFL3IYiur/4o4WbWBkEFj\nozsCOg9Iq37IdRAHoU0wqJDLipTELBdP6l6YuGZRoje5hmfZneTT28tz7wEH\no1Yvb1W8J9T14Hmoiu5tyPCzaT38TQijkcdAls2DGM47tFLGMyrSsme63U0B\nmXg1wVNez5ODjj2/Je8zJ7esQXFNFNxnl6EdAmKpbpzTSUZpO9Ser35rZVoL\nIedltjbimerkbxELYPJTCWCgW6iCs3Ff4HdB7T1b37EM23WlaB3c2DqfT8kL\nZtWK\r\n=EeuD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e7a0f7e8a9b84b0d76200cc673954497a81934d6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.2.4_1547764303975_0.11890016694584205","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190118":{"name":"typescript","version":"3.3.0-dev.20190118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e188c10d2ddda86f74c502a4c5da8aed07d2ae4b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190118.tgz","fileCount":78,"integrity":"sha512-zdrQGtKgXiOA6s2WQaGmuc6ck1HqRBUnYoLvNAg/sfvltFHyCZKYMbNhgdXmsNh1Vs549akqwsIzjr1LeSAb1g==","signatures":[{"sig":"MEQCIAStrA+HiB/nncqxStCx+V8PJeQybcPWAJnBDpSegRM6AiBU13he5KgYyHN1we0RmZo59bkeWFVinyWRqOEBOoSFUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42886389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQXzGCRA9TVsSAnZWagAA4ekP/RYURv56EiheawTef6Nx\nDYIUcSdomwEjAzU971/bZrpkzGChN9fesGtRfAZWUMb4IqNxv6gb3C0ndGNb\nDf2aunRgFppkWmyNI4BHu56ppgLa7hla1H5PKovOXJyUfK3mD95vQIv4zYM+\nXKmeYLdGYPYfdpCLnvDR4dRfm7QfjMNLiaYSv8DCQ2nbfA4EtmHLPDtf6FjQ\nPaqDXR6YspCPgy0lLLp3GP113eAKejQ9OkCtffI4BMH0Ak88okqtW5MLfasV\ncZCrXJ6OSdJMeMVGj4Iq8wrwwZOJDXKAkOA/XlXTp9UdJPaLvNrK4JixttVS\nrjfWYwMoXlXGUPFOJf1GJXNYRiuddjn3B0/rHoEUaYung4nlQ3NX2/8ABKyL\nA/0zlpm1c3Ak+0rxNNs0jK/kYZFk+NYzhOypO1OmFI95uI1QY61Yl57NmuAc\nO2z0EDUVCRUbmkJka0cJFKgr87rv+1SbX8dXobn7jtLwqABauk6R3mUtxxDe\nbifzHV/UNLuWXo8f/a5yprVYcpr0Yzwtqo7wP1QfdtA9SzgMfIgYOljKndB7\nqFjmL0gFMtWojhOHY4mIAV0Gz04kv3sO+4/UTXjbGTpVpNRj55yDJc5OP6Da\nDRKlNI0V7q7y2pIBgK5rvzcqcXuy2W/Rgxtw/oCbsMLprR+WqtyBI8Pfmttt\nMgW6\r\n=iVwQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b317334c2a286daa1cfcfdc0a850693cc04376e6","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190118_1547795653686_0.8036781153309649","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190119":{"name":"typescript","version":"3.3.0-dev.20190119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190119","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ea338e9ddf023a67fe1c244e51321933a1080203","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190119.tgz","fileCount":78,"integrity":"sha512-idvKUbbKtDznX5dUsS9HuamKPpI4UrGkhjGFcDBeFEBxjQuZ9bSFtIiutAoh197PoWrzksqVRoRXMzt3VpiK6Q==","signatures":[{"sig":"MEUCIDpFAuiy44ebTV8HbKCMTz+gRkD90O5uQ0ZrgD7CY91tAiEAoCh7aIDB/U8KGQMQg/VfBafyjhr18JtKkRI8GqWe35E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42890788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQs5WCRA9TVsSAnZWagAABgoP/2FwMC7XANAzOpc49GY5\noyDBnsXiUfHPd83qHWXIJskpIwBNQi22sw7MJN7fBrRbDa4PTR0Qp3y4tzEr\n+kW6GmEQX0vAq1XFBe4xyKnQ+EfME+GGkTzGCXxm7IhzrvO4JDRvPLb9bT6q\nox+HVVuFuvAfc7Obx+h1sOgZzJGmH83guc7oa/qrUawwk/WEvx3F5zWcXEmv\n2ZotpyA2JZfIykmHeoButLlEVrRYAV3KpldZcjUa4ClRnf6OfKPwG0IEem0n\nRZAchzpjlvAs7hae55oiNBsKhwjC/lI4tVokTJyYqQevjCjbwp92ozmDzqDr\nwcUPKjY2H4grbuk3qDtkM3Fx83L1K5Xer/RMtDpM1/xBTP3HGwXKf3HpsxMP\n+X6/ezymsjxH9Uo6osxiIrsDwXQLeTcKf5UeMYKH4TmrHsZZLnIomNTI3/Vc\nsfIvD4djAe1wtzoKtaOes/NPhs+QC1m2xbjTp8N80wn6lo8Ciz5vcU+JDeTv\nbwDAo1Nf+G3tSOkGdkI9sNRYbii4aYCes2qTWbrn83BXoKwaBUIJPm8SIF7P\nkH9zKeGNRTtHaYryIT3ts+mbiFINYNb7xR4g8/X3pdByLnagqpVcF91DZ3nt\nqOuJAWy9uyyMpNJf8a4dIVpOa4SwtqvWzrtAPvUjlre5uejkoaEVBEUXLhgB\nkBBI\r\n=CEMT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3a2f6a3ed1a598a241e7c750873105f22e7a2463","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190119_1547882069909_0.5381866413415961","host":"s3://npm-registry-packages"}},"3.3.0-rc":{"name":"typescript","version":"3.3.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"700578b55868f99c79870c5611570663b3e21e44","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-rc.tgz","fileCount":78,"integrity":"sha512-C8FMc5pU+gFLm/rXKcwjHIeQnXJXfPNmONhKDSUWeVhyrnSqEI84EzoZylTqN0g6sJwdsn1W1AuG0RQRhfhSEA==","signatures":[{"sig":"MEUCIH1+8YCHrOIqNthk9SJyqyJYMvMdMrZn+F11xquWUiNmAiEA8yX1Kra8hwB2eu8QkAgzZMDH1GT0QTrHNN/KStJwfNQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42871675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcR5/RCRA9TVsSAnZWagAAsqAP/A8gmnBnyLRT2c+2Euzf\nPuOil4X10GfH6RHOpBZp48gHtGa/e68TiNkq7w0ZvCVHWqUAyQs2c5w77HJm\naSheSdx2/B0HWzqQE2LRs1KgQVEsP/VfFPHhRPFeXzX2KnQcYPblJZOl7jUu\nu0vPMwrrSZvTb0wkoWmO53TipSKYPBfkct4U+ybeY6wrbsBpKYLm2VfrLtMp\nTv+CJyVCDp5iTA6SxDzJqXBWKjOSVZJUwrw+GtTKsedElepzy2ruUWTFYazk\nepBPVu5Xz6gdftwQKynY+3JnRf10g9b7+5P5RMsu1iUjmXBd0nfXbcQF44QS\nBM0YvYr+9GlpqeKdKvnH22s+R9kLtzBMxtEv0c2orXDr3o+Pd5Ps8I9ABsvw\nkA7VhE5wQGrRRmpbdZk7CuERX6aOTPuDFpV6GaPGKBqagtrOveb8PU5hnGT0\nXFagNCNvwx+pKgO3OFVcAByKtUn0POyW4Y0q3KsQOB6++dEymEAj7Z0OOdW8\nc0Jywg7awWbaX32aOFd6PN0R6hygmuWWc1c5usXmgAafu/lxZNMXGGHRnVVa\nKvSNi4lbLNyBDyGw8EJ1UmUyEcxbisOnkVfTVjS7q04WGOndX0wQK8GnTWjY\nv9/L7bxw02QFy5YQHw0wITD9GNgmcllgA5NXdVuWdpMIM6cFcVlGzXO3Pj9L\nIAD/\r\n=pqvN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"648a795ecaa5bb3c108923cc2be3d3b57e179031","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"11.7.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-rc_1548197840476_0.3915254248748634","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190123":{"name":"typescript","version":"3.3.0-dev.20190123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0daa314a7610128de957759774bd2344d668bd19","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190123.tgz","fileCount":78,"integrity":"sha512-LAVA50ZMAlLw81mFgmx6Zlwj69/m4TBapthpAVyCpUQq46/0e8bT7qeKhItDwhDRZgo8DrsvIoiZYhyH/9KU7w==","signatures":[{"sig":"MEQCIFnsSKuIbNXRUecyK1MCXp2aSyFcO4e+/9JhcN60v7rOAiAUJ0DDv6TMAIzGjdfYsp3UbTEaVaWoHW0M1dIZktEcgg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42891050,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSBQ2CRA9TVsSAnZWagAAJA0P/1itH11GjoQ4iPx8Kg8X\nzV3wqVDDR3MLv6RNWcR1bL9KdHBYtlLbR7OhQCtwEn4zx8ddKLlrI/3ehw7a\n8TOclQxQAZ4fFfE38HlOo8np7xssPUeVKtR6u2uXanYc7/iuusq1BM7iGgkU\ndN81l6w8fS/Ol08G0vRO4disMT9jmjO9Ztvf6j8o+4tLi4O6uXy/wLzCxXhz\n2x6ubGNnv51sxR3Yah6s5QKy374VXxesVyNaUC+5/OE1c+tToBCd1NlWclw8\nRb6X9bOKTsXFVH4YkY+aIwtx0mvkLWitx3ulk9IQOnyDXeh6DCLVhZqdKdgT\nMLyqr643otiq0DbWoPMC1qw1b9XBrdUGSbOcqI7sjPDTfwFlL4a0UU6lOcgs\n9nVjUB7pX7fCI3ra077/8maAG/02v26ahVvCBlkk530H8RkzKlLP3e1aAZBB\nNU0ikQoZV+yt9Otsqbiim+YnlfdarRIqH7ndC+r8xOZ/nADJDdxn40t1mMtJ\nef5+a2broO/xZs8l9QEAKR6Nndtq25aQJvNd6VshhegbL0Xtr5SlROuTyixW\nmY4xy1KZSwPqVoVN8cTrGqPbqxtOa2X8f7iBpNXW22VilHjoMkUG+jYDfYma\nMip9GrZWs1RQ3cs2rrUqrp/R4816WLMdPGxbsD5nu/PDrVgZet62g6Iaqd7N\n+3fs\r\n=TxZ0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c2e74ae96eadbe09c997e2ea4c9b1d564162ee00","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190123_1548227636982_0.15982953072094142","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190124":{"name":"typescript","version":"3.3.0-dev.20190124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190124","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2fa7d2af9c9573205fdb95d23bd67d1c4c0ff4ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190124.tgz","fileCount":78,"integrity":"sha512-wmplg+889JQlLgVfCfL2eyGF6T2aHZ6F+8Xt6idd5Kl/oI6q0oTuMVM0RI1Wc+dtqS/f5kfH1VQKGvDAIL8OJw==","signatures":[{"sig":"MEQCIFmirZSLWt7y9YY57qXHPyYnwRiX4ne0gXcbXCfU2gj6AiASHIdelOQp67DCK84OBqDpCLNDNsdQch9lqXT9A1Andg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42918981,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSWXVCRA9TVsSAnZWagAACLoP/0htcy2YLO2XCAWD1q4b\nDDcNx5sY/Y6yds1TWWbtgrUCwpCUXJL0W0SrW5o46BXMS73hsfltD2Lxi+lt\nG5Cx6S75syoxqvJCrW4/rf13u3l2dJLjjgk2DPdfelmikiSE2YtRtMaUkRmz\nkkA0CQCYndm9YIqlFzn5iPUxIo3SQIuH5iEbnFyk4P6aRQ+SUahl3mu22To6\nwgJ5g5C0lxoK53kdrBl6Wsfha4nZ4DrbOypVn4oDQAhn61KvFssa0FpVDoAl\nZt/8RbEs4ZXS+IfXYglGtQ8NP3lAunDgI2kCXY/rpIvJxp3GfMGDNN4Pw8nF\nMjBPwStAMKnre3n7ycC4md12Rv3GnXtXzB7ff0p8jdNkYcViHqiVllyWw3/n\ndi2bJIKQPH3ayktbVO6dhmn2nB3jaIAeTbE0zK5IhXNz2j3zfKCGIGEe6TXS\nGg0wfpHS7ldVculNEifwmVx3ZgOrcyD7N+IqIhau5ERDyo+Umv20atv3GiHJ\nkn2TKiUlKQMggVaTtmW3ekavRHusXTMETWFK4TY8Lpd9D5QwQVcQ7tm1gFbC\nj0rlSD5sZrMy0EzN/y6/UHOvygRBGGZC9/NW/Ui3otQvXZV4ch9G0Vqh7onj\nltb1m4v6Ah7DOiS52WvEkxd35y8kQySA8FFYv/pWlom2BZQN66SasVxjuTWp\nShvN\r\n=4s+o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2f6c65e691f16351cfbfc183e002bb7a1bf35ae1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190124_1548314068030_0.6234069037572119","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190125":{"name":"typescript","version":"3.3.0-dev.20190125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"85610e1112c6c12b2f9f5cdd07bb222d647b7cba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190125.tgz","fileCount":77,"integrity":"sha512-wO4jgc8YfHItqulMY2O32avuBqxqJ4rCftIml1EHUYoMF3NkKcLSJ4qaWUwyLfFmyTJki+Eja4LlIzFCmIKL7A==","signatures":[{"sig":"MEUCIQDhneTLzFC+RFk0sEf4yPHRImb8DhAlgUT5J6Rzlm/JiwIgQP3BdVS+kXAAxwhaSlG2uNm+wr9kT8G9nxR9EV1GCb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42939985,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcSrdhCRA9TVsSAnZWagAAbTgQAKBlzpJbEft+aBkoTlZY\nBKO3nPtfZpcuFCBSdY37v0xD5tou3ChI26N0lisj0z3Qw5nn7MxPxkAbsSmC\nCu+z6yveABu2Q2CyesOJkCovvzZl3oY0fU0oN3HfE4jfy4fRjrzHkDW8/W3p\n5jqBPoXjWqqcZoORWwuGLk9ROKqQeSsvSb4uvm1k8+beAPovILfYn7xelnBr\nl+ME2ZoCisg3zZ9bD/LwAFXIGzn19l+oMBQkKJ2/ixYhgDDjnTHDbOkuZkS+\nRDKfQihi0r7cRuw+3gMC0xi+LspVM5gOYp/e8GkRZNe8IszCNdQ+uzZJT5oN\nY8ceGQj2+bO6MCHm+P2GFloyqNxKVyhd7XwEIRoEo+UwEqkdvQ5En+Kyd6ZJ\nPS1ugutECT32RMPGD+whJsAg9AzznbVhO1o5AkGUpEF3AruUrX/yyFJ7br2A\no+LOcpo2JCpednZGajqZuOBdLGqkDoHyCqLw9lITGmcssWHJrew6XIsNRHmG\nZ2UIxaGcze8jLuNQLz+66xGQNXJH0tlokl5jg+xzLA4lqfAXU7Zap1PoNT70\nJFI9H/fMg5LZtx6u3bapllxPvgbq9C/qjuQIBOAuGcXuvldApj2xracaQNCo\n2C0cGwlhU7KdiC1a5d2E/t9gL/aw5UEBg/VvVfh+D4T1kzSy5RwzcrzJx/3p\nrjrY\r\n=5XjF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d16cf761ba49d9e0579a0fe3f90fd5a7f52d0c44","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190125_1548400480279_0.9525207995638809","host":"s3://npm-registry-packages"}},"3.3.0-dev.20190126":{"name":"typescript","version":"3.3.0-dev.20190126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.0-dev.20190126","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7f34f10994e768905c827bbebe7b9de9366cfcab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.0-dev.20190126.tgz","fileCount":77,"integrity":"sha512-wx5ZIi0Dn61N/H+TDLQIyG+DPvtk46t/lHeKmu2jwk5sW7GIPjVRPUJ5AR9ohdSkV0pEUshZolWSABz5f1pTAA==","signatures":[{"sig":"MEUCIFFV3JfB5o5NHVdiH5/nljHj48SsmXn8o5WhG5WhGCgCAiEAhtk2+1b6g/8iadyekaXUM5/N6hSUqTk8GQpiBO/+D3A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42946342,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTAikCRA9TVsSAnZWagAAcuEP/jsTz1iqTiRwjIv0UHMs\nQKlS1qIcuY2/L2hWSN1QQkytzgQRp+rZ6coCLg9XYsgwMcpwDlKM9AycIvsV\n8aCrmK+TzrLgRCGhheB9RdASb5M4K4ayMRatG7N6pUGs7S3Vp4hZLf2VcSV3\nbnuz+KyQBNI+vI8oJDrZt7aItvpAwzm/aYjt5yxlOF2OnRrXD4ui8njBxzaS\n+XD2+k3r2Uf4eGzml/l7CJ7U0jyUPZ0dL+PdugQwJSMJiQ9He5/Ay74lBqrW\nx6YdqCJxRsDVdk+yjRMj+8jrKr6mhB/L6n2JjD0IJzgVZGkjGBsfrw47WdHI\n3ThED8/uc+20OnbgcKk2hBAr+eI/PwsguAj9o8+kWBbiwp2inpyKBJkMMoM3\nygVHi35TXc+U6uUUf++OkeT0hyLDix4vvW7mS2btUor76q9acd6Cy43iXrwc\nmFIk63Vg84Xoz5bNljGtKTwYNjPc5Q6cCC+xBMMfWRtYIfRJzo+Fp5daCs4o\nwbCmANDyHCv+g9Pkvdhdu2m6sI4LGiGdC4g/eojE6U0Oyb7G+RuGBHlISN6Z\n3aC2z6nj3Jz5VReICB0ZBoAG+CoOkZoqzEFvwIqmCg71DbhD95+xPcW9y/vB\nDBJx9rqsmJrMUczliZCKOwtDUyx/LM8zu1h31nQDo+8CPUd+QagIW3TxArSG\nJHef\r\n=L7xG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fa74cef81e488c8e5bf790020620f0226118cb58","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.0-dev.20190126_1548486818913_0.7538407751610388","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190129":{"name":"typescript","version":"3.4.0-dev.20190129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190129","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6e830c290e3edfb0efd285f4390915ee17037b0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190129.tgz","fileCount":77,"integrity":"sha512-g+SKJolDQQevfYOlDBCe+tjpN62m+9wos3+ZBdSMSbGoOTWeLevU/ZTIBzcLm/MMjOxYoXDzzYh/2mXxtnC/eA==","signatures":[{"sig":"MEYCIQDEfBmXJz2MtkgaL8GwEbXBkXyLTfIVWkz0q/rl5OP4NgIhANpwwANBPXlyxMWWxVOCBPOaJdUHY9npPAwrXtpUx30G","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42946070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcT/0bCRA9TVsSAnZWagAAChQP/2iFXUx+t2FlcD4TxNCj\n7MCEPMRVY0ncClSjRNUJjJW5S4wsa3HcmBg6OZysTw8SHCxEX8DEGNzvMgUf\nCwfvsjpDsTy7fAmsuwV417Hz/5PFGtsWN1DXkvFR8v+JqPkGrzdNSrQMDoq4\nqXKnK0BuPefjbfvtZrMdmAlABm0hVc7in8Tv7P0j4h3aERGjYqzzY3JlJ4QH\ngRARGxoaJ4JBvIQaXKTEqEypD4Q0jMp9da1tjAOsOUJQWB9ElB5OIWsX+ljr\nAFxC1+MdAJhUUZM1SEHzPZCg00Y9T93gyIySUZiZNJkAgTp3L3OdHI+jNwFn\nEFLtpMdsqzjlAk3vOR++tThlUxsPVU7smnGrmYMhJrPXwgbP/yK8ZW0qJizZ\ntyzGggUaf1gQxKy0zOo76+elICfOybYZpIyA/SGg6qKllJpjsaavinHb8F/m\nD/kaEKU9LHePZ9XGwum0Ora13+yzQf5xj0gHeiHQc+4ANc21F1LvTzYWgfIy\nUuUVn9H5/HE5c0vWOWUjHm7WcRbzYF9mU9Unh4K0WUGzH0bE7hPihTZ7s/Wr\nz4uu5Ba+tgV4mZQHUDGGjfoIUb7uXx273Km5geyo6vHpm627JMj/uQVMe4pL\ntA39Dq59AaGW9XzbZXSYRQTgja+xlo9E8/agnPpFfDd1zYwV5GCrro4UePcm\nQjMT\r\n=esTv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e96310790fac5416fa3623653e93ec4e7b37edf1","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190129_1548746010044_0.2774481548593526","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190130":{"name":"typescript","version":"3.4.0-dev.20190130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d631b48bf819b8bb7543fd7d7acbcc3ea3970197","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190130.tgz","fileCount":77,"integrity":"sha512-wl3HQGnXZbp2TJMT2cwSle8MnfR48MILO40ACyIrxzmrcN9JQd9B4gjvKJXWQmjWVeES1iHMjFxX6b6Ls3nc/w==","signatures":[{"sig":"MEYCIQC5ry4obUu/1oK/kL1YnalUO8sScK4x5kKj6K3TMcQzOAIhAMVGHwTWSbXH7+BhW86k4H1h/LwMtncbsC3nOGpVoviA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42974060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUU7CCRA9TVsSAnZWagAAPQMP/0j9E/qZz5MQCGrNbpOk\n5cjatswpoPDwXa/HtP9Op5Nij9E6cImr9VR0HYySL7wQ5yRHc8G/27d8WHSn\nJU4UinrnbEAg1vfXYEihj80haLzFT2SJiSdPeWIJdhoHniEYtBrv2saqWGo3\nVh6yio378jQKcdM6dzHZMy2w1STPvbZgr7AfJ7SO/2pXQunDovNM1XIuhHgy\n6SllAyWGhW0xc1K20PBOv78etFTzlmGwiON60gCls1HB+zwOvd/zj3eEm0WX\ne2+wU4F5ylUIF71/yytiVsR6qhq674IBmETNVbcG/PpPsxgnGQ4m1NMzCcUb\n+z0aooNQkarPJo6vb9Nouh7NRx6Jc0+1P0n4sfkBvNzyDXEAU7OnOcGJ50m7\nx6LT21uhJL8cXmV7RTZC8E+Ve+d09lhoEkqeYodbk64r7fMCN1g8IYdQHqRp\nKwof4tfM1nz+rVto9+6wsKPiAH+5h6pnm8eyZera+htugvcXsjpz9poYECjv\nnqH4qgFvQWuXq05QLHmyTumgKDWOtQPghCgYSK69pNnjST2ZywOKbSM3eVxR\nrieDt4tX5ClLsieLmmWnUgN1MRTQGhBKfjFXAc/b8qyf6oj+a9z0Z55A7df7\nG+aRpPVapCTTOsU0NgngIixC21yUi5PhznXtTM7BorCS7OOYSb+BlA7GfNWI\nA1e3\r\n=+H0n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ae6c9cd051ba39c5c4fa075ddb25303c22bb04ac","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190130_1548832449876_0.17082174793817861","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190131":{"name":"typescript","version":"3.4.0-dev.20190131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190131","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"13bd3720e3e32f817bf2a2863201fcca907c19e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190131.tgz","fileCount":77,"integrity":"sha512-Jdqgexx4yP7DVGNvv6c1DdeiqFE3pCYY10Hq0HdyTgg+xCSr6pnJZ4u47ioM+/FyO6aww5881MOc+1nTAoLksA==","signatures":[{"sig":"MEMCHz7X6b8bRz/9dtPosOwjVRPPC6tv/cdIFwH313WmrB4CIH3s4QndBLdEoRZNZNuJh6FKfz0v01yFxpsFvRby6wNL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42996804,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUqAqCRA9TVsSAnZWagAA1WoQAIYrzmmzNyDmYjv3u/m8\nm1T99KKe+ibPhucxqGRXek9BM/WdNFTgjbxQ+M1gFmoYeZKvpf6BS0Ue+3Iq\nhmbNOHp7294fIaCaH7wOf4+/HIVomr2U8PKZbOIySVo1z4rxOUIBrYfwe2vV\ntYW0PgTZzum1Dm+M1Ky8n1INvL9QLiIQhqPfZ3S/AsT4XpjuE+/Dccf6rCKy\nArs5Oi+6KeoJaM9HTFuxK5YttAyQahATDBczmXS88IE904ghyKxT6e7wwdcG\no7H3wJy3c2ujetlMX7lvt0VZIYtIyrHrus762yJ6kO+52cH8//gHCITZZzYO\nLugXO8wCPrNYzopp0Drlhp1ZwnRlQi/olrOyrITmRHcXbOrqcU7v6+fgJEUO\niOy+cOEa9kgNr/R0VwQoA9tIylvu5G+LrftN8RgWgDzbK73DbYuOTg1L5VlU\nIEcA6QhkUmh6NCQJVMAIVKivS3qnzTTQF8GLjogfMdZ9+ix7+D3+fBabe6qO\nxl/pRNqfPz3wvWSj8G+kASaEvGpz/IhP8LTztWyla7gCAdp1C/dNLfrlGV0X\ndrfEF1Pgcf+YJ3N+4Buw2XSX1f+QtN0KphfqoGWBMqd0RR7YJOBE5RhdRWdR\nnQUxwLxFm7aNfE/9qMgLLuncQBbpQxEesGeftQsGpOCblT8v0xjDjjhTPaU2\nWEEs\r\n=jTAA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"aad609c74ff77e50f26d5b52aa61ad36b561bb05","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190131_1548918824926_0.9539269626314943","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"typescript","version":"3.3.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6de14e1db4b8a006ac535e482c8ba018c55f750b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.1.tgz","fileCount":77,"integrity":"sha512-cTmIDFW7O0IHbn1DPYjkiebHxwtCMU+eTy30ZtJNBPF9j2O1ITu5XH2YnBeVRKWHqF+3JQwWJv0Q0aUgX8W7IA==","signatures":[{"sig":"MEYCIQCeJtjyN+YFomusLjW7uCs8frENnTNLh3Fw82ddNp6z7wIhAOtqdhNfs8dJFPTprBetCy35djVMmF/f53Yqp1yaOFd9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42946337,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcU1MRCRA9TVsSAnZWagAAHDYP/1zZLcDM7gFgkcRzLPNZ\n17mTJFtW61vlCH83c3PjczIlN23EmLo2tFCKnssKxPrzHTcjxk5pd43t86f1\nWphXZEr+YPT52EZ1eySaZNQ5pxn11/a/VLjktFU3Ey392UMypchsJk6T5eNJ\n9xcvfWafzd8TgJkgb+gUqBtjUOQ+/+hWVa7oV8ey0qqaxHNcsDFI1GDry4vO\n42NJ6kevE9MoG2ktJPoUWgY+EcMFw+/UTPGC/fjx0DIuMu4ulLm1BaAU7WbX\neSgrcZWhCJsK+uhJptF+BgR3J3Ze3v2kSMdTaPQnMxx3tVQJfq1REyDVVrv3\nBSc0UYwicncIMk418kacNFVySduEwKqF2L1twT5om0Z+kbJ0cF2Q+doSq0bE\nM6HMbWKZMgk3IAjVz7pC8AoDRT2n4jqwvQNxcNEuzwMT0Irdr8fPWoITnt+L\nVgh91xiCiRZZXtUPXw9XNFck+S+ApFnMpfPQhP7S9n12NR8ySHRCen8bicDT\nanEtr97L1UTN6iVywe0CZBkL1gM/aSvpaTOpZM/+NiISgc7lfKzobXIH63/u\nltolc8ouvWPy2F3F0z9OAu4r16dhLOFx8ZPhd4m/16r1pFAwDyTD07ANPJGP\nEzMKWlEghGA7VGdMQaNQPpbAeKJkfZRLjGHaiHVdpTEtLkI4xEikXfGQNqRa\nRGuY\r\n=7D51\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"76c94c5c1e16bf4f59069f5c9cb3cf4d71c78475","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.1_1548964624356_0.8715992132452528","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190201":{"name":"typescript","version":"3.4.0-dev.20190201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"46de80d93b709da2141a9ba74efdf14d0a97a718","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190201.tgz","fileCount":77,"integrity":"sha512-R9yakVfmjaM1NrWY4fcnChaPSbFTcbxeY1pzkT5+B9J3KrMTV5UyXvKj2n+tCW0aATbtlrvUA/vrhMZUu2aYog==","signatures":[{"sig":"MEUCIG3EAHo9gHBKMeqC+EP3rSq++dacu6gOpJ54//DO67RdAiEA3kP62h3/8DbeWTIlPqgr8WDjbUfJY+t3R4Ocnpi9PMU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43007112,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcU/GfCRA9TVsSAnZWagAAvEoQAIU/HehMnRDLnEqVxKqe\n4G7YIKGova6K6q/5zNhqyWTpqljTCQ+lS3XXP9+MJsKwoSVUlKMlPGOHgU3Z\nzjtPVm3Hi/RI5q8mAJRvrb+FdlFjJXVXkXGKW1L4rr+bZlk/zpxPaFCCMrBm\n9+WhXXxeom2v103upfMwGkODDwOP6OhwE6NC2lrTxMp/gD3Zl1yB36zlAVYI\nH/YTqMsftEA8l4Im9s8V7cPPnb3xv4A8uCiXbhTtscB0+D7mIEBKxDKaOSVA\nmASBK/bqcMstgjVycfG0LSs7B291fgdsDxcYQkizHhrSmfSq3AXpuSAyWrcu\n0fEpFKro0gNVIF4zKE2GmYNfSf0CGwHaTzRxGYE7yaw/iJJ3r88shzlqGKjA\nBxEnfXRETP1g89tZcLoP7/ZNupAhFMxaDCldJraCFWUqD6b9oG8HGj/Ddgor\nXGe++gIU6nzFPpxddKSkssMKW80RilJzMBD5xRrU7G2GRS4xVEV2vSIkHyXI\n76TUyvwXuL4dIDi+ZBiFX8hbrNMjCwtvidD0rvqkkF33ZoX1KF+YDW9Zdcrc\nucs/cZebLRg2OtWzdZoKKcaB5ea//lW+gy+02GD+vNCMqeiDMPsNHcO9aPbT\nMCkcXsMLUzHbwmgdHMt6ByXhxrpaDbBHmLbQsw1PkUBf3/KpqZWUgRzV5UkA\n/sVC\r\n=Ps1J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d2909a14aac82a2eab469f578bc3cabb866df77a","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.14.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190201_1549005214576_0.054659193279600116","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190202":{"name":"typescript","version":"3.4.0-dev.20190202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190202","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a1f41f722ee2d77c01411d67de042be32ea7af93","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190202.tgz","fileCount":77,"integrity":"sha512-/9NIR5B2Dddc+mg8Re+A7w7nuuijafrDt6b2CHNjUdKRWaET1kPBjydmS/xTtCqcnHNotINws2BuV6ouac5zMw==","signatures":[{"sig":"MEQCIETQOh7XbnHyihLmD+HuBqm6yvqQbUcuafYRwqib2RYmAiALQwXRx+bGoGrH+kFzG4OO2L87dNY0XiosniRnZ36k7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43028162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVUNTCRA9TVsSAnZWagAAcrgQAI6mlRYuLnwYb2sdWZBh\nLQ0QNAh9q1MWFPfkixER8jRT7BHORxA8XBzRbXW+KBvzY5aBZRdq55PGIgdD\niwosz1mkjIaIrbp5OhqtRGapK1KnfxOxfTu8F++mzVtDsFyAWkk9+hWfqa5f\nK3lcBJGVpKRE0pljOxKTPJnc9XG67b66dFPwORacls44uSkIXMmDm7sxIyeR\ng3+ydDGsXpgJMgCfIwjzxMk2XDCfUOh2J7T47/dr/DiVO3EyJbn+RALphBOU\nIZw7fdkzyB0F7A44CvDAMwS33pafa+wFg9mYZi5z+8SVDStFTSnT6n1c7BNW\nsFm46YSyWLfRAT3RDIqw4fI5kWRN4XH2hr4/5vj9jB9fP6hAUHnqXjo9HN46\nTM60lBDu61cjG66Dz53MTLTEOHALJHgsuVqQHl+HMetDbxhSlCrkKaFc/vmO\n812LbD487LokkdFOsKevbsm+r+3h/7ugYw0lI3Ai8Z0HBnGUHyXVH+yrrMAv\nJdmaotV+9Rn5C+euQrc7lsOQJyRW6RAwpWoUxr+gJ4zlbYgwis5g5oW30IJ/\natCAyWBu1hMTnlAtUy4lmou+wjrwDzNYoF/PsYFlE+1EdrbQNIDDxpkF+SdK\nrRGr7e534FyDVPQcbo6eJjpaRcsPcoZLr/YJRYjX8pJb+djPvcqFRgFfGUe5\nDqyT\r\n=ROtk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5bcf251f8ae876ae3f4fb12d8b89412d162e23ed","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190202_1549091666042_0.6599483984999477","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190206":{"name":"typescript","version":"3.4.0-dev.20190206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"643b997a46152d708ead022d7aa6bfe8c0278706","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190206.tgz","fileCount":77,"integrity":"sha512-BTIrNeDlJlEy0hEmyLR6Dw7umjjgnCDgYpsBT+xVWfRsaybh7Q1tejjxVazhpQf4ev48ixGwWb0v1v/WMT5ITw==","signatures":[{"sig":"MEUCIDVVOF1+3jewhXXiwxgsNNSFy46mIrzYkTo4pOJ2E3plAiEA9nJH1lGnywPCJbUj1b2+iXVAx93AEPWsU8lZvZDm0uQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43144901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWolPCRA9TVsSAnZWagAAsA4P/0DfOBD5G4meqCX+2yBs\ns749RoDstl1fHbpXucepHEgZLUfmMkElkd4Tu8JJ4LAEVk/vZgGEVUnUwZEk\nVSLE1sFcZBbDCZfGnoHTJ3eng5p3fqnIMONFKSXPDTP16axXlebQ1SDruVF4\naEX6SFoJriOm750obrRwkYv4OOuqAWTYc5ffWMeAUM2Tx8qM8v1QdCRszj04\n37TO9+X1dIQtWirO93Foe/P/rPsi8Ca9GtneXW7fmZ6hVH+8xRTxlBG0T4oK\n02uFxgaw49MALvJ5IAaipDahsVQMjQHiQEMC/cdSMlOfH9ddzbr2LFD1lF8X\ndsHS2hj1wQitOq+n9tbiHYjCVikGco7M9u2LXpGxhwsRtPmUjIi0WC4ePA6R\n3mZ5yc6qocS75PpIuOaXgszdB2aqkuRaRrP8B5W39376yLEvpWc8hg+2A9XB\n5iOsAJIKoGWLU8FBoIOUR0jXwRFwk0UK0DoqBeMSOAIgyIqyg9iGns2CEHeS\nSdObVdkeTPxUijLgtS/ZEHaWhok2wadakA7QU9GhtVWvj5DhbClBNFGx9vEk\nM+HbzyIujDTLT/amgNXrP+EclmKp4a8CvgXOcjPNyxra3ahz1cdo4dOEidE6\nY7kwJZXZmJBBd52Bc/NOF/nG48EsIh+3DA3g41RQqOCWIIfNAZkAXC/hLCLm\npLsv\r\n=CqXJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4505eea92d6509ffea479128cb7e72706ae7f090","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190206_1549437262617_0.4221454934263502","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190207":{"name":"typescript","version":"3.4.0-dev.20190207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1bd0ca022a5717ca06fc53d0610f69429baa9ff0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190207.tgz","fileCount":77,"integrity":"sha512-PaAReHMjo1JkkmTuCg7yV3zDj2bTmFPQ6r80M0KTPVolTGy8n6ums0J8Saor731IQu7VdeobuFvaQj1wnH59pw==","signatures":[{"sig":"MEUCIQCyfrKMrEbEMIVTvVKTWZYYAGJ497ru+oBmH/4y8IYLGwIgVp9KFTILX9yi5QF4kU6YOn/jJJ1AjTFkoFnmpycHMPQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43153449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcW9sFCRA9TVsSAnZWagAAewMP/2xOZ0YbtctNkOXk37mr\nkj9udNJxvuak1cO7lpJr/+Qq4fINkoA62S/gHSOwANRMFs78CScRygECzb34\nfedXMz46TMStHrwnQjoUwcWXbf2NGJc2JQNfqzB7NpY4sFZ9ueQFpAMUBgRH\ni/Q+2MTX7G8I/i2ElQ7mZK46Mu8jkB9mTzDn33KblsYu8u/mcwIE9N5LIwaS\nTbBDbruSiAHwvbuaYp0E1w81Cmax7EEh9ioVH1Y1D9jp/s+UiP1B6gky4ruB\nrCuPLHHVmERJPzYHjd7ObIByEqv73tZwmfKVSUZhn6Pi+n2C4sZu86/3fO3K\nexsom+jq6vurnRWS2nTCvJx6uLfSffdDTu9w523Ev0OxzElbf8ZVpOSV/c3X\n0VPyJ8AbX+1KXls4IrCWzo1VApfToiSmCfyLROSnpSEKLg3CDqgI3vQNnjRx\n31x8bBy0r6vBk6edFW15zNzOSir8lRWLh8NyfzOfsYo8vmTIW8iPcmCcvsM7\nTE5/d0zhxTc6y+O14cMNbxU3wl2pqU+p1Oo5JXADa4yQucR0qKZfA0K2y61l\n7aukHLCcXmzlCFy5IG8fUVIevhZ9hmrI6XaiIWM2YU1x6jj/Q6w3PTne3bgU\n6Z0JqYVn6UXGze6G2GY04WESDpUmk982L3qrRl6nlZ9ofdCdnn9AU5oR9mSq\ntn4+\r\n=iNv0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8e5dcfbde50a3e4a597f292a35efc0baea1c21d0","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190207_1549523716398_0.34102635780020774","host":"s3://npm-registry-packages"}},"3.3.3":{"name":"typescript","version":"3.3.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f1657fc7daa27e1a8930758ace9ae8da31403221","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.3.tgz","fileCount":78,"integrity":"sha512-Y21Xqe54TBVp+VDSNbuDYdGw0BpoR/Q6wo/+35M8PAU0vipahnyduJWirxxdxjsAkS7hue53x2zp8gz7F05u0A==","signatures":[{"sig":"MEQCIHf559+7ExrhbCTpxvS29nSYMR5eF90qbXTy2RRtI2bhAiBCtWBeqe45itSMbnCzSgP73oh80g/h9VIH/OOXsfmbyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42953237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXIHBCRA9TVsSAnZWagAA+qAP/2MXbRQjCRA68e0JXVc/\n+PW1p380v+ib3w1plBiQ2Xt3bHnxXO9s49geSN4QDHl05xttD7mBBJIzdwPP\n1FsCEWoVUDIVbn5yjExsk7J9MN9378X4CHV0RxJBHbECu3+e0a3OaC1jDzAs\nhK8qZsZ8ZM6t5iVFuDy5z2xkQ/ulVClQrQjkT0TC4Owu16bd2cF5JADneRZA\n/jNBWNsxRr/BaLQOexOPY55fVJIwxh9ge1WF3kQL/73o2dMmp4fjWkg2J8VS\nADPy32UdS6W000ZkzYSPyTiuIWFqpwdhpD4cYTuYX4c78QxBe1HYvzHEz0Sk\ntn32bd1VxUvxiHX138GBAeiTewN+EcyiXdaBEcGIe22O2VqJc1NJPJG4Udt+\nkSp2Ma5/RPZV8NMjsdXUbEGWtECe20CZQw4v4yKnIZvB5ODfplMYbM/5a3CY\nhrFnYj0caE1ji15VCM5tC3/+KxpyoCyfrDZXO9gymwSPipN6KlmRZpg79Iz/\nSuQQAFonsHEtUcQsQp2j5AtiKUBZq+eLu1dYBy0M3Qs8scLTP91HS01kmknS\n/Qb2+gVzi52RoO8f+tdd7MPQKCITZ0uSCYwzcpxEJ5O6iJ1Hyl0iURxdahi4\nEw+BcEqGA7UHyJ2xIGoYzpGwt/7iYMwTKI11vre1oR2z2QkCCWzCJ8nxHPyS\nX0HG\r\n=F3At\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2312c09b8789123d9174bcb952e165415665534d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"11.7.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.3_1549566399890_0.542959248465902","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190208":{"name":"typescript","version":"3.4.0-dev.20190208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190208","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"72f27dec8efd931075acfa223a4b8b19861d93a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190208.tgz","fileCount":83,"integrity":"sha512-TBh1xn8tw/D3oxiJHMFJbA3ANVsTqUDz/whcFCKDflztbOVsncfmIsUOkJUU+R7BsRBzGEu+sHgCsUN+52/+lQ==","signatures":[{"sig":"MEUCIQC9RpRthHIB65OCbFrVAKTWn6Be/UmShr60HU9Jkbj1TgIgFW/cTFVtOZtnFG3N3aNI/x/4/J4XnhLwm19x4yBOXk8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43196393,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXSxbCRA9TVsSAnZWagAA/LQQAI1t92R4Jx9vDTuWchvO\nd3XxNgfZwWazQqvxymuH7b40B5ixhj6aUqTktqKyrfZyvby1QSv3KjneerGb\nsUAOyKXUzkDdvGtVAadL+8siGyKM8H5OYJ7UZsa700Vd37MLsRMPQspfO4zD\nrwrc1tCpPPwa6empiFW86gTZ7w5ZSH9WU+Wsin5Xrnl9N3lv9fUo++cvLV68\ngyXS/Ym10hvqhiEOh0EOsz1L6S+Xd4aVWQmDOO+7pxMw8Qz40OaqhKYxQNOi\nPuu5LC23WPWC4Dj4wkZpAGs/HFsW63F50bgFT6yn9bzVOn+sN2t6K7IXDURI\n6bj7PAS6FIl7/536/MDq+WCyYzDZTS1lB8ziE/djKiQqZKULDRjNZRAcqFxQ\nQ/MIZZ1jEoFcTxymwyCUq96lwITS/o/9PBrcYKCIJnfQI6IMxmuHT2pU+mAp\n9LA0zlZP0yDedzr4Mc2OjZ/Mf3dP2ZZ+qPbbAlP4lGrqnAPYZVDvkatMSrVm\ni2Th/+beVuM2mgG47GzddTCY03kjmTcdvpGlfZAv4NIO2zu2F1vZPY7A7UHB\nqmd1TPTgaacxn3RxY8oBKqcKLuW5NCAkqzFZsGfy4+w5OVcIGgonzkYu3QCe\nu8MKrs2ICkAlYHhy5ccVbrqiNGk9FvuIT2ZCani4QW3yxoIH8eUq1Vw8Ntdk\nlAk3\r\n=a6P+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f7c4fefeb62416c311077a699cc15beb211c25c9","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190208_1549610074332_0.28186654010258194","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190209":{"name":"typescript","version":"3.4.0-dev.20190209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190209","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a25b22726693f25ae689af867127286d6bd710f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190209.tgz","fileCount":83,"integrity":"sha512-7CnV0zp1W05jFzz/Ka+WVUPbPdG9eEXUCa8g2m7kFfDaJHsHaWCIBfux4G6Q/li0zmIG8OPEenoLdpXCmgkd1Q==","signatures":[{"sig":"MEUCIC7dFiptVgmSS7OGu6Pv3nht/wA+6n169QSrwJu/pJQIAiEAzJypwLNsE00b81ywMnSQmKnEE/moNZsEOZwrlyEy5dY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43196393,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcXn23CRA9TVsSAnZWagAALcoQAJFMEYvQzXQfuH24Gkg4\nfqrybxb5y0+HNV70hgY9E5NYsuPKHKdh9pG11Bk2EUaVgArT3ez5RtElprbK\nAKh7Pz89/eyfRhWifK5BUKXIb472m4+Kns493nSpj2O7fJYtLJyYnpBIsKoI\nGkogb553kZi6tGbEOpHbwAzjd7W8NYvk+WAKHiwKAGi69ZtHRltcg6EN7b20\nE0Dtb94eqW1RlSqp9dnNmsaZFzV5BtLFSrwoHcVO3p5saFHFnGINeVwKBDxU\nHjaGxs2CftIiNsBL4FvKikKNYrFSD/5gTFEtig/h5L7GdIJeFy43EAFxe0p1\nzTuU9eyWrhht7mWsjzvLGaWe3te+pNtmNMPuqWTSuhhbdKVRDdkdpJBa5UHo\nneSg74SijZSRYrNSZ5sC+Z/1+Qa1AccZkW8HKVLVlgMvoXyZFlpy03GqXlGB\nThALHi6l6ZmCbylIpdQDDYigLV8izSLCIp2ozneFhb/QlhF/BRDC7SuLHv99\naOfViphMnKyIFvZWjvg/p7oWuFvfqL2gaxWg+RwsVakAnoHG3TM2aXsoXUBj\ni5pDX8MMFEOpVPJWDFr7QKDrvbWheIr3T/p38Yt1FbQ6KCmu2yfYG/hQ/vQk\nGsi5T1UtFRR7RznAHR03u7Voqs7SGYmLCC3UbVqTjOrf+Pe+l/sp7p6BpMei\ntbLF\r\n=wO+3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"bbf559b9c7fd21b984d7cb538140c74e3d6a6b45","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190209_1549696437884_0.574189947496774","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190213":{"name":"typescript","version":"3.4.0-dev.20190213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0121f10ec72e0f670f143bf4227d0b3b6b0ab214","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190213.tgz","fileCount":83,"integrity":"sha512-B9gJZx/RDWhKtA7Ygv6RMbqc0nTaNHIkLP0TVIuuScZTaMuGNtIGVd3fWsRK9GDl4plGGDD+d4LZDddlty1N5w==","signatures":[{"sig":"MEYCIQC99V38FHae0RmGjLEDCfagdQtZgGhji0bRJyo3nmPc3wIhAPQtSuUdD2mnViElDkjbdDE9IhaMsKTfNv9NdbULsTxf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43194118,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcY8PrCRA9TVsSAnZWagAAYEkQAJrxGtAUSFgefUXl2q4w\neP2tKHn7yI3mYL3SNouRW2ftHLRsoyto0tvFO3S5Jy9mVzKWSuK/Y4ONVFKQ\na8GLdCV1vI/Yb5YVm5ld9an58LKD/Lf7LhwNkOJXG5MaW71gqJu/on4qwsoZ\nLUlMrx05v7rSwdCmFSLarIdoFvrJHhTl9jlCek3opSQpoikYuaeUWAs2GSoc\nGBYlaM+L26hwGYsuW2j2FKbhV7IgcEEKFjXEs2VeTeodIBLVYVGOrscP5Clc\nqoDoxwFKPbtXcvK0f/VTnfkKyJhh02g4hkk3DR7MivniKcT+2XQwx/uuPOb9\nD7jBwD3ERtRCGYEPlxy1coqkJrbHqBP1T3owECPnjX5nEbITbSjPYkl/b9AU\n+cCZ4nj/+23MBFUtHfy6M8xjbbEEW6PgDmOnqavuvM5V0st1RhwWj8ql74HH\ndFyDT8tWYODVm8wrrpNC2ck4GhyMakhpJtp8x49lajUKU1r/hWzirnx4c/3d\n+yKMZvRWp57gsOpJWdcI51wyGlwpd48Vs8xbgShUBWc8tdnpd/d5awZzNOMf\nrkukJx+BZlG7FI628nAYP0f+Foful4Tk/4OPmXM4ePgWGd2KHtUJmghT4m5O\nprBfb/o1hLxN8mLjCY9iVmaJKPvu0dCgu0pJg+uQM7mIKbdhdXjdAbG8BwML\ni3U1\r\n=64Gz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6d2b738bd844ac73b57b6577912b146f1e4f3ef5","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190213_1550042090306_0.020428286110261817","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190214":{"name":"typescript","version":"3.4.0-dev.20190214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"72dd217328fe3040288346343bea47e1cdc53bb0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190214.tgz","fileCount":83,"integrity":"sha512-qhHhsuLQdTfMprUFSRb7RH04HAQG3tA/X5Ccq9pDC9+IoRvmLHY7/a37ma+a3SP0yWfeF9ZD9/B7s4DadxvtIA==","signatures":[{"sig":"MEQCIG3z5Nb4qT5bpaq6/oviS3KCzTDHkJ3/mdlIkjqsP+U+AiAccUX7VrOh8lkl4NlzFJ/bHoSkJLFQ8bVWEdwmSuHClQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43204984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZRV3CRA9TVsSAnZWagAA7vcP/1E7exCYrS28wcB4InJw\nCGUAloxKd1DnoHEyS/oEVWB9299V1y5tphSHIwnZwy2FI8TnDgl9DlkWRfpo\njghOcDmHRco1UyJSoa8Uhq4AzsEjaJ14siDJShPGOyM/eYUAIz4EdcE/3BPQ\nY3sv4jxtnLJxgJW/WGbOu3m/KBMon4UDMSpcTOQGCBUbLIjEx0Sf43DPOWrj\nH7LBMQQf76gHm1yKvPqFsrGy01sHOcjHCF/Ij+s7QZIBo8OiJLRhyV2U5dOY\nVdxK7/W9d3lqniAAr+605lmeJ8CT/+85cOzRl1DELirks93zu7sgQjrNL3HL\nqmAgyRUhDhrBx5FxPDCe3QtwdpZ4ryVnpsd7HAmR53x6MWIJi0yK7Zr3AigE\nTeMxOjt8Z1VBe+U62yDbsOuCSPXI1Ih9QG2Z5h6LYaQTwt+MY0d6Qrwc2R0l\nezz5y3rxBWSwGsRqJcXNmrUBcBLevcZ2HBFo/yjj14sBfhMd+VZuW3Ij9cuD\nJI86uV+Sq61I16QtgZ28DQvGdW+oEy5F/CX7a1uCyvmapCabcRDe+Hrsh2aW\nOMQgCnQ4EEoC7+gXMGLKtVRe+00vmPMXFlzx6NNWPDGZFJAWQzZQaZEmUCTG\nz0mc1Dkhl36dZbeWuqNhwbmtlhMULalCGArB0E6y3ElSeEvhQWc9eoTOBej2\niswS\r\n=FQ/n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"84076a55351684296f7b3f1d2715690acbe8039f","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190214_1550128501864_0.4291340646401811","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190215":{"name":"typescript","version":"3.4.0-dev.20190215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190215","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"47e7e2fa7a3d7d2ae80baa280f28e499dfa1691d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190215.tgz","fileCount":83,"integrity":"sha512-lGyWJG54e6X/TAJ3oMwNIoK23aeUuNYyaWDQWWVQdP5FD1qQ7FugkGF6ebqmFijeB5OhCR11kfP+Z7FvV7nFSg==","signatures":[{"sig":"MEUCIHHX1fBNxdk9IZi8P+MBUmLbJPFSv+aS9u5phGNbCWzMAiEA52KxxkQM6/tp+iDk71WSDebo1BHI5J/rgGPvJHHNIHE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43210945,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZmbCCRA9TVsSAnZWagAAOLgP/0GJAnxtdR/dF5j8re5+\n58jdXFzOlti5HV02SBuI+hQyL5v9YcWtPV4jn7nK/G3djp+81k0GgPtc0Lcy\nh9uL9bT65YpJDidYyw52D27RBnU4xDDb5UmIAKxsFy2s7G31Tnu3yZLnFbT1\nGSdbvbEwovRXll2UaOCU/cpseh5gWQjFUemdfaabo67fyDb2+FBljuTpaF+K\n1d9K15Vn6JZtqC7x1qZlhevc45mqKxfG/muEr32U1HEUjtt+qavk5SnN7p8X\nyyoGflx8ViTDz2HmCB7PrjgWKRL7rW/E1gAIvL6L5El4uzPAe2tMbzg0LMcw\nZHTXRdEe6fpyfUqkjDQmqVw8nc9uOV5WrYXnutN80/b2Fqjmd1nUdrnqBx+k\n2AMCLhVfQ6rfOgXVgDa5bAneoUzX+MgYbzphNQ0auQSQH9reHEXMW/kVsska\nJW+aYjOtxSg6OshQrKp/LsIaHwgSxC+KxGsWlpyJALjTw1pw6t6QciXkZz72\nZ3x7nUT87+1TuU1LcsC0eljNak3KQuDjAObV/ZODs1Gvh9iPmkCPrd/kI/ol\nfd9Ekr1mGzdYND7p3+7aWkSN5C4l8Wj26SBpMq/T/8pykN6C2jGVonWDeJHy\nXA9S1HmgK1zFaUaqMZMnoUe2I8tnvgdZ/sECrKK7ypMX6S+bPedpvOgXztM8\nvsli\r\n=se3F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ed8c81a5638c7d745cb8541137ad6990da045467","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190215_1550214849151_0.8397630800263691","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190216":{"name":"typescript","version":"3.4.0-dev.20190216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b1e4596850af8d6289fdafeb2f56d32e597ee418","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190216.tgz","fileCount":83,"integrity":"sha512-46/6VqUDONOFriBe/u7aSPon6xF0sBsRWCkE9Ue/vF8ssrligDaW9Cs5YLQ5gv6rgsHJ8IX0HwugcH6hTpCReg==","signatures":[{"sig":"MEUCIQC4ysEjgGjuVCBO30ugeyRqZ2avWqDZPXUEgN+wSTmJ1AIgK/oTEcW9TqMtxn6OfwJPh537uokxcFSzSJp8KGrgouc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43211432,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZ7h4CRA9TVsSAnZWagAA1lcP+gINavU8O2rIKlln42XN\naDxt/C7zMRlheiiE0CsUN64CaImYzGf2BTvJ9XO/bBQX6d/3vgtwEUZsX2DE\nfHRmk5bOj0VBObVq63Brh0Xj+GfYCail4GGMa82EIZg+e2wm155YBspcL8OV\n8GfbmW3JfcxWtRsJT8Awd5nKSksFlaZVV/REQLtfvFzMjqhCHHxpiAsl0TFK\nsEwod4DmT4n9igrY2dHOiAqcbL2OpbC2CqTohvY20aw9hgJ0mykm5otUrGKw\nUnFcfmOda1sWu/hfTRxVYuFKglNXz4fyJDPc9Z2wQ5hPqS6JvaEZihKeBllB\nSb3ZtepYVdC96W1E/mW3HSXUyO1TdNU8jJjDIEWcklqHQ60rrb5SttUfcIn6\nuGWoH15RVWRrbjptJshszUJHXLZXlQbGhTI2Dh4hen3Z5uZFU5Ed2ixgi5/C\nUXkh2pk6n0fxE5oXo3qXJZ9qg473QW79mp6bl4pydSYKYT5az2KUoX6P3fJ1\nRhSl/JjFBp1gmbd+9fQodF6lSzTKZ7ImOEMmGzefI0tmEAI1SBvD4htyN5Uz\nwgcj86ISkYQTdQb5q6JnDDyQWiIUeh4N630f1LKacKT23R8R2Xo0sZaoHwr7\nHUNgpj9SjDdCYGzHj63OeL97TzGmx3Gxat9wc58yjcuZMZVTqtYWedpoCLWP\nh7sE\r\n=TeJi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b2b360a64fe6b54c82adb8aaa21262edb2eda728","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190216_1550301303370_0.5012151105496341","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190220":{"name":"typescript","version":"3.4.0-dev.20190220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"721b480bf7bd45a72f9cac2e5523f7d3b73c4689","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190220.tgz","fileCount":83,"integrity":"sha512-uYkjTvQuNr7z3Ci5WK/RY1V6FkASpywO9jE6p4miv0RfaPfkN1NqFfva7+YsWEq8N8y7PX8UQYKGS8LLMOuzkQ==","signatures":[{"sig":"MEQCIB/bCNs9lrTyEby/OrqvOsa1JrTqQSZ1KHK8irEF5acSAiARuUAD5RGQmdZITQz44Gi5/IV0xW2UG+ZtRCnvOdinrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43217634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbP5oCRA9TVsSAnZWagAAsgsP/2+BiGUnHhScNd1rH8EF\ndh1ZtlTkZBYrfeAFm0MGYAZXDSinnCUdHacnpVVZWQBhBFVpN4hayXyB9+Nw\nIYIE9BUDFZBCn7L/hJkGizp+a1ZECnlcdzBSYYvy/c06mdq8S4AaqhT/Ujin\nq0dpHkE6O8WgQY9B0L01uwWM33styYuiBmKCPYY2oY6uStY6oNwQJeopy6PS\nuJJd6yRNESDDSAWKEql2zwUxWFqLA/wL/nKb5LLBlXin5/SgZaBry1aYcK4t\njXPqY6XMbPfdHW7A6NYyRslMzV24c46p+k+y3jfp5kXFxGj6BXEM2OxkqPbv\ne355iVzPXUoOwFG4VeerHXeSeRZZqMljRAc/Njmhe691MkN6BHzTLwbOYizK\nu6+RwuqQZ8CfhbmKkeDTzXs7qNr4FryBjB3vysjztzd1j17PcyP2+FlEKVQc\nbRljl7wLak+zTvHN3APOsIn/Er7PYcFGrLNyQOqkK05Jce2aSIVVAv0Qv0XW\nfsA+eTieN1Vo+pmOx7FMlnuQgAJoXAio3qNVvuEYAehjpLg5lvzn7pIBYa0l\n+ZpF8LwNklbNzRzZJxft3znmzuJJL/B3n1FQmWnieHmw0HyT5Yflq/EJjTcg\nbTqzUIkGT+BuDn1Q6u0JCbd7bN3kLJlrjWpES6aPqoPdlGqZ6KB0w4Nbgq5T\nA4oM\r\n=d4SO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ee17915801d3e1cf796c7a92861c6b1dc5f4d884","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190220_1550646888022_0.4974013032221558","host":"s3://npm-registry-packages"}},"3.3.3333":{"name":"typescript","version":"3.3.3333","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.3333","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"171b2c5af66c59e9431199117a3bcadc66fdcfd6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.3333.tgz","fileCount":79,"integrity":"sha512-JjSKsAfuHBE/fB2oZ8NxtRTk5iGcg6hkYXMnZ3Wc+b2RSqejEqTaem11mHASMnFilHrax3sLK0GDzcJrekZYLw==","signatures":[{"sig":"MEQCIAQF9RxgMTQyhA8SXUtm+9lS0zfgAfgBYTE6pmXa4f4xAiA/5ZqWIG0Ue8q47sfaWlIElsZXli4NFTozPHRtXpGuog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42998716,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbyQRCRA9TVsSAnZWagAAMhAP/iCHVhESwh/4fM1uX3bA\npqVfzmo+4r5VdeD2j+E3bctC5cKTccQpQOkAMSRM7kzbFB6AiwAOceXSuThP\nvS02j6o9ZUNlQkDQszXtp6uTtfgVjIwxjnY0tLaE8B+j4HyYoQvuikxZReXC\ndq8GbX+75KP3M3bFeFNHJ7ZrwkMq5ZrbptHEIdDDG+9MiUTnGECw8H5og0O5\nhoSRn7AboxA+ORh6jqcPZAGn2WjvMUr4gb9wbEcQCsoofdHQ6v9mi1tXzYRi\nnc0psDDAAjyaNewzEW+GSaXGstNLjh2nu+vjAk7gBHymJhe9V0g2xEhJeR7n\n9Gm7Er0bwsatKGr0N8v706Ybt7REGYo5nLqRSGMn2Q7RpSeRznCi7YdQTSGd\nN6MijoKRGuwtwbRoZCRilGnNHVoqHaRb4j3OmZbM9oA044TFmNiEl/Pwg77T\nVFKEnghZPItQNHTkxzLcJD9RnhoLeaccdr/zrog70CndHWjQgV0H/GNrWKMx\nKAlkyPKIaqr3JFlOa0/5itxLmEP/VODE+4LDL2RyWvIMyC63lUNH6TwgDrx9\n/KRhmplQnyPg9g+XM+Aj5eqhp9lH7OeUinv8sk18qR8SSSWM4KTAha15rM9B\nxMOAY21ojUI7CFb1NC+Y1FqrG6Z+v72GrsCAjVrqvp1hIGQ6HzUKzK5xdvEw\n3tbX\r\n=cuhe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.5.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.3333_1550787600336_0.869333735175472","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190221":{"name":"typescript","version":"3.4.0-dev.20190221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0a5d17a27fc22464be63d0bfaa05851f06eec651","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190221.tgz","fileCount":83,"integrity":"sha512-30VeXvL01XwwwzPoJRNFomwvP0qmJfZQbQFsn9krHjlttXQdgen4a/nHGX1NZEuRnbsOYnc4qk4Gvk2z0p8qeg==","signatures":[{"sig":"MEUCIQDQ1PGgypSQkMUIbCw2BwkJzN/nNtIXxeYOAo8LWQLMxQIgYJNoQawmJzbaoQVx/T/le2sMv5x5u2bq3G8Jq38Y4Rk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43222354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcbzoaCRA9TVsSAnZWagAArOYP/0EC/bzn3rpT+Ia6Zq4+\nNZqxUzuxsx9+he7UgVjJqoYMRK7C1nIN7yvZXzLdUCYSZtY8Dt7m4aXyx4mt\neEqirhiYR5b23n03mpGa+pqHsaupfgc2rLgp5e9QlWKiTffrJe068Gc4Or7G\nBKHS1F6g4axAaax52TNseqXzuEIR24ozz1T3DB3w1rz9TW6xDypo//UZL7PQ\nR2IKk3OTO1gZcLnY6tyv5ifLDzmFH91a0a1zL068WlpGOSZUgD7oQ/GCC4Hm\nx8Grig4ZA1fGwxqM1Zij7fDPkWUWU466dYnHFlMtKD8XhqzWu12B3Ez+TxrP\nDchLEKnrrMzOMtZb1eLgpGCAVoYb9DYHBjeUJ+OqcKtBI0y2wCSv5R0YEWaf\n5MTVAqQOfST/yYDwT3fwE+1Fk39h5svHSL4EVxqnziNQ43SUnroNTWL08Klx\ntfcSgiz9Ov6MLfHKGHI+1FwcBeH8vxf+AooV5LK+CHD/YHqwVB5qAvmHbexU\ntEk7rMHSmXYI1MoMFsKJEdAqJy7DTodb+zhEDOW/XBgSLO23qnFHCNRBJJ3U\n71e4SytxY6T/c+Gt+m8jbR2YkmDOFX5XhS8sTFmUFz1lmDUmANeQm9auHEZh\nVAtm/xGG/AhpVzHJxQqSOYDGbrOfsAfQy1phqFpG5ynOzBZnGNl2Hj5QrybB\n+Azr\r\n=xEEE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"592396d40a250147a4637a8db9376ffa0a90ebaf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190221_1550793241854_0.7432423293737394","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190222":{"name":"typescript","version":"3.4.0-dev.20190222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190222","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d4e51838fd2bab2d741a51d897fb03ae0b5d4b08","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190222.tgz","fileCount":83,"integrity":"sha512-kKsfstKWNLMimo0d7+/jj7Jozlhvc6OHE9em8zmgsncCbM4QTr0y66j4UTDjYFRbSnK0taYlzrxpdGXiQgnuOA==","signatures":[{"sig":"MEYCIQC/VBwMkPVHUW/nXrYV7LtNq0bJTuCxGFqulyfpOodHUwIhANm1cP78L9NUbhTRuyne8rGHf3NHO8ZOOAwn0QMRdGHk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43222354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcb6FaCRA9TVsSAnZWagAA8KQP/RF5tuw/D/kjxqugDCJI\nNyR4t+6lJ926fqWeHPGNjjWVUGrBIZE/FXJG5QBx0pCs8W1GXJZfjCZ8nt/W\npSIN2ucF6x4RevEBRwrqnSN3AhXQ4tEzbxQTgsEilPL1ZCi1N55oVPjqozyS\nvJB19nqZsVl+QI/seg+uXoWBXoOm1paRMbmXp4KrO3GUY9ebQT598YmZwD+y\nvfVMqYcElCrzUPrjTHESxAAKrzwn1uKDZJJYvbVs4rFg4hl4k/3Lc7b1X2iZ\nJT6/F2ovbE/985KjQ2+twqG4yaxwu0g4bNRq5UFGA3EQ30nDO3/7HRkULS+6\nBVKvx1jayneW8Ox0jt9m9VYVQp61JXKxSfsmvfkz++YL7NbNoJ6HoPVH3Bni\nY1IdipnjYV+kXe7mwEdinc1dIKlOubV+Eiv8PEXc0PRm/j+6qIrci55/gtI3\nto8DIEALIMOxVt1na1SzxYISUtMQBGMcdF3xRl4ty5lrP+o1XX2QdXf/B5jI\nA4CHrOpvYIdUP6houw9eBTQjFNQL6LzgEnmTb0JjmHe+J3A+oUtOVaTlIjxL\n7Nra5T3D/emneudDZbp4uIBABF6y/toRzaLbbSNzp3JWPtxxFpPcSRV1238M\nM5REp4drfXxqu3x4jxNdDP+AYMVt9aRRBFTPqe/PnfrueAj3S4uiejZKquXq\nER/6\r\n=rc0X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fb0dcd49871df214c1c5911ed9714ebb9d1d9951","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190222_1550819672151_0.3804101183230524","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190223":{"name":"typescript","version":"3.4.0-dev.20190223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190223","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e7891bf0d66bc5d952c7b328005f8aff52e35261","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190223.tgz","fileCount":83,"integrity":"sha512-LbPIq3ghVX46Xon22BPclxw1sF4VsTYkst2Vsvu1yDfF6ALZiilhFGznDdh69SSdRHTO5TybSeVdjrcts4ZNpg==","signatures":[{"sig":"MEYCIQDWoJfUV3/ruJKyWabMIwkPZwefQxsBB3+7+yBvRhV10gIhAOQ8hy3xmtw6FCJgWW7trgY0wr4kcqCchGP9AUdc6Cpw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43222354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccPLoCRA9TVsSAnZWagAAtrwP/jNSWxWbIacJrHT6PVdE\n50ywk1/CsxIYy+H6picom63d9KyVBVfmo2IHRz0kyCeZGTzU2iQTsLQMlOfi\nGkt8vPLIXFBiMol0kS/uvQPfQ4xn0j9Bhy81DGFj91qcSTFXoZI2RoRkRZqX\n0H3pM6PX6XE8XeLpaoy0u9NEv6b7USvMgHfKgS9ezOQB/8khn83/Zf3mjWqs\n/LEcpx63DEmEcYXDk1nXUzkeA/C/tcoHx45OKHjmYz0w8kxtqcDT3CaI9Bpi\nyAXuhcMGnldvsBLjRAB6ePa43QF1ytOC3ezfpzaB5fAAP6vzO4I9o8ZFyJc3\nmP8ESSiR1ZrAGnSGPYXyqmHkPk7Prnr5nVKd07bHEq8A88CavDyzFzxGTx7c\nth4/R2XQjaEOqHY+lIiRIOUV0DfV6oQICMT7kmuuVG3zu3M+q6D7qALsU8Eg\n9bqhXrp3JlSazrw3ReOS8F9173dLHajrx8sevWFJD5YAxqwp4wVW07XE/KzU\n33Iy08SdtNjZABgdw1Dr7f5zkpQeBBkFF+Rfc5CZKRMT83jNy/qCINIyRyLl\ng/6qgoR2Md3tgtgXnP7d8hAnnX3VsbC36pEOaCkQ//VGFOKHr3yAPOMUs8FB\nzInoEkVvVC8124Ht2b3NoZpElxlZ5TEgam05CyJYMxEfqUm4CvOcY4Iria4E\niCUR\r\n=FKpW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a41a27694ac9ca2848fb83cc0a5414c4c2c5338e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190223_1550906087114_0.051512074536502306","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190226":{"name":"typescript","version":"3.4.0-dev.20190226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190226","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e76579e309afd67fc124f424bc8a5c28513c7677","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190226.tgz","fileCount":83,"integrity":"sha512-DKCRe4j/g6Si8bDutp0A8fV02QVlsYoHwhoR7aGx3FwSURNZYRzh0JIJ34ouJO9A4RiBoI1mkHX12MAxI/gV+Q==","signatures":[{"sig":"MEUCIBA15r6nLAzMqT5V9PMgseFCg5HV+J4U/OM+3KMQVmxQAiEAzfEkjBgjEOq84rBKn3DrxnluofnoGUUe9A4i+R4O5Zw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43224798,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdOdqCRA9TVsSAnZWagAAJzcP/01x20n/3YfTASG3r2it\nOKMssM1AyFWVfLDEcVW96wtkpTVhykqa9XqlT5J5HCcdJGL/7U+qcooJoiQ0\n/lJYp+OxtFZ+xcqG4govRvbLiVxphKU8SsEncDH7Il4UBXbWAfYbDO/mzX1x\nkDsMY0BwzQmTTp+qvymgQ31nOJG9d8v375LD4euCZfpz80cH8pFMKcbXKbNz\nl0ixOQhpR4vBTc+Skg7oxZtS06nU8R2NglY4/r1xih95B//juYG3ekG9meBt\nimvSpKxPrYT2MvpHCwxFtjkWqqeWFCDk3tIgzA8+K0OseYAyfWG8AI2x+/cJ\nQDO5JsPXWVVTrJGJhLp/5vllVcG8CtD0MWAdwIzZe7VqQS2uq9TkL6MEMiF3\nmdevcNANJ2EzcBxGr4X9yoJ4ph+U5QahGk2Zqy1cRk6p2bvlEv4/SkGhzTvq\n247PfByf+btYuq35PHfJjRaKJzjgEiQpY2VPRIZ/fIKHslDuf/54XZWm6Dtu\nzDMVz/ZyjoOT+uONZ9jVLaQlzQJYSFNE/EjA4AOAT20neALIYOFjdsSx5iwG\nWNLjV5pmIYYVbcr4cr60CP01zofauG4ovQrgWWTH2U5soGo3mbbQ2ff+oQGO\nXJTdq1I7Mqr8JUVPxncgyUhbofQNH9U7y4jfFcD1FTduwLHyIc4e5qG+Qosm\nIjzm\r\n=b4Ka\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c5061486a9ea1694af249c6e9d434d7166bd26bd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190226_1551165289395_0.8194493276751345","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190227":{"name":"typescript","version":"3.4.0-dev.20190227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190227","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4e9be69d5d5a6379b8cf01e7bdf8fb3b2a6497d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190227.tgz","fileCount":83,"integrity":"sha512-zla5hBSJ6CFqJQiAaDY/2lGqrimPk2FgOuawA3JWIAk0tiSkzqWOlgBl2HOU+TpILR4P/ZNDNLjaLxB9bNHJRg==","signatures":[{"sig":"MEYCIQCbBjUoOGWJiEtd5aCc6jWjf+CAE4eyYSvR45SrH9srNQIhAOHAzHNAufiwimVy+BxO0GM/Z5i+ZDKS0B3ldV6pu+Im","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43227380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcdjkXCRA9TVsSAnZWagAAXCsP/jL9hgoNNuvaxBhRo+KK\nqu/k0uO9QEZY40EkTRItmpXDYcmHDJPlQFBBj0RqNKLqRvEGw9RM3EhgEP6V\ncD32vnx9850lk2aghEMmK2hLqnPoQ1/k9BfrOxIOEpARo2WLtpXVTC8sKCIC\nz83Dq8nM7I0PRxSg9r6rmfspKFGsj1v/NRxVkC35aBsG8Q/Mg7VLbxgudHMQ\nIi/d+QrNOO0IgRUO2NLwt5dPpGZtkEOH0NJqgkUqhnjLI4mVlat3wUpavCQg\ntL06P/U/zpV9EQvnJO1LCOz2FrlqmXVQi/dpdhXBEjC6CmQpzacELAzo9rw1\nimdXBh6keyb+asZk+Anc+p2bLDeVO7aSJjYQYvD6yhVq3QPcz3jIzT7y90qU\ntKCMVqUnOdwKFhTSDFUbrLoc+Z74zuD4JhXDbsnwyyFdLLr+18lD+34FD51z\nGwd4itZGmHgG5SkLKuPoKQd1uM15+zCbwgbYQeSDY48N3AJbsi+W4+gRxbNU\nC5oOQGjTZrMJ+tFqFiSbvJ5+swWD5v3zkI3+b7CdffjDcXvNKQ3zZmpxCmtZ\nFSL7Xm3ojnoiyORyYabYFJhtV/T8iJr/qMaIIs+JVVBu7SD8gwwwU1trKaZD\nB4O6e6CkXZHr/chUYtWs26WM9dhMqmII0PBIUItXgl4hBqBPWl73ZCvvwgjT\nenv5\r\n=HEWB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e8e7e88b2a0334de6d30765f87f2cb9fb874cd5c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190227_1551251734754_0.11264404446109033","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190228":{"name":"typescript","version":"3.4.0-dev.20190228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190228","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a7ed00940484a28fe0a017a04992faab3db9075e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190228.tgz","fileCount":83,"integrity":"sha512-J290TYGXDMwA+Gxeg1Psk6T6FSFZS1z/N+avdlCRZFVVfCRWVcw4oWNR8J+o8aO6O3qjPhaDoa3R4UgqzajruA==","signatures":[{"sig":"MEQCIDBf48tI11TFuqPaalMU0qU3h+v8SVZlFdzbiTwo+5JpAiAtnIBLhrZgvSFUr5mEvp67ouJpvk4yL2z0OdQSb21kBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43244276,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcd4qUCRA9TVsSAnZWagAAyY8QAIPreS99Jo/gnRlRSPh0\nVrVKJDxRsSTFb1VwVkYSyBhQBJqjkUnPNpARS3SNjVzzPxr8u2wJH3QVLeDp\nw4hP1i68aT+aCseLKhRa1v8/Fb4VmVNWrwxNWOngo2eNlNN3nahWk14OvC0k\nx++TWtI7NmUvxb0x5D/TEyay8dz+rL5gm87oJwYxDQY78tpcOeIQMBTmGRF6\nhcC6DBNmzeQTTc0CMJPus+OgJMi+QkCgugtf2P3gn9J7rNOAPBrHl4rlPJc3\nWggn7GUvYfTw+bBloBMVpbaZhFkycIB7A9X/5K+dpo95+W9+Bk0DWx8hirHO\nS3RqFjheysF0XUcYa2L/Hl7FyaOiE4Z1CHglySY0kIN5S8jMUX2qkSVscgS0\nGs0EwLQKU+ihcp/ehenZdwF/pIec01/fIIK+N5mBZIogAHsU+H4jUT5LXKPe\nT7jUwArkPw5f3qIRFLmab9bfoyJxOLSCT28/lD2i/ivBOvRqfiksILD08VX+\nAvNqACBLbBOt5CoRPeFftDraVe6yI6lT3kVQH4y3yyarB9YGmXDtX6BHnwAE\nU9/NkYsCMVOdy99K1b1n2wlI4SKAGhFMIB6jgz0ba2037JJx6lplip5ouIvG\nCBkLieP5nRbWAs9B4YCEhAnjzhrONT4nH9hoQ4iIl4fnflVkcTgKkzhOt8La\nhmgM\r\n=6C4c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5ec5e0466d27b1aedff1d3c38aa44396406a2767","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190228_1551338131057_0.550207596607011","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190301":{"name":"typescript","version":"3.4.0-dev.20190301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190301","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f5cd44447d56c07c2d0588713ee20323c3b74e4f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190301.tgz","fileCount":83,"integrity":"sha512-mxZ0exkSaeItSHV+lop9Kb0L/d/dNIlxZ2ykBOOx6sHG7VrPU81nmqQNjW0L/KhX4XMNfswJ/Q/RGQRMRv+tFQ==","signatures":[{"sig":"MEUCIQDN7Tu8EszaI/RE8JIbnhy0VPoM8UeVa/U45ueoGd4rCQIgeoTPezAxzZNwJo0En6rXNnOiD5BS6Yk8q+P1f9Zuutc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43259587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJceNv3CRA9TVsSAnZWagAAv+QP/RUJiT5YzlCvbQf53qkJ\n1byzWD+tnKKrM6jBtKdtoQ4xiC2eX0THDgnArn/b4WpMVGEldXF4wu86Qlqy\nfNx+eiNE29dhbrE48NKd4xIJadJXMugUt6CNEnDCdl2eKkra3V/LIYMIoQ5V\nT91OVJjpvpzfbuD0+4s5axrFf9TPXgidvRiDM2D7ixxcYhXuYi3208BggBnf\nHF2Bk9lw5Xcr7h+UVRuUoIkBXPNGuYJTKpmpWO/KTi9v4G4nFdwimo2eM1+e\nH9jJcQKa4uTIYAwu+CUd/sC5kVm6n+ug+TkSV1hs+2mTRnRWvgqFH4Wp6TLV\nDnDNOh1bLA0lu7EQGO/17ohyMZ4xgWFvI4ZXIWuRXopAhnNk6WzUaSg2Dbx+\nP8DSIklP8XwTbobjnUbyQFOTh1mliaecAuq6bBqMzsLIPWVN11/ziMA1Px7L\n7aNLR6OLSJbbwIkzxgcWm0AHYbvNsLSutPiv72tgPjpySxFQfJvA/dygj7y5\njHD+Zf+uK4x7g05G9v7LGqqaDNYttm1BL39Iky9UbBRy61lv/6nqDz2/QFfV\ncHD1HIhPSYCn+ddTuKFRJkiPYdTg/Sav+VrWwKWPn9ZB8U9KH3rmFSTqyAo+\nePI73wsI6RT936N2+fzDPFTSsYnEHEzx05+ibjkchnm+84sznkAapZHJDWpA\nhWI8\r\n=n6F3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"5bef1aa13c52fc04500ef53580a5af1ca64e64c8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190301_1551424502167_0.35589004162618476","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190302":{"name":"typescript","version":"3.4.0-dev.20190302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190302","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"abd08f89f94191189b581736fbf584329383182e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190302.tgz","fileCount":83,"integrity":"sha512-yY6dzwKy9mvwkl4xXLvyqPU+dVRVtCi3ZdGnOW1d0g7ST7onveCg7G6ohoL+qOeKQhi/gWOfMa17pJpDTwKrAQ==","signatures":[{"sig":"MEUCIGLBBywRvGE3tOSkCoiWKfLzvghKzk01sznuikDlR3SKAiEAhzARhwJpmZYLnGmVzQjg+9YOOzOxyVqLczDUkpQMaY0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43259587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcei2OCRA9TVsSAnZWagAAtfIP/RLLw9LpdS2qMs4lK3Ar\nOZ84kyNotjRrUVbQASChXEnlFb890/58OiPClOXts7kl5q96ZguYSehcAbpy\nRtmmfGY8/B7Q4mdiyOmpVCE+J+Gstrn9salMYnJn3PYl9rJNlTOWq6Qmievi\nGJYmwlGCWsSXXWw/NCKWR6QGZbjpOYuONkbho63ciRvYrXZ1XuI3wZtXzEGn\nRIeZAEemBlc1ca8uzyTruuc/Y9Ag2F3OLdl0YnPjai9S0MiKNydi+RWmVEPH\nHVmZgZT1X8l0mzI8bXsgSV84MZqlsqZXQ40pV02xQu5qFNj0ubTB34R4nqaN\ndFZ/0wAWMl0mtfPmmWjoe/t9fHTDOlm44bPSGRSjIQvjg6mPDEzpYYCo4fOh\nPzM4hHPJx+vbL7V1qwvdaFc4HMmnf2HcIO5e2XBZ3a18/Lqh5hPw32e1k/lV\n0wftIyyqY1OFpuToucVYj4/mhKq5zuOZU/6WOu3oFrkzFnh3hNHx1kwhrjSb\nWYhw194TYAwdyOG4v8sBronCjTVE7HTEJOD7MeRAYrEYmq/cc16rBLA9iw5a\ne/I92ocL/szFBG1csmRssZBa9o1osrMh8kXZDFHK6BVnPHclxdEUfTXmLRlA\nwCCV8GTro+ib9BduJpT/60nYNMf8iY7lQ8wjNz4fmXO1vk1guTb2xcPHpHCb\nndPO\r\n=On5h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f776bead4f1c28f375bf2f7676a277a47745bb48","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190302_1551510925809_0.5647445159512685","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190305":{"name":"typescript","version":"3.4.0-dev.20190305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190305","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"30545be9ba6c939804b1af2e8bb91579a35e03d2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190305.tgz","fileCount":83,"integrity":"sha512-sIgde4PKZjlXNv5lVDYfZ5xZaL854adntua+ANj0n/Oa+v6xAI5O2AzTQt6cR2ewAxbJla/CcO1MjbZTXizkcw==","signatures":[{"sig":"MEYCIQC43By5zcIPtNT+PQ8oqEVTE6Lw/VuW4ZR3E1l7+iuQeQIhAPgKybr8CaaJqskGPH0BTuTpNPrlHSBecoaAF5jvus5t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43259599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfiIECRA9TVsSAnZWagAAmJoP/jvzlhJGC2cec8Wi6Y94\nAvupohAMcro0dCFz7zKgqB/oQhjst6vTXgdeVflr1Y9nXUHUMbBCjx7KMHM0\nCdR4RPQ+wohm/mKycVdayRES3TPA8MP/BjR4AMWrLIuhZEOwdqbJs0q/f5sJ\ngaUTmlYT9dUgIlEzBYhe3eTaZvOJJVAVQ5/g3UfQqWrO1uzsHTnBhfDy2Vxf\n+tkVQS7eJAsglAlLTSWtV4kfK/Hq+9EKqRG0gTn9YtSQeJrEBsiPyf+AHeHr\nmOYpOut6vpiB8tQDJLzkXg/Y4mwqJWFH98CYV4n1Go+bJwqhPgrzR5Ngojhp\nSyW9C3bKGKGQxt6Qsb4wn/IixwG/sgLKAByqzov2C91fIQk6KtwD045OQ0Wp\nIHE1shTW2bp7HHNqmunvFMW8Fw6Y22iRywFiCdzBR+381dn8akRhHGPa5tl5\nvMbgER7DZgV4IpyB0bGSESBbuM1Ze15IwfiielyZKQozVX7xifTK+A+xU5qX\ndZnugnU4IPejwTaRL7o+Y1UeN8yvV6pyZMWAtC8GB5sZToj2273ciurOGIqQ\nu7r8Sms05dU1wdXKgxjUiKVDeZALZUK/kqM8RF+Sr9HxPICd0SPX2li2cN5W\n9XILFTjAn4M6YQ0ccJ8Err9Qa4tNQmE5ib5YqJB9gYsBHa8PVQfLOZ87aWot\nn219\r\n=wRJx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a5f93ef7a4fb1ce1e1e19faea27f57c749abe2f3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190305_1551770115701_0.48379691178021234","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190306":{"name":"typescript","version":"3.4.0-dev.20190306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190306","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6431063ef07e642aac44504a7ea1b59c38f7d935","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190306.tgz","fileCount":83,"integrity":"sha512-fnIi34ml8qtAqrT27zWPV5eBX9eAMVLqHCl/MZ4qHzLNWj98vp70Dde8ObNlOmuGIjumGQDHFgk7fowXJaq9gw==","signatures":[{"sig":"MEUCIQC8McX/E8mGBc9erY6S0teUYKdjL7Od6PmGOQlzDl83YgIgRMuqqz45R7tEd8E1qUfVDCkIsAaWjn0CyPkdPSiiTLI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43272593,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcf3OACRA9TVsSAnZWagAAqZsP/R31kWz4Sv70O1f1/pBD\nF6/gQEW/x896i99eRpAZI3/24f/dceycQSSzhxu6t9cgvx9hnn4e5kqehHuL\nKIxricfDMfC/zgoJBv7MHrDCKcbZllaqsJ5kcgB1pGRB2XSjXqxeaJRLAeR8\noDfOav1gohYuKw+djOqBcJ+rJv4K96PzknsT720CqoM/mhVmHt2zwQU0Gujz\neRNDM/qwl8pGyaPd98KurZkOYEms4tL+RUjNOLFNaHaBDX2Qy8UEMDAMH1xc\nPV0VnYNbsqU1oMfe0DNL0Jwxt70mCzC+MXUZUOpgHkwW5rioC0qSQlocEa2V\n/rO0ah0x+QW8V0Y74NECsxOtBp+pNZy4QM6cvR7iLH5Humyj5YD7iRm76RlV\no2GJGonSC0ZwDHmmddmJS0hoYyT1j1ttkOM4M91LMBzprw5cA3B4ugeg/YOn\n2WC/OSgAxwvynI1fu5mAbpwHONaXCgjeP4aznRPr8fjn9IFidSbkivBxTuuV\nr0CvsZgCaVR55FkcUIR5lUIRdTOSTu5Ner0JqUX/ZojfeRQW+TMNt/XqcOav\nwlNsTka/c88wT1HYFXIfLw4H1bAb59KHta/NWre9Whx/wWRdAoedn73Pu/W4\n3UR79oHbfa+L2pDoroPpGvsXUCRWkMJuWG8dsqboupMpzL9HfcT3fwCKQV+L\nEVJk\r\n=DAor\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d62c8a403ca418e01f6293c7f4635417de333943","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190306_1551856510975_0.6807788716182883","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190307":{"name":"typescript","version":"3.4.0-dev.20190307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190307","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9ac365bfe3fba17e1a3f16644b2ead2fe0777fbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190307.tgz","fileCount":83,"integrity":"sha512-4TwbkCSivQriQZa2shu2tIyjI9AirxZcK9vtMlO8o4wJwMveKe1YEgRtbqiAS4ZF28RRZd5Ifw5R3ExdsFu0tw==","signatures":[{"sig":"MEUCIQDJbHWoQEpa98K6/h5nTk+VkK4lxm7G7GUI/WCmxYyIDAIgEbEVvd3keQ2sPJzSgV0VtFp2rVwij8bGUMrVWwhzZRg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43387578,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgMUSCRA9TVsSAnZWagAAmQMQAKJw4ws5tn3wNXBjKvsl\nmi+kB8JEv8yQRR7C92qro3ASN4soHr9/rVqtbAIHLmLp4AsgRHtUU8rymAgK\n1VEsCTINSxDOYEYJEs22bblSUUIsXZxx6lEY62SAk9EKbf9CPuMSa6xH6yaH\nZXiABInQVt6SZWi42mjF3D+xyuf2sv+4O/JcZFBrJeJTYFZTTmL+p0C9Nd3r\nj9aR2demWGdhhks0HsgTSytIYufYk71u4/GIb8PtBCjmqRSsFt5uRwJW9kqB\n0Tz/m+IdtezzAu6Pwv33f01lmLbvnmjGDCtOMhqycQKUIg0RcF8mjE3tKIFe\nSdGRa+ANRIqWm9wqWkpeQ+iJsJCHv8B+a7txrGmApsjJQGx6ExV7gars+8pX\n3aDLTZj5kei9Ospmr4EOLV/NeuIGdlzyB5NQmnF+YKkwx+pf2e05LZsY/zou\nIO53muXth45oY2l6Ulk2+GFoT55dyGM+NVVmOfLS3u9y6MiezIB/WzaA3V+R\nsgvBYNAxc1o+lO265uU0t4MTzGDhjo+C1lpPnC2l1amdKH0LzBef0hvfPzPA\nMAhbmPbzJEojCIq81a6giE2KI4QfAgqJ9itzm0XRZsCSH6XVXuQbBtnDjUzd\nholZohi4ibRe0jzMXlZSYNEdm/cqXnOchY7pk1E5VYz+3ajpC9dqTKBij2Dt\n7nnn\r\n=7thr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d2364f555ff72bbd81f379d58bf426550482e205","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190307_1551942928976_0.3285933781756276","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190308":{"name":"typescript","version":"3.4.0-dev.20190308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190308","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fc530477ca420ea7aec2628489b825bd8297cde9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190308.tgz","fileCount":83,"integrity":"sha512-0TqxMnTl1qH9YWctV2vYH7d3eoAEHolnvbps6BHVWWATuAZd+/8Nd8+yZ6gm0oK3/6CCOrcqsiNS3eBT9VdS2A==","signatures":[{"sig":"MEUCIQDVb/slQPsCXFNZdmL/7u8C887G5ixYQDCSW5KuoV3JCAIgFMoB4XEc2JjYxFAG8dqJBkMPGr5gurFb2LYttUuSbYA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43397511,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcghZ+CRA9TVsSAnZWagAAHRkP/iV/hfif/dDDQcVJr3fX\njrxo6THrbhzbtL32DzlNOCBaLicYZeV7mbRBJcpeapcA2AVdXXSthl5J+PME\nYZ1iKqJp9ELn07/AFdsHOe+eEJRFAFrlIPgn/q9uns/IZBFE58dL6PY7RV10\nSsAiFbOrijdX0Fi6piU+EX08pkbXsZoh+GkXd38KK71Ec6wbf9Q5VIxPhaSy\nNpg72OgcsD1U2BKvj2AKG7A660GXTnMwHuM3ze+1RU9BCcJmZEkI3wUPB46Y\n5jx2m/fwkkILE2A2uABecw/1cjn05u2QKYbDG5+HZh+AGhFgDNfnh17vyWCo\n279A6X107Eh9QE1ZfOiMOxMHDH6O3IkWYo4ZGgE7CyQbX2jsvBHvAsLsTWvp\n6e6VSZSdNDt5wouUD+OzihqXSoeHmWF31dNdtsPG98FyqANc7uxFXu4GTpSQ\nid4o+ae0Dg9oFdAGoMNuC559cNpOdvQgIBosK/e01CpgnS8TbUULRtSS1HVX\n4EeQSUzeBljr2oDhkEWg/LzFqu2mG/DzLh1BjjixehSAgvmn6+2kiev7SnpH\n3hwAWuJxwKewTmEc2y3ZV9gXDBIJDfmxLj/m2CL/lTbUTDMUg+56oEnrMXK9\nwgc6o9DAbZTLUw+TWuB6tT1j1ik5tCg3cqJuWevuSqRFj/alIkgMjvtGlcPa\nMMFn\r\n=a8OY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e982240500a527486de1693cd6eeb70c3615c5bb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190308_1552029309108_0.0035217454542351145","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190309":{"name":"typescript","version":"3.4.0-dev.20190309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190309","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3e91ccf4c29f096c6afacc3455c5df0a68faf650","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190309.tgz","fileCount":83,"integrity":"sha512-m/3xJgKDfgwgUbrmZsPMpJR6Nnka0yWuQKHHvR1ZGwI54LVbu+QESg0sKBDxgNwC2f7eDMDKgipaZiFWntPa0g==","signatures":[{"sig":"MEUCIE1je6r+dHImb0c3LO4FdIKXkfu4vdSfI9NGqy++EyjoAiEA/dU2ZT7sbt4DC98O2Rn5dGvtEmw09Mv5HsCXPh9TCS4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43860559,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcg2h6CRA9TVsSAnZWagAABaoP/i/sTJB02WVUcGXEUGvP\ndqZt0zT2K4bxlRge7KgbTqZzs+FgRK85k6zruqbyPFNNXN8rjUoguf/MpGbZ\nONp3Uh8h+ZwjtXPaypHm+OpFcChfde0zM++6iIfJgcXGPb5YNeccPyv1F3V9\n6LIWU4RwTcJ8nHOu6pQlNFgf2MPQuiiaVXD4khTpWsEZelLtY+2wip3D73uW\nqgY0spM6d4Uiq2CcPyVdYqgtWX1FJBULBzpJ+0m2tLoahmG5nZK8hrd8MQy9\nGN0J+xJ5wK4S5SO1O2QU+hZIaoEW6t9+qmFXDk1yvQ8GZa+6czQEMm3wsQzJ\ne2cM7AJ63rCPpaQ3maIPlz2D/ELUHoqKirvHVGedJ5MoQaVIxKIeGqJWieTY\n8Y61Fl0xk65VsboTOFIGLHvbRy/hNLFV0pE9IxmZHeA8JRseaDqR9RlQY/9B\nHxmnZRdnNfMKMn14gFkz1fH0TFmmoB8GWa597Kdikir5WVI6QtFL6Sj1I5lU\nl1mhQoFV9atZ/SfcZUwEzQM2JEq+WkrpAY/6NXObdI/OtMWNsJZzoqSEpfP3\nQw92V2GjjjCSfRdCsShdTuM8VlWXxAP9W/xnxzHoWRxwgekusKqI19xLJEmx\ng6otzVDEMCWPw3iDEaaPMSEdwidZe9UugN5ED9qnSVsbAYas+trAP+/L103+\nHV1J\r\n=h178\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"409e0764251ebbc0ae24c918b2e6483cbb8a9aa2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190309_1552115833442_0.6367582484992722","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190310":{"name":"typescript","version":"3.4.0-dev.20190310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190310","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0708ea8bff196a966719143d593c26ace062bd7f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190310.tgz","fileCount":83,"integrity":"sha512-g00ai4cac5BzhMZ9oXHjHYMZRWrfQRviBA5hNaDez04KE8gnNtKWK+PbD8kpPHwQt1TEsOQ679gpO1HMbdNOYQ==","signatures":[{"sig":"MEYCIQCIQJK+8OWOx26olL4nKpTZrSGkoVvDT2mwflaig6HZSQIhAPzy+wshNDpXbImUK9nDoMNt8BcQiMnaAnEDWF8xXCo2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43860965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchLl/CRA9TVsSAnZWagAAty4P/3r8ydAGYbGLzKUxwTAc\nv9TIo8pded6XZvgVD32Ulg/bqQQDh4NMS2Pl9tH4bq0Y9soLairMF/KSHx6o\nnBimfYdHxNXkKCIBTzhAzTVncBJKCOjMXfaHPqwl4S1ZqyfQRPxX+0WWeBMR\nolXxTFQarwNhjW2TkloJ4UNYy6gbKYMxVYzczP4KsmOR6EUXu0FEQDH82TjZ\nq7uKN8Q086anNv+BEJflYMGvis+N5OvsIakErHl1GNAhbcdFaSPDOYR2U22b\nRZEXMSO49oPXI/iZAthrJ0fGXtZTJydDPNmnwUTTjy0LfTSbet866Al0+PVJ\nET/dNd8yF67EhAk2x/xzyzHZEaHo5urz09Jl0V+ui6iD0GXIUpoGRmGVjaAB\nRGXEUqHqkWiyS0AniQr8tF03jZL2bYBLrZITLulvRak+D+ipW1kr+k+owCPs\nT2Xis5i6zi73Q6c3KUZC6F/V+PZRnAl/HwLqrNyoupPoKMMLVzu2PuVBoRuB\nJ/Qeb5IzkQ+Rfq93pEgkHZLnzK1SP6qscZzhDRGLbw93dBgQ0+jas60rsm3H\nPq92hZbS9qu3YYfZR0wrKG5QIL1Pk4FlpgntWnhJ+XNd/lYoBztHar/VBy9Q\nf3HdQ5d9fnH0W1hETuDIXqFSZD6jcASaVeIJjdXIeVgfZ49eY/L+OknaUXj+\nlefp\r\n=uRIm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8e2a154680f85436db79fa46d40dd94ef30e4f54","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190310_1552202110990_0.4760003931794248","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190311":{"name":"typescript","version":"3.4.0-dev.20190311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190311","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"26cddf6b2ce178e48f6ef76dbf8d3eadf581b223","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190311.tgz","fileCount":83,"integrity":"sha512-zBTywUjqyaW/yy/xNRW9jIXToHlsmILMqSrb6oW8Wm9+DSOUPu6QU3Jz6QigJQyKwTKLOSxMsssJ5Wys1iDjDg==","signatures":[{"sig":"MEQCIDOih35hlwEzbjZiAsrh5wlZYjpr3+4Uthnw7IypEq2+AiBWUOK8UvwanJttosBJjZ0QUdURzlMRKIlTUNM+fi+PQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43861505,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchf0RCRA9TVsSAnZWagAAKe8P/3bMHVnl0+BH9sJJ+nO1\nuBOemxzKoKbRlnyWaMiDxPuXA4+QAnMydXUVfdLqnM+e2i9EGvKGgRbs1urp\n0q/xFDCSG10rq/sM8JyX9sRwg5m2Kz1DkWW7hX11LBAg3CTzrTWui7XY/I0d\nU0JG3hzqQG9lpFiWSSkM1b5mHomFhDFoqZA5akXZFelV/db7y1+UnEfp5pnS\nF+pNmhCfxctuvmUDSG31H99TD6d4rvlxjDGOcTCk1tijjMNiNzKODzDz+bMs\ntXKGzoeb7kikUb/MDJRXyMmb25JCloY7HgzfUkeNsfR28gTO20FNMwqDUb5w\n/+XFsf2Y/EBBK2ot+NON/oldhEyBApcMPSyueHk+IdCW9VEbH/UeQ4v3J/sj\nZWL3e+6Bx162kplR+h2RN+pfkNHgy0g8tJvLR3BFFvb+izOacMs2tFjIhmuE\nx6t9smB5kpMf+fNXhhhNsxQ0dwcUAdc5Sx3cS3MF2ZTTAsMx5EPvHsbByQv4\nPHWrvbT5SvaeD5wZCnIjK4IiOzlKGQ1TOgTu6Rh9CBmjQuic5Gc0AnuP0Tj3\nfOmqYIiyNbVoDO5qWA3pMawjRxVVq3ZG6aDfHlaosgDl2j5x+UmOzZJEuHua\nwXvlJnaakwAoME4nV45R7rDJ7IhICVIoo2i/ddIQ80rp3k0NlrTvj0Cp9CEw\nnRi8\r\n=YOsv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"62b0d984bf149ce1ad8083ed63a795871fa024b5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190311_1552284943971_0.44737368539340716","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190312":{"name":"typescript","version":"3.4.0-dev.20190312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190312","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6e998e2e3d23784bbdf8c20b34352cbf5435867b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190312.tgz","fileCount":83,"integrity":"sha512-e7hwfNOqmlPt3rTcH8mb17U876KLHQ/3tGaqFPzvi4VvXA7aRfygmPi0f51yRmTQ/Lu9Aq0zDIDi+ktSyMozTQ==","signatures":[{"sig":"MEUCIC7EbZcRVPpUnW0fN2Ek0jikGet2nushFVJTm+yABDC5AiEA9qcwdxIMHbmgIrqAby2NkkJNmrQPdSR5shupdoYVDcY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43871147,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJch053CRA9TVsSAnZWagAAXqIP+gJju83rumdVNC7IAZsq\nI2XVR8y6lrKc0hFYeFMVQT6up3vKrRn5WhxAsfe0gXlIrnn6M+1RCa/M0Fbb\nVnQ8AYPUisuQbWqu8fN7KI8H7c2Ol1vjaGlHQkZ700nXI8euE2zOAaK9J/S8\nbefKWuMUXOEn3PBATVEC9r4exPrEd1jqNW7oV9QkQ1/qLPkKy0CSg6nrKtFS\n6WD17KKYcQGRh7qXgRh4QBML5cD34SrTKIZOSMHBgHHM7/JWTaVsng2OwpX0\nlKQqs3ROSGRFAGqQJKJVPvbJ3SJ0lKoPV574DigI4Pgt1e+HrkUXDbmY77sU\nGbyoScJ2kkQbUlW+n6qrznEbjQfDmRbIlKF0HOlRhDYqGjtWR+iihywlZcTy\nxlaFyYCmpD9QX84Z9+qLzvS3NkqDdGr0r4dZz0Z4+FbxNr9edNqmmi9KdE4e\nk8H8dGsX4G9Rj6cXF+2sxcBK5z/06jYtxYcOwFpO3YoTSLG9axvsYl8HoHmn\nwy8xicoFkwOqyrpEuqioV+a5YtDgshNaz+/IaaLJJrc0Wus9iHhPpxfoyY5X\nFUypqrCxOBCoujy9lwNoJWsfZYwq/2MKQlwxrC4cFBjDcL9mBSwa6Ad0UJ/h\nLaujhE7UUF4j+mfCyqZHTbQmj1O1mzSj67JlPSsBTvmuHQguyS2X80t383XO\nSc97\r\n=eQJ+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b97b1a8de65cfd187e91b6056ad2fa9692644cd6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190312_1552371318947_0.15067369073366832","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190313":{"name":"typescript","version":"3.4.0-dev.20190313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190313","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"88d5a5a6a231cba4b26c68b68fe2e20c348fc69c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190313.tgz","fileCount":83,"integrity":"sha512-ocZcV6d4pEAlPvcT1LJFR+Do2w455JW52D28HPFcGgJb8LOpeY05+buD/e/Hlgfyb28FVI91Tt2pApT9XS+Jzg==","signatures":[{"sig":"MEUCIGwbbZ48Z1UxbVZ7kU8A+i8YsuOYz2esIHVOGFxuMht0AiEAnK6jEMdg0gc3DsfjrPq6E3cGLUuuBId9IAEtt3ikuk0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43894188,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJciJ/uCRA9TVsSAnZWagAA4hYQAIYHmxD1Ifk76Fz2WSwL\nONsR8KEdTyWyoUHFjy16hlWTDcKXLn/VhkDXQ7BczR5Z436/ni2fpa+SwmdO\nU3baGWX0A7Bd6m+Nz5la/YhTD5pDDsvzoVXbPSryxXRhxXU2b36yyrd1Y+aC\naCu/+WGEBk3wo8QR7oSbQRcF3V3hz50ibsRz+loZGbgjXab4baHfTDXeTQBn\niXbqD9q3GJw7UpAiddiuK0+HapPwTOumgjVY2EwkWLqOIE8VIHlQ9Pr50oMe\nqVgJTWxT8CRCE1Jwj2Ru04agLXY6QEC9VUGLcQHFidOZmOKD0rKsOfJkeiev\nFN9JaFegHU/0675FCDVny/Sh8OoPSuN7lDiUJjdMnoak9gFYS1jM5NE8Vy3k\n5S1uIuYGsrudMaar/FDZjZvD1JUzk1y7fJ8+BdYR857w6JwwDfGQRuE3ZUye\nLigUZs+Nj756uJvzFodVGyvawBc1wy9l/uZ5AlkwMqVHyckpOjGQ+kS1WP4c\nD4MSeu5rVGBRSk21VqOkp6xv4MJxmjI37KntwdlGcf/OBjVgutD6r+44qzoK\nbOdKqEWVdyi4SAF815kaCl6L48f+zR6VWRDTymHNAe/UJGmPU0CRiAg1Anby\nZUSermsRqmiYQTFaozR3pqETwsnv9ijdUusKQc/Fcq6SoF004D1d6WEgjYMC\nd5p8\r\n=QPRq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"1463b327fc1745686812a82053a93b0dd02f7615","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190313_1552457708122_0.3976663756037373","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190314":{"name":"typescript","version":"3.4.0-dev.20190314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190314","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f270e15f86300c29faad3ebc2540b1e5e7035d65","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190314.tgz","fileCount":83,"integrity":"sha512-UV2x1s6cObFUxCZdtViQNHA9WBmIIzY24mc++2mfjS6FpkuVWGHO7JpO8vi7fnhcRp+GadeXLlx8mKFtGdeeNg==","signatures":[{"sig":"MEQCIDbhkEk5++HGWGTdksp/fJX5+dfmBdza4F0bdHf33laPAiAPst2lS66z8rxR2SBUUpFOnMnEg0fqtaVpLwK8hmTjKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43912133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcifEmCRA9TVsSAnZWagAASt8P/0jpkumFKwSE3JG7sMc8\nYrJ8B0d4fV6gW3XWOjy9m6yUXLW60j83oj1qwN2rc6cZ9/H9Wk9K54YEZ2JI\nX2K61yLStFvIFe7rafQT0tZb2Jq1vyq/1VDuyqFZi8oSYjvtkIdFFxu+icEa\nRSBzws+sZ4i1kpJWG+wKvRDTbxdwr6QYeqj2n3vMTEKwzL2vK52RSvOYsOhk\nsAdzXlclInue3D/0GYjlfITH1r0O+nKjt+GTUk9s5/iOq7U84kaUw7HyGPew\nKDbSHSBj06GjoY0MkBk6TqdHAv+oOJWW2pzl6vAw378llm1CyXm620hIj0Zj\ndFWgpHsU/Jmn7JNXofHUBYvuBQHtuuL/WzXYuom9udIuA0VDV8tl1VUtZ7Du\n/Cj/Vojq2uQEo0Fj37OMXblMIGxRrXOpVDifUaf7MguEtzaWBI/mi0ZAzCf6\nL/VkRVeyrLltAQ6wJtLlROkGgO0bkPdHREKfwIN/qBK2sn433R4DN6HFp5Kk\ngWFGqvJ0D/8ThUYvbzYDjH8qcfbLxrgXjR4rG5obBer7J5xjbTaa0ICuvK4e\nmUAlm+QIoWvKWx6JYvyIuyasOaXRcineJegwQbKEcVechb7PLSVISFWdxTQu\nTeFJOw2TzwQDg6Wz6JyWb+ZN6GDizYtZNq3FtFpymv1EAiTqeQ0AFd1UtMYf\ncxX2\r\n=BhpU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2961bc3fc0ea1117d4e53bc8e97fa76119bc33e3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190314_1552544037611_0.008714261057229278","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190315":{"name":"typescript","version":"3.4.0-dev.20190315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190315","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b427ed583541aa187ef073b711e5dc242edefca5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190315.tgz","fileCount":83,"integrity":"sha512-AmAGWYv52Bka/q20YNFy3jRiPMgAmWssti5uLTzFoPyuuzCd/GPmxm+j3iYm22ShrrDJw8biPxVDTq3DnOIaWA==","signatures":[{"sig":"MEUCIBxYnE77kH3vkPTzwAdhDgmbrj0vXi6nb7jKr2WQnw8ZAiEA8LwZO5j+ZUQZn3Idkh/i0fB502StVyvT6Kg8LOJebGo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43920351,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJci0LeCRA9TVsSAnZWagAA2poP/AhXbwbT3sIjZnhf185f\nJMZhXjUsI6QkVAiRAZxzIl6SJcfuG5lRZd8LD4s211X5tYA/dVjIB3bsHXs/\njfSVKMIZLZ1+AZD3Dx1fhat3lg9WZ5BM55XpXFWYFj/jFLRYPYJkXB/e93fK\nrj/pKI8tPlcfP1GSLVaCrXxyZlAmUYTC5XzY9oVJ0N7JdTY06I8rL4exu7vO\nfCxvoivifqhPzBTdXaIpv6zqT1UJTWDdxEiEebCHdF5PRR33f1ZjynGpWM6Z\n7/2BryIeH6Tjs8zeM6PI99t0mAogLke4tT357+B4i/6MouqbQf+pWwd3IyUB\nH2njiDRhoOrS06CX1Vv6ojppqnMrFggI8q63WXp0gERl5xYq+/Ve2MlrbjY6\n0sN6hQILNAOhRniAklW9WeP9z/enKjmRTQD/N7Pwfw8T5uOlh+HxfW1g5qNB\nEr0DIEYRxf0R0EA8RdCwcyvKCJByoDBsJDsndGcUNmgWxVqP6fiUZ92thVHk\nVz7wQiJw7hf6k4gxJIe+eqY4wjdu/t8TR7EhwxwXIQGLI0vvwCiT+HlA0MRA\nC+YLg3L5+v3v7Q4hg1n4pUpYkJWct4mn82m9qX7AOPjKPyhp2HwCNjO3zIuU\n5PwuovmydoLNWb2AjKSUfNLPyMNx7r3eI5UovNK+EtK1IpTwIErYZyiZMP3/\nDNT5\r\n=byMn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"563593b8be8aa20a1e631c2c9b52b7b4208b9e01","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190315_1552630493175_0.9042561143981598","host":"s3://npm-registry-packages"}},"3.4.0-rc":{"name":"typescript","version":"3.4.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bc4026c3c517a30fa514b896f2684c6ba92caadb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-rc.tgz","fileCount":83,"integrity":"sha512-wtm2GwuV0Yy2zvmpFaMDtWHnRbzfERi9FLpL+K+JqGkHoclgEQ6TmD1AMxMIjs80NWRIq0Xp1veQyuZbGsUYsg==","signatures":[{"sig":"MEUCIGEUwdLmeB1pbmIflCyuV/UwdHA0R8RBlXzZiHtzsHlrAiEAsYJaFh5L17uOuzsn13NI6UaD2ot55LFT3Z37qSASRVc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43920912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcjCDoCRA9TVsSAnZWagAAHW0P/2cD5Wg1B7SVGhR9VZ2U\ngvq5vY+VAFPMGAoCQA65LZKdVd0zxuoLl1aOMv2oNdnmO0AHP/qogZyvsSHW\nVRL8s86OI0wUwWJ3WqyLTY9e8kGZBp3VhEYs9U+dyJYO+UhbCJkAhnACfCIi\nHhvudMHsXJItaf01BKSrtLE65zJMGsRPHx44Vaocb5Sk0k+Uk01QO3Pb4dF/\nIkg73UD8SjNoRlQvBwnp52Myu2flLyOaPFEpta3clwE3TtwwKgTvhD4ADK8T\nJWsA3Wrxrel5QUFdcpmefFxKl9NnNAkMOA5/v5gTGERKCAoOss8/s9rO8FfE\nJ5joq/45/7/+8ltNFdkKv/V5IrWgLep44mhBH1zef+ZoM9BXo13+JaTlCCFs\n+TQZiRABkbqyq/qO9h54LHyCHBQcMIQQyjcUAOYmIV7hJ5scoTXogU+U+k+i\nl6nVOs7gW3yQM3Ok7sdOyGVzgJVJYZmjLlkX367E7Xiou1MA1lBksUF9eFyj\njJdpksn8JWMuyDwAeGF2KYrb9x9Qcfd5h3gYxW6QheqzLjzVDaIr6kf5/8io\n4V1p5EcuJxBRpdbYhnHRtfOk/EF5It0UIU/1GicwKdcOnq37P/wnioKpCiTU\nWZld5mGjknxNtJO2gWFlmB2jdSUAwcEVop888oVHu0a3WWKjqjcVoKrsoJuS\nsucr\r\n=3QNh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-rc_1552687335306_0.6407205895371664","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190316":{"name":"typescript","version":"3.4.0-dev.20190316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190316","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"484348eeae7e95e307d0f9ab9df81a8450303c39","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190316.tgz","fileCount":83,"integrity":"sha512-BMkCN4Eb1L4pJi7aU+y6rvDrO9v0qEJ/vdXFapdCX3I3q5bT4/77oGXP7gFQkpaUDnxs+m907PGQYiClITDpng==","signatures":[{"sig":"MEUCIH/63JzLeMfAxT5Q9KazgDzday8c4uvmp6K7w+Q0gHcPAiEAjmSa72MVccEUrsG9t53ZpC4uCcuurCT5jgLgsXJmmJY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43923815,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcjJSgCRA9TVsSAnZWagAAqbMP/jNP4X2L/n1B42gJn1tK\nbX+awR3/oVxkuzl8LhtFYuSt30dSeM0V7rEx6ZaALWu0ssSpU+thLQrO43hh\nowmP5SsQIXbuiZz79IaXPC2yKOLdMX8BomeNRrC6xcOaxfv5p1qO1O5dy1NI\nRlzwQl0eGmFqf6JqKS8GKHPTWop0hCtIFKVqvyX/UvBGPMnSGpcXXHHPiIgo\nq286ZbSS77t3CGBRLYqAvGR3XWiD2+uf7d0YKDhVsxPdCzRlklH+gt2aSwKN\ndx8FwEa1kdab6zDEB+LAesXj66aOCTe0qneL3cmyOOCqBrFuM5t9wMK00F7J\nhoXeDsfb1MA9rFt+9LT/47ry3kBymxtBwl1KCtHWT1e+C+Vdh4s+I/ZXWVDD\nFqnbJOS2tAJOiidQXhTWoGSuoZPC4/nL/QfX78DH5uQKDhw6gpY1ti4TdJDJ\nyl3EzNfJN1FoCNe9eEPVjccaug7XUtdcIVeJ/KyNz22PMfPX5b4cCs7SZl+D\ny1mcgKdQnrQVL1KT927UlAzWeGA/YXpdCFc8I8fEO1fJhlcJC1rdj1W6MxT/\na/F1fcrWDPsIv29Jmv0kO2AinF7YAq3MpY4QOLwpNRMeC7jGVcy7y0vnBFzR\npTDTm++MTzMiuS1yzWb15JCYINOmQr8za+zAWe7vSXKqsJFKBGldRVUTZskb\nVohj\r\n=amsf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"658798032b5b505e8432081f1619c6ae38ef8cbd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190316_1552716959088_0.5730508610428364","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190319":{"name":"typescript","version":"3.4.0-dev.20190319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190319","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7b57c2e975aea2216e172993dbd51bf9f749a4e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190319.tgz","fileCount":83,"integrity":"sha512-07xlAz0ntyntHs8sDMqy3JMjTV/yfWhOuPcmJWCQCQehDWBD/YyrBDOOvHgACTBuiE+bIjkTaT7J14nz32dkZw==","signatures":[{"sig":"MEYCIQDcqiKHqeSrSWbUdEZX9POAJeb2VMPBFON+fqJTbH+6GwIhAPh3vUwalNmA16/eKTKRhU5oORPpVtfchpOyBL7jP55o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43923237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckIkKCRA9TVsSAnZWagAAGu4P/2emxDTrGmkYI9jaAGvS\nY4tfkigA8CYef2LhFmO840fXwfXrvyLiIn1AywYw5lU99wn51DAELZ4gPjO7\nlwuctb+PfCEi5jVuHaMVk36iBs8M4XzPlY47VcM4RcWNEICNCcM2Sr+ybuLc\nio7H0LjpZP3F4fTm8zu54loB4Ah2VItTcy1cnUXVlX11ErYSmofpT/zFJoM/\nu47Rg1IOIcaVHuO69kSElJ4cAY8yLj3cmDSBH13BS9A4Ldy14GPH/DRxjPC5\n/tZfO2rFRiUjy//TEKBBF3D0V/krTCpmmzI4mg7Spqy93gbK9h39Els28p7M\nu6Z5NnPcOQuM5Y1yNY8nnr3fObJwwCY9JyW6DYMdaGA7YyRSiCBM8GIZdz+4\n9rTxgOPL3HXMbxq7gOrPbsjvTuBKGZRqamgRgYm0kmuVMzl7B2rCZuu7Hl+X\n4EaoYhumjzMsxpmgXDnU3T9Q49oUFP2iF+UsyiZ+qu3/JwWND0EqsTrHFkqA\nvmXzoXwcpCApsVNYibxmIqEFW4bPwLQK10Cfuw/a6zn9CmkszT4Ot2fHDXRI\nEodjtkujWzrUD46paLRfGfITEvcYFo1uQUmQog0glOueW1exc/kusIBAkvkj\nEJy9kCZYkzN5pNBD73a9GRGHrXgXo5xbYgte5d7f90SVq4TUZy4T0jptJEp8\nCT/u\r\n=zSvA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9e28a811c5670ebfd233d592c936d3b7afcd7b8f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190319_1552976137342_0.24245965898563648","host":"s3://npm-registry-packages"}},"3.3.4000":{"name":"typescript","version":"3.3.4000","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.3.4000","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"76b0f89cfdbf97827e1112d64f283f1151d6adf0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.3.4000.tgz","fileCount":77,"integrity":"sha512-jjOcCZvpkl2+z7JFn0yBOoLQyLoIkNZAs/fYJkUG6VKy6zLPHJGfQJYFHzibB6GJaF/8QrcECtlQ5cpvRHSMEA==","signatures":[{"sig":"MEYCIQC6BYhBJ84G15BjDeM3FNa/VM9tH53A9O7E/6dBkd6PDwIhAPZKKGzEhgxN2rnUbRema601NLptNleJzLzNBY6OrxUl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42940006,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckX8ECRA9TVsSAnZWagAAMPwP/RRxbdK7wUa7nwtztFhO\necHvDQVIf5AIoFbZ1s4bBui1cbP4SazVMqBqCUEr1et7gvxHmVPieSKj4hhR\nV2phMUe74GwMZRT6Sjn7rMU/OZGXY0oKwxUaxlp9EpQWI5P3vhesNnBwXv3G\nuJp0V6HkU4dRcun/hdyvg/+89z40MXlS1ELnFZR0AmmKY3GsHV2AwXoZ1Hv0\nubprYNYzwB1M7Gm513g2dgcojV5vLgIfKk6xOfdl86l1Snd3ENbjIfDlUbeB\n3KqepfDMA8noog5yWSJEIEwn6HMb7HRf3msCKC6dNvBhXw6v4cObSqsB/hAx\nhXnI38k/IjQ/cvXb2pY4A8gIuD60OyrXUz3+jp4dysoI3ldHlNj1feYTE3d6\n8WxjUvaCBHP3p4dWfAqWL39J3WcegiTpjzpA34zPUkOizfnOZJ7wf7ocXoRe\npbcLP9pTzmuKe7SnNqjqaSADLgZgtIX22Zl+4vk17AX7IMGlOO9wCvLTt49O\nQJ/hDUOv4W79L4zbZMRwvqCRx6XVMTtG3Fr3hlh2hylnqaEYYoHKheZZfkqo\n20d2xeFlR8XvoLHa3FYVrzK3UbcBKyqyOADnl6nhmQBYA/6yQGy1MQ5xQ2BJ\nC24/tseuqu16pkISWs+Pw5yXy0FpQO2cPxkZ9oXe5sGIye5GyXcVwHhcTO3f\nQiY1\r\n=Pk61\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"69900764f042feca59d800c8aefb4a77a679af7d","scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.4.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.3.4000_1553039106998_0.7682057527717583","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190320":{"name":"typescript","version":"3.4.0-dev.20190320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190320","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2abf8d68e863d96a806b0741f201a008655c41b8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190320.tgz","fileCount":83,"integrity":"sha512-xNNF2uNgtGP+XaLFZ/wbGoKWc6/YVDKnYPdPO5IN2s95HEz+Ilv4Nc4p4Gni3SKdQfXBCXjwq9C4jlFFEDFv7w==","signatures":[{"sig":"MEYCIQDkiEfruPyOo7b3OgDwhDSb1NP2v+bFPjy8p5TpgM2gFwIhAL5qe5wfG222EVuaTIRO3zSQPkICqIy216Mgyi/MdKia","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43932443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckdp+CRA9TVsSAnZWagAAr0kP/2QG71f4E29tj55v97bu\nxdHg2Q1ejUEA/g6d+Z8zxwg5buBNKcQXaXyjQLTuVXTMSc0GrIObFNeY3uT7\nMAyAlYWBd1eimgOdy9HZItkQMUMb8KP/BbGkyCf79VNyJpAV5ixS6y9Y2w+r\nMepGf9i8rvjRyXMpgUD2WcRUpLhsA5QVdN6AMXIy3tG9NZWiUImIw4ZIz7Yf\nbaq/ngn2sUuYj5X4O5YkzSKLmrPeHAFTggqwX2sesh4fKWRO382XZ+NzgKgs\nHAbXUvZJPGLk+RQBQD0xeWKHRDaa9pu2ok8YeZPIldAjwnmJl0vgiBiwknhM\npzRtQ41W2GHcrcmChT1xQzmLbHFgoxgEdwm7jhAEqmD8OwDuwqeaPp0vIGlV\nCZrX+fiK37Z9McQqDcIw3dV/ciGIZ+vcZ8DL1390gjkJvex28foW6oOG0Hmo\nv8kJCQbnqZrxSpJQnU30IXtuRDjDaKtBboepUs9xlB6qdj+kXm8tWEBjRhYq\nWADaEFGxzn47mVisNyvl79C8R8JHg+prkiF2uZH5B4c03bVVfayDwcpzJPiF\nZGDMtfQPcr2CfzwbZyo5DJ7lC4YiaRShTr5xV/KAV21ZYXaallouOOLVZxAL\nuLqCDi4ehGfkO5yAblhiLxYiVVkpEaGM5q9in0QRHg/st4p9i7682SgKqpEb\nQ0Xh\r\n=2lnk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cfb0adeadf1f21b5f8201cb2c0765f3f4467633f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190320_1553062525425_0.23414236339133843","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190321":{"name":"typescript","version":"3.4.0-dev.20190321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190321","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"887c7a0f8373d220890f97e391e8360588cf412c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190321.tgz","fileCount":83,"integrity":"sha512-n78Ezcid9V2FvMJI9U83IyITMEPpWm5aQR9om0F6Hux9y06HA2IZln5eH0SKHuzj1oPj/NQY26Gc//gJP0447Q==","signatures":[{"sig":"MEYCIQCFNRgLnjK9iPTYXrm/9+A4RTV+tDEO3fdaqk0K64Bf1wIhAJcux++Tme/QnkeN/Tr0rAaa5iNCZs6S/RT09XyngoNt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43951145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckyw3CRA9TVsSAnZWagAAKwkQAJO8FMtgZBHWKP17W2v4\nZ+y7RaHXU6DkgWU1kXXjWlSRmNNl6R0BCIJJw4gf/EqSVpihQz1f1nwA0je5\n1gg9UAMVJWIErRny0yNuL4KsrF4q8W6B+XNg3ZN/IAvBLiFgL5J8/Pl5xbyc\nu8jpfYqij/o5pz46LBbfgyINaEVve7zMs8xXH5L4sgyYOigWjDEq5cHUKCc6\nwNZ0dO7+66L8VwVmBniqSHGV+jvvghKUOMpJhDgZjZ5NnBqlFKGCk0InYMU+\nxeOKZFzkgMQy2rkb/bHYnq/37RQoUWO163ugr9dLs7dpI0JEa2h4eYUupmK5\n/szjfx6ZiMDkkSxADeY/voXM3sdy1b1sFGv9t884RgACZvXSzrkYjDS4Fg3W\nYsL+WJchzg4SxEbHtlvgYhzEplDm2nCDT0EeBqn6G1Q01GM/t1b703o5OgmA\ngX0mwFMEIErfVLW9YTq0xuwN27WNoQzTYdaSovEgvRgk2fLy2wYunHmHytFp\nIveazzELnXaDkY+Xd9RcXUB92QGr0mjAQmzJF5/DO5zX1v8BwY/FE+Oda92V\nvE7yhxUw62vnUpi2DJCJsrckBMYETuRkkXizxBzgMfGl6JgZw1KrwPNyYsnr\nSe5su1j6/XMo/gsuCXJIrOAvOoS3Irw7hJj+lcgaSOL1N2GuPJ7SMJTESaUV\nz/No\r\n=gVZ4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2932421370df720f0ccfea63aaf628e32e881429","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190321_1553148982928_0.1893899810099402","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190322":{"name":"typescript","version":"3.4.0-dev.20190322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190322","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"192c0579cfdd8cb6eb1ff5057e15ed1c57aeabaf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190322.tgz","fileCount":83,"integrity":"sha512-/ZGoJYaBRZSYEeJlUGjlkIv5bXuMrM4Cf5hoQ/vDJYIYlvcXYcChWJqcTjzWW1Nly+iQYOKeEqxfudK5yszyDw==","signatures":[{"sig":"MEUCIQDE+INUwy+KnFhHPUdGjZ3bvMmiv7FLIXLrZtOlF7S5twIgM2pLvnTZ6DOk04RlkEXXVCeLU3saClQNMqReteEjcQE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43947128,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclH15CRA9TVsSAnZWagAAStcP/3wtLZjAyab0sKBx2tkG\nFEM19p1SB2BAzyGO+vYe0GzutJlKrfOsDevYQDrsqEXMxS4i9xQ7gi4HlgNO\nXbT+AtaMYMNU/5d4AnGbuBjDzJV/nHHwY1s6R1XmmiHAygI8vu39doql/tfJ\neUcwlkZG2C7Ak8N38TJ8pQIW3SfcaFC6An2MByJ1tCXKiD34kf6c2x4dZ9T+\ne4ZU6yeE2rbA2nDk7RI/FzNIXkf6JJ0xVTlN44FNXFGmphOgDvZHqLsKBKRz\nXRONxkg+mE9GYY+POY1iHQrW36mZPr/nRCNk0BMdQd/FnLihI4na2oxLRxdS\ne6Y1+OChM8/DO7BIp8isyPobvflzbWQngr3eTtXfXTInXKY08flbF5NSYa8T\nvqJg+LDqLunLjxLRTf69OLVcvG10svEPcnFYWLKYQVx7bzKsXa7vsEQM9MQ2\nwAaNhhRA1me2eAZ80qeArd3dr+tw/TVxr8GtCJuRGGfb/m9SyK+w/3EMRoys\nEIOCtQSV4FfrnVC3xtJOvPtYrC4grSoJoFnWb0Xd80fYhngm42TmG7sZVxzO\nE4l4LUZ+O3qUBLQyKT3WlL+mKResB30Ox4gzm7Fg9ebKpF23/4aI4yvgxz3h\n3gV32DWYj70p+sjqPI3+7F+Yq9qHZsshSiYAW6hC12jX32GbPanvZ4BDURcg\nnC/Y\r\n=lf0O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b86dea03f2ca8ba71f46383dd5e7895fa5741143","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190322_1553235319684_0.6470912278252019","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190323":{"name":"typescript","version":"3.4.0-dev.20190323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190323","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"044b7f85a5349c3e7b421e8b7712e393c52ed78c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190323.tgz","fileCount":83,"integrity":"sha512-fMhSnWPbHHDiXZ3+YoKgjFsp9YyETddNLeSjKE4CsnFFTTc5uA9GNipN1pDvnPmvimTCyLbOWNmuCy6uqGV8QQ==","signatures":[{"sig":"MEUCIQDFtR8t47nGoEfievElNx3vrkot9hiLEfwl86GjaJhaIQIgXVsTvBV0LhRnlQSLCERDA7ozeUOhqvtgTc4IxrbymD0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43957276,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJclc9MCRA9TVsSAnZWagAA5fEP+QGC4F7Kmj8y/ezqStBI\nMme/5SdS8x4EdCBV1C60vfvJayhlaoBNH66wtPwIaq7t8I8YwyRXEkpi8pCT\nwecwCPT+Uu0fIygfEsnnzjDNMMaAMAAIcv5YyDLz9Jd7jAE39gxayLfuCPkS\nRatk3/Uq/sYmIPA3r1woMopaYRtzzh9TBv0GZTY0iykkXr5T2Mv2QBsqPZGh\n9BPMFfCNk1rTNlPXMFg8lY7vjT+iygXPzHUFfiC/KQS0i4kyBEpZEev4AVJR\noD/9uq1IrdIRrNtCsR4HVQKEO9M3RHM+MD8yaza9N5aKqmvmVg7MwioIIPtQ\nT7qLlfEChLV4zT/+n7QsbmjI7EiKkB2DT5i/2wm0befj/nBwhlmioTDuP9E1\nj3ObxeMouedGh5YFRgEDlwN5ep+JmQDeoXE/U0i0N2cgvK9DRX62mHphcXht\nKB8MAKc56ZwlQnJAsGeaghT9D9vvJBFvmpA6DxmW5Imgd+KtesCzqNcjl/7f\nyIY6DmB2HNqaIGAG6z08t+ZPyqOA1DehBVsMNmZ5z1FyLWz07w1DT6tRBghd\nJqfIpmfemTiMuI3w6UUj8v7wpFENYC82SXsr++yKciXUgoK7HYBKZj0T0fNE\njcnmNPQKup/0VP8jXyEsKE6+EC+eF//HJlAF0C6TDOpsWJspqXqfbyD+uY6B\niuAP\r\n=Ca6f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e20b87f66dc232f6366e5eee2c57f68fa96548dc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190323_1553321803531_0.12112735536662544","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190326":{"name":"typescript","version":"3.4.0-dev.20190326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190326","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"69c67904f24024c13d08b784de66462470097f37","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190326.tgz","fileCount":83,"integrity":"sha512-W45DtiS4kt+RZEeeyrAS62dwldwSIFu33VZnuDiDI5uGJeZ8XirV4DAgsMcQmKt3UqguyJfNMut6eBN9TFLnOw==","signatures":[{"sig":"MEQCIDDJ3xzEiSgqbToCa9A2+DE+8q6SHBKkJ4GoVNw4/UrYAiA5oSo+QPaSiG2+5FTqUhRnA9979gXCBjkmConYKvbCrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43964316,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcmcOpCRA9TVsSAnZWagAAuFgP/3of3qrfEU/li0VgxlIb\ncq9V6z+E80ibWyL0+4OXHNIZmkjlItURz0ImtWNHvA6ZNPjIjvyh0SU2LXMF\ncrAkWfkbTlC6ERBSzCs5pA8WZmqa3yU18mZr1ABJicyD7jbAkaEFG5Cf80zb\nMieIYj+xioDSq6Z6I8hDFf83jKxmqMTlqXgG+QHuDU75mqxzPvGSdZSNUg0w\nmF+UwSWvtMxUD8AwvcWLwhZR67oUE29nSOFr6To6n7IPnoUd41UuDBtMswCv\nY4p1p8croLwMOEb2IyRttYrRzTkWdu4g7dx1eZgVBGPNMCAjJdrcfcGKPgfb\naYiTmLwTeijEtenbCdox24pPZV9xPoFtf5+uPV+O5w+dluGFPBtrBoITej5Q\n2pGvMoa9gtv+3uwW+DvoSjj3XOSQsM7/1OnKPePlVnN8e5D0lT0GuAxxh2Mx\nvJC8jjolf5GRCe4yy3f50zQ+0Znt7/8Qm7nl/wYtrGRrT5coAjSjhTyMxPIZ\n24ZI0qJjWafbedjlqA0uoW3guZnQpqD7BNLlG3ZQWaLgdA4i9Oi8D0ZHVl+Z\nF4mq0J9rCUFWgkxv546L8Nk3TRo9NLTursH+mHaGs9QsENCKJWX715lJUPOs\njytSoyrkuKM8P9730YMmMvOu+5I9Sn6+l0GPSvbFoinn1pIjaIbP5LhO6sad\nkZBE\r\n=0fQU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"32054f1c31b73f8c2c824e5b4fa66af481c94dfb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190326_1553580968757_0.8681457544472815","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190327":{"name":"typescript","version":"3.4.0-dev.20190327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190327","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0c4e1a8180d4d9759e3716de2ee9c4ee60dcb73d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190327.tgz","fileCount":83,"integrity":"sha512-1c8aI965AbksBILZpa2YoYnn57tulmVAKHRvWNOUHY3apIDl8BE+CgmdYTm2zqTgqRZsAPHgHqI8MydiPbAGRA==","signatures":[{"sig":"MEUCIGVgEHooTEDttEP+A/RnSLWe3Lgt0JOIfctkr34qZhd9AiEA7bauxeVjwDCfZ5kGU9wWtKX4ymZdLmHtFsjXlAPHIcQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43974883,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcmxUICRA9TVsSAnZWagAAot0P/jTDDMJk2izoyCwfuQ6a\n8Xu5ERtZUTz3GDhAntd4llqrYl6YzdVSKEhzjI615tDGyMjlhWAh/o5pEr2o\nOmR7+e5L7QvzGuR9CiSxX6CTrTupsZ5eUpwmt+kfI8y/817a1DdhKfTXnlce\nVI8Jta5mjBpal/KLQCwUwhq/WPG01ea2EJHRP9quX2W161Vti6nBOWrSejvy\n0CZOM1wOEoTjtQu7e3dFSqypTrk0gviUTTJn1+T9lxf4BtIrGkS7Dqcr9xyA\n7ILsazHhuxr7yjQCMjXC9StAUgNHaJDny71SOFqpVFT9QGKqKl3ksKbYrNSU\nfLHmguzj9Ej3Bdq1R6I0/Eb8Xh+nX0Qg4vDUDrr6Kaa3Wsi6V7OsMIV2Zv6S\nfLf4wnx2gIlki/pzOZSg5GZ9cFWJyMDWKeKNMPZLVbRk0UhaEj0ttYE3i05p\nfg1ulz/2yhN4XG2587suZ1W273ycqbRBIIZrYK8S/vP9NWRbPsBfz0mecKgq\nmwlpdkIgeptojLEB0vGOeZKu4cnx2PP1giPoYVDLPJIjY80Dvtoqy24bpJp7\n9X6A+dORNzcvUA62KHyzRd/Y4GxxRklywMel+/1bwNwPe3D2X5aaDoNbqMf3\n0NETqtiAFw2EZJSL/Ju8R8DptE87L2ldbbCyX+5g19VxzFwDiVWC8WmeY26P\nDewf\r\n=w6IK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"307bf395720191a79e1d4c8f86f7ecc0b9b49d99","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190327_1553667335130_0.693888875713129","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190328":{"name":"typescript","version":"3.4.0-dev.20190328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190328","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0f68d6aa82ed22be7d3487da952e2c5124456fc9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190328.tgz","fileCount":83,"integrity":"sha512-AxuH0jehMJT5TGqWgsuQECJo7OfQY62meMZps6WWCWC1dOX24aEbMONZ8KT5PPAm6Vd7wjfngKGzgSA8nWVRcg==","signatures":[{"sig":"MEQCIALjDE2U8Ba1wbq9APtlrzDWfrPGC07gIF8nENsotmnnAiBX3TKDsQqAFpSbLRzp31WEg4u/rDFyXlX4WUqgduwQhA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43975821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnGaMCRA9TVsSAnZWagAAFt8P/3CLLvaveTryMEWkpIMx\no07VUkQp/KV2M4V02NPC5cR0JDbHEPx5EmVEqaHNNRf9AQCr0HBJPPPkobTA\nqNe0mQVB35Zff4VwjGmEvVTU5Ctwr8WGRVxnaW7ugxmkwllTvB5b7aKUGq1I\n4wQKCOY+Un1QXDYZlY7wvMfzSHoFBppK8wj++t6DB9BcSoFfy3s/bV4u+Ery\n5yaF7rjTBRufHw5LY72/32yh8mXiErjZ/qYv6od7uyvwNSM9IGJUZszcH6C6\nQ6DBfaqmfzKH98R2fV8gJ9sWRdeKmjdoAd3R3Gxz5VMZTB8P0DbkfGXUM1l2\n09nFVlT8d5JUaRLo02ipOh9QddLuVqfKnaHZGe7L1FnqeTaNsTmCF4QMUGYV\nV0jy66sOyzFISHZHvRPXmh6FDhPOx9P+WyuPMnn6q+pLrjJ5fhEi4gHlCgGD\n+h/Yk2ooILIoMGDoCHRwG1Yjqi4lsEWLZ0lShXxtjR9SUNwJ9ozulZgi1e76\nxap8UW8zXFVEoeHC0jZf8iyC6ChWnQzf9owxR4MesXEvV8ZwWy9Qp/j8NSNr\nNPfzKV26A5TBzVZfsaxAUoV88X7nEbwORSZ7//7Q/8mhHIPtgjY/QSsW0H2K\nCt0HtdS8BcZuEQ4tLlFam4lH3x7dys6p3jxwFSwS0IKXjY7IWf4Eiy6sEiTj\nlFqn\r\n=rLqS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b7881a26a0c635d666cbc7ab2df1d3c2962a9f6f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190328_1553753739431_0.8347681815020416","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190329":{"name":"typescript","version":"3.4.0-dev.20190329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190329","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c7f63d57cb3d1cfc7c369ce6322ff47761d500fb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190329.tgz","fileCount":83,"integrity":"sha512-iEJfMDxQlatDr6WQF5ywln+e5d4yfKSYxUW4brcrS5B+8AgSwdLbRn0VsYYcpG6AyFO0jUeAnuZVnpGvZgJtmw==","signatures":[{"sig":"MEUCICWj+6YJoAOyDBB9ZXMqnECcjVww+/vmmwAie1xaxzBxAiEA9O5sMEyAWM1hL5pZUE48+4ugnAWtM3XZw0m03vw1a2s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43994579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnbgICRA9TVsSAnZWagAACx0QAKO/12Ea0XDqsUk3H5Ah\nbt8ata2XG38QGzuK04mvZ2yBLNDAuMC7maHg5OmUw9UV5NKUyugQvPSaNIic\nJ63OEdRzuQBkg0y/yd3fCCQPVavqrQUSiIVfH+22TX59Xr6ywyWcgKqzA5r1\n2vK0t7ibtR31NVafBuKj/vpPTnj7K13L7BBuEXLOZM+B4oP+KGfZ32Iq9fQ+\nmBQpsBC8G7G3fSCZ5SkDxUoeS6Gy7NFQZcpFjDV0ZGaAupQuynvFxIAYeqX6\nz+3lcYnjaIZjqG3htjp1WkR2vdzb9W7UTLBc+tiNN7hjVwDnu071aNnJYlud\nbAW8/XDW4WBvFjFO1iQt9zfSnA2B6m9XtR9oQTorM0Rw5GM4RmWQ01QkvM4X\n9tnkumwxA/55yhWvfRPcOglDX3RWjqMhdaoVIqQZ23EgrtIVuzZSlTjw78y/\nhYsTTT2A93Y4M38GhBQG1XGlqQ2SI9tzeRAfClAC3jZMsdN1FW8DUmJ6mcE9\nilvmyElRx60FpVsMN7xh4V8cchgOXg2g9K7I758mFVYg8dFlloMjTMyuwMmY\nLbUuMvNUJntEdB7dyMtz9/bQk5LvtsRy6MdlPiX13z51dHNcG7X00wz1gUL1\nn+4+y6JnQpuDykCBofgIKNcxKVGaUwWKXue84qh2uHBEBqHYdtM7Z/gr7YGL\nekCd\r\n=dGZ/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"bb5eb025a80c61e2645fb440e2e3df0d752bdc1a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190329_1553840135266_0.38026768595679417","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"typescript","version":"3.4.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b6691be11a881ffa9a05765a205cb7383f3b63c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.1.tgz","fileCount":83,"integrity":"sha512-3NSMb2VzDQm8oBTLH6Nj55VVtUEpe/rgkIzMir0qVoLyjDZlnMBva0U6vDiV3IH+sl/Yu6oP5QwsAQtHPmDd2Q==","signatures":[{"sig":"MEUCIQD/ENsUK1IYOWcrjHTi5F4hsa3rDVx42+0/2gBCnlQS+wIgL6EGnNfK6tOG2bs87+uNIJ8Z9MrbsQvcpFJAcccqwWQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43975731,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnlhyCRA9TVsSAnZWagAA2LoP/3Nrr1mnt9ri4bMGzZvi\ntuw+ravZArgH7P15jf1oGFKd7Z+dAwO4Rzm6uWFR0n+ZNjo80qAvX2scEVI7\nfEB5YkQwNEzuHvTnC3IaT+/FvsjMyaJx1p+Am4XHikOBpfRCzZS9St4Be3V4\npcXLI1x9MHpbgsiByySOEqX/ga51vUfhn4xjEGB1oS7n/lFrwcJh2uGCQyVz\n491hW6xIjfvafWYcFSfQ80j59d0ReYYvmHXX5GhtSqef9K1c0o1EC11pcCol\neIvV3zHzXQmD2dmhsK/Om+3PoAZ8Hnx5+1yXc/zWCe647Kc93wr3YhMS+iTD\nTuKEES14Xbry+zoQet/aPBtCDy3p9lr+BB11ukT4GdK39AG6ODwYooowdz3E\n1OvuYC4OVddU9mkrrM7/NpkoXheRACuOzBo4izbXVPfgDUzRDwwVVRxbrf1p\n1uE0yHV11AarbrSdq+oiLySFkeYQ9nC244t9ZC2c2BkhuVNjHbQo0aiZ/oL4\nvX6Nww6QepOXee9TDFT1IUnvZPOO04ZhZHiq6fA5CudkRQxf0mOXg8Uj0m4e\nHmlaqEh86eIhTg8LJnSc0MX8vYxg4g9r7SjjPHbtwZqwEI4HrCOE4X1AVV5I\nfbH4TqykWxyY3YuDYf/y2g0jb7/jy33gvjks7p6ZCo3uzZ6uI5Sqla5vR/9d\n0Hhs\r\n=XCQk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.1_1553881201041_0.36626775382898735","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190330":{"name":"typescript","version":"3.4.0-dev.20190330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190330","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8f0ff21f8b559c92eae4b9d6cb7bd10e9adfe2e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190330.tgz","fileCount":83,"integrity":"sha512-w0LchV0iknmuvCbQ1EgqzUkeNZNvOznvbCwKaNZMOwGSOoE/jKxeswNfZGLerTScppmfCieQGAiGS9tRUvMBvg==","signatures":[{"sig":"MEUCIFcev/pIGOIRtaxurNUrxSnh/OkjFUHSGr7LhFkz32P4AiEAlVXI3/HURxHZhgTwJpj9mdLnUF7fdiJAkRv8WALnBNM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44001193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcnwmeCRA9TVsSAnZWagAA1kMP/RUMwpbfMsrncXhsS31s\nMocgaPbR125q1vmQN2SOp9YK6gJRW7rV/Dwhy3wlRa5cpIHxxEpqBKAcqAyg\nIa1VtAAF31RcX4MjIxuP4jBS+UkfXqTVZskiO54zb9RF8Q/A592JgBWQIBPC\ne96OFL587AkPBqtO/ylWItkEBqHKlqL2eq2MtXKZQ7wxq3e7fLY4aPl1fzM0\nCOMGYdVdIfPTw6QIaI5UUFIZnDBIMCA6vr4sib6L4pYROZzj0I7sLVkbkUNQ\nVOJXq7azT+JTBorVNXcMEWCpuVv7MqHWgOtNdG3+qTgoVQ9ksFAYeEFpGnqo\nqixRcq7hDb9QCJuKCEqsmSQoKC0KcmTm/ocNbdVJcNdTuKSNDjutbF2bptmP\nZlH/oJa0TZlrlWTy3pcSmJoXHsDHSHKAoumTZC53k3epA40i3UPd9x5EQpRU\nG/xTdDYi14od+GX6rv6SgfYCPkYlNDB2pEWQYQr9Ku31i8YgLrlEDl8XFxLg\nAMDtFi/XAqDoBHp0e1/9RtXiwtoLPovpqhyF3WtxcIwz576CCpTOJk/MfkO/\nrIRKHFvVImqJXD3Uv43AdTJfUrc9Rk/r0IA5WWcFLNG7XwBwek0Ha6VOm/Cf\nBH0+JGoFLx9bowuMIbXmrPme2ThxRtz8kWdgf6vOByQoz6TPiuI7Qqgeur8b\nhRjH\r\n=RsIM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"025d82633915b67003ea38ba40b9239a19721c13","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190330_1553926556857_0.06607667781617188","host":"s3://npm-registry-packages"}},"3.4.0-dev.20190403":{"name":"typescript","version":"3.4.0-dev.20190403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.0-dev.20190403","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f6a4c89b0d553458a75ce2f1bd9024a7fe8a5900","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.0-dev.20190403.tgz","fileCount":83,"integrity":"sha512-4X/fjZf/2S6MHGRyQeFf5IouVlnILqe8Jp5qgTlWwWOaAMZx3zI3IjAhW5mq8XOfu9+DiQdRLawhDy230BRlZQ==","signatures":[{"sig":"MEQCIESH2nA3UsiQ6jclduAgKoJhMLAz/EPAWRzL7W/3RW38AiB/GaPa+I6mvi2GzJVCDvxdeGsuQjzj/flkc4xj45COBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44002568,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpE+MCRA9TVsSAnZWagAAa1EQAKEbPb0QHBuyfrMbSmay\numPGwnxlRi0OFqMLLz6618FC+9lCOFKzYWN2eqcvfLFMCTZekXUbQ5SA+fxL\nbK/B9lSSATEtKAQmcTpeqJS1plH0qYS2GUgMVX5VUcAo7BBKG72JA1PjWLB9\nTGyn2atTCPK8/D5pvyC69ZdisMdqsGTT7xl51uJvl+WF+yrV/WotAGVe9Wxo\n38fvn7+qlVliozQQ4bhIQUpugHSAdo9zANyCBCAlTnGk9mylQRj4VPFeFhkS\n9fNY+oOQxN0tHkphbcRaSXWB4ibW2phAsK3RMGZgBspG8rZf7KRuOfJQ3lDq\nOaG/LzcNXm8t1iQRZpmgiJhzvqBOjTqeCtOyJUZFjnOlVZXFOmZ4SIDcAFMX\no26Lvsiuy8JaAX7ZP0So+4reYLd3gmDo8JvEa4Nj+XRUwyBxr1KoNTHq+6TP\nQG5G2na/3KuO5RjmSHVC1Te0NEE0jcMwY7HiUfv4HL8wo+bnOSYc6rvJogCq\nbv7/yaBw3LHfUPpm7LsHWpn64PY573Xc1nYUph+cNOhAzdNj4MFt/LkxYcYk\nwfxm3ctq4uQMHfNq9jvlMKJDpHie19mdtlrMcnta+NFgTDgciy5alWKhYpjc\n6v4Npxp6suGebGe0A9Dx8qaQM2dyTJ/K5WpOLreWRfcmapomG629oNeWwXXb\nOJKZ\r\n=cPvK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3f3444be80dc939eb20db52fa98a206dba31e077","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.0-dev.20190403_1554272138960_0.7516894297378607","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190404":{"name":"typescript","version":"3.5.0-dev.20190404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190404","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1df88a13900bc4400ab93c2a810895125b2bdf98","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190404.tgz","fileCount":83,"integrity":"sha512-rhkt+Ct3EnoRcaFEDm/MoCfrtmf3tXzyCn5ARB+XXxDac32Cj605gM7SNbaJEbDA6txVOuyCSsLVON+KYmGkCA==","signatures":[{"sig":"MEYCIQDrbXdVBUjLfqz6msQ2FbzjW77l6OZhQ+TUuGAoQa9ktQIhAMnX814VKhFW7Fk//LE7rWWdSSmpgJJakZ4vNuDX3hNs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44013437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpaERCRA9TVsSAnZWagAAi04P/2Kzzu/y8QqwOK83TZRC\n0wBgTgte6MJdjb4BA4LbeWk+b0tYMmi4CnzmtRrFCHinOKcm7cMEx7x6tSG2\n9zjK/sDEOAyEq4OxsTP8JCYOs2ajFbDlpj04h9pQWDPaei9hPE1/tuMdI5hh\nx8hE9Ih12dA+H1ghEkSgbenHSxa5NIyEeQUOxf/CxqI1zZnRWaFJD+rMMkCV\nMXzfXGjwkRi1kxXJtSXNTJIJ7PY6Z+Je+/jIj1442jabfuzH6ml15jpEMApX\nmwlmzxUU6LKxuJLUKHDGGn0elDyD0FsPFDGaP/B2SqYIfWXgdNKAzej4LX/W\n5m2gE8Qpqo/ZYZBfk7w/4X0Tlu2mUA1h8riLPeKXDcAbeLC7b2w2FTTnxCZX\n9US5BvCmcGoLMAe3fTal2T3b7fq/lLxic9HsUX1d8upsd7Lirxo5XkPGLxBT\n0mHcE+vFjU/2ueyyWm6fJuZg9kaFdFG1EH+nZKHYDRZxqQVDmcnyP5An/urM\npik6QqN9Rjx8Kx53pm/hnWiQNHYqp6rmMu9tM2N7U2qmxrvGaSd6egDvCaWr\nTmDov4Kv2BWuewlzwH+Pvy2oJ4VJCPFdooVYevZXQmCOqifU/PO85zdTKHyz\nFpdZZ+nV4DwSNRmTdCYefHSOeVeuNNVUffUSVzNm4HafkkJjCM8a8owcxFl1\nWGm4\r\n=B462\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b8f6ae4e256f2a5f47fe45b7fcfccfec941dc994","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.8.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190404_1554358544514_0.20092868588033808","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190405":{"name":"typescript","version":"3.5.0-dev.20190405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190405","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"386cac212b0f4177ec5c0a1fc9b4489ba917ce62","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190405.tgz","fileCount":83,"integrity":"sha512-xwq5jLFgyNv2OnudZ0gj0TdwKGZyDckuCXvlZHtg98BBA0Y2t7oY4qaSZODJVhtEVRm6RJOX+YYjerKMwhRu5Q==","signatures":[{"sig":"MEUCIFNUAXsfqbNAZ9XYO5fzcvZ8b1/LaiSO6cV09equ8swdAiEAk8sjyMF/tVKFZqo+jRq0yQfbLMRgU4zpePsYDHb9E9U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44014317,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpvJiCRA9TVsSAnZWagAA0oMP/3yvy+igS2OAeFvSOL3D\nfQymBQ6XbARgVCRAfw0R5v1IvgIfQVk2VHhWg3BCSRtUksUheLQXlH6IMkGR\nY4arVEcGucpjmGirjWlqbtqnTcIcsr96bwcZg9udiyxT9D4Q3J5tPd666DbB\nl6kPZR92gkxTTVHYPDWoieWUjabqZpPN61FQlCeW0XEOgSW9NFLTEOO4yJWq\nRL/ZJxlJdjpwjL2Vhd7Qh+ezgwiLUcnSIkDK9jNtIUHO8/ejVezVpAryGlhL\nP4bRVYLO4m5UARMSpwifzAmHBa2VNV+sZCfUkFy5oti75BTKljfD5I5hufBL\nfa7DJDfqAQeo2pQ8M5jaiqeP712xDr0hTxnNLRNaVH6Rns+Tj1/k1fzoGphm\nkh1kG0JrN0gQ/8hjIfl74Y7oEiO8T5VcxoMq32bQm6wl2Phgp0SVCKTYDem8\npzSdfmSCYSFUoP5AHQPCEZcxotdpnkr+QvAYZvajNcdDzeaHEIHPpu9SzPRR\n7jMtRmVvimAAJAl9bXGslz994/eQxyY7UBkpyOrFicWLrtkBIE1ljDwK73jT\n1/TddPgsGEPLcbDPAovAz8mC44F7q73kl0Fl+QTa03wtmy9KSKFjSzPmwQYR\nY70ZUi4rhbhSEhRBvjjdF6VzbjUSa62ZvzCeurwEtzk5CfKxseSKEGZq2GLQ\nJBkE\r\n=k5TP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"16450a027ad7049f226d38ea7a0d8c2e9e5a320d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.8.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190405_1554444896941_0.2474588724001161","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"typescript","version":"3.4.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9ed4e6475d906f589200193be056f5913caed481","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.2.tgz","fileCount":83,"integrity":"sha512-Og2Vn6Mk7JAuWA1hQdDQN/Ekm/SchX80VzLhjKN9ETYrIepBFAd8PkOdOTK2nKt0FCkmMZKBJvQ1dV1gIxPu/A==","signatures":[{"sig":"MEYCIQD5/NHMzIEMDvHlfjGOR6579xOD0AD6VEUbZZDaE2WB2wIhAOlQcxkpHXCz5HUULB3jJWHtJw6a/E83Rxshhbjfl5Mu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43976513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcp77NCRA9TVsSAnZWagAA6KIP/jlAJY1s5hauajwEoKhI\nwFBn/gyTZHozsHny5KfgIojaYvisJCFFc15kD+Yo1Zm75wbpuvfnSo8X/BZH\nXsTnHX/yGpLQZhMvlNFyr2H7162Az9SqDNveFu+L5APrlYrOTkwuNsVhqqcA\nLGlRjOKZUhFHObTAMJOtzCBzzNR1iwfwTBtWhvejlJOvFwT4FFPb75zH5cGG\nSY+D9G5P+0jU7AVMOj5DHQTxRHyzA5GMzkiKzTv1i42BHJ5hk/YTrs92W1eS\nOnVBEJ8GJgZZGMkGZYE3Qb+DFsIQqB5BNoHtVUWoRYkqu7Q7+hXdeqF5oNNL\nz35xUsMKX7G4ZW931GDsv2P+DGtr23Mje/p5YLAxotekx13j7C0RAcB4x+fR\nrZ9Bo43jRG53+2c0VKVuXoJCYIdw3NDxYXQio1PubS/pLB6jevuurSzNyR95\nwWhddI2txxdn1D+OIsMrzsvr19BSzPjXaQZyyzup/A7TCZpdkmXiwQV631fp\ne1rO+2WGapOF9/KpQKeyemRQ8j1CDf2okoY6Zidg6xCZOoAFpPI+V2nJy/J4\nz1jAEkuMQXYEQfCCdriYZMU6vFS8/SXsQ0mECoxOXXnx7du17LmCwGfY4MQ7\nfKIWHrlaaj+OfeYo56vwYbR0NLa5thuMK0/is36yr8NaUG/lFBmdiOUz1tqg\nmHo5\r\n=rhvO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.8.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.2_1554497228610_0.15552390772984892","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190406":{"name":"typescript","version":"3.5.0-dev.20190406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190406","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9beda156dc682c342574796fa1212e13f5d0de2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190406.tgz","fileCount":83,"integrity":"sha512-yBCj+5+CYlR+9tCP9IG784gcacpYNFNEQpXtwzONk7YonzT0KXn6qp2UhqpwKyJi0QC2f73k2LuVAsNwa/UXnA==","signatures":[{"sig":"MEUCIQCuK7uvq0WOBdRpxQkHVj5DjpGPLwZb92bpM2Laz05oNAIgI4Oxp6QuxN1wTqCdNMaPmeLJ2WB/qfsn2BgvgKyuVn8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44026397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqEQXCRA9TVsSAnZWagAAj/oP/3NymkXZUIVpYmz/gkw9\nGWL4qvJhDQzH+UubszhuEtzUb9KNnFZkPtatHRIL4YWb2rXqS+U38kKi17SH\nGVbKpjqe9tVAnUm4mfNBN28qErt+eIICnkCMoHeeW5G5i8qYMlySAwQowpTG\ngfGLS5BuELnbGhMJ5dlu7KCzP/+1Ej11Z2FO4hA1pulcG8rOkl5S/gN2a5Pn\nwbhi7cVvZqEhycZBsc1pwdWXrrKUkyH0aWU37N+Vr3ziwYNqPSaVmlKTUIyZ\nb4KvIKjb9w9FlZmpjpb3VhY5Oaq4sG9/Qs81MscoCzv0W+KCEulM7yLY79zD\nBBiJJuOA5YLmR0zlqe7Z6M7Rs3/aI9sF7LqYFuxwfxZUR+R4V1s47pr+RUpu\noZwBJ8AmDMMCMFnn7JgYavyHDvZF3GTiYaiNWlxl39ZZRRFtohRzGO1NnzwH\nnGJ205j2bfF0sxf7D/7ink8v1DpNzDahnvXZZkJdNxEsdXQdL21mw7GZn3oV\nTbVljCVz2056kueNaCCG2TIq8iJVygj9sPnSVaBc1+RZaHrugGrH4iov42oj\nmNjs/5CgtmsTROfojXkb6+RF++WhELcenFYfYWsgCH9bCd/qb7AF103r/HCg\ngbBvmqVAiqAwqHVrEEc+xYV2fOh3Nk1wUczJZs8ZWsZYvqAt8QciAIlFVsHL\nX7lS\r\n=GwCE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"60346b56a8efbb88dca06c3b4a9dddf72c9c3205","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.8.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190406_1554531350271_0.15707079718498607","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190407":{"name":"typescript","version":"3.5.0-dev.20190407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190407","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5b5f9e2031c8ddf5bb9d9be36e70bc77327b0d0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190407.tgz","fileCount":83,"integrity":"sha512-bm99LTk3/h7Hx0/GkiLhXEzg6ryWEHa0yTFzMVpUNI9RzFn2AGvrPVlnsIlqNrFwTmA8/GPbr7f8hanlk1kyiQ==","signatures":[{"sig":"MEUCIQChNdcvsC+ZpMU0yqaQpSO20W1SIVgQ4zb8B/79TRbBCAIgJNpElTfSYn4FO2ol5U8EfRZAzedBnbB6TNYoLJ9cGMk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44029327,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqZWQCRA9TVsSAnZWagAAmxUP/j80jSRW2mK6/XVj5QVp\nBCn9C4YW6Y/g2TjCM+gdfp/sd5fbM1foszS9IuUJhQBJKUQL3lvARo3Oz9T9\ndgw1NHvucmOznFoHcvHN+uIhQx60+93psRrg7FGr/1vtgDW72ZpAUlF7NuX9\nY4eW0xjrwcyBmLG1ly05wb3ve6UvIKYmddehFxeD7bmAjtrKRXfxIl+Mwggm\nkVLeAE6eQfoCaecLXyd44WtfoJeFNhwWhPAg6LpNZXffAHyvVBbEskEEeRM1\na3Oh5+dJRSS9dHlrCsL6pCiUJvH09AQV7fw1Jtuvik6E9F/8vEX1mbPGKtlv\n21YwqQMSxDu2HG3t6oLPqsy1rNev0Eo/XTehB3mMVYex9SPn0E27ZvRzr+nT\n5sT0mhUL1VFs6TBdYEv8s5PF4H+B4iCDHQ6uuHjlJDYMb0ChMfnZUfj7/cmR\nv/CV5AuH2wHNKdWxruEM5Tw1+5JNYDvsgmPvqwjlMHdrfpg54BJJJsPVLq6j\n0SiniywZzwoA87DN6dZyLJ7uJTjhi3jBU7LHOJaTQrvkbh6rWoXp5eP+B7kW\n7VhMyfJNw+8VpJxNeZk1155PZmLNEUD9xBXFdeOtwEa8uv03Gl5iaTA0lwnR\nBTvUAefRllVU06Y8VuGOxBNVZ13eeuDyQISPhA/AE8deGtnwSxUktEYLY2WB\nbVw8\r\n=DZ6w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"89386ddda7dafc63cb35560e05412487f47cc267","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.8.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190407_1554617742853_0.15600180326124735","host":"s3://npm-registry-packages"}},"3.4.3-insiders.20190408":{"name":"typescript","version":"3.4.3-insiders.20190408","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.3-insiders.20190408","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"18d98336c693a13dc8b2d5f39b70268c018c650b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.3-insiders.20190408.tgz","fileCount":83,"integrity":"sha512-5SI6EA+2u0ea/Uy0qCEczh8vBR0ByVaCFCyU0RdROROw8V5O4OIQHMFcnIdyg+nnfRGYp39PxvllGMDpsTFOOQ==","signatures":[{"sig":"MEUCIHhQNRwCOX6ZTEwUG8I7nfFH7fZMYfbCIMO975KzDoqbAiEA6btDjfEc+paXMUWp1QYcgCfWJ1wJ8cPAozcQ7SDflTU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43976618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcq9vtCRA9TVsSAnZWagAADh8P/Ry6bKsxKK8uwdqlVovM\nQaSk79cWnd/j7FXt2aGmNlcZ6a9c2lcw3sjJFHQuRkzeynw2KjGXvZ8fxxfS\npn6s9ZkcpyjUImyEaONylVrQqD5Q5FE0usnHwh2V/Hx+M/FA2imSoNrzHMqh\nWCSW8PaEXlaEjN3ck63fzoE5JHewrbY5Gpzjt9M/Qo6C4QtBP0EthjzpDEEG\natW6kDobnk5mfu/OTg8XvgAYatQuf4oBpNE7Dk6/HULgw7LV5tUaiezlmKql\nYzw+CxTtwHwuSARQC0rkMiCOq0HJ7zl3Y9xf+skghZ1hsFLtQOLlNhZuvu6j\nitoW1VFAB19KrAA8Tv0sgTaCO/XDPaV8IC8c8Z/gSW4FsjCHI5GsSdCQWmzs\nkxbDV5XDJsOUDewAChvGd4OUwifyJybv7yCWViS2M0cvfmdeEgf0E7KNLfy7\nLQxsFoWiANfBk7sJsGjzvWi4mjutUPpT9BmYxoNCVmgFbjqjDW47YzkBPaLR\n55tyVTfKen4FJxkruUxYJ+crhm+Pt+/tQSNPZUOvW808A/McDOzUyQ2hhmqD\ncc81EoHZxo/Mk2Rha2LCbdCWrXkyY7SH82Kh2Zams4jZ+eWILNdIx4U7GQBt\nc6Ex5xjG3BI8mUyBGpvrMK4zj4u+RfGSDYRkKlbmJUsqnvxouMgbkOV/Le7+\nyFhu\r\n=6b5p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7eb4739ab7245d859751c3c43dafc60637fba90d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.8.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.3-insiders.20190408_1554766828599_0.9011268175746352","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190409":{"name":"typescript","version":"3.5.0-dev.20190409","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190409","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6d6e362f3838c901f96c754ad873ad42b544a5e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190409.tgz","fileCount":83,"integrity":"sha512-7TSnDpw9ogJtmeHJWwq/sBD8H7jh0RXOXJrUklVgTcOk2MjmeytPCPnIDAD6vLWfahKf5RL0674L3ztF/tGm3Q==","signatures":[{"sig":"MEUCIQDULsSdspV77XxuEfJmQfXJp05RGit2eRBUUqtBGHc3gAIgQ05OUqIl4KGEdh1pFLClYBi+fAWBRwI66x6RIRzMCSM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44026718,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrDhuCRA9TVsSAnZWagAA388P/3hVGXq1spLpeZ8WtJMs\n6tsCE/cQU6/dwmfAUFibtZnAbDFa+3FmwkfIm3sZTZkPEc8z0E6dcovJBGq5\nTJhKOumnuFT2LjTian0p/lmpiNtGHtBXzPvoGeKAPNxjyM0cak36ELz9yp+r\n6qzDyf3g7o2seLDaaJHHV8lCek0E0Uz8LDIqgDlUQAoP2pHYge2XcSStXxXK\ny3n4J8f7A0gUyXnGGS36gbVShZlUFlvw3uPd+TnUW5E1z3KFj1V+PhKyN9aH\nzzpkH/QafE2FurmavaGO6m013SVrgjhZOAospE4dGOuiz4YjE3oLCtjvmjp7\njAaoUleqVDuOl64+794kqRWpStEeMdYtJY0ookeGlwHDT/vQoTm6j0nrFLYQ\nOyGxyiGydmdMjLePn/gqXsHy0rGk9ih5VZLys1j3pfAESzIQRskC6OE7qqA2\n7r02jqJaFKEeOOHbkwVknU173EoJMxWq8gOelAccGBWIjBeUire6K0+a3e8x\nh+BetCEpOiM18QSb/PY7+vNi/TWay1dVDLnILOWuMTJFui+Ttm6mKooUJ38F\notsZPLFpLN325skqjPWaxzVcnSkcgWZeANoHnLBMh4WcO4sIPt8VBCcw7ny3\nvFuREBk7bE2U2iBEe/FYbrhL/etalab3rS9EIzwslvZzIc4Z9bZUfpaGVitg\n5Axj\r\n=dNx8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"90b304aa5e93a8195e4b8bcfb65b0079391cb9cf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.8.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190409_1554790509520_0.21736021273906503","host":"s3://npm-registry-packages"}},"3.4.3":{"name":"typescript","version":"3.4.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0eb320e4ace9b10eadf5bc6103286b0f8b7c224f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.3.tgz","fileCount":83,"integrity":"sha512-FFgHdPt4T/duxx6Ndf7hwgMZZjZpB+U0nMNGVCYPq0rEzWKjEDobm4J6yb3CS7naZ0yURFqdw9Gwc7UOh/P9oQ==","signatures":[{"sig":"MEUCIQCHMWk3kLeVB6c9/AGSn5P6Z3zTRGo0X0R9wD9wWfSp+wIgEtdrSNVaiN/O4+Llj3rB2gq9RaiAPlwhS1Gu/uqTGOA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43976493,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrSjpCRA9TVsSAnZWagAAt0EP/0kNju4yIfTkLj4SyDfk\n1Exx6ikGPzeminRddT3KKIFEX78XY3KzNLLJmCyVKgw3gea/K4knC85lOqt6\nzm8huCkpZjzx0+68d7uwHRitR2PWxzCVGQRloWuQsAFNWUYJQxDOBjFFWlVY\n8pcgH0TtICGJajLnm3shFhPa30CAkHLLbt4pUKoXmgSHTvytFThNhyQ91rGa\nuvBBCfypId722YIfA+K6vLklf8ZGR19vgknjXq3El+TWn3B9BtVnaSYRCKM+\n8Snr5Xmp5h6fcj+Ri4OZB7v/FFCiJhD9xL6Xw2YeDbpMRwbE5vSZmHpIb2x+\nPiOexI0yPTepPrFDafYjlq4DcfVvuNgBrU5yaUEUfYs6zEmk/tMeeIGykMBg\niXULar4uiUKf5yq2Wf5aYLuvhyjjfop8H1GU4KIwVpNJKPYkzzcI7cP8zaUQ\nmeGsD8L+lex/nozSBYRKa3VfXUKb8UzTpF+GAWbJbVvZfnMID0p2Xk31Z5Xr\nO/+OcRQJ2UA9JDmuEIgb+lclfrlO44jvMOi2n6JmsJFdE6AwxqYvQ04X4DVi\ntGHf3G/bA6BRTOFfqF4o/gnigk7TpBuspRobgBCOm+PQUhKAsETgb/HrtIAo\niZIe3uMbjVo5OeasLX6/iaBhhLmSap9Qe5yfz8pXIX/0gI6QolC5ocivnDRY\n2O5d\r\n=Ng1k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.8.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.3_1554852072103_0.053251830493396435","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190410":{"name":"typescript","version":"3.5.0-dev.20190410","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190410","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"670be9d1f29e60bc6680041443425d8e01de23d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190410.tgz","fileCount":83,"integrity":"sha512-MkhSMfibPgShcTAQfV7vfpqFYiz/Glquaiu/lOLeE9ntRzJF2g01fBWzoxO5PYOwFaTl6UWGWlZJqBMttMCC7w==","signatures":[{"sig":"MEUCIBp6d6XkZ+mwQk3XV1K5D2WcypFUoz4Pk+ZQ6FnqVB4EAiEA1kWNfkn8rEslAu6ECdgN5cj6DFn1/TINuS1odJ5ylmE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44026718,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrYohCRA9TVsSAnZWagAAw7UP/RoEyLkDX2MhtEDH5BJ4\nSFu1AbFQHMZcsyUl8hcz4mlzHlUV1vOiaPcpj/dlsK/O7B6etzAKHGnrR0/x\nR7Ry6orjdButvyppTqtBA/p23/kY2XK9CknkCbzc2J27gSS8Chf1857jv1zK\nz+PsU6ePIw7LTDXri6EOIyC1NI2+x4VUS07SQA1jx9Go6W14JCs8MuYIyHNk\n4iFefTH+kZZzlfelnR35RFYeE3iapAu/UwtNuxRnQlV3L/M/wlviWI2QfydL\nfS45auN6pgo9rHuIv7qjppgZElbRP7UAuXR6vx40NmqhBuuOMjojMF+d/3FF\n8y5De+r+VLvV5MnhdFTPz7Ypd91T/mwCPB5nfVLIHosZVY2HgWLGtQjxHz0x\nv+RtbxtyDvmvaE7zPasoi0IlpVwpDJ4dY7zGrRzlZC6LeDYXom2I0HwpfR5E\nlDtM7A5tij/6oqcwO/Lw08DQVqWlwVu+DLirAVZIr1u13j4WKQrxl+6cypxH\nmwc4eyL4a6aGLE+m7JuVoKP1Dvp6+2HjhDjq6EUC4EgSGV7MAY91mP2RGioR\nDbr6G1WZEywZo6WEECx1BXKIeif61HZ7ZoHe/AbtbAq/Tr1nG/OtdoLRoyO4\nilYCkPRQL5ZlSNf0msURuW5X0EFYr89IS9ebDIlNcnC9yQvhZY+9CJTnvSJt\n01Ha\r\n=CAZT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ef4acc8841676064ac3c29c8d6b5d58fe9a30e3c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190410_1554876959834_0.7651427923249936","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190411":{"name":"typescript","version":"3.5.0-dev.20190411","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190411","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"57909c00e4e09860456738ff1e7a59a686586cb5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190411.tgz","fileCount":83,"integrity":"sha512-MflYIB8VP86RaMOjEwNOUUoy9k0I7DJWSlmPrfSijth9Xt6+FpsWE4nqb9XsqFBRiRZxLGTKOalN1279sOcuJQ==","signatures":[{"sig":"MEUCIQC88aLh5prZQQLQraOKrHdoa41OvEWM5mjOYIHD7YmSjAIgJLHPDHmOASt/+gW4PYyNIwPkq5vOaPOQJxYotcnMrNU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44030740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrtuLCRA9TVsSAnZWagAAxagQAI09keey1mGCJbsUZcqP\ncmKN1lDb33finKjcZVUbmb/dt12btIpzPqbaKqkk/hSX5G0v6mTJXXFQR7cD\n8fE3qHJNWi0MLISI9L2XhxS2Z6P1fBPGRh25hyRQ/5rfonxJEv2nVyOQwOWx\nuRDhvX6gjUWTI/htCjr3zwmlIFey+n6R2qt5uV2ThAkjfi5D0TUXPf/U9wLB\nAOtYSiNvbbMO8rKcoOYyvamIiPPQjJNgjZwXbAsb1uFDR+5lLV5K7DuPs3WO\n04ORELBeThWaBVdpB+lzXEEWEg7gCSrKhinbrEAZVZhnDPUVbv36cEb1T77Q\nIvOovvfyv1G1b7f28qcsiyVrMic0Ik7vTqB6TJGMxffxx0fWqwXC5iVX5e/2\n73FCDOrMBS2oAvTVGfi5/MuM5GbUT5dipQ8CTDj4SycaCUm6JkgFw6vxztlh\nlxNkxi2QbiHB8e+YF1u+srxMCVJPU0JUsWu60+1AO2JpIX664dSPs7IKqkLD\nvJagavd/oqR4a4oev3Nwusl9qSWB1NqoxtKRAyC9KZAVYcBD+/ajkf6W34Jr\nb7TFEKp8tOsi8s4kF48Eh/hLsbQ0xbTyogY9qUoODxsQbfS/CeaeRWxOO1AD\nlwVgBZNdRQaIqe3cLyJtcY3POzoRlMPhdcVexH2QGWXAeLe1xEHcTmGOv2aX\nM5fQ\r\n=bOt6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ff959096df8cbc3ba6ea95e700b2786390903c5b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190411_1554963337469_0.40614353748070875","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190412":{"name":"typescript","version":"3.5.0-dev.20190412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190412","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"98c1209acb2372aa7411f99fc288d822302e048e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190412.tgz","fileCount":83,"integrity":"sha512-ggfmPI3Jddh42pOzeAqQ5EaPIjFPJNlmFzKOYVj/Rybz6o4QCl5o0fwfitAPatFhY5k6I7E5D90zURXhr1W4rQ==","signatures":[{"sig":"MEQCIEhNayT3o83vm8Gyks2yGV36nXAdQBDKLHIif8t/DsmKAiAcyInuDI20waaiKRBeY+vOp6QPv4GXm22M0MSJki9tKA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44039762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsCzWCRA9TVsSAnZWagAAonAQAJNBeDnl9JdELBkT0ghh\n4rkEozKwcsqmZPyHBSH5fvxlRPVy+YsfR+9zb8ee/2EUulkTjMSChDTfkmTk\nqnPStUICxsban52HC4Ikhabhgxzzi397BEfRM+RgIsljMXMy/14Vs8w4X4UP\nhhJmuQyhq5WxokpjcxMTtEGPmCfuQR1DmIfaqVAKakZgI5isNntysd0syUTQ\nNr63wy8OrYpsTgd/3gWmwTKNNmAqsrblPSH5ZpXLVAG6hDx6isdqTDDk3hso\n9FjG+4B3ogGvRSZ7NjJ0FwHYAS2FZQdZwevzoVlqk/VF3a74SHveRx0LZEAA\n/5Hemp0V6tQxTOGCSS3O65HLYluOiZd88hQGQbEopKPuzd4/SOejgfTJmKXd\nFqlfL3Ecm3y4g4oCAK7NfOq7dKSY4wwFj39NHMwj0uvxhEymF1mkt9ry2us8\nxs7QkfbRzKMpsQg9jEHjmn9YEZ2rZLZZooNob/38u+AhXI3darTKGLoaf7Mt\nOXmNPpt8Seqn1D4VWyaoABEa1L7haIghx2IUflQy419h2HW6ugnJ5KkZeMpf\n97ba/+71aFu/OPFLcuG3E48VxrYwPubIycy8q3XelkdLUzB2EKcJbTg1PSMi\n3g3JcnfjR1B6WA7n1Rr7uKqjUcQODWC2/3HyyQ94z53vVuXX8G+0ZSgrzuHG\nLzRv\r\n=XlcX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"42302705f6d4266778324d8282ed743ffa305d33","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190412_1555049685946_0.5769955530748869","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190413":{"name":"typescript","version":"3.5.0-dev.20190413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190413","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1af28da67c1ebc218562e495d9c5941bf6723781","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190413.tgz","fileCount":83,"integrity":"sha512-tljte3z7Cx/osnlUb5TM4I1XVFS+nDae7kOUhBBtSA1r+9FzAoSJ6EgIXUclcSutPX5ls/02p6pilXg+0bTY3g==","signatures":[{"sig":"MEUCIFaCwuxA8/5PgElin3Xp+m2aWugeOEyDBFUzQoQ+dwHdAiEA+ajfbjWOdjHuyrfQ6F9Lgnz1oMuy2SVjJPxViU+pPFg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44065494,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsX5wCRA9TVsSAnZWagAAi1IP/39zWKLMIZrHqxQKD1Lz\nrQEVzYlDO7faatwvc0lqRBTO+oz0qeFJ3s6XgRkxILvuFyFG9QZh8NYl0Tud\nezq+vE3WV0QOlrPj6PU6p91SR13ikdanmYLMcgBCLhGKAod2vuAgCz+l9/vm\n8qWpY7XaXVCddpb8ov/ZISr9oeK4UdmyypGxjam0gdZHsR/v7avDcLpo1Gv/\n8Va+5Zy8ueB0BhNg1GTHjRKNMX7wQTbi4MmsVxDisvWDJG00v8Z3OPsxH1Gq\ni5VSWVabDV4hA0Ksyrl25N4xI6GSByk/nyDQjLHLzzQ7OyCNYXnniO+qdVtI\n1ZDgVkr1YawzyIMjXEJITMDuRLh/NAV4JmQR2mj7ok35pHPXhc/b1MBjAUTL\nkhr+Fn+C70tSMEMSEl64TUdIvr8D91ANDJrWG4AThsfi8N7lcTAJcNMhhNYr\nAGDdfCyugXHgxfx0khTc6Qc5PY/63MPrqDPZ7AuY6PF1Syhy0l9myg3WXYVW\nsoU7fWBuqXppU2o9MNw7eF16DG9Bv3Pfp50WRR+WV8bPOPndaj533SKASchu\nVbanwKNLKFZ2blPsp2Q1BvksdEk528QdU38n0STvSWYRAXj0lc1Oa/RWHgEz\nw7ytep5npdHatov5abIG7YPORnwvhn3XmWSTWXcyukoHxj14BpwXWpaQz4FA\n3b4I\r\n=Bf1z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4fee62844777c23cf37b6d4594f65b393b27b4dd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190413_1555136111744_0.6590524764932701","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190416":{"name":"typescript","version":"3.5.0-dev.20190416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190416","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4c54b3067b6d5f46270c99eb2d2e46af625ab08a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190416.tgz","fileCount":83,"integrity":"sha512-UOdi0C2TJAt6uKN3GrZZpQmte0C4OzNu1YAh5F3sbaXzWNSmVggQ+MdMQDVcbx+JcJnu0iChg0lPaxaH6m+nxg==","signatures":[{"sig":"MEUCIQCID68UiuFrpQjPpIqOwgyBis04n53DXV147nXB9KSRXwIgCbEts2qDmXiTGFf8XLXzxKgrRtWqy4dFXgI+rpUXKe4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44080810,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctXMKCRA9TVsSAnZWagAAn7sP+gMDk3odf5enPiN01d1l\n4PPcrJtPy7szD8wwvYqNAbeyTVfSx92zYcKe/VkvKZlxUbpVeau9/Aa3d3Rk\nsGqfkFpnop9mzyQl0QEAO7DtkXcnMsv5RY6yGAhRtycoT6Fm+EXw9P9ydRi/\nWTXSLFFzJA3qDTAeRmmdFuR69N7NMc8JT1YgzreoxhU3gsQ/YlO3QEbufCzz\nMF7Vgcw6McxiKDPd1hI2Ck0OyZIe93Tl43A5MDcbCtteATQxIGiXT2SCVGm0\nCKgpyjDAkNq/DsE/gQ3Ai7Tec4sfHZ/roq/nPGGq5gIKiDsa4Nd8xt+tWa2H\nacP/OQXX17HZ0XHUzgqVxbKmPAfB76oKmpaM0EcTWFU/xFrW3d68myveqR+G\njjP5kdh2niqE3OABOw/NtpsxENvR1CHLY5/zSIrz8BrckNOHsWMeQhXl+7lQ\n4lls4GoNYuLk6pmTiUXKsYM/+dZ8vV9l00PdkdAVWLJ9mUVfcyBt0FSMFpcv\ndh/fnBq2mvgUGvycd/LlQ5ehWogky6Jf4Ay2Z724CkuyGZJkPVrKKhlWG0I8\nIWoD5diqBaoChhMqhm4G1afSw6Td41S7tEpj6jQZY0WGAS1SR+yfjQtS2xSS\n1fDaumSbJqzuSWc0fo7NLQY1UckMr//CEk+xrjeGr5cpmsQ52osm8xHgHAMs\nMv4D\r\n=xVaO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d405662eb6f91a2ff3f10ff027e3d64e5facdf3d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190416_1555395336976_0.612015274158459","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190417":{"name":"typescript","version":"3.5.0-dev.20190417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190417","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a0100dc18b6d70b3f5e0ff3b12c07b60b2ec9e85","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190417.tgz","fileCount":83,"integrity":"sha512-t8SnOGF5KDa5igfO2QnIfcbdOLPsD+GWBLNr4XmpltU9OAcOr6zEBeOlAF1IJ4X4WRIpQLPqOzBfjYpJ4JZBzw==","signatures":[{"sig":"MEYCIQCYpnSEQzq2EfbcXJmnGOISUn+kSSCpNSXFJP5BHn79kgIhAMuXbNI8kL+MxXMVwD632OdF97zKHd5+YtszgJTonuXO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44090553,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJctsSsCRA9TVsSAnZWagAA8sYQAIwOb6tvgqhM7/Y5qqoD\nb/QMcMeETGREHNQV7vJjvdwqH3VSr0sSbZ9fBg5VuaJeyFQrD6ksOjm9+SKO\nV4zqEWhWP5h2JZt6oPYnpfpqufiRkIkpLR63hL2Ql89I+6/PtAYHvtsbT4xJ\noKvITeEWJh5j4/rBFos+cx6mNOu/x/bo6XNGGF4e5Qa79LiMyaI9R5kClmYt\nOSq/SDvE4F4WJ68TabZqs1pkZs6HoeMQuGE3eWfHeUd5aLNAK67as+Lsw3Cx\nH26QFX2J12CdrraKJO9AaW7FUceeTdrEjMALpZVNbph1n5P+KEaryiEH5dFV\nouORTEy6tHSELmePqlmZOxkq1V5C5uH3UjgTtMWBXD763plk9qQfyG86eVSB\nJG6+LkTTNmkKxNOcRC92rkrs89lJ8F6SjIImW1fDbjJYtMxDYQpHx0fysIO0\ndhJ3Me66N+lTQ2TMTn86Rkrx1OyTk51/NOhCGodcYPYFAnkOX+KKCsP/Z9+R\nEGhjBqXo2ud8brB7ddcZDexpPhb8Ovipuw8xf89tJ7pPxg2LoK9VYmGto3b3\n05LGyPt8tIqqNLUqy+wXnoN/SSs1E9TN3D9o50q2vhpOgUiazZcX6G9TEkbC\noLWXyFqCy976lNWuXWPs10/QumMiySB683+bEuB+AXHXBbPr69p4FSYr/Jcv\nabs2\r\n=wrSK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"169e485d9096dcc32daddc1f18ccf9ee39164349","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190417_1555481771436_0.2790919756080137","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190418":{"name":"typescript","version":"3.5.0-dev.20190418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190418","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8606961c67ce73e813d0cb28b7acb56c591c41d2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190418.tgz","fileCount":83,"integrity":"sha512-8jAlZFhE5dOcvUD7m/eOrPAxhvzELU+tFPLumOGM76jslhTvFIIKcJw3vEDX/3q00Vs2Bgv+sTSsdiL9nXxGWQ==","signatures":[{"sig":"MEYCIQCFjTrkvUEtHk0xAmujOEjYVCDwyfNK6vwH4NE6j6XaBwIhAN1bVOVBRjJfKazC+EBaBDGn2XtJ2toWToQLJmMDvPbo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44100711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuBXpCRA9TVsSAnZWagAA2ZsP/1IlRcszo4AULL8YmH9b\npBTG0SP4/C9Rwv8fRK9UCD2txoK0/gSo3eUy3MIODje6OmtkDp1HtAMmvGKV\npV5ybD1Sh4Uq8nfjcNsXp8IcEbe9j2ZDCu1+vF9otJP8IAzcanqiNN6nm8Ea\nhT/BdiNCYXC8LyUPD8vzGlKqIk1zKdjUaHSeF8E1+w5yqbVeLelFClKuCfot\n9DZXYeXZOW9GSkCRYKl9cTKRJyYDkkA6OAD4Wjv3miYYEpowq/YQ3JgIkjln\nIU+oSPAePqgH+LDLDGUz4Q/JTVcoyxI5ozKsb0JxANVI6aGZyahySPnZZ7sA\nz5+tD+WKCjMNiZyPwtnIgG0KJSmnS89gsDO664jqHY7saItovB2s99ggMpmW\nGvB7sdDps7i2mI+LVtx8U17dMcUXW0zm4KdGpviCCBZtsazH312Ykep/FHDe\nBDuYBK+Sn1V3zNlpzVpc1gLdJgMHRvKWGd/mh/c3sqTUz+vj0IYx04AJDV1T\np2xms733lor8Tl9OXWSw5JykQ/z8jFNhI76+6QtWkMwoLRx9skWlo3mUJJvK\nPEzQrlYItBGnOYdyo626P0dmtMMZ7S2XmPg1eqFwplFx0g9Ee63EgiIkx/wP\ndVCx87xfuLLmV0PID15hftG3UN6EXt64olEvIpoShGZ75wm0z3ufCUiKmE9F\net3s\r\n=b4iA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"33c3ce9cd0ae6dc637bf33188a39f5fc3cf05a0f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190418_1555568104300_0.23891277956215284","host":"s3://npm-registry-packages"}},"3.4.4":{"name":"typescript","version":"3.4.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.4","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"aac4a08abecab8091a75f10842ffa0631818f785","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.4.tgz","fileCount":83,"integrity":"sha512-xt5RsIRCEaf6+j9AyOBgvVuAec0i92rgCaS3S+UVf5Z/vF2Hvtsw08wtUTJqp4djwznoAgjSxeCcU4r+CcDBJA==","signatures":[{"sig":"MEUCIQCj4km7YQOa06/JAzU+r6XAKMibbJfUPBnemfIO2TxosgIgUeYikdrQ+mfYC3K2y34QeShmHQEgGYky0ovUQ/1+RRU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43980251,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuQdhCRA9TVsSAnZWagAAx64P/3veK0qPO/Wpre75KJmS\nZzJvbC5NugA0UkmDoJ/Mvax3b+mhP6zCfT6SGeW6NxSNsengS8W0svrviQ2K\nGZ6FHjcWEMXl16ms0171jCSdhVsGQYFbdDKDttqx7+K8J9fT1JWtWNqeW9mA\nSPIIRPa+DDJw3pzkXekfnc21FP1tz+eArmV9Cd5MCB+2HVJk5cIDF6GYFATR\nYt4CL28aczmkKM90I1r6O7LBQPaXP/xI6FrE0yoO6UrmImMwM/BVOkk5AvnR\nAaGfDfMpfWX16Sj5qUksI0e1eob1qK/eMRYUcezZwD+j+PEYP6n0bE64L92s\nnLD/Dd9xflPUoebDsHY4eU72RAakiUECJCyCxzYjDrxzvFhziBep2B5Yi5ge\nGarwhWD5/3zgNRZiH8A9nXhPlwE7iLj+wOeT3AJnYLoaIf41OU9OZBnmWkzT\nqbmSI15emJNJyrGkryAOpsfh3Uw4GjHNKA3QiZmPUnlLLmyRO6cXJ0l7bdf2\nL4+BH1ifS69/gSEB5OJFhRIMO4lv6JUVlru4VFer5/09D6mWFCRUES7oXzn2\nSV6LdV0igj4Eu7JoSqpf9zXgTPMp1A9ryLiDuEtNmWGuYsh7XAq4mR2KkrN6\nZfzid6xNdKFIaPJy3i6moGoIGgtqJqq8RNpidCxkyTJ9CfQOy9KbqkkdNA5A\nhZko\r\n=tVZX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.4_1555629920484_0.5963536165757208","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190419":{"name":"typescript","version":"3.5.0-dev.20190419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190419","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f5c579cb31ebea79feb58d69f54cda7051f4176f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190419.tgz","fileCount":83,"integrity":"sha512-QtHgf03yDa18vJA/TKMoMLhcRjfLqoWvPEjlT5mJsURc/2r4TPWFrn2qWDBtE8swR0i9LvUfhaK7Y6SKSTWwJQ==","signatures":[{"sig":"MEQCIC7Fh4bhNiHZvU8eUaXROjqOph36OctjPiCxnxZbgyskAiBY0CQpS6XW54+uY4Ff/k4cGvVJWjraRishprxgobOzVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44119105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuWdZCRA9TVsSAnZWagAA9rIQAJbUcjfLBEC69Plsz4kV\n/aJhCXmdeirOox/JH2X7PHy57FKjZ1oE+UiO6aaoSnyPVIqCurZ3lMSzqvxa\noFpvLwjLC+NyItPw/C3tf8ZiXv0FooNhsAaajVONy0XxaEf+G9DOCxKy2oC+\nFFySlAmD/rU0tn+YS00blvrARPIxuAW90R7Vy8va+TEbq6YbMnEx57ia5vVs\nHQqCl5FEEgHVXLol2ezyXR87M1FHRGtfVeNSBhLfmiUpLN0fGY7KAjlsDbg2\nPsb4olzLc+RbeJLdEO0/4Sq/VBLFLxlvlETCBTQ69B/ipge9Un5itVmuy4wd\n7B+4RKODJ6l/tuGJMM8rSKslhIt81f14ulN8J/gVb0/SdcG5H/ppDkylMPKJ\nvOH8JGLxUGjF7CAjGAJ2omc06YbcjJjgmeClyaSK/4ee6BjhpBOfNWw80xsg\n26TVVKIdO5tqZyYR2d3NDhka8XijDFmTPeRYxWNz9t64DtE4Z4ouWruIaf32\nQwa04n7JnrKKX1vXs31PsIDJG5UpGQg5TCLlsnnkBw00Af/MbcsbJf29tgXj\nrvvWEm893eQBEMn++ZXjK4Rc78u1G+h4kybEXGX2mYfnFx0HQlczjXADF9ca\nowC7pcBwAOd4CcZ3OHnuTxr6qz+9vg1ALP05v0LgwqWK7JQF16FF/B98GOcL\n/ZRS\r\n=BbUd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2eea21636b9dd1adbcde9bd02fc599d986d47f05","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190419_1555654488926_0.7598802594870318","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190420":{"name":"typescript","version":"3.5.0-dev.20190420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190420","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"75e50639c684a528da45244ca4958dd8490b25f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190420.tgz","fileCount":83,"integrity":"sha512-dHBM1X1YiEwSkk2BA6Ey6b4FR/yYD3zA34p7HRLXRFKaWlG0fNpKn4vcKORUhwMaNV3544PHqjxIF3xoY4u9Cg==","signatures":[{"sig":"MEQCIF32CgumDmaVwvmrC8oRdC5KBONNADoBGAxT3Cx1Tdk5AiB7sRC7zZxhm7KyJHSi+9SyxPD+fYrBgUfGKJwTqRg9JQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44118594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcurjbCRA9TVsSAnZWagAAU3oP/1xLbNRG7nRKQ/+ibydi\nW1T4N18gN8MJcEE4GtfL64oZOsSJPbDpSySZAb4m/CqGX1ZiPJU8QqrrDB/o\nIELMXRYa3kR1NKkShFlV7J0F1Z9882W5qx9aMBitMegV85jcADCjLJJBNC5W\nPxg3YR/GrYAiRMyZVOl6tflza/MEcL3tI6awdn/WOreNT7IRMwvwFBifv7on\n0rP/atwH1z1AvkKLWP1Nb7TQRtJLezQSL4fljFXN2bEUKw+ZAa63zI19M7h4\nSpEoebZW++XLU8rsiQrv74YTAMbTsQ4B6RFOqtzBb+ZDV9ZQKf3NAb0+qtq2\nvT0ejvpWd/eX4Pv53T9Tw0vtZP2nitv7QBD6TbTaBYs5oVsoXE6234U4dGH5\niszFQ8qN74n2H2JAQR7PA21tnL1s0aAt7UINhQWD7Z8a809wqS5b1mOpZ1N/\nCothBFO1syfkiZdqkE0+feHOywGur0xTP7gXimpGmPRFLbVizRKpuCok5O8l\nmtZpZAE/cLQvfGLfJUXAX65pzshmG+TX6L45SIYXDFLH0nCo6GMRnEqRV0ow\n0prSoBDd2iYfheACA87RtjDYjGWurrVn6aT/QQXEliZE47t9O8Y1R+MfXCyY\nNdz8PPJ2FI1zUtUuZ+CdYEUTkchPSNd4Sc068J7tDiFX3NOq8S0h2VtBGtY1\nL8bA\r\n=CPD4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7a3e68fc5ca1098f1f6431417180849bdf3282ba","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190420_1555740889585_0.47950854228143713","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190423":{"name":"typescript","version":"3.5.0-dev.20190423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190423","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f3ffe6e0af7f966a7bc4e27e52049c8d2ee5f0dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190423.tgz","fileCount":83,"integrity":"sha512-3oZvLxQCqFfbkfYo9FmllpVU9Uf8g29wquTo9FkDTpaKPJTDG/pOAIhjwNjA8blFv9JFvy4L/FXE5kS6yajk4w==","signatures":[{"sig":"MEUCIQDmCWUnEFxW+8b3jk/UB794JXOafBhZq50YDVtZzOxwYAIgfaPBQ5+vcM6F8wCBQIMeGajL3PgmkDidM0fRNR/7mjA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44122646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvq08CRA9TVsSAnZWagAA/GMP/A3mmEYLlv5YCWVcgWtV\nJwYBa+dVcfeb+cmJp1MYTOoEKT0Krabx/5tT9NIpZvs8FQjaOHbrBTU/1VwS\nzTmoy0hx53ej1+fJRH202EyruXaLnLKkodFtP/fK3D+hCUszE3tu2cXD0OZ0\njWBsqpZvh50a1bMiFGZQabH+Cb6bmLeigCqUMsgo6WFjqFqbJUat7uytVpfz\n5Yr9IfiOWPcQaioqbmsNjbrLSW1eA/8e7ws1pdutXHVco9iifLr56ERJQi2d\n9FT63E31IAkWZlhhTl3n3q9pywgs3GeChYS5Ak5riUBTZkIMcT3bkp5lh2+D\nzmugX+YKf+u/uWEFOYixY5Wb3gxwZWgIswvGWYm3f/MJLGR5ng5hpiO4XE2P\nKAo4GsYfRjFOw+JQAwOs+JZfUGnVrBHJd3ucPIp5+o3jNLm2Y5a13NkHZLtL\n/QnTpjebHTI9CNDiM7KzaPcBLtD4H9318C+Rr413J44v/7EiUI676dQ0yE2g\n/mvc/H9b51AAT7xZO+diKl3ZYmFd5tRhAzOkMPozs9hf5chxj2p4u0Itl6H4\nXGF2wM4khPDtQ2qI3V7BmW3CvFSnrHaktJSGtnsjKmrQEUJoz5jrXZ140+vB\n+znMefT6W2GmM7PuLCN5Y0dB2e0k3AMQCnm5KvGPTb1t1W+EqicMh+Jvh5cs\n7kkV\r\n=DkTp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"53c92d608f84f970ab0fbbf4909c904c60c20061","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190423_1556000058813_0.0012938250949690033","host":"s3://npm-registry-packages"}},"3.4.5":{"name":"typescript","version":"3.4.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.4.5","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2d2618d10bb566572b8d7aad5180d84257d70a99","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.4.5.tgz","fileCount":83,"integrity":"sha512-YycBxUb49UUhdNMU5aJ7z5Ej2XGmaIBL0x34vZ82fn3hGvD+bgrMrVDpatgz2f7YxUMJxMkbWxJZeAvDxVe7Vw==","signatures":[{"sig":"MEYCIQCMgZrTtKMSbNDZOgoR3mGc/u+P3jCtRqVazhk0/+vcFAIhAJoUif8I1nui9wPu8cLr8/EliYcKsqBwObdv2c6OycDC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43982802,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcv00MCRA9TVsSAnZWagAAbcsP/RLDqs/z3lMlTwfYMrnl\nqT9Ef7l5L9ykTUYURouRaW30GvajOMMTrgB1RGvzSuS5RR6TlWl5GwS5VMW3\nnGQZLIHr6wKuepD1QeYQ+bEaAgPDA2Zr+ydP1/r2lrsjfxzUptcBbT0Dxcap\nzeOIINxSgKMzJBYT62f9GRqGsGDnlACBBKWmLLJFOo+JdpgWdb5XhbDrM7Av\nAlDkCUYiq830/H9RuDvj+1H3Tm6sXBD8kSPK7NrquEXhYz6MI/zFqYJvZhnq\niwdMormu7Djbdc9lq/qkVNptPEoEmO7Q5+X6ezzYUdTh5/ft+KMnqys0g0zV\n/h/9arpBBiR7artz7sZ2bxTVDV/n4TMX3rVgIPc+ECTewZVGHU76x3yFPXD3\n8pKG1Jvlubx5m01MhFr2S94+nzbT/9KJq2FPPXWJGK0PqJBJE2gxO1CH4yf/\nn5lCTWeZVggjzSi9ZgBbkNlu5zywo1yoXw7i+jp2u9Lwks/VHyNBRot47+b2\nv6QrI8Z09tHchkoyS3Rour8vHME7+dMuTF7X6/J7RO1EHcbDKKjiqG3uIdUa\n2oaCrtr2/RnL+XqwsgpVPtYVJ2MqiGPBDoaLgu57SaLuEAPVHzJjUZk+gDzb\nt1GqA9Z9vHBt3CASgiAVbfiH8f/kFP4rch2lD/mZClnAJDveMVWGvnF7f++v\ngdWo\r\n=9kr0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"^4.17.11","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.4.5_1556040971240_0.26872828333813903","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190424":{"name":"typescript","version":"3.5.0-dev.20190424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190424","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9087472c3396785903cc215c1a780d24227a5d4c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190424.tgz","fileCount":83,"integrity":"sha512-qjTuF/tIGS9RqvXxzz4XKr2TgzyKC457wtEHtEUhrUB2Kdb9HczrNOVQaFh1oNLLOBDHus3oqhzvYDxdLTnGBw==","signatures":[{"sig":"MEYCIQCoFgILSrX8/HSYkyzT2ww2GvgNPVC8Puj2Zfo1blN1KAIhALAvAxmr263dkP3Ymz1H0FBT1w0Q/fd3X/X4VeLGr74q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44004574,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcv/6yCRA9TVsSAnZWagAA3vsP/Rj8oAgfg+5Qk1oY2fOP\nW/wpaNEwLZsCWhdFjtypaONN8B0IsQnbR2YDqx6fUSlDrOdhAu0VuX+YQSAc\nRvKoX4Qb4AMgUOcJ73u7HNJQr4Nv+49tcsCkPQOl5tkMBlMhB5huXc8sXMtY\n9H1r6oQksZRlTpnZGq6WL1QV0R65TM9YS9kXgP1a7pEwAN8iX+nd6yLapPyu\n/bWME5TWHyZgxLlluyAD+NDiUrbHsShdNmUC7Sq+d0hpedg0V3EFgAwmqf+O\n7tRPTnv0lIC9elOjYDCf6XOGsq1QP4UCGK5/IM9bPZW2hVLfZwJyTkisqPZO\ntt8W4th3kbU4rYLRDRzjmsTwsCZP3nT2I651tmMbmFWrqxPCHU0b4eWfaquf\ndkDhCfUBFCflFC8i18HPQYeDRb1uTr4f4Z7kpmqf1qEEV4Oej2304CX07UgT\n10JEihYLY7ZZ6Isfp/O2lJ1HGXOkhPBqLhrFHdNWkUAqRtKyJDEmZkV8YdeM\nsny/aOc+g/Yws46hexwnit349db8tujOLlFa3uqxPYoOsOeBkNyIcZx+8X/W\n39X1meNwqx3MpklFnq7SUqMwgh9sBGW67lWS56/LU3z8+LFZqGu94dQN8m95\n6KUE2TJL05rPybCl61lR8YT//UTNmHlq2tVK8FZbp9ia7OR6nHSVAC+3eN5i\nvKjL\r\n=X0rE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e2310f2831f9a52b2fddc2ec45c81eaf6022302d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190424_1556086449409_0.44286384322930794","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190425":{"name":"typescript","version":"3.5.0-dev.20190425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190425","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1d433f4cd8a78c6a809b86352b7dab4a194b7679","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190425.tgz","fileCount":83,"integrity":"sha512-e69/pGEwU+KpSgQ32YFh06U83bIjCMK9sQ4DUA1qHWdwNrXcueoyMPTt0xKVz0yql6AZtcZJAxNMRZ9hAKln8Q==","signatures":[{"sig":"MEUCIBsdXXs46bgxZJKnAlIOTJ/+RTWN5oGNQOr4iyi9/ZrSAiEAtl/Uxfq1E4fRkbB8ZgupA/TE3E74PRXOFPzh99H4Y5Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44030569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwVBtCRA9TVsSAnZWagAA5GwQAJ8X/FjmYfMYFAKRA53h\nZChgvqweutwXt2lZqQXa9W/81Xddhv8E3kMwgtcIJ5tF54akrpIjwrP0aOMG\nLQF5U1LevoKQUT3MtXV19FwEtwum/BqwSKBVDiw1O0j8T0ZAlNX3Oe5KCzuM\nRL/39P72mVEy+KoweTvrzP8uXD56QRzC/ZSeqcrR8UH95DYho9o2AwcseZzB\nuT79M4IWgHavB7VP8y9ZT4z0PWQ7CkHJ8tLE2fX+x5BveMU4CE05XMUCXlMW\n0Pr4VfNhSaZYQw2D3mfQfZf7sp9k07KPM1GIWkYcRy1sCKGd4SHtKp3deQxp\nmjI6m1Ki4DXfhzCa395SR+kTIZIjYjmjI1QprKqJphyZ1qs0lSHd7/y5eJs7\nJ5Mf4PZPaI9z6aOq4hY0rtgXyEvyrm1eK0zZReRB5GPbOp3Hbx7rIoaPGyZg\najL8czc+yzpNGOyYjk8mk9JRr0Y9R1bYOz65BXNwf5hZTChoWc0rmr5pDugY\nK575qQwbh3VlphlKO9v5K0oTmBUwDeNrQ+lnNh0mK9p4wJXUC3RY4+e0YYa+\nQ9oukxMqYisQcEZNAGx+puELSUK1jjTVD7X4R7jL2YduOkAbdeF2LVhJzNpD\nas3b3agj3hdTBdRWs56ChxzvK/m3IrgNiCMNL5OnC9S8z8Uuy/qlRMooiBxT\nkoTV\r\n=ULca\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b0100100a18d740ad0b7c626bc81b800b5273ece","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190425_1556172908474_0.6928831109684528","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190426":{"name":"typescript","version":"3.5.0-dev.20190426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190426","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fa33976c3c880771ec079be30d94220c38ec86d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190426.tgz","fileCount":87,"integrity":"sha512-2slZ9/XvUzKj6zWPE/fLiCjzs1qVL6jADcbLXMeRS6wfOA5FZJT3upjkeT8pXfF2Y1V9c6Avypbfjnp35r7RfQ==","signatures":[{"sig":"MEYCIQCwCVcZlW95bcad1FaB/nPme+BrR+d6UXKg8m+bVxNGCAIhAKh7//LsWOk/BCvoZbJ61cAFBzcvPH3sBpurfzGpbBhU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44051703,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcwqHdCRA9TVsSAnZWagAA9GIQAI42OnkxYokz9XfqP/Bf\nbn8ApCTFXrpHJpmtz5XjY2pnAdQDAgNDZbRaoqO7tMAm3N5SIT70BTjpozfO\noRQgLTU7jsZfJY5vpt+B/ZNUstjfunnzrP3avOyZbFG8dNZDqJ4eDGu0VoRl\nPrnC/wzUGM3gIVdard56tqh3ARp80oQLQ27/tkwB3Gg7FT1R+XjZxGNBXApw\nQWCnXrWSLrrX/OjHMRHgI52bSHLnJ54doYcm59gKsq4e3T+THVICdb9+Ye4R\nALm43USUQDLZBu7ZhUZ9IjCxNKY0i2rLuwRoRlfUQXLzi+ZZiIsDjL+6wrOV\nAx+odD/nb9V59jK8/Ol9lcVAmT7WEjHVIruF22FIhBUPE5WQ7MMxc8X1YL10\nBVulx1xoZMWC6b30gawvVUuGPQD4xw7bk+U3xBj1Ao09efjH4/UMznr+HSXc\nExkUlmya7LFwq4GALOJlvA+xXHv41N+wIago40jRf9RF1IQ+eqm3qYL+uSQh\nx6YYjKRMpkKR5rxu49djIm0Pqa29SG9vWljKxpMbf0Yk9Sso8AlHC1B4q0wl\nRIHpSSj8YYa/mr8l2bGLzuYec+emZRg4a/J72SqQcDU0c0T6f3o1gDuSDpUt\nebuAfHUcexC4+k8TZN4dixZEwR9TO55CeTCCzN/x1637jfg80F04PXNq9V7b\na7iC\r\n=z477\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0949ad1130bc98718595d8001addb93bde7390dd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190426_1556259292648_0.3327019732779697","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190427":{"name":"typescript","version":"3.5.0-dev.20190427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190427","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b1dc554d1a63d2f1ae8d9349461a54da4d82cd8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190427.tgz","fileCount":87,"integrity":"sha512-JvW5u5YEi1uyNFTTPYIKMI1zgKvvisMBXGGdF/ttHSSnNqSiMvdYuFYCCrJQzG74YWgmwZX6xweJGJO3eoOjNg==","signatures":[{"sig":"MEUCIGlPNzNR4pqjI4aIdvE7/ooaN5JXy3F/9+NQ4KvB/NJAAiEAqKSv77Wgt2QyXfnecUmztxcB07LjzC/WcyGAP1ji+yU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44078720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcw/MzCRA9TVsSAnZWagAAp0kP/3Df/2wFUCXteE2RMqdp\nyyAtn0SZBKG3C9b5vIbqfGpoMe1Ob0rSnIMe7gSt27DhkgBr9NWPBPs+293/\n9gXKHtyHYSwObMd2TwsaXbHLjtMYvgcX9a6asKg1jQos05GoRAvEWmICzU/9\n20q6FM/R8UOxYo9BKgsvq9Tcu0xVQAFUwlP2FqeBn9JKmvrPiSjqUARHP8L9\nvCh2pf2JztfPlPRZxinGPl0iR08PZf7wW98NsRFxOqz+E6WgGGmR/lJEt59b\nGZAKjijyUMmRrObKwKqzIXh++E0kgqsIwv0JEF2dpZ0Gdf0v3we2IvyXSqsz\nL4Dv0Q9EqQY3+d83WTnoLsxlWRwcpBHxSbMnBkjnLPexeHrbLF524TlunvUO\nHc6RFVLqtTTegxAPcXmUjUUFJnXKIIuN2ulxYC4ywX9ita+THfAFlAc5GtZq\n19rXfcquUZUJHspHSX019uhSdsZgXicdX4ZJt9vlb03AESKxDs3D0b6BPEag\n5CEQJFgiWjhjpiImJgge+tzD+xTVdKGalo+Ss+4xSzt8ITpV1EWfDPK646Q3\nqp/SQNnHDsEsBgx9zVj0o1wDCzLBxsMcSYgpjNtXUMFQYxTkDUtdskjbmWNK\nKPUDFYJ42+hQ09jk+1ES/11ZYscccTKVStq6GPkKtWU/jVlIRfPDzRVJj4cJ\njuQ3\r\n=Y07T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"454b4280b11d87c1e043f26d190af0e0f214439c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190427_1556345650842_0.8509244392931814","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190430":{"name":"typescript","version":"3.5.0-dev.20190430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190430","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ac052ffbadf7ddd1bd0ce93ffd832bb204877643","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190430.tgz","fileCount":87,"integrity":"sha512-aNINOCV2FBjRpk6y4ewVanXSXMEqTJgbhvnmHcSYLyB6CNe9quCpjaRHvysV3r9Hop+1ikGSzkbINgfzkvEY8Q==","signatures":[{"sig":"MEUCIQCYfNqs4p1yjrTluGmnC9ugcWGp0EBFGJvN5FszXGdZpwIgFNv41VS6EhrOUAjiZYB2GtuI1jpV6+EnWqmTbev08oM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44135709,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcx+fdCRA9TVsSAnZWagAAEloP/jFKtgLee55yDTZHVuHr\nj7rplbMZFPaVLtd1vvykyUHXnxvC1egaWN88yhWChr9y2ztVw7/ZRurvSxvp\nHVoZW9THZUnEwpBtXIyX52h7RuERfqKM/BZgcmlMBOJYujoQpfsa5SMemlNT\nHzLZ6EhELVzemNXjKjJvKirGc6Qvu5khCOEzD6ZBQMJUn8mQBzcx5Vdtdf5q\naKydl3GK4FMHO0Y33FCjnSPiJp/iwWB2K2Tt8zhPvnmyndnOJkP62tB5E06r\nZnwsLdaM7Z5AEfKpZEt6UC8fwDo1MDPNnbcUqSVRcGPsnCPSyD2/D0yVVehD\nm5Q6E3Hvbg+l54Ugzl7KvtNmZw9xOwa6MZ6Bfsn0esxVAWcs1ERzy+3Fj+2n\nb+XuxdDK8DwFfEC8jGxIGi2tvuJiDuz5V/2lHF9FpbXVnpx5Qn+jO377Q5Fz\nxb2Aisv1M6L6Ur1QALc9gH9E1Y4sXEME7RLvK7hnRkngCkmr9reZtaKyS/gF\n9WfVzEXZvujlAEHhmf+1bzXwwHMpQmuvRB28HwByVeddDKJ1Aop+La4Ru5Ob\ntpU2QEb5w0ru8XK5PnXysDyCOL0PEBKmb/fsNuTZMX9pBL1U4x3zJ4RihCZ1\nTfVBKwvtG4qPtak8dnTYlfmX0RQfNGhcvXMTFVNEjfrzcgqZ6XloAcgIKVCV\n/nwG\r\n=f+4N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a539887893efe8580b18fe70f3cbc109676952e5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190430_1556604892569_0.6657807200584329","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190501":{"name":"typescript","version":"3.5.0-dev.20190501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190501","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c5442f5ca35289e92618f4c5adde9c6f99f84c10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190501.tgz","fileCount":88,"integrity":"sha512-sZznRRDJvVpVPxncoBgcQ/d943kofh/+zSlhvrNjZVDVKSkCcYDf3hARFsriT8cbj6D+g6cQGYQP8M92ZSjaLg==","signatures":[{"sig":"MEUCIAFocUQUWtBJwOpGW9eS74dlrmNwqURB7v/slfXppIqsAiEAqPNQKX4XApJDPnPVCeeje17DC9C5AYeZn/HkasliB58=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44191678,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcyTj5CRA9TVsSAnZWagAAy0UQAIqIll+vdV+yVIBBxFCQ\nUQFAwA0E6PCT15vgN2JX5bZdlSnEn64zMHNql0WpW/P2mmAA+nbJiYFihA59\nnQphP8bgZ4fYlW15E6QeUqN/MLv7cn1CFNQ9uPLBIFI4ozJzZdkaS9LEnjRL\n8tKcwwRZnS/kpJ3zSLGxp3V97hztMR1Z+MNd0K0lhe1x3CLeXG/t7dsYMJDv\nTgIc0tLLeUwI9o0kNPUBW3DSqiCeQCvXWxGcg91BSYPRGYEVKYOi5VLt00aW\ndrGaLkGafdaXHR1EdnzRg09AC1LMxgyUZtQtkf2OKugXHyFVe3pB4yCe3+lf\n30N+9Te8ag+LRFu4K4fHMsRnZYMTRGN65PJCgmDeR/wcC2V3wBTEyqE/7dwR\nKVi+EvTZ3vjWbaNW5wHK8WaFJ4hsV4nVYv4fX83r3iSQ9PniCCS3xLrHPr+d\nvjQbaimFrxgUIOjLaSM/hSbMcP2RsP7qIgG7pLxlUa2oyNOmFl3tdAZcEJZY\nFk1A/DPqooAB0K3yfwq5XAr4Rl0Z9tsjJM4UdhpsWITLLQmmekVGf5iAMOFp\nTF99LFfMwZxX5VYpWBUVTOO6bCYiHpYHL+TCzTsSp3ISidCVxbEEhZAVCeNk\nBiiaD/XAHlfxw6gaMD2MYwX9czAdGIBSToIgBF+FbHQnyVoXSm3MS8JLke0X\n/blF\r\n=DZvD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9509a54e66034c7ae723051a3c79afaa9084046e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190501_1556691192231_0.9150634890276577","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190502":{"name":"typescript","version":"3.5.0-dev.20190502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190502","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5de44f0fb4c787b2749bdcedd975497e7436e8ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190502.tgz","fileCount":88,"integrity":"sha512-txMRX6xDYEDIjGxEBcnhGOY9EILoKobAS+FBH3bdSsq/GQugMR1CPr6mn+daMDW5pLDV+UmhsA3PndzHp3XODg==","signatures":[{"sig":"MEUCIARtlwiYgWcQxdv3Vnib5isTrZ3c4bydE9NPlKAJS+dUAiEAsWQajuYahEx8LBw4VQOlwkTTzO0towU8yFn9I0PIwv0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44212757,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcyoqFCRA9TVsSAnZWagAAoUkP/1pWW3NZceMiIjHMS7AO\nG/EnTcSF4UGbWomfEft3GDwl7OlfZawKEi9acfz4WgJ++rMeMSd9BBqip7nS\nEsMcy3HLgcz7FVKeq4qpVk8SJl1L+kyl7yExH0inFE6tFf2a6Zljq5DYhNby\n8Sf1Y7omzV8fhrHnLvjgkoW50Q7BZP5gqYAfqjpns+/Ka5JvzvUcY4O+GCjl\nh3bblcF+U7HYp9B2dywwHK88sucOL3v+0eqpxU9i8tP0C/TXarwNfpmK+Jrw\ntcnSgLa/Ee6vmtSeXpWrFKJSWhevhCSoF0uyi0FMR9/2Wl6jFxHuKwXQUue4\nlj2qWIVHv+4Z0IlBpJtTvGmATwQlEvz+3DueeKfYPaD76aVnM/oddRkvXens\nu/d84RUHHxlugpuAt+RGALkwBc2Il1dlzxfxUJ+Me/nUi6QUnO30w6Locd8Q\nEQ8FG/tSYrdJ3I3FhsNG/stXTWmvYhhfBYQG1sL/KXiqnmoUdEz/HhX57C9c\nPaV9XQunxMH/mGMfpZ3R/bos5x9v+2WGaFH0wZEoIsv+ezd+/61MONVuoQkT\nWBZ1ZFQUGanCeQv2M2wtujOVxSzW14LHCR3J5gQxFfwxAprNLlbALeNXmBNv\nXurlp6QtGMOZkC+gAZB3Dv+cgzBOAogW+svdekU3DEFueoZervB2qEyHglel\nkMns\r\n=qG1k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e3a91d8ca15fcb6e40753deef7218d33e74ecc6d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190502_1556777603748_0.4084612122076703","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190503":{"name":"typescript","version":"3.5.0-dev.20190503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190503","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3d9ae78e56f330dd37d18fa5f967fdf3d8e7863b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190503.tgz","fileCount":88,"integrity":"sha512-9S0RQJ02finIQpSEvzzX1LJCZST+uSDgpc8dass8M0xO1GeTMzlGunwLjIKgVn0IuUxuoynqYexPy3+FQKfHJA==","signatures":[{"sig":"MEQCIEfXyJAYLa1fu4o5xVs9uBnysRYQJya9nteNvuCiExjKAiA1IiPZNstguysIQV8IyDuStoWLmCptnB/6v68pke2GEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44213052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcy9xLCRA9TVsSAnZWagAA/7IP/0C1TDu9hnycY8GMqLGX\nN7BH7UGilAu5+dhTPQf8rAnbXUqx7c5zrRdfmsbxeh83dnxtYa+vz7QqNjRq\nSPCGSe3v5/CE+PkQgLShv3VsFiFrLml7JaMADcW9SWKy1oKO0yOTqXuIFFws\npd/5G8AFhJ4CzIHoWou8fvFHm1bxFbofVzK3FuWaLGuA+9mHXlATZ28D+E03\nK6sZS2SFKxXnST0rdq9lAMNYp6TugF5SI9wP/YncVVDLd5NVW0cusBPHBUAo\nvUSqRhUXvE4f96IveZYu3JaNF8U7LILM9hGblXoIL88wvDfcKe3kYN+gVNwq\n8no+Vd2Yv1YsxqSgnPmvSrffF002Qyk6TVa5h7a7zUzlJKw9YuR0TrOzDKHy\nH8AKsbIDFRgszF6MGyXtXdxiBuHKXGWOziX1B9ruCzE4iJ+LE+u/eJEtEWUI\niICxRA57q51ijupkB3rhDeQqtMi7UfNCLUS4vM9dqb+zjcVn/+TR+CdOl7Pc\n9AZi0I9i6DR1ysID+iEHbFsnQ/BzaKWRN9QRZaebB9XXSNFJQ78FOIXGZ/xI\nevyediaHkvJbeX+uA8zfKk1TMabTGCWJ6m0jXUZ/oghlihlwa7ivzMaDsESY\ngK5hSrvymnOHc4C0mXe4aSdQhX5M7z4DPrL+nCadRXov3mZ54/jOHtwJsdKS\nsj40\r\n=nWDI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"66d40102345606bb6e92bbb2ff7f6c1cd6b16cf5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190503_1556864074736_0.9397323400214341","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190504":{"name":"typescript","version":"3.5.0-dev.20190504","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190504","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3e2da4806d0660bdbdbd429a62a682e3687eb658","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190504.tgz","fileCount":88,"integrity":"sha512-MjGaVe9BOFLSUAi+Tz3dDohOElCgQPZHFW7CnXXaFDo+BWdYhrOyJSMm4VbGRzSAXrmiZ2MNBsWp63veuYgAOw==","signatures":[{"sig":"MEUCIQDJ6lOvNE4Y28+3Ec2Axl+3UDttud0xzUvnZxCyF6EvrQIgMZupicuaXs9RckIjGBN1YFh95wzrprqLzLYj+cYU+/A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44233661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJczS3gCRA9TVsSAnZWagAAvREQAIylsJ8P/7WZ+MBhlvEh\nc91jd9TxgS+hsrepFK3044ffMnQDtXfjVD+EUYXE0WJdtQqpmQhD1FacZDF8\ny0ewcp0fOMlEHwhVYeK8DtuM+xQcaiu68fB128uXuq+SAJKrf7z85m1ZYLQp\nNJfy5tY2O1KJzWpLHm8USkh1wNZeBOjQ1oOiUVcDlVdp1ap1MrEgptHpH7KY\n1hyzWS8/J4AqFpMDybCOvW47QmM6kZZ9/ubfVZ6swsdVgrCb8lyPNyWVWex0\nucBBpAkU8rDGPZmDh8qmS+2z94lLfbTSY8QKgx4Ka8b+hWTlbGRgC03cq1xD\nfNQ/560UwRqMOrDOXdHeWn3XCdfWEMWHQqYGf2qyHem0YQT1En61l7u+zIbh\nj5GsV84Wz98ckV9BqrRv3+nLyHqlrc3a4ZF2UbOnMA8HSCAih6tPBpfXFpio\n3HLM9itke0RBe9P4stv707z1wuWmdWCDBgFRNI16fcgEpdkaE9M80kGjULeI\nFMnes4fl+lEikM0/gmOd665rdanAfxDyMv6x1FR2Xk3Hf1dg2MeP45OHrG5s\nnUY0i1dLprhTEaXiN2dDJasxEuJn8Ny/u7YCaV4hRAANZWHyl820LUpytp4W\n873CVqDheSm6HGcj1lhbidTSEyq/M0efZ/5wXsPxTVED7yyr9Ksw+qIBImZh\nnhSY\r\n=sDLi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"4ee0084fa1072b8217f303d17d301f9b9467fd69","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190504_1556950495258_0.783791286667876","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190507":{"name":"typescript","version":"3.5.0-dev.20190507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190507","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ef9d803d996766ba9316b1def134cd0eda330460","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190507.tgz","fileCount":88,"integrity":"sha512-ovjIiPk+noNC5vKDZKs3cfFCyPodL/WJumHoDI0G5GACYwa+IlpngRGcF5U+vNzwXdPW1T1qkVaIDyzqpGWOqA==","signatures":[{"sig":"MEUCIQCQtRaZ15+afna41Sks1fTt2rQt27kIWjK102QSuMOVTgIgSfIZQXj7xWw9tbj49u/aHpMTbhVCyxVD5s8lceazDVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44234123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0SITCRA9TVsSAnZWagAA0hQP/AuaHxLbnhfFmBBrTPKJ\nQA+MQ2wp65YYzEfPBbwKNKm+wWlLzygjsVWMwuq5APVdlfb0sen4a3laDpcy\nj3YjTFzlU/pcj031OT4G9n/uXJwTkG7JmboltHDXF+Wq2lr74hMKp1FxTPpD\n9cmgS4IQUMQQrYeT/6sNZyCYtNvIBkAZgnlmeDjOCaQwsiMe6rQhMI80nZvs\nJ/aUt3VWaf70eWms1jBp3orbkU9pPi/Az8eOM1/8bFH/tmyth4ppz4FKJaJk\nvp4NDxXIxidH8Y8jVN75iR2a4FnlPGGS26qfQk4HnHaKudH+1mUNcA8RdyST\n75I+4guIx5N/6I3yXLl34Ng+r1Yqsg0uOuEyFD9QNzFQvuIAlfVlMgJJA3Ug\nYHL7qepZbJg4vvMYAPEFRy24aXTJHcN5goyI/o/e9uiuRaxRqh9awdIp56N6\nFHSAMGpykNSRiVbbj3T2GAPA9cZwcgX4okWxwDQs/dDZ64f4WIZX3Vn06Bya\nyNS22B7DR8GEkCtM1mSk3HNL+T7I4rWg2yCn9yf4TiLGSOu+r6Mnm24l0WCJ\n9BIhoBhPkJ6ba4yT30gnDfJHy1dqcWlCTFEfDXkpNa4Zyf0nujRbM7fsR0NW\np+USJOIoKYfof2IkuEcX/HOhdq+tV34NR46CIyOnzJLmePSxKBYIqiSfsXgF\nDuqs\r\n=94pc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"6c4876a00a1cf27a1272b2d97a270dc9241f3872","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190507_1557209618461_0.8270323632845844","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190508":{"name":"typescript","version":"3.5.0-dev.20190508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190508","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"469438b975b85c20ab8895ee3df8829be4bc0757","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190508.tgz","fileCount":88,"integrity":"sha512-Eus7xB057/ei5FSTHGnWhE/ciacwtmUvDexicXkBNnyYh8gfP99aOlSaHavcWL2MxZo2GEpjnduTwdfjqNVpvg==","signatures":[{"sig":"MEQCIE4y81A6OCzh01ZK2iujsiiwqAFSU3qzEPSbCWp+VDmwAiAdM/iZ0xOEI06ml/Wf3ABSs/iqTe1M3js2Xpalxbsc2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44283685,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0nPHCRA9TVsSAnZWagAAzdUP/2Z2Coy+2/A76lVahuo5\npBh3AazNcCF6UWMhqHRRKO6WZNo+kAKjkCWu91+cu10VrR4VtpCZXgnbU3VH\nz2mJ1Dqt7PaK+5x6XyUuHTyPmFXTcxd7DtotUPaalo9CYtTqxeND84drrC2q\nitdpBSxbyz8YNa4nsonFSbDFAWpywBdwskSulHMYqnhVAZIDSBKxTnVLKtjb\ngfUXj4t2sVRRCRotli4r+Z5TnYbKGYgovnfzPb17PZb3ynLBXjiRcAu9mjTy\npFlJMuT24XLhtp8db6WBcerttpkxsXbl3XbEF8z89KMWvU72QvNq2bfNk1YX\nULzCfkQgy9x9jE4rsuYyd0Ga9rHCe4urBadLWibpzi4XlNMCpOoS/6ZL+rfK\nG9F6avotp7L3YwQNRWsE1pMxFjNpq0jbyhg9DMdxGZwvhSwvJTbk6k5LJS0L\n2yZaIuGfB8yhaTD26E2w/r6Qegtg73F0upruu6wsX2YcAn2i/Bq7QVNhomO6\nXWlxE93grskcyrAamNzTxVN0IafCYGaWHkwZylzsAo4GI4U4XbBFxQS54d8l\n0dTFFtZACT7TnLEAd0E0lAvD74kW2KVN4qE9lyfYko3fjZ0dd+D8fct/VLf5\neS6FbWlRKPq7E6ty7AqNk+IA7Sdnt81uMXSOaPxmpXwX0q46+2fxc/NMSMKL\nzInG\r\n=Qn/5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"15e9c4ce33ef98603483f208c3312c2f21434c52","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190508_1557296070774_0.7282305849703807","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190509":{"name":"typescript","version":"3.5.0-dev.20190509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190509","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"28ae52fe31c6d3bd7b95d974c96ae0fe84fc54d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190509.tgz","fileCount":88,"integrity":"sha512-jbpXSKOn7BOgAo3/B+4Y5SXf8xTQyqnOeZWZJC2oEhvOJmStwQCRmurzivoZt7yx1oMG7ilhOjFgKtkOaJ1Q4g==","signatures":[{"sig":"MEUCIQDb2Avf008ZS4r4U3v0OOtTpBMEHobhhWlr7wQWovEV7wIgZl9YR36hXVnXSGbmbYcD48e9gmCnOj6PqwT17G1MOss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44284213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc08UrCRA9TVsSAnZWagAAtS8P/2niRvfYljT618fErt/a\nhFJGuTBzzI5C3FHeDq7ZBe+/76xtpPHynlJ2zZddpKW6cGRspFc2dA79CjOT\nCfOHFu0NZ5Tgz12n9j9KbCecZLO4lrNfYQwcjFR0ez+r+TpXTwIfUnhO53b+\nHaPQkUOuuN3OrUsJfmmKKU/pUweVic0D9rkrT36nOqg5XKn+ETjeuU22g/Xd\nmxaJ8PAtUmLlnNqCyO6D1GrGRt6cDE/SbWwuEWWP+voc+SE6OBvPsfY3yp84\nR0HwSPYa6ZuoJB/9MWXaJW1ri2wD4Wi9TRbncvwoHWALLVr/sFK7MEy9T4KI\nvjZ2udSvIT34J6Dh+INPbYCq9N7xhntznP+Rt5q1zuYD+OnGDTWCbVzMgCnZ\niR3Lltc7q1GgVzgce9NtF52FkER5ADBcupsG+BKo/ntPvpFZ+YiCyBRj4N+C\nHFDDN3NFseGH+/++0CvTIZ7+K+qMa3yIvUWK6eeQNp5bHePtw50pewXmda5l\nUzj7YpMDr8wjSLrn03zZG4sZtum1+x7Lv1fhtFcFxH6i4Cu1ZBfuuI1ijmkm\nbXB9NvC3DKpWa2W1nGbBY5Zd329Fwu9WVEsu7HskBPcxTUQTRKrF3WlI1j/w\nP/weI4aptRHtqP7cwre9EoPlu9Fql3qeoPiPxpv/xhr4XX0L1qWcbDcp8jyB\nCtFF\r\n=CDjw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"0c9db717add6b9e396accf92f5d2249d5ffb180e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190509_1557382442236_0.9510494298412959","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190511":{"name":"typescript","version":"3.5.0-dev.20190511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190511","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8f45fc84e6bf0f157a4af719e19bb474e15429ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190511.tgz","fileCount":88,"integrity":"sha512-DVkpP1PAHsBSUe0Da6Ze31+NLm++zuS6Cih9N+WekVg9Mh6rnYVrnjJrRwxG1zddqvGaQto4xip4+ZbBA1RRXg==","signatures":[{"sig":"MEYCIQCmpDMl3hKnKXVzODKg86DlWmLON7EVTaSHoTtq8lb4rQIhAIUXCFHwD5ON6PHoDN8ef/YFY1BULOqLvXQmen5ucZtA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44298255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc1mhZCRA9TVsSAnZWagAA9dQP/3CFJ+o+RR3q/9LNY30D\nmm+rUGZvPyPgCn34KPVtIn/tlAz2jsBt6psIAyfaDn+uyxVUyejaIc0HIZ1Z\nDw+K3Pac0IdCpAYoBl1uBYWv8qZjLawqq4s6rTAuTCISyD9TxWvcKkAx4tAI\nWqDYTqXBLcNAXeqpvbjJ5NWZl+qn4o3d+nNLYEs86ciZCXiQn9/nDiGTkk9i\ngjg1FtrqH+lhQBfjVF7tSoqPxd1EqLEFQrVYI+7Mk1Qjakrdisef0S71EMYC\n4raL6aLqAV2Ku6X/YkZNZn6ZgG67DF705gv84bhpWvIioRv/Wt3RdfPFPZGv\nDSz3CmW9D96wUSMX+WsD4MWL/BJrwPJnSCCc4QXSRbU4oi/ENbb4OrnRyvYR\n7F2AtBWvhuss10t59ppCT1Elgq0VouXGyn0zD8VkVAdJyMe4c+ukYgf5Z/hD\n56GEjBBqKsQHKJNQo42SBBdiJYIT5e/TxBoREmXg9dpK1BUCAH1jMKMY1Xax\nHJO15wl4pavp+EPQvpntoA9aDpX4U+ooyXHkKcLoPIkJbiujyFzZu1kP+xkI\nCtpW1L1wa6aoxmc+bwUEtVGhFK1jsiHZwvZydtyeXSzlHmA6kOL1SzxcbFQt\nqGC6TCNjyuoXiTS9gy/AWGO17JgdYmTIjqjncbEoqX+wmZZBIMMIIfw/Vhtc\n4hkE\r\n=bBej\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ae3d1d45c1f98b103adbbafb03601205a981ee9f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190511_1557555288348_0.2617493408831797","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190512":{"name":"typescript","version":"3.5.0-dev.20190512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190512","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bcce984f2cea8aabe8318c6264788a610523f461","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190512.tgz","fileCount":88,"integrity":"sha512-eiM54yNLv+DUSz7L0dr0S5QqfyV+7Izu9sc/QnjrBKUtDLgh4EBNpBeaAhGHPs8JE1+JLKA+/QXJie3PUqNKBQ==","signatures":[{"sig":"MEUCIF+dWhYiSQjHUdE9qj93fUnViMXuWqnEA1M9GCDju5yMAiEAk03gSyN9nmHREQUfFbJTS6Qh7WOkeI28E34IEgHkwhU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44298651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc17nXCRA9TVsSAnZWagAAssYP/2/yY25VosGwk7g8Lo63\nJkvKYX7WDoDJ+Sro9QQPtnAVxxHepCtZ3t7lBJ48yPwUXN/BnGrH9MWmw1I4\nsxgVX+V9UgGrcW17alLxgSV04XXLy/8kZejXtb6JSTvTuE/eypzf+04mM5Ca\nscnRHA1vVTe/CjpnOaKTdRiA8JLB8szyvt95F1xQm2lon2as/pv2ClYotPd9\n26/EZIvaYhJuNYYSSAsVlvOwW1vasEm4XULlD4b7aNd9RonrknwXsaOLfcW7\nHVk+FQovIlOO0oSPmwv6lt0sPqNED5IvEXrlj4iH3JCo+dJ0T3QFd8HMae3S\nu+sTpJBu0/6caTcfYWb7XK72N7zxKKO3pzEiM1M5JZ7gyOav/WSIoysBx7xC\nop8pUSg34r+QFbA2uDMCxJT9OlDVVgVsDO0tDY1vZf7zATRTa3FBrXTmaGsp\n3235AD/v/4vEENAsCK4NB79r64qDPSqk92UPDmUTZfWbteOzb18dx6+Cs8Ea\nrRxmsSWxmvsk8bQ0KOCOMkENfOBJ3HU44/w+bQ4uzAZ5U1Ryger95FJ0fjRZ\nyK2OOLvd8kW//uzLKrN7qGgsuwuh7OgPts1rYXvD87qw6Ru1GA08F113tDkW\nKb2JbkCi33oO3LMqVoRUjEWxOMOm4YdFDrfs1aOIZ16+EMoDEA0dMeyVh2oi\nqHne\r\n=jMiX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b7fe99a88c59bd652029bdfe5b6ba8709a677838","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190512_1557641686048_0.26148342565330585","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190514":{"name":"typescript","version":"3.5.0-dev.20190514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190514","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f791a398f2b57cc514434726f690da68144ee73c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190514.tgz","fileCount":88,"integrity":"sha512-XFEpXv7n2nnYek4SaL09QcN8JnxwVplaPKPquPO12qc9okhN7Afmiu54LT1WP/6RmcXRFma1QKrr8Kfj1nLxYA==","signatures":[{"sig":"MEYCIQDy8+HAIyW/63Zl4ebilYpIX9ZHubfzzb3Vn0d6IY3NNgIhAODasKBp62f2FYE8L+SlhJJreP06YLgJiJfrAMcC0Czl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44293335,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc2ly6CRA9TVsSAnZWagAAW04P+QH9wp6HaXIGPPolZRP/\nQDgT75W32uMpSPjl8oOZM2oMuXoLpgb+vx4+vPo4jwONQxclvhcwm/3byV/S\ndjbo+w61hE6Tfq6hUCcuGJSj00csEODnPhlwAXnIMaRn+DoOaZFjU6eZgp25\nsNSseXnNW62++l39yqqMH8k+9Vn+jJHxlPrmhFX0b7u4BEPW2w+y2GbqpzCV\nCJ16xHzZJEE5YdKDStO9aVbRch4tmRVjYZNC4sHCO0Tx23Hriww0VAWtWb/t\nVfQ2pF8fzocFnqHU1zjOg1kpGdjPEhrftUvrTFnGnL3tMwHqb5xZoq+YdhOI\nDaTjpzAviZCPPIXb77BjMCjgLJmRcutC9QbKoIE+sUkQSoqAwwvd3NWT/ljV\nd1lkJpsUQrAjuFwDfaYPvsDFbWX4jIKEWTGV4QCQ9z1pkGd6abdlVlZSJ6r2\n3bncwq/1WkxGM9EaF/l/f4RgejIGrkOn+e/wpd4BxAY7uG8G9ogMFmI50Qko\nlabbff/sVFSKSFxqz4n2lHzk0zV0MYaXftm7wCtIfHSk2PE3y8f3N+HYR0I4\nvKvN/+4lT4gx3mrE8vBXe6NM73mJFauJIuekJyD6Jv77cQ+UVSajbuRP2pLl\nC0vabI5y1iHRSaLjt4UMAVyMEop7MzZKtQxWm9Mp+MU6BOtO8ycD/g2UuQkS\nkgU1\r\n=+dFP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fb6ae38ddf294518ae3ba3cf97de9c0e63433551","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190514_1557814457265_0.9902881226787053","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190515":{"name":"typescript","version":"3.5.0-dev.20190515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190515","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e34d9f4ae5352ecbb7bbc2f67db6cef3d5f7d58e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190515.tgz","fileCount":88,"integrity":"sha512-pE5yxFLdt5gT8PEX1Ra7vWU6HCdo4039be182oeWk8PTBWCWqr/XxlTjRxWfYgycNrI1vMjOux+n2y0aFJ9eUg==","signatures":[{"sig":"MEUCICjpmVbCoInov/Otr4hi/zEdQ12j0kGcUFvZEHLZjlZ+AiEAuQOnzgI3uruWk8wbSyRGJ+xbtSEcxjD614RoKySSntk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44298294,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc265cCRA9TVsSAnZWagAABbQP/3KcgHx66BW34toCXCYn\nmFPhw/HHMr5t9Vo3R8umxHAJHGhilLTeMdqEy4BAgcRYjhDiJjRspTkIEPGM\nhhs132wo8KesnjvZ0l0SLezzgZQzE53nf7xffuNywNXNQFvciwzYmiHiUtK6\nmrXKeTNdZRfiVhEAPOj7YuLXexS5CxWoWALr0daYHz/C2oSBXxAUwfpf047S\nOFLhL0/yTQwxy2HpAzMO98bzorYN2w2l4S1Qzb5yzVewC3js3iB1rVDmICjp\nnIVgm1CSUX5EMzm2qEt4zhoWT2Os6L9blOxeDGfcl9UdJ/IdtQsl2+1FU6Np\njY62aGnOxdwn/3GIZ0SjCe+ByGSaAMDgFwwp8p0YIZztqur2cAzxoam46ZjX\nUjSkr1G4jBX5eKUQ62icZDPolV45Z0T2QRMTkRrCDanP2N9pu3rFVg8myLgF\nkkr6v77ATUq4y4gvoIDerZTdUbakMNoQVyLC8LuPDQrUKZjp6ufzMy2Nm5Oc\nIukpnIR4f/SHyWsCgTxe2JXmIGk5cHR2GcmzaTetYTCK/JGwD8HaNRQv1zeU\ndjfIvFHpG7+O1dvZ5SnwFk9xrvXktgCv57wh0aUsnIfjzvbSPUWY5P69MtQD\nwb3ps4D0XAynKl4JzwUvrDUxstFCCuxO5eN5nvy0my7wd6UIZzzdXi5NK/p/\nIn0s\r\n=M8TW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"922186834fd54d7a095c4995528f04f6e5dae41a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190515_1557900891033_0.23152170260600902","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190516":{"name":"typescript","version":"3.5.0-dev.20190516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190516","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7a7afb58b9508484228eee2de6823cb40e8a1147","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190516.tgz","fileCount":88,"integrity":"sha512-J+1tISjR4yCmZ3F2wWZDEMoocF4wdXsHf68ln6cb0gjm8VmSDUYSPOVbCJUJoLqjWaCEPs05O7eNrbTulo/4ew==","signatures":[{"sig":"MEUCIQCHJuK5v00MvgMn+eXY+e98e5cPHJSlEvrq8p7ieuJrnQIgYjMxKNZmqMwdOAw5H5dsXae9RUxpfFUbtD3GDGaw2Ro=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44299822,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3QAFCRA9TVsSAnZWagAA/FcP/iF72zpSHnx1K2WU1vCm\niI+MqdDpMM5O7zdZ8o5ihwuw+5vlVVY/btnMXKD2cCjq4kDdxEecAvVn6fSD\nWlWXqAQHdKHMQETgftpF1ecgPCBPjb3oUeizpSO4SAuXxtSJcMChKALDrppM\n6U34scFlBJ+KVyezarTiVOcRJsY17NHm3HywsvAlhRQp0QMm9DRtk0DCc9lr\nD6vddX/qZuA8qjZrQLPWTxcwo/b6PDZizSi2y295dh9benzgqD8wrJ4DEX9T\nvzwNcBSgqcsogSBgyt/jybaCn8fLcX1fpS0XSC7ytUkGJPmIGO72ufrBrRJv\nWEUSmiiHqDD6/wU0u4H1vuT6f2NEIotpaq1PJz8LudJU4W3Y04JB6i+a1YFd\nxoaUxxmJYvn2ZcFTP/RdKbTaqiqmVBs7chcjVIuYk0/bWBBTGKQGalBrkBWm\n1g3XMQ68ap23F/MNKF5xLdvocipZ7VXmllJ1b7qWfIh8jVaT7Cwm/dXH+i43\noeC2Lwyqotfrw2xgul3Wv8nDwFrTzzqXKMLWiwSPsIAmo6Z6O8D7Bg9Mbx/t\nbsyZucUWrrtNtvwcFL9ivS4T+gr5Nl82ooV984VwvtHxSR6c+S+QhfLNhLSJ\nDcT3TleSSdvLBFXIrThCWYLlkEZKGoaQL4nEOM05+6PpALGSbb1pyePgpLTf\nL6tL\r\n=p7Rd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d484163d0f8445aa7e1e7b944550922e99cf8305","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190516_1557987332149_0.30098776431183527","host":"s3://npm-registry-packages"}},"3.5.0-rc":{"name":"typescript","version":"3.5.0-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6f1ada90c15427713f8c0f4550ef7d357ac2a5f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-rc.tgz","fileCount":88,"integrity":"sha512-8Os3bqTeHc6bf+bkPFL3O/pb09j8SbDa2LUBxTXWpZlcHUW9ziGuiEFiqMcArkbAjGLqEzshkl4zvxhb0gVPuQ==","signatures":[{"sig":"MEUCIQCUPwM9IfagrR2vQpBqwXVHbmWd+AgvroHK6BUymXto9wIgZnDAJHP10r0IBiK5WvBXiUkZA0OuKPia3NBTNMEQPfk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44366427,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3eYkCRA9TVsSAnZWagAApHUQAICxdv14phmV1ZrmCQ0N\nN0VzxoqOENY/E2qqMXaA8IJMsqoAcVtskDdadfg5zqLiP8sK5rCa49nzi3vS\n/C6/1SGu9J4cY+KfCN7QROxhppw2sgiDl/D0vQSdxyl7qr8hrQ6ZwXLKsmiH\nVqcyRHjwA2wDM+am8JSOGkH1BMWSaEbNBAaNx8iUuxD2rQWejrreHzIG5K+A\nQHkz0H6MRw8+31RlbOPM+4FrZFOtJMGiKBZ+o8Ql5Ott6yfSIjjDb04TFHL/\nhl8hn1Bt3w9m4tLlaysccMYS1//AMC5VxHjjMpYX2UZagvbkOdGujOp8STlC\nP0nqqpeyLFRTRFWyFH56cP/wF0qw57YEaJcLQPIdGIEzS/0fzYsVd9CsE0PU\nB+ZFuzhKlSr1LevattW6aRA8qaU2lKlwQMvo8az1RghzQXEeTmFDfrTKTJ/d\ngrMhM3wvwucT23LWVX5QshQZJbzwRc9CmfVXpds97U76wxeMvXuAiA6rZk0M\nwXEpvDMH07vYVdeQpbfRHcDFBlFXke7TkLVfEKrbwFJCfRhGNghfHlQvhR4L\nkDxWSyqUel9WuA2PW64hQ08b5GunSU+8C7b7ESV+zX1Xe+q3td1lEeSZ6Om+\nXrvU+Jcokj7RBqCVULYPBZLuepkhry9uKq3itMtiHgFnY2OUWv3Jhkd/L7RS\n7QY5\r\n=Rv5a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-rc_1558046243241_0.38771897265127264","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190517":{"name":"typescript","version":"3.5.0-dev.20190517","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190517","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5a85f1091cf33fde39b04f898c5730e30edd3e39","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190517.tgz","fileCount":88,"integrity":"sha512-KoBHq6ytEApXKTDtmTu4Sp/tC5SPe4FpvwutLEANhwdMPblqZdh7APuH7I/ceMlgfHSa7B00JgF7NokUJQi0/g==","signatures":[{"sig":"MEUCIBFvFNCudnuiILSaXo8gZsHvShDlggPy0s+koSxyzvLkAiEA2mbnWghHeNl2+t5lpcx7zQsjM0k8vmQqol+S3CVBmCI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44366330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3lFhCRA9TVsSAnZWagAAw9oQAIx9czt8Em57/zUsw5fW\niQTnl8yulhyHlcC4Tvc8Rc5isUg0K3oD7yjMLwW38nyVbWh5dsGIAr4YAjEh\nQ6bXqZjGSgkXqhT3KegQkqJCLeoP+LXP+l3XOa3lK0lZoZR7P7RFNYcN/+48\nAhPVpheEwKitq8M9gBNQILPB+KM+A3NmfihKUFAhMkSp+K/p0mfRu5XCQQ/o\nWG+0apz71fcb8TP3Hh6sBf58bJ7F65G/bWnvgaCi4NP1cWUZeH3Z7Rzc7owZ\n4cGLjG/D83HSUiPOo1GLcJtRKbsUtWBaud6Br3KFuQm8BC82HeCJw6Gz4LZI\n4N+ltzxnE3Hm9GyEksumXqE8bXJBP19UUr6SfrDLJoM7LcYThSVYiZbMvLLb\n2zqk8eHj9NkxG/wWrLJvtkabaS4LznAP7rtSDg5fCnIunTV6QVUPZtCLtPU+\nAb4C9b9jsZMnKeIDjSXSTeg9H90anJ6gyAejxMiKY3lu8RJRotKYa2NKywmo\nY+TDZHLqG4DciNv6X03TLqvg3IEy87eYHDVBuB1aw+cJ33q17twPEDmpx1VF\nRXaNBDjE8/+g2L5/7yt1op72msiZDpvBo+56EdtwhjXDhu8CobMaa6N0wR10\nnWw3j6bMXMXnAE/J39MpJVAjzUnmXTr5EOdtAbp8wb7PVEw/cu8jSxVCciUW\nxtl9\r\n=wvPZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f4b83ef8d38844ea8f6a51599938aa47796b3b6b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190517_1558073696397_0.06807898369582266","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190518":{"name":"typescript","version":"3.5.0-dev.20190518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190518","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"06ed70f95a6eb88c73844701411935f543a1f949","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190518.tgz","fileCount":88,"integrity":"sha512-s5JWFkb5VFSsXuwn65qGhXNLNSi6yqIKJSftX6ig4UnO52PoUVTg5h9MEEpnh5dNMLYgx+l5oMmgn7vvQ5cMvA==","signatures":[{"sig":"MEQCIAx71w51g08NYVP5ebMe10QQg0MdsuVBuaWqUPwky7S9AiBXdLwhKkqTXeDuBPdHQdypzGlj6u789MiKARuIamNScg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44365742,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc36J+CRA9TVsSAnZWagAAHA0P/2Kms/wTKCzIKPMVBIfB\n79zdpCA29hmmkn//4ECf/KLrjUCcyfqIsTvWuC59q0eVXGrsRSChO6iyVEsz\n0zQDvV+yRm4YIBrpvVEyQy6v5lPzMqwHS1y2mAxXjrutiiIE6U+SkgKUDtJq\n634JcCCnn8ro5KDSW+GYD6WUVanqZe7d2HZgVU/NvB0Ux+TMzBQikmlw2A/s\n8syuFJZrzO2E0/APDWZXvyuIJif6x+Tv2F46qNjnanw7kVoCFQnnVZGD4FEv\n19kZD7i99cAqkbupDrYSGJKXJ5zqoEyt9RZLmpV6rVJlEmwPmpdn4LtLP0rJ\nCy6uIsq9+4tx62pO5KFHCudJn4A4ah3O1/C4N9BkAnZzllxk2ffmp/bT1ZEm\nEN+RfLd+92vzd2AE4xdNMVsq2mYlR351Tk8YMShs3XjtghVsjUKERG21nKff\nGDQgppmLtoBRWqlXS3mtPmdWA2sHgf9uecCIZE4YpPs4yQ2nPuzqz9QfsC4j\nGfKH4ECWq1hnWLZHoAIGVb6HMA+VdGERLi6gHUkHTCRR7XkxG0F/3XrDJvvd\n4RWP0YWhgRcrAKktx6gx0EIgxEcl9LZMQNrE+iaalcDcrnLeBRRa/yUEG4cl\nkYLbPCbO+2XRTvh1WBoPA5JqxFw1q4RL6//W1ZrO+lbdG+rxqfRWiolFSenX\nb7pL\r\n=4WSZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"eeba30afc81e2c7c8a34a2deb0d4d2375a1c21f6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190518_1558159997928_0.21118708283701593","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190521":{"name":"typescript","version":"3.5.0-dev.20190521","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190521","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ef9910ddb4c5d80270b79ab62012e39e0654d94d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190521.tgz","fileCount":88,"integrity":"sha512-HzdfT3MjtPc7Aai4+zvirqOe1TnqgWV1VO1NXkiM8KPTBQ4Aw69od0pILholZgx7DUpOA791lxx62mzeUtg2cg==","signatures":[{"sig":"MEUCIQDOqz7bn3N/m2XeAnE8z8AjsjsLf3ONcGzGhZzkh+ePPAIgIhlucquR8e1gMU6dSiwed96H2Uz6MCyYNE+YvG7uDWc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44368236,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc45dVCRA9TVsSAnZWagAA1PgP/A1BDBajAqW4HCHj5epm\nt1QP6mYqsq6wh0WVy7+2fGui4jW8UUOhtfxtrMbTNHj2XfhuK3mv5ANWjxD5\ny5YTT8yneYJACzr/vGx4Hmwa11U0ENSpbrFa4BZ5toJY8H0x9cUg/IsrTk1K\nzVPkrsshKEDSH7nSInMZewH2Pc5cab/eHNu5C11pxjgRTlv1KHzBiFSL0Bi/\n3MpaL1X1rtfk9PIhjPJebXOOQjcVqAF37MO505YRW0Gi4Jy+rCZv7eJ2VTrw\n3Ii7tS9W5NE5BCclzspmQotISbtOkHUnTHDUJF3HuO3+uW43bJwUMF1ls6lj\nekWhOO0t2PtiHebc4grjXg9kFJZ6f4wCwt4zJSsM5feIyZRpxgkqQTJKKCEG\noIUPVLvvrUURQqXKwc6acPZq8SM2l8AtGpoJn+44YXjim0dkKKH0aHlmGZmj\nl44QSKHm9VAF18wnlvEWVLEwdGKFerisxzZxchc25mF6329X/6olADOXatZ7\ntHIiyU8yHU5JPLWUP/bzpwEQP+o2nKsGb6QPion3jZXfUmLQwP53TRJRXQuG\nJr/4Ca/AdAnBjjxebr/kNWnauGB2edLjHLc/sTfTWfWrn74KCRYcd4Da/MD5\nOAjqbffXY+e6v63788cwV3xDtia6ZdMVcCZsHmX7SYq8cFV1xdmHbTUqBgGk\npyMi\r\n=PfkH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"07d850cf1c4d9bfb910e0cfca2d6d339d727658b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190521_1558419284161_0.9160349831262371","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190522":{"name":"typescript","version":"3.5.0-dev.20190522","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190522","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ade4702c6e599a7e8905d7acaaf416f7e32ba0fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190522.tgz","fileCount":88,"integrity":"sha512-V+QsNMtXl8lGwov4O04D+E6vtiL0TWEpz6iDxI2tAZizEn7y8Hh9SXzz3JRWepr7dfdqqxEv9CT3J18zpaZKJQ==","signatures":[{"sig":"MEQCIByyH/kW7oznFAvR2n54JqBOiMokLbT6xSHSFuD+J2sRAiAOZeGUSfmpopOtzC9qAKtWxbp0UaNQkR1rn6RxAY7NPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44378903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5Oj2CRA9TVsSAnZWagAAPvAP/jCyPXIZgXd9ZJ4KpKmB\n6qkaDxoCNk2OLCdwfgWJWi+a5cO0OztnBoN7c2EEB5gXnMqexVk4wQQ/88ea\niojwjkzGvvANSHb5MDVpJjh2Ajc7z/bceqdwMgmQg9h6DE6b54WdxUTsr/9p\nSWfKBAscYG2TDigSZ/YGUZHwQe6ogmsCWcB/gdw+v3Tucu7N5bttNm4wR4R5\niInDcYTSw20/neJosz52NZ1e4W4FbjuvowlJRs5iZrac3Jq8AP6Qm3f5P/Wb\nNEepu/JUppIB7NvC4BAOCifeXcp4SV009s5ULp2nOX4iVTH4EnfXpjFS5ui3\n9odgza6DLzFpP3+cdALIAL5A+Uxb9gbHZA2yoG9xVGcnJBY6uBPybt/4dOxl\nST11kjgFo9yat/t+TSqAGrnVG9YS8M09qEowpvggVK/Yl1COSjXRQB1bNeiu\nCIm1o2Z/BKnywRU9aqVCCMhKeGTFi+9CjkryHvlZeTLKPIX98z6YoHp5bD1E\nzrFr8AMJqIy0A6lUnGuoGthgNVj7SUEtDzQaakmCO6sJgqbcVT9Ze645uSxV\nmiZAV3mRNczIPHCb6jQwte6TgXEExR9bY/EdGNZnsQn3YNeekLYWETRWbKzx\nuJ4nUbXfNbsVMPsVvIjhx803kLfHCUNiiVhdAzd/Maw3v+TdXeWIzoHAlh+/\nMiC4\r\n=VRQw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"de96b412724979ad089a1e9edecb217bad91725a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190522_1558505717216_0.201251331373151","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190523":{"name":"typescript","version":"3.5.0-dev.20190523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190523","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c09b74e80a47d37e7949a182ed00df78e4db7686","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190523.tgz","fileCount":88,"integrity":"sha512-dObPfIU/3Ap1ct9xHw4nLuryVZy4FPr+6q2U3/gRJ8pQ8YjcDreZuOcmrIPHuTL46MVR9O7KKZ66Fza6XlF3eA==","signatures":[{"sig":"MEQCIBIaVydhix2WBxtR+ebFCsqg5DXcALvt2nksoa3DojZDAiAgeFYJpGZnT0NZyoRRJqb7db5IZHd+/l9gsNfXrRB24A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44401275,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5jpYCRA9TVsSAnZWagAAZHUP/23lJebeI3djlIG7G5kC\n4LWLjnrozQwgdlnErBfnKi7Rsm2NzqXkdg6RFlpUA3O053rS9Nlt+qAlT5qv\njQA757ZUAiT00xqZiDPxFAbEvvMLYLv2Q/ju1zx8Gcsj7ZDSc2RmhUZZXFAn\nURmWteak3AeMwmX7WjRrYFNBdRof5CPX2EPvFDUD4JOgwfMRdWZmxwWNc2n4\nbnU3adlAiS2NNjb5TsUTzdo42kNCKPJiivWGIJLl2R/Zv04pjKT3XzHya68c\n3QAOdTomJfzuaMn1pWd7nlcSI2FXokpf2wSId9JtuAK7XtX6aTBNML3C1ns9\nyfSpq8rsc1XFKswyXA6Cg/7D5R7PczI2OaWRKtF4viBhP/hnInV/19nzJYZG\nr/m0rMiJoLUykjVC1c8xa67vNFCy3/3aYHma6qRUsp/GoUIWRZjeFJhN1C9v\nuSKczGtZ1XMLchXbXLHvcIqOe2KCQrSW92IiWplavtvwazXV1hSjXjzLbFbE\nZ3uAOTNwXAHYTHRS71NmIFzcBbQ+95J9j1dti6dwSzbhk62VjayXcnMOv8KE\nzho2ZZCO1p9XNKA+jW7DJVOD1XudAIYlmXsEknO9NFavIrFjUL3zNmOJ9HDh\nB/J15S/A+VgDSzJYqHV20vMTUkMbzYDhObq3oqMwTF9xnHHV7GUmTzHJX68k\nfsoL\r\n=mugU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e6013335b9ed9c74fc0c6516a17af0f0504caca9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190523_1558592087346_0.7118590138410625","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190524":{"name":"typescript","version":"3.5.0-dev.20190524","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190524","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d35e7774a233d4132b4368d4655b8692688aef67","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190524.tgz","fileCount":88,"integrity":"sha512-EVq7zfcfHRXyPZiCBuc2Wbbx7i87GdBLwcq3aO1lrRlQbJ9clztVfU4ur0gHBpVZNXXQFbjbYQcCMUMcqTvPZQ==","signatures":[{"sig":"MEQCIFBeNKd7ENTFSlo1JJzxZOhcE3mHZwUPeWxgWyZDtV2xAiBrEWGu6LiXehDuduOhUD6tD39Kf/edYOY76y1AK1atKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44417624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc54urCRA9TVsSAnZWagAA6PMP/jPhMeK/t1+NcRUq9aff\nNIxiO2v85tBye5Xb78dH2XJPW37HS7GnVmX81NxYrXA94CLelIvZl/gMaTq2\ns2ZEftBd/VAgYYiw5gtdNF8XdYV10F/eQbM10S1CNKzK3e6veTtz3VtOJFFH\n+6/uRGWrynWBg8YPhAHhcfuFy7nXHyjaXRylJncLUSrOi10rmRdOj34Klg9J\nYSp1AggwYgtKRjvHOIDgyDa2OzunfTcd8EiaA6/3tzHbakaVmJzECJ7XIlfp\nVZNZH1MW6Fcv48D0tP3Pn1gwns/6lF8w/yEigMGTDoZpduAjsivkNpwE/IfR\ndHDH+GW0XtFqFzEnQ9Ct6MkLCphbWOrURvDaPlYQFQ1lWaKB6ua+TQNt1l9b\nApIiGiBK2BhHnum3dj0RJwylTf9XQWMP2REk+CnSXrZA9DbkiYMgOe+/FJ1p\nXEMQ+cYDdUfJeIqzCZAi37pHpzGxSd72JNfAmz66IMB7/BIUtBSJvuKIvbq4\n3Jcpp0k/GLc4GuOAszGoAwxZiQskJdNv3pOZwvZE4CzUSOYlI0p/N9S3S+2K\nJaibTbHC03jZzC3uvqf53+nyQE7dPNx041AqyWd4R4K30i4nP+cyXhD0Zv6B\nLHYzqF+U53sttJfFzMFMBm4MphVnQT1NXSUGcyamhUG1Kenn9Ff1eK7UU2k5\n3gt6\r\n=mHsZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7ff97d13935345e36f2e770ee6aeb6dd0f1faea9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190524_1558678442043_0.5857053374880328","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190525":{"name":"typescript","version":"3.5.0-dev.20190525","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190525","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1f3cd0e35be886b2a837d7efeebdf2fff727ee44","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190525.tgz","fileCount":88,"integrity":"sha512-+EhVvwjYE3bLN3yc5kZHylvyqRB86oqWpO2XrYImi89ErqddhNx28ms50Gt8r3dzK4LUpEUWR9p/bL1I4L8sfw==","signatures":[{"sig":"MEQCIB8e1UyNXTRYlxVdQm08VGPnuuR485vIHcV3/XknIpiVAiBiJ7aF237SFQa7rVeKraeMX1vNFZ/TAnKzpDahO+ZjFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44421452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6N0tCRA9TVsSAnZWagAAIHQQAJb8dKJ8CPOyBnFutN42\nAohdrAo9tAJZwp2KtmE0c9QQYMxvV7OaGPbIIM/xTh2bzSOH/hKC+rIrcOGq\nucwX+buUtuDxC8kefjtlP2BA7thY50RHG/qlP/VrdS1aQeHfXgTHcLxzv8yB\nu1YEwfQuhydWhRZveo1Hkl8pTRmfmffZGrr4XJyI8rmcfdiYndLeuUlMWW3E\nQorLP+3lFD1ufJAW/WwTlp4QeSbtS9cOfJo51p5HM5Z6wx2xIGa7aSkmnpEB\nDHAkw3tBDSNqOEmG6Vf2Er3LTZoxeyKZvlK/Kg7OCsRryjHE4s9BQVucH6GG\nQL9WQwpo8S+FefO7i9B+iYUcb7TNXdKv/8jlb2jJq6yL/hN478rxiM1g6J2Z\ndeyXNSLfrCRt3LmJPsG2C7sHLq3iAogJmqWkbmiLk3ZJaBGtuWgmKoou3FDx\noFN2Mp1Z+LV4b8i7Z1DsQHYMVlBsPF1C2S3Cl3SlPImohupKNWCLVF778sXF\nRnisIQ3eDfvO6wdwZZBhCGbYZG0AG08KFm32zD3dBx0CXxBZBPHRFrPRzzEp\nPbrIzCVVwl1yP98zLETvy4J3YsTUrkY81cFoQzyfsxp0rfeRBBuOzRqFmr38\ni7Vbf0ShdjGRgqZXuk7vjg0R8TNcnffsDur7Q7sWxgNvn67uHUopyfmMW0Q2\n0ytA\r\n=SCMZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"38f3b05cb1c586bf54a0702cf99f4d46d415067f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190525_1558764843763_0.5027026350852699","host":"s3://npm-registry-packages"}},"3.5.0-dev.20190529":{"name":"typescript","version":"3.5.0-dev.20190529","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.0-dev.20190529","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6cf1eb74e4198cbddf034a4113b8056fb9ee5402","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.0-dev.20190529.tgz","fileCount":88,"integrity":"sha512-aa9mh/jsHjWnvEplz9RdPtQrPuMbPaK1qhdkOdFj7VdkSwP4YouoJQG8x6vwgbYGGSiPCEcD8H3lsFUb8lMdNw==","signatures":[{"sig":"MEQCICKU2xuDT8VS3ppC/Ue+oqpwc5np1NA2OKI9T6wH2uVIAiAvH6jKSmQYvdZfU9qbiq9sbwbHsHuqAG1a+kW4n94E4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44445849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7iM9CRA9TVsSAnZWagAA4UMP/2nHSDkoSIlamkldeGgt\nm2OQCRQ0XxMTbr2ixVE7hYIwqGBdH2Di/fL+xSklkIkCLnkJQ9mCm1MT+Ofy\nQBroQJN2Lw7C5EOVagnfLTqGiVSevnpFj0/tUhKdDoB93VcN/+vrsWZL+Eko\nZtQHDSpB4/A5dQjBmTmBLEy8LhLxx75nysi+4H+0miMdtnKSeyVQcBbM4+zb\nTKHJrpHjCfGzjtsDyPJRUEfVGFXtn1yznbjLrEio0E4VrwkYGz+c06ZImlh+\ntYmizBRktgTar1LazDDcbFjTv8oEOjTgVSHlwX+k60C0vCo83w2jYbxnWAaG\nbGUBhn72kvUoaFZBdJH0BKmdKyJf3tbMeQFUiOwzqtgQyUYU+bpaqc8tNrlH\nLULiKf+JkmfsxaGh0idOG7Ap985NpKvz4NBNWOvkWdUc8iucU6oGsK0nJcDd\nKVgFDkN58xdrya0wCVVWgRW4dJ42f6U1qa/cJTBx9lv24++xCHzeKOb+QtbV\nMKew2yuKA2bSGmmumcemmVcblg5owNLIXdsEU9aykD0MB0KSYa5OsOagd6+o\ngkTtg0qfRSlVGkdZtTMWm0q9hcSd45r8uHGFQxk5Ro8b1mbqTwHiQtyVuETA\naubelwjDe3buX8kNav8DPWLBaMrOjMtiHxK0Q8jqkzshv3tE/OHc7LgXSarp\nCgFS\r\n=X0Td\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"cd09cbbd5e5e483d5441e41d0acbcde9e868af60","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.0-dev.20190529_1559110460358_0.7203323564320834","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"typescript","version":"3.5.1","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.1","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ba72a6a600b2158139c5dd8850f700e231464202","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.1.tgz","fileCount":88,"integrity":"sha512-64HkdiRv1yYZsSe4xC1WVgamNigVYjlssIoaH2HcZF0+ijsk5YK2g0G34w9wJkze8+5ow4STd22AynfO6ZYYLw==","signatures":[{"sig":"MEYCIQDf6DweBbCmll3yFYy09/TFVRgUpNUSMELvJkVX9iFPrwIhAMqdeAkeXgeI0lp+fiEIhtdv1GuD5yxDAH0WPQIgDndW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44445925,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7rI3CRA9TVsSAnZWagAAWFsP/1CJmbK0Lw3/blXuCuny\n4WiighIupRJ/PtkXqx6PLQKiiiYMR+OmTpoGBfapfVZH5B0WfmgmLkj7KxfM\n2S7kgvq1l9+OtGPt2kctvP4m2pUFG0TJUADWuU/fwRN41Pt4tCLuUEJCAhlf\nKKXuBn2zU7CsxY0FY+4E2uMmLaQEozwkztCGqvVpLF3ieDiQmQlaWSUlgFKY\n1AAaFDjEHQGhZvYGoxHNbhLlxginerVeNVdlwxf2AXTz5qq31cTP06pPzxMU\nmsK8r0FyGyEZTYgamJIOZ1NiUbsyQuWMFNgUc/2PKkkaFUecoaW9BZu7Owyp\nvimPvCweZ1G7cx2fwi9Lu+kxm10+7Ait/XrSWSAFd4Hx0ZXKSe2LC1/yF7wV\nWrbwUNcz2JKayuZ/LZd2O1xqHoVQHfTiRtt/eEVbUS97FiUuF4CeSEC5PsnG\nCo9xEbdiGx+pM4bf/LVGYDqxPcu+aYbTKVLl+tbISn3ZVPFiCoMpmubdkcKV\nKKcsGfehrp9ofGXor9TPXi59q6nXk1An1F23YT2JjQQKiU0gSBgg3fEO+giT\noxUmJ1J68Mi40l7dJswvLsHHrHFeqNXe33EgmKfCiz7WZTeW3GE144nSJQmn\ndhGObOERV6zSUFdntQT8zUuuCtU1OOlTD/1CEkmaL1m3lv4GPU0QFzb8O1VK\nPJf+\r\n=UZNe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.1_1559147062152_0.9792747797178438","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190530":{"name":"typescript","version":"3.6.0-dev.20190530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190530","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d4b4066576d260b3c17e787289f22d04439447b8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190530.tgz","fileCount":88,"integrity":"sha512-q7egy8noi9ejALckZteY4bSod4946seqkP2hwi2/UwwIYHcFlplDr8LT/V+v86O3yfh7GY8LHagoDkUiXWdGzA==","signatures":[{"sig":"MEUCICxXmW52aFBYPm6AnyKB0w3sYFBxnLPctE/fUGH/w32kAiEA+fQtI3+5qkwcwsMRVVGXBqxp45ydTmvvqo4PsmtqBZc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44445849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc73SzCRA9TVsSAnZWagAAf5YQAJULWzZW9LXxaGfQqmkM\nlqMzP5s+lww/0l535hwQ3RXLDvmakbDryxg9+zz7WvMf8jRLPjcq5RojkyMD\nHTWDj5Y15HApGNl1YheLbP8svS7SQrJtxtVtKD7W9i7HmwVCcY6/Rz0QBXuO\ni08TJyvmHsUlz7uI5Y+goke3Tf0Elm/OY7YAlgl81iyQveUm58w8wCer4d+X\nKB3RPiKe1eB6yJcAfbBhhfS0dmpvo4hsVwFH0FeK0Ptqd33SYVl2aWyLlRkl\nXGHAd9P9AdOXGoKUBxvhBH1VIK9in1yBM41cavIIO13L1ZWVbQYTMt6OVIdd\nImmpIsRk27VRNpSahXZLYG94itPtGzzjxZrba2SIIUCVSTDJpiDcfsdJGqNb\nAUgFLGLqga0WQaTu+LfsIUs2nO5ik5nX2PKFnejfPFkX17gMtHc6X5iMraX2\noQURqYXA2G6w6Emn30Nr41030j6SRrTWCkgRIGcVZPIaj5qcf+xk+C1zcoLY\ngJJij/KEavJe8ZnMa7gkouc7KQmiqfpxqjHGjdtsFXxS4sdT7MkPMWWUchBY\nLvt22qxyvQYppME9hu+4qgcQWH9r0bw+olpiVZ7SPvOaaOdZBrs4kJkEQj+A\n2029ynBw9csBWo+g8bMEfE0jErxGzS6YLFLovLNRNAJO49mdtgXMzaiYFqd3\nO6T3\r\n=xVvb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c5c869f673044d7e0daa27e194103409251d89dd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190530_1559196850604_0.17258175399718012","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190531":{"name":"typescript","version":"3.6.0-dev.20190531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190531","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"af9d5917b0668c5026458fe8e0bd87ad6d5ebbe0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190531.tgz","fileCount":88,"integrity":"sha512-u+p1SFY1DCkNP253MItHJhjLQQ2wlExoWA0EMrzIBcIHnqMq0cMIQ7c5ZAMaxM5PbfS4pj3y+iJ0n1S4Vg8rfg==","signatures":[{"sig":"MEYCIQD7rcf1QgXOCycBdLqdVtRxi3yelUHrmlNSBNgtkh4HZwIhAPbKldb9ojBbg+T2HnMYNrPg+FH1gSGa5l3D+kZauxmZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44452703,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8MYfCRA9TVsSAnZWagAA9UUP+wekbE8SA8mwLE45RUrR\n5TMa3hfpo24XgE586MdgQDVx5d1TGC+l3KzgKnTSw6kd6GodBA8OEFtQwKmL\niXrhd5vbJWShjsGBaSvfXswZIZ6qMeADl9/5FUMXMKydvRdah3AkT5Zfz3JQ\nhecoSjnXfqxgXZTmwadd65u5dDPaGXjv4/L6v6XUW9Feb+7NqdwqVH+GlHv9\nBn4o4HDAg9gk3e7FVDQgMWXqwUaUl4JFXNgZ7eEUF/Q0qfrQr1aQUarPnpjM\nfyPngDfsxQ0PQldaLT98eRiT0pcMdshmuy129BLTUnjqw7H+15EaseeGJM4i\nh4BOGWwaAj/y0r3IfTZFftMzmPtJOOb0wb3RHSy27XeDjZZl5G1prvvGyZWU\nz7rw7ILr8baQZk7dni6mhS7aXtdF0bziGQ3m3v5Qd2apLvCRcH2r5obmWXct\neOF/8yJAxmmzhltjf75ISJ3i6qGBOIM9pvXgrjYN1Msd1cYRNfbNmWYv10sr\n0gq67bXVePcAO5c7jZWWMdPWZrBhEZQ+vnN0ea1cYbH+25ydjiVfCZs68jlZ\nAZ42T86XlrlnNy10D3gu5PkLDn8nZNqHsSyFdYm92O7GF+tleBcT/9a9pOJO\nt2nqWNYWBzAxj1vyDkgrwditAk6aAFDmCuMzvOhLhBV7LaLVJdZluerxbeHQ\ntfZJ\r\n=gVnA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7dc1f40dc15132ba87a70a3bec6d63317cb5b91e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190531_1559283229937_0.11953727122354985","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190601":{"name":"typescript","version":"3.6.0-dev.20190601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190601","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"37168f25176e13a6c7ab9add744f2b3185a80ff6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190601.tgz","fileCount":88,"integrity":"sha512-GjlZtnC/GVaCGaq+MQ68bzhT/Z3/1UCep0BAsQ91x/58zOp/Q22k2ydTyg3j3S+MeeC7g8FgUEJvVpCQSQ7gDA==","signatures":[{"sig":"MEQCID3ac6ykB6P3qvR1nd/WdChgVuSRbpEWhXNSswsOmyyYAiBwxYG+OKf5jgLrdB5ixQikqnX8BDWkcPuzAGAL5noiQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44460700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8hfWCRA9TVsSAnZWagAAkXcP+QASd+bFUCkR9HjlG475\nQtgCTNWKeMGxFmLzdg9YkXF4hVKuK2YyyckvC3UC1BkClO4HDtqiTvb9v6CJ\nEY9qhYoRNvvXizkZCVwR6/Bq2j+DUftwgy2ZQBtGEdoMrpVmzQczNIvKoYiV\nmHso5sRk6MxO4lWAT0AcoZhRQgGQyXZxlENSVC8BTx8xH/45hiCwRKyYALXI\nSYMdTTvYjSlq0ZXZkJToJHMOeKS2DE8fgLmJ0tdI4i9CRPnial4a2zJoeapc\nCehTGXdB0WbsYVeS8aIbF4+qtHqNDFBEGEAmHAfxZsEZiQVP6L0lKE0h+WRA\nR/y7lnjX2KIwlSjyRU0TR0jbyU05gdbrn5wOUl/Rzxp52g89PIoZWYUAJrjU\n04g9eEBHCT3XVlyJj/i5fTxyNCEWBdyesrMgt7MwRFnFzBHzA+oKr6WWOKye\nH/VOlq26+mgNWvo6Jm6qihNGwHWQCLmhwqQWMUkai5xLI+WCnb8xLH63c8s0\nm4x8axKZ3uoLvPkyp1cGFxyvD7wd3Vfg5ciKIagBvwvO2anxJpfkktEqUvpn\nnECtiDZpOJOTXQ3+bpngnkufzlqMOtXEIEwOSrmc5n+sufGwayW450ZNrqMf\n+8WIgaa7Y+hczukARcj7J8ynFudcKHdipzd+tZRluuCSQ2nnXDiw5avOZIKL\nT5HA\r\n=vhJj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"eb81feaf04a91c71e44b15f2003178299be00387","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190601_1559369684934_0.7717380720025235","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190602":{"name":"typescript","version":"3.6.0-dev.20190602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190602","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d211497a71176e84065272559d870e8e474179d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190602.tgz","fileCount":88,"integrity":"sha512-BOA0NxBdjwqgnzZ0Po4BevfgN8sbkQNeKAD2VHCcfyZ9JLwff4baiT+h0sgBG440cje+f5F8C4oEBX0BLtXu+g==","signatures":[{"sig":"MEYCIQDHxZOuTtRiRRYuTQ5ottz0gve0QVvahPg9w/YSNmd3FgIhAKwvqvmB4/zjOiyiVEG6ydzejBrs0qzFlSzLheZhyCxI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44463647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc82caCRA9TVsSAnZWagAA5gAQAI7WP+mlJ3ldzqWlnHy6\nOvL5K4swljbK5jmVs4XtoV+mLr3gC/psMzaFJlaZ8cPhv27o3NNzvYV+mawp\n9f5twmXVhLx86oVoeWoi31ZDMbeI+cMvqhvuNNVDkyXC14SHxTX4IuujjVy8\nVOtKoWq2Prk7rLaRh+GyOEZumFm1vCN8XaXbQNdhNLtosY7muzToGujJtB4F\nWHP/0N5V3aZUMgGahvHPH+lWypAtASMfSzi9/U6NN0PIqLiXAc9k5UTPpTDk\nGCrIiw5BAo6Ro5ohzONcVl1ooGzWLtEOwZEwFTETuXY3cfqVbZZkDay2tcx5\n87ifnLr+kUbsuktH4OO+3Nj7irdaYNC7yUQqQTyNz40jS3NY/o0Dnta91cRe\nhLWrBLiOTPzc4qEupiyZiJkiF8DxLky2CllZQvZKnxQhVK+muFEFTDEH9l5h\nP03QcLE7HuFor0S2bNdhu7vhywJVu8z0M0PvxK+ybOlcoV9WBqBKZvBHk3Ad\nNRAz10HIK1KApi0/PUiqnK3j3OGYPiZ04EZb/DJtbSSw1y/xy1jAWiyiwJab\nM5xQ5svrJCS6Kt08o/7hwRaeMciKEsnKjojofp+2cMjUSWFTEVmcoCv+VhHT\nS7RlFl6FagttAFUCzEzRzQJ1pABFSsxTYx/7uMCubzzJZiAD8V3+yfjFITxv\nbMQ7\r\n=s4KP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d6c323a21b82ad2d061404cf23daad03298b1da2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190602_1559455512704_0.27629929780426155","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190603":{"name":"typescript","version":"3.6.0-dev.20190603","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190603","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f19d0bd0fb04bd07f81a43ed8420a5ac97148968","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190603.tgz","fileCount":88,"integrity":"sha512-qO/lHo92s2DhSMFzV7kX4hAcLepgzGWd5hDA5lewNFXF34EHdIod8XqdWcHchgB/IrOALM9gYz7dTSLyJ1BXTQ==","signatures":[{"sig":"MEYCIQDOmKSqYbwXYPix1yqIKE0D60uWAMAc+Vs8xeCrvj/vnwIhAP8I9wmh3Q3iz4EUpH2IWDFk0vLHolxUYoa1H9fKVhju","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44465724,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9LizCRA9TVsSAnZWagAAg7UP/0BKv11X91HdvljZmZb7\nMMHgRO6H2pnyQe6jFE+LCD0Ey1RDDIsznv5xq5O2pQO1IPyewWS3ekLuOS5U\nfa5zBdZRMT0UwXFF4CtAGep9pnRnzQ/NwykTWOqRKK6oBg8TSGUi59aLiozZ\nm2q+M5xjtH01DxzfRk0vo2WMUQmSPUz8X0LE9Ueulv/FLKJs5H4KluAFI0fS\n5zMjVuNDrXsM2zsHOlukVRAx4NuvfsdY8qcG7uHlgPkeBh/mm2MhYM6CA6sK\nvJ2GgS5v3OTXi62g5Urdcu9fTAkgpuReimggfk3RC9SnYlX8BUaKj6uwft+4\nFQRN9FjYf+RUMFUmIm4p/AZcV+gYbuadvxcAhQY7t55FT9iFQNyMXVJhI44E\nNRefWysy+Vz68or60hJBiDvTIcJAoicqg+yEc0TaEwfRFSTY5IYw0S3j3kIS\n2tIqZ6JlPiGEwW/VxdDSIu4wc5A5e6sOcVHnY6Wi90ubjkFj21Fki7l3JrCF\n+7g7TB+wZeEufRNP85uU7tGUu8M2xD3pYtvJwvaYNRUHYG/9gzK7L4TREgLF\nJv3VleK1dn/h7XXirElH+KRysan+t/UxEk9lB86dFKZhNZW04BxHXZLL/8yS\nBhmKAL1sSaG8kVypOS8FS5aAgiTTsIviZwdQgjFB2q4T9AB0kLiZ3gXG5TBV\njz3h\r\n=kmpj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a5281ada54def6cf413c5181973c41d09b7e16bc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190603_1559541938009_0.3012408313003543","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190604":{"name":"typescript","version":"3.6.0-dev.20190604","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190604","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7f8a410ca230670b6399cd0a78a8d44b08b27043","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190604.tgz","fileCount":88,"integrity":"sha512-CrS/+UaogW22ebo2Vd1KVvp3ahQ7M9NUW/D5GqNo4U1TIYG2M8dgGtfcedXRYTsMV5f9zYWIwZuMP8WnF0JZoQ==","signatures":[{"sig":"MEUCIQCEACSFDj/biphqmrramqsY1BJT2hXJzm5UcmbZSjPxKwIgFo2K39XkWgKXXkGF21H+eB0V7Z10aodJujWmwM1uNGU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44466258,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9go4CRA9TVsSAnZWagAAi4oP/3A7E5BE36f5DYLeyFME\nXsMv/74sjViaHUwmGZWTtt52Q4DXSaaM6kn1Ks1SQDjXLLF2M9SRtf+iMXXi\nDhYuDayyEa6oLY77xlIoWXC/fhbVYDxE/lRItZLwJgb4VanY/8xvzjyDIB+k\ncverdF5TVitWETH+cbGhE6ZzZHcT9GMXLyOQkmG7xG7oJjfPzzdOe9hNuFZO\nYCn6kFVcZRlgz0XWUlQ0E2hHzooVwCQgiGnvUC6B4T7btXMf0Wf7lNRzSWAN\nvivqZct9+71dPJewOc+Dbl+nDtZT+mAJyla9WnylJabUpmhQYUoL2LRukuTW\nyo9VsFLLNZ/LYjc0drNObTdCU0oWOyjIS8dlH99opXjPO/TS1zOhiX+lPWfR\n2ArAzhSrBXoCWDRkaJofWnF0facTSV1XLFXktvO0EPZt5evkslw7veG3DYCe\n0HCPYHhd4Rs5vy8J5Gq2DCE9uXEEqR9jUMaibLDKyM8KjqRiBv6Z03ijUfKE\ncWhA6SkIydNeYLaZ48l9CSe+L3Ytvb/NCc1ddjoeWmlFlq7sijQ+DJJWVNUw\nzD4gxtkx/VOaKvUq5bLJsXH0SOjxpSjxG7LhtpRgRKf31nviyrl44m0VKB0W\nNPZvO7wYYPt9zJO3HLRooIYBN5oTWJFTc0qT6vDPG2G+fv7A4+N3zOwgpies\n6E3C\r\n=rBuS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9da05243ff7ba9a2776d5a52118d680348b1454d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190604_1559628342883_0.1608507149037426","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190606":{"name":"typescript","version":"3.6.0-dev.20190606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190606","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8fd5c3b058d5c017f09da18a3fe410cb4ea0b41d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190606.tgz","fileCount":88,"integrity":"sha512-RT4d4rUtCAsB/5fOj7yz0AnN29ePCq9WmQLGnc5uLre6NsYnRutU9cvIq0eq6euIu1N/6FmGM3egFY0ufhz/SQ==","signatures":[{"sig":"MEUCIHb9lUeNQPQs0T/srZ4lqkT2swVk71vkKZhnCI7UPTS0AiEA0iq95XEBUXZWgDesFIVtRenfVX4DLUx0ughFfXGr7xA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44662472,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+K0eCRA9TVsSAnZWagAAbQAP/3shHkw40p507sKksr1d\nJnphT+DYRRMqC0fJSOJk+sbCN8bbdjIb52ZUz2gEmLdjrNQmAy0XKYL0a4Le\neM03wuPspWAkbtDbzRHeSS0VUblQZMiuw4UcIOb67R7rbEs98YFpdnfeJffC\nHxkHyuFyQk8Cb8TUGiBwdjm2rkRt36qobAYNA5TpRq4oU1CBSOXHdYneG6jJ\nhKF19Xu5sN7GjT7sBn7Yi7iBoCcTfVVBlot0BLKhK4YaRwP7bquDLGc48rzi\ne2hcal0D7jF8HlxPb1zugApPoAkM19NqpzAU2an/unnOis981YJdzWwnKgYJ\n5XRXZy9WaBDZW9KoCwklVwPUQv6tE92M7W2IuU3Vym82JVpVAJAnH9VwTUr+\nUvWCZB5Y3pTTp0/d14TokHf2rAgY5iv/6Le/tQ2OR4s02gd281mfIOnZ5jA/\nD+h+1s8m1LT0cOrvgk/y4rlUiY6fo5UQEG7CvI44haqmqUqB5cfla7tMlvHv\n5ZoJ7ixC4NVLEIXFUqLE2TtayLQrM2xnhaT64XyEH5+Vj2caZk2gvJ8vIlvo\nd9uR1nIZpNlH+N1QSl/z2r3Dcgenryd69nftRgnmCQFRotr/aXufJ4GlXWgt\ndxrGZJqymusehiS8XZ3N3qpF/QDo1B4KRyvQAKmw2l+cFLaeDSmNu0m/q0ic\nRUAU\r\n=yDOl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3139cf2f857483bc9b5b74d9c101379e27d2fa9f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190606_1559801117930_0.45560905052890743","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190607":{"name":"typescript","version":"3.6.0-dev.20190607","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190607","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"af138dd716eba4d5088da9620fbb80a122c48dcf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190607.tgz","fileCount":88,"integrity":"sha512-tvrUuz+Wuos+QpFyMBLKA6vgFmh4eC9cwIyfoKyzyH1N8ENDtD5LWCQqaxnc5Ne3hVQ8I/M8Z7segtgkO2anGA==","signatures":[{"sig":"MEQCIDj5z7BKCh46ZmyM/3uhozgK02hC+HVUvq+Fl3286bZRAiBMyITWiYW38mUf1PporN++ZRRJVDHy+w3XCx6qd4E9dg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44579678,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+f6tCRA9TVsSAnZWagAAzCIP/iODTGIqvQAHqMSUcj38\n+Mevo47ewtN+BY8rMgjMH7m0ZlT0shXCgvzN2PMlmio5D/P7jA3xeSveuJe1\n+dHPjH/8nRtbOkjTIo0oXjiqyAoJGcWaC4bPUNNHfSvjrqSlqO3z7lY/m2li\n0TaucaeNksn+EKb+rifcRiQujaf32TFqyPbcCBZeKnMfzFtxrgdJGV0b7HcM\njzQ9tlLupRPfYMCc9tB7tOuWDVXpTWeMXusJTIqNpXOMAaq/JYoyqHMcopvT\ncrloe7+VOosJL0OjCdpSZ8qoI8KEo6O/n7ZUPh3OjZmXmsrVH6laLD29vccv\nA/N64QCqvaiG4lH/LXhZpVsjiTrY8ltvlBIaSQU7sihxRc4Z2tLgWlxcUmwT\nY8t/kUHjGMhc44nSkL+jHczf6dMyvUsEfdz9sZ6p6aKzq09wvgIZAQLytgZZ\nYCDkgtjzej8aM20e7RlWvb3F13PSpLxroUlr1N35t5PiR+nmwa+FXafnKOHh\n/31435OmYLvkPyIRBFrQxsa6rmG1LNi2olTxQ/heR78MOrdJd26ScDyW4F8r\ngfm+Xbx6mOJU12RtHF+H2V6J0T/rj4bM3BXrwNk1bu46C02EtbO/lltvzi01\nz9r6mo9+rRnv47dsoVgLssypCiHY5gSTDfK3ym4mMlLaA+pTff2z4A4hJHSe\nvZl0\r\n=/4of\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"737cb457809887fba02d83bb7592d8a6c9d935a1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190607_1559887532407_0.9406201589536936","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190608":{"name":"typescript","version":"3.6.0-dev.20190608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190608","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"df0865c43c156e95c8122f55a6ac4896de07731a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190608.tgz","fileCount":88,"integrity":"sha512-x0hgPeq7Tpwx0IJ5/PfxF/I5GCVgbh/k73X39Ki45M8EBorv/OPLXmxNsu+DiVvALiKrYUAGM24ULNf/FTM0GQ==","signatures":[{"sig":"MEQCIEH2SamVwrxznJcOS0vsWuvj8sdOYrPA+HaiKwQVS9PNAiBkrYcLCLp9B411KiNw7OsgpO+ZBZgkfx8cVPbCxpfs1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44581849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc+1JrCRA9TVsSAnZWagAAh/wQAJhhsNEg37/97PqTmxh1\nsUeVvpAUZc6eElpJQzOFjbg/C9DfDleJyBG168JYXq8EFn/l/LjTiBi5jL2z\nqOsf8rrvxgCajjg97PruP+k8vhuz6Rm5O5qZiQrrQ1N4fRfPRy8u5oOteM+1\nB+I8XFFABweWe/BgpmwzosjzaCZeOQxL4G8A6miPhoWSKyGq7mC/BVSwC3Zi\nK+Im3yy7UvHxBGO61awseDPGR9AOlJySYwvHuJu8FpfvfZ8LR1YZiKv2cbN+\nZjgW0sMj4eZtIWG1cCFKzfSBKKM2KgACL6qt/ykKesvVvqEWgc8LOtlIyueV\nO2l/kt0Zfako7GVAI2mbgDrA7U/18iOb4+YPUbj7nqJ3RX+YwzvUtG3IxvGO\ngxGArr85IrxoptUKdqqmNBK0nsnkpoO65daJ9Hube+1pNbMIQ6WV2W0kzsgC\nqkeqhOZFmuwr8SFclHmbxLVfu7lMUXd+5XKBfIcOzc+XB4Wm09kCvjeD7iSr\nsLvNWEjSGUcLJSZzha6GRP1mNPWmTGsFq3068k88C/o/ZMJZQjQcRSbDvIco\nE9YHtXn48oJ54TQ+NZKSByEAocjGpH0GH68kjplvzbDiekwzvO6tUOCsdTyD\n00UkKRRMs+yEPsHtVjIgUIo5qyrW05ttDFWth5xol9yl9tuajkiftlqSpNzE\noM7t\r\n=XAwG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"87058448797597e6e8bd13ff3d8823fff5607df6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190608_1559974506264_0.3702323105084251","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190611":{"name":"typescript","version":"3.6.0-dev.20190611","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190611","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d5f210761a203d281ed4f922a713b8ceef605682","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190611.tgz","fileCount":88,"integrity":"sha512-YypJlHqZjF2Q0HDEIJqFKQTuH/5rswfuUewkBbyWsVQhFmuo/SdODdirQ4DcYw1RLyAtKwRnBvTPZEFEQsiTFA==","signatures":[{"sig":"MEQCICTaRmonUB5gMNKHIVLM31Ai/vAdHc1LC3oabDIsvnt9AiAgG6071PAmiyrs/7+5mepEcdJxcgdI54tWzurcs4YvAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44583059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/0bpCRA9TVsSAnZWagAACIkP/j91lAbVvswzwaZqKvUH\nER7oFBxlUWii+xLFDXJHFWKpmYQc7EpSP8/hSfg7/ok9KX9ecCPBuJLnIRS+\nSATvmF9JMFOW4jtinSJojEucgFIDR0MOTv18gBON8W/ZAYQ8vEOaubhuydo4\nl+8wuWeERijQU4Hg5iFrgzHi7kt9JDIkN3kSP1PzxbRlP41Bp2EX0mKgj82j\njXOZFWOylDYrVBC2CfcMRHHowwzcbKo9lxLfBn5EC4gPRuLh0pvYUDQGLXva\ngO6wGXKn64VOoTPf0PuxKAqpyqgRgcEghESIXQW2IdgTz7WLa6bGg2OaWz99\nkS6nWxVsUTsHlAIjTog/Igz9L1AWGdxkYNOQGuauiQljg6Hqdfs599KBNKmd\nmdJTUUSa8Cvp5oaIYt49KDiVNiApKRrtguJqrpYtFR6WG47P09zhpdlNROUM\nKn9uky8UftXAOsNI2kmXV/Xn23uYhThNiNYhXf0VREtVzr2NwHVaLo0gETXQ\nQt2qpgMwDm+Gt/yrBZKZgfLqYjp+lqzrHFVb1ph2PdufS/bkXmartVjeQAId\nWCQjB7pjTRwB3ApQL7c4SJUGt8mF8mAszD8UrRKpElg+G7WZM7SAouB5sTFG\nzP87vQXIdL+f1o1dGi3B89H+2M2DN6kBlk6EBK/PtRgWC1My8tKLKoyUeMvu\nISVX\r\n=afhb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d023427226ca3c7e900ddc65606a56e9f11802eb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190611_1560233704586_0.35972610467922395","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190612":{"name":"typescript","version":"3.6.0-dev.20190612","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190612","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"683c2d956fc80b6806d8fbb348a6f158adb0f8ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190612.tgz","fileCount":88,"integrity":"sha512-KmPLK+XFBsI/w9HDe47EJBiaLXm+l2Yh7g4UjOXX8eC8GNi51UYQ12IES6JdIJu8ku7qrxIlaSA/pB8k72MfqA==","signatures":[{"sig":"MEYCIQCAHHNxzS12uWPJAl/muR7lZYoYDazhnvDaMctEFT4PdAIhAPDY3eSPN+KXcNmaZ5brB0OGrBQ/3HOF7M84OsmpBjry","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44589848,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAJheCRA9TVsSAnZWagAAWfIP/0lsn5etJN2gtioyzS5k\nLbCRXqVICMJ2r+U9ziNSb0+imeV6dUG7giVJNVQlp/O+ia4c4eMbz3DV7SK/\nMKG6afHkX56U6O6gaF1VzR2VUIK/U1VJlApsciYHRlabY3WYEDDpcAnysWeH\nIjILE+wz4njDf3LI6TDKv1MEzVQ7dPFURYKuv6XzzaCWOgRpoC4I+m78hhkP\n71dHj5MMDI5wsW8qWLBhdQAl1pjfceJKSrYCn6drHkOytFgFd7HeHUO9ZgLZ\ngHc5T6whXXOp0hQ5MEFbjjcMf5H9w6/jCpKw+2tSzlPKNTKxlcW4bZYilMm0\n/ceSi2JOh8DHfWXLrjC4NepLRBSg/I52M/ys3y9y5q6BVT9LDx4d7p+D2Suu\ndW89JYnWvD00cKj7Tz9kr4kEkEJULrAy6Plur7T1UQ1Z08GIEdqZ/w/JL1Xc\nlyyrfcFXPvz1Ivpk3od5FDNQtCz/Vsm7Jvf2ADQWHEt6CGhLCwtWgAQHM+8a\nW/ovSAgGzdr3C0RhPny2ukxnqhzvKNwlf2FOlPjkHqRKwZ8hmFkq2xdVMPPr\nf6dY5fFwmyttAiygUce97qlvaU3awgzkXhI5lsc9ItGQkVd2ZZHEmHqIlOZM\n26mTxiuhX9XXV5RHE0RvREJ5v8NxI4LilgwecpvH27C255PUL3dxKOPRx3eB\nT2bM\r\n=s3s5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"375487ec602c7cc8b4dd9e3991ad6145d8bbe21f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190612_1560320093267_0.6842016194616458","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190613":{"name":"typescript","version":"3.6.0-dev.20190613","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190613","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7c46cc16eaa77843d0c9e18ba54292ea907bc371","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190613.tgz","fileCount":88,"integrity":"sha512-vvQCwY1j+GGvFby4snIVlHSSy+AENlRGOPVC6tN2CbjUnQHvXmzhLGwwDJlfjJD9exoQDQHydBHNNT9wYXVsng==","signatures":[{"sig":"MEYCIQD8P29V5MXxHiCtGocTFm0cfPq4Tr527tBA2tS8KMI+GAIhAJuuDVod/0P6IV5OrornjaLo9uvq7WaerbPJ+3E2iBdV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44594646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAem0CRA9TVsSAnZWagAALC0P/2T305QNhAHbomgUy62R\naK+ynKMUOhOeQq3bNQ5H+Tut06e2wRBalrtEYY7R5fxDsMOLukVvyCJIOD7J\nXFEnV6R40/A6MY4DUNwbadTnby/zbgbn/KWWz91bC8SP2wLK1PW683Y/gFFO\nTrtsOJv7HpfkEIr2j9PFGyIEuBHPKuE+/xoG6i1HLrexcuntncif4GS3c5XX\n0wiKXavzDRnaIaKTOsyZ+9CNnb7Z2uT1edIZCFXABjwz9yd2Jwwnm1RLMFzM\nt9KcQGYGNSzrAaJTQfFlbDwd+kak49lKSu5JHDytihyCFsQgEenIK7k7MJOx\nIlzP7e2JaDRmwdigzAEI4TnzIZ4HITGA4ASlGkVKCOughELtVVME99PTx1fp\noeZIPwWZbbggrPerjcDzvNHMp7uTTAfU6WIq4w2bIQAH97WKsNmMdp6R+VXq\nRmu3E1Q5C9Os7C6SVdRjBJGQG/eR1wfy8bH48P8urNXBmnSIW16+o5IwwuDW\nzYd665X8zuwtUIarY8uiiL4yWA1xARjo0VinpHzFu13XKId34yDK00AQHPBr\n2coiQSZMftLJiAXkZ6Aw/EjhCyeGbOaQErFm/FWX8tN4NQw4iQnaSRHbhIps\nSXDZoaWsDfvMA2n6osc2q8GNPPcOPsfRJU3MwXb6/8TvyiTw5wv5d54+u+Xr\n/gKz\r\n=Ii0e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"74c6bc1f85c2ab36fdb789aa0ef6ee5dbde5afdd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190613_1560406451406_0.3272412634558113","host":"s3://npm-registry-packages"}},"3.5.2":{"name":"typescript","version":"3.5.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a09e1dc69bc9551cadf17dba10ee42cf55e5d56c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.2.tgz","fileCount":88,"integrity":"sha512-7KxJovlYhTX5RaRbUdkAXN1KUZ8PwWlTzQdHV6xNqvuFOs7+WBo10TQUqT19Q/Jz2hk5v9TQDIhyLhhJY4p5AA==","signatures":[{"sig":"MEYCIQDWkWjg/ecKmAEpHhxg7ZaZwohuHxBO3aMHUgAIdIbnAgIhANkr1sm5fML1iuCDaT7B4NzltugLWTaFC/ZKuo9XBLxq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44453668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAolmCRA9TVsSAnZWagAACDUP/3OyrHvrEfRepsGSH0KM\nSK7hhKJQwaHJKBotucxMRlqraOQQ1MdLYBRv3H3E6xLAniG+xKBM9vSGoN0m\nFs2DYb6BdOFX2X3RPzQZPdD75iDjRQgM9xMwYmicGAj4NcuoBIBL/P9Zvm0F\nNNNzZzUg6AkNxpvTmlQfYUZrY5e2X9zR7hnQI/u0rxkhx5quS4G/Kh5IK6c+\n7B9skj3qP5I+Vaac8qtymjdnCvHGpkexWKMeAhaORqlCts/Y0d70PwSUIUA1\ndrI9FdMreZPJ8W02QybfShM1zX10VvVERV4n6VA1GnSalUuRMK2UpWB/Wq6T\nrqCadnWadf65cNILjXxq8iMiPOg3uksEaxeQW1MlBetRINkpI6oL0iXnPfRN\n4bx9DwF0yi6J8PyG4x7gJ3rySEkZD2FH8vKHzgkdO3etP7nvXZ92AvO+a7Ej\nXO7QjFopxc15YE2G/Jbc52Ehxpy9s91cG93A0RcbGYZx25VarOS3LHrbOpIz\n0vegEyUX1s5htxQDBfS/kuWEvzMpQmZwGioXHmw/bM0AMHrH+Cnwm102roAX\nbpLwsSxCylbYDyvcAdSlfujuz0d6rjkTBnoRpfJ1Bh5+zefRwPlC964ETZaH\naxShfxijC016ruhlmKxLng4ZTma8oZgX+B1yBgFknvpukvKzvNdjgTJNYv8l\ngV5+\r\n=b0TL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.2_1560447333123_0.4157097710228075","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190614":{"name":"typescript","version":"3.6.0-dev.20190614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190614","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"45859efbd98b2fdb9013fa770ff992687c619567","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190614.tgz","fileCount":88,"integrity":"sha512-JVivJBp2OiN1Ie4GQqcyNFTJV2UR97PBY6KNV8am69VEYJKfIrnf6+mv4f1e6m+6jM4ExUK2AIyPMKNCTAeu/g==","signatures":[{"sig":"MEUCIQCredlp1bUN9z8lR1bQcs8ZohaOYbT/8+uvGX1gBERCeQIgAccCqeBXISjIt9gsbDrxLMfh1FTwW8LMVD2P+li4NfM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44594664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAzs3CRA9TVsSAnZWagAAC7sP/jC1sO8S6oYp9HQeqBNp\nq2TW1+ZGpsszrPP2CwdgCdPzBbfE5H8LoKHaiQdrNzYP+9g6PSjdmjTx9vGU\n8athRX74cuJjW2g/O11/Wu44VTjbwH/zE8ca/kOSXBecBn3q2WR3zuitYZ8q\nXM1tKIaehg5pQ5ZM7aWkJwunlK0jjynp7CUyoYOC8Sv+7wWFV4xsjsJMpeuR\ntibzUQkQFZoU//M5YxpFVNu11VpgRR9ZFP7G873dtPsyNSsRA5D9C9q5h5cQ\n/txeY4EJUmT67vaZ+2ibUv3nUv/l03FTmj3yd7HKAz0tkYUTg85aOicelTh+\nvEYcCewjYNzGKu/Z8x0jr/YHpWEOx4qPoB0tqisu741LuKTA21uVBRqbjqho\n6HXYEAkDE/WUI9QxtRMND5VmC7qQE3dPebsC9GMTCxhncV6zBIjhv4Yth0kQ\n27ZP6KOifEzNwbVwKmltPQe8Gxl4RnjgbX2ZD851/qh8OqtKA/3i6W2uy6wa\n0ZIgi+yDvKvTOuBnGlvjO8cl3mk8VuMT1y2YkjjZSa+Aokd3LFsn4iUm1e6s\nYz7hNnN52M8Ih57CBhkRmpgNR1MUNpVAhgFKOtyMvM5oHlySekJOkmju8KW9\nGcKfPEqoQ5XEBnsvspzga+VBlyVaXjTlLyOHTXMPbsgRrPF1KNqbZ+H8uhRD\nh8MO\r\n=846j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"81f71530c4c3b43860100be75881f41876cf8c65","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190614_1560492854778_0.10985833094903685","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190615":{"name":"typescript","version":"3.6.0-dev.20190615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190615","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"02a1a61526318901fc99c274c839cde05d4a4d8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190615.tgz","fileCount":88,"integrity":"sha512-DKxiKVjcd2Tw5LGCAjO9qw4xr4/bVUyeg0PRf/90xqlnVP+nP6xG17gd0Ujn5rkBd5BDDM6NnXD0GS3rPXmDFA==","signatures":[{"sig":"MEUCIQD1cLx4xCP5v4hAW1eUyWWZGwUMfw3bMBB6i5tnZZWy4AIgYW7fvetTa+Jmsb5aHQV7cjhwNbhn0TBgsaklKlWsQLA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44594664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBIzTCRA9TVsSAnZWagAAoD4QAJ9WGzNMaNm4lBdBScO5\nf6uS6A1hP9BneM7/fQSAG6OXwUixCACk9fJi+Xzk+2Q18Lj80lrunLHGk8om\n9QO+FWfqxjjA0sPmkSxL60qJ1jn8sLBwFoCO6xpYdnHXOQekzbUT6P0m2Myy\ntmL2KgGYPBiT+NjXem5c1sEKgyqa+XG+3m7A3WgiORpaIDpFTDmX7d3IquDz\nHNenIxiHzzEJp+Ah5+UNhmi0TtCBQryodaRHksHL1hkx1PrUqmUgvUBMraBU\n3MCakXsQrUZ8Shy2SxNANJDorKNiF2Rk8OhM9gFB47r45WDR9nr6WrpOUnSk\nQLt12EukwvCc+3XPb0genTRZAFhFq5VlzNtSGu2O0MvNdSVFXd35+vKDuFtJ\nfDjA1Usu8N8tw3hbJ/7mNStSAcH9dicXoXNcbt0RdzswdFkrm5ZcFJBr2Mce\nuBOmP5DoD0ddUCKbfpX6GjwPFFZSLaN8AWSZgqGa/Rk6AZ7zr3h9Wl7r91bg\nNw5/pRPXRlZC1vT96+72vYzlo/gplfdTQOXwMFapCvvQqVbO+k6tvbqOO2xC\n9pzT/lxJjCJOcVP9ScfN3dCfX+vnzuFZSl6K8vwDzxEGlTf+vntODfb1fU6e\nqAbLRCJVbunRTkCcJxrbkZkWx5lp4hhFwAgrAfSSBi2YGBQudFRb8j3sG+y3\nZO2x\r\n=0sru\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"36aa1014f80beee0baa8af74eb76d4459da96816","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190615_1560579282583_0.25732400629749974","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190618":{"name":"typescript","version":"3.6.0-dev.20190618","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190618","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6c91cc8b6c2b99374ee5baf2504ba194617ba4dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190618.tgz","fileCount":89,"integrity":"sha512-ZRNunzEtfgDPX7ORkGL8fr+U//9tL9zG6q13id/nb/MbhGK0oeqbZjchNXrqFFCKjNk/qrOI3nTO4XyMPZFVIQ==","signatures":[{"sig":"MEYCIQCmfx6WERiprYB9RBEq0RvjJM78mnTNr5VaV9AKIzOp3wIhAO318BXFMVhsGq1YKbMOAsPWyNxPVh/PKIVQvYSb/f2j","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44688854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCIF/CRA9TVsSAnZWagAAtzkP+gM6/P9yvjGFvFqrCeEU\nXmR+3OrXh1VDWbOFcH7xIsv0TiPJdFzE3Ks3USz6Uemd/hvcPUtJH7PTRsPU\nYbB3l09bWrKxevMUwWtawsaZyiDYqBbBU9nUkGwwf4Y5XHl1OfFkGZy5geIe\nqBHk7gk/TVKpea+fUF11tvRX3FJyR+FiMtcjN7wDP66k7o+QCdLaXKHKm/z/\n+o7PfC8exAeOvKGt0qQPdWLZdpLFcEw1kQ05n2cyNKDC5a9a7CfQ8kg8qIEr\nj+KLoMWZSJgtKQYqOiGXXr0ZjzLsPc0r52DO/udGbH+aR2DPA756e2euDobV\nOGKG5M8/5KLB6dCSwU0XndGadlHiAFWUzY8lQQbjZJaGCqKg5QYs0Ow9rI29\njaTTxSUgxCqv7W91bzwnbDEt0ktl3nV9O3w1otIfW5XUo5n9lVd5B/qaSfxb\niwWNfIEVOskzBpaMqiWl3826CtnFDgMsIlMxNkX8ZjIw88LpZLsZpq4f2qv6\nBN5YO2NVeZTtDgz3MueJ/dage+L68oqT9AkXc/1jWgj8KjDpPfv3hC3G6zRV\nB0lkPi8oby6A/z3JdqADjJBhgrm7MX+iCsgLpxuNG1TZP+ArbqoaEJIZrTWk\nEpj/6ONxGqM98Vt1q1VqC8ZwHh3GyBoa37DhNI80ig6rgOVUekXqBhxsGYDS\nGchf\r\n=kxAf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ca00b3248b1af2263d0223d68e792b7ca39abcab","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190618_1560838525951_0.8182404625466488","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190619":{"name":"typescript","version":"3.6.0-dev.20190619","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190619","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0ab27ebffd5cecdf9282da6c645a598f8257de0d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190619.tgz","fileCount":89,"integrity":"sha512-CLSSaP4Gn1tbA/KXCkCI98suxF49ea4qQmaI+hW3f2LU1+DaayNNUvfqLW5XXGiGXoNR/nMkCRW5UZvACjg+5Q==","signatures":[{"sig":"MEUCIB8IEccy5tt5kwySfzKPyDF1tBQMJuxeRZHowRKSDOIfAiEA5hdU3dMiKvdoagQkYVljAhpILJKfp0JDLv5NZXyDhpI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44734562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCdLWCRA9TVsSAnZWagAA7HEP/RrQaQy3XaRmz3t04q1D\nQSlL6nNCvkfIz7Zl1ekh3a/aJXiPFTaajYwvbyLQXCuDy2E6Kcv6ZcHnFyFM\ny/tGTtn05ryHVsxR6NjyjC2/CkadB/N+HNllCEpMdcO+f/kC7Mrc1kEVrMIT\n8SYOPgSy0tmjsSN1fP68+oHEwkAAF75lB/G/1tNytqo+JvF6TFRBFWfKuSqM\nBo57ZlY49eF9z3nF7cR0Rf4VNnmt7wmktkGPR9y3TKInD156zs9eVzIvrxIc\n/snjDomk/6IqPY4XysFBWVo1cY9q2/+sFNkQKHQ2yHcuPJT/b6SY5r9QRRFv\nf1s+xO5JgAjLRUbL1HuuHsb3mFSuwyef5ej8RCMdTOomhnfwjNjeiSXTka2a\nP53EfpoSzcWGKupL37ymjNXOfIW2LTvuVPQ0bLKzUX8K3YBpJ/+LjInBHZOC\n2PCaJXFadTcmUiZHlbb1+Q4qCBvys8fNO9Cd7keK0B6QYMh8FMrihCINdERk\nxLiupf+z1WMbg6GQf2jCkSMoHpSpG7NVSCktLPg6socqjsOq9+o+k0co0jx7\nn6i1ojDQhSJR4V2du3BTZQYAtheCXnITaR928eMdoLPH9WAdlKUWV0p4z+Ks\n7jliVsG9Dd8i4r9vg0REQe4eafQmJ4llOJo9gI9CzlR0UyCRCVrOKamp6JuV\n7JOf\r\n=022E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"7ed3896a0adbcca218470f29081d4af2e8743375","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190619_1560924885014_0.4713133559695424","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190620":{"name":"typescript","version":"3.6.0-dev.20190620","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190620","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"95c35ea968df2862e94b939ea39795c6ce71e6a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190620.tgz","fileCount":89,"integrity":"sha512-QiLz3MRzytsgoqQN1tOYgfX/aVpr5dDGfop6yPeYxd+mWcdg0vMcsf0A3kZj/i0tEMbNCgoZNPpNc2hgGHIn6g==","signatures":[{"sig":"MEUCIQC2j0GODu3FgYFTDwTPMT0bQ8+vxLkzq+g0PwrM9+ZR4gIgGPN34t6BxsPMkttqUuakbtRTQhdPz9r0BDmQHetuP6E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44734562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdCyRuCRA9TVsSAnZWagAANqkQAKNMvbaK7XXbtSernD8s\nDP1RRUxEhhErA75gRYGxIwbhmd1yJZn0i3kuG30tFPfUt0L+DbcOxRwzcZ4h\nyJEiUw5R4zbOhpxQGg85hZydRJ61HIMlnDKpv+RQKlF1bx0An5kdd/O3g9Vm\nTwQfxAg/skRHSY0wwbV7vox3pvQwtvWznm0EQHLiht7qKK0TIELFb69WDwHC\nEWQCPOqTlzdleLi1k106pAkTOHMgmSPG7rEbC7qVbIcC1YwvRPLQ3wILxMol\nMQRO8zSc9V9/96AY5HcFreNpY1JL10s4o4EdTbJRo33JBUidqEHNgffn5Pkc\nanlMXKNKm2FOc5tErRz3afNT5TddOMPlu5R01bc8hzcKS+wgWTIW+uAVvuvG\nMYDwZ8jMLYXcZadBdSI84t5baXEnnJ4n1RYLksR3p9mXzKQ4N+dLyCtg3xqG\n9Pb8XCoLPRG2xoEQTHo+tUaUAl303SuE9oRSzm/ds8tFTfB9+defuKy/5H/r\nsRMxU+qe+R7VpjhMAEFyK2AQj89Rk/dUbWBz3kYwNzxDVdf19soNJv2ddvQC\nKvQeC09VYN2mkl3UjTyzBUZKC6G57SSYOfnjkLgPNbkRUEGfJIfZ/zPcMytd\nPAX54lEPfBqlxfvwbopd73/6pLszSzPVegtF+xD5MUpVSiCFULizPuakydc/\nQEGc\r\n=z0mN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"dbabc1241cb183ade8892b50eef2c0414e095cbb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190620_1561011309892_0.7472424797812307","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190621":{"name":"typescript","version":"3.6.0-dev.20190621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190621","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"10fcfc2f149a4886512bd6ef6f8bec9721b48c38","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190621.tgz","fileCount":89,"integrity":"sha512-aaVr6cHj8oUY+QMvaAlYfgqu4pGMq103TAqYiggSxc5yud+Lo5hhG0Dmdbnn91xN+QObYXAM0gR6bm3nl6IMGQ==","signatures":[{"sig":"MEYCIQDmpTO4WieerKCkl3mJkMN9FKoklQC2ngOBkUH8ghETvgIhAMMIS4aIs9CXu+ZJL/IPohmp44xASyZJSXqqMy1fVAB8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44743503,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDHXnCRA9TVsSAnZWagAAWFAQAJ6oexKV13dnCl38N0Yj\nj0fqxn0YAnfTUX8pBJaSYA3m7599KEdwW8x6ebjdiQVGpL4yL8GK7gLpFBlw\nSSNclzzNZ9nopeF8GgwxJqndp7E4szeBHZ7Jg8CjQKZZCPR7TRRnWXD/Lzhl\n+RAlcgn8U1rlH+aiswyMYFQ4VgTaxVI7Nv6bUrUj1QS9HKVT29RWm+IMq9VW\npylykXev4gbFjSLn4sfzr25PIV/gV4KSSAD0jvsDfNjb1GHbKv6NSzx0Fowp\n9XAsPh+7Jez8jddVLtMz+6n8w1RjJAptX8PpC9a6nUKmHiFvAA7TYPwR1odM\nTa25ROYjjraBJ5v5X1CtoRDQaPZRH9klvayd/uaJ+pFAwzmQ2CVmNo1rWG0m\n7FGw58OiRCd4vnx6roTI3Za1UqArsO0/rKB5odjM+Gx2sAwGp0pp999wDkCW\nLewyZMjRq+NDRk4iIdcXf+Zz6+XBlN8/ZKIJWCnZ2SJzM6TYX1Jme8UeZYiY\nWxXgUST08wWwo847CQwSet1jqf8oMFENpaFokEyS7rbVxX+4UZxFDeYVqc9w\nr6tdh5Iz9E1MjpYpCfOlZ3O/KnjaygPAf+jlnmzjlq3eLgmB/BdYbWD6Dgpb\nD9D5txOz2+dBYw61t8KZytbHfHX4mrO6MbViDx/BJT51Yyh/i/ibMSLk/Td3\nrsSc\r\n=S5VD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"37b20f6afd3eee694c26ca39c586c42ec97be98e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190621_1561097702885_0.895102765427328","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190622":{"name":"typescript","version":"3.6.0-dev.20190622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190622","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a423e5fb8ed008ccf724bdb8f9a449f459dfe27f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190622.tgz","fileCount":89,"integrity":"sha512-niKkdmPt57Dxe/4xlblISESAYKUr0ItNqrb95IfeAq/u7XXOYKoA2XIVtDYBX1gofYuZXh5K+3AUTzEN8bhiuQ==","signatures":[{"sig":"MEUCIQDcrYDh+AX3YK7yNcIv51hsYEw2vxaB+wyk/BqVfsZMYQIgU7UtihAuu4dorn+ERi2On6EnKiFVtmGmOxDT5Hcx4XI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44745787,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDcdcCRA9TVsSAnZWagAAzEkQAKLE+Bv+Q53qmlX3aWaI\n0wPosaChX0cpXCh/a99joV8CgRQagpgVas9cZjVIW7QYTnLB6Dxq3+tIXmTr\nUkW87xBhzf1jYKnA2xlNEd7PW9doEepqNMC/4+JDBNb5EL9qS7Px/3HAC3ID\nFOeHhGFWR6Yz6hS8ZlZDQP969H4yPKSoUdfOklU0iKXssTgqSlCD9fSD2ciF\nAao+O0oT6B4D9wBFk0thlx6tZ24vsd+WqsdVT2ccMa45Gqf8q+jol2j6n8JH\nhGOZ/RgagdzGFHmZ7xsSRb4SmyfLfPOu0aIHv7bmfC0rTWrj1gbReRJ2LScl\nw83YkC9AYiif4NBbC9Xudd9vHm7b/SDAvfDzVvsu8vHMAjDyzkQ7PyqOW0dt\n5RQNri8Q+3+EjMy4uwHTFhk+e927ld7+b+6D9787gl1+lJbVDoq9u6sfm27C\nludEK16qeCbFvTgMhLs8NvZkYoB6rh9C8ZamWZRNhxwy1qsJ0zGubR1QPr/J\nILcni4RTz7OQZ4/aajYYRe8vOV+dFhz/iabu5ZCNJj1ef9OAVJyQOhTJZ98d\nKtUPwB2E7t/Co+BvCoB4RzhXKm8n7ILVs6c4kcfGj//BYZh+92NofTuFjYwx\n2rq8zQ4u4PevY5mzjzDIuSFaHSv+0IUnBQR68UE9i93Tb9B8lHaSvzjcMSQ/\n0i7p\r\n=CxA1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2c458c0d1ccb96442bca9ce43aa987fb0becf8a9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190622_1561184090967_0.023358969096765048","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190623":{"name":"typescript","version":"3.6.0-dev.20190623","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190623","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6f524f4f79afbbd2f0518eaca82229555a732427","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190623.tgz","fileCount":89,"integrity":"sha512-+SA9nrh1UsPPNG/fyAOC08VfefFxA2Tk7Hmr0jZ0GVmmK4n2Z+IgLqAb+sc7HDJPx6hKL6TjejwAZ5/2xPnPWw==","signatures":[{"sig":"MEQCIC3c3lfAcGUnrXFEZ+3PVS3tEWlyWze4+qtNWPJwEnKlAiAYxOSNgd7NUu6UZv8YmsHAe6vcreBkpXtkvGxeA3quaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44745361,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDxjFCRA9TVsSAnZWagAAL+UP/1sUxy//UVFCB1fVwy0R\nDlH2SR3KBaU4izCxHm2PPIcbC0LvkraOWqmzxxlc7/hCPNT0ruwgFCvNb8/M\npzg1VDj8oWEjfB/eB+8uTOW7bOcJGMmAcg3Rch2zaPV4e9dSIonzxazQi0Bk\nxsdCP1+Kd+EjZpbxkNYcGg4li8tmV4sTb5TDUP1G4qSZQXncr+hpKruRhYRG\nKYeW3rgaYppdT9pSjUtmjID9kXJCmvWMMvc59Qo5uo0LSvrHn5//J9iMikZU\n7dylOHpCtwVwSI+IFi2k9NL2VqcuAuNkMq5raK3H901d1s0nOR43aXHD3+X1\nIRNVRg83S4PVhS5O6ZRKuSbwZjH0+lWP/3p78ytLWpzzY0f0GDSsJMWNoY55\nvWyu11FWZ/N2fDfx+8D57mwsfL2WZJ3NrLqokjHWyMla2vukGK7k19VUhL2O\n4LK6lVoBCac3hA5jdxCdgSW7AuWQQ3tERNSIfZP+Vqq36cqWGKnWJmQku+3X\n07DLPIAo3Gn/LMqVyZFSBgHPID73NyP2cDiQdUOtOrCqvzLqoD7LoNoaRguS\n0pEMI7N4sqtYzOV3To5H8mhyBx1uTrRv4bjbYx1sK4DMuu495+omi+cx2wKS\nmYeZKVWKLYLYUx05QRK6xidgTrXqFTWpHIeOOZ/CCLBF6FvEUOP1FdEcBKdc\nTMM+\r\n=6B01\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"917cd6c6d94b18d0209e796733069e23af2711a7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190623_1561270467641_0.08395361492187248","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190625":{"name":"typescript","version":"3.6.0-dev.20190625","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190625","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dcaa987d4308ba92ec2bd12210dba878e0fa6700","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190625.tgz","fileCount":89,"integrity":"sha512-ZihBaQfHwj2bRgikdwEoZ+hR9mFzNy/benQ1W3xrThq9YHq3jOvVtVCiTf3AT8MHOOBxKkNer0nvHFqiy0g95w==","signatures":[{"sig":"MEQCIC9apvBE2/yZGlTtvD619xDPN1F/zHvwPHahYrMtfAT3AiBTuSJ86mQ1YdzUwCZ1Dq8uu/hYx4SzfRZAX8D1gY+SlA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44753280,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEbvlCRA9TVsSAnZWagAARgEP/0YfzCH0uHxakurQG2eH\nJtXUPAfBz6U0Rh6VsHqnXVHcBMYDDfS9O7R0e0FR/78rs/02WSjYXEcwjOwX\nWVUxzlL9Igezkg0Jy/kuXIkV381vJAbXE9dC6P14DxXoE6CC07gK4Ap8sO/f\nCw6LaJccnULhLuX8Oq0Ou4QIpnrAs3swTuffcHu9YQpZ5nUBgUPl27vTfJM3\ncbRAPBGjW9SHibdNVBOMpYtcI9ZGd6j927p05d8qg85wL0zJEfPoZ1NcAzGf\nOv5k/FQcT55s4piqKx1529RmvirH7uIHq48U8hXinoFuuxMXMNm6iJc5zInO\n1tX8KnSJ6L92Ua0LR1JUWDXPiU5sFf3EdM9LNmFq0Xq2t3cJwexSszIZoGR8\nz0niqon1Sibsbv0sj4KGzrJb6NbApUOS1bOZ0xZV5lM1icUT3erzcFb9IrY7\n3TZ5QUfTH6ctnyp74ePFzACMND9MEfOAueOOoRCEzUNN04elw7DhS34lDJeh\nLz6l8cQ5bv70kSE8lJLNWOzImjDwpM2YG3dqAzuiZBFglXu0PLeugtp7EVqe\npC6BYKcFLWRM0wiQO2T1e0aX/h5W9/qghCtwk8eAGckJU+kfqOP91K2H/TtC\n/17bvBqD9mRxQXUezrdWajtZ0YEjV4KLjmjqeTQqpYGYaSv5JHqRIIVs1Sao\nNXXa\r\n=NRhX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a150d55592dbad6a89a12b6612723c1bd73213a1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.15.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190625_1561443300558_0.6354065305221912","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190626":{"name":"typescript","version":"3.6.0-dev.20190626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190626","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b1892ce0fd5e4afd5f22e620984127cb8b1b2933","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190626.tgz","fileCount":89,"integrity":"sha512-m2WfonrCESLYCtNKPAab9pKiMMt8mPT9iHTrok9DAei+D8QBrvSeBU0jOU9+K3Z5lNtH8S4CToX8n5s5dbZJoA==","signatures":[{"sig":"MEQCICbVSUvfn9ZDf6kDt+aPRQy2YSSQ40fgnK4BaTcAc+tGAiBnbvUNP/7nFQ3k0jpG6ykV9AXXOdpS6idI7FE7RZvzuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44755938,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEw1sCRA9TVsSAnZWagAAvEIP/3jRwaKBnSXRicJn5Fhz\nRO3skulzv5bl5HuL0Qt93nDcRF3V7ZVSG9zn2A9BBhRjBDrnEmGLp3Wxwtqy\nnDGIKArBcuoUJ8Qx6uAoBGKrUvVuOkRZxdnM2WwxOio6GNt8LlxvtBeg0raX\n3RTzZb6JBESqFdM0E5pdeXNQBwSYY4/sS8Kwd0a2XLSOgamsTm9fmQ4fx1MW\nr/2uxe1+fZuIS127kFSkW+h8yLsHRaslGriaIVs6v2aAtD04rRs2T4vx1jPk\n8aD/rErqFtBZnecj17QEjViYsyXq4S0L3iZHpof+r48WTgP4l8tZZNS1XNaz\nVDjDu4tSMKCS84vmdpNsTsYn1vhOkOEy6tFQZyCeBRBwOYA01Aj8+wRU43OM\nv0iiXTWm2QDIqOa9s9cy6O8k4tOHeDvqz+i8Sk/PjtWZRk36kNUcRyLniy5S\n6itb49qoMLVRo6so94cm0/tfvB55eN4/K1LEwtePZtUOTu6BnF9XHeVXm988\nCMc0vQY5bf4nKKsjkrX2NFbh8KaxE5Dbo/mAko3Ut5QC0bMA1Vn7h0gP8mVB\nNiHEZVLkx5KUEa1D7RUf+pFQ/FnzkQStcfZuiD/RXF+ZBiicT8NxmTtxq4EZ\nq0VpwQ6JtEiy8s1Ltw8/Hmvqk+ZLVAoY9fodMhhVq3btlh0ZQGIJQOO3FMlP\njb4K\r\n=o5P3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"34eb5ddf75ad7401217175a4d623d34e9aaee534","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190626_1561529705854_0.15917602145503063","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190627":{"name":"typescript","version":"3.6.0-dev.20190627","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190627","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1b289f846a25cba3875dee3c88b6d22a4f16b4fd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190627.tgz","fileCount":89,"integrity":"sha512-T5Fxw95S6wXqCmhmT4K12vXjgkn+6j4FNm3mXyKXU7CX5k+zbAi05gVHJG9xQFJFmuGR8z3cWqbFyf+6GNn7uQ==","signatures":[{"sig":"MEUCIQDdxlQ+kKXWgdxONz6R8rnX+7KlZLNBablBwd1bhA0/IwIgQs7/ksFYppFOlKyiCZS7Gsn1a8Rg8dQ/n03Hz+MRf0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44765292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFF8UCRA9TVsSAnZWagAAh14QAKUeNpjSHzA60a0DLteW\nEBEv/ndt87zyUtxAEjCL5lb+m7if4T9A9rX93DXTcCxylWmwclJLrhrmaqiB\nqALpctIp44E0q268D56FBuleBby1Ugg+ENmv+AY3X02tnl+Cil+7kQ8lmG8b\n9nwd6mCq30DDv/+vBumCef8ozkpNYDQ1izFevZ2uXjwskCqOmRPdrZk4atmo\nFWaXb/hhKg46Z1GaGumsfPkUviFe4Q6ETSy0NMPjQSrpwkxGQ5GAUFtLhPkW\nAev92UlUbFQpYdfw1hCkZcHq2teFBvZeru+Zm/T9Wji/fW64w/bvyGPX8TPX\nPYPv6+RsbXxhSgISnS25lG3lDM1u4uKzWGwlMAYf7hNWRGX2PNZXgFli/cpn\nW6r0gdP92PgyjcTdQD6Lw6Ichs9jJWqo6SFj08Ko5db59VOaAhnqUukZO1qL\n1BvbcGmzZgCrQS4MUwNMotipvYOZJmtgs3YLYGZI358rKRtgWFkmA7a/1to0\nVwmYnjzpRSBfeHBMwv66Wimc+Ovjaodm+1c4YILelhaGsgPshzleCtIAKLGG\n9ppKTGolOzp96zO9AdaXBidYWfaU3cvAOTc7BGiW1UmZpJH8VpwEQBw0ENt/\n0cgZAvOI+7WyZZebEeEe0Kof4ISr6Tpb6JbOYo5iU01y1H6q1byMfmsFeeGI\n+Xil\r\n=WEGg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"b3d55d0cd83dfc5dd9b34c9fddba39ac9d58ea45","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190627_1561616148027_0.966361083908787","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190628":{"name":"typescript","version":"3.6.0-dev.20190628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190628","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"425218ed9339ee878e4cd2a5b5799ef7928f15a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190628.tgz","fileCount":89,"integrity":"sha512-U9U8dq0IWR/hHwtrxjlhHZqunm5FQdl4CjR4HTtpz5oPPcSesa3SXaLGvMLc4ZyAZqoZvQWiDGBaY/W9x9C7rw==","signatures":[{"sig":"MEQCIAkHwQ9wxbZtWOh7lJnmNMprpZzEuUf+gjX0lBZIaRucAiB/zbRuLlJNeeSFOE0YeMiFAIML/s6EMSthvVk4k9AgUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44800133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFbBACRA9TVsSAnZWagAA1B8P+QEI7UNuE30oppmIOJSQ\nAZJpoKzrxmxzKC0ZJlmnkEN23SvoKx0R5BNOHUdvqpGtKEtPRj3OenR3KCuA\nQl0peFn5U9BS6UwKSkZ0Mf9HlLmHyF1X9l2mh17mG38ppimUI6wYkQ5IAFah\n34J1fLFKImaVblCBzoznhoCuQ46dZHMGG29i4wAtI2Uucv8peUdNUGKYy1s5\nspljI8dr/3vUSmKqBTutxubogdTKTG6NAphcuBjaWlXkAKdfeyrZmNnWLKmr\n1t20Kzir8ITGlYXqbvK+mytKDJZam1oJ+NgRdoh4wtSLaLZLuEkk+KhpSi9N\nialtHjqenl+EfEfpbiXSHVHTdw1F+N8glbIN+7goPC+xwmB7WiB7Q/o3/dQA\nMtcuswhry6clJRcff7F37TVjyYU8uDmAKQjQ0GgHeeFjaYYpWvKLRY3rIpuM\nUZ1NYujADppLwX4yMPyrZ1xQteLIIy3H+3NNwHFsNO49C91bzxEdnradhzQp\nugExQjYMzTpPRrlBMzKti8CoeLWVyJy1kC4EofPkunCJWIL6weAX6WoiySCR\n6TicPVTYy45NaDQB9CL0BjAd+BwZpzmfXfxaSxi2ShTkcfzDmt6sML+DEuAP\naBNIRvWQ9MzEUXSje6w8eIpbfq9N8+vR+0Qf5ZQnxrPx7IctZsZ/6IYe+GiA\nbLt6\r\n=BD1o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2af8ac73ffccbb0588218ad2bcedfe93041be269","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190628_1561702463035_0.018402976498766765","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190629":{"name":"typescript","version":"3.6.0-dev.20190629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190629","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4dabf07572f17b79b14cc227656cc77a175920ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190629.tgz","fileCount":89,"integrity":"sha512-7etrNGdnRg/TbuhQPAb0/tqulekoO23Ztya+IGOZBOP4pC9VJssd65i58//aTskvYxKzaB0aFaW2s+jFr93v9Q==","signatures":[{"sig":"MEUCIQDBNPxiZQwk6svSZhF7J0qh3PkZqsoFwSNRTGiHuxdrSAIgPGlV8uiN1putI7Yyhg+R0RALPEp+vKso7Av3dksOdVQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44844173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFv+8CRA9TVsSAnZWagAAcugP/iGz5LiOKSE4OYuiw09q\nsn5gdEhV4GU2qiBuJnRkv4Lo/yOvwg0FLT7NZ0NatzqVORWmrt4CqDvML7Jo\nCCiKD1+PKt8ssXUrVVZsAOuDHi7lr6XhwbuT6YjS6y+PU6PwhSblI8KPK0po\nw2M+L4GnmGxHB/TvcLoZlmeAxjs1J3k4uDq3j2BzyvAg02lkASwR37MYMDFS\nZWlHEjS3qPjL3j9hT0rc3M80vIXuM9Nh/mIMK2ltTVb1BY1Wjm6qvRBDAGoS\nvhs+Z3uSzHSjLFP4R026kDBgzf5GghJ8pePjvx9fX9Da71Ze+yjNY/DeTfaC\neUKqkJkddeFpbCle8dLEjbeqo85QnrptAj/XS1slXb0DdD2bgalhDV/1oAzy\npffEMEpIi0b1NwZSxVidCoJy/qvWAfz24jdSKQnab9DeOLC/6lsYyNC1K2xG\nsHX8+PhwQ8DU5yw/4nloMjdc9RVEB0eI2UyJ13ptYq3ORMkNvl7t0+whY3Mr\ndKrPsEKCl0bSKRagRJbpUCQ2rgMKnXi5UZTNF1Q0UB/ojPjE+gpDoPxNBxun\nfdprNv2UP+RaU9gijotIiTel8JVeelteH9UhLSQswJLvhOPDdVfc0FxB9+3y\nORLO+SV1eAUffpIg+Q1dJPkuOYvd4PfgEue6Rf6X7D3X5ACQj+6/QvRtP8hi\nSxnG\r\n=BzaB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"410b71751eb66d0ae99101870f307bb0f74a0b07","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190629_1561788347993_0.03801131938214719","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190701":{"name":"typescript","version":"3.6.0-dev.20190701","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190701","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1a59c9718b22cc7b974dc63913b6d920c415a1f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190701.tgz","fileCount":89,"integrity":"sha512-y/b7awIT5pv5rIzzZOFDr/6tqYU4ZMMp/Aa2QOMjjmjuWEBOh93ywZeZZmVCruhXkb3yfP5njFUpv8RLq/n63Q==","signatures":[{"sig":"MEQCIA+t+Rji9nmE3qOkSnT8EAZJyL7oTnkmiwYg8qQxAlDNAiBv1rrjIb4orSO98xdZkP45GZmYafW0g6agBY6DGtQ/wg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44850504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGaKuCRA9TVsSAnZWagAAWqAQAKCvFgqJL06i3vO0cAnD\nfaTUFsNItHYLBWMWnWGLazN0qjScRC0tqyiGCqh3JN0aA1azEWhyesQMXJCz\n19G55dSiiQWiskzywJtQ/ZkvO8cvsOjcGsX5aUwbyZ/kuL+jJQWBoA5U4yMs\nropk/4iMWPR47MoXJXB85WJyXD5f3M/P83IBXagnkO+0J7n2xg2143npd9kr\nEX5yUx28+37i4pBecwNPf8bxAlk4T2E7afzQKAmbJdlbjqQit5hJLK2Gcvmn\n6JaClxOKFeyxpowEdLm6StqpY3THO5v3iLkqZc3ycRxgrK7Nq6guLe+H/OjV\neyuvF86SsX5d1gVekpmkgmGbAg7Xyg6tyRjDNdC3Ji5fflZG4Qhh2TEsIhMB\nGpSnsx/Z59uYWxMfu+YPX1YdekBNMXzSMTvX8gaoRf0Jfg8BOXxBq4VcnxT+\nE4h9Hef/AMkzhKn9wF3sBHWyxqTJlH0g5APBKNyOYKoKlDQ5JsyNdqoK0Xk3\nNw2l5tCsJOuiTE59CPGJOdw29FNwqz7gj6EZPSVNamB0YUTz0iWBGeGbsud4\nVFb/x60r6VD3WiIyxbPOuVsVhCPAaZhQ4EI0QhvpZgDqx9mQgX6UQtnditVS\noW5+mV6kFrz40V1QBI7iZRrwFHZYUWQ3W7PLkkYfqCky/Lhw0x+Gyrm/9Bny\nNysv\r\n=jJk8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"f89165d0727d818eb3afd780bd1ea6fb834a9354","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190701_1561961133588_0.9931718066626027","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190702":{"name":"typescript","version":"3.6.0-dev.20190702","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190702","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"552adbc2a33252bc7c99159f692351a044c98d76","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190702.tgz","fileCount":89,"integrity":"sha512-xvYenG6VcCh/cIe30dN4jHAg77Yai+GZwItwWZ2sJPo58tlg7STWM8lGW8lZgM8eQNyyJg+K+15x0o0cIS8JrQ==","signatures":[{"sig":"MEQCIC2rPBGBAM7SvGoEVqQrGg7OoMTxoiuu7Rmf/5mBku2NAiBgU0htSHFqsoAvKhBH0cUq7drqJ+k/4h6129t+iH2YPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44879260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGvRDCRA9TVsSAnZWagAA0sYP/iV9k1R+cRTvwD+c8m/y\nF21Np2d57khguKSid9XtBi3+krLEUbN2Yiam4845leIZcHHxun2jXxVh1yBQ\n0O/uw/e5cJNxoArLKHJjE3DiNSVLiBVBh5azoqRPnuZrVTeap7xUQYCKirea\nDJBJv+0rwXOGK50834/d70CI76kFODggxvwA09oVX+9j1ZO0lWgYdrk4GQVj\nKXQzurjfvnSM1GqZZp/SD/KE8mWgtFZepA9Pk0zWu992sGRXkT1Y96FqtFmE\nVa1C8tRZfLgTus1wy9WNDA/j6rOXPEgQiZywJ3hXkX5ACpqNbgi/ZaqszDhM\nglNsJuyegxeAXCu9+VgU++iNtIJ56pw6fopgRLhIpjf1mhW4wlxtrNpHInKk\nwIOA+pL5UgR755mnalJKcm9HD7CBPIjS5bn+96WKi74xLPOplLsCrqsTdCPL\nsvJuraopWSW+jkq78WsnIOPs6NTFYcFlQ13icAjYW3L6pC0AHdmlfcIsfdEX\nelN5tn2yqPMUkFgPGSXtHCj0yY9aCF/tl1dRSY7U2GAc6ZRITas1qzx25jeV\nL6vE8oskaOGGW/AgcS+c3HRsXUrPfzv40dBaNgmk78BSDzDBZcjmSBf0hdH8\nWQbe078+Z0VHRg4a3EWNnRexLmv3dRG+qA524zjT238oCNa0CXCUohQz6+iK\nlVhx\r\n=9pX6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3e6856137ad2618dcdfe13ee49a06cca8e4d7ee2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190702_1562047554583_0.1774921701025003","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190703":{"name":"typescript","version":"3.6.0-dev.20190703","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190703","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"559f907435af39a846ddb7f35ce0b16b0d123d8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190703.tgz","fileCount":89,"integrity":"sha512-S1xSDOlBb52yvmuX76+OS9fYmhFXfxLguX+iF53LBX9vgYWSZK0g0mtPjSmP+GyW36WyiE/65Jsii6x6sHLm9Q==","signatures":[{"sig":"MEYCIQDUcPB2NUFVkzqbhd4YvFvCl8EFBU9Uc4Tx7mpKBqbfNQIhAK2CPBBZCiEHcsw3j3V3m5tTsQSe6l33qajsq9Etd8Bv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44884167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHEXHCRA9TVsSAnZWagAAYWgP/2EujzboP0Ors6YutURY\ndqnbauDMUSKK+V5h1YlqJdMSM55WF+act+TDbtP2ACiQkJ20fQk2RCCMhvTk\nDFcepq0yJ/+I7j6eekCmB+U+bR4pYaBm8eUUeX+PhD2QmBXJkQrUX8tWPWDt\nZ5g8x/QT+HcOeFRYDJJ6auTBUI4zBQXXe2cRq3cYqqCJGmjBMdSTMtYUXmcS\nq4/HQzkgt18bwCJ+MPvR5m0TNusOtqsrjLUAzUayZFWOSDve7jvQCkoVKtHt\nEa9rrXpk4VpenLWptIKjh3NZhHyVUPNDkfYuOiRUgNcG1arXXUmLbKlSffsi\n0nxqKXRdp1JJA74+IqCmdwCcbFXr7189iF75SqFvNuevVv1RA6q8uMPpYzQU\nQO7vhwY1UXUQJGkSaatrvgaYvQq82dg4cpHWIcaEHmdrrPOk7sAQxnGooZU+\nSPNENSkQ5UvnDk1UEuQcjGPL1TcFyGw4pBEAGluo5bP9NtlIlOcu+HAaUMRA\nl7lRjE/Vfg6s3Gd5M+yLF7NnkUIa3/yI+HZKk0Q0FUC2MK/oogsxRuAjEpkJ\n6sncmCApb+OyunJT8Ic4m91qKyC2f108qTxmpoFGRnMf66WJwsNl3TnSiBeY\nVBkNLxd7gCM8kYu4Wg5RRx0zfXIBO6xmCtS/8S+4saLfJTDURd5q2C+BGCU0\neMm4\r\n=dPOU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"340f81035ff1d753e6a1f0fedc2323d169c86cc6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190703_1562133958328_0.4038108550473023","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190704":{"name":"typescript","version":"3.6.0-dev.20190704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190704","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7fce2a1f824c868b393e5291bc05cc192d266757","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190704.tgz","fileCount":90,"integrity":"sha512-iLLlxNE391oUs1oaeDwcDlP6SeUFAoL2WUz/PsQ3pTvxqi9D6dJyeDshxndmilEwOHSgYJQn+Z9+rckXHeZ2SQ==","signatures":[{"sig":"MEUCIQDXcCodP0IvttHigjvaKuuTsTn+hE6tJg48Z0g5hbmQmQIgZOFpaGKWHqb9EYLz7yUiPScuadGhmwfaLdJHZZjRVuE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45089687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHZdMCRA9TVsSAnZWagAAlKAP/joaPRq1fICphqbcHO3n\nmYW85nXmc4m+a+XAE1AABuU9M5mSU5wRFBViDZcl0uNsc6KYAAhA+ESgroUa\nCedzdBEL5ViMlz3Q62ImN6oih//lnk5HOIbKQaoZEdpHtYZDp2ZhtCstIgNN\nGhUarSlq2KCiVOTkW06cn9xk4Wn9AtJuvZIw0oCLuNuJtydwsPvPEfe8YoJK\n0GS8r8x8jS9eVS6LZPQtRECUxa5+kpOm4g2X47iPiCM/gU2H6fPP+4JsDXag\n+NbVmbq0YGje/1hhwcnxxO4CuBImJO6S45abUk/4Gxj06b8da8VT22fByz3R\np3RvSYY+uIB2hpTBV1I8Kg/bC2R6N1akto/TQr4jO9u5mTU0S56xwA//gX6H\n8UTZUQ/kAeJrxtTrtklnf9NVqzeiN8nIbfoOiffCqe0K5qhvOnw2Bq9daj3B\n0JXfk8u4dDQVVq6fEE8Dhei2jgsdKgvAVQr/mEIBHnszU5ywvXFk4vOv7fi5\nyBLk7c6yhKJO9CUqzopU2Gv/oqu8ch9w2ps3jrv/D9wWDz6HTwCA78ECCy2a\nU0vtAiA4YKhTuu8/rCiXOMj2Qpvj8o13raxlKnQkYb0SViAiuyHvZcs6QAfj\nFytmutjs3c+J9ArMDMO4TM2ZyeP4Ei9VftkrxNaun8OrriLPLLDC1gJHinaA\n5kRm\r\n=bczn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e8bf9584aa74aabfecb51a02edb13e3657508274","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190704_1562220363916_0.9911516330907437","host":"s3://npm-registry-packages"}},"3.5.3":{"name":"typescript","version":"3.5.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.5.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c830f657f93f1ea846819e929092f5fe5983e977","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.5.3.tgz","fileCount":88,"integrity":"sha512-ACzBtm/PhXBDId6a6sDJfroT2pOWt/oOnk4/dElG5G33ZL776N3Y6/6bKZJBFpd+b05F3Ct9qDjMeJmRWtE2/g==","signatures":[{"sig":"MEUCIBk6IW9/toL90kakmp5m2ntGwa/STXn9Y78ZCX/3AESLAiEAm831rJrgVEMRbV0ktnb1xzq/Bgit65xpXYimrMaTL5I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44457002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdI8LPCRA9TVsSAnZWagAAmxoP/A0Axm7pf2BscfWhvMLn\nUQ45Q9UDmShIpxhRoB7lGmfKeletDu1zIV24HvOLc2Qz8+psmhGJGMhlEIeG\nKD/xP2RgGvkDI7AOtJhqtmHk/A90aD/W7FCVywUHR60ACDo8/O1DoVqieOVP\nYdJkP88L0ht96Y9EbEBjPI2CWCZGufnTuSVyXLjIu2b6aP8EVXhDtw9NT9kk\nEnFMN4CVNfGw8vYZ5xlm0aPyDBDQDGN+xyif/h3dD3Xq8uMhM0l1wNpqvlk3\n76fc06ZK+LFHeiElDAFmxIHa2YxlVhfEKkhnlq85e9BKyIA6rWdYmFFCz4mt\nk8m18xkvFYvB41aEsaqCht2zy12M2/IFUmBK3iwTcgJRHhKGfpQ3MHU5kAhC\ntPYIWl8g12ncp50kAdfEXBCjFSSPDEMl+YaFzf93FlE0Zy0Dw4SJDA61MQNZ\nsKkzMHGS1fW5QeVOZ/ufE2DqEUWJ29qVNwc+XerSAmOFnuxIHGCZ0HUFyhK9\nGntUUGzNolyQSmvPbF7KnXVSkmlRYzkY3SFqOficzjPz350sJ1fhUyQHSkAc\nvC6s/NlpXm+j3DpZEic5N7ZGFvmPMvOmIgDoykIFdprDenyMDDcYIRHfnbAJ\nBnj36WwvVxHqCxO/wpNqlPqkUeUK0/TnAkz4E2buPXAmcmLVcmOGNzVBreWR\nbRLm\r\n=PabE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.5.3_1562624717980_0.18342369612835951","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190709":{"name":"typescript","version":"3.6.0-dev.20190709","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190709","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6a272b92a2c5f83beba7122e1d141b470d6cbb9c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190709.tgz","fileCount":90,"integrity":"sha512-Owzk4eVrb/IXh412kcio7pNYtgGNCHgL13wHOLDdUUPoOmHArL2dhN+ICJsnkDHPK88cKXNxUK0yD0SPNiIzxg==","signatures":[{"sig":"MEUCIFfY15yn6OL423YsnLAo4PgkSsD/1YN/tORnRCJTRwW/AiEAgUmlQY9/xs7hnhVLwT3OJ5gDUgZDl9JTBJgcNOBOwBc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45139022,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJC6vCRA9TVsSAnZWagAA9YkP/jNGSEHXl3A0xQdteI2u\nwNawxpKDtiOJIZ0zMsncs8EanFcheYg1awHG1xRteI88N6mgRSjJT29159sr\nX/xY52jA9CHMu07YmvHtmqbFsJPlnc0QSVTFpyFXdwh1D4uFUp7zSJOqVcGL\nEJgBFbNx/cYhlCdzPSjyUQQI6Kf3EXdyysCkCzJBv1Cnp9mKiWdcslvtzcx6\n/YncszhKUxz8lCkG3cfqnpepQR5DSm75wSjN9xKO+zZSYV636oSf1TzmVQDs\nwVwf+frlL+pzsb8TtZh2M5Bjj3UcegTHlZpjPJ9e7GIiSZ8Hpt/cdhlBUn+Y\nQxQ7dAJY6J/n2+HGRz66iOBV47IbMNCYg/qzVgps88JJPtOoXrDgsq3Sf1BC\nFxtTheeNLgsabB8qu3MbNXn4tqKlzZbQ7u1fZjeNQ0bsraYr3jU7mfZdCMxk\nJaPGYKa4+3l5CAfLLTX+VjE9b+x9RzX/H6c5faHfhU5+4XQYwcHnQUL+dYK8\nlA4OcsWYI+dwcXJEwsUiff5i8V0oSe8xu6nIdFI2LCWb9CMzBgtkeJAZ3rDn\nYxN67+09jPgB5nPpjch+BUnwggAJCkX1BrZNR4aW47D1jvEMMveNJapMmpWE\nK6t9AcwlfX1gBOaV4jlwHn9jHkMtPNAJGJLKoPDPVzLti5L9SBBE0uCj7R0K\nvjK3\r\n=I6G2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"fb50920a67dfbe75a2f2fac363f8bd89a25cbb08","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190709_1562652334255_0.5662545528673746","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190710":{"name":"typescript","version":"3.6.0-dev.20190710","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190710","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5cc6087515ffa0f2cc33cacf33449d56a2fd2915","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190710.tgz","fileCount":90,"integrity":"sha512-NmMwd8fW9wrYB/U5zQbKam91hiiQts/awYdNi1rP/0IlvPhRhUuo5HkGcFnQe7Q/uZFtPH8uZwxRDLDYi29DyQ==","signatures":[{"sig":"MEUCIQCFCIYNvj/n2n/ojS0pfabc6XzvtTPLLKV9cnwI9PJLJQIgJlVQ0TddUL8vBemZBEXfYglN+GSPrw1T/LAk+sEcnck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45172189,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJYBSCRA9TVsSAnZWagAA+OMP/R0lFRbZpLtBjwCDPPl4\n/e/j6hUEwjqBhIsyjA2osXln3BjigYttD1o4L8t3f39bRpNZJ5eQ+8Epgu4k\nBr5DEiYO4/hGAMGVlhVUZsfLuCJuJw1MROuoEdD6HDjY0n2AhqW59Y7CoUWX\nNbYXlQlzgNahenFWYwJfa0IWHtwTtyNT6EB5mMtZlIoA0LWzUlYjArZx+lQs\nKfzMSd9UPNHemETdjI/BodlEJOBVjNrxSl0FsIzy84WYPsnWPVt9rrbe7a2e\nwKjCTfoeP+GI46p7Yrw10Z5mfbG9nlB4/lTULTOlMuGk0afzFNIwD+xMXqO8\nl5duX+ac+2b0dLxZ1Tj6/UsCSgjwvL3xBG7+3u00jumgPRY3qseB+xPB2cqf\nU3yiInE6NQV7gK/WsnIihtLeOb5cxLp5hHL3m/oEMmJN2KJ0X8z/OaZn4ctL\n4Li3sM2CXtmFERELitP68LpPLjQq7+LbNdWxd8Ec9ApEuDWtIYUj7v2/rt0z\naP3L/s7TL6jP7I3qe74wYxs7Mno/DUil7MmFT9PyzVBUMfXWei9SGQrVpNhj\n2hOqxIisTIlae1tC2e4l77U9dP5uWfrxoCI40rsC2Big+iP1DDoUnpJsfA5d\nAB1uoq69jp7PLJCk1T+PAaA2gh3O+sm1CNvbI5WtwxdoLBSdmguhdZK2Cn9D\n0rTP\r\n=ulMk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a4cddd4647154550fe603ec2b65a93cf8b2099dd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190710_1562738767516_0.18916373715264134","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190711":{"name":"typescript","version":"3.6.0-dev.20190711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190711","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8dfb7d416e3694cc5951fef582621090aa532399","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190711.tgz","fileCount":90,"integrity":"sha512-VQRsj7VZi1mENSbxyEkZTvuHgGzabT6TNKN2pMWqwGdfhnpRBgONy6Lo8WQCrf6/JSMrV8M2YeUb15woxszpNg==","signatures":[{"sig":"MEQCIFjuu+ddLPGk8I7hfDkCG7b2mCjVgxE981YNF0n1J10ZAiBYGGwyFFIDqXBwqHFCnSD3/YnAz1CzJOoh9HXN3CVZLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45306744,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJtG6CRA9TVsSAnZWagAAyjAP/iezOAjN48/njxRxMp54\nXqH8uGbql3phWkoq8O/FXws+pe+l0NXhPlwkEAsS+1fjo0jaVmkjBeGgQ0Zu\n1RM2oK0spFGClzM/sngUH00RB+5e4oQc6hxUj1U3xcN/SBLykS6bUmgGv8ee\nMYGbeC93DuuNFHncQQFCyzVSovgXIkUJqTU1jidJan8VdZvK7Uc5jrhTZIAh\n2Od0jaovkzuWHuWbzVuPR/Nzh6p/dBL/Z8llq0/lvOA59ZqkHrWUwzCFDmON\nwL9DOXd2lJ2pzCRKSaXOYaBc5CXviKf6ZzoCf7mCguC5LYw468b0qqopISl8\nR9ZQL4dQwLCgGZIk35NAiKjRR4DgJuk1cYkOMjLQTq3SE7jhWKRDoesx95Bu\nDyyGtxxtncEldDZikw7AMjxoTH+0cWk0W0/RmSvpoFsqyTHiTIIf7iBd2Uvz\n08orzkODnSH8/3PuhTyYchk/AcE1GSzPUl5mEVxEF4TsC4WdaQJMNRhG7DYC\nTaAXXDsV2w5D7IcKxdD9HWKbrQw6+gUI20kOKibYLvzVdn2SciCiAoYNsRgt\nZi6qcMwrLA8jV2wQLi6QNn9fxO5HmXxNIkzB4yB/9AgF9DKuGyKtPWWUiqZr\nbRKuwKZvNn8v3+ZKbuc9gF66DZLKMfAYuG7npImNF+nz7z2AT4FZwd1Iq2qD\n69gV\r\n=EQNB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"8eb3822ae0f0c0136484622eca599dcc19f35481","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190711_1562825145435_0.5473679778740257","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190712":{"name":"typescript","version":"3.6.0-dev.20190712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190712","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"269371ef84c4b3b7fa0b5700711cb182f374c511","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190712.tgz","fileCount":90,"integrity":"sha512-NuCtDOHKY4zsDqaf+yUWrd6F015Af+2tCOCLtELIB0Zgopq7tqwGDD9nOSDKIJ/SqNRItlhYhQ6d715nO2kpKw==","signatures":[{"sig":"MEUCIQDOWD6arw5kov1wtdhVY5tOnRlJwwIlAozDtdKd4pYZKgIgLI/jMELPJq4XPj6t+H3v5qcLqb4TpoO+Meewg+u8NaE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45308914,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKCNPCRA9TVsSAnZWagAA0BQP/2Xq7KujqeNrd5iLwYU3\nSEUUVgBRgfAH2HAUSLkkUT0ET/mhU2cfTZ7EcdeTyr5umlPNov+ERMSbLp33\n5IJozgWG2xsIHpEeHmXcyi51sRuXLE7EluGg5kJowp1e73ThVy8skXliehhx\nnCSV9FUWLli3WOy309CyJT1n/JioAj6ARbJCWS1/SaddoHiaQhKvlDqJqsXJ\nQ9Jqkp+9zrUWmpZXLk7jxBhflyUq1mP+/u06i/OtRH3yTD3go3pMRo+xMPz7\nu+GIrV1v6JqIRS0k0kJgzrKiXhh9Gfzkd9JW7eJXKase5Pj9snmTYkTKK2+T\nFcpG/xncyMCcf2QbP6/fCwYRDqj3U7y2w0KIzvrlLoKhTgMqE9wZows0E6B/\nNar340tVGt+n5vDZUU5Q3BRnRz5fP2V5uhKuMMV6QY2hPm2RmevOh4QauKcP\nCqB2vPVcKAzCa3J9EraGLWBfB3oVpbsf1dV3lV+VA/GOC376dMIwp+NHsUNN\n2MSB4AtG5CQ7vZTAgEaYFQj/f4dJ2WGcb/+52lfaQQf+tiqDjAMCXLfNpvfV\nJYZw9ygfS49GJIfek+UlVLu3y2AwV2KdiQae8ykaq5yQdh1Yc7nvcwZh+oDl\ngNDDkAhM6FpHfy4kkLJmS1thIc4bJO7Ayhgr30VudiJz0xaToK5HxDhlfdIK\nlKYF\r\n=kZzX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"ea730939d7b18ab5099bc94aea1a9b15428b6937","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190712_1562911566471_0.4642138141676828","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190713":{"name":"typescript","version":"3.6.0-dev.20190713","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190713","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b7a7dbeafd4f697b07c09e3ebf20e67af0d4c211","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190713.tgz","fileCount":90,"integrity":"sha512-7d+lDlZ8ol9SD+cpPj/KxWCHUrr4zf0+oG6Gc0++U5nV7zhIHa3pWPY7NnogY+hION6tdzQFuu39VCM7qkdl+g==","signatures":[{"sig":"MEUCIQCs+tWEvdbovgEL6FZY7Ns8EpZ86fQGjgsH0yay+v9JhgIgYWKpa2a7ykjI+S2lBV9pnEBlZgxwTvI7ZlztIASEXQY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45420993,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdKXS/CRA9TVsSAnZWagAAZhwQAJ5GJBA1BY3YnPogt556\nqqPLqVaKFIJsODs/28c0S+i283iZXHDxEWK4OTsnRRuLSBV4ymWBqLTSa65G\nr1i9LfcqYl2PMxpKPIjyBYPaRX8lZo3+3hMXBpxY/QuH6lt2lDdxCiXUOetz\nS6/341WadBVdmY8ni9SJNt2Ax8hELlN0kTDAxrwhrf+A5RL67q1B7GpkZRGU\nmf64u6dNZkuhf2QxQA3lPVCq5I1p68A0jUlticqeUOaXLnR+UQov3+iwnrAo\n128+ATi4tVTZhvJ+6srvMAOtvUPpvDVpnobCEMSxR0x0YURkL/kAwCe1zP22\nYhu1NX77EjYZa2w/ZS7j77nGqafapsWPKoFlbaPnIjHL9HFpJXATCI7Ag9of\nLtg41y02nE89JNKbw7xzlRzDPlgEpzafh1lD2MAMs0Uz3jlkGUogNKFY9suT\nrzTj+AwYO+IE5nALBQ/OlGUW8PEV0kUaDjWu8VxhXnm8Imffur+8jyvxBuK4\nN0Gi5lZ6gkrXGy7yLZTMvWNhjrWA3QpKEWo20xxbbbRuDRj/rfBa/Ixdo2uU\n3NtIQovmFoZWhpzTkU1HUsvczPzu3Xm74IqiWrIVOg8IHSva/0VKnRu5h8In\naSNfy2pZoKEK3yjQomOzOcopU9ds1KrUsSYyW6J5W96EkDdo+iK8S0SVJ6mj\nt38d\r\n=wkut\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"303297aa27e1f582b1ba0a521ca14dbaeefac3c9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190713_1562997949949_0.14244020836283644","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190716":{"name":"typescript","version":"3.6.0-dev.20190716","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190716","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"56e38c6dae463cfeb910f4658357a795a5a9f539","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190716.tgz","fileCount":90,"integrity":"sha512-XDts5OCx8Yw43z9mo6YapZfD6/eUQ9wYeONR3ChiJDiFUVlr/3vGzK2DF5XTaRgY068AU+xDj+ngk95uEldhkw==","signatures":[{"sig":"MEUCIQDyUYCx+y/uA4GfHNRnhi70MWm9WeEJVv2IJqhsZ2OXrAIgc2xgDzdKaONT6EQC1cU93knynhvF38GQYMIlTC4fxzY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45440902,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLWkxCRA9TVsSAnZWagAAYT4P/1P9sVqbDOSLpcJeEU5M\nkJRNnajRnZXWH78XXxxDW5/tOMl27UjM3H3euS7XcX7Qo/DSm807as8DrhwW\nYLymThG2C0juvjC9UYOBSGIKBY4WOvYIVFbTHVn5Rp/yX2+wZyLClVGe17Qv\n8knWGOjwVUxqOOpotPl1B0Y7Ov0FV8lDmJb0QoUcpG5KM2ExYW66poHIlSm5\nSOe6ZctXf4S7XHHGV+EeYQ/5D86YKwYhy6sz11/+T+tLH2Se+ldjDFrlSXGj\n7koA/nsAf3dipZNT5AO4ZA5JfUyx1X007t0JyAZZUAAcGw5ApJT1fSInKu1L\nvULNQprn3E/KRVtuQKYVXp7aXI2qq3Eg6IcHPsqtXX633ms3ADFegRS4BLb0\nSS3XRu3WKUPl7rac/ICOIqnwoy0yL1CNR2tWDor68Xkd84t3l4m7TIQyW37t\nxePH/K6k4wPoOHt3QEfjZm1O+b5upYfvfOjVy1+4C4fzsfjWhdc0qNCYe62U\n7OLEM0EhvszwuXmgUaQ6EnwLQ6aOiBLkOk+bTX1jsBWdbH8gg5kzBYBewKlD\nxYZzA/T0NdthftFDO0EuKpNCYQD78nkZr4kr60t4X1ytdXfFKQfuYJl29/Fg\n9AZ+x06L+kgx41uSZ1FQuKsho3Vod0myaMfI4QIvnh5NUqdZMj/RigriJN0R\n9AbA\r\n=xxqJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"c7b8b2ae9b375eb17bfe326e32b0382dd5d899a7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190716_1563257135899_0.8275406769039872","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190717":{"name":"typescript","version":"3.6.0-dev.20190717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190717","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ff6c01e7eab48cba3305eea91c16ae778c217123","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190717.tgz","fileCount":90,"integrity":"sha512-mk4z1gMcaaeiZGmZ82oWn7WHKduKlmM+m7UDQC7+QiepPLA226j0hVuszHitlardF2xzh0cDqYrzDtJ3AsKIrg==","signatures":[{"sig":"MEUCIQDpANdNhCE0KxPivmmMCYnhyDIWNUWm45D5dh/ceTxnIwIgGJkO+n5FeoM4ghLL7fJGCgBV61uWanStQx9VQ2XqOvU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45451920,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLrqxCRA9TVsSAnZWagAATSUP/jKGhq3N/zxU+mQzmnBf\n7SWQRFtxD9TxRG/6X4LJTgrqIXXsSlG6A2i5KsyOrMHbxl271Mw7pYABmNQy\n2BekHxbWWCpXj4iQz3VkooriQY/PQ7lvpwmAwSm387bhcUvxh/qhHXnzEcVs\nSArbHzbfC4fHydXuphSKRUzg3lwG4OkY1p3PrsKIyuR9hRIN6909xO5RM0cc\nVCiSHyKrK6tc8yYt72cWm+xl0f83HEu9YLTKSl7r0KXFlXs3Z3cV6lgIcOWG\nGAAqH3W+CNvUewxLQ4Hqi/GnrNRfh4sn0LlTzWeir0TLx97DR/ZayA8Kwqlf\nNayPqiGq9YO8SWDtf7OUiZupHsZTAj6Jhj2DBvOgyAoUVutgUINDt4y7o21h\nECcg8JST+3Yl3VLzms4Is+l7cf+AMpACnsuFSslxsEAhwN4MhFJ+QdIxWawy\neL7FqcZC2EmnzFHrnWgRc3m49sPscvr0hVgxErowKk73AMv+IG5z36PI2PK7\nRQ/npW0ZFthKKCYIH64qqDnbf43bfmYJoRNjQX7XCcXJD8uw28IhmuZBQ837\nbkxTnSHCr7C0u54FqGEA19IyewhutZDjsZDbhk6HlnQoZFqoK0RTy5Hm/CCC\nilcNnEVYQNSjAwer6LlI2QDqxFckUahmDyIO6g8o83ff0jPG/ZcTMKtEWyyE\n4Rud\r\n=6f4H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"049618f7daf63332d7f972eb0ae4e6af3bcd55bd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190717_1563343536835_0.44637814032256373","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190718":{"name":"typescript","version":"3.6.0-dev.20190718","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190718","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c8dff0a10ad7ef1359a95babeefd966b97d9f67e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190718.tgz","fileCount":90,"integrity":"sha512-Z51E9CNJvk7h+2jpAkt88gUxaLjxbinzJKnpmY/iF2n9d3km20dcl/VV9thwuRoiCPkcDFcsE8SjU7m72WmQCw==","signatures":[{"sig":"MEQCICGGK/4glczSI6lddOKIw4zz0t/Zgq670yKdUP9rzyUMAiAEEQcAui2+kCwP/yaDyGZfB/wg6KjAp1TCQu/7Ools9A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45400209,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMAxNCRA9TVsSAnZWagAAlZ0QAJYVus4Ag6JaohVG11LL\nfuxbUKNH6PRoG5XzboSAmPQscAVnK/avjQLFoU2d3Ji/zlwHeVh/h6MN2zkQ\n4BHU1wqpVnMx8CPrMfL0WOYE9ql7eRngwFBORBY2GnO0J7JHOcjdutrH5dLI\nJnR/tprK9CmWbwrm3cM+CWKXu6UJsCM4k7dXGXd2WtwdzJcaTKBL8WN8kQuk\nt7LJePo+pdmlhAU/qOPbpfbrp2ZJtdGuaAxQihamgIqb2tAE0j3uOgAgOGz6\nfbMeLy5schHn82EFXp7ez0BZxC6UAmkGUJh/dAeBsqDT8bZdspYsFminzCNz\nROw3R2QqKiL5rlIf7rYbWVIosTAVB6sTbmlq53TDDPwCEHJmqhjt7ItVjzLd\nfzSJbhYw+pajKn9+UCZh7pAHMdO6mqZrHwYRg3Sgb2Py8QcsmW+BOhMHO26O\nsaJMSk4OpM9iajVx6NxkGpNuRWSjIt+NurhzNC/OqjqwiYiTwS63DOJgGF8A\nlqK4LGJ+nS/YsZjfdk5o61YulPjvG25duiqPpscAarDDyzBmi82H8uUfdOyd\n33PScrsVqAhIFsNzmNvRatjLzriwGV6ltfcn690QpOEPQfbibkARgODtSQst\nXTOTKDDRTSFdQk+7TFs8ZvUzkWdpQnE6T4REnBUh64atcoiOkCFq9X3Dxr9G\nmKue\r\n=6C2p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"a24e4b0d2ca34b6ad12aae9218ea4e2f9ddd32f4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190718_1563429964406_0.23766231977063956","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190719":{"name":"typescript","version":"3.6.0-dev.20190719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190719","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ac7e0a76fd8231c026149dc90f9f4099d726db9a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190719.tgz","fileCount":90,"integrity":"sha512-U4srdT3/+kCcArle7b52RFk8oAHIZQjKhffdFx4FilGqqz2ty9X9eUxhe/4kqW1zY5uUhDo81I1LAHSHmDQG8A==","signatures":[{"sig":"MEUCIQCq6YV28l2Q3KehOvI7LX9liED57TW4BRYV6ay9Y1vU2QIgQ4ltelb4xKhe4AfM/VN9plPEmrlrHC+gsJmzvrdrjb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45400406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMV3ICRA9TVsSAnZWagAA0ksQAKGKuVgxNLI/xynymnwr\nTeREeJj5MgtY0qPwVt6UjvuUIZfPUJZoTAGZPJYsAuN1BVJws+4ZSLWTmWwy\nDbEareS89aeUxAHwneKzl4/+8LMeDEZ9te09DrR1BzfyWvMieE3zYvka92bU\nTanpoX/Y26QBwlDj3E9Zr3HHfAjjajMUG8LEG0Ffm2ihHz5i0o6CUSuh1A2e\nTvD2EItdTrDy3C+mPRie4C401MKZewN3ubqyt2bANJUk+3p74dW/fyNV+iBt\nt8tMF3cxuXN31BC8FH8XYss+h+5+61KtNZ379RJSYaqFUYNTe525Wa1Llo/P\nIhfQVHcBhR7fAEv6AzbxGWukK/eqvgSBwG3FsaoTdvS1crGsjMb0KdCV133R\npMMPIuNI3PNMN5dbvyi/xHZ3ZKih2uJsDDKuBSr2o9RFNV5LrKkN/Al7hZtI\ngGmeGuYzoqtbhgtY4UCEOEk9gzHKbsv4EkHDPJqBJcOKQklAtYZ9xVcINAPw\nZdBhw/DdsTfV7ZO5rbaa0l6ZGBTOT+srkaZJy6sYhfkjZDij1smt8hZa4yYs\nWeHVxBJPMJ9wW8V1oUk6If/6vbRKpEEjCODIk7XhpFdy4yW5pMWQ5jX4jEap\nLvnh4+coY/yepmWh4JClXNEC/77yivQdooV1baj8U43TKUJfqiXBRTQ9JSLI\nElnA\r\n=Ebd9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"2aa9fb7d003535aeec4ec8aa88d9bfb5510b3cee","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190719_1563516359697_0.3831573331981144","host":"s3://npm-registry-packages"}},"3.6.0-beta":{"name":"typescript","version":"3.6.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-beta","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c4e07e7c072cbd3c15d048364fe9c8badb72db3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-beta.tgz","fileCount":90,"integrity":"sha512-EQFSWWHyth+PS6xj4x5wdl8bEHl/Lm1kJ98KnmZXiyXZGmESa6/4s0ohCNhu7eEkAOHNFlZziu/lT6wzkKnTFw==","signatures":[{"sig":"MEQCIDcNoMtpjj85cQFBlRMg5DdE67W0k7SHfZV5zKfpA78rAiAOYSmS2ve24K9aIzhGOxu0zikR4im9O7DuH+dJ7Vr2Jg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45408734,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMf0QCRA9TVsSAnZWagAAygwQAJCKCR/z12K6CTV5llFc\nXZIq1M2Im7rVgZTgtK7GOFZgq9K7avrSPpFh5B3u9hfjWSbfIRFtQVT51tWd\nhyH2Pw+WHmCoOQJkge/gzbYBiNBNB8pzhRVkWS2nw/N1iYI80cD0DvORvxaY\nghyo464CERXXhxx316F1+Uhg+w9g0qtNp26Jlsgjik6wtlRa4I2dhppmuhiL\noBSogQO0V1Hml2ma4yWzjV5qHysdgakBzXncbkjkm6nxXIcRhQTCcRDU4WsP\n4UmXKLJ6gf3uYtcfjplFf5vhPxvNVD10zSF2oi7Wz356KJQzqJNWll/iehTL\nMm566aSVWcwLc4+ugmiiUEHfi/N8vi7Z6vP8NDaf0gHfpPl1ku/vcnMI62Kc\nrvjW1bWkzIx02TjjzgI0j0WwOnpr+VEztw7+/lIYF08/rTgguenSSOFpza5b\nbU4Uv4nIrdxlB8IqdtzDClZVOmcQR+EhhZaxv0Bz3HUZDCc6Nh2Boh05JCrR\nRS3znDmyDsFNYhDmcyrh5ejFgHOTtuQwf1Ul+K9GgU+iRE1RJ71me1aFwK7i\n8Ce1Ys3vNz7wkX+yMfIc7xu20l/23ZBZuha/Q+cEJM9+EnsTOQovToHLUAoJ\nlL+Jnd9agQuVQZT8AbWs2lgzwe5lc2RPVl1deLmxLqENA747WgSxrMbkJkkZ\npshM\r\n=zmQK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"^8.10.51","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-beta_1563557134814_0.8959998079976661","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190720":{"name":"typescript","version":"3.6.0-dev.20190720","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190720","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4e923216f285b923a93acec9489109931a0f6805","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190720.tgz","fileCount":90,"integrity":"sha512-TRcmAodvIOzyFE+pSKOMtaGc/pUOcTMd1zJ2SFViEb/cL53fs+IQlA2DKSNrNnt7DVGySlAIR+Xfeg1NlSD/6Q==","signatures":[{"sig":"MEUCIQDVcLbiRdKUP0BdMIFrMF01N6hcBGYElMg5NEpdOJeO7AIgOLKxeD94APr1G6HPwiGqP4xb3JJHpi9L+shihyeJJKc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45400280,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdMq9OCRA9TVsSAnZWagAATwwP/jjZo0wVuU3iGpmz2pf4\nAvwV2453F7FH+2sLVZ9XUjtpMdDAo0m68g9+9rRLXmEAI/n1yoZrUQaxqvHF\n1HPH3VGoO0gTLSHtS5sIkdtSAkz+TBWInQBq1dtLjJfnqkboWCeeyLd8W7Xg\nH3PSIsFu+EHLixce0xO/pOmjQTM/6/WdjNIEZcCGJkSZFfnVO0zYkICh1om5\nMqHcucuuBIYZg+52Xv5KtJoLU9qTA6ao77gtsu9InI8uU8Gb9tYkAlk8hHrN\njjyqS1al1hU5rHTuds51dbMhKLVQs3T6TjAjBo/8fgVjDL2YLa44swGHb0bK\ni07j8MtOB5oXnGE+JK4pTbwv7KysXwXe9wAMXmc7GjQl43mVlouhtAlVZlOA\njPlr/0u8J1XB+6ZHGEmtwroqXWx+74p6Nm0mUBhAzTFoa3fWtISs/NiuBtpb\n7ZXPqajo+hLHXWbNPe3DucU/r8WN/0pVgmpfNzrt0UmWqBekeLXDSlm5Kllt\nDWegm1S1RLlzTCph/kFL+oRTJdUOoMd//6WiMYxFe4kiGEoxykEzvLNDzLNu\nCrUeBxxwe/XIvmzcNZnzzLHlE0uDA90MUZs7xdKPo0lz+jEbUXmFlXAMFe+w\n+dZCI2k937tMg5If+JSckKymrRshtiaToc63NYh3+9eyFyOCUVSLttbX1mHb\nXdVy\r\n=UDTQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"70b7bd5a1b8c3bc1ba7c644b37412368607706e6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190720_1563602765702_0.43144933109284866","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190723":{"name":"typescript","version":"3.6.0-dev.20190723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190723","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eef6f788a5a136b896c8da2b46647313d43cd257","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190723.tgz","fileCount":90,"integrity":"sha512-/WKAxICH9EQkkcG5cf3x0sdFGjgwJao6sTrvHE4dzwOhTSjM63Pwy/Vn+he2Lhd+0upYvVK4Ksjib3NUy+Xu8g==","signatures":[{"sig":"MEUCIG6phU3GLsaepX6wGquZ0YP6gU2kH1KObNZDLa0hO0bSAiEAndgGyvbqIbbJgT84nDo/odSC/UJQ2+fBZttkqVMPk78=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45408299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNqOiCRA9TVsSAnZWagAAJC0QAJDv8HP8t6RU8lCz6Ywv\nhzYDtloFrln1JlN+Cuc7pceQkBBOr24KXZ73nzWdBKEFjEu+h3RYe+GA3/XG\nvoRFf+vQshV8JZmTLJvk80WtM0HRJKA6h6F42FoEvOLmOXtbzMvFmL/WkfMB\nrpXg7nC7+5A+ZzipQFsmqGevf62R8m+cqp7YHo0Tn2o4eeZ+fsLm+yLHx+LC\nuZTv6OI6Uezwyms68GIH7Vo8g3yiU93YKbrSVcCemAYBiy0h/jIIk9WRQW+x\nBfnDi9fm00qE+krUjiLLn6H4mvF32M0hcxw2w7ADgIlw1by4fcCy9ZA8sjqx\nbEtKGvrEcdQVn8jnK5lNjW1gSXOLMsbQlLKb1ZF1ulYUPub9iup/Sl0fAwq8\nDpsAqE1UI9OStTTy0YXudw7DiX/qVF5/tadUnquTO04gkjnWmpRCkrUe3eFZ\nMQmjDO2gRq3uPSmTVQewXvVwjBHKS5XQ6YA8j2fRIp28vnPmFq4g6dwMyoJA\nQHQR4DpZD0yJx5mEXMjzVAvhKcrreSB5/vI+hn6jmT6hqWVkd44wAVpZhU0I\n9cQYx8Elld8P32knjdZS+n1SHfra+WmMt3Cugxo5zjuuYfRDaOdEceBIH1o1\ngUoBLAz/C5ioRSZXqC09LkLLEj19hPP9MH0bATHgTQ0obdyppKj4PHDw9tYc\nB57b\r\n=l2Tc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"d982014d733445f478b5cad8a938d2d2a56f1080","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190723_1563861921193_0.23270355901025885","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190724":{"name":"typescript","version":"3.6.0-dev.20190724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190724","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5c8f6506ba82e8652b6101da365e70acc5549103","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190724.tgz","fileCount":90,"integrity":"sha512-BEgqUb5ac7mSULaI1qidYllZibJT3XNlbS6k6TO9heAUR6wn8wcrUOwwm3lfoKx08xpwKfGtsweMh4kDLAY0tw==","signatures":[{"sig":"MEQCID3DfVCmXsyW/H4cvArYBE/EohBdOa0IaCary+VMWp52AiApQEdiMtW3x6NW5p6S18EXIsSzKX/n2bgddUxzZsCcPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45430650,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdN/U9CRA9TVsSAnZWagAA+awP/R7ufnuY0VlscYVj6HHN\n6sTV+fiXZHElrEkcabK/DBv/4f6hhkeihT8SjE3nIjH5HA6R3Mco+L3Y4S2n\nt8hZIQqeZP3UaRvpcktVoA1ezOxllRcWYBJr4ifi/3z4z7clz4jV6Oyka15p\n+CWGtFJxZwaKTag8LiAh72YEJZFN8rXW+47LyEjVOoN/NDKnlmC/5qwgyV2R\nxlmSUmt2+i25G1KyHVyAmRqTpZN+F2w3QtLMjLZoMzCklfjXj6hlaJ3Rn04E\nSG3Su9mcmQ0KFG49EOHV4C3m1U526V+NgWzP+AMT85GrTHCffvJ72X8rDlhm\nLcE/eHFxOlaoc+UAWI8mQgcTQcbv8a8VRrEc0XJbTTgacaH1Jz222TZTX7Mw\nImqj/cDOo9/PkdLpzTnSnyI8sLzEjBdjg2TDGIAp+r40YrrYO4Nvc+Z5E7/a\nutzRG3oCs43kkKDJwKAMvI2XPGVZhkW5qljWwaqSb8rTfJdPz9zbmP+y0VqN\nZ1z4qemCr6GKmWt7oeXicTkIubNzwTadmpoeCE4mcsmCcKNp4+uiHE8z3L/r\nxs+zxIuMwvRMEjeB4TxZ8YrlLEZOemhzgIAbZIRhZjNrNEEQ9ooRftaLc1/d\nY3rsYVpvUqhuyJIQsg3rX6SVtUdg817lK+BIr2DAIqUoxvDPois5uAz4jmfB\nh1wT\r\n=AT/O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"34dd4b8da52b91e178b30d8e4f097f914b9ff472","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190724_1563948348343_0.9949126359445093","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190725":{"name":"typescript","version":"3.6.0-dev.20190725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190725","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2c1d6802b85dd02ce9d0ef004f04ab592e6a53f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190725.tgz","fileCount":90,"integrity":"sha512-EvtNnCYIClnT5k2IGy5IBMKOOHrFQ6mjL3I+VL4Uo9KxLqodjiIlcx8P9bXWPf3ys1W7R5nrSrIAKQcj7/OUhQ==","signatures":[{"sig":"MEUCIF2COmvRWl4liUUP61o2L9837SSX6x9dcdmVMN6bDlAZAiEAyikRTZ9M+8jFqOw2/IaQDSTJDzPMNmXiLfP2O+LikcQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45431526,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOUbFCRA9TVsSAnZWagAAtVIQAJHTBbDDYiTqODVXiMA/\n/qgTnKiqxOJvlx4KU7ARVoh6XzAWY3T3wTaqnY3exH0gqek1GAKPEULHT8aK\nes7w7dIlmZiZxUOmmRbC13brtdp8EWbcRLwpgQOnRoH2UwFy1Vis5YpSuAgY\nJ9ByPhXvD175gxP1u3amq+2cbfRd0sFso3Nr6/EMrE3c9q/ds5N/FifJ/uDJ\n4evVAIGmY4BUF97eTrcAs4On5pdwpMIYlvncEK3dFJrRvh4cGjQJbTOK2rTs\n5I3Zz8nRLcu2gNGzYtb1Ul5B4C6r/IRjO3LFB0o1iWwTSGPz8ZPJUq70HqVQ\nEX6MPtfj7R78KF57C438a04aTeC+wjCN/Z0h6DcfUOlOGucC9FHzC3M1TG7i\nTRVtfWCVOsgL7wm/s9aBQY0Df42ItYWBQy/AxTjx2krjwqIaL5pZnqaDodAo\nbva8t6C1ba/g5LC/ckTmAMXaSwbh2A0skQgHleKKiHmI7w3CPZvsVm9aSDTS\n5iKvPNxS0KJz+IHoRmgfLAP/4hCWcSpGLex+z6jDz3+miS+RCM9bWDSQP+Ny\nelWUsuzZXCppr0LKXLb9PKssYbU3v3W0ZbB0HFFIEkVkpdVHj7ofzrW4Nfeh\nh3MlV9aadE7ZgqDp1iSW/s0I12aJSUw2TA19zquZSlDN+t4cLk0JvbAT2tiE\nv2Ut\r\n=Ec6M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e8966ce03389f8630898c84dd3d3f2ec50aafa1c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190725_1564034756083_0.14393127995237243","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190726":{"name":"typescript","version":"3.6.0-dev.20190726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190726","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4168df72f455fb63ac59e3212ffe087a566f31f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190726.tgz","fileCount":90,"integrity":"sha512-+8UExinHNFn7VWt1BLAOjtTbB0e3AY1Z+9Vujm2Rpiwi/jib2NlyQ/iKLNck1JXtZNgZ+VPo2g8LrFcXv9ulDw==","signatures":[{"sig":"MEQCIDdUheab8LyzCBu2GIfi/0F1GKolkibBEBcLoTzNea8BAiAuJwod6+hHaVwk6C3BPmOCesYcaBQItys/nM8i1rUbVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45434750,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOphECRA9TVsSAnZWagAAwhQP/0s1221tvLRAReTCj9qP\nvk9WVBrmHBGZeVQoUa0uYdPrIhIlkLJ/2Wmwh6N6Jw0LkUnDyh+Cof7VzQkp\nTgs7HayPchuCgSEq8Cvja45O+bvqIQiuPZuQsnCp3wr+aB7pOE/C5sX1z4dj\n/cfHgB78C7GfUISgKoduLrG3LPEYqoqpaRkmtRtb+ICpshrk8iAytO9Tc98S\nFeuDpbSFubWAFqeJIcnZuKob8uJCm/hbo/Yic8TDnmyZZVGZI7I4cJKOyno2\nGI7OkUjdLuFHTdgxl8KpAmj2vF3xbJy4MRCypcjUm/e20gnci9SnZMKsz8d2\nW1fJS3CKrnpkTzfFxXSqVxFiDjc6r1/3hChKgS4bYBLxuxAdlw7OfTlePBIg\nj6KZh5rwNURwBas9WPS0ZRJ4t1HFxmASv+3SLkRB8XGeYf0WcpoNGFePDUmK\nwJEalVN6WgP84AToZfhjDhZbaFgBdd+SSQrIFBan1edsOpKrWzYu+S5kcEfB\nkuo6WbHz/Dsym4x7OiHHhf7QN5LHSkzh5k/FD3i5ERcTiF9QtAZb4f6TWecP\nXs9gJE4I1iweEOMlkx/zr7l+FMf07LqcLo/OSyaZBH863tkxZSdaKzaPcgq7\nl4Vw1Fz76h/4MxnsA215iRpI1rMVelJ1+j0f8Yur5zmff8HCZvkgtESQuw3Z\nmgli\r\n=FZr8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"599e36a0685fbeebddc00e8cb36b76fb52b9f0c8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190726_1564121154112_0.37528794035460433","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190727":{"name":"typescript","version":"3.6.0-dev.20190727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190727","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b8a8166a6b620d283856128d638e144f34156df9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190727.tgz","fileCount":90,"integrity":"sha512-o8RZK9ljukC7TJdKNGp9E2YnvOUDidONan6UvWQcdDwEAdqi0UKhmN1M87gqb5N0Ibk1ZYuJ8PsiiNQoXYha6g==","signatures":[{"sig":"MEQCIBnNiAp2FMhZ8qzLufM6+VVAGdXywBOqUzD4MQ2bt2VHAiB/bhKpmqSOFciHRmGJT6i7oaqedcIOHot6Ep5gzmpbqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45433835,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdO+niCRA9TVsSAnZWagAAXvgQAJrfrMDO/sOialdGAr/M\nt5V+NfMwlvZvG3bqNPTfoIQRInGMotUzcbBI7M8OtiIHsV03PjzC6vg3NNaX\n0BGsl6KH9YgicCEDU58o2gndmv698DQksgYfoI9o0fUP5OVnlGh9urjwQqxr\n++tj29fjpBFsAccv1s+o2Co/E4S865bh4N9Z4DrkqtL7XSBsjwnzrbq/sc2j\nfAzM7g8Xcv43SHELgh9LV29kPoAx4SL05Xa16igk4a8uy5tV1urVHM951OXN\nB+JmsVjUxKEjRFu40lwl8+tKX5dq7bcVG2iyyL00UCecB+TAvWf/SDeK7RnQ\ncCxMHHrEC2ENCOjFkwOz130pAv/irJD8hubT5Hj7c2sbqIPjYb+uydEuhUN8\n1oIrcfNan2iJTen2IqLbfXJ8lhQAQ2QMDxMq7U9l4xJJa7njLBmBMcWWdlRK\nfBq1V1ZFzQFaduXQQ8H2Br6k0V3dgJsVEVhJd4vErT17wSVu6vqQevI2Wptv\nGKMMXJL/05ZkqG0xESDEF+ChPCXAQyGPzXdZb+XcbOnmLrP8tjMZbA0aGBo1\n3j9pUOSQ4HhHhPKCtUVkQGljNa+/h5S4FAUgT2yeL39YqgUNFRgXJszLub8p\n3V4FUTJYxPXCGlnGBGG6jNAhazB+HGNluBm94xnqW6xT4VmdLdHZzDDW0HTG\naxS9\r\n=Me7F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3d09010dc8916446f3e7a00df7845bc982ae721f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190727_1564207585549_0.7896242796926147","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190730":{"name":"typescript","version":"3.6.0-dev.20190730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190730","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3ead7fa04af5f4891afa4cda061dd7f53d18831e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190730.tgz","fileCount":90,"integrity":"sha512-2IVgtyRdheNBJCjhzyxeBJ/HFARYcdBju1Ov1b9oA+PK/+TRrRwTWFU8EnTjdYpo1qd6FZuObJ5hHw2PQl5HqA==","signatures":[{"sig":"MEUCIBvicYBpc0Dn95iLoxqBQkxFnRwjRe7XbcqFsg9bnMgMAiEAswK5JEgZP1bcf9HG8NcP+pyUjR+b+tS+wHoEY7SL7hs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45472369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdP+BWCRA9TVsSAnZWagAA9AoP/1oOFI9Do9MxwFLxNaVO\ndnIbiPZR57h0MpR1P6K2TyPKEVTpL3Os+opHyAHpXCHJH46dkhGgYl2o5q6R\nbMHSIPT9XUspCjdTHRu5fEQMiIX6PiOjhms7qKsWsU8+FAXVLmUX8ATyaxAc\nhea/OBdYxfExOrHTCOCdBVSoFPyIClaE2LFcYskxw2nVi4UM3cuDtllt+SR+\nC0RIf/DToyU4h2JdiC6fj8BRtnGg7+NcxOi0mN7EiEm6Ulq22XiZDELsGquQ\nYQD2V39mhZKUIN6gMWmoZdrxgCH/55CYNKJT8hRa2hVwYBgCGinJ7PodJ4T9\npy0h4paBanH7TC9w5RS8ZLgTy11wsj2AiF3o4etxYe8rllZzqUA4I9Es6wOf\nf8aOhAlZMcCbPNtEDiJtvdptnklGyJp+Y3CWWgNsAz4N/fGCqzQ+CdtkNQni\nsbgeR9e1QZbeVimZQN+0CfnmphBXVQ3I5Vncr5VL/NAsn4snjidcok+K1eO6\nmB6KysdXMDIXMGX+5PF9SrI0lRl0cxLZZjMwBK6H6DelOvGeStLAqR4fUvgq\ne/fcs1SyHRndzZsl9JlL4P0oPJ1tgkqeJ3jwqtuSDBEmq8adGVEf0jwfE2p5\nWXzQk12EGN64RAmgEyvneVlN4TW+ISehm2DvV3TzWEuLLQqr9UwcJCS//hMl\nynBk\r\n=KYEx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"dbe9e3d237ee82435ef3948b3c479d548ab66b3d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190730_1564467285852_0.7946521978090708","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190801":{"name":"typescript","version":"3.6.0-dev.20190801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190801","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9294ed47f531a0b7ce5861ed7b809a68e9009840","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190801.tgz","fileCount":90,"integrity":"sha512-R5ptH0HUv2foBKWBn1TXlRHIlr867g/D8RE9TYtyNNge/xCh5A0AhOmrJTFyXS7/QHbnWuzuK2J1mx8dph3xlA==","signatures":[{"sig":"MEUCIQDhEvb4OQb/BVztgEHfQQkDT+++mv4uR5i58PvJDO/ttgIgOC3TLOw2P/c9wyQD8TVwEZLqRA5Rnx0Vr4HpbCE33xM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45477724,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQoOLCRA9TVsSAnZWagAA/vAP/R+YLRMQkdA+ESybif6Q\nGlcY7FvBafMZO+n/YyRNQJ0WGuozz3jR5IdtkJ/yhYVoecD9BBrv1/x0DtYB\nuzL6RdwpQyJblPTo1U55puRV/mzUmr2gQ9KC5aWWRHmYbn7KWOTAU0TvaJjn\nSKSD/A+w4KMIlKNUSbIcOsCkxQ8DCjYHZ6hutacOJ0NJCQ2CQMKoVOcU3XIo\nRHHIcdTYY8f0jRIdNmya2frHtrQTSw6bVT0JeBath0nY/QfHZTAfKFTgV/j6\nP0UMlloE8gZizYhQB0ceErc5lwZ41llhE1iTP3rWRS71NJ5LI/tnvP/7hQPM\nDt/YxmphAYrn7NwGtewzmQVpFqyU39ulk/KWm3qlVNOtJGvB348s6w/U9Q16\nAP0xXbqGXyBRdXwOe1ihfrGSXXCnZGjjSsAh2wJTPynfsEF7hXQx1SU1yf+O\nZ7Q8q7Jvm2VdrKAmP2s9lPutQGS+5cSUKa9XPLzw87FdoyiGX8Wy0xlbo955\nN55yo58Mae/ryWkTah7FTmRgyKQRu5jb8XX3KOp0Xo46vL9NIPHtv2gIodum\nayEZvEcLDpd6GDyZgGOdMgTyn8v6ct/uebEGXi4Un1VglDfb7bAqKPwTfZ4q\nu1c0C7gn3PO84HpvvPaYGaS8NqIVYX+lKKg8HO5wB+qZQ4L2QM2QRmflz24f\ndqWS\r\n=8LFr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3f75d2c8790b9e2d5d99b9d2b830a4e6a624151a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.9.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190801_1564640137787_0.40899088303578846","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190802":{"name":"typescript","version":"3.6.0-dev.20190802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190802","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6f3690d93487904ad6314fc565fd9dcce5991c68","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190802.tgz","fileCount":90,"integrity":"sha512-KalyYi3F+YDKt1SamGNuXKmH6I9J5T6iMbl4udo4eB1VArLnDj37DowBXqubgNfluIYIdYvIXDlAcVmuXsmb8g==","signatures":[{"sig":"MEYCIQDJKKBMLu/XlnzE8qkZe3T8AHQuqjl3obh/T+VLYGaGbAIhAM2xNeQwMOZElVU2U+ZqxBwQfxpYQPY6ZSJTm/tYrmT5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45488146,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQ9TmCRA9TVsSAnZWagAAfEoP/RKg+D0iQpF3cW6eSJkA\nOPWZ5QIxBr4xWKQlRV95ohMhPpUxRqUiv6uLx80rL+q/cuH2bmN8ublQSu+o\nWrwzg7QIkMalxAvV++w+8g41iCoJjzC5hy2x3mPqBbKKdGUdOr90oygs6MXI\nUpGAq7/IBpc+TlSXkdKFVBN7QtiNpRhaXf9rrc4o9VLSCD3n/1XP5iLS9dVs\nu9+vaeV0YiizJOzw79M5ChvOLMEfRpcIehy+xuJerDtcodoJsHyla8c4QdTI\ntECSn7/DCAt846b1Gw+I6yzjGhZo2luzJY/jQXNygUsguB4396kj/4VU1qHV\ngExu/GQdEg66mlpcBau4H8gVD76jKw+egl9ZhqcW6VaEzOqLW/+kZiVN9VrB\nxidj5QHtFq1VGkqfIA/DTjVhmivJvEEm/ZsO2SW2bLWUUtCSZA6PIezJ5mr7\nMUjzCGU78pO+kH1cUVMVvclBdFf9AzZU5KYpCrK4S8M6Tor4CV0kz3KyJc8J\nREOF6AsoLgnpDI9xPnSNIN7bQir7SdK0MV1UNqAKYC3uXARDzx4twQ/p+GU/\nOEFbEFetvGfr9KaMTCO2Z9MU9WTSlUP34TVzkIiFbA54BehqM+JtnMtWOcJf\nbfaaBgPEUWmSNo4qGdEAa+8Fn6UZrJOxfIdBbc0O0BsFlsX8yrl8BYUczC1Q\ntVmX\r\n=87BW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"9d404b49ff40993fbe1d112345862b13f6a73bab","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190802_1564726500711_0.41635727321682947","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190803":{"name":"typescript","version":"3.6.0-dev.20190803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190803","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f428649ed50cc2d3c8a180acc8afb27881ecd268","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190803.tgz","fileCount":90,"integrity":"sha512-Ccazfeg3XVpEajGEdnj1D45PxueYLJfxbwJkhk0xizKcAiqhTS2Yfi/gTqJUfAtahgCR0kemLERPRvMoUasELA==","signatures":[{"sig":"MEYCIQDDZKAdXMGeVsp8+ukabYrTvp3ATRLY+UCqbDh/Ejq7hwIhAL5E7gu5vuIHtSHmYXqMnN3HtVEiBtE54KOibmqV7lzH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45648041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdRSaPCRA9TVsSAnZWagAAvhUQAKKBz0Q/5SF7aoCLqR/Z\nSI7xLLFcJVcvRWw+cdDoWggDoOMmOfExlD3uBgGccYH66fBETbSXgztq4e9o\nSv0XF57sbookBoqG342ZD2SLvMKVUiXwxHyqfx70u9gnj1BRDfREJek8Fjdw\nS0/f8UyFU+JmyoFS8YMv8Q164N2zH1+SqpTsMLUmPGfJDaLo0Sb7guGEtXoW\nMWjPSRKBfuHCLd6aao3hrnMBwrtw43CpbnpcQDpsMBMzyJTMlTRNhLAKidZR\nRyJAJG7tMJ3Xj98WIfhAMsQYiHqW+HaSuu82bEsNBvZiOa4DLXMXce3ubAM7\nv/G2Bx8C1N2V/79Wg9teXBEePVnIiHmoCBlxyycbq9iJ3VumXWRf+//P4OXR\nUmNtbzgYk5b1ntVLG6RHjxffdprGMLhxreTalVBTCHhpkuHNdy0K0T12reqh\n09W0x3nKsJfjsoOkelIYmDdAGW7ULQD/PYhMgduYrkkXhXFmLQ8t7wICEhE1\ndtEk7zq4AZZ5nxF/VwtXtWkYvab+MoYgrllrqHRjsxwZMnwdPxN1BSnsMAHo\njLNbA6h5q8pMoUwQD7nw1VHtFBP3Vipsf+HpUqNiZOqlYqgAUNpgrL3mIrmg\nJc8VZe1UXYlsWcE0y8wYTjt/X19eePawz8hSiNWfWuM7ZwjzL+zpHw+RUI8w\noifq\r\n=Ylrp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"e82d0af554d96738b2e8c7f9027e53ac8bc31007","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190803_1564812942653_0.6840662510880908","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190804":{"name":"typescript","version":"3.6.0-dev.20190804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190804","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ea2a0bc0f75bdcc49aec0924036afb77e99e088d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190804.tgz","fileCount":90,"integrity":"sha512-jQUfB+PAuqi3op8DLNW48lhN9zetT+aHyXFWH/2OjIYQRmFw4+8hhoqsGds7bVXK02PMoBbwsTvG5dVKaqTz+Q==","signatures":[{"sig":"MEUCIF7VjVd1X9nryAbp+RE+FyFRz89Dv1Yk9VPkgXBeJej/AiEA83N6jXifCj7HR37crbBBbE0ZuDR5vlK6teyEx0X0bK0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45644758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdRne6CRA9TVsSAnZWagAAhkAQAIYwP8T52JnIfO0uN/LT\noqr6AeYi6OFGxXv7BOULa8clp7NiLVZPshzWErOee6njc0mKbsoegUpybK7D\nDTbmlcO9k64437eWEfkGM//1fzLAG7qJoqaz7p0dE6GvvT9oIfay+Fe3TnPH\nAyX6QpvoB8P7SF7h+tBbSXr1Jew8c+892TW/lgrjyZohLoPW3I5wHBvKGNM5\ngaL742HDqq59N0YWoUkd/DThllyu2gTIsWyuj1kc2VBGFvjn5EbL6HhOK3/r\niXPNDiNPbqvTs3kh8k3fKzdfkppnmjC9YbkfRDFJTeCA2jVydHguojQjACWv\n5gYJOclbErz1U7NBNlFFiF0oNyqbLbvPqA/0U5EqB2IMeNmP5yeFHbC229+M\nHj0e5lrNITwhCX0P96uOugwzeIwqD4SCyoqQZ2w4gWePbIg0muOFK5t+aOZD\nXBzpTBSnqMyPUgDZjvfvsTuNLJkc0mTlPUQl4zJgB0iLDufjk42QFgOvC6+O\nIsr6UaKwn5mSMEi7j+LTtrX8LJz/DR/UkVnHp13XKDwp3dmWk7CcyCjnsNC5\ncjEprxVBU+8+yw2KyslvJ0z3IFKwkL4uixN/HW335iqh+6QGCtUhyNAwbi1E\np9cVt8zTnVbySn7syapzoLc8143Ee4cbo2EUgA2uom/mb2FmOg1exNSbxrL7\n6Qqu\r\n=+ciN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"3c690f1264c15eacb318f44e801707d274f7408b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190804_1564899256963_0.8266374086246162","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190806":{"name":"typescript","version":"3.6.0-dev.20190806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190806","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0cdb6cd16105e0bfe8e5b0df0144eeadc1c8e4d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190806.tgz","fileCount":90,"integrity":"sha512-Itvi2Y6mpsbYkZScNf7fjjqr2VlxMDUC25tZGlkSre7dxN2Y6EkEAtlolt2lNTL12VxCp51e8UYmQUEcRNXBwA==","signatures":[{"sig":"MEUCIBxzLuu9zjuqNv0BHtFwvwVFMW4IoU4X5LOuzI24ISVLAiEA+4rBqp1G+Z0vJ3IWEuogdoc2Tm4zT21LRHvFYDgPpfc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45666793,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSRrUCRA9TVsSAnZWagAA2CQP/RPB7MU9Ay2BPF4bJMsY\nQh6zaKS401Mdv1mvyPGfxXplzC0IA7aLhN0lEAzbPZz0ht3ol5YWI9ou/XLt\nj/bGOJE7yiha4M2+Lw8LM+FGYXPKv+XEuhBllqQYqQglHBoUAowj5HtE/FCd\n6pSHc7T47s1kx5AtW3TA3FMbv4Pm3b+XZvTNF6CGJ0yd0gaqdrCYfqOgOcQt\n4D8KWMhdh1U31XpZ1aHhtaypi9WdssC8RoNk+scX+ElMqNtChBFn1EOt3P/P\n0VtJehT9PksYEHT4dlrbfyTW8w5CIPDUjG7mD9NFwNb0sbiWcqBACp4X407O\niJl4xAAN19UdYptdD5SuiRRpvAlpXPotFhFQY34pcd9xsuRaN/0s52jb0F+l\nVWWSoFFuC2ZusMJW3fKLKiDAF7sj4pJEtlnIdVDPJLIgcKDgknd0ACUEDLok\ntRhkfteEQUbK9TWQAkIxVbTD+9a02tYDDQc+Ymr/OYMDZfuoF0RH8QPNUrvp\nLIIU0nQJkJwsacUQitN189K5Hv35oq9koSonsFNV0nWyfcXVMnxN3A0uGOZ4\ndodRWYlDdXMrnFYmYdaIgxiTVmW4GwKJvhP8Top6XNpyH6bvs4yRqmSCvWsq\n1Eqq1lIcG5mWp+9fto0kJO6xaqNWr/oOTMddkzLZjlHOCoog57KkaNehmeoE\nRB3N\r\n=T8FN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"gitHead":"624d1cad935329b83ce9d2ce8bafda19ea900d22","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190806_1565072083372_0.923951550811964","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190807":{"name":"typescript","version":"3.6.0-dev.20190807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190807","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0b93ffd13c19e151245a45bbe612ed8b2ce1a4be","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190807.tgz","fileCount":90,"integrity":"sha512-19QKzAttHDNXJgHr+OXRx372BjQUpoG9Q0xaX5YGKan/5jHB3zmaNbCnPoukHksQYYpelicGqfhRf2O5hkZ3BQ==","signatures":[{"sig":"MEYCIQDOzY8+lJZINMCr+8DU9QmE4rhstTSmfB+bRwWAHsUZogIhAIV6JBA6hqsC9sdkWk5vdPe5Y5c+M7HWHziEWDUwgxa/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45713434,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdSmxcCRA9TVsSAnZWagAA8AQQAILPvKso6B5kbEeB/z0f\nToFhDawBIZ+4eW3mPGMyDjglY0cxbNp6m2+y9IRt157J9AP2r0VcQlVPQzes\npa+xO0Y7Nk6HJRMimqX1AsQRy6c8IxwczECpYOrDhI8g0fAdSlAKJkxIty8X\n6uFoexjDyzJxZskqt/Y1vRwQzmfZ+Fme3zjhsUAUMfRhzECkyi4v4EPhNNZD\nk3fWTgJVbaBRGVtRJ7R5vrq1w8pK8apUEDSbPd8/4dDnDxCYplqhVvCipRq+\nvvdNWLnWHHv336np6btJh/CS047SQTzNlo+QwE/NQ3dCYVYt1GmjcgBgygKU\nS/RdCn/flP99/+GdxQvusIukkuPbJNLoDvsN5k9XKcg1Fhw3dLdc0j1UteMK\naVOx0D5nRhMF4szXDRgg7rnFu824W0VdlqQqHBTOFfrks4Ted3N+QE/9IwgK\nIE3hlGZQFfaSb7w0J7TB7OXUgqx84LWRLQdJCTdW23vr1QWHnmL9MyIeERPg\ndIXgNAXwUV5JEKSJekHR9do4fBQO0FHOH/RirOV58d4bRyPjpsPg3iICMc5D\npuqZyx3QaiJiWrSh87nZKYRqCaGXc9uHsf4nsNDLBxzjExhqL3PALSieTXme\nyj3HfUXUmz55jJGa90LxIiv4ENTCl9et+dWRN+I7GxEW1ePnIPfpFbkiviXd\naW01\r\n=ndog\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"abd127f3089a6bc689680891de5aa113e1afc04a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190807_1565158491381_0.7037741613977282","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190808":{"name":"typescript","version":"3.6.0-dev.20190808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190808","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ff398d801525261ae183f37775dfa8c1d9753897","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190808.tgz","fileCount":90,"integrity":"sha512-br4CI7h5ye2AIq/Wiml/U68Zku4JPLq7Xha++fT7b49e0XmEFUi+1SSuAZeYlLv6gSQgjYXdb38aE9ixTCnuhg==","signatures":[{"sig":"MEYCIQCi/6prGiKyp+FrIWZOfT5RTmJ0V8eYGOYSg31SC288jgIhAIpeOYbrvuawGmu3XexTiwnRVWxN01fiib9/WqA9guZ/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45715004,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdS73cCRA9TVsSAnZWagAAh+cP/j6USa8242aYNHk3e3nS\npLQZgFXNxGnX01jVBx59gT8JUkPM/S62HxCcaDc9P7UfuwLNHjckve9CiMXq\nQxivKLdJAc7lVMRLzyqzfrQJe3lStzwajvnZNVyof+d5NFGOyaBqAArsFV7a\n4pUkfOXxGRZbBTwbHHMd8d/Zycpvct4tRCH4aV+UrKP6h0ACe0JOXIQOJ5ns\nT/yTg2oOOz5VPCUTadjFaAObPK3Oa9gfyQzbuJeYl9trNQeAGFNbljcOrPeC\nI2y/oVdfH5iHGZadSx+Uv9RtYo9ahkdylIMm1J4Q5H+2NTEMSDJ0XUxpaARo\nwwqn2m++eCQhFPhRAX5d+JyPUa+q/thqtOPAydWHEa6FfiIV+HTkJ5nK6amz\nM4ppvhbe+1EYjxCaiO2hBOJdGTlPVt34pfJhhgHO5WLxJYb+s78T3T7MDbzW\njYMK6MtrICNXZzzEehsXfkO82UkK85WKORQH9FdIU3vLSZGmeY9zA8u3tQwM\nPCSyI7n72VnOH2KgAUO15vLzX7W/aQ/VmIcGLjmIopgRMr2MxhBB9NkkHcAy\nWWe8tJtStGTpFvIaRXDtknqio/qiCQ5QaKk7TbVmt2ngDHtwQ4DyAIydb5QN\nItOQH+uLJI8YgNXXwnRW6z1s83IGX6/WlCIFVPZ9JwX+ueMP61HNuifz3J33\n9EG2\r\n=O+pP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"984956afec35a0b1b4613de1b13dad99d25d0deb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190808_1565244890958_0.6052379502142342","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190809":{"name":"typescript","version":"3.6.0-dev.20190809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190809","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"655f6990e682c3efb9268c2ebd4b42cfbf5cd486","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190809.tgz","fileCount":90,"integrity":"sha512-cESW57Zs7B6EJspZ1jBt1yYxSY7wcCGPbaWd2KgtOYjwC+IUgow1IRCl2QrfIYy6+JUfTAkBxUh5bc4nF3D9XA==","signatures":[{"sig":"MEYCIQC+ZAupOjXLppESZRSEnrtQvNZv1jQ4nJVTx0laurlyHgIhAMIuX4S+lQxGcp48HPou6gu/Of0b8QLbAYW77lDpOMIO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45718385,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTQ9GCRA9TVsSAnZWagAAJ0cQAIPVfPcLV5spwCSnpgKI\n3FK2a8iQl04j3NZp4S6JSQqZJB1bbROFEQLoPG5IxvEX/GO4dAGQrZ9m9VKO\nYne4eeAXmVTLRTZhfpAxPiApEf1f0oGZ8GNuwO66U7agyLJOcTP/4ADxD7zm\nTxmNLb7GxE3V4MDcaSJWUzi4M0fyqWsz9v7Yo7d1KWQvJzXEEThP3AGwwwAC\nOzWAN+SpbTrEmHmwDnjzPTuCdx3JHiTlTqiL+h3V6ypd3BRUQ0VHN5Tsh9Kh\nJXvfHDGB3QW/wugA6u5n3h19NZ2kXWTcyTtv8NX30iwjPAY1XSZ46IaMsok+\nKrYpXr9Nftq6/wHoR/QWTFfFUe0G4OCiQ5ZwWX6MVJdN0dx3/WOXeXUkxmXH\n7FilfbhDVmwItOPow1Wcesbz0RV59BzvET+bcJqfaAuXxwEbp/Lna6ES5yN2\n5Msj+DZyfGrSKuxjKLAhM/jT7GJEAkJkG1kGIvFF08t6cAM6bZsdsSwsJoVq\nIPeaCXD/vDP/OyZ0fRqbPs//xoSoUxDqiVsYgN23sWB3PpGuE8M6LzBwYfEj\nnGXFo/q/BEoRiVdMUKPV0HlBa3J6A5i6H2qPw44Za28IMFEB7d3rGRiaGy3p\n3XlVaEkn0OUoVEu0/l032Wvd828PUbupQo77ofvKlZGBRwGRkD+i1PiqTec3\nbKJa\r\n=mubL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b24050aefd2a3ea88d463c6a147a9b6e1878dec7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190809_1565331269671_0.4820925997685701","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190810":{"name":"typescript","version":"3.6.0-dev.20190810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190810","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"dda80279480131eec9b05e3b78182a1ba1efe105","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190810.tgz","fileCount":90,"integrity":"sha512-gubcQ8Sn2G5AO1KhjvLpoFrutV7o/ZJ7wCDBC1IKgNI8R2vadIxTystJxAFqkb9boQ7tyRrZ6FwM5EL5ZYfJrg==","signatures":[{"sig":"MEUCIQD5Na/J3GTgWo9FpgptJeNlItYdQuNKJleWZlSN/jg4kAIgJuXVhDabCaZbNS9rTD0GObIxFsehS5pKQzmt0YuEmko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45792676,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTmDVCRA9TVsSAnZWagAArqcP/1hyDpkHACtvv6XCxIVh\nh4bGtFpOn5SGQokbs15mp/IjLNBvJJCfqTLG+iXDQmMExpZbDMCqW3qupZM7\nqPcgm2PMZnBDtByE6j4cDOLa0giKhBWD5FP0ygU7fTGgUGPazbLTVurbNWeB\njkGVMWK33w8TD28cbi/Iv+EVQFT/F/69DySccGbAGSMHcIUs+yGg5BbSt0wD\n/uQBm7NN/FwQgTpy96pUs7CsNW9KZx3dD2QnMguvJ6216FWAVWzrZk+WaR2q\nWnw0U4AXk8vWNHDdwfgLqe+hI+de9kQs+BdiOYE0wawNAoA552uV6tsJbIMT\nH09uQeXwGGu3VAgemt9MZ2KT1QfKbOZTNkHR7K6eYctJ7c9gDaF5tuMb72gF\n8DBvF7hEb+l4gSfnThpLrniiLCIQlbbJfQLsFDAJH1myA58akG7EuYtlOP3J\narngjWsU6fluPLgzW+HB2DrlB4U52nwXmgppxSZKz+uwXw1pcNVS8gZjrAU2\n+dbEpdIoYrHC9Vu3ACgB5jnP5z+g59spEf/4PU+FCT1nBVD0IQFqzDptR+Ie\nyGeCj7ayife5kOt6igBeBPHHCLDgh67ScIwsMu7x19RCduM2Ys3tlFdRz/pV\neIHAveLNfBNr7t1TLMo4v8Ad408vk4pq7OT7HUuAbrhX5vwImMFv280sh0mP\nH3DL\r\n=HAmh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2a2866c3a90bfc77bcc478f8fa3e9468a4963e43","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190810_1565417684241_0.5475474563564666","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190813":{"name":"typescript","version":"3.6.0-dev.20190813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190813","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2b97055c81e9f94f557ced0d2f00c83f51a09b18","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190813.tgz","fileCount":90,"integrity":"sha512-xPaNVhJ1gA9dNOKidkMroDrfvY7QKllabtTwV10YfAX6mY+1qOiGrvWTZrtE/dZm4x7+qvegeMn6a0uT+VmCjg==","signatures":[{"sig":"MEUCIHJvkdAEmJTlokUQS9POGnFYkPhW1fcsDD7oZjkUO0YjAiEAv2v6GPQNHC7RZavASAfckQgR9P0nUvIr4pzK+a7JRD8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45825498,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdUlV5CRA9TVsSAnZWagAASNUP/1kdhdjbQm6ZP4upsCgH\n9rSOOrGzD6hmx7e9D1/kYpBEZmUFhUn5Zic2BZbB3ByS2LJlPAmyOsTKYqbj\nPOOKExhI6KdHb+RnphBMktijKmN5dYSfis/PZgVt/Xeqi3f49RXpwo7FugTF\n3KkU2maolv4roWm/1DPcYRUIVDmoCXX7ZKmr5SRKrAsirYGWCAoWK2e1Ivlg\nO+MvchZALD939bO2OUbiKM4rTw+mew4DOYb65icWhiTmvz9fdjqcqGuK8dCJ\nuy/ReZn0ZXmiEbuhDVyq79uHC4EwnvmmXZoB04JXExuGDS6xI1kj5xN7wn8I\n9v6JpxGPrbHXTRyixtKc0WC65NzpNTmBKW97FANNAZcOaDtJdkFJRQPWQ3xw\nLgctU8wNI5Ezb7w+5MDx4W1wmY2zBb47cFo1i8ZpFnUkB/Ta7eFnVh7/R+bL\nKAe/AWMiU3SJ4QeDioVe20sKkyL2a8l0UN15J6RJr/s6gLTwEiCWX9nNvVgg\nF+J90YvwrIrCTlkdCo31EOd5AJOjnDqVscBbpbUjOlnsssX9MQIhBGJ0nEp/\nIcr1srkjNYa2havDq2mBqfoL7E+Isg1STa0LTb5+dfSVHUzGxhivzOaa0oxC\nZ4NiZWWxfaJR+At8kCDt77sTs8WTaz08OuN2cQa9YD7LrBStUve0Z/unTKuc\nnTxA\r\n=bMYn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"decc3cd671125acc66e1a2fd3941167985e5c145","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190813_1565676920718_0.357938189842816","host":"s3://npm-registry-packages"}},"3.6.0-dev.20190814":{"name":"typescript","version":"3.6.0-dev.20190814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.0-dev.20190814","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8d7923b6a8c6b61b7a16773a6776d89d98563a58","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.0-dev.20190814.tgz","fileCount":90,"integrity":"sha512-x8gNmR+QqjDR5hiBC06KtCq1JllnvuZQRAT56+qk5yYpaAxxpoVkepV9/gh48+ALKEESiLWaOCZZOlDNg95gAA==","signatures":[{"sig":"MEYCIQCLr3Jm0TPPOIQdFlH/KTxn+E0GWK05IJVWlrhNOzvRdgIhAJppAC7S4ue9Fiyfex8EtG8WCZFRJt4p4FMNmJCvDItl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45854477,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdU6bKCRA9TVsSAnZWagAAwLsP/i8BT4D6UyjhB6s+sB2r\nircYl45YVNzFIkQOpUuhy1sw3t1jVifJBw9TLeVA+dDnML/KEZZ1q5zFh4Is\nWa8dXgrw2i9/x6Zin2tF4QjbDNxe6ar/s7a+5L7Mg6EuuNLMVxoTIf85Y061\naZ4Q79JhVERIzWO2H14dkDioyHxZwuMiJVazms2NR6WF2xmebZCSIIQ9uzTZ\neMI9d87sYEckiqs0extJ8Kqp1WjNb9VX8pTOWUWZw9KMzHE1oXEZ5/++Fder\njShmZ8pyZK/mU2TPlJRCeHdqIHoZWU60jNsBUTRP0dLTPYRh8OkiKlD2M7VH\n851frOVP5CDZavtXzDX4tO/R/V3Jnv4zD7NjiQkzcfj0d4ylXagCa+jZW+iJ\nLr5DB490guK1Bz1J9sNqXTckBYLVHPB8kQiZ0EXTpMTecyAqRamuEzf52oDB\nhb9+RE23JtXzBrjT4MLOY/LFVYndQJexfRsi5M223aePpzCf3g5xP0aC3cRg\nXW+8LGGnfGzT0Tgc4yyp5n9qCKzzg7ymiQvkHaJrJ2giFCCFtlxUqVkpz4Pc\nD49pEOHRh0NHDfUwoH+1KmEfk/nDqT4uROmouyoGzUn2D7D6Ct9WbXDQOR2u\nFWc7/txUoRmj4sObgxVzcfPeVhIwOb80AWWj7jSdgHYVvV/tlsNS41XpDO7X\nrUEP\r\n=oLsB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"602966ba4ecd0ef7923be61806b98755e2919501","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.0-dev.20190814_1565763272833_0.7948430835153215","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190815":{"name":"typescript","version":"3.7.0-dev.20190815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190815","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"de2bc9b8ef458b4c1643af1fd3b492da34184036","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190815.tgz","fileCount":90,"integrity":"sha512-/J+3Xsf7LDs/UZCgQkydvu91pfoKdVHgo2U6WzmgRrzOsV8CU+FtdW3c7dN8ZsWUw0ZXjdT1EcRUaaEGWJ78Nw==","signatures":[{"sig":"MEQCIBV/ztV4Cfii90oLu2ZoQo41e2BGslTJCJkJjxov1/+7AiASCVKpZ0gAwWVjyao+I4FMHfRZawGL+DiOyDDREUGmoQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45894767,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVPiHCRA9TVsSAnZWagAAC4EP+wQwQCKvzfsO/A7ZcwMN\nlW9A09BBcjWdLkQi7KqyDh1MvRYycq7jQxUduVedXPo6P85ghNXONJh9l8f6\nB8fJtqEujwpZSqC9n9Fizl9OU/AFmRx2uo0VU+c01ZVKeB/dBB+BimrAcjgY\nDtrd5vhOeuV3zBVzpJtIedBVeXv/eIN6Mbos6Ud4z8+SObT8RePQMYoj8mAV\nPz8w0aWUK/nKOT/jPjQSoLa0Ah6iWqDRHbURCSy1h8fyMK4PDOv2/pRVkX4e\nHfsxMECssoVwI8qUUrAcdGdrLA82FYVaPHffedL6x2ICMJ8S7PndFhnB9bxo\nsCCWVw7CnHpgr/PbWlGhKqu4s01dmnRDVhnfGNV+y6dg7HTzLvET2VzRADSe\nxHtjj3L9i5juy9mSL2KeNaBnHduXa7tpn6/fntqMvFTCCmx4IpRlJqV74Bqy\nYzmbZFt+/SJ5KCUgh0GHoEdyxhJJjnAlUD6BQc1L6L8NVuEkpwk/eEOuWkEs\nrBvu1WmFIRAlHCRpEPUIInyS6dwbA2ahtAi4gyC39T9w+3gKeDwKPDG9ordF\npc8vu1AughIDxTWiBIbCpy0z/BzBftLAF0AH84LqTC/nzaLUkpodp8X9hcyu\nY4hlO5Y+f1WBXcmAUAR6FBCq/BG9BocuINd/N65+AVXc/9VnNdD7vQUEyg9S\nGXBf\r\n=q84S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d442ecc24afbfe8c0bb57f7ba3baa3bdd46ccb99","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190815_1565849733894_0.18661175756153137","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190816":{"name":"typescript","version":"3.7.0-dev.20190816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190816","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"edc6ef93583018bbede85a5dcdec0ca64af70d6a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190816.tgz","fileCount":90,"integrity":"sha512-h7OoIfjZCR3pfbGHllT/VOwNQzobJPPkzZlnmyihq1Eezww3P+aDUMKro1kBkEEhu8atC+OLXc6vHh++OWrqsw==","signatures":[{"sig":"MEUCIQCMhcCEmgD5AGyuaAp85Yw3MOkIe1luNjDy1AfC6QRt3QIgdDh1Z4Y8bwXwrm+HeK+hnIKGaRI/W6pYjZQEsBiAiMU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45897010,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVkoQCRA9TVsSAnZWagAA2zkP/AxhSAI9udbepXmuJnAe\ndRlbWKNhpKXGfNKrGKAsMUZMPDF9dR3Y27tc31YN95WnmW/Fgb2cCxNc1IZf\n6BJbHsnXNky1HZBefNG4yaSeG8OW3VavOkY3Hs1TrkOSTsQUa6Y+Reebsc7/\nrZKtNMZAyb4BNJOBt1Vhvc2H8DbFoELaMEklysMZSj3OEvCn7/skaVoL/eoq\nVU2XYoGq1dKboGioS9m3uxxCL0DK7MllH+ieYfDwk3Wg6/wuxgA7COUaOzZE\ndHMIzukkF1QeFE5ZuWngVHELO3SdzSDesK0yDrelMMSqUAo0xszTTF/wDd/T\n8+PXELmwQLUYrUwi1sJsggNopUfwddQ1npsBcobf7bAJMhmML82FVKqs54sO\neD+gZtFh/QVpA+9ywu0RNkuXVbiyL5oYMRmdh+AHSyYxmZNY5qd80pZx9RAR\nvP7oFt59b9+Ar82+ucees8sx4pUr6g/ZIkxB1Tr7VJRd4jRfNusmh7Kn8sme\nmfflC5S5CHsFQcGdGkDiwPGiEeA8LoGEJDYasK6T//AmNL1w6eeMV6COUZxg\nU4FP/8rNj+D/kwag1/gZIQrfewgthYx0qCcAoOwQxa4zV9VnPEGRX3d5wrQM\n3hddVosgvHbaHHoZ80fiOfqwSg7OOHQ08TIIG9zv1kYFgRyX6BenTEVSKk+i\nhVFQ\r\n=QA5c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a53e4a19efcebcc54b2798d53819fbb1cd02f7c1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190816_1565936142764_0.9459828002540669","host":"s3://npm-registry-packages"}},"3.6.1-rc":{"name":"typescript","version":"3.6.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.1-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9db650b25d8ef033d9e25b3057bdd1e102bb434b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.1-rc.tgz","fileCount":90,"integrity":"sha512-u6AQN9AoocZKYSz8zcc1Qh/V/mbAO+BHc73fTiKlIdjzU60A8TesrK9/7kg3GM8o2RxNyCeOFpcevEtnfUyaLg==","signatures":[{"sig":"MEUCIQDFsBQrkD0bW4erOg+ugu7sRASFcpE405hH8PSEskE0VwIgIdbeWk0qMRWLat30Ho+OA1ln3lsNjTlNh7yVaJ6TnTw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45852402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdVsj1CRA9TVsSAnZWagAA68AP/0MKEDNlv4vEYgtVjElQ\nKokhg9tCB3VlPtwSzZSjZj3VemCEHF1cqx5gyJBucxwBuALMqU+LKzwIXIo6\nKp4pIWJ12S9zWg2M4kLkirAI9OerQTYM4ozznVUus+fC8jPZJJWbdeCnBC1n\nNcwxzNDjk6fw9JJktktf58+eK8CH/DYiH8EDhhvoil6BmuUkUeNUG2PZlzaX\nf/QcHWuKN1rGRIIg7b+aM3Y9mJqWuZxBllRqdLo9FrrkGMCe9RAwvp64mPE5\nORKo0h7Fll9ebI+YunAlabDxKyOiBAUZ9DNSRoQPu4s6V09HypdFvo9LSHgZ\nzqKuxjx3jO5TB9pUBYXJEUWf379FRkhs3jh+i2BlLVbPBvAyisUHg8n64x71\no9df73eUsu1lTZSgg+b2xMiSylX1zL4fSY+Iz4TtA9FVqiYyc2WE1KUPi6wt\nooNwV2TqaVPZHIDzeLw3XCEJcDgU+rp0rHcjytFWAxT5yPm3SUar3cTKgS2S\nYTxIZswdi3jkiU7hz0Yfw5e89CXJbpWQIQG0G2bu9NK4AIon5Oa6Ra7IFdB9\nKzP1vdCL/Qm7VHWUnZX2ngwC53x/8/1MsoSvuspAtzgofZo8XYTmRpUHzH6O\nvkkpIlS9gFrMTx8X+VzCdrZFJ8FRs4zC8KKE6x7Txrx8VJnxpOSRN2Harjra\n81Kv\r\n=ehKo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.1-rc_1565968628466_0.8764211224853493","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190817":{"name":"typescript","version":"3.7.0-dev.20190817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190817","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"28ef6913ea42d8e0835bb7552af83394795cec90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190817.tgz","fileCount":90,"integrity":"sha512-uWjAmp6yqyQMMgfPBbuNeZufrMxERXXwxXIJfUJvPqKpbHQN+Zch7JSMp+0jGrYQOrWm3MpCjDYKICtPbwZvwQ==","signatures":[{"sig":"MEQCICkOEh2QpNOXHVQv+RInPp7Wor1SbranMPuySQPGlOwHAiA7xQ9O2uzTXuV9cYrFbW14qh6B/w0t4JQDh+M7eXWpPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45906433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdV5uQCRA9TVsSAnZWagAACtUQAIIYAJfjsuFjFdPJi3id\nIJH7LEn2Z/LeUSlQ5w3I94Af7IopOuekLtaYl1Z0tXAYyY5nrcvlghWcbC+s\ny4ygL6oria0taBbx1l+Jbzh/ANQTu/UNdlOkMvnhsWn1h0V9QoGeuWWl/k6R\nt/W+yX+YcsCn6Nqa2i7qxAW5anICEJ7GR2ByLezvQiDrFFqgxzXnugaSthnA\nsZlZ97FQ5BT7YhD1Sxmd1BR72SGG/w/JTeoMrD3U1zYnMAnfCLSmhD19ceG+\nXhxnKlWBWc95XU4FajWv2zSlr+7mxpsnsakeloSH5H6sMqUDACWJB1BhZaJe\nxk8dmbm/nDz1gNRdre8xrIieqhJMWFrbtpBLvd0sPnl8faJICrOo0p4n5SLc\n+8xA4TkckqVNOpzEVIekqg5PdsbmKZgv41ey/wDPFGnne0pZo20SlHa5gy1e\nad3mDuUXr+L2lgYs6ce4isqei+r+ZBZHCijYtgXVaL1RwZAWF/PnaN15eZ1k\nt8dnZGMUDwgpm180W/nvmeUaA+OIT5ehh/QYl4DhYLS/jw8TK5dMApLRZXxL\ngvNZ4/UW1AjPbKph2cQLbzJqDPmqFTk8gV1gkIB2VEIvKXTEynKmE2bFYSls\n8Hzxp2GhObQaV0AwdVgPOLuZFPowA5k7EkiuiEMvVDDe7TKhDoQ6J2ZMsew/\nZmp2\r\n=KLyL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b57b5fe5ee31a334a1e2b63eced4ba5a046bff61","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190817_1566022543828_0.06221816654015888","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190820":{"name":"typescript","version":"3.7.0-dev.20190820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190820","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f05f82d27574899dd6fd4abf6f36a6cb1e71e690","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190820.tgz","fileCount":90,"integrity":"sha512-D6pkgZ/vWLnXq+72dj2jBbW1V5zYlMIGSApdG9QSGusp5+qonPuJY6Uqv47rwzSJsVtUgvaQZkDUQLWppKktYg==","signatures":[{"sig":"MEUCIQDxD37KWy57StEgho44HO5xaM7Hka21yOKagELI/UramAIgcS2tHCVIR9dEixZ9wlOveAgvKEcoMWI4O9IfNe302HM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45931466,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdW5AmCRA9TVsSAnZWagAAi7kP/3Mt+El+XxoY7ZHZwcCZ\nMJ/7u0wCzXS+lUVlovywJrCAd45bTg/+VaYSqI77d1CddgAJEoVgjiIH1Zbj\nVlw2Jbfcu6js4D2QdRWdPivQIhx4FN2XNc1Tpzi62VbYprpoeoMjA62W1HHu\nnEZaA646VI62X1aZytoWRdjexPQOerduNwqdRNE0Rs4mq/0HKDk3NESB9+Tu\nxh4mKG8iIkUfrY+m0mGjpAH6EcttfYHakQeVxETVEzxD7/Ix1gnl7M2naGU5\n6NsZDKzBKlL8vPOYEhwVbAUjTEXtlNfYsI86pnGkgOv1ko+y76VqAu3xYP7V\nxd3eow5o5wFr3YGgOmfs4ccBisQA3f4UME4ihfR3FLAFGw8xL+wF8NsG3Bur\nKSW3uRA+s+Z7MNtpGnGMFWZzgkPf4OwUXzuvR1pbWM0miIsiasFrWt5vk1PN\ntUJmMGZZ0p8/PudAFMJ68gqWgnm2BTXe9yCiNAGxJB6SetqOguoomXZ+4L+l\n/21JlcpygSFZDd804niQenePazOJOTNef/zbxX/cRBPBZIYb/YLReD66Mukf\n3YczGLDUSwAGAzif2v8Jt+EMcwOLZCgcRTpD5S14O4BD0kmNCYWi3s4Fl1dc\n8s/wmBBSeiAC7O2/e3edjwfVB1ROzIA1oBVOaPYU17h1VjT6ZGWIMFcA1MT4\nB6DV\r\n=6mPW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1bf218291f3c839efd01920082bad4d663cd1ad5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190820_1566281765243_0.28809532187981723","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190821":{"name":"typescript","version":"3.7.0-dev.20190821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190821","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"05949587a03b17f36fa316bffc9de4f7701d63cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190821.tgz","fileCount":90,"integrity":"sha512-s4HrstSTW+v4i4Of2FuWa/v1Hrp+q4HGgqSBWZ3echvd5Ms8Rwi5RDakkAFIo3Jq9SfjZ4XNSw/mB8LgiCC29w==","signatures":[{"sig":"MEUCIQCcFDs9lr4Evc2O+14jTv1DQAfXuZ5DokQc+wApG4+iBwIgT4ds66h0f5jEgayEQ2sxOIL1zMgLtDbyWCrlZv/5S44=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45960756,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdXOGnCRA9TVsSAnZWagAA4cEP/jruUZ8NdAHFP3yGjH+4\nZe5mlsz7NRYZkJxLbMk7C5f57q2i88zOY82hiSO3jzoRpqm011ODqJO4xvAm\nSKFUF88cSAs7NBg/orjNp6Q7ekZZaBEG14Xs+MLiZ7tsAhj0mxFRTHjUJRXB\nqdJ/kXkZ62nTtBslR/RqiPn4Kr4lJKsQW0hzu+MWSQdkTrpKpVK9T77R+Mn2\nnP/zHSCH//05jrVCXMPOoDoMnNIjnVPUJHNz+xGrZg4K1qaROIrxcQaCZjpK\nAumlx7AsTnMYfIIvwVXydrzhnRigoE9CKsEm2ApvjBlpHIaZaDgrLaDvaDkC\nWvvr5S/t8goKkH3yUHUGHwsS7CjminhKJ8dWvXzKPYSwuc3i+OnaPFL7sNHL\nNQw9XFiuUirHJcmo2E6KuHNbxCfsG/P7kx8yjxRDND3RDiPtROAAbqzHEofJ\naBUjsclJ2wnofwFTdUkhqACBoDrSEF9Yv4d+Ao5xaz62fnR7ZfZS8BhACdH0\n8BLgvwokTZ7YrJJ4JHdzV3Hbk/AheQzPW4ZKb1mFFNsYWMUGVyEhMKWeeVIl\nKpB0qutB3yXjnFaEr5wr2X1QVlUlnpoBf7GfoKv9bjFaXJAjk78We4NVlP5P\nYQGOMeNpFEz+DbcTUxzNXnL9WouTaoLgadsdU6vXcbFherA5dkIfBOMc+bs3\n4Mmi\r\n=0NM6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"219a570a75f1c3df67ae0282e41848b87781fc51","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190821_1566368166730_0.2124015719842196","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190822":{"name":"typescript","version":"3.7.0-dev.20190822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190822","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7f61c7d6e2a18900c0a9e626ee5045ed78e8733f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190822.tgz","fileCount":90,"integrity":"sha512-j0W+28hZaIMvBxBDJ5lEj/vhIqGJIVVPeWQRbru8QzIQg71Pbz8hl+Bsj5ve049w6gms0UqDP4gix8K+aYNT+Q==","signatures":[{"sig":"MEUCIE7GaWbp1O82BM6cEtUfpkJjp4bIXn9U9CQJEMbzizKtAiEAt8pUvTZw39x7xUE95boHQf84fp6H/dhfjQ2KJQcqR8c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45976758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdXjMDCRA9TVsSAnZWagAA+CcQAJE9QYPvQyMLGOv3IyKS\ni7Jj09vMZxDVnN64vAZ/Lw/65I+mIG5ui8seokYltVuUuvziPfORL1KyhygW\n/3cmr862Malhk9gYYvHeqTl9HxScRWSMHzn/LwRVwqbl5tCUCAEmHK6ClW8F\nKjC4v13VNgV1SQNjX0Vk4wW7peehypigX8u5j/S6Bak+GLb5haa+EPABuwUX\n5KDbH++hCJT/RKe6/mv1HYYg0O+SkIeS6QmEtVYXzalHTHyvkjNzm0yyc+I1\n26trz3kAbM4P2denbebclQmG+tqJWGpfB4VM8J9VUetcMRFTA8K1bplqOg7M\nDqXSaVXyt+DSUOJ6QkT4KGIKOagopUgtEt9ZMKiZEioMM+Jm1UCuZwJh0Fjz\nrEFvu4W/YW2FAKekE6p/oORgrTgkZ4s39JDTi9s0WiebVcX4DnCWQdiheWzA\n3bgZbjXOEJwnn6o3PtQXAmIm2wT+LCotn/x1Dl1/S4zjkSZ/BYkhGIgRGGEs\nr31agz4pO8gH0G26ytWrHG8tAP+kLsTJvpE0KvPKvEsYMYg4j3y4G174k2Tt\n1sli7R4QntrV3yzlvP6O8XgrpX8ZxBDwOvjA22lysThOH22oeuowPthUpPrc\ns7hlaFeWjrNQLzD1peyF0pzxah2Op3hCbaW4k7WFZw8FlxF9l+3xF7RJfkzD\n1uIu\r\n=RdjF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3c4276076595446ddefd24e16d549e1323a3ed8a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190822_1566454530375_0.5785704480666283","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190823":{"name":"typescript","version":"3.7.0-dev.20190823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190823","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2d3345dea6fc8c5f72b6eef7c8012ee90cdb2231","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190823.tgz","fileCount":90,"integrity":"sha512-JT3Mib3htRiTu+Tf4NYPaAg9tCozwKdFoqkE/HqnmDpEp+xmn9jRxeRzUESkP4PjV+h2CosEVsvTTMY+Jw9jYQ==","signatures":[{"sig":"MEUCIQCDy1RF0u0oLIUrkfiMwaPvPS5+dTipDN5yjvN4MjVu2QIgPEyQz8mpFaDSml7D6bKBWzeuaRb4J8WAINurJLeqZ9c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45972723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdX4SNCRA9TVsSAnZWagAAx4cP/jkvQBx0Vsk01i0pa5SP\nI7r/KcI64s6pkqU7wkTBU1mFlJKixU7gWRMOm5XPjapbazoBH3+WlObY/Mrf\nyzJZguaWM9SEE4II6PkZNShUUuXyqpd/tFHuANBL7wod1r4DubQukbKx5BA3\nB/usdTEpw8SnW3Fjo/Yv6tUakg8zLd638NcA3fP68gRA0CUbpfm2kcgvuRsK\nRpJTW6rZuOHQc2D7SSWcyBf0hpxjx/2tLczyqIbZxuwDZA6MkxKhQQB+x7IW\nqT3eeGNB27sj8ULS5SLQXii2F2Ef9Z7iXwGhfrAqEhqw8oLQ8YGD4BvfSkH/\nvJvvCMX24oYzwCEIoQw7dRS5Gnwpvh2HZNrwivbKZf6Q50FcEITPRzeQAkmz\nmAaNyFakOnMWlop9SVdUpxcaB92tvKH8gd/qrrukJN8x60hwaLwlSsuJrH7K\n1Ve+veUFO+lOZzZDl1jpkx056XUdZW/3bjJSXMhJDzVr9lg/VIN0rzkXdxXs\nwRdk1ikWU5piPLl5sNoDMWQX7CVnF2SR1KC9NTVWXZBPVfrYqIZF9N8e5Hk1\n1EMN+SVyBpK9ZnJrMcPbhKlODXwhpVDdgsrnQcDH1voAQ62VhlhuneJzCbM5\ndFbpaSBgSD6ZOPtT+50p2LD/lqzjt/8SFSvGniYcU3w5XjLPpkPCbnKRqU+2\nxwBo\r\n=LSt0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ec39d412876d0dcf704fc886d5036cb625220d2f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190823_1566540940593_0.31936641660518106","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190824":{"name":"typescript","version":"3.7.0-dev.20190824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190824","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8c64e1c70f37c035d29e336602a402d758243d6b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190824.tgz","fileCount":90,"integrity":"sha512-6aundhR7oRuWSjxEXEKTtnYvxInzGnnlSqXmdLZDxDnWX786Fcval5OfYu15K/Wj8iGkNyPKWigTCqozK5D8Iw==","signatures":[{"sig":"MEQCIENz0kAagKctBzx8Yp5H/69eQvsC9tFiu34Z9yJrh6FIAiBARRW8HQ7NA8F0xzSS85Cdgl97FZK48XSWzuwVwmvOrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45977747,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYNXZCRA9TVsSAnZWagAA+iwP/1um3TIEzig+d01ygBgi\n1C7C8CbxI7uSYM7u8sEUgkbpiHzPEyRORK1EYHsPk/ut1tvKAmuBBT56ItpP\nrCa1bN0zSff3EMz7LRjEsYoDLYOTjYp9ZKFJZoWO19S7iYwVpKk31zSa1Fys\nJuGxwINFNxusSjZE53W7QmwSDOhEroNgiaMx7buB4SvRZOdqTanBvmh5/qji\nXb27KRwvaMIOA8+2rFcSe3UitPV1RoD1xbLCzm2WwNzGBbR4PjYAEm5Kn9Gn\nuw3aYyoEDj3UbxoyVTT20OjLJpBrX0ocgfGxiYAfLaun5vEhLXsbNCXt5SZT\n0bhcgBY48qYe7iu6GWBYHqN1Mbmh7l7BqjC0EeHquE/rAsEDiEY9r1oDBYcT\nZP2l7wEA2UgbmfpxETYqRGPPWrIRM9v8YKjzvqv61WwDMseJonSxUOnU1T/o\nOvMt0b34qbXxQM3D/QhEdp1hH8BDCeIN414IWJfeavnUNbFpAU7UohkFptzs\n9w5TkTu0iFnvAMONeRiL7lP5myRQn6auQIBrbPwtkLrhrEuIBco+HgElg3ta\nEI0PabhNZa1QE11GqTZ7Z4zK+sgoTAFDtIn+ronqpZ4cww0K7UlLHdwh4034\nFbeR74lZjOdqdbIBSwKInsY3RTqgUzf3+8Qkrnz3mcREc1trq5zHmUdkG3Ma\nLwqS\r\n=Ijgf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"25f609b3a22996ba576ff6d6254567a36cc274b6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190824_1566627288649_0.7051681954491982","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190827":{"name":"typescript","version":"3.7.0-dev.20190827","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190827","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"323a7b00c818a3cebeb9015daaa98ae29b3c4b66","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190827.tgz","fileCount":90,"integrity":"sha512-edAJZmM9KIiKED9U0NYJq/MFcxYfsB+lHjiJJFOEoo1imJLrkijbHQCn+ENLQBOdW+DEx8Oh+yAn/wLiRj57fw==","signatures":[{"sig":"MEYCIQC+yhZ1Qv7hDcmf8RlOLeO3+9aeHL/HZHYYYQBmo4KWygIhAKCMumfB6oL0c+GAQJZ28i9e5lQO5HGpaW1fQIeKd7XM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45978145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZMqZCRA9TVsSAnZWagAA5CcP/2l7s3p1kPsfzUUSmMMK\nPt2SodZuhr25LMYr7rey7TWTPr7w/DX2/7stfTXHFose520QeR8NTF/F8pWs\naS2Lohfu09etfIf4upv040JsvxpleA0ESDKwPKomYvXaCk8NGQ6WMz2gOo9a\n9bGjv9YRLk7SvEJ29rCECC8Ve3/iGTohWupiDalj+h0U2cf0+LMQBI7fkTva\nA23vvFRMxg8RouC6mCSNel7ijABhGVvvWcAzAstHnePZ6+ORYqd8JbcFhxq3\noR4Pe5MODFtZStWzfHs4RmTcS8Zu69uEtnOT1ya7Db8xXa+wOHdwAacdhlgG\nNsXD0VnxIpAW7s4cPZrxB5YZIcH0GsQLrUQYun0i1AhymXLVV6Nm1RlJS3Wi\nwhrWvIeZkhIwaIUbc4SxjaYl0lprlPkzC4xywjJ2MSYrEQEEJk5N72gRu9DK\nlqEU4KXgklElkTQ8ZEBxhEqn6NYV0CotR8oTVXM7hC68T4DfI2Js26buuf/v\n1H5u6i2H8pjpPtLQoVdlhWwFe0vHvHbyUoaBUA8kGbAgpEevYTFR1m8X+JlL\nIOM5ld/KeFY0EgyDLxrspHplvL7jEPbKF+kQHF4AXjXDbcD9N6RRX6vlDxsG\n+uFiXRyM1fy2ro7uzFHv5/qJ5HShdeNh3CbWUv8XFrbTIdJ0Xl+3xEBBqTwI\ngnAX\r\n=M9fV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"111b73acf9bc3ff79b5c5185d75585c7c824aad7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190827_1566886552465_0.9631023165819843","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190828":{"name":"typescript","version":"3.7.0-dev.20190828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190828","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0f44a01200560860f3449c7a43edd55d09192e59","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190828.tgz","fileCount":90,"integrity":"sha512-Lcy+zW7gSNDyz/t9hrPwscIAyHXfeaX4ZibqyGEDBWb0xcrX7zc4UCsknojFr9M+9NmEQ8CIbyRBSlQp00ysfQ==","signatures":[{"sig":"MEYCIQCoOfue54q5MLVaOQ/FGeqrDONZLxDfOhfqC5bvSwpljAIhANzenmLl0L4LChZmyNdTQee4uyzQznWesgESH7/FQ0Zi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45974931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZhuqCRA9TVsSAnZWagAAIaAP/0935NowNDMMEZFDLeWZ\ny0FJrhxytEelSCTTCmvCyvcFWHxes0KGRyyLcakXj0Ab5k/vVJ780rifFnmq\n6m19fNxWV8VC1hDI3V+ZrovVc08w61/1YS8GW/JaSFTnT//2tih6BRMCvpK/\nc652jFSYqMFX6DEbL8YeYwsXXLnM95ASjb7M8JgvEsZL8U7pH2h2FOWiVOUF\nVvrg3q+w1csA2ldD4Ittw78SP87mFSwFZs4zSB54TomPDciRr6cfLtTjhoSs\nEUKG6yvNYTWO2bpwHeQ9zFYQy1XOFNR+tYzTfJJzPdk9eIVP0r8tT2PFTTUH\nEpz7IFrrtCWTsLgT6aMAx/8BYZcvfqXfxVINncWLbIX25IacYlCipB2QiXr/\nJH/Utxs9SqGyMoYp23YiksVEj2Ao/Xx4KfiphsYESRSzZhUsk6IW+r9+NaM/\nyRQjiIEQD5OYYHvOVJkMAbvMRN6cNis35qhrDLFYJYOXF0XIGUKbg8R146gF\ngKNP8wFvszapz/SAR7isYIp9t0fFsrMsaJYRLPPXgydltlpyiFWj4RUhAVaT\nCnx/irsc1+1yqgWiFfQtIwf1H/aCu/7SoeD5SF9hdu9aM0JqV8u13//7kbvX\nySGObv9sov6a+RfDnVWdVPym/85SyZvFJ4y0Ln+aWbXlAHJw7eRfHB+NF7lR\nquGR\r\n=nBcP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5d36aab06f12b0a3ba6197eb14e98204ec0195fb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190828_1566972840052_0.9187472044302036","host":"s3://npm-registry-packages"}},"3.6.2":{"name":"typescript","version":"3.6.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"105b0f1934119dde543ac8eb71af3a91009efe54","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.2.tgz","fileCount":90,"integrity":"sha512-lmQ4L+J6mnu3xweP8+rOrUwzmN+MRAj7TgtJtDaXE5PMyX2kCrklhg3rvOsOIfNeAWMQWO2F1GPc1kMD2vLAfw==","signatures":[{"sig":"MEYCIQD99b4+gxkYN764KPMIV3ESQIvq+eeFT6BZOV8+jRC7kQIhAPY3fnWQA5FlUd8K4VbbcNivPv5ZTyFj/1wy5yizK8+f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45853960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZrygCRA9TVsSAnZWagAAMz0P/0X6JGxrC8sx407ztiKO\nVvITG4iWj8CE30/BkVvjH+tvO6dwWhIc/QdlR1zpOa3v9s5iBUQ+3fB03kml\nKZWKykSAJv3vxTOhdGBnqwNlkgP7Y5ZFjqD5Ce1VOnmQ5UybRzjr1bw2blvF\ncNQn81cadZGBzlTD390otcyfeDGx4ulEeYi5iaPU+nYQrTf15rqidwXlTnJ6\nqkJGXtlMdCN+j7XmnEF2t4vaV52FY09QxBmJS6Yrh8GFtS0nUcu4E6bSAA+J\nzW47dAGYONRU9hmppwEcBrwEY/E5dchv3egrIQQwg5lrW+ARZo+MO/alxymv\n7j+BViqZqBx4Cz3UuBu9xvb8WYPqaw/NRCro3UiZnSf1x2D/oZR9afUs67NQ\nMxXMuNyTk4ksNjKZMGYehCqM7/ghDAM0jiZhZ/0dkFDWl+WryATivAuGhWvJ\nnIj4B8FL0MtmOqaO4D2fopSuTQDSyoYshKRWW2eDwfAq88pe9DdtXVrzfQQ5\n9lTtux8zY8OVpSaDw7xAK/H9JaHBrNZOjtS/CjizTPvvXIJUWDbzoyv29u5x\nryL8XZDbgjYjh0Pu3TpG4Q2E/2/vXWgEr9gkNDk40rMbY23udbSRzecCJ/ZA\n18B3rjNi9UK7H9baeVo9MPrpLvyN9vZHnUg6SlmU4k51T8k6IXM3JQUvE9MM\n4/jP\r\n=n4jk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.2_1567014047284_0.23210284156534766","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190829":{"name":"typescript","version":"3.7.0-dev.20190829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190829","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"da5269e1c019b18d5f0ab551a22767056d38575a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190829.tgz","fileCount":90,"integrity":"sha512-qyRMr1LuxkE8Su38W6t7YtRI8wotu4TiAUpnD8QIxYBHiyalNTC2GsGJGGrYXSZ5d1RM0VG4PNrHOxA0byfhKg==","signatures":[{"sig":"MEYCIQDjJ4T1A/rQMV8Y2j2UqK142Cc97s97sC5HbLb1EZStGwIhAJEOvlqPTiIJkzUiYzDsrrWlpgpQixTDn8H5LgXony8q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45989667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZ22HCRA9TVsSAnZWagAAOtEQAJAkv0NeigQ4o3HF3Wms\nM/L6OfTAWkJC8C7W+m0qY+o+nEIG/qEoWfCaD7B8GKJy8vAK3W239SQZkwXw\ngSSQOW7vTEiA36qggKG00UH9tCprEf6g+PQ/5PqR27S2XbTY9j3b3P0vjV7f\nQ1KdYl9dAg+asa4n4j3HicvdJIgF+Tw6Vm7w6YcK/8pmqFjqpj9WdaQFyMKR\nlNynOWaqh6Z1e7PQ3DdxMBIZHkNgTNovOIUpmewULvFBEjDWQfQA32WUAYPx\ncBtBr/ZCdygtnrM5fn688LkOY+NoHxDGH7GyOJ33tt0TnWb6k1mfHkr/ceoW\nRN3MqNQEo/0qzWPQBcauXzaC8BpNZIl0rc0jfxfVFdNCg2ktFO+vVFI3YHys\nRjumkPhOlgVtDEL1LvJPxuAYvaf5G0h6mkLy74ZjsCYTlKvsEBHiY85cp+Ve\n1HsU3EAddjk+VOmVl9zKaOim+5ZmLd7fDtZtRWyxx4sdZY7Y5uoassDqViiZ\nvFdqW4L7+6e+C0aAXCmop0fV0sM3DE+52r9O0mGBrxp1JBOFYwftP5am1PkY\nBSGu/veza1E7o1Mf1rQRBcSq035gTzZUqA4bxtiQsac5Pq5dvCbs1U4geu8+\nFeXQ/mYbnTxiXjFM+kRUEgroT0q1gQKjTnyDXEbhLd9e+/7ki/Bca8A06UQ7\njKNQ\r\n=5XvY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cd371daf77f19f85d76648e617f611fc8d8cc69c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190829_1567059334948_0.9240627070408589","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190830":{"name":"typescript","version":"3.7.0-dev.20190830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190830","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e9b96e0ca41a3bddff65171f663aab89903e1ace","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190830.tgz","fileCount":90,"integrity":"sha512-ZxOCavgcCUgv8+VgHLjPL4Zv9U/rj2w30fdOdEhNkcqZft23Op64RiIzylOj3KMi4rPJuFyo02/+D2ym5yatdg==","signatures":[{"sig":"MEYCIQDmEIA8J/Kzyw4MgV/sWmLW6CfXbuhlQTgpIC1CFBKKswIhAKxzs6vV5g1AUF10pe2AZPx4NzKHAhnzL8eQCx5VxKwS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46039615,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdaL7qCRA9TVsSAnZWagAAMjIP/24+G/VSYv8iB4nBzBkf\n6JZvDxZM8sybJkXn/5tgVfzGnflhUIaK9Xk6xIDXsjt1Iyxvli1c9GXI/jWu\nrHlH90c09VLghxCnDre/SSGeLLDmEyZmUszN7BlVkKL8omDVdXanuYF87FXR\n0wKqnE55OnlFtUeQQHOrhzCSPMIW9parZFKgVJzMK7aCer5hR774a4IHCiNx\n1w/A7mEusW3UJ8uVQmPMpO21xPaqmMPX2+6fwKpBoY5X0TcMqZDEXQknjg9Y\nqF9WCGD90kFj1dt18+aTXJhB6QxIbOo37Nb2/nGCbTasgZLGfXeKPYE+Lk4H\nkoTF6EKHUsMjAK46f0bLgRVaDHLcG7PgIDbZCqS7A0E3d3c1QhZmLIEdzN7m\nO3iDKGG7GOzVF9FNOAb/yxEDKUrLRWc7/YCqaZjiv4PiOuX9B/T55j8u48BE\ntRlus8pmjrFevjvRyqsBqfsab4Lsfm+SP3Mg7mbhRNPtB3BJ0m6H+x2JXm9E\nVy+J9sYDop3t/yxlVi94oCpHzURewHqsbRRF3P1Nxu4yyLOVrCGcSWu6JISj\nu3cRnm2F3VnsFZ/k+G+YRrBnTefrg28nMwLeETHQoeXdBDAtxxBpmvMjBUWd\nwk32DwvtnXAuJpxZhgCQ3AaptHmROaRO9tcGhz6DYOT2Zl/93r3Ohlp6r/hl\nqcxH\r\n=TcxY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"029f7a3801ae5e887a75ffab3a4017c355c2ef57","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190830_1567145705861_0.8500989614084968","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190831":{"name":"typescript","version":"3.7.0-dev.20190831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190831","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"606d39ca8cea7f80cf1ac3e8fe19b42dbf98b987","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190831.tgz","fileCount":90,"integrity":"sha512-Sh/m9anJvu1fpGd/ek1E+rQ5H9CCPZli/11rWnx/QxV7LKW7JK9qTEFIobUlo/EA7LMZHM+3zKUfLi7oA5fE5A==","signatures":[{"sig":"MEUCIQCz6OvotM5JbKTch4oGOChclGOnJ9HhRwa5CBJt7jqcNwIgdYCc1e+JC+24ctfgWBwR1V5Aa5ppTGSuFdGU7i1D8Bg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46049088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdahCFCRA9TVsSAnZWagAA/dIP/3l3ozIcq7pVfRQjbS4u\n4g9SE+JGaO+fio9Blvfe6D3DoCEhAaya/YWzUo8SrYe0bGcdqjsfRl7NBBL9\njK9A5tkTghPR8XynzvvRmfxUXVuML5gkgDJsT+0y6uEQUgA5Gsj3s8RCJrFt\npzrBNB6E86+t9zE9/jfgjFCS6zeZ1ZAtJ4BgDscj43SdR4WrHUhpd8pr2wVC\n9IPof2tcabQFc21dm0zNKIKP/KCt2LxiaTGnsqYoL3oiGAqP8P89nsaCtsOd\nhbyfGidzey0H4NX6PN2ryStWBiaWnivb5QsMBGEDnLLA3e3MJRP3Sop6/ENv\nRgtWdpYJoQk27j43PuWzmJ6WB1Koi+Xi9JYi9/sRDa/mz/iOkYIv2quu4OVK\nfMB8WDRed24pNmL5QwVBpo+eFCbiqnOaikqqAhDbEX0fDN+Ru8n+NmFMe0E2\n/kX5Q2cxK4K38twquPxrPPzR7LEgkBaGJANjl3xaqDvYLJFzwlVZGYEIyX5O\npfY/aHHiY7wD48g3oZgVUsQ4a3TxDnfm8ogQKKYTwkYjI+XDpv9U2noIcSBp\ndUi6YQRdYWzK7ozxpTB8k2lsV3lUS+a8AY+c3+kKQvq30kmlQh1/r7cJzmaz\nYN4agNVF7AKM6fBYBf0Ys1iXWvZ9APxOuniA5OmstD7Tn4egrHKNP3nelJQf\ngjaS\r\n=Y/RD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"79bcb3d547f8afa82edf5ddc71888805d367edea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190831_1567232132152_0.9047553469759879","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190903":{"name":"typescript","version":"3.7.0-dev.20190903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190903","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6c6488b5ebca8f8ba50bf2a287c340100867eaca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190903.tgz","fileCount":90,"integrity":"sha512-+2ecQswY4YBPwzt7gPfzxsIbmf0UkEqZXujGq0ktXipKergT/bMuPrcsKvOCQLURXPsJXOcri5OYz5UUHqbGLQ==","signatures":[{"sig":"MEUCIQDCfuUAvwKUdohqkQAvaMsXZSK6QdTRte3lAzw1n5a6EQIgdDVmVC4VPMPTC5GcjbeyP6Kt7Kc73S48msiHgjsUs5k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46049104,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbgUKCRA9TVsSAnZWagAA9vEP/3qBthYoBUjVJ3WMRXGM\nCqdqH6DAEvKoJULVHDumthPgshZvDuSo9LZEH66eSpJN6SJ4vR9i0PDdT1cv\n4rdWkepN6smwI2UFNiBXR1cyg7Rlme59g8K2tIKPuz1p1Z8NsBn4a4VsMaKd\nmyBPoEY1zLW9EhXuslGTDIwcEBbloh2SK/xYSB2bjqXLMie13V+ZzT3KwAow\nz76pEdR1pDUb+KgIEtV4WwDB6Uv+TR4Os28KorY59u2I7CWyEBnYMrqMvVTV\nYyPEJXXKNKNDMPS8C77CoOfnmWPwsA2OTtTuHeHMzIIx6O1kh85PluO8UMAq\nOHU+D78Z5r0v1Dqe3Q8T0uZd6FAcCbnTn13zmgv0WJkakz1vC5fnYWy7Opn2\nur/BJH9i+Lc4MUakAEj1cDWxmoSuktPE+dlgnpO6UK4MVWYn0Dn0i822vs0e\n71rUVCs1J8R9i1UocLPSrin52RqoMPxg8PvEPT6TY5t5zTNyWDXr5Y07sQYo\ntPO4Q9E4AG9a0l2aHuqclrKz/kzu86TW+buMm2zA0tWjGKFplHU+qoCTC4mL\n7cwFqufBzC9Eg4RSr9Xkue2y4icHe4tkKZ0VGEl7x7jaS9EptD1y9rBdRbPb\nJeDv/RK1TGpkvPr16qIYsab/6i6coOVVmeu6mjMJvm8ZuEXJfHzLozH+Yv6Z\naB/Z\r\n=2iwC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f41472b427ba99b075123e092548910277d41f55","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190903_1567491337475_0.431814023297558","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190904":{"name":"typescript","version":"3.7.0-dev.20190904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190904","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7bd0dc8de4eedbab7afbb3d0cca7a244049daf4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190904.tgz","fileCount":90,"integrity":"sha512-pP2klTazjfn7U9fSGppAVPXEcd0/uTgwqJYyR2jMTq21u8wcnnx0NmHMlTRVHZ3MF3fz8ynvQgelRW1U7cFAmw==","signatures":[{"sig":"MEUCIGNsiYdnoCoTc0f5VEFiKrL1dyO0OgkMDP/3hfyFM6E7AiEA/dU5atdsOVt9K58RDCYjyh3r8QU3VmVI5zolK0PQnqY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46052916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdb1Z0CRA9TVsSAnZWagAAKmwQAIZPo0jxaGuXLlLRg7Tw\nmHM18E13qGhctmWYRT/DsFt/0GauzdrhUI0cZnVZoSv4uvx40bVaIUaLCcFs\nlHwyWfyVEE1tJO5dRedntPbBsonLiCvTo6MV+pcV1DHB4IM/cd0FEvuitaal\nGaT46XXzxUib8v6ubBvfEx13wk/uVvHATt88tIVLPQixuU5+ukfMu/YNX3Xb\n1KiMXFAYd0newrCD7LW28LYFzwOzfDZEhY9Hvli2ioW15wWMRc1H8x5OZAll\nKtklDeMw28Ni3OwbTG0neKudXTKk+oG9Tozb7h1hHy9LqrR31rV1echsDk1c\nzf94ZbzlbNKrbfPGAX/5lFZdlNn0sHd5nS61HnROh3QHgzPR+Q8nb1R1nAWb\nF2OZTDPjpGOstvFEYJ0lvL6ghB3WsmZRvZHLDdc/0/OTa5Xr6Z9dHkBgfGaU\nOPEoL0qmbayYZ4YhwQfxGSE2dYLdoj0ufi6Z4YnQ4F7eAjWJOIkoTc2ZgtQD\n77adC296yB40ZJas8boaJe9n4UCN5c3vpay+DOn47wiHdijBQ4j/NMsyUEZt\npC10pkujledtU2qkOzsu6vkOaZ29jfTDhX64wJo+KpLBvvZIauctQT3g1yFI\na5Vbin3arcep/adonernftzdljJL/p9jw21ZjYsSXJtcqQ6bGEVgG+Z5rasA\nSKlg\r\n=pepF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"82a1a28fd49c77713138dbe125d18d961335a9bc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190904_1567577715770_0.24549067727841956","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190905":{"name":"typescript","version":"3.7.0-dev.20190905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190905","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a93e6af52982680b2680feb7198714d0ad10aa6f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190905.tgz","fileCount":90,"integrity":"sha512-rfp7QvOVMp70F1Sw2xpOilU40UICSaQVe8XrOOnYxTaN+X1P6NpOf0t9qIUJl4ewRHkXh/kHbV7QZgn1dSxyQg==","signatures":[{"sig":"MEUCIApfgZBEayirubLZSsIKvCDwOLhK/rwxlgOx/SnBdVdrAiEA/Jw+IFc2rD+B3ocqyF5oyObKXAmywMa2G9xRoclfZX8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46068892,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdcKf5CRA9TVsSAnZWagAApsoP/1liovCZdCteU1BKhnJ2\n3yojkXJ9vV02EAFO5RHFdVgsbSlqsZByqtmrDZsOzBwVdTG2yc3+JR/DKmEX\n0e5FeEwsfxkXNMv+SPoiTAj2MivZw2/CGj+X0tVrowxsK/xvtUBpadxaVyjl\nE5X6Ct//bMTyb0T1G6R4a0GTvx7JC/7M1O2NbOfvJAe1p6HmoC/gzaa+V+3A\nuls0mDH7wLhmfyrhSPrEEQDCdWACKhEtVNTD63yOiT2xhWebwccGakV2JQWG\nFNvFr5F4QKHoye1Npm+wQ3Svccjencetw+8NWWv1bgj5NJ3VUst3y8HtjT7W\nMN162dLg/PkPbaCJOA6u+tAdf3BgksGiB/dlKUNtJg/ccPRFk+lOTz4g105h\nwZ9KzPpVT0orejAHA5YQ+czP9Adxge9oWWc/tjJu8L+m7jODnGjTZxI7UxDJ\niU8tnjCPGVAJxyqN7DZUyBr16/G29jR3OBnFH2PrJod0HtMxDNDr6AABy8yB\nmm+9UPqJeLF4wpPElFFaUAPt4KMDyI7lLcDbZvRSRpxJPCRG3V0vaHGdBvLc\nbJ5kRIdxHV3fSP3RGyrLaIkKs+YxlD2TnISYcQP1A91lzz+6iqxu6uGBl/CA\nAn79I+2cRIwGua05fSHuFOzd7TzLhu8c7qZsaC8+/qJxQh7ilcbObs8kqpIA\nhUG2\r\n=Okpb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"72bb4c2bdcb0cb245c397cd9a8f1f0d1158c6a5d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190905_1567664120567_0.49461788241990456","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190906":{"name":"typescript","version":"3.7.0-dev.20190906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190906","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bba162193296b29cccb5a20587395d68cd5c360c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190906.tgz","fileCount":90,"integrity":"sha512-tLpS3STswJ6kCFHMOqvuAHIaAgXl/JF0vT3s5UnKSMmI1uxCx+sYmHGnHisQrErXHLZmbEl9nIesq1DH1Wgv8w==","signatures":[{"sig":"MEUCIGYd/Pb0pVFby8gHCywClgcCilF9bcyFYv9sL/D1gCF9AiEAp7U2SzFQa42jzyvFWimJnX3IAFighsxlh8fsdIbaWFs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46079390,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdcfmSCRA9TVsSAnZWagAAatwP/2JS+PowylJdEq+vUU9c\nBcZK1aQy2zHZxh9NuMg+HkZH+Pvp4lUlqG4/MvpuHUOrlU40K++dWMKOBD/y\n/4OAN6M8A7w1gUQ2ZAIMLhLiwh5NeJBOFwMzoIGHALU0ZiQMNOI3D8HQtoc3\nItnnfp0nPADeaWwbMHykRK2Eg8o2Ds+hJQupHYkd6ticVXHHLICAn2HCnhSn\nuW71it5bUkXO+Y7dMA0iXBgFVyHZrObFAiF5+DPzhyLfewegA1g2dH4sobER\nzHuh+r3wZnIvvONP3N2wZCA9OKGV9KTLCD/6SANRhejVAwzoyg3LZP4MHq6q\nkQqVNH0gq7Z3EuSJnRWWRbJUlRwz0be9g2wpGeAya9oZ/fY9DZ8Us0fOBa5w\nMPnkCix152+I0AKsi6VvSS7+rbf1JWir+lp0KYaCGBwn51YjzFJXngghmdso\nfQWw1q/tj1lWxrojs1fqnx/58UOXKSMRsZ82n0U2AaFn0cWNtajUGHcCCT/W\nGmg3fWTiDd2ocPLIu8TixKHIvDSYvOhnz1UxA1cxvx2rS3DFhDY2rDW4VUNe\nOow4Dx4WwSUAh1Ew22+VydZL2Oh04PrADIA/Ezsjl8fCDIiyHkp+ssbb+WDn\nASNU9Cg0mCFaGWyzYhHFB4C1ndja4NNPvWxS2iILQ3A19PcJs9/sIR1cEz3L\n7XHq\r\n=oLG6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c26c44d5fceb04ea14da20b6ed23449df777ff34","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190906_1567750545403_0.1943251955792562","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190907":{"name":"typescript","version":"3.7.0-dev.20190907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190907","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6952fcfe58ba14ad2fa16749d90f7bb4138aa992","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190907.tgz","fileCount":168,"integrity":"sha512-zUtlsa6sFacCu4sFMWu8/6CmjRthT+8+8sMUAGQxHWLWO9KDeGoL3MfMygUlffN9l7GnDwqNamu0M9pHgHXlFw==","signatures":[{"sig":"MEUCIQDwBrmGCF4rSS2e5je3EXOAobP7P0hZiPYdIOIkhqP2GwIga4M+BwJQ513r2UGnvMe1cMi+pYQxp8lDt0XJ/fBWt20=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48500838,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdc0sUCRA9TVsSAnZWagAAhUUQAIH1yn5iP/eWGpf/lqYk\n8T9PiZWQDrDBDnRwfzi5kp10+1HN4URCbCEXevseiJl5r16/qCwxmqDI/w2n\nLRl/9+J5wKOKkrD3Xy73LgU9WzTkS0mRAtQodEYiBPSyapls90FXF+Pa7jN1\nMBxSap8nrG7+pM68U6X9+sFVv1mFyBnkoRQjeVxghQAOb/dhalsi4JsQj7T1\nKu8AVqMa9R8sgtBj3BJ8FNCtY6HWBQRDIXRD1kRH9lWZSU4DpnV22tvBl+rK\n4s3NqnO7xkKmozVBamGaLqZYZgk8Bt31e9UDFrCMpPAJERdE5v6+zXUZgFx6\nvGWq45fyLVPsAkqsWAA5ucVz2oF6GkOTYSH7Q0xKXDQh7gDVtJbMaXqBOVzx\nfEa0Tx9MXpNhKLUGhoZlX3QsKdJPVZn8VnFsUKyJN9LRQXgdoX4ZjTldK5a9\n0/CqhJO4YUPJSM61sxZbAW4LaP8c/h9pAdiwWCvVcWGggdiqg5Bk1i99T2VA\nYEaWrPWnKM1wQW+u3hgsgxg7JTf491t6qsPcDNjeBz96zf2GAATA+dxtqn2I\nnws7M+qFSaedy3RS2BlzipknXzeewnp+psN2om7jHgGWxDZxrasJ19UgdAFC\nmPX0rzeheUqyTGWEPclng/l39aCrv7nrdFggPUt0kSr+6n1DxfJ8tnirJePY\nORQ/\r\n=02rk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"73a2146583a774d322cfda8531fb22f34b6cc734","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190907_1567836947692_0.46523929495031546","host":"s3://npm-registry-packages"}},"3.6.3-insiders.20190909":{"name":"typescript","version":"3.6.3-insiders.20190909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.3-insiders.20190909","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"65b6b2d809288311a970819849e1964ac73e1fda","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.3-insiders.20190909.tgz","fileCount":90,"integrity":"sha512-Lr7ONd8Y05EhrI+zKoI5tgvO5dhuRDrK5pyOLG33DeMln8zb8w7Yc8AoIEyqvxB5Btj9F7zBmXBXJdTI3SuX0Q==","signatures":[{"sig":"MEYCIQCvXyBQ+hQqgRsAaTcI5UCzRgS6ES8TVjsdzCW8pNogGgIhAPP/ceYJOISWBhYX6JGoFGSKWaCTNV8zaOZruktV8idP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45886514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddrqYCRA9TVsSAnZWagAARw4P/2vvPjvWX739BTGKAGPV\nRh6TdvG1FtGTNaipSk+3gq2Dl6Pd+G1b6P64bV+yi+lJFpxUVMkwox6vLI8w\nu+p4gaV8a8tozq10IP7DXDVvK1ggdX9GRiv5wPbDvc5r1g4qV4BKHHEUebA+\n8+gNll9Eke0b0tclhZr1PyXTl3hEaCV85CJA7up1Ih4gKXEHvWvVVvPOFBL3\nEa3yFuMHbgBhp3dX1tBKkqTjMo0VNTbhpVBr0zlaKoChjt8KMp6OnXDxhRQU\nvHqF17XqBnYvsmHtO7/z5TKNgmxKDhMjbqdWuVLWF5MRHKbIUWKBFN+nT6oE\nW5NjEC37Hzq5yncJWosCRn4RBK9tPDiEhH4DX+d6qHxK9NR0rDebjOoeSKGg\n+GT8zw8WNKr7Pa/43y7yrb0Ipg29I6t/ewtWWZrMZiX3ZRttQeF9Y/TjSER5\no3SiYpzo1+LMSCjHaEt7uiZaPlqeYaTK5sJSHhLT4kNPaE3LwRL9VntkE69P\nM637rShSo2tnCWfNc6xd8BCCAnW23g1CMHEVj94K2tjKCnfDTVVO7LPCr3vU\n7G2cHWwQpyMQ5OBPdEdkumMm6ouEJthCX7zvuTnr62etiT0iegSgu1NHlwSu\nDA1qvA/5Ky72gGTTbsy5Dk9T5zm71qX11p8MFuGB+FhXHSiMCPnUMyv1ErAD\nt9i2\r\n=HgtI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"26655db1dd04d93217002ac87f950aba812c53eb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.3-insiders.20190909_1568062103825_0.48838339647116924","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190910":{"name":"typescript","version":"3.7.0-dev.20190910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190910","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ba6e87bd334183a358407596c7b72d3b34016ea4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190910.tgz","fileCount":168,"integrity":"sha512-MRMLdZ54zlX5jD7codJKo6T4RmarAzE5YJxX2Xky8TUI99wLhc2WUoE+vOiOBLGrvHcF7E0ONxDzeQhJMXiRyg==","signatures":[{"sig":"MEQCIACQuNUFLPyR7X7393Stzm9tieZRIjYlWNs7VX8NRYdOAiAuNfO82BxnXJXDeLy6ruxiIpiEzotCPdq/YYlWomgpaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48689459,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJddz+yCRA9TVsSAnZWagAAu8EP/RyX0/bQDCOgYJxgVlUT\nKfcBP6qsTFHie5YiGzeAyT58Y4V2ggf02weNkrHNCBfAu4Hibh/W3prJU3lj\nc2t4wHpckqiPrYIWpT+D0Hi02hr69EZiYxZq50WGuOMu2qlHK2HYKOZqtojz\nqZ6ZguXTIYHW4+1CmsLKcxOI5mJqwaEV9UHkx+Sk104GOSP12qCwqG9ROYqJ\nfimU1DgFcepXH1omaNjAjw8i/1YkROJpR4Lf+veWhJpTLFoOy40j5jnMNNdN\n4FBLd77ptk3BQqB6fOytKSIWKVY2egVME8WmnaIYhF8S3lfT9g8SOCSDNFGL\nKM2zscPQ19msc33NdTWD79Yat77EYlNnGpD7iz7NfgXk+7PHuvMrpTx37DGX\npE5dtWdmbtaKY7qmQFUn8oEyMIwsPAMps6hkgn5be+LaYdpXtEqEXV5Tq81e\nPgV+d3/ojbjLgvaMaqkAwzGVfxe9FoIZ4CCAXHZehTuPoqW0OadU16NwJbNw\naNMLqW10GGOW5cV9YQ1mMfdR7UGa8GVDEsJ9MRjEhFGFkW7Pd0fIknvUepSn\nTm+lrmQw0jjBk6wMpoS3SoT2aMQeToBv9Qkw1lBour1Nn1jtQsMWKN7ASKuc\n02lsPntNitnKeuhydJbXCz1W9AMIMZ/hn0PFq8cj+frRIcvZBs9+ao/fTntr\nHbN/\r\n=4Oji\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6cca05206302c80e13c1284ea23d374f95a157f1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190910_1568096177896_0.21867126724760722","host":"s3://npm-registry-packages"}},"3.6.3":{"name":"typescript","version":"3.6.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fea942fabb20f7e1ca7164ff626f1a9f3f70b4da","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.3.tgz","fileCount":90,"integrity":"sha512-N7bceJL1CtRQ2RiG0AQME13ksR7DiuQh/QehubYcghzv20tnh+MQnQIuJddTmsbqYj+dztchykemz0zFzlvdQw==","signatures":[{"sig":"MEQCIFGJMw33IsBn/iuV8PNA8Ezf2LEIliSFjYTGG6Fz59M/AiBVvD1VQsl/D6/D74NsBj8YiJ6oWZtJTxemjBvOfcDqjg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45886389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeAsOCRA9TVsSAnZWagAAp8oP/05OZFIwj1BM2dys/Cay\ndJZwngW23djqJLD2Uw0T1Nl4zxN+4uBT0zkTCCep/D6ac+RvFBrl+ibSzpWi\nGWN1qmUFyaLE9MN8r1qma/4ykQkplbS2YGThD1+x6RWafHGKYzJ4juUfUFXK\nefxxEKUMNcHHVT5TfacCo5m3vIm/TE+03Mloh9znV4VPoxjxIYrgGRvgKOL8\n5EmlVsT137+2NqwFNMlvBHSPMgg3hevqVRusowwi5ohwk2bWUyKmMjZJLTSu\nmwqU9OihNqqNnNbquGBdk/ZxUPQiWjfhQ9yYdeHODQkW7oyk0dlZ7BM1GiOz\nNkvWLhyHw+ld86QbIgbYvWmihinpcTj5QsUO7eiOf4u6Op7WvzDbx9F89Jqt\nTMZoxw7JiEYbi2CyRujONMc3oIAq2thD9RQ/xIzLDqdvhnSRLspumHoEdNOL\nppty/POjO7OO1ARClApLqvEJfawY47Z14f2457QWbVQoJq9FR0hgrFti3vGv\nbytU48S5srXcsNnkqpr2j9Us9SAVctQL7ivsH0MZ2fyeBFUpimUivOo2mc+t\nxnGiW05ijj149XEFQP0qXuw2K0UY7iRapOkJSCoyTj9ziZyaqyDokhqq45Cm\n684E45bN1fCwDGcB6ZTC74nK23KjuDJup8xIFQJnvig5rTDG2jsbFJhfAmPF\nMGk6\r\n=SxdW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.3_1568148237590_0.6457580421111222","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190911":{"name":"typescript","version":"3.7.0-dev.20190911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190911","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3182625807fffc377e2e2fe300603d55e5388d28","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190911.tgz","fileCount":169,"integrity":"sha512-bJH9nXpw7YnDa+ZSKk/KQeVKtWAeeGVd1gibtObUpaKhazMG0Vij5JUZDpo5MqzvpeAN+AG9T1dh+XPejvHLgA==","signatures":[{"sig":"MEYCIQDArXyWPam7Tloku/kjhCdHjmi8btB2/0d7+CCu3i4oQAIhAIhKhAsD/pl3AFNSfQW47Udr/r1OgCxVYO+xW2xglGhk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48796286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeJDXCRA9TVsSAnZWagAAwugP/3p7kDaUKLpYwugoDYXd\nBguKN7Wil4A6YMW1NhVbCgqpS3px1e72WA+q3jIj4tWsJJ1gFUq64/uyo76J\nYIFeqvpfgT7t2CS/Kj7e40uHcunJve6kraU6if3ykDMwJVvmWFxZZOl+xV1V\n82KfjaCtyaoScqvQXV0Pwodg3q/4L63KmIDXAWzLkvmBsyH6JgKdS+oEyXGB\na+roDtbaP/L/WcELrSpLMT/ZhIaNAM55RloduKTo3G0oNM7cp/pI3tvfIRlY\nC2WBJ12zYPjgqi1f9UurYi0edBrtEVTJBgwyfZHNIjvsaNYTuMc6M5A/+c7d\n4nN2LhJUEaI1/y+mxa5i+rU/Hz1RHSEwjTx0DDsvnarUS91j8IQHJOPTmDsc\n2Lz26BDMf1mSe4xC/LkVlq0Dzl59tueeVnFnN/m3MLZqcVETDZrtEeAt7Z3i\nqGBwHQVhmKb7Hks/BfYQpDJkouMXa80udnFxRfmKkXUlusrSpl/gxiDA8lMs\neQNU73NAkbX2VN/3N0EMWl0WGGpYhoZz/4YiKZhP+9oOvfSImSvdZ8pmo8/M\ndz/ElDL3VmnpUhvZt/kFW3W85WLK2pTDx9U7qlr0rv+wYLlt6vlxVriEkN24\nF3I39KyG3KYFqxu91/S0CII7//HK7ivW4Ys/E+5Bz6HDM/6t9lHzcSHopjfu\n80ff\r\n=wY3+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d7c83f023eeb16027c5942b8156207e9f068b367","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190911_1568182485688_0.020263739015760285","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190912":{"name":"typescript","version":"3.7.0-dev.20190912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190912","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"582d21094bfb78ff1a35436813923d2b84f769a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190912.tgz","fileCount":169,"integrity":"sha512-5rAOCT1CLjQ2nYeKwa6SOnpSW8N+EEFE6WbNOLrzsSyZwYysE1oHCw4SYil3ZsBVtiEmCYnPWck525dOpgUHDg==","signatures":[{"sig":"MEUCIQDgZEhpIy7HUgYUTNMzzcOvb+bLcNZ3pLX/o3BTPA4sUAIgMwfeh5Ez6KsSwryiJm9Jqpe/nt/EyZQzULzF+CMR2rk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48851592,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdeeK7CRA9TVsSAnZWagAApWQQAJo6m+LY/DEu2etoAHYe\nu5rwMlWFv9iB4cbIKoLCLfdJNWKYGmrt5iiWH0gK4O6pUBA/Uu2COi5XAFS1\nI9gcZIT50/JuVJ5vlNyQc6ycfOnSKIKZW2QBlViZpXsyXPh0Ekxn3kZieoLz\nqWv+zPVrkALFlRUVbUim/YitSsWWEa07vrJwu0R3PWFzF6YKcOJlodA+YwDZ\nQz0OhreZVeuHTnwGbZdpLy/dB/wszmp0rPS73ZiQ2YJ+SqOhVIWcvNZwbys4\n0NMrOrTh3BHct1pTgaw+HUYpWr19b1/lofJXHZPfso3nGKwritG1uP7OWrSt\nlB6Oyx2jaDis0s7omufjszsPFk3oCdAXSWiTHr9FaJ9mfdVuF7IoUhP3RlHN\njvhtnAHjl2jcsIMQM5JWjNplOxAOFUto1+18NshoU17cBUvQM7EX4q++528X\nVdTi6LBzZxShj5HwWKcwtYk+M3cy3aF6ATNiKDp+eBpGxJCBba5WbQAD3r41\n/jRftfwm2kwo568yrzst6sKaEUEbYFF3OEoihSiNaXyFUCEh9sF5Y5vKBoiG\nqDpj/Z0ArdW2oZSybwhXUdMJ+VuEehtH2CJ0PHK9/3yafuId/N0nFreliKMX\nh/NeE/jlDCZ8zgQKQn4UEc07Af1zcVk71CD9DpkImvWXAsT3GDEDjJlUfCoj\n+K0w\r\n=pu+I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fd6fbdf7fe9230b64127fab39b29f7dfcbd7d7ee","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190912_1568268986683_0.02226936223026521","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190913":{"name":"typescript","version":"3.7.0-dev.20190913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190913","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"bd0dfbf58922b7498970099b75b728fe3a53b7a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190913.tgz","fileCount":169,"integrity":"sha512-EtdQ29mYrPAlu33sDltK3XxVrjfeIJYMrHTwYWlBqOstnW13DPYODm40aflJ+KzM+OTSz3kxz3BF7BRhmFWVDw==","signatures":[{"sig":"MEUCIDeSIpnCKCtGdcOde81qwSUknb0HTz2DYSKb9aOF20xrAiEA9poB4fvpHI4Ww7qr/6S79MecIYJUs4ERfDZQgjlk9Eg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48853446,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdezP+CRA9TVsSAnZWagAAms8P/igfPC50cCq9vAVmb504\n1ht8m7IU1LltTgqgCeQEm4bVb+XYM+TzGbmsgb4w/xgZZpKWLoaa3EHiMULB\n0dBX2ZGQ4mQcIXeseLwWYRrCgcCu1tetDjFqqOO82i3VUb+UvQz60ANEy3XQ\n/hV31UkDFltQTbcviIo+J2Srwdd3XwjtxCjAVwo348xBy8jbELaajBh4Ocbe\nw6riyzkdkYlsqBQ3djBlF3NH6mssusGHC7FWl2UvIhhBWG00CZwiQeMioGYd\nHRjve4sENZUHUXPb0OQfjuUwQxfX1+hBDaEPOeC/4WzXZbFew5XuSA+pJmBr\n0YFN8SnQ55UintacHIbpzKwzgd9/9KrW37Q9zA9L7ctx8ZMMDphMNX3OkK46\n+AXbDULK/Hewtb+RnU2iyBeSyYob9bWYg8tjJrqA5Y6YsDn9haAqjCGgB/B7\nsK14MJiv+t8KIeX0lRe2OiAN5ylSPY5SjcUfJHr45qmj5yK9MCPC/CuZhcej\n06O2PVR42pSmdj9DU1g2RxVEfSgRY/j2hpIpHLWubSDzIjHNxI/S3hwv7dYZ\nzFyEyTRZaopGh88C7XqqPotPZs93gKh2Lwi9FoawcbCTp/VfgWSLdYZ+sNqG\nwRxLpOHdIpgrXY796BZiBDTihwr9xpGyBLORqaLOThy984urcCpLeQpWyJtS\nKwzF\r\n=WE1X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a4bacf3bfaf77213c1ef4ddecaf3689837e20ac5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190913_1568355325111_0.5158688953309958","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190914":{"name":"typescript","version":"3.7.0-dev.20190914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190914","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0602dba3bc065893eedf11f451bf4e2f51df3039","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190914.tgz","fileCount":169,"integrity":"sha512-35V22e1tsUTY2HMk70vKt8M/18F2T2tmVVa/tx2+xpAPA/0i86+iQ13rSKJWKujE4vMS1qR09nlJNoXMZj4B8A==","signatures":[{"sig":"MEUCIQDGG9aCBDHiosMVHAchmUidP/UX5XWrzDiAS4obUM6pQwIgGg5l+KggBhYj4aWATI1Edk62A5cpc0bw+5OarhFcIK0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48853492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdfIWoCRA9TVsSAnZWagAAqyAP/R06KMeiZJaOj8XD97Fo\nudrtB9cbts1tg6UMd6wzjzQ51ALnrXAti/fO3pbA+p9B2fPtFLgr9CNBTgSV\n+1HV4C/KA2Di+kJmWjjpsHPmhBSwPkrFlATB8tHquaD6RfKEJcZX1M6Z8jTE\n62UrCz/vK9J3h7cUmQj2PNQEDByJpRZtOtGtsfAF1ZTCDHCvXbxRuO2IGLsm\nuihRQX/Z4eB1A2MXoOMj7rSN1JfaOL4ycwWBU/Mr16tj+uEEE8/83rBxkWdJ\nrSgr1K/7mH0790eT3UroH17Cm0ovytEqE1tbtvO8EpLE9MBTw9QzI01dtXi4\nwblNL/K13GE7ha7oQeNwA8E5icKU0YZOB9WzJ7tgwJ7zoCMFi698tOQK2bkc\naHrUiB58NzanL5AkEUrcqSijin/lzhGnPmKnI1tHMOdBZOgkUIWea4eKXsbq\noNbQkR4Ms3D1yP5DFiz/LLrehQ2EcEcYpd3BNle12lR4BQ7PcAuUye7N360t\n4aAlRt99J1fdSrk83Trl0OT5C5yyO7DJoVg9U3Ikc7ovlCq7XMr0Dy+XcqGD\nDylcYljx/PKgISZmGxLoYwC/4P176RSVUopYGw0Wv8RLWwjDiE1fCzv1cCba\n1eZeyOZSkoNc4lxOn6ma12IRU1AOvj9+5LfWildYffqkJDiG/xufxR7TESO/\nL5j6\r\n=fL6h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"038d95144d8b93c2799d1732181c89c3d84362d5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190914_1568441767054_0.9264114046531327","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190917":{"name":"typescript","version":"3.7.0-dev.20190917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190917","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e864b101456727ca848ff4dd2759277f142ec5e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190917.tgz","fileCount":169,"integrity":"sha512-rOTvzzW8WIGloSlhDPjWWP/dJYWWBpzwZT0ciOAGRP4HPYJHqKI7RzfKwQE0D3EwJiuXth8bgs9coe9B3f9NDg==","signatures":[{"sig":"MEUCIAsLZANKVllMAm0Va2+3vtgnHQq3WxDk2gCJvwdFIPq2AiEAhxXSSj36up59Ym55IHMIX/uYsEpJC1xl0Zq2WKNGnrk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48854084,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdgHo4CRA9TVsSAnZWagAAWvEP/jKUNc4RVCYjJMTSaoF9\n57iaiBvgfgzvR4m5UOwMnL+9e1OVy+O1QQgJSEdIfNcYeDkVCkVRrcvx9r7m\nnX0IIMqVC9ScfbzTH1vvF+TywI1O4D9PEsTAQfaga57s4b+zdyfT+FWTEfqZ\nVgqkBIZNio1HoP+1EV+05vWbQeFLAvTbNkVjdAAl0ZqzFJ23aTXjosj/4D37\nnB6HEcrLjab82ThjBHsT27PIQl2LNICk+TkIrkZSt4PoqfuezG78ibSL/YXX\nlQb6xTb5x48G7gg099E2isKb7LJUon+i83L/+n4nmPlHOBeFl6eJQTVQshk+\nt7AyCzZCmnKaTs88wRxlSjzIVNF48e48Ov3FhjdsgobEVus39wCELdMpHRML\nrYokNzwj6cgIfEcj98FhQTETJVaFkW6fq/OYQeoeJWQS/p+xfKOChQy455B9\nR0+5Ds9uk4rEC2hRHwByHQyEnYct65ej9siiLrSXgWwHarbElZxNscNQF63L\nfB5PJga7pGrO3xLW3XCZW/XLuLN+qUj0nAgyVcws7p+nn2YBdNEdR+OcKLbe\nm21p3cHszdr/PHrBPGLtbEWDwM0MzsEKG+ZNkH3T8SetUrBTozownp3xQnAT\nqdButaeht4DQPuc1zhafMH/vwVIaYygMkgZx/2QNCJy49aZWCd021KTdJ6RW\n55n7\r\n=/rr2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ed152b7b0696a297b0d61f041497115476ff6b72","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190917_1568700983795_0.9528994852232009","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190918":{"name":"typescript","version":"3.7.0-dev.20190918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190918","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3a96189ea1d31178d9f5993f6047492130c6ded1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190918.tgz","fileCount":169,"integrity":"sha512-M10aqXzKH+846mzz4Y2RDILCVvNOr92k5qBUeXGBwyIKLya4EdNwXAFI7FwSlIAF1dWNSubIaOcLwd2MF3UYYg==","signatures":[{"sig":"MEUCIBpjqG1rs/5CG3doAsB7r0Ujyrjnw313KFrWEQv4Jmw5AiEA2Z7lQJvaVX6NP6r++FrE9SHM/vzQtFMsq1ih+loQlfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48865580,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdgcuyCRA9TVsSAnZWagAA7/wP/i51St6Z8cKFbKq1ULPV\nUqd7L/5YNm5Eo2ezEzK5wKq7ndd0Dw4mDlhZfVIgkO2RA+/4SZ0du2hGlG77\nB+9YsDpju/eftZo/EVsK+Ne845aGM1a1K3tnfqjapuZWKOvTv2ged3ASJDjU\nxTyGt1Oxd5Xw75ohBH0iYk1+Vkcphq3diNQpxDWnIeQoyX7uSPyi3TY+lfUy\nHfN3CUz2TMq0WqTkN+AtJ3GD1WGC6SP35Vpx4NLXrozRfVI7tm4R7hfRaEBv\npz5+cp9U4lQD3U+zP820SwSl6OTiy+QcVRMMt5vaDigpMhAhnr987DPGERHw\nUeHxx+/gEtgBP6MTGL1TojbNxpSXMYfmJGzIxH+FKXf+pESNuCOvKnobHMZ8\n7dj7xc58EeRqT8wRZdRFt2l/a8lCIc1endU1ufCz9P4K1+1wYipNqGAwbxMh\nwBd2CtWi/9ZiHLWEug1LWDA4XOK/kmyVnMX9RUd+pREzPGq5Wphz1EqOBjBF\n4OL1RfJ5+/pH4OOvxGExwokHFYLt+WyBwtOVirXWdi2CT2q6QQbThi3Sf5KF\nf/UaLRVb+gbZ5jyutwuDmLGKTKEZaUGkQzbPRGxm0c5LiYaPRiioFq4mFit/\nU9wzzXAjHWSfVn4BCakGTM6Br2sHZ056nOHe3ZoylHI7dC1z5M+o/cGuqL6B\nsEJL\r\n=aCFU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"344dba8809e82ff74b9616c872fa5a781c264d42","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190918_1568787377704_0.5875815086698661","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190919":{"name":"typescript","version":"3.7.0-dev.20190919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190919","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"efd980ef644d212c1a08bdae9fe3ec5da74b9e28","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190919.tgz","fileCount":169,"integrity":"sha512-qZcQnX8tkCkYspccsGy5PWxXi/6yj+8+GHN7FfAXlmq11nMRYU7NcVJ80J9MRXJ3PG9u5MAsv/X6RYVYu4ggEA==","signatures":[{"sig":"MEUCIHfbILXE5DNs2EQfVe/8mFKdbxeo814pVyK/IJHBjMUxAiEAjt0ToDa8v2AOFmSoN++BTINzBgb6IEiRsD4H31tb9O4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48868617,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdgx0nCRA9TVsSAnZWagAAfAAP/0NzhGbVSZ9RhhFokgdf\nXzC6QynYR/U40OQPZjy5BKHokALN0Xubkz4tl8hPUyzR0ZW4K41PpwHzgsQ8\noOBluMm4M8IFlpkU6bLLQuu++qKtGYOlEtYORJ+hYzs1QEApwmrq5uG5Jh6k\nBDRZccL/KbHVNz8no1VLVPJVlERmg4k02DkvpEcwDd7FFRIxLnHjjRhZcVLE\nu5Pg0BBLMRt7nwkxskkww6WhysZZ90sy8YbAa9gDCFNx+zY6O0clXYSYPsxR\n6s69k9pVFEV2Z27Z76M7OemeCUESg28dXnyIF3IM9sXaYiMqM05udiFPYsWd\nEXAYSMxn9zEnwwzeQbCLHmyVczbuMW3skuN9vGIGTcQKk+HjnmlyC72fveOa\n1CNtYv496ghbW+ZAK+WWVU8De1gEzsPN1QeJMQMJgrBTmiDZTSgxVX8i4YgV\nLyXArLRM+6EOAPyqIC4p2+20NjvGGA/sf5yVEzM6KIBtDCGSt8EE9+/j5LEj\nCrmZvdyaEJCI1WClx4HIwwMz8dr71y4AqRf4xsZS+XgZK1ByvKZq4vAYmL5h\nNUkcHlx4zEF6fLMDkCSOo2MU6+qtAWTwA+62491cJPCSmr4AnxebmTnWzMpy\nwLniOWYckNU6em3jb9wmwakyq2iKL9U4RbCeYnAS9eWJ6uf9AQlxS4KlbGG0\n6YCm\r\n=lGgn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5e06bea48155d3ffea13917a3bda72b09bf18488","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190919_1568873766881_0.7609009380083622","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190920":{"name":"typescript","version":"3.7.0-dev.20190920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190920","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"21d3fdc378245199542c238eaf6c6db7e7e775c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190920.tgz","fileCount":169,"integrity":"sha512-/DTQzLSdOAHewW+toV7Wt1KYj3Gg9w7ZRHMuKXEE57yUHLBpoAiAJ6o2QxJxjP9dDbNKnaMOc7yaIWWfCSxJJA==","signatures":[{"sig":"MEQCIBAbeOi5xNB66fPdA7rNTw8z4L2mNaFRAOHi5//OvWh8AiA0+2C8b/E3ZyIJmUgCaR31bV97wCzPeAfpqZyGidHryg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48882939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdhG6PCRA9TVsSAnZWagAA73QP/0nbijKjvRDeRQ+K0Lnu\nrtp6DziLh4ISUdVEdVnhvaJt6pR8ev+fpOFbixCU942FUlYviS404BBJGj8U\nycbIQ6uakP8K0HNG62yfxcPdVgRSKcLdDIDYVUJ2QeVWx0JTXI7XTiF5DdGh\nMYUVr8dIAXtb7umPWbEzjh5NY+DyelwusjcdkOb8stU/hqumw/Uu18pmr8k2\nfoE3DjuOCdrLsg+XBXVXqdZqalS2yTYtJNvcNmFR5PN+rMZIm1QVt/lQuI1U\naMZSmdVg+Pll2UoIwBZa8ku+N5n5qtWMB535uOAp3Qz8bGYN1e1hZxvLGpGz\nzyFNF98SrLlx4bmReCmKSRYW6vOefdmp+D+1afstN20xcDEcmKGdAbGaoZ8U\nrztdm6zXNxiNec0Cp2JwZUGR4tgfch0XK1R3IWlQpmwhrcaXYIYl+3TmxVHh\nNCDnYBOQiHTm016WyXcIBVEjtQr3FgeCmuQsAZAYwtqGLBpkDsm8lsVE/hrL\nIDIxKws7676IZhRZ1hP4mT00W+2XyKRWyjT1votTXPtkfYs5FBwTSRNF07Vt\ng6gpsN1kYvfAMLIig9hM1RRMV2A/GCEqpPF0g2+EIXrVoVt2JNZ5rG/Ixzv/\nOAdSQZqT1iPjJkUC+EJO1AOuQj2F/Cw4YN7Pi0iLaFh/EL4taw0Uev/cBV8f\nUYsH\r\n=7Fmd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7f004ad8dfd4d3aa047173a890c0beaeb8a307de","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190920_1568960142420_0.9163672508245968","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190921":{"name":"typescript","version":"3.7.0-dev.20190921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190921","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"40c850919e43938e169b2ab742e1b66a188957d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190921.tgz","fileCount":169,"integrity":"sha512-RCkF4N1+ntK3AsUrqpspapIOg33qMdTj520BVRMf4yZcvZQXaFxLDIyJ8kobkftrMYQKwzyiBh7jdw92SY0M7Q==","signatures":[{"sig":"MEUCIQCBCYJ0hrUvtwgedjW3fbkymU4OFdbtLhlv3O9gTv1H6gIgfxdRfD0y5XpqBgfv5Al2Q8WH7bqI2RH2B2433jKEDIs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48884788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdhcBbCRA9TVsSAnZWagAAmOoP/0NRBN2LFGD9rxxqTyi3\nnAckG5QWl/+6t3GwveYifLTdzlqb5ww6FS4z0jEzlbOwenwXrf7WEUp0Zviy\nuicYQRy4WYkJSkgWHnSUUaV4iYin0IN8MwQLApNkH3jiEOAYvv958JiSChGw\nZ5MnTkYk/kp0ShEZjkB3L+tso6rzNnZ8W59Ag+bft4M3owHwZJAAh5WfD2on\npPf/J5HMnqX/EYU8O1LDUkMEA/JnbGqle17rm4kgkQ76B4k7gEZulZStDeer\nMwjVy7fakxr4MlMKTdMiQs66wVg3cXBfa8gWcqQadGOqEDC/TMOatmcpdO7n\nRrC4xM4RzVnVLHgT6Sjon41QSc5yGYs8XV8Qv3Uu8eaGF2La5GZa+hHtLz6r\nUIgU5P3w+ssdhTohcH/dqvp0LuxxJkZwBGikLk2G8ukfGfeBdi18Du0+x4I9\nscgNABcC3+2iqbX9RQ5SiCd25Fib9dlOryQ/bfd7KzBqeMOaPJWD6uF48xPs\naC+cD3I7JiaZJ6BBm+WBgMzgzETnRmGUuWA0rBF+K9WN7xQvf7+RNKXIyJEi\n45wE6q1QyY8WB3WvTeoxTCtHtJdQH4e/XN31B2GS3QuNYCVzm+s5vjiHWsvI\n9K4pdb1INR00EnpZExGezFT7dKhi6vJi45fhQnYZa32CFQmAb1sR1SU9p/Y1\n52Xx\r\n=61yc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"10e3f11c0d88b991eaca600ff71d01a603a769a3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190921_1569046618455_0.35855949934065023","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190922":{"name":"typescript","version":"3.7.0-dev.20190922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190922","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"8b1a3cf6137b118c4cc18dcfad371cfdcf57e995","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190922.tgz","fileCount":169,"integrity":"sha512-Glgoo8N9uMn5CCiWt232X8SxHhB86ju84nqOuQ3x8AHwNgA/so2FC1LZuSpqiL8JoEeGU9enzSIzSUIjllzTpQ==","signatures":[{"sig":"MEUCIQC1hLIUABdn50VA1gr74Lv6Y+WzF32g6D/0GKKmextUVgIgeqKD9mALrftNOnp1NJ9SlSQLxaCzjP/nDAfJltYAw8k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48885767,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdhxFZCRA9TVsSAnZWagAAtIEQAJSP8s2whlGETILTN+rg\n1KL6+z5JMw6vhX+Y7425l1tvT6SeYSUQlJv+4gWwplUWDVbzjLYN5dQn/B+g\n5xXUwANejOZFx0p7+8AHg6qc3hx3AZF/Iv8pBzBknRfJC5snZwP7fNmEy/vF\nNKi3h84ZrGHbumfu52fHU+zyEtQwxoLo16mjJ+0t+WnkmhVMFqlTidG+MAHA\ncryVx2YEi9przZk5qljnHebp61RChhsfJ4mjM2GRoQD+Lj67WJ0ZmHDgRG99\ndU2xVC56jliuMquC/0L+LgVUPtIBpdBMHWbXGusw8qxgbNMpJEYWtXjL+oZw\nQP3R4lIh7lDSvRVsYzpVJkBwPyDomk2bm1sMIhCMsaBvuMkcFrqf4eMaxxsV\ngIQ67tf1jsm/rajsuqCardyeIg8mkRYRgmfTRBuAEObOL1jkIn8Mk1M0j1zZ\nDUkVVvwfnVsVuPBzBgn9/W0xaQ54ZBQ96rLUg2mSQRnRJ1HNI0KJwsq6UXo5\n+InO0H/zXZ2vCBNl3qUlo0PQVmfXb7LA95NVpQCVs84YaELcG8iINGueVyvC\nXvpcwx1jlvk0VapIKwP2+p/iyVcMy6J6vZV4R7UHW3QFMNip0q+SlTu0MdpT\nDSymSpv4dxZ7tN3VV6D+J9hVhww3s+pA0yVxyXkxPBFbR2cLh4bj4KewVpjm\nF6Q2\r\n=qw8F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5d09688c1ef3eaf4e48fc570cc3e233e78222f9c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190922_1569132888184_0.1877742256766839","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190924":{"name":"typescript","version":"3.7.0-dev.20190924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190924","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"50b3b48d7c388d680b2a14ee9daf3b7221a9f591","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190924.tgz","fileCount":169,"integrity":"sha512-LlgIJyGvkEk2gzQlH7nrRzfhyCEXtvZ5xhd1ZXm+uq7op78fHok+BNDy8XKV8jSj3K8wtXMSD+zVnZG+YcKqhw==","signatures":[{"sig":"MEUCIFsc1FheP14ZpUT/blU69RnpzHo5HQ5T34goa2vVQ6Q8AiEA9eTBrgiBCHmdsy8ZFIkxBYShGHxbqrGY3bPf7wpas90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49051193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdibTeCRA9TVsSAnZWagAA+WEP/3tKdzizKqGHsZIUhmcX\nc0PB0HG5CNWl33Sudd88RTHnJTZid4zAsPi6tHumi37ueTTBZk2+c55gMDYp\n2TttjtkLeywwzmPcVPebVhnJaVc6ayxGu0Z56ViShC+/Qj8r1ZvQPus+oKnD\n7RDX3a7+QasntowvnmZigbsYL+HO2eJI2w3poWZxwWnVWdT13LxeOQXJqd7i\nbFCJUoAKbqxTYo9deSfUT/GxUTY3JXuJe0v/lIk0PSj1lOeJdV1wL4x1FmPz\nkFCwCSO4EvymofKFRYEECCgRmbOfVUvAMx0XMhylqGMXmwXmBN28S+JmShGS\nODat6/86iIlMH+4aadrQQS/rWMqSmp9J5a5ILA+0Nw8fCe+HqonPvm2ohEDT\n1b0ECvkBt6sXv+RmTIQbUnq3PIhhnTYSk14HbfDyafxJQT9+hORsFMq4jgqk\nQ/6+kXVejWtrtYAdJjujOvBHWOgb75MAK982rF8IBngbwviAIDErRh+1sX4y\nyU5LxMZluDD+4dzlzjICOk3Myt/BvQuW0CDRPUYb5sQA5ccY31gG2zUn5YRI\n6yoe3dSHn6nJ5vaV4O2LG5TSUWkFi+NaIMEKvpnda/p4DcOEwtIQJWwPhmy7\npX5Y8GCr+1lkX2XB8Te51z5QCYKh4KuLWVnE79P0qj/AWB8iPiX89jINC2Ka\n1jVn\r\n=XZop\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bf992a57f61afcea155209377581a2b88ad93fce","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190924_1569305821051_0.7774017664054027","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190925":{"name":"typescript","version":"3.7.0-dev.20190925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190925","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"76bee34abdcababadfb5bc337ac82ec5c2ce93e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190925.tgz","fileCount":169,"integrity":"sha512-rWfpU3cOgcHuR1a6YRDN4W56BLQMs11NILDfLwpO19N0yY+gfHS2G/FayDFaNWVs8VGTY3fJzVEqIeXY0xRc1A==","signatures":[{"sig":"MEQCIEZ4v+a5n4kYEBTyFsawUJK14NXQ++jdjqpJwEtj2Kj9AiAvsY1yFNHw9NdMA83V12FdUjHjZn/ZrQb7d2Ub+L8Q9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49130647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdiwX9CRA9TVsSAnZWagAA82IP/Ay4E6HPa428iv/tVGsd\nCShcfLsgiUlyQx9qMJ/OpuXZcroO8p278BFezhyTJfDJpSG0U9nixyUHzA13\nIP55Ew3q9/MuCb4824Eg86vzYKfzIp/76KWC9KTE4LRUBJz8GPcFe91fhBn2\nwY+KHae6daOFveZs0XZOoQlQwVuYNaU6HWpnzUNrfu2zMfMDsFapMsonzDh7\n9I/b7+AbjkqNrZWJEKJtsfVksWaCGLJ7YFdducDdDsabQxC2c7ERNTEFwhe1\n4aBfyoZsbYKJ49KOrUioH+TUFIkWoXNCPyGKEkrgyDo0sa9OCrRnhlsXWt7w\ntmC6Mlsp2zvt9QpfVRxwTgqLl3dRVDQB/7kUTu8o905tqA+t9CZDjWbRiHop\n78wtgsDDZpT6fC0hOWFzi9IBEWPkBCVSC8u7rtr/82TDOhka3RNCDEM0V0/Z\nfW2r7TWKB6GB/2CkDVD0bN2Tuwf9Jpf5HjyXelBjjMTMZd3QMvqdUBVP8OYk\nEESeXFRgLmv+1EGuFG09YU/9AaEC0iZottpn27vLu5PKi9s2Kp0SBaqGyQrZ\nCc0vtvVKiO8aZVcGD0hUHXm9pAO+dZMnS+kHVX8AsjLgky2Jdju7pL7PmNfz\n0rh+bS3i5ws2dU05jvA61rhV9OVQS0v9yUu9VErTQ/l9/L/oLMz5lIQ67gBW\njlsa\r\n=u0Bl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"992c211c22aa35b462296992cadb0ccb68e70ccd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.10.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190925_1569392122342_0.5135728908492723","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190926":{"name":"typescript","version":"3.7.0-dev.20190926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190926","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2e90fa4e56fad0fddb87e4d837cd33c7e4a55e7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190926.tgz","fileCount":169,"integrity":"sha512-uOQij3UHJnzxY/8Kv1kdmvWTjghgbCD0kBOgVGbY7Rni8ER51O8iPMmI4YpanZmaiZbPK6zUaS60b04/2C91bA==","signatures":[{"sig":"MEQCIGtsnjbcVvxmHVupWtompvaglgRgvYQyhnPltAIVK+luAiBgXMtbQH9EGUeNE4FDUYsAnnwoO2GE0syTQgLloZZBcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49184299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjFVCCRA9TVsSAnZWagAAtOEP/0X8DqdnxD+7B2nXkR+f\nUEczpFzoDgkId6p0DP0psaH1/XcUP7GGK1arRnbIjfgT7Ywt46bP8YzL1zEV\nmro3nTfMrRrRQnPqGGA3o+ucn9yLzHYob5LJ24krMSLsfQwFm65HgC5gUWuP\n/Awu5GFSvvEzh9zVx1a4S13rtAMagKx5txJhgvdLzJqwUHUNsnO+NOa7HwKD\nYPpoJE5S19JwNU3zaLH6X6oxHSzD4K9TR0sMfuP0Bf5HWqX1cThOBWbJgXBL\nvJQXDv6W1+mO7mtI27mwLsdT2YfL6Ky07hqvCiw5etEXyBJQdLQelQOp53GI\nPiDqXDoucC012THjHWjqHpxWi11lAwfUB+3AYL8JPbCZXKb/ywgt4RiWtDzb\nTnr3objW4jWvHSm26eMto9eoXh/XfZQDwI6be3H+PalYj5QbzCJDDGS0E1pO\nf3d/Mc0LF90gC76JeLS0+BfZL6SD7bogNEeDAMARkyuknAtQpfy1XTgDQdOy\nLnaGJAK6q/mypLJCr7Z8m+kHmJII6fr652nk/Pqr80RS2l8F6ZPRKdlIGUkA\nFkTXFUBDWjBrZELGvwciGUaw2OookIZNrLsCCuZ1EeyqPIgJs5G9EYkiWt3E\nSitYutObAI7ECqEkufybUFWN+L4tOsNo4cnH+zxMiS+Ye5DYEnb5HjJp4E4V\n7d5/\r\n=gPCb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3dd7b84ef82f5985d15b20ac0c150302bcdc49d9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190926_1569477953689_0.5195131524601184","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190927":{"name":"typescript","version":"3.7.0-dev.20190927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190927","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3570a865556e58ee2261fe4ca78907402ab4e8d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190927.tgz","fileCount":169,"integrity":"sha512-eLBqjn5gudZZb9MZjN8xU22vS9QUaWMMtfhnn5dcB8DxXutE9yxfNKAgyRXTgz3It+A4BKWpilNVZuZRmZUMOw==","signatures":[{"sig":"MEUCICnqserS4yuuiS9ATDEripCRr2gK2dg6xvbK8nSmZAgKAiEA3DrKWFkI2G2fb4PQSzjtz1Wz/LxGzOlokyLV4QK6zXE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49864157,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjabhCRA9TVsSAnZWagAANJwP/RuZrCCXt4J6IQk9bzh1\nBGuDUEmVSYpIaESMlaqetdCMakcRIZwcnJnbDPWqrit41IeY6O3HVI1LY1iO\nddnjnm9PT8F4rC/ngCsJH69VMoQ7syTsao5uZzVo9ptEfjNLIY+xT5gbt55H\nB3A003+8JRe9Dvx0xa1R7XeDoayhkz60wGybo2LBERkfVBbwAIL4VWKM+K1+\nNid54Awrw4eep96EyiTGrQBUNKxOCPHWDQY0MV5N/58IgoFZToiXCU0HPaFi\naT24gr0PLQGIFBz4FPgiTQ3IMXzqGuOtpdqTHhpFZvEAYGP7tJNATeb+7sL8\ng8UqrVLNdPYPg4eiqpkmCCev5zyL0Y5xxeTsXvLBYWAGNV6JpEI/M4tWwMjl\nq3l0xx257VsdgUjL+m1Oj4ijYs8V4htAanKCYdi/XN9ULiH920jckOokGbSV\nnCpcW4sb3DqTWViuQ8eBQywQXQ1Qb8qOIXoTMhZUXZHDReGRKY0Biv6h4s5I\n1iqfmd8ybMhf1TnKdOAIkFJ7UGLVELq2nKnP6gq6STakYEnB98t2AhtguAUm\nSIyI/YASEBKakanjkbb72JJwpt/16TZKL08yuKtDRad9PuYGlp00cflRLWNI\nCRDBeP1rTof73HF9Q/Wu9xfwEie6y2hGDXIzkXaUJUXrFqafgYZGsZUxe/ls\nPgTN\r\n=uULv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e72937deff0861fb5060a5f7f5dd27a8fbc13013","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190927_1569564384422_0.17049525035373292","host":"s3://npm-registry-packages"}},"3.7.0-dev.20190928":{"name":"typescript","version":"3.7.0-dev.20190928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20190928","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7a9716a79452a8d817075ee85af31deb1a8b2c14","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20190928.tgz","fileCount":169,"integrity":"sha512-iKQ8w1hAQusfjRkkiFIhyzRiY8ifdvQVmcnenGmefXzTDvrHyyHq31nr+qY5JaMieAiR7+yd1Hg6kAlNCMYWsw==","signatures":[{"sig":"MEYCIQC9XLQLQgjfrT70QzjXQogBzTmD/ONL7ODqvOJ21IP4dAIhAL2/JsLNWTASCW9+MqnnynbCP7qh3lDFgGDL08Dg0u2q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50052726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdjvhKCRA9TVsSAnZWagAA/kwP/0qNRx12IaHLEH3nxgWQ\n7T+Uz2JVsnYezOjioBDjjgxomcLxLqdlSuOjsD36IP1N2iuCFaN+iRCeQmt9\nOOyxX07YRY7z2nnqDpNO1mNowkecHtWvtgNRnjnTQv3GJBobIfxRPvDRj+11\nq85LCPwgdciqM39+Zvi4UfZk34NA3LkLF6jJJJnLDCeLHSDn7WwQbEuvhuoG\n4yBHemU8PdP/2Db3F60WoRrmmZI2he44TMdLyf9chkoRrlCbugQw0y/f2sty\nsWOhZAzg/Q2/TkywHr4KbvNUwBF87/dUrLV2AS3Yy9FBws5enIBxi+vFeY7S\nBjgRrrsIvVg0HpNJcihGjq7qYOiGSGoZjtl0SlaUm3RjzMkQfcff4Y8b4as+\n7AQI4wQFHby7D/k+pfrPFTJFnfBBja88whPdKAavL6bRIx1Ts2VDmMAOlOTd\nONmr33iS8L2PX8cG9IZE8zQamI4kV0iOVfdxSF7U0ItpbkOS5La2iada/c3p\nwAgF2f4YOuZCy6GQd4fzD6OQvix7P9IiuRCLY6mDItL7wPjFoQ10jUkYT+n0\nEXA87GVsEHm8bPw5c7yKfXSZIvXVMD7gtvkqlXYBf/fit14WnK8BpcIagLrn\nzqWbrgW6wtxM/x3LF5TKvktYs2EqHy5iyjky6SdtQqseTouIhWgZZ22Icgmf\nb37P\r\n=hVa6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"20e2be1e1a0fb2a2f481410d24e4cae915e5ece7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20190928_1569650760794_0.156402601026008","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191001":{"name":"typescript","version":"3.7.0-dev.20191001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191001","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"edfbcb06fb1846b0bebb71457237e3787b595dbf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191001.tgz","fileCount":167,"integrity":"sha512-YdOWvt8quwpjVgVCNUr90E+5eu5u0FlFMHG3CFqhfwGTcSjPbyZYrLIsZoirZfsJOo+IhKe4xfGtxazepAy/pw==","signatures":[{"sig":"MEUCIQCqthoewQ7bJYM+rT+lt9vcvg6gnJM4cVgyHvzEEb7ZLQIgXFJjC/P9akFS9Msmcp/+ASJr6rR4kj+eKGX6sFdb810=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50360099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdkuzTCRA9TVsSAnZWagAADugP/2f06pZ3iNqAA1eLbGV6\nL8NMgDrzxPROPTgO3dRzxazxhrZW+WWJmrfXdJPfzhgQUWv2hhqt977F3mHG\nTD5lQmUFF0DZIXbagJvtAPuYLnOSoMxnFQ0yC8URFhtMW1LvWWfAguSv3J9J\nxHeLbQcJab9B4Nxyrt8Ko13AWbcKtwFSkGb3JOAFFNof3S9+w6gCNTKNzYIU\n8BLVIupdTc/DkpLjZXN7hzhv0nGzHgsyTj4eTw0GGJOuOYaY47qKkP6Bb4/Y\nmjcneV7lnRuJvscG3inIOh6AgOHxnUwnX+ilGJ6ghCg25CCYPrbqAIbELcOQ\nyQvOjJa5NYy/jTVci/Ee1dq5u3jD2gM+S5XfZPLbl/snk1T9X8C+0cXCJ6Av\nDgkb7I9S+fVoO5/6jDvL6ljNChv7P5vfPoHtzJVXaAPzYAQq1JVn/B1oypmh\nc7BnN06lGWnqq/OSW4SOKokXPCjCiTTk3XHiR90Uwi3YmsQoj5WqwcY9glKv\n01Qkja1tWaAzXDapAwGFjG+aaxTc/xx4+IULegsRwW8fmccR0KQ5sUWfc/nQ\n3bE/CIcyJFatwF2OGbSocH92xI5aqsiY+bBK11vX5TM+MTD12kf3T+MAA+w1\nQ26kd+6mPx7uBokxD+E/Da1n+TbPMepK1sphWkO7EYjplmrLsLzxt2AgW+6S\nAW8t\r\n=VJCd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7be7cba050799bc11c9411babd31f44c9ec087f0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191001_1569909970608_0.6900949832378038","host":"s3://npm-registry-packages"}},"3.7.0-beta":{"name":"typescript","version":"3.7.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-beta","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4ad556e0eee14b90ecc39261001690e16e5eeba9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-beta.tgz","fileCount":167,"integrity":"sha512-4jyCX+IQamrPJxgkABPq9xf+hUN+GWHVxoj+oey1TadCPa4snQl1RKwUba+1dyzYCamwlCxKvZQ3TjyWLhMGBA==","signatures":[{"sig":"MEQCIBX/4XPyyKFcGPukYweMpOtNYIGijxpkgKEDX+FOvaxhAiBOMG5p9Xl1hExQGqLTKePfc6OY3bGCK1c9Abb5nIzuqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50360041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdk5QtCRA9TVsSAnZWagAA/PwP/1uYjJgyybE6cVEXFQqU\n1gv4iuGc1ueU8niTin7+/cYhJX+K3QJn+wuHKBERpDJ8u+oL0+hoxLtbnwa8\nU0QqVa303StvzjVzMN5OXJGQu0x9MOBdu6/afDt+5X8lDozFMoaO3az6g/bi\nbfB6vFISaytL1HEEGouP9Ar+pj+DTw9544NUy1t55H7hGfj7mW2VZJMbqUvA\nSSNwZeeQ1XUp2gpxWchY0/rEMYAfS1/C0u5/sgkZsUMTutCeB41er5MXz0dN\nmS7LcS9Ko0r8AozwVZJQKuyd/xEcjnChbdTDZjFL6REebreumBa0/UKDfNhV\nUkHf33UWxe32Z4Nlh2nIhkE5TEGaKVxXDdZELRl+E5pyShPXVel7XJwGbK+k\nF20AuuLBAPwoRiUIYtCBQ/wjUGPkOYmojhObmCcCGp8kPZz5MBqHtQuazMeW\nyX53Eq/W7Iv0PcNiGlO4xYcLC+M27PQX4Vw+vF9Eb/AR04DC6fdX72aSZn8+\n1vwX/pzG0QyRYHMQHXwfsxjwXqJO9D8ZjmfXBhpxz/Vw+vTUvyhgTJOb2Njb\nw8dB3Yy8X/OZFaWYSuzYXj1aHv/HsyD+VETjvoplBzr3Iw9OK3mlKblHz735\nZqXjpNmmjJdti4APx8izskFT5vVoWb5cG82Ec+G4vmVof/SHsalBBFR1UMX5\nThB1\r\n=guZC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-beta_1569952811804_0.14620749338566097","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191002":{"name":"typescript","version":"3.7.0-dev.20191002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191002","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"56f378331e44fb7fca5083b91ad75d2e7e5236cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191002.tgz","fileCount":167,"integrity":"sha512-zMLQ8xx56UeTY0qge0EyPL9drdJMgArcbNVhDjrcnU3KAio+0xQyYRwnjC270xx7i94eM2fIdk+nqNj1u5w/Zg==","signatures":[{"sig":"MEQCIFg0nc2bNRO4Y0NzWSZdjpBznKt0evKubI/aNI/5aLLjAiBNeTx9lZXrFQA1nuCF1WyrfERwMlP5/J/vNx0ysCpjXQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50371221,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlECGCRA9TVsSAnZWagAAeYEP/jTHM1wsKH+pgf5vP4/I\nwtXyRLui+gKIKV6YEUCuHLSdI5YU0Rm4XLBZeemoyN9K+yXGvPDqx/99g1Wz\nDpHyZJgs8ESNnhQUIoaP6nRLNRU2Y8+KI9HdBXDXB5TwrVd2rRePUc63rT0j\nFCcxlKl4XmkO4HD7TanxdoPJoIOgudFA5gteEpbYKJMHWQh660MJ2p6ry5H3\nKg5YKmcx092hzLTrgbvQ2/xYQKCFSRatsga8xiJ2IUDp++3K0ZsWMhy/0RyT\nXQLsiacOV62PsgcyVo8R6/2+BxfUIwzLFmlm4I5PDvx8odDPc7Nva+uUK1Eu\n6uP9ioI5fIsQTWpPyk9BWVdoIuoA4UFHp3XZAI+6byoPat8u9JNAGMFKksZD\nxNH79oQCW0jp5w2QxUyWt6uf24HFSdov26JlhAWtYv66zdwJ7l+h5n0bWs6t\nSX8hl0HTxXamvKyR2c0QBPfWjZ+a/WqfizNW9PTi0M113JAbkUi+cHaUjHXY\nA+9I7TwwWZp3bxhXmRvcfaDbWy/fjDvW8ZUBnyo4VlfbS517OHFvHWHxhnBh\nZKWggfiYmwA7skYq7duw0Lf3Qp3PKOuhf/oFhowyAxb5yExDSW5UqNq5Kxw3\nPV/S30ugzByfG5Hw2Egv8gfOss92bvDDv/gD4tlH0xeYapVFXupN23RPjrMQ\naAkE\r\n=dbfH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a3a55cab2c38f70576f6e2bcd07dc8abf72db692","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191002_1569996933488_0.02084219083301564","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191003":{"name":"typescript","version":"3.7.0-dev.20191003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191003","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"938b4c37ab8ec74d2618fa4019942ae1a9b06a76","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191003.tgz","fileCount":167,"integrity":"sha512-t72YA4cJot0Ih8NCZLthoGUbGAQyg15gAeX1S9j8gASCZtj+rxEZIy/eOLqmHouVy7BvA1o/aXPiTfTpNImkPA==","signatures":[{"sig":"MEUCIQDvx+lEs4bIPv53r1x+SoYlXam73Qp9Ztw16G3JX465MAIgH8aoQvt0O4neKOgAXx+tQWBZ0HhakMjSOkQ6qXspaMc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50377637,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdlZJHCRA9TVsSAnZWagAA8jMP/3X/JmHuAJnjAZ9WnkSb\nGXbytMnXjixfwY5jdN0emfHa+xCBpPNokzanzsiwecZ3O3csONee2akwxvTz\nI1yChHjRrqi1C5vZV5JORsce7EeG3GknndM0ODLbf9v2ENh7Hp7pHY7VvDdC\nh4IpD/lJCyZ7LLZmvfg5oETgp2FkEU7x9KMzbW1A4+YwjckzA9H7mMvBJG6b\noRKyJDFTOEN0QjgaijV0WJZR6Xdl3+n5Egi9v35stW3z20sYToUX9gXmh2Q6\nGyiIwfN9W/V1CB1DrBWhsevCm2vmYqcGdaqRSEPFUv8y4RH794HFU6mG3eTD\nofGEVlA+agKmpbN6Xyc2gEUTB1Rb8+5fwy/c79gKxAZcWmrUzeFEJ4s/WcfD\nssu9fK4TfNybQcLnd/az03GXZdyKUs2sFTNNHmCa9iewkNHPj+OwKFVXEf8f\njtBJihRjYE9qKSL/JLgLkH3nBjmbcog7UWAPnu1PClbjG7O2uRnAWnMBar1T\nEdP6zMhY0JK44S1v3nrncIUA7Tyl0Ag/20+HR+4PglPY0vX5cWJ59m6yn46Q\ni+ttD0fcrqWT1JId+btS4XUsYibqD+iSq3l2NXfj6vubtPdA+8TRfASS/c/D\nHywoMiR8IAIgtCe8Mpw96Fj7LG5gDyfiMu/rsESgyR1TNfKP+/Xhx2wDmubh\nBv4w\r\n=YTaM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"98458f29c38295c737318d22a1453fad145a361d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191003_1570083398385_0.820615054995784","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191004":{"name":"typescript","version":"3.7.0-dev.20191004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191004","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f17749a9be2c650de615351e63ad5de70e292168","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191004.tgz","fileCount":167,"integrity":"sha512-HoDEBY2LsQv5STXCw1Mt/xylYhGUeymFzHWV+5NGl2hCxLDeNmYmV38tlFoCSK2RQkFTpE2Fr9jQ6OzWiWgrpQ==","signatures":[{"sig":"MEUCIQCaPtrRwmhHxtFEPr8px0u5LXG7k8PfPQ404pRwO8HxLAIgEETXDtrQbbxJdKmnYzLPWqSy185oR+YqwXiOqKcRjDE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50377621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdluQvCRA9TVsSAnZWagAAr40P/3dgTQkVSPsUJJCnIYHg\nCcRsqfsHdTyLIWr1u9hbb1CuUGkCD3WeIgnMvrBM7yNuM/TVRhMQIA0Q0dUP\nSss3FBCgQGENbqr+PxlzkrcnXIe8r8HTNqqxy01MBFSDcH4bFA7dSZAXaiuZ\nbLy5g11y+DKVY13EGJGS9m9tPwgUMol1hpfmx7lJ/UP71BQK1oeD8z5K2aBm\nNT9V3+sU9U3ryP4AHagIbEnAw94aXrwWrBcgnXuAKYbGhNoZ96Wol+5zeJAs\ngRH+y3mMBH9L7ucTKjKyFPQPzuwd9W+UU8PXwEj+A/uInyKHFJoU99EV53/d\nYPUhIzwUq9OKwiECYS13Fzo5rVOfdEWb+g48D3D/POpg4tCktmAZ7DkMFR1v\nxWDZnlleLvjx7quAUPcSjbk9Dx0pJY6dnWrzU7ukoeDsKn2RTL7UKDTez36d\nLEu3yMtv/qxTchGYwuMvuYMiudB6VTNpz/jk6C1b9LZpY6QOWKJB+TcBRSkX\nQgZmU2LkQYFci13746p6AHBWy1yi5xF+G0uzHk3Choj6u3llz3k97ShPzBn/\nS54qQ/BIOLbzqwCLyBYwz2b6BGPD06VPvYsZfA1uD8iOfpf3azE8p7SQuPtD\nKD5k31+d0bCHw6X23zplsX/sKHhPdI2UbqVpkFTc9VDg/vRuyNnhIdu8Y4Ko\n+bN0\r\n=tkEQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3c794e9f9ba4f6777f7ea4e7e666f23714d46068","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.3.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.1","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.2.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.2.0","@typescript-eslint/experimental-utils":"2.2.0","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191004_1570169902897_0.6520798643250947","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191005":{"name":"typescript","version":"3.7.0-dev.20191005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191005","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f7d630ccf65d2d84cf4b3cb81425cc9389e0ea30","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191005.tgz","fileCount":167,"integrity":"sha512-nXjfXw9lJ0dnILqSMYWzOVf0gISKb7nHxVuh0DMqgSb4T9dRkZh/+wM+/bU8STyZW50MZfsW9cFDH40i6+JSnQ==","signatures":[{"sig":"MEYCIQCnNqT7OtodM3U+kew0+C/caya/VbcpXoVrlZxSJ989QQIhAIKi1OAg2DmMOTQGI3X1hRAGO0dZ0sdjjkfgcyMQh5eZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50381667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmDVFCRA9TVsSAnZWagAATbcP/1pUlBwWI4qPRoHEftGZ\nQ5Z5Buld7LaWxuuz1VBj6H1Ue2jlAr6fNVwsFxnR2TgZbTiA6I8pjHZ7pnD4\nvtNkpu1XwIQpVw9thg970KfQUwkG00IuA2dM0CD9PKUjEeW1l3pCdsx4N62X\nPpVOOuKmpYpHH4Jyi/Qwjmbe9d4W5UFYFKJ0D+6HGOZNnPXxiVqLVyLX8QGV\n+CNC/wnGFl7ifomb2cC2RyZsDBp4Ej0EOJpl1ceOF32EukKxa3U0EEWrlo4S\njwMQme6HkDfvAvejtRHcA9K9qdpTQcQ9tZdB3DslJ3sTq163M2qeDNEU7Z+k\nl2af4HI+NAxY2chnlRMGXBozBbLJZXr6XKjoHj1HOPoeJAa0ZbqCk53J6oY7\nJp3U0pg6X0nvJxDOguz3udvGgac/PPZJf01aAZmPjW8juA1r6B/VXm1IO6/F\nZhmVNNQatHj/TrLLX9NFcVrWcGxGcVVV7w7QqmxGtjDEvEV3ub0xmchaYxja\n1qHy/kX4ov2/ohAQYU5ViLB+y8ZNK9Dt4/SCjtB+5jlkzfuXsyR0Kd9JXjEs\nJDO5x7IFfeJuTUpqbinvN4ftF6gVN93DGgK7ZDlmAyGYwcciiZUDoeJV4Zcx\nqxgG+rtmlYvibVEFe2ONtHwkjbdYx7PT8IRu3S6bEbF77dzL3tP3KrGlIeBy\nJ1DH\r\n=6Zed\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"27d9dbe64c698d3c376c4b2f4cd5e366ece06dce","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191005_1570256196636_0.8700100333764946","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191006":{"name":"typescript","version":"3.7.0-dev.20191006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191006","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b455c0bdbc29625b6f95886e17c85ded1271f588","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191006.tgz","fileCount":167,"integrity":"sha512-0uxLQ41QwguSZdMlQ5GUXljS42Ti1+AFJ1EnTsQOSX4Z0eG2bwxHDJItIRDGV6yZGBMXJ6HGapxv2qxSeW5svA==","signatures":[{"sig":"MEQCIE1ZMVH8aNFdSFQe61ueCCcVIo6l3Uwvci+NxLT7OgT5AiAKoW75c8zR+i1wIOa5pzXZoi9m/vwkwwYlMk83D2YicQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50395761,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdmYatCRA9TVsSAnZWagAAcpQP/2sShQlsA2+WYuGzeEoc\n7srnSpO8o3ufnoezvYcw9ZIXFfc4NvrkIoEghY03c8vx8uvHuftsev7WvfBf\noyQGeGxJHM7MefZ/iTjBoSg8NStubfywr4ViFuBHAusMNrjS73pGijPJCgeF\ndQ/Tb+eINMZsDUoK+PuC/cOmQ/S1OSQeO0zfCw9MJHW2BqvBdkoD+oK7hTNC\n3Thk8eU7V2LRHoZTyEYYJe4sk6IennelmcDTS+zl0uzPZAgqAC/N/8bu6xic\nocILPHoxiSwaI8D2yXJrR+xktt2Cokzy6jD9CtleJcxAUCg4/qOpkbmj0q9M\nFteKdH3mM8ZJGXD5ANosMIrFyb4kedGjarBy2MRMx1F+QPs9MpkrnxyYDeX1\nhdtuSZQrcR1I8ZbNvZpLFRFu1NMQUz9Zj9PQ0B+sPoXRvMnDfI9+9nwKSW7Z\nZsDwEl1oJUkWgCy+qgkXBQCBVJWO5U5EVkPCNVYAukIqF7oFDIoooj3ENiNY\n955DHb11Z899CKpC6qBGXEhe4qztuO5wNtivfrpdkHZqALqYgJGvleVzl+Bx\n9F5WD2rr6UKZWZYAEHJfrCyj0pFkFVxbQTfjHrY6Pgrl5RzsgfxKNmUD+VE/\n/oOSQI9k3T+VVDR77mri3c5zyfaKZisbyzqV92dlq8YfTSLRZehUWhlIKkkK\nEmmm\r\n=eQCC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"afe6f4c95c3a163ae0557b87ca4eb6c0b86a7505","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191006_1570342572303_0.09898714716881463","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191008":{"name":"typescript","version":"3.7.0-dev.20191008","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191008","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"45f29daf2c95b4a1e84f094b158766f97eebafc1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191008.tgz","fileCount":167,"integrity":"sha512-6Q9Tk1+5DvAKdIpjLNDDEJszYcDsaagykZtE+INTwGydt0fPffrB+M6/TDWPu/iDASjWLDw3HBC02/bEyFK1aw==","signatures":[{"sig":"MEUCIGrhTzG6lNFtqJN97S8EWTWvtmo8xm0MAbHj+QXXfZ7UAiEApMItkE5b3YfAX35v5lIu4l42qOwqlMPoNvVgJIVBuGE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50423790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnCnGCRA9TVsSAnZWagAAoiUQAJpivUCnifP4FnoPlUBt\ne7wSpsXSNDp6uFRHzvNAsvpDrmOGx01wUIYKKQ/HACqWzLNjUnYFXzwe3Otu\nnncM8NWyxh8YjASLMQitXCTZop8yTYH6xWQTNHNB2FrhDsIYk4RMvUP3Kb5m\ni2TRwT+VYXWKNdic4QTlAHBBoaZZQwkozpG3vGWCu8nNX9FUrsmUHVQj+ppr\nLOa947rxS+ReSX2k4s1rwlZ9DpB+Hd6yPtOgSOtNYd6TQ6cp5CMsz2sDcUXB\ndW2nTtK43wStpNL8Vaox7ir7MdyjgKT7sj1A1lZn3j66bx1WpH4LEjwjqm9Z\neudMuTjyzzPuhSGkZreg3OtSugNtfMaXJwkt8EiqRxkdQTu2tX3q7jLX85w5\njpJtp/xdKRFw0x4Lu34RcjKIJT6P2oikcjHz1rcyrDShrlphAmnfNVjY+Egv\nSUyNkwiX7RvcCDr/VDc+k93JkIvhuQo2uDk9c0XV6WJYJyE7O3ptDoSAMvJ6\nhVlPgY8SII27tsSHulMP5h4M3p/HhcnJ229olprxqo1tALyWqDLWMgSVj3l2\n7t2ZTUbBWaPgTbdItov60z4rKTHObPZCJiRGJXxiJJdNON4XMEo11ViFq6ua\nsuNTSfxKDffY13eRMLiRIivwx82/0dVypCy9U5Ma6NyCKOtV46xChRWspy1x\nzeXY\r\n=fuEs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f1c0300c029b20018f81247184a4fe7370700436","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191008_1570515396814_0.6706438005117075","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191009":{"name":"typescript","version":"3.7.0-dev.20191009","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191009","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"852e49dca797bb35acf930583ef65e7b3b23fc01","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191009.tgz","fileCount":167,"integrity":"sha512-Vk/wZedTpVd3QAhr3mG1+sbUHcpJ1wfw49Wo1NCQvzMa0vHCJeocEwWzaV2yWprsuuFv4+e8tjCj1Vnme2CMHg==","signatures":[{"sig":"MEYCIQDn8krjtVPFtNlvwHBSXFUE89mxJAmDZDZCGDjhGsUh/gIhAMixhGj/JA4AyzLcreXanGHIZD/dLgKhVNQp9Azv3daU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50423790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnXtTCRA9TVsSAnZWagAAW5MP/iFycMXx11lnH0QDh7kN\ntSNISnGXnPc2QHg7oIGETw3AdG6K3HYTiij2VeFl+56nu2h/t+lhkHzz5ujh\ngXTUBNmgXFFcO6KlcPlAc9FU7w1bKi2yKe3WLppbTWVMeYgYWGVA/Eb3WS2U\nq8f2AkvY4gig688PT78Z8RHEfR+DPrtfOzMdiLI9hUOFZU7MHCZqF/968uG9\nU8faMI939Alyi7zJIXs9bKatyOwHdf9E+I6OvoyckuTRu8aqtUN6YDwH00zb\nacLZ5Zp4DIZysNEuw1dhNi8dhn8/sq6zb/LEu94MMMbPi258uePa4cegCfoC\n/sKDp98ky/aQXyAy7Y3lYWauU5Jg9pq4jseBArfiVqXs2lVCjz5v4KcUYkwY\nrSbMKuaH0577zkKP3A3il3bPlxN7wScvOxS/DxTySz3z6rC8KkDmnBfpaGqO\nOeXRPrYLZO6CjVz7m73IpEI1wsVhmZNg3D2nS9kD+cjnUJ0z1XMSrQyscob4\nCWDaWoKavD3UScUqNrPWlon2bGSDsj0UY2LVdhgYQvbE2XZUDPiqlSSJOl2h\n4ak2tAJ6GySWCXg6AtcdC6bQXUiWJ8RFestU6cChoLhpan2JwHL+zASyDZHa\nQeY28eR7vfuQykiHzSm2F7k3GWQqS37zDa5dl9r8P8jx1z4t6FjQNqQmMv8L\nYwnq\r\n=IkEt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d45c54572b8e8482614b98928088218021dff76c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191009_1570601810560_0.7446932226134784","host":"s3://npm-registry-packages"}},"3.6.4":{"name":"typescript","version":"3.6.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.4","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b18752bb3792bc1a0281335f7f6ebf1bbfc5b91d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.4.tgz","fileCount":90,"integrity":"sha512-unoCll1+l+YK4i4F8f22TaNVPRHcD9PA3yCuZ8g5e0qGqlVlJ/8FSateOLLSagn+Yg5+ZwuPkL8LFUc0Jcvksg==","signatures":[{"sig":"MEQCIBiLVRAQdFoCCXeiBC1gLJ4EkXS2StNNt2qEJZuwRyp5AiAsuJ3QfnoVkCmg+0fvtz7q+UPNjrpcxNG5/a5fWON9wg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45892504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnj/9CRA9TVsSAnZWagAA3kQP/jmXuEARuCX4kNYUf99u\nHvaKzAYCYyJhkzqyZZwZwuGiww6JleZEy/C+ErE+GiQ/ivKXrQkOD31BHkjj\n+4HpbhxUTwqo1wngLSR5A/4zm05cGVffS67N1WCwekWNSEZC8UZeY+MrE9ZR\nz4cRhdgq49pWIW4zzEbywd/HFq/0M0olLh/ZWGoJEunqQ5j6RF6iRM/pWy3o\nVl67cfqwTrReYaClUBbsl8cjLSdlXPigT6zGBVDt+cZ3LzA+83cdEiaLp8ju\nDe58HMy0uwnma5SYxN0m347uuGgtT/wicE/a3/EqH+KmvfDK6PX1OtrzUgyf\nU8NlEIqg+zBJ4x0XQVgrKHaROXvl3i52Kxw8yVMdjV1UpvV50flhTE5FoPwg\nNkvw9+Q61gU9l+arzqRZY//8Z+S6X0oHuyGDR7G5x+3+vBZTQtjW+bQVR7X+\nBbFK+D8cZ5sAmqEDsLTjsS0OTga8XdLr46eBEopOAk0BgUhHcdA/gHuVfF4s\nwl+El+NoFTbL+JKZdr5N+8Mkw7yICz+UoO8zqaio04bQMNNBDg7H30nIZfNm\ntWmaB3IzlRdyuj+4OFLRkV9bEJ+wyUKI7VqpcwZmMUzpbPxgsIfgRvB3L7/p\nONNAyQuTOAp/S7DHgilap2ZIoiEToTB8FhAerG6nLnfeGG4kYGzlQ5fJ/+Ta\nCoe9\r\n=3s5r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.4_1570652156361_0.762035099868525","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191010":{"name":"typescript","version":"3.7.0-dev.20191010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191010","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e2a8d42b0586f129597543b2694a304335c6cc94","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191010.tgz","fileCount":167,"integrity":"sha512-mVo3R9cDL9OAts6dMPStwICr188gfojYgdUlzNZBj41/HCONtRdwoAe9FTNNHiTyQeCRJHg9O9udwn+dYWutJw==","signatures":[{"sig":"MEQCICUbws8jSOgmqRDMa7l/kYoDr/8HVBBTPa5Va9aM1AEpAiBdbPEAYmIedImoHmAsmo7y+0UBB6iL+cz9LhKJeQoIlg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50431397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnsziCRA9TVsSAnZWagAAVhcP/A5ZB7BgMMtrsQZ9BVRE\nAlsgbfR1UaVGG5UdyzhwHiAoOGmGm9acr+kbD2sXzBXWX4TEc/ZuVmU7N2q1\n3CmhcS3lPVTehdSIJ4DCCK9iulKt374qWK2YGkXrLz+4lGG9l+uhDtidGq2a\nfzOstf1mmwYvcet6vdmIolf0EFGV1aMujWQlcQK5MuOQKMEYyBHotGFt4o0i\neQXTFMBkNBZNCqw2Dv5Kv13KCKMIR9tzDLvTdqL0LPTEJiaG28ZTkNmQkDRD\nWs/PfLOeNJzxOyPFe/UQbBM3/zcCtBtP2gogaltALIZB14KmfZN1jgHtpHYi\n9qm6P4OL0H5Od6Oc0kkrFtqMMMk1EKD0RQo7XuKl/Ja0Zql6sjt0V4raqF9f\nB2bor/ueQbaIgkqTU4QotvcxPU+SddBmn/Eg8LxlO5gvV9rTPmO/W/QXlTKc\n5/aKxS3/CbfMgSQ1uQclXOAlzP31XgejnL0B0hyDj6zDGv8wg6df6PUd9H7h\nbGx9Z3RK7Wrm/pG8Dz4pG3Lt0K4dgE/MV26wpVr6LHNIcZ+/b1yF0HRZ105W\nYY8gVua5EjTQvLBuFQxWrceUcUvC/jm9YJUgLtRQauJmI8HGEQ5nPSBV3A6T\n/Qi7d0rN/bi0Dvy0C9Z0GOcCD8c3RVmbYT+5g6JF+UmoXru/LmssbzsGZzEO\nyi0E\r\n=fk3Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3c123b61d70b2c8d9b52359419dc66a1f1f9e408","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191010_1570688225552_0.2756206617635746","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191011":{"name":"typescript","version":"3.7.0-dev.20191011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191011","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cf75edcc5d3feab16fa312e62edb2ba8e821d412","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191011.tgz","fileCount":167,"integrity":"sha512-p/dukMW4mAF0EUuYBDPvO8/uxWYIh4r5Gh4IFtBLsrKmneeVkhlzWB7M3/5kZ0ucWC0BmFxA/6g6We61o2+yfw==","signatures":[{"sig":"MEUCIHJNE6DAKA0YoARpueqwSY6J9laRXCBYzwxMI1kg0NtoAiEAyA+XLZB02c2wgw4xkOTYIjeX7bjA89/BXTAsdVqsAvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50436069,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdoB4NCRA9TVsSAnZWagAAEVwQAIDNka/TSM+RCWvlls7p\nZThb6DKZsjD/fR4iE1gvKAcSBqDiaXANxDEs9SKtqXhgK+M5gILA4EJaCMRN\ngIfoYmOUhX7v2uJHuk3CYYMKDd+tLFE6ibTYKK2kV1KW0i6EXycSw3EompSz\nDg5VTub+/2wTgm7pF7zabWhXe4+e4si1ii36kJZcALqkBIa4HmbEBy+Orv/b\n9oGXEgf6led+bD2S2lkWNzEv0LPtb4qaB5JYi3/m4k9RbPrLviaA9bUlEO5d\ny7GILhCWsIOPKnE81D6OHfkGO66q6xE9CA7Sd61vccL4oC7yAaemgr0kdUl6\nXalho6pSPQep1nZvql6/jutdegeI32MZWzR1vCoP0cYcMhLsixrPafA4MWnG\nHNz0EjAi1XL8EsXKSMdLxnU/kLUL8/xi8xyErVW6q7ciH2WHgIgCybUIpP4V\n8WeH35PEhwJ+I7nTUjIgxb8iL3B9pqrH5u94fdyP4462yv5L5tRiVUwgdTLs\nSvgxuKHeWYLTDsKAmfBoalWOnpKsfRBaXsCL65BOjfd53CWbPZbf4O1v+zxX\nXCvBTwjXzoFslwU39bCeUxxmtcijaIwNjA5bLoeW4f9WI5KFk7Ln2/YS9/2P\nLqissKHHowozU5eAFbAIqr9KwHtNcMPAxniwv23/5ayNDnrSSwmtQvnAP2Gv\nbF2Y\r\n=x2pu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"35a6426a79176f047a93f69f76e8b9410cf16654","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191011_1570774540283_0.16295112218011765","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191013":{"name":"typescript","version":"3.7.0-dev.20191013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191013","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a05c662f91826829ce8f68e02507a2efa40df1e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191013.tgz","fileCount":167,"integrity":"sha512-YQYixdtIJJT9sLjbmrZ5WXqABas3DfVzIFVQj9mT/NkU16k/7mtVnvJlk5O7UpiZ3N5QsPzyt0Isbmu0eu2imw==","signatures":[{"sig":"MEQCIG6qMuReA23OkPcQMZtP7ccMGSeHthvpIfVkGIV/QegHAiAHJgEQWOIFSO0oSJy8kpNfTsmjvEm75nEqzIBxQD4JZw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50436077,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdosDjCRA9TVsSAnZWagAAWa0P/jZwLwlODDY8oL4kLMCH\nKfg38H0GB+pQrnTh/r491Y0R7VYEWAzPssKPjVypsdpllVj4WRKvTGel4KzO\nlesYa3RyNNY4G5mcY6OE9J4L6Dkiog2/ZUC5F/+i86AsMNx5QMeFXB2TBJWm\nSllM0sa4Qq2ECJNBbYbyEQmoYk4lB5caNnZKMcY+p5+EDcAXpSwXTdcGP8HT\nXA+0lyOYvX1fZk5UxRigccj2fKQiIoH6akEwe8zOL/sDNjqkMZKO5vre7mx8\n7gEuWODjwcykc+GmTbnoSWj6bE4hrjW4snJ3dJrPLY3qUcHx3DCcfe3l1VjP\nVa+oLtIJQNiZtTGleWjNl7YFjJurL5yqyn1J7ZziDuu31/pRRy7Ea+CTQs1E\nM3wYcdMJ1JNHopKrOLeWV7KTFKHWs1SD2jaGKcCJ2B8K2pqPLVpQivuIBk3I\nW1bN9tYXmCZO7SdydFqbJHaJ2PM20FtTQJWbKW14ldzVjp2BFeEo1BNHp9om\nq4kfZnxmT6ZrmWFWEObsN2Jv4hx/wLQBSXwNgiqPl3L+9imY9Pz1t5UAWr4R\nl0gxrkPXS0e9UYT7ppJtPzCXoUpPKhLBAJnADBCcZD1tN3KHHnJGCpG6jUqw\neahkf1nTMktmGb5IukWtI8e5XOO+Ak27GBPuv9zkdYpI26Srju0IuHYGH1yR\nz4le\r\n=R7tB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b0d967bcb503d47f1de942a3cc9023a9026ed60d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191013_1570947297735_0.29963835075632694","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191014":{"name":"typescript","version":"3.7.0-dev.20191014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191014","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5c35d63591627c668cedb8cddc61a85fbeb1c1c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191014.tgz","fileCount":167,"integrity":"sha512-kaG+8Os48sMYj57/UvwkoADjvLgvDLWEwOj3HVJ3AhQykMJ7CKpBzaXwuNwfmO4Q3KSdcinGXLt9RIXLdhfyXw==","signatures":[{"sig":"MEUCIDkV0xM9uPwkrvhybf+T/Xn2xK4TPX6MZX6ZHfo8Y92dAiEA63ramR/+Dk7YVoBiay2+8y5KAk1xos8iZ2eARFBqZeg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50436077,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpBLHCRA9TVsSAnZWagAALagQAKUd5fbwn6icjuj3muyf\nL1t2cK0TVPRhVX2MqfMWCpN77n7mKy0J6VtT8uzNpVZ72AFKbgUxae3GcLVN\n9i95ue4fTk/4LZxqG4kslUmcix9ws55o2is5XP0+EtkJ73uMCjpUqbhSGuLC\n9n+0QDYA6S1asBSh3GFTcD8rBkyWIs1pL1Y/dE8P4ewvCsELDW7+/7WjPbA5\ngjWkOj77Uhx3DR+IneLG2F01hiUBfAHWXWGStID7gIzVt4VwxwMozzjfuqNx\ngSXKxh+UtXSHO2j8i9l8X4mC+NkOOB7oRZYmmorfp/UNkPEKxdI661cTvLsz\nq6oS3O0uvdHsf3rdc8Y8PozQPTSwnO71ToykgyvcMmySGZKflUlpjQVR4K74\n4164+ZB1g2hI+/TikYdpvcWOe9FShYriSlbYDauheHakIgNVoZFxLCTP3gRw\nFtVrM54XUy2pWlROGuydwWCNnUdI/0I92EpNdJYMr+P3A93BVg2wuU6XTBTC\nBuZHe40bnBdip9UJm6kqNkKZTrhCCBiJ5u4F8nBAPjNgmSK+FaqrZGTz/3nk\nCDCKdZfXiQvm1N+zWpn3IjJBd7n4sQT1Kafm0UTW/uRojB6nYjNfE78A8pXe\n6LGFUqxgDAokA30TUwmMz+gRBbR7gV0j5qtyAElfT5kO8WvKwLSuHc7rJ7Ow\nysCC\r\n=wg1B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0d750386329958617ae67ee886f77204eb5a5bb1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191014_1571033798726_0.7719243900068498","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191015":{"name":"typescript","version":"3.7.0-dev.20191015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191015","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"283a99aeb09c91963aa16adcf5cb2fccbea9bdc4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191015.tgz","fileCount":167,"integrity":"sha512-Cpfj1n4pEUVKL+jtS0mkZodJffyMmf3Wk/UjyZMGX4fsjK5KBPJf3NUlyXij8I8p1E2CAomdS5NPFrAR+z8pKw==","signatures":[{"sig":"MEQCICWkv1SLQFKJLEdJxohoGG+p0JkcTD9VKM2PcaKIKlCMAiA7qBChOSI4koakcN+2znBgxjoof9LylsVpuRaCi7oucg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50448162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpWRcCRA9TVsSAnZWagAAtdQP/ikA2WjJ/mF7q0Vg/kMx\nzhF11ByFqFo4AVC4UbGlhvFLfr/NRFaawAEx93BJjOg+YXnU2p87Za8I0N+j\nVx8HYf5lnh+4fMf/uGgEsl2G+5JeVBg5tkA9BwtoCkCFiWkxD1cpOqlLffJK\nTP7YLcYPxOKw7abCloZE+NnisB+pQtOgCaoF/mZObHOLqbvuDGsPKCxSGchF\nUYeqLJMmGhTN9gvH4bpRvVGM0I/XGMwzZBdWuXJTe4pAg0admRENnzhffuWB\ndkh0UQQMf8tipRUWlxQ1B+GEhOmyAxa0ZemCxf2qax8VPPPx1rYe1Od458Mo\n/f6hMYFXnXL6SHgZm9Jv3Utc338EFihElln/IH9RE22I9dv4qZyDxCGXNxzb\n5Jfe8P5wid+BUEXpzqz9aAYqsL5cU7JS79aZKBEwyxcpzDCcCaatNQDeZ4Mx\nTDf4gOreFVuBaxiZJIlxTj/yTEDYt7HWiiruwh0y8oXiGnaaUCrCiXx1kFjP\nUCowJXv/ZfxDcs/J0tfrj21eysdrnv0dKodyPfU+RTjf6XGTNyHHCMzyLG3a\ntiklReeItZ3WB+LDG5E0CV6Np9zFRfJ9HBdptUXS+7TjL8LqSt7aYZsUvp1j\nhW05FGI3e1cZvJyzGASoVqOeBIsmltOVzr7vLslIiJrEnJvyDXNFJdQ+Uz+O\nplYF\r\n=1Kkm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b7c85c738281dd8dd7d17c73abd9eaef8fd03b6d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191015_1571120219083_0.9588444031480094","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191016":{"name":"typescript","version":"3.7.0-dev.20191016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191016","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"80fe6ae70eee0a63c13fbb3d8081d042f702834d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191016.tgz","fileCount":167,"integrity":"sha512-4CUiTF5rEtPaClGD9nWpqPMICdDc54PTyrzwqpivz/h7mkWJs/xhQhOddiA5vx+D8ob9eSRIdueXQkI2oxOmfg==","signatures":[{"sig":"MEQCIHiuyzeD1hH0HGy6NQWrdGozl8OqzmAxy6KOiC3SB2qoAiALlK8Gt9J0jiUpFIkMLBCdSd500Ld7COyVa+eZy6H33Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50449563,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdprWsCRA9TVsSAnZWagAApfEP/RiSISKBG0UD/H/6h1BT\nD1FyPla2MUtmanGG+LyvQDYdH/oAB8TIKV6EW139L8QDbSSRMGtfvDuhM2Co\nvVA62NAiI59brZDVS6DZnLXC+/hMJC9vTIdbwXN23adu1T1sNMMDr/LRKCyJ\na9n/Pzr+1dKjvd9j0YfzlDYmY0yUFwVbXg5s61pOH2kOHa1R6qC9oc9KxPJw\n/wUrvGYNjjDJ2Jpb5DE4cAmGvv09h12NNgga05HSB2+AAdYkRK+WhUX2veDY\nBsczbyiNThbjCZWORF4LXz+4le9wVmUZvthde9pdIvF9Z6oIbynxCb0ecWyI\nEM2js9YWX4/s6PA7BLxBo3qj99RzHG9EdLrBTtgNHk4wCINw+KSLHC0NZGVm\nqOz5bXpRar9da/kpBoEKkV0XOkT78HCLY0adFk69eN5r1gJbUSN8cYMCeEoQ\npdLM7pCVc+ARuDNfzmAhaLNw5rXoXkPbjnZfbPChO1Sw8y0X+fsksyn4Gkgv\npP3WpWspWKZTAnhF4r5ccP6wp6itHD5CRT3g6Be24WB6Vp6p6uEK1u95bHDz\nrEHG6cnfTTOeRetsZViXvlazBV/WpAQKjAz1GL3oxPPkGno7KwDrbMD77y8h\nmcMKXBRg3QA4pDejrk3GYtVSzft9iB7RribusCtIDH7QRTdmvAi32C8xLTsy\nBYN1\r\n=oiDq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"77f4d9f039bf4aee97698b8362e7ed8159469f7c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191016_1571206571101_0.4869689160189359","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191017":{"name":"typescript","version":"3.7.0-dev.20191017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191017","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e61440dd445edea6d7b9a699e7c5d5fbcd1906f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191017.tgz","fileCount":167,"integrity":"sha512-Yi0lCPEN0cn9Gp8TEEkPpgKNR5SWAmx9Hmzzz+oEuivw6amURqRGynaLyFZkMA9iMsvYG5LLqhdlFO3uu5ZT/w==","signatures":[{"sig":"MEYCIQCRgaio7b5QNd5386uDr9X+BT04oLujLiEPrWcF30aI8wIhAJnKSHwPFwlF/1VPSQHsR09xEQO5AXcvx0Zi+hHp3OzT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50450186,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdqAc3CRA9TVsSAnZWagAAz6AP/1g+bGmjLLv0E7RutHPV\n1+KZH2SPIT+HKUOCB4atUdGPHML4FJCSyAOsXoBqicLUwOPADCkKKtpWnOWq\nD+8t162kk5o1hrpDwiHF8h5A9OIAP7yOLPcSOKU+6tVtX/dUKB4qrS3x49BU\nDOa5z0nXILJZzW0UsGnrljo7RMGyJ4cX8rjWsbXG0QWXhd8EGtPhm9JPoBPr\nXSIh4dtGXejCUd76X6QZ0a/luKngwi+Z0+KFURjwpggprzhkndtVLZunIuli\ntaDisgNLVu1ag+KeeL6VSPW1ZT5W4qb2Ck1AhVenp36Yg1LlNP3V4ktakDry\nAhiBMnPFafOXtCISe25dcPAo8teEXIgb11woCke7PWpU0BjbSUUEFhiG8c/C\nsQ2qZTIyrrgznRXjszy/UjU4HoGXtEUdwSn/0BsaXrFU0t6n0JwG1vpDx/ld\n0h8BptnHdairM5YP+o94+5gpsPo3PkfYyoDRx6mmH3SPNdaQAzQsoCq62pfR\nYTkpFeSNlSyhgVJAO9lH0Qq9Tf+XAsLE1AcR2LKPyiljhUgm8lQeM7qu4YMk\n07bBd+WqM4bXqDSHqFI1pVzjFXmDPemSCKTk1kwxqU55nRAyo5egSxYfzzCM\n9diyVp7jmfZ8POXxlX5nFSbND+6o/zho0P5iZwf/hahz2lTH3viHd0FlWsIa\nyj/J\r\n=NqHz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f3a234caac055e79cd52f6e309f9b89bba11df3a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191017_1571292982273_0.8432257237252698","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191018":{"name":"typescript","version":"3.7.0-dev.20191018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191018","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6b98a655b124ca697364e2d7977c469a2bfede3d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191018.tgz","fileCount":167,"integrity":"sha512-Z8KpsytbY5lBMp5cc08VFoO8CgHC6IcbgyiA5vjh7fitkoG0qcem9C354YuiWV4O2+i2gdC7vF8tNUYqO/vUkQ==","signatures":[{"sig":"MEYCIQC9QJZyc3EijFgixmhdIysYP/sCc6b3J09eo4mvkqIHmgIhALNknj50xNKMjV5aWB3qDPZPEVB1Ybktc+pgXy3ivJis","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50369221,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdqVj+CRA9TVsSAnZWagAAg6sP/RM2dtGX4nZOaOR8Sc+E\nWDsTnO5zpAa5trTBGHwVy9mhiZcFBKMck9DFgeTLyFTINy3flPzUIqG01/F+\n/q4dH9TDTa07KN/o2kZIz7oFQ6KI6jhBS5u0/v2Y9EehwaqFCIYB4Qh2e0NE\nctYLWkENpYoqVOXdrLriEnyfC3DqA5DKyzRYfk1nndk0EIWyNY2kZxAgJHmY\ndf7tgy3x2nCua7ZzBZXkHmqHp+xbD5SnU9K++O3gI1hJpNh1g0aGCbQ3yYMB\nwaEcWfkHwcJ6fJidmUoUHeUQZuISB1hT8iYCL2kE5fPhjrHA71LK9mCxo0LW\noEJD48+Hx8G7uEoJxUQIaR9TbqP/w0xfAUIhMbxW3OOxh7kHk3LMWyho3q5I\nRREGWcaDdhPbarglVfxGKtnztCULyC/4EfLMQX1fhQDXY6QqWrSVz4q+Jugk\n9/LCy0m8IPxuM0lTkKVbheuyYG8cpdzhuZyfJMn6mN42DLydSEmIhhy42xdQ\nYEAdG4qb6UjkdDOoQ7Iul2ry98fkwF0k4FAELl/dog1hCUjxvd85J4vLMyuK\nWVyI5N/nX2CVJayzNPFsuZ6VXLEkvspG217NSNJwCkPkz14+pij3OrLs6zO+\n8GxFw5vQcqFksAE+vNSpW9H3NWzAngrZvd8EGU2CPQpbVXUNsjUM22tIEJAi\nAdOr\r\n=8r5u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dd58bfc51417d0a037ea75fe8e8cd690ee9950eb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191018_1571379453894_0.4029674645057053","host":"s3://npm-registry-packages"}},"3.7.0-dev.20191021":{"name":"typescript","version":"3.7.0-dev.20191021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.0-dev.20191021","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e0238e0b3eed9fc265767a1b7f5346fea8ab5edb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.0-dev.20191021.tgz","fileCount":167,"integrity":"sha512-SSx/+QkyW7PMcaGQXzVmVkrRmmaLFsdOYXhP9sY9eYMiHrfmtZE9EL2hjtbihfnpyWfCmPup69VgbB4dTTEQgg==","signatures":[{"sig":"MEYCIQC5AB9dnDqmsXR6VD0STzapc1h7CVZANxDzp7YnC59w2gIhAKoPMVVOe33DFtUFQXFf4pFX/bD5juXCGf0x9Hih0/zR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50468322,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdrgIZCRA9TVsSAnZWagAAI0cP/RIEOFkhGiuRT8OFjAvd\n92CI3Z/dKuzbjt2ChmPHgB6nGwskV1peXuhsyA5Log42dq9nDnI2rRECPTps\n9kz/r+cF+0uro95g9I8hMtRsVzUsO8PyoMMdFaP7jK4FIo4I2WyKz7ydcik8\n/LqHgM0K09U2G9i8AZtqIbiqdQw3TdvOw0GINpLoIrx9seC9W12JsRGA9sxW\nuVANBZ89h+uloL9QvixraS0/Y0HJGUDpnlbJm6JzMc5bHfIDa6r+xGAOWWlU\nCNZBtUvclKccItqlZwDJ8AE6UMtebNE5lV9EtHISMuxxZxdKx/7KzK1Q1kBO\nw6GpKrCkn/JtM4ReRPud9+Q+xZmRSOns1vQVQtTuliCAgyCFrvo+ePjoxH5H\nS1uVZTJA6aH0XNTnIFiTuD0LIWEeXFzCohp1zgwppGSvoQZFZOfUdjiZRHuu\noYLgKe6MZmprIWp51LNjOmQYO+dRhoLbNHaL1nQhPIxS5sX781EwzSPq7yLv\nHtKSLYL8IWy9Z9HZRSFhEgR/8teQu/o0ntIDyIHdveWdmI73n/IyEAjegdln\najD0HqTdB2N9SQAQ0JkUJGqqRvcMfc+GsuhMZNbB8pY3sLds6vt804VOuYHm\nzI9Sz0F2b/QVbtaU7Xlr8Ql1kV6m+HV9qJMu+MpM7cJxJjGsT1a5cOxoqR9r\n3YLz\r\n=td7F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"28028eb1442a9f9da0580f14e6f4c5e8211e4e2f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.0-dev.20191021_1571684888293_0.6465536886468624","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191022":{"name":"typescript","version":"3.8.0-dev.20191022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191022","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3692d2440f6d865ea3ea05d8b2fc40e0b01a8c1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191022.tgz","fileCount":167,"integrity":"sha512-bPzngFizYevpE3s4mb3uTR0zeB5SFZRO1/zDk1FF+TjJHFZ0+DR09RQjMVd+8RU3iZAe7GeTHHboDlq+EtkPjA==","signatures":[{"sig":"MEQCIDLciFFnAGsQgj3i9r4JsYo8EClA9lmxVToZ09e+8iOtAiAzJgtDWKDEe/buX7yV/aILhkh12gr2VfUcwm0guXU6Ew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50483142,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdrp7wCRA9TVsSAnZWagAAQdwP/0g3PzxsV7WQvBE+qWJo\nVaBuL3DlFQHwB/Hcz4tktfR+q76zh4ANYMw7mA8Yd660nRVwamgJUOjADlS6\ng2edw3Ow/ZLvEf5ZIq43UKbfupO43PnlIvq5+Yj5KLLOQPTRn9smkJJtcIDh\nV9ctqStn3RYyEPrzETt4Bi8WlaBj9/JwPPb/3yGPWmxyC1tLWI4SYhrnuH+J\nDBgOHAo38hdmnHel3vdbGUxlH46YJQjtpfPpZ+WSmP9NaiYyqjK3yek6qzDq\n7egpwWNJKB6TI/2Mf1NurBGm93Gyc1G5gy15PinxzHAn0jd00uY0nGnmkWEV\n53DIQnBIFOb5H3iRFCJ7Y5F4MUWbfm33OZo30ywy7dYQMRXbz1BOVSIDcmtx\nDp02kY175fiLCgZaWm8r35RCopDKcfj9bqlU+KQZrCV0xlXZ3ZwxBODwJ2sf\ngMlLX3liVpUWENT7/PJf3B17OOy99FMwTHHPH+UNBjzimhVj5RbIMAwUVhrR\nd6hvLqA6ldwgaQNru+3WQi0t4HZ8C/4CRmLAUMzZKK+iXMCnT9ESg/s+0qRC\nDCqf+dYA+2VB2ow5Sfgng3g7sf9jgQguKWCpgMG1E3GiC/UdB7jgkYdvKfSE\nQPMtIu6yRTksuN/ncS3EYhalvO/WXix1WALQzLhXhHpt69FSMjFvr6pKqYXZ\nwX5e\r\n=n01G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8cf13249eab1562de81bc4c426aa8aa8a979b6fb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191022_1571725039822_0.8666572575891085","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191023":{"name":"typescript","version":"3.8.0-dev.20191023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191023","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9a563770f85c93631474b2b58e742e79d534c6c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191023.tgz","fileCount":167,"integrity":"sha512-wzKrmiTbjXsppJhmWev/LVrpih1TNJH1u7Co/3y7WMg3tr5etU6wyvKFGb8SUaov2HlBmuuAe0/ircfdndlS4A==","signatures":[{"sig":"MEUCIQDD8P5R9Y3ubFjxLU4Wm+ooGOd9W2RIHd8AOhzsK5mqdwIgaVPR7E8XI00frgeQbVt7fhAo/prRDELH67JCQJqt3y0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50484627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdr/AtCRA9TVsSAnZWagAAQPUP/iVHS5rW7nREWYfM0ZPl\n+lh8J4T7AB3m5xpeGeX49jLg8YUjWR4g8P7vVRXYaKV2js9VnfG3Op9yptH0\ngOXvEK8YKoASO+Hx8Np5zpiMJOPoscAKbh8iGYxs6ejMCzB9UlqhxLOc2A9a\nifu/GsHnujl5P+BCAkDDdN3la9lzF2TmfCxrA/qUJoVlM7Jqxgj7VmEdWAaU\nNR1mkXI9cC4R36SqBMeF/pD9+58n7HPsCGN/uFLHvJvMlBtJFiwfl5r8bQ9W\n8VsdhmKlTEDpfGz+sxjydBFmJvPkH8WIPaBmfaTIa44BmlrxI40tntrKjJ+7\nZe3eXUvuSPG38Bo9l7Q1r3Mqy+9xuSo9ELLiZXuByt6vFjr09VF9Lqi9rx6Z\nKRA9r4ygQr7nFUjt8JlMGSvgOAeo6qyTxk9b9DZ90i7De2v8jAn8jz/XH0lH\n/CBU/3UhlttttrnPmoWnYGtV7jYEpshaYn6beTH0hxTe1lRqKrVCdwl66ivT\nFrAfBE88dBpMUF0NUG8cRDHgQxbb8W+z1sLdie4hjQQJXHVfNiRbUMr7p+Ut\nzRPK+H9NoIwC7etVmjk6ri0IkaSNKalMQhd6QWldJpNoMGmz3nn6UZmkseOQ\nqkvAX2kGNJn6lEgiHOLheuD1ndBRU39i6t4BP3+a8iWS1gZrzg0ds6WgDkTg\nVv54\r\n=W/lO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6f04f526d4802fbb0860991b5719192014aa67b9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191023_1571811372001_0.8933857198002781","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191024":{"name":"typescript","version":"3.8.0-dev.20191024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191024","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7f267e0cef5dcf4a9d205f0f5d015427c3747280","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191024.tgz","fileCount":167,"integrity":"sha512-pwczYhoKDbhHg/JpbCm3oMLjfEWVHmnYwOMFSRUDZfS5iveF8Fawmtke0FFUQW5v3DybLaRHtjHEPixUhMVRAQ==","signatures":[{"sig":"MEUCIFtLm2tKzKDy+BuEL6QnUQyArI7qHtX287W81SbDDEavAiEA9T9ZFgLIu6t6aWvC+V2hpzqV4PFrK4Dtwx4llt1/hGk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50486281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsUG7CRA9TVsSAnZWagAAYRcP/3oI0pKJ51SDyLNSbWyP\nFcGXF70bbhfi0FIXVj0jh0coROAlAHuVgLYHLnKwmMfUIsghpKwNaFIA5UBy\naQPWmSqEJly1Easy9o92yjQIE/iCZFsvHRBbK9o1sLZ8k/KmrYwa4jGFyGwd\nQ6iojbIuhbpcjtdUuHpUMizqmW1I7TMK23ewaBRkz8NPOrKzkJ6eRWeg1jUV\nmmwudoaDhvfQZPZXnyHFoHlhJ3Ve+eTgGbX/YuqRZpYZxykAB3LZzqoqICIQ\n1/+8N94WZKcT4ip8XjZ4R74ekPg7UVRFShTKRE0U8M6kmCmbh1lJeRDe2MGW\nWbKDD/YG87rFakhX262Gy8rtoBOCfubTgiYbEe0b0DkDik2yhJGWM2Z3EPih\nKXR73+UkfYTQHSOqCcH/V9XI7cYAXBg4vg7N0DnrcsoCguNiGDUkTH0s7bvu\nHdK5nOCNO2igCfoVLE+4fsliVDvvjVeFqvBksPIcIOrPHgGyfYeKQx4aE9lu\nK8A5pOuHRfuxg7T4i2B81U2pPN7pTcvt7sADw2SbRSrlLZ9e5TFxujAtmez0\n7LRW7jVBia38vXV+WeavaCYE6mqWZ1yQkaMroOtaMm4xk6RA+KNf9AH8Qvjz\naaFSdTLeBYXhyPlRY9l/BDMPr0LK9OpZe2XiXlliliqYu0A34/lvw8f+BBqG\n07xz\r\n=dj1a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"07d3a2ec7e4bba39df98a9f1bd16bc04112b9716","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191024_1571897787171_0.570510892074015","host":"s3://npm-registry-packages"}},"3.7.1-rc":{"name":"typescript","version":"3.7.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.1-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"2054b872d67f8dc732e36c1df397f9327f37ada0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.1-rc.tgz","fileCount":167,"integrity":"sha512-2rMtWppLsaPvmpXsoIAXWDBQVnJMw1ITGGSnidMuayLj9iCmMRT69ncKZw/Mk5rXfJkilApKucWQZxproALoRw==","signatures":[{"sig":"MEUCIQDyRpAKBkYbpaoHDTYmDA//2tk5qxTFX5HokFCTk5yDaQIgCH7f4ZDogDXwsuQbxBGASu7ZmW4MGV1EkSxIp+JYKJg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50484277,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsd+gCRA9TVsSAnZWagAAnDkP/3xpfKsPMZRpuZPw3lik\nGFweFc7JBWEhVkVGf3C9nLC3e+qb2Npv/YbyPwnVvwuwXLU3aoHYZn7eN0Lg\nGWjfd5XuFNiIjf9cuKpCHwEuS6C7hNmzrrTcRS79EnTXjZWUk7zsPTmUX/ic\nGi1+IaxGXcRn2yLYy/uxh/eYeqDwCjTQDbPr8EvpYqxOxZ2Af2+ZaL7pc78I\nrIL2W5enW7kcFhpEiKnzUDNHU+g2U7O6qTZ+60ywq5quOe6rnjrFBvdORLjR\nLiyHWFuR0YUkxoBxil5Z5G4cNmllYj2DYvPQeLR0wXlN1WD4W3tgPYyQeSu+\nLO9lrQyq4z+qOxm4LXRL5jLflfbc5d9pl7n6AM6hg1bbE8FVVCC200ul5Nw3\nneEAJxYuqm/1ktgY4RJilIFOFMiuhVvrWTHUuPsen2VsMVRBmqS4HbNwl9Ta\nZuFgPpdAQHwlgcfBvsPT1EDqQP+NOqrUbDVMv+c/tZOmeOxN1HNd494q8ad1\n4kypu+xMPTVTd8ucoeixcNeTK14jiIH7o8mzghlrqccRgRy8Rash7oehNV58\njPo3qKQLsFVbDOXVLlXGfwUTlLEPlg9PBVWR79orC4H3c/o+J4EgEq2tzd2V\nWePr4ioDMRtp9vDpE23xrrBH38KBQrxPom8U5q4/RRL9fEs5yMBt2uGi5T7/\nq9rY\r\n=duDh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.1-rc_1571938207821_0.12668248036591656","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191025":{"name":"typescript","version":"3.8.0-dev.20191025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191025","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"680191c15791aee9eda7ce7ca131772d7ff3105a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191025.tgz","fileCount":167,"integrity":"sha512-5cjThi6BKQy3C40gW9HeBLiMH+vrASAtT8RwrYzn5IMaAepiF8mv3gKqji4pkjCTBlf0iNDu6fuujKm7yO1HEw==","signatures":[{"sig":"MEYCIQCLLfbCGUd0L725/wEbtp/YeJVsnFg/Lws9EfACDfZv6wIhAKyTQnZYl43WBcGLI6vCjTDj4bpnAV+1SueqJIbCem1W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50488576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdspNKCRA9TVsSAnZWagAArWsP/27Bw0P4YXEcAri3V60z\ns/yhay49I1HtXnA1tD1MxOabX3WSM6/D4Xn9ESJAoAFH256A8qKjxYZREVvg\nHGFKgzDwPY4xKcKnntVeBPaURMRg8x/jXOqB6eKYflGUl2NYwuyuJG3SZptl\niw8xqC3BGFrSgmUzbHUH9shCNtrKNl6qsr2jTOb2acNfYqlTl1vLFrjxSps0\nfxlhbNz67egWhDZq6XuCZOBOydXI5cHVOEm4CkP4m28AmjVor9LM6JwC9QFB\ns22WZgU/BvYfDdJI5TjFXB1ntussVNvAU9kjmi6t6tkVurIR7o+zDwVydhro\nmBP87m64Jj5/ggQ0gueyv4oDbMOLfd9L/t6fIepyf2NInST2mnmKwHOA6+SZ\n4cmJenBvgBRDnoy3Ypfno+SzVSYg8C4jg6FS4jUny5c2zvNL/wfl8h5Qty3G\ndEcWW4s+7CselDgxaZ7YVFQ2a4KWl6O1mIXZcIIaRQHObyu807kVEEfAD5XM\n8xppfI2fKo5nce6x4vCKM0bi3YZ6pQ+zn0ZE6Emlu6TkiU8BlNvVibU2XRC4\nyM5NnioWV5WuwCQ//73x40aSRKPdgqTkOUIFSU5fv2X2tGj+lvR1/Ov7Orep\n0LexMl/6eTcs5QLybdLkoJlObJiRfdazSErxjDsvTLkVXPfWyMajZveRcHTW\n2lQE\r\n=4r9v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5e4cd0594e885c3e950cb0b2046c930ed8032837","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191025_1571984201557_0.28727655924149365","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191026":{"name":"typescript","version":"3.8.0-dev.20191026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191026","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3cb679d3c087068e2724f1069d662bd05680792a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191026.tgz","fileCount":167,"integrity":"sha512-Q2a6ZranolX+5b9Olq83xbb8vbvrMSWQUBMNpOl6vyReH6n0kyLybXQ7A30+oJ2yOG7l//6Q6HSeV/ZPGafacA==","signatures":[{"sig":"MEUCIQDCs3DvCKoq+sZNdIiIF3joHN+tlrnyqsqOFYlRf5M0ogIgA8itZovOsYadRPc5Cluok7mNa2SO767I51Q9vO/xhUA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50488476,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJds+SLCRA9TVsSAnZWagAAw1EP/Ao2DruPHTzz7SI8HYCu\nEwdUqVnqY87l9dmoVYjO90T6L3r5SvxpeYln/KRyQRdgg3DAv4tm6XVsULNB\nKn6StYK/QABLIHFfdsn0iNNaYyS8LEdQU+PpWkIWu7BQfummuhADVwhAnXBz\n82xnaxeOd/F/Od3WrECrcsxjQctNO6zFe8Btf78XCNwZk6fp7Uq5NojoRElH\ne5XoFrZ9we6waIz7LNveJWmJQ+CKn4YTVG/fwj8l1uVhNj9KOpxTFuTuYaC9\n1Xi+F4cpi47+TguHSlbAGEHPbD0mCdw/5kQy7hnDNMJEoTVTyrfr1HmRUL1L\n5gTJmBtbq/gxNwiQHkARA71gsWxGJCB+SK/2EA9rEkC3JUg3sdf3RF0DTLF/\n9ERCKwCdbhKCOnrAVg0v+5zhOifopxRcOaFvwCb1vBQiT3TGOTdiMs+0J3Ic\nTNdF2AEEVNZ0HqppazVM0nLceedDr+djJ3XBO8Gf7XTffUW9bpT8FbbhPLiU\nytAKzvd3S6jE/N9+2BVUSe7/mlbGjhiWE5GFo0sz6pXmOjLhJ66e1Vf8I1ZQ\n29U25r4f9ZZrhjLP9GwwaZzBo24fTfhoosHrU/d/WQ91g4jlvNOXotjnym1H\n9ejFrcI3Jy38xJEWmnDiLUWJ2G3Djz5MI+75F0kqodWOVQ5G3zfiCez7dGvl\nJFLD\r\n=YP3B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eb0208c5892d9feb7eccc723bc9cca212acc0ad6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191026_1572070538261_0.43528020314909543","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191029":{"name":"typescript","version":"3.8.0-dev.20191029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191029","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"040e1f1a5486b014c865279b48b43b76c705bc90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191029.tgz","fileCount":167,"integrity":"sha512-1UykrsbCDggb3mmqUaUkXO7iYvQun6cd57kCGAOG/aFv/4yn0h3VpLZCVTb4Ycn5wentgiPIwKSQ7wERImDoIw==","signatures":[{"sig":"MEUCIQD3XxruwixRzGQqaYJS5dKQFk75U04oFuLS5DjaBL80oQIgPId3DKjUPOiK+lgPQarefUhVklOMao+TEKWqT2WhJL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50488496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdt9i4CRA9TVsSAnZWagAAdxUP+QGPnKK0MuOJA7vat0V8\n0uZq2F4uqX0XIdAWMqXdKfkkQT7QKExNhhMyLuuU49W+qLPJOY1V2LSJo2K1\npLgU575Vd6LANc/MZQJbM8nKusN1TSp0EBkNyqZMPB0SJ3+vqLBHzFB9GsvK\nGUMcwbsl/j3Qs/g4AxmUkkhlJAB7WVcbQnrLo/Ua3tP/haJGAh5ylp8KjB/n\ngntOKAIXOoIy7xvxMQB+ng/6fNjxX45pfACeud5ePNfwAI4SlAypSDtYVccB\nVkMbIzgyQiRiY2PL4ahqAIj6h9y1xJvkLB+EABwjjLeMHbNLAxAZqg0f6cq0\navgMYC8HFQ+u2ba8+2Qz8JI8eOVeKw2udh9cxAT2YlwlE3BGWGQUfvibCeLy\nzjcrDM0tug8wi0xOShratVWCTOBKtQvQTvRItl1Wh4UhXjmquWL8ZDgiDFrb\nCgTytgk6/dsqcA8+pfvEdvUBm1KgEci0pOygCry/vi/aj21bSyX4zaqBAn1e\n6hXT6hE6zsFiv7bxsPw9pgqooeuJhHrdro5DpmJ1V6oEtGs53bI589qEjbHF\nuzDrEKIt4Qmad/rHHb0RUPbEEXE86uv70K5U5fhNa/Cx+zR/qehRWuPd7Tgf\nQji2YzIIh7TXjTcCbAZ0lxlIq2ipS7Ff6RxkqLYG8dWq++LjxOhavSy7e6Jt\nLyEd\r\n=XHeK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cbbbcfa4c58fb21e5777c8943b18e7ad745dce26","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191029_1572329655086_0.052048878862376746","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191030":{"name":"typescript","version":"3.8.0-dev.20191030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191030","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"0c155abbdfbeb254b45e53e5934e508eff429826","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191030.tgz","fileCount":167,"integrity":"sha512-H4ICJQz3KmUy1V7MyBK+YjTDNTHPGuSIbCYxgJbhn/klrgs2P3jBuuS9neb5hpRNe4WU+dtXzPbfrl19czJgiw==","signatures":[{"sig":"MEQCIBsXjw+Kn8SuF/AFDTP2x2Op3pzh3X1656F6dNTFg2ucAiB12Plv1na3KKr1xNVCy3C98uhuDuZhwNWpz2XU24AGmg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50513959,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduSpfCRA9TVsSAnZWagAAiH8P/RRQMs1K4vA3yp60mtaF\nxlTwDkBZcgadMKxcPJvWYA3jAUhCFZzKNGImysiKVCTdL9ISt6s+A1nXmx3m\nXyaq976UJr4v/R1nvztGENMTxvmzZ/CWLqiLm/O4BN+voNjRxUieRUov4+f/\nTVVBvfpz2SUruwsnC0tlkuaGpGsrUCurEQpqED+CW1oCSZnG+CGoGDSuMDe1\n1nFc2HIGDHOX6LoToNIOYZOxtioC2SrJvpSXTs1p0KsYLiOaGyc6lcBr3AqP\nj/w0ppiKKWLAAhS/sNyGshNrC5FV1j+i+tr4baFHidZNHT8eqbOxou97GKIf\nOIRZOikx4J9Enh8zwedCVL1gSO9lK1nZP856pNCKpFoYj2DGVncYRQ1KFDQs\n/2T9miAf9d/mNKJd00ZhVEeN6NCrPmKaX+cy9VbqlGqsd8uz0LBEQkWlIwy+\nxNBTtD8ZuALNWNZ38x6E4MvdsRRZfRuMK6w4gFgjuU8YEDX/sql0uNw0iHcH\nMX/P8dlvwYBAkWRM9TZa1sfppqxVh6bMiYvSE9sYu1RYBj/lHolkKb/a+axy\n7vQiFzi/Fp37v0ghoWap46c+mWSzzqTBfWl81b1CjqjTOB+pRinsUtPUjUgn\nHN7gO7HZAo/MAmb/RoDH6BVuHs6nM0D6oxLYTK3M1OlYEtZfV3MybYOxivxp\nPsIk\r\n=qYdQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"87cc8c4af8fb2adcde0dfe92cb6f4703236b3291","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191030_1572416094947_0.10935189601633089","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191031":{"name":"typescript","version":"3.8.0-dev.20191031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191031","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"d19f77c9a6314f35d9e11381c93fffb3cff9bb1c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191031.tgz","fileCount":167,"integrity":"sha512-hnIkoA1tdqCoO71ocviQg+ojLPwuZw6IxUtW12hhI+0XCpqNinQOcvUJlak0pVRUKL6vMRjvmhMbE0+uDJp/sA==","signatures":[{"sig":"MEYCIQDu620RNscAJ0TLISilxrdN2fO3TgJDa+q0J6OqP5LKAQIhAI4dzgiHNP//NI+ZD0k/0Xxg9iPPvKVs6KgjtWZsVmO4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50545179,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdunwBCRA9TVsSAnZWagAAjhsP/0IC5yTYDZ0pQ9GnjYEt\nPiEmp+qGkHq7DPG4s/eTQC0+apwK7OTnJg9+nWVPbIGB0TJubliZx7SA0zaJ\nGMDcd39twFEfj/xiEJTsLqyw71TQiJdL+qD5gwav9oQgQwvFIzW9bsp1Z0wb\nbVaG1kYEyzOhde7jltc0x2z5dcK/nDdzhZtbI9db3T62G55WBCa0lSRr+SGU\n7gqvyOj1tK8ry9MLXrEKhUqZbuTEhVxPYQDNY09/JNVNvTtQADueJta3c03D\nPnK28vbDI4w8VYhhh1V3+M2Dg+2YQw9OX/cKVyF5RaPkJ+jl+Lw39YZn2nL7\n2cICJP7R2A9k1K6pRQhsGjU9fKHca7RRF5euSV1dJ/XpMoS6tHK+V7EBra78\ngDFwICrzeFu0PG/p0HUj+z6v92niv6d+E1suxb9y965apJ+k5rizF/aBt7hA\nWiq7COOtAQqd9w1a5szAgTTwRwbX6MnFmNbQPKNZiA5LgkhNooLuZfBGCxVu\niR5E6gGH7ywH0QK2jQs0PMtKPRLCIfZeGo65V0G8TJtudrGA/7Vp8MWxHZbq\nhQgZ5/603rtwZUgvtDYcBoSdhgjuLuO7+r6jRV2SqitsV2JI79v9L4gfFBv0\nu1L7AA98ifeBw2VbXa2R/1lTMWEZ+3sAfU9BUcebqEm8lphp/icONwTM2RDW\n+8UC\r\n=15jT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9cc0fcd3da3d7ddb18d651fc3f276b9c5c0baea2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191031_1572502528114_0.5677263608910172","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191101":{"name":"typescript","version":"3.8.0-dev.20191101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cecf1375c1e4c7aebaeda2dbb5c31b2c4da128c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191101.tgz","fileCount":167,"integrity":"sha512-RVfns8onYtjf5JgNL2V113KdxA2I/0kfZc3ugBs3SsJ2g9NU72V3mOmisBgs2BVoxtX2dsTUI4qSwPS51ZjFnA==","signatures":[{"sig":"MEYCIQCzDvfi0Fn+x/z0GE34jJ2/YwaznPh7MgFs8kFZm8heVgIhALich8IGMmn04Jh7rqIg+V3CJVJoqPxhjeV4bFfkDuAd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50547421,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdu83nCRA9TVsSAnZWagAAWEUP/1JFuuBuDmOJArWJ3zrN\naAMq7pnrBztgTwQ97ICpJROyhJCVpqczVQ0HAImp+b8+k6qDlaDE81Nrmi0B\ndMx8foIX4n8wz6JMHrhdVU3ThC8vPv02M2KX3xTMz1ARk9Ale6fQVSM0Xuk/\nvDTyRJoMzCT1jO8mOIPLGNrAcuGy2yL/QZbwR/tCupWzCp358/+Mz2mP5hp/\npdd01CBBbxfvw3WF0W8oNTLtYb+o3gpptUKQFUZIbf4ggI0smCrq90kPC9X9\nQZ+ld9FFG22uqRPdkN+PvVPkBCWZaA5D8cyYuY8vMSarPeAi8e47mqGE35Mm\npO0NcSaAuGGLCN2yuz1jsWaJMExbOpMHMmzvXrh5ic6H/Tv/qmWmzuHR1YxR\n2AoN+tYgJwz/ssHBNPb/fgZLec0C1Ynn6udauZugkaxt+E5mk4VjLqnR0gGn\nBi81/H6E+XviT5QQ1WnUAC7IQN4I/NYUSmSqimacI2BEDs5ArGUGcetVNM0c\nnf4QwHiqkfcOQImJuM1O0U6ociA+N4hUzgHZOsZnTOpgQc8L5RdNVgTWia3r\n5Ov+cIeNp7b7UUxLluaIOee0DL/o7AqFHvp3WKU8VoEe5+ctnjmOtBlanB1V\n7eiELqrRkYGoZw2Vg4dgNaQVOb8hkjMY3OGBOZ5HtoRygBgIlAwRcF+YMoh0\n7XD2\r\n=cmaB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ec367feb586cd89a81108fda385f37c26f3e8aa1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191101_1572589030791_0.3569611341911292","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191102":{"name":"typescript","version":"3.8.0-dev.20191102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191102","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"6e4a3fabca558530a1b4ca50d55e1287244d63ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191102.tgz","fileCount":167,"integrity":"sha512-eCeAeDx/MD93qg/yjMUVM8ddIqQYalsY61wHv9NPZmBULVYGrRNeQVDfNbbi8CG+/Wnau3C5zFNDC2IkqqeWjg==","signatures":[{"sig":"MEQCIHf8oApTndlMOwcf+L8I2Np53WFf5GTlqmSEFpivezrIAiBF+sjuNbllYShDE3/TZ/61gEOElzRFTThuRshimrSL1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50558053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdvR80CRA9TVsSAnZWagAAdxkQAIgM/5nY3lePxxEDtdtT\nFQAWygBvqV5XGBIBFyTs/06D85OcfeyZp798m5kWNsksgZXJvxFll9NnLrXE\nlGXV9KwIlPIi93n5N7Kd3frz5pUnLbYt7vVxVuSkq5LJOMGdq6hpdVf8INNq\n/ezYX3LcKad9iqj2hLrvShj7ugrILawsKBURYybyewvmlogSxNTTOFe+8r8S\nDTt0OgxyaAWIKKAyNCUbdMcKYsunnyco56faWVo670ghhMWftC5Ry6YRJ1/h\nGQF0xI6nmKpkdoxGTzhs5oTBaa0lwnqh+9wPrxwLVZBtpAt5Br+wYxscaGsH\nQ3bsNiW/TUZVXWHaolJTPdRU108XndFmeT6c1rSYcIxAu1sdKNBs0jvMLXUl\nBk2PhOFdPnYfuk6h9eg8oSR8O6c6EAzqP3ZlVo8QNb59E3AbdIMWVZeQHf36\nogsroH6ftxXyI1KeWKyzdQ06rvU/3eWeDmy0e1PwaeC2cdDUppepzPpTyIEj\n9ETB6rMLIwA9iDgcY+jYZDF/TDP6Wu7apzHhQkp6YInPFR9CXkwlW5kLQWVa\ncs2YFQisqZzvoPhmg7dT1WbCZfwowH00+x1YRHYDnlCZZKFS9FIemZfO/GjE\nI7GdVy2QheRJxuENHv2IdAZtr50FKmSs2LLnUnxNd8c4T9PI3O88QhFNxNEc\nvNl0\r\n=Vrym\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ba5e86f1406f39e89d56d4b32fd6ff8de09a0bf3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191102_1572675379086_0.9396049803690609","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191105":{"name":"typescript","version":"3.8.0-dev.20191105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191105","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"84936856168f081f8ffd67441c76f439c97fb9b7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191105.tgz","fileCount":167,"integrity":"sha512-bKujrrC0aQRihwWPuavqvlCArHqwXqGmUTwzpyojkTiHBMbfuuVxqM5fYDYLALe6B1eRGm5bFeNtFF/d/8CpCQ==","signatures":[{"sig":"MEYCIQDFD61ozMzWIAG3PoJ/bIsRPoPoEJosUxRRjPwrE96JBQIhAPOTBVvegcClXgJ5NTmmVYzTlFjmGN0JoYftuXBvelvv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50572914,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdwSJTCRA9TVsSAnZWagAAoxQP/RROrV5mxF5YVvywWk+h\n69ZYFbPsV7+RisqAsFFMyffk+cKn/ivIdRnFqRsfVDEVwsqrNNRIGhzfGq8O\nj8InCg9EzBw+4JMwzOHIqaD4SI8Di3UPXxGlMI4Hw9TnX14sefmXOKwxgyJX\nLQzdHx3ZD+HQwOR6EKmzPwvP0NjGc5God7KfC3tc9H1rNSmwoDcuY4TH439/\n0WY5jF1eI1Atz0AXD7FPkNQoHQOP6pYQYxP7R3U16+ZbybkngikfgYBLxMnl\n7JyIDMrzfoFactzWJ00PjhchEdCrl8D/BPCdWS2dMkuST2C5L3XIjH1YRkO7\nOztXEEUSSwa7S40ZrY3tKkWmxi4t+VCsUWT9uQJscEAOIRAJ8QewZmQ+1wLK\nHr8vPGdNKYQDHNaUns7rRapb+IczQGUeewoi+4wVXX8eWzppd69MqGe6C3Ha\n6oXNGK3Z/6Oj+iATmnHzSeDd76juh8J/LEBJnQOKt9zh/uETJ/0l6cYdbjI+\nuLQyuD5P8o9u78Hw7atHfQjH8W6GxN5c0Hx3Ai5qMPB3MAWxAJrTThudsUNz\nLaZANN4P2tmlBsU2EWy+b2MqQfCwSt1q19i8osvuBMh7txQII/lEi/WcXtcZ\nVRmkzlfMH839m+9lfLeTaUv8/eOwZ3t76C6E+JzELyBrPUnxNRHVFwxzm70d\n90Bw\r\n=V+MI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"56cad36678459498580a66ccf731780b465a94f8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191105_1572938321149_0.41539057241290256","host":"s3://npm-registry-packages"}},"3.7.2":{"name":"typescript","version":"3.7.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"27e489b95fa5909445e9fef5ee48d81697ad18fb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.2.tgz","fileCount":167,"integrity":"sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ==","signatures":[{"sig":"MEYCIQD7CxaoI8q+IZykgqhTP6rJIuiwHb1vhWH0BMjMrWN9MAIhAMervMH13LwdBkFzlo9mt1HAv1btIeIwmzHXGgykCHY3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50526438,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdwZ9ACRA9TVsSAnZWagAA8dcQAIgkazvl/Qqf5xbZBq+E\nQToZlqnPNSPabtEXTCnaof2yJmvgRyWNQSxlHR8Pl6P3YQY9bZo3Opvey4CV\nMXuhLFszXw1VkqHIpy3jPt74oMY9jd1XTqcIz8zK3VZa7RPHCA8C6HhFqkoO\nYGM+8eqccEFP+Wtv1RFtECI6zxSQUx2LlHPIxAWPxM9LXt2ypiEPTwFwVHuL\nFAOQ5aPR1lCc8fed1f99SG/6UwBXwtaKSHJ+ZkSVhXo7JmUcdTvoOBoCWD9p\ndQU0dcgXNi9aeNMjdhCzw1jxa+IQBDwrZT/MOFa78rSjysgThJAF/14GTaUM\n6HH5PkcKokTOAOFlMLJJWdpCbxhxbtb/mqMXmTdl0ZbBOvBxG9L79cCix/oU\n84P70kDO16mVl0Fs5nHQfpK6jfR7orTflEmcmqTc0VFPvbhCpxtgzN/tGj2H\nUdQaJFwrXNVhF8lfRovfhHhdxpx5yud87yurj8hgN7IYdEdglJVK37s0w4CG\nLgRzB++bvHcIQHbt9+CYyUfN7X2GUREG0A3UqF1V/TH8/ttg/hukgDcBmtCs\n2IT7gadhwt9MLyO/WRgMDejoaQuVliIAipS/4Zj51mpae1cQxvvH3MInbozu\nQ7mig/zXW4NG4YDRBlb/NoXESNToBkt2DPS5Xd3h8SV62QqqvKh/HARsJ15e\nIO+z\r\n=rBau\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.11.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"10.16.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.2_1572970303958_0.26833709048265364","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191112":{"name":"typescript","version":"3.8.0-dev.20191112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191112","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e6987e7c0178033212a757cf4e411808960a8e7a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191112.tgz","fileCount":167,"integrity":"sha512-Swh42of9n0+MOvoHW3elRoWw0vmcpVjf3YCjJeOwr44/C7DnCzCNWRL+CfB52YfidmQEX0QJ32cewg9nCNXEgA==","signatures":[{"sig":"MEYCIQD8i/IVAhKudWa/Ju6YNAfusy85iyyEsGxcDqJZ+Bs5MAIhAMAXYkOZ4xJF5TcGsSI+z8xrmtf25QpCu5LtAifJO0IN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50574762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdyltaCRA9TVsSAnZWagAApioP/jYv3uDz6Y7oTbOGYdQK\njR+lDOA7+HKN9XgWTnOdsbecZJhZVTbAuq3PaJ+XSZaxiSmYBh34Ska58Ry9\n4jCLkT2sF9j6nkXWqCgwzrZtuMpyPG7GTdB9EtLWa7UPXZufinZPCRMlmCCx\n23Gga7laCIjz6MmIfk0pR+yHEVuxzkHxG0PQ06/qPIQat0NyC/8LgP8SPz8I\nxIql9L2idAVaZMRyioZFxTB6lP2dIKXdwuYMVBcqb5vAkY/gwX6gopKgnUW9\n2BQnHNtQGOJKuVYY5+T3ETAxsIGpEddHpt+NE/nIM2nkLxLTa+p1akBtFBe7\n1PbkrkpVWyUSy95BMql81SZFAryazqAhpMeObB+QpuSoe7rj4YIKruM88NnM\nRTo324BLRDe0dxMuQhKdwYlCDzNumbfVkFKoSxOo4OfSEn8yDNquN4Opv88y\nuQ81SsGMXWau4tBbcNMCYF17Tj7w/2GY75alHRULWj8dDoGtt6xKsLq975vF\nHCbjtaWxdXB/xxsMPEiHqn7YRS3v5HPQCjW+xgJmzUZf32uiG7TRy1hIBpFx\nDtWKmBGPKBtk2greu5pHYxAGCfRwDI1mfBqUsp3yYMLGJMliWA6nOHfJMcDE\nhmuzicO3tML4uv8W8vMPL28owDs21SDofx6uQKra6QMMuUwAyVwyLhsPtCJO\n0wQ8\r\n=cLQ6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5c951635e511aa0963ddf42f66d3df64e08e0533","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191112_1573542745732_0.6793349473597505","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191113":{"name":"typescript","version":"3.8.0-dev.20191113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191113","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e5ff5e78e73893e07c78e5d8ad892d3ef071cdfd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191113.tgz","fileCount":167,"integrity":"sha512-0J4rPShwXGrP4hqA2uhLruRhZuLL2TeNH2xhm476Kb0t+VKo2oU96YxDik0PMX87JtiE5sVEA6UziHmvfp+8wQ==","signatures":[{"sig":"MEYCIQDZnRdy4ooCPIzvbvy+DvTKozoLbIJn4Ovjx5ldWhXGSgIhAMJijzJH6L/Nq5Ob4Mvb7mevQmnttXo/qtNzPFDyMdSI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50575795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdy62wCRA9TVsSAnZWagAAdngP/RVPQYQsSPF/yDsKmvIl\nFg6r0Wi3F41U3IywQFGbqssFGwOmpbDSb/e4v99lhGcprxM2pe6/o/mBjUJn\nDT6CBcRn/f9vlHYtIGHH/HGASbz9R6c+z0Uoqh4/szHPxkiQ/erJLatgK8aY\nKD828wtkHi2A+Z/PyRfeDx91qOsciagJg4qx1npBS3n748Y80ZU7n3wPIwRr\n1tdOiDj34BB+qZRIGS0j1SyWuBp97+2c2IYZ/G1Yb96FJ7ChUgCBFstByZF5\nFsrD41SWpKUKNqF3QWvVAMQ4vjLorV9DRVJNp310i19Rvg+iAlTGg2PmQlF+\nGs+g8/4lGs98y52YoacLCA12/NU4MEME1qjYmkhLleLPCBpy2hzoJOFjUMJd\nxf9wZblFliHCnlio03i9tWDlj13sE3AVL4mfzvxBOQDcrRPRsGBs4gUAAMMc\nEP1XM1Lq9L27N3eCETDo12C9wUwD9E0mclPDGa8jw+aodbDrqXtHahQjoG+a\nas9LJ+WSBnEkAk28NjxRqn5tE4Ll+u8KSza6FZCgITUrMu5VG2Io+NHlBVRs\nDRYKJG5SYHPUC7SOmn0LF232YLQUj69UGVWvW/OkYu60ausVk2kEgQhha11o\nTH0hsQio+jymNakmKeKO7za56oYkiuOQBjGc5kIbVTz1Q1fdt/JORm2mnK9T\nH6Wk\r\n=aoEU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"aa39080ac7bc13fcb7c584ef9ddd8f1c02bad53e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191113_1573629359569_0.28178147608683135","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191114":{"name":"typescript","version":"3.8.0-dev.20191114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191114","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"de9ad0580ae8e117cc03627b9da5b27b5c8aefb4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191114.tgz","fileCount":167,"integrity":"sha512-MAs1r6AQm48QXLqa8u7rkwb4GRhK/SABox5WwQjSJJN/a0uP3Mpw77C92gG6+M+BuGnhQq5sNAz5NleL7lj2Dg==","signatures":[{"sig":"MEQCIDbiH9uyMKfDYGwxA1PBkb6rGFFdkFoKZdH2/xPcuPbVAiB6PmQrY0N5Os5q33Gfj5+xgNrz8giyDl3+X9+ex7S/mQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50594713,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdzP5uCRA9TVsSAnZWagAA4ccP/1wTKIrLfuAhwhOckT8S\n+FzL6KpofKRJ/rylu+cUUdGrcPqPZxgColifPT+/F3t0gHsc3tsaoiJVL5Pb\n5s+cq004IAUdECO84Iqr//6K8ko7luXNdHKps6sUUhCHHQEJ6LvPw7y75E3e\n7Td1Hb04q/1DuYNNqMnoEVTbdu3xu4xzMo/VPo6IJB7wn3KPI/9c4fG8HJUP\nS779dK9IoBIyzdwXtMUpyGbd2mZGql57Y3bBQmriq69Ew8kDPr4g2FCNtrOa\n56XQyL7gGB1fOhdcThRyLn4dSsESW0Ez7lN9KgQgPx7BLx4ZYuR1UD7mlPWx\nsucdbdkY/kEK9YKwkzrhXEThOzMLhKSWlEkCt64j9wLUQXFc0mTOg+VW0a2v\nuPVHM3y1GGj4m3aFcPWvaDxSno0Mrk7PFPxYZE5alQPQ94aS3kgL2DgThUnE\nUVlqjnosrQNqLrqKpZNRiXyQ2iJrwF3RdiZKjPTxK3TtHxo89OAFWDQ02qUx\noR17/1/4XbRQRY7c2mwTDqfDz93MHtpSlQCbMBz5DOM793YdFIy/f+IQBKy5\nPI8uOH5zVUDcmazqsm/KpA9SLacpZgAN3IJyuRilwrS9ZVPIGySu8hJ2NDmF\n5qiDZ9k+ovIV7v64eGTctwsGknYaMp8d5/685kF+7hm5PeujPTq2KFUiIs5y\n5nJo\r\n=2Rld\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef0cca7d12a320bc98cefebbf4d391de36003149","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191114_1573715565641_0.26182862518332817","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191115":{"name":"typescript","version":"3.8.0-dev.20191115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"933f6c662f72da79d6e71a9934a2a3480cb97440","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191115.tgz","fileCount":167,"integrity":"sha512-RWOHpwczVXrLrwkLSGmsYoNaPyxIZse9iXjR7G6QDEGHcSBNUp+rAOr6AAeyIZg7QyPYROM35BHJJQq1efwKpg==","signatures":[{"sig":"MEYCIQDT3taYZcU6/cuLHj2jJc+zxjvXQ/90vq3pZdVt0E69dwIhAMW6CBIZSUqteL5rcUNwZs63MF9BFQlyfgKZzqqn1DiG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50587679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdzlCUCRA9TVsSAnZWagAAK6wP/AmN//Xwshy+J6oViiDl\n4zPfB/wiJ0fdInU2/jzHIBZ9d8dfAeALyBabfJ7RnqLjqOoE4J50bgvTwe+y\nvV7wrWsbZdNfQpM3pMPUahv6vLicCsPMBh+cIsiXDOHvd0KPBdMxy4H0t8p8\noGCOQo3bcCTOYIwC/w9azhgTcPqUDA/qNG3jC3UXD8mLj5Mr25RDwsBblJ6l\nBNPI76dyEEyIHEf2dQ3HzXvgI4T6rj/QnzWSyUMTFsOdseaEb1bSIyd3sKDZ\nGdm97kBqsYPoUW5t78f1ao0iIWCJeVJOFM9Wi144ygUJPF/MSMtd7JN/8bMa\npFLPikr+MivDBa65om24ivYOjZa3lSgyXvpKEoKr3OWDx5BtXGDKQPML4JA2\nYKdPW34EmUnnbfr/TIOEt9bdKaIFadeXH8nwEiE+ZYPhcz9G95lK4m55+TTr\nlCeuCpS1GQyTVNoY4gGeJ001OLzgm8Uyqe+eqrZq0ah8+436M93Zvwb9tmcj\nIrnrV1OWOJ3aLSX+AqiZ4fAiNz1xXyf67/swqYvwRKptt0krj9OWGrGk/ijW\n8POAycE+0Ev5iKPWTiIR8ULjNMuI27KELcqPz2D5yxzGDHJWNCcBQZ915O/l\nJFK8/4UnSLETwl+xX+QemYJJww3by4zAMLfziZJw+LSel1c7KxbAxVaCCsBi\n/4EC\r\n=OUg4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5321dcb09f4d37768662afcfc9ffbe1f6b24d0c9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191115_1573802131749_0.17987595083174357","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191116":{"name":"typescript","version":"3.8.0-dev.20191116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"562654a42a2d66e1ff772219f14a9ffe757aa65c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191116.tgz","fileCount":167,"integrity":"sha512-MtStPs7JjUXbWQmALLSjIgRaSJYzg0FO3QSi8Vhn/z11t5xll1+yAFT3yDt/PXPduFIgB1KMyUsIyjDyETAT3A==","signatures":[{"sig":"MEUCIFLFoheOD/040BXIc5NWgCd3SmbR9ULoBq3S6v/RXtQtAiEAlmJM1AjoIYqW1ggD+w5ymjjSOk0U3PCoeUNkgwhWTyk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50585569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdz6GLCRA9TVsSAnZWagAA6d0P/1InuS4L70jk2kuLFmOW\nmwHYQEAH1p0KnNkFgxJQ5ifDKPOeEc4uzUX7PLjBsoLfiNOINKCkmbyO1Blh\ntNf10UbimfwsqrK1bwHFxtkMDVdzvjDxjEDZrVwHAIcFxxUQVnDeJGL+vLyM\n6Cd5vXFX9FV2cf9OCke9z+KWppEjb5aB2vCYLzBrJWWESP4Yj/QuUgZq4PHt\n3M74k17Hit6fpcC0CHj2YhJFVTbjsUDI4uW56egvRgRBYXY6ta3K1EbQ6VOL\ndrukn/sHI0OdUE89/9+BXjhka+pfOpK4WxQeVYLlQNWZJcAtLwjOMl9yB5fB\nRp/MuWSoyaGSTh2D+4xYdYEWPLLtfjAmB0i08Eyqz/yQayzG6OH8v8EEPPeW\nn3d4FqipgaHdVlNT1LL6KNDcbDIBfuujUXSH8AHnGD/yALEBhyt+8UN4y00k\niVd9y3/KTb8wQmuYGqS52Ls+KZszjMJuXwlwebHy2IXTR0hl8qcWSBmsFgsE\nNri+dj0iuZ8oa+mlNW5tmmIyMK4xXYJgh0T//s/GzeiT6DvIXfV3/SGbevcU\n83RtSNfZBZBRYXpjQU2VzFKTO6yoQ5M0KbTzcrBgNlKqRxAYhw/PMO2xZy3H\naiEO/xze/CUyvX2V0ZJqlbf9LAvEI1D2VFUHQvMFJbK2+gkPVA8/7ESL5OT5\n8vlB\r\n=9qPB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"196c0aa0783ddd7520f9accd54d53c3223f5a47c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191116_1573888394808_0.9613282717913858","host":"s3://npm-registry-packages"}},"3.7.3-insiders.20191118":{"name":"typescript","version":"3.7.3-insiders.20191118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.3-insiders.20191118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"86d3b1de1859d70b0a081b708a223f8f3c6a4d46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.3-insiders.20191118.tgz","fileCount":167,"integrity":"sha512-r06UsJwJzLwgRkf3Or2T5tBnUmp8RD5gOHkC6ax9mLHu5r7voo1WAUpvG09R92GvdEQsgZXxOUhdEJWEoc/5sA==","signatures":[{"sig":"MEQCIDX20Z3xJPnZ2u/Rg7n3eskO31jhuGsTli2lWNtLd7gaAiBVb8N34z562B543f3CsoTmc68sa/+gblIAFXECs2Jt9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50540481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd0xARCRA9TVsSAnZWagAAzQoP/1WsXQ3OoihFyfbekxGB\nQFUgNLBClpEBIWECyyCrr1G1aR6W+lOq+kHQQp5F1wqCri7XZ1ivmG4BQb7d\nMXNciPk+16Z90M/JdvINinbIPWDMYpNKG0U39WFxQoJ9LqgWwIcnxDkUgWOX\n7i/SWveJmubhkJtvYDJ5duPqwmDkuJFhtlESAVLBRtpfXuCOGaOgk0a/uYLc\nUDjV8GfY+LSBL+EwMK4GxcSrXTDI8EsY6YTuPoKuhrmyKXkhdcBON2vkr+O8\nBVeFDpa5emDPpKL+TkuwZjDGpEkK2TVjS7z7jUrMPlkgEcSmXociSCJhoai3\n4jkLNKoaMToufJWZN5GHef8K9xVSMC0rrF99YLEi1Y4bpDsS3O0YZC9PyGEO\nbRnWtTvlN8ISMBXSYVSzMALo50sPZV8IBCN6KGQ4OeBJsXLbfKaeTm/a/n81\n23Cc0FXug5Q8+k4ElDlTaL/1P1MJd6Ahg4N3F9A8no1QkKVuKwmcDpjrjEIO\nuExObHBG0+bw523NE4W5a4mVPM0ccqEroxAq27YWLpjaEvw1jbq9TXbC592n\ntZsBvsaitQWS8/AjBr3Bl0tX2BVml1CtykbLhNNkuGFPTJaNRvJfNUiztNaz\niEihjVd3tpQOsCGvyv6hwjhwvc46ysAyVBbN0Yc3//9FrygPnBRuCQkWFzQl\n5/l0\r\n=Q2PG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b37cc6e961de1efe5358d84009dd2999e40fb14d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.3-insiders.20191118_1574113296382_0.07689028257353514","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191119":{"name":"typescript","version":"3.8.0-dev.20191119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191119","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"faf2c9977793f5338841ad6c710c2348b4a81b43","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191119.tgz","fileCount":167,"integrity":"sha512-9YQOp2Lp1cqeoAbhpZRAUpM+6xbisNt/glvaH1x3nNT8z3kOCn4xFj0w+QnTyaOfa6d0ZqBdVgydepjk7WzOXg==","signatures":[{"sig":"MEYCIQDWyPTIir5vX7FS/n8muc+ukvtuNSqnQEB9Rmrq5RaqfQIhAPfEpaYqR56nvzkcA0/A3wgh3DmQ5LIXNP2UlVNhL9pS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50591355,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd05bLCRA9TVsSAnZWagAALMgP/Res/lkJ8an5d8GjnGxp\n2ZDqQoyLka5VNxGBCQpLY5JuOfoAs3t4bf3Rej5KYg2eNftuFqTvYLIkyv+S\n/ikK/5S/AtDEpCyfl+XclJtIPBY4eF+WPYp+Xa16z7PmsoSxJa9dbHHSXiM/\nWtwmf66ojCD/3NFPNCZr8WRbvV47VLL/VbFlVESpDeNfe/XogQHN0flIiZW+\n8q8SvebytxA/xfcbqqmtWG5E+c0R5lo0rBC1sYBDRnmC5JTE0sK28drs906s\ntWPlXA1S78/GQwI34zCJJ8KKTcFPm+Eogd5MVHt2ybm49lEX9Uf7y1DB6jdg\nbYFAqnSVoFCKr0S9I3GpvzBEIfI2BovzK409nLv37b5LVPikYF5rcanb8Td5\nJFGGQIBG2x0azRXK0YMsmQ+9IsFCYs9+KpBqYG1rMVoLOKpvzSQeL4ShR3iJ\nmoxZKaLRtyo1XximllRByHE7ub5oC5kTP0j9ruNlEpZh0LJwK7uCpfHe6Fp9\nLbgAgoboXhxTlAIXxZowZQthIywR9VaNhbACvdtm1pC0WTs30CSXnOuE6JpX\n3o0aU88IY8ajSBeF9wyUMsrq92j7JxdyISKW/z2cIgA/ye7G9Ur5ce+UMXTV\nRMH4TR4dlbi/2aU9p3II1sqLGl/NnHxhKwgq2rJHebgSqC6kbI5eET1H8ixH\nkZCC\r\n=2xOI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6c59dc34acb84a9cd8b5d28a384a98bbc6dccab6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191119_1574147786319_0.11485654921083599","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191120":{"name":"typescript","version":"3.8.0-dev.20191120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191120","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"57c578cca1486ca7c25bf46970a7621b68bd9c9b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191120.tgz","fileCount":167,"integrity":"sha512-TQhqLZp6Io4PcbiKYx03MEhuXOe7QHNwW+Flawv4jgjxVL8WtvGlCVjM/Y3ew9InGe7UaUj21pcqMCt+QRY54Q==","signatures":[{"sig":"MEYCIQCbcS/8BCgF1xs/29F+aZOZy/dnh4/nfMr+WPjw61/U0QIhANxSBKJ5fjcAQSDzdYwj4EdI86Ju6ynaRNxEePtTqh9e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50599403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1OfnCRA9TVsSAnZWagAAZ2QP/i6dds1Ppw8EfzTj/xU0\nm0NqJewi77zoaJnCHYnOGBv3Wr8cvBKmyCTgDfsCj79GgeIQMAO6FTAeZnba\nD+vfYnh6DbPaoNajZr5lDmvgNRlJ6JpEjUNSaE3fHNn7D8p3gJVtKZsWQ7ER\n63myiTZw2RDJn2ReW4UN1hQlXnT2vN6WgLbM8M4l18DEaryE74M0Qp4Vevjy\n96XIbMyFEB4nFa0zUvGlLiE12VS0ZH612zeQs9ctVteKbhALiOt7XN1kKB0w\n4rGuDxkwvQXN/2o4jNkZ32vxdWxdR1K4xIBvbzaOh/WWuV831+mpeTOfB8CQ\ne9Nxx/4kxj2JvH3PepQrr/StesKK379fkYGI7ivP9rKlckQfRosG9Ia9nZhP\noWm3aw7AKvHYYCccrrvOKT7xG01ZUOnbN5WL1eQVva1smKaZ6OnupmsV4Jht\neEzDMvZ7X/5MqIby/Msd3Wvcj3mkwezasoWvIMnxYEqDrgdXX89iJ6697fts\nZGgxUdkb0CqkOuRnKdytzbq90DO7sFW2IbSJ2xMlpyyQmSu9KYeZAoktoE5/\nADc1utfZwFcZYs9wdI/bwphwacCruEXohKtCkUOu27Xf+lY/VKjY1dQ6TF4U\nchMSzLz3b717wuFGRC8nggx99BerOhlfj1vdJqUXXMx8XFfneXgBamsZbqry\nRgUh\r\n=E2Hf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"75301c8e2ce498359a6b33c3f9c9a6a1bd5980c0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191120_1574234085991_0.49893768341425737","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191121":{"name":"typescript","version":"3.8.0-dev.20191121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191121","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1bad5fb26916176460e28e806352df5aad00cf6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191121.tgz","fileCount":167,"integrity":"sha512-iBJCoflWDqQW6UK8iI/KTEPL/IuH8+u3A1vp367JPupmmwmHM4+xaUOLOuiERCTuj4oMP1qHbp8OIaWd+FzPTA==","signatures":[{"sig":"MEUCIA6x/WVzA2JxvEl2xPGRaqomjMQ/ktN/DL1Pho56Rv//AiEAnn6oBGhIIiN29feSe/3wcxVsNlSaT/S1jN6ufkXWHXo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50602263,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1jkhCRA9TVsSAnZWagAAg/sP/37gxx/FAynrXCRWktd7\nGg9Vz+X/3z1Ziywh0NDcwz340K2wzJ+OZ8VTWAy9UcS0EpSiVqy+CnAjnBoQ\nFD7zdWfuJmiVfnwDBDZgp23n2EdKNRysPRqIvUkWQftIQSKaDTr/iRVa+iot\na6jeOU4/aChasoyt017TUj7D/QRUk0S95SqcOsxt6PA02xKh1Lt/gfJnn/zf\nKKo4at725sz33Cdo/WkyARl6rEeikGR8C0UnDY9fvr55oFreYcKSd+vhTL1m\nXZpeSg5u0+Jde9/JwOV/gvuKFozfoB+XPq6+sKmPhyAMmxZPcYwdx1u0mpoH\nt69MOyzyLowQBxgFspKoPQ0OaQTa9wu1Y6q2VUYMsabACWJJqZZGnbQcBkBC\nKqH/xeL6VkDWvTHRPOOjPS0QgVzKNxtU9xwJr8vvXXKIY8tyJN7HccR9G8qa\naOW2I36tyUQVElW70tTxocI+t63hXH0CNAsSuEoy3tvMOd4zTvgRyr2tOkwX\niYBL2NpVDkqdOy/9bamvBWzCqXt6TCUJDgt1Zhq9nJzRdDugW9sfgY98Opde\nCtgHAEMm0kEle/3yAGtbu2jo9gjfabEFUElAWm0mX4rNiuBTG9IQE8PZkBt9\niv5gBOo1t3oKpa6XDOJ0F+18IpQbS/hMFpe9L7wJiFyimF8IX8jUJAmUPLum\nrjrp\r\n=mnCj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0d993ac59292bd5323115f60bf934bb578995d92","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191121_1574320416192_0.5677397802384061","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191122":{"name":"typescript","version":"3.8.0-dev.20191122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"eb9da550440cb6f7a24d2b5f4d73e7752d065f67","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191122.tgz","fileCount":167,"integrity":"sha512-E+l7/55CItD/egNKlODdG42EpfKQPYXnPH0TA5l4pkmCozMKDnDRnlg8DkRq2Vh/7ZDAJIH8R9/YhviAwpsObA==","signatures":[{"sig":"MEUCIGnxqMAkdJw8i/8y2i/UvlxbAyo6tH0vs7o6sRNICa42AiEA7DylUgef2kSYaDGHrO/fzuUM3mRhIo/BCsrNCj2I/jc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50618545,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd14qjCRA9TVsSAnZWagAAVoQP/10r15rhL69njPqhAG/f\npu+bloUYTW9j5TiBYV28ZZc7kPQu7gmCvUZzTyqiyumqXh2dFa+aQ8l1r5Pa\nP9Qh7cpq/a5NEPphBbj94Ph4rDfNCJkEEf8kcTKIh3+M/WsQnKPKZ13a/yWT\nEevdv+uSyg79xReh5IOz3PTLywLYwFq1W9wft4a9ypsUYR+pauwbHVZnwCZI\nOrE6Ku1XS76GvgJfeqkUtATmqS1lHq9Iem1KSUtZqokOyck+D+yNF0cEzPdA\nuhkIuxlQGx92Z9pwNq7VMCS05PP9LMGS/kC487kbO1QPPLhrDGNDOLKyNmVL\ndtSj6IB1DVU5KjaC3yUAz/iaKgya+jt2k1P1l2N4RYIx8rpbLKJZDgtt6lqZ\nh6/zTJ41i6rVuBJ5nNahc32Y7Cy5a3vcs6GtQsADyIiVTxtYM9sXIeMWpaWT\nlMMT6NSU77mNP/tGG3Ei3nGWiHCUWB+pDgqZ7P4j9ppL/cLWO74UpGD7Pu2t\nPNZBpZ46/ck6A1RZ/ce180I2IcPwue8cPR3fF/9uhB+jZweoSGA2OqklPdq5\nqNCyAxnvwlri9kZICihOAgYuIwIAIU6lC/0KhoAKZloWoU/a6AwHnfJ7O8DH\n21TG0GLT7aiN9Rw2gd1L7c0L7IGhDJQNuP4txBVW2jGAerh7HmBGlJmeZqDC\nrdWt\r\n=wj3Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dc1c45aa9b7f2841ff3f5b758126cd2b7c0489ea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191122_1574406817963_0.6633318267984036","host":"s3://npm-registry-packages"}},"3.7.3-insiders.20191123":{"name":"typescript","version":"3.7.3-insiders.20191123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.3-insiders.20191123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f3bef33a2a3f6e02f11bcc0c20b6f0de526f17fd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.3-insiders.20191123.tgz","fileCount":167,"integrity":"sha512-b+tLx4D0a6SeuaCa7iehdgkRKHsS67FkioQWw+0REjVNOYZ+AqJ0NjlnomK1hEUvSzSNrH9Du+m+Yiv7JlVpSg==","signatures":[{"sig":"MEUCIQCRLtEu45csd3WKw6UoOsbKmuy5lOH6nXSEqBEIr5siWQIgLbBRibkRcjwafyCexNr5Qdkv9PxAO1G+XTjyJ9Ue9Ds=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50543640,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2IJ3CRA9TVsSAnZWagAAfW0P/jK2ssz9it5FvK38K5zJ\nrW9YstanlPqmNcVhQKknJoZwYNvOcuZc2wv3xmzAg50z4CsHf+xNUaRMm0Kz\n57Q2RSnF+gOrHjwlDHhV1/L25HzG9mDoPM1oWtV1rFp7Ew/j+rrm0rbSTlCz\ndz7TG7pXAT7JHYFXk96N7IpGYrZ1vSaCpH16XujA2LnNH8QJmUsnGc/JL9Hz\nndCKYDqeOVUicZOJgvsX2CVZRViJURd+e5REnOltIARlfwKSt4J5vndWHs9y\njuoKpplF5+a3jQ1v6rzzUIu2rBLbNQ22xyEHb4lukfC3n+QYu5vvnVh+XjsY\noMR1PYgabEW26CDEEt2/fUgRwLEpIOhhYm9UaxEBldZaQiUU4vOGHaRjqHab\nEfU/oSUPXvcwz71xRF2vrL77MO9lQYy5yJp2s1dMMbrjsfsgsfEzE8robCry\nbbVsW12/mMipE1KhbJmZOas5Z0SWXt/CNUpVTq3PawFwc3pTN3SpYXk5U/WY\nr4Y39fLyBOZP98gywZTBGNuMby4fAA/f6QYlHHlSWe33gt6ZfJR4z02JDOXS\nurhyMWsUCK3cr1FOyyip03dLZ8bnh/iVul3deRg4o1g8mZF/aQE9Nwh6rx+f\npHTomi9H1Ec07ckAaRdvDK6ZKizQKYCflQT/0KG05WRf6C9v+fDIlzs/mhj1\nCBle\r\n=W4B4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c021b2859740f76e6da61670d7cf9011989bfc36","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.3-insiders.20191123_1574470262648_0.044892508634720274","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191123":{"name":"typescript","version":"3.8.0-dev.20191123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7c501328dd9f63b49f9bfd7859bd1599db13788d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191123.tgz","fileCount":167,"integrity":"sha512-1Cz/SejVZuU8F8aYlOS7wfXaBxwQ11iARAkZvwbdHVkFjYiaI3E1f//QKsBiP7IYKZp+J5EEDcUoZxYihw2IqA==","signatures":[{"sig":"MEYCIQDNva7QDPT1WnyT4AVnnSZSoHbuGgubsYi3dwjJk6z58gIhAL5Pu4h0+HZJRuieaaRZoRXBtkv6qD5EyGoHPuAew1BH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50646773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd2NyHCRA9TVsSAnZWagAAGakP/3olpytv5WqHnSvOEL6g\n96kLCeB/yMw52k9KJLxLGhedvqxMqUV6XTYujGvcgOaVMMjyViHV4UccmmKt\n/cs/ygA0cNwkmfpUdHX6UQuVk6svV/kh17Tqbz8qAWiJj6moVjwCKRd/Sriu\nvlVWGGbn21tnsjtYz9Emk/mkFbaOifzX0MfRfm6qdr+VYFSI66daXH5Q9Srb\nmcH1oESrWHxa95fUj/a3QqsW5bcqTOupS6V27aYCkeLafX/Z/wUTEgWZbPS9\n3LE2+oNHAmG3ntMFfol5HrguY9KfCSwZkEEXO5C8CN74pBAdHkfqZtHe0hGA\neX1LlcJbqVBZY6cd7jsJtFZACnp3Jn+9AAHxSnVbfPtlSI69ZVG3UQ4MecO8\nUJ+4X5vEXPJoDZF7K7+lMrhHepAdZ6iTZEPAduPDAK72LkpalEz/IJZLI8GX\nQy08ZT1oHfkQbeRNSF31x9ICOPpNrmV27FheM2fuGIjA28VmC78+HsrUnG/y\nC3HX/H0axTQOPnZOewLCNs8lcppyHiZXqwvSgOWQ9MSt5wZP9+/++Jqx4vLb\nynIzB69LAWSxGk8qxhokT/PuVv9mWUhi66uH+HO/gpQOa1nH6EMGLKcJxR6h\ntao+/OkapZtlsSs2m81PUbbkU5uu0OJOBUokGwA9fd0iVz3wroft/GS4FgFx\nWnPR\r\n=37Cf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b9689228b5928b2524faf7f0e9ff5f5eba42a7b7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191123_1574493318472_0.9731439917115958","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191125":{"name":"typescript","version":"3.8.0-dev.20191125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"7946be941ca867e04fe9f4f590c59791bc6fce6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191125.tgz","fileCount":167,"integrity":"sha512-wneTHLB4oFcN6rpNNwVxqQZP9u6v8La/VI3fq/rtXarSrd0VsOADMMgeUCTEEtfs1Gapnx4HryaaM5t7YXUvWg==","signatures":[{"sig":"MEUCIAfSyHtb//doIsUjNAeWzmMIxwbATaQKevDWR12J2MW0AiEAjASPDjkspvtGlFzuqYrYvbn2j5bqiOvADRrvWSislQY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50646821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd23+TCRA9TVsSAnZWagAAmuQP/18W/GmbR4/ca88DhfZZ\nO4eEn2uORy9d6VwJ72WBE/nc3SurwVrexVFqYM0kGeqSHdoFbxk52qxtwbsS\niQ7uu1zZ+4HmtNsK2JLmvxnExrvgOB7zI1jWtbOJPlKQ1GGyocG1xE7C94ud\ndBoY3omkkQGRhPmft1cNsKTdKqT9+RERvOccWcuZriztaCKcYtTwI6G7Mg9U\nfKsl95gSpEroydklL4/2SBw1d4TioNjTIYUvTOL/haDQNThDHCWY+4kr+YPN\nou8TBFJ9dELk/q4K0yrt8URq5qhrp860O5fg3EfGdhItdgFeNqZ3w5z+r3Mm\nMxORobvISIOhn8SkknSHRGR7CTyrBPyGh/a3jhv7DHSNm9f0xadLxaamP4VM\nuGL+lo4/oJjfWEluB2+XZ1bEIHoYhIIF6ZKTOsgQi4fTuE8m4D+Kd37IxX9F\n0TfSjxlxjbjCHbavOBPJ3eDkpWuxSpmHqRPxYAkFQoMRFVAkb66rWyQKrz+X\nadxAlXZnPLhXvd6ZttGi8CIOD+OKnnSUqoGfcj710rfpTWcTxAz/siCRJ0VH\nh5XZUhAF3dl+YUBeNpBwvEBulwWMa2jjfWJEsoN0PwV/F+EX85aS3ZrqB6H9\nvcUGCcud9Fya2D/My0Bi/KKh9ZWMG8TUfakukl1rc/d2ONnIgzQP0vRb5gYp\n4Itk\r\n=vx7F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0c17476d09655c7232134ed311edadfb93924e63","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191125_1574666130426_0.5484445047287225","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191126":{"name":"typescript","version":"3.8.0-dev.20191126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191126","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f890bc616f5cf1fd004ba9ef9e02989a4abadf23","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191126.tgz","fileCount":167,"integrity":"sha512-ItwqPbjcSzsbJAtJtoxK0fejYDDL2VHY6XAg6BH38l0QNXu+4QN73nUw1k/ihYsbjWJqO77fpUeMElHhPonuag==","signatures":[{"sig":"MEUCIAF38YYIA84D2IiPtNx2/2qfqfr+Tb7aSkQyhGoyK3hEAiEA8lmDHdrNOmaC4DlhYl3dU0EGVFGcumaUVA5vpqemLWs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50651944,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3NEdCRA9TVsSAnZWagAAungP/3cAkFP3IxNdVDym9R0z\nM6nLltQ9xjX63er9xbdkj9p8vj1sVxkEqH0oiCAgqhrkAvz6M4z3gQnWK/wR\nY2QAxg/uGYpwfryozCsDINxJhKVR9umcLno8WCfElTjpKJ6l1hA9CclvXukG\nbhB4QJb8Pd0QplPDlnx+hLvhiG9VhgCPOi3aa1XAM/FSg1kWn6AYF1tMdXP1\n89QklCH5D1pjp7z7uF5kIQRnzLA+sE7c5ZA3nnMrZsY12maG0xGOgAROzZFb\nCjW/pT1zyIcPJ92wfeUlOjxUr5qHejUMX+ecQU+2C7LJduras6Oahmq0ze14\nuSOwy1HgUtUJK752yMvYKZ6/+wqL6q2gdXbJ4G/G5ICBsIaJgRzTe+9YulmC\nw4Ezx8pa/1RBpX8DQ7p59WuLMI9QnVBklH2t9eZVOYBztIYgiSEVzaUzo+DU\n1rAn4IxGewSe0Kh7kSjrPcFXPkuExsh/qoI7/7J80YOLmCoJuJSiPhKkPAbP\njTY8c6d5zQdc0tMP6dt2dHY3zl1lp7QsAWrkAxTbKBAxR5vC35Zbgn/BRZY9\n50tLL/wdZ8H3Av/+qKUumMT/WFFUiVOB/Qlc37mAMnpoCHnocbIZEc6v6UBq\n8ts55t46uf3I/JGqAmCfqxtNfd2i+ON6rwocyfJ8osjwcbetY2057izyN3eS\nSMTV\r\n=uEfU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ea4e6b31ba63418156b0cf3d18141f69e587f261","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191126_1574752539679_0.3005785958456295","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191128":{"name":"typescript","version":"3.8.0-dev.20191128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"28d0106f49cbbfcd340a5231c0e5a68008e9d122","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191128.tgz","fileCount":167,"integrity":"sha512-ecJ2qYufEL9u4rY9GxlDxU1M+Kzrm8mn+anROJJLYpsFzZgfFeJx+MfT6kcK+6ppJa8ywN3FvtQnKmTj4naleA==","signatures":[{"sig":"MEUCIHSeLbWASrsmpEYrwobIpIy7zB2YqO2i1RpyG5Xg2uIJAiEA7NXXo8EzElyiD3xfuYh1WuduErLht7w/A+YPK/2AJMc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50649037,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd33PSCRA9TVsSAnZWagAA8bQQAIChtqiGDKGD1CAmvVYR\nDIXGmJ9wr2hrWJA1jFF6g9ri9aBEqD6Nl1YR+xnFDP2bHcyZoB7onMu4JduI\nl5Nvnx8h1djc3+kfQx/Tl4OvELLnnznx7S7p5NQTbwZEsEMt+VZWo+rJ9WvU\nNspwJGGMb83fou8ChGNjcBACBVNg+MC7TdjijfdHnMm6ZyrdcTr/HUJ9q3hn\n3Iy1MRSgKdk6TOAzF5385d1wGv9+0zOY62qeI34HNI7Fs1Pc4oxINKsgf8rf\neUVe0Fq0lpVPqEZBHEAY8Xezq/jQ34i2kJdQhtr0Nb69e+fhlavQWUjpeEjr\ncDqH77ailCI3pe9Jc+YGrLEhfyuh+FOuHxv5T05sjg2MmmJETbq+TTvdaqG3\ngFqRdTJDHUDTcB+3eRurIJ8kO/IWbwfpUb2O6As23gf3fFmRF9ZczmDbUeV/\nzKc1H51dBdJ/OEpTGrIURfWc6YtYVmbOyPW+jW8cHst0O6IemR2YSR72fgfI\nZIcX4aG65zajLH0+BdNvDN2yiyOJSGggKlZC9TMiqDy5TPtftBKUjoRrecvk\nVdJMBC20gfOTCszlH9UDNV7/THMSKWuTg1tkFQWshaHmEAC2lCcl5+q4PJLN\n9pi8YB+WAinhYZQj5Yhx2rk3o2tIgzEXxM8KD5tuso+uuXBofq9YGlx6NXzd\n6j+d\r\n=ORuS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7c14aff09383f3814d7aae1406b5b2707b72b479","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191128_1574925265331_0.011892741305993049","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191203":{"name":"typescript","version":"3.8.0-dev.20191203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191203","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cccec5a4a79dd7f3303e3a037cb530a4f743c98d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191203.tgz","fileCount":167,"integrity":"sha512-ZPMH02RdXSYkYr5JsxksisQsRlJ22w5yXn97vzIgp3ehFnMo/3O1fReQV99iEN4keTLD9IiGGxO0h2u6aKfJUQ==","signatures":[{"sig":"MEUCIE4fUWSAF+w+y9Cu7DAuYT+hWlJ/9M3Ma1ZKf9sMgWa9AiEA79Zc5tFb5Xn6hYiikqXXGGZDDIm4Ev+y/6EeVXQ2+rI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50650944,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5gs0CRA9TVsSAnZWagAAUUEP/R0HQj96dTTqv+S9acOL\nzxTSEry4b+WMsjkwUefglFXzEL0AN56u2p7hDrwvyji0jaOmHr0U6FfjbfHT\njUhSplA2RDdv0fTtRZAgjX4dz9VjwlYWRNxrkUHoZu7xiSX9TTDHjbLx1YkP\nO+iinWTr4DAl3ReJUCxvH+P9leI5DYOvmlecTNXU5xkCmUBhLGlt4oGeqjzu\nmDZgZM5sS5oyfRDvCGHD+LXPx/YhJoji+hydo0jCK70NK0Rl4AXDF6mszNBy\nYqrsjpCOJye7XR5NOrdd+mtN1DYY9+TDslGAbckXWQ7KGqgI8xEK9/CKyAZb\n0Enlf4ocYPf+IJmk90EHUuNsHEu0cO4owdJNk495QLNUhgUu3g2PFF+sVfiM\n+SDEd3y+t2YNlE5hvwtfv64dQl80CIY4cijXlAmiSb1hrVEKZkohW4byk28h\nVsJy2wJzBnz68FJEQtRNcwLDliOI9Gywm8VKX4LfJU+OhZ4lWpVStt4V2PJy\nMjPD2zuMIMY9vsP7fmVaDlubmw1QEKO2QImpZscOBWolUHmzPE0K+JE+Cj9d\nC7PWviXCi2rQcpNViwkqOUjIHpMX+FGJGenXBZdEB4UpNpOZ4aktT39DY1tP\nEftf+kj9GDiQa7Vapr70nIc3jTJ5b/cOrTyL3eF+XlYNACxXFcA3TG9+Vk2d\naxh+\r\n=2pGU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2ab1b71fff3bf54d5150ed29ddc71217d0018ad5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191203_1575357235248_0.8816615319346546","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191204":{"name":"typescript","version":"3.8.0-dev.20191204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191204","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"166bd85d72581fdb227b25b63db1f4ff12da865f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191204.tgz","fileCount":167,"integrity":"sha512-4T10Zfx2r2yi7ZhdPrfwBoQcTfC44bM7mW0lgE6hhiSZ6nDcznLRJKjUZdPM1LcVqSX8etuiIfDKTeYihP9GaQ==","signatures":[{"sig":"MEUCIF+t5L/O6sb3RR8zcxA4sMZkbNmNWKa+3qNlQCoRceoQAiEAuKtSwMm48ypGVoN5dGB87s6kwywl8jxyC0eP9cqVb4g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50651608,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd51zRCRA9TVsSAnZWagAA810QAI1UoZl0CFfvz878ofAB\n3Hn0v+wImzIkazyEXs83WT+rhbCplqMAumTwVgRTXG8d/Flma91hnvO/abTn\nN6M0EcrwMMld+Kt2HMUOuObNKhbMFu0evOGUub6eVUpa7nyFbrdy4+MycexM\nxqOSDKX4dPQnmrEK2AI8aAZrQpWPz/IWRquC9f+Cl5Vw8+Lhnz4WXAWM8V38\nRcdWMnmA/Z+RmjHb0+XGYTRUOM+ehT+qShnEcs6NgiMEgIWsF8D4xGEauUD1\nR3toSeYDYRymyuiqJdQ5AcQchCGhaVbsaJybdhpE7UkYrxdRb3JUzREOasPe\n07sjMRX6aByzOKSBJrepgdA9ZWDQvCeIKXf6F6yhbonkZ5nJSgAJwPY5eqUz\nODud6TID7o4gW6xV5WQYQURo6XbzsBRvNPpa9buh51jwN7v1TnnlufssZaLu\nJtXONAf+qDk7ne7oTlYqo2HLCGnETV2V1H1pXEAknF9Rxk1u+dObCFbl7kBQ\nI9yh+rN0q6Y/wmXTUxM50xW5x5ifkuftoCHPoGETgdTlvgogbxiAq01VSQmF\nEhZN2A3+zErjgH//2iFEDbt4AK7JPlnBs2BPEpVjWRpVAnsP9/jxjpc7Pztn\nqTD2H6eAdwCZuCw/nkcTfifAatWh2iOf7DTAs6funzpskLWRsatbcrZOrfBX\nEaSO\r\n=sE4k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e8748f8162e85d85581cf2006e4cee51bf796e84","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191204_1575443663855_0.4716803930086486","host":"s3://npm-registry-packages"}},"3.7.3":{"name":"typescript","version":"3.7.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.3","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b36840668a16458a7025b9eabfad11b66ab85c69","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.3.tgz","fileCount":167,"integrity":"sha512-Mcr/Qk7hXqFBXMN7p7Lusj1ktCBydylfQM/FZCk5glCNQJrCUKPkMHdo9R0MTFWsC/4kPFvDS0fDPvukfCkFsw==","signatures":[{"sig":"MEQCIE9Wj15Hk+HbGGeqHFCqd/JXJwzKnvM/IHs59HbclRdlAiA3ayWDwx+adZ4Ixi30DW74j6teciQlJvowNh1Eo4EUbA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50543549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd52fpCRA9TVsSAnZWagAAmxQP/j5mIfZptpKMu6zLsYoI\n2utfUonevtAu0zqVH4xjPdeJUEyOw9/PhqOQPnidBXaHnVOVzDrRXQJYX9QN\nUVA9e9XdXpu2cI2VcianMZ9vC7/Qt6+YNipmJKMroU+nA+4hbafPCHDW9NGh\nulwiOIyn3xPacmsF6pgD2BabZ70Ln9C1xJqKgqg/myi5gBxrueCtbE7wx40f\nz+TnYjya8JM+nj7NfnPiYZbZ39CKs0leEJLFtvzK8l7IZ+QVeur3TRDhuNsS\nPDqk9kqMgrXcMfREKrTvWzF/Z6C0QpHzT8cZPtCiIjS9b5e5defrNPx9vrfL\n7Wvq4rbxX4FQrmWD1lOlVqyJysfM8GbDWEsy4wrkPXIDr7YZZsONXiCq70pQ\n1S7m35pkua8Dv8J6jtr/4FjhO30B1lv+2NO1NxZYpNnSOs/Vdz0TN4ADGTMB\ng0dph1JsaQQX3hc9rBjJGuMqtADvTP4aNFLwB0oZRbnT7iWyRa9XR/MGOrPm\n2B3v7hu2FxPd2Jnj6J4XWLEPdQVR06K7sbQFwxyAsmpXv382rAGEQllUxr7N\n5hk+IurrcjoIS6XkdRq17RkzcNNFe8k6LRy7dAo2e1l5F2iKTWAbV2wDh+8F\n5aACHJtnHpWZq4rBt/YTsNwpMyLuM9NNIBnFsLXbnaesebRO9hpDmiixz6Tv\n2XtQ\r\n=3Onl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.3_1575446504485_0.7851542434875622","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191205":{"name":"typescript","version":"3.8.0-dev.20191205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191205","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1a7aeaf793b0d91faf223bbc6789bf35d394d130","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191205.tgz","fileCount":167,"integrity":"sha512-X4oGLJtc2H0zQWg4TnergIJGJYF2eWRLQp1KagBPWSvRtHrsqNLPbR/9oot7V23qr8sZw6FKTOLRbPWcfd5xzg==","signatures":[{"sig":"MEUCIBjnuOg97omq7Zvth7vUF3LB68FK3QM9haLRrVsHczCKAiEAuB2+AgwJgw9PI6fgMqWokJfm29ygqF9zg3uvYSWykNE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50651264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6K5NCRA9TVsSAnZWagAArPUP/jp3/pWch/ZNWgiT8fvw\nGh0ee5gkH7c2V2x3xCyPAKURgchxQfsIKEB0Lc1vDpWeMXD/iWX1cnFg/6mK\npb6wc9O3cSblW+4/vJMiSMhSg2CcrLz59WE7V7tNzbHRgHSdoWAfo4zVeAs1\npN7++B6xMMuwEIRgYBGpkRtBvQ5KbolLmLVKCBTiMhOczTy2Jq+QoyQFBmg1\nJdC092ynwNVZpBilu5ebrWKwaeE62TZwuRE70o1Knv1yr+KvjbIErdWqEDBB\nifUKjUQ3xpTCIPM5wXV+Bgxh561oyhRmBplRvztzTXfYl74g4bF7W1TNbpcA\n+JDj2dyEqLa56JceAGk25mYpm5A7suFtQZ25S3FEYyWRbJERiH05yA0+5Qwg\niqG5N4TB3BjkKWmIx84OkoZmm2ciPWHYJaQV2xp64+XXw3m/f0Ubl3+omfih\nd+txF4worTNlXChUL/N+IIt0lwz6KMsfNGavbXncS7y3HVZm6r0PAGjoG9c1\nNrYzZG/XCHw6RIcIdOBzsTZ8jic+MkKJFbVOzfolaNoxzFXnSTV2Nq0yJkgO\naObyYqJYKuJimHr5/aMcv1pUx4ggRnre7oYqg0X65XFxOSPRo6hOK5mTeEO3\nXrY1RyiUER6e1Rr+XPTkcDirS1hYVEA3OaN7275+Iat9aMc6U4hD7X8B8y13\nd7xw\r\n=A38E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b39b4e05be1996817f8804bd02eb6cc695fa71cb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191205_1575530060263_0.2386000165985429","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191206":{"name":"typescript","version":"3.8.0-dev.20191206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"280436ca067d4671b15c91182763e8dd643ad214","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191206.tgz","fileCount":167,"integrity":"sha512-yeWDKxPNxAziB7VHOrkE48vqMga5vsB0qoy0N+um8JvK4aPeFMIRI3ke2ViwE8xibHLDo5ubfLqwVmqYnzVfMw==","signatures":[{"sig":"MEYCIQCj6LxE/1OsILevggArxHrESdvd4lB1UOtx7Q1nVdoIMgIhAKY57Jxk17sBTw6miS15K1b7JUX35PqGMe2hkvbbX0yA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50655959,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd6f/0CRA9TVsSAnZWagAANjsP/0X0Q5Egu58pZbe9szuS\npyCZHa8wrVZ7x1EYVW+oKW5NkcXnFvy5aiM/APMqTDxYugvPnsbRyzPA9Eyr\nhjIFM/aoaReR2njaYkbtMjk5nIv1LZeRPvt5nvj4Mk7sk6QNdXFOo+u5CDDo\nQxUKqz6GnddMLmobNytXO3TKEOg7EbiOO/JafV47Qpr3fY3GEQ85yHX2D8B2\nAUeJIAa7fLyWrd93NOcijiqtxo77KVY5jS6S92uBG+sEuLBAlY1s6UsnpHg3\nstFxB+8sVKys0d22tm2SeuciKHZ0j+28Rpzpo9yXXzpIM/Bdw4CUNtDPh5OV\n+8bz4mkz6RYqjjBUkAPLGGrQPWYwKT/0ptLvjTgybT4+bxd/ExhAQ3sOXqNF\nBZzR+IIL/HjmOIha1HZhWP6iTKClsKof02bvetHDLC6wIPj3U+bNH96OWIT2\nalutWWyhRcPhZ1A15/P5WyAU+KR0iselvD1ajSiJDl+SiMRsTpZwQt7WvIR0\nL/uXlMcjD9a2Y76fHcLdVvuuvurNiMQhZUWJZRMO74RotDytV/KAN+d+ZBSg\n/9ALn7myEYoHMlHVXNL10VzQv5vFJoTAUjHZmKgFZUrq4MGXFirwTSuF+bnc\nf+nvvoU0T/ubX0rhxC0VuFZ5ttGywdGw3V7Ae2T/6Zoro9gnBIZXZ7G3qgmO\nm9Wu\r\n=QChd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"02e79a18320010ad4cc75508202d87bc5cefbae5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191206_1575616499269_0.519860720209872","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191207":{"name":"typescript","version":"3.8.0-dev.20191207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"856e6d18d818255596509cd735c9b7a37df07ff1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191207.tgz","fileCount":167,"integrity":"sha512-G3FeEP7WFQjtG8jGn3vex+rm7iFe4UuXGOkjLypLKhWlGG78g5w9L4Rm0bmJd7YzeWqMHNGxoOHuVte0ZwaSDA==","signatures":[{"sig":"MEUCIQDfOFVL228qAXE5g2qovqTXGn/rzM7+/+fajA3KENS5wwIgZU4z8ByLI2lp5flZ6mu15fLtA9LcsEnBGfdWueuLjhk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50654499,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd61F2CRA9TVsSAnZWagAAQbUP/3LoWmzHvy6VgyKJJFeZ\n+wchFM60mJixnsVcN3CALxI32qTz8jKAwcDIZSjFmGbic0ryCA3UjIJUdk9/\nqriy/DoMtKgMubAKPb8SrkuFWOUSOAsxkU0pxCk9Ibvxd37s0sxf96XZHxKt\n5yP2dwfVxS3CMwkBWWUbEzIpR1JFSTiNSP4AjcOjm43OBHtLkO6NV2CtXyUu\nhXevqZiPa+RjQcNIuddhSA86i/nuDkDhGj0nmDQQt/mZugLmbScnl5wG3aBk\nRR1rt9e9+m+O2dIJw40cyKNteKNCQHF04V8qfhDkmYOY7br2kmt1nunoSIFG\njlPEOjU0r7FcKrdKAauBrxlS1YbJuaIXILx18I6lSpxBXGmPHUclBGgAN2OS\nI60mzLwNNHuoTpzxihmre6OXCPEbKAgl96xRE29o52R/MQLMbGQoOUedV4n2\nKTxPbxOETv6fJ/5rNaiStHaBDrgvmo/gx5r9u2QDXGVy5QonlGmQgjjbwY8b\npQLwzBKXJ1gEHpjrqjeMFdzOl5QYnz+C6twaIYdD2m7NqapoPb+tXEzJv7cJ\n+SNwgfmzF+0Xac4W9Wz3decv4i63rtP+H0LQpOTB2vi1/fgOYJlX7spetbp6\ncrlFQKx61hu+I7VnwapIOdSdX07gfVwz0ToeRZmkd8kWQCGHGASTTDQ1Ej9m\nrAfk\r\n=ECD+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a78342a160974fcf93a7b49259f712d1dc2885e8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.12.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191207_1575702897948_0.8128708880628108","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191210":{"name":"typescript","version":"3.8.0-dev.20191210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191210","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c6b37d026ea62ef596d249a3016848cb5781519b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191210.tgz","fileCount":167,"integrity":"sha512-iNblSnlaKL3LnfjNqWBLRvKMRNd2TwmIqEcv6427NlehsZaKYmEz3wY86fc8mHAbi+Wqzd+s10c9NaxD3qYsiQ==","signatures":[{"sig":"MEYCIQD3CqPtb0wByjltdWpPnJe55Kl5wZBAGp8tCDDf3xebSwIhAI3beA+1GP/LnnWdIiJp+Gh/HKC9m9cnvY7e+Jhe3qUR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50657458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd70YkCRA9TVsSAnZWagAAoUoP/iA9WdE6QoUDQrQpErnx\n+V2gsGQpw1uQH3kdtYIFeCbx7wbxPwb1WoBM/6EnOeKM/V/BjhsmTqDk9mlm\nefzr7HFxcNdmdPrm9x9YaSNLjIyQqbGUytygejLYkfgfSyEI/ErE/+Up0AuW\nltE1fjGpJ3aEAO4b989sjO48xRB7EQoUmfPgbB4e3omg7niyfhXr6KXSS+vI\nUtpotcUzMkKty2QR+JNvVLP7rClbRaS+162lvVFQIo+CLWhcWZfNtsGd9Glr\nEL2JPvmKpEejtbEt0iQE0ytGT7WQv9n2EjYIKzdOtrqpOhIrrMUDiZJ8sN7o\npu+iHpAwDWobipUgmXoShWWwpYCDMnF2AcJ7lUWArSLO3WZnUx6Sa+LIMAzO\nMy2HZ90UUUbBiP+S6oj/GTMCuNr/ZbOW2qE3sW8rbvEU7bZJPdVgAd5oK1Jz\n+Dufw0VkUuVGZm6KoPm/YK2zn3+rUz7vybmjanss+7JfmRObPRhWMF5UJTZA\ncTxybEtYADuyHmfnhDOFeApZyjlIQZ6BvPuyWz1Vj5dcUOaZAee6pdeAAYSy\n7ookM1/4Apttd5LibJYTYVqadEp50Vg8OJRp8TN0jDY5JRNzxpBfioKVv7Rx\nWFUxp4jzAKuqaWfBQ3a7Eq3hMDhJB+MgAzxK6Tl2DyJNekv3zoQsp8wTq413\nws77\r\n=TRxr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"50603eda5cd5a8956849f3f217232e5253aec360","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191210_1575962147279_0.43973340392757687","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191211":{"name":"typescript","version":"3.8.0-dev.20191211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191211","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"5e87b0ce4b6d1dde13536c436a27cef983810d37","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191211.tgz","fileCount":167,"integrity":"sha512-JTiirt9nkjehvvT0DsJfgjUJrqsr/WfDVwjsoQoYJOy6H9JEb9vnB9E9xMBXHUe2Yuhuuk/FN16QGoO9Vtv3vg==","signatures":[{"sig":"MEQCIDrBA+lebMsQtR9qOwP6bVO65lf1zf8WzDKv8zkCqybNAiBZJoRy5saVBgHYkYLbuCTLS13RWgHykuDIisaB8nWB4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50684199,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8Jc7CRA9TVsSAnZWagAARS4P/2n9kvg8/eMgD1bM20c3\ne4EW+TJVh88ODd2ZVbuhzBBNnSfmYsHA84ElBik92pNCgTHCxM992RcrE+ZL\nbJcv5iMYnrwxX+/BAwcuaL4540oLk9Pv9pqHD5L7WQgQqiym1sBQAQiXrpXM\nY9W1hAYnVpGBeJrANn6esn8lGAhO7LCutUVwsILuiy4OSyG3+2FPvV04jdWf\nmU8zzrU+KjQ+TrYU9DK5ijwfy1a81noL34PbZ1jrhT/gKr5KG/7C/gdYi8U9\naaNupyOZsZF9HAYdHv7E03v3REPotRM3FGrgL+5cLIXLPol8MLttuVuGl6cE\nYWbi3QG8k8CRw+wBfcFMqpWo5wp3mY8QvPS7WfJP/665frd/14vCRvZn8F/g\nk0G5rW/KzYHODnV+kAuVAh6u8NcwoZhE5LSZhYkXjGcgFiD2qoblYH8r7O8G\nM12dI1nXp4S9WBb+504+AkwdDmXBtszhNqAjB32HdUiUAb0xhA7/N8jM+C4Q\nPjlu3+B6dwNARE44ePqzkRZGI624WRSbCuCsa3iZkWqeEZFkqfAvfC45T6Fe\nLmwYjpS3nzMxGTEAQ2S38G4jYJCLGp/VHCspj+o7tM97mt6rKDA2KZwRsE1n\ndG7VEsotUZjOqnnGCXkN4mGsVKpsSV9nlhTBqXUiBEQ/sMAaYOpajrPauM6U\ny3ci\r\n=Skc/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"07364595e4ca539578cf34eeb5a6efd452061d10","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191211_1576048442514_0.5978160927364486","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191212":{"name":"typescript","version":"3.8.0-dev.20191212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191212","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e5f3db715fc9ea0c6ad0ae0b3a99d33d2f0d981d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191212.tgz","fileCount":167,"integrity":"sha512-fIxJcBYMqhuep+fYNBmCYT9HjAYS5Dajdgr33p/v+m4DdpOIRh0TJ9NmT0e3NB0Bq1VB12sOi8P/VMPIbWNmGw==","signatures":[{"sig":"MEQCIEp614RWc1Bz6VRWUFLcqIOwd7pkTN5Hp+yJXcijcaC7AiAoUIWXSlRiBnSUj+3f0aIsXkF+ccWGMfZjsfBdzBfQEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50849512,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8ejoCRA9TVsSAnZWagAADTMP/jf2Tn2YOdxJL2f2lTBw\n+Q44YnKVAWYmQPVv0ukRNZJKjcdwU/99zsvqW2278Uhk2S8h0SpFgQPH5hM9\nh1yTHpZWJnlLMbC2afzltxj+tZqT7nM9M/dbxPyDOlURB5btwdQMuH4D1Ny4\n2lJJy9zScRIOQWEdm/oZMcDhpsKTO+DSTQqYpn516zGwFbjbZHp5T+YgOpxQ\n7FecjRsg9WXvfK+bTgsxtuQG7+uq4QJvAgm7w1uwZHCMUixv3dAxWR8uYS0Z\nrfkRKrwjMzmPZE952GEpzLoo3LjB7cx82OIAzpuQ8SDyf+Etfpeg1qFPyt4m\nS29iC6Is089MFcTq1Hd8kfnLQ5uphpRnDY2uUAUQD0cyY892YBnlyTLxa9Bd\nor6uMPvc/5WrSFJNQoI9jN+yfLRalsSFcwfxYOeYbdWu2rhrHHxK5t1ltaJs\nKtN9vPjzHG+1mJSnRe4p/E2RcNu+xiw/kvMF/zhbEDcp9aoClwUm3+pdGnzA\necn+yQ4JXOKUlE5tkzKQtMBEwPgreXnvxCzacJO1Q3b/y7630R9MPcd6xxuu\nMkQ/wHCWXPeSNC6xRDhtyc3Podn9uOvSEFyp/GIpsOen9dT0mHDwGXE5t5Ey\nDcXr72yXz1agJMW/X48nDGOZ17v4osAn9GJydTxO3alSbL7USSWfzTNo4DWX\nZJS5\r\n=OFnj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b98cb0645d2e44947b369a4f7d8921f7d5ca8c56","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191212_1576134887309_0.9502013090009009","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191213":{"name":"typescript","version":"3.8.0-dev.20191213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"72d3d0641ac0e9f343be8007352aa51f0dbf46c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191213.tgz","fileCount":167,"integrity":"sha512-F2HB26ricdTvSScc2wwvYrseFkAB88CNSpEDqEEQnHlVLYtkWu6YNhKqTnwOe3eMwzQG1o91Cg5Ym5qvQbkHqg==","signatures":[{"sig":"MEQCIFsOMT7DzYw4EkcXBlBjONWauLJcvMkQCgg7L4/DyYZ4AiAXZNrD7482zucjGVSd6/PUV7LSMRK/QEOPTH8oyiB8Sg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50851205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8zqACRA9TVsSAnZWagAAM5gP/RlTxF+SAdAcfrtG4y1n\nTmNh2OXu62v1nCTS951QszrEvYpvwW015r7cj+9/CK7i45Lx46aT/BDpYNxv\ne3Fm3AsWdCMmMv1Kzk4KDCLo4mbUGd7KTkEoLGIFH/3BuDyG+o18wKwqHvIm\neoW00DacTe7ol3Qutj+7rB82dUunWooK6Q2IRJG9XrWZb2mTBSqdLGSXGNDc\nT3Vqn1EE46d4guZtUmNrO3FVYPehdNEafiscGPO/64R3LNedgHQ/bRqKtxjF\n9n7+HTK/ylC+JMmCbOrRM0EhisqeO5HYzXMLHRNvM0aVr0xJhJaPaGcJ/0fa\nOwc+Ay4NeeM3t1j/rTTIndWQAmsxNbtrwshUEKhFjL5IMpE0Y6wl01SjyLdd\nPTQBbFNlQvhUa7RuiPFuiSGHeOJILr86sWB8ztnRbBUqDDHLYkk9jxTZpfHY\nE1+R/vkITlW7D3WXyNPQztJ7qM3VL1wffysXar8OxNqH1x6Krswj0nfhqte1\nvG1oLQ/GrLbZbGdFjDj65rRmbQWFLNyfHytgze5z15JUBWAE9VfU8Z+zCxbb\n9P3PDvQJasEyAzljGI+1+/buc+W4O9+1EEwWeLtaZChLQzf5oKDTYmYNTN10\n+CZ07YGtPi4HBQbE29X++WnKop36RGnaxjnTRAc7add73tgjZkN83hlj8nUT\nk8Sn\r\n=HXTu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c3b2aea9f97cbc852d3c8aff0b661efc63087dcb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191213_1576221311753_0.5766288316991024","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191214":{"name":"typescript","version":"3.8.0-dev.20191214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"56dbdc30cf76f0e4e115a8362d4c2cbe35892598","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191214.tgz","fileCount":167,"integrity":"sha512-JOZy5zal8B7INcewbvXY5hxf7lCflgWs8twStnVmRoHY70OC6ar7A+MpozX9jsxaycSSErBZ5YCPOjIt9/SDFA==","signatures":[{"sig":"MEUCIQDhr2x2iCyBz4bb3JJcjg6WxbwiTHtXJBJAApK68qsR/wIgTNGfeIVKCggoDRa/77Enn6xyOIibxtHclZzFa7qRCyY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50852027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd9IwpCRA9TVsSAnZWagAAbV4P/3ZSWkTmMlU9jyvj0m5m\nhJAQAsakiulmcAArl8jgY1izcR7vEidEe4U4GtYeA2Xo0I4ohA/GOeJXErxM\nRu9dLRT1Vhho0h7SSWq9wUentNveQlc8XHCSBVBfLUjaamMmSQ5sgRviLciw\nVKBUwVBizvWbaK2JVI8fe53EyKbztYo1KDiKp5JtYvFPEbPckvrNEXukkjOL\nV2bmbwp0KpGnCdiTm/yD9BPk5Zk4NO9loWR5ZPGg0AO62Fo1BsuWZ0TADqCn\nNVSt0LqJ0gTiPmmzw/C61L721NCRPlIYX1J8Onqs1cDPMxRTzJbDRF2kU61L\n0JGeea0W0QFNMOx5RmG17C7MV/gwZIF45vY2YMatsuhLRs9HdcapWO+JmjF6\nyecMhq334/DtJ/eSHAc6pT5IrBlUkg/1wlzqstugA0V5VBcybHbi8HuUXm6c\nBRzblCmS7lu6ddtsdSPDXx0K9B2VlLmFZsFUj9vWgdIF8vjj3lpFYTcNvgQw\nmSElA4sp2VZs8CjvMIblNgrHVgzNCDKP1rz1cixy3j4e4Ff5v+pPHlo9D7Dg\nT2CnuZyoExN/E4dRc5kfrIoymqMhLjPz5K9RWfgmwXBpTjaYNiGO5e2OQOP4\n4vN4CMnHrRGSmK5qdOZeKRBkCsfl28o99CZi9k7pZLYOjc5pO9CdTFPQIITj\nGEqm\r\n=Fsz9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8a88c1c84ca410f09b4ad0dba5d8fc99e88d7ab3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191214_1576307752233_0.8579251511583834","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191216":{"name":"typescript","version":"3.8.0-dev.20191216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191216","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"fc0c7787da1cee1946ef61ddb0d300f017d99373","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191216.tgz","fileCount":167,"integrity":"sha512-BMizYcAlD5foBM9lh+e805/BnEIkJToOv+dn4JDRTvUhHXxoI+8O2GHWPR6RraRwwtL7r9zFTI3z1yVHSZeydw==","signatures":[{"sig":"MEYCIQD/kpKyowlFyOQNjS0Y+x2rjiY/Kd8oR6T9ZnvO4PdOAQIhALySBRxPwRGAvYtj4xLkV8Jt6jhZwN4tcHBek4vm2fcf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50852027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd9y7OCRA9TVsSAnZWagAAAksP/1Apyas0MKGLxGxxyVbG\nZ9GrLjvk+P99fAR/A94UuH5P+hVtrngOYvigSkakwCGvlGyodKFx+E0iYnRb\n3tI9M8EkGKPvczpjC32WaZAbPe+Uk8Js0/8D/OhZSktyAtIs/HfsiGs6lp+W\np/zhpT2zvSCTZPAzraOZtD58WqwtXHw/TM+OcCQi1xW28FwIvRM4iTa71tQN\nwaJgaDAgBkMas3fBQl7pfzhBQRCbwwwfsz33RKKwnXDNQu0MY55bqPydJWSh\nfm7ZrmDF0+XxksFWwVxrd3LkoiwPOO0UPvIRaHoMd4/PkNnr26S8zxPPGK7N\nQdkVSBLUf4C9rtPGc1pDiUhJfrbVdq1Azw1XQ7TJt7fomsMoGkkCvoyDpJre\nvsj4cHWGBXkEP4JJN3+D5AVStje1bTnqZg6Ag29si35W/M4CwT9GJ6FKrbUK\nlztjCLuogPU2hxxUqrpoFfli7BXsXMoPDcDJLtoDrl9tjks0qvl0AC+vTFaJ\n+k2DTboBO5iCwI0pG5IY/r0moj6rU+cnbKuCYXVa9pyCC8SlBMx81kKYWdYQ\nxmS++ldwjxxc68+IcMpHoxotr+LguVJMJjkBRTORrwnt1b241IUt061iJmEq\nlLqhimAQaKSrg1YDvOBQSVhHMpldsISMsQTe+ti5JTbJcZkXj8cVW7i4bZws\nENXg\r\n=Wqw8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8feff60aeeedae91a4fe797ecbce1dd7d140ddda","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191216_1576480461528_0.31299102712827187","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191217":{"name":"typescript","version":"3.8.0-dev.20191217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191217","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"a5e8c7d1ebc2552e6259122cd07c7bb8f3684cba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191217.tgz","fileCount":167,"integrity":"sha512-dHIT5zRgwTzU3ABephiyaZzL3bRW+vmneZ2pom63XralBwgzFH9SPdExv/DQTyzccXl6xV3ZqdFCR59HnEhsGw==","signatures":[{"sig":"MEUCIA+vuB4kfwmgNBfl3L7OgHCDmN3DEptTMwwZfkB6BpV5AiEA2LbrvGDRlxEJpDxoieZa1Zo69rIt2dwc+cawF6OyCt0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50855692,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+IDICRA9TVsSAnZWagAAYrMP/RT3yIGlq7Z20bIf8iBI\nsK5bzhOQeSaz8+YV1NL+3dQoLnUgSPoSX+/WTlynS7gac5IqY8mqDhgvdRBc\n1ihGRcu8paT3aSZJheV0esgNy8j/aI9/ah+7jKcKgJq1bhlTlbwonz4kvfJB\njnISQ7uBoVoafmzUpksWpZbyA7M3mSItGgg4xcFvv4j6aGL+q4lCW4Ro8Y8X\nJSK5d6Q+Jm9XgCrIVR71NDgFSpQAMgzQ7WE/rPWD0hWzQwwdFghKZbVWNS2L\nCeXRRvzUV1sLWjLW4VDSxbI/Tofyfg7GxUGDHyzyWYWUQndN26hLlRM+6k3b\n/iQ0yk6s/jlS+Nf7nAhqu+aZLiMG3sy7WJ37bTT9VFQjkjYXJaJxupYjayGq\nmevm3mMa46OTu/kK1cP8kvCXMUJc4DSb4qQKtnbofA1USypearvT2/SdOfxD\n4DeT1NxXDhNIwdcxNfv4bB4NKPKD+AeX0fbBvgL7omBRGzAz56xbZ+x2v28G\nRkRzkRbqls/CKMWGQoptuYIRBCP3WqWyE2OAgKqpYgm4SQdlvVgUScxave1y\n8DhguqvIJnD7UVwetAlINJmcNEB5o7noPFcgvIkw4dHn8l4+kz/kmRBGFuyT\n0r85g1mfQ2GzmXRyiEriidqL/I18+/ikccGb2U6KJaWuRpLnTohrbPiGunIb\nUDVs\r\n=AbSU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c73af610fe98b6b3a45d4c89e6122d06725ac9c5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191217_1576566983661_0.04578532459760898","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191218":{"name":"typescript","version":"3.8.0-dev.20191218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191218","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"732376247bd74cfb9b954b0b2b89eb565b69b7b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191218.tgz","fileCount":167,"integrity":"sha512-AWBvRkKjgmniVpE3W9j8AbC7uH69ixtYZFMXuFLz600wis5YsX+eGBoX+uz9sR28Lacz06IFZPT0vz8nPEEF1Q==","signatures":[{"sig":"MEUCIQDYBWlSG7h8VK300aNRbruJNm35pQt/bhVCmlCgU2rsYwIgP5j7PhrQieR0e7Z1+Mk8MyDFZ4bVC3V4ffvtBhccdVY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50863429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+dI4CRA9TVsSAnZWagAAFSoQAJ8qBhaPo3WUjZowJC2f\nkJ53+2a+htD5lKOrX+cuPBtVXze52zYSlRXPu/ubwAMnbtIXyvkqUoc7mwJg\nhMyGhECgxlRgP+BQrrCOlnEiar7umlnrirHbg3gDbmmJdauCJYVmLHJrun/H\nplNswreBvONf0ZK+Rvhn6/LTYxK+nPfhR/6Ib8IGW6RthoNY41eTxc1ppzxG\nR451bm7DZ13IoMSHBvpewAfd/sqyAgJkRFC+9OKnLFMO1IYMB+f7mfOdarH6\nlQrtVjJurkEMzIMVqa/DO208hdqv2pJDJ+MZ91mEs7TOjj6OAgttNQjC0NZx\nbxOgBWaL6ZDzZJ1WlGc15aStDuzmeaIM1aYnNhPrItHY1/q1/i0XzsMr2uDD\nvn97lgNxmobdLxpIV3KmIic1bKmdRAuKX31s4zdZX6k36AodD40Mj7xLi4lt\niqfAVnRFCeAKxNid++WXmMkS+V3DOlQzcudF/bCR1XJ0sTt1ZzS8ErndpTFS\nCffBC18nInkmgSRqkH/0xUIsueY+7lgg3UKAhxkPbDvf+Y5y9M4Do5aUoICM\nLq8SJKxJeFbQJbizuN2NCwIou46L8VPPwcjxaq4gv+iwj5R5uh449XML/x7m\nw9BQW8+itC53qb4oKtErxepWkFimIcI1nVS+NyISZISpQOSjbWetCNnd3PvV\nkRRi\r\n=+Wra\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2eb60c2cb292bd80c590024329ca34ab6ec55276","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191218_1576653367913_0.22440538849543445","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191219":{"name":"typescript","version":"3.8.0-dev.20191219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191219","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"e25b46e4dafc36c34bee46712f0a6a7ffbbff7ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191219.tgz","fileCount":167,"integrity":"sha512-S2+B4QG4Aes5XCBWgi9Tl4izJIQ9ivTSCqVxsZnNZNmUr4W/QMIHWPwX3iAeMlP9eQNlplCi2F9azs4OHa+Nhw==","signatures":[{"sig":"MEQCIGsxKHShf25RSKwaCKcG8iSAbkW5nDF2SWbvZIbN6CyxAiA2nhdjTpk24EY4sRqTHXi3PWWFy84huHf3prU/q3Jr/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50895058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+yN0CRA9TVsSAnZWagAAOXMQAI4ZHABCelhkJtt59CDn\nGLgDspam6Rr3DB5fsrw8CVPrPKtAi8bnR9HCtAiPjjaVc91uL/TYa+Z8qRb+\niQR/AAB2E054w6DPFo1CbI6Z5QRWCNyXzIgPbHbi2d1y5haQDTfvEu7UZ5qk\nZnMJwHiLiRjNe5DNM7kFXV3hivgdd/fubFItKfrcaj1dNJhm5IDLc9j3F3jb\nvRrbJASX9PbMpdy2buMf2vbNGwrVRvQ9Ts5KIph3ygsX+QMAAVrMArEDcRkU\nMciE6kogg1gm57vC1+qaNBMRn9vCYoUBNMlgnE8yXa9DYwTLwPCzsW3Zl6O2\nvLLVjhiERdcd9aBVM1Pq4GVa/pLJpY9VpSYYGnOhAWWgpi1Ao4/Uq3ZDGpAW\nyBdaTxGRQToaP5Eo4gI507DcEmDQojt7s7KIiSv8HhFBx7fqjDiPg2gSRkEx\nAtQR4jPqGU9xiI7rpbVqgyXxXRvolHJATLKTJi2gvL3AhEc9OQ5myi3vuGQx\niLdPafscdsD32i5Y8htTAJhuFSAiJ/74P/y3NOYF603MWIs3Bek9v+E9G5FZ\noqvj9GSnMWM9z/S9RxQJ/OvgAiBW0uGjERWCtOh6igi/lacfwZijl5hA7nM3\nExD89zMGZveneaumBvP8OF72rukEh6f+ZPXPMNEY34x22Wbk0ke3+teKrgg6\nyb76\r\n=YHGJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5d3284032b62748da5b8e7dd4fa8fca3ae8141a4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191219_1576739700064_0.032803896301612845","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191220":{"name":"typescript","version":"3.8.0-dev.20191220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"3718281fc1b9871b2071fafd81dd81925168e9fd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191220.tgz","fileCount":167,"integrity":"sha512-fYmeNG2WcZLe4JV+JqLaeiR3f63wb0RrVo3reMhG/P2SOfGdyvz+B/wfmNCekmLIGaFvGCrvSYuduh+QusDdOA==","signatures":[{"sig":"MEQCIFL/Ok9+HAYuHae0RJ8HqJEJ/Fan3ctMF6Tea7iV1v0cAiBghZs02O5yrYXBP2Qx04PmO2oxivo9rWV7Swh3jDRjbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50899278,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/HVMCRA9TVsSAnZWagAARPEP+QHraTC0j4dAMvqdI7Zd\nxf1z6ITk7VfgKGODjbD9qUSoPsrx5Gy2jzmmGVTp7B59jjeHcSk6lo92AWbW\nbmPOHSzMt2LIGo5P/xeHyg/VuhbQIQpzpIYQzo+Bpzi9PcEVgOAccyA32Hi8\nK6sedXu6/Jq9Wdk0pyAQe9nKqKOu7HrSRoP0S6ovZnqiLExtiNrZaoISTFvf\nGV/CYnJhsp0o+2wsLqDsy7o58vTTq7r6C9zRkXBN2ufPr5qPAywsXrs6ujPj\nyh9vzujmsz+379hjNBOImVXs0qVHx13au/2aDtFNPancrLy1FgfhaGtehtPd\nDVoIb07kkG648NQVoF8v6wN+48NmCScixfPbn524e1TRSn/Dq03Hfp5RHvpQ\nH1CZ6X4SjixD44sAzcR6ALm4z2p9XY/2i4BhBgqWCC/mgegq0DIxO5IH2Zi7\n1fU+O3szzcNgcdozcRX+4au08k9hAoYbyNblsRmuufOV9z9lxNtf278yGDFr\nrFRHpPkdKnmS11tN15EKE6Smncy+SlvAvK4l4SdJG7SDCpAMomHOcXqAFDng\nl9wTotnJbt1eP3+WIDC0ih+kDtWPLLmOnorLPXh4wVWDa6fq0gyYIa5kv5Lr\nYQpgMQ58n8hCdcmCQul3BunLqF2XZIuHO9/lorjnXEcDZE4PGsX4E6k63UOB\nVDRl\r\n=EE0b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8c9e96bea90b8f2899c8d3bc455f2488192d05af","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191220_1576826188069_0.33323167800364395","host":"s3://npm-registry-packages"}},"3.7.4":{"name":"typescript","version":"3.7.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.4","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1743a5ec5fef6a1fa9f3e4708e33c81c73876c19","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.4.tgz","fileCount":167,"integrity":"sha512-A25xv5XCtarLwXpcDNZzCGvW2D1S3/bACratYBx2sax8PefsFhlYmkQicKHvpYflFS8if4zne5zT5kpJ7pzuvw==","signatures":[{"sig":"MEQCIGez/k2mficB/FPmyWTYeBSKxb/PM10piIsokCzwZXFCAiBTTF8729RmNafuz1YjdfARvcsx9pDDeftv2w69IJlDcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50544203,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/Tm+CRA9TVsSAnZWagAAO3MP/Rmhg/QU+dPkuBc7CYQw\nbsc1r2SWVsfjkhTHIJzVkYiC5pqH4OSVk6NWyVWJACVHpWUPNva9qGi8H3Mm\n6Vxug+spX2Qsguxi8ZPGNmVDeVNQPxN9JrmaReSOoio1e0HyFLdVYS7Q2dgG\n0Hg4HvmEySwtWPVWEKkdqEyEuVDZntuMRVNEkGB5kYlC0hpyrb7apGfBteP5\nq0g9T+l4o1l0sG9h+iibrFXnnFje6pRXWeSI2Wc+dyo+8bkZungKgGAh3TvX\nBcWBdKMybSQNcUqh7zrB8/Ooqu5r6eIEv/YPhLySwcoT9YjDfl01MOAaYBT/\nWe7fSlxsv3Yvrst0ycpKVEcIKV0PwZrBHTEFFxSkhD0yYkRcyxXIuxN58sct\nfCGEMDy3LzT7kdexdVJ7IFhXI5ya6zAAbJP0d7VDa0oNJHPVI4/YIvqAdway\n9Ujy64in5/h4tFsQm50qKwU5oNyqTsWzs+lZzCquK9gOu2UuK+GmWh7ey+wp\nUoPxvtKjM9vYPgCs89+gyRXnUEjbRasABa44eN6+lYjxEhAtx2WSd71cP4ux\nB+hKm1O57W7rEKUDeKcRxPN8utJKshjt+ZZzY+n62hymaK8/YFDmhbOtGVqP\nhlMLX0tnosF/BRJh7QVNFdpCpOXxerpchbYjVEY9HFGV3GlqmB8J7dsxNGha\nGFDn\r\n=pe0L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.4_1576876477537_0.354895538726248","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191221":{"name":"typescript","version":"3.8.0-dev.20191221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191221","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"942e3de227c11138a2ef30e7bfa071aeba0d0a47","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191221.tgz","fileCount":167,"integrity":"sha512-dNJ2oam6CrcbHRVtfjeJR3QRCeil0ftM2wsmkK1BdHFNbLN/W3b8OWYL+fIzJM9v1hVATMemBYSPXLakEcK5bw==","signatures":[{"sig":"MEYCIQD3NcXREcQuscpn1irjKxWkEgzj8uQ7Zr3Ycl2GJYuCtQIhANpIICcy7pAfI4OllkMhesMi4uc9vTf5/pjpSM3N9bGU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50970660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd/caoCRA9TVsSAnZWagAADYEQAJlamYYOb4ZpymXGgvR4\nRzrUr2q3KiCaiyPbg9t1d77ZfFzx23Zwk9/6rS4VIw3BfJPjcIQTOAMIPLRm\nGjT494npi/YFI3X1Xpr4fX7XshCl5xOaUIB0c6UkQQpJTsDfA5w1n08YJSey\n/3mxHTurOMoxvrRaFU8IKqP0Vi8Pm7K7G1yfNmmoKh06efdPqygILObt88D9\nVoiaICg7WQqm5bPu9g5Lv5oPw2bvdTJk7N0OHZcIgFpCXmUneEjEgfqZAWt+\noH+yPXX8NInVbfXxGgazpUj7UmJop39bNOtM+fxRu10ZTTIqePgZd8mFH9fB\nfL0sCOK8GE5nlnWzXIazM37uGmTspPg/1TwDyV2MRziFwmUPx+2VAu4+wO1X\nldRc+i1J6YTlnVYUb+tKeMjkMMfJbTwqqC1ff+lDGEgohgwUaSUuPZhppu5R\nztn8Qh8zqNy/1mJRCFQ+ysZ4YxO1qOHsgTOUbDMxnf+Y74YUixM84IkuBB1v\nFlIegOzdS469d7Yq/eXV4cg7buuU9LWLtF7/k7bZyQoNek3w8uuHIgz4tiBQ\nxU9eWTfvu8DRyJP+cYnuHgH01gmdRpP5M0ghi0pFx6LJ/D9WVVJWasuzzQiX\nW6lTSOBlXMMBsLNXH4LF/jWPyQUV9uPg36GXIQ4AsTnnV3cPwsG/wAaOusUe\n7Vz8\r\n=3oyV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"deb5288e31e64aec122e269fd2a7e73e33fda2b8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191221_1576912551439_0.9399493823580343","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191223":{"name":"typescript","version":"3.8.0-dev.20191223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191223","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"b64728be261723ad4c6f1fe1a2fde1bc5d11034f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191223.tgz","fileCount":167,"integrity":"sha512-RgVlyuwpz+h/GawhuRyfs+VrVMTYDItLPYlCqmYv80oFNif1oudjYh2ToMnA7DMrB2WqghHxXNUXnDf7xiYB0w==","signatures":[{"sig":"MEUCIQCo0WUzaQAXiM24IUJg4aP0fKRjoSlvJv40iDVJ/kiG0gIgCAGS2s3qa4kVNsNxytzg/smvkNLrys60LIHEA2V8A6g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51129397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAGnGCRA9TVsSAnZWagAAkOoP/iLS5nWKP+y/K47t0gkj\ngrABfuvIBXNayjm85MtJS/fAgzrV0GjsJKHz7YATFMGJ3zAbURy3kl5bFWeK\ndfLJBBcq5pKcR2J6889HHSRCib2ZNLKyFlvkxYGiS15b5ipQZmaX0w2oiDYd\nU9h2KcBy5SkMxB6eOJg8Fix75LFo0Mos0lO5L7Mbyf6mz1sVpuRn/ran95vG\nZZqtvgpQQVlVTbb5QkzzZ5jBz6ZCGdSmfs+EJea4So/BAj+TlAyExuP9JWMG\nWdB4rlo8reqDLGUS0h5Xbcw1gZIKmgxShjst4Avga3T1bZ820W+cosfXuqIx\noUL4KxrkLSe9t18oD6JBMGMT8lhK7zCPV4vd2F/4W3IzXMhDSt2Pseg3GU0Q\nUAxFdsj1YNzLaIGWrUX7/kfgleVytLUC/hneWKT9Nf6nLgG5wgWB46A5UcFE\nDkea3yiiIdwQZnevwxZ1DptOqWWODO9SMGUwPnvCS1Di3IyCv5x2xpaKu2p0\nt8asMg/UhAV8/dmlJl632lPUSyXqeHHKOzxP7YmCzVYqmal7c6PHmYOwvGW7\n1sl8JsGqBRh0gIU17Ix2mEZ8yLVniJCY3JcjwvXHyeE1OlNkwIXQP4onMz83\nVVCn2FmTUbzsBrZeAuKuKHm567FG0uLfCW0fgLEjTFNIMXTGtwvTo0jFk2mr\nQJ1V\r\n=HOtE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6c413e0bbb5df5d8ec0061123078624091340317","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191223_1577085381756_0.2532220520810815","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191224":{"name":"typescript","version":"3.8.0-dev.20191224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191224","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"14436239343595d2acb02ceea67a99276b7b1499","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191224.tgz","fileCount":168,"integrity":"sha512-UD8qkckrm3Q+epoWNVyUqtGfLFVsxIais2Fi9Dc/mayAG/NJjLgbjTIoEnF0iQia9ry/KRe/Oa+y44ss0nX/gQ==","signatures":[{"sig":"MEYCIQCdl8qTEmvqEBvogEHr+FM0fLlrhaDnn2Rj4UKs4MDSfQIhALMi9JJckLyxebQ2Sc8zqfdVXVTs1f/Lwo3JjQmcxUao","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51169327,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAbsLCRA9TVsSAnZWagAAHaQP+gKZ1S49sRD0ZRRz9BN5\nzsTxxxt0TyKm7Q09PcvUrNvrn+RbxHPSvpjiweeUojw/LfQ/yEhvEVVAV/f1\n/6TjEnTdLIVlqvyZyvSBz5piZ/kAOsdHv//Apj0xdDWNFh3hD3c2fXWsY5Xv\nRpNMfeLjRRG8nRny1TcSpQwz5WJMI4T1mJrzzVevH+cl0gf8RIHvaoSLy217\nLftQyaIzMiDsHf9JP4fYor+vM1KVQL/B9vQmPm5L+Klwy+jrGz6a/QrUKEof\nvuII02I/jJAHG+714+/TccbCV67lst3P7YPLguiwTpZfSoDOLHuHFdtyNqTW\nCp0xCU4Ur0feNZ/+am1MJhBgcbxOlPGbrSYPdbTmULRDQi3WcDB0hsa2qiXP\nSRZ9jJ00EgM/3qYQXvq9CXBAKfzFiWLCoZiPNV3+Rn6aSt5hyZ4WBaR4SwYb\naXdF3bCzEXM77Q1S4kGc3lC7GpRT0/o9JAiXOErGD8CkDvrp25m1HpI0KTlQ\nHNSfmQztnTu/a3aJHl/iBRmLg03pVfj0gthEKBiFC0Dp4jCtLsYqoOOUMOTR\nVl2dTi6hUjAhG3OPsO0YK2rDQ6ufFi5Lf2bUj2qdCHr9p4LuTp9svZ/cEn6A\np3t3gcK7V9LF+n4RqB9U3QPD+6rwGhYODmiyF0QKo4NjLqEZUkJs3gnlvVm7\nGrRW\r\n=09xD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0f5ddd2ea0dc7d45d6b9363175b19f7aab4dfc33","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191224_1577171722397_0.6201922960992161","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191228":{"name":"typescript","version":"3.8.0-dev.20191228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191228","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"4dffeba86cce454d360e13d5ce15ffd154ee4dc1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191228.tgz","fileCount":168,"integrity":"sha512-CPI/TQwKBaVFohrH5IwD/RbWJ6Syz9OJdchoL+cwH2rc02kgui7VPuEPDm1m1krddtEJiiMAc2icpPN0iWzggA==","signatures":[{"sig":"MEUCIQConlY4b9FrB1q5QE8EIvkPx4tsnW37KUccSgpk1RerlQIgLZfpsKfCDhH1pw3JLAy0xDJB2CpijTcxjIwHxQWlMQ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51510591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeBwEDCRA9TVsSAnZWagAAnBAP/3oHG0s9YQGixVTO9awe\niki20umX85NpZkBXEYpjVg2vmY01+Z0ypS72ZNAoSDtToZG/N+f5bujIRrMY\nYHMXaAdqGDs+1ROZu40BIS3D0WYRj55SoCX53d7UflObDhotA036RdyUtlOi\nFTYq4HbBiJFhuS18wogFq0JNd0iAMBOZVw+sRF+zPpwHQz6vDySLiVYBLqnY\nlomE5d/tiyKZQ1p/QRHzz8n79CCcpn7e+yuPJdUMkC/CxA1AnAO52ABcaJgK\nRMABgUF2uAC1OUp2jfP6O2iw84hbs4N3sB0k+OwoOB1UmwVth78VfGgMwa67\nANW3r3ZBeiFC7sy/EMHNMmCP4GHCiApz+beJqGFGOtuds3+36/LEKEeJUgP2\nwTPxB9FEy+O4RaW5TFiSqv1gx++QsZlruan0ipmID4fg/6vjNu+yeoclJhRf\nYKmKBZdFN3qi85CnZXZ7BfGMOZVIFmW3xihUHo4xVKaHit0WT6prVeDyuYRg\nLLUjLRd4mcp6e5Dt+9XKOeYC29hTpo/GeUydPnFP33i9kGRPgiN4Lx4whAoV\nSKhkY4XwnW7rhsL7tPH9+vuRUlQXHawod7rX+QFScj/2miEseMeaX8qwO2IN\nnZLNhI2ymh90pKWMWZSFZGyoCurEpJxglr7jORAqzj7cF1IJtd5b3Ubh9mkS\nWRCW\r\n=k8ka\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"36c87aca8a1b0fd6aa079e378cd176cf1cbf4467","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191228_1577517314285_0.7980840064248442","host":"s3://npm-registry-packages"}},"3.8.0-dev.20191231":{"name":"typescript","version":"3.8.0-dev.20191231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20191231","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"89314a3a4db76877d4cb74f68306ae037735db83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20191231.tgz","fileCount":168,"integrity":"sha512-rz0fkf89v0hmTc6M15D6aEOvt/1Ox3IVQg7xq/A/QRsg0VDaHqn26+HP4ekaFmP/0kFoOv8R+HVfhM6FzRUq5Q==","signatures":[{"sig":"MEUCIQDPkiCH4LkbOZjBt9iAy8LIRd10rhNfugCpr9IB5C/KNQIgAdtbj38nZk0zwG1w273HIYmHaHfkvpGh/W4maNRX8GY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51510591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeCvWgCRA9TVsSAnZWagAA5DUQAJTkXsfVZ0bl4gUnFQrp\nC/t2mrxIqaUcSU++1MROOIiISOIu0kdZnBmYQzGIE99JVnRoqLcKCkAqQ+4f\nwt9ymQB8WMvvY725spJ8enFJBpmO9dLLevTCc1ZOQzKVUM1Q9HilCI4gbine\nW4wXlT9ziI0t/gJO5IAR/ePlOehXbIE9W8gMBTvuhYuPG60XIfy75Sh9nS3I\nbjgGh6x8lQMBIhLRWYx20dlb9qoo/2ASIoyBeTdhFr9XNBN0zpTritC1KJ8m\n+73g1xjZpEhBW7NB6NpYLbAW1Mx4qHzINiEySBpI8pD7mZZ/EfluEDXW01uv\npbmC/s3eZ6yjv3xrmCIsqfxu0SDqWDYroFzH4S5s6YQe5wI78uPluPzb44OQ\n1RjUttiL5ANNaDVzVdAMj1ZPYWgVbb8gq/gx1/qSxlGqM9A6t167WrCwFSTi\nZlPoGP/AmaT7TmP3y9MC2PRPYaAfb3ZReixoFavdIbuBKDiL7fwQoHIC8UHR\nhghIaLWet4KW3pMWY4p4+Iak5wICniyuEb1/ESK0QOMn0wQ13xKctZrhnTj6\nurrzMzHzsyoKt14lwpE30AoCK/8ClQlrjGMm7TOJ4B559kGLKIUzsNmpCAYI\nhEJzI8/cDYeSs5X2RI27Q6YMxkezt7QKoWTv7gqNk1xpStl729yC9lwdNeSP\nYxFr\r\n=wKm9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dadb64ba7079f30609be2cbc1802a643a1641296","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20191231_1577776543337_0.43174137996969253","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200101":{"name":"typescript","version":"3.8.0-dev.20200101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200101","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"126e0040cd9a258b39b6e59ae9f3a1feaed78180","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200101.tgz","fileCount":168,"integrity":"sha512-lkZIYFzfLm1GxiKRLvxqj00WMv0a+YbvGUMFCAoUbErub8BZr1xo6JD7VVvzztxzBIMgJWHpysd4PM1gLIkhUw==","signatures":[{"sig":"MEQCIGED52HRw+cPGOi6x/i3WO1russ5VEx3GSTJf+34yoPHAiAx4tbXu2MDlAw3xW9bcZkQwwg8RE52Zd3/OIzmgIDf0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51513471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeDEcDCRA9TVsSAnZWagAA6xAP/Ry96sn73sJ3Qd33VqB8\nJ7LW0HvRxi3RVjFGQ+5POS+n57w99j9LePyxUywE/4xsnB0gby/Nr3Xb6oYF\nnl3M/tmfaI4R91TEcAyWUP9ckXKBxpsr88xa9Sxlgppc4nagBlQfotd3uxZ8\no3UBiH1bt95eyfsJDuJh/mkY+ZsUDWncImLpjHywHCk12ZocGbbaIdHUqplC\nfUA1MXsP5RKzFtAMHWR1kovcrH4qGq/DdlVwKklOe9l7ZSCjot05WvwivkPD\nwGi1in2O1fCFtR3L4HpEAlzbUbBaw4JNvyO4iH55MjGA2AKo3hgb7uY8VPGV\nP9c3nnK438EyFjCPKE7chUQ6m9p6wxOCySew0WChDHgEb6hVHgrBpR4LxqKz\n/h/9299u7zQW7nceSChTPchp0u8PvJs7I5deuNvA/Kzdy/PEviooObj6O/tv\nL8jXt+I7m8zUuLWT1wP80OjUYLnK4nkEl6Ub73CUzLs9tROQuK8HVmZu2jOV\nCb2LmhDyomjHHpw1ZAnY1pqe4JS0b1/4PpEFFAT3D6/s/k8AcwqTZrkZHJnL\n6lyg0t7Z7hmqS/kp8t7YiO0/y6PpCt1kkHXoQtJN8w+YIHMISfa+W/nOk8SW\nQIPDBZkUPbL3rRTOdoTuNaKuV3eW7kt/5IzYvdZm5FXm3JFaR2Qxnanlggd3\nBzbV\r\n=Re4a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bb306a757b17aef8b0881a1c252d720bfe7eeb1b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200101_1577862914530_0.4240633513454217","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200103":{"name":"typescript","version":"3.8.0-dev.20200103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200103","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"33414d46998596592a18a5ed065901a689f4b1f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200103.tgz","fileCount":168,"integrity":"sha512-hVXztm40Mq87/NVwzcJGIYi7s/gTmwM8qdsU3kXWoequMOZmMjEreaEVJOJyhcxuuDFz7NFOCW3lTQKPgXeOlg==","signatures":[{"sig":"MEQCIF7OZhhZtJ6ZZX7YFZXQcaDHE4aHK//MwiOhhZ04YhqpAiAGzgSilalZrzSv0DjgXYxXtow4QHIb7euwidWzUdl9Rg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51557096,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeDunoCRA9TVsSAnZWagAA4cYP/05TYx1x/DxHAVdcB+RQ\nSqBjKJDbzIQ/H3fcL+VWljIKLfYoRCefTBfDazMuEqNfALa5/i0Y3akbdDtW\nw2xifW3nIwL5Lzz8O2K50l5Tq2ctgE4bBAs3PCShd5WmOC1o8z9vW2azQtI6\nstYdlq+DM8zsRw2+xHWFxVlIviyRar3TvrVaCvwAXpHWvvcGxmN/oarNt7e3\nenOBHqkY43GJyF2PSBlZNZ6RZpJVj9YnotWpyFiRl5rB1XHwRJAFvjJ27nuH\nofZXtLrrYf4b60NYPlqbuoC2gmwxrr9DkeGNKB0x/6j39PZDIuH02qVNePUL\nNOc0mxHW84VlQzK/nrczDYWiYvEdwbNAfI1sgFD8eBnC1Wq1Zz18Li3+Mr4g\nnZL4mir5TGzJgL1iqYz7vKtitWNh+1cU7Gw+7j84B8D4SRpnxsMKT8OUX+Pc\nK20O6s24nit4ET3gKV2RUh1NwM+IK+qYFBYgcsovJrHo+g7oYd/JrdpDE2AK\nX3q9LRWWYkw79/cXX8T6Wr21YSrlygcRLaHEDQX2xrIX7UeOkCz/DUD8S3Di\nxXUXK5dWrMUgWvDOjFYbh1awCOtIjJc7aDawp4n1rDPmiJ4jy0HjhE2pIQQf\nZbz/5VUiOcjssxVTvwNM2HH093ht5thMFtah93UVaPWKbSapVsLJeIpHgEuC\n6SHq\r\n=mjT1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"024b8c1e5f33ed640c975fc754609077c6de554d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200103_1578035687615_0.5893799852227095","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200104":{"name":"typescript","version":"3.8.0-dev.20200104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200104","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"521b2f0b5a288b6e3f8a095525f64712330cc649","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200104.tgz","fileCount":169,"integrity":"sha512-Zdb8X1uzvUPrRvRBqega83NxqCuN/kyxuXG1u8BV10mGOqfwQb0SreSDoDDM1zUgrqFZ93neVh3DVyWTvx6XlA==","signatures":[{"sig":"MEQCIHp8UhANMn1x75T0nlo15ttMpnsmYdrOM/xiZbWCcilGAiBHzwF76HLP84fpwlLoCudGCmo4yLrNqnkf9bnQzas9Qw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51716782,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEDtcCRA9TVsSAnZWagAAb/YQAI0RX/m9mth9Rb+jeLVt\n5Gp4SL0sa+JFp+9KWuEZP+rYy4++eZ5Eq4C0j16SZlyWhTeqA3dP4PCOBpO6\n5Oays0xRGZ/mQvrZVB1AvoXB5BkPSwmC9gAajH0VlBoca8nwH4YRSo6dlCIR\ncd7RIdbrgXm1TVhUvpl4LWyiL6Mdp3zFE6B0WyfMaT3WAxGyjJoZJ3jJ+7r0\n8HGiIbI30RMjZKr1hvLrxTwpBT0de/0Vhgq2YL3B7h25+RimYatwwbwfVufR\nLWQSHKuHrw4vOsMBNAkkbOaQfE4QbCkGZAK8yA/cHJYo87zQ+I/3Hl4ZV4A3\nuiBk40coJQIKxTkJ+w/X7OUEIXRN3D4sj6B8NRD1uH+XaFTUS7ZJ/gF2b1KC\nc7V7aQeqfGkdP/HP9PWenbsclk6eN6OzCd2X7O/p7tHG+n1aJBiiioaMDY6M\nnGhvLXk4oc5Ga6cAzy0Xe8Pf618vFQ5StbiTy69FZ6OEcfaYKNPvOwX2I70U\nv/JJ2swGYMakLkVgo8UQkX2ErVXCh4zZHAPgu1By6/sEZ0C9po7PFZyKk6qu\nNt0FvkDrf/lj8axbUM9XsQ4gsrfMWD6UVbSSrJTUkPr/LxYgrX7SRH9QmRxM\nhbj7x5iRKx5tr89xRLCxaGJK2ZMJv8y/WTmHR4p/bD17x1scscPRaROXcvet\nEHYM\r\n=qyQH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d6c05a135840dc3045ec8f3bbec1da5ffabb6593","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200104_1578122075726_0.3705104631677112","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200107":{"name":"typescript","version":"3.8.0-dev.20200107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200107","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ac484b37c7840edb2d267356f39a6e8b6bfca081","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200107.tgz","fileCount":169,"integrity":"sha512-VokIlarSEn/L+jLm9V24iioQgibtskv08kOuJVFEpj0TykXhpZ2m5VqRMpTVSB4kWBKJFzN/twvz3PwcAwxBYg==","signatures":[{"sig":"MEYCIQDy0m8sfuze8fTpKDk7hb2QUzgM/RS746646Z29ChdxdwIhAJuLViyZzBuZiOU9vcjCwgMBKJFjOayrMRLpLfwTnwqV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51721246,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFC/4CRA9TVsSAnZWagAAwRQP/A/irc4WfUjwmacRXgkl\ngbZpHWucYCiOJE9T074w2LgJeoGIVzehnaBiszEcb2a8ptxaEjbegQeuln3z\nkG7nBmDCioAPZ3Csu23b4LYvOMJ4Bj1BBHmwf3deR66EysguG6qpoDbCJnPg\nT4q3b2Tuf5jhNxaWGBSIJa7b75g6r7fXgjaugfCXE4cvYaokmai8q/NEQ39l\n69FdQ1BEjEG72ws7/JZzKoml+DDUP+BKN7cnVMECcXrko5umqAt8kKk2wgoB\n0sGJAhvhhHxME7wbSzv0ho50LFER/u/uEtKGmmhiEcZtyY2YJLCfGB5uOP4Y\nFK8kPi1EtSJbp3nFf8XePoTFq9SG5GvmG6QgYBPOYgCUIKe4/5AUQgF7ne0u\neqASEKoQsG0IeVJPNPmS5ZkSy6aHSp+5dsN+QgnIPDugAarn608KJjPYHiEd\n+TFFcHdLozrVALCY3fFti7XK/bf9NFATCZN76OG2oQtLj03Bg9+c4GXgzKRI\nxrkePYnlyNxfMYyv0B6KWJFSAQlddbftax7sHIvaxP4I3hQY8r6QH5JHc7VG\niopEwK7+NBUlpMYimISkZxQ0VLiJ91sy+cOGBMwppOpNlYHuc4s8WN95MwGV\nHMqZngwpNcf/p6Mj+3oY+an2lOyUaezHVZusAZ0cPuqRcZwcWH3yJ1i3sE4c\nLO3E\r\n=/zcG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d044e0680a9115645d71d17174ca25d02082745e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200107_1578381302805_0.5957782952152768","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200108":{"name":"typescript","version":"3.8.0-dev.20200108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200108","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"ca3a4d950cd19112d80758be779fb07d577e49bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200108.tgz","fileCount":169,"integrity":"sha512-SD3VEYUUrDGc0djorpi0zVdmVwmvuaSHta18WP3sS9X0HC7eA4izdjj07pVUc99IBpBw55ljUATm5vkNdvxX6w==","signatures":[{"sig":"MEQCIEYsb1A5Qevd/dVuUds5OuPIvYFfurjBKVqNTdJN6dL9AiAiTlMAWBfS1zEL34hG6b8g4LXzh6ITiMM5MdK87j2o3Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51723482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFYGhCRA9TVsSAnZWagAAgiEP/0CZ7uuWuCHLvDUDX0Mi\nTuQTK/KHLomFZrX7nx9lOIWm7bhU2Ni3j7WcAgIXZD3T6L5N+0q8rQnyTscb\nU3TnkCJRO14pfGXYvHzo8YmhzdBQCaHtPRTze5KerUlHOCdTd5dDoibvS4mi\nglX2SOEPHQYCXIxFRxKq0Hw8wuNixppMG+kEkm4ycpsdH74qXWY5CpY2IyQe\noKJGUYFLfuf4zeQ49Wo5TGo/u/fb2fIpV2MRhvLKaKkKI4Fvz6D1mH6cP4TT\nKqYm4SF/C4l3EHgqfIA8EOEaI4Whcm0WY9EcnlkS4HPFR/xudvc4Dimq3Mn/\nwy8mwtTc3NmTj96b0ka2ekmWu9SS9t2v32/Y3g48YMPztXg2COBcf3tapXj4\nmKYFqOBNymM0SUhZXcDXVZYHc0ILIRoFybDcOMkOaYvWuxXuRxcvDHWX/77d\na5ZK1WXPKaDKv1uED0N0/CZJNgKG5oeHRcEG2E0ndgKjYUCdIVIMc2r54zit\nlLcGwVce9iV64YUzi9RH+RbV1ic0KRRGNZGpOeG/r9CSzZemk38WtW3mMH6t\nraUERQP0pYMM/df6e8rZWfzjOGicFZsdz1NBVdXhvs+lg52hw5MeiaNyfS8b\nKYKd9m8uegzmdhLsi0T29ci0oY7i+h9sRoMJn1fl1ugPJR18nkYjtIqc+V2O\nxl3Q\r\n=9fJ0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"78748c0a351349694a4fe5b707d247af5e233500","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200108_1578467736796_0.017504041245934854","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200109":{"name":"typescript","version":"3.8.0-dev.20200109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200109","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"9411437dc0659c0587c9156be2675b76202e971b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200109.tgz","fileCount":169,"integrity":"sha512-6lHDPlB8eUNaWhe1/1D0CSQ/5Km+AeNZOHd4FxAIqfYMbEGsDNjI84XE/HsbqlkTKMB4GkQtaAkRbBrxdHg7ew==","signatures":[{"sig":"MEUCIAEr+tHo+0XMPM1x4yTd57/R1lrVscm4wcq0MU6ar1U7AiEA2ywgrH8wYd0SDrXI636lpg60nfOFXsmWAVO4qYWEVHw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51738080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFtL7CRA9TVsSAnZWagAA8ksP/0LBVkgQ+190tlhZg3qV\njiteXlekEoZePMiDh0B+7RiPvagsEidUrjT+QburX2n3UBH85buIIjmfyMJL\nDvfhkNtPgxYlUEBCShC/WI6bcge4hCV51rUN/c9qwCkWaAxsCZJbdESldbA+\nfLq8BkXA1yKSQj+R7qmL00E7yxMqxfDCkKj8R+oXOeaigoEqGzDIrI1io3A5\n992aUj9xdRUBDWwqdwworMjvg+0jX78Q2PkQnb/P6Af87w/HWPSRJNBDqaC1\na/4EqB970J3rvmmDxm557b4dz263lep5kVrrwt/m+LOuXm4UvENJlsQ8buJO\niOia83RjWu5lZ94Y/8m8lmNXK6SAoXFOJS0I8Co1QQIfYv5orZQgSaLXMMqz\n+N0kIBmGMU7jnYoFLLepMxcz070QK+zXmCvCKUt3KNlpeUdmOF9hNAis9HMf\nxgWM8VBfLItXF8rNvFUj6WQO0fCgLMu1hOf2fCe/3Y2EiXdp1JjnAEnPa+O/\n5Jnw9hVsTBE2quDl3fDxtylnnEi6WJneI2yqSLW9OqhYQStzb9WPDyv66GTf\nvb217ShgzXMMg+jeFb0T+AXIOeRMXwjHApgSQPD/J17RXiy/mpxwRuF01n4q\ndl9F9qdbQOSZ3NZTSl5dFyLNWn7YAdLzmQnIrfK5Eq52/43ygx6jUoprBETE\n7C/i\r\n=Dpnl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"21316e551a01b86a8add71a6ad272f122567a00c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200109_1578554106620_0.7849349509197465","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200110":{"name":"typescript","version":"3.8.0-dev.20200110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200110","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"cca388fb23a6e58e826254ba2538c95592084da0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200110.tgz","fileCount":169,"integrity":"sha512-ZvExU7C6B1GIhVeY/H4rwOmdtjxAne5byQZD9j32gMFQG6uuVYo+xVXBYhl9h4wO3I/NjsuDFaazuit6yqkzvQ==","signatures":[{"sig":"MEUCIQDmlKTF0MJn35ddFX8tptMMZi/HtZZqnL0iTxpiKVVUHwIgMYiEyQqyKAXn8Idp4StJ/vcgPaWpM88RDi4FnFGVG/I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51739390,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGCSHCRA9TVsSAnZWagAAV3QP/2Bd9DkjxH1kYW1x3Rvx\nZGK5FXKdGVYK6tcOPQojJgKmsKGz7TjJHyGVmXV/JeOIyD+6y3+NJpkSa2BC\nFvLBx6Zo/rGPwMD0N4Hts0mQWlTwZ8WDFa4LcnC7nsP0fcOKAqfbDJJRibea\npNeYiNJpFIJBFP5MYM2mV2vinVxhi2A3aN6ZMggICwv7ssVUPAQKp4FmtLwV\nVszpYgGpyy75h7w/TkeUOV8IQye3gBXWZV5v7NMVnPnzg8MmKkeBVr3MIN8d\nmKmKd46czTEPvjxjWF466djI5bQ9rKo2kn+TlOu3sULUyBBZs658CgazEDem\nn+Y2YsTfMvVDyvZJAiNdDnD8fGm+3caND/WEXRgeCYjx1l0Rt6YqVxkMHVOu\nHX6YoVQL+kpWXfKNWc7lmyM4fuGDGbsbUCJf0FNcsarL7yiT46aU9mrn7tKU\nwwYNpomfVE6ifnBmQ/oQnwe/bsBcYrQRzPv1lSUKE8Bqtf1IXrq3OaQ333pS\nZ0CDGpXW3N2Jda4VgopwTh75vmEiYek9zST2qjIUk1nDcF27v4utjzMDSNFA\nF9uym/2GkQ8pYSNsuUik0C06mAXA6vO21N21+eryHk/XoXiYzaHmlaTlX7XQ\ndi/iu5vTbU+RRzG/FPbpqA833KS+udnwvDd6wnXny02JE1h7R7Z6IZmSm7PX\n31hR\r\n=EX0J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5fc917be2e4dd64c8e9504d36615cd7fbfdd4cd3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200110_1578640518148_0.8252974550176639","host":"s3://npm-registry-packages"}},"3.8.0-beta":{"name":"typescript","version":"3.8.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-beta","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"acdcaf9f24c7e20b1ff0a6329d1e8d63691e2e13","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-beta.tgz","fileCount":169,"integrity":"sha512-mQEmQUJg0CQBhf/GSVnGscKv/jrKsrLxE01AhdjYmBNoXX2Iah3i38ufxXByXacK6Fc5Nr9oMz7MjpjgddiknA==","signatures":[{"sig":"MEQCICdgKuboHYjs0r7RmL1OCZekULSGIQaUvsjjwpj74iMiAiBBSYXnVHluUzIMeGs4stgrAteFk2TFyWzbkO0jLyAZdg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51738025,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGOWpCRA9TVsSAnZWagAAG0EQAJedCVB8k6GyOiUeAlSb\nZ0JvNDeJ4NLGg2EjbfO1KqHlMPn20qEbQvR1CDsc75ss4G2Mr6oQUd6DC63d\n0NU+sPCxMq8qUkc3mEcsrIzXGGvF/Yf89+QOgGORneJAUPelY3wzkBj4/W8b\nhQyZtiki8PPVeGoauJ7PjxtAuZNBW1tL0h5QcaB7k5NcHtWvXmcU6pUwVOPv\n+YOMT04paIohBtvR0lD46p+Y5lkIRIB58B+mn02kJQiUOo4JFhkWAiP8UISX\n5cQl2dqLIfzhjuSYBAxQoujy8A7Nknszm5AADL8LLvtB/q/Iwt6PUe63wq1H\nVlWfXm2ImP+kvtdSk5+9ABMsdCt+4X6ZUP4/po6GdJSbMLBL0STaDUrSGRnf\n6+px4w0o2AfV+JvqdWpRO1ubUpw/fiNo1itFo9EYVHuTPoaqS43ubx/5ay2k\ndHx4YEA++51ir90WySohWgOifyXQHv0+8Bid73P+pR1kC5jDAdGn+D+RGtjw\nQObQ99Dx6bew4O1SzRVOgFYOZW8xnLBEedzcqE5fpuiwRW9FMG7u/CWUfRVv\n8C+7lHIFO9oo+TLhO46GvqdwCLT3G+3Fyhgb/fGqwIp2K7MyP3wdXs/mEu7E\nWSJ30MWJvb/6JkWJWKNOV3++cQxG5pdXNv1kOXGbo5rgmlKctHgNNjr2QQMe\nwsP8\r\n=JnY5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-beta_1578689960525_0.29129731293133965","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200111":{"name":"typescript","version":"3.8.0-dev.20200111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200111","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"f298927a427d806590e1ac56728b8bd54c50a172","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200111.tgz","fileCount":169,"integrity":"sha512-9LNK1LhRc7V5WA32tI9i2MDOYWz9DaTNb6TtWcR50trm0C2oA/FyuT/mxSbKZwrxh5becNhaehiR/sgDO64v0g==","signatures":[{"sig":"MEYCIQC+w2CgX+P9MgyrqnqS7FJFrB6Puuze/5gqXFH4GYf+KwIhAI4ZLRtw//sfb0OGl6Mjwp4L3+Xq/98yVXqnWiKzLDds","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51733899,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGXXmCRA9TVsSAnZWagAA5lMQAIYqA118bkt35zooKX4T\n4CwN3pc4FA4YGRvN4SoslUtKt7E5Y0tXMXmOvHgIIUv527BHjPPNaiVgr4TY\nn1/Hhrawu1nyS3F7vs8w1EdeB7cGgXdA6c7dIHjvjjluzv42eqk0mnP27CtT\nPE/qve0ss7tr3YcIUwo5lgrrX6bIjw8/XX8zDLohoEjUJmrQ3gp5m1NhyQus\n3FZJ/andGc0WO3OdnhWfErK/NU6K9LyMzGoApS4BkrnjLpWG20HqF+SGHAyD\neil2RyDuTzoxWJMFQfSePOzVhQsk3gaUoj54s9p+/7tV4XE5k7NGCLHvtZm2\nDHJQLKOt/paMCx7vfjU3G6mX18z1kdeVOguXy/P0ABE2+UQ4+mpZ0u4uEhWs\nm6hRUJcYQ3MByoLscUCQXB/V71MtaQ9vjTYZbt9CZ7fYYr/5OxlF5FJUsF5k\n1of2SRwABVWC6/jlqAfNtlzXHbu98WIf4lYxgEzd1u855qqRs2UhSNTFIoMA\nrYknKWxFA+VDtQ1FNbC3rQG3HrHvi8jyY9ERzrcJxCJl8VdY/zzFdZ0Oh4vl\nOrbeI4+ITE9xchoO3MsmnbW6s7O3jwS2UOHvJnG8/SI51n258cmqP2Y6uE7A\nKnHaFgqNtNDtejPzKCVrpTNj5srsy1lMd/yIx1RHxqdAFrS4U7zsXh//uxlu\n8jFh\r\n=odTk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"76ee0214f91dcbeacd43ce058f24c868f0e44def","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200111_1578726885456_0.4310445343667755","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200114":{"name":"typescript","version":"3.8.0-dev.20200114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200114","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"c518e9982706ab546ef1c51311e933f3098b44b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200114.tgz","fileCount":169,"integrity":"sha512-ClfZxjlZq88Q6I6QqpLWyhluwmKvtCeUihs32rtQa3OWCJHOh96Rn/icVtdVwMeQqbmV+NAGl2cn9WHaBZmh/g==","signatures":[{"sig":"MEUCIQCFRYlSLv3wGQ7fedhoYPfEmx086+yNIjnJuVs3DZJJOAIgZ8RWXTtgMzbKCxqewOFDNmQ027os5K84BqFaPFhId4U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51737653,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHWpuCRA9TVsSAnZWagAAF5wP/0fl0d0QPGm0s9MG/LVQ\nWcK3rcSrCRabExHdXtxP1y/pnUnsS1t467Y07rbLkRKXWcX8Oz1ee4BbgzZz\nl6wRGF/qIYggfp5j0MhemK/7SGkrCa+w64JqoBHUy2J0yjsvMt6kLr/JFLX1\nQHiwFASmvN7v+eHEIw3JbTHe+ADZB1aCehda3x7Yei2Q8V2ptm3aohhAPEMp\nR3yhUPN2aq8dIWYrjs28SSXypoQqsgGaY+sQ6G1ZYeAgKOu/kG/P+2PheQB/\n+OCu2yRc+IcI8h7huuTkvDl2gX9yy0bS4JY351yvBA+oqZr+iGpKnVFIQbul\nvOmDsZfjQ7K8pAGWdUJNF9/+RlvkHX8Ea5055eyQ+HT8UlVwwUsJhvp1vq1I\npxH5zkToLfATs2U+/ZQvg/CTVYwMdpnCdr5Jovta6yfBOhMpFl/P4PhklAoC\nnr3AEieqiWicsOX2lkJ+aPotJSxn/8eboXqWStmr9/UyEeg/jbv7pfz4yAen\niJAJ+xIoGwfmn9swq1qVTCC/kWy8mMmogtS2mf46YdZ1vGcovkrbTUdoZGC9\nKdwVbujGRI6LwmYLEgl3F3JkXaBdu2piwDckFDnTuNF4lUXVowKJcgtVfHc7\nFZOreDN9f4H09N3KolwDgpfuNture/tNKsuG/gLwqnRaz9SPhEJviIqe2Y3W\nGofZ\r\n=4nKY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"91ffa1c752ac26882b1426fb4c9012701c1d908e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200114_1578986092968_0.7904113311509278","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200115":{"name":"typescript","version":"3.8.0-dev.20200115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200115","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"./bin/tsc","tsserver":"./bin/tsserver"},"dist":{"shasum":"1b85923464b1c922796213a4c64df02caf15fdc1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200115.tgz","fileCount":169,"integrity":"sha512-N9FmOHSbBJQzhVjKFbBGAvnZ5xvH3Ti4vHfNYD2KuhKDjdB7O6qPmFLwoU/C4Cx0a8XiNipsL2K5sYklmSCVcg==","signatures":[{"sig":"MEQCIGWwl6aM/28Z8/QqC4AXsIJKRrcq4vUgpwsmhdBnhLxFAiAJhsdHKbBui7/dtixB7hVoU6UYbIIlXTFTmkUTy/IceA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51738466,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHrvYCRA9TVsSAnZWagAAmvgP/3H98otjfhUs3lhEOY3c\nMqHVbW/RvpxOpazE0DtAWt6KT+GCUYsKPO3xbVRko9k8soP6S7VqJ38IkvlM\n0R0Nq1LVCVQ3TUmDwbdHT/J2yIqEs19KJzzkmoIdkEqIwGjFOMfxhjViqlQ/\niD9sGjLTruDt89HQrL1oSti6PV5Cj6wGDnBbY4UpzOMrUt5ldC2QVcWZRHRr\n7LLWguuvdGluEsjqxI34cfEcizL2+xpVGqzpnTpXIQq3Sl2bK3zzGySGPi2R\nHJF9KGG+8pkVIfGbrIbsZr++jrAkdIeHabazdrxKXZG/B10HlANarANNSjQ6\nqPESlGVXG2AXbQcsgAvukIOULen86+R6L2Nq7wmzfJ+522SLTEliaDFGmUcb\n5j8WvD43tTpkWdvZxRFJhYWg+T5LRs9K0lu6fRgfGEE2yGLNy7pPl/uaY99i\nTrPxboyi6kMtvpfT1/z+jA2pYbuthLmoXVym2uBY0PBM02l+efMguQ3EaiCS\nrwJHSvZda8zCJk0VOqvObv9y4FHiUyZNhGxZmuF+EBUgxVhKGrUF9i+w9Twb\n/smEvAZoDHi1hZ0xv8BrdIexRYK1UBnhK+wWSEx5YUgQf/zSBgKB7/FaGKir\nuMMDHYm5Dv4bjVHhpR65xDGKAgYVYwCIqk0ZBp0GuHk+Iu5ubKy4MUUXt9CC\nRwYy\r\n=Wh7O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6e3ab1529f3a22f160aa065fbd695b52e197e7ee","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.13.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200115_1579072471227_0.4425155239171932","host":"s3://npm-registry-packages"}},"3.7.5":{"name":"typescript","version":"3.7.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.5","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0692e21f65fd4108b9330238aac11dd2e177a1ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.5.tgz","fileCount":167,"integrity":"sha512-/P5lkRXkWHNAbcJIiHPfRoKqyd7bsyCma1hZNUGfn20qm64T6ZBlrzprymeu918H+mB/0rIg2gGK/BXkhhYgBw==","signatures":[{"sig":"MEUCIB1POnzCAGj7dpAgul6U0eFXqtjplUHIuJtGDTn79wXHAiEAziZ5TB/VnO5u0uon2UF+z9EH49nW1yoZdHvU+zdIXPg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50553480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeINDsCRA9TVsSAnZWagAAwBwP/Rcd0taF8fKtsvge2RU8\nq4pUIHWDBXzeH0RofTw7iHD+KN6IJSQJIWFFLExPOy9eeBQ3ZDaIi84wxk34\nF1x5Cu90KRHob9q5S4/wH8cnHy+agLA9EpayWLTF0vD8XTiAVFFaoZUifUMj\nFkZYN3jrKKN+Ci0eTJxe4H6fmBq/2jCr99JADRQROcP8+CK0vpMNUjOxdbUt\nWp7rmp0TsD2MfitVMgehsjqbjH6mkYTKS8zW/RNN6VHh4NHcoSdVdAkoNNhQ\n491ri+aTj7WnBnqSIj5QI5rP1aDIWzeCXX9wj01JsF44tz+xvaEj8Bp8Fk7i\nnMXwq2BZONK4Zs6el/bhXzsPINygmnTpPUOezne49aeW0muJ2z044q1F77y6\nt7gZHRiPgdUhAo+chorbP647+nCfNqQr0TJGQlJjMert/u8vgWdY/D5eJfSG\nFL6d3KIIPzrKdpPOZIQ1ESd2Jmhvl+EFMcPPlGGMleBReA7thSOSrIqY3V+r\nc/MH1VezO6gUKyBTLzzex3Va5YlG3Mqwj5z9J4U9GQFAoY4xXGqFgOtsplt0\nFzZaNMY7olYO0HTVSZwthYdFaVx34jDXhdaMYErMUZtBTB6qe63pkShfd2WL\ns4Bhad3yrXEqjCRoGe0rWp9NfNMPGOQZr+sNyYeIQzbBaNsd7lS8JrmpaDDV\nMVKo\r\n=dHTB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.5_1579208939163_0.40802762496754874","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200116":{"name":"typescript","version":"3.8.0-dev.20200116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200116","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"976f10c502318614675c8b3eed0246ec3927f03c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200116.tgz","fileCount":169,"integrity":"sha512-UCSLOH4Vw5pT5eUouAUtX3It79M0Wg0OU2eA7xraiQ1d/ks2leBsZBAofYebrb7UD5UudTPR4zUlRVqa/F1mGQ==","signatures":[{"sig":"MEUCIQD8uSr2lRbVl+WTSVP8a9yaB7awtc1kdJzcqL32x1JMLgIgJDQmtJqdXa3wNDjtoqxGd6IwbDscZZHvHQ3qcBzeMM0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51744304,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeINlECRA9TVsSAnZWagAAm9cQAIRs/SbQKvbJ4yc0DyA5\nt2onDc8W0U3yjhZ2M5oTHKzXH5rexE403NWaDbKHctEs2pqF0xwf4+QpcbWW\nlFhs+0cGy9DewOinbTB8+wj5jOX/InqR4+3DZQ3afMr1jJKuCMdROSNxdf3F\nWLxi0+6gtz7lQnIvUuEWzaLLHswJ4ZdGcP5aFtKv/WAGnhV2GxgmdbKTtlkI\nYmUJGfwjhNePAJnsHp26xUBstbIidXHa99Jk+xKoP8hTPI13CAVCN6rBgtN+\ne5POD6qV7UwSE2TGD5KRexkN3TjVmS/WO1Z9Q/V9EtLhwevBdli7q6M2oMbW\nLuiOSeEroQue6UUh4g65ZrNRPxL21ASofeEjmWZlc3BRpMKkQ+s4Q82kOuzJ\n3PMw1O6UtidvTZ+WS/46efSR1HkTdlkwVG4cwlLDVAXBLBTy714KnftcA+ig\nlkg0zj685dieWHi5a9w+abw024LaEe9zYybUTTiz4aP0gfAEcffuKwwCebwN\nHenat/LeC1bl4SM9JtK9GdDxbtIS6ST3aM6YDElRpoe2L0Xy2MgjI+65Q9wa\nXUygSkRDriKbSeZGIL4vottdh04hKlPOxbVEcqbeOrAtVz2G4KYYL8CAahYv\nLhaQNsrgWFLFX4CpOZL6TAVScE46wYHoT1Ef/+Yj1Li/StP6EOt+Bz3ju8EV\n+6ir\r\n=TGdo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"797c5362a2fc43c130a0d80807b9caaa759cf372","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200116_1579211075496_0.06134320051116737","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200117":{"name":"typescript","version":"3.8.0-dev.20200117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200117","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"15abe5da4fab61af2f28c2cff89e8d3283c37d77","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200117.tgz","fileCount":169,"integrity":"sha512-80flPGfPkB9agERB/XHIt1C9F27EYBt3alVUS8VVjblPvigLjQbva/tkAhGacsbrRYzL8qWIEwRVTOrtiT2CaQ==","signatures":[{"sig":"MEQCIBVe6ZepGCf+mpw8UgWeNXDm6lnD/VZ4dpMseISwN5iJAiBQYajEWoWhl+Bw5zokOb37BAyWseugg/XDnO8tUw3qlw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51745921,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeIV7xCRA9TVsSAnZWagAADWAP/1mRlMX6gIQ62JhlF0qV\nmOCTkXwkL8mkylaaAonXZCJrsslclHBETCWrbMqeeMgG2xpoGsuzJxdAf3Sq\nf//GDSDjhyEdm73CpLQiNcrG8xs9VchT9iyRJOsCvBY6QEGeSVejD/dDBD81\njFc5pnQJqwOBy/F2tVFt+z66lCy+PKO+YBcWFrDFWjoyo/uJNUwofpIi9Kyc\nQPKihqL8vrNLurY2ixDJ2y37kogLNvy3I2UgJNJQv2SJ37q/+7ymct918u8H\nvFGyC8V+pjmEb1j94aR9DwzLC4vlbaEjz3HCBsVfyH2nOIwIFG2gqt2M31s7\n3CtQWFlXRVo/Za7TVPpwB3wPC5PalvOG3JFkfcTMHO7rmLoENQkdq0HWvsGK\nPLVNFxmi2U7GNo4zvczfbNAWAuu1JHSdh+kC9/xh9vUeEJ24SM2clTzzmvu4\nr06elbLWXH6lP+MFvOLfijJvpJ7qh8mu57uicGDx1L8z9jRGcY2mKJjXOkma\nAFcZ+yorslQOdO+Cmw53EjV4WMfM01nMtthMhpxSXhnHlIwOCUVOQqjCSl1F\niz1mDPenO65uImHbQUYfYV4EddBFCO7CE8DGgQNBB4lZqV7BEIq6xvS6qlxI\ntu6ifYTg5VCG7QTdUSaVSdaWdMQy851Sv3ZMLqy8m0Xp9R+d7AGiIatfa0/F\nXM5W\r\n=t1mG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e2e1f6fd85b5076186ba6ee68fe59e11ccac1d3f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200117_1579245297138_0.3957849189309768","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200118":{"name":"typescript","version":"3.8.0-dev.20200118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200118","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"026018ee95bd40e8eec0037180e8a1ff00f78b4c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200118.tgz","fileCount":169,"integrity":"sha512-ip3RvbS7dBp4T/z+X5Gil2nCAOPBXNMLUzlvbpH5ekevlVrkwf4fGsq1Kfsw6HcN2MoGtyHhXNQUx6xRLWKRhA==","signatures":[{"sig":"MEYCIQDfBNCg7qVE8kC8gPhZGy+CNPeTPzoxv0c5k9nVRWbkJwIhALdMRTcIHlzs2RqiwLjPMzG2E5lyoFd9twBKw/DKSwyX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51750973,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeIrCeCRA9TVsSAnZWagAAsm4P/iYi552Jp0YTQOA71D3E\nd62cHnnNHVdRNZAXaZYiXW1Ny2vzBb8VK7VISxUIaxsxzS64qp5TqydSdfY9\nG7JAV984ycvZZSGFaTFvneVZV26RvR8lt2XjLqME0QgkbFd+Df+iCWtlOBBb\n+76XI1JAwciGJBI+uBIjbmdaPkmGbtDJrxY1MHquRaYNg3Hr+1427+oR2tIC\n6Abu41E/dOle6LL70Wbo7cht/xO+8tZ0/iG368podv68WwWkPmrteALAESl1\nfrL2RV8kJLFRSOwqrPuk5GG2QCCtRCnNi5k3FKy8jKm5nQyFtgHwFbmLCYU/\njzGuniwAOD45o/q0Q2Fy+aqA8WstBR6IMDWhpGImAITKpkBNCVIz39GpU27Y\nIdJGtOzIBSZSfTbwxDtZMEFg0c85mV/F0dC7EfwOx9AOsLK99Qri9OMGX50u\nxvPeuKlDhrryaN4Pdpnd+G//+c0ZNGFdsDN5BSKmSoOWayNNxYd/LYZNP2xX\nhKJNaG6YD+/8O13fqGoUFVIrIvyeuZ6JLOvBx93CzzCAPgqwWxjFvnO9OCti\nfi0LIwaj3FdWJKzWXVc6sOYeXoadAKR2HzJ2CGzsA1HV+PEuGnWGFnXQWE0h\nLek1pssFWuRCG1ZSxvDxyqYPxpt81lTVRdLI1BR8AkRYOSCn8VQJQiYcddFx\n1D99\r\n=l+KX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"afa11d3c7ac37c49fc97230a897e4208ee132ae4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200118_1579331741945_0.001417618242624652","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200119":{"name":"typescript","version":"3.8.0-dev.20200119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200119","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9ab0166277b5ed48ed60d10bae7ab404cbef480b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200119.tgz","fileCount":169,"integrity":"sha512-BFS2oF3dDq1FcoEQI8K7X1KeL19NHgHncUme/0cjuJCy1Q4lrJO/dVz21xi2GSNhXqXSYp4wszutJaslI1v/bQ==","signatures":[{"sig":"MEUCIQCe9IJUxtBsJvS3BvolEfLzGC6RYUpR46IHhkFyNfmSyAIgZU5SW8rpMGVkMUOCPpu9L67KWZSSMlh4xF2hCMADKCc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51793114,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeJAGmCRA9TVsSAnZWagAAINsP/1dbiL7nBqiOJ4aB6wCU\ns8yIiLNIVq5IAFjL+BhLB86QXDljUxbp6lpLlO56Nrx01a07HDOiadVJYgo7\nEu2Jo8b25rojJkjp1UB47LlnhJEawiAHLO8v7c6z3vZAb+AGN6bw1gCgLc8R\nkqflQMPbuXqC7uh5axydrr7/xOIFFMEykT912UkMbttq+zcyM/Eiens/VL78\ns6ErRWAwgH/391Cn12qn0T6m5+wjTRro3e9F0u0ZoMYfulY7Z5FjyzFWeoyi\nTut9nxsYJuIiXc7EHNYuMD9qKeJy6G/2iuZyxza48f0s6DBpeYhdwzEoX3MN\n2aVnQAytQx9PZrbuRUmqNXUoYbaQpVvQpwYugIOU+nn3m2Hh1V4+n4y/tFfl\n2mYh67wWZqj9vu71o58LYPLnQOcc8EVM8EFpw2ZDzDSIvo1UDXNBvhFxt2sq\nfOcooA/caW2CeAcPbU/2bSB9ut85BE6I0EK6sMc2wPXpxNyn4li2WgUhqjTm\naAYBMcyHV3k456pd8KxsbtfqtF+wDQEOo/fOtU+M7EisZ7wGycfWGJHLXr14\nK4XDkQGO3V0zBlzfgRbClND8tXPZB1ODEFpfPE0bq/Nvp/mlFNXZhSKJcxOC\ncxy4UrEhdA/OZnSoPw3BBqcnt/TSoj5hC7xM5PrsBnVkwnVvygaxy8n8wntY\n4XD9\r\n=05jO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d2c5d54242c69effbed0ebb27033047e0c995589","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200119_1579418021431_0.6003015054091638","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200122":{"name":"typescript","version":"3.8.0-dev.20200122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200122","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"66c2078b2d72de1c3da2cd00cd5ac3e3280db416","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200122.tgz","fileCount":169,"integrity":"sha512-RcI3vLnPgjjYShD0a8FG1DwLaUttr+DHUIYIC9fzbkljiz434aWV5CPlW70sMK98fClLv5NgJrnWnfGQPeYWmA==","signatures":[{"sig":"MEYCIQDQ3AtxueMSENsf+AyIh+TA/HJt+Wp0CRBVsa+O0tqZlgIhANo9FIak5XdiLj6C0bQ3WmuU0Q0Lg3XYoK+w8LseNOmg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51803839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeJ/a2CRA9TVsSAnZWagAAhcoP/RydQJhPLkzLiIbwxRAL\nUOjvuE9VEXTIBzvOuZOeOEcI/y719qL2ajSNA3q7ELS9ophoOfvV8KG6Szf5\n+josR/jNdJ6OrhfCp+j9Z/OuYe97SFQ7VNCOvo4dP9zV1L4Mrj0h4C4IyUho\nzFWKClgkKcQ1/IBTREsOvskGSYw0X0NwpgllaSjl7U5yMN6IFRZmTklSlACM\nXYRK7cYGwqn9VvRzogJ1llBvQ+C7hAG9UEVofr2bUmu4XC8tOM8Cq82cWJ6H\nYmGztc2EY1kNJJixX2s7OS6R0WWGXse6PiBEk/KULCcPNxQKOa1+osWYuZ4y\nLQHvTjsyP9NtuCwj+Jjwz/onbrz7I0IXq9Oawl+Gvnx05jbRzA7aP2NkVuz3\nCbTtGET1MfKDRXsyMDoDMoEVaWrWffkwfLanXVtU4fDVJ5okZz/OW8iU2VNi\ncBb68b5j0IXCjwrhZpQ9uz5GFlSuLuvFpIvS+mj1KMkxtNLBTpZ7Sa+YccFL\nBD4hd/2CkHPfWutM71FHyKKSrXDC+Xm2u3hLV04YjWZdNzuVzt9t15oFDxCY\nDd92oNIDLHBMNS5g35MI1p2nS67yWe+C3fkU4gz6BhmgP7f2uWS/YuTXzmUl\naD4sg1Yv5CbpbAZt4N/qdq0rYtQVF+FhD8SEZ4YL7QN3YARETNql6UlnA5hx\nvyoQ\r\n=xscC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"38eccbab2a000a568cfeee3e1c59dade6bd4e601","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200122_1579677365562_0.9016357650509936","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200123":{"name":"typescript","version":"3.8.0-dev.20200123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200123","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bd7878a7cabcba678bb1277e7c60dcd43f6d2b81","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200123.tgz","fileCount":169,"integrity":"sha512-jdolfOn5fE9twk6YidyKHbfWb8JHL+n62KRwHQrhoNbXJJxIldW5xYF0oxVB2mNK+H6L6VAN2EY3My1gPIcuIw==","signatures":[{"sig":"MEUCIDhpEs2acTBvVMOLDNuDa5SkKWlN1pIGp+4sBgDAxDsFAiEAy1Mwf2zRcEJMaNxYRHuc8EHFhAOASDK2dMtIsevpCeA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51818053,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKUidCRA9TVsSAnZWagAAmeMP/16xRz+PQ6xU7l7BKnOs\nIz2lN3dyu5SZ41kOOSExJrGWSPPd0v5gPBRmcr6xqfIEeHG+Tekwfmj5Zl1g\nTn3xvw2oezpuZ6hUMWXtUVVycf00P1yzSuGRWaUhDqXYfdJfzEp56lKlKWEB\nBQgiPUoJACD+294d8NfCzAIiw2kx578+G9C8vcqSv1/xOUptBd2gPKXGnieC\neucoBLD4nRABg1vZGM7oGy2UbEs+j91su9pCKU/cmuKd4Omkn+/5KBrKXnhw\nY7qDSJsz7zYXeIwynD07SEhaYQfjB6d5k4akGttBJdJtUBiFDWghsA44AO3V\nmRvKGicjC+I3EyFxHC0X2/OAEDgVV3L1s49PcMf6ZfD+kNXQ06fEObdw9A6z\nPDordzkGmTB3j9DaiK/cvCNZUVNb6Pa1Gbrub488Wz6Ehni72DYzW+qKIBXa\nkMAflvhdDkZ2ARZD5y7q1ZBEj+cg6dul5WVXGicAqwtWxrupsS2yCBKM20fX\ntnGT44AOueBtbVv30H8960d4qrRNVA2VecjA9k3cdGM1ixcu93WZkfRvwDjT\nK9o1hXMBshrlkYb+rvm7pINcq903YSNKDOUjF2sU/04b8oF4RE8eqQJLaylI\nCubP/mFwR86lrcYTaYP1hW6O7GKvzv/rHgDNy//OtsKEuekyw0Ilj9AMiVpr\nF8EH\r\n=vKQj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"75f88eee484cbf1d81515bbc3a20c2e5cf1b8d64","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200123_1579763868759_0.7375963361217777","host":"s3://npm-registry-packages"}},"3.6.5":{"name":"typescript","version":"3.6.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.6.5","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dae20114a7b4ff4bd642db9c8c699f2953e8bbdb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.6.5.tgz","fileCount":90,"integrity":"sha512-BEjlc0Z06ORZKbtcxGrIvvwYs5hAnuo6TKdNFL55frVDlB+na3z5bsLhFaIxmT+dPWgBIjMo6aNnTOgHHmHgiQ==","signatures":[{"sig":"MEYCIQD8CrfEobwDxB3xKHXOzwf3SDMI/geSR1bCCabtKu1Y+wIhAKxAHlCbN/Awda+Fgy6FrCripPKfsIt5VP1dywiYQ+MG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45893110,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKfbkCRA9TVsSAnZWagAARGEP/Aryl0BtcU24MSG3N9uE\nylL4SHHFy2xmJpCP7h0kuArVbY9QLxTTaiu1/GY2zxk9IpogY1q3cpAc4/gD\nYaGtfOlX4tQiROcHRTML9cRKsTdfHx4QIZICgX0522d4TNc7iAxCla3+3CRc\nhDkoRuEKf0J7UNTICOym6eScBeKXpY9TlG+n0Mc3j0BfjiZO5+JJmk7bpN1z\nDEGMz6tBJLz2sTgMrwwh8MwpxnIPRFQ0YgBBJUZoRstZlG8fouEEgNZU48u5\nPkyxYztHNPYsxJqquIQvDpE9a008ILZZDstMuV3KRO5cfNN8tTOVr0qz093L\nawGdBa5nyAR1UsZc5Wt4KjWbHuyDmFu2h8usMneaMqbQLRiVBLvFr6Av3+Vv\n+gATms6UzDqhObsI4p2zT4ZgWHIPfDooUoLpsTLao2bKKv/9hLCOJWIXokF5\ni7lhs8IZsnMXW2xRMzrA6ls8UBmW3H7vSzMXySY0zvo2JRXAGbgVio9l8jwc\niVfoGxMuH7tjdHExa9xo2D/Ls6ba6XTcRj9l4soyrwqieSMG7qq765qbFbYB\n1TprMdUJOOrqmvDIqkREWSzu6LVsccFLkhR5fn+gZJumJQ4yqH2bogSSFsV6\n35G/OtYzHOfAAa0oowJkCLOtgARadEHTSl5j4YYByvcpXmqKMqMU1wcxIR3W\nzS7U\r\n=L+3k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"latest","chai":"latest","gulp":"^4.0.0","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","@types/del":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","azure-devops-node-api":"^8.0.0","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.6.5_1579808483742_0.6355720271931726","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200124":{"name":"typescript","version":"3.8.0-dev.20200124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200124","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93729dfc4fe79a214161c94a55b05fcc8b4d0d7a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200124.tgz","fileCount":169,"integrity":"sha512-Hz6VFBQkmF055yqWPRBeJTSfkV1qjF98SPlVmxxlkoO5uyWoxNFs50wxQ5E6SNe4iPPE66x4gHQz0mhalM37pA==","signatures":[{"sig":"MEUCIA5fXJkSWLw6AuCf6rny3BTS8qql2uHtgZeVqEL/L5fEAiEAkgkCRfHOW9oUxxWW1e8C0Qh7oxDAj/gUpnnOsh06xTU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51829075,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKpkkCRA9TVsSAnZWagAAJgYP/13syVom0d0mU/jywzi9\n75nbpLYU4lwpQO+ocshEo5Ya4QBDZor+jJonBOpavos8G44W47NOL/EJPqLi\nAr5a8YcNgFZzLdtCtTRk7TudArdZlYEdkE/U57+tD5PTXvLx6fwZkGMjWfNX\nKf2NvQXYMbAULUGZ1+5DqhexF6p9T/KRJ8zTRWywqAXXi7ynqVUzrBjWoYuZ\nsrf3qsRKk4XOczRce//ZuBWjAD14N9/OuxzgvfS0jN9RF1vaXgfy1PQZ7Lf2\nSSgof/j0S8hI6NNkTXZcvncGrwmyYOcMHHop6A1MPClcx/TTlJPuXMdRkqFd\n3WkYsbQtxrB1aDgkiSQnsCmx6s+Zhf97bPCpSpPhXqSyRf5fcI3hDFh0aQC5\ngIkAgrokSp1SWYpU6URAZzYmSps+Yvh27IKpaMBFIzonbsJFUTo6NQJcdCNE\nFObEXElbeUSX1N/dQtvDekLv3C2dCnf1aETG0r1sA3Qgul8ZcH9+QvMsuq2W\nDABK8Y2kZ2BlatK77q2IHr3RrNlCfG9+bXS6u8YTysf7k22cqAblzPDfgWbz\nAssb4zujiOJQeH7c/Rk8r0dqAg9Qlm/jbh8OMOCVdWohha8GQ7EBZ/239vEc\nLXQVEk+vvpD5xBE+KfXSMXD10GDu0kytTR0ACn1WGkDBwx99j2GXZirF+zvV\nATn0\r\n=Yczx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b919e2ab1ba5546141e6677b44211de6f7e8d11","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200124_1579850019706_0.09111703482970679","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200125":{"name":"typescript","version":"3.8.0-dev.20200125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200125","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9664e14652f42ef2427b0d183068355af19e0678","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200125.tgz","fileCount":169,"integrity":"sha512-OuNrOBdkFIZ00TyNbuT+How+3Z4ENfFYA53J/vOk0HQ+J5RrCknd00PE5qwTczyq9gBsGrJQgvA34YIxNCfafA==","signatures":[{"sig":"MEUCIA+1Qzt7/Wve/MWWLOIYTli2bdJrr6dFzwVkG8wnunkHAiEA8snDSiJKyv3yhRDMN1pY8AFmuW0Y+59Zv/9NlL6VZD4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51942812,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeK+q4CRA9TVsSAnZWagAAglwQAJhABKKWWPAdB+W7mw9e\n1rOO7DRzZdhsfUiYaVRsN6saWzLNUjHOLhZeIbJ0cqr44cR46RNrWE1O8rik\nJoFmqzl3ml9gftE6MQS/nBW6RsQWSE1AWIgRSTugIqTc9r0ikQH8NcowUnLI\nvD+vRtHTCHhEr/1sY+yutPRpwbX3ZNhYsJruFbqLz6AZdv8JTxK0lEzEt80C\n2049zXehBz8a9MPVJrJLnIQKKdYOUU88wfAR8wJeRWUMkA/9+p4RYP13d4cD\n8edQHVRRzGu16P+HWIYQ95vG76HaZQd8ax835Q9C7m5PBeUSl8CGlk1ECt5Y\nJXb41G0CUgl21w+olWDuBIA7nfWXXfiksDBNVVR3r51OFu8C2krHXujiPGuh\nODEVvOlBVReUYX0QBC1Z+o6at5rtS79svQpv3QRII40hwgrGOMPNM/xvdY/W\n/t0MPmfrsesjFgqBlP91lxg7tU8cUgW2pQF2Ju+3NP+mulAYhQ8OdQcUyIOe\nwNq/l9zrAxlnpwMNWDW7JM3V4sY0Z2HdYp3DmbbJSeVq6xWkcU6pb7qSsflY\nHrrQ3+fhoy36Wn/IwP2Uy5kWzKl0juI6ZKFiV37tZTqh8vF7fOo1X7Yr/qJA\njg2/RwV8sbhRUmLL4uIAGultk54vLMhun0oZWYVs7xPAt1dbFySr+PESkF8e\nXwcu\r\n=qB1+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"30545006df59bd3bd88e17ce15377b1666d10d8d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200125_1579936439326_0.3391495770361339","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200128":{"name":"typescript","version":"3.8.0-dev.20200128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200128","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4eedbd3547326f2e9cb826c4144800eb93c81866","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200128.tgz","fileCount":169,"integrity":"sha512-tXJMyrE3xhLDzCN76wZhoV8S1AU5JH40DzrLBAZWfHOgH8X8mCHFwyJ8U6N929vBL78rHmEcowyioUr09/Xvjg==","signatures":[{"sig":"MEYCIQD60ncZ+YVj/0iiaAtbKnRhvE9JzEzMTs/ifbrw4+pGaAIhANR6TL2Xsnop0Ro/8kqlr4vQRzIEunTvHWDdqEx6qOsl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51955541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeL969CRA9TVsSAnZWagAAFTcQAJuyOasXc4LtvD+3NC5g\niNPRCb5Kq5rE/JdPyAW/rVLFaYmUyxxOy3iqMqK7pRHYtG39jXhpC3uLCAcp\nAnMd1OBdyJAMMLmCBvW2ar37pDJdcNu35xo+I3szrh1/MX5T1ppgck/l1ye2\n2pBkcfVSL7dChIdP7dvKnhE0njQIoEj3PB/l4U6hsgpRJ7BFkYB+hswwagih\nGXBQ2eeR30TvJFqumQmrcm3gkYRGSZ/OgqwmxFVxNIq4gC09yy/kYJy75/0R\nB4Q78/3t8zAl0+i+FhxrKYBTIGxm3N4sqPCzqDSQsnBEaeZG4ytBuvBPRjgV\npUUUyQCBKpnFU2gc88bSd2zH3ulkHQ2EHp+qxAGp368h1AYsvvli2jiflZVw\nGINu30mfk/mOPVWw7m9HjK7v4bp0ytPohHOhzCHCzZGSJNi1ZrtVPR/E+crM\nbnMSdwh4S7oPTMy3w6PjYLIUPrSjavAYpoBmShYYmIiiAxBfX9GkCf7Ycdc9\nfnhNHgUHtAXAShqCmbnsQlAuAmE4WB8GZ5oEFaqZp0Ndvt7Yf1RHYf4ATpPr\nMUwkNRO3b6GIkOTL35+TZsIm9uSpUgcHw/V2fS6C0V/yoG6LZq74BZcSmu7P\nNWm69MYhEpSC1g3wOP86bnnjptopsLJG7udathpYBnqxT1IG5oEa4fEju1yc\nD9lg\r\n=TwYb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1bb6ea038f8ca7e3b2037f8c3209a19c097f1e3b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200128_1580195516457_0.3377770466780252","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200130":{"name":"typescript","version":"3.8.0-dev.20200130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200130","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f186a3a05ab64feac7f19ce063baaaea59d68ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200130.tgz","fileCount":169,"integrity":"sha512-DJkyFlY26aZLF7CEP7L27ulA0Gml3vNR2C0Uhvz/Meb/9Zk4GVBLZz1wYeY05kcww6zdraKGds/OVUcK4Y9JGQ==","signatures":[{"sig":"MEUCIHO62/9ja/XkNFPLYsOABLCyOyq12RfphvJ+6KgnKOlAAiEAmtVluCMWOn1ZgToKKeqJEVLQXR+lNYMbIsyQwAdLiog=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52032172,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeMoHTCRA9TVsSAnZWagAA3FAP/i1wR6BBLuMnme6L52As\nyNyHL25kKmhtJrkj9Fks66rRsQMOJ4sc48dW10WakwUTYGTl+5wq6urVh5sO\nEXI52/9DD8f1a/X0oU7eJUU+iPaEqMvlMYe2fnBSTVGc+fNVQvGKGBH2moJs\ncxmHAUQr/3GXqAo5b73RoGPI9e2ysnD/9fHjrQHQ29IfKgiJVHSKQkJECtE6\nrgTfdqFyB/rHYquPwbSoVfQ1iM0xxJ5ENNAzIId07qpc3YguSCNxr17mIYDk\njM7ypdNdVDcAWAc2a/J+htx3mENkbelRtH/wBBoudEN93Ki6D4OuPhTbD6oO\nIXkJ5JxXPGzU8fFGoVLq8Q8d6W80UOj9PZWwxKitsqhuRjUvrERzR9w4sFPN\nBW6jhbeXNj2QLIBfwyO6q6+Xig6xOLiYbXj+rrwLUHnpqhH70ViF44IrCzFp\nML5PWB62C3O1eg11Dw+tWFLbMXRLhEQsd+ETM7i4lO6UKVzm2kLH4Mziq5hN\nDvCpqbIcUN11gSN4zoSft0BqBOC+95J2i+OyoBPGdz1j0cjs2NWUm2JVHKE0\nOw/dOINRZ/X5ixyn4VOV8sg7BlR8IoHPYCFAp9LqsmYG3gshuD5qpjAG5MgR\nSEkPzj/xMlLqyoqm+l/3uBL6hgcjoXQt7yoGPKBzZdIkvyyXpYyIeU4fiQpA\nkbfg\r\n=3aPo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"140fee96d70a6bd4e3acba9d60299c01976609e3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200130_1580368338162_0.619255359779938","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200131":{"name":"typescript","version":"3.8.0-dev.20200131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200131","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4cdfeb85da6c0e242538c648086722774bfa68e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200131.tgz","fileCount":169,"integrity":"sha512-E2g2SGl5WHFBOTCwJTzjzB6aARzXXnnf46jS63Nk1XX3RDFO7e4Kz0qcxGKFNljhp/Zl/XajzMdvcJvQ8hQOfg==","signatures":[{"sig":"MEQCIEN+4ZHz9q1uyyMNN9Nmr2/JhTQyLxMTyItLfzn3z47KAiAttEBv6Zw8B/jOUEe+5zjk9Vmg07+RmEpw0H6cecxOHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52052798,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeM9RTCRA9TVsSAnZWagAAUAcP/0sBddOXa/ifC8UxZ2eb\nkJA6IyH3xTUGbMSgGJf6PwUY6UhIT4DzCeLBfUgwMiOWvXUQnchehTqlmFxG\n+8mYpgPB65L2Fd7s88O0jon5LBshPjeurxMGbaGydN5iGFk5FksHzWTDlLvJ\nuDsdZedHuqup5VydC5F84IzcU+L614ME/q7NtRrwjYB7V/MVWF8CqQFblNkW\nkXLixnjUnHlFnL9tpRo5bQ9x8nqmZFCT+JCkxasn1NP6jyvo72tWev7g31NI\n1AuKymhYBnV0VESoE0stg+JC/QgFMV2VLy7TqM1pSFkW+a/TmtdbHiwrUoZH\nZEYo022RTsRhtq81/7KF0C1QxRK7P05XA5jQZlks6NV5Pt9xkrZA5qs29wT0\nn10cxwyRTCW/mYvWAz9iIF7sJi8ULWmp5hFZQLSMZTO6Mu0Vlh7M9armP3yb\nClaHPRyn/OV1TBhFCO/vGPxwwmFV9TyYcY1wwIJ47/7VfKePDOFKGiWOSmsk\nzcaV+AADgex4enAZRCfCOydNpPgNFnrLoDILbAKIQb70c3SakEOhoZkE4iil\nSLmb+ZwPZkZqvNYvUpvTpFrCeiwrXeo0dZaPUgc5lji4mUZ1QvoP0CDa+Fs3\n0mQpiklWo5JSxsmjyHwlLbw9K/ReOJpsbfRmKX6r1izgdbjpyUauDAWTVn/o\npG68\r\n=q07v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ad8feb5f90e97bb9326133464968927254927fbb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200131_1580454994538_0.6835538077673515","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200201":{"name":"typescript","version":"3.8.0-dev.20200201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200201","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e03210f5c7915f89cb77bd38793d12a69933a1a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200201.tgz","fileCount":169,"integrity":"sha512-KhaK6J3dIg6p9t24UVhBLcBIav4MpMExlD6nf18cVwp9LELuqhWu0NDmnLdSN0ovsrbcIJNmobQ1xC7vLN21eg==","signatures":[{"sig":"MEQCIB/IlCkQF03GaP88AihnQ67QnBtJowNuklY/DknYVEroAiBc4jXtxm8jSBFoTCpzmt53COjEPFKRtrMc6OiiV9PpCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52155173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeNSUzCRA9TVsSAnZWagAADMUP/iw0y6e76xeH319MG3t5\nMvcDl0faV9TSaTXPxV1ry5A8jDfWWfphfcbgE/bq4/dYYYMrrS5sxucCg9Kw\n++86ySVq4MwTQWzb3kRvjLUmkoMwx8C7+k5Q6sbzKTVlyJQuOxRJdxFjYr9u\nJFnmOO36tFrmDMbc/m2k6dgoRhyUm9U4J4T76S5WKy//NjmyST4GWtTmKKLS\nFDSRPDbVyR6e8hb0L68cxvPiauGXFKL6yQGMKNWaVR1MNIBbzNEuitdIkxoa\n64dRPw67Dm3LVOMR5omvKckaYDevi/FxAJgGlm2VHZXxtGkYJct7i6Gdjsh4\nFRUYgfzkJXwVwzqUpBm6NFRf8+5e3YUebAX4s71aNLiFGJ5CjCa5zJ4voroo\npWCfxlB+vhhQdeGN2/5F/Oa/hQZGpvgbOrGD5keaUpXUjYrZwuE30xB4JQ16\n/KelF4APbW/w7OdMHlfIiBWfSgjnfF9nIjzw1fohipZr8CJrOyrRsCbYJ+YH\nR0Y8LNZZn3n/lJ1phti0vAAOO3Wg5UqScMJwalAlaSt+mRltfGVT4brHOwf0\nbI4L0pXby4tp5Z9haKRenFW31DENcwXjI3oghajjs1CzsMnl1Uj/BMt1Qn73\nKVzM5d6oF8lvhekFDV/eg0ARFOhamJU0KrbW9X3Jd4Zhfz9IX6fWHncKg2Bp\nQDhZ\r\n=8AI3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef8eb0c876ccb71211eb61044ddba09a4010e30a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200201_1580541234648_0.13357026202500566","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200204":{"name":"typescript","version":"3.8.0-dev.20200204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200204","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2dd62775ad397317230a7a805d96ea26bb821c6f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200204.tgz","fileCount":169,"integrity":"sha512-dS2oEZpp4kdBJXTHXrHsLStPwRSDlfNVwmzxBg3QU7BqjHw+qGaLfMLkgvJtr/kGvXJFxEMEtCPV4DmuSqluoQ==","signatures":[{"sig":"MEQCIFNp/FEf68OEgIFxphVbKY/Tg1Cm+tMpnCSuJ34poQyCAiAmOlG9bTU7SwlfxSw0wSZI3lFrtMGSx28w6EDovD1t+Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52166854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeORnFCRA9TVsSAnZWagAAYGwP+QFGEtQ0Ej45OAFvNGgk\nao953oMuBgcz3TVpwgMC/N9s4J2SbWXycRCDFG0cs30z4p+oYml4InFP+azr\n5bcjZ3iRniUhR0EKXDOHs7CIs3AJgD69duw8XxZkV8pp4Y2DnYtcOrk0Y0OJ\nMfTyi3/XMS6v+KXB2BUnHTySyqJ9cblz3t+lNzdw9K8gnqs5LFiQ0tKlcqvj\n9dWeg/j/X8j4jkVP2HRoTGu4qU/ArbxohGfGGna2Fa0NCdGW4IrWx4wdeQDW\npf7wcHnsSQlh8L9IEG4yrYCU9RLsrMcn6+kOaC4ZbCcE3qkndU25LmN7zC2/\n/0oUtLfUMqKb+E+J7bYtS98FCwms7JwVtV0PTN3PmvEtLPG93mcjZu3Rk2Q0\n1e03YkUM2H5sn48/zOdFEzGJ64eMnZd4aco/Ad7WKwwLFGKH89wMgzp2Dv9z\nzisFgvZlE+/9iJjCFiEXDvLwQQEe2kU//Xi6LYWh6TTyO7BUdrEhl4iP60Hm\nZuqkSdlpNBYp2kBu/lpJCflSE47I5Pkn9tJ11upYqDzAPshHJVtVaUHZVpp1\n/VE/cu7NE/a8coQYDDI/W8exixOv9dgPECpNbx92FDtny4y1/xZeMlx6GJW6\nf2RHEZ6D1tFeRM6h34IZ/CMYSoFdXGhhfsCeuNDMsyxjm27jjT32Hg9dnCBY\n7HFy\r\n=KPfK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7726464abd8ce58a13c9fdefefffd96d65fb82a1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200204_1580800451935_0.05893332922389849","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200205":{"name":"typescript","version":"3.8.0-dev.20200205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200205","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0426dc156d699efd561efd27bf448282b0df46c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200205.tgz","fileCount":169,"integrity":"sha512-eNdpTBTD1OkVISS/nZ6LMkzMoeqZGlFKFvM0nPucNqZF+JXBWfPLxsxvUHfGXOZbkjB5vLX2NHyLVCMBlpG7Ew==","signatures":[{"sig":"MEUCIEuz4rf0uDUcT8N4a90VF/RGaDCLVws9iDct7cVMHc3YAiEA9vsCNTkqS6lz/t+jOKaIvCdyk86XAeBmhkghH0tMv10=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52155763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeOmszCRA9TVsSAnZWagAAZDAP/jxiOGgs+PeDmm1Lj7KO\nBn/Crr05zEiH4GGQUXtt797/neDlIeEIif57bgCY635wxnbPkXuoY23OiR9B\nTN4PfjcXkWWoGu8VtaUI/lp6+fH3MBqviqhGEToFeUeEN8qj5/rOizBYwaR5\nJroYdSZmh74mYJ1o0iK4Qx9HosgON+mWjNQgdwamff//GwOZsJMNtRoQyzQi\n9+jy73mwpJaDzREUe69MKWUPGMMnfMYZ1s0dGLvCNO3Rv4hNMZZmqj/vKpNl\nDklhte+oY+X88B/ukglbVC5UOvGWE+gEc6tz6zNBB0/uasKgEh4yB6TNlv8E\nco6/xYOZ4uMPuabBF35L5bpTcCyRLxfh00D0dW8NaX228coOFXMMBfLPp/iN\n3ZVLHNNb403UnplFeR/8lYTDFGBakKkeAePgzonC6AiGuzQvkEuKfRxAbCVv\nPa0RTl3R5kZ5WwFLqpzjyqMe6pqAh2G2XWvib3lxFTdzfWXfdusmd/dZlO+A\nkBaaQugSev8dcrpd1hnYWAS2oN6lDfkOdkoGlOz8GwOnYuSM3upjdrpFLcOh\nHUTcBS4+UXRmdSTD7+3Z2ChWj18Fi0dcmnrvPiyj56u/O8qDehwHUZ91fvym\nucbxc3GS51gTzhmrv2WUR1HEBYlxeA0cI66cUzz6Ujj+MKcMtyU5e+smjrUD\nuvA0\r\n=vQ4U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"09441107c1e3f3d807f729b14d7f2dc912d4f8f5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200205_1580886834964_0.2700073570051751","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200206":{"name":"typescript","version":"3.8.0-dev.20200206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200206","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4d5c377db14a9f166d172934a4add60a9157881d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200206.tgz","fileCount":169,"integrity":"sha512-wCLl+s+qhZX46hDlYuS9FDAT1J0LgDYRYIPebQWXFuYSyy7eZGUgiISEajSEhEV02+bgwrCiobm/2jgSLTMYxw==","signatures":[{"sig":"MEQCIDhqqSrRqvmnmXyXEYOlqwnxajBvFkT1L5OvYFjoWxJOAiBCfMrFWcvMPHZG4R2EWKyfx5OwwpQdJPzLMDYoUNC5Ng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52217509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeO7zYCRA9TVsSAnZWagAAPmoP/1WifyiiXw1bUNdhbgla\neX+G3EvFu1L4R4QdUnIQn6YFyGzqoUYiu9UWTJUpyhUtDd36KFshj22oNT+A\nyRwOyFO7K1rUdhc5dVK/k+KDUxT5JY0b7xYbgTTIr1I5a3qezWmer8pgledC\nlthtEfmHFgamNffp/Q1HEcfPIiwF5EIsF0kvMSyoq3cyNUHi/CzV1tvy3uIV\nEz+asWKUQ0OEvSLDHntDpoPeyHJbuC+CmdQPf3ZNt3FiRWePr4A0MTojguj7\nsS3Zgh9YJ+1YqDrCJPPK2Nj6a/FUBSh/G/gHwz+oRJC+rhjQKdTxSDOiYVbb\n4IladqhubjqWd+6o8EdXStBIqqWYV4cOav8zaGCdTXaUKemTit9/EfFI4Wra\nAorEliNPKrVYNo66x1stAVKbdfAPsXeRujm56O3JHx1CTcx9rI/A3D6VTXfJ\n+YvOlAVCiVismQvD10PI2pC1fWq4GPVcmGe1QZ4gyYFOKZ/Wp4/h4Q3oKP6+\nlZoU7v8T9YtE3MplAJMiXYj5As71ha4r4OxnXm3+fq4cGJtHzFP8MoiADYo7\nPrRhj1W/8wnm6YMkrKml2EccePDU0nQNxV1zWD9yhMN/OfdWuvx8rKszBdWT\nBCH1klDQwaGFJ10mQw2GCrK27+Kg+IORFvR8QlR/9hzWlbq/HJlXwM00FLhW\nUgIW\r\n=vhhQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b8b59489e1040c288d6cf4593bd561d14770bbe7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200206_1580973270964_0.01142473848183978","host":"s3://npm-registry-packages"}},"3.8.1-rc":{"name":"typescript","version":"3.8.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.1-rc","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f94333c14da70927ccd887be2e91be652a9a09f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.1-rc.tgz","fileCount":169,"integrity":"sha512-aOIe066DyZn2uYIiND6fXMUUJ70nxwu/lKhA92QuQzXyC86fr0ywo1qvO8l2m0EnDcfjprYPuFRgNgDj7U2GlQ==","signatures":[{"sig":"MEUCIQDJzZ6H8RkApIqoFO4wvgQ0Y4OhDpX6B9C5fO5MqoljFwIgOMCYLzbjDAyIxLG5cMyNFAHlBBIWL+p9FbiHqgTTGVs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52167938,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePKaVCRA9TVsSAnZWagAAOQAP/0eZOOOkaXRkqAIiXts1\nQvzHgenAJ4Hj+mLFSjeG4zpYXIeR1GYEpAaS6ANWlKBkIKBGL17vYgDJezB4\ntUdl+MHCnbjjrwGYSefk+TgvAd84NfpH8WsVzn6Xd/YiRP55TaLd7SxBCOT6\nDk/vYGsJzqid6KgMgEQo3UB2OYxD565n8kyOO0XjTvKFTRoZ3SkKq/eUw8Ic\nD/c6BzST0PVqIXFJO5UFMbb9HQ9Hyo4XkywV5k/rBntrcYgm+xp200Ugw8ub\nmWQ6EtBiQnVOqW89XjSdVV2U9/eNWNkm6yFV7lXsDaAFMHvtOeF1vAlQKLFT\n6lIL+LJ3omGZlkW+rVSQWAykCVoDb4SEmG7d2aG0GuziFqyS7qnQ8z8GsqiQ\nEdtVBJgL7hBBy/TCxNorWfg25cCHgiDAoyyaFsyjefz9KTRQELB59LV04Izl\nE7gcvBkwftXygYroRU8f/Sv20oaU/4oP7F58H2MhwIy4exSuJ+WjlsRYT7it\niPqityVXV9eZzHHHwphcsw/BnghCnhLQ3oQkeJK0crAmvEcf0nvBqbCVxbnP\nP6hCP8KORzxZ1gytWz9L5YCRTdaSBJFA9X8v3B7JX2gTen2zr+n18cwj0jjm\nMgxigyK/06Z6O8IHsaHzg1d0NUIUi7nlkxCUI2amsz8+2W3gVPP2Mi5AtpUE\ntfVH\r\n=4fSK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.1-rc_1581033108287_0.6836922442267879","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200207":{"name":"typescript","version":"3.8.0-dev.20200207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200207","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d87c32999e44ad809685f76ba10b3c67c7552d6a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200207.tgz","fileCount":169,"integrity":"sha512-JICbjjqDfx99wFJSIrZLKWNsp2tmAi5NYazcNndcTjpwS1sFOtPwX94oJiEAFan75l0MFaBOWnxUMvyAM9M7ew==","signatures":[{"sig":"MEYCIQDi9kVDpJ6MjI+C+APnWR+ngKMku+D5Tj1y733NKmHNaAIhAN3O3qLLt8NFKmeMlEDBySF4aHhnO/cbbsvYie0rlPqK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52218781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePQ5tCRA9TVsSAnZWagAAQzQQAJE85wFK2Ye+LxQPDXNa\ngtPCTnEfV5RnbFDhctKoYx+9jKtEgtPvvmY66ZZf0Kv5qK1fZSrDKJGaNM5r\npLD2YD+pV40zRDxqCgQZU+7DmU8c57Q1BseAEu4TFhOekrNyuhd08nNa8Mrd\nh89d6f3XmfhIr3gbtIAX93VMxXvKK3cxl2b/HaNP3+SdDRDa2zE0loj8AnbT\nNA6PrcqzqgctNDMQpnDBlGAcrMhnh99qKLGv0FI6bTmPb0ZD6/C5uf3G7GGb\nWKS8+DlkmGPho5H2FIWsl/Us2K0RctWW4kNp6gNsFxtIjdHczQrfxW7ygvXx\nhuMlc+8dADv8a9pvKp6z06xw7aPT5MpmOuMyzus4Jj11oZpFPp+WSK2xS+VO\nQMthEtB/7KHsaY4UA/inW+GsDCJgRjFFXsId5e3+XPjTDZ5tZRKmerinxWO2\nBycFQrPs1iF9AM3KKfx+0wBKh/FxwrYWYOxThQoO0OS+y/X3JnvGD7WQolhT\nvyEY7Ihcb/vYzyVupZydNhcVBwbQDWiigDwuLLCmfqJJ+6zTy4w0+ukAOFin\nAg/O8aoNdCunAsxHxYylKf18/BlB9yNFEQHElehSHbs3N3VgBnhgJFHqddYf\nZrnk8cJ1B0W6vqFYOxzFsbteQp8cFB3480tbkH8YQKtZW8Np2CV7JHRzkPTj\nRsPL\r\n=UIIc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2cc585668d604c454e41cd006a222c3c7299acf1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200207_1581059692539_0.046461352658942134","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200208":{"name":"typescript","version":"3.8.0-dev.20200208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200208","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3cd1ee025932c88ff78831f3629e99b1995e1de5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200208.tgz","fileCount":169,"integrity":"sha512-/n4f+RIfoHvEmXprHjE7dHzGlDzD0wpqpvHBXBtwaCi1wp8zsGqA07v1UPijR1xBqumO5FFDMEPIuu7fEDJemA==","signatures":[{"sig":"MEUCIQD1UBXBOVO5Wnovuar3nqKTKbbV+ssGy7Zw/zttD1QMvwIgIJHUiDIc1FaoPueY8kHZbnUeYsd1ys3KKA49awyqKGQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52219072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJePl/sCRA9TVsSAnZWagAAT+8P/3XAACRxBeJZQW7YCZvP\nC4y9+fdDhfNazHj2TXgCGxbMNt/hbrt7DWfZFYrEt7BuBa6kBCsTcgqcloHD\nZzXexQ1k2JhWYwByZdUCYpgZTSS2Vp/bMo5vKTzHskWqYGLsjImIl5H41vMw\nLC6a+AvVwWm/TdUUT55eZnku06Yy16bd6ElcnsrSMS7pWBPOnx65dIm9wkds\nRAZSA7Y6mFbXOOoLKdxEcqScd/tpl/CqLcbTFH+s2rTu1t4nPFcOL8cRgy7G\nNdhcsQNZMtAuKEr8Nh2fRCifO9SZU8i9obbGf64yoWVjdafsbpNe1fXzpqAZ\nWbyZcGX1jy9QvEP7fU+RPJx90bJ1sQ3oqXf09w546VGuf4xcldHJP0TM04yS\nTmdwiuy19w/mPu0Tja0kcbeYDashLtjpO73BjsqVuZNZ/5CmkO1cMXaCQnC5\n+p3XqvcA9aKB1hNCRm6hS3zm+LtkDRygnWFJMdy9NeHQZYqpoMpfGjTKAhf3\n6VgPnL8pGkwlk1Dx74tdkphxfniqTDQUFHfqwk7C9b42mowt7BjPD6W0J2kj\nbqUozWHJWkn4qDqrTVbsGK8uysMuZVuIYAFihAG3GMiCg4p6Ji/UNsHqjDEH\nvj51r4QeChs1NWfIaakIaJ20ss6WhpRseXBT4u7wCgxiE7p2+yPiy2ZeUoef\n0kdZ\r\n=ofzo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fa3173f8f6443307739fc7c41f2bdd680f56a844","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200208_1581146091726_0.5105460300506437","host":"s3://npm-registry-packages"}},"3.8.0-dev.20200211":{"name":"typescript","version":"3.8.0-dev.20200211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.0-dev.20200211","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8723bc40da40e737b01977ba543af69d7a545d94","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.0-dev.20200211.tgz","fileCount":169,"integrity":"sha512-1LnADJbATvC2XSPcn7NwrhidLA03jXUx1x1ZfPNaceC8SCe5KtZwihzMe7PPmP5Sy2JiXD0pYp/X4MVogV57qQ==","signatures":[{"sig":"MEUCIDHl4SAkIK7is8969z4eof8vodOf4yIJNeJo+2pqrmxcAiEA6in3bXu/kNKUtSYXHoPHQhH7NIHO1pwr04qbI28x2IU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52254894,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQlQnCRA9TVsSAnZWagAA748P+wfNm9muaeWT1o2hiV+c\n0TWCsdN/iES2q7V9KCbCxxJ2dpxGZCLd8G3uxq811PC11n7JEw7qP85+kMP7\nYtibiJ/7MW6zVVq9Ju2WjDwpwkf1vw2JcPchfBl2RiqVIaQZiFDfrG6aVlH9\nGexcsh7JGvopexUanID9zvq5tb3mplK3iZgsAjDp/7yjxVyBlVMbcitj005w\n7vqIvdKwHn+nzitVTeVt5muyAlqL+7OtasK3+YeniP6Iev1g1X5cKk0794GJ\nT3lgRhU0iyM9moW0GO7LwTu+xv0OdrIkCOVqY1dikYamVweC5r473sNhQiX1\nL5Y9UOcKossNXyDOZmoYNNZA5PILDjxiOSRIHAQBK6M0n1AHTHPsOqQwP8ns\nB0dir/Ocg6hIwYFVzVHIbB5gGMIwZJZw0qEMo06hkvscUOh6Y0QRZxS1qTwT\nyeU22iolDiJY49WOEBHlAsLeqTY0Ah5TQcigSwN6AXRwxc0f6NSQ51KDD+nJ\nUFakZ9NCnS2uCOtqzoeSqhQEOEpHW7Vy1JBomVc9/J1ZNouixe6RbJCMfx/A\ncyJvj+9QoxbFme4hRtSMnUrMRfVvLDHVzrJjZGUFNOgPo/2CNrVRf4UrMBfL\n9F9PnxPcpIO6erDGxneTXlWDkL86WjHZj3pPg6bH2+cvQza3GOBqb3fTIRRg\ny1vm\r\n=z9mb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ad8c209fc24eb1e35a571871776ce9455464813e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.0-dev.20200211_1581405222476_0.041937897230761134","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200212":{"name":"typescript","version":"3.9.0-dev.20200212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200212","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b8e89174ceac805bcb4f7e89555915ecb9efad53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200212.tgz","fileCount":169,"integrity":"sha512-UA7YMLa1iJC/ctwollqE8liUzWjb7rZiJpbyz4LsfDmQ1D+0RZJufSBnH3g+jFE28Jh47JQsBqXBtyWPNCM5sQ==","signatures":[{"sig":"MEUCIQCo2MCJkf/kC/eOuv2LlogRd79mfZt4f/nYNohoQEJbmQIgM08Zr6RumldxcabRCQN1Qeg03jcG7ocD1t6728Zr4cY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52277899,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQ6YKCRA9TVsSAnZWagAA/8oP/2o6VxdDZHMXONzuNuDs\nkuWDl24OrbxbUQUHbroh+JQ1kS3LkaPKp9mAY3WJ5CIpvyVdaLLU4XWmzblT\n7kpWSS26kRinmUeLBV/L0Z58CGyD6VkdzULazgt3LVAjtEqeGANQlq/91BlE\nZmfuNYOLFiHMCpgtj7Xa+/1FsIlfssHuHqvWb+BITfRZYfPWcqCscGXnWNxH\n3a5vckwMP+4grku+mJu5E9gfaFOD9fH+S9q6s1BFy5ffdGifhPov7pplvVGI\n3NC1C9qpG8f46qF+P1xA4j7b2EuHuOXaZ78cLw9uyTBD2PGR1Ijo/luAOrJL\nO9ma3QkxpqOU0WEe+9w4yws9viNK1R2ScbHZOI901BEz3g98pJ2+OcQEeL5u\n2oV+58Txv8xCQknC/fDh8zDxSXWmdYbP/z3uPqWgRJgz0yG8Bh30ZGHtnqdU\nVKTVp1HEyUoe7cb0SjPo5xmEhpoK3rd5FRWhrSct/KqFgbNNZhEBjMSZvW1b\n+wLPs2fizYlLHYi/oGg/sp6tzk8Gi3UhENoPLeO2cdIH6iirrCj2ZGybkGQC\nt6eXpuqdVnRmNM3xqwUsyDntJpOePhu4v/eabIDUhGX9yf3im95Tbxu7RBB3\n2mevoXzm39mdP4fy42O/im6z6LocGTUP4vKuhW21Ll5/fAiSxFxmOks453eh\ngRxF\r\n=N/8Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6f079a4ebcb78489eabb523faaf1b69f88e80bd7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200212_1581491721340_0.37089857122726366","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200213":{"name":"typescript","version":"3.9.0-dev.20200213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200213","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75ddb2685ef22917a50d741e704d93f9c0bb167f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200213.tgz","fileCount":169,"integrity":"sha512-KSi/FGJ7MG/t5n9fr0zyrHACrSgmL/MZ+wlsXPcbB/BaMCcYVj8zqY1NjI5wrjJmURYpJ7AUDJLxQXsGuPX5TQ==","signatures":[{"sig":"MEYCIQCwBkt54PzqUYaP6XaULj55OutbOD0/T3tFG4vjQvF2AQIhAM03iZxo4bHAmMSJRN3nBCVdwU4iWb3ZdfnsbbWmbrc7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52288199,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRPcnCRA9TVsSAnZWagAAjQQP/1e0azAriD5jI0oAEI4K\nWoG/jZ9OaTxgRS5MMgDvRO2EHf57vEBPsjX0fgPpg35grtDu3VxCQUBXkjCj\nSDyG4SL+a5ZNmFVy37avsIX9ow+cMm8h/VlHRV/aJhG5O5uA7t8ptP4QPIy1\n2zofYPFsyX8b/Kmp+3l5RdDlTdiEvmPz59aB+uMT3gtkhXHu2+Swa3vRy03Z\nVm055oMQC9hBLzFlxljJ/SbMNjE7JP2NL3vMpo6bZp68v+9l9OoLe/ueKU2r\nfdXbKuNWdWOq0+L4DOJe1DZ+xgcdY0E9uN3SFmqG6FR+RZOvB4ALyR6jUJqh\n1ClpgRCBH/INf5k1EEy2zAsA8GyhIBU+1D4isVPh20EMzS7Loasd/+PSv1CS\nZQf0d91SkBgKbEj2QwXmCsvPrvRtjKZh1ANSHRk286EAfseWIgOmRMTiy/Yu\nl6vs7XysBrDsC8QBkbmyc4wxZbzjhk1kp4nLjklqs7WCOfKnY0761p7VSTtw\nPeHgtKHHoz7bpMad9n1+Dkm7Os3zlgy5SgE8lViGxTUJCr16kO7UBt0OlcYF\nilR/HrZRrgk1P9ELxt5zYkzoj220fW5e47l7z6gzV1pbo8MDGhq9sTxb+8fH\nwm2F4OuuvBIo4UjQJi71Zvbzm3tWEXXyUOMFUM3uRboK43bAGa40oUqvV5o4\nPxVk\r\n=6CCS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"98492d8daf557d2eb0017cde7293110ce9ab3d2f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200213_1581578022758_0.4879724803938701","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200214":{"name":"typescript","version":"3.9.0-dev.20200214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200214","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"971c9ca2d4eddd95738a026904097ca7130d4c6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200214.tgz","fileCount":169,"integrity":"sha512-ZzlRrmPxBamTC4rdohVXdu4X2iRyuKiM24BjzoTXv7kKExHUMhMqbaY8tWUXr6rxyZCiXk+/CkJptsFa37IVGg==","signatures":[{"sig":"MEUCIQCjtFLfi38RWLZIQbcUfJQ5zPHaMd+vrvcY46rmJA+LIQIgd76qtmg3S56HlCqr2kfLgIUDuFZjTZlFu6ClcKQ5txo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52288695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeRklPCRA9TVsSAnZWagAAMr8P/14iFljL+EtBRSPjr5/s\nD5tkzE4/VGJItddes1ru4TuYyiLbqjUtjBTb5rpFbk772LJJu3H1W7wD2bQb\ngq95TK0byc46jUDxeQK/UsqDd6JtUPVOql3qiciQLMYfbURA8PwocCOH7yGB\nUDFtkQ998oIwwyLDQEinjuC4mWbGK91XiRzzO2zSzA+3Dq+llmrqHn5YBABA\nhbI2jbUGiSkjxuAFIK8hs+8jrXNfFmRgpnOjxNLT24659tviZ7OKANbAGD5s\n04l3IUeDiAhGEGWpOvZblMPXyKsmSCAZ/c/I+kYlwdYXJ7NAkCWEmAgY//CN\nR4jNqFOOwkXwFYPb/5Rclc3SnyOBFDtxnSyAnCGIxG1/vWbRg4jN+u5KzkBj\nUupGtagIlomy4hYxUWimV0AaRkEl68YUYiXveIyhaBwJPY0Z3c1eDaLL+yA0\nR/beGBdvse/kqveJYW8r+De9DFo9UyjlJSIREzb7FS+ofbya7ii5XXOwH/Qq\nEPje+Aqr0Oo4rLbKc5Eb1HPUiAi0O2SRtzUthCQSJxEZIaUxnnC4AvT7slAt\ntOt+hx2MrxIr8TXWlD4AfocdlHBHsBRxBAPuekv4X7FVI9u42GSMHkH8xp6A\nzdZ+NoNXyjcfUwZqVAvTx+oSEIgCa0eVqby/VyX/VdanF+xxo6JAJ9Q9hQ4K\nWTCo\r\n=UFbx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"950b36192a10f5dac52993f1e29e62cbac513853","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200214_1581664591039_0.44770935080891805","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200215":{"name":"typescript","version":"3.9.0-dev.20200215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200215","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6bf2b4e8241582541c915032dd0f6a535f46adeb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200215.tgz","fileCount":169,"integrity":"sha512-B4VE2NldE3UMvxpCCz8hR2xByjLH4XJYdbKpMoxl4cpG2/yLGIfxgf4B854hx9ZgMc+7lWzO/+b90vYVoRi/7g==","signatures":[{"sig":"MEQCIAoF0kOgE5S7IXQqfwMuic2HHcd2GlWY1HAVTnXVHy0kAiB67bEc1GgRrmtES4sAHNyzHVs59qd3kvenLHDCYCnViQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52298384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeR5pqCRA9TVsSAnZWagAAickP/1bO168V1oJBKPBCamQw\nc+tiJ/m8vvXadkH5gc8KidejKx81o45nhEMuMl0X0QWv0omHoinR8e6tSzE4\n1/lnLCSnjMnUC4gG9ucMV0hjGvhx6Gl2TtP2C5rqKYu6JwqHDhGJ9Hz2ebes\nTCMxd+ngJZOj3TQw16VrrWnNYZkm09jkaK3EJ555I57IpsaMXBOhtyhk1Bhc\n3dz37Tx0Xf0sr4xp6YugumbxmCz0DHyK/Fidnjno347/Z5e9kEfxIHT8vGwx\npuOKXe1pz/0Oz/h+ak0idry4z8qL6UxLcdXegRyB5vFG/sA2TQIgH/kfnB9X\nU8mYwhJM+Ca+VMQjVrg/eR9D2TC2XsN9lwMGAQ4Tyrf4czy/DXRG8ZqroIkU\nj+2zV/BprCAWCYYul8giYB7WVxcpQCZQ00VVFChl76YiXBoNYltqsLDHbl9w\n8lVjTtAbiqjWqqyK1AI0EFUocRjfWYb0JWBC2ITnb4xiDLktHtOTNE04AHed\nYOsAVsfGaFkalbubennS/GpBBGNYutLNzCAv5o9Mj4Q9LTy+Bx6svi+1gUkV\npsN6D6JGGliWDI0mq15HNgZGkvp3l90u2PeeF0mxSHjk7vfOqf2gG7yNUuiu\ngVqcr8MYNieG+uTI7aUl57y9LXKOPtuFzuM/LBZ4OhGqj9gHIeCmI2d6Zy1Z\nsJOc\r\n=+Z7+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7cc4a8df9482ffdfa6b3500a009c0454681d5f4b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.14.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200215_1581750889878_0.5566875102852749","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200219":{"name":"typescript","version":"3.9.0-dev.20200219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200219","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9895b7a27566703852ea091325cf62ed3fb6f980","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200219.tgz","fileCount":169,"integrity":"sha512-MuH6+UIDR3nHlR0RbmsCl+9XXogbYKbnY+luKgjtUOpJqKkJvyA5o4HRw18dTRFJntPz8ZJpjB/UEELBvJq4UQ==","signatures":[{"sig":"MEYCIQCA4p45n2CV7qjMbO0Xm9uRR8Fntz/dxP1EGF/XgsgKdwIhANi/PRIHHbNg3G9HuAtTAKlEtXLrYcWImzkPaUQfbMax","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52298460,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTOCLCRA9TVsSAnZWagAABicP/1vdiJJAXTljLVlneULm\n0KGbmnIiunsV8ExHb7kEVB5Yd/E5e78inJItFmFRjDJlGtrICCrrcJMOxyct\n49aNr0uD5bd5DMJEqH0vhlv5XPe9Nh6SthH32iLZOrp/bxPPfg98c0K8KV1C\n+hPpqXJiqyXPCoYfPi+sxrt7jyvFUUkl8HhzUJO/4lZnH2gZDEKSCHaxNb6y\n98k5+3diCErFksl0+PsorxlVBLJ9+irxbn6TBttvpry2tZXdc+KIXLxRD8Yj\n2ZEOxRje+95iuPypgMtmhfyuv9yWq+MrcNe5YVX3/8asy8xC01y5zHBiiAtu\namR67Ru5w1mn5ak9XLXnSO/mS0VjCkdCSaaR+tUuvzALpgBRYCL06TY0wRfH\nZ0dPRnUWBvKiI5hzwl5IwsJ47f85K8LVf7wsxzh5ejruOoVBPiBYL6fR/dVg\nJNfUE2iDZQ34Qz2al2MUqbRfG73rbnU13OPUPzBR14yJiGTSkxGofCsCpAyX\nbeUc5SQeibH3bI6YJckR51d5b9D2A+vKLvGew+hV2kQaU5H5oiyCsF/vRDkC\nrYe90pv7QdwG9LgoD2MOMTj35g/ToDVQ3KGMC7KJvimVcwnuDO4LI6vWnyZC\nUma4BhvxW148RTsuWOc0mlfZ7/Y2BpDpd9CvTgCXJC9TI1GDvf8BhBLlvTTS\n464P\r\n=t9tU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bab0c995849eff9d5617653de537b7f9103c7e10","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200219_1582096522783_0.5366055085443724","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200220":{"name":"typescript","version":"3.9.0-dev.20200220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200220","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"80ad47cab62006f4d4471ff5f9b02a4f08eb8f53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200220.tgz","fileCount":169,"integrity":"sha512-S8U1HnF7yqcyab+ftEQ6Vt6otavsO4HfSLaYGTizmVPAClTToG0jU7aUc9H6X5rQqgJHyJVc2VkxgaVZEZDIMQ==","signatures":[{"sig":"MEUCIQC9r/9115jVw47bkBOHkcC4y6ZiRfyDXc1QqF/xri09uAIgWXboMRzi82Fkgqc0AJEawT7T08TlEHLxYEUNhd6UJZc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52300410,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTjHoCRA9TVsSAnZWagAA9bQP/jIjfdKbuerOrEdLkkBJ\n5/keGcTalnhNqK6hcFk45wL8CP7nQhXG5QhuHvoav9UWF+isKKtDUaH/XQuq\n1jvPz/rxv7drAs2xzBhCrKvIEuDMNmtLXe3uv8I8tZFsOqUqlAwacfkmFCdZ\n9yXZjGuEyGKNLRQ32UdtjhyaNaTzbGUZ3lXssxsea7Wf31n9ac8b0slY/5ud\n2UpSuKK+3G85D7x28hxwe6gV3IVjoNXSmzRkoq/QtYBvSVWy3gDp0gti6NiU\nstuunAco8hKz9MG4ne+UHNgFXMS7XzjaAl/5WqKcD/qIbmilltqD6sXNmBVC\nDjj5liQ8vkBGfkrgVrkZqqXD3QaDJ27hkyktfdEBGxcSrywNL5aZTC2bk4rY\njfqZkhuTTx0iOcX56/PgRNlobNGy9T1C5/LqkEcGFD6MHQ2rww3lt0cmHUS/\nMrbjLrKGHR5EcwerEIkYgDV2uOS9iNHI+fNqYsL+ohNxRCT4J9nLHl1oI/KA\nNt4r5HCUDUGW0FFN38w12xjpsH8bSIgqJm8E/JnLDDobnj7Z9U1c/rkwC/1o\nimTv1YVzX2KcZkoMd/wbTZTB6FnWFjZrnulBzuB/JFOoEjUcq03ijizNJhuB\n5FPow1XLE8sXsOW5eJI/mFecnGpoWk4KKM+fbZ0rowIM34pwW2yogdpWvRxN\nPlMK\r\n=R8m2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4a34294908bed6701dcba2456ca7ac5eafe0ddff","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200220_1582182886943_0.16213369748330297","host":"s3://npm-registry-packages"}},"3.8.2":{"name":"typescript","version":"3.8.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.2","maintainers":[{"name":"typescript","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"91d6868aaead7da74f493c553aeff76c0c0b1d5a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.2.tgz","fileCount":169,"integrity":"sha512-EgOVgL/4xfVrCMbhYKUQTdF37SQn4Iw73H5BgCrF1Abdun7Kwy/QZsE/ssAy0y4LxBbvua3PIbFsbRczWWnDdQ==","signatures":[{"sig":"MEUCIEziVM1eBxqohieEBmqiN00XYEQx2UJu6DOebVpBVcwRAiEA1emQkUxs84h4dUTd6AxjNs9aMDPqFVrePxa49W+UYF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52177069,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeTwwkCRA9TVsSAnZWagAA2FYQAIpfXORPm4Qwc3ojD1ie\neFz+leI6JaeTKHE5kJA079APjsnLMqkd2fQNTLpIiMhwFGXNdD3UtevPxfWl\nYkF7pSBJ+Ml1VXaYyWhOMp9xIvwo404e6gReSyo4imkQULPOmfj4wj32HIg6\nvQ9To21GD616LkoiuGf4wmKUlH9WgI5dJdhVC42N20uYMLUprxncC1t5HIKD\nhxc+qNBwkTYe4m6ENhl/VP9w2Y76evuSfQg3ZKSIf+d+IWenX7fGd3vydnY/\ngAc8vsory6ZHGSO8MRjuXW6vn7RiobhnAOFRqJEJo6NCawoEqUoTCWQ/2jTW\nEHLUM9tOmDwgzgASwaEq0jRulRbwZE/An/orfXahqpqRYR8X3m0TehU+gtUf\nltKfvTkV/1RNUBs2qu1N7r+fLFtAwZK3uGgHFl6bkH7PWHzXab5tvJxyCHJH\n8R+dfbGkEX6SZMUToz4F27WnMKUgQfsderomw3hrCcrTdP1xVOHwM+Ge1lcJ\n8ZfE0fIm8m4S3He2SGbPLnZRMPW3gy1ERRL6/Yc1O98WxIX2rmSsUkY0mYUE\n8LtO2DX1MozazgYpMHINp/G9xfyIpx8FitpegHNlsPYX9EvxsiqrSNSdpTXQ\njh+VL2kksa1dIupqasRCQnHX06X7ziJtL0USQdrfP7gi8eRwAiRpOANlpjWD\nIBOz\r\n=XsNE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.2_1582238756067_0.8083360205648982","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200221":{"name":"typescript","version":"3.9.0-dev.20200221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200221","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"81a17712845fd3372fda96c7132bdf05eba96793","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200221.tgz","fileCount":169,"integrity":"sha512-J8MYk210amMLeWZosEJvvB8NAhDhaRzY9QRxmcN4h5ZCI93n6EgjX5918CZhrOjJxUIQAE46CcMbF0e+VDy1EA==","signatures":[{"sig":"MEQCIAwyOGuWbcbUl5gg51iehxH5KeRn0E35UfcuQT7xOK9/AiBH+KE3tH6OsW+UzcAc1zlp+ZNWRQOFu+iHIL/Fu+B7Xw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52827988,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUCefCRA9TVsSAnZWagAABk0QAJIczTyI7LA2jDAz+PHr\np6rkTljQdS33jsuWklQWJ0xqhhWZqSQ2WhdnX/ZIxudQx80d90oqiWIF46r+\nboGuLc7OQkHFyMiPLBftoxlzmRGY9v+/9GmalaxYIYXF/Y1DCBgK134lfUnh\nXkep/+k5dwZxqM2hMGomGy7M/mF/HB3//tU5VcRdKgGo/CvYqQxZ7hB/KXkc\nygkLoRiLIGQPz3ymxkLNb9lxyWIRw64aFcQQe+AdOvkiM2sfOePQoIFM5GfU\nG2aA+OLXPBy7dJldkh6ymAXfQLvEmpZGwFiv6Xpw9HnDuKkNagam4h29B/2n\nGY10lH4rV+slIWDGVw5/x5xNEiR3Frc7o/SB4PyOUWCczpkzuiGPgGh6+OGj\ntnYdtbvXoXQTCcvto0V4sb66VrANybIznZgYxPgguwt5Np8de0jnpPDfWiMq\n8lE650FRasOG33q5L28U/8QotEkWBa9y+x+Vr9ojBJ+Xv5QPscGI1lkENLIe\nIrR2Zacjgf8+2evp1pyP3/1G8XO+IBOQnLe5524wVI7qFiUPFXtGX/3qKeUz\n+ny8VwY5CMQGifNW25mbY8DOP1DkWmRfNTNpGUcUad8wKoeZr5sHQ8VzOqrS\nFnNmQa6zKg7LJSqBINgd3uIdUBqWhmTaqifljZqpT9zycMf8WDifKK8foxqX\n+sDx\r\n=l1KH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"57df4663adb6ae181e8981a784b2556fa11823d9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200221_1582311326860_0.04998711228394037","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200222":{"name":"typescript","version":"3.9.0-dev.20200222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200222","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d52d7463ab9682fc0f0530dbad24e182f9a7d640","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200222.tgz","fileCount":169,"integrity":"sha512-CYDGLl5CC3dH0nNWr4lYyKnmE2T/XX3aa9wMw1vU7sltMhCr91393dzN8TnOyqxHeHhrNALteuZ8DYxg3SmXrA==","signatures":[{"sig":"MEUCIHR87O+EfNp6he7BBBIwClTLTz+qT/ntfcpnDY6mrx1XAiEAyRg0h21/nwDycl32uMG8DGnHRFN2w0V9zzUBY63z1S4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52852643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUbW1CRA9TVsSAnZWagAAcMcQAJI+SlKtLZm1rj39nZWV\nTqJ9c1qNbnzboiY0pF4a4SBpDjK7CcRDLRyy7WIDQRrmBtrhsSYzWdumhf4R\neNmicYioZgDgg1cSpGladnrbFwgwEzf1QtXlp9CbIPbrbXzbOirnrxWQooWh\ncJf5Bo/Z/67lXzj8AlJ0OGOYpjHvr6gKHTzJrNxdTzHU0YCIEG20NxVccbbP\n5v7fkYNIcP/C9HoM6nFwWXvvl54Leib2Ea27xseM8RiPO8bO6AmPBu52hko/\nlONthUz0SSmrg5R7BvRriMYnnR9UFFu5Nr9b0MHWSlLPgYVwNsv3IBkrmAZl\nkUWELAlhWGRHP+MU5NqD7QHpOhkiz+Ae64GNY9kMvz7FWATC+VZ1fwldbRWa\nvQF+EXI1eAMYAAHsLleYoKLEN2ryNWBXh5GCcsovFLkfvE1m3UwINmXsz+iP\nW7JfMFRKztWj8r29VK8W7XyFf4C9qnS2aXclHgThCuFJenZmuH/dzt9js8iZ\ncUDpXVJdt/YOiwkvsz0hM1kWLTr2iRioVeH5TVsUHPlfYUh1bwi4cPwoPmNU\nrKuhonk4aqMe9nzwxX8HAHFe52baJoHYy7ZU+QKVCCgCS8c+diXucZ3BlOOf\nNEcw6CPYcHMDGjmS5iK5wbskZq9DvxGojYHeJjwZ0nh94x9njj1hlSyWcVhl\nbcA0\r\n=CV7H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c6cdc63b9c8d557dfa8ff0069972dc238292bb4e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200222_1582413236159_0.0999076078807477","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200223":{"name":"typescript","version":"3.9.0-dev.20200223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200223","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9001eb09e66d8e17efb51b15395146f166cd6e49","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200223.tgz","fileCount":169,"integrity":"sha512-OIBSwsDxSe40AvMOZbSeq2HxCg2jjbxzsVHYhNnC4xvumzMq2Si4PY0SdZQcgVykNTmupOQLjT8ky48WjUYAjg==","signatures":[{"sig":"MEUCIQClTPQNKBA+X7y6BlJtEIcS4Mv9n4Zzb3itx7+apYTWrAIgBMQbet4OuD6UQvLddQF0SNrk6XbHKOsi1eKK4c2ZtAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52852643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeUwcyCRA9TVsSAnZWagAAJAoP/2L0C4oyLB+147KN3SX0\nQ5I+iXyvFnwUbmZUG54Di8CNgkia/n1rpdxi6g7ZRvUPhf+bueliK5sUKwu0\n+VCTnkh9IRizp+ggz7jvZWOQqwvjkwE1pDsusRDx4tsn7/nZgKVVmJlTAQZs\nGrF+jaN0jPzuyDAaWrO/a5MkyrmTATUTa8G7lVyraGI2vbHzBxx84Y3NKxq4\neLxPmqMIbjzpEnxWjI5aVStK3E+qnMVzwL8KnNBcm9kTyypVJC/mEkZl5xEQ\nPwwIAA7IoiIxPGve53rd0kGwo1IKGoh5itZ+WXq3RLstBozk6ngD0XULoFmW\nRhgWD449daiunTsz0tIsuGK+OjL9zTDkZTHdlVIcYPLR01u+LKJzwNorrtoy\nH+sIlq5cBDOnKfWL+HbbvZ2dX5Q4Ij3POxPqBP9c3fss11vkUGlyrAIacGAV\nu0pNMoRY0XnKptFN4KzYIYKYm9XIQUrQKee1KaGoa6gf3on3PpEoVifyZDl8\nqK3P9YyzMw18ViZQnux+DkcpytApBl1idNWLc2kqHt17Ujogh8TFH06tYv4g\nIqLIrV8vBeHaGPH6nl3fcQRiH1D1w9tk3xOL8xWrGyuabyumiW3Xo8wClniP\n5jWM9jv4+AkjlXgAfAGq6h9BoXxUjGSxglBa2kBZpSKGjTrf50cHBfzfVpO5\nate9\r\n=IpuN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c6cdc63b9c8d557dfa8ff0069972dc238292bb4e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200223_1582499633568_0.6937563912278941","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200224":{"name":"typescript","version":"3.9.0-dev.20200224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200224","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3bf8ead93123e5368db33d3b63b0746cbb8b3db0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200224.tgz","fileCount":169,"integrity":"sha512-h03wG0ifrySrjZaNFA/3sZdP0Agxj1trhuIFD+4qaOzEEHKydNkq23B5lqrDP7Ij20Mt2bsnj//r44oVRFX1RQ==","signatures":[{"sig":"MEUCIEeAoZLlaug5D2KDDQQet4WeI+zT0bsYnhGwtkI4Ozu4AiEArlIZjBjSFTS47bZu3/ahkpTfJw/uLPfODLbW3yV6Qso=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52857242,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVFjUCRA9TVsSAnZWagAAwKwP/jXjiuwRbFz2gUlAS+s1\n6N8ws5Z6Yz3Z7gjEnx/FHWGd3/MSpP5BxXBpFil9ChM7FU4dbSRsbjKM03yM\nA9SofVhyuTQ3s3YWW6ecA9MVipXLMDh6u4T8E1lZOrDr0vIjQ6VOz73olhQ7\nbg89wDY7VtdvlcDXOWFITbDNNmAIzy93CDE19PwUBurGTZnGsmaUpkjpmnVf\nC3DIoeNUwroMwb7cyrZ77fUXGLmS/Egt4VllPx1dk8ksx0l7Zyszyd0BctfD\n/fkBLVME/GEAI4kqMHgUhJ8u6piOiZDgNOzht0+beYIAVzjF+AjvXT+t2zKv\nU4ieR8iPoWPMvbIcLV0lJ2V4y03czX/j+r6GccIlgNFaLeZAxnDOK6KXqY2V\nOs2mmAriKnhyfSQLikj5uaQV2+ewLvwLA058w4T6sesP7y+/Z+lfOGjlT19q\nQxdKb+wOQnu+wlaJNpGj4P4wf85dLOCdciV4kmnQrIhIa9tUMNhutZb4r1tJ\na1Qh1o/6GMaJcErFhgcsNNadtDC95zfF+fn8n22SKk+p5wq/JRsbhc+JuKf2\nZbbNFnkVsq1jJ1PFRuaXZk9TJpxF2nj+ym1yp3lb0hCJRJWgQA2PU5CqAgBE\nfhXwvh89YOVr/2Ew3g9chd5pYoQD0DaazfAbE5LCt786BRtOHAfCiPzAe3rP\nrNYU\r\n=IV8m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7a3b6b4f4febee8cbd3d6501d638b22b463467bf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200224_1582586067081_0.35363469350519416","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200225":{"name":"typescript","version":"3.9.0-dev.20200225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200225","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a360fdcd1d3893456fe8c2af737c815064b63d0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200225.tgz","fileCount":169,"integrity":"sha512-kRzu+v/DfwkiUvIpu0xXauEczKH/Nu5isLf+JsPaW4N8YCtmshilOKqdPaQR2Wg4Ac5VaEpEHpMDm2kelhqLTg==","signatures":[{"sig":"MEYCIQDi1YZC6A5LdnKWzyxyB24O9VUYLr8ECavKhOlkyUyP1AIhAOfIlB60Iv7XN8G2wY/qA3DxkMqh9xrS/u5n/f4GGIhk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52900266,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVMiwCRA9TVsSAnZWagAAMvcP/2C2WADBUqqpE46oXlWV\nOK/2vUdceWDPK2bw4mtuA5l67LGEAGPNhVV1tvV0gcQxzAof/xjA0mvOz+9z\n+88iCbYjeNvOBjDetpRPzzzwR5Nejy4AbljGDGBVObTL+zxUaImFsM5Tlivn\nTzLzbZdrTWgv2PBkn0cvDgwikcMF/+HreQixmcv1g2VPJweHZjHYdnrna7OP\n169mg3tSJH34AkJ2tlbUXeFUhIZMyyirkx04IxIbUZAfMJfjX12Jy6/OVu1k\n5SdsMgiWHfufXD/9lG0Lv9v4jcihhh7GQWYYifyrBnFs0Bbi7LKLtsrR1MYW\n3paZ3Jy/g3JxhxJIZvh8lrYWLgGdsLq9Sm0XjgaqrMan7VlUSpaGGIlGroav\nlUnGSygihCZZCxMKxuNaD64h2ZyppsxslitaELJIWAhcw1XVHMRIhRPMIvC2\nONBARfX+tt51gBN/i/i8jJE9nmiGylYLlC8n3sZl1kcm+y+fKVW2X11iqlwi\ncQEWkwzdyoc8tG7fpm+MmBCrC5kIBVLfZ3JFCee9Xt2YuZaD+JzzbjQypP+P\n0wzVlhOBX83f9jV2KnY3cm7D8PYpnt/WQEv+4dTRSZVsnItx5VbCXerDNDUx\nAJON93ej9ugqFPU0jmHaePF+jg2nlKuYsAZjXdE45+b9JZyJthaz2brU6LX8\n9BUe\r\n=U4UF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"177713ef45f7714c91af79246b8b5e2b6bd59128","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200225_1582614703910_0.9137185795595426","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200226":{"name":"typescript","version":"3.9.0-dev.20200226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200226","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e033084ed97861fb1c87a444e0172b05e22db7c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200226.tgz","fileCount":169,"integrity":"sha512-IvsxGC/DfR3cUsTbcZzS/15zTEk7G3Wau+mjqwwo0jXmayMzPrRmN+N8rY/8ddxn3wHxuD/YG0gSrBam3rBkZg==","signatures":[{"sig":"MEUCIH+2CJma5X3eAfv9bBK4+Nenj8rv70qPGsS/ECFHniWlAiEAnpwy3i3JenhaupmSxf8siItDaJPhz8J41mdk4HoxMIQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52973118,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeVhogCRA9TVsSAnZWagAAHZwP/0oXKP1bpadedki6CM60\nFfjNkDtJgsJh7v9lIWy8Rbh4Yct69wAzRmozaJzKVdYNNkr3mhcQtvS6NRGV\nGIDmrolri46VZpfKJN79O40HZf+TI6r701Z/NHpwmRR3ny/ie+Yp/GvoG/8+\nnGEhPhof8ywbeRWvebRpV2BFDnGLD8dk7B1X1Ex/i/DySJJBDuRla8yC1zUg\naVpyxYsc54mSjQQ79/FUelqhYxCFE2T7w4+0mZHaCUNdEecRtR5BjPNNJI0L\n/F7dFqTPX2X7Mz2xA3qptWcCSw1LGo1km7DZv5Vt+SUlJc0mNxlb0yuOLuzU\ncM3SFykvurBXLn7X+G9aX5oDvUiGVcPW2IL0SoJ1uoIqmnIDv0+ykGZlVeXs\nA+bC78vNFRBkzk+GSz7HxzRUs4ZrwGi8edbbdVxMMaOKGMGE/gECAXKV0NXU\n/ooIVs5BktqsNpz0+SuSvtEdJNUfNItgtdBHkUsMdUdhclbl0pOkN6YVLUbh\nVI7y9ludPnvqY8BbYMOXsxsXl/e3/ljBkhhT5UIyvY3zbUDa5Uz4S1k4HvNG\nZIv5XL3sNjJeOD3HGq8z8ifqbg9fKo97sWcyD8rbkNONjQ2D37Be1tdJAtK7\novT/zgnXUeSgI0SGQtvq7J55LuHfziPnUvD0K5sA1bZSIWE/7Zv+nVfkkcHp\npLy1\r\n=EMYL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"56b6d0d6663b71588dea2cb5ccdd88ba904b0795","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200226_1582701086698_0.7039149657269455","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200227":{"name":"typescript","version":"3.9.0-dev.20200227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200227","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"94fea07ff80d690a0d2d96059dbc86519dd38ea3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200227.tgz","fileCount":169,"integrity":"sha512-4VmvXYBnLbdArITgsblKEth8LRolzcpPAwPy/S0VIfdg7CCF4AA0RfU7oUKDKcyuIPMHgRJF+DdeIZQVNPKXzA==","signatures":[{"sig":"MEYCIQCTyzQyLNiblGMP8xR02Uz4X+haJlc4oESUJJr7TyGhPwIhAMmLY8MPM84KiE93SMe99N986vflaqW0NEIw9IUejb9t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52991403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeV2uZCRA9TVsSAnZWagAAjZgP/1LzjwmqBpwvS8BTBV4N\nb8m0QzOp6qBVQO06S74NYXkW3/NVnOLhp56aEtcg3zaVzKxNBMsGZpi/pT8l\n7euhJWJShgHlO0lQS4I07BgirNk7j3TgFbYgz43BOMn4Q9wAM2gtJyNk4Vrb\nXarUf7OeqzlkmyDXvxlWTPvoZWJ985F9TLdi3Lz9g2M00ChCAk8rfv61duKP\nt3a1a271yrlhUpNKymIaGz0WJrG1Lzy3ntb+hUaJOLUAUdeUHiD9cUyMEoOc\n+fCDmoNo2usIdpRJ9pfNHL2AXiRpoPsZMxcTQkMd+Q44rMeaa0BeTWWdC82/\n+tIj2lEQ+PUKg47d7s52LzkbXCwrNu0oi8vaDOp7qBFAoGV2TiUFBn5/j5+t\npw7QjpUs4Tar7m9Lt50SzA8cbiaNas/HBlv1DFDLdr/mciJwMqldVYG6HLB7\ncHqsepo5WP9k3u63K65ZIYSrAZxQR8DYTHELfTl0f5mP8vJnGz/g2V6Guq/J\n7ixIzrxLreml9vgRc4gEC6oj8ouE5UJdww06Ndq/NelIn52LGKiLKv3NsNsh\niSoi6hTOOBGTXZSREZ8OtLzconyVihaanrxJKGa6AfQALufJS+Y96btHd12P\naZOvcWjEQeLpWI/YmUyfyu0Qji/8T63YG0R8ZAsBV0RRG/0DoA1+bG754f8Y\nuZ3X\r\n=hJOo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"60f50e22bb922e177d53ea315f7b3270d4abd8d1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200227_1582787480433_0.1934572169260984","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200228":{"name":"typescript","version":"3.9.0-dev.20200228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200228","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4ee2d2c74c2927dbbddd59418df20130a1e6512e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200228.tgz","fileCount":169,"integrity":"sha512-+MxL0qqXUsV3WhSLCP64YlhYiS5wlAJ7towVPY9o/zSbs7pX8EjrMh+zjUuZVkCpzB2hA+/EwGiilg9NcCSKpg==","signatures":[{"sig":"MEUCIE/yJBOjBJI2ASiO+lmg3RAgA/tvjXrLxrdPPtabkhtgAiEAkqJpUdXaafE4H8u8Ql5UJJ6eiPTDom48bIlavnawPpg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53092886,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWL0bCRA9TVsSAnZWagAAd00P/2DCG9vOlOjqXxHpiDUw\nK+FZqN9z9J27NhGmw1OvqrJ81axbNxcOObzxBpcxspDFF+w1/3iVdBUJxkuT\nKIE5VUrxTZID73jNvcilMnWUjwhEpChRa9I67oy5At4b2hXw9p20YT7nKCmB\nmWJdeX/HnBcdELo7QQETsTet6bxVCaRF+ztv0AHKndHmRWXkp3zoa4/DiGZ9\n5x8jgcQ5aW89tgsCPyLsW5lRC+DYEjIfY3m6FlMo5kMiO2z2+VaNKPTqAYC3\naJDp5qWrEMc+Q2hZd8sWaqjTeb1FSFDjeiFfBYggfa4jjICVz3hR8MAiAlZ2\nfjskMjnBLl0S5oUvxUKll8tBWcv2bhiY2XOzixu6hYWpNw6z3NL9ySoE5hpM\nu2m1rzoVQwncNxHIJG5UDZCzUkBl3xHMPJxHoQ8Y3IyaGIVym6i+wJPhg4G2\nFR7j78kz2VyjA9cM+o64WCqCk4Opo+MKqoCUVkpKeTYMl6E7SAoBVQ8xcBwa\nGEaBcg8YX5rX92Wwhy7Y0UFA8bmHHcTFqa+yHyfV+L4QQ53pZJn5xDKCRzf3\nCO5VMbgDbY/5Dv5KHx1RehoXvEFw9nM2jOjJolDPW//59oard68eNf4Z7D6C\na724hVFx5rPMPuOQnCAdqJwFsN6vldCRJOUCyEHg7/m5WCNCWxLDf7wFV+Pa\nGD3U\r\n=Hx4V\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"634d51431a98462001c0c5c739291fd935eb3074","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200228_1582873882946_0.45157449854717235","host":"s3://npm-registry-packages"}},"3.8.3":{"name":"typescript","version":"3.8.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.8.3","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"409eb8544ea0335711205869ec458ab109ee1061","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.8.3.tgz","fileCount":169,"integrity":"sha512-MYlEfn5VrLNsgudQTVJeNaQFUAI7DkhnOjdpAp4T+ku1TfQClewlbSuTVHiA+8skNBgaf02TL/kLOvig4y3G8w==","signatures":[{"sig":"MEQCICV7vn4HudtI5Bx8ugznkivfwSMu/Uap0hT86n2MBBSiAiAzxYYYNsHDnB6cEb7Ak5FqmP6Nw+CFgVc7ROeMyTBVXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52193654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWZDVCRA9TVsSAnZWagAAn+YP/jp/HWG29Q2m53Y7OreG\nCzUokuUqALSpAVLbhKefMHLiYxbvGszcifQEIeAQ4yl3tvISDb/c1EFb9isB\nR0GvLcHqFQYYOynIfNxJK99jIs5nkqB0+zQU7Y+hcq/EbAGR2bgu0BAzr9bF\neqHHPYVj29wKllLhgxW5bOhPMkIeyYzhYMV4Ki8jMwm3pGS73N0Z9mMTZBY+\nAW1i/JTgcpkc7cTbtPTxC9l09IGrfGoz3MMHAIH8zQMTV/bbWRXTyOqXYeem\njtl4DcBXF2+C23FSvkmEXWfLzT4m+44NxqEDTy1uLkH66SvFx9kGLL3Arl3K\nKcJnq04s6NpSgDtHs/xJKxJJSm6Tk7JwGlsdJnKtyzIwjgnHjKzQg9BVyuwq\nuJ3b2v72+VbIm1sW1QLlfOS+pOqz3wzy1S6/C2byw/U2gDZ630sTmVvqcZcx\nX+Y3snAQPeGTFZ9tvGYr+bxii2YRXE9+mnzoq3yzozH1gOiiVc/lSlVHpdEN\nAo6lW5rnNZmPmjyOqz57YJkRNygqd0m9JaGaT6b63b7WK9njMm8q4qufP3GN\nqKRajIuf99XarHR46ydGnFLqalcP1VGQZRGAxmyVotN3kQbeMtSH9tYQat7k\neKCJZOhZZShg/g64usmWlIKO+EQoHVtqS1Pm189sBFndTAdyyWpNLVaT+Fso\nBb4F\r\n=+u21\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.8.3_1582928084269_0.45330978114671483","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200229":{"name":"typescript","version":"3.9.0-dev.20200229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200229","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"45f0821d5c420a4c7d6d894c64531e1301dfa9bd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200229.tgz","fileCount":169,"integrity":"sha512-DtSLzxoiUir0qRc3+JJBxiAe6NvTEM3uDxnPxVWJU6sRDhUi8Ssx6DBjGWCZAQJlLk5A+jk2ptf3JvvZrQlLNQ==","signatures":[{"sig":"MEUCIENNEX/XNbNkWZ/4wyFaHQysPr72/taOb86mkmp4cL3lAiEAlaerGSN+nSahT/perLm7s1m2bkwJLDjyUnxEV6rUF5o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53160002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWg69CRA9TVsSAnZWagAAbwAP/0PFVjzbEWBp3/QCMV4M\nVFhumwt0PzAQCybuF9fX9ttLnhRzpgLuCKQ2BmzCJRBp/Zl4uZCaNHrpiWuD\nOdWNl2V+wyITBZR5JI8JLmafvQ/mSEbInrmgLIUNnAdt1NubvPUXlKls0ay5\nn8yqbcLfmcAODIRFniEUjyVD19F3yJL038SpGL1Imhjqx6vbvmO0fyp/uTl1\nsWVcA6XXIsHwo62dxDl2ScBRCqcljdz4QInXsxBPDuhFHi1IXwu3vvd8IBTL\n7Cgx2K+RQvKfMv4qUFemnHOX4wP5Z+zQjqednogKjOVKZ+tdC434qadFYhNr\n2ZyA7k5sZkDRgL6pfksmQOHCLOQmbRyzgIpfBTjAgtM2boaEMKiW/E/ZHW7H\n+Q8EEvHP4NUJRT1p6hUsgTWdOGPzL8xivvaCsWKQKSqMAnNUWWi2FwKRONsd\nZ809ZwgBetIEbcD+K1FFAGq6M7Z4Qqp1d2ObLHOlwEoGcyXGeOTGW2BpYhC5\n9OryDOJcDSYw/pjXwOAJ+HoCoEfE+JBt1mvAxBlZCXGSs+UvlJ+wQUSfYWde\noEdJ5XCuA192tUxuYZaijaJtUJlfR40TvOdIP8e+cmCTvDVsJq1SsMz43djA\nWGl1iGcCnJZ6LWrJXuaiG1oPjmEQcwg2HDLjp+VJ6nKHR/NeQwsqfTR68dSp\nEMT8\r\n=3+So\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4e25aedb7b89d02c6606ed354c6e42378d69c143","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200229_1582960317199_0.29771692941401584","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200303":{"name":"typescript","version":"3.9.0-dev.20200303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200303","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3bd95c71ef25b434659e03046e26573dc45d1851","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200303.tgz","fileCount":169,"integrity":"sha512-Tw8o7nNMWUI1g6AGJKbpBx2R3jYX6rlpEycRHC+xiBAhPyM3AWldQ5No8VJHzi9zdZnbU4PCURpOAgH9eKICtQ==","signatures":[{"sig":"MEQCIAVEOHcT4yXgGLrI1SEOaB6SFHFQcXc31cLxQUjZIombAiBzj5HB9uLXOMA/2UXcvhlM0H6zSehBV9auM4HFdyMA8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53157735,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXgMZCRA9TVsSAnZWagAA1s0QAJXAQzOYIDqdRxqn5V2d\nILesOVcXIQ9u9KUzzfXljqs+FpjisAJgu20WbGQqgZcQUWimxHB8KGtTNMsn\nHyt0pgjpQ5XLYPb3JQYUFEwPIwF4t++ct92LgwNWRwPvrenp6axTORFtthiQ\nzu4hyuxPk8BHfeqO9m2w4wehP/2Mv7AKe/+iiFWt/10VzflFtf2Cz1a8PLSX\nQ6KWbrVF7Ss5OuDJe3e6EFUley9LJFa4CMAC2ayR8qvczAxR7sJon74nqHkJ\nUAPHMqsDpUxZBV2ebwI1N1ZrfzSWxCx93FmEPwBNMTT+y4KitXIMKKy2dnUH\ntha6TWdEFba5MfJSFf/z9lAalM1d1XOJxT+VX15KPNMOi2d+KJpoisi+5YYz\nYLHd6RAGFZz8AoRhniWguFjw9Dth4tAnC26GiiejAFFmbxgu+xwl7IFUOnqV\nIDbXY4NOBMtXftAGRT7e92O9YSZg+cF8iXSkJ6oaL3z0zkP8otGuTPYBhQJ2\nKqQgZu54rXSbC8YgdymfvgF//XoicAlxvoizDaW5qFBOmnjiQuQD63vGz/Oe\nUYoMCH8Rp7NCkE2ZOfPFtcBT+ZlqgO5V3ElrBE4uqJwoen0tuMRSZkliyPLu\nt9/Dw3kbVTG2//h9yR/35C9dZ3BRaIAYcXxc2ZMupLWhNLWBE1M4UhJNZHJS\nWWH1\r\n=9FIP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dd6811fbe37f05a2b79427112a919d75a7417176","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200303_1583219480095_0.6500427185131485","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200304":{"name":"typescript","version":"3.9.0-dev.20200304","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200304","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3cc35357eff29dc5604b4fa56d6597e13daf86ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200304.tgz","fileCount":169,"integrity":"sha512-eUip/GgJmjp4qtHiJDxVhE5SDDiPzBUg7KBAFUgb7HgL/tv10JAHej7fnS1i+7xrq1eDtbkJyPaYOVnhL9db7Q==","signatures":[{"sig":"MEYCIQCu5U9aNndq3k/j6TOWOJXJpYLntJGq9AWr52VCRQajMgIhAJAI6GV0TXcdVpfD2LoZfFtjkYe0COrW8LvuU9D7E4Z6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53158192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeX1RJCRA9TVsSAnZWagAA/yYP/0hDKsPbFjSgC3NtWmW3\nwo/ll7nRaMPRRpLO/biFL5m5CzYJJshkxRr7c8lOSmZ6Bjd6E1PjDu8vcPt3\ncle0SuSsl7foHvHCBjAxB9x4C7Cy1McJbYL2FMggc2SxijbnYCaArZruu+HF\nkIY4oq1wVN4t9xcLZo+lGVTZ+Nte+inJFgyhJoDTglI+ZCtYZ/Zc4FMEIbKL\nial8amk5YBMvd+bSzQ/u/ywxMeVHg7umTNWUxT3KhdoGayTzj6W/D81EGlWj\nv0YKlxbksn4kc2AMTXfoWJb9PC6eETh3iN45/8/Q0N3wUpEWh8MTJi/amWh4\nRdO/G36BsjVDON4NaKU6R/0ZUJwFgz+196R4DA1TItT0YTtiF0FFay3V2kU6\nvCrX5RhD+hcUqwBdkxKJgmDLBRUlv1GVxv0EA03dvwJ+2Jgw9iH7YR5pKcRA\nCyGPGV8l241GEGlgRM7N49nIB6eqssKzByN1S6JE1+++q4fTp3GFGM+kCF+i\nRfbKb8JngqPo/EWzoFH9gfSPOUOBFjhEdyplTkRA62klPTy/RFYkzp1nGPfZ\n66Y2fP94B+WCmrZxmK3EK2nspV1AkorA1AGRqynvhGhp/43AvGltjU5M4jxW\n9rq0dHyxicPQJniL10DrokAFV1t6CTxksY7NuZKC+BVNIV0UAMXsCeLxcOMr\nL+jv\r\n=TRg/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7a82b74983589ef1433adc965117dfb54fc26bfd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200304_1583305798232_0.0588643750109612","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200305":{"name":"typescript","version":"3.9.0-dev.20200305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200305","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8704a17f5f2ffd75ccceb1640f3817e91b9ab9e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200305.tgz","fileCount":170,"integrity":"sha512-O24m5gu1sfYsDWIgWcA2TI2+8Ou1whbjSe9OxSPvyelJB/Vv1SeOo3IGkoudIuvt3SM/Nf34+6HDTy+dga26pA==","signatures":[{"sig":"MEQCIGQ0kenb1pTkXs06+9FzaiqMOBPe4Dx5wprCCPuWAS0yAiBbchXsd1V1OupYcPB8pVtvbUvHSiTn8SImawVL61ouxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53163369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeYKY8CRA9TVsSAnZWagAA24IP/jMTTFw1vr/2UvKkGJw9\nhMshEC3SpGIv2HCJQ8KW3fSz4pndFWsR7IfvcerTbLh3HxMC4+pGK6uLuv99\n8FD4MdQxtemd0dCfNevQxELM6BhCbo0EI2YYmlIzPjgjVz/V0A+bFMs2awMq\nl8PdMIIC00628wScwFCl04jbhTzaDwzaqlllLWeM2FPUb5ytDZiZNsgZ+2cR\nxJp5CYVGF9Bp73TDwVCdZFltJJg7g2D27zkVdBrn7EBl3Q/b9+WZD8hipRhj\n3q4nN6IO+gMsUfQxIFHb+8i7uOIMTHMPsLllsvOWEXzFLN1dfsYP11THiTEl\n14J7eGNAr6WExzSY2uYTIgJjOF2IJx1SQAl9S+wT8vsbP9+bWtEsexhuVlZT\n/6HBApcvixwFMHN1wGuDJIUYBnquMdBsqy/PX1L/6E30KuMlVWI2JB8/xLJp\n9e3gUnI+hcB/P21QMA+Ijj5yDMaSayUkrxkHizVKrsMm9XJi0qkArsHuq40i\n8aHyqU05oVAEcXkity1FYgUMS/i/psxSR3OSXMR6n4IASKhL/PXe5VULL8mE\nuqlRPpBhrBoTshjWp3s7Tj9V31q5UCGXs+BkAXwyPxWgKbFGVZH/xLpWHmmh\nuzxcOvDppb1Xot7M0+MA+Qkti5Cs+ES+EloUl52x8cMIhsWgeGbgKkFGc6yy\n2UHL\r\n=SrVw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0e8540b1860a21753763a30b22aeff4391130707","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200305_1583392316042_0.6079922917139968","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200306":{"name":"typescript","version":"3.9.0-dev.20200306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200306","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b6ad2d66eed60fbf32176c6a2c7d5b175ddb377d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200306.tgz","fileCount":170,"integrity":"sha512-JkFUyTm70yUoyJ1uXnIQMp+PL/8D+oHOo9P9ByIknzGERSPNPP08yefNpu8DeleFKhbX3siyIvYLekKS/p2m7g==","signatures":[{"sig":"MEUCIQCjkaqq8dmRWJXWG0AjG7kkdfdiLBC7olPAzNtPt8JqnQIgKXuTwoSv8BaJ6WfV4/2/CkwQNijQJf9Gh/BOtbJCvio=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53194629,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeYfgMCRA9TVsSAnZWagAAJ7YP/12unwesTjl256xPLwiM\nFBaYVx64RsZztZAk+ffBBlRQpsoUs4xdPENn4ekp8DzyuEoG1iOUDkMF+L6J\no7qjyP9MfqrpwGmLH68cZ9kb67mFkvtIwkn8A5rWuS78hnh90ntRs/TDyod5\nAeAXLYFwdIZoTRPL7C5ybvbmQgn7ybiKTDetAFmJ5zTe1sSfNXnVhRAmTAtk\nyHg0LjDt8jbq2GMN7wck0IF0xj4DwRU9NqEOp458OWOhlF38ksCCWHTvDUIN\nc3gLxkin3oVWkY5Ie0I1FvxYdoFmKPOQmbRFlpRWv8GfKd0OkOezyV1C9V7F\nfG70+9OavMPL5DL7ZLM64w5EoqZj6Q2YDGYwCYNT1v891YsMFU8DMCODa0Of\ntx6X5yU+WMjUy3xhHamDq/rdSjb/YTaSWazHyccILfXgluRH0sa81kQjpck4\ntXps3F2RIFU3sA11oPIGbtCoLkpZUt04r+IQXPso6Wnf9o1IOlzwDBcrNK90\nzXzLBe2oy7IaHDOUjmUSc55MS65TKeknjYN6CIckaCWvoEbgB2vAtsiVnTu3\nRAxd9ID8rPslzKIjfjihn2koy1ZNBiDSBV5Trs2yGlQSykTiZj7eGWB3t8E/\nR+HzmeDhlkxXNp1o1twIOumo1tNwLfd3oqzLxmXU9Y7YvOzVQIdarffu+U5X\ntx7R\r\n=Jtdn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"931e33f194049f7f56eab90fe89b5c9acd100dd1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200306_1583478795766_0.9105648008692746","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200308":{"name":"typescript","version":"3.9.0-dev.20200308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200308","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"df4b140b7d0d07464b858e8ccc199ba29a0f9393","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200308.tgz","fileCount":170,"integrity":"sha512-xL7yV4VFYRa+az3MHNg9gsz/UmJf39LQ7O1ijXjFx19RnW6YzOCSkyOciN47VMU2lKsvQ7OAT5fAUrfDB0Th0Q==","signatures":[{"sig":"MEQCIAv3128kiGN9z2kEGpxlBaaABJDXFZnrBIpb/PjI+aHBAiBB8le+4m50QlW5r+y2euYJ1vDFS7kdj0zo24mz726ZPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53195901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeZJsYCRA9TVsSAnZWagAAiuIQAIHEZ91h5z9Hxwl+pQGP\n2Nrj2f8s98eAvDVV/kSV1YbHs5C0DxA20yfqU+L9SVxHC9eIlSkLLvfwdz8Z\noJ2cVLxnu36mVgPLJrKWVA7qwRpfExw/4Zen7e3CtBAXBc9J2bJ8EVP5ocYH\njskyBF77btl3TQsHNUMdd9U6UtZaSqcVFRLXbY3BUXr5EDZ6yZGJQAJ3s09+\n1bRD0O2qFWSdYDm+VI6dfKNw/wI7XdLqKA/HYoEK2imuEJhAHad5rYaL7pOp\n6mPHct2BIpGQlJFpJn9pG+B42Bo0fr0fzmltoxtuRhrszuX3b298oNbfZ6Up\n3WnVSrm1YPM5R2pjBWhpPva9F2/lI9X/jTHBlT85HRhrlNZnoTp4VJhE4IG+\nJYWs+eK3dcPqu4NfRp39ISO9/P5V6Aaa/+LInKuyOzieR7zHenwS/Ucn6YNl\nEOMapcGj4vEFaTzA/1G1iz7sWhYkwtsLqMrW8EK16w6NMsRL7tFfilIHNaJe\nskX6mNkxyQyaM70WcZGENLEEv/jy3nNOxlXpeYzdLPTIf2cpn9VJrMIJmlsW\nf5KkMGGml6PzVTUfGRzq9gPYQr4iYpBwH1+dIHLOGLgweWSC+uEE9uCSEQtb\ncau1GekMF7sR3xtBsDbjy/ONZf1P3bT8p6gv/fUqKwL86xc9/URilQf5nlu+\nibDy\r\n=wgF8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8d63a7a842c6322211b4e125c25bacf0941928b9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200308_1583651607809_0.370060061127391","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200309":{"name":"typescript","version":"3.9.0-dev.20200309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200309","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7d5a30e26ad29770308b0d7fa92cd0a65f754de4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200309.tgz","fileCount":170,"integrity":"sha512-kc//bcyVqdq8Y51Xc8/954Uk/Rtxo3KF6RHryoOFHT+eMRVUexQaz9buwLWzjwIcAI+y+az/cOjwJB6CqLqeEg==","signatures":[{"sig":"MEQCICCCdW1TNE7HNaKaMOwxCC/YOy391YpK0j0BdLLx3EP2AiA7M5OErBH4r4TpLww7vXZaO71s9h1137MN4AoHP/iJVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53195901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeZexcCRA9TVsSAnZWagAAFFYP/jRfgKJ6M07hLoKkQ/KR\n+fQKXiMTgmIekRlXj8FfnFOKYBJYu9huhn/yfcHRecAJtnDaxwQeYNBfi7TD\nCD0IlLak/uXUGykGVIgkzUy849OqDC2+KhZKIHGMmvnfeL+EqLeQlKpiyzRv\nrudZ/3+L38PUciJtM0qJJU7UgPV1m46diF44Yb0zZsA+sDvyp7y5TRnHTQqk\nHE3qhvt8dnHY1oi/yVJZuE5xTkVwNQK/NAnCeU8wCUGrnZM7rf+BRsiGw2CX\nt7IfdnR2iDl2gZmKoCjNlGnVgq+oHlfUH5RbXgbT0GdRR4qOFDlTiqGsmlUV\nKGwHRj4dOlcPUAL0n7Dv2bgkSJtrnfLLBa9K8C/lJynv/++RVhCxp+nukitT\nI1/SsRa8vCFZjFBUUAVvhXIjkaHaBsYByIgR1wJFZreDRM2SYDRV8g2UO5Cr\niCCnMewDBvoJyBQGbDlqlbNg/c3bSQdU+DV3vOEX9TLf2YOYdFPhVA3Blo9N\nJifbyMXUhzlEv2CaD/Z1Djgobfnj+J4t8ZVB3cz/zdSfXfAwGJEwRDqyloA5\n0iPr9oeQBJZt7g9gFQfkZNCkj35Z2Q0kDdaj3XdX6YG7lmfxhfb9xbnO9Qts\n5jO520sJBPTnoaIZWFpWf5hOkTXBwyYCJgRbVEx8SwGLw+0Ij5h+nUN4/r8O\nmheS\r\n=LE5M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8d63a7a842c6322211b4e125c25bacf0941928b9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200309_1583737948140_0.1285878201265822","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200310":{"name":"typescript","version":"3.9.0-dev.20200310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200310","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c04d143899e5d7d7d67ed354553220502a358080","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200310.tgz","fileCount":170,"integrity":"sha512-C85KSOKyvEn8xqhFF3/WYH/32NaGfevO3jSd/tc/YaYWsNJb9b78oIRW1v4mwodR1/BbJ9tn7InhH5zAlos+1Q==","signatures":[{"sig":"MEUCIQCpwY/KhxE3L61BIAiXtPGkOIiAQYv56wXzcecZrjbu1wIgSshaO+qI3RRIefcBRAR3yIMmfe8Yy8RW3TBmvfFamks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53194975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeZz3jCRA9TVsSAnZWagAAYb0P/2mtmqbu9MBviVUeEhRZ\nXSJcYKbeDqpgooHQ5U+zPQs546MpmSQx/NOhiOVuKdYIHd/xKp9Rb4mo0vU6\n08vaXEbefZWFtiWSBUaFBvHAG+5kYr7Hgq/s0nhSE1IYs8AVhHdnKEUvwVxA\nCV0rVVqrb60SoH7ojiGSBc605DL5Neq/2hpjZHevRJEF4cL1BCApbNeQCWrq\nKnvmVKFC+zCZxoy7DhUz2tz2h4B2ocAAm5lIG8fyU/ETUWiUT0qt8fxvmP4M\nnVCk+AXoyOmCiaLgwQZ0F1v0cYIZoFXjOIHbQRgAkrnqZzyCwwMMj4Du8x5/\n9+mAbxapKIBFajXXipk/7tFf1iFLQuLasz34Q7OLULnWQhcDZ1zZbQoVQre3\nDHm/uua7ueHedQDVGF4ZQq5XTLYbAwMMl04UB5mc27ZQImJJnHkJy922/Sdv\nkY7TR9swN6fCK4w09aSo/n7QdMMgscDoi2Zel048PBRS3AriRhZ2VqhGGg+t\nQ0Vn5YtVfTT9Ni8lw86uznguvfNVd9x2XX6b+WieslpuEzzyr7EjLGuF9eMZ\nm+in7C+3ljzXa7cU3TKv7Tty/PhMrTAf2aPmXPIqy+N/GSDACfQ2jJF8PcID\nMVR4AHbdBNmrWdvuNJ7TV9sf41F5QvDBOVQ6iM/cK2cic3gJi8frLuP8+Eu7\nwjpi\r\n=cVGB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e68524a8d2f26efdcc123ff58aa42bf8f6a81bf5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200310_1583824354626_0.3272029238715055","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200311":{"name":"typescript","version":"3.9.0-dev.20200311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200311","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c05ae00878236d200c16ecbe405903d9b9397277","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200311.tgz","fileCount":170,"integrity":"sha512-2twEwNeBtwbpveiu19cyXa0RuvU3p6ex7fAaSTfSSFfYDZu71jESi9oDylasb96kfPNz7CNYdAKbhrZZmPoLNA==","signatures":[{"sig":"MEUCIQC4Y9mMwUyDVCFVhnDFVrC0E/VTmQ/8GGUzydOkGuQ2HgIgOQpYgJ0hLRvBWPdRskfDAQO95RB+uxf4ySiLHPYx1c0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53195029,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeaI9mCRA9TVsSAnZWagAAIhoP/iPn9qDiSgrRfhIEhV9u\n5bwKXYwZcjdvYcLFqiNv0ZQOTU9qOSDHSSmYChlbpnfhbRHrVxnq/fig+IV9\nfrZSo7S1PAXpkmczz3I53NRZ2RWdhoB/0vTpF0xVjDqXQ9lCpO6IkOw+MCnK\nRvTdcakkiYR4les0o5C+6ptI1Rm4UklEN3MMUGWfyQhnAS6zuY8v8OewA8EU\ntfk3wKwZzSFYrSEQUu9Qo1UApX+ip1zKauAFqZDFJ3YM1qdNGBonDHqjHyHR\njLJS9yq44Vc66SNvzqQk3UPO4RqibtaikDCzfSEsEWLGzC2AxWfdtu97Z1aZ\nxXwUnC1m8DZxxMcMBvhIYlP81osOohQSKbSGjQk+1WXaTpUMHHNeqQIcZdij\nhDEv73a3Hfubi7tQ4wbgjtOiFv4SkxHi765hlfjUQP5T86eq4i29isiYy5Gn\nCNjTHXCWQB3hLyknROaBvB3E1WEAjfQX8CobLTVCMtfU0ga2Szw4GB0YH1Uw\nW9iYINf/J8F3zKK0kSHDxabxeB3MVkGDtdnULn+e0iSrN/H05Jt6Q6R9NyC/\nhWG7QlzuV60d75QEXyE1vIEqanRfdHZi+vD7qh5eMmCsTlMshR4hGm2vIJg0\nbZpkUcOIIHb/A+Hpy3F1GB9DW6SlTsL63gN6Wxq2AmmIBOWbKNNULhQmclpV\nmJpy\r\n=NeuF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6a67cc700532a169861bb10b7dec1d831645d8ab","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200311_1583910757978_0.8840325734133572","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200312":{"name":"typescript","version":"3.9.0-dev.20200312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200312","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fe430c1f87392715803e90f721b2163690dbe69b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200312.tgz","fileCount":171,"integrity":"sha512-/rH+NulC5s46QN5vb8GtbF879luy/ynQSy0OHltG3ShEQ68QRaOU601YBZpNjWLbrdNV1AyNd3kRehPYwgOlSw==","signatures":[{"sig":"MEUCIQDNrH81gQ+bRCow0qi+PGgVH8HrwftUoHThPZcu/EyysAIgdwghBJRNTOCrdzr82nsPBGNaw3wslGpxbyxLmZjlqmc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53228443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeaeDfCRA9TVsSAnZWagAAL7QP/2OSRvW5c0729I3h2U3M\nidkzMRMStK4JX873Rqyget2izGpeHinpcBA5ESpLo+TJECps6gJT83xOY9i0\nyAiyliwLzy83PrWGdVcp/FJ3M8sObyGGIPEvV33QTGiCUtFU0J+GkYyu1oI5\nAnIZxfFNvQU3MxK8FkJWN0lccg0p9BSaibjIRniAfW3vV1biUPH/qh5Dk1+U\nUchodABXWXdjUi8HeQshe9JWCauCKRppEv5BD8LNRIaVa9Ez4aO21RNX1b3h\nL9shCTufMIuHiyd6nVjemXuSLt5IKkgwLNDBq9Q4V2iKgCL0qyVocFSmo3AX\njdT98lS0xtw9IJs+FBdHAP8Plu6+LfC3prkZ9IvXwjZwan1FrvkuWEa+VCrn\nm2ikXgH8K612Wy4LO2Q1Q0vVsDJ6LSFaENFA3b59raZbz84wtOYtQTxEOhmY\nRqUBVM53aZ+oMgL0KCHq2m8o2SjPRxZxeQ2IkicHB/8Si4sU025H9+PuTquB\nRMXpLs6PSSOchXT72JTQQuo4XCCoc5DEqjOsvxqR4BM7nVs6HvQ8PkoGQmC6\nRVjFBeQxD0wLoCVhtJqZkZWELK5EHHdlYT0gs02KAQHvWoWAwKZs9woV/rBL\nkGbPRMu+ldvuOGQwfFWTTS3hMvgR/oclNhO7kgGO6+xyFBevAPmjoWd+jA6V\n3N6d\r\n=UeO7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9e97b00ca12ec999f89fa2886ee769ce3699ab10","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200312_1583997150160_0.2876753456768206","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200313":{"name":"typescript","version":"3.9.0-dev.20200313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200313","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f66aeb2c08268f2b1fc6d1d96e15554c6e7ed29b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200313.tgz","fileCount":171,"integrity":"sha512-85/IJPm1nEUbQDxK3aN+svIy4X3kPcAipihB3704NY1HXncJ1daNLJW1OktOacb8tD/URpIGs9nMgbUrKvglGg==","signatures":[{"sig":"MEUCIEhs/kv/PMyS3+0Hc8RG5KNVy4VbeWMvnu9dJg1pA2G5AiEAtVdKrix+pKLuAXZ08nugYep9Da8oVR9dHBOXAmQEH34=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53283371,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeazH/CRA9TVsSAnZWagAAdQ4P/0/F6jJyzhWQaBLmcP74\n4/6neIfaIH/RhBH79SSqpDgGNLV/S7ItY9ODs8zguRvuCMZTIRjerbtvKqO9\nzlf+AVFHCIKQ6WBMOCgkJo4O3N23efWR75tdfkGcYeCSPNabacRqoZ30aVW2\n2TLlBzXx0h78kru/0gBRDQM9LhyqCIY0bUGxcHFmNIjAtySUx6lW7Korcdyr\nt1qvlrVBIMcNnJ4MT4eC20cljMble5CRIFSKyAF7e1oA5qpyceDHgoY4XhQW\nBYhNT49jc6Ch9VUrnIvmXoZfHORZPiswk7bX0CfUhbxmxPtQC7UXh/BTylEc\nwr3ocmtd9lU3GyBhfdo9DE533Gj5MWVvkHWW8mVM1F4MTcunaPyH2GBMjOTZ\nb7ZMzOGTHRPx6ZP4QTyqqmIcSxd1cIQQs/nWyZsfznF4GjCoIO/cVSmSEz8k\nzjwUgPjuKz70uiANlT0oLXL8rpRtPQc4hrMomleq2MG9lqgs52R4UvZVoVud\n6UHEEXggY/G+8et6hUFDoCHCH74ZmnshoK7XDv2LsJnMHpw2BkQmw3vbTb7g\ne+CvnJKNDfNaLMEyLUSa3bwE6XVFAHy0SZg9zz7iWZc7dNI4GdwnMD2bAAyz\ntnQbbJ+e9BU08vFNEqm/PgVDxwde534/N+/ANCbwGnkfVmmZKe7KTTnd93dV\nEpQY\r\n=bnfK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eaeee9cc31bdc3a16f982a2e7b784573c977fdfa","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200313_1584083455035_0.3016576211948432","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200314":{"name":"typescript","version":"3.9.0-dev.20200314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200314","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"457bbe19984d0f7abad4f6fbf56fe210004ce47c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200314.tgz","fileCount":171,"integrity":"sha512-S5nKZbqQDSV3b2NPs/qDG47c8oX9VLRDaxd94cKnwyM9J6cj8IboGwl0ndNzhD/mnAeefVdH/cfFqE9AJB9WdQ==","signatures":[{"sig":"MEYCIQDmZeRx80qnEkllv9XuVgTM4eAIvntw2aCLaSBOoHEOIgIhAIJRcHbPZT4JIegJ6Rt7R3r5GGIWfHSF/CDwi997od8b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53328286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebIQfCRA9TVsSAnZWagAAYmMP/if976Xvb3c/dBwwHFLl\n23q0yW3eYS+U0yQYWtCAC/2DMQxmiFoitEDFcVzPZIGEyo2kz4103ZYu6XGM\nBbKuq6waChsL0OzAT80ld5WUQzBkbfjFbbWBjvxOnaK6iBdzgETV2lxDxQTF\nOpSZINDPvc8Y1g2CWKS9PmhEElqSKI00ulxQOX7nlO7X+Mkl+15K7fCAbD15\nOTq4ZkShIGez+MLrVzhxiO+Xb9v7YPaw2Lk243NcjJXlygtJY0qA6KSAVEMO\niXW4oSPPjqzWDeaWCHHNf32z1s8zGuRonlyBFr9nq4lJwQ4LdlJjgIp3ttFb\nxc51iAXxuIiRfDUpQyFrlmafuHFsMbqUEmLXU0PoY+6wlQHojs+imnNBcR7T\ni4bRNheQK1TyrtVaAPiiGbMibwmfw5fOikrM3wbC9f6p5/RTllMKpNg5TOOP\nVSToWco6V0iqPnyKth6lyvYe1EBP8C/bp8uJWp/QpVOyo5PZTrcTwl3Kk02d\nL9DhG+MvWdxeQbLo9jHMLBFIn2qY5cYX8e9uaCTqgImdBTPXB2fq22OJmVV4\naAW/lo+24C3oQK2MalgCu86zQX0iWpDJHeOMDNTVPwJL8hEwK3oRSo0wrCsW\nFJJyPZxX1EIfN5GG1ssPo2AbXuiL+CgQl2hBTrdvaYdYBH+27BEy1D1uN8u+\n2hxC\r\n=A296\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ad8d3d90a5a8cc6a3b088a7b717e002d755e89f3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200314_1584170014458_0.09023898303558231","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200315":{"name":"typescript","version":"3.9.0-dev.20200315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200315","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"16f2ed2fb14322ad139be82978d1bb0dd2406cea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200315.tgz","fileCount":171,"integrity":"sha512-4QmC3VxIPw692ntDrT4KNoqUZGCwV5zy7/jhIxcBwenzCZiWfm18nSpnK2vvpBycSPW2vKblOPcZENAtaRXGQQ==","signatures":[{"sig":"MEQCICkN6PLb7neCrsEYmnryL6tNchRkLdL8MxCy/OWLDOuOAiBB41ldztAXydEbNZSJ7CDy+GYIIXyPzO09LWLdAzobWQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53329660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebdV+CRA9TVsSAnZWagAAwlgP/0h2WLKZeVNcEhGXrIoG\ngVq3gcsrVJLAlAo4MhPkCQsh8bBwTm1LYp4UQYPhHUvOexjr372a3yT7AEI/\nCAbaqdCZlaf0g4afRHCotM/itbyHqBr3Cd/nv3jyjrI2Brvv5lckJedPxUax\nPKpMcdpb77kX2TAPtYJrt4qRhVpN8LEcLvQsTW0Znhn3DDwlZq+BJ8Zw45cC\nkM9O3NlyvLmkquvGfacD/aAcKi7Ta5PhotK+aRUNAdz6wQCs2I5BhMjiUje2\nw2TA+z/3PCuHsHJXUprjGnq4ba0/n8JOZeMeLWmxg/Kp2PELBYeSDp91aaVj\ndQuwy0iuJd88J2Y8EaPsXpWQemBlCQFfE+Qg/S/CF314kOEii4DBVlql9DX5\nQlLa8JDVqhV7jls1PhBtTzOKTVy/uEAMSSAhtWStB3dvqKvNzh6JmpgZ+lXU\nA3xnLFLkjoXQJMZ1F+cffiPmvfiiKSZMueszeJBNt/Hqkg5sopTPtyZWPMIc\nrR2PdYzUOQn8ZDRXqt0uJsHPQ4/SsLE761yTCJ6xDo1BtGyQabHpX3J2BrLq\nHLj7dLugBHxy/d58AJX6Ehcfp7t95wCMTHb/zC1DiLcNNoEEe5u6IvLRt7np\n+94+VZBjtdYOl/glBk4T6nzpHIs7EvlzK8LgBIWDbrOKInUGVw0J1DL/YAeQ\n82NZ\r\n=YRmR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b8baf4804370a4405f7f123db5bbb4530297982b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200315_1584256381765_0.7166213638007344","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200316":{"name":"typescript","version":"3.9.0-dev.20200316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200316","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7cbb2fa2eedf58eea27b3250ab38674790ccf999","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200316.tgz","fileCount":171,"integrity":"sha512-MM67isAuvHM4hwfHR4K9NikB7MFD9RjISB5cXhtKmjkpMFO0QNzFmFq061VmsJqoRVpG9N2KE+cm6BJ9dIjrtQ==","signatures":[{"sig":"MEUCICDQwBvRTNGtzmb8v9cyeb1kh7A0yUN6IERANPtLyY5zAiEAkGjRfNEP4QTW6EIPioHR5np2HSq/katQzwx/2ocfgjs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53329660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebyarCRA9TVsSAnZWagAAi/kP/2Vl89EwR538DoP6GaDJ\ntP0Qc8CqNJNX3kCgYVgu8ZH7nDlDOrY1cfwlomVhbu3kAqybDEC7N2GStfZo\neXQQNETDbgOey4174EnFveHvhs6PGNj382pgch3zFc2yFnbjgc212SoWnDO7\nlo7MlSFP1ANKq/UX+H775Eq/BqdFsw4N3ToM9vSxE4wH5Zou8uxk3b+swiuD\nBbc9B0+j3JIizfeWRQZFqcyu3CnIlNrD9hi++Ze3K4rc02M/ffuo1Xf84QMU\nc9UpnBWoN1BxpQjnQNxHYNFGru2yaPZJboeKYAckpoqGV0FDevZ+E7tGXHq8\nNNhMCYIn0rprcAlxrMrEvG9cXcFq1rPxE3pE1vpTSykih6OUEnAIEMxqw5Ed\njbyatTBchl8+mLpgcSSuY9dZuMtWLNypI06olAXli4vbDt9vIDk+71F/M19P\nmSoO6vB1KXGYCog+uBwopXAwne9KM4gAuDmnGluUtGFOJhDwptW30tQ43tIW\nMGb8Okju4uogFAzdrscy8XY5h6DFDpM0oiKv0jSKBNIG4WQd7oxTf0xz/H5N\nMjCjl8oLqRjxzpr7CLA16AKmplk0AY6zEO5flQZwkClnNimIBGx4nYFHEogh\nc4Xd0WSS9VGyq9TE+daQw1oyALotrp5NaW2DKs18VrlYqz0GzhGIddC/IeLI\nMaH+\r\n=7zYJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b8baf4804370a4405f7f123db5bbb4530297982b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200316_1584342698010_0.8153826072210544","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200317":{"name":"typescript","version":"3.9.0-dev.20200317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200317","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5013deadb76eedc40d305438922e7f17cb34548b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200317.tgz","fileCount":171,"integrity":"sha512-Qk0HeL1zqWEICK2soys8CzhNewpYLnfM4reemw6SXNOLPgwTiWFIH59a7ehf4ViUkNtf7Su8OV4KVaTG8XIxoA==","signatures":[{"sig":"MEUCIQDe32DPFPIrG2i1xRNnkN4kJ9l/yIy/3D/OMBzhHLmdBgIgFnjcwnkGACSbi7/F96qPqVfum3J1/QEPIIRcmnK9BUU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53352977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecHhBCRA9TVsSAnZWagAA1XgP/3DLLALztHy2dC4JvLcn\ncVxvnNOx7KI4JXQGyoUhgW7lyyJBR1aRhr92Q2UCKpvGfMyfyaD9La2Kf2wY\nr/r0X71t3Hmb3M7zI4Ymwh2WiNutrLeWlZXR2gI6aHBS59Z5hUNq9Hh1Q1Sf\nsPXbUq6L+62Aumh30HYH71q8eHIi8QvaZqzoPo6DfnZmHjPPHoXT7sXRgZ6S\n7Z6NvEypXP6lbaO1t8vxLLO+pu8L9z8N3IaMxw1awwdxh6tCxvx7DFyTqL+B\nfdHa9gNV15eGLpm9alohX0Sg9pA2nyaRNBxua13fQgGSnZ/KKqfidMvI87NL\nMNAU0fdYOwzJNiNiOPHyervGye27DDPqBBvAJRnQz8f4PtJK1Z/0xrN26IUe\nRMzV0qrg3AMQJLeeployKA3fF78aSYW+mPYUa19kNP7MsdMArL3N9VNfhS/W\n5DaRSaCDP1thaWkc4OdLfa+ixoW1foGm86STD/UnaHXsKBiN43H8IUtvmYeJ\nd/FEatYR43BiM2Ialj9C4En9+Js5wePOxIU6wH4tXXGJmzNk/+I5CPK8GpdV\nPiz+RTAqQjrsve2qSQ7JUREkCfgyRZtDTkuFl1Bc1Q5MN1URwnmJFHxKO72g\njPim7GbR9SDgFh/jloWYtZMMiKR3iM8T57aZv+ThpEUULQ/tZvAGGXC1UY8J\n8KqS\r\n=EZ9I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9120497a33afa02e5988ab9a776ef45d49556cdb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200317_1584429121172_0.8488638643879871","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200318":{"name":"typescript","version":"3.9.0-dev.20200318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200318","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0d15e35b071c548a81a81aeb5ff65665ddcbe0c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200318.tgz","fileCount":171,"integrity":"sha512-DxUgDTZCGT5Z54TELss3TnHatBiN254lEuxqOXDGv0qr9V+TkonLsTRJz4TrvbVVj/LOr2JX1deZkqTySHXVow==","signatures":[{"sig":"MEYCIQCU1RbPwhKEneLMvU2mbXijIWjWKiWFfpMwgfAJhRJCgwIhAOGXMFIZMKG8q6sgkM+mMyzAD/+R/W2sjLTPNQlA38u1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53388995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeccnsCRA9TVsSAnZWagAAgxgP/Rz0Hhkm/p7ecU9NOoBQ\n7mGHG7WUsvtA8WX7AzLmQTxEkY+ocSNbt2P2TJe9VIjWbTEzr7EjSDNvjHnG\n2XPLtYyh0UTrMEPn9G7+dnHcDeU1G6Uxb3V63zNtE7tRgQ3oJtiVEC+4cOwY\nwmKroOLGPp9RepK859DVsvj6Tb1fQUAeGi7nkMOxP2cgwjhlsnRzsYWzIS0F\nSJ7L/lEMwAW9GNFaK/v9qcOwR48Y+26vPeOi/YUL41IZg0o4JFIAy53PcIlm\nJ97Mxl7L02AAqk7h8814Q6tdYLvvziDiJdBT+7vUHu6GIOfWy4rYb5aVG+yj\nAg0Oggy2161etrnyFd5XHsPcCyUBRiuL2lUu8LQ+dnxx+YqVhHf0QmRSym6c\nFK+k/yR4Tr8qFcKapiOlrsmAnOT8L6Nj4nlbesuwnPAzigVveOHBb/Coou6V\nJJXg7LB8XRsfTiBQdrqvjny64+BI41Z1CLOjtKrc3cQzsvmuJLat1Lj2QnPt\n5GtS8GZE4nbR5KDImzE9V+izTwQlW5fVnmoVvo6dsEhsJffCPY4nmuQ/4hFv\nnd/PcIDO8xNlucs22j0dTfKWxe6pBkTo4DA6HgmweqLy4k4yEh+B+nsiDpIH\nn8uONHzOwL11LvO2eAvZBH2NmO4hzwfnmfJ4MP54626ffw7q3K8OnLaH4K5s\nxtf5\r\n=cabc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f8083d291719c7671a876578234edea0ee33d624","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200318_1584515563536_0.9903798541563347","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200319":{"name":"typescript","version":"3.9.0-dev.20200319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200319","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"29215ad4bc35832c4a7b6b3679198ba1d916337b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200319.tgz","fileCount":171,"integrity":"sha512-t8BiBTDOeiN8BMSCLXFNNfEeMjm33JrLMGBtqq5NvY95KDxkDJiP2TsW4FnyRQicNpCJ8o9cQ3clrr0NtfYvJg==","signatures":[{"sig":"MEUCID3vuu0AKx0Q0RJ02oEAyM7h3ntKEIOD0Vz3ceiPYD01AiEA+4+PJWr5W00+3/kdi7s/V6Zm66rvhOawF8pJnjiwqbA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53402792,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecxuDCRA9TVsSAnZWagAASPgQAI6CcAom2N/Apdo+NtC7\nr+yXQF3GSZr70QqkURj+OAfqybOe2Z2RFALRStYpWKICBVkuMa0bH9LUFk5H\ngD3Bb4PkHKXWv+FfrjIqOhW7+yqRr6kbKJDvlf1CP+aoGQIyBoIVbp24ToCL\nOrTie063m1ecRb5MTIR9MVeLLd86RtFkrUiyDQWS1uA+k/CoRh9OC5DayWly\n6A7SqDLT7L+YloZK+kBKIBaPyEGmSyaYUIQUkNmAPQDTF3/88mauPsDBwXWG\nraGvcO7/XRzlpcIau0OyR6DMZIi0M+Gid+7LeDhhOcwvF4cYbDnZ8rC6iAuj\nokw9sBViWUlucuMcECaGd5QaS8jEo4sNv9ppkZycEKjIH1fDEfmzx6FiqBZm\nEkGsEeD9K9YOx/k4zKZqGThKKJ7g4jMB2cWDoyA4PXko3hCUr7IgsOPUBL/3\n9TBaWrj7ZMh7MbdUAEBiYDmyoCefQi5r0aXyBmlxWriK7wZl+byXT1Yd40PC\nyGzTKPHZGCes9yl1bdh+Ct+5n0MFd12qQnPEi3gsGjWAN4kkWeY98AF8RupJ\nqhjaASpc/b6R4z+CCMnDbwWAznlOkcJJxJ501H1Bt28vMMz+NrqsJ8iY0QEo\nFO5Md9mrs8i9oJoOog7k88KjCJ8+JgsopbPcD0dXF2ftVs0wG6GvLJQoawrT\ni8l8\r\n=vHQX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"667f3b411e91500603449efd06991144f5279c31","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200319_1584601986458_0.7963152482550455","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200320":{"name":"typescript","version":"3.9.0-dev.20200320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200320","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dd301094e8a41f24045667618aac0390eff906a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200320.tgz","fileCount":171,"integrity":"sha512-8/qGTnwO6m4LXMGN7wFFeWgrmmW68DF53X0V4surWQQwy5ymKcYxpuK8GZ5Du8feINvU3IzektlmRilVSwBDUw==","signatures":[{"sig":"MEYCIQDnZKS7sH5OLtxI21CJUjvETBvaL6U6dVuDk8k4oJXuKQIhAIOvbxcO+AArUJLw5KL7hU3+HIndpFD7pTkS3lrQy59G","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53475057,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJedG0PCRA9TVsSAnZWagAAXUcP/Rd9arCadA4989E2pqEk\nb5zkYT1GngP2dJmjVEYStKfAYdlxfof7NRwClMPdntdIieEw5/IVgRVw+qrj\nwKQpV/+mbRnm4uymPHX6cO2FvuaZvq8J5zZHCvUO0ReiPu+xB5T60uSJPxZt\nGR9rfNiI891DIv/YLPAPeK54WefHtK52RPTJ96Fp5r4FxA5CCGoeSSbgOWrA\nYN+bdcvvyrtz1o4drI4LqNFeWgM+zoF82w5LqTBdsLgm5jpVg1wVYd9jvDIA\nC82azfFSWanmy1AHXlnbgXEw0FXLss0AR/GNS5iS696S6f282GQ3A7cg9CA+\nI5mEzaLa0bdKz4jz/d6C0S61cW/1qd5uZFmdFdD8ku0w1hegCX55+BCeJQjZ\n+J+t4ji/Z1oHf7xOXxErnL8F2uWWKETGDUrx4gapl/7rPSc35sZK8pi65NdN\nF1AbOM6C/UjIEt9ZcdfmfahUm7muMgTaoXVdqbuxsWJPJhDxVqPg5QhpuxdH\nXXFd3ULgp4sr/32U+MSF5OuQ2dd69YUuKKKfa9C0jh0kQx57WA7PVYBYnp6S\nN2IgphQxsl0N5E0PWKTx9LuvEF/+10B46uN0xNaRbQeAwzJ64pYU9ikiX5zf\nADJvrhSUwP46J3L6wdIlp118Lc0tcB6iHkfZTKr3co1jCh4pWZEenorH90+e\nxwl0\r\n=frED\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5e9c43607f8732bc94374c95fddd8b1fd9881122","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200320_1584688398296_0.37746264227505755","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200321":{"name":"typescript","version":"3.9.0-dev.20200321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200321","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7305b574394f3e65a332a4a2bb9f61c10fa7fe28","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200321.tgz","fileCount":171,"integrity":"sha512-kcVqm8b8Zvu0uORrc0Di6wMuEQRNKJURhCc8dQvrJHJ4SZ3IA9QVYo6lnypCJU5aaj6dvP06V/pb8re8qQlDbQ==","signatures":[{"sig":"MEUCIQDMN3twwHBfdspOVsqUn+MoihQuTtURJBeqX2SDHsq89gIgWl3cRUIBNvv3hsDqhJLrQ9kEAAsUxlBPdwwN6ayQ3Ig=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53542345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJedb5UCRA9TVsSAnZWagAASTwP/jaGiKchZW0tqZI7JxUB\n1/tAkVOUp/Rek/EOqa75llV07yqLnj50sNn3sjOw5FMtu2TU7YCzYr5bPDfV\nLC4qokbTNQaQyuRlOTrsX74YVpisIQjxgzpEAbcJ5ySXasVjXxUR9+0GOE4i\ng1JQr67mg1sP44ZIOdqyU+j44b+GVykF+IwhqgKabNhQtofUT3jIKujyMS/b\nFi3ivvjykZlCp5smHH9WTfyWwxkJcx6Zj6BsogYRDbVQ2FMgZVNbpGbo9TKb\nUbBIp8ytY0bYvsIIXa+4ET9SXfjyDsaUT+uSsfdNNwyj/Fuf0BbVfF4kQWqE\noE+WWpJhWOmInLd06wJk1oM6QGNpr6q/uRqjVVE4clMYZmuhORA5I7u04JJ9\nnh74an1mJIhlIEg67IJa55ux449YGAug15EdSrZrEH0FilCgndXnfcWLyiSh\nZtfCR0/8WG83LbKrRIcnry3dokc0DckkdPonKxObM0e7NjRPH9tKxfHlYNHI\n0zBDIYvONriUMo7+g4xZ9kHuf9eDRu7uEM/c5bB8whK+9Ps7VoJmueX4P2G2\nPnasHRU/HKl17wqr/C8i4AvyCyAzeOjmv/7bSzsuuggkC5wTj3kgBqnvAEFa\nukdEG5dWH1+dfxfoZ7HI2qHUWpOXmbmzs6Xkifq3Z4G8KzVeykxxtDYyHHWz\nVOlE\r\n=aj5W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fbd83b848ce7983a5f4d86eded110e3469febc71","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200321_1584774739741_0.6088208220489706","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200322":{"name":"typescript","version":"3.9.0-dev.20200322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200322","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"55e48b43a61142cf0c55b301b39d542e1a4926a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200322.tgz","fileCount":171,"integrity":"sha512-W7YgnHbb8EpVajstMd4JDtz0LTCL+q+DbIyHbkrGnwI45DHOVBx0RguI2rAo2utS0aP99zQl4MpN5Yy2BKC5Mw==","signatures":[{"sig":"MEYCIQC4EbK4gTHYCEqDbuXmpGJASpmkuiRsrrXanfZf+iGjCwIhAJlBkye835azFGNn+PQvKIC0aFcS5JyH5SCHMWzuTEdx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53542345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJedw/UCRA9TVsSAnZWagAAvfQP/3RabTlpJcRBzzxvcI66\nRHm0DN7nf6QS38tyfDluFxSKe/BBfw+bjuZ+F0K4iIrttDau+iwgj1v62ym7\n8zeDKEvzueWNOMTbmTalxDdG+f1enGhLbwK+DxdNp2UUyt+CkWBon5zZFtrb\nVFX8bbWqbdGwN6+Ts6zYFOtMuTmHCN8bx6N3i9v8A9CLkmuoFx8QlikFrcZ7\nAxQoKfgyzHfAcws515IwgXp4txI29P79IlPmtS+7GSK64F4YbZZgXIJPq04G\nJcCOFzB1F6UUfzzyJNvkboBaY2zwY4RQj/DwryUOQgMj5BFT+VfgC5PjbrAI\ngMP9cwp7ipByK8i67YZeqc4WrcO3Rjh94LfpRE1yS4h/D2DC+H9LdNIMOhox\nO3g9p8UWgU/4MQZo+hJxckraHCQGSqUkVAt8yqQQw3tLVwkNzkhYet44+Yve\nocczDCU/6A6pBx2Qaun8wyo/irJEJuheyv5srKPqtokPTOpt5JM6q1fBO0ru\nbgfsj15hZZQn5TykYk3hReanEiPy7D5DqX9FK37/aJa0ctgoIFtPukR5Jrng\ndK9rYW2ZI1pAi0bwdmXq6+oTvMyoXZ693mU1+chW2ZhuC4upbfo11Q8unVgN\nUyjg9SO2tuTS3rMBr9qAmiCTp7EgDwiUFJEQMjb7HL1sZAGG9x8P4WX3uz2/\nast2\r\n=iwFA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fbd83b848ce7983a5f4d86eded110e3469febc71","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200322_1584861138633_0.8020468539597292","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200323":{"name":"typescript","version":"3.9.0-dev.20200323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200323","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9f28ac797cba67ece2d4460fe7943b5f70dbb52f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200323.tgz","fileCount":171,"integrity":"sha512-PyI3tW2rJ/Q1llOj3dm2wiQb45vIyWct7I/rnGrllSSJ7+O0X5iU9iw0LaOvd98vraooeyIJ1fBkrtyntxv7Kw==","signatures":[{"sig":"MEUCIQCeLhrHJWbjYX3fNHWAFKw70hrN7L8CIDOYvI7XKlfxZQIgAwwYjqHpQlvu06Ic7G5ejl0Y74dKF3F8QhZYD5CF5/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53563550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeeGHWCRA9TVsSAnZWagAAHPcP/1tygKUgnwoIkGyuXrdN\n4u0CbeT88KgbLLD4Pjx0NIeOgRn2Oh4kcf2M2GEsmPgIhYwCdOXXW2EWL/Id\noM9KTOQV7SXKPkFH5Ujcq77314TqmFo22LyAUvcdnX1Dbzuyu3H88xMYqkmL\nF0+aq3uV2cQdZxxZyV0ATz8VoBu8JLfZrHHTASMoX8GMNuzneWfX1iXrLugQ\n+uDWApFrgqzXMA7/wJ1lt/neJdg+E8I0yqvelmaxesE3IKo8OFtkeymfwZ6S\nmNIwRXizOsMEcKrVYpARj/3SnZhc2v81I3cG4QJwftSiBkwJehiAjq6345p8\nfCJtQNVxIdlyUQq+T3EF7GNnFJ2w4SUSnJRUmK9de94NcT7b0FOCQ4wObmid\n/4onHLghGxhh1HoDCePE9EXOjWYjFbynoVXqaV/JSUBHXn/wAT+Hu9tpRA6v\nTvwcxP5eaGQbDMmG9kLx0fJWmkqNhClfwqj/12vGTtzIKbpxB4Q38STlKqjZ\n+r8j8sDOjWufnd1id5VFLi7ASZvcyTMOAPvUxhm+fWpG1kiFl1Q6RU4gMi6q\nQT9KRP2+DfZTzOSWAmEYE14LRZV3I7cwOArowbvadkPoNf1Jd/1eIU791Ofs\nkHiGeq01qQpjwjMnsryoumW5pdvOmQ9BP82b+J6Q6FELaUtfZDxOkbPV5Xnl\nAIdl\r\n=uBhJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5fa066f6a6a4c37a7e56f8db11575ebeb0af2f77","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200323_1584947669732_0.6892280119047924","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200324":{"name":"typescript","version":"3.9.0-dev.20200324","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200324","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4959b922df48bbcfc5719387854f2219b018bcb4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200324.tgz","fileCount":171,"integrity":"sha512-JdRhXb3nOIFWenpr+a51EBz/r1NNewaGoqMEs0aCxjIMjZOfLmYAP4JoHF9dBi593x6tSDb3e0CPeqQVYeC9GQ==","signatures":[{"sig":"MEUCIQCM0qYBEKKNrTg95q6rmBsuaV3pFO+dMgFIEwigrBLC6QIgTKVhq1lV2MqawvLqkf0bPUNU/OM0p/2g2wLRPS+Hlks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53574648,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeebLBCRA9TVsSAnZWagAA7sUP/R36jZOwSeS17MZaRb14\nfdKK6HNlXdJOzhrSvMIJaPNihpikm+MsAKhXvmfaEuef2NWZvriBBO9KWmWs\nGBkH6sEmYHXfvdVLs9D3C3vV59cOrWlWqc6KsCb4SklsDGrgC6F8rV0FR1ye\ngyFfSGoqDz/3Up/jGAWlSfz11xTFZXhKzx0NQlLKgPOHBZuCwb7JNroQizBd\nldd/Dj4vPk+HLN1m9UCNF4Kc1mKPHtTXL64LJLxMBBHX3n/WkjpRtqBhUn1y\ng9sO5VSbkpyzweI2djD/6OSQgvcXEqUETAh9cL2E5DMNL3GqETFJNxVB1VLr\nq68DRTN3Nc5R4aOpBzTcSRFTx2uxkmR1pSnRRf40fSmvMMgtpvIH6omi84nd\n9Lhou5S5YuWncNzphHZHkBRWE67FJ6s1I3woiR7QG63P0LU1TGF5uiHTJmdf\nYmwXWn3/gpuvax8K+aBgaEgfdFeaKU6wH2RlVYiJWtCFXdouuIt0y8rWGOUT\n4fUZoyKiOXFNqwnC+05cyxQn9IP7SXrp/8kZt5EJ3fiv7eRLsNWX/UFmU64K\npjTRGK8iodB2yMbNLSUwvI/gQYrKuZh2QxTv8TxlkjLqdEgZDL5kFEsa0JCn\nicyMb0z3xHl6OxskQpDAn37LZrR52U+HJ5frC/jPru279xLB9kQbDVboEiII\nhYFi\r\n=2YXE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"11043b0951640dd9c40bc1a48e9aa1ece2a687e9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200324_1585033920795_0.557176194311571","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200325":{"name":"typescript","version":"3.9.0-dev.20200325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200325","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0688e4f7bad5ee53a9c3690d3cd84df4c19368ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200325.tgz","fileCount":171,"integrity":"sha512-wHcBhO69Yq1R53GoKFcZk0/jSFsyuqXWLmcrlQCanbaH877X56XVrnIePyV1tHWL2DP/goHwxRqmN+HeANw7HA==","signatures":[{"sig":"MEUCIAYj1Yq3Njpb++0GT7IvtfEutnM8YgYrD8QZg/ffll2nAiEAhGIN5Utd+/BBsDhi00rWVC3/bDbM4f5VVqbu3z1zKdk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53572976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeewRXCRA9TVsSAnZWagAAgUoP/3oxwBXIpH2s1XwvqCeE\ntYl5zNA4U6vc8SCcly2TgCVOX/nHqdlx0M43RfJxsVc6UocfmI/ZIaxOmggx\n5K8r1ijJQpkQnqB7W1lOl5c5kEDrskZtMlWwOg0PdylPEfhVIsGRXO7kxDlI\npY0Q/8lAzRe5y9b+xo+4PFvlUFov/wGf3LG7abbcnDmfVHjL3oQP6GgWPxII\nOuFZhfPvjdnS4RHWBfmWagQiVqS/HB/X48dPoKE8pwZJqymDW+TYdDBDqmu4\nvYU6RcjSkkh/dXX8F5jGMcc5ECnHhpBJK8wMwI69vnc6ccvDEWjaK857oPxE\nX0eCpp1fJHB16ZhWIbMT0FCoCOA4oElcCk7g5uNgaqecSdZ+LXNeYaxeKXvX\nkDLrN5GI+agm47ywTAn9p1nrkexDIvka5wVgpF3DLLV23eVqUqCZuaNQ1/4y\nE9Po+xj4LD8tu8fD0vePQweA0sxIyjfosIYbZbboFuB9dkLgANW5lvJwiRtI\nMAxmfUUQVAEO4K1s/74c4cuSCgP7MymKSrw1jANjtqG0xhtRTHLEF66frJUK\nK71mJkNJOx4w1gGn3aYXlcL0T4fud7gKq/ascQPuzLLASS8DdSGwpHapmLcy\nNlDhkvskp+GQ2QX8VCfyH3Wh2+NLuOT1g7EXZF+ndLL4wUJC2Hj0jE2EaLBE\nmU28\r\n=/TQg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a1c8608f681488fda3f0b6ffd89195a81f80f0b0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200325_1585120342186_0.4185969509815868","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200326":{"name":"typescript","version":"3.9.0-dev.20200326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200326","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"76513da1df8a4e71e3ad06ff7647f7b64f9a23a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200326.tgz","fileCount":171,"integrity":"sha512-CZnDaobfkaWdnTHWmHykExHvXnHiKFMB8OSyiGOMINAaZO8iy3RbCwELIjQBaCOpX2k8mYVf9zPoRcmS7+Wucw==","signatures":[{"sig":"MEUCIFO6JGBiIHAvSQG6MOf0DnvxbxyIC7aknEHcdDVeQlQpAiEAkK8Dk+CtV04pdvLaT1Odlq9BQpj0seGGizD9I6oyPNs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53554878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefFY4CRA9TVsSAnZWagAAEqsP/3+tQwogfnt5hWGVjkcT\nquBiXF7cG9r++X34esjRh+i6Fi2uLWWcyuid7jLUjakG/3fJzf2/ZohoeYPT\n5CtfNeJMqVr32P/EBZeSjRdja2e43z9Oykw9QovmTnscwnv52jNsneq9iFDZ\nManiRoroGWkSeZ1nAo5hLzMKfg5BuR0trHQ/7K3/S5Z6r06TgSztmTj2maYx\nZQ9lDJDTpdk91TlV0W2KgYX3xZp4xHnk0fjX/AZjn2SDJeSGfWArX0jLsgnf\nFcsTrKXlvtmhx0VP0S6utdjUPiEvXuFBp72EOuqa9JWPGwTPawnI81UdihYR\nBl/gQx4eAQF0qe1NKe2w6JUugNOYoAx3ZMGsGn9h9/l5MPEi0cXX/axzZY/y\nkkgMBd8ThpFwVjThzapgT840vS2GncblbGgFEYyKKpaK46w8YE9sN83soDJ7\nSmRZ7GXWSOmRAewwTGvfaOnTojS0g1FMNZIiLsHjDhE310dnBaygTfWKNLo2\n2yYaYBRQBJAiAElHVnFrY3315FR8qjGL951VoIzmbRtBmmCdXfG+pmbmcV0t\nsFDd+T3mpq8+vVFdKcgShBeVQOXUb6oaLbcHsu7P2nRjvBVz/RdekO7BXspE\nvKm2J1VJMBg1Lz94czFzauUax3yDmy+9RGLZFiB2tLkMSS3hfFqwQvcsAa8I\nyNZr\r\n=1y9O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0ae938b718bae3367bff26369adac1ecef56f212","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200326_1585206839903_0.7556074135955357","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200327":{"name":"typescript","version":"3.9.0-dev.20200327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200327","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"52179aae816587f772a0526e91143760f2bee42f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200327.tgz","fileCount":171,"integrity":"sha512-/TWD/zPvhAcN2Toqx2NBQ+oDVGVj4iqupjWcUAwL45TfcODeHpzszneABR1b/EjHbtUObtLH40vy5Z6rdVvKzg==","signatures":[{"sig":"MEUCIQCrSEkK0rug0g2totvZYNAtWet3OPiJvEtH/S3sDfStiQIgVxB+b6auSAFu6zAw/AkhtmW/wuMUy2mDpYvhgCgqlZ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53554878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefaeGCRA9TVsSAnZWagAAhHcQAKMe1HZdgJ9OvzAgl4Uk\nCcx4HjW8yN6ED7C4e6lJUozs05RFWdZpWQGhHQjJQkLxXBo4WbMc4GHhBSlN\nYXs+scV/2BABFPL8Yo585ETKbZKaun2HmDf1yln5o/StsxMXNS3fp8R7IN82\nQ4Jsln88KZQ6WNO6G8uUuCXgtihxbfbxWFt1Dks4xyJ3cb2ByPqtGR9YSr55\nY9R43PBdLk71UaX1tVskjGCqd0+ro1VTVLFFGcTbNlY2hIfSixuL091Wa6NS\n0o1t5FmRfEFS1It/3reZZrz3ySoeDZM0IgxP4ZeTnSBGqEbHNdj5wOYpCc8m\neDxeqz8o9ynfOEW1OsaYHC6l5L8UevIlKihqHIv3Fu/HkddYsLFB68/e5aJX\n+bJ36KbuAzH2rqvlUg2VpYs7cV5phByn83yp7EqihQ29QhUtaHM8+L3jjrmQ\nI1W3E+UT2Ebq9o6ePIMrj6hnkj7F2I94ELtY8H36xuaZCT+btuKcJJoRrbFa\nj6Uu4srOtukS3wWUu5rs97VibsTSfXK8I9kMSS/CqBnu1KI9Z+4eUV7oWoeB\nZA9MiNSI2lf7vbrehRLmjMwSodYIGIhHFDuZm5mt6PP0DObwCY20JKz+lyx8\n8lF2bp3tOgalfUZ5V29IQgFL+8819J5Ga4zFjLPabXe82ZpLCx06Wg40JDG7\nmpWK\r\n=aLqb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7f1df6e53e99e6bd1512581e3da1e3d8298ca401","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200327_1585293189595_0.36621133437506437","host":"s3://npm-registry-packages"}},"3.9.0-beta":{"name":"typescript","version":"3.9.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-beta","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3d73e2e2797904562d9d6840387a9794fdce4bc8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-beta.tgz","fileCount":171,"integrity":"sha512-8KFblEWBTXath2UwPQ9Ho7/fAEcBragPwmUALeeSymCpJlHOll6gV/1YTY96e+iqeDJ174JM2EJ/ymWbbQRyHw==","signatures":[{"sig":"MEUCIQC9mTA8THo8Fa1D5gaQQoxZgRyQEPzSvlvfcx6lXNfAkgIgdElN85H5kvZoeb/d+D6terhuSjB5oXMfEGjrgZOWivQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53496078,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeflZ6CRA9TVsSAnZWagAAu/QQAJt8WKQxzo8I48q+ec4p\nmmFmAdZ4tMaykXMCyRBHJlTER945Dw5HtGxGi1e1qy5k7vnLfBUAVkBfSA4q\nV2TDyfq6OJn6mxR2KjFbnkjOzij4axi4cO+eYsG8BhusvquFGzGM86S3ZQbA\nM9Xr0Sbcvx2ljxkh26e3qfkm/YdA9+TlctsVyOaAng8tk3bFFa78fACfjgWU\nTVken5uUac1NrFjDUrqZjfXDvltt4MgroSBuVH8ZadpUWSKzHmkdQJxS6SQx\n05EBaIV2mzXNTuaRWHyXmwy57MUa0tjyB1LnF+BKuTQQ6miXlTo9ZGZKgv/T\nsWV28IFCDK3Io6sNqWXdFxAVPnKzfogySoCGJp6U3EWgKLRwidYgRV51kIUz\n5QxRrxJKOJZBmjJGweBii7gI4Sgkcs0QMAssfVoB6Ph10A/YlE8iFbTeti1M\nzAoNV+PumDKd1oHIsY7UrYVsEnbc8mqWu28Vf7ZlfbmA3R1b1P1a7PghYbmr\nDnBmwLrjK0TmjHhgrn5YaTiM+i/B98QOWl96PwmOn09OO8gj8Wl4nKVv9Sae\nLFNyeBnLYS61NhnITJBAT7PGmTKf9OLUXy95qzFhXnKhBpgMP+Dj5sJWFQOB\n+J6JUT01oQw6h6LJWpz9EJvZDbIgvIihEAElBbtQZ876+V8Ba9egQrnH4ahV\nVJLe\r\n=Ye9P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-beta_1585337977880_0.8618798043501434","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200328":{"name":"typescript","version":"3.9.0-dev.20200328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200328","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c85b037c75f013278ad15a5a7f853619c3ddf99","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200328.tgz","fileCount":171,"integrity":"sha512-PVFPYznJRDM6R5FKjeIOcQ22xiE8DEICCL0iGEFvlo3KVEhj8Gyy49YaZTssQdLXxoziZP7qQL9WoLCGlU517A==","signatures":[{"sig":"MEUCIEf3JVrPp84d++GEjX7H7wJdVcoMs3urAY6dtoZKE1/HAiEAyuQ24Dt+auqz3t004+S7cKkggb7P+LU/yrKcW55g1TE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53582359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJefvj2CRA9TVsSAnZWagAAyp0P/jRR0QHdaRS6v1YBI0UV\nmv2DPofYUch8QKsKLR+o+LIkrH077lu7cnn+x/cJJoBIg+7nS+zqNQ+++ELg\nvOqFTFK5zxd+CJIlDOJC70KqCxV5d5dKwm0MvKungZmXtzpbfXCvB2/I+v9G\nTy2gzcw2I1jA8L8vFWZ3hv0lxXplGlDb5FSfLtrNgbM/n2mk8sO+Qj+6MS+0\nwt79xnngk83ugD+OrB5PLQlybpjDG3n9Du96r0aIfB7PDnT7KWGXORxJy280\nZ99x3SlORZV7jtjgW3tbysLKucxZZn3FqcH7H4bZqCkElOKu4szVsZnu3AxD\nH88RSO4RAOXIXsSC56iHRYbWqHQAF4oSll3yaFCDcx5L537ZGb5V1P5uTnlj\ng6ZdLb5xJVJ4tRg4MBBukQf3C1rQaHH3Y8O8q16dkOPF5kVX81D2yJXw+jXx\n5xePRByAg/QKLhfFaqdzK3kW+bdmMW1MAqwgcN5f/O/3u9pQ8tFo4U+1yMFj\nK2xknTl/aU0wYF9nsuRmMYUG2/I8XgY4RBWdjnwUn2x4DBxSd2VstCmgD64C\n/ETMRwPDWwU3mPCz1Pi+BxoOMuzDYv+mHTb+OGoGl2wuLP8LrNqq1KTesD+0\nUYMwsMuU2AYxsA4ZArA/JaFKFlu4m4VBt2qCWmWl/m9cs/savSfv/sDXLCAZ\nWN0r\r\n=TpJh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6d7539a2110b5b9edd723bd8fc7ecc9b4be69943","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200328_1585379573094_0.36951398020260195","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200329":{"name":"typescript","version":"3.9.0-dev.20200329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200329","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4342574fac729d5f22714a211c4c094105c54c82","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200329.tgz","fileCount":171,"integrity":"sha512-ylzlcwYgbFsS/F7G8wdfKWv6d8WTkVINKgt0+SPgc0VVThRqBUY5U381CgbAf58bcJxY16dL+0+2DXu6J2GeWg==","signatures":[{"sig":"MEYCIQCznawMywZ+Z3lR5bnQhCDZFmYJsJPb84jv+5ZniMHkpwIhANOtUl69TSW9kCBya4H0TQ6D1s3K2Hk75TyJ8YSC8uY8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53605267,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegEp3CRA9TVsSAnZWagAA6tkQAIBfecxZg03mHtt8JuH6\nBPEGhvpLaN8NZgtLuNdfOfx4/R8JuYEfns2gqNOl7bNFF1WLo89ScOSA+lr9\naXoKJ1OiKkjNj6/nuCUMS9AJhfTKq4dS76H4Rrft7Fu4YzdofmxGL8Kz4IK4\nmmIUwH/r2jMTt5NkQjCwieIlgr1U6vip8Y7zQJg4qkUjgrl00nPNifC6fG3O\n7DhdX7OkUlyjjoH7ul2pnLdcPIe6wFzYRTZJZqIzNkHA1Muj2+fgURqR6bjN\nVul4ASe3L/H0dHMRXFO1029ssiFsT7aEeasuaT/u1LMlA3c7aNNWkxmWjwyK\nSIHD5leRaOxcbqby9xw/SwAKN3ViBV653NrhK5nTPMt5gU9jrvyBYwKiX80i\nrirxVkfIGDmY6EVLRbWMj6mCCR+qYYrA9oUhySX6cowRYpnLVA9WbrkNxEio\n7FLHp8zt2jSghpiS2SWRgm8mgUfa+8QPZ9oKHQM5LlDfGQ/Y4YuU7+fu13la\nPHrlJZ5XAR73UALGiPjZpDbon2KsXFnMu3H4WZpn2WAbdzJIN1J2fEybm2Lj\nXuKQ/z/5bqGu8JXIwP8opBP0kELCxqMkKQTHi7XsYURhLGyIg3XsKYS3giub\n42MqnnEaYecFgkqCdtRcZOyXl7W6TGO/bZIbmv5SWiIWWSETZxDBcN4kfBuT\nEcut\r\n=RhAm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"96f01227d4f300ad85e5e470595b5c7bd96d9304","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200329_1585465974283_0.5157498237134146","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200330":{"name":"typescript","version":"3.9.0-dev.20200330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200330","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"38bfa4a78fdac75628ea7da03a8eacb73f89a347","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200330.tgz","fileCount":171,"integrity":"sha512-RI1hwkdnHUbQ78PT/VbLgrMjyb47/8+G2CIfuWW6lBAQIwgqjEyYlKW9PbDRG3WlHXieTMkE3Rjwn9hF08dU3Q==","signatures":[{"sig":"MEUCIEYqYVnhGgm8YcHok7PxB7Cf4Ho+lLBk423ZXWmtaR/rAiEAng5ydezszO9MC5TzlV5e0Oy7iJWskiKIH298cJa7vR0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53605267,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegZxhCRA9TVsSAnZWagAA24oP/AyiJBFjIO8blJRgTUEy\nzjNoj//UnN33Cv+ZHYxjjJkg02gcdNL8w4TglqTibGevZ6a70U7AivKIEyPJ\n9UwfPK3ilhJFwaUwrnVh82qb946tpuKIgkR0eZ6zdjmAPah8WHsQaUNOysSu\nvDlnbavUcBccg7aU4sWly4Q7lu3GIJY2/DxaMLfGaVPD2Sd5uO2pHYXtURwl\n9W722IKb+J5OoEwUtuk0YXjExSQle/Oj+534m/JJGx0FK3k4dSzdNJKzJ/86\nYKd06H4F3QXnKH0Cpz6+auwEOqyXrzAexQdM30YsMW1jZeUZoBd3SaRwJCea\nJf3prSoHdm+iF6qHRnnocCf1q78yot3fkHtlb+q5e5yiLj7HIW1Xlmm5SvLa\nIFB5fEcnfNbTt0tUh6r1nM/NKm9Y7BrIQso487ZvGCc+R9DKIBRpBhcF8bmq\nwrRPY5Q/Jk100onsEm+0jiXv52soLI7UVRlPr+AedAPmX5lhxdBtd8YiWN9b\nCILBfR9Ts9jFv1f1UWsPB4E0dm8Io7MIs75FA6J38PvWwYVnd/CO4I3Z1NvU\n1PzEvc1mPLXy4nJmSCu0tB8rEkP96MNFEASIGqShB3adnJEl2tQD47WQMzja\nuq89pGmt11lrOBpR1o8dCu5urnNsG8WAuEOmHmcPY5aOibllTZbe29BzNrS9\nnXs8\r\n=FBLk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"96f01227d4f300ad85e5e470595b5c7bd96d9304","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200330_1585552480477_0.5613306060557499","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200402":{"name":"typescript","version":"3.9.0-dev.20200402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200402","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f09c5a7d7ef1370ad7ef46b84e2732002276107c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200402.tgz","fileCount":171,"integrity":"sha512-CxOOy4lmaPnuyG34aP1kF2l++aou/IM+T0XsEeXZWb6xbIwx+3rt1DbLNS0pQIsLxi7NITq3x4M1qXhOQOAE6A==","signatures":[{"sig":"MEQCIEx2bPaPgxe8wtiBHkFR60UfvzPdToY5FQNaWTbyyXghAiAxLJl91smt+A4JmOX7uz+zIBjp9QZ+/+iCRRf19DCjMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53703741,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJehZC1CRA9TVsSAnZWagAABZwP/jSAp3n/yAMQOcE58pXu\nWEP3JeYRy6QJXuaVRl8Ns5lF9WPDbtaJ+Co6qo8R0zWFVxwMZuEGhSMXfIPe\nYPzahoaUTi4DCeo5sKflE2+Xi2qwukW8yrvN6Jp537TZW0nyMs094JCF43Mr\nwhAr1zAOcrCCvOfqi6vAWZTz88Gb6VHZY7RDg+6etI87j/EpRO9oVP85ldzC\nLSajNLiKzsNZtwi7d1fWG1NxNziNi+zhlufGFBsiySFUGOK2B/kZ4250fK9o\n1418lFKfpnrl9N3VPMdW06uCoYkRtUxKZE/+XLUK8U8CQeki1TQ99tuFlqno\nieyi4aFmSe5tsh6rilPOGzcDIMfPxEkg8+oF1p70ucCjU4ku/W5eY16JXqmj\n8Yv1ngG2PIfe2hvqlBfA/jxtKocKDdFKhcprO2F+XzQYDZs7NW7RLMeFPJPu\nMuXJ/khwkeOx7++X8nygiwvVDp9JR/8DBs0B/qlmVoCLtPm+jiLhSg4M+qvQ\nDQVR7nM5MBBWw4owqZH5g/L7LJpr14TnKBhYsMSwgOu2bp+ftkX798mBUr7L\n7xx1u04BlIJ0d17whsnsfqeaplDixGgcasDpWv1SOkXcw3hGpD3HBharhpnT\nc7zYiX9ZAYD2kYOImSNkR1LwnZArE0Y4SuYmp3zEsxPcOcwj9FrfrVlFM63I\nSwAN\r\n=oLjY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"78a99241d87efca3e48ba52a9799f8fdf941d618","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200402_1585811636301_0.2022384286599408","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200403":{"name":"typescript","version":"3.9.0-dev.20200403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200403","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8a789ac25678e9eeb1ad7d414c8139db7322068d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200403.tgz","fileCount":171,"integrity":"sha512-5nhBe/DL+UmIQ9jCq5YLcTq/AbKpgPfGlkeinfygap+D7AcuroWfn9W35QBtFl9HVv27x5xE/Y/Hw8xl6dPr7A==","signatures":[{"sig":"MEUCIC2expQTJKkqWZ4ddO7pOZxRRN5XO5WumVxh5+Nu7NMkAiEA8pf++sLEaPstG9pZxj77/wAvDxtBRK/nEqJNSIAj0Ak=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53790177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJehuIeCRA9TVsSAnZWagAAt5MQAJt9y4zp23T95/Vsk9PC\nrewqp0vSMgOHVBVbTHI2MVcbgX6oASAiuwJ5cRJeJJW2eHFMe0lC4ij8eG2b\nALpRfvmf+OltDF9UW14QGFgQ7zh6lkSPM1bNApYSjUbtid7yE0R9WPAFPGWo\napN2QPvH3MfuiumGxajIOSR94OJNLK1kfu6is+vunSEjWe7QzQXUmabPMQMW\n7CSxsb84SJkBBsRZywcrRyCZQJeLW6cVlxziO1bAPsUUDwOLkNWqzlnSUv4V\nqOeSSlRaPnmiVkz3AWHy/1Oa3g4Sw6XHXkShDlulUNnOjsO6nD3SmxRUJNQs\nIHgDuVeWOVm2rzQNuA9OGQGaWSZBO/qP4AneJPnRJMoj3pG+bZtYzeR42PsA\nBIry5RmuiZNgGOj0bmmuTXO2xJky+4xllzQSPkCt5Su6XY5spD7+fCwJUaab\nXOi6XEYpzCUmxoAM9pp/aIK0sfjN4n3lXx4MRCr2LSV6Clj8xNPI8+zYDxPa\nogLw2jaIjLW6lLCGwyKk2beLalr1h7n48MTz9i/xhOTbhZ2u/Tl1Sy4TKLyu\nD93QpNQGSJwKFRExTDWG64jnCHPKfAjtQTrqVL/L55+ys/DATHvfaRX/WQvI\nlPkuJeh2CKOcA1Y+D9Bjdr05zjodnxjcTWcl2j9Udq6jgMcZfkoM2pd8rqej\n9vbu\r\n=tgOf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6d25c01d0973254038bb20ac8a088e67ff87f48d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200403_1585898013093_0.6961756531276502","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200404":{"name":"typescript","version":"3.9.0-dev.20200404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200404","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5df98eeca0bc8fda5c0b0efcbb5d013b666253b7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200404.tgz","fileCount":171,"integrity":"sha512-GpLX1PSRP5JPhgecvg5/8Eqw8FO/h9Yh3pGqcsrAWlc1w12zVBzAXKhpzbNmHrxqO/ftXyXnDI9ftjBcfYHYag==","signatures":[{"sig":"MEYCIQDgXNkKGxawPscBxfXtSUQxMpTRcmdedyv05kyfgZszLQIhAOBO6xzmib1zEVbpQAJkX9NRcgjIjwu12Mg96xeMk4v/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53827836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiDOCCRA9TVsSAnZWagAA0sgQAJ1nJSgQJoIj3pVGQS7Y\nE2Gs1so6PW16mokZYx8CC9zeoRL+9q6gih6B1bSIDwOe/Fg4e30GJNjfNbB6\nB+B4O7qxks+r9gXjZsoKuPQ1LJ8WM74ysremjx5FsoUVz3oo1RD/XMy9GNRh\nJkePTmrgfNaf1iByWldq5wBtVEHrEGpcvd+l8BpxwlaBt3GfqfqR+yv4JxsA\nqcVk0PbocO/lwCK3f7wjTUJ41FlUS6ujMQuPIqI/XWTuO722NYY5gm2imr0D\nY2dObM3Z/jGw7YKdjj3oCnLtCaSC4MtvLBddVRXF4XoqnSGTxDYD20KkDLVo\niKUePfXsNl7qqwt0QL+lpmu+/fMIk5jxbqyY9XnVZ/ZwDfwOFxhIKn6oaDV7\nONiQFzGQGZjHP/9FEaOnMphJ0Squ2TcodvtC2WOVyTWv02P6qZ0v4B77etX6\nFFmyveGQAkeItNMGUb77CrqVh6hPG0Vnq/bPk+RVX22AaXjtHpBUwopUrX/+\nYu9O22sh5xOro9czRtQgy4Xe7SQ6TQaCQAJJPJGiIYXhS/6lNdXcjppnIKxf\n6USFfIdutJvCX7abO2ZhEKHO3PUyHl1NH1Xclx61ahaYm5WjqoL/iL/gyIa/\nGS09j6RJegsNaAKO++eG5BgcDTZUe1BTeBxqNI0fl1xv41vQ02564c21nCJ/\nXvH2\r\n=A2d0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eac073894b172ec719ca7f28b0b94fc6e6e7d4cf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200404_1585984385358_0.2701289288561328","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200405":{"name":"typescript","version":"3.9.0-dev.20200405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200405","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2cf5c787e9e99043126abcc1cc90f25a3ff8140d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200405.tgz","fileCount":171,"integrity":"sha512-4z2kgQDaMmhsOkCFCkLBPwgFxjI3Hft7NOzUllQ31YhT5f8oqUjcgpKWL+MX98a0/nVdZqLPTVPMXwNYsl9G+w==","signatures":[{"sig":"MEYCIQD0gDx7n4bvU1XnhjADZX1iX4FeuG9skxidwO7YHcuoFgIhANG3C4wS0F8iHGbYC9Jw9eenXMhWmsl78H1tRiVG4bj4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53827836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiYTSCRA9TVsSAnZWagAAiqkP/iPqlGv8a9O6+YsK9n7r\n5JFHEU5b1H1EXsqkv+cFDLVSHLHHgO3aGL9z3mu3ZidF0j4j/bGRaOK6aNuG\nG+vwuS95PPD5fuQgpqZJwt5xhNHtCt8J7WaY/UBygB9EI5br8Qi2Pc2/Ubv8\nz1+SPXZi+SCs/xny7AJwVbNZuJFmdToapQeKNCAB86/I1nKzxtImYxZebHS7\nA+SBkkMaF9whrKhpkMnwdUBGV/pZaiN7efVFWTOJgkadBTc2K3LfxqNjm8Jg\nsN3+uWZOIZ912lW4nrCF81zO+d3V2x/97+RJSVL8eSNFa02UHBp/6lpUUC2+\ndFC7lcgXTgRPRGbKe0ztl8ppLaB9b4GXQjLmRGw++9UUQlXLC/cFZW1nVjiF\nO62fva+RGEG2FzADmr5ak6hdf+uHcn7kRpnajHYIPnThHZ+qotw+oDliPNIB\niOBauHSHrBnjUgvSU9EveJ5BmSLUA9/IyC1RihvHTjjH6CfFvOt5rNlifwWd\nFyrCWj9wq5eJOzq4SDVsbkkh5J9rB7Y/Z3chqS1DnpSsLxN1pKc8o8cKJdPT\nbycXUKvZz5D6Mg9dd/E7O1HDcKPswfhWTk25Xbfb9qW6YQ70HjHtBqs7eYWp\nR1zd0K74tNrNykRA/tqmYqP1S7D9bT958ZCYAFr+e0fdn1Nmt5AEnT79/kaJ\nnjLE\r\n=Rbt2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eac073894b172ec719ca7f28b0b94fc6e6e7d4cf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200405_1586070737424_0.5959672580917013","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200406":{"name":"typescript","version":"3.9.0-dev.20200406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200406","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"78c967dc739d75507370722387f5dd038b138d01","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200406.tgz","fileCount":171,"integrity":"sha512-oDw6MZnp1bMrifgsisvC0Ea3Op8Uyajq88/1EBCi5J8lxuPLDgVTKm3uqArGpcwiX6QphMIWA124ZH2OQx+dzw==","signatures":[{"sig":"MEYCIQC/PN1Gkceaif74Ua7YfnyV12Xd0sazWqIgrYJQ4mi9cAIhAO7yKBNe45/KzEAKWnYFLeouhrqJ68Wj4VZsP2I2qeCF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53827836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeivSlCRA9TVsSAnZWagAAWaIP/A/Tif40mEb6oakSsbQ2\n/A3/wQgpS56AFWUPhQyt70YyqjwZg0tKEvqUxkLFs2+rGvImomk4KtBnYd4g\nb2hyHfmDjklsZEDWuY+WJ+AteboN0T4Ipmuh+peYU5Ob/St3dXZiqxBKFiXh\nBs+97+m7qfLyFOE/CRRCNRFuCpu5vZcNvUOnxz7haW/M0MKXyeGn+1yH9AjT\nZr14CYYV9iPXjCb5nEisIAG411PZNYYYUiUIPlDpiSO6vXMHrdlf6lu48aiD\nXQ7einwk/h8pEKZLKrM6aDWLmZqLerhEg0b/e56q+CbJ/u25dQYYmd9Qu4xT\nZYp0kp7bYOYiTB0Oa9R+YIgd5zRvzhcsAginXfIl1dRdxc7kt9/Q8AxNNa7M\nj+C4ARQAEEEnrHGB2MwoFM7qzNPspeGPqb8Ul83kTqRcmaDZWQht+ECJB80c\njQyC/Y4qERDMUDW1b/wqn32SRC6YQ5/pHfejRtvfUX/i0R4th24Ch9+uyXZo\nPiA9uWsG40Fmv5a/hXiR0swWQLVUWnv/oB1dfyqpyOt86dLKIrhg1zw4Q+Dr\npYUyK8YMUnNiCF72N4wqAzN6pyD/Mf3GUn6NRMAE2nwDwNoxIarAFTeQ8ZW+\n62sH/xgK4qczW2qyJRAVWjPXiIWG4zF+jqUzVow1B5PXYyZMPK/CmaGxLlou\n6QiB\r\n=VMOE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eac073894b172ec719ca7f28b0b94fc6e6e7d4cf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200406_1586164900687_0.5466740714335265","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200407":{"name":"typescript","version":"3.9.0-dev.20200407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200407","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f11737b42308f601bd6a1f0b9a40be7f8e55714","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200407.tgz","fileCount":171,"integrity":"sha512-DCGwu+3goRNUl9J3kYqs4gAsUIdLIb9vWSoPalapEt8gezvrRChowBCPXApsfpiY91iqcEHFN+afhFe5dX6pWw==","signatures":[{"sig":"MEUCIEZKnLYnCMBa4EqwBnKaPK7fx8PLhie0xdu8Tjj79TLJAiEA4G5sc8c3eC6KDYvZGVwTaerH/ZGWrb1FkdGcW2yTgG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53832596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejCfhCRA9TVsSAnZWagAA7cwP/3LKBsxu2v3aHMoCDoya\nEq5UTz++WrghneV9kao2Of5YdB1v40Yw0tJ0W0yo3rNIU4KiLK0OjTeQoBzs\nKnPPU8bWD3XWdw4rT2lIEhdCPS13miR9/52Ab+zwiHwTGWXjc57JbSXLXprZ\nuctJKHnbS0C9x8QP0adtpCC6ZUPJOIQpfn0RDyvlXzl3LST9F6xgI+FL3fSg\niGizB1KXSYLmCxpJblGW+OLP+W3Xcmo8aA13bnx/aEQMOrQKEzEZ/zAACpF2\nfSKIaVUB7Scs69vFTlIxbVowBwj37e6iccIlujf7WgU9SfiYTfpE6gEhQ+lT\nXN1co96Ih2b56x+ovV0F8M2jWQJEnKvK1T/6r6SupSEDjBsHRKGtXx+nVFcF\n4Q+f6RvebFG7uYIt9H/8veJ2wX27UCAiDEEqEhSiwIPgIUTh6Z9NGrlq/7PB\neEgdji+Lo6gNWg+wHGVZ5GILGq0qNHC7yFVUkd194rMTlknQVei4ngL1xRE+\ncLqxvg+t5EIsMjbdLiWsyk7+yaWcn2jJVgQPQLjuKd0mVUiHVR8wq6canjZd\nOE0EwAVvviORazAFugx43revXr3dzuz6oSS/sxtJ/AX3Dp/QTc9cLGOAy8pc\nmNPwkMB7ilnDZRSk526KsszyjeeU7DhScDqGdUc0Qs4AWhEJvc3fZRYb5oRg\nX1OI\r\n=TvIi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a2609b1f1b58f9b6ef62cb3b6ff47efb35059eee","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200407_1586243552104_0.3334826087773639","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200408":{"name":"typescript","version":"3.9.0-dev.20200408","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200408","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a2f4d3a20e0126cf0fdf72ffdb08625068d5ba0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200408.tgz","fileCount":171,"integrity":"sha512-VxFnT5htyQ1eVm6TZeICKCrpu0xl5O+NZdVEIRrNNiEqAPpYeYNwQy1BWmbwvzBFAMQC05pY1JD4isUi9TkJUA==","signatures":[{"sig":"MEUCIDoFGcM/O9I94U/qGEpZpQKPSpB31q5z0T9hC7v4CBHjAiEAgv42LL8KD3iPOLyEiXnFHDxToidYqUJh4EyolGa4AYg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53848168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejXl5CRA9TVsSAnZWagAAZPAQAI8VEEGjg4vySzlAsU1G\nQW/OHj9nBUGA3Tg9tdLorUBFRSH+/62fUEP1Fj+t0iu1w0MXrPzZX4rIvYRk\nc3zOMMvDDiYYor2U/ksSzTnqhLJBIs1C54deNKwakTWN78lCNG/mVxkvBuju\nPw07ZK3aFYnkZdKRvd4CHe8Om7Dm+euY1HlbGgV7z85wePrNID0E+QXjGfEQ\nDyAcs3qfFdb/TD8xtUVU+w2EtgllrYbIdYWSgL6xh3YmT/BO+wfq1AF0FLEa\n60zhtb9x0aIbZ9C1FMKVc9ef2HmyjiQontiq0FslYOHkrnyPubyefGrMtr5i\nYPvks2SvCGwhj1EYZeQDQDqsE6cJTLZFINlsmtn2JaU5c3Da0GGk1dvnYhwr\nooLTNUnCkhC0qjw2JkHdFRnKc9bWjtQWKSwlxLBoQtuQXi7/++tFFfW6Hx50\n3e8Yw9EZffCa1DmJ6N30qhj3zZbHyO21+nWVmFeWv4UViyqV4XEaR3onoJqi\noYAjmka4FI7TbOfGSAmuCanFqAO9ZRTEmsswtkHalsVDMuUYK4lyOiJmYSiE\nd+SCZnmz0fC/ztdiwjNchOm+v/4CefnR4jgvYtQHfUYwa+PXQVFzgwGMGJBQ\nxJjHHESGzSD7ujP35AedQpnwS6xX2jE6LX/DfYs0Hawf9TXusMROVsEbbJ+A\n7XDP\r\n=wg3Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e897eb1b2a7585f2300e41c7a4d9f549b07ed739","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.13.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200408_1586329975656_0.5625149616414149","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200409":{"name":"typescript","version":"3.9.0-dev.20200409","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200409","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6635af89a4ae2679039a61c901f2cd83ce516856","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200409.tgz","fileCount":171,"integrity":"sha512-S6rqgD9K1y3vva/2g6GSwtkg6RC8W74ssTq52NtpS/ujqptYOJIgWHnMK+QN9yjFk2fzJfH9/TIMeFnLkZyHZg==","signatures":[{"sig":"MEUCIBdV75S7F9i+F5jlCxTw50H+lkaKMxBv2X/EStBkYuWnAiEAwUC3+SMy+lf8gtaD4r6lF1SA8oczvjyx4JKPVZe1OgY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53854092,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejst6CRA9TVsSAnZWagAADS4QAI+cNxdjGkSOdsyW1h/M\n4EGgGXneFjBfakYikWb0ru9Wf2kvkkaDNZuatvBy9DjEWLVJuMqA4UzTIJTa\nNTQ5kVGaock8M5Z/ZhSAvfXwNHdyDbXenp3iCY5ltEYVBCAkzDO1cRDUQ/jg\n4SvL7fx+ZhYR4Sl2PE3oosMwjqO5zrre3M6S6eDkbaeY1j5MaVPfvn+k420G\ndQB7kr0TE8SyMOKMSO5blER5a7ah5lhUU9zuEf8T3zALySoFLR0QrNySrKqj\ndugIRAi05uix1XwtRu1LU5VPGTP332qcLgI3Wtg6gyNZSMEjsZGu8qxNcMvQ\nGNf3IyLyUlxuCHGtZLu4R7WaQD6Vefnv9CYA+6i3WAOX2CQCphQw2U0EKbzI\n/N2lNa/fUgtVXhrsiSICyldKoE+3JQQumuL5tHR41BSASu88Y966+bN6r6w7\nMVKwUrtXfxuPQl5M08NQvIX/GN+ECUnO3wudeVT6xabBVdhl0I2ylp13cynR\nr6wClzpKPPIl6J7BGC0lDH2+dIyr+1S1RZotFuVPse0cKgVOBbsFy7hNXln4\n8xBvzlh4/2FgVnEl0+n3aQ0xwk+0ar86Airzys+Zs5sRF+e9pKat9Yw7hy7A\nXBjM7A/Ogs4vv1DM1sRJJercoO2LDiWMfNZ/WIYtlq4qv7AhXxZQbaeuylL2\nNa6W\r\n=/YVB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f31b5a278f03b2e2d2713ed64230f853ae6b4545","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200409_1586416505680_0.527225695872543","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200410":{"name":"typescript","version":"3.9.0-dev.20200410","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200410","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b30251c1f5f5ea75ae5140881c41e799c7283897","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200410.tgz","fileCount":171,"integrity":"sha512-s9MrehZwFqJoRVVubYbwJNtFUIdi4we8YbASpi+zW4VM2Rb5E6mKn2DWfKonaBrwgjXXghePUUQHczG56Xqjnw==","signatures":[{"sig":"MEUCIQC3IRihLS4T4RpRJFXUhA9NiCUtqmz0NkA1UjEWe8ohDgIgXTayGpd25n+APnNXriV6AyC1D0FJaF/ztn0rqjWk1RM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53861190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekByLCRA9TVsSAnZWagAA3vkP/j/5KgNuLGWl+JGrs0CL\ngGQWcHs6sZtdh5/Y7tymQimGbpXBP8DL1nQsoYiC0CsGzYCrT7gysCx4kMfx\n6PnvMB2By5sq0jeM9qX6CQErVF5LMG92LL8oB1vCOufzeZgtI6aBqi0q7ban\nkN/KXsP+jbbJ4d6YzYNul/FtmDcL+hW+fnSjkHt0OVW+se8xp7IPpMrYCBBl\nq1lBX399XJZ1Pzne/Fi7niN79mevBw93o/2THkSw+AA/OA5ea69rTyEfmEKN\nz95Ziifg8dIohTCo92o1PKYEHp51ykzFuOluldJDXasW/huWHTUWfwbjhPb5\nPnsi7VC0xd8mr+orLsgu+KOqptY2dTbtCAzKAaK2EUtTYcVmoD6zwpRoxW2g\nAybN0te8bVl3/LLphZPkbO6V5J8yNtnq5Ds2fn/qtIrp4amVoi31X9tjtdGe\nAbezoUEwuNWJWRQzQkjV8ja83aBe7zrPGtWyVmMG2WcADWbGN5TYdjq7+8Ug\nL73j5XepoTdQm6lMxxCs3wWrbk/WFqanoYy6cDcAKf4xuzOAbqttMZkCgzfD\naHAvDJ7XuML44VdiqXe2M4Pj+rGiV7H9JAyxuzK7Qsw3tXSpJIge+hK+nJ0u\nma/3l6HYnlqabh6RH2ydiCKnKylipsOr2jJcwiPS4Y1jkk6yR6y1lbA7Io4K\nMbRH\r\n=sMtt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"52dc9f2282ec24a111a4df882a48096b06ecdebe","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200410_1586502794215_0.7445973519387044","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200411":{"name":"typescript","version":"3.9.0-dev.20200411","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200411","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"27921fd7ebe959ff7ce20caf54d846393dd95b60","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200411.tgz","fileCount":171,"integrity":"sha512-fkVBNCtK9ncGhHhpWRDvulDe+ngVKWRqAz4DioeArgtSOAJe/5Iv2jwlotdSzCuacGYfUMInoWz3ct4D76kCdA==","signatures":[{"sig":"MEUCIE6E4x1ENL7TiWmss2XImHbEOVlMJp9T/YZ+AZDu/sg/AiEA6ev305pxwzQAHYTWkVxPZYV3gr6v6SfCPboD3kKq7PA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53865200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekW2zCRA9TVsSAnZWagAA5kkP/RrmP8bYaBEF84ZkUBZX\nws6dZR+tiEpaeJD8lDWkEb75+R9fKxsDkKxFp8VP/139ybo2gwKqFDivIiua\nsjJwXDm1Z2AStD34SFhs4nlD34erFODKKs/SYQCrxGMiZe2UBu2zbQQmOFRm\nCzT9SZQCwDL/WgjPDKP+6yIl+stI0NvfF5OmP7lW/kmYfSKv2fp0dNlznBXC\nJa3RQl8ah7rjnIoO7jhLUHKkUwuo2WIBGlzS7QhtHnj7LqRcvj184aHh7mAx\nhzgOVmi+j+Qyas0fmJAiixMbuH4621ISDZqepyS0JeDZpaQe0sodEHdGMes8\njpaDBN0y8cZYFHF2Xy4DLxWwJeic5AtaqR5aSP7hayZ3e19+hipjIOnybVBh\nIyc8vHtwBgxjmE88hD0ExmGc8osEYVqHottT5K5wQItqC/MhUoLJw91tvN7D\ny5dN4IP+7HE/CP2GYOpBEwKIii21JKp82guSwEKyCKU2rB7siaQ33/q5YM/y\n5Wy/8vx+2hgxpNmx2BqG7XPQltZl45yeLgHQUMBaSnfmAvrXP4LTsi9vgPA7\np5gcCFVbFB8l0YJWtAVP/8uZggZVsIGdTBjRnlFLkAkErAHZ3VHzhoMXSf47\nKVt+FMEK2zrFCrd+90p/i30AyIPw2H/2RuaFkc+S7LG8NLy4xTGm61ZiLBLa\nVo/U\r\n=c54F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eb105efdcd6db8a73f5b983bf329cb7a5eee55e1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200411_1586589106203_0.903400918586742","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200412":{"name":"typescript","version":"3.9.0-dev.20200412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200412","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"04be727c17a87e98c0ae40ce3bca7e324173a186","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200412.tgz","fileCount":171,"integrity":"sha512-4K27InUZMxKsucQRDJdPhq2eODtNQBj6HLBEdTHD+Mh9O/NJA2FtVG64ErTlKA5VA3tX/CkxNffZ41+reok7nA==","signatures":[{"sig":"MEQCIBklhNObCsAjbQ7q4vId8hTc3KQjQQWIwytuskzmvOwYAiAGaupCcfmuSRIJ8xg3AfNmFqMYD1XhFpHK5fZx/OJW9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53865200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJekr+GCRA9TVsSAnZWagAAOoUP/jZi2dMi93Fh2nn73tLa\n3GH4JpR3O9/uQyGSN0NFajpGQqlaCIqftIhpVxjG97wdDgR3a/SPflM+GBSA\nYlD6gpQ2oANPMTbqceGexuKhAaneKpBURyIprkLRJu5tsTO3S7+EomIEeU9V\nAB2XBBZBYRuI4JFiqiv6zG+SuNfRsAlletpsXpAim2nSwn7cSpgXT97rV0vM\ntjFuStySbsrLRhFAIO0+rL2VuW45btpybSveVARGw4wzhNP9W8KaLRmyEmIU\nFZ0cUXhtWmeC7RvPsYn4o/UOnMHht7gfbdKk9YBWwaZEaUFEDJ0HdS6TaM+P\nkw3ZzaavwiP3bZYKu2NjX4a8OzMEhkyw9qmoF8/cN/Sb8ar54KENBgZlNC73\n43KaV5qy1umMG5FDk8DnLdT+0i3s7X95E9TcmuGeGxq35H3YZufBRVRU1u+w\nd4zcIv8/pEkh0g3PLAvPa+8LCF8+tux7IRB9mG4EzmkHz/ZEPo96AxJIR00Y\nvNRyxa6HV8cjFE3p5G1q2MSTBANv3NqdHJfEmLoY/13AH3DUwGVtHbXa5BZh\nDuCFSV7ClC7vLZp9TGGymhN10d+B0g8/WQuVgSeqP2Low4jHOWuzm6cXNHb7\nYkI5jy+boXprbPiHgYal2VeIIZaVmKZ57RxZBP9EJ3uy315wqcKyb5tqKjRC\nYtSd\r\n=sysu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eb105efdcd6db8a73f5b983bf329cb7a5eee55e1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200412_1586675589563_0.3985385955306926","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200413":{"name":"typescript","version":"3.9.0-dev.20200413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200413","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dd38331435f5c30867f19c94fe7cfc567ec13e20","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200413.tgz","fileCount":171,"integrity":"sha512-wpPljcRc3uLTVpQ8mtKTkS42ipVnW1E7lU5iII+JSKaUDH1ymeo3duvMz8o2sCRUDoZR0SE0SLcinaZ1q4gD7A==","signatures":[{"sig":"MEQCIEqB08iDFmv3FfbzXKNJbZ5wssyynjg7FR1lt3GVskzvAiAnF0lViXyhkPrgFpwNPAb6aqz922diDD7S8UgE4x+C7g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53865200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJelBE2CRA9TVsSAnZWagAADTYQAJYJHfArp/X3kXVKwJ3f\nbGdE5IcWuu90MNfaGVrMPp56vv32xrx8dcDnE4AOTBnveUhG9K7xmHSUhCz8\nZu4AJJq/WjKZ1HHUhxoTuphmu4S2P67a9MnhvIO5xyHFaKwLL7V2UGHTHIzJ\nLGBRetrGwx46xXvwne+eHgPN6xW2QUY4rvJ4OLvSzXdFDbcPfHkIIiBLZ6jj\nSba4XLH6rV7yXbgZhNTQYxyBHhqjvjfwZEia5+cbKgv69ABx50nKxc9XEl6L\n1csx0MeoLFwsFCkmN1vDYHCsDNLVPnaEiy2yqPHhAcGLQ+7hg77DxW7WEMcC\nUsqa8H9oqpR2+wCOKzF+qme26so0tqdQnblw1N8zett396+56Wjfhfch7YxT\nnB5Iy42h2lSib3P+bJ96uIHn9dIeZDGt1u1/ActueStkjwsYSnJAM+zAQb1E\nTUmZBCv24GSNinMoVH9ebuQRV60q/r/tH6jpUpsUSj7fVPVCn5LWV96zzLbP\naIKcdcfvVKI1aw65N9ZDbvMrtLAhzd/JJWLiUlnULo8k11OLgeRsADf1YSZ6\nUqouKFa6YuMCUgcV6gjFZuqwPmedsJ5LSmKvksTKC1BlMui1vviHWLPDC8iU\nut4scLEAiGKKRYCcZ7II7HUblMzh3zUDNnVogJjEvh0ed+cFg2XnLPXoyPAe\nJ3C0\r\n=b9OM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eb105efdcd6db8a73f5b983bf329cb7a5eee55e1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200413_1586762037842_0.03285253072340222","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200414":{"name":"typescript","version":"3.9.0-dev.20200414","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200414","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"41f41f84b343c7ab98229ed85aa3bb88b3ddd68d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200414.tgz","fileCount":171,"integrity":"sha512-wqAPcJUX4SPnySVpP58Vh09b4ncxxHdwP9HaPP9YTaOGHS3PyychJcbvMBqlKVXdvBvhHoacVDSB0Agn2zu4hA==","signatures":[{"sig":"MEYCIQCfQ62NlmkB34J+2LMP/WtcZ9dAcjnNq3n54FZh3nDQFQIhAMUrUcd++/07T9PNkqgpYh0MPTHocW15nRQF4wb7YXSe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53883740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJelWKnCRA9TVsSAnZWagAA7agP/jx6b5N/Y0YU1FfWsYhQ\nKYHpwJ7gklCmpWvnvjJ8paL49smEh7fN6EHUoRYBGPlSdzECxW4s5hNv5X3x\n6Y2qiBIWBYk8o8EmT9N+rKq3LMXnIXi7k11GWUsjlQa4jPkvwRkdA55BX4aj\ncoE1j4D9raWAdDG17dLZ7qLqceTZTUtj31DC9Sn4e4zUNwZ1bK46aRz6vPvu\nYPRXKYeQCJdeOI+giCOQQvZVpq85IzqInEGVhKMMHfpjCORnOi47SnAG6fGE\nV0O15EijPvDNRFHyWz5XCew7M5lxypY34SNC0Ly9qKmKdiD8JVUSOoElHLIi\nPWvT/3hy+wp2bWBOaZQoJ9dj76BNQLwfFkUOYfcXDJLf39iqEDOZeIx/KSsi\nlQmWs66UfPa6vcUc2vgxz2LqB6AR68hQuFxZddEd4mq8cwmBNedFjOV+KEvv\nzwXPBzkOpAsXxWr6zO1dIfUfmJfqH7P+ojeKfYcz6d6wh6HtzfvT6NSUReyI\nV4y5yPgaGKfcok5RFKjoD1AVkB8F+GT1tfnbixJZspB0cWoE3uaToexg7OD8\nkIqngEINP4ygmXNRhsgGsyrwNPW/STHPSO+fykcZQI5O4/Chszwvz8DIbaHd\nTcfBqZA+9nr5/K2LMC8jjdglCVu3bqqnDXlsGAMKnRrPFFpfDc32xL1y8adY\nCMdU\r\n=VWgr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"edd4e0a42bc8bb124aab11ff89f42d72689faf4f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200414_1586848422754_0.12095292246912703","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200415":{"name":"typescript","version":"3.9.0-dev.20200415","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200415","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b0b69c2872ad97c9a9cfb3d9bea175a42b793c91","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200415.tgz","fileCount":171,"integrity":"sha512-2vSg/yiFGudaAd8y2qALpxbjgDQ8NjRptfLU/XJZ/4VFOHn63Ank8ETtxzb+6KHAJX6YTNBGeqwD8bwLd8wC9Q==","signatures":[{"sig":"MEYCIQDxyKiJPfup4ImXng6TEe366SMGVA0gh42XIfhshj7JSAIhAKOQTx1NLobgOVAjApr5WyP9mvwadcnrt4gFQ4WtE+xi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53887952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJelrRICRA9TVsSAnZWagAAuE0P/jY7wkwGrI6yOZ67eg23\nna2Xvzf3p7RKkYI5zJBlI1B9WoVvKWid5d7T2Ad4PKV3BrtAwjqdLYrbyeZ7\n9mN+MNU3aKkGAp9aENlOqHiOLGD63AAjIrCEwy96xdzjADilfJas9Ws4ZzRP\nNmCGztfQ1xtD1cPvWd1Po3aYwiP+wfeVkAS2X7xrT7R9UvwFAlYYF8NvQkDY\nUwb/gyLMt11JgG1HkCFROi9r7cWhB6Tuu2OBcGibTTPBK4rLJXFvDiOz0HNp\nsaDmbkEECSWueWFE90YK3hysu/uSX3cDZICQWIdZThJZLxTyC/Ds50ASZSaB\nKuAhsa0ebnEMOzQDYb2ckZdxL9fjcTkS18BqsBG0LqHhEGpHrAJaPdMzNsqo\n4EhCAZfVf0yMw1B8wXMdIyVjNvQFv6JeqX5D48m3hzDFHMoimw3bGot56LTr\nnIO7f4FhhWMJ1F0PCCk8SEDHqatErdHsv2MlaadjooAI5J/nQtHZ9qsHGy8H\nGGIpWc9DhC1vHsDSP2J2BVrl+EOpJ+B/2yHfZ0BgF54EAIGsCSRo3/9zshIz\nduCPXm9aFirJf7MSD+y9LcrIr01uYy1dzEG0t89sDvL1ImDLMjGkvnFbhoRn\nXdCheqeg2LIwIBke3cGyCMU9De4ha2Q6SgD/1zYAu7g9esnW2SwK7NVHg92h\negPz\r\n=rXal\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"15c3e99cbd315629e8c2c1444ea879a75aa22d8a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200415_1586934855984_0.05222447076558634","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200416":{"name":"typescript","version":"3.9.0-dev.20200416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200416","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8cd09b68d0ec409bcbd2d6381297d476d982db85","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200416.tgz","fileCount":171,"integrity":"sha512-rgcoUTlrV7V04wTXvHaRTPAWHyVB4+8lKo95CrY27tDscSnJ+bFjUzf4El7gbrTXkzFI02AWRfSxEW3PtSfLRQ==","signatures":[{"sig":"MEUCIFQl589Mv39d2MKQFmghTNXBSyRd8JqrITdaM0/PuifiAiEAqFXWYqp40iGUrynXVhwPdsa3ZqchyQzOVb5ERCPIeNg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53895754,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemAW6CRA9TVsSAnZWagAANI4P/R7tWOQQrkE5jpaJw6My\nyiSb2JDUvY0nBAljxkzfhjQJ3K2yNonvZ1QWWMsHmjGsxDykIka+gxaAlFhS\nLfHxs7+w4m3Xxg3QAIqaCwRxRUsZVY3gAoxQoAsCnn2Ht+/9vrQr9Tz5JRZ7\nLvrzKFY1tk9v9ZZOzSdIOo3DA/nA8N/o0zgvOIcpVHSPUwIZwTBSDrG7Mj/g\nRAjmvR3YeUgw3zSNLZ5eoEUicvFIBdjcbeQUXiVH49vtFtnELbRPMGOzjQ8Q\nN7TcW5gXIFy6NCuNY+q6ynwYedIhN67UBfFHar8m40Pb2g8m7DnJ2pHl/nZA\noWOrsv3fZcOp/nVzbGrso9mgtgukCLuaLMO1AjqozLKrNWgZfCObotMAEyG4\nAxPr9JjOc+5+9D6MypCZd8nRUZaXApXm+0qs7EV2k3yMXAuZ80nnHoTuRoJN\nfdiRoEIuupJbKAcwS0zJLpyPOHs+yg9VwNUUUzQl+ZjEPCVkUWsjRSG0H44n\ncWFtWYj+PN8kdxVGkLMsLIHb/BYGMqAQSdfYedWe0Pai2NZcOLys2VwWoJQF\noX+huWrttdstJ4Gk307D3E/r6hoTMOEkOWMneT/EXgqhRtHKK3C0ZMx3/g2j\nb0re4V2rSW6aGHKGZoQ7kbOwVyCC89RLd9amHGvCKs4gVxFEcTj1xyC5eqpz\nykkY\r\n=vdqA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"deb5bac520a1134e188fc6f01fa4f52b66d2899b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200416_1587021241670_0.6595043326696663","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200417":{"name":"typescript","version":"3.9.0-dev.20200417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200417","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5200e8d5b2ff754c70043d615b76e8760d4dfd40","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200417.tgz","fileCount":171,"integrity":"sha512-VjLaL/mz6HfZb76uFyxcMrT2HriDQErE28rC5g7owTmKGHnwl56OauZIIYqL0wQk6JkWCb54XC+oio3CQ1rHyA==","signatures":[{"sig":"MEYCIQDYhGXVNpKsmZQgCR5aNFr92/4EMBAQHjbbTedZ1BulbAIhAP+a6hvPmkEX8dPAS+t1v9GMRgm8c+OhQyEctkn5/BNi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53895754,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemVdECRA9TVsSAnZWagAAOsMP+wa++c8UnpY3g3EZQGQH\nvPQh6VGeaXKsPp/e08GJRa+31rXC6sQxCJpx2+GCMn5eZrY3tIrPgxvlCvyR\nikLlQRH/xDD4SeDxhIF8uho5jTkrRlc+NOyGg5Izu3/Oe4QJl8oWf7Vkks/m\nUhr4A1FyjtuWTvQ8b/9bEaq8Au/OAb9FBEiYN8n9JBxlZq4aLFmQRn0rVs8m\n7FnGL3+y880o3lIeA/P7x7hq9vm8jzqoZbnR7Om0tKS3CIdvgGxobGuUeHDn\n8NuyxtiTsZBtzmsb821rJYTkxMCKU/QMktUOo6g/ROcpxbtQUlzesdyvRqJo\nlgh83HwkaAZc5QYU/u7R18aZWTnoc7O0sr/ton52WoAdayfUfrzpUrAuPKrJ\nYKhA3Hl90iftZ7bi8cMg5RKMKPLBMAvSsB6gUmz8XJ/Y4rdICRb4gs0Zki3E\nAHHP+u6eJO11iE0gXGQ/LnpIEEuRb8znyLY9od3NVreg/5eeOnkUKooORSYN\neFmsrWvBIdThdW9MpcZNXRC4FRgsIbdpK8qWL3VhWZ9O1ZGGImSnI7M2MNC8\n76WFj2MIygVTGaQLVha5KvIKbzGVVQ3LBbN+E8N6bvVsT+iN8CoLQn9MXEs8\nYAus7tA7ZYJFRSEVzvmv/79sAN3oPc6oIeb4iYtjMHNHqUFOpqYQiNq/GFgB\ndBa7\r\n=KSEE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"deb5bac520a1134e188fc6f01fa4f52b66d2899b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200417_1587107651204_0.40643325618121917","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200418":{"name":"typescript","version":"3.9.0-dev.20200418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200418","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9490fb0460b98ce495872ad3870a49b965a9bc2f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200418.tgz","fileCount":171,"integrity":"sha512-AGqfPDWkPrvJaolbTCxrmLUewBWXfExRH5i+yAuzUvXvhJhhBVLotFMDCTe6uejs1S1WdX6NUqPK/qBxFYM58w==","signatures":[{"sig":"MEUCIQD6f8/tWh4zDrMbkklBpT3jNgu+/qBwUNwdtNLsjnoGewIgDqDFlwUC8yaFhy2RX5XPdxWv64Jy2arb+YJ5sk3XiPk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53897250,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJemqg+CRA9TVsSAnZWagAA1KUP/22fvWUqPLl1QbiITIGA\nevfpOP2dvS1LY7mUj9GeR2ciUlIBLlnOhURpxXVjDe1Ye0CvfXRlGz8mg5yf\nXwa8Cd1xnPJ32BbRpMC2IiG0uPWA2JZe+m7dwGcrgqcCbYkg5zyoLDcy5saP\nVuCXFG7xmOpfMS2Jvnq2feNui9uiV8q1rrRrkI/+SYoEKa98NTCFVLpbE8Ev\nGg34Z+bSlUWSosSxgl39o6RrqSUf9DEacovtKxBPGTKAaSB7BN8tYUu1QTh7\nkeSd1axv4h3N+onDmDtiWu9aSpiEhPgv05tUlUTSkg5epYO4er/5yuWjd8D1\ndUVldksxmXMpNFXLf1hhF72bFzYrmUY3sM4AVic2wyG0BYSBmB7q+/lKJu4X\nnzk1AU2e0uAjivnCM6PmHMNUCw0Lke8MUz+RfCxzu02SdIZUG5tQYhzbhJtc\nPqgeq6DtbZeCrPwGuVX0XkAm2ByP+ymYEqPeCfdpdGUmOKUrFticXXKuNK8V\n0yaBxCn4nf1YoWfvBwpNe+G2IkW9yPi9uwRSiV5Lp2chdeckegJTZbKMdNBv\nW3M5VVQHA99aumRBpQ8FzK943Wqz1pY42j0AISNjBvDTnTCt2xBT5QNN7sjw\nSjoRuKwKDssbvmZtfLCuLNd4NoOl6CgS0syG/KEDQzv0cAaE2MzonIRH3oyT\njY9e\r\n=MK/b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b346f5764e4d500ebdeff7086e43690ea533a305","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200418_1587193917421_0.30836626098899345","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200419":{"name":"typescript","version":"3.9.0-dev.20200419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200419","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"09b709f3ba1ce74760512523dc5cd1aa251ee651","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200419.tgz","fileCount":171,"integrity":"sha512-mSBTfYntTYz1la6JQ1UBFoW8keQA9p8HwKEPjGv2I5CgwT6xHjGu8BSs+QNpADS0l8n/q27r/UddI1uoI64v7Q==","signatures":[{"sig":"MEUCIQCm5I3dLZDEgIGI450UpxQaeN+mQI54+uxbf5NDlmBA9wIgb0HlneCMD9ZJrHzsxRc5cobuC/+oubMBQqCu9+1MOHM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53897250,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJem/oiCRA9TVsSAnZWagAAIuEP/A+T6nPfUlJ5bsKcycWN\nA1/FdMCt9A0fWpRnXvufetBkRj6G2vMV5cKJ/mTRW6Vhv7UoQQXKYawQDJvO\nEmnp8SM/Zx8JY/FOG1ykVzFUB6YCJypS8DxX9OJ8nSDePcQFemjF5mpLEji0\nR28QuT2GtgV4g1VT5+u8FtaWWAi/d+IruSXs5FhkdyBgeXP3XiipuRnKDHHS\nJ/p865hNJ251MiDIbpGdE+uiMPMlRu7Td7fHn1mtnCsHnAmtEdz0HN3ixllR\nQG3iVODBzm0/5EBxZk8V9DPkz+xG9fb/ChFq0UCBAZyXe+odVmvQZSYn0zCg\nPOJcrgycjoe64FVEPeDYxIW4HZ8vqQ3hxp0D8VS6l9ziC/+b2JtXc5eBBWn6\noZSbTbZVM7Rc0qJDc7WYCe2i+ISkRtAA1h6CBGYTqTrtJIEDXetmTckjZw8M\nBUFeSjNa7yYsUI2Xb+yXb+OpR6ckDUK6fyW2Kyj25SrLKp05XgA70VFaM0kh\n01LFi8vBD3jMZQXZwbncR4e543VWPZzCmoWZ9AlAUwJcYjCM3Y8r72RTZg7D\nDvAmxCyIedQk9f1862YWdOzIPehB26VZfQS9ogV5/yUe88u7Sbyj6/urQaqS\nVyWu9soIid1oBMiqzHu29xuxXORDaUB7LCbsx4K2HrpoOkuYZH6nELqdVQwE\nHTu5\r\n=8l8c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b346f5764e4d500ebdeff7086e43690ea533a305","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200419_1587280417145_0.7801497760630873","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200420":{"name":"typescript","version":"3.9.0-dev.20200420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200420","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"99c2bc0936dbf4479b0b5260d80475ed494b1532","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200420.tgz","fileCount":171,"integrity":"sha512-36MW6V+oXNnsSgliSjUWvtOkO21g9+iFGHPFv+O06HsCl3dcuqzBac17m8xuOuWo1LUlEgS6yAnD9fiVgvmCfg==","signatures":[{"sig":"MEQCIEIWZr4gHGuj3ALZIcgHb3qKRqbAkWkv8bfg2O+T9UJQAiAo683TPrgj1X/bDdmqu4avGPIPdar0U9n5gS5SipLjrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53897250,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJenUvZCRA9TVsSAnZWagAAjtgP/R+MKKPMfJCzMp8VHBlU\nn4D43jCSA0zk1NIQkzXJUEEHUh+OZKft5BGCXBwZzohutT0pnFf1jiUx19Ol\ntUwGo2pmSx3Mc9ahAr9MQjeLstFFouhUeaUORJLwHgy3ShVbIy7MjMRZcVG6\nw9jcThd33DESclTp2L1rl9PsG+8vWKDsk2ebeP4U/nqjwot4kWLmtk4Nlwom\n8N2HJFop0iE83EyO5JhBGry1YzjRPukdS7Yc6HNkS5i/T9LZYVBO+y5xNg6V\nRJS2ebkuE8qKmb/aQwAaNbqfeh+8Dg7wTAgeZugcu6TP7r7YyDZ4vGHi20dS\niMaNnT6U9PTuLxKZj+rQfBisgeRpHP+ab2gz5A1/DXdd1YYE1ssJVdK/kpoo\n8gDdSRzlwrnqg6wBnb0W/pupPGFVZbwhEx/mDkTirt7/tayeQShHvJtcj31b\n70tCATbfn6omrIy6Ytda2zXcTGlnrM2GT+HgY6rTgot/UBh8q1zERxIOofSQ\nMcr+B69qeB3FEAC4hRJjc4uOvMg+yvmB8Jz1KxPyeBIEmNwVCM6r3UiyjQ4l\nPaRsCG38AHFrEp6iywTwmvR3mdj+SEG30KHlFHf+YsjjSbc8N1tkmNFufbGl\n0AjKbsMd2IttmwL+0Okna4dsAD4Q0Cdb9vhYi22ghnnu+dCjZkRZwjKzNDEj\nv7po\r\n=Ayzw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b346f5764e4d500ebdeff7086e43690ea533a305","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200420_1587366872466_0.27413203576357636","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200421":{"name":"typescript","version":"3.9.0-dev.20200421","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200421","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b008150249c5479d22c356ad8f71e5cdda5ddb2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200421.tgz","fileCount":171,"integrity":"sha512-Mf8D018c5yChmOBnjQVovxAVHzBu8liij398dF+Bbtqg5/5b4dazkI6Ervdy3GElL8v43v36tm4uLNHyYu9dLQ==","signatures":[{"sig":"MEUCICFkdKPLYaZOeWfX9xiPFF1kd7szljeemkmfLWyzYml/AiEAvtvvSZEiLeMffOlR5HOhxZ8ZozoAcVxuPBxmoNBNJj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53900591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJenp0QCRA9TVsSAnZWagAAVzIP/jSHFn01rkkm75J+06Jw\n6O5wi4ogTcCVU79VG0XCjHoNW6TfjLE1CiV70ix02BxV7r6c1EZfn0MTIPfJ\n1nJS/4bKbnU7u6SIVvc3aHBvUtYxU84Xe1FHaAZn78ToNRK2o5U7C1sOfPF4\nX2wkiSQY1shlwZxdUUMNhny4q3/lILf2LB5PtRfFQvr0I8G8gg1prZF3dFjt\nPT8uXe6egEYRPiQM+/FNk5/Xi2CPf9vPUhEkhneLlEndYZUh+Pn8bWni1BmE\nDgfIOF83IFwa30xKEL3oBXMOV07g0h0Geuq2NjH5lzRx3YgT7+9e+6kNpkTg\ntONqom3h4n0sGG1sFDO+CZexVpv/TULCPpYcb5sT7mGoHDdbF4kdTbAeqLAd\n88lm3fytwR7+ntCJ6fp8OBq5DAuG5u+6zaEd//qFOqF9Nr6IEuLnWBF72DNp\nJBeS/iNt53ySpYpEMsbp4XEqNyLr2MVJPlaNSSklCB8wh0sfdBxOQWGCx3LM\nv1g+aDDw58dFpkPG7V3i0rgtk/Td730y7NzwG/r96GeaphoppvdzuOBAFy0d\nRTJjlBxrl+qYWZpmLtrDP6CPFb0zuz9zsJ6+q/RZpFrU2C1D38IJ8YfzZ0AG\npuHtVpOmbOcN3haM4CtGSNizxE7aykYfcfnQd+PFtOiyQyIyDwvDKFNjMSP3\nnkoI\r\n=vaE7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9684bb21e1afe7cf08611fa0930867bf71bcfeff","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200421_1587453199200_0.8313010215451015","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200422":{"name":"typescript","version":"3.9.0-dev.20200422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200422","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e94b42f5bf1a29ea0df52ad38faf91c278252c84","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200422.tgz","fileCount":171,"integrity":"sha512-zfFmKSi+oqoPl/wYc12gGFHw5KtZ8hhMNTHrspoTPUJ9iFvienUQWyWUua0tgwsmIfR4yytLnrkzKdxs/NLwGw==","signatures":[{"sig":"MEYCIQChx8zc9NrorHMANwCmpWJgCLMcZwyT1ORHPsDIiNrWuAIhANZfe/y+5W//bGgBF16x6MoVB6P++Ji/wjd8/hRgkvhu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53917299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJen+6SCRA9TVsSAnZWagAAEY0P/jlA1rt2RBSQTpjWZcoR\nkQPu1k7bJzfSW7aeMCHHx5d7T6eZN4bbvnmeOvM8/Vh4v1WFhFBMwame8CNW\n7gV0pk35+EwumWsXwKSKaqJYjxf4E34sf/NB+RZQWDZOXCf425wFsJcMGeID\nHtMX4R1iyqQp9zIGmdapZKnHpkApWJit4obNq+Zf4Nu1MLALQ10WtUDqGSOx\nCz67wrM6a3cR+2P7vutAXCkXIGwuDmnLelkWBCzJxJQ56fV60P57NQ5YIkNx\nIat7k8NhPnrZNnvzxEraTd1o2cd6REbWXClFWeH/AEShayx9UDmoVoJTXTj9\nXfu1G7w7YWJ5m7gQmt+7eOOoA56Bka1ANdSNKk+IoBxk01gXDtwH2jqe3oOb\npq9Qr7SC5/zoRfNQwISDq8hwpLULDA/EGZl3eTYucezhZNAd3rLp9hRyvyBv\n9aR0pC5IQkmbDi8fwKiUpZgjJjZK5/G3uw9GwFmJTOD/kbU34CQepga0Q/Rx\njzHhjcjwJCpn2/LuDdM5Ru+3i3OoHWelY92javvTv1X65iRuUiGH45Pci6VJ\nsRKUnvJx5EaqKgl4N44OqiH7mWr/ApuE0rar4dDKzOD9ZY0d5dWyNznrK1Gi\nN/11kZ8C6Eh2twN5AMnibLlU4oBnIUD4H/p+7U/TcGHkzRn49kmU1B7iSDxs\nOSDa\r\n=o2FG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"052d3f9fafd7cab25b1d798e14c07fb6df07be8a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200422_1587539601562_0.6899705186775398","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200423":{"name":"typescript","version":"3.9.0-dev.20200423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200423","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3569bd92d57ccf0b389a08a5beed1e35c193ab16","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200423.tgz","fileCount":171,"integrity":"sha512-BZuOaEN9L3glTWfvzDhRm5ElSGhK4+OEC9Fr9aZTcWbNfCAYkvEqq6q6B65riIzputiBqeynheuX4HAjFMqw8w==","signatures":[{"sig":"MEUCIQCvbAtFQdrHDeYA0JPFPFbYYLtDScH1PblSfagqx6b6lAIgcj5QW/WitF3lXsvFLTQsT3++t++VTkm5um8+PajaisA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53924134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoUAgCRA9TVsSAnZWagAAYhIP/3Gb+AGAKM+b4UqIk17Q\nDGBrrBQMvkV4yZsCSZm+ymFOmvKhnqduSSUK6ai7tTl+Gd7Geo+vU0iMT/Am\nrFwIW8kAq++Jm5tCVUgXuh+BhIQwK899H4Wdf/iNzQ915fiOrZH2PH4TkX4h\nJycaPZFSfqXmBUcnIIhtoIS3J5K8q+p2dTNIbLxM4vTGIb13VZXkRr8fmkEW\nxqVNbXVOIWv3kTkiKhjqCvNKBh6PVw2ip9V+xGNB7ZpQDkYfa2aVJu+Wi6U6\nUrCgHtmB1nllaAp3j+elcNsNS7GP4/TLtyjEUHDPISrSoDM7RrJ1Sek8d2OS\naDVDHvCOPIBewfDQd0FkADPXG+APw5mx+ayegwBPlyWR/kH1uZKucRpsZs1i\nWhQNEhp3thWFGlwtJWVuc4Lj0GDVB+CwXusQzz+WKuCNfmej1mVjrPcsD2NG\njbpkjbAlEkoJ8s8P0jqBMj57HOe1hGbyzItoEvqGSm05Hj4qxIhVy26ebsi8\n+5+F/shOyZPimdQl5D+SspuUJ0F/ER4t1g4LzFbK6KmTCnGdbdYumpwcVcug\nnhQzwMr22jOz8NRlhq9+Wd7QBwEqYMPf8ugRmnyHwgJPdYr6lpBmcFrUkbpj\nsy+F7iYlsGSfQocapudIX60/7kTpR9YFp8Tg44Mhm18X0/2L32dxOmANbBPh\nvP7b\r\n=OsWP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c28bd6579d0a03742799d7310a1977843a222750","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200423_1587626015042_0.032086482074559664","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200424":{"name":"typescript","version":"3.9.0-dev.20200424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200424","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7f1be64ee9b9d75a5bf9ec55d900787b83c99023","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200424.tgz","fileCount":171,"integrity":"sha512-dlfK6Mtv78aQhWs8Umtq+twEP051mnXStu+TwOYlvkqMF/hdG626I5PMonLx11gLL2NmOftLTjM/ebAiAZqx7g==","signatures":[{"sig":"MEUCIAt+Zxr4WQBIFB5TCnWszjtf9GjvAnjvIU2fqzfeaWRIAiEAo9BNwbwoe94payNxC1q7pDWK3yWZr433+8LSFfXiCJI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54048839,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeopHlCRA9TVsSAnZWagAASKcP/RfHCoIKv1UxSv4ouchs\nLF9qCC3NhIpkw1C0ISaq0N2RuHT/1Dqi57Zu2lcdcAyYZw9rpLQjX8uEDfkF\naZ9Z1rFM/pxdjI/NYEIET2f6ZR0MVXoEWQywKxLeM1ZcOdFVyUPnpdbEcSir\nx8E2SqZVuy2i5/eI3k8ILc57dKA4YF39SuPRofWnJeX+g4Z8DPzlN+eCzWZP\n2yctWf20ko8JR1WurVAa2XTp/GzG3BYN8DGGBwm24X536I1YOL5/upGDO4Sh\njJZ9swTxpUgALd9Axce/ngG11TaBkQKO/Dws3XMkuiux3lkg9ED68Tb95r0y\nETDHJ5sQYWP/oheEUVGxF8YtizM1df2YYInzIO4u+iLyJ37M/4l3aF8Q9niL\n62YI+1XbWz9em7+3fLlsXQaAt+R1l1RRbq/lhjxYKoJq6/J3EtpUIM24sm2Z\nTSs66Ynq1jW/WMmsCsvq5E64stofEtzpR034VIXcprrFuxEgp4SkJxW/iWwJ\nI6EKYOmfWzgRPxdsGHzg+8wEowoK1EqfzPkbgJSd9MTGN6svOjvLNyGfTNmb\noo6dGmQS4OVgjEXmMPD43CyrJmRrmJHbbhzahOn6uqKQgYxHegt7ic3Duuox\nZXJH7rwDueeyTLMNpkbvIJWfpw3N7LOSusXLBiC+aXxlHWauVABpcc9mBw5O\nxrHD\r\n=+W8F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a7d6825e25b44414adefdac0156b5c9d92a0d18b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200424_1587712484274_0.31642735335954497","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200425":{"name":"typescript","version":"3.9.0-dev.20200425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200425","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9b6bfc153b78929adb731737f2cce465b02d2fc2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200425.tgz","fileCount":171,"integrity":"sha512-YjP3XoXMSJvza4COs+jXEu1ctdG8+vnieJvv6xJB5iFJIRpzSIF0YBTLn0TOu4oDZe9LyTtjMQkV8k/eemBnpA==","signatures":[{"sig":"MEYCIQDnwcV3B4V4E0U5dxi0+1XtS6UtaIzpr+lEB5AMc7E/dAIhAPgdjGzw4n1Rc7TdLJKeko4UBxcpC5PqklCQTAh1EJ3/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54086082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeo+MVCRA9TVsSAnZWagAAhP4P/RGhwgUdMrH2d9Bn/aZu\nLZ9wWE7xaNs+f4jRXzIzcxz/iKfXp1ffWXuXb1pID+j2DFtVJdOqqHDxaohq\ndiSt5JWZE/CrBcNriLMgiPGtmcZ/v1MOkTLET9YR1dmdvyEBFeGTRIwZ3QVq\nhi5FhMY5Qgb28JN6ftdgvLxcJTxVHwoJkv70+tFcZKc3Z+I7j53AeeItSFOd\nAaO4/jAzZgza3ac3S34CQuFght3l43t6iF0JuYCNI+HhH5Q5e2ueaMC9jwaq\naYbKVPco0+waL9yRSbqveuyWrMGvguZZEEaKpPFnOdiHOT7N22Ztt/l+T9jT\nn+SMbq6B+tQ3Zwphy+Of9mWnKHIMs7enKEu7M46urD0PYRzoUwcw8MBrex/H\ny1LSvIJUYnainjTscp+jCY+z49isIikhctHcTty8ZnTHJx1T/Q5zzAmWhEdl\nHX9tln935G94apHxfAvWSbNyOPpLRugvhmdR/uf/DZ5eHo7t0sDMk2Agtdo5\nNAKmFskGmPxcvIHr3jjBTEwimjtKGxtQwaBtGog01PvtNzwmtsczHyt0DUY/\nMBw4HJmaKzeNIBZ5HcAU8uaafBpDIzFmcJKvpTP1yjoOkT71Rkf2Aw02m/R2\n2uK/fVerh3L71WMulFFqaD1Q4U1HXdcKaVKzuUzp6jCi8HJFlcgfpqPx2cFs\nMAWe\r\n=wfhQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"468ca9f87076db70aa7d0b037a73f5232b6834e6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200425_1587798804480_0.6456706089787403","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200426":{"name":"typescript","version":"3.9.0-dev.20200426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200426","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"096b132fe7bb25432c3d2220c64289db18d80caf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200426.tgz","fileCount":171,"integrity":"sha512-0MRHJbVaaQ0W2pwC1v1Z5u2ucgvXC6nV6tIMZDgRCgwn1Rv+kB/lVMaXPw86Ug+bvrAr+IHprlRTPB56JqYRvA==","signatures":[{"sig":"MEUCIADQvLPyU400NTQmBqxbBNz8H93l8rlW6MTGpcAIH6q4AiEA2AmQ5ZUQ4uJlG7QPLxSiTnNvg3Q8q8EiR/JL20n/oUw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54086082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepTTyCRA9TVsSAnZWagAAd6AP/2jqqBkekcMMxpqsqdgO\nt1t2j2XjxmfwzwiFctXnvSDoR8qEbI21P41PMnwHL2/diqP+kD+7AwHWCb0g\nFxmxnyqIwYeefUBTD+n8HKhfX0EyY48/I6TRAUSHFGkAwjjBD78gpQPR5b/e\nq/AJyIon+JEzlwyiAiJWSRzBNrDLH/H4kzTabl5essHR4k2oCUJZAKUgdw5u\n7sLjSMPTm3jAXk2HzcpAlTxiNxlK2Jq/42TRP6fE16v/WqWOrnExwM7JZttF\n1dzRsOiYpsoqH1zqyvSlCAnHcoIoOJY6XhWFMH7tKUl8tyGk4JZ5qsNOUKYJ\n30Rx7YyIFU5yi7B1riYw34makPSYtyWlyeUVx2aJ8VqBLvV7ZTuSU0EGzu46\nWU4112utBsJgXXAvtToC9X4/zLeP7HzSPEIKDunX/ZaL9JBW4mjySJ82q3dD\nckMhPrEvdDb2KaltFf0MD4+u/PKLnZEXWZxruwL6EXBqloC45YLS+TlgtA9P\nERL4yXWIQm4gArc/fDSiW2rBvrpK3qDlF8uhdMEMwD/FNp244xSeGZgxdIwk\nZ5kQARcDVxYov2e17H6Lx7o/9scZxxxJwJd7wOrp7cTZYFpZzNzOy5wL5+CQ\nnDMLP6fCBFOOAQ5OKGeAj6xn8R8gAfrRTHn/QiC9okBAeS8Xlv6Qp3q1aVUj\n85mj\r\n=qfg9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"468ca9f87076db70aa7d0b037a73f5232b6834e6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200426_1587885297587_0.14351817068146522","host":"s3://npm-registry-packages"}},"3.9.0-dev.20200427":{"name":"typescript","version":"3.9.0-dev.20200427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.0-dev.20200427","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e42d606d938575dfb7b0b66f04a31b5f0eb0be57","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.0-dev.20200427.tgz","fileCount":171,"integrity":"sha512-ja/GhL7BHT+VQZiLoYMGJt2CP1Pdr0EhYefv4LLw4tVooSuCDB8SDKT/i/HwsoPgQ4ZaYfg1vPl+1RhiO3bwJg==","signatures":[{"sig":"MEUCIQC+WRN+VU8cu2nGMOee9oPo4vz1lFH+DkxvYetminpJBgIgJs9UGolj2XA5MfCMC34kbLxN/NGUJ/CepUwpweHbprc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54086082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJepoX7CRA9TVsSAnZWagAAMZMQAIpJZEM5u6oOU+yIJhhm\n4IIVI8oCkNu343VBuf4/mtrt7NYyN74eTN0uc9GCIaNt3zC0css43MndZKl+\nJ/YRSM6NsIqf423FknMY3UlG9ve/fdFsWqLcVaGXU0YaJVlwBN5wATZF9aD4\nxRAIezv/diUPlfHSp0wPI7hMofw1FAxt29XQJ9Jriu2JscKme1eFjnk5IdFg\nTFUA46VhV90GhjHrH/m8ABdPO5OhNcTxOovxK/VTrXoU2lX5sUWGnl1wB/o0\nUBberrajHoetkotiJXbs/tN1oTE/1+jjOQ1ly1jWVf8TGTrzba7YsSMVLPhv\n8Ww95qcM1t79RvpF2He66iKw06gIBoT0gIv9PQkHkXADmFoDzKkgeOkJvSzg\n0RNwAKqwp5WbXlHrt1v43RTK+2b8ZvIygoVuYD89o+mXJ4CiOWRKJ6YG2kAM\nOLIv5+HRHYhVXEoRrJ9vzwsAuZx/cSpYKdgzxVmJRWGqPXQPOV6LWuCTkDNm\nJIg6AMHbk83GwjauxIRu2hElYNMvcI8FU3Pqqn8xHwsTTLyQp3j6NyTEowK0\np0UJg6S/yhHbC0Ny4a069OslgnDXkQZg5W7KvfTabUcvtt2CF7mjGK28QWqi\nA9MBWqaq3ZyOipu+nz0xOVHcRs4g2yGnb+RcxaixTZqKt42SGpZRVj2g4eA8\n7VCV\r\n=4D9B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"468ca9f87076db70aa7d0b037a73f5232b6834e6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.0-dev.20200427_1587971578753_0.03476662408646192","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200428":{"name":"typescript","version":"4.0.0-dev.20200428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200428","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f4fdf5763961095ad5bf3837fce5493a51bb1937","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200428.tgz","fileCount":171,"integrity":"sha512-dJQl6kDvIV/UHA6fnio/rs7J4Zf60R6xMk+3ukY6DP+jRgTrdFXc7BHUoSP5zU1qzxeyrep8yTxYtlXqzsCDcw==","signatures":[{"sig":"MEUCIGzh+kCZ0iJSJzEfJIvHPfcejPVNysUlgo/lMBE3orXGAiEAppNNaZ5E1it8PEijOHjQlgg5LE4OU8OploJUtSe4NWo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54090552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJep9gICRA9TVsSAnZWagAA5xAQAIAVHOyJvz14SWoFgePH\n4hjdCDX1L1rSomHEZIQLqtVNM7ANFBFJoCbb5T+TWPKDP3/aZLLjZRwPQOHl\nwXT6VdEIa/d4XFDmurZU+SnK6VSNUdcg+TxmI5+/hqnoV8v2QqjDq2M9GaTH\nFBSgXJK3++aEVaN+ZKJQTsCwiXPyfiq3+a49n2J92dXuaSSnDTWiZBTQTH8c\nYLJMaQWazdUJqe+oLppjRB0dh+oL3y2KzAY4SAT+cFCQcKuheDspnF9jy7Wt\nAktPBMeUv0L4tIzi5PG+QSoenqNFiO+yUyUVT4Nh++NEgodsX0XrCpfsvqy0\n9qP61tAY0AwU4cDTchWDP85zT0ygHvPE2u0obVuG5z7xLFbtEgAc2wPPYnaH\nlbesWvvUESWOTSPZxs9LRALNIzk0bWd8Y5MRHUtGL0F7uajCrvL0tQXidX4p\n1j8wjdWEsD879pr0FGnR4eCqShPAZ7Q1uGH7EPw0CFYluN2MGjqEXnT8hBOC\nXUDuNsv7rF+cTCnzhQPD0W9IekOMo8EmZ5V6fAz+agkU9oDdDnmBVEGX0x+N\nvB+IAccsQXd7yThwuUyLb2yz1CBBiJB/AZScyWJtdhhwdxc5QKBAI+4HRKxa\nnYdev1zLaT4g55ubw3R5RjxtIz23TAACMT4qf0QKnieJWfZMNg8BP6gh4Wmh\nZ55s\r\n=Hi+P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"167f954ec7cf456238cad4f2006fb330c53bba8e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200428_1588058119303_0.1303819240406363","host":"s3://npm-registry-packages"}},"3.9.1-rc":{"name":"typescript","version":"3.9.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.1-rc","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"81d5a5a0a597e224b6e2af8dffb46524b2eaf5f3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.1-rc.tgz","fileCount":171,"integrity":"sha512-+cPv8L2Vd4KidCotqi2wjegBZ5n47CDRUu/QiLVu2YbeXAz78hIfcai9ziBiNI6JTGTVwUqXRug2UZxDcxhvFw==","signatures":[{"sig":"MEUCIQDey/ZMp0WQwDUv832mDxf+wbb28ojBfpMeFai1OVM4PAIgG7F46X4WFRM7QmtG5Xj2uHF975nC0g5b/1t1Pix1BNU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54085577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqKyPCRA9TVsSAnZWagAA2BkP/0vGqux13IpfIsURkX8o\nZ3jQ9fBsPpZqKKqlJN7STBsBYa+iLEi8HZCWipw8xZVOcD5WEKBWAZtAxexz\nhbaByj+/fusjz75ZkeGd59jSzEVhxh0c9P8QaNjnsn6zVEpABQfcbD0lFLjO\nn44cYtbvhJFIEL3+CDJVDqoaLwde74HvWp+eagWwbU1eW69nArq3raVOQeet\nWFKPLin0ejVl7s2BM/frcVjQle5xDKCzsJ1ZWMr32+FtyNHaMjavyb5zQ+3l\nraSLK09vhIIcMIbv6T5cppCz8kHrR2Kulyvb7CKT33080WozKbexdEetc7JY\nK8UJAcNHPlRbHf/cdbr+UH9HHAuhoeaORw9m+hJDUl1uq1Z3vJV0DWppN2Ow\nXPyq+Ik+1qiiFVdZhGoZlki6cZ0aQcMbLPw7MnLFIqfgbEmERg8i7+jAFSbJ\nh8+sNWOy3CFG23igI9bd+egqq1y/JkUjEvpWHDSlHPwOLhT4AaFgk3fFzBg8\n7er0veUFcMS9TM+eJlpB1WuefQFNPWqNu5C2tRi9W+QDzOl8zIMmI835+Y2r\nNGuU5QJSSVazNz+mZ9cycOJrU9TOJPC657gDLRDxzQ9YR4VUHaxFOelRk3bX\n0dfOJSgfrnGiRBFzOYpFdjZjvfLqQjxrc5XdtWRwcFaUAAF4QgDaBNwR+BR/\nBoNK\r\n=c9fP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.1-rc_1588112525856_0.0072956193584781115","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200429":{"name":"typescript","version":"4.0.0-dev.20200429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200429","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8af7f4e8aca5e91bb7cfef69b4ba96b3deedf4f3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200429.tgz","fileCount":171,"integrity":"sha512-r5LFE13k+4K3Zw2YNa30McHp4EtQzGTibFBib7yQWkO6oNftBlwEzgHcX2+KBA1S1FI0uZEoUOuo6l82R5sYgA==","signatures":[{"sig":"MEUCICHmeb1LwEekYwspfixp8LWsiwg+lKV3nsJS/ILN4WK+AiEA/0in7G1tQMpD7+tcoEBoIlpnGFkG0oZ0agKROaKkZS0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54126912,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqSksCRA9TVsSAnZWagAAPPMQAJzZzv+16YqdhS6dS/0U\nbVTqKJMZU68nUr7nV0kjqJOURGO27V+rP9KSkEZX5NAMCZGzpKX2Ck9xBLyu\nV8KSGtBkXtvaMwt9ZqGyQAA/7rxN0tr36mLjUeG7YQDxhBWG2eF0IwlUgI6g\nqTkqg8qivjnXN0byVjbtHeYwTW4jgJUF3ZY39B6x/Jp3vcNlq99qlJou4p4i\nOMpqF5T7DTndEJnFK/gNLaJ5Eg5g8jtH/IxucdaASbaNG9H2ZX5SjjYq162R\n+uAhMdp9acfHVbubdTmKt93nAvRKhnyEGY2ptQWwFYH0bYBdBjbX5duRjMhG\nvBr1/+4DZbL/uEh7P5I68+Bt7O17E8EtS+/tQQ17HjTnte2dtjeJzloKyvuN\nwSEFx/rGdANP1lts15MEuFPeXHvLnksAJyUsNjuGONquyRnf5hsgNJ6HXJry\nOGDYU46YXcBDvJyJoLfekFuH7x4FLXS7qgKC8MvB5dNVTRBOO79YSmngA6Fp\niJBfZ0MFPCNB4hOvtCx5Vx9c55Z9AZ8BQBMGJyMSshY4pObkm7imPotuNszo\nrY8i5lqChHr8f4K4JGy9WmzA3+sEzQgkLzMuXET28wp9dVaR/zkhlm6kMOIS\nQdaMwa+NVnC7vqNoroGidpsgu9fgjeF8rZCJFmvJTxUqaRLntizX93F0972T\ndS7G\r\n=BAhd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d9ad27f2dd17cc1413b7d442d2915b13e0347d3e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200429_1588144426688_0.0375524039256645","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200430":{"name":"typescript","version":"4.0.0-dev.20200430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200430","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4316bdb47f9c7339f3c6155a7430b461bc62b595","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200430.tgz","fileCount":171,"integrity":"sha512-cF8I0/7zTJqcgh2Xo8D85qKXHJb5Sy74Y6emU6tKvydqhey0BhEwd4BgnOqW9vP8+ZMGioRYfED1lIzZN4g9dg==","signatures":[{"sig":"MEQCIBx/H+SI67TgUIBkscw446w96Eqc7DdPPn1eCOnbpuz0AiBXU+nT9eHvsXdEspMiXHfJSNL7+g9BZgRg3w2Q3DsDMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54133272,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqnqsCRA9TVsSAnZWagAAqgMP/2pi7sdfprTDqMtwVWxZ\nkD+1Fvsl7aDkYeWW1oSGub1XktSTloRRhjtywa6RYGIsQMa0YGEEz+iPxB1s\nTyHo+GmrhLCA8VqBknJ2W26Sp2hw0tfwJryMLWR2XSU2kEHTOqqkI3ccd7OY\ntVU2Pj5yGxp6/pJxTODIbg6g3eeg8+cDBNDwgFFNJsCfAf7d7bYl1+IlW5If\nflczJ1nUVRV7FI5mr88QBgTORwoqkBAKbKltuFmbasHsXhudh7vtRSSZ8qbD\nCr9cLa4iMVlQ+jREBMRcRTdxBX8rBbEGCf3b598MaEfCFD8swoTxCQklzvqw\nZ4oeVpNuAAYakJLWzlRpY0ZxBiOMimKkIrHQpBdpMXGLtQqMUWYQFsB1C3LQ\nzmc/dpeKSNamvmqllAJHz4+ai/CAcXvwmoFqIe2l4YR6MkzxqBjR0L8dJrqI\n2WFa/W3+8QGY2D8Vom1WpBzG04Z9oOe21WIb+8xpCrO/sgbPEa77DpgaqGQw\ntOa9K44iH242PwXBzL46Rtn50/aFqH+ftyeXENzvgzz95Z8/Lh9E8Jv0txiR\nb4PjnSxe/49YVyJdw8RBwPd+duTtd0tMj/D334zfIFRZoaV6xzuFLF3a/9wM\ntokHdz2IfWoWmz9pKHPsM12lXfYvmUbAbZFzKCevJnMozaHcrQYM2Ao8Ya01\nucOu\r\n=PgzP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"64d6a1e7297fab0f3e769c0a3475ff7bd68344fa","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200430_1588230827757_0.6020174556317908","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200501":{"name":"typescript","version":"4.0.0-dev.20200501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200501","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9a54727bd719102d947a5ecf584ccc985dccb94b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200501.tgz","fileCount":171,"integrity":"sha512-RQvw3/R3//3hNxzeTJ4sbiuX9qjrpoIU6VxD+QquHHaJXf67P3yfIcV9hNFqd2QvrUiFPGM3KN08ahWkEN56bA==","signatures":[{"sig":"MEUCIQCVQVG5Zec8KI01+4hZZ/oTkpC2zL6jIV77c2UHZW+9HAIgTuU4YfewdpHIKQv59WSc7hXi9d3SOVhupQmBchmGiFc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54152530,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeq8xnCRA9TVsSAnZWagAAK8AP/0edDsjOqVpBzyxEttwh\n64o/epfomYiCGLjoBLhZMJMfsMKRuUlFe73tFlnJ32Pc0rOYQq9p9lioScBj\n6yYSb0PjC0YCcEHRad6mMmY0UuiGSqNFpMcL+JIdZUgqWpdy/ngbfX9k0pYV\nUcMM8KFABMNvIqRIgL+4W30BLC0CgnMeauuwEdp3ImuzHwLkkg3K64A4Zjfa\ncqTmsuFtotXVi7ie3IqtjQ/44Y2TlU4npogYcgvsc/oTrVDBIj8YNQNDS483\n6CW85J3iz7uu29hwxnYz96kxQc+XcQ+M0PMtITXpJYdnHTeXXeQORl7hjCIz\nHR9TLf+Ty8mQGvzcNxtXdItNWhpXZMeOL2BVFK1g4MZoJ0zHHitcSiAHrQcK\nxjaZjwyb5GCfNvp/TIFyjbWc2vsGgImzmW8GkKn1Bg3swfXPK34X5pw2nXqA\nXcjdSKu8nMLfa8e++o/16mDPS5dElFt0Ndhww6JIW1YPdFqHPRT7UveAKQ4A\nZE44uC61yESUvcBNQW5JWmbsm0jkNSvnDrjvbSZzPXW0meFntTyjI+sO4lZ4\nF0loDuPsiWA78ZF69JIGbLoWQiECIKXyWnR2lqjWgvI9KMFQ99cslGTh844K\nSAvobjIzcijDl2Uit+IW7tq7GiEepEFo4yGpiV8tgX66T+nxngqFdH2rEx0R\nmLzF\r\n=nzpl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b57dd52afa2be46dabb95a4e0d70a38dcb54018b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200501_1588317286613_0.6240399746955094","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200502":{"name":"typescript","version":"4.0.0-dev.20200502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200502","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"99689d69d771ee2aecfa7890bbe6fdf1715a2262","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200502.tgz","fileCount":171,"integrity":"sha512-uBAbCfc8ohRVYhQOJwTUbhp7E8Pey3KgllUqr/edE9xO/bwDCnlSsR8KLEBIE78PrYsuoa4G2trAjULntlDcbA==","signatures":[{"sig":"MEYCIQDpeM2emZc+u6AZ6QMMf16H8SEjHNAxNs+7dJOFG9krpwIhAP1WNigH7vGJCONISJVSiYbQVjQt7HzDRL5NbjrrWtYA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54152530,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerR4vCRA9TVsSAnZWagAAw2sP/20nMpliGuQJXZ71VWSk\nNpKpbd9ln0OhhOGXyWEUps3gaeNOPueppj3NFAgSKoce0/u2SBnDt2jT59aX\ntCEO1Nb6riIXZNz8tVEKihQ1jZrFFpRYWdMbHxrtxQjnYYaHakH1ki3FrU6b\nnZWoZtII8mnLkeZ6syhHoj5s+fQltX8yYAh6fIesI8bikJB0XkzZVyGalnx0\nTBZxEYGkeQ/W3FDLxXBkZAS+SVvMunqKxpQBW7NYh2pS5gHXruuLoRpJqwnv\nB88aR4+wR3QXq3NC0yciNLVtkI7aHc1FKjipvh//SrRO5WatoKbwtPQH7Q5U\nHcpV2M55pCmhWkhATLkE3R/eaLlD6m5FTwnumfVux/JaYB5mfT2UCjsrQVyp\nJiL5SKy/Q8EQ2457pDvmR4c/nAtvt0N6Z8uSlKzHrkwBcZrDRaCa6/UxKEQ5\n4Lke7r5vbTI4LEgY02RlJ5rRms9Qi2CabknwNApM328Lhw17v+awAPOMsZz/\nG5EjSCqL2uylnk5CnbzZEdrwGsM+42foUiGtohGcGn/EeCoxYCwQjrR0SytP\nLD1IJ1bzriCLaWXLcOy6TnqV42kXyG1ggvDpXntldhlEu2bnheh+UNhk4bM+\nhqYtghT8wF29/y54Zh5jlldGxQTMQZRAfTgVUeMQSHWEgy6JbrQYV+ptn7qk\nrUXi\r\n=KFzL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b57dd52afa2be46dabb95a4e0d70a38dcb54018b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200502_1588403758269_0.11508761071488238","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200503":{"name":"typescript","version":"4.0.0-dev.20200503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200503","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9bae63a18294b9ea88d9cf63dd4b0c52e7ae7077","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200503.tgz","fileCount":171,"integrity":"sha512-wqfrGY1YU6Zzyy8BVFNuD7LoBlXfPgrDbgmGzSpOWLIe4qHSWNKh5mLs/CCurW/VHTNc683UjWhjU7Pfbguhvg==","signatures":[{"sig":"MEQCIDVQtZ2/fA+njiH0uo6+82LsTgtxThr0ud8xGaOVGnq/AiB7nSmcSjY4VJv9H5zuD7n6HfQVqUVqNzIklnP8VX0VuA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54155551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJerm7pCRA9TVsSAnZWagAA3asP/2QK/ovEHiNxI/+jN/x9\nlLihXH2a037cKEG1CTK153V/WTo0yTar3EEVJtzGA7N6qMO+a9iS8Rw4Yuz7\nRNbn6hdbWQCagL8ob0gf6cdT5s7TGUuZ6gUfF1+7RWQMVMnNVUy5aojMYUaU\nSgzmRNEyjhwklnGRg1iaZm2HKzoTg3k3dgpvuCevrKW38nID25MGpilfL6No\nvUuhIvTWg/aJNtiInacWLdN0UBxQAlo35662FlZkiJlwSZdnS78+4UD3cqYv\n0sJKYtuuZRlQhwh9zxLeM50Y4YImxaHNbKTdG7JohzgZgNQn84Zc+fKVg5da\n4pOp/4ZnyF7y/EkiGggTwoTPbXgnuy0e2DhCPiIrQ3Uy80bE1ortFyrtqE9q\nem0l7Toa24rhm/Rb4cy3CpaZbXPQUhFcVFvZYhsQ2pblqpnAObQLXwtOzyX6\nzTStvsSkLGXhF1ZzfgEzf/8eRGA3BF+it7Xcl0XN9//BRSXgXVfcxinm8IXn\nDdGRa9HiSyb9TWXjMtv/fZQHwauQS95+Q/QCd3xJFbD7Wrayzfh2BKdfQLqN\n3x8C88sgaOZvj68+JmBVp59vYG6HNWrUgOgTH2yyEb474gtJS1mvGDVF+38f\ngXLQrZKgxfdu0fh1xJda45duivB3jyDcS7wcX9vH6L1NQHKkE8VjCuyFT0vR\n1XZ0\r\n=xxxu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5b0194b3114eca8ebe32695bc0603d6a6bf01b7d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200503_1588489960378_0.4180701380340279","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200504":{"name":"typescript","version":"4.0.0-dev.20200504","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200504","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2834ad3c388d6ae43e0854fe685e6cca0e61d107","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200504.tgz","fileCount":171,"integrity":"sha512-K1SWra3OBG3IMflXWznncRLWsaR7D6iWcSk4/O45r/SlXmi35bH/b5Dprl5swYtJQGh7hjplmtvGXnlDaTeQeQ==","signatures":[{"sig":"MEUCIHUwEJMkE8z3qfVury7Rmx0avvQn2qdfXmcYLXZPLmR0AiEArNcPAl//lemdKn+ukPpBkUgrSZI8CC7Z3IzGsB7VDMo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54155551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJer8C7CRA9TVsSAnZWagAA7wQQAIJWrvZBUq9gDP9Lz/+N\n6ZUdp0KLv+H4Sb5+V59RGqYT9jzm0xX1f6hb1lgsrb7TaQWYcuibih62tWMP\nmoqiu9vcl4lwWO1MeoXckHC97KTeFdmOCJUGl3O9PyWk5t2zr0DWUi1405GL\nE4oiDXt+6qx2xsDd1rX4vLvgRHTUvuBTx2D3/flqmayC+AJYsySHQTtGNe6D\n1IgVa46LY7Il0hBIs7/ZhmXCu1FoopLxM7TjxLR4FOuspwdmpviBPTfSzeb2\nzsuNAfHl20LxaxgBV5/Cq1LW+xdUg6/vxziM7cLtIiLRpmd7Vw2IbO1Qpvw+\n7k7aroINiQOGXpGv3EbnZy7xVM+Y2vKRSTId49QrgwsLjpfaMGuskirtze99\nQ0+5no95sqQSHSwHcjE7j5kclvcIF2E7kbpZwYiYy4U9laSfKp4GVxTeBdwd\nhYSfn60tEmIXOsJhxlVg90LRzcjBhE42pvPv+pHYRrcjodCc4eJ6+zjnqTWj\n7Dh5EhHfdCKRH4mQ6PULh2tvjwuv/NKOIP2F+EjL77VKTDvf1D5y0Cz96Dj5\nEj5AegkXpmO0QknbIllbJGJn142WgKmNWmkpnl+fO8hSCe8NLHem6mAMkSWw\nUy7Nx4GQS23ZgIWzPgyIFmZsat1JKAGbmKjZN6ybryt+b5Hp1g7IPH+0AyPD\n54Su\r\n=VLkW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5b0194b3114eca8ebe32695bc0603d6a6bf01b7d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200504_1588576442973_0.5745366788926842","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200505":{"name":"typescript","version":"4.0.0-dev.20200505","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200505","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e6f7336dbccbc8dbfb9d3b66d2d7bc2eb377906e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200505.tgz","fileCount":171,"integrity":"sha512-4dvUc7PW9K7Ei9N81kfriqKiuGU4DrsC8er4tTaGTVoeGZJ6YxEzuL2eb+UCYH/Iwp9uN9PBrlDNrn/G5YoRzg==","signatures":[{"sig":"MEQCIC8OJOrTt/u0yPJdr4tbAsSI201Ai/Ahk5YmZWhYF7XVAiBlHX8tHEJPpwDj4FvoJyPSopsnq08LcuYs1vkkpBdr7g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54184164,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesRI0CRA9TVsSAnZWagAAJzgP/RYfziQfSL/ofm99vOh2\nmgSaZOIRU9dSUj4jDCPAEKjvkW4EgkV8E+oQ2Qy4K/umJt7dVh4ajUlQ/NEB\nP67Kfagmv/qG6nPGqHcB+9xrEt+7t+Y0fhKrLdfM+ePOEXjCdi8XLkHdyIEx\naJhFJcsNTZYKjrfLI7lpdHz9y68pkWIZbij2sC0jlL6EZjkfrSVJEu9vvgfe\nZHNaG6Q9SOz7PkX7yUD0J+N3mADq4PvR47K4RyqHfFC9wZ0HBdEYMskqi7ze\nunhiCLO/0Y8Z8QDB4khS3TnPt6TCMSUtejFkHhwvZHwcLW7GLeHNue7rw25d\nRM2qG2OxvTznL5a36Ja9yEkWLkQXOLjPhkay/ciSaf5tZgPDbFfZWuizsESa\nfSQEPtTAAkWfbcWrzuhPIJ+wx+gmu7g89x/Xab79soWBUfvI18NMtx7RAL/e\n6n4Ilq6UPwUYez8zksI2a96zkOU1R4F/e3uLcRHol2fTNj5BFAQABZ1AUuqk\nKI2KEQRffo1gQiSEU1pJQRlpnmziwF5BJ96dWYg5npm8ij9mGKb6WYRg1fjj\ntGom1bQMADqG4H2RcoF4zLfoEZTe4+R1yQLB1DcP8urPQ/7k0/JMRDicNNOI\ntVkjVsvEAFU6MRnxxKbwnbo1JcaNFC6jY/YKJ0qaswvKkywMRDzNRqtXiD7p\nkXeV\r\n=Cud/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"94c5c3ff47469c3b92342192a6a8353d6c7005ac","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200505_1588662835955_0.5082842399008782","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200506":{"name":"typescript","version":"4.0.0-dev.20200506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200506","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eebbc59c84a7e8aba657cfee31472db893de6e6a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200506.tgz","fileCount":171,"integrity":"sha512-eH1FsgFdVMGD3fkwlkmcbLTf6a2pQRgaiZEW9652U7PnRhJnhynhdgjV90yiATd/stAcUPPCeXiNc87fobxI0A==","signatures":[{"sig":"MEUCIQCMila+KkXA4y1PHJj6gTBxxRb6JhCCKqBlKVGi6cIlXwIgdEPfEhgqAuQ7yZ5xnlX1CZIea9z6fuoo9Fds8fgaxSM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54187169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJesmOFCRA9TVsSAnZWagAA6QkP/RDuhVjfpAn/v61/QGa0\ng15zZEe4xtMDp9vY5NL5D46TPge3gluzk2tOOckwF/CBhFfFrfbQS/50WyNq\nEcBcWMKJGyzMOWWqWy8BbWJ6eEnIpseHdxYwCnvVS8JLIA+MAApZgbsBFcav\nhwA1J2tLKLfcQNQeMKHEb8CsOhCumwJEbhkci3JYQvGBcdOpbBeaMOvVPdsY\nvn+kA00HoUzLdn8MEPaO7899W6Y2oGfDlPk4Jvu3cG/zHZMGIHbEDZnqLl4B\nh55Yih0Ezbdk91L3/KlZzKH31AmAic+MOtCu5RcQ1Dj74nrHdHfaQJjkf3Dr\nDlATsavE+UGevf1Dl6Zb3j37IxFFPcW3+0BzhljiPYerye6984wAXVl2RcfU\nnN6U1RnVoD+0Ib842TKqhaIArBuEbIOIBW5wKKVBxJUeHtLkVSDnBHi2VYzd\nVNNXC5vMSJrQy4yjZ3ICA3KmCZ8P1wUH8xyT9KFgIoRnWKtuvshJVAPtrrGK\nbL8Nvben3a+szoD1MqHFyH/OGWozBDUOzQvZrWakDDLxRIDrmvhnaKqqRsk+\ncx1dMoqR46/pSPZd2LJMK7GRKr4nzEkdgbf0smXUz6q6CE3CKeujwAtg1MJT\nlbvhjsVBkh58NEVLfK2Si0Mx+SAQV5QOxNtWekkTBYWXQK/tHqxrC1DtL5Wb\nw1y+\r\n=nc3X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4f4b44cc20009af94c1ea976512665a7b97d8d61","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200506_1588749189048_0.784712936555402","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200507":{"name":"typescript","version":"4.0.0-dev.20200507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200507","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3be6aab0846f666a0bb6fdf233817deb6c13f3d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200507.tgz","fileCount":171,"integrity":"sha512-/2vM7rURldVj9Wmwg79o+2tidfcWboTyUWloGTkyHOpHbvdY2R5E5CAtxhT9Er1gF39TV01rBZO3uj+rgvx8NQ==","signatures":[{"sig":"MEYCIQD+nUqPGSdsB4v1H1cHSBB8te4+KCcQtSKJYbP+NX3MfAIhAMA+1c0tN7FpXlZ7hOq+W4lBGO4sclpS4h3mY8lSmDMS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54233000,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJes7UQCRA9TVsSAnZWagAA9lwP+QAZPC8do6g7uoAIPruu\nAEas87M+6CJKWGhAC26ZvWXh3f+O4omQbC0enxNTSqlcPJZtz0vMn1uCZHKY\n2le3Dixskb9YsY7+O+HLJn3ZdzD384Zs/YD9V84ALA0/aOY2D8Fcy0SCmOiM\nuS6gwxHJSODmIErIvTuN7VjTTu2ztIp4BH3H6KdhBSJSmbcmQAs8UJDsJ3Uc\nSHKSOqkK1C9sR6tq4betCf5zXynZEciyUOhjHNvRy08LMS10b374PIRI25As\nmnb2EQcG4uK4Z68vyx85PdrWhiyrC2FmeBDV6fuQgkIkrZ7SFQfw476O9CYC\nm14V/QI/5o+jgz1ti+gl/TX12h0m3R/G5tIgYeyWHeOSDKpa/lp/s3d4vGSx\nIDqyI+yQwv0h7JrfSf0JWHUuWA3mdhNThCCMYPi0mDnw8PrdYHvDB1eX2m9r\nVE9XpT7o2yd/XUtZtrrKY+XMhqV7QvelXJNplAIn7RT/jRm9xr/sx3CXU32g\nxjvwRik16BDuj7ATRzmUl3OWpffk6lPNRWJyFxmlv22LihQw4918ZTvdLWlg\nuNocZBdFpCznQnkgUXSdowGxq+Q7rtMvJ56FB7UM2nriGmvAD6RcKZvAG9Po\n7Q+y2yNRBUC5Dg5a0wzeSj2DfGAnU4ZaL9kPEWYSB4s2b7So23ssbf2DIGbX\nO+bH\r\n=UN2D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"05d59a1f1a408968aab7ae5dda9eef5881643cf7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200507_1588835599352_0.041323621318086534","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200508":{"name":"typescript","version":"4.0.0-dev.20200508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200508","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ee13997606853f8bc1cd4764edb2c1859cbc833e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200508.tgz","fileCount":171,"integrity":"sha512-oo6L0hhb7U6PCvRLSShHu0eToK72fTT55W4ELOjIOozX7ffGNbdE7EXNtjLo4TDkr6r9+/VEPMfNDGQq7pp2tw==","signatures":[{"sig":"MEUCIQD4CLSMoXJrJNhEl0NgAbBeT0WlfmEJvpVUXmTCmpqVwwIgYX58pnWtp1t6Aw5VUryWlHw/iln5vQ4n3gM5uEdaIl4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54239721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetQZoCRA9TVsSAnZWagAAYUkP/2yFG46Izs5xuPo8T/k+\n8CWamN+xU8ERPPMi562W4i6Flx7y5enJob32mgsPjcVwPAb9eF4XS/OusCZa\nCtJxhL/mcTdJWp4oJsfE40kJzNcaoJH1TL6AaQsD7gc+0dFet8wpCG25snWc\nKM0Br0+7xOsIhJZIGRY1PaVlZt4P1Nr8QpBXNMNiCnvM+qVIL+2uMfVabAlJ\nUXFyCE7VNc5Mprldc49XvllQMKgl+yIQ8wIYBu8hRoirOUdLmte++FHThkja\nrFWKX/Wo3AN/1KLJujztBpk6VEK2I8nINXo0uw0yftNZS/gBWfef+ellpHVX\nS6lX4yeJj0A4jLn4q4wO4cgW2pRz9AUeku6DBTiGYqmuhpqVxmiY7ZvT5E99\nfrF+R3DlLnlh8H2xYGiFLTAkLqtD25Ih2oQosOCYrOqhW6GLU6lwDwGrlSlp\nqyIByo/n3Kd5kJP4/CWhZtEfLPW3dZ+hEP80QuMatCojX1sCm4opl6wk0WTb\nXY7C8QOR4IU6ysE1YVlgNLTFWylEF7tY+HqeRrfKC/oaMYRJoKUmineZfix7\nV0mFdztrns3jt2yjU0rj663MZlfIyDJx9AY/M3SKo3iN++mnpbwOB/JtoWRV\nr8ONSXlfjSHN++h6XauWCmoPL605O6lqTMSc18/P9doiq2UZeI1YHBz8wTLN\nElAK\r\n=itn3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7ac641d6a4d3c0e6b4657ca09b9921c849d3c98c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200508_1588921960020_0.865463062936831","host":"s3://npm-registry-packages"}},"3.9.2-insiders.20200509":{"name":"typescript","version":"3.9.2-insiders.20200509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.2-insiders.20200509","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c90ed86a91f9692f10f5ac9c1fd6cb241419e6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.2-insiders.20200509.tgz","fileCount":171,"integrity":"sha512-AAbhs55BZMbyHGfJd0pNfO3+B6jjPpa38zgaIb9MRExkRGLkIUpbUetoh+HgmM5LAtg128sHGiwhLc49pOcgFw==","signatures":[{"sig":"MEUCIFlIRmkZVptYxIkmRXTKieGhoE1yUEmQFB4hJZRtaqkdAiEAvM9f7g0LuTqdO74kWLHMFBO9KthmikhPr2R8Q0i9LrU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54116843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJethXICRA9TVsSAnZWagAAnqUP/3b2rY6H0jq521Cz5GHO\ncl9x6zv21gYWn60TEOr6eKYtZbThKKCf7EzksuL8J1rpcEN98zIKcaTBh6s/\nmJjNX12PJwAQCAw+67Lttv/EF/zm5/OqjhkxwtSI0cSs7bOujmvb5+3GgVRW\nmI1p1L5apAY9LiMDlBTNCAQupCScvmhq7ihXhaPODoB/mIBj9y0rCAcI4FSX\nFe6OlruhK8PUUr3DAzTBMncYWq9c5xA2rimxHruy18DQb0m4BQjUpk/7OZ8/\nJubf4UbGdcycEpnR5BpzJ+XIl0CuKwYxDXQcJbnAHSyzC+qxtdKSMLIwFLZI\nBChSeqh99lGW2aHBC6Ivd44SiERUTnmdgH1iZNvYjwC4h0pp+CXlkVkNWOXj\nzU8CurTD00NVbtTwjZYV0rePtioaZEKT8cUMWlalC6V4pGRiIDTSfen1Dnj+\nmv4YimxSFs+IsSNo0UZdW4LoDPQHWjQ9sWbnWaISp5Iyibg8V3/pRzTsG0c0\nKA4eZhbGAC3qZorpGqoCrqKahWyQh85FUuXi4bQF5cHW9bCzj7w8DIES5IxD\n9yvyiq3O5eLLOz0qSs7wq9r83zXU6d/t5SdcZNYH87JR5IGqkftB1ZXF+zmx\nW2SUvT898BBWwk+LCriOIwuenXQ87k5vXfJnMxioxg8xqDbIs5PTq+ggtE5b\nVwLK\r\n=ZHeh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1ae7dbbcf091c9e52296bccfbb376f6fc397bd85","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.2-insiders.20200509_1588991431746_0.4147787497230626","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200509":{"name":"typescript","version":"4.0.0-dev.20200509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200509","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"da209a2ae360ed1aa4d465ffdb6984e8f98bb6cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200509.tgz","fileCount":171,"integrity":"sha512-IibaJPI6hb2t77+hf7wIHcOaCa5DfKD/vH4yd18ytQsgJEMvkewoUYg9T5WukQe5IMFRtH66Gf+DFOQkNF3vpg==","signatures":[{"sig":"MEYCIQCHxAwqAmqu5yU8RzSZ4APMIw03PhFWjlfbmJ81PhmuNgIhAKni/QKnUTMaAOvEBG2XILvesrKYjP9Ok4xzSBP9mEdS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54252080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetlgFCRA9TVsSAnZWagAAvCcP/jqdKPLgHIWQMw5+l+xz\npK+5vFT7sShZQxuj3FdPw57maJjyCQ88S6AP2s26Kqi2pcuJKmMZh0CTjiwO\njt22qsDTPTQbJrjORdeltEbydSfsw+1BE2TYmaWsSLiAd7sa1QAPrQtngGwK\nv+lrBIDjAnR4ZxVYkNemaZiLaFIPdSPdbulXeOqKan+bl3/c14s+npK7z+gU\nLqUtP5MgitLbY0WOsLwiULRknbSYeGDYDenJIKmrG65JeOJ4AV1BpjTwgidZ\nttvGsIGe0LpIQw8Kw1IZPx8n2WMYQ+OvUj0hGPqrX1dM+Y7ZVqEjKaE1Ey0t\nloGvIoy3FSPoTU3SnRMeNyUO6Ohrv5O874z4UX/aoVviDHhd07N/2Q7UFKwz\noV94inoXYceAqFQyRY11r1Po6mqGgOogQJL4woBfd6bCwJJVygRUHa88wiHE\nQeW9+b7p4KRY7tDd7Mmm3LCBKS6SWhZCkZ7V9lv49Qmx8FBKk0VTERx5zvwq\nPCMcLnZykGvpdADm8eAuvPOVN0qu80pfhTbxUwhzuf1CEFDypY05fAWfzD1d\nlsIMASOsMKRPNrElA69T4p7hwmf1qyr9jPLTQDIo/CLtSSjTzEua7IzF6n5u\nCaljwdeM+u/e4PQPH9gGfXJOCjnktWURU1R7r+XIOxw/m3MPPFxny58rU4ef\n1Bw9\r\n=Jq5Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7b03835b779950e926a7281030fcf9b4dc4d5ffd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200509_1589008388606_0.8484698088386617","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200510":{"name":"typescript","version":"4.0.0-dev.20200510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200510","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cb8c1bd80a03f5ddd8996c76fc4dbdde3f4c6e62","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200510.tgz","fileCount":171,"integrity":"sha512-aGg1T/cd73RDSWexjZZzf3lwaNlyR6Drra4ZWgwDink1ljDbuFzTzpI1tScj98Fz1k+rLBI2lDW/D0iifVWIQA==","signatures":[{"sig":"MEQCIG5a2o6OWW/QjXbj/xqUzMCd7Wdt1HwzSr/8Q7pFA7KnAiBPk9u6afMywdbwgLm0lyXo1pMt9ZcT9aAOVwF7FsxvXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54252080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJet6mKCRA9TVsSAnZWagAAdZIP/03Qf6rMkxCxODxKxk2C\niW7/Qmdi2wxELpDmsG880DzDSWkOmUCopmQhM4laXrmxa17YrUrFzkJAZ2X8\nnXWYLtOqO/USLiCzO0xSNMmm+bOQTJ3NQS4W6hRNGQwtqvapPxMNghZOvdic\ngK/Wk9dlSbsvjTfL41kLzSjPEK7qmwdAcmHVBMw7XezetSj3feyDOo2ZWX+4\nxHrJh3ZHaY9yCwWFcq42zOJa5wTtI6BWYwRgd+7I+tjONisZkTxGS+uojxMq\nC3OoFQYL/2DtqSkAmuLaHiA00p+2tORLFvbOV0yXFt8KbpJdfauAguIpbxhX\nawLw8UAYiXd1hlwjfk37aiKbICapt3LlTYlcft2pyx804a5tTId2fdOhHZSd\n0x2B7EzCQnrvZlKoHg8SG9mgXx3F62+vjtfRqn5m05/nS4XpoZoXkRw3oLVq\nd8c7WQWDMnyhFjMax9G3+1dG+/b1bWsDChDSyWipsHS4aukgSigkZUXwqw0R\nCVO1t/wFMHd9ag0IxNdk8R8YYZXtHl1ycJGI3ABqV6AImyjovdVPAOMpAfYU\noMYmbOn7VxvX0Hdz8cv2vRf80xzOyYKxnvdmuNA/7rHwsPnh1kbE2A9Su5Ls\nlPnjx2O+UlbC0ZVTXdoSUHMmiRfdI1TK+hFzGgqntOM0oqEsFJy3G5b9rIfU\nuXOw\r\n=xqAf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7b03835b779950e926a7281030fcf9b4dc4d5ffd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200510_1589094793928_0.7708440090818418","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200511":{"name":"typescript","version":"4.0.0-dev.20200511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200511","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3c0a3d70e87f55b0b9036801fd9fb5d662507d6f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200511.tgz","fileCount":171,"integrity":"sha512-bYhQd0l316NsS062rVvAK3RTKT0gxZ/NaAod0EmG78Vc91uLGPWJ5hMrbdFsI3LrbbUJRrxuxyOtV5BZh2U9oQ==","signatures":[{"sig":"MEYCIQCm8OtGFtN+c897dN26Am7wq0jhseKPtOAtcmSzHOYTTwIhAIrFyzso0ehsKNtUIT/LTKFbeolONqMdVR7ul8X88y3S","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54252080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuPtKCRA9TVsSAnZWagAAS0kP/REknkFDycA0HkgLP8K/\nvLILyJx0DmQNC6ux5jXCfRga9Y8sx+8cEprQ2yO7BV5ezsobGG3cYH2LxxdU\neXklsF4rbGLLfITlvGLU+KXRoYVL3z1oCgDTGIA6G8MxVTiU3WHZaEZtm8R+\nDDyEyUiZ/Oaqm7G0U/lbH32c/139QYsVlOfdc5M5cT9sQFho2kKXVERBFzfD\ne/7+Qlj6nLB8++PvtpYuT0dTbvx8AeLnkmxPATEjVXxA+Jd0jnsy1UikpOSE\nix6sAK5B3mhoZIZLnT/q/R7lQniIJ9XHRnCKDJnDGbPYKa93B/63CQgIJ9iC\nHeVqHNqIsERtIIMzKvlr9KZ6ahuc8arbBi2t6+SZdTuTTzDr1Xd4C1edY9s1\nKKrAyfO24b+Swq588oyaLlWtlQY3DTkbocWYeGEvGHP7fFMGH4mqg67JU3mI\nDaIGhdgRA6MX6CRqYnkAeshz++dCyt4zNVPRN3ya3zxPO9td98sWmzsl1J4u\n1/uY9wG/uAeILUwZTIoaWQ9HtwLGxq99ufyvrGre+wdPK/jAGOHIyaYDtVNa\nPt15UZFWPMFrLcm4nyatMD3308oXUGG/+KyUasz/3dlLGRS3smH69rre4do6\nS+lxASEFuosazozVIGdn9NXnUGl3tNN12r/JO1i9nioc6hNMv8MA5BIOiEua\n5Pdr\r\n=894p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7b03835b779950e926a7281030fcf9b4dc4d5ffd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200511_1589181257824_0.6485548225832249","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200512":{"name":"typescript","version":"4.0.0-dev.20200512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200512","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6a3c666a9f6c1b99be81e13920d94b6980b4c4b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200512.tgz","fileCount":171,"integrity":"sha512-ZsVvhdxpQaA6KpjlT8wNNtweORzNsMtwgCo8viKWQmOvaU+BlMsd3MjD2LONQjFSiETCaw4uq0nNdyfKrCjjIw==","signatures":[{"sig":"MEYCIQDH1TndVJmQ0NZfQ8Ok1bPBJw/gRt0SUfcrOxmrArxFpAIhANC3X+/3pTJXeHlk11j+nZphSCbMGRhIsmUjOjx911nR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54299385,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeukxICRA9TVsSAnZWagAAjw8P/RPl9zTrLfdkAmzrdUdc\niTvDiTTFXWaJi0m/kggIBWAEBNq5NCrWlE1sIvtmSKosmHSmft8yg+XxcYF5\nPVSEFVmvsTFiTlvUMuP1ToYHI98O2c+37H4m4Q30bJA6Mv8YiA1NmFMxneze\n+1+mLm1Z1PGHWEX+FmlEGp5YwJVtZ9V50uwtQrkmJhCzXvAnlJvWA2vSfQ1D\n74YBWzwRMGl2w8Dg/vwV5wg5UFtcsWZWASQNyP1YlrsP0XwCqME2dRy7cCCl\nTHE7fMQJWAUS82+gjSG9BrLNL3tfvdr/eAbmj7q2taNpsTHFZ4AUp9HjIK85\nGOLZIaoI0Ks0nd1oOHVl4T980mO4Y220VdYxPuz+e5WZKo0L7PBUqM6oHQUW\nicui2TqwNlarRgRnBl5epvaQW4fywBIM1XsTInXBjLuc22tpEBlpNOJRJLeO\nHx9oF/dmnk9kNaydK5RBc78LSCxRySX7bJRppZgYxBz1yOFUgoV267cfTd95\n49TEUC22OYfcRnwh7xNVM8Sr6vQzh/iVItLQYRJKTQ1t8JR8aRifi3ABbilp\nA1Ce8ikdeyKNRE3dDCc+/okH2EmDftuo14hRT0oei0DZpTEJd8yXCjoWlnea\n8+4qB/fhQB6q2nG13LRmf6V5ZEhNWrhf0piPvpQssmg41C9/dWP8rs6oDBFN\nCwTq\r\n=LJ4o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f4872eb493cc35cd1af7fe0d8ff462c54482855b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200512_1589267527785_0.32127253608583284","host":"s3://npm-registry-packages"}},"3.9.2":{"name":"typescript","version":"3.9.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.2","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"64e9c8e9be6ea583c54607677dd4680a1cf35db9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.2.tgz","fileCount":171,"integrity":"sha512-q2ktq4n/uLuNNShyayit+DTobV2ApPEo/6so68JaD5ojvc/6GClBipedB9zNWYxRSAlZXAe405Rlijzl6qDiSw==","signatures":[{"sig":"MEUCIQCQ4Dv6O32MS8Xw9z/XopXyuFt+RykVsv7aBozjUnnDawIgBiOFqGFZNmZ4n34ZU24FtbQLdU+WP2k0TmUolzzICiY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54116598,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuxGSCRA9TVsSAnZWagAA64sP/iTzdhmXFo/Gi4NlCpFg\nHFZB6XvYbc6yK3w7xkV471mtQaUTDVcCb4UY605ktNM7Ce3o9N4LkhHfdJLS\nKs0KJaKy2jGUzDBz+BsI+80QlLMRYCOgCuAtNVwwZcWUTHaY+kJKitulNY9x\npfxpkVXNxGK1oX8NV/E6Wf/pIMU/OW3E11VMJcvPqspLOZwWpdu6vF6JdxOF\nrMb2iaaiLCjmszzf3X7tdtmwm2DHWJL0OtOn01VTDOtBZ/8770rDwFcz17rA\neE0bHUb2AsEIBsYl9mALrRf/sk+BSeXFeo7rG+w1D2yCkO2v+YUEUxWTPMaX\nxVWdw6SLS31iSJSEBOg7N2Vu2Y0jFxzM1MXFm2tQkbu9Yl53VR4nsaeGVTqF\nrvvlZ3KNPnewIjqb0GjnGvb6OFRhmKaIIIKgZYDNrVy7nSDbA3trbI4wB5x/\n/U6TzUZlxcEdpW9zbEap34/nQEAxXKWKTOsX9vmM0h76g+msvI0kc1FraZK2\nab8j0Wf2M1Y9cFeBYrJXU/Ap+d45+l5IEioLwkhgMkbfbAnJkzuQoMXOfQtl\nFdZ0oPLU9udy+eQPgBkZ64btBkRK01kHYkIIxl3uC6QnccBUwY870f5ZXv1i\nR+4aDPMo65XYyQ3iMpIipsobDUbMVU5RVMWrq8885RQ8FScczWndEDY2Q21o\nUkuH\r\n=SWzb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.2_1589318033657_0.7271930490279439","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200514":{"name":"typescript","version":"4.0.0-dev.20200514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200514","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d32771b84c2b42f4851290d4dcc8201969183af9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200514.tgz","fileCount":171,"integrity":"sha512-o++Z0PwCL2iqEwTnoUVfDIAMo9xS+dvxm/6sl6n2VfxGGmVyaC9F6Naaylh+VZ5qG6Actdso0kJnzDxXVwY5fw==","signatures":[{"sig":"MEUCIQCIbwShqePIJ5U6c4q8ukv3efCjohnDNtuCdrwviMTsugIgB/0lhLgswi9Y8nVD4UhpMtNUMCDt8YlgT0bsGbzxht4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54310345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevO+HCRA9TVsSAnZWagAAZlsP/Aze/nqw9/po0Jb4f8G/\nnJe2oFrKeeJP5SdLRoVHWONAXLc39dSNtx/HZyPOyghOFJgP45OYw6fw58Vv\nGnfrXjtuTguDHFtTJAlEQT6PByV31ADUh+M8yU/Qfy9gAGElgVMhpsnRVGBc\n3ZiOs6Y0u+ed/fGWIuOlKIHeaatWJI+p1sxBLllX5p9pN+eVXa1OULfN1s+V\nz1kD3WJfdow86iOoUWfxR3kEqqKyn/7HUxDcYA1Q+3TclUk6fgYAs4FS3+vX\nIu2mpHJ4JzD2RUO0NhbntUqh/AovReMuoWBwXhYBQINzQxH/KVhOoQeaSWGi\n6dzosQGFSFO+bzWeykueqhixu38cnZx2TahjNtPJ38rX1akZrRsWv0xZgMXU\nVRdbu7Ok7FCPzkjGnWtfLVF1V5oPl2t3M6UhKe7GPBGi+xpLwByZN/J8SSyj\nvDLwvThTqZ/RqGE6En0XgZfPclUxQaLu/0S8zt9t328Z9ikPvpjibaXQH7/m\n9pjm/fgXZ2S8AnkJVjd38mxzNcs55bz8mmYrV5tNdcEWQJgcsvlvAEswlFLk\nlACZs4doId+uHonQpBBzLqzqSBSmvfQLT/Oc1qJC4BqKC0l/RSGiaF/xpfxS\nnX+RHcPArqpjt6iFujxjUaTlqPfgcdmwWEWrG/HANArlsk6Ss5BZnUN0gaMb\nKjQj\r\n=RBuj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c1f676dd3f1337286bd99d3d189bc59c930b703d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200514_1589440390717_0.9453521150800528","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200516":{"name":"typescript","version":"4.0.0-dev.20200516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200516","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f5556ae2de0bd8bb5561e2bd62a78237c64559a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200516.tgz","fileCount":171,"integrity":"sha512-IAtM0E+nnb64K+KwtQrvBDPTTOlRSdYJjyx1NOfNBUk7G34Bln26NQ/0jdCfvTOpxa/S6mQ9oDnHiC1PJ+UpkA==","signatures":[{"sig":"MEYCIQD811GQBPgnJEkylsIkYiTf4fQEo5TFh9PyvdXc/Tx6fwIhAJ7O4kT8H0l4OtttodyyPflUytDOXo5jxq/sULUbSxOs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54318862,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJev5JrCRA9TVsSAnZWagAA3CIP/jzznaC9YKIjpVhEypS2\nnYrxcfmSTL+fGphUsn43m+ONMcvmPARGQcZpFPR4BBxO2DeHIogAGzJliWXQ\nXKbHx/0qR2ybQ2gJpOrnvT/L+72Zje5aXPIgkHTk2pSSbIvuLVtX/9SFwsl0\nefM5wpYj17iHh6OBGsu+ad1rTJ/Kr9s4RpomvV4uK0krLLp6e4SsHEdf+Cyd\nQfxMMpnwFWHsMQ0hwYpikEq7zxgWvW5g7J+lmUTwIcX9G89rQymrMUtx5HTN\naymP7QkJuAwOuSjMKB2EUh8EUKisKWfgT7ae0l0HbJMFxo9BKN/JF2yY7ieF\nIdQOJGABWn6zY9nLQnT/cp7R9YEf7wjQGaAxZXCNriI4cMtKRk9291g4An3P\nlN5ER+4mR04ZxUkRYwwog7wMl/pc5B1oPV0LCytnKm7O4w+CLswvNa53wa4m\n6a6KsHoCQoX6QcMq7jPNHeZASeLTToqdIjUnSuTY50wSFzOHUd7lRH5K/gYV\ndQUSMUio/I0Srt67VO2XFbwVarslGStu2IOqIFZ7bemLcX1lFeNnKZ3y9x8J\nC/3deKnixgYO3iPiJasykJFxZZXUgv/JQVyFAJfT6WPnQF/z9s1/sz1OHAPg\nLBgmsuBTSPII9RNJg9XByBxp+7PI0jhucsbCiWo3Hn94+9t3dacySvHSTlKu\nwrXv\r\n=2kW4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"33c3e9e2c6d1e67f90896aa7596a3144549b84cd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200516_1589613162864_0.7264757022626604","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200517":{"name":"typescript","version":"4.0.0-dev.20200517","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200517","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"af31d1fff1a7bf1833eb2a78ca4fa99202cf1119","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200517.tgz","fileCount":171,"integrity":"sha512-m9yNWWhbovj+xKtlwaXXnL49rgCEYWcJ3kCmmq4abLtyHDoKECxO1uFimvpQJfhmmfOGpbGoLRffdIo1dbsGpw==","signatures":[{"sig":"MEUCIAZ1JOL9eGMI5SV2sh3PWH2t6aHqWjFZ8LBP6lL714CMAiEA3PeNpdcsvs6sYDKFmGTkbTDuDD1nOFh+DwzHK57Z3U4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54329377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewOQcCRA9TVsSAnZWagAAOxgP+wafYUpFze6Tdtw+KmyR\nED8o9jJ9K1onH0Oym1v8Yqr9PSaG2YXUKPhQflO0BffpwbJ4/huGatu/BV72\n6uEB4wj2Ua0MPcGZ0tMSaki2w/RZu8av30WRfXBhUrFocBfkwoXyrIfxoWnl\nlynwacN0J7sK7WNhnCuPi8nWAR/VUuDIsjtTrhqBa4EZMaT5DBVAH8kg9vuc\nczFa0LAyTXUCxNXwgZgUkrsWkSQZo97R1bLNPXoufRd71eUOssyPXP459/+Q\n2Dbj2Suk8b5nyPsAuFNKXHRDoM94IATxM1x4YonVZaEtht+ZyRalxjmkwppU\n++Ri/NsKr34UwiJ9pmTaxQqsGDifRj/Ae49nbrjHHDvJhLCYox84FPpd/O9u\n6uSJzGVsGmHth0yyV29O8pU6hWwCu7tWnHnFIfZM0hJx5hdBnnXd0j8XMMax\nhlH2MqmQN4q0CE3RpNbbpJmQ+7ruRpGPbjoKLk9SppwGX8W3rvnWaXyNC7pM\nYDM5PpieQLMh87RrVhe0Mtc32vufAoOPvLQh+ow5WCfxA0a5K7T41xFSB5e9\n/6fpPh7+tXCDn5Rc/3gYSd0/29C6LT02rFC77oEUg4wg3MTXHZYpi0nU+Tpi\nLeypGFO8b1p5kVxfEYdrmzJMo7mODs7iVnzaB8Rx6mpLT6V9L62tQPWV/13Z\nJLEy\r\n=Acfv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3c1f37e913d2ef3c359a4b04d414d3aba5f3f85c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200517_1589699611915_0.3414224185351029","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200518":{"name":"typescript","version":"4.0.0-dev.20200518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200518","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5f15bc6e0e454dddac1b1dd7da39d9a0969f1b80","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200518.tgz","fileCount":171,"integrity":"sha512-kTIqUu1qpgGrP4NC1uQJRc9s766y8CkRpdYPq3prnz7AOy0uvmkLT7bxS8oxkDNfUcJDDwFh/mGa9qrJRWrspQ==","signatures":[{"sig":"MEUCIQD+QYgaeke40Fy7SlORQ39DAdhbzrjm2arMMEUAjE5CrgIgWXKIfDlYBhaX38UXXVwntTWeJMYgsoZRmjdFKHU4GU8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54329377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJewjX0CRA9TVsSAnZWagAAAeYQAJPhKZ5lSeDOQZ0Hs3ax\nTnG98NeRGcIFPSb3PAcqZCki+Lo6J9QEyrHjpJhiWpJ90WibZhA3yqTg+DcZ\ngcDrhnmUdVx3oLbcgiRC9/NyshmoOX+8vRZQfl7pxOOUknvao3S3jZKs/df1\nNRQEAJxwtWFZJk3IFJoCiUJ03rTrFkJhdBC5GUDFBhKJxaAGlqLxqXdtTjQl\n7A6G7Y2uIajSNdZe7omCzV8o/heWgGlDs2kkSSWBNOftF1NOM9/ws/VPZeqa\n1Ichyj+NwTQbaB7AcqotLa78vibFIFH8L97kHvOCqzDewFI170oio93VXxrl\nBmhKzs9DdwZQstoHEVJvRDPy9Fwz2rLPxSkFYTrkyoYqaJ9Bv+s/7k+v48QO\nlWu0Tc+gg0tVdfHwLYLbdkKecCJLJj9aTmcwNtTY1RgnkPW71QNQwL/e403f\n7+bON9A2gvW/7LRUoSDVnLoy834xBURipilNJgsI9KY71fbqCAFVyCpjkOhQ\nFEzY/Ncz08iHjAvmH9xJKTLcj4ojmq67UxQ37+2pPi0GeB+wenwnm9QMRY/t\nQuVVg78c7idgdO3FHBdULfJiNVe6j1hzJXHOq3M3V2meTmIL5GOGQc4OKiT9\nEKz5L9tervWvwUk9k2GPyrYIF9nX1aglLch1TMaB6TPw+fy/oIeTRYl/p/NT\nrxM4\r\n=Q4N2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3c1f37e913d2ef3c359a4b04d414d3aba5f3f85c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200518_1589786100098_0.11189996985393647","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200519":{"name":"typescript","version":"4.0.0-dev.20200519","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200519","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"09b3270ff4fda2f70620a84a559d4d59e3ebbd61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200519.tgz","fileCount":171,"integrity":"sha512-/tpE7v0RNoMIbSmRTlj4iR6XY+FlwjWc7WNV+RHRxTYrAoxVKNiJ6UawmQ7lgm6xER5xlzLoHhoId29WzwBpNw==","signatures":[{"sig":"MEUCIQDHctohI4S1B6ffej0gn34bydEPYelqX/KEqgiBXP/spAIgdDNz3XVETnZpWxEJyGe8twSMjmjKgQizyIBdDog7C6Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54330108,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJew4bkCRA9TVsSAnZWagAAdS4QAIsRA5mBHQlhp6AdvRZm\nYZ8IL2Oh3cE785SmU5W16B4U4msJuD+MN21zvpASS4Nf6fnCUrR9uRbXQm1P\nJjz4I/4NMC5HdyYsv48e/qem5Fq2ySAbWV0jt+hJuY4vp2jRaHKl4eE/6NQz\nlkVnQpmw/7fOz6fGXJFeCJtMR6V7hVw5pDVPM4iHKniHEu5f6riksUJFVEP3\nay8k3scq3AqYDQ/pg9cT70Hr3vMQ2UWPXfXDfxQxz0NJa2LZ/IjL8vP1PcUG\n0CdbNuZKyqKm7ZE2Th3E4rLa74nuHyOTeswYjjqAJ7ohs9ZFrcyfwcdKcT9I\nv3dFA4pwY7ScFr40cRp01BIL729ru7ywhJddqaFQgOK9lNERoPMXaactm4rz\ndxaWP/Shr39nzgepUQSxFE16ccxpvEcLtGze9xB4F5znPtPoPryFzOjqXazC\n5hH+MI0ty1j0uUyFtMDAeyxWerXZwCPzBCDp1V6OLbHNZOkcSKObsj+p/WOO\nJSJBsCHKEbR95B/gq+mlb9PSzf29idOkhx0vWqQn/kJ7+dSX4MShgLap0GYq\nhZyKX/8o0PE5g3tiQE1WjMVs+ehHo6ItSW1H/vm5rqScufAF0MNw3oo14FzW\n3WfWhOmoJsSTAPnob0HZf2KFEUUGiE8D/U2+MD81cObkFLPA31DEawD+2vj1\nTOeM\r\n=7ZH9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"611dd22b9afd72a48b052d639988d0b6058fffff","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200519_1589872355809_0.4363287768112154","host":"s3://npm-registry-packages"}},"3.9.3":{"name":"typescript","version":"3.9.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.3","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d3ac8883a97c26139e42df5e93eeece33d610b8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.3.tgz","fileCount":171,"integrity":"sha512-D/wqnB2xzNFIcoBG9FG8cXRDjiqSTbG2wd8DMZeQyJlP1vfTkIxH4GKveWaEBYySKIg+USu+E+EDIR47SqnaMQ==","signatures":[{"sig":"MEUCIQDVfLVz2+hflJVSEiLpjI3Nc5m2gqffD3Yyvx/iiGn9SAIgYdLVUlwKHrroM89RnjaY4N03qeX91AgVxkGNRoGFWFk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54122093,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexGRRCRA9TVsSAnZWagAAdyYP/2OUSlHDjfwp9qU+P1ym\nK3cY9jmrSSaVB78gEeoHLvu8Brfgp4K32r7jvAXXtzFIPIEcPunaw/cj+9kk\neV8rrSC18hUU5SUj27RXMxU5WIHSLWguH/wTh6NG74K328fI+veWq03/8D/G\n2FanKly7fs789o64t7ePheS/labtdylKkg+u9+K2gfUNnybtYWfvJT4Nav36\n0BWJl0BEcMVGmgTo/PR/J968r2Nkik6UuKMy217Ch4Opo/HOtMatPB5xrL51\nREvcQcc82ExQDKGxsLg1e2QyCcfvmoIuyppOCoyxkCE2sso+tfZWS6TjeVAk\nOv3tDyxa1H5PGriqJAC0ltZdikhRvK4G41si9i/gCKx8MkXh8uJLxC7qo9OT\nWrDs0l0WlB7rWqduC0LlxG6Lp6HcNYxkAa5S8ojVyowHYJ6D0y7C8oWzYToO\nuwEgRVRJscQ9U+N1OEa9oQj9lkRrP28rghfio27qsxVXEIEpvuUF7vSNzMBh\nGFNI3TfC4kHnRVAntJ6LmyAa47bSYZ20S5b1COfQV+IdgRIMTEKcyYFMLIy2\nJWeH5g/pdqXi86MQxAuz2iOO5vSEgPayUIiFJJnJnss+J9kuLI4Oa7UqRNPZ\n0Nha9omUFmfHhYUgHOuaJ7YPnIIL1UxRp3GjOhio6oRJw5L69Pqx/mr1UXDf\nUgfq\r\n=7FX7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.3_1589929040823_0.8145207850975575","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200520":{"name":"typescript","version":"4.0.0-dev.20200520","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200520","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a340b6336dc8d40672e86df82aaa541c74556cba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200520.tgz","fileCount":171,"integrity":"sha512-a+E+3oVsrVGuPrcu8yUi3RMyWkLfDSiRglsjVE1C2GBrFdB2IK82PpqIU6I21Lyrros5zzy23A0zH5tGdNUVXA==","signatures":[{"sig":"MEUCIAj9N9fuFGbyFG4+n0uzRgYncSlDQeiq9doRgih/GWVdAiEAvuU6qHTgWF9yaO2yZGC1sSKXhgvE1JP4B6/k1hqSHC4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54479403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexNhzCRA9TVsSAnZWagAAI24P/0Mx0XHmkYgn9CqcpKM0\nrlkjzQ91aH2jZeu1gvBVORtEbcTkyXVjxroW5+pih8PiXNh1NKvmJtBhYbwF\n89bQLgUcfljhAacB0uFupmrRa67wnNxREEpbs/XJDyMnlGFeqUs/p1s+wGbG\nSM36cITdGpIDxcO/awaHWoi79GCfb0tYwLH9uDhYmcHqB6DzBrVbUOcOXzbi\nNhBBcbSnH7U1m2CwZ/VC/MbyHEw8D8WPswh1B9KGWUvMwioLyhM1Jvaxg8+B\n5AbYux92dh2K1MNJeIA9slybjkgeR+WN2iuaXS1rNDOaGNxoiwHZIYkqpehQ\n4tNjhmCb0QpV0g3DOu9f7HZEVzG0hx+IyhYEG1VqGMX2sInPxLR/4X8jGuyL\nYpPzchhacAfYFHv6lG128Ps9KsnlCinHGsYyG6DaOHNXavZ4KYJ+VV54ascA\nxgoFaQiozxuK7aY9zbiLFIj12ngMA3LDVI2+xz5jo30/zwQgzfnxmlvUu/qI\ndDehnwzWN3ZqaEcK83M6k4cUstPN6trnmUnbQ5lmR1d0QfHUPp2dSctXrLwl\ngR6lmBGti5/2aQKyzIhqW5mVC+j6hk9Q5pGn8i4PnoZi/rMfeLTavR+4FG0R\niSk28YYVzx4GhT541mby7x3iiRhzKY6BqahgFNEyUJA01oUjlKqMR60ucXT6\nKgpz\r\n=fCdB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5f597e69b2e3b48d788cb548df40bcb703c8adb1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200520_1589958770084_0.06028121625426719","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200521":{"name":"typescript","version":"4.0.0-dev.20200521","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200521","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8fd33167572f33d71c4cda4ed81799149c105270","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200521.tgz","fileCount":172,"integrity":"sha512-J/AxSHSw7St+S5TbSSQwFUxZedleqOGawQ1y0aublUSbUrJu4lujq2uy/Q1alUkuPYaIKXWzT8MsVh0gwe6jDA==","signatures":[{"sig":"MEYCIQCVMmUz0kfRoOW0cqhivPoAFFHPg3OopWbECt60RtxyQQIhAOhwcIrGc0M1eUlvoABOHLOPdvThs98CIZBDsFgYLuRr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54503723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexin4CRA9TVsSAnZWagAAwrYQAJ+jvRjXIg0bKSHY9Dvn\nlWmPoos/hrIwS67d/CF2XveOydTGtQGR15/8XacmUr4McqAa+anpvPGlcLcS\nukGfLIYlQgwOeDnvzeTq9pIj5tMc3oH2W197fA6FWNiA8C1Tp/vmYOQiU9s5\ncO/y/wMplzZO5WpUdHjMHyJO11hMq57RCagP86VeF/z83UO0D5tlK4lF2Cta\nlxVw9nmw1/UeErbq6isWEv8Tm4DkymD7s1vHeKr1tVwgS9QcYHYQDXBkHBQY\nyOS/0oVBZ38HsBJabDr+jkUSKjPx3BIIjHWO53h7XyzfeLlUEXV3X1Oo5n/6\n9PaZUgAHFojyBZOXwTk+8zi7i97cVZAfkTWZgc1+dxg+WXkQdmc03fiuAmho\n20cPQl1kxFeobnoDGm5xrmMjwqLsasJCzKieaA10rp5wsn9NOAXqnz/zOqrn\noXdeVNt3PWJbZzvTXjAcErm5hixMuzYU1LEu8kKbAezDK24Z+ixf+U2aFl5H\nqWGP80sBK3H0YF4Rj2CfhQ5mmhbCz1jfuwx547spy11GoiqfrO4hfvWDYY7B\nHvKCLPmeGZy2vweBbBycBlCvVo4naUqC4LI6iHwPY21WjBIyPik1+n3XzykK\nj499z73c+Cr3ErMSZ1FDK1NPhzM9DMD4FDbmeRHT1IXlvtM76L1I0Viu1bfZ\n0/yo\r\n=+xX2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"45cf20ca70ae877aad83d767af43690d302efa51","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200521_1590045175803_0.8918097945727299","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200522":{"name":"typescript","version":"4.0.0-dev.20200522","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200522","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6b0f73afcb3a9978401bf834597e9388892ee4a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200522.tgz","fileCount":172,"integrity":"sha512-wCvtYKDPX3F0SxaFe9OLEBguK2/w4Jis7tvPKQLifSmrMjp7BA57z8qlYFd1OQxOUWmizYqiyYWDSlMtWeED6Q==","signatures":[{"sig":"MEYCIQCf6zQoloiADWJesZ1c3yW2twsOPftOWwzeoaRFt1pILwIhANd5PRt0/Vk7DCLyx5hiNKMYNOZ45CdmpxGic0gff0F/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54506396,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJex3uHCRA9TVsSAnZWagAATOcP/R3IjRSaoAlmzJ2vsWT1\nKSn60lYvWyEls5/KswvjnlCQBGHN9gglqMsGJ+k9zunbVw5vr3Sapz7TbdfM\nGa6NLejCtdFTxfMs/7KEdXbmXPHfyumjEXOFxoMv5TbvJJWJhrI81YPebWlp\njgR1Lgd24bGsVFSdAH21xQHzRUBXvT6d5UQJK/3Fw9eqys/L7FICzE365/KW\nU776Q6KhV3mhyFJhHJyUHjqNt84FspRPbPw0PP7JvIyqIvY41ucVOOvaHXRg\ntstL4o5WNFDVB6vXphl7giegp7X7FmiL3+Qz+imoxF2QO2OaocC4casdDBfH\nbgD2jvNv0ymlwydwF3Oqsch6wunPeEkXfFP/wuWWg927F8t4M44+NYLGX8ze\nQKyguMsmOX8evpAsryZf1F9Eytb84Omd+Gi9Zn8QzEj7sJc29NF+KV7XRV2t\nUt0+8FxZ2UK86NMofaHaYvJvuwexUJI6FukXxHchX+FDIZ0aspsOERoNw1ve\nhFF0qrZzE9pGq0vd/pqNnVm0t5Tx6oOlxgs7gQNRDgAPtjL17hOd2nop0as8\nrLCAy6WqhfHAnnKv56+knVfj4vCS/s4907QrZeYfLhpJaLAH09BwMlAV1Wwi\n1mn8ykYPEmQqpies+/wF4UujGFrW3xNQJtdVl43X6gA08lO6zLb3GUBY5Gm3\nDWIW\r\n=nF9y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3eaa7c65f6f076a08a5f7f1946fd0df7c7430259","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200522_1590131590913_0.751662618230398","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200523":{"name":"typescript","version":"4.0.0-dev.20200523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200523","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7d083a150214c357973dc19a36ac7257e21ff1ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200523.tgz","fileCount":172,"integrity":"sha512-BMe4bsXbdGABN84olraexKpJ7bnJlSPhcfCUDLEEeBXtD554FG75Aad5TWOgrmwgXYvlcpLrh9oYA18AO33JmA==","signatures":[{"sig":"MEUCICmAlUgIbR50ZVDtJ0dcvWxgBTzxHsSw72zsK+aO5+LJAiEAxEQs2SOS3hx1CLyBZKCBzoBwrIdgGseMdo8DDyKDN5M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54507501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeyM1FCRA9TVsSAnZWagAAxoQP/12bOExPWf2ksY3XjFgw\n1jSyCl9Hh74tT9niwsKV79HnKXH5XvODmNCB/4XfnrNOodS7AK/4a6aTicF7\nGEk53gPDYr3MQaimxcT/e2cZC+6CK98ejcihhV0oocfXerCNqHW0uCwqF2O/\ncGUQ2mQ469qGF+8CK6wQVddY6BLPCXQW6iRdTdB9uHodnQ7ceyHNAyirXkrv\nuChlasw7ClWPcCIbVX/+KlMQOsWyZdZcH8/n6J6k4cUVpn8N3Ik4AKl2Ws5U\nA9fVVDR0ylxsUCZLHhadTjMn+vYhH7rRDToqsDh5ETzjx2XbLvGUTwEcAapx\njj3cmM/D+9vKjP0tke8J9a4g3X1KaqAJD+qophhqp0cFcgSE4Vq1x0XK4FeI\nO7S8QKnzxQBVm7A4jPVrDBw0scGokpoqjvaV9POwJZXXfxk2hpTmLgBusRZz\nUfxgtaf2kpIKqIXEkmgwoHCK7Wa1F6aWcN1Fxz9UGLOCNcP6kdA23S96Xzi7\nWOa5lI7F9ojQEMqWbLSYYFVlE9MhUwhVUQjfJE+U6LLTgqmCGV+ZHEB9PeaB\ndKZJJTtqwRfcvlWYMa8K0qbBinqkDUe3xDd61suoxxcwzltKCiAcd5rD4PG0\na8gH/ckoa0mrGJYQZ+gzbE8zfi467/5fXvJCmhRp+BKjNvAvuJgHRPTXgqv0\nT/ne\r\n=cFuQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3e0d58f4d2353fd4c4c274d1aeafb8b6ae022605","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200523_1590218052107_0.6270708118121933","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200524":{"name":"typescript","version":"4.0.0-dev.20200524","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200524","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"820786611e74ca134b5cea229eae0505901c4e02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200524.tgz","fileCount":172,"integrity":"sha512-XhBH4xq+qzhudOHAD36N4rVIcoJNE7ociCCKx8k/keQZicrWN18nlUySygkfSeDb1YhhODycsk8MQorcJwdi8g==","signatures":[{"sig":"MEYCIQDt4P0p4Pcd9eIYDZ9VHQo0QSsiQx2eDwZNH/Hnr61B2wIhAJFGCVbYlhqdkCLC3xnqzhmukimDLJNAFEDzkmuIvT0A","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54507501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeyh6jCRA9TVsSAnZWagAAH40P/RbFewBirsDFx5Z58xsA\nMcE1RYFFYBHwRd8nvliUQUaqJ84MkDP/4Hgit7R5L+xYtS2+KB+NF/oq68QS\nG82w+R67v/g0oZ2oQWW9Jv6VKtqzq5EB/bVNE+54QXOFqGHTD1kZ+HE3iNm2\njFSVi3npcmsf9dnhJu+U2QN3pk7qS9rvHbFf0em51RKqGiDfoPLdju8FqGCU\nG7yhJjjt3r72P0jg7kWCb0MZKCAOiPrjwiOYnUD8w1EpABMEDWlQHdOjmQah\nNB6UhvYnFYFL6cpkbsORZdnmyafEYj3qoaqeNAKKTcJ+KtOWXQLEL4lv9hCr\nmWl3664l4JNPqkIoQNij8ioWmZPYlhP0fZLeDjLdwdLe8CWBrd1P5M/HSIW7\nNg4HUx8qmwFmG1Q83Mmp6vNQG81lRKKMEX14RuegMwXbA5IEy5FvRq0gk703\nQMXgSo8IRM5D6lp2/yanDvGpUXjZyPVlTA76H1eWOqqXtAGuCIv8zsy8P929\n/zFE70qqexj5lPF8P3kIEB20ZzZfCNloBLV+ZS9njCUWbANQHiSgzhxQxFWr\nk5oPhCGUvlaFqwgHB+q/kKMggOoulBYoPG9YOy0osJWz1bs6pUJHdCtLMJyp\nM+7ydodeaWc8ElpJhJH+jQzqyXPHQaCnyrcj+9/Mz2ArF94Y3KzomutyIplX\nqYbV\r\n=/xFN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3e0d58f4d2353fd4c4c274d1aeafb8b6ae022605","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200524_1590304418950_0.6548085942422444","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200525":{"name":"typescript","version":"4.0.0-dev.20200525","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200525","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ac9a9c3d2858bbff9c7368cb19624a53fef201e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200525.tgz","fileCount":172,"integrity":"sha512-xW9nN6RLFMEI+wB6gt7Zen2+GFjEaSSParMbxQFysPU0nuSa6P3zft9zJ/MUkG0nrjvFsh5hrg3712+z015PPg==","signatures":[{"sig":"MEQCIE1QYOnFwZnJXRe+mGuKEsEuvSxcM+WO3AmXth8W4Z2mAiBzNM1bSIg4rSX8VXa3SlPQ6QMIq/uk7jYs0ePKHKigQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54507501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJey3AACRA9TVsSAnZWagAA8JYP/jCZJQ7VqSdOQR30JhPf\nzInI9NgaFC+KAU3LUhzgkJNSKXHmJKcSamlx6a2MtasDl8ZqDeyf+jIv4TYz\nLNyMbNniA/xu3zImPmo9/cM1B1bH4mbvphXHVM41+e6LzCRaSnOLqCP5U1I8\nL7er8kzNzPTOn7YvkKr2IJ+LC9gKpeBtkrqpfLns6iq5ZRMz/O9XWWMJ6div\nAxNHXnXBlKpBP8RgWhwpZAnWNaQ2Uw1JaEpSsf4nEklwT1w4foVrGBYJ5ERc\ngImkZxMbRUZ2rIV6aPwXccP0LLQ+lgOu4wKecbTcZFp0OIrL9ZOEAb0qTkn4\nO3Ptz6tVmKeSnE9NE7FOfDx21T8YCLUKeNeSFToQkAZlNWWj2L2hUtGr92cn\n0o3Hl+IhKoaOllnxeMaUM2s1KmjG4qXUSM8fdksYz2YZTtDy4QfYjoT6RF4M\nsDGpuZ+wzLvL6obdZaP8s+CSrHejAS56KWer6BcIxrmgjQMYyGzegMOn5ei1\nIAqH+v6Fzz0n2uuq0FBuQsyb3bQYUDxyTCDtEQlJIHZ0MEkd/xlEyWffsxuD\n22gLYSesIWEnaXovmlsDWYOzqUCi5v34z+6HSsaIbtO+LryOHphyXzaLxDJD\nOpCrTFTKckbXRBW5XA37eCUceL3DXUbNL9p+vWJ1Re0RGH+vcOoVqchcOLof\n9EXB\r\n=CF6P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3e0d58f4d2353fd4c4c274d1aeafb8b6ae022605","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200525_1590390784071_0.3133786370096887","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200526":{"name":"typescript","version":"4.0.0-dev.20200526","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200526","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6904449ecf49f7f3ce352400e8a9114976ec8745","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200526.tgz","fileCount":172,"integrity":"sha512-fnDRbKxyBzUufLYMGymzpWoaACWT93Og+YN453XPH5vjzGaluP1EnSIBsW3yASX4McKv9Xt9leXGidrTG5XWxg==","signatures":[{"sig":"MEUCICkJNrWjxQjn/bq+KKRnZQuEfpZ46uOxSVVfUMasnS6lAiEAkWcg4z10KJUm9btC13N9lRiDanpYEvSaC3IL9UgGqtE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54511879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJezMJFCRA9TVsSAnZWagAAIjsP/3McL/hLoeBy/ZLH5/vk\niTfzoiuRVQEme7swN7NI0r4lw7UolKkDRY/HqlabhGgKkYWE7YeqVap2Td3X\njQmVGQT8UylhFwzw8zCnW16niryCu4nL/p7Mz6c4AB67IgsUVB42pM8lM12x\nUaqZOsLn653aZa8tghmAHayudWKikeD5+AGGSoSkBfkzPHG/ToUO2Jgub196\n9XfEy7hJ5+F53T90swE4v3p167cb+03yVcCAfbLkrG7Bc/ifNVINRZaPqcYX\nfc/5F2p2E4nYW+lAoHxFvcpkVqd078wH0OgmWEEqqWBPfF3HSsNsR23X5rK0\n/ZK0pTIvofx2SvWzZV2tUt/RpOcsjhBpWd7J9yo4R2l2IObReFM2VJkFRmEm\ns07nRFGLstHBgDi/JoGCXWaYE68JV5ITg3DXmU3D5miGwyGT+6kZEvnMahri\nFf68jHELce5pkKrtbGof17WhT9kFw8U+HVPYX+8eDXWSVLpW8OgZYmCNdc16\nBe1BJKDCNHkPkRY5QJmh+OtBKBDMV/aLiEVoKPx34eJR8UowG0Q2HJcQeYkt\n1ln3ncHILbAQfQcT6QNIrUbs1ErFKlG7Qzjj8V3/LmCwR8dx8eqOP/+r3wVr\n7MkFfAIAOzq4zfCeVCzJqObD/M838cpQIb4bkVrbDpKzHPgwKXR6QBEm4L3b\n5AAi\r\n=druF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6ccc048f4507e3fb1ddd7655ac415b045d029f32","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200526_1590477380436_0.4746321590651017","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200527":{"name":"typescript","version":"4.0.0-dev.20200527","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200527","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5735f4ae7271ff8ffc2eff2fef4eeeb4c2d2a779","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200527.tgz","fileCount":172,"integrity":"sha512-k2onGAKKwXPSFnVKERteLrnq1F+C5h9vXBLRofCt+Sk/vx7+NHSPYaR+OokI90B9GdoiFdVPJ0gzxJdmebfm9Q==","signatures":[{"sig":"MEUCIAaJjyG7MbCyfGLTnDZYbC7/JYx4aB28LAG5SXMrmOSwAiEAp7icsGsjutnxElbdnTRpWiVxjPwZ6lQ+yD4stLdVoo0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54547672,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJezhNSCRA9TVsSAnZWagAAZAMP/igu2W+ySLGgsvsDTZc5\n1EhJpQAdUKIjwmX+lsYNi6IiAbUA2JY3buV7N24rlMDWBoG1oWTG8kI+JKSk\nSAWP6TvjrGQ3WbLJOpue6JQ122I80pnreO9UGzkD65HQDs8lxzKxqUgbZ6q/\ngYM+51hRNERZMuooYdWexvucV4G+NLA7ENASd0qNwY/SIblbk1sjLnjdMBll\nn2uRUyBpDdPkZTxfmuJ9K58SJu4JN14CI8FH+KmhghbuYeEjrZkKuLu1pwzg\n7H6MC2v2Xme+I9VKeiRseEhcBWxfsDC+RtvjyGRRztxN/J5667+fBXWiWWRl\ndDpGFsVPTTdY0CFppLQmecq8oq/DDtk2Hcp4mHegU+6bPkvnYlCafdEP2DxF\n5gF3AqkqNQeJNckEpVbwIRjiGhbbhSV6yHVlUKZw4dZBLRCYqWNIRRFQ6g1l\n8SvDw8didlEuD4ugRcV71ykM4aKXr8QWqgsGLZ8gs97NW3HVhFS6iMCy9Q2q\ngX5sWLX3AipxAygagg1Vs3B9wBNbPkaPMnwABdr/VhBeusK0M/UkbM217gL3\nR7R/AXyO6SIVLYaV7xPcJVMp1I5X2HPGSfgDZvjatqRa5gbgoLwnMCsMYCyd\n0YeLS9XEpGUVqZ5zmp1pDTyvD5MeskXSIX2iQNmrg0moK3Mow3snjOegl/Ek\nGOkU\r\n=DHON\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f9b43c6763e11dc7cdd1c1f50ac103831d2233d7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200527_1590563665578_0.9561597960612156","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200528":{"name":"typescript","version":"4.0.0-dev.20200528","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200528","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"604c2ad48a34ec87ea6b567025926c41509e87a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200528.tgz","fileCount":172,"integrity":"sha512-tQE2cCwjRGYSO8g8ghX6k1HKvOz5LAafQEzhFwUwN0frqBOuuS7c5/Cdgjct0Sci/7LLuFLP+gg59LiIb1BtkQ==","signatures":[{"sig":"MEUCIG8gFVRwCu2tp0rdIzu1hxKUTO9GWBmAq9fa32+ohCyOAiEAyexEzZFlWRNnhbd8Lr3gLkwWI6cHZRTHRV92NrZK47s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54547700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJez2TJCRA9TVsSAnZWagAAsZEP/jz7URLkbH11N7s013NI\nCZrkBERyfKZbwj5M98x1d89L3RUNxdm+ssf77x8YCPqg/FIDCx9tHt2loEiV\nkOMESd8li507sOxylO1fKfkxXJT/mzibYll2G3PWEJNhXeQt7wzbf3xk6Zc4\nH4ETAjY6PpSPfz/NNMqMvjcwofynefjw/kP/o3zZ/X7OVnImSbqLzNvFagtK\nuOTvJXRLNCVlUZwcnX+ht2JDUJcbFgZsUfqYhpD6icTK4ZkUhjwHoDDpZt0C\nKAP94EWTeCv6JHWxSvjNzXzbzo2K+i2lzZsOshmbdPcG9qysYBQOdYIk2Jz0\nXKcU9OL7Wqh2RHR3T8a0LiWPKiqNTZJ1skDE47B31szEk3CzaeAlU75+QsMG\nHwK//da4G/jzgRu7spu1F34HDXY1S873o6+j2dJHBERu8gJFWjtntVrGaozW\nY8l+Z8wvSVrwf1SCJ6bI9AVJAGPP2efzh9thRqApas3ESZJAsgieTHxZH4sO\nSsff2naA8YCT7k3y7pgVpFho+HvwTYr+sfH5xiSWcdAwdWyJ/qRWU77q86id\no1XB9Ql68A9WBEGQvmdo9zZ9NQ5sQ8sPd95HV86caknJCKxkG7/hzrzrRHSU\nCEvxnbonvlRKJqabNhZneZ1WuA6PPvmsfujg50bytO6N6/ibte2jbhiK9Q8p\n5p2s\r\n=bH9Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3bb84ef07dd183ec907435ba3480c661bfcad0f6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200528_1590650056778_0.15352081122098626","host":"s3://npm-registry-packages"}},"3.9.4":{"name":"typescript","version":"3.9.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.4","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5aa0a54904b51b96dfd67870ce2db70251802f10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.4.tgz","fileCount":171,"integrity":"sha512-9OL+r0KVHqsYVH7K18IBR9hhC82YwLNlpSZfQDupGcfg8goB9p/s/9Okcy+ztnTeHR2U68xq21/igW9xpoGTgA==","signatures":[{"sig":"MEYCIQDkl7Ie10/BFj6BStKKUm2AoT3YD1qt6mgV8539zcHZOAIhAPTjj64cVerxmz8jekqYfCiTJBWlsBUu6lrRLV2Xu0vc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54121766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0GGhCRA9TVsSAnZWagAAHicQAI1npPBQpWqu4KNd4BKN\nHtd2j2s08SRMTXj81dgH8uOsqyQxbpnHUCKWBkU8FO3x4dICzeMwTzzNXgJs\nmtara0CT4nU3Qg5xB1N8NL4gAxxJEL3oahwJpkGr4Y3YBVilwaH/O5uIpATA\nqGp3vjoZkxI3qGO9i2bX3bx0d9d2+bq3uFOAWLvAQOah0eUG0G44tp71qCtH\nBS6PAlaV8iMGEGAWJYlEoJCx//J7+bnIn0QRYK0C0KF7iFslvIO3sNH1Dmv2\nJBV+bFrPdOg++QFzXbhfzdNP5sO8bI6helWTZhGPcBgI2y6Ay1gFpxhkNfS6\nGgNe2hfpJu8gxGPCiqf3VTilaLi9qU46RaJEs9KcAOGf0tcw8ym3yWE4qc4Q\n+yh+pnMydhRtqoAGSao2/ATQy4+/qUvPkgw0mTZZ4Da6hgAIq0R/LgxUsCCj\nw/Uy25i2qCsjMt/7WRSW1HB1ze2Ih1VoPtphiuufupKeDY4jjNgdXJXddNmV\nh8q4ethNl2eKOSiG5XrXag+UEPHgZxcdZqV0o5vAR39pKqJoSvLkRaCHZP8f\n5aciCBl8YgDOe34yZRlUB+0fh8iZ95K8YZ1ikiRG6wRVv6olrrglxzcb/d1n\nXwLHDlN03PfyG+Na6nk3JOnjKnYY+ruXNiIi1tXEwoOYbAT/q00XIzLWFlMG\nxPNw\r\n=3HsL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.4_1590714784405_0.554425890000938","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200529":{"name":"typescript","version":"4.0.0-dev.20200529","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200529","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"503b5e450f20f6e2eeaa598747724f17dcb5b3b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200529.tgz","fileCount":172,"integrity":"sha512-qbj0Vwyul/++S2H40s+WzGKmW8+Z6NQci4DZL2j/gxrm03jur/UVa3UeDkxVO22vggP90VYIqeTdBHx5FgQvrQ==","signatures":[{"sig":"MEUCIQDfxvV5hmio5iy8IGyI0Jt8lGVgacUlQMMeqX9V+sHlGQIgRUGtg1Z4WsmtGXCRiDv+u9M1GYbMLQB624YBZ2fhyiA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54548044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0LW0CRA9TVsSAnZWagAADhIP/0ip0dU5PFetsM050paW\n9YTtFQafPLugw3rTR6iDGEDJWGtFqQeE80n6Vka1jAYua3LM3GATXxwWFQ+U\nvlTe3Xe8r2uuEm3tGc4Oe243wmsfuaLZniNmR6R7RpfgYLAF+rbqNDNqnALV\nQ4XbcW5aofTMosvfEW73qWDDO8AT3mVsaIPApeCki/6xoDEmWcKbgekB+dDA\naRX86nS5alW/Pvk+Tz/aDcArR8Gfjz3P6W5Bc3sd52pIgFYIm1AB0UENRQGy\n/yyYOuo1T9zgeAhdon1qH35Jk50xpYKnRxTOC7+P/Re+dP4dn0rDThrLYUXh\n1EXnzUSCBxfSlRHSUd52+PTOtpSRC2FZ/rcP5Ogy9gITO+kaX6FQCb6mOxQz\nlFEgH8YKZkxRJq3iJU48kq/EPOHvg0lcjXxKvsGWI15bdenXNoXfXM/cSO4Z\nelAbfXCbaYmOkNqS49UkSjnDN00bLmD8OZKYy3GaXXbOwS02VnXsmQmOW6Bd\nuqxxhV+pllUbVAxDUvA2uRzrc5zTc1A6WX+4XsYq9o8h1/DY3Bi6tCF3RGt1\nBDrv2Vmhqy8dEPZC0E5benXcCyxorJ5tZTP9KW81bhQ+8W4O5fnLSS8vueTE\nhtLaNP2YzubXxaj/TDWcIZPMW6iLJH1SUhVDOm5Ye2SDv6kyy4qx2aMGJQ/p\nuf82\r\n=1x3Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d45f0d0c9fb933d49a01d41eaa465940cfd78be0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200529_1590736307532_0.8665417228654726","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200530":{"name":"typescript","version":"4.0.0-dev.20200530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200530","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1e4bb80031ebac4c418dd97134651fef3154fd27","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200530.tgz","fileCount":172,"integrity":"sha512-4NeVeGEF0Uegn4LyLF3fuCv7N1jeBcdKhLTN+dRkdSJ2ElkBC47N6Vl+RhIWL4S2eoWXwu2MjxuW9e9BRAJH/A==","signatures":[{"sig":"MEQCIH17WEWwhvnUQTyfkGF7eGWVsR9UpPMx+UCkmKx6nnH8AiBpYpjbwH+2x5GlmD+ca/NDRZ8/0poFaf9TY3cJbTJujQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54548362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe0gfsCRA9TVsSAnZWagAAy1AP/3/p1iyrXcYLsfC/44kJ\nI9vEdzMxRaVBc/+v0KagycVn1fe4qpKKf0Yv0L3uap9XtZ0S2rR+lJaUy0tF\ngK5okeCHBJKrUy4sl3s+DnUe2EAoQfQxEburu5HWTbuwrgYFe5DzvZjJIw04\nd8urAgkCXH5iYXW2PKnRdGvcNcNp4eW3KnpQ79ci0NQhiaZ3xtxwY+RBOC51\n1xaIlcDgCia+AjpR7xy9dY2/gSKdNB/xWTUZTdz3isp+/h9e2SgGwZCgfw/P\nwka3xhDkQaiI+uZR5FghZRBkIxdBNv88ugUyOG2mvTUWsxinW2gC1pQrsFzB\nIf8SuOA9COQYGU95iWkp0+lxCrGoBY/cxmO6ySZMJ1dLOr38Sn/teLLo8tHI\nAww3j2vW5l7nxIdj9McT16i0PhWTL+1reI7k3c18Is0Nn22C4qZqhouHZ1+T\nAnge3UzYNLcP7vtZp5FdelvFQGs0aMlDSyWRf3OZzruIglCyXCo2K7TTTLVB\nypA4JXapXqkgTOEwi5YRbeh2pUhu3g3/zxuaCHv63r0Tt6tPbDX0rf6Drrpn\n146MLf7MCnMAFu7l5OYC3u3P9iewuf6bOvMwuPfLLBy8Ls36ikRLA6lbTJBo\njFMlidjuIovqbeE1wd8mlPyfzgYQO9s10+zEC1W1JAndCp3Y+FrNLLQac/qK\ncv2w\r\n=G1aO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"525b6ab10fcb74bdc251b150f04f28793a30c8db","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200530_1590822890611_0.6489057026232272","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200531":{"name":"typescript","version":"4.0.0-dev.20200531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200531","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"859302def56d56c4cbaa79e344eb00e2a2d9fd3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200531.tgz","fileCount":172,"integrity":"sha512-VU5LvKObE8R1IY4DXYnEPOqVOrvbCFhfEJ85aN/KqLbPZkzyjWsHAz76cK9aDRqXpbQZlMiMERcvNGQk+Lhi/w==","signatures":[{"sig":"MEYCIQDedPOIag/N6DBomQCxJMnRMdLj/pMkqo/h1ZwF6Va5kgIhAPlrgnyOl+cwwRT/h3YoIEIq1rHFoNuPJuqmSEso4XnG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54548673,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe01mQCRA9TVsSAnZWagAAxRIP/0Upnsz1SpRww9/2qKOX\nmkgB1RVlYibsXrOtbb/Tr6HQ37RQKafzw4XHFyUSWmL5tK/hy+jNWb+IhXro\nKag6FuVVPSwBPTCwZvipYhLMIR67Td9nCDJMX1vz8nmdA2yv8HMOs751WgIN\nBBbWLJJFnweq0ji9O9tp2qHfFu+8cjBvZtwX3wFUao29gJ0bjOzR75q6Fs3L\nN16Y+wi/tIFAbFx6bKmlS0Ei8GtzS8GVGV1O6duF+BMHhvshmh8G7DOdeL1R\nRlnkkdc1fWvJI8hbUZH/+MBOcvcin7gtHdlrt4mkdULDSr4FpKXLdA2tcmPT\nJtt1JVRRCbmfZxMJ2V7d2HY1jrhDBiw9mABT+ndKwZYIf+Sw/1ttmMGK65d7\nrF5oV8tprT5AZnaB5o1piDbSn+JjEb5G2FRS52LE6ksGOps6I2RfmAA8dr21\nTGghieP9b5tiShGycZ0+51qJkKPdwY3FM/uXLe5HczBnkcivtgZrYE0kl2q5\n263sMC8Kw2riufxoQ3FRS8oiZotwb67EE3w+ef9gArAN3GNCbPq1CZEzKeBt\nwCsnI3j8hEztAVdP4XtTHiiMMPj7kfqJ18iG+rZtiFBAgQBNXOc1CPX8Lhp3\nbEKG//eEj5PZ72GTU0FY4n7TXCFJLCHja3WkcVnzuBWSRuDwCXXPs86BT2T0\nvA4p\r\n=+T05\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8b8125e798f3ffd5fff722f48669179d2feedea2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200531_1590909327909_0.47377953978606535","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200601":{"name":"typescript","version":"4.0.0-dev.20200601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200601","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f9cb22cbfc312350ff55b7c57eef62810b0fd1e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200601.tgz","fileCount":172,"integrity":"sha512-vInHlMfXsl78aut2sD+Nj2mFL8Cl3+NxzVKYX9q5FrCEzd7NK7ptrCklBFm5WE2E1gioYofCEo8q4hgIVChfjQ==","signatures":[{"sig":"MEUCIHI1zXm4yXUxRZ9CR+M6zsI1W7IkPcVepwB/C5jlS1rKAiEAlpeDS0L5wWnvxt9FFtQyfAT+W/F1h1Zz7YvK9HHy9IA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54548841,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1KqGCRA9TVsSAnZWagAAYIEP/0mAAiCwz84ToyBHBuo+\n2PdSbY5p+u8osv3kdsPrwLV02wRXmmGUZccvR0hDAv4QnP/rj8XBZt5RoYio\n7BJ0hp9BA9DqzCpZpFhfEYV0cADkq8EMGGzOYcRamdPHYhYoTit2Iqjnoyl7\nnz/gVlUr8BXNITJM7aBLpotCGoFoPN0DvHUYxTotz8A14gFiCz6Cid6OEJ7m\n6TjJnnUrl2B2WGhD/pb1vMdG3A2VFF3TASLVZmGcUBR4N5/+RvJnNMTJP5YX\n597TjNoAH3fuF0mAeoCKb+UNQbLf78D1Ouo0BFunNPwrFvL8//HUJe2r45an\nam8BhmeaBqZ6lTCfResphHwkpDNIRcwJHYiREDyIltJseJNhlQRcpEw/vWbI\n6pXx3maDTHHZ8bfCDmRZtPldrywR98Jk1OEqxrU8HYOxbFQvE8EMWIUi0jRt\nXwsSsNhOVRTOK3UQ1dd5TqCFOzI8kEP1NJrRNfRTs8rOzw30kDL6wPjADJmO\nzUEtgy7DfBsZqDXuL8B3NOfkOMv6X54PEIUEI0HBKa2lVc2pJxAggjbSMlGS\nRpM/U+FZc5xVBvYRNGVrzoYx8MTKpDef8Wpz3G2moOGYArYZLGmwQeFSOPW+\nwpmzqh0U3YKWhDleYE36ALYUDw33jQB+/BtUnKkdRe6ZSWsPVvat3HeIirqn\njkHD\r\n=rhJG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b21e4bbb0b97a4c3fc8bd9b47a64c549d699fef7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200601_1590995589433_0.9200968074299336","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200602":{"name":"typescript","version":"4.0.0-dev.20200602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200602","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93f04a7c90b5d307059c96c2524fcc5594e388da","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200602.tgz","fileCount":172,"integrity":"sha512-DN04jM86diUV7hgOooYJSpdN+Gn9WEkx7FgckU+65O47hg6i2hU1/I99upanvp/36VhvJ1uCXpEnh9KbWsVSaA==","signatures":[{"sig":"MEQCICej7bL/rp0aePDnVebkqAXgmuQ8tew8WbC/yGr87Tb8AiAEV/try31ybjkmnDEyGhq08TAqUCbWk+f2UgvlYf3Eyw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54624153,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1fw8CRA9TVsSAnZWagAAZwIP/Ry/mx4WmUzj/fstKFEI\nXFMqRPU0ZjO7wwXJ7FVLqR+ozQqFr+vR4F2KR4iiowbhECH+vRmulMTxKXQS\nr2rOCsCHgVgj2l66wgsgWaYGaihXRXDL+lSPCcMwh+wDni3WdAMMknQtsBKe\nqCVCeU7e7ma0J7NYw9xrens5BRq02mcM7uz3r5o1Kq/NJRIMrZnht0HPDz+D\n6vd7B5Q5EfkervPnvz6dpzQbE4inDF95/2Pk41yxrFp7Ci5t2U74gapsCb28\nHcMxV5LEpTwA3uNIL3z5hzU9KzvtHp+erlS4hL7+bZJjzO+O38smtQfMQ0Wf\nFJCF2/H0LfOge2/w8SEfDElNPAYn+y92Sfd5OBLgo4JP3uuKa6d7Kxieixfn\nP40w5mq96NjJmmhieN2IW/mPxSfWnFKiMLjKLK/I/8XPyPApu3evEFFrNO8O\n4q9E1kxrRlJSLw2QELcxv+DRevrxMR9lCt6sk4zUNvtwNSrMsj/xJSOt1qHG\ngqyLT0w863RuJ3iG8N/k3fxpnazILqZ328xC466Q0YJR4UNeN2YM4imOGpVN\nrraQoZOYBXpk/W+9sblSuDVIxLaJTwR8UTg7f5ApO2gdD9IGBmsciXGQjAt5\nECynNVUo9qHA7fLqlmUz3z7+ffIdJdFkefEv7INLbShp2ByQGbTNPTw56HZY\nTMES\r\n=IKSr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1d1c1673bf2d99ec0463f196d3dd7ff223d1072d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200602_1591082042608_0.4970784159876225","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200603":{"name":"typescript","version":"4.0.0-dev.20200603","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200603","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a89643fe7cd651a265a855fd44a48f2069c2a899","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200603.tgz","fileCount":172,"integrity":"sha512-4+omliO/egO+q7B2IugTnUkfTcGYLMAMi4WfN6ne7abgmThVkLTUm0gu4yrJ21mtACCklmWLV0xEs8Q+rUMQMg==","signatures":[{"sig":"MEQCIC7ULmO9vr5gW0lnE8Rj3pdloPDKj1YkhWgJn5kYx60VAiAUjIGIboMffywnC7jS2lU3wErX1DSKzSx7D9OAylGRvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54643959,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe102rCRA9TVsSAnZWagAAQ/UQAJKntl7vkme9qBaQ58rc\nZksjp6Dofe6W8o/XH3cf0eECj7kgLfM39iKeWB5Y5rmwki7Uf2+tCMrqQZgM\n1go+cCzUYYq6chM0Z3uZe2vX/J3DQayckw+i8IwokHura5BDUxZ4YznD84yA\nmhxrF3rhBCPH+7BrXbUvRfxxk4wbqK2DY7c5+277+LHeeI/WNJ8yJn7mlpIC\n/2fXUgAV3WFV12F8Z5+En2ec1leDCZTgdhgWstW1uGgcp633j++gkZAfANSu\nznsYmvkVcX0iehE24bCUvpaU4Nh20EKxs295Ciepn8nfyOma3D/XWkInO6s9\n0RNsaj7m+1BFymci4+oVDfc4agjATutlv2R7Oo4GlB3G3qS59xYbblPBo/I6\ngRXXoTiGVr0G+EdXVrsp0EStAS1l7IOuT1DWn1WSuKRFv7Sp2CDJorvjaUYo\n5xWk1n8tWJSTDynpkrB91fDvQ+B9KEEUkedPksfsa94dXfd41JFwIjCxJ/KK\nDwhc5IGbLdNIEgGbJ0qwNW4l1hsaCsVm1wUZF918P9Gs+Y0pJt2UAx0CcWDd\n7KKrItycsC1ilHXuEbhzZWVO7exMyXDGPlfLoifRDx42RfCoWTksv5AN41tv\nxzGjfCvSr6rBHQPJhy59esvxhzkLdqX3EGr6GRiUZCeyGXwlEk4TgIwf7AJi\np3ry\r\n=Ux2t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c52aee57c7b055a299703f7626948f989de284ec","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200603_1591168427102_0.28196733668595164","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200604":{"name":"typescript","version":"4.0.0-dev.20200604","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200604","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"94c58d8e343ef39b710c72f494ad9b478543811f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200604.tgz","fileCount":172,"integrity":"sha512-rIsjQET6p5Mobh5s0ro4wm9FBJpJyF6AVDD7cfEEK+nBcmhP6D5/AUFOpJ7YZxdZIDfVlJK9VYXqwkg+mQa6RQ==","signatures":[{"sig":"MEUCIFjQO03AO8h4yxz3lZvI8DIJXAu2+bthqeTGz3zIS/xfAiEA46iL4Ja/GzaJTdtKNwVHAanvkIcVl0MZyVr8Nvbz7z8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54658327,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2J8sCRA9TVsSAnZWagAAXjIP/ReF3fLsUbmrtZaReDrA\neRhFKjF5cH+6KKyEp8hhzuXSSnSFo6kDp2VtCV1CyG2hmB4JpBzHkXTPpldW\nv8fRt1WAiiLkydb/75X2zNP+B1q/FIB4xxq09S28x8Kh9nkGQ3d2sDcN3xez\nRFgks1y5ZYyubGkVcj1koaosnh3JRoNG7ZRTuuHDNAA7nsy1IruYqVw/emtf\nZxYE2zWXSphegnKYrZD80/xHKUbnAC1KUs0TvD+zyuw8sd0CGs/ZqnSpcFA7\nkQ+AGFe08XGsY53Wadh2Z3MT3++tcieqC5Lbe+u7LTIQsjkMeTn0hESH2D2d\niq+Xy76uyzXfMjRogbsZRptJrYW4Mql3WWPT6oJoMiYHH7727w23z//xUmwW\n6d0Ps6O9QJIdgkssxijKBn+6zAxoFSnJI4oHKbrIp3Runcv7q354byGWaX6e\nAlPY5wZkZlHoP60hlRPXDMkNcd3kED1oqc1pL01vdSKCUAiV82qYy12epKAW\n+dk2K4/CQSweSqp5Ggi1eqJ/VkQDrq2ZNLZ+EQL/daojpIF69cc1BHjoD2h2\nQ+u9inWOqJE5fC46s4b3z7cTbdH8I8IA8F7l9zUujcjBnq79zg9otipXnk6M\n4qTaJsA5XQddFSvMTSL+7xOvPdbJptHUKB7hWCslq3aXwG/5kndHGEO7b0My\nxhey\r\n=AIVU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"aceb8d601af6030a7e6928bc8cf4cf007c00e74d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200604_1591254827393_0.9872583747087877","host":"s3://npm-registry-packages"}},"3.9.5":{"name":"typescript","version":"3.9.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.5","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"586f0dba300cde8be52dd1ac4f7e1009c1b13f36","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.5.tgz","fileCount":171,"integrity":"sha512-hSAifV3k+i6lEoCJ2k6R2Z/rp/H3+8sdmcn5NrS3/3kE7+RyZXm9aqvxWqjEXHAd8b0pShatpcdMTvEdvAJltQ==","signatures":[{"sig":"MEQCIHBi6F5oI6n2VRkKll6TrRdIfWrux1PP+T/HbECCLYwCAiBfRD08mydnvQHBy/7EFpQ7lSSK5KWpts6NM3Ct9D80Tw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54121766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2TaACRA9TVsSAnZWagAAHQoP/i/sKSaag022vxDWtkIC\niCVrCEX0w5/M2vm5mVqaQjVyl/loGamvYPbnidqFZuOLE+InyjCxpevKOiMi\n/cUQ8xkgq3dMsNpLm7/PN6UdpeEjLoWIDqBDabGa3PIIUiJusU+F/qLBjxa1\nwNIcyVmg85bHYQjCRpCSAPDKmrzgMMdB4FRGzFY03pZ/DIQcYLivAUqgXvfa\n6wHF43qgwJDDJ5xaxMUsi4mi71V7JnAgkOt4TJhc2fPM03fgTt1SuVDlcjDk\nytZ2CaOge51W1fuIdGgRXeqwYran7O4w80X00PIerwz79NRb79p2kOm8WeKL\nSTepOW7lAhXj1b61rcXXnzcnn+jh2c3bjkgvhHSFsAMlqd5zopxsjFFNOBoB\n8m/t0CGrn6ra8doHz/7aYt+tBW0hVotKn2CkGK/aXhOBZuqHw+5VWUTVZVr6\nOGISfiyTCKZtcMLsAQ4RF69k82QaFzXr3UudgfAJGtKJk9FmRektXykW764d\nk43/YLlbaS/eyDkweI4du/IJ/NrnAe5ed4YgNSpN3gI1kluGUg+YslKI84de\njlukTamYRtlPR3EOyZiAmglZ8IpL1s79Quwk1OrK7t8amf/bRTc54PxchWLu\nsnKXGNCpskIqV5nohYKvsBUk74B8FiSmRaANo/zBBysb4zRDGxKvC0WCrP0K\n01FE\r\n=cein\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.5_1591293567336_0.16486621884585118","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200605":{"name":"typescript","version":"4.0.0-dev.20200605","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200605","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8c587deb99eb3438550cc0f8452535155edf084","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200605.tgz","fileCount":172,"integrity":"sha512-4gCtCfq0DiLmGuGq9datahr0nJpnU8GFAwH4USv8i43gU6U/B/dx3KuD7d1mHHvof9zaQXrXe/WIvKiufnxv9A==","signatures":[{"sig":"MEUCIHpe8AX2+r2xSdYdQ+nyhq/MdhYSACAOrGnWm+k34i7dAiEA38AaOS/XhgdSVMkMkf11Y94bVS7XB8NmXsFXVpCiXrE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54666654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe2fD4CRA9TVsSAnZWagAAEWYQAIXbl21jwSUN9gywleMb\nslqIx3yWjkbEQcxZsLsNuszuVgIadSpWwwBRJJdNLw7hXBvNcYFv8lJ1LVTr\ncZy84L1yHKmhnAGGavlYJsdzOuRIesPWy+0GXdJ0r84xw7CaW/qbFwgx6+iO\ndrVsUoA0yCoKElpu7crYhFnV2ye8GXFkpk9IzQ+WxpJScZelYSfCWrHbPu+H\nEhD1uAbPIxAO4tBJKscKbaoRfj8WOEB2RnZaHntzU/oSLjYAholUijNSagB5\nm1qvo/FSnPq2SDS6TLZ/IEnoCE6Alj+3RNVvq2jco1yJPtd00VL8LGFA0fDt\nXLtqUeZ3jgTXeyjg0QD1slgeOmqOqoSgtfbKsGVl6vLX51KB4VNNE7qUJuvM\nAlY3tZHrpxwxb8bzwniyT6x7uie6r8h4wnZb8bD+QhbdXC7w1hFOdGqsLwEs\n6BDHFxUJQXN5m+NVKCZwO+RtXIynyjhemImggiCeSA8LZtNDH2fgw/ENBbcY\nNQIiNNw/hvs4Nx1S0W3xYM/dxXilPsllAiN/08bJISZUemW8wIdrYfbmCr4Q\nsV9smKypI9bQXKQO4km9BXhttLDKK2/YrPdfMgge+JiWRCYl51jnFz0iWNmk\ncySAxzDslhXaEK5mYXUYOi0QcR4zQS10IkT8X5zd/nYLZX0U0DbCvu2L9M1o\noDHT\r\n=WVGB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a5818e47a2fa6585b0ec8ac274513eb7d53bf148","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200605_1591341303902_0.8674557086076948","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200606":{"name":"typescript","version":"4.0.0-dev.20200606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200606","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"89e2696ab8989e2750ed7120cbd051911c6c3410","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200606.tgz","fileCount":172,"integrity":"sha512-Rt7NrXHz0G8GBDG62afIX6/Eag2Q8FF3mrtCq2eUwphB9BatMx+q+asfHZrZ1jEkh+xEhM08m8gHrkC89sKgnQ==","signatures":[{"sig":"MEUCIGU6VK2Z+179bKe84TrwrOQebiSdh/t8bfnxx7KvuxsGAiEAgCilUV0yCW703bYxXN82ebjFbvcQ+r6x8CHm1dyXLoA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54667169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe20H0CRA9TVsSAnZWagAAcXUP/3yHEKMkjEQFdXojvglv\njBucul34aK8Q3N/6s4Oh+ookt5wZ+Yv26jgzBT66uR/fJ60REFC1muWVNCk6\nrAWQm9uCktnExaInKC07zdnz/pHF1a/PwbXpDFAk6N+SatJnjgnuylS/210S\nucYqgOmhuDuSUJVDysNjDU+vnP8bPP7qh7/7XP1ojvGQZcd0DD0+PyDOBj1w\nqVWwsIImKJLlZHa6Z0Mv7T3riKjuRNGedl7YQC4iPOVEx4cRmgRF19W/cNE+\n7NFG0jzrYLo6bV4/63oHwZtKdnMdw8pqans8VlvtKzjYcT9OvxOQDw3fDFxp\nToUv7NcSzuYy8W8GeyQhn+D3JUDXX05Cla/axmVN7tqZyqpkzM2sBaipTPFr\nM2vWCe0IJGv0aO4i//F0Bb4KOtUDF84gw5k/IX/CRjszZ45+vvqt41HDA4OP\nvF1FoTNctBYwLZ+oIW+Y5IofeQnoexkhA4aMw7mqYx0Hqcf2G/ImUzPX8eTQ\nkMTONfs4ITCIUG029RkmqGEao/h+xOIMMffF7JwiofQGcTBhd3o9QKVIypQ2\n+xLH3QQTOt9rJQzCu5yD5CVSK0Td2moPdEj87+q62ZYmIJ2vyosolmZr7wuD\nSDOmkwxHebFfXanz2B0wnoM0rl2XXSBMFOIXWsCFkkDh/U0zGeIhOIZSIQ/a\nF4gV\r\n=Pr5e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a96c8ece9cba37bcccdb9fe298df77de7b7cfc07","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200606_1591427572140_0.4934702971138145","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200607":{"name":"typescript","version":"4.0.0-dev.20200607","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200607","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"05a1938a4c5526732d1904725f152c0a07f7aef9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200607.tgz","fileCount":172,"integrity":"sha512-kvbgELhgwsXvAPW3qODX877FSjyA4XI0/YusMkSII9ThuTmrmunMsKGhSjYguN9RcopBnqka7fZyKpY8FhtKUw==","signatures":[{"sig":"MEUCID3WNCdL/sRvl/nTARcLNjaJ3tQbH9BqWJV+9GYuwvTWAiEAsQYZgneABnvVDyzVxBLg49/CougHy9lhH2MebF7VFNs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54667169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3JOsCRA9TVsSAnZWagAAHBMQAJjXPyYNZiQ9rKREejYV\nZLOlPTqNtlMNqcXEi0LAX3cGXV6tPKbtAnQYEld9SslYnY+Jpcs29FU2lceE\nM5iJdIZ9Nbow6yLOaPW4olksZ2zc4CKfeYqE+YLKg16I12owojfrkR0M0mcw\nWjplEZS77XbhnZDZaptCSLIUPRQrbM7f+B9wXuRjlClobzuaOPMVG5z/YYqZ\neHFdBv9ClR+3fgaJh/Hye2cZVgJuBQO8Z1p3u4EctSjXueBLsUlsdahwkwkw\nKjmkH5Udb0cBjqNAC83+73I+CJcSylhP/ceZnItgBIqI/H5MksE0sIWuZVW4\njCM9rC7vb4CpVdLSf7vSynQxHvx8UEvB8dxbRY973/HohzN0NcpZYVxouF+N\n0Pxblm/SfWYR9KYRXJREES4wZLctmUKW9oLxhUpmbgoIY2DwsH8Mxo/NsfJn\n/7/L7XX8I2qBUOwOd9srp+j0AXtaXWlwcCWM8k+T8Ttxket3Na338wl7K56K\nNOhPjJLLFoTVf4nOJ7XADxqhnDdi5BSoyjVDOatRJFCjZHIsRPLR8KXHbJAM\n98BHg7ermMt8+XysRv+q1kOYDOoHVpD5Dpx16QkXtqb66y77oVyeEsrUAhlt\nldiRpMLtSoJT6QdQtt7gP9MMDkbLwhEcn+P+n+qTMAF3q7mY7zY1nY/oLbHH\ndm1l\r\n=Aa4m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a96c8ece9cba37bcccdb9fe298df77de7b7cfc07","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200607_1591514027106_0.9871429681871529","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200608":{"name":"typescript","version":"4.0.0-dev.20200608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200608","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fb3d922f523790e6490ecb0b4c345771fb8d65c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200608.tgz","fileCount":172,"integrity":"sha512-d5egKAWhGb7yU4LTvOF8xerq1q6UH9hvoDtzFRG5on2UC+3DFJyg9vdKYLbSfmEFMsdj6vuED3YVfzCgcZ3ZOw==","signatures":[{"sig":"MEUCIQD2MkIiONbfO9xrbTb6tJAo2foB1u7+eVDrXsmXjB9DvQIgXc1hfvu7nFmR5+d8IypNofu5Hm/FmkTV/KhT+x/JmWs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54667169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3eVHCRA9TVsSAnZWagAAVBwP/03cyDjl1XYuGpBWjpPK\n/8+nzvQls8nWTvQXJ9VjyPF7IlB9JLZRjVVL0fEcnnbm3v7D3kx+tc4zAZ5o\nw3cj/fug/mwVgeHNs2XEZavlCTmPzyDethfd4pG1Sj3X9z3dRxbJ5e0ZtQC2\n/wss+KaKJYJpBhIKY9x+Kh0nyVUwVRzE8gQBI8ryfFdhs5McG1p3btWSV0MW\nGpJfTP22SG6glL+zxhO64/g5u/S/M9sMt2qtwZdHlDcV+7UOe8cU6npbWLpr\nMAAtiV0PGDrHRlydmwSnJ8QpaUJzXOeIJ1glI/HsRcrtkFvYNhdHYjCx70f1\nNZudUQz5KiwdgaLgWskJ4hyqt5DUDZztdeij2+2WebHaZZyra9qTO2hyAkhf\n5WGEsbD1ICLsnO72YixPV70y6TNlTmd9QHWKRRikRltENzXvIQhyWB10mFOe\n95S+YRjv/mDi6y4lC0KY+BWDJYRmEpEDMrdX2QSZTxrus2GffggtqixuXN/S\nDGdBGuhKhUP0MYwhH3/s/XmlHbTLY9oRkCZIgNkVvk9kK54XK6Zwsf6LcBdX\n3KfH1AZTg1K+hod5N2pm+I1e/MSmhfCHzR3IsyXriUW235NFdOQcJk9WfRwK\nsR9HIDp8RsKLi+fDSRvc3XPmRf+J2StTc5cP3hLfJBAuWHK0ndY89LKQFuLC\nxac3\r\n=sAVV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a96c8ece9cba37bcccdb9fe298df77de7b7cfc07","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200608_1591600454549_0.2452181025532858","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200609":{"name":"typescript","version":"4.0.0-dev.20200609","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200609","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c35a84902eb522dc858fe61c018003928051a465","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200609.tgz","fileCount":172,"integrity":"sha512-+FFUGuOqBW5+eZf7IboN14yKVtciZ5NHQApru8/e+Leka0953ixdaU3euouPnJ/S7i/e5MtNWgxLG5TNBOuN/Q==","signatures":[{"sig":"MEYCIQC2Z7nxD58wy2Q9mbAx80DnNrHpQNwlD/U8/KDR+95BtAIhAOuW3eVLhoT4kh5r3V2fv4oEAkqojT+PENjvq2sJjuG6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54667169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe3zbzCRA9TVsSAnZWagAAxQcP/jBVlGCHr22gcYxvx0dW\nmMzx7FE0TXFlRTw6BCIz+O0tp8/PpGdS7tkgsIOqG/hGXi8MT7pDEX9z7Eow\nW0zxUyHWtw+OensuCbEnBZsVDBjYhVyfk006SaCUhTRWsPLVI5/Gz5NMPXQf\nseMxJx5OGCnc7VNk8Qs0z7+8dG4nnGh38lpZbTPUqhamq5kP80pZX7sFUgJL\nVXu5fEMWYe3fkjTDjJROhjPuqq0SAcquthaSB2SqVGCfjwLEfoSfYyu3xCcM\nE7mcWNkVpxHg2OsyfboaeRtDDJ0O8LZDI/rdfmZIy+wwqfuCjbcPpCPgvwJT\nbbtFQFKcONWExCZrXW/zVDngwloNQtnMZFq1TMoOLr+KL6v2ST0j/1pZPSLY\nJxn2KKtg4dMQZXoe4sqsH6XZNCEIeF3qRAVGotuG9C6L8kYMjD9LcRExu+L9\nueUrwCKiGMOvMaQrxhc/GX3pQD3rvysk58ELHUOFLKS63oRAJsc4s7aW6zq7\nFNcVYPv2KlpoAfIeZ8JnTFvgRk/mWDRWaUjZkM/0P3nGRRqO1IF2w5p7EVx8\nWwSgvJ7PPVBhznLe+x1lz0+p2jB5YkG+swkhUsPxRObGGXAdI693ObFjElOj\nNMFZ/O2ntTYzB3c5h/v6pd92LYNEfY7LQF09aN2pzYGxEVSHGitaStVN0FTZ\n2FKK\r\n=NPzp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a96c8ece9cba37bcccdb9fe298df77de7b7cfc07","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200609_1591686898518_0.5951863640849133","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200610":{"name":"typescript","version":"4.0.0-dev.20200610","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200610","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cfbe176e65dcd989b92da36f966477d1cd52d0fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200610.tgz","fileCount":172,"integrity":"sha512-WtC/cVuzuOotVT6TSXTATqzr0xdHrGe8DqmuVrzCYiheMCmMyh+Wm+gn2IhxtqkePWqsTFPgLKnPz2TJhGAKVg==","signatures":[{"sig":"MEUCIQCPijggSYFfREBBeLKvSVtFr4D1zwiXNer7XVv8Nz++DQIgZhW3NbDtP1qDK9SPsGywjeM6mMrn/RumYLDJyiXGo6k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54735541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe4IgXCRA9TVsSAnZWagAANBcP/1ERm08uYze96WFRliq7\nlQEu8rBeZsr6kGunDKz7Ta6VNRa6TRyoDspPckYArlHyLsTSJefKfgSNgSVh\nbPNZdeFH5ZEVVUmVxJ4tL/1qF0zNc7Thr6DqB6iqW9OIhzz+TwbD9mnFgWf7\nSaMIBc9s4vGuz0vd7ZcHF1+CS1HVdRMkljdWp2b2pzxNjezZwh2uXYh0XPoD\nLHNj6qX8clcwUNLYhNYuD42/IQ3FCYNCnf5JO1EBBZzbm9BnvHyCBFjcKVDT\nGZryzbzgC2grBVE51MwhWmaUI1Rr1p/JmjpBc4KrHptCNxCjMt/OVhIN0kv2\nADR6JukRDmLnbYT2p+uzLuzvZx93NYFdxTjZAshZwRLJ8z3NEoAaFzzFC91v\nwOqH7aebqprypSYfUnSmrhPYSuFKIoR2jNeBxfRt6YYyAUbi1Z5hLb2oKK2D\n7Kvnaojs9i+0UUjfQTxdffgRlInSiVxcNnmFbsfzHWcHae86DL3p4Qq9mri3\nHvShdG/302Apw8qwNTVQRp+UBt+fswLFeUuis9l6B+fmazXJtbcLNeREDl1a\nijHMa+psKPP11aLIhfliG1fYBqWXVXtMqlcCSXl9N2Lf+4vCPBsXeDRgVWmW\nlZXLosy0MEfKB93E30TJbyjs/PLI+7euBoj/cuadhWxR+iK47SIWdeZP9FDH\nXdDV\r\n=ptEp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"895b3c3e2026910c249b6159bb9b5ce283a78ac2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.16.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200610_1591773206610_0.47575792309224396","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200611":{"name":"typescript","version":"4.0.0-dev.20200611","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200611","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f6606d2d0603e8beea50edfef3eaa8ebe1f211d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200611.tgz","fileCount":172,"integrity":"sha512-ojO8mQ6MScv4T9CStxgU6X+O23EgDZfwcMICC7HTVaIDveTcbtEoUpcIaoQKDealvB6/oTXkMqtImyfjJezkJw==","signatures":[{"sig":"MEYCIQCc4ItET68JGm7wgR+BjQ32CWA0cvUL51sp/YYfsoMFEwIhAJX+vGzVYfb1UXfqJq3RcdXggnEj/gADQzQh08IvAJsx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54769537,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe4dn3CRA9TVsSAnZWagAAMhcQAI5gCnto4nx2UuB0AOWh\nhd0hM85BxC6wVQSTdrb93Gcoa381L6qzv6JwJ4LbEEpiyEf6nw7whxPb5tQk\nsJ1h3/MVp95uQTQyN0DOt4sOLV/Wu4wksueosWZTH9iHYOcIr1N/jzRA3wsL\nY9vL5C4ztMLYitOZQNM7HSFWYccQz0zWXNvSBKcB9Y5M2DDgEFBgCGAbdPG8\nSs464XzAvV5IFGVLDmMC9Z0L1wDCHWiXdVzRIjkTIvsRVWk4QOOIMxRS+UWP\nmVM5C7RdD6n/JCzCRd3cY+H1Wqzubyzp/c2Z7O4N8VvmKdprHka83w+HhD9B\n3NkP/bFaK/gkQUM+3FnYCaKPWLDZ2k25tUQxg6IKC1g7Ny1XP1kz4ihTUAlY\nSpcI9PX/6OYtb7TXMZSkX7zv2Sin5tINquhFv9auYdwLRfaXtdi7B4RmbugV\nOJZfbco5X5zialfsqYdYnl5cL9yfkxYxX5uEG+/Xbc7qNM6Sb6NS3vF+eNr2\nN1KMwk0gGH38c7cQvEDzXbup+L4YD9dLkJpp7fCPz85ewlN3SuwjBh2hBlUP\ntgGY2eJiCk7Wl7e0YflwWWKNQ2n9iYE6TeJX3PGzA3kXn4XfHsEYgjfgMl5K\n3xyCpg25EwzyJGronkMKWyMYyBtZjdRtjrZsB2586V+h+oibU/ULvehZ2hG5\noK1J\r\n=H06o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ffa35d3272647fe48ddf173e1f0928f772c18630","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200611_1591859702395_0.4256163721912105","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200612":{"name":"typescript","version":"4.0.0-dev.20200612","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200612","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f1f1a8508eae00ef79b57116886dc05051b398e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200612.tgz","fileCount":172,"integrity":"sha512-o69PZMHrijfGcfvPmTJjLOmYZYccfpDcpFohMmBVLZLOdtRWzjOZSfymGq1J13w6tRlvnLdREpdH40cCnhURow==","signatures":[{"sig":"MEQCIFUo0qzrC6XEfUkMgAz5c1Jqs8VxIorHL5vRc4LDlZ3KAiAPgjMNIFzRp601q8mNwo2WhFumcFudWAo19MhUye4XSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54776172,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe4yt5CRA9TVsSAnZWagAAehkQAJdRdcKnGPz9Ld675Gea\nLra3gf+6A6mPxiiJFxsnKdMSEdtgT7Nk1b+gVLaf/GQwHG316zR0PIu2yLJs\n8hB0n5JbbpLuIPCLImYkKJaLWtsMSJuIpD2CPqyDmf5UMgqKEQl81X7Ygl0/\nDj2xZZ/898rxDShfqdW3mwtwsMOfO9DRK2NCxLiIxKoM37W/wQCCrkrC/jvh\nlGICpshkQgpct5VktFMFlUcXQaNc/5AgaGgRAAZZRmE8Oc9rgcruoKyRlTnJ\nOjYE3NSmdNp9gGSvgw8CWVVDnLbMgnUMRyc4tKNq23tuI0Mv0ogfbmav2HPC\n+GIdk2vQuIB3e0Ic7+y4FlOltWvivV59lWD0ha/WvTqa8Q9eDQVCVKIRm5De\n/Hu00odsUMU4GNGnlE0JpdXe3l2iagr55ZBTuJjyYLTnKjWg+K2qL+rMZEzu\nnFmUjGhjCuKbtccIotxrkQwyhPmc+/skffCITPPz//2RvyBoXGcwJVfxsz7e\nttIS5HvbB5nWGN/NSGCb1Pu4MKlsF+V95BCL0SmdyqFT4iRkmLQyoSqhKtK9\npcOJQF8u1BRaG5uZCZUvt8MIJ8aczTfVuNNTFp8tK1K4b2IZaKA1K98lYT7S\nAZkgwTxSWeQni/n+X9TNL29tIBR0Y3ojhVQx5WSNdoCe/R+GeCBfc5wDE67l\n0H6j\r\n=eHTO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b2afa7b657173d1e90d2a8212e1d864b0f11e5aa","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200612_1591946104454_0.8899018775696081","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200613":{"name":"typescript","version":"4.0.0-dev.20200613","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200613","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b3343d6d57192d1f7a3a9a192aa0fe3411b619f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200613.tgz","fileCount":172,"integrity":"sha512-ZjHGNhVcX8hVoU8trWrwTI+JsRjE7k6JwAB4r6fRe5VbU02OEzqaOaJ3vNDK5mlnC7n8HX5LvVX7UJLH55cghA==","signatures":[{"sig":"MEUCIQCvzo4s7CuOq5FKZuxWbv+PgAMd6bQ+Q/KkwtYjWAMZKAIgMKwuD1XWZRjAgjHmjBgVzVSiZPJSxMXwEn8wdSN3Z9Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54780659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5HyPCRA9TVsSAnZWagAA8u0P/R4WBMke3nKHG/MlCSfA\nYcG2YvZpXIg9nPXtrteI+yVEJ3nTTrStf8OvMLhl+3ts78mQToeLcXw5o/v6\nqlxIybWv1h5DfBnRIAgem4Qg7sdzvW+OrMMBKnq/VYgNiGU49y32RNNMO6jg\n4JYkubCIR3G2PbYbhH/FDM2O/ccI0v4xJJm4L6LKElftw5wM5gXVEWFDJXhH\nWq9FepHXvuymFpnxbJQHzVYZOfdLEL04wteYn9QQ9Y8AwlUgKUB/VS0EDuWD\nJj0jIOjnxeA72DzC3R05TcyNaTnMCtqFuny4VI8GcQniLtgTKtTv74WepvYE\nUe3kdb5LqfxATnryorDBdWm7oZsXW/wpqR5YaAZLamkGREd9/NZaIWiuQPAI\nDXfn9ZCu9x0hSMYExAg3ss9Re783mJKrDSis7D8yhHXZ9SCG7qW0kfFlvkXQ\nMyM8YvFNWCJFimYx9WyxwENIEztxsi+SffFIziuUZYvJ0d/OpI62nsS06r2U\nEh4SidmlMGr97+Uwo55TAMXqlsKvL6xsT8lARiS/VZyvhxv5QAbT+jduvnHw\nQ2GIjSij9VZZW/yHX8fWdDiUIZbmQArGsnhWMGn8pZYAhBly4rnH+B7d/cL2\n3RhPJ2g4Creeumx7ELSJSYzNriNhFEAOV1kIiw1OXM9KhNRZ8wOFO6kR9pqg\nvA73\r\n=UNaz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b63ea4b6df3757ad62c421dfbaa2ad8c623747a9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200613_1592032398203_0.8466194773639661","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200614":{"name":"typescript","version":"4.0.0-dev.20200614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200614","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d13fbd6c7fd1c1353fa40ab247f030ed3e2ded6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200614.tgz","fileCount":172,"integrity":"sha512-hsvLbrNcHDk2KNsGGFSKdh4vZvZ51dBprergGToenHZytX4haC4oupfHGUAKimxTEZH0+Wbh0ETH3z0bmIQ8Lw==","signatures":[{"sig":"MEQCIFijQXzkSWhK9oPScmvDnrnfV5Xo8o5+IlYGuc0vT9UwAiApqPL6nWwDaEWPCszzM6PnKzVwK3o74ZgOXRPTPoI5mQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54778307,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5c4lCRA9TVsSAnZWagAAyzkP/0DhLmq+25HEiH6FzGNh\n1peiAv+IBFrsghBat/8RaAklApOp9sMwMFAJf5eoyuJCOSzG5wkPkfiTTjwK\nswMya1jIssSYCKF0Wqz2Im7rv+J6iihJuN2pnKVRtVouQfr5duIz79vmTO4C\ntGC8prtKU5XdtN3cDFmGWnD9uzuvkFO+2/gV6q4vYxJZpASaAmMaR2613FQb\nBZA6TWwcO1HPLA/huUxTJEtOWZDnzo+JMPxJQQEggufDHIin97pUXou70Nwt\ngFkUkjNrOfmSpZe5t6r8fwUS9m28rBeDAQQUsufVTwXm4ZulT/GDAdwaKc4+\nit6xEz1/AtlBAx81as/i7EkuFCZz4QU1qWV+SU98VPQXUE0dxbBUhVDmfcGC\nKaf6TOfY3KnyOByPNeIiqiSPwckQuu34zXmpVMwy/0sLj//GbOMloquBxhbC\nSwWtw55fEc3Rq9uDRTiTB4Sr/X6Npks1PhOZoPYMzZAXCw2cJNPKxcKO0LRW\nG2gUep2qzebebaD5k9dHBy00Ao2ux+TifSXQuLqBhyhd6IbirtsOsj3rEK6G\nRJzQrJ7MoGwt2+EapNHjssV6ksibeZPFEEjUuSFHruJFo4bPwKgZ9FhcSK51\nYB6h3p4eAN7yVGz1i02PIU5k4iH1KuGbSONBvpcfpGcajpo+z4cZ7MPK2waA\nb7Nr\r\n=kbEv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0432954f2dc44bb8eb60341c8209e5d795845636","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200614_1592118820394_0.3627352574666871","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200615":{"name":"typescript","version":"4.0.0-dev.20200615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200615","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c06a0d5f25a29a018767970c6531fbbed7240e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200615.tgz","fileCount":172,"integrity":"sha512-OD7KRTLimUwW5E1xHsAqXNjw0O0Krk9CgRVFYkqANv4fZisaN1LJI06u30D5QiNnHBzm2nBSzZIAhjj4MUqaRA==","signatures":[{"sig":"MEYCIQDeXJJBHZ6p1wvK4sCFWjwWD5WLkEWHGUv4eH3o6934OQIhAILjprEP/feXMjC4QIHeyGlKVsD6gJb0x+V+oBOZ7soK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54778307,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5x/BCRA9TVsSAnZWagAAUogP/0PwhDeJcNxU6/oSCYw4\n+MHLK3I1WLP2fqgxlEhucLCeF1IQpe2SuX3Di3TJCnFMwP7h8cv+xu9/gsqB\nn3fyTy8YwnmQVMayjJKPUiEFpkiFTGsLvcqf5asvuq//ddKwf26UAgOq+oXb\n7kR9RH+/3vXzcKi4XtB9i0XHMIJtFQNQT3uDqIjyfz0msL0+MjdFl2Rg4Xmn\npwWg6XwYGrYZMrlmPlTUUM6DBdjtKJyNk0rYGy1NHTiemoS9Cufxt7SM/55R\ny6mGcADxOxefAb6M7QXpunhihvIBpQ3Thm2PKN+HvZM6BNDBgedir/iQMVVm\n9cX1OLTCEDhPiRGSdciN85nunG2WypFCo6RaxS576Dps2rTAmyl6b8vn1xrV\nlFDPwjzEjAjVbMfCF2afGx34J+wZiEKB77+DxIUV9f45QBJU/Mb1SXXr50bd\n/yAxwHHi5Ugh6NnLu2Cp1cB9FP8uREQJXv+xs4iJibGnxL77P6o2GKRepueE\n5JbMNiwYfWS81bZ1d87ancY9tlIolYoG+TCvp2DBAxac1JkxeLUWjvS6qBp0\n6ed5lEYD4AHaZ0XOdBYxOhxAOvA93s2YUuA+ITGaG10NEvHmbQrSakTcPGqO\nDEot86e/xBlTyAmDd4iPTgq6qBRWKJC7vfF3f6YegkULwEDPd08X0Syv2z92\nn1jv\r\n=ngRZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0432954f2dc44bb8eb60341c8209e5d795845636","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200615_1592205248401_0.9668812607122617","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200620":{"name":"typescript","version":"4.0.0-dev.20200620","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200620","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b8b3896860d6e9550c8cdd1aca95465ebf0fafc8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200620.tgz","fileCount":172,"integrity":"sha512-kJF+EmyWpmqwlNoLV5EZPrho7GGB4tvWENaUveGqM3xdR6TwbfFuOs+Yzfe34D8iv+Fzr/dRGCTxRUkFKAhUjA==","signatures":[{"sig":"MEQCIAsAIsv5TtnEDnnjxW0c56Qn/eYVzGbIChSrZn2X8nxNAiAa9ThJ38wsaigO9KaaxaIZRkhn88kGKwJq6q7N/NkCuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56293399,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe7bbnCRA9TVsSAnZWagAAQRYP/0QBPJyCLoFqYyreawRh\niec7F8pcmRHslQPTpjyBfvHGEiijf/rcyNU8SFqzT3P8s77DLYV/pbNH28lB\nRjBSdml0cUdd4iTnuCEt7l9Fp47L0CW9q1XZnA/1ms9fX45eCDj/7FmwSTR1\ntuL583QxKpvH9pa+K93D99PLq7P1JzqsCn8qB1U8ARbqQ6ztp4aso+Zoc1vx\ntfex0JMPQqaNR5S58JATJCflvA5pHkykD3JgTo3jTtyBiSyFJPlkrzp4dvdD\nDwotllxaHIrPWgkQ7o50L+r+8x0DUlKkV4qry4j5L1AIP0hZUaPgGx1RUyZU\noMZ3kxM1DeN8TvdZQN6m7ifJMYEg4IN7Niet8SvRlx5Cjzkza2MCeNpMEQZ7\nbVc5cSydBAcRoRwsoX6+GMWUmcurTnJ5IAHkXIkh3kc3cTzcdgosLDZGPwjL\nYe/7UYWMHfkO5X6AXbAIiy5Lj7bWcgMNNKHwCiHnisnC1gFpkL20XaEBwlR8\n4vJ8NlmogcuJCeiXexQs4cwygQtpdA1HWBx5K6QQkRrsjg6I9Moy9O6mLnbr\nA0QYroHox8TS95aq26lhSXS9gqcWtA8wpeH3sfxgfgqe93uhv3Rot2ozPYsZ\nzhJDosCMg7ZLUiWa6PS71PEvWQaSCM+XEE9FFha4elKFK0p4SrJwaB9J9trc\nEscx\r\n=NtHb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9ff24b6fc87dd4a376a434d1019d356dfe743c53","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200620_1592637159099_0.4976739637193943","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200621":{"name":"typescript","version":"4.0.0-dev.20200621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200621","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f81502d04de54e348e69b16cbc61028d0fb0fad2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200621.tgz","fileCount":172,"integrity":"sha512-I4nfjnqsc1HGVy2uXUYgsG1cKeTqCY+5s5E5IvECjUGarkHpok4k8MpKqQ0GmQNv10TfDF7I6ZUghJ3K1yu7uQ==","signatures":[{"sig":"MEYCIQD3VrkCERf5WwrYFuPAR0ZsBnOiudaTcwps4PbR6Y6EIgIhAIwGrA828Xc4ZDhvAG85oekJTvrrVGFbJFzCMtoCw00H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56293513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe7wi2CRA9TVsSAnZWagAAKuMP/A7UfJDcVKFHcGttqxHB\n0o07w1E6BZYVspnY6/i2TktpCA12PsRaqi5EEJgMiuaHALeg7AiOdUzZRuhq\nTq6678S1r+BtUZ/h/nZPFW8I6isQa3Uy4o52shj+ylC9egBrLivY9V6cJjXF\n7EGqz9wKgrwe+jPXarRffacJceX5MXHyHP2O0c1gBnIzhLyOErW/jnzyRmbV\nscoas61O0OD3T9lQQlDsuC0Sz5KlcrO97gFQJOFeonJzX66yQTB46r6vHeVd\nGiLwMpOAbnX6Y7zh0TTrgZfeWnLNhVIiFTZKmWhErip0EVehOadKR5n9B4Am\no2H22Bw7tshwCDXOBi+hsWZgW6sLiXPn1vhurIpKwqb2gumWSAUma/W2ugRA\nNOyfoHctbbQArk60ONV4XrQ1Dt+I1SPr19VcW9KGS1mr0LA1ZhsDdCBhgmZq\ne6kMOTP8DbjLhjXCZoT3CguEyaKN70rtXlusB/22YARvqPqm0IB+EyKB+T49\njc3DlymOcJHifspPswRaN6pwrvRKpbSsTBmkzWb2Hlzgz0xVDUEFqB/LCqFz\nEZ8EbAa1A7ts4h1AtrZTX/b2WDHonmi8P8y45fFeWzSO8SDQsj4wwth6Xfoj\nsVg8KyTCYZtUzV67htmo/T4iaEexRkjBfIIkT1R4SGZqxWG1ksIvz//aLZK+\nMQen\r\n=118l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fd0ad2985b6d88e190dc757abac5a37ba102abb9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200621_1592723637883_0.8602106387547981","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200622":{"name":"typescript","version":"4.0.0-dev.20200622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200622","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"33e0ffaf880b1f16bde5bc4eeb1863e52c4d7f75","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200622.tgz","fileCount":172,"integrity":"sha512-KWXppG2OKfq5cDAEkc0wA7uemXnF/Af4v0j08plUCKk20rt9wYU2rU9EB53/XlVeZgV2hwpbH9hIFyeB4dWvdg==","signatures":[{"sig":"MEYCIQDyO+/kZZmy/wBqXWvXRgK/8Tbkvk6H6nGnDwR7TyuiXwIhAOZMSi3Epu+2pQbXlctfHjbCRhWC8oeHKB2dw4RMUVRo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56293513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8FrRCRA9TVsSAnZWagAAKVkP/Awbvr7JTpE4rhXyddWV\nUXdICRgH9jO+44TqhjeghQt11J9N0uKYJTQ7GqeJ74wC9FuTLgJtRjk4auoF\nriaIaVLKDGriXgveYGPikHPZFGtzeONjY/XjFIY8Qtefo2okvrqI4iPJv/kz\nr28EsoRrXeK5uYlVSQUCIqlZyFlh/yubicRmmbQomW75+rt/BYNXjLxGmmIh\nBrQTQ7GMjdIJR+N7oRPgFDFqcsESA8ssW2UXqpS/CzZI8c8zf9MmMf62Kc6q\n5049QcPfMG6fljUYMUtr05nRz6nVIZmci04x32OQVc3ZjqK8fFqNEyRF1h8b\nh3InLX8eaImaqOaY7LaP3fAHqAEznvvipOv5Ti0AqDNvY2JQ45TndW06vABp\nXslMdtHWexpmwBAcdFkgDGwVoToU6qV6bFPosHZVI/2egtYZVzn5s/iMTm/I\ni+2pBjQS5AIUuzhjYFDkznbVdnue5FM0TwClTzIpAsEBvwWgDH52CRk4XSwO\ns1HmVhSV6kNngWOS8vJqn7lE8k2/U5fWYTrNKQUq6OHEAICwfIh7sjiFMyWi\nrmvOEBbqWhOz6d6ayswtxoOIE9aJXuSm5D7zLwKinF3kRJhD9PqoRhdjDBrz\nghp6e9LoGmwy8A4Tm+lOyN7WeLXSdm0CbfkSNlxNQu8lGw3qHh/5IWN54Tv7\nKmYE\r\n=rkRs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fd0ad2985b6d88e190dc757abac5a37ba102abb9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200622_1592810192787_0.37826552690277526","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200623":{"name":"typescript","version":"4.0.0-dev.20200623","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200623","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f05c2b181494cb2572233340c9ff41f6c2a59959","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200623.tgz","fileCount":172,"integrity":"sha512-gug1VXhNgXuqaDVsP2RelM9T5RcmCGZJ7bwLVjUFl08vCiiOKFqiChTj1SoGj+VJXeriJs6XdwXzqgR/R9ZwKA==","signatures":[{"sig":"MEUCIAFcadprm2Ouq7+1NIQjnaEXGar4WOiwAV51w0xNISpgAiEA2+5+1Mbn1yDdj9C7GT07+osdbUo4kPNsHBHKi3BZKls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56533719,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8ayFCRA9TVsSAnZWagAA95UP/j5x5+DPjb4lRJF0Wsx0\n5H794E4RjMj1R9b3Az3REOBO8vIfZ+VAByupykDmfB0lKRxNwRUciJHhHvx5\nXmrYu7TaTL6V0hsRkdd3i5l/jOzizH8q7XM6IgnDXRuJXYZT130EJLRZtmkB\ncKuKlkI89PEsVDweRxNA8x7k5CTAMTwnSIXDcJqyk+T5c5hWmxwX6iEO/MY0\nYO1F0wrZ/Y4dSK7nbIvK3gs9Pa1IXoH7XKRkntICzOlbB6K9+3Uc09+4Tx3R\nFy/9hMwCsneDpCvvzk4nGuHUzIH+cP6jslQMOQZqgnNkvzdERoWGzWla5Eea\nOnR5WFwVgmXtLL3qw6OLEaA1PRAm/+24sjgn7oW10oN+utYj+3uWsjAeQsj0\n5bNINkPHi1xtCyFIozgNUD6oF913RZMbdyslB8zpwtNRE/+u2ZYeBruuybby\nz6hNhu0D6/kn06Vya9woQwlkoE9Zj//0xmVPv8rnb/enGDxjuuokL50sA6oO\nTT3fhM13+z+91GjzSMJHBlw5BWm2w2CJW6oOzdrgHvSi5lq52fbffdSwikwv\n82ohci0CzE1d349pfGlvGIxXnwRuoTtJxWvW93KHFO+LxKDU/J3NJWYF9Zlg\nTJVZgOWU/U/k+1fC/TJqoBD4fBa+DsXjN5kdEkaV9l1HO96Qd8guE46oSPct\nfuUm\r\n=7O5E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9f70d498f250429ab388f4b34507ecd0f554feb3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200623_1592896644917_0.39108737424065576","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200624":{"name":"typescript","version":"4.0.0-dev.20200624","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200624","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"68a3b1c49531fec88d73c7507b84710ad3f5b0fd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200624.tgz","fileCount":172,"integrity":"sha512-I0M2pHvB8wxZthCzG2OlRofHggGOOtfFfCKLp0cVZxnnWlvKdRbIdnrXH/AZFbmChWzy5/l9mvNzAc+FTUn3EA==","signatures":[{"sig":"MEUCIQDRtc7O3qy7o3Mt5a7mycXXWEJlB3FOZVaE4bNKjM4KEAIgKLhGJTb5Jq9Ga1xHjKdiknJVuIGMWGiW9wtaMkIYdLE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56530005,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8v2tCRA9TVsSAnZWagAAFEwQAJmXPIOIWfkwfdH7GMqI\nIjtfBh91n8a1oAHApLBpr8PhPjldu7fLbGZFV7MZYhoPxBY3d6AJV2pnSSoq\nR1SajzXmrV7FyXy2Mx+/8UNsCYssORvTpoe2rZrfK9EkYStXBg3OD8dEmm/S\n+UxtudwJ0tU+x5OoyYxs+l9b6FfyxIUQQIh9dUpm9TdHhgawbREvzvaIUZ2W\nKRvo7oThV88gQLqbt5aLzOqY7UMG0dtyP+MhGwPtVV4C5evOtQusTQC125ot\nD+YUyuL1YbuvDmMK2dhQ9uLhNUWcg++PSzuiW29PeIx4RAIGq9pgNgFYWGsa\nfF75dEj6ipUOPWoCpUjh3F0yueq2A5YZvn+KhxN0Np87wFUxT9heiGq3hvDX\nXoLGTy3ml14kostFN+TK9DFFDOxiwNw+iJ80KTZbj+YCm/c9PokrjQx0t7UK\nMvh2okU6eukJRSbJIzAmNPaD2ZSHGtamtAEETCDY/I4UTLFOhDT2/ddg3se9\nxtOqC9FAvayGfBZOHves9S1+zw+83MimkbBQSp07Lsrdq+P+LuNYa6bQZOfM\nYGPJkUtHhb/ijMAEJH/t1ZSucX87daMwtmNluF5t78OIlKaOZITSfpmHoNzg\nm5zH5JxYA/wjsmWvgR3rAEL7uSVKiS1MTzmkXPSudkGmTshK8FAx4BFXmTKv\nWqJy\r\n=7nZX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7893c9fc7ea446fa42fdfa2d8bbd7bef6e0b2ece","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200624_1592982956420_0.15465848757351353","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200625":{"name":"typescript","version":"4.0.0-dev.20200625","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200625","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c74dd8ddb98e62f7ee02227f667cbe13f6538d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200625.tgz","fileCount":172,"integrity":"sha512-llreNfYudY1xhJ6JjshUDf7+vJ852Md1Hx2xhpOMTtEbDdYj3j2/zP5oNpY+gIm/YhkrngLGHmxCubYE4ExeQw==","signatures":[{"sig":"MEUCIHUR+fTXiLVc3rald35sGD8vxSW6T/VY3OyoCe7pxKsyAiEAxmupmrmkzQO9a8HllwdUd9XIF3wrylzXmI7DoTcXdok=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56564663,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9E7zCRA9TVsSAnZWagAASXoP/0sCPcKitpYlOx2JSMDp\nq/vArmFr1OgMGaY4rTnKtN8Kh9e5y9Iba+jnIHqqMl482u9/fHErOLTvTgr5\nGvBf8JOMqMhKIp5RZKRsuMOtFewET6dxFr9vbOtkkPIdUSAKUNJ+h3d8b+ME\n0gSh6w7oQoAglGt6GfEqQZkwSAtCnJmB1dWb58ifkqXHrjuM9dKIW+1mPs9G\nRm5iV++yR98UK278+8EYMdC1AuSjhS5umMvjZOZP5X/DWtoaxKPCVzw4CI9C\njEM2ia4zokohk0E4CVNEAWlLSGnnyw9U0mFeiHZVVjxoSO7uAKgQxB+M8k3I\nGxwzNg+3OYU3kyhkReARyCANL/fiZmlnE07tomoEYy63eDMoE2G54yJZBQjd\nI1jpHXQmlMUvyCs7Mn3gTeiSn4/6VptOnqR/w865uCzRli8QyyAKD70kxm9s\n5/zrdn5OSfkRFI8SILFZn07a4ksivzLwqZID7zFTK8dhFWs0d8mpgu9RXi3z\nQMfi9aooqgCr85/IjuNLhtbCiFoYaAstc15nGKh/iGrA1ODGscEko0fPGonb\nwcCo0BmVoMsTmyHXscV06rT98PdAErpyrzjBaD3eE60BREhtJ9EbsnlrkYpT\nzca+jty8LxrHRrAD5UHaSHcHc4RQk1vND3Djy2rINxiBFNt3xmrLLxX/DXDQ\nWGlJ\r\n=vwZW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cc7cb9eadb10a56687513d4fc3a67d5210b387bb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.0","@typescript-eslint/experimental-utils":"^3.4.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200625_1593069299070_0.2988870148589904","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200626":{"name":"typescript","version":"4.0.0-dev.20200626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200626","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f117e678d6522fc7144238ef132c35ae39874e07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200626.tgz","fileCount":172,"integrity":"sha512-8W+frAZaCeruWwHfK+ZLitmXTICS0f48lRAPXojLgKlBkKY8dRi1y4sq+iWA3FgiB0oybMd+cBd1wBdzOQ0YIA==","signatures":[{"sig":"MEUCIQDDcggnK0LgkLg8Q75xrwY4oKdspo+x6XAZBMaxJz1f/gIgBbH20zCe0D1Y/k78LcZsvu0viJ2o/hTCwsuzmBDJY/A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56579714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9Z/BCRA9TVsSAnZWagAAN/oP/jD9NVnWANv/KIuZmbMB\nJBSRY5p1Lru2eD8g5jKo1afDIcUTQP+3d9fLYOZ7sBkQfsiHHkzIQyQOHF6+\ns3L36CuO1X5Ns/liIkWuCm+ZcfzgL8Qu3w4F1+pUyApMbZO4fqJFjBLegKrf\nIA6nAZvq5t3ZZaMHIYHO9ES96Hp40H66zkR+odmBv4sYCEE0DY0lD+k/zSaU\naMUwiCeFUBfaJhV0dr+WY7W5WpEvTkYqI5DDWxBWEuCZQB6EgJ/AIlvztU+v\nhzKrUzPYZy9J4Ik5brt3FdOoR+7Otl3tCW1h+nlWI6+wqwAOa71o/NDfwbgH\nPcOD5/fL98VyjBixxfIH232/H6mC58Nwg0uLVui41XgCoyuS+ECD1Md1+ubl\naLGEqJGuQb/To6udu26ktq8HcqXwYQu1kffNjNvpkq9g099dhLuCZFNJjTrO\nmVwZpBxt/uozdW9ijQZUs6l4VerNwsKElZ0A4nEKYmNRG8vtJHkBPaYFOZBJ\nxmrS5zjUg7TEMRuATEhJ1GMKcwnMKOqXNryuKDS3XhIHM5nSdSeIIJt19So4\nnF4JeIQtimagJzZYj5sEqri19X1XWXgpmGlMUqDTCS7JklDS9OP9aNZecAy/\n5XMvAJRW5LtShN1kCV6kA4QlCCddtZiiH91jVF6n1kzsJAoyOt0i5+RYH68s\n3WPZ\r\n=CQ+w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7edc00f8bc690ec546c532aa0a874a0683b13838","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200626_1593155520220_0.4342723068099499","host":"s3://npm-registry-packages"}},"4.0.0-beta":{"name":"typescript","version":"4.0.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-beta","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a6a65e430562131de69496a3ef5484346bc0cdd2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-beta.tgz","fileCount":172,"integrity":"sha512-d3s/CogGtB2uPZ2Z8ts6eoUxxyB9PH3R27/UrzvpthuOvpCg4FWWnBbBiqJ0K4eu6eTlgmLiqQkh2dquReJweA==","signatures":[{"sig":"MEUCIQCStl9GwbYhtv1M2mKHIMJekalzEa8X6ivNPM6Quc+01QIgdX6tr8mLVKVHsAuxpfSjAMd3tezrkKwX/6k2XxqApJw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56529500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9iS4CRA9TVsSAnZWagAANu4QAJahaS6lpMLvI74OlxCu\naJe5p+nWIXuZaYITyNuSBfTVgwrURJPJO0/QVq8CscCu39LYtkEzylcR/MEd\nu5Vgkg/JykYJ1sDcsA1fRJl03l5fwATJPqKQty+bNVRKuhEaHOui/0hUXmcC\nz8kQuV7l8yQ3owfeGSuooIrqgOTWRT5MlbQtsc4kh4c7UDno2QF3qRgB2VPk\nNKDXZmq/qRX0YLb71IqEpYtNNHU6prq/2srgxmGtEQ/VP4pr8yY8OK1ysMvn\n+ziGYLxvT4P+zgKwE9tNo0X0AII+oY0fqsk1NHX/YgF9hp+IDApc9nm+isLx\ndtlmlDh2mPwyYx18I957Yw0R4PxXI9ZpROO9Pa1PqhNf7DEN96DNif7ChkIe\nfthZRN7rtHwa4/RKeRxuH5VwTD5kDSaikbV7W9pBN/Ai3y2X5zKb9WRCrERY\ncIxLT2IRgQQ6JmrEhebg6dmv5So7bul0Rn0PZ83bHgMGP1Nm6dUXPzGSrBW6\n3PII79gQ+7meUpujmAvuI+IhhvTGQ272W40TS27POim6LWSjjeisavEP4tk7\na9F8NFjUehcnNe9YvJmj1OjSlzxLZHY7AqcnCEIloYBICH98CK5egtg4kPvT\n9ba4OYfZaBnAMruv4FVnvg4tlxIgHFexFdTkYbwh4JaayB3LIJpsJWcpx1ll\n/Y/X\r\n=s9Xa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.27.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.27.0","@typescript-eslint/experimental-utils":"2.27.0","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-beta_1593189559994_0.23555548307308616","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200627":{"name":"typescript","version":"4.0.0-dev.20200627","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200627","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8cf5b8368d0c391828763e756442f853f29f0684","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200627.tgz","fileCount":172,"integrity":"sha512-elSvP0zRRZnxqSIV4yver/fbegDmrk9i452z3uYuuC/SXRhXjcW4kctWoHcusr+CpBgcLakvLeIGf+j3j8uJ7g==","signatures":[{"sig":"MEUCIDl9uMH7bX+NmLeBOuNJUGFUraPWlrejylXCGi/YSK1tAiEA9K5ADEWhKuH5TxnuyeFrTXZXwF2WBEe1b+GAMHS2ocU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56605990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9vIJCRA9TVsSAnZWagAAQsoQAJir6B086RWhljtoCUtj\n3j+fFtgnp/4/1WLSGEZ6mBm31sMeT7lImQPeT/mk//qmT9F8N+oAjfeTCfrH\nGpcFvbFhbnhPCjkNzB/apj1kggSDwS6ZOvX5b1vF98oSFVET/FA8Ck8POwvU\naIyrGe71Th9cPvbGRVaDEOceBVIa/5AuhI8MbhsgJdi0C3Dg3LGiw8smY/Oh\n1gBXI+LZGr/ZUdMOqvwrCixy2OUJkNNGVfw5dAshVUn2tvf+LoBU2uu4BqeD\n5z6tXIuCAuEuLMKW8FvcZqb3m5cWd3B6KQuiDbN5y76QPASJhEDj2akwTntW\nqM+N2wZ5TC81N60aexx5Cv6/uJe9ZjX5HTFMry8mTfcj5kvP6vPIbJiR4Hbj\nzgrhQf1Vc9IXMh/O4zmbtvW/q2traqE92BGUVNLVofNuTit3NORq6mnNXXFd\n6GItAlK244v/0fA2R8zKoWdqQnctc3VY7OO/bvtcawsBMxqw45DkW4x1dolS\nAXevXwuMldC7khqE6o/D61VOFxm4R7jGOeF0gy5e0oGzG0Jj8U3yq8Oq3fTP\n7ka2KOaB3MNSvsuKym2wr6vgqk5CBl5HHqexbT9djnpbPRU3xH0+jLRhgTdB\nvrHjkVdazHO8rZ/GAsjsleYWF1LelC4nIFcMgluqZ/czFY87rpfgW/WDTAF5\nq6gz\r\n=JA9c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1aaa2ec45e8224edd5cb225e96537a98f6266479","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200627_1593242120546_0.018620973105099914","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200628":{"name":"typescript","version":"4.0.0-dev.20200628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200628","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d163d6b14a0fb50a9c46307d2370cc8243f5e434","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200628.tgz","fileCount":172,"integrity":"sha512-rwc3ViKGEdEMuZRlcy3G9kie+s+r+9BQVzm4aSCi0rsSNeKo05Szt6Wk3AQmbGgmvrhNXWIk1r6vtrS4r93Jyg==","signatures":[{"sig":"MEQCIEPkFHUe1s+VNM+75ssFGOCip+mzaz5L1x2T5l9ppJSTAiABW8mawyC9hHsl3oMZTcJLnPS23+jqCrsn2uYvxxdSrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56605990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe+EPECRA9TVsSAnZWagAAStUP/0U4GEL26QZLe3+gF59j\n3Fm0RNLIfI8T07OG5L4MrkZqsiXC6QYV62WQa4TfIoTH6cqKQni/+FYG1ZNk\nvBJIgXC2BbH0eSzN/wYEoBZJEU/E8bzBIoVXwAobkypJi2QL3vuYjnskiyXs\nLSNM9sjtxa6n/+GHhavc1Xm8noiK3QmXIhfuAi/Uh3fTxGermzqxwp+83TbA\nWbGU8hcyx3Lhg6ogn9dipCvzFwIENbsIhsM/DPZyekmfF/4HyLwVaGzeAzFb\nN6nEK2KI8gWOb0ZceIBox/9J8WQkbZdtn+gK5/KgnzcLy30cx0gSSw0Pe7RI\nl2g/3kyKZUCY8/Anro2eJwQvuRW1zSvjrsZ6Nw0YNonLQINkqBhl1a3b5Mu0\nWKMKZ10Q03u/JY3ERFjDa7gNcs8WB/QVB1C5U8ysayyefoG+M4jDIiKVGxlR\nWRb2Av1FOrltHkFZtSH9OdOOoYLguS0TAGDDHJmcCAxDZsGH+xuqKG3LSCH6\nS8RbGsfUh2FxhHAIBZ3RyvqdkMFbSpL997zxJ0OrqmdXHv7zMHzsZw96J/7A\nd0RUt3T7l8YCYl45FnEk2AX9hze1i0imlOIzIsmJK3buy5GFXA1DfN/KbVD7\ngJJk6hOrUM4h/51CZ8f9uWf+SNNzDTL8vd2ThKclEzCSeh3qqKfKeqqL5iN2\nLq+7\r\n=love\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1aaa2ec45e8224edd5cb225e96537a98f6266479","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200628_1593328579458_0.7496851675941609","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200629":{"name":"typescript","version":"4.0.0-dev.20200629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200629","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4631667ebffe3a340beee885a4bebe3a73b6f18e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200629.tgz","fileCount":172,"integrity":"sha512-c4DUu7KvTcx4x7V8sBWexYNkCfioiH1huOJL6WFAA8Oot0Gr/+PlKKDBS9fYjsadEv1JI1qboJKobwLQn0kQXw==","signatures":[{"sig":"MEUCIQDIRdDMK6k84lcGlrm5tfCmouMOyOC5NWmRE+6xXpISqgIgA1Vor5gFnqzvpQREOwTe3tnAOU7500LIvdN4XJIJbGc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56606040,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe+ZUmCRA9TVsSAnZWagAA9rkQAJYoEE7hhTpM9oJXzjDW\nkTBQCTDZvv2ti+dCP5vnhNf+rr6L/Oq4T6wIr7/XqMwVPOydrSi3IfNMD/Aw\nq9OrUa/De18avfROpFD+UBM8F+SzenZGLX8XEQbErltlgl+JwA4BVUbg845D\n3IBIZqx9ela07UD67xZlG5BT7p/2R9ueskAq/yq3ce7oJMsvrrL5Lpb4O+ZA\nUQjs6m+KjaVx3o8fzF0FinVqzMhw0zIvIQHVuN9E8pzqGD5x4naMXwnsOrAp\nJp5avDmqZz+agYxrB3v9/j5a5iTedHYDpaot7ELvmPVaL/mhcwuKSzajKcu/\ngh+0VfpA/BjENJ8KYkJELoX1H221Z7NrBV0BQvm7Ey4IeXkXITibsIhZqZv3\nyBzwjE5g8NqJa8ac5kQe8Zz7q4Hz9xq/Bd4qLovsj6dV6BKI5VY0WGNG2GlK\nHEP+51Y6H3ZOUgY4N9lT1yylXbwwEZQjpeUkC/5erDx86l6BCIm2dTDjzvsY\naCmGyAYBWNxtfCM4KHQ7RFA94e4dUb02aBznp8b+uPAPel3rQYDStRAijT4n\nc/N/11zDSHjJzJyBsqoew3Q944FS0LbpNrl99IfAA1dhyyzqm3v/lXCt9Rqd\nX/Gir1JTsh25nRd8fyiW2KJdg/cCsGnAxvEXdb7p8wkdtleP8HWSDzClKpvJ\no+t5\r\n=JtfI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"03f0fc4cf56ebdc19c193fbb7267f60c181414e9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200629_1593414949624_0.050886382840968025","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200630":{"name":"typescript","version":"4.0.0-dev.20200630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200630","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"73539856a18e6a417556833b35b1c0a8daf3fb3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200630.tgz","fileCount":172,"integrity":"sha512-m7Eu6QG0FgdHE8nGFsHqwzo8XM6Fp/QNZMY1JYWFSYTD7bk4dHACd8gQrhTfQe1FPM6EbfHxB9rExPtQ7FGe9w==","signatures":[{"sig":"MEUCIQCmTQN1xaHV4ShH4M39SnuSPUi95ChphT5DQ3LflqrcHQIgMPTWiVBw1X+B96hLaXHqVNeGgJaHbwrfnCZmE4P5q18=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56614428,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe+uZrCRA9TVsSAnZWagAA/lQQAKJDDHZN3QvjG0qYAYxs\nGuLdUdFWHECUpflrs4W7r0/6SC0RJyaxXzj7Pic3O01XLXeKRrgD1NWwMLBx\nCtAJ04oeVNUFzqwtVmmJnM9O5dOvodX5AX2f2FsjKMWMq78yqvL6LLH8eLJW\nj/bG/voIirMeULg9mtvhqIfBC+5WByFXoZTMrkiHoDCM3rzCiRca7/YdUSOr\n6eAqPouEuhwUziJ28ohBKebs1RaePfltsqkIEjK/F1fUhbVGsmCgMDeBCI+C\nTB2cKj9B7AiP/iY+j9m/fFIBGXPlJulR6lgMnMiLgrjzluG0TJLVdlKGmjiv\nO2H7I8TKtk2vdspKJIW16HTb2NY/POv49JBTxvSH55GL3UfNhJjtmmynwWFh\nSapo8XQuk03TOJ9eAoU2zQeEsr95MzE+iNwXob08pdUVPpNhxz7F0LNFs9cJ\nZ9/8AuH1lv5pl7I7oIYhDQEDUpt22dlIJfh5uy5aNTK3d+MCNZISzZ5PmmL7\nVRYqvqbPBsBylnYyAXTluKmTtIc1ITkSvY7iR8Vj2uMfmG0Ns+8gG42+Nauo\neXB86cSH5FLlsxY2nvt2jayoifbHz4T6mP6OIVdGz7XvBTDYbCzPd44x+Ps6\njuzDWeWoS6kMmdIhQGAVqR50XnjhfzCA7rkmRjNBe5qGfze0pOB21Fg4DCZb\nIua3\r\n=FHR4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"619658bd44708db1e302a3a2a37fa411a9eb805a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200630_1593501290155_0.8296021284043542","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200701":{"name":"typescript","version":"4.0.0-dev.20200701","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200701","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1ae29d654601eb9e98efcd9e7208b993b983fdb2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200701.tgz","fileCount":172,"integrity":"sha512-0nQ1T9ROoxxZf4ILRHRHKygkLjW/G6UltJ0AlmKPVYofkNI1R0CmPHN6OCcjoU8CtCpwLCSruFspY2lLo7KDDg==","signatures":[{"sig":"MEUCIEItAbKiUh0HyBLpUnv3mhJLma5M0Bhs4BavgjOcXibXAiEAjED7Z+oEshGMJoQA+A3Vx2JlGDBryJlKPBGGt2ATbdE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56635948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/DglCRA9TVsSAnZWagAABrwP/1AgDJgGPcA6CxGOgtqe\nQfUrmG7hXJCARqYDiU2o7m7PhQVjtV3LJhwiBya6GM3iJVz4ak5XO0t19mtp\nZZEV9UxSqqeiiMOdccaHYHUz+VlnpxkWz3zJSeEICZPChvli9iPQPeMIRSpV\nHv5ee2w3+1k6maiwwFDb7zVr81la4YdlMoSrDskPbaA22GUK9t8M7W5cyREt\ntAvNW/4+G/dhROuwZQSo3yrwHioxQ6F1B8PnEVRlNtVvVKzCnB4E0EXswdS7\nRHTg+rA/+gyK++4uZUA4vIcJRKN9A3OmfjxD7F1Q6Z4Oga64cTQbOahrxoP+\nnmlqtWURyzbn1YjWjx/wzvv01N0f/sPHwrPglolY1+dQHzSDmPiM59Xnlx+h\nwib+TqI52qlIhdm10bWUjJgV8S8wq/rVBl0bD7BzYPkNLCxpjcTZN/I1NIOf\nxwSiYbvE9x6g95uGq/oW91OKhyf2FX4ZWI4dXXCTL/02KuwdXJdbAmFFfJyJ\nJz0j114a0N9hoVt+8T0I3lB2odGy8+7s5qlkBrhBf+A69cSSwzUwLfP1DkD4\nqaoqVmgd0tj8zXf9f10QOU2eHGSTs5kZDsk8b86MheheMjUsthcQObRkPtMh\n1tTUiCYYj26XiNp26QN1j1/xGms3W2q9yUmAbR8QqNgDSZdkol4pwPvVKPai\n2W3e\r\n=dkss\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"df5981319fc9686dec63305142f7a549e2e6b888","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200701_1593587748387_0.3386590740866242","host":"s3://npm-registry-packages"}},"3.9.6":{"name":"typescript","version":"3.9.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.6","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8f3e0198a34c3ae17091b35571d3afd31999365a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.6.tgz","fileCount":171,"integrity":"sha512-Pspx3oKAPJtjNwE92YS05HQoY7z2SFyOpHo9MqJor3BXAGNaPUs83CuVp9VISFkSjyRfiTpmKuAYGJB7S7hOxw==","signatures":[{"sig":"MEQCIGnyWA7FnpQKuBtm+XTThsrxfyJhDzvZiEV8+pdhc4DzAiBXaXuT0/fvrHzm3VQe8eTO2VAFBkVOuwZmw7ARapnYnw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54137894,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/MtwCRA9TVsSAnZWagAAlwQP/0rw9hbdrOaFtf2uAJ4x\nzcSMFNwpNGdVSpNU6CyLo5r1LYgZSw/pTK4vE9q9+IKng0Os28CjjrgndcKe\nrc62XN4+Lbacn+w8ZgtYRV9qgbJynLMI+LHdIXOmhe9C+Rm38pjqKi2O7j6O\n6DPfhj4GDB4m9N+3N/3mCWAaIkXWXvl9DW88BeIKOT+MO8IPpEcnHZOOaxcd\nowL/iKpIEMgme5/GLd9brAmDRe8eOqrutJC+7bSIF8WjBGKnZfcF3/Qqzb3U\ngH4ZnxGywh2AALqS1DAFlm826LBm6rMkeRmJ+HPHiSPMR5Ur+3GuC/SRv9Mi\nqHc8qna6uvBzK+/BK5+J/xSPguIuA+tQmP5p5BOFXNnjt4Im6J6jrlbYWxwu\n4F31Q6KIjcEUT2jaZv4jbhzDXfWwGuG4AtrcRVeBynzSIRUZsENwLE7jcJbD\nCXOz/YceD3Z7g/LhmyaDrsuI5yHSOmUtke/kqz1GlF1U+vugfOZx/eWQSJVX\ndyP5pxkXljmNLJozjkmOsNGRlg94fiK5fy77KoOOLTF7nPiogJ8J08UCyx64\nycKlerNoxBy2AOfh1H5NKjD00VkPxpSM5HTYln6UjhBNuGQn9xVMzdXlhzDq\nkTi294/zpq2PDCFzU19K2n+lwuDqtQpKe5CXj3b2D06BxjvbzAydrz8rZHm1\n8Ea7\r\n=tdyo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.6_1593625456048_0.4692796158046124","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200702":{"name":"typescript","version":"4.0.0-dev.20200702","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200702","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00f3def293ef7a2da8cba8844e7ef2fd1de9c661","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200702.tgz","fileCount":167,"integrity":"sha512-MtHlPeSy04f9I6cej+6mRf4NIiAp4K+EDm+Nv21o1tVbjLOKgQnKDZKPSNQxy6U2WcvSKe5Q4aEvw2B2fmk9+A==","signatures":[{"sig":"MEUCIFhpdR8KAZwe+eBiyYgGNNsfmZuRiPZY0IwyDMYlieY7AiEA7wsCYMl8UvoxvBJ+7rdvPw951vq/KM/6U3sSBhnFm8s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56451408,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/YnJCRA9TVsSAnZWagAAvfsP/18lwNnf4U87jjZolNs4\nPWhAqwmTle6RbB/ddKvalOJdb32vUYWrMu11DL2zJdgmc7X2bouLEHVtBOBQ\nivBGsAIoXFOhsDe168ssbZ3Bv6EzdtoF99pygVl+Ndr2Bzgd6KPzk79yw+Mg\neHjEMF70EPw4pAW7uxzf91Tm2sa1uHUTlUBd4tXdbxt0Bxz7xIOQaDHwCGwu\nYG4VPPBbfm43pXt1bpdtBp9TxvczQLsEt+tpFAc1xjCEWnnR8Sl8YRkxtWfz\nmx6nfhExIW39H6ehlVn/KsKx0l0rIHKJbVODD3ygA/tvTtzjqAWPmqPnjScw\nzaQgxT0FZfGStz6QTzkMDbLqQbpRPgDVpzeGo0GhYTJCnenKkeG7miHbbkMi\nlLz3/Q1E8d6ZAIxCA++iNcteJU3hXcDIUR/LZFcsYoo8fjTQ8QJVdiFZ9FF1\nYr1IAfMWOW+Dlk5iT6O1Af2Z2Zl8PXhIjQ/Oidjjx7CPZUqz7rjNY4KANoHU\n2ApoM/TF5rtf6vbx1Nt04hOej9/4k1HofYTsWEkOeTtsViNAcihEJOlXtSiX\npy5F54zYZmW3azf5JydaiQxHpLG6A6kJloD8dYJmf4Mt20mxUherjgfnA+5y\nrC7o9LxjjnvF55OAGClFdhgP5xmOldmV8t7Oa2m6Fn4BO+7KSC2/APk/JUsG\nl+5E\r\n=jZEY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7b942b4fa875f2877a90d201cf146e6196b0c07b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200702_1593674185022_0.8119000216704888","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200703":{"name":"typescript","version":"4.0.0-dev.20200703","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200703","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"18a169ce8cc29d49f329262c665f03c7c27e8ead","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200703.tgz","fileCount":167,"integrity":"sha512-xoluPKssy9HuHbbyc6cMB/xv8JPezBjBO0dpyR5O9WEvUYF4QVu+3TtaGcdG/d+NpwgGBqo0cR6IAeHxJuGmXw==","signatures":[{"sig":"MEUCIEbFEMDT2o8GUgtHJWkbrW2j20mDoNWcZd74ayJ3FSd6AiEAx1+1CL4qtjSyP/MUck3SK5adiU5z+GG68e+R8KB2+Po=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56462425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe/ts5CRA9TVsSAnZWagAACQwP/0Ii5v1fdLCCRWfgYZwc\nIgN3aJpoV3nfz06KuaplUU89aUcPCOe03BcgTumJSwGJLi8U2VE9/rvpKLE2\nxtwCX9nJAgyemKsuK0olT9XcrEVccefeqR4n71Mu8+MBNfQbBSQms5xcJZ/t\nz5uK4eOzAEzGqNyq8P1ME59wCn1zp3KwCeua6D85JocdcVHVISoyFhG0z886\nKjaESuj85OMWCYg4Ynd/CExQkvOwTLTVJ3NrN+AyZlU1MjcQE6dPSEfb5AvC\nmI8/I7Euki8rt7gSjK/eIQR0Q7YDVfYn6VzaFvxxKHUuKKPjcBaJKi2oRunI\nc9yZmuWaZC18PdNfXGNN+06A29H+ZrIFvgPifGPyjY7jA2RdGGsQ68lVUdXb\n1TLS9ionDajEZ2EKWW2gmXz8tfxJj1TVlDaX6o4DaBHRCOM5rZ2GwcGYvCwF\nc3HyVjOo8vXB7pcHiUgjy6wJjqVhrqWPdo8yIY7qK/x97T6lxo/tWIswtAbQ\ndVDtG7wevCKWy3xDXnB91b11x8JKPRkfa47w8UWYZCbiLYcvqlaFz/S1PKa2\ncVFSGBXkZpCDH1iImYoxN8M5wn0CQM7vVhOJji2U1/9F2qupxLQL6hiqLMET\nhYof+jTV9Sk70zzzGQsFgHqQf24Zib9n4Cnch29dgu2Fh5X8TxAd1C2XmPz4\nqBhv\r\n=tg2G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2d09da6df5d033f9ff8ad7b365a11ea968f00985","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200703_1593760568608_0.5777515311510473","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200704":{"name":"typescript","version":"4.0.0-dev.20200704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200704","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c088e3402367576d400877fbc8f094b9404048e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200704.tgz","fileCount":167,"integrity":"sha512-gPaPii6XrtwoHeGktZdhVcskcOUVa4+1KOr7FDCmv1nG5QP4Is/F8R+N8frSc+spzmRrjlMOTQKKYGfN15Olng==","signatures":[{"sig":"MEUCIFfQ4bgp49u5uxMX6psBKwll0+uZOKEBK7U3E9yKJOf8AiEAs9GO/Zp+bpFepaTp7G1G96WQmh2MqbyvRDAiq7cWjo4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56468341,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfACxLCRA9TVsSAnZWagAAi/IP/R+JCk8xPRnxK9xCtCyb\n32lTYvRZmXqrEy2BWW6wP4f0QweRxU6YX1EbU1awy1vgiaxWk62L2uTXeCLH\nyIIBIev1/3AS50rFPfm4YNILt16vscMJgl3VoFypW/NxyWgIV7VgBruxAZSq\n5n+oFEfgMiV65uaAMx5w92EUHD1J5b93RXPiEatayueNOgiZHLnVbDHsf2ZT\nZewHTLCgCmcTr/8LP4KxszP9iQePNvSS1SuzQPq65rIl/bS2GCCo6LA4xExP\nI5Ff3Xhgthg9d8EG7TO84DcbW6nWNR16HdR3Ke7fFg8sarMRa2QcYoKYHPZP\nYINJYdfGyAwOPrtPbbwg+nzL5xOcX8VBFn+0I0UM3a07RqFot1BsZlHYzQpO\n+8m4UnHP8u5BW6Vs7OsAwP6lVUQVgephtff68p5Ll2BnXQ5+dYgk36bh8W+M\nMsgiNfj27XtS69x8rVSZqUejPiMh8sFhXNbS26gZm1qCqmcehtBcHhnf+cWs\nW/WZlgXL2f4RvyKZrLR0n25+dFdgwCso7NVye9nm3jYB1JTBRMUioSQ7gz77\nUIaokucTKwxe8mkYSAV6y21GPCxlz528zdSClovXFk3oHmDnsvupMkJT1paZ\nz14U8NILR/v2+9Z/3uzprimfA35swlpD45SnMJlAFAE1DDZc5ttzieayt3sh\nsPnf\r\n=dgj9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9a5c0074aa64f2a85b425b0e5e6d67c473113693","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200704_1593846859244_0.6846325279675072","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200705":{"name":"typescript","version":"4.0.0-dev.20200705","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200705","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4be47176d72af737ae22fec95d74d74773e2c18a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200705.tgz","fileCount":167,"integrity":"sha512-3+B24SpyFO9i43Awv6vgrPC/LcMBtdiPV6i4AH8Td8ZA6EPug1G9svZ5MHKqnIR4kZjarBUtCtQMFjsC55JFIg==","signatures":[{"sig":"MEQCIGa/IDJGbN9xXzP/gPinSDWMX/1Txr5Megvz54SgJtM7AiA6ayzYU6Q5KaO5O4nV40V84Oz5Ur9iSj7FdEz8pjWSnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56468341,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAX3qCRA9TVsSAnZWagAAb4cP/ijhhE7N/F+qR9yXKR3C\n2vUfwD188VFzUwUXyLsbbcud7jSmv5rH7znWPDrQ45pOxv+8aAJJEaKw/L6s\nldrCnKE31RcBpjCxNATNFBG49S3coUDAsTvvLspAvjzkkwG3ddYEX7h02fXY\n/c6bphhFsEqv0KOM9rI1GapbI0SPETB58NHii5J1e54VxadC0dVlnc8bdXE7\nC5CkG8+0B+FNCak+ROkscv56o8alKuH0qzKu5mjxrR4rOIlPMO1CZl/PrfUw\nCQQA+uCLVGiVz6rmT4dOFkyadhIqvFhg+17ergzJXs9Bny4LPS1VuCN1B4dc\nR+otYF56w0mCX81LWPx92g4zRvow0HwiA73utqmSc4k4L0TEvBvPhf86r7Z7\nuuVyzeh4cSXjVen0Hi4nrF62ZdqfbOyx24P2HJjEj+7l8w8h9/ROID8emFk5\nMiBV6+8B6GFHIiRFk+qjzKy1T0lmURpAe4tCP10TtHVhpxzgoRplq7wdBiLL\nMxI3zan+xYpN3j0Xw+RNLWznVPRfv8861HiMaWzAH7nSpVufgncyxpLXzsGk\nWIvyeGLUEJna4xN70ApS4FPEGFKmfJ7GNiHvdi+VvCb1uqHbppOjZRwPWsGm\nfigt03/a2CQNzEus0MhXRRAeOjvPQJmwpNEg87ovQDODq++rPzardYauccVs\nuCUv\r\n=xcLJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9a5c0074aa64f2a85b425b0e5e6d67c473113693","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200705_1593933289364_0.44055888918406816","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200706":{"name":"typescript","version":"4.0.0-dev.20200706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200706","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0edfc9949f87372317f8d556386c7246cc034f42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200706.tgz","fileCount":167,"integrity":"sha512-zS8fqJoy+rjONkM8BGHkZv4RIB5ZBqM4ZaVa569XNN+zrO44F340BcAHsps4h8DGMKqQevbPZNCLTSOF/+GwFw==","signatures":[{"sig":"MEYCIQDLByrbYAGz2GB2v9+hjXcqvkIBiX70ta4zgSMonSAsCwIhAOBOvTdkwB+edwR+eOTG3gqsunpeHY7xBrV0ROVCx3Kd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56468341,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAs95CRA9TVsSAnZWagAAcBMP/1tvaxdtTfVFnDj4idm3\nccvoURJ6V9a+SyVH63itD3s9/V4rXmIjavkMbYzwgQ50Ph6jfBXJ57keSrG4\npHi2xD39Yqzb9RwCZfNboyv2Kn6QBHS5s2LSCno3gxnOk049B0QO0oo3NFmk\nuXLJ/98CPbpEavuhwMlhIQappl9BeussEXwXu3T5eLvKZTjnsIqHa60GQ9KQ\npp4wK+SwuWVRh8e0iGCmj2xYffZR34Bswh67jepTuYX+uKNQjdbZ1fwlJye7\nrA9W5rmNcd2PXuylDaWH4MMmUzoaSZi0NTwvNpV6UZYqXFImD18CFEG9lhv4\nEuwAIt/MNDKbBRGjZ/Sww1Es/TeTU04vbXpb2wOEgpC+n9zkvwl2F71kWJ+g\neU5BeKu53cT7UR2a4ufhgMKPhJrM/MZ7DNLHsMlqN6oGtPjENra09VW4xcvw\n5fK2smAyYi7EWI6VdTYaRV6MkLloECtYqtALAavtfQ8lE8a8svFS9xKPi7zJ\nanX9s3qb9Xy3EyT7p9ruOey1EvPGNtWM0wANrHTae5yBm/JbYZc0WnbQVwLe\nbfKw3OrQ7TvefDx3geXpmBtVZyvfyQ0lHITAFprMZkdtAP0fmi9SA7+9e8WN\nA13cjY9hOJItNoTROpTwTc1ytsszjYubZv6XAWwieu//RKyFf/4gnx8hrI6R\n8UuB\r\n=1fBN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9a5c0074aa64f2a85b425b0e5e6d67c473113693","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.4.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200706_1594019704543_0.4060435850815398","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200707":{"name":"typescript","version":"4.0.0-dev.20200707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200707","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"38ed24f891de16b16abdf735d42553cabb5fef72","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200707.tgz","fileCount":167,"integrity":"sha512-jgN+EglZZMJvVBOV2EbBOyGhms0hJhYo78HaS4+AWV+hi720nakmJI1BFlyDsWyZI4xStxIQVpznHktrFj3lwA==","signatures":[{"sig":"MEQCIGewE4iHM4aRgOSRnMxRaVlZyTQ8kuAMbIpmBsZGGuCwAiBUir01Jo6UZ068RZlTGOBv7FvmmIastsJq4y8OIcP22Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56474244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBCE0CRA9TVsSAnZWagAAR2sQAIYZayFsAcwDmQM8LKvy\ndTsmgKUCvZtM46Ls7qPjck/UMXnmzxqDHO3Xa2+1/cIWnVzxIVXUT3BNTxtQ\nJfWNFSFPNMfQS8E5dqHYhXk0YoNuAnWLjtcTnMwDeQgCsy4/SQYZ9owi/VV5\neYAUmxVkBU777r+lP1uLGMHledofQK/borH9wjsxT3GsC72c85tPsE9ISAtr\ncxlSYnKrcPdKjqCuMzVYpG4zJ2I3lyCeKhel2vNAgGYhFQpFfq8h9ifar9u9\n1FlUsD0ksf7W4YZ+lH03dkgVgxkiNHiMx6I787eD/y2C4fblkiwfohTBRbO8\nR4+U3kAbH5/odwQJK8Fkk4mqNeLaM77uHpa9dUZoC47lqfC8d1U0zZCirS5a\nEEpOk8ZuLQ0lfbnAclHMVB+s0EOixrcIvQtOrPm6xp6rnqWuOtHeBLHwW4iN\nZUQSawLqzAhzQA5sCMU8TV0+MA6EvvUKdHBhtUb4WZe4Zos0GJZzglhIk1Fr\n6AUrT+ARUTEKdEQgRefSvfYmHNBOxHauN+y/5XYdHX9Y4Ye7xdUCJwe5eg0f\nb5UiPhGy3JZzcBloAEgAWwFz2q8BvThlGLjKT9cAbm/g1ycw0quIP2ymMs2S\noGHsAH6cQllU2LWvfaNJfm/fwpxggpZfmMEm6wZEg0DF9IDyHG3it5YKueNa\njSzB\r\n=tZDS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c12d431d7e01555170b79894b83043d8e605e1f0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200707_1594106163274_0.21081446776802903","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200708":{"name":"typescript","version":"4.0.0-dev.20200708","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200708","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9cf526945590456f34b158b180a6f8a2e0b57306","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200708.tgz","fileCount":167,"integrity":"sha512-A1brZPJRwkm2pxOSTIOVqLvrhF1swfLvDAgN+jRP/yUWNn+0OqbfunuY/jvRbtkEP4/AWZ+M2P625Y+JDN/j2A==","signatures":[{"sig":"MEQCIAEgyow+p38q2jqAXqOPS6hEqfLhCsTUeoGuu4xZgyfSAiAmWsb8NxdS6l+yKZ/IQj7OyMu5yKbO8lm2HGRti4bvVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56481771,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBXJ7CRA9TVsSAnZWagAAL9kQAJfR2hBPsZOgC+/bAgCG\nl6v6+N6EJy8fM0qK9QaSV30RKmSDXxszH15io2IrMSgC5gj2CKDWqTCwPBek\nQ5hKqnWhGt0kCHwzjIt2h1NX7nQjYODoTDthuJh0FDZn3zN8iWDHHxJLBjyG\n3LqFaEZso84zlGbTH6+IERFbjSkqYC/aAQ+OXLSdEvLkue3e1Pn6vx3oeo40\nBG15JIQwPIncQ9mJo2zuRSTXKlV+UlLnoypPr8p2N58vQxXKFsegCdLF9QQz\nops21t1zD+aJB+A/LPeTiMGSHTDMZnRHUyt6rKETCmAic4BZPjvBQ/Gbsx/W\nTj3tl/ghcHvex84HNylePNhEB5N+wKDaISdrs4vilP3u9XyvoFNQENxdFLk1\niX6Cz29RGDSJ8qS6mwDIHTPLAJ5oB8STn6EhUGIqtfJr+RW9jgVGxUc21Flv\nyljLPqfL7tI4I3hygBVevxRvOEGXAhm5iP+TX0SwVx5LLQfMnPAKrbRS3Ac0\nd++YfC5PrBavQUPNy6VLHRDuMuxw0l9uEfyLT8Heooi88jO1kbi+3xTqLbuG\ny7FFLX7AE5xy2ok6TkmvUtCVCqGaU40rsNmU0P6QHYKTrrzO2GmeuJqrrF2T\nyHTHKJabWpV9xJdvLu4iKKClqj8/8A4iS5LI2geLzY9BCmaYKcRBJTdG+Pj/\nSOAo\r\n=5zlW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8a39ae6f8575c91ba1d018f36e1afb2ad5356d6e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200708_1594192506654_0.25240411233967985","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200709":{"name":"typescript","version":"4.0.0-dev.20200709","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200709","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4edf4840f293825b5bac8aef12dcaa0008fd8e9d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200709.tgz","fileCount":167,"integrity":"sha512-pSK55zIBAl0lUJGV1UBXev/Pj0nozulZWul6A4aSM0QCCCRgfifd58RRGPPHW6jTf2RfnR8w40dnHvAdHBWgAw==","signatures":[{"sig":"MEUCIQDE86F9NphG2V/Pjcsu7Xu3QeQQZsrsO0qvog18qlU4xQIgRVmvHgbiH4Bd6BkdNwudxwJlQaPrW1WcvUaN2zHT21Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56504855,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBsPCCRA9TVsSAnZWagAA//kP/2sNk6PcpwCsm2BwLt9N\nxYdJnD9uKh44xWooqugnTvvrcsd7jqJ/t5yWsRcOBxHh4K7m3pNVhqCIC32x\n+pYjE1WStba/U2NMCtdVcLULeWl2fhdDAALYr5HRa7IvSe3/rKZ0Yad5Qsjo\ndVOiLZksEmj90/9HFoKhcfiSkTb4nQi5kUKPrEiosmrQsoLhhJFUWos0S2r5\n3aICIKHweBNvEWdzEBIU4H26h1NkR6diQASl6Q0SaMmb+OPiJPsPZFFJ7Bj5\nzPcACfJ/FRTUb/G69D1f/5K78P9xZIbUOAjSJ4Updmo1QYdS8c+shI7t5I4H\nYIYH0VZhcxZsWN9NHVtaSA72/0MGdKv9ERfMf+KWXJ1vszhwTos1BA0WZa+W\nLbAjXdkEw6LOZnPj7uD3eWUpn7WwjUkI/LhIfc66aL7UM0tB1YGR1b1AXsfT\neF8OsuLqi67ID9DUtArhWnadDehyUafqvgb1qG9Vs8Gh6dZel60C//bnmIFt\nFE7kxX9qHZzF1Q1rCmpGczKtdu6q1o+ectHuVnC6wzsK+7/pJkDDSMs/9OF3\nfxk1gqvCEYYM2OivJXvvZKtcsjesoaUz98XmnigkLGwWyBLZkJ0fgTqzD/Iy\nhOX+y7eATliS2RuQPJOURWC+TsuVI+mUu95oOLNjhFoYThlUPLkAnIwKtNpS\n8dln\r\n=IBbq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"03c79d7422f77b286b9e4c7576b5bde873056551","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200709_1594278849279_0.07719391692610866","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200710":{"name":"typescript","version":"4.0.0-dev.20200710","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200710","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2995c8aaa0c781c9cfcb73db6b90cba8a43fa90e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200710.tgz","fileCount":167,"integrity":"sha512-IZkPvXrBdUdm46a6uO5kI+TNtOCZI2/Xzk2hJ+ZBQe5fDigiMmYpc2QTvKprgaLyvAVMXZxJ0MYt2oCEXrPSxg==","signatures":[{"sig":"MEYCIQC4EQN7e/Dz61kC2JcmNa0PlfTAuIxSR9IYJ3xjkmkldgIhAKCvMCfYsT+RA09nyJh0VW22BYFhofzFyQERbv01tpBv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56516439,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfCBW2CRA9TVsSAnZWagAA3cMP/0BMDv/w9DmMplhuyVCH\ngFKieBZo2hW9Bp3eq7l++LpBDKfaK8zTJInwhMT3ax4jKmS4zjTJ8ascEk7H\nZHCOWZjM9ZmjzxzKI8L6OOm/4oFVAEgTpF8tGGhyrvWZPKb/2HC7aetJbSrB\nQTlLWgFWBeCM2ifFkffmIwULOn1lLyQOHxuqp+IRsiaaNNtjZu2AU5SXk44w\nAxJIT1KZLzgkrpvn1F3AV2wFoI69F2V7aH0yeRhoQRgGe7FvJIqgmgwFZ68l\njorTPV5DkHeHglHbxg2sJCvueSb8i6bCMxZmXd6f6gaS2sBM+fXPa+N6vb7d\nnOcPemsu3hf7pZFG9YcnIM/rXP/MhQ+o1V9ElF+Xa53++X7RoGybyO0e7Dpu\nDINeFoCH9FIUOs5B/mfNstxoed/L1E63TcWVxMjqegAFJQ521DNXbUrgA5iU\nTpZnMsvLP9viWm1T8Ai64GEL0LLZmVU9LV9S0bQpUjyizxChhuTNKRkYS7+A\nL4FTJwvJmouqwwVawGRkGW7X2zf+EYr3brI0Py9hQPB7Q955EQM1Ng9ZcbJW\nmcIKhri77CXIztSeAQF137GS12VuVDxm+/iZKyxiqIwGHgfIIgaVcBMzOukP\nVXW9PgJdQWttZPs3pKLqmtQEXf/KD6Ei9JyqWDGB7NjAJ6KFH6v0Vp8I24bw\nLRiR\r\n=jvTu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b397d1fd4abd0edef85adf0afd91c030bb0b4955","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200710_1594365365352_0.9179383596991832","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200711":{"name":"typescript","version":"4.0.0-dev.20200711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200711","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c98738ca78d3b2caaa91adaaef72d2abdb5f7a48","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200711.tgz","fileCount":167,"integrity":"sha512-ynscKsQt5G6NStIzPpzCEhPJK0qp/DYyI6uTl5Mn1mDhBqnrMXQWXGoYDl9DA6Mf5plK64zSD9CoSn4L8vDyig==","signatures":[{"sig":"MEUCIH94IglEcWBn/rC7aMYPB7fuLNUBVYPECNPoTm6GH3poAiEA11Hmm1yWn8PGJp75yG7yY8jQSoE/kSBRGiRzuvYmugs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56516395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfCWb1CRA9TVsSAnZWagAA2NUP/1Pdag0rnrwQVTH6kYwp\nhVd4kzkGo1gV/wmIf61QLib2l8YOri4+hPrJPzGIMKKsVJI50vuP9qIWLdMv\n+E2MqzfCaJjR2bvPZeswxL/AhYWIVioXp4XrQuuLEJdiGgsFU+RmFFXdB4xl\n3HOvYTDSdiPDEuy9YyouGCe1n7bRXo95QiNIJscYJbrGac/vsUtHaJ/1Smzp\n8e1ZSBiG/8l+XKiZTzLHswn9o+ztGcr/KcomdwrJ6YIGra/LxvDDyqA5SQxp\n2PkeY8TbJE3EDRSV7bCgHqZl5Y/3STSGBEshrr6BVyVhkr0lG2VdPwNBv80+\n/fOF0318Wc/yxQb/CDxHjL9kb+Wh//DXtL2a+COFMwU/oK7gOmfUcYlwH9nn\nPGPTTfeiI0rOgZQQckORdqVgjKP8vcQaI53/jERUyikWs0CsJfpLCM8lVfJU\nXrK830kTnTUqe3MY1paOWv+VfTT5aWKFjDWGNTvdV1+RyRlbcI8Nh8yUbtvA\neqtz7B2Wr+/0Tgo7tv2TEyfXpGA7SkR/FaZIaaslA+ZjTxTHxRhaKso32zD7\n7HKu5xkoSemqLAtKY3rI4JFRXN/V1nDjaSw7w8DgrWldZXAhw6nz7o/6EdiK\n/W+UXPDHNSVNPoH464YqbKEAjlJfbwlhtBZV/uLcQuyeNAzrfQc7Wozqkby+\nkXZH\r\n=8m3a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"87fd1827f2f2f3dafa76c14f13b9defc69481766","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200711_1594451700432_0.2852202188381394","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200712":{"name":"typescript","version":"4.0.0-dev.20200712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200712","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b998b2890749cf017d93c056438359cd5623e0f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200712.tgz","fileCount":167,"integrity":"sha512-qR8rfTI9A0SeC9akZq+/xMuDud3xcB07pJC3Pt3dBqJ+fcyrBCpapfB709syNw+6/SQHueMOMhUYk74DZMPedA==","signatures":[{"sig":"MEUCIASUFNDrEcTi/jcedkGKWIyZ582SIXgrV7kd1Ln+DQoLAiEAzrGwuQAQ9OPKrH53usdaX/oLj1NsWiFZZ9yJFflzLYA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56516395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfCrivCRA9TVsSAnZWagAA85UP/jjisc9lGPDQ1XXQpYlX\nmEznRlTCToWWjboYrcygiMVwMFD0D/gjLBWVJNbKQYUTsDlQWTejBC5PsVp9\nMrjgdKdhak2+1FFeUsqCN3mJfcBrK+iHmYv6Rms9ZGKfczVf3Zl9hKwLD9PK\nN064DQiyp8YEBFJGtm8oiWV67dcBsGKcnyreMxiDj2ZBh3MxrEX7vJ+jtPn1\nULAaikZAURPjo0jSO9INQZDB588RGTgg/wnenm+tp03fLvQpFx8VLA1D1EHF\n6C+GH3E3+0sOT3r6kbpDMPx1clLaiITuQtYDdKlGRUGQ7aFpP1d9P4CLJfOm\nVEE8Ld7fYsmaxbB6CmqF+RyKW88tqs0768unuaBGLfTWRAPk3yLNrGhWxIHz\njdsQhYyIyHedmXYRF/YRIcqwG2/yNilpOcscYL4IerloXgkAQDihgkvAPXUN\nkcfA3LDLaJaAoKcN0/9LpdFpi6dFq8FKoWVl1BBVUYhO2RvcqRnhOOL7mJXM\nO70tyINTFO6CCs5U3Scf2CoGVR9qqEgHYSC0irWmq+ZmbOFcYaItAyysYRiK\n3ly8UhJdyuC+F6Wwzh3gzCwgerQj7CU+eZ/xdzHLa3ocrU8bMbpSumrLjF7d\nm7cN4bLpcnFNEMM1Jd/DRD63flSB0GTYzglAhCWt0IFI462RbKxQVxMHIQzF\n29yP\r\n=5hOO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"87fd1827f2f2f3dafa76c14f13b9defc69481766","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200712_1594538158540_0.6148007981118864","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200714":{"name":"typescript","version":"4.0.0-dev.20200714","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200714","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7101b7c054e896572464400a4c3eec94e02b88d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200714.tgz","fileCount":167,"integrity":"sha512-h2uwsGNnxoNNmIJjpaBfResYMpJ7PIa06/JWKOQob7sWjMC0Uv6jbaiG5kPizciKgTpCfFim6jWhZfj3oIS6TA==","signatures":[{"sig":"MEUCIARNkKHHVR8mUgpzBbEmHDM+QzgQxP3uz+Qc+RUfEXlhAiEAqlURjN2qS4Oz3Eo6oBsxu+GXLNr1tVtzOKhBFmGfzpI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56658737,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDVuDCRA9TVsSAnZWagAAFyMP/1Vo5ezSydZdUikpjQwp\nFSDrjsz2R9frpNd6h7gcRTh3onSd8mwSU/r0rqEectVVPn6/Yj0U6UMGpCdh\nkLPwXJEy13E6s/ABxtDCbiMfofENX0plLSAfStrGU8DAy5otTnTJqge4+p1a\ncC60q+VLxeKAa155j9N4zFNou4b3B/uXvss9HEncohnAlEpkgVzyJU3/xLK2\nxmrRUmoID0NI/qH8xApHwu09/sEINEf99xJn2T9tt2SiDIzKJU+PbIZx0aS+\nhqsrs75a60SmafQ7wntKB6lzrnXsNUSolWklAhpaFSYWRxW23QWbZMGPnvBC\n1r0agTnx+o4Boz746LcQsBTE3A8y1o5Q1bpBqi//ZHKHKu3WDI+WzxLehQJ1\ngMzJjFQL5ahIivnlDTxkK0PvazxEwawH9ltE5cpAYTl+fBQWQbiheCsonkUR\nAvb9ptyC4cH6PrPLRdmdMDN7uWWegHXoDHXF4zfytRl+PZdcsgQmHA1c+FEL\njt14esYpTEX3t/cYctZFFWSRAIQHtKyP0/EWhc3UmSUH6tMeLEf1EyO80pMb\nnscBdD+SFA9SqNSmcEKWRW0k+jVgqrGWwuH8qGD9amGUCFw23qWAApHtIVkv\nyYGnkVg8Qco/2uS9W4Ila7jzrd93Jr5TAM60uLeSbS6Nv7f7iAhLws4aM3kY\nx6g/\r\n=H1in\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"17022388bde8d37bd98ad98f8b3ed733ab7684f6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200714_1594710915101_0.511313177945462","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200715":{"name":"typescript","version":"4.0.0-dev.20200715","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200715","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d65961a5a6f13fde95a6f4db5f5946f15e4c59bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200715.tgz","fileCount":167,"integrity":"sha512-gmPXoWktfXeutmWTM6el9U4vIn5kqOHGI1OESSOhPtLWrxodKqLfFuMygQtOUTtGjKLFQRFAJhHEwUhHZNOURA==","signatures":[{"sig":"MEUCIQDSesgEq0zTfHjYYTggxqYL+4pHAZRyw30zqnCtTW/mvgIgdydvQhImmlErsrqZtBprE9O0Z4FoQXB1MHKDL3rU6xo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56662622,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDq0fCRA9TVsSAnZWagAA6lkP/0MAIHRVNnzFoJi3UQaA\nWFl8jP5bvq6WRlD0KwQKERoaDWfao8eQWcBLI6jOlig8g9cbrmb2K2hYp5Ps\nTiylOAqfJ38p1zavXf3M+dG5P/goim6Zq9ES5PxrN3/fcth7JqRuEUZ4H3A7\nomnDZL0keLzysKU+NnAGwiRoj9I7AA7uKspNqwd0KU8htPf18zG6pU+8E8+X\nhuCjtxXjCoTYPYrdzeLQh4bECzkB2ShTO/CRhuqylqoVsFob17OVkk5viHd5\n/nl0+LmwY9SvXLlSvRXsAPWrvW2/0e7mdCPbsbGVX6oPOeJzt4lGxa7rsNHC\n7l22MMpl4SXe0MPACjAzxxpQX6SG1yOSqO6kE/OXOf0TKdaSA/oEDBFbU8U/\nhcIVgolfMdW5xxHrgCwCla0Q7FAaTS1+BNO2SDSYWgo8vkrjDQHt+4ZU0531\nTLAveoGd8CqBN3ADC2wNurphd8tAGATCq/aZUHYXqEFnoC1XnD8AbOIezsNX\nseIV6UTT0vrTgHoypl7Jws+yqd8pkcU7yW2S9Rtm2TN9Yi16bhZOHBBLVPOT\nhavD+ZvObxOtRe0imLU2UYWQEsQPCg7JvW4VVfY3u9iIZpU/LjM4Ip/7dByk\njuGBhlmw2GcTnUmr2FadlXq7SueE/KgOitJQlTQHqGFGKTNiw6SXrZjWefMa\nWGUr\r\n=SOfh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dd2fc86f2b95a9c621365522daa9720b1b4c0dd7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200715_1594797342873_0.5443740414524139","host":"s3://npm-registry-packages"}},"3.9.7":{"name":"typescript","version":"3.9.7","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.7","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"98d600a5ebdc38f40cb277522f12dc800e9e25fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.7.tgz","fileCount":171,"integrity":"sha512-BLbiRkiBzAwsjut4x/dsibSTB6yWpwT5qWmC2OfuCg3GgVQCSgMs4vEctYPhsaGtd0AeuuHMkjZ2h2WG8MSzRw==","signatures":[{"sig":"MEYCIQC/C2OzdKYTdrc0TUWisfHlKPGjBS242ZELZRHy5LaEgwIhAJsNk+c0HfYApYdGvKdMp+9kuzPmZyYC/r5iGNbWRcA9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54138720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEK7wCRA9TVsSAnZWagAARf4P/jkNVW8Ndma+ZsOU8Ajo\nWkSS2W6zAs6Mpe1GIazcOG4O3oYFkOvsWcjKRuAVXDaOqe4ktNzndy84Uaf7\nmE3A1C2x2W+09DA9FN4dIFgWhVL0xlEwtXvpyUoftC1KWScHSHvF5/kw+Int\ndRQQUwi3z8gHSgPVeP7E9k1SRQURkUheih8uuR61M1xAq96xGpDge9CVTkjF\nCt0Dfh23IXopLzmiR7HUMQ6QIeksdPQmq1KWL/V1rp7eblHs+4rQTYUPiOC6\n3BtULZ/Ez+pRqtZXHpP+vJfjiL3yCqnpqfvaKDy8MAhwIAvnOw8UeoA2u8XT\nirNHsNcuMAdGpg/zf8PjkdJtE9LlAQearIWixlhrk3YvxhtxATKxsluJNGej\nTn/1GEwR8mnUUWvO2O+S09Aez/t8a9JND6G96mOtxbD63ldZR9KSzRPX/tk/\nJLt7Uh9lG2L7SbpRXfSCCFmyYD09LCtbl9C6KhulJedAu6o9d+Y8A1XgQf70\nmixR1lhM2/lIbKnhsCyOv9r0LomPp2U78axccH2p9y272JywaXxVe5A6qpMD\nGEZGlrac8JAT8Lbo++FQA5D9PaA6oMHYrj4mRJU+WcUuNzCOmLtNqCgbVmL/\nIcdTrkz3N80aHUWBFEpa0N7eWXFSHsHl4RSyW/48xLOulVHblo/3UU7K3ZDy\npiL3\r\n=uWs2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.7_1594928879502_0.35650672462748156","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200717":{"name":"typescript","version":"4.0.0-dev.20200717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200717","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4e1100e789cde64fd10cddcf4172f61d6f769a00","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200717.tgz","fileCount":167,"integrity":"sha512-26ECH/H022vF69DJpbpLygzrQ0jI2UTHU59Tnb4mv78yQ2wzNNlLOJdxfEMRoefp0Hx4yA3f9100rn0g7d1OWA==","signatures":[{"sig":"MEUCIDTginJ9F5KwqF/8+AsQ6XyAfzNX+1C4VQOQguJl1KkoAiEA2sJigr+JFQIuqBcRwc8veBylUB4Vz6e3oD1p3Smcg1U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56702201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEfmsCRA9TVsSAnZWagAAQpoQAJ9Vbs3+q6TT5dyN6uzd\nWyeJ9l9jA3SGqMz47smGvc/FJGrz5geO1l4VLCvEJ+1LuJKMEQbl8ReOtzt0\n2tgDBSMZDkiF2rreQFDAkEJNLf4vt05mBWveKYF/XbK+qxl/76U2AKYCXjUV\nb73234ARBywTqKg+Tp9uKc6gJnhNUbwZJfk2Y6uM5agbvN2T8a1MfvoHlDQl\ni7fOtft9A8GQfDRVnGLzwdygkq4gbFlqNzFd+AQTP7zcZgnCScjvdyxKESeO\nzg1oUS1QIsI0v0G3FKfwwB1sOIu5gabrVtcoDRUtIxHsWVbrPc7+VL9CfWWK\nABbt2F4gtRKMMdxAxD5xQ+wObG0IAHmt7vfMSK10HY+9xwajewGaPkce15yP\nwd/ARqGKY1Wo6Dfw80XlTQKHDCesdpKohaBCUfCyaJxz+a6UEj/AhcfVCPBm\ni0/JNbLeUAbbSLofTVGZBW7PnSWpZ4XHHNgg/1eNJIlvATSd9H7TBLZfhRil\nP62A1GL9+zwlCnLgwaJ76vhsuTFikTjxgBp66fhD8znuKbZi7bYHSmy97DZf\nLzJxi/jhdKJ/A0wQs7xU/sAHCG+Ff6wgx8Ktvt+ouxzqIu/h48eK9+dOqVwX\ngKAs1D1+/DCXF/P9ebzk6Qz9tN2kIEr8mxVYTJEl5ymNNslcgNw+fB7jIFVU\nWZz5\r\n=75Kf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"191f4f63ab6693475b015945d321341ffae3820c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200717_1595013547373_0.6594442920427632","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200718":{"name":"typescript","version":"4.0.0-dev.20200718","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200718","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"50f73673e654565740267ce788cf9b6e92a15c8d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200718.tgz","fileCount":167,"integrity":"sha512-Vldmc1aBBtprJVYJDkO4qCuQ0zd/Hy6ZujUXJtLgneinnem4/SnA+01p0QqHOS+do7MXYquivCtYJLMfPCcOBQ==","signatures":[{"sig":"MEYCIQDCBnUAlBC+6lfoigzi5N7+R6gQJes5Nwic7xKqfTIabAIhANKIphvH2HD+tnHhyCWgInRIlfVJ15L44YFlCGA+lhbd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56702105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfEqHXCRA9TVsSAnZWagAAHlEP/2OGBJuZmL2NDPnlnGvw\nQrFOgEG4eehag7mJWLjeEpH/RTsvkLL8Vs6bhdfrmjMkg+KL8yd8rNDEYx/o\nb7JYTv6mJHYdkdGtZPNxGIz1AeeopHOo9P1AvvhvqVBnYhmM8MQ2n1ilK7JS\nrtf+fc9rViaaEUMtoNmQ7YlLkCD5hFbdgN2tGJEeJYtnGFXcd4TdhFT+GNNr\nd7uwd7yoIbY/Lvq+O33NuGDd5ZRKGDpmuZFB/SoUejPOVV17Aync/gBhVGJL\nxrTFLeTANXbqic88RwLYprqZCJl1Sm1y/nrXb2dO6RdVqxXbYGyPY5xA0Ahc\nfKB/97DYUxUvsVudSINFMOMWZLRR1Fvo2HBpToYIhOVH3eO7T5OscdfAL2P+\nzunQW/ae89/Y/HflGK8DFhgW+lXVApgK/oJHOMK/lI0CG0tnDylHYFjBYpsF\nHfiNJMunSSgcA0pGj/nowwaOifUxFdjk9baoVhNMuEClnWO75M+cDXv2UL1j\nv9e9rGO479/OLjFkgLAArpRFS+m/dggXL/WsJp+hMFdaF0LhJ091jt1tIaLf\nvKYC7PfvRQvcIp4ksgy2Va4kXhJewdh28y2etEiaIuyA15lHZ37FQ2Xc4gwo\nt3FMzlM1DHPgqVbatAiqkjPKbKvQrJP2WQliju9XHX+fDxL2ofYgEy1NpABv\nofVj\r\n=9cKa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b22339df8f3fbe0880a550739a0ba7190ca98bc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200718_1595056598415_0.3775736009638653","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200719":{"name":"typescript","version":"4.0.0-dev.20200719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200719","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c7be20ea9214635c328464b7c1ec7f11f450dfb8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200719.tgz","fileCount":167,"integrity":"sha512-W3qKH4tJH/TMpLiOPUyBr8ifIZF6eal6A+rP0lPc2XxMRQsTzG/SPLE2JCMgfijoG7KWVkAjqrulY7BF/vaMXg==","signatures":[{"sig":"MEQCIGwQdEYhIAZrT7dM8NlgU7EA2poEpLDZCpGh8eQtxO6+AiBw4tWyzXv8VoRtXSmhYRouYLxIRjQL6r3IUb+O60f/uw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56702105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfE/MhCRA9TVsSAnZWagAAoMgP/A6nk/dSeTEpC8GyfXkR\neLq6ek5Hs50a2Uf6O/SumLzqAz5QbSkeFuK/IWR3cxRhONGjZMo/OJsub+M+\nlCb3ROj1uogXlbNTEcun+KqpLEVQGSUIR876iJQdWD9WjUhM1e6mm4QijoZa\nFkIzLK0SI7gq9DjhH1DDzhDIRa2cv4ynHyTUuE+FI+bJAEpMV6LuhY6SU59a\nMzJtOr4fA6relcwOepzKVESqUZhR4aKfY9y31VuWY3Q+8ckBPNAFddatXMTQ\nTje4s71kmZos1lf0GQwLw04+HBSJ61xg1tH3NXvG7ouyguDsQNVhCklSQT8t\nqX7vj5HdiBCXDHpetrM2RyXKxiCMRoCA6FkCG6y3XcV5/syrhkDO7qCxR3gv\nCiQhnwBmJINBRGrjrLjNloRgUGnOyhGuFEJefP7Jg3IF0XFwz+7ujCbMZ5Cz\n0RB9C6+OpdYgicNnqzB4TLUbPA5lNMgwDoBdnE2SZON7GaD7GbFYtx9qg3le\nSVeuiLJI24TWMtclkVzAdM4iwCRDRiwiD4lyOVSD/3LpKvaH2Y8xAmRQ0q4z\nz/bQA+QOmgEpMnMas1hnsMP4+YVxVWz3DkR5tKv1/p6VqDPNiTT4K6yHIMsl\ntigiAhpyhTz2/S686cSIJ7Q7rg5qDo+BtJZ+CDz+pYirKO4PF3w1ov2k4aGc\n9X6A\r\n=2X8+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b22339df8f3fbe0880a550739a0ba7190ca98bc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200719_1595142945075_0.8622822772162997","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200720":{"name":"typescript","version":"4.0.0-dev.20200720","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200720","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d076e008fb6bae6b70459e00fd7a58381b8da710","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200720.tgz","fileCount":167,"integrity":"sha512-hAkQuFxLeghFpCekIt7UCR10u8lPdM/TZgJ2EOp12y5e2Ilxj1gqfVArYgZf+FZQTDex3FtYnY/eY9MQoOWyZQ==","signatures":[{"sig":"MEQCIAJX8vIjh1PyjdtQE9p/73nj0jt5ytb9tewj4B8VOXlMAiBz5ntT7TQNPtxeIRdArCsXc/AwgunFPwekXBeKxJsHQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56702105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFUVxCRA9TVsSAnZWagAABUMP/2qr8+Y6OfG9yrxo9oLU\n7eLCrs6Q+PcDMq9SSdZF1uthhPIWMWWw1V8dGh1Aa357dYmqH5jV2lO6+5So\nZjPD6yjLsk3N2pv1pf5R7zropIc/xpQaAhO/UPnL5w48I7j8LkWAhi4wUn8J\nxLNFNMhJe15rCje4Qi9xpwjyJ9L9Soa0nJWOjWQYiyi0dVGDvrY4UTEjHcZb\nhZzoEm0jtYVBw0u4gxVQi5EsXr6Q6V+SymGmxldW7Cw9JTLScikXRqSn06Np\nqoZ7v7dOHZ27jVhXqAHu+rvxPC6Rusfr6Q7CbUEIe/ChTqnwqnF4l6RzqPHh\nGAIKnA8mHaxCTGMA2Yr9hJu+TvLA5F9GZaDkd8LC+RMyZ9WUD5IFJyEVYFoK\nKE+MUlJ0UQIZDsLrkSZJ3z5ptBYBr4Io4SL36wBL73o54yxNr264LdvZMF5b\nrUQsbhiCRb+UJ3WxyaA8Hk4WMQSBleoiw0iSQHA9DRNQixzK6a1ov/Ts2AUr\n5GE9iVVmESzJ06A4M0UcO9irUBXV8eYOWvF99+mLmHt0ldxjY96kvc4bYVHv\nqzBoaF+tTqVa9wZeHa6FzdqaRZQQRZd/N7PYIIiCO3FKWLT3VvyS9bkOe6qa\nt5+uzp+e9M/spvvMBiOH7rQDaL7GVxkKwoHkcaykiTTAWqWrvjTwOvrXv4yZ\nKhST\r\n=jxsr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b22339df8f3fbe0880a550739a0ba7190ca98bc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200720_1595229552096_0.4308403170996331","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200721":{"name":"typescript","version":"4.0.0-dev.20200721","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200721","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fdb5560575eb704a99507d04d651a953c974fbc3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200721.tgz","fileCount":167,"integrity":"sha512-diWM4ycT2wZqp4pHkkmZM0cNGWTweCenLhsQGIbgD1L7IChr4I4yiqMrbMOYBTW2sfuuEEsrIaflMcDOVs1w9Q==","signatures":[{"sig":"MEUCIQCUicsIbdFrBKEXdlvSvIF1Jj7JGyVJWXpyWach+BH+twIgGVMGdLVvleLyg/HxEAC7JDwBusmHEsim07SaIJLNkzY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56709287,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFpXECRA9TVsSAnZWagAAeLAQAIFD25P950XEz3XnfRrR\n0zsJHqZrlVfOI+f1cBA5ZnUsQ2t5hkdoRxpAraY/74tMJLaPcIXdYVZPAdaN\nnDGc3UKd2M2glmxaY3rqZf7V/GeHl8QkvVV3AZmCtQyu8Vzo+/85mTyiLhaU\ng5nAxSq9+umJI1IbYN4hpEVCusYAEJ1WBPPvvvqO9M33lXsb9d0/LYe6+5GY\nhbS8PsLJvvJNNIyYknaC7znzDUrSf5lF81g11eIpMRUz+1gs9FHxetvbtYwD\nlon5jJcdH6iWmWqMeOeobaGGgOvxvJlJ0ZAXAQ5txZHEtaA03Tt+hfw4Soft\nNXSR8rHMSgS/ZLiqUSeUt+8rbHCObF/fbuLmSbNuy7FiIbyWZjeDOzCvlqKT\nBVcRgbmNb//rUlosfYxG65Vbpx3wfpDaynwOZkpFQyZLZPsE4A5lgb5WyPep\nc58lpc3Dqh/+fte3U0KM34UbVlphxA7qNLO83GZqmcMMM6huwK/aZE8lreFZ\nYKFjJEPgZNHwVpygBFZrhtjcMO0VheP1EyaxPSqKvllArf0aApJth1CawocQ\nSQ5h0bXOywhWKmhFX/zQE2qQNH+wyM1WLnzoGhEQJxhYQHzt70qGBRgvQQTL\nEMfXGnrAghD5rdBn3EP7vd2iX6kcsMrzVXDeeD7c/ovtTBbggmOAJ5JJkQqF\nfyfL\r\n=E+cY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"56865f722d6985e7e446402ac57e2f20349cdbde","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200721_1595315651230_0.4955290825903118","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200722":{"name":"typescript","version":"4.0.0-dev.20200722","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200722","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b59dd5a3cd84a98d5aae0e4f3a3c58f0c81a3b9b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200722.tgz","fileCount":167,"integrity":"sha512-MmJ1YyPNK3JYeKLiTg5sQXdeZaMgt99Fg4BMRZhJmhoq1/x2V1cpXMYvE1rtIYl9K7NvmTDdU3WDW7ZOD6ybaw==","signatures":[{"sig":"MEUCIEh/71xnjzyJIyH790Dj0ME12SOEyisv+aIcgD/TJTadAiEA0zkhPBGO6iQ+i52q0zkaFCmfNBFT2SHSuAQxx6JaJW4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56719701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfF+exCRA9TVsSAnZWagAAtPcP/008cz6OV2gD0EQCtSSm\n/8tfcqQERIpDT8KoSEbTozqhN3zJo6Y+X8hSTJc/oglHrx5PnyZ4CXmUNSuS\ncpwiGQt8TIueyp19xg5A8tH05SqC9hEG97eTKt53be13sPbwavUnncpSoT1j\nTraoEnzsNGOvxfEnS/rxcqfTxp5fpa8RKd/T46w2QpV8hYzfHE9XHZYP1ENl\njUxMIjY51rOLNH4Suv4XOBqcVkyZFtehFsgcUCNlVW+vA/pAKJDq0SB6xEe/\nRiWXnMGACFFKTkcpIsw5j0wf6lpy0loDEYWPCv8SGuo6f9vKMVJLECPNd8i7\nK06CksPHU8aQNqQ1UPBwlHNWjq+UK+//yd+Z0BHxlUymbnbXutSN+a6IXEV2\nP5p8/MJXYE3Jtvs0ozY5MYk/ok0X0xbzmZVPlItz/1C+c2wg8XbFdcjHhYxk\nsJIDo5U6JvieKC0nKXXjxt13LjbfAYEN9pMBju/Sd8KCngD+xynOcWs+50Dz\nV8TQHaVQS5tt4MBMXPWV4HT8K6jmUdjbGFFxr12W/dnBrtOA4G7Y47ynzkQ8\nraT/fISFFk1HTYL3c2TJxTA7FPkD5BUjZGxOFjIm6fC0UErpqQzBk7BMapYq\nFslHV62Kf1a4neuMMURlZDTW1JgcSgei/TkQO0DYj46Told6+Jgb2gh2ZOF/\nd77a\r\n=k2JK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"34adaaf6aaebc430149fac78761590c3d02f8352","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200722_1595402160703_0.028306424766439298","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200724":{"name":"typescript","version":"4.0.0-dev.20200724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200724","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f07200c5a95e01b10afb3284b2268afafb60a16","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200724.tgz","fileCount":167,"integrity":"sha512-j6Vm8C7fABJfl2SfC6Gipkk6M07hpMq+tnBIQkORBVcyrW4TfnT6gzs/B5P40oKAjd0OBuhm2Tycf2PNxk97/Q==","signatures":[{"sig":"MEQCIH/WR8o0MhGvy5Ok6rh3SuIkEy4X7ohtHFVHsrp3iRPXAiB32ULiwvUt+h+xsLjNGSoGWUeTDJqkQR1zn1VAQadRGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56750321,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGopiCRA9TVsSAnZWagAAWi0P+wXIfdDaLeA1Rr1pk9BV\nDwAEjiNJVTfQapoLCo4E0feVlW3ODCoFWKJl7wS25+6Z5LzeBlCPnoTx5hei\ndCI/iPUgHUHrEaGTlbKfVWkgTHoFlaom7oMFLwSUD1lQamOVOHVmtWSjB0lo\nZRTma0rpmU5lGrbH3i3hf+wnzdRLtj7bzXyXT6Q3TYnz/201IJ03kq0a164V\nAmXv87GUiPRq0tn3VEZ/UTLXE3qOcyULHRF5GD+bg8l/D0YobD8Fckqf35LX\nwz9B7mdq1vP07QafwYV9N3FBqpsy23PxVPEZ5BXpQONeXOXI0jKeesvnNmz4\nv0HssJLNqUglV96Um7E/TrnXySOmQVsPmuUINfFoCBvVWLelRIZ891zvcQYW\nsTZlKSsek704gvQMt+eRUyxHzSYZ0CVLgW11SQyyiXkEE0P0SBUEYJFjh4dp\n4u/JYwwHicej9HooQbTgjECCwmSG2BK+HfrFL28SXkONh8WMoLiPKwRYmGhE\nfpOgWsYtM7uafRuYIR9t7Xb0P739zWfaxeJ5FsbMj1IaL1qVyDlXqzuL67Ai\ny9rzzYoszKG8CJ4MW6i+9JmPS/yoR6BrjdPe/Tbfdfszb+k+R9XALm9JFb4y\nbZaaonXHK5WcHxN8Pwju80jqnVIUXFNvQeKUoDvHad0CqmTbZJW+8rgFnI0V\ntEB9\r\n=PqV/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"73b268ec5b7b31f7065b77c20b6a8d759e0b7091","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200724_1595574880555_0.8102582705451868","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200725":{"name":"typescript","version":"4.0.0-dev.20200725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200725","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"05810b84971d9ccf1e8516946e726eb1101a2c7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200725.tgz","fileCount":167,"integrity":"sha512-eugbc/gnXZojYLctAfVzwQ833xaT29gfNq30S61SZDeHspNARUZU+vKIpbksiG7VE53UAiUE5Ms25Tf+TEx4Jg==","signatures":[{"sig":"MEUCIQCgdlOEblVp8quYYrPtaQHR9XhQqvlQ3zkUdQTDHhUxtQIgPLfSviBZtimK0ARsTC/ZLqyOQ1seLg7TydBIDL1+TRw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56756763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfG9woCRA9TVsSAnZWagAAGqAP/j/NlEAJeCHoh8mo1FnA\nN0Ft7j1Va6gMXxM1KMjhAkJZNsTBQlwpERvWpTOJQuJARelEri/zikUEkjIT\nItH4u3ZNBGIJQPR0gbssNJH3j/3ikLvWDGuElQbkajjIpMloamD4kWDg5oYS\nDNoeHIGT1+uIiwpQXnoo6RZ1kBs72TCe1wPcQ6EYvyTHReeKDyco2KQRHsiE\nstzwUK1RAMTJwt5W0zxdkCHyQjcvFbtJuOAbUvsx2FejYAzuZsCxkgfXzy7N\nV1WTVkMVcAWiZ28+UESeYLi63kBbXNes2ov3wvObYU/RfrA/7iRGYHGlTcFc\nKceMKhOnD7qprnOe7LlPyKSyNohwE1f6rKCHgrV8Yrl17Irrz3QZl1ezR76i\nnqjbi/yLB3kc99moBTHBBye26HZf05C0ztdUsXIju+A7tDmqYCF1IbRvJamr\noBu/vx3G0SVijGBuOhuWVrhnbb30NQ+2Ml0As2VQDpxHFHnUQgugD1ouYdtx\nISF1BHoJOhoXu762RtJqyGFFG+KRHxiafbw5BLR/HIS+ARMCJGAwy6sOYWdx\n57gcI0+excdtb7KkwW3l6AsbrIj5nrDWkzjvPKIc0JXGCr2uL+El7JmNZE2N\nhFhSMkNWoYagIcX/YfK3uYDMUckIqPOTQ/u6j5vwd43GuFXQTJ7cWGNGCvIQ\nm4ld\r\n=v0jn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"48e58f44db42e31fdac2fb8f22aa051571bbe0a8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200725_1595661351889_0.8842473255962715","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200726":{"name":"typescript","version":"4.0.0-dev.20200726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200726","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0aab6a1195ecbc00e8456cbcc3ee645378aa5ff9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200726.tgz","fileCount":167,"integrity":"sha512-rZOVOtKdmav+uOR1aDUxGD6h0tlxKuTOFrxrkKNG7zp7GcRXTVDO824gQ+lavbKyOnjwnMgas1v4FH8kZiQzyg==","signatures":[{"sig":"MEQCIFCKOIABjm/RJ+ZyFS7aUmI2YWDB8sb4GpNmCycUvUfaAiBFiXt9HYbu5nO71ywqJSfs3fYljy3HaciPEOp+McLzTw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56756763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHS2xCRA9TVsSAnZWagAApcIP/RyMgsT+X+bR/an3hEBC\noHZu2dOcsAJnBcjrZjk6METcCqDPRSZHwMbOmou85NasWG0lqiwzt4+3hg5a\nzPR4HwJLiEUKDKvTKfUsJqsQZruoOCbmxpeef4qdfATCVUfE+LTstiomzTQr\nGXu9wQmMRx+waN04UvorDVo7h2l5NbpQMXLf1+vfEBgYgWaQfHMznUxBHlop\nz+GQOyXpqTxr6pLCy/zV8WdTrCGDIL2R1RMk9+EvuHBlNBPBDY7pI7aDaEH6\nzv8KJTaD75hlaBXUcCzk2Vz6+a0mTToifiCzZWhsIc6YsHIfd+wa24ucfMWD\ntmOt6T4lnoJdZ0MO5WMT75H8DyrwT9koX6CbSU9czf17Fq1D+BRCc3lSQkAq\nLG2H5pn5xb7gNWVGJM5oA6ierdQSrYChwK1qu7p8gAFDbXz6NynmAusZ7Z/a\nslIw9rguSfU6TKAJnPn5ZLQLxuSarqU+P7NiLxa4hSnwy2Yp5D/CxoNbIg2i\nMo7YNusp5ThjTF1l5wisN2ZEIFxkjeMpIrRhR6EpKeNA0Og/Op8jC5juNLNr\nTtIV+wjSFtbp9bGMQWIbA486Ey84g+VpuShJH8eilDwmjMOz5GQOBzNBR4Js\nN3DR/PS6cIFnhgkJdodTNOgLzNIn96q+hytCHE2baXeuTMGwC4cvSRRrXZzf\nyi1m\r\n=ozGW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"48e58f44db42e31fdac2fb8f22aa051571bbe0a8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200726_1595747760114_0.5362278424438258","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200727":{"name":"typescript","version":"4.0.0-dev.20200727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200727","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e10a62e47f2fadbedd70f702a6ec313a35f6d3db","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200727.tgz","fileCount":167,"integrity":"sha512-LKqYcGnUcAbeKJu+nOTuCwv8KfgHqpINNzqK2PneZqORXHCTkYpdc8zf/NLBPuc6fuPaeJxt/0MqV4SyptM7kw==","signatures":[{"sig":"MEUCIQCcHQApetY0JkW2XzM7y0RoKhphkZM7yLcPz4qNCy7GZwIgBdua+NLUg4atB/igeS9xzGQaxoONrNCsk2OJQ1Qg34o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56756763,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfHn7eCRA9TVsSAnZWagAA82gP/0RQNlQ1Jrm3r6rPMlLv\nqpkDG6YxznYif1w0OpyfMuAJadZ1Bbf4Sd+Qzyac5Fm423f0HAMBvyzZTncu\nw+uS3frqEfLYp2KJTuo5qZF3MaZOSasyK7lh4Xhil0s3ATxPN1aFH6PzztkH\nFC0ftlbdkhZ59/xTvs9Vd8QkH0yOFuMRNC9SS0hQix768nYkSyKa/oZiHcGv\ntk56NzEuBHiwEXM1pIcxFZE3TY2AT57PisSmWwBlR8QNLwBAvYQjtXZE9H+l\nfDWxaag6CnUWGx8PdfOqqDZOs4AGwqtJWHn0MN4wdmFmpFO8PACD0uT0bdAC\npW8JcXoj+uTMoojSIzPJWqzmnx2gv75hkAetpVsC/wrWpv7xbatBiywzu8Oj\noJon2Ohc6Ke5AIab7XOw2k0VLHV8h43SyBDd3RDwATA5aV06YO/QoaBDxNgd\n55vw65S9dh43yTaR0AcesSTnHfBoIJFPEGns7M7e3U9876u/2hktJFxmqOl0\njRUxHrG6IgBXUUONumIX16obME3sz/J0WK2m2wM0da57KzCrTApeNrl18pHs\nrxjNOsyVd0kqbOuoybWieyMP6qR18HnlAcSzFz8wR3/zCz86+3X27B4QLrDl\n+cXPMf/hWGvyiP5zohi/LGA8BrgY7GVqSWbQeHmg3Zx47nRFMII+EMAQgcMa\nmMj8\r\n=uXjw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"48e58f44db42e31fdac2fb8f22aa051571bbe0a8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200727_1595834077728_0.37824209441104695","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200728":{"name":"typescript","version":"4.0.0-dev.20200728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200728","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"31cf9dd9737eba2ba1f773f768502bf0866a4390","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200728.tgz","fileCount":167,"integrity":"sha512-BskCVZmg4rQJKwYm5/XuuJD7xzTMWYUu6k/ku8a13zb1VdSlNWmQA2IQnYuEW4Y8Mgwc/fRL4OZGs0r/U3PT0A==","signatures":[{"sig":"MEQCIHJDDIqk59D8gTCkAB8X8ApBJ4jEpjWA0BOHLjn01rQpAiBv2CxEoGwdc+pm9wJfa/ebGiy+sJfYMrJW3qXXE/Louw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56759759,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfH9B8CRA9TVsSAnZWagAAinYP/1bKVI8HH2cOPvwZG91k\nDEnFpNhf1goeaQdxwi4s3vJ8xx9XCOMCHw+RX/+7olvtUmU3cT9Q9RE9HJlg\n3YlD8ys+wpaeSG16qaUCRVI77bfLvYmM13SUJK67r9EcKwfOdRH2BU7kEBAV\np4nvn8uRBbfNNxGjGEvcDAKkY2biREUCcQA0eKOpTfrOoJvfnOGr0O+pfiBi\n6Z8FYU6+tLWzXu7db5IdaxXoPZkOShk2mq5qOe3bxYe3zeEmF4eRpLx84xF2\n1rutkG0HO0SwbcGntrup8WXoHitMJkOpmG3ZtGCvS9qQoMyIquF34fI3N4k8\nYXJouiG7lhg9JEG8ktQ8UmOJxEYWXOsn9AK0tvvvYgGnESmFviPL1YO/gQXy\nvxjpu3+yHnG73Nr8ZrqS5WcVU0Y8BNoZtWx0HDuS7LidpEqOud/8Hh8wHUxv\nVcHHKEYJuMcmiVy2VRJkswoAfb7ML16icQe6R6Gn4QKSpysulyYNrKak0hrv\nRsPyskck2S4X6QYnI0GfePsGdaJ0FJF5djP0GDKrnNPuim/Y7S8uRFQjWYWK\nPQ1Qm58hkc/0fR7VX/5HhchjOmDA8EnVMnBKWRqaqLAuZXxPUo+Nx0PZckYa\nxpxyg35b1IHB8QZE7bRAs5SFLnhISAo3Ns09LsGubf2+pQ+hBBFY2vSVBGMI\nTx0m\r\n=Fef6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1f1521c2f164edd098b9d952866aa18996377f1c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200728_1595920507566_0.7514945511061522","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200729":{"name":"typescript","version":"4.0.0-dev.20200729","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200729","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3e335af3ed54513bbfd9485799837b95bdfd15a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200729.tgz","fileCount":167,"integrity":"sha512-jzPalday93NlFVuRkY7Vixd7I9dLKoefoB2dvIhoqWaAGc5WPbOQmCHOilEGPSXNd9gb+uy97RH6+EwM/cf1gQ==","signatures":[{"sig":"MEYCIQD6VIxZ6nG5/ADJ+MKyZHTEuv3Cn3nyk1yU85pjkp+VHgIhALRAtYqtWSlzc4PT3KE8rknK2dG6sL+5bLg4KIZun1zc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56762417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfISIOCRA9TVsSAnZWagAANL0P/ir+tRikdJbbMZrRQ9/R\nULbgWZybhSZgOgUZAef14VB4BBKBbCHxB/WOOsZTo4QNkHXslP9YjqPmzQlC\np5Bw4FaEoAmAHEpu4krh2nBFlki3vfLoSCsdTDBYW7p5oZ7jIqFBPXLCOnXe\nrYohzH8E03RHl5vma0JRIY8NKBjI1iqukflImg93Sffing4lgbOPprsX/Ifz\novRjkz/yL9nqJm61aE2w2ueAPj32BtT6o4sUyfF0ZLoRvcBirOnJPLJqZauk\nKY05CC8hnYiEH7i5EWNGdrxM1UuGGa8ng48K6R+bwwKwpladKBbEP/3lU27p\nAdJMpreMxhsCZ7EjMw++IqE9k/PYqgFjuJBaQJTZlb44FNRbQBDuS7mnre5h\nD2nGDJQM3S2esuj2RmdO2IjpIJ4ylPrgJ230fojo7r472qMVMdj/x0gcssXO\nsoJIwvG6ovJ1e/Xj5XjkjwOigM9shc9xS5HtBhY4C7tjVFBcQvGeGLdeXp+4\nIeZ5xj+JRs28+OMcmxaSfv93xARCVIZoFkLE0Rgtwolii8lDqR/rsCPH/DBw\n1hns/YUaKzxPEnK2hrCmaDyttJFLlNwMSh+Ab6huggBEXbWKHShKp4pDyZWv\nTvT08d8gjiGtSPRnDBREyu9MSfX+3BZrUiW4HRgYmgQ/N4VH2XPKWT1TiWq+\nn4gX\r\n=j4Bm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"03b658035d59ef7b94cc7bd6c6ed120251d10e6f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200729_1596006925572_0.7714133450525604","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200730":{"name":"typescript","version":"4.0.0-dev.20200730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200730","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0c1e874cbbfc702c32d9ac261c2f9dc9c37b14c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200730.tgz","fileCount":167,"integrity":"sha512-bqw862eRy5niIZgCJTmn9DqkHTPoCF2eLlLA6jmOvubOgN8BNQrsaf+fE4PQkhzk9ae1/T9iAmDhapgmwWMHIA==","signatures":[{"sig":"MEYCIQDgdhfqxeG32cUu5r2mUVKPHxfit/9T55T/enYKeNwvLwIhAL1tu0C17Ij9hwUbPmN/clzzdRjDE3eE01BJgEQHXpGL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56768054,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfInNZCRA9TVsSAnZWagAAOIoP/32l6TasrkBcJtxybv0t\nuax9clcoHmImXUwxQa9OQcUqvrb1O54rTBA6vuOexRkV0fQCWNfqE99nUBO5\nq9aqJLvnuJ3HLloMNtjJ5g0u1KPSWBmPqjq3E1UwFeBtjY7nZhLMt3CW4O1q\nEBAr6hVnt4iMDGLwFAID1wOME7Cu7qvGuMzdLOXJyBwhBODfjhVoA1Te5QP4\nCT39fT3BtLSaHrdCw6AYN/NRM9gTOlUt6mzGbtBiUQQZ83LzSk2KrObU/BwI\n6+WNqU1XjlwW8GrepdLHOyIV3XD5/nh5shM8NeGS8YsysI08wugq3beq1MbA\ncVfcWT4nRYrYSmjs5YrvHrsyF6DD6eofSeDH3imfNUWvWtzwzQuYmGDLoEFB\nzxKdbD5ExRlArJFaxed5h4NrGpzPbsnw1zUqGY1478HmGHfoIFsJH1qhQDtH\nSCZMNZUQzqEqRVHCM7hBa3y9unlK0KgbtfKj51b1tF6Yq4VHwv7AADQW3onO\npQG3yzqTYAlr5GuBm+VppuEaAkuwwMVvAZBLDQGYyZnq1dI3exD3rvNST5yB\nJim494OWgNXL/ya+i2QADudvQ9W1B7g2lYttakYErZ7a0YE3ipGqIKH+yWLd\nqATErLYUma4CaFqnBuERrLgUchewKUxCxiZOpllmr8ORo1R1zg7ObEik4KSK\nxD9M\r\n=7L8m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bae111f0aee5302c2ba81f984ffc2123d66de0ac","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200730_1596093272995_0.21562681607084877","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200731":{"name":"typescript","version":"4.0.0-dev.20200731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200731","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3d0cdfb6543176275dac0fb1e8fbbd34bfd04f80","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200731.tgz","fileCount":167,"integrity":"sha512-zm/NxwtUzkljUKQZ0Wo34eGquydvl2cQSN+xVXiVb7lqZ5Ty4r/04K1aKJL8aw+gUHJB6gptXN16lttcphqkmQ==","signatures":[{"sig":"MEUCIDTUhZYqCRVCRx4cNMuF1tioDOhGVtU73DBxkg3CghsJAiEA7xz7tPlsKle0kI0w5Nhc6EJJ1t2XQL0eh1B+TRcHbfI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56778943,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfI8R0CRA9TVsSAnZWagAA1eAP/j6A5rLdKebHmS2BJr5r\nsLMgI6WIvImssl/GhO0hbM/yxTUvjEUAD/mwZlLNS7wyCauL2NaWPByQ6TeB\nO+6K9KR3ZE71tndvHxneFo1Uv+ityTtO0IQyJYN77QsiZWdKxzvRpgHuM6Dm\nkgysnQC+IJywMOloztNulc931BoPmC9RrLhD+MgDFQZ5y4L7k4vGVW4ayAju\npUVQ0NfN/dP61hd7mEOOdDQT0xjqTryEpcoX7pQxKNk5x+rej1sGzlvJBW1F\niLeEZxFOGibM61I+RDPb1oC/O8oGSEVtCIqm/olurxQ6d5s4ZalGA3ddP4UH\nJyBj08nDbUGDpy0TTrBwc/auHzo+pKCu/eqmoQQMQs/Ft6bE0BzhHjgj3OXg\nddhDnL02TFFtUpOSzlcTeWtLFevYOr64CYeqKHAH3LKEnI8leLULVfzja/+M\nN87D3inABXjpy0IcKEwSP5P4FzokI0n06oVzGgDHCaYY4pFONMVtOlspGQ0L\njOcaSSYpKuNlx4xDP7pdVOdasmK/oaeY84CtInieADVcB3+HMLAa4wvqEhBa\nPWnT1PBkfHzR38u/9xSSZpFDrvsm08tXVniCnGOnvOdeZNJaDCp4i04aSXgd\ndPTjJNabevXvjTLSfh1XdmfgdNoSMkIUb9x5HD3/lEfAn72+UnFOVlKGFbKU\n/bgV\r\n=SD0s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d3877d294cb2675381ec00e21251ff533d1c71dc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200731_1596179571912_0.11002621954483427","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200801":{"name":"typescript","version":"4.0.0-dev.20200801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200801","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c7f54d2c3f75ea68e98a8ebf07e0948b4a749613","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200801.tgz","fileCount":167,"integrity":"sha512-4rAYySJkkkunAi9nLRfDoRGwP6eZkEV4VoxqGYDPEhy4+ZYazuZ18/5TDtQiC+BTjmKekNF2X93eE96J/1/8Ow==","signatures":[{"sig":"MEUCIQDRhQCNawwznb6pwhEKpnMNWrXNypSDqJturMll0DdUzgIgZUqWovDHWW1iPvHuGmbLqxSipQd5MpozHaz/IZoWu7M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56785354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfJRa0CRA9TVsSAnZWagAAI1QP/1sfbDEWDKS+lKnT20aQ\nNvOoHZfHj76F0tOd51bgjLeUgAdG54ocgzMRYM92/IS2LDwvrbILo6+6gCPP\nnfXmOoTPSOAyQUJde3MFLx52KxPzvett7TSwoqUuLYRT1l5B+V6OVdVqeNit\n3wvLp49j1YEulFgdv4RK0wdNKtcCt5U1gMKCBt1PMYDQcXZrX9M9Umbb3XkC\nl17xfmeIpj1KcnvlZa2/bbQ4tBiy/NbTIQwWg+7zAwJ0bZuCjIrb5B+sA2El\nJG8osk7Yih0pZJIww6oGQUWm7z1cbNWgCo2xIhLzenzSIu+OShJOdvHhMoCv\nSUYrMpk64bsyYVd6F6+mABWG8VyPl5lCS9eEJ/pckRlh8yQgRVqiqYjx+6T4\nIsD7+SATuB5RnImmPHMDZQdVugIuQ1WQbOkDFwXwKRBp3TP9zoFqURCTAT5i\ntHamn8mwyuYiQ5D2FXUCOyMxIm/4CuKkhaVNBCBGrUwb/Dla6N43C2Sx4dgu\nboQlCCW4IrLItOd2i0wH++FacJwJeC/UisprP1xN7pvMkTu3+dVYmBOrsMfp\n6aRSYhFJ05ZPDQwG0/0EJP0MIs0+gvQZCuZB//zLveTb/esxg0a7QXEfsCNh\n8L+XXQPHzKAum0p/+RVdzYFBHqRWS5M8Raaf2KvUUqNie+rYWYWtfcaMGEhM\nfj38\r\n=1YwY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"94989789df72f8d5e296281ea7644bd2c60f2b86","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200801_1596266163055_0.454962620997196","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200802":{"name":"typescript","version":"4.0.0-dev.20200802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200802","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"86fffba0179b9b92056b7d8071595817e1028a09","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200802.tgz","fileCount":167,"integrity":"sha512-f3bIybKgfROeHxnprAh+Za3R9uO2uCSkfbEGY69v6ZmZvxNCLy8OOQYNZNJQYRFyMwfhzngW6iK+VUgxmZZrsA==","signatures":[{"sig":"MEQCIFG/rhk2CWI7BkazfMN8CmJ8WHDsox9KeJzjZgcIH7xKAiAscw9mQi9QkOwLLnVMVacI6nqymslsjsvoPGBakACThQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56785354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfJmfqCRA9TVsSAnZWagAAiioQAJNIxbLG6a0BFpfXomnu\nPMxCx6aRAOXn5DTi7nT7qbkAQInEZ/Q4MftYKvsKIs9z2uZUiHp/zTUhICZw\nQKACNBTsv446FLfMDuDzks8dpwMTrPQifiISncBncGASZIU3dtadJP8mbSJl\nq3N2ec4JJ+XbGn1gMM8CoCYWXWpwOTPHlHxIUYwsgPi6V76uUMj34SROT+Tz\nCGTwol9h5pn+P0UyjwKBDCTahm+ZPSzt/x+ZjzfAOA1CNQuwSwoshAcqIEJG\naY1c+n8kO5D6ZYLgow16thDdywL4TCHvR4i/6BNk1YWQhOhPS4uWba6nRhS4\nDAX9Q20X9xTFiADBtEz+mqW2sPvOe+T0vQHiA1mdFJnGUafzz5S1jumuOmgk\n594ZIjig13Qt+LCeXh0SctQJ7vfReDMhHk46GMOTwOmKizr9vWVsAV3iK4HN\nXazqG4t6pYrbJk0jwCsj37cxhP1Tc+PQTVA6vDUcJlwJ1AKPMzYHCxzRpwQ9\nRURcixpsgemu4Mo9VElSzWhNAJbIFbHEW4kMXVGxlIEY9B7dfq1lwxeXQdR8\n/aM5l5YAMzdhTtuTQcUbUr1EUXfs5ujOtewMx7iKdsv3LnC5DfiJHQeCrXht\n1AJ/vR++nsak/DIeyzcwwfd2LR5T9HiObPf4PZe40jLG1m5hV4goTl/DTJm8\n0thf\r\n=smCv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"94989789df72f8d5e296281ea7644bd2c60f2b86","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200802_1596352489743_0.40659610803624613","host":"s3://npm-registry-packages"}},"4.0.0-dev.20200803":{"name":"typescript","version":"4.0.0-dev.20200803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.0-dev.20200803","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ea8b0e9fb2ee3085598ff200c8568f04f4cbb2ba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.0-dev.20200803.tgz","fileCount":167,"integrity":"sha512-f/jDkFqCs0gbUd5MCUijO9u3AOMx1x1HdRDDHSidlc6uPVEkRduxjeTFhIXbGutO7ivzv+aC2sxH+1FQwsyBcg==","signatures":[{"sig":"MEUCIQDYAJb31Ly28Ca6zndOYjJKYLaK7PMSX7H8c97BcLdZ4QIgX6mJYJVojdpuMgDWbNcN0p4fGON9/ev9PDAURykdAZg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56811333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfJ7mvCRA9TVsSAnZWagAAZesQAJYPDGYOg2CkzLkCL8jG\nzIqCdU0Kzmpn1+oSj6Z9oP5//6gkQx3HCdF2s9GM4PepUKA4RnHAN0pOvuhG\nAbsPqfq4imluUoXG9FUYIR53gQdrAiEC8FTV7m18jbrw7wRuBw3tY7VLM+Ol\n7oC77t5JtIasMJoc10VdcC5eh18PoDODYyY33ijeUaOPZRM9Wbn2KD4NHM6b\n12ibKs9K+TZwgwhOB5yIcJ11MNZjES1hDLcBwLUdLa3rYd9MxG6bEOIPXD/H\nL5TqKxr55lO20mgyTFXP/KJKR13fZkzlbTsqRSsNpYjybYmm0E6fcupLG4Af\nZMs8D8Y3Y+mU3qgl3FsB6pWgsLxOewqYWcKjPH8sQZKz2Z9T6A9xLKHu6ykS\nlRhvzPQTQWMmo1+HqqKz/Hd2njYEiUawx2d6hiTnSogjIJg8ej1d5wYk1XcT\nE2QPiDzlEzpvDCZC6l7GCB8gOXbNYNpqyQsp83//QM4I8irRMYagWPNdmkjw\n852ruNEKhEU5KPOF6vfYGsiCtLorWAJ7sxJaNNV6vuhEaol2j79wS57xx94z\nmwh9MZ8rEdR5xHnDrOmQFR+IszrsC3977r3K9McCtiBBwyu/PI0tkGwBAFbV\n1NbeTxetW8DJDxlZ+/wv96f5o56qB5dZEkAF8iGMdV0xLqpsrlTOfATTP9BQ\n5NY3\r\n=wzqE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7e93035b66e024f4e3c9e02193316388d1bcdc25","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.0-dev.20200803_1596438955695_0.4878660206503911","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200804":{"name":"typescript","version":"4.1.0-dev.20200804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200804","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7cf4e14dcdd93b698fb916960cfc359e5f18ffa9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200804.tgz","fileCount":167,"integrity":"sha512-jbvJc9pFunwJz7u0JMjorH8AI+Me+gBVZUSKDPTBFWP4rVvQHCg1pJBQ9znGsOFzsxK+vexJKOXXbSWinw8ZQg==","signatures":[{"sig":"MEQCIQD6c6xWj4IwqXbytOBZ19FEs1ik12rjEVhgNtustUPUAAIfbIFwzs9gU8vWSakf0yI9ywDrBGAhtmwd8DUr+iJMtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56830675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKQtJCRA9TVsSAnZWagAAWnMP/25kY4fB8tgLdav6QKjA\nt0OM+vhM4WnGJ3NUjMklVVSXB6KGyGlS1dDzpsZMTOrAdURc1DBnraew628M\nF+fVQr+F73+KI3legKksp+ibrGKs9fXF3Nej65UjJ3UjfE+BQN+mA1eYtXlT\na4i2ENCk1bOQQBFgqcngL1DAoWtWljLoraHW6uuWX8aM3bA3RRaKy1YvDoPX\nIONz05GgG13bT/pZ++qoDf3se09hApOsl0+FeF2SpDTc8h1QZMINoyCqIC9n\nTlaFeR0yS92X+YLbEor39xhVZsnu/EhOp0DwPJZznBrmVrbFDlChzHgww67r\n7KtVTjfCo74+1wvNvUHB/laar+OUEEJjTTtLs8TanRegqGPM75onDp1PdpA7\nBDGReDSR5k5rGuC9XncZ2cr9wGrI8LjQw3BimvtV54mmAWVTjkxu9jL6eEyj\nGW2DrvbV101hP8M5cB75HOvOrDlWq/5Kl8xT89gl2jn8zMF9CwM3hiYpV4Nd\ntW8nZDTL4bjjfL09s/T4OEZkhNA20oJdVjsPDNU/2+XvftcnsTqR2lR7RnRS\n4A0fMJzZ1U2QBwiYDKfBkWZ1PvU8lueQKx3d26EjSQek6PYrUpGUdhC9McaH\niSfhzpdWKeQqZuMsyziA6/ZK2CQw0EQgwFuARvMKWzFgd7mwS5NSUkmjVbhf\nrtRo\r\n=0+Ym\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d985e68ffa8fb8d765d45099bb5c2406b5f5a468","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200804_1596525384193_0.39995548059486996","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200805":{"name":"typescript","version":"4.1.0-dev.20200805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200805","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8251fd15fb03ef195a8f521c2e6b24adab4505e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200805.tgz","fileCount":167,"integrity":"sha512-JeMVWO1rswbgg9yXXdoCJuLUZ7kUHxfhsixyZD+weE9nuzKeOuKUJNxryb1dhCd+WqA9ZhZbTgGwpY9Mj1cGqg==","signatures":[{"sig":"MEQCIHXj0v9ZS74ld6UAv7n6oXHXOvPXNcZn6BnnEx86GI2SAiAS513n7hI0RJKNPsb4E9WSmV57lUbkTGvCl+tiGQ+h3Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56832132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKlzeCRA9TVsSAnZWagAA7pwP/0XWYUyf5YMRBq36XL04\n0fnFB0lxP0sPsMIu7LBCwKtPf0YKCggIyf3wpCFm4RnY9cOEzLeAWm2Mkaox\n6xu9pcvHdAUwBsv0yMWEHHjzARF3RmLBGuTICrbs0HD6Bynslm+nujMPbDNK\n/Vl4g7eWffzXW6kk0CVaYVXWJ2Tt0A22TlZR8IZTzCVVsrhtkqGWcfVScF4M\natX//Auw18n14GWCZlt7EIbMKNpIyqU43A2K1hjLzH9ELLIYoqeRX/Dt4qBi\n4BeUnvH8WNO5r2EJVc/zUaR+YXhlDwtUC0zZRHzcRRKILMFntpPnSRi4h+0L\n+eOgHfk/4P0J//iBXg/E8xbOSanaMr8iXrsFOZU0gMx7UAiukaARLCwmF8Ah\ntrahL3qxpGz+l55CB/GuIxjKlcrR3iqyX8/Zc+zJBJ/OUfZLGJ6FBIHAlduw\nPJl1w9/CEDTxeQh0MzaktAdw8X6K5b2RTytrR0Cj1VqsD+FovxNmeocJOh3o\nveefz73XrHgvcv1dQyKkBjOndpZJeTPUjZRg3WMFhYXNy5l8UgWMa63bMlli\nZ5sMCptt0V0LNJsNtUe2mukMJ6IXdhsKlBy9JgzplfskGQkYNpTFhT6hWD1g\nyn68P27IeKudVLqGfQ72xusyLGYFc+OnZScZee7Tq6VcOPsw2zrMaZcghR5R\nhJnW\r\n=FJfP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c9f05af2c870e785bb172286b8a946caf219f5d6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200805_1596611805345_0.32467380464134643","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200806":{"name":"typescript","version":"4.1.0-dev.20200806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200806","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e19c40c93100bdc05a9d9ebff50e1ee72be6e34d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200806.tgz","fileCount":167,"integrity":"sha512-2K5lVWdkDuL1Szt8E2Kh4EWum1R0hMYsnjh+/iYXfIGi8PNdttVid+J4LQ2TzpGVg33EWv6fcK2dkNRSsBofcg==","signatures":[{"sig":"MEYCIQC9O6SQCV0lf8MbAwmZVZCuAE0y9hW/X6jpHnW47pMJRgIhAJ1zGctiGrwNCcfBKwMQ+UT9yA4aMzHPagzAd4TJ7o2b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56832564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfK63yCRA9TVsSAnZWagAA5Z8P/jy82gL78r+VeaXfUvDV\nv26HI6JuZ6249pfnkymZ7OM0hLayS3dY63YqUmMnX0OSszEU9DsuYjvf67sy\nUSTMGWaQyAPfU+Mxp9gbzpUxYUY5XHGZBRQO3CujdIeLWFH1UmpXakeunjQM\nMmTWtQ1IFpH0l6FAuuPTJ40jscVX8sADAmpgbKrZC0d9Uo0Jve46FQJnetXw\nfbyoTnHhBz6sNxJO0mvnHevCrTs/837OSiZJ0viw2xC6m+50jiRUoncpEDVw\nGsiCi5gpfGo+Q2tOITsQG/dVEJ4cU+X9gbdR4xPl/SFBFGVhh1Xn4bAKOnx2\n5t0CoHQOmp28EU7lTl3R4nc0cDBZahDzqM92A1+QOcirsJriqmQFacM+hyxy\nca8A25bd7qzVvNvY52f0CHTzZh95a+lKwFpJ+5TY9z3hwREwb5VyK2Zqzf1L\nzvrZwQm9J/l030KSUdGPFB1zw2CcXtlErht336EJboZGZo8RnAJ17ktyXN5E\nZYHNJ1ctRH6N1fyBysLeXLCtE3wYP4cLMqZLAGugmijJXUFTv8mtx7Uh5gfT\nqpoB8OKKsWkmL5UQvOpuPi4lKyXwa4NnWaqxUED3qr5myJR4Q6fRDeGa1gTG\nfxN0MDcCO4X7taYNglZFw11Bx3mcr4Mga2m42prgl9TprU6FwHspGNJ8ZFab\nX31c\r\n=6lmB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e9f82e4aa22334ceea2867cf11de634bd5135a9a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200806_1596698097485_0.38307791313955675","host":"s3://npm-registry-packages"}},"4.0.1-rc":{"name":"typescript","version":"4.0.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.1-rc","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8adc78223eae56fe71d906a5fa90c3543b07a677","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.1-rc.tgz","fileCount":167,"integrity":"sha512-TCkspT3dSKOykbzS3/WSK7pqU2h1d/lEO6i45Afm5Y3XNAEAo8YXTG3kHOQk/wFq/5uPyO1+X8rb/Q+g7UsxJw==","signatures":[{"sig":"MEQCIEnMj29YKR3hDovEaQ96ixHdgmS+M8Wy3hKADTlfINHSAiAYEotWuhFkWaFB6oVhdApryrdudo6zdcghr8z6Y/yaQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56811628,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfLHaECRA9TVsSAnZWagAAzv4P/3Z9Q/zCNLdn+YnXUd+c\npKr7uBmypm2tLkXiC5bKE0KeMnTydAPeyEWbo7q+KiYwZ7bI/E588SUP/GwA\nsiKAH/Qo/srN+etFkbC+ppRzTNPJvX5mmXsKcfRpKYLqKgUWIkfupG43FiSb\nVwiWZa86nCYfN25ubJK+O5JMBGDi1bjxbfPRO/1B7lK6wATiJNrz2GC1QcVQ\nsNqtcygIf034VUebS0RcQZ/+DJwzsQmHw8vuJVzWNXWu3pPT0Cn7rUbo+VvE\nHP9+ly6mNeOosckFyWupu0LRTndedC4My4hNfFsfc2N9hlv4NB6SrBbpIpfx\nZJzRoJ3J2Y2YcYb/Jj66m2D9tj84vcWLpacig0vu/oeUIUxg3BDqUfCVk5rH\nwj5WR1qvNwmKCeJ0pDVB7VIJbYRWOLny6AAkkMIc0BdqPm7IamPJCvyOawLI\nAo1w3p4Ua1agWLh1kh7nipLh2OXVDZrdeNNuzhWz1Mgcp/HVupTpA9AZwWYA\nQHXEa872vJXEaoJ5zPNSpECNDrjma5chZSnjjFXII6ehcsax8U3VHGtF4llg\nput6RvKe8rcrBa0OCJtprig/MBjfEgu35drc5b67k/AaBlMh7d/vwI7QkLgI\nE/aUrdCJqBL2zZ5RwXSwP6aT7Nn7TzxzixlYvCrK2tW0EJgUh0HLG3fI3rkD\nVYO6\r\n=0WLW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.1-rc_1596749442918_0.7408436688770741","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200807":{"name":"typescript","version":"4.1.0-dev.20200807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200807","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d905708391574dfae757e8505e8d23bb9bf8cae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200807.tgz","fileCount":167,"integrity":"sha512-2b1evQv3vcCtVZugHKSRdw0iBnna4+6G6vPVGhdG68rBBPKA4D7ddpn3JGoDkTc9WueErnWy0BZAQs/WafS2eA==","signatures":[{"sig":"MEQCICbT7ks3x4lpU8TYjPH588jnthEo35WVPp0yDC0exGCgAiA5WGUhF/qF8y805qPAy3u1suDyBN6K+fS7gcy3NweLMQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56834290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfLP+ECRA9TVsSAnZWagAAQGMP/1MwqTQ/0t76YUgA+i5C\nsQ3RXsSR3WXg5Qusthl2tVRa9rK0eabKZ9BSrynPMTeSuGaoMgYldE8x2TaO\n20YB2CvCsWc6d6ILDNWYoNt67oCxn+yDLY53fsi84m2p/xHryhMtd6n2MbDD\nJXbzsa9MoS9zL+j3DgJvr/WcG5nc/dnbhKNrnOfIP7RwD/inJh+yu28S+JeN\nZSD7FikA47rp+cs5k3xWv+//RdPoPjTOHtN7hrcC4Qitqn0ov8XjputtgOyO\nDQEerwFID6kAv9TCox6R2ilaKeRw/P3qyEivHpYvAowcyEfGg5huzp6JKZ31\nTwGsQn06SVA1zHQAQG3Nz2HWbdgJ88HKBVbTA1ZOfX7srpRzPfjLuG9Eb4GJ\ncOH5MZUxvZeBkNIw1y/QwNd1+hOdRlVnB7qglYPKQJBxC3qGnnn1q50MHjqu\natmdLxcyHQswN20S+zZlcPydH1xaFMfANafnmxKrv/9vrpmPL2P1AUwb9+ED\nHHghXl6qglU6QaWfR51OyZrwNWjLox89FVrxO4sgr8frn7u3Z/zeghZQkbD4\ntiYUfGWpdeNUzHIJm+FemSkEQABV8zdhkmB1J56/phH12JnJrOfTXfUyrSXK\n5dKr3sRyAJHpfjFKnelHC0c7wk9EPGgqH3TZ14wv8llk5oWFf0gFhiWEsLwl\nDTht\r\n=Snwk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dd09e8799c08238f6a9aed3399e3d12c600403cb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200807_1596784515214_0.012144921150508914","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200808":{"name":"typescript","version":"4.1.0-dev.20200808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200808","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e55b5f5f884993177a63afe7d49d9106c5a89130","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200808.tgz","fileCount":167,"integrity":"sha512-1a/l8d7GvvgYQA+7JgIuc7EA48dORPTYxSndjhP6IFPSq9Q3I1lh1vEvIDfStiIK9MMGbSqF/CYBJ8DulGG6ZQ==","signatures":[{"sig":"MEUCICnO/Iqrc79sS7HihbYMxvf7n1kffDg22rQCCkzvZ/TeAiEAjZJQyTCotgvzgeHX+q6s7DhIRqTfR//8Om9rWbXkNFg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56841219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfLlGHCRA9TVsSAnZWagAAr84P/36wf5YHQQrA+9ugFl5Y\ncVEuPM7OjO6Dr9phRghOvUDYzIhdN5RBoeO97WHTb9A7W75kRjeRNjMNaHRp\nANim76q0KE0sa2/dU2lhhxnHjdkjLYLXe48N42Zky1dlcBxMgueNzpTwdYzH\nsU7i9W6t8b7OHuFwLQvDYTrc4qr5dW7SSsxtLfxH9TfN06Ud7Q2qVOnC+iyw\n94H8yHJ4UD/TLocGSGv45L7Kfp9oICV+TlSmINBrgKTtMDzresiHAgGV+fZ6\nchOz51TJjw2xP5/di5cTg5HkxdpnW00irVmeuf8xEakYD47eXnp6OarXs+uI\njAd/YRQKI6i4LyZ7hGQRysL2mliLSVR66FCXmV+8Rj8JEf4Q2BtRMbNgW/ld\nIHooU8T2eQw6mOcoSJnsq8AeEJEGkQC2QqjjF1i7NHRPiZGDu/uF78Zlp8uW\nkDHgrtvvWH7RS3nwcZJAB/s4ihsepJJ+NpvcjBXYjs6WZdHPgEwFzwb7D4by\nKv6mCWbBnzvPORGkxFfhjrtn3EUKHpB60ocx1sgzWH9wPkfq/U8frkDbA/39\nH7x4WqeBJD9szgCqL4gdhoKR2a4Q0LOKi0wKZoJI/64DpRbNzpD2zCM62ZOP\n6dX4aZsaGwuBWbOhkaxW3/AzHDLvVp8gaJrTeopqdtHG4vVgebk0e4hYa7VJ\nGGmL\r\n=blIj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"668bbc64ff73e5910f86a54e0bc6d3fd5b1b238d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200808_1596871046880_0.6935269287225905","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200809":{"name":"typescript","version":"4.1.0-dev.20200809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200809","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"afe3e452c6fc81a946cb1736b95a9238e9ca6fd3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200809.tgz","fileCount":167,"integrity":"sha512-eu9K8qXVZKq1xhaRVuGleLHv8waL3Q8FSWxcbL30VclNsEeakzzMH+lMz8xssP+2Wh9vAjYCAdrl2FpygSgQmw==","signatures":[{"sig":"MEYCIQDmhwb1PdUTU1qHwPpEOtoU3oWTvnJE0h/gxdUnztDJEwIhAJsdXLZdWk/aU9KzNTb9vPgyWH70oHy2mT3KlhBLZZk0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56841219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfL6JgCRA9TVsSAnZWagAAO4wP/iUZqwr+gkwmVIXF3xVK\n3nSqysj8gjGIkWpB87Qew5Y1VvZOigI+p1oSYHCVuMa/K8VrvH/+ksF/li2L\nOQcyQbeAJX5BVPQxy1lR1dAitE2vfWfZ4B3jSHJmdpHtE/67Lpv6VuuUjuHK\nx3+vJDGC/yks+GbKUbWAv9Kf52Zj6r5hX3ytMWgIqz31y2c19IiBpkWU9xHe\nXHe3OM5B1dMNZGi658PMaU0tZITfyQohiBpcDmmOp8fk43YmpjcjYZ+hwizf\nkBI9KymdgWRgadGC/Q3WsZJwLAuuKpVlnUvkeG8x+IFPXDeZpJvZ9ES/0OZQ\nimRqOPtpkXOC1Cc/DfMePgWLZSXoVp6ptU29VTbGPWwvWlUcp4EX07Wn5u3w\nvK75pjMpkaSXCRNNCLGOhvMF31/A2fgP3xburDUBJxRSaLUYYlmlVnzzL8Y+\n5jBE3vgXxq773pmtKod6QGHmtFMXWsHS5xZvO01CgoUGIWbTJE/RaFar9GNP\nyY/SEc+uezWehQd/qofOJF2mJkK9ps8WHIXcJkSwxA8p9O4Q6rqXCj3fNcBF\nyzX2IQhyA12hdhpBA6nRY9Q0Y30rlKs7iN2YULvS39Q+0qyY/Z1JdQ8q7U+K\n8N8UuynZuhTUrQ7p6B45zHs3pD4UWYonl5ZNghHB6BAvFCtKaOOdphpyZfrH\nI+RA\r\n=r/Fu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"668bbc64ff73e5910f86a54e0bc6d3fd5b1b238d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200809_1596957279424_0.2626344661681672","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200810":{"name":"typescript","version":"4.1.0-dev.20200810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200810","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"023bd2be24f63be77c9d49b35f7ea1805a4ef39b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200810.tgz","fileCount":167,"integrity":"sha512-r7ltOj6omDlIzC1NCTz2rZrydFdyeHfJF+vC8xR/tZGxfaWLKck8MJpzbNLXTRB7lLD7PuxL7JDtppj+MmSgQA==","signatures":[{"sig":"MEUCICZDnaNxuYIJFX8YJnf4X8bedj7VdGLy9Scr1RQFFBjfAiEAxzPA7+WMiDDjWzoYRB14btnclqlESDAIBj12NcPmokk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56841219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMPPrCRA9TVsSAnZWagAA/iIQAJOgajVm+zPtHgfSozUk\nWstDMflq8g95ch78Pg8W0YofEPHs98L3BadANucprCrlqUbCOCKz7YCuqxeX\nzOrfNPkLxM8keg/7aX4iWCJ90SKit2ZosxfWgxmlYCFlxF34Y/aCKTTLL75S\nhpSMmgs6v8hzSuO3hSk2LzviCtihFAH+fB7NQIg99e/rsnl/HlWP7wtsqAye\nLxXjAj2kdjFc4fzOgEBE6ppC/MxhlJ0eL7lh6vm6ssJ/0F3kgGD/Yah9wm3a\nJkvsRDrKgZMqsGCBDmH3UTg/UUOVMNURBGZ4o2eS2avwacMwUOs6CEAS+ZGe\nFyLZ2c2JggEW8SUyLsE6Xge+9E136vxPSunM/V89fAv429OYpSC+U7Hxu2/u\nD8SwfekvUOJeR4n8A3opf8fMFzyMDAgMvo7Yva6sbDngbgoGjIE+EPV3w3+I\n7LnIV1Z3RifeifjLyjHakH5zyYaoRQFCGmcmmLxocEXH7W0ja7BMtu2vLNgz\nJ+Mkm7NMiwAQS7hkPFisuTdAzrU/DW8W0YLbttmSJyzHCRMbxHbx541xn9hq\nvqEdNu2fm56SsJp0KKfD8cohZyrYftmPjWGrKyblvReiB7w+4yutGx8XYcxy\n9hSukREFVnKpHPle9GAVkxf5ru2b+HZu1Yp/24N07M6/Myds2ZOYrkhWTxc7\nOV1M\r\n=rtrs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"668bbc64ff73e5910f86a54e0bc6d3fd5b1b238d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200810_1597043690537_0.7697313263968248","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200811":{"name":"typescript","version":"4.1.0-dev.20200811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200811","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4ef777d3f3cd8eb3e4badfa9c332c0bf025c1d6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200811.tgz","fileCount":167,"integrity":"sha512-k2W4Wyi2y40ISWLqRo+g+bv9euIt77zvYtB3vlNQtRMHSj9S84nOzlML3lXQeRlimK9TeCbxcv3hORDeXo+jhA==","signatures":[{"sig":"MEUCIC583bndMTGQJPhUinVZuGz8A32sN0MM/Rym5gUuTES3AiEAnA9q9Ok1uwabXDhKe/5DF9/+mQLEJdwlibLpza1fdd8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56862000,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMkV1CRA9TVsSAnZWagAADjsP/iIUTy4k0+wDTVdsBWGd\nuh+FBmwq8wQ5MMHYFhBExYyHxWXgU79m4/AsfB2dM9tQ1qIlhq7ApArUdIEf\nONv/DqBVDOukdK8YHFdBekOvHPS5fVnwZl2FSBL4+AzqRXykYJcT/a5RaiPQ\ndN6w+LIxmqMUcGgJObacLMZ0bc5Sa1LueyNFRUU/ov2Zx1LdvfxvaLLC0xkz\nZUvJ477z0rYQfEdJjjITQnBPpuzzUvaig7Jjn0ZgPHcko9V3qB2p0qtS4IUr\nA3LD71NCrhqX4G0jBL+HEwCO8VIC3wdJPhnJP6FrSoIw7TFHsYeIEWILq6Q6\nUFm5B3sRRNRbrPR3XLisyD7KV4uu6megFqEvDYp1/qDlVN21LGXX5LYP/P6d\nX3Zyk2+wFu2JRyHNOPioG7q8JEzhK/+oU91yBNAtG40hKtQVruNjuit/EpKS\nus94gGyvwYjhbpgHR83sp2aCZjr//f4fhCnJ2VrMRJeNfh44fx8I3zoP0yhI\nOmW2qs2dCdVsl8BGbSMfa+Enajythh0qRSKIHjzaWYKRTp2mt9/mNQUrDJOW\nKjIW8B3teueF/rbLXl6anaX3qhq7muGDdJubeF8y3mgizdYvpq/BRK4PTo2r\nzyRwcHhoFVmsRp6SwGxWNBUMMznfHke9f9D+ZQ1hrevgKVNE7PTaShSRTDei\ntZdj\r\n=cIpv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"57e2fe0462bb897e581aa489f1d6040db559d82b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200811_1597130101178_0.777784090370258","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200812":{"name":"typescript","version":"4.1.0-dev.20200812","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200812","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4515774f081cdd70af30f8cfa71c62ab0f66ccd5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200812.tgz","fileCount":167,"integrity":"sha512-hU2oOFHE91MQvtYjvgbKPTOL5fP3/pn3o15dDCvHJ6dxCb3yF1PtjOQSrWWNeSuR98RkSzBUwwCn5FlcYFVvOw==","signatures":[{"sig":"MEQCIDkMVPn1mt59C4TSFsvHjWn6z2AubtA3dB8p8DzTfa1vAiAvJuPrRT8wQv5eOxfoMo9rUsuosnhz0Vx3yUUBZEWkDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56862138,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfM5dNCRA9TVsSAnZWagAAljAP/1niNNjiwf3RBt+QSVaQ\n2diJqDF0iHuES4uWcF7sV7VH6GKmI0jSZiAzIMXfqnBuCOM3iBkpZjxTNTZy\ncGQ8l0BTwAKxkQPvuCkZDX+XGYBvrDUTKN0E0OE+idbISGeMpexV2EA2ezN6\n19VkDhkwgVtMAmOVNVyb464Pa+61g5QoinCA3a+Jhso+vVT1esbZivzIM9Nn\n3LqJzzGO+J7+9OCwt7NY+HWfcMUoKfEntIRUioRF0UBDuioAKhEAfBIN7/FZ\nblc/T4PIhRx1GCuZcSVbRdrUkhSq2LdOpQ5Vs1lu9S4uCYrm3TNUsL/IgorO\nWuw62czSMKU0UhLijzSX+uiQe2sYx+hMhDEMy2pfwOb2iMlq2l00hwA2Kiab\nmXxheEaoQlJLMNe3Fo+90kESm8NT1MPhwC3uJ9ttpmR9CjhNlwQEkzsOyaaa\nAw0pA1GCesiKl6w9ZSaecuNGzwvhC72dB12gCCLI3DauLjlRK8vWpiBroSg8\nguG87eFD1UdzRunDPfrvoYWpPB344Zyke6I99hSi3ti25IHuCXJPKwCgJGB1\nIpjBitsPmrH9SLHUcZnbL6C/HJ45xMrGHLedzu400XiRv3xgIFwmlA1qz+Yg\nROCW8PQvXsIHzKna74u+ITHxjevqbFJc8PwG/mhSKKfISHWQrt3b/tjQ8dnE\nCkn2\r\n=J0Do\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d371ae770daec18023eda515529e4de4f47cc482","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200812_1597216588725_0.7774846101876793","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200813":{"name":"typescript","version":"4.1.0-dev.20200813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200813","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"062d27e1a2653a34c899c1a17dbcae2ec8731b60","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200813.tgz","fileCount":167,"integrity":"sha512-P4X3A2rhq4WivVwKSwKNPqDCX/KfsSKuOykbEaWXiGT1c0fj/c14WCu4IOZ8USUp3rMhWfWySOYYi3Yzws8gGg==","signatures":[{"sig":"MEYCIQD5gCztfaaVOpD4P0nRPSwrV1nT4Xi5a/4fKPpjF9NApQIhAL5NtoBmtAQGk/ulFvOH9CE2r1zItR+eCAxLgvsQX8IH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56846825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNOitCRA9TVsSAnZWagAAN9gP+QAV9xXrV/YMjcZm2Jcr\nKh7GohoL8jNuacUEbt0XropeypijrvybYQFG4xTk27NQPXcYV3Kj1igm6UoP\nc1TS6AbuZsQ/bzV4hBm1hR+Fh1bqVuPNGu211heEAbcDm1kAqx0mp2MwYyPj\ncmooAGFVR+iJkrf1NBjzOZizueA+P8IHBo0O30zivYeAvmPWhXpp/YwSJjUV\nc3Ytt5JR/EigFp6HANeofsBEtdj3RbGfHrJ9pVYAIABoFqmLlWKLx1Ff9lFy\nYulGY1IfiMx8c50QF5syaSTZqxi4MhWblS5woZ/oNC+0b3YzlF+nGNP/IVGv\nRuGpf4+HriMaLY2AW6R/SlVfmE4nDj9AJ8VDC0yimqmEJNkCqAlG8oeK8HuT\ng1xSGYdJB+Ob7CNITx11kdMT+nX4qkTGV/M34ThNsKXUA0O5HZWUsFdFs6GB\nOGxVaf24+I+0STssd8n8sTrghJeuwCxrz54daviKQoC4RLLBshxPzZzWlvts\nqmKmIc/B9tYkBEXRN2xKswHUpEEqKERPTkWRg9bjx5jOnDcf90/jr+6xSSmR\n+fOAivJuH/g0Zd385ScHRhCVeegAMmQUGi/3R+5bnv4bDwHw8TIeReKtByi5\n8veM6etJH+agMVDfbKSmKC+uvjxA8VgGi0Tzmgg1H9Hue6xY99Eu9dpOKobF\n3wZ6\r\n=4bOD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"610fa28de55d37b0e46fa1cf6394da117d29be9d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200813_1597302956030_0.4509152327447894","host":"s3://npm-registry-packages"}},"4.0.1-insiders.20200813":{"name":"typescript","version":"4.0.1-insiders.20200813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.1-insiders.20200813","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0b17335a7517023be0f1ce947052662ab2bde1f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.1-insiders.20200813.tgz","fileCount":167,"integrity":"sha512-mTQPs9uyxv6jLEO5Z+LJpFUSQwx9KI3ZD+2Uv9e5O32Oz/16snCB5skBHw5k1PchsXOZCG6xcB902qmgjI0tWQ==","signatures":[{"sig":"MEUCIQDguXHlRYUyCpH/SkD8rqbVM2zbhofP9i67+gF2q5Mi4wIgK/tNnmQBBHYurFOewxvLYcaUmMFTtEiW1zNn8NLw/gU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56794311,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNPg+CRA9TVsSAnZWagAAhg4P/RTK8k5fZPkx1LrC83us\nXUsa9DvX58irM7DCCpF1aRjcvw4iLFYnP3OpZJNG7RDM8LlHriwGOrDcoxyH\njSqnskGVZO1AK4qBJst59+o+h0Wlq+pKtSTkv45yAOPQKORJ4JJtQllqof8B\nimqDn0XSTKRGh6ZzzCLGJoBoyQ2831ame6NkCVulEyapZ3/nkczp3DYl8GjI\nnz4SojTviiPKnUKfB3V0X5c2/oryXvcHqesOWvQUCHZ2kEsv0BKwo66MTagZ\niTkm9BD0M7gd6bc0IBNt9nExRVybipCYdTksqKwL69HZFoYaeD2CrUX+WO+5\nw1fpBNG4pWsyYBpG5g8zFIcBXTF7OXk4c2xc2p4r4qMaKg6iSXo9fHWZ9e4G\nkyvp0ppiIDXvIFQV0+LQuJZJTNCbf66KdeY3Ta2NuYOksyff19iS2r+820/h\nVFkPvwIApBtPQuhMw4bn14uO6Ilk4K9YIW3Js0nkXeoiqOrhIQjl7q/d2eyE\ndzrlZiDiVb6oNHprIUSs+I0mi8pn0dxQVwh75lusccTRdckme4wdu8dCB5U9\nnGMB9NQepu9WmOTBikB6MN93POiFp7tAyP5q/khv3XVJZo6oH5nTK1a5Xoq4\n8Oz+vSJGkAAHIo75e+GEzMkNzgal9HVjCQXAsNCHhz9CLpJhWg0ljO4eQw9w\nuOuY\r\n=r4g+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f88f3065fa02a3bc51c2a18aae865655cd05eaa7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.1-insiders.20200813_1597306941708_0.7718190363292348","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200814":{"name":"typescript","version":"4.1.0-dev.20200814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200814","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ecb17316ea1bf2406aeeed992eb05cd6f68857c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200814.tgz","fileCount":167,"integrity":"sha512-rQvRclY4xKs3LJIa1YRR7TgUwmAwdf6M+HkdbtCyWOfjBKcP7/XnUXC3/DRa1sRT1vOs4JsRQF6dqKhLdwdlTQ==","signatures":[{"sig":"MEQCIBfVlisQVyZQu9C5xdU43+oRVNYl1TzqU3lBcAugbzw7AiAbf1CB3VKL3yAuzeOMCbwpeqrP9EDUJCYQXeHpTHA1bA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56853461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNjo1CRA9TVsSAnZWagAAOjgP/RUiIzmttyduvg2JRUsV\n32nKbzPBUmMN9SnOkWlCZLUxVyijZlnK/OKCVA3+44TC7MRIGsqQNzh6DXhs\nXN6gAQuR8QxT+bdLtLmDwJj+ISUbsTeB+hQTPlCmvN+KixlLIOjQ4WXdmWYh\nBx7xYvkKjLagNGiEJIJJ15QMaIQnS9YUe7FnEoe6NZnngaCksOPa3rfBuXn+\nykLkIVs8e4kUG1MDeT3K3qdQYNcHC9GSiILKG9j/V/Y+R83XB27oFd0DXmo2\nzW6PYcEKrerf/cOKmA70WTl4BgNCdL8ypIAKG8Ye7g42bKICTEB8lAPCU24w\n5nhlFZIUE+UFo91Oneqjn+leQyZOYFof3Sq8W6X5rit/cPMHd/0yMGfcAcJm\nejlajjlvWn153UIeqH2UMnlT3Qsq/ZyGKete8DKI70rrpWGAtSHuQp8HTIau\n89Ws1tK6tNcVL6c1RP0IBQgnOoKALsN53qnBvQxmqLqf6cgi0EPU06Gw7NaC\nzuV1lWzvsinpShewPPjCRK4XWlvjxpyhr3MTCDT5/y6RFb681lBMJy0HxLYJ\n4raYBwja49WOdLi3YgspoxQCeRjuPIEmRg7E3YPuBDzkseOwugl5ImQnDXMV\nMgq6XXTD5bLjIKHKAelAj/8iVEkVQl/0hSK/5RDQv/AQYYUgW4FjX48oUty4\nRjhh\r\n=PtEp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c95cffe11142b128972d3c4c0a7ef6f137e49a12","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200814_1597389364747_0.24077677475867998","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200815":{"name":"typescript","version":"4.1.0-dev.20200815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200815","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"703e8540610a2a2e5099a18b4154651bcba869be","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200815.tgz","fileCount":167,"integrity":"sha512-ez19bn4uGkVsBU6w+3Au3EiQxBBT1sWq6Z7jko+gJjRn7Ew0GtHVHVs4Lkyp0Wnz+SHY8dMUG+q7qKISgNBPnw==","signatures":[{"sig":"MEQCIAuAlk8TpFDrixzubDIWwmGRV5uQXB7zsnbjVnWhKn9WAiAF2OybUDlRZ1Bc0jSuYqmeBSBoNfdaIjuHrbDXrG8meQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56854829,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfN4s6CRA9TVsSAnZWagAAcc0P/jIpOPWyhHjeh/q5bfv2\nWdV7+H9taHotf6Tpa+l2uAzNDput4XBiT+kDUdzZJxcTsQpPOdGFThQuYVBJ\n686XBpPOcU9Xt5c0H/IUAL9eE5skxzH4A8mb3E/B95c+PIOJT2uwkx/DgRn8\nQD0ZvKJ7KJX7hIDlb6qK2n7bxpxZp0aqMd/rtR8GPA1mpGlTW2kQjIQ7VSnj\najYFPGe4bXt1Y1tL88qn0RenfFY+52mfjivNaas5EfatYqwF6Gy+11GzBRXm\nlSstl4VNMXDezFCUX7mvpHdESJD64rI/i7OJXz84PzAAdtr39+X9e+DkJY43\nQfH2XLjjXFOcSkulZ9kroK953RA5+fb+o2xtkiGAvV9wT+uoEs+4IM8QuYZ3\nEQkdqMFXO4t34/+QZhU76IQ5Sy2DWeNWN442VrovGsqVqCvpPMZ0fJNCL/D4\ne5Y73H75aYpmmsWbBQdX5P/vaOOxg5z24YxEVUC5AJ2iGkl3viSWK4wL+41W\nQbLFojiDkKbZ92LfKBgyJK3UpQt3bvMwdo66OREbisQGq4kQ2i9gpUHqzBB0\nGZSM/zHI+xh4+ZJLWsPD7pTCeP5CSvhcvCsCexb9j7GRY/th103xHn/leYcA\n5bTVbkT7iFAeP+/LDfFJmyZE8zXdNffTPUZ4YX6OOvpddfctx0PI47mOAVoE\nB+/a\r\n=8kgB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2426eb4980d34c762e745cdb5062ca211e65f25e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200815_1597475641164_0.5573298693136135","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200816":{"name":"typescript","version":"4.1.0-dev.20200816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200816","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"03164a968daa934fcd603b7d206cb31377dec1c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200816.tgz","fileCount":167,"integrity":"sha512-lDa12cYEEPVl9Jc2t1ky33VZ7a1JLO9dES7fQGosR1Xn3EWPhZoFqbTWmYMMcNmtYs4ak+yqYeH7Ay2xwbp9OQ==","signatures":[{"sig":"MEUCIQD6SFRUCLpGNJtalJBExP8tUIDacRUzLJX3Wtf+cg5tbgIgWOXo3y+zRsd+pMyNtgT9DDOV3QHju8fwnalnYNz0lsM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56847609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfON1RCRA9TVsSAnZWagAAB/MQAKJuFccWXUWfBhi0eTBq\ntu9Dp4WGOqvaOCISSx3VHUfjbiRyqLs26SqC6ejgh1aMO+V3SBQzM0xUhLG7\ndhILbRN95ENP5zqrSDLBXJBBI0JH2rTOmKUwDfJ2+LbhsZfF38wGbfYEmHBK\n0gt6N718yMdFM/nWD5bCfiEYzzb2k7Y7vgX13DXV8CnKvDuswORmE72+tmTr\najgg/IjuDLF3XgXWWiwnJCIJ73adyLnZI2hcJEV/CnSSTdXqkMdOr3dHmpQx\nMwViNJfgsgix9vfhJ6QofConiaGpRRaQiUxZxkMiu5H2X3kM1jyUcQ+0SVC0\nuIpLfMPK3b5oU8dy2I+RspC2tVjHezY8Z3cJS4F+2rdMzZyibEAIzDk5INej\n+7XTwu/UTRZY2sIby4nxI9sYotqQ3wypIl/O22n2G4KfayTUkKDHiiPMQfmq\nczpNKjAeKQdc0QcR9EFjBdlPQWbNsccRL7Wm27xa7i/dAmT4NgLuPgdCuz4T\nGOvGIabPihFW5gI/aIE0X4U2KGPj/+14dTVS5aA9RsTB+Fz89RUCclnut8Ur\nA+pJIf7P8n0JgUPRr0fnks18LU4xmbbWw3m3Uq+cUuDAHss8s4KFDYPuhtYX\nHwhKBWTdklaDpBI+5TeZpplmgPyGGW/I9+LcdOuTlMiUJVRJpCtsqZntAbPl\n08iV\r\n=Ylv9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cd305343279abf94030da39e7292dff0e333a95f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200816_1597562192771_0.4721681147786916","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200817":{"name":"typescript","version":"4.1.0-dev.20200817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200817","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aa822a13f0d3062578a534f4796b189f3da4b88d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200817.tgz","fileCount":167,"integrity":"sha512-pUUmtRPJkNG0NiHDG+CkNq0kLkK4FmFh6LxHOTvuYQH4LjUKVj1JT/qIyRJkfffZ7sl49USM8exKkI/E0EyhCA==","signatures":[{"sig":"MEYCIQDrAAevIjkJVG6FKUq+xyOGf96PeCfUAxyR1cSbRzYAdgIhAP+G/WrJNUIeoiX72OUlAWfFFSYfsAfOzTKGixQ2enMf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56847609,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfOi6gCRA9TVsSAnZWagAAkVoP/1epRxP2xV+2977sauIz\n/bavEw763oX2GDhY++QD+xodzWp3V+QDPUO14vh7O9tp6Kk6Yo6YZolcLXI4\nIGdwIvBMiG5NlQJ+xUsaDA3yqaNs0S8fBvAbftAdPC0B9+FvhYwMERF8TDpe\noC7hFbw9ofBrJ9l3VdA2booye6+Ol1BRmqSrpYCOKg69h2fAv1e4ukWGnJhb\nTnhFjU3L+H3E5JzL7r/joKu51RDbpMvkiGfjqjCR/sDMSmAu7nbHSd2mqT1w\nW1Ry2Nl+dy/yGlYlZWMnmHVUmz4QhfYE4i+AdqjvMdh2979Qh065AYIBZdi2\njpMj9TLkXLD/optJ5iF/ku0KES5jn7VvFWtPanTTh+S+OyNRrpg4D63uzW0B\nFDq37O/N61gfMB0CFJJcGJflG5NED4LL1MxRSt1C+agFyAr8feKVBr5K2eHD\niXixTzgJ5X6dtAnqbK0nJzm/9zD0HvQa/HfE8Sc6tWMdHuj/EJSJX50NwSme\nPXdsE38IlF4w8KU9sXeqd6MyNKCiaOv6JH4i4XNCZTH3jMnmdO5HIbNyJTkk\ndKZaIGNo8Oo5/nUWI1nbl8wrnlGF/ClNI6Ux3QH1BggkxZn17Xt2EJnaongn\n/99zT9XmdX2XrKeNJ2hWiKzxgvvv8GIfkPcTOk6PhxmZp/RwCTgz8q9Nx4BU\nd991\r\n=fVki\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cd305343279abf94030da39e7292dff0e333a95f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200817_1597648543606_0.8372396163233282","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200818":{"name":"typescript","version":"4.1.0-dev.20200818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200818","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ec71e66ff4cb6e3c60a0d0dc017916444ffc76e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200818.tgz","fileCount":167,"integrity":"sha512-EdrXppJNqt/AHG/wFYwCLkkCVUd5Ot3szbQWWTS0lc9Z2ARMONKAFEx+Szsq5FawERZLioM66PXr8t7OwhJYrg==","signatures":[{"sig":"MEUCIHQMExUyAw/YXx9gw2KM0RtUjbq74C/KXwh/35D6FHqOAiEAgfMQGuJA9nfJ7jxFUMHb3OlL4yseP4RW67gPf2stnK0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56875447,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfO4CwCRA9TVsSAnZWagAA4fYP/0BcQstLIt0GB7tZYM55\niwO9kKQEh5sFjptJ8cRhzQqaDjRlPPKWJ4Use1+uS/n6+44XLBBJNuzZQa79\nKMWOHB6dJKEhyL3WQ50ntDbKT6FxvFltF5HWfry7mY2BcEsLJ7CRFOhE/zbD\nvZDzKqKi0JR9XAN39zfd111uFOw6zAeK+JPtsOayTyLQftWm0LfWXlMO90+k\nsDiAt/Lmy8Uj+6xZPc95k11GL6Iqb4SyqEHnPGUb4PkH+Kflsu+d55P7wPq4\nqrsJ5D3yDdig70dQfweOwljCax2kLoEhFOENZo80f6+y81qQ65mtNmj482RW\nVf4Xt+SKGUapIwaih8MyovcjrH2TP4L/jC3QEDaHLHAL1plGSRgUzAfEg1Bn\nHvuqiowhMAphGCuUEWY96Tvm77FUXAyM7hbDXzQYSLILAISBo2pSsW+q7rHd\nxaDH0R+t5SJc9VhxUMHDzsmCxBujN9gQeRvKpmf7WqkUROr4tLVak+8UFMia\nw5GPJKJCwidQN3zMJoEYOyFNtdzn93LnVficoEng/XnH/052ZfLhbLiyz5+Z\n2kcTCHO6t/pmwUoFkwqXCVrqxwdqfgvZhgr2+83LF0Aw6YFzOK6cfwZkSlZ4\n6y4Q7P3wGFUcTqaFs9RQ7G+dWlaa0iIovlyknVvPKMRFp3l0JgM5kGPpGpqz\nPvRI\r\n=y0iF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f9cca25cd777e40b729fb242988ffab0346c30dc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200818_1597735087509_0.755583971245178","host":"s3://npm-registry-packages"}},"4.0.2-insiders.20200818":{"name":"typescript","version":"4.0.2-insiders.20200818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.2-insiders.20200818","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"50d949f8d7ae460ce2f2f5a4121ff020a54711e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.2-insiders.20200818.tgz","fileCount":167,"integrity":"sha512-5/y/W/EFwly+UAm8X77bPjh8FG1GsLRRtrWApIIAsT6kcN9auKhHyrEIUYSahm/WX9F3f7svRxKm6eddvEzyAw==","signatures":[{"sig":"MEYCIQDDlDJDiT7YKZAnRkxDCFOyMBPuKkFTN503STFsuqrCLAIhAN/W3+KPqeHW/b2LxAxBPaFFF45/2C8H+56ilv2YYZuO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56795229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPGCoCRA9TVsSAnZWagAAoRsP/3q+3Icf4I/GBUVraLY8\nqR7VuHSrPDh5i0Rzgnxd0yE6QZIFgQ/7EV4T9NugF0FfD+dQeryMYZ8WS/Q/\nOACP+1hhzw/6ZGpmosExFXlqefQ9YbOBrkA6U0qXNtzLpgzPoBkkK7pqF5F8\nPSe+B8mAwtpywbexPwuk542U/Vhme9prQYNrEZ2naHfUKEtQZP33Ng8HETwv\nYZCaE9v4oGBt4WuU1ZxCxnGnQHz7ZtAPk1914eDhe4vzmut7GvN8ZdkQ8EB6\n8Pu4WnGetIeFey6B6TkAQ5HhnjcwtaUDhdex1c4bIHF1Unjn7FhLOOloeoOy\n1Nb77R3CpkMlXn7F3cntfsCPnjmnBYyMOEAG7utzh/0+yK7PxuMIjEm5rPZk\nQro7vpqpPhBb5irw4wL9sCyX//hly/6TtRCmfdZuxXLCiolIBAcbOwUCLxUA\nxaLjx0pHm5lttlGYN9te4UquHHKgj9dyNeMyWrgqbkBq0vr6Osk0d3sETZ73\nEOhOYjMENX64WFXqYvWk1ZKmSFXzQL+XlL0GcZ/180Wv+E2Yr77iN0VNyQCF\niDrOqjXsNXWTVOBgHtY4/hzWXc0QRkjUi/DHdyHzs6/g+60y1NNAjJRbS4oD\nTq+FHN3HBsEP4iJHcw1F628rCs9MjUxUCn9/5ASr/7wmbjXMug8wvmGLxBzd\nUyXh\r\n=W1Sy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5aa2eb744a3cffe570e54a4d382d67013284742b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.2-insiders.20200818_1597792423930_0.618498033943403","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200819":{"name":"typescript","version":"4.1.0-dev.20200819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200819","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f34b828aef612e6aba50a17ec509ac092392162","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200819.tgz","fileCount":167,"integrity":"sha512-ShHVKb0HL8ebRQPsv3lOnVwZMRMysaikdn+GKADPS1rBT3uObmFVFgjsGT+1qIREO0qqh832VP4KvaQ8EK8M1g==","signatures":[{"sig":"MEYCIQCCk725i1xFe1IwFbx7XqhUr7fYjrNN2BZSJhf8DI+C1QIhALktTFlNLeiKDyX4KhpVQe2ZvYyxecEi7rmgkcGm2pXk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56882721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPNFOCRA9TVsSAnZWagAAX/QP/jbsJOvJVL3EUxuIHakz\nxT6yvZiMQptOGSW0x+QJ+6kce+mT2+xsbqbNWpTBVTjc0E6Eq3/97hIqKPEX\nUAd4x1RzZKweU83pvYUdchZ0lyuY9qlQ0ULn8K0IHvh19/txM3mQnwuIe+er\n/ojll3rdsdzR/vz73lOB4DVNsf03mhxya2n7u8YlnyDJOxBFoLNz59XFkjwS\naeWtbP7io46SdxP1HT0ZD8kKjqYsUwZTt3C6GVPgq8rRpohsB5SNIIW9USZz\nj5up7asmMIHeyvd9HUgmiqV+MRE9olWEe+3wdc8KmuXaC5roy7pY1rwZWW9k\nt1rdFBDDzQLykM0T7XRe+PaQuZeZy0Z6gJ14g36EssV1cyVrxbkNwjwo+aT6\ndvOpvuOrcN6Id2eVsFzOLu9YPFRhH1R6MIn/w1rdikDv2jxIXvcs4+cnQ2z5\ngk6lqC6YHph4oAGf8GaokQyYu8NWXa5TkgUMOu4sIkrAYPKh2dEAFjg0WMDj\nJP5AO9GuoVrea2goBz2YXKOsTHnsLojNayyJ42E+tpAWHCJBqsZuQrx4n4GQ\ngfRXqSqah2Dx2e99oP2POdthodQK2WzLm3cRB6s5eRmCMB/Xd7kaUxYVEwtT\nxgIh2TObpHjkaxpUiADjki+acGbNUEtYvWrghhG7gdOEyfEOG8Q+Rqiqi3fU\ntJ/5\r\n=XoFv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a0d457e14cc3c8e1467d764b5155d5428725075a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200819_1597821261308_0.5525057756701985","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200820":{"name":"typescript","version":"4.1.0-dev.20200820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200820","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"97ef0e0c6431afb6817b65bcbc2b48add2ebb5e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200820.tgz","fileCount":167,"integrity":"sha512-mI5VyZb10apBesxPGohKGPsqGWPzXC+nmJePVXeAXdgGb10w+yGkXU+ctPWZzeCjMhLK/F3IhsoN3unXYq0Zow==","signatures":[{"sig":"MEYCIQDXQNtywR6U8PTMk3Br3vWVMh4nrxktC+M4Dw6YNmp3nwIhAJr0QuIbGx+SVKRpT8YMHE1qJNzc47L28iWeF/EM3uGN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56885733,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPiKYCRA9TVsSAnZWagAAYj4P/2CGnpDLwqkhfpf1iBkW\n2wE6vVPKnj4dRTOL65OvbF5Za93JioEnGJZI5sXaUtkyRFvOaByqZ2Aom/mz\nKRyJIoXqE7rE9PIzVKj6xioQKCYkPqSVlADV2AkV4Z/M1856ZJW2qPU7Jr0j\nqFHFU3YpOhkeM9jnk9opFPQxCBHb8m7mhl9wFIL/vxmNv06plwG3w6yn7z7u\nP+Qeh92Q+NASQL9QQheJ9lM+MivxIkW+6Z43OJrp9WnnyxAC0MpH9UbP9XWc\ngdMfls21aEdcXBwptMjwfhRrUtZ2NuVJcK3xi+le59KvuUUVlqYTfwtYlz9e\nNSpGAceGltdlcTlZuzYQlTrDBP8xS3bUgwLYEf6e/aSJ2+Rn+2sLj0YEbOa8\ndqjvn57VnteUIN9YbyQiK6YpqkYDn6cmyIG80/Lctwv91RFISqWH9zPlfWBZ\nP/8+noA6pXIf1T4cW3mGGfkh6sA3zy2my2e++9UaJAzbIA2iPfH7SAAxcVkU\nk9nsgZqDxRs6YHpBj8BIZ1N6/tvfyLWmSS0RZb/YE4t6T4+vq/bTNfiFu5XZ\nMCAPkrcNL3qzmwe4Oxqk5spMLOCIM0vGQdVZ12zrEpUAH2iZjv0e2/fYCsUn\nI6GIzdKkUUctWX7M75QD2E0dmKvM6IwE08hnrJ2f5TReXoMQfqWfh4/AHM84\n+hJr\r\n=Zlxl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2f2b679436082a17596bf6c0eef7bddf2e308260","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200820_1597907607440_0.2587199193388561","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"typescript","version":"4.0.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.2","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7ea7c88777c723c681e33bf7988be5d008d05ac2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.2.tgz","fileCount":167,"integrity":"sha512-e4ERvRV2wb+rRZ/IQeb3jm2VxBsirQLpQhdxplZ2MEzGvDkkMmPglecnNDfSUBivMjP93vRbngYYDQqQ/78bcQ==","signatures":[{"sig":"MEYCIQCU3WZrUtl1XY1005Ysz77t3Zhk3glg+6hA3AiPe05fegIhAJhaiBEE7rqtC8MpnXQo7vYnDIbTDHPVwBNWbsSznUce","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56794984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPp3dCRA9TVsSAnZWagAA8I4P+QATCkuqLCqgU1qDTHQK\nsMSoiT0eKuFXDu9Vp49zP/m4DG9bhNrJi3X+A7H5iVkS5Zrn/BerexPe5ul8\nUD754KKJgWNlX3sUObcA6cjPTJ4AYCwZ+e8LVSdNOYjEq0xwgbrhgNZP+Tjy\nrMsGIhaAfUN6XM/5zLjWZYP5usMGLpd+cgJ8AQzOd7hIpixr6Ni27zQcaUoD\naD1tD+knDf8Im1L5CKZOSpvRJ7W1/ytGrb6DKEoVEfHKAq+vjBruzq0vfCdn\nSOFv23M1F582NOqoLb4Oi78gvsMLZOEO3m03mAWWXXZtn8k9dIqCEcKpmU7T\n6Ap915MtYI9W0reQS0UDkUoXo7mtEOFSbC59/Aug34kjYIKWKKl+xDft+lpL\nvhCaKTvRd2lmsOh69ELsC+2EClAJmk5Qr3GXgyxeDx6LNrlw/ojOo91GHiY6\nacQXt0UV9aKLYr0fjmYjT6SNVoXxkeHzCkKnftprOEfpaiuo/0vcvZOHhkPi\nQwX54fM9QY8yVRIzfeIEI+vC4UBjj12heiHh8OzsOVy1s7bILh1MUX1EIAmq\nR9XpboDTgRlaQ5zISMD9WoaLiF+Y+XVey/gD6/Zay+UGRsRnkdR2ixH9OZPv\n0EdI87dHFfPmc7V8R4SU/T6myyDPbKTN2lU7KVscoZe58mBcb6EH0oH/eDfJ\n2LYe\r\n=gGdj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.2_1597939164521_0.5127936000215205","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200821":{"name":"typescript","version":"4.1.0-dev.20200821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200821","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4c185ba59cd73a657c7d21061f0d7b5c0fcb6115","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200821.tgz","fileCount":167,"integrity":"sha512-ECIzTfpOyjsEqQhy/lN4mK0ziFUaDWXZUepRstcjvo5fgn0O6pzRWTPialgKsYgVDsmTxhZgYC6u1/j+lCO4nA==","signatures":[{"sig":"MEUCIQDAY+J5Zzh41ZgUhXoqXUy1d62U8aXxjhz62+CMiZOC1wIgGLBhRLl6FgifKHi+zUYb7KdU9oB1jM2BQJtQTjWYQFk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56890742,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfP3SiCRA9TVsSAnZWagAAEs0QAIip8FE07+LVwusSfUIL\nIokeRiCcYxs1UIznY894PcX6bhUZ6aKIi7zrEiwtBrPKLs9L8+PLrEtsNc9M\n/ON0Vee+SE1OCzCf84yO0s6Zdsp7F5dKe9SIY6boZa8J1Q2Lfn76s6gM0gtC\n76AA7YQYwSbhag/7eOFqDzlJZC603LQBGFVHydjUPl6Mu0QTlelvKKzKvo79\n0+YdqoJrbMEjI6sL2xv8vHUiEahiBelpk7rg20N4F5HZdiajFU8B23I0DHBi\nFmUCOyis1kIPX1oVLBLWX8uelvNUl4RwNwmiNnAwgHpOYLR2KQla6wAaxk3w\n0U5BR5LXUVZMVe31B0uNDsuQwkwHzMg3MpL3S2LHwveVAnsKpnSr8QuH/U6B\nyVtx7oho8YN+zwteaSIc9Npp8FDUTZYnrYyy6APrRES1G9KvbcaIJ6VtC8rQ\nU0h2kXSu3Qt9880c+18ULtCrs38RcnT1ipBjOBnT/TBlsby3ey1f8xYX2lcD\n0d039rTi79+/6ss0LdQ4SK4j/upJTaRffsxNiJMf8RQNLSbfUed/GfZ/fHpY\nGp5vcp9n5loQ9jcsB9kBK8Zh9mJfyK4ynkKawlEBaqyqoEjYvii4GT9maHMa\nFLA2Fpyi9WHmnjLecRPt7oaArWumUmGcQatz0foX/qKDmOIIF9LkMz/iDseO\nVR1B\r\n=OKOp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8429ddd4f09d46dbfb3fe6602831184b9f606fcb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200821_1597994145657_0.920608859979543","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200822":{"name":"typescript","version":"4.1.0-dev.20200822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200822","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7b3f9d0b4d1b2b4a264fa0d0554ae80e00488947","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200822.tgz","fileCount":167,"integrity":"sha512-Huia8laN/j3OYwt+/PrcnYIJlaBDaU5sZ1VncZSFtKXH3r4TtImidAe7q639STafIiaElNjBmkEYhs+2ePfCAQ==","signatures":[{"sig":"MEUCIQDh7Fy187A4BTvVY4AyU/hM/YVMpE53DwKytl3YGRYjLQIgUdZUDL1GBHamklEhoDM4K3VqlrNOR8tFIMICk394500=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56899419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfQMY2CRA9TVsSAnZWagAAr5gP/RKQv329A592h+9Upp6p\nudP08slawTntd2NHyFqi0QL3jDSkTkyqJqXRvag03Vk2juSM0dYUfzKBh8Yv\nvq9s52X5e9ozaH0phSAOSRSLl0d7HALY96EJSQ+rUh+zilQO/VsL58pmYUyw\nb6YRscDUaetNbGdK1f3mqVQedOHMLUUjZnesWRi1XmGdrJVvcQxS7rzX8Wmp\nrRzfhx68WSBleDk2yQ5z+QjTmaJXngyMeGfilFVo7h2iwCy1YkEhPU5ghxx7\nf+CEov0HuW+2SPxNLfWSYswVns8geOgM6ao5LAwYCLAf7ImwCyeOHnaR2ReU\n3f7L61U4marb4M/KcEzeK9E3V6ZZV2s0b0VIjSeVFfhzVTiP4mIh70AAH9ZZ\nx/ckKDPji5mZvTPG90mcRdAhw/1TY79irCLT87q/yJjYEsb6ycM+EG2CUS4h\nlzlNOeeQS0fhmBdS05wnxgeFySgOEigLsfyLWtH49hLD3y9/eoVe6J7XtNLx\njy+VzLLtAMy+7J/AjoujToxq/GJvj/31aCFXdGeDDZEEznEEhZYrM80blX3/\n+kx+tnT6ITGVBY8H/j3k67jT8rLRahwmzm95/PSq3O3TlTkDA9K1ThXc2DZ7\n1jRl/ZO5ttbZpGNQ5MsqokHEKqtroV7tQIOJ9Gk1HJnqRKUU6tnfT1spjHrt\ntX/J\r\n=hn09\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9569198df6aff00f9d5cfbf4992a0439a9cbf37a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200822_1598080565577_0.9637174710596048","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200823":{"name":"typescript","version":"4.1.0-dev.20200823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200823","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ac62fb3d23151272742aa462cd1efa44525504ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200823.tgz","fileCount":167,"integrity":"sha512-E4Y10Lkbduz52ZR4TE581XpMjTBxT8GD6PzFZNksnbkO2qJY15p/59kjwdENQSFQo/KBRxonyEcp9WJy5NrcMQ==","signatures":[{"sig":"MEQCIEv7zRd8afbUj4R5m2XKItFC0rCaNQosxnxJFEtIIDKXAiA02MBCJ5HVfYCabhUtoHu4kNUtEOBqm0y2OS740XJGeQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56907933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfQhf8CRA9TVsSAnZWagAAkJEP/REDb/7vgewU38fvbn/L\nMjwX6Gh4F+ZSJh7hDFYljaYJDCPU2h1RJWSDZVEAmAWrK8ndnphOR9hteWPK\ngFmtUbcd8DxoTY2RMKZdEyAHPhTAanvG/b7FXukHQwvNNpacTr9xQu3U1Ld3\nCK0uF7STWYXMvZrBZ/Jjw8P4+YxSv3m4IyB8pd//1lw66wyCTlUpkkDRI0CO\nBE93sB1b6WhmPdxYGSaJUDunsTi9Sm9YgOdsPN709I7jzeN1IkTZkwsH3toP\nlDqqkVTUsx0bAjGnPSL1hVgW4fVD/xW/iLnmntpZQvGK2qvFGK8qqIB35s5A\nB0+FmVfz8qsRW2e4KSuhx4dSDWSNj86frgJ5OtMl23xLW0d42qebzGQ8rN7d\nhMZR+66R5fUaCph9upnSwk28SvX6qDmsANLwCR2kg9sztccyFoBxFW+N+M5t\nsemMziPVgsg39ZLporTJ4vbGFO+kCxozBwYztd/iFXOg2xXrbTKLzw1X0Xzy\nh47qZf4yXKPSs3vyuCvECr1lU/JmTRduKEH0n+Uf58JDbK31MrhtWkGX4SxS\nvUpoOl5l6MTGjKpSiHu7eUuG2ZNIS6cT3uux8B+pdEXBRtBkSevHmdE+0JVR\nWQjAETjV0fvYL6sPAMW6e+IR6va7XY7QRTfEQG6M5pySnNxLvLSlTqo7JUHA\nTxDY\r\n=XOcv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e83102134e5640abb78b0c62941b3b5003ab6c1a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200823_1598167035921_0.3528841848950821","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200824":{"name":"typescript","version":"4.1.0-dev.20200824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200824","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"34c92d9b6e5124600658c0d4e9b8c125beaf577d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200824.tgz","fileCount":167,"integrity":"sha512-hTJfocmebnMKoqRw/xs3bL61z87XXtvOUwYtM7zaCX9mAvnfdo1x1bzQlLZAsvdzRIgAHPJQYbqYHKygWkDw6g==","signatures":[{"sig":"MEYCIQCro7tnDRtpKA14tTu6mgeiPf33qJq/I2u2EDj/F0myDQIhAOQUjKuccf0012tjxJGHOuJ/JNwCWI2Si0kJxTqFPa/5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56907933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfQ2lUCRA9TVsSAnZWagAADkMP/2Xmv/X4f1DjttgDMVhd\nRQrPet/XoWyY5Q4FMUv/HvVTXwR5TieBYkwMCfUrg+J0A+WsXVAubnCLwKCU\noQ4lDmTI+Ln3WggoYaAB0We53XI2FvTnPwEJtXAc37n6ycTojVTNG9S2nsSB\ne2FQy+wA3ru8fwA8m952huo1gNrbNfKAaqhpoeIVUfPcFypwu5mMuAC9IUlx\n3Lvcy+ENA49brl7neTtf43DxAT4ntpS164Yg/iCS1YHIEMoIWwezAMivLodq\n3/v2MTbRXCE7ZHLlyaPBr3syq6xC4XwTzpn1THfJZz5VBdYC9Dn+sU4kZHAP\naQ9CNebMLwtRS7Bwr2rn4DIlj+XIbRtibc5UaNF2wjdHGR1uoty/8lTK1PPN\n1Qn/77D+uRMIm9KapIo+7ogTVp2uYaJPOeZ7Qf+wefZ/CHNbRytRsOdM3ojQ\n3k+IoRzE8+VQGNp9gv23B5VGnipky+Ctr+YZHqQeqvoQkqeqGQI3L6lySbEY\nFrIrriE7jLEjbRBMSb4vITz38z3LdjbMOU/rZ+INKvCZNmSdww0HqtcAfHic\nWE3J0UFEJmhQu/EUtfLshMs4hWQZEXCzUUkPjPC5VgiyPZGTqnngBjAi9USM\nrfKn1lhvESY55XEKr01D/9M++t0aZh2BhZm+QcxjytVbjRDvQa2cuHbPNrsx\nZEne\r\n=ZlOz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"31fab0fb1e89bae26baba58e5a882e8d52e312b7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200824_1598253396032_0.9795172198496465","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200825":{"name":"typescript","version":"4.1.0-dev.20200825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200825","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e009d6e91916223624ae32727bc0a400dcbedf3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200825.tgz","fileCount":167,"integrity":"sha512-KaV6lz8f54X78Yi6AQeFE2oxfe3ejqWvQkcYfKK3gp1OFCN2wxMwEvx+kCwzW46jZquGUHjj7fdECajjYZwIPA==","signatures":[{"sig":"MEYCIQD2AGp1HzIAzLU4VPIZOQyYZikTslLiqbMZgSeDk537ZwIhAMCXm6BFeAI52sd3HNjPS4k1f8XphIBtF+bkzhmm3dDQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56908183,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRLrOCRA9TVsSAnZWagAAdeYP/RFbMnWFC/8sVW/hcVyM\nP3hq1/uCXD89CftC7yvOsGsOYGNSRvtFOXhybY8RWp43GThtsMEHS6TAszOJ\n8UZ8oZaS0Yh+U7PpuWm829krlDRHycUHPaJuYuWO9b0TusoOrJssKqglnLHQ\nKEgX0VcwtzYtDXnd/UgDulLQWg+VbzBPffa0QlgDsQ0HkGuG6JmTSf+0djcH\najLJ6vNz2OmTH4K4U70hhZ86yoFwOCodjtlWCjuP1vz6fmIC9WPm+GN+9COs\neDWw88/xcebOodCocyrtQ1BvBL19zoApNuL4ticUSYqC70dPjG1whXS485iM\nr4LMwPUTjkswUEWmp7t+IlcTNM2lOLCm2FqC8XwZW2fuhHySw3hcy+4Lpztm\nfomQeA6H/AO6BQQtE06zmhEDz1zECAZ0bt6HUzdT3L8XMq8tNx8t2mZB+P7b\ncZ6envwtPMEMgdtn5h4Il09p0TqcB0cO1BNpZ3h3APhWi0LV1CkdmDMm3YUY\nrjTknhaAFrlxI1B9ap2XU8WT/kg9kBJ/Tvb4zenjI+TY7kgTlUKgHEQkpF7B\nXigwhJZzrgCsfqMDbf6/dOsIoIT4u9MtguN0v54PqdPlLdwh1tWxJNdZeQlv\nzN6L+Gf92u25iIMhO52+ERHDM2zp8/jS3VEQMetI9YoKTIB6shtvNOjknVUZ\nfYIU\r\n=FaeY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bfa69b7bb7bf1c41d0a0b1a1750921a6167b60f4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200825_1598339789492_0.04349821738235149","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200826":{"name":"typescript","version":"4.1.0-dev.20200826","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200826","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cccc13838d7c33355dd035ec9a8bc9f65c1a2968","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200826.tgz","fileCount":167,"integrity":"sha512-PUT7mgPK24zXnsMrpvZ7tXzQEnTJdSr/5/nu+fPHjM4XqNcn283/hk9d8wLd5PVzpn6SAEl1cL+wQT69gXP82w==","signatures":[{"sig":"MEQCICL5FvaM0X4quJvDLhIkMVvK1ppiO6dLcBglqMq54DuCAiBOXX38Hm5Qz2DUEZYFy1Qo22LhFzfkeYkpBW570umxRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56912768,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRgw2CRA9TVsSAnZWagAAYvMP/12QtYvdjbjQRR0G0rdo\nbrWrDxzMG5I7kUmz95aSUXCmbbPqnXHyxRtMOmwBDmc9IaGOJw56AENbfeOV\nQyUUafHT1LRaQdJs++dNsA2khkquBp/SanEGbrIhXf7KhzqVDeiL3vWA7dlp\nRafsKAfTLTmGJ9xJOGF7MLIOtfsPBi7n3MlYM2i8/5/py0+iyDwBd2+0JN+a\n5JlQnDhzNhTea8n7buUaf5Xan1E5ArXOAIcxEc/+nth4hWcaENCqs5PCBozZ\nLmlopSiEh7ylPdNSB9ViOgUQsey7hGn384m2OOY76y3fKD5R1FxFk9wdm5Uh\nGWznJ+KpL5scrqRX1JeZvfzhY4u52Jz/ZbSpJRMw1XmRRVsuklcSz3v0fBrg\n29iVtcCapfODWnnt90ONLhWFvOf/ZzLko0/cyiCRUEMlehHpKA3GnzIGEuyF\nfSyA2SYYlMrv+kCJIVdqKJz7C/WGuQeSAXuIe748ug89dNkfrV7udxljPQvW\nsL+nebELclWupBjlufmpNJDyAMmLtnTRGtT1lAnkQyi4qsZBBuQWlvLFoS4I\nO6qQ5Cb5oKlGJP3i7X2DWNtKmkWU1aaForGCjBY09c8fev+PQeAWPo+9KJMj\nVSePS7kJGWQe0rcbw2ZulN5kIDCIPaCHd3Jut4scEEJpsru3HPRQ/oWIZShC\nGe0o\r\n=fQ/R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a9175704eea1b52f2035a8e78bf8acbbe032a7df","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200826_1598426165427_0.1662120592532117","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200827":{"name":"typescript","version":"4.1.0-dev.20200827","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200827","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f55a0982fda7b8e74a5fb16ef66c380b8ee416ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200827.tgz","fileCount":167,"integrity":"sha512-sIkWxIm9R6lHhl91Crs6BsYIZpIwmtfnmorznpjEfiXcM/q9sBVX1mQZb3VwckuG+y1i6aNtAzye9PNT4dfftA==","signatures":[{"sig":"MEYCIQCMzm3CJ6rHrBpMjTede2ifPQKSXjU75+Y5/D9OxGiyRAIhAPTF5A7DlnTKqEEf8aPQnQC0eW3Z7lA+FGV0F23Rj3Ie","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56914943,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfR13+CRA9TVsSAnZWagAAPQsP/iYjGkTNM7I3KkmRhsS4\nlI7h9JNe3bIorJahsKU4O9B1SKV8cXgSw4fXAH3gVGUasRvHhUeh6LoL6Yv2\n2ovx6/ZDjo71KrC2Gib12J5MVwTKETmbvIPmrDw4LhTUN2UFF5LxRx9K78eb\notKcikA9zgzr4r+z5cfZ8Fgee/xW7BebXVmeerMboCJPw931g1mbY34kVtCH\nCNKIuRY6Qa7ThQrXZXocHeCEnnDAWcAnXvx/ODLzdL94KMDylbjc769O008L\n4q8OvLev83ZljdMQLYmMidG9tP19GvwWhHQP73jQqWntnULj2IcE8k0Csr9C\nrZaudVyhlU+0K1BMOkrcDuIEUuXWl5UOX9j1bkfOd9ZWZYQueH4RkqD/waOt\nAWgHGEk+VeZMRhXL9qEJDifFrEk+I6GXR0VAF/SaQakP9MqBJrwN2YyQOu05\nl0E2deVk052mYSEgFPRicum9TOlfzu/XK2/j/x7391IrmU2qOl3+9yUkWTcV\n4/lYk14TkWOBd/Y2RgfU3DdoxdBlq+sZsdYWzkRZOryG5r4zxjX5a9Pp1435\nDz3L1/s+EXf5JoA+7bKW9ZM3ge+8UmKM7WJjnwexMb+46HliR0JpoOvyiKQ3\ncHXOE6QlY7/2Tj1VqfmWEIHjWGF/oKYnCsx1k9++91zhso9MuiQnvc1Cgtjl\nrS+O\r\n=W491\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1b404ae18e926a440f5721c0545cac85637e1841","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200827_1598512637969_0.28359612591700456","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200828":{"name":"typescript","version":"4.1.0-dev.20200828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200828","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9b1ffbdf88712e3f9e31a19219e98d925f0a5c87","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200828.tgz","fileCount":167,"integrity":"sha512-DoIHPdlfmT/D/VuUtaFJDTX4zur6dcesm3QhC8VvWUouGoQZI9gf1/IatOawXAeLFwihek9cqc8fd3Sd+ZOUfA==","signatures":[{"sig":"MEQCIEroMhlz+AnRE0vtjP/Mi5LD9DvsZx8dnuad/rxczetVAiBtcDOPJ4zLKSU/rg6ZAIlFIeQ/cOJEZgERcdKy0MslBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56918687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfSK8KCRA9TVsSAnZWagAAySEP/0Tpba5IFT3/FZY8lPcy\n4NpbTTFr0hTkKtg3j3nPs/9GO6sXzfQsV0zac+93fYs0F/cqnJk5B3eLrxBP\nuFmxqYhNhSYk/qpV/saGhcrO7mt749/wts6MyGEswUbPx8ISpu235RVvFu+C\nNcp6r4ubxyVEkHvJ8/NgfQMeruH5gB0iE3XTBCkL5Sy/IWJIAWE9o/86vuRc\nMt9RSOciVPS6JgJyrGNLphn8o5GmPp8uWXlyWc5yrRH1uIobkPFMIRD7wOlr\nilIVQoaJaYic5R6eAlCDVBlmKWYAhBOpCGbFaMlYpMKsH66MQEyYPGgxFyf6\nzUTklSpNo4CpEDC7YY+mbJqfj4JzES8NIsKjtdnK66Hy2D4c7hVMk5JK57XM\nGMuggR/sld6zp6Iyx6xLLDj51yTT2Z/mmZWsUFAe10kuC6bwsVb+XUHrQfTL\nmYlT51ShVsxHO9dJtq8NQLW/Ac2NFSSaeoZGfHo6wSyXUFT/5EYzBRj3sY1a\n+I3p+HcgkfazgxRx3MvTOySx7ernQ5tiocXLQxPPgXxXpMxZo1U7F3NS1BPz\n+RG94GpFiH5ieIqYUOpG/QverOpq7QVK61m/ly42NqFxsV2nIYuDM7/udQuO\nQeac0ldjmcTo0hCwhdYgVQjo9zCiwjbKO2YtUWNy9xHesNeVSr963TMVkcGT\nCUl8\r\n=A+kQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4463194ddadfdeb54aa0d642343634bec1d5dc47","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200828_1598598921434_0.30813475321122263","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200829":{"name":"typescript","version":"4.1.0-dev.20200829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200829","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c07a8104d1a56be301465aed209a1347955a87f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200829.tgz","fileCount":167,"integrity":"sha512-39o0+KRZAMolJCkkctXsVBTvOwRblffX/4Bm4i9bT354ubuAufVdEkfeAtUWNLoEcPnN40DSvnmYg/PbwefuoA==","signatures":[{"sig":"MEYCIQCd18oXPLBis3ojcIu9jvVhyED0t2UgLrsng35+0JZh+AIhALjZqw3AjHSSU4hXn4yFiLQFyhHf62OXZ9kmfJWI3K4e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56937981,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfSgBpCRA9TVsSAnZWagAAEckQAJRP8sQPsG1j0QMZK0vZ\n+OM96h9jHr/XFCl4rbD9HcuFrOFCaVzBGqa3Sb481ClCTR45bLi17vba/Ny6\nLbGlhXpNBYl1xkpm3noVgIiFBsOv/rb535FmqXtoO5OrvbbzWiqT6CS/069K\nIn9XDKEFI1yJHGEXHjGf3n/5wjK1EBuJYMICMjAW1yAQW256sMlBXIuPVkoK\nUrykhSGEQnxoXtFYI02bIH2HOjoyeVTYQW55t58iD/87hOf0L17pZ4BhD2rP\nYPPjk1HkUYxDQF4wAC+qTzgfz5hT/fkt1HfRNVpPTlAslQ4ZQyy6C1Remj/E\n8eXte9HcwibcpyfG5XMC+v1AcdFGxuL5tkB8YQNW9Opr0YNvDQ3Q7YNE704I\n4iRbCU5FisKp4MWZ7e7JutuZk0Vn2QuhOslVbofj+3wMuRBhELQYzGyHI/Sz\nTUoCe5nyp/QmMBJgZBzpSuKLVU40uhSdN229mUOzsXDGDoSnplTLC24JZ4xx\nGUMGSUszxy21xzh2hVk+WV8dxwjTDiSbDx+yIk+CKyziUgJO1gLM0Uzjkikj\neZIYR07Ib9xzIhG0Cxct8Im91bgdbmHSXv5dgidnpwP+MISuFB2mPNJDunVv\n68AgU8yEQKHVTGDeie4aUYvYF3YtJuk7h7mKegCmNtz3I6M1vHXLjiriTF2A\nVe6D\r\n=uQm6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b78c7221993bafa7b550b71c5658b93f7a6388f3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200829_1598685288843_0.9286635558976484","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200830":{"name":"typescript","version":"4.1.0-dev.20200830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200830","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92fd4f5b2020ee8769c5298573b1871815ece93b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200830.tgz","fileCount":167,"integrity":"sha512-dzFKSm+0YUdwJJcR71QSGecQUQIjWuZmLqdjHO5qRsdhByJIPaKeiDl77jaeBx5tfZbD1JxynEqYSz8AqPfr7g==","signatures":[{"sig":"MEUCIAsvja6GIq3SrkG+3z5FXOta/abWNQUPbPu+CnVOI0+lAiEAq5EccFUN21t7qozEzxN1W9IrGQpC3vzLc1x9KyCztv0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56942096,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfS1IhCRA9TVsSAnZWagAAN1AP/RPOj7MVNPbJkn+e7oaP\nIAPkiWpbp+fWlBwfguHodVrALLUzoWQc97mxrqeT54RQijUJDRaM2ADC087W\nZFZVvaraM/9jRc7HhbvvgZgFCudpWP9lAEGxA+wv7bDwYPjy2IpHBtviwIll\n303Rw10+YsZzwzgOx+sCCd2rNZZ1amLsbhbwAi5p4WtL3AOJR0kdcG5tuctd\n/M3DQ6MNSWoH1cZcwRSA2wvIR3cTo4oi8rT4SxkKzAOEd3St3lGF7a4fxgeq\nqZypAlutBV2xfBhGz2Qm8Dz8s1GkD6I1B08uBohNnnawdZmhArSoWxP7PJeD\ncRJf4u9+4LCz+HgxvdDuKv3zx6xE08hRQ7EA38laxiot/qq3RmVQlgy70Y7m\n4y/oYl5/VufDd12Bg8Bl2VQ7vrb3U8kcByYT8NFhJJ/6/fCN+fWAjr9ea4Ma\nQGHmDcMScuVo116Ri3QMAbbuNHaXRUgbBTPRuhBDz3E7e/zMV2nMPIiGU48U\nCduoBSZtc1695z72LZwTA7N4+qiFN/MOfLYK2ia6TYk7/8G4dO47jXn0lr9K\nHb0mBoq6p8j9xIaop2n8u8O0DxvENGopR8ov/7MudYbPhe0wLm7B79m/aQ/G\nRIHshw+5Ak7Idh2Mz/TK5XujA4rFIjjvOmiz3KtBhYue4g7qylqlTcd+If8B\n+7zj\r\n=oQw9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d75894d85b8fd5f83116d3c02b5ba30a62af4348","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200830_1598771744078_0.306306234836736","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200831":{"name":"typescript","version":"4.1.0-dev.20200831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200831","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"629e9059bf53a38ab1d630ce4fed0c9c73fe257e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200831.tgz","fileCount":167,"integrity":"sha512-7oKBpuPDCAdDwlbxeFRHtZ9uYWxWersZm4yIDLzhTJ4FjsX9GH2wfLIkjWhph4g9Rj99SwTLHpNRVpUeBy3DAQ==","signatures":[{"sig":"MEQCIE3m8OL7Dj3FLbUDrN9We3gt1U5rDRsF+DIgzgD0Aa5LAiAAjw2dONv8sTNPAyqvyAVapJDCKu2K3nMs5gqMg6AiXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56942096,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTKOjCRA9TVsSAnZWagAAfGoP/2dtzcjX/Um/yhS5vwei\nwUwxc9eT1Uj31/v80onLcIUFyDhhe4FMXkoMpyX3jOVVG8tackegZ9nuhZDl\n65Svy6zDK3s/UOLXpTGB2uks8ukrvjIzwPj085SGDxXNxLLZs8vW2uv0suRt\neTvfZ2VeZoRCEWwc8caLbeUrVpdokE2t2wkN16sSFhhJypBipLuhFROcmCAY\n5eReNam8yLw8JD0OoBewva9/avOT7vTFWKwmefSLM7MLrWo+WrCxJ+04fAld\nqIAWFDvI+k/H5XdoTCi3eR+MzkKOH4bu+UM0ySvOKVZ9xxzisUvDolbbiD9u\nrKG90/2KVNY5EtaBz9w316kZniKHrCftoj6cMApj6FJaXhi7JITjGmSG0R4Z\ncUL92BZSA94B0pc5gZ8OYQRn8R4d2eszi96x2rMmrRG4COOqRZm6HlmdOCTu\nXnbMD012GKt98tugsjsDoRv2laDGncywlDif88y3wY0Da1dLRbV+Vr5+PpBO\ngNSJa9/vevVrdfvpdDG2QiCTEApu+YvC0TvBSDzX1Q5ZZME8zMeVstU9gnP/\nR1fOMyvElGs2BGh/6oEsuuDi/Awce0vCqnnIWUdbmL/5aMzJHIRw/uFvsiJA\ncLPUbwtLqHfJJ6tZe+4f5b5X3RVlAuieT/Xbxt6Hi4oJnkjkLi694l61uQEj\nYFTL\r\n=Pygr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"97f8b87e34333c40ec6013a327ce65c510df0be0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200831_1598858146037_0.5945413717062207","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200901":{"name":"typescript","version":"4.1.0-dev.20200901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200901","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"26eeb80e8c6e3c8712b1db51643507096590c15d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200901.tgz","fileCount":167,"integrity":"sha512-hh0i9TSQtEhHg7HqbOFvAczleOwZu9xSYL1vi4se1ruHLTKafT1+pecOC/TOIPz4RZNJ8I820ORBlOnDWWOPfg==","signatures":[{"sig":"MEUCIQDMO/dUEHfvoXGsji1YzKXgVJt480HCcuzjgn2JmzYJogIgb57FZEvRwHVXJkyLCV5LpRGIJnMJJ1AkXSx37/NZIoQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56949760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTfVFCRA9TVsSAnZWagAACo8P+gLynEY7MA4FM5pE86lG\n/8+QP7yQGRKT92E2CqMah0RH4ajmzlxn1Ba/GL0iRU5iUIEL6Ipo/4/Y6ypk\nVm++tycCfyb+pTj69Sqe6bIC/resORZMbllP5l7/4UYeeajZsDHFRXTHt/W7\nO/zKxzbc93ECYLl0Oo7i00SLzxKNDSPoEtFfNRIgHnZ52pWPfzB3+l4w7w3F\no9aUKicJg0uCR75VvWTAr301bOKqujvSUvn76Ir/Wpm0s+dc5CHH5MHrSTaM\nVCyjxL5d1NRs6gd17U8K+I7bs9l5uDDL1pX296qUpRdvOtP86anxSrVzeelW\n5yiyacK1Xopd/FxX1Y86I7rx985v40OFT8y0m5cbOcrxHtwMajiCQfx9p8UG\nP8CNu4LMdfxCyipZtoe7w1krB5s9paB3mohAwIGMCogBoRnF6EXME7atldha\nzoSG2pTT5ac+kyjhFaXkHENYU6+65Gs79qqwuMEAD3wACjelforSknLs+iX8\nKBlhSLVf4TLJjA9ZR9bxkmLtoF8055fuGZPtnpVFiuVnfWuFI7uL0UOv/HvX\nWSpmpgI5c9cD3HeiajK4kEnCvtKwSvyv05GwIz2cGGLcyzVX4XHf9+pY5GlP\nZXbur5jzaZff0OPDgo0kfMkZMvVr2u2qB8LhuYI5mgPNxUYDHyYaApPQ2++f\nqpBI\r\n=H8Lq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5fd5a758a31c20cb332f5b892145ca903e452620","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200901_1598944580253_0.14310671157946198","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200902":{"name":"typescript","version":"4.1.0-dev.20200902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200902","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"081c2f0d30921f04d0788fb9f1443a9c0db96f0f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200902.tgz","fileCount":167,"integrity":"sha512-8PL84cgECn6JD+5SqQnZ85T42l5WM6NFXjBuW8PHo6DkT3gaRwxkEqcND7nnhSO5SkCvQwUmYrCPkynom0e6TA==","signatures":[{"sig":"MEQCIAL5BYUthHr4It7tFalLM2tMj5Mup2OQZnXg/yn/5VqLAiABJqxMNlqJ3nvz28vhnPuFYyvjdPyA8NiwFovKDb3qAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56953440,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfT0dVCRA9TVsSAnZWagAA+cgP/1VwmUSjsc68AYm7doRk\nGi82XmhFaB2RISSfQ0Iy3PT49oxw9TRx6USDPd92S5xMUxZA8f0772hwnSz1\n15bBY01XeQVh264d+hZXbtWtSfomcGyUqistTaZN3vNmIo+znvVbty1uYj+a\n6xiwnIz5UhgSusLeZQjlPbP8or/XllMMn1IB/cR1KL0WIagRti9Ax8RDZEI9\n1WGdctC8VZJPSDEsdx2e0NMld0vW+kVZSStPuQJb+DcD4/R/j4g7Am5YbZec\nB2VmdKXu7dqG982BN62zGyWuVU2jKs04D3j86PorvuYWubxLMRg2EpHiaMOp\nfpuiB73+dVYe9tiyJFU8nQKTR/siC8eGFVf8b5gTvuykFD6A7UDPs18yZxQE\nj9UlEMesTMZancXpr62arf7RgOsNpJTVVWaPRDq0C+9CczBTUmpFVRhJsRoc\nzhmSenTu1l3cRl84MzQIrifhFAnaBw1raQi4tyVnvvsP69mHe6rg3OBbLliA\nk3vPgNLBw57Z1IoMQKxG5DQCgc3nbXQ2r08T1c5XaVYMqblVhqGPi6AnEFua\nAMzDHAjkKymSvmE/YX6aziOd/dCq24yBheF5EnpCSwznlbUWvi6JoHgHrxkg\n3eBImWStET+j9VSyVVb9Mi2FsELhMe/3qqGU3cCbH6+mk6MdIYXkpFQuVDmi\nhVb7\r\n=XZzN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b502f4ec1a44c18f7e272bc7a86fe82af7704e7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200902_1599031124254_0.03893899387817257","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200903":{"name":"typescript","version":"4.1.0-dev.20200903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200903","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"47a9f1335d4e384852aa6ada6426a288df18ada5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200903.tgz","fileCount":167,"integrity":"sha512-/1BEKDeJZbeSq6KhNzAdzdkV49riQQSsj3FeDiCBzwrdcOKR61eP5yX5Qgp+1IiwsGQJbkY5UzJ10oYe1lmptQ==","signatures":[{"sig":"MEUCIQDYIj3zsWDElgQLxe7BYwyQOAmlX1btXaLVoE4ejga+2AIgOo9QWyYmqKTOvd8DZ2vdTT/yu4vwaeOC4J7GmGXBIgM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57042489,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfUJiFCRA9TVsSAnZWagAAgSwP/iEYg3oNYhAnk0GPiF3Z\n/1a4U5DUTMaNkq5xclXuoNJI5PdIc4t8QM/uXuu4ADOnjKflL1f+7EqiBOot\n7frPXQe3qFjdbGTL1GzUo9e/bi83zwpcl9BHshwDshUMZeYZleVr7C/9cWZk\nqNqXIzpt/lyoJ+S9oM6yWyn3XR8Fa3dHhTuogXr1R8PcnEhGG1t563XJZdJv\nNiyiwqQSF3qmH3HM3MmxY1a811tTY2XxkiMc0hd1VQ5XOL+I8nziIEEwmQAU\ngrFfEzC6/0JnGWciZZMQXLDuYZoAbVIMwuxUL2dnkKmcWpA7b1jD8WXLaFf8\nn8IfC7TojOG2ooelOCSSuzV0Ve1C3ofxhzFYz5Y/fRvTMjpdeUvQWcySqVb8\n+9u6D/Zsr8w8HV4q7GKRm/pLsPf+jenJdpHRAK0uflP22EiIIHTu9nqEV20a\nsApi88Pc0QAU6QA4x07+495zSiQXpK0w7/Ki8muph7SFa+OBUEql47FB2X5u\nsAyN2cveJbl/YIz1qSM3RsiQJt1xZ4Bi2VmKUPrEYGIgJ2CA6pljr9xJ3XYc\nmN9eXP/zv827MR1R48G1q9BIIWtdZ7VwNUCMOvcH1kp55D87WmtSkGy+fmzo\nXuSchfRQFgdPxh00sspQ8QOm/yBgrVSyVjQNLFPvjjdr0wJD4BIwoSAl6wfH\nC+Kg\r\n=AFLH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d89635381a65229c5ab5b0c73de15347b86235a2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200903_1599117444694_0.30023831743106255","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200904":{"name":"typescript","version":"4.1.0-dev.20200904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200904","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f92e418b6a7144f4cc61903bf9e2cc1e9c39aec6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200904.tgz","fileCount":167,"integrity":"sha512-3uWIPzF4BqNnfk7hGj9iUIVkvrjbu+0NoPGpmd5H6z4SpTL/iW/7nIzE6zc4UbegujKd3VQ7qN8F2IULRTXlJg==","signatures":[{"sig":"MEUCIAoNJzZ2oc2Y4qUGKNEPlkh6jta8slg1+8QgPdddnCRvAiEA4FhG6sWeJwZ9rh7xJ2DBTaw5q+9riuqbR1RVGAg7qLs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57062987,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfUeoYCRA9TVsSAnZWagAAFHAP/A3aWuAw401Hx0iD2Bf6\n5Tw5dqxzd9ynQiktQOXltUFBmVhdyXwQPl+VaWO+xzWey7OeKmrhbnEX+qOF\niMWdH6UzwSCQwxqEfFAIARnF4806OrDU323j22tWtC9L3O+5t2eTSygoSmvb\n07iPr7g9F2Q9HjNneSiREWSRM9iUXcFZY6x1Bev9yyxv+k7sws8uFKOqFJsh\nLDU0aRoB6T7+7slhBLPVI5gjKTf7FIhZ2f4zU1ksDIp4NENgHHv2K/DLk32X\nTny9v+anQh+6genDDiaPM1t6xFepRmY3hkLl5vHCqoUemOhOKlyfh6Y7xM0A\ndkrOxOSr2TTMoRnwratiV/E/f8bYG+tClnWb/uFQBQywgJtqE38FS6SOgJJU\nbr7h/ycqVGCEzT7G3oUB04TGmsTEAfTz/lao68KDTfhZcWCjty8rAo8bke5/\nT3H0Mbh5SP7+Eae1oZEKSzRsV7wURoNFV690et+ILT2uD9L8AZVV/5WY8bsa\nS7Uzxa4W9LOlpkBaZCoI8t1z8IonzGH8njvk9ffvnWZX1Dsx0ZGnrAyCK/bg\nFRvIwRY9blWUlTgScSf/+SwWnwOlw6K+25brj0bJrUKGyeTKsLJV6VDDx+jH\nCvYjh40/UAXTYn8swccoVmKGKmpveMjLyN82WHlZBLW0uJY7dQ91BYWYYCzz\nEbjP\r\n=5QbO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d5a646eb661f5c68b4b9b01da5bea771f354a6bf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200904_1599203864171_0.030182312518448384","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200905":{"name":"typescript","version":"4.1.0-dev.20200905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200905","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"78bc9091167d6e7d3a7c857c5d8f99c6377bbdfe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200905.tgz","fileCount":167,"integrity":"sha512-y2EXr6DnxFyHUu75DtcTh93JO3tl7nLYUGJJmSzD9zqQHclPFuXIi42WS711L0X7ek8DEKrRch0RDkCFjkwoUg==","signatures":[{"sig":"MEUCIQCbCFTX3jq43HvGnp6CpzpQ6gp5Ep//kKEwmTCkuu0uXAIge+9tjt5j2t5CJMW9LTWZvI6xDNzcuvP/fetktkcuQ38=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57075573,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfUzzGCRA9TVsSAnZWagAA4psP/2+euvrukUMfiAd3rkSo\nzfOBzNWg00Owi3pxc3j3VgbysMocu11X9VqET/xj8U9RHZK7SiprxC3dIGKF\nkTo9JKTOQFhyv4gqkkqNaCsqOTsmqv7qIHJb9MQaeJ1T3TWHYeZhQXGbbp0A\nLwHRIh07L2n76EY8Twv5/nVGWlJ3z+ds+ejV0ZH7TdymCkFqG1TqqtXBbddO\nFiKnM0lrf/I3H8OTMvesVJ996+cO9E+7RfQoKqA7hoxtn4I9xfWdwccmGNRw\n7kveRPXSmMj3eECNllqain3bxX3HzBip6OmjPv5GtgME3o7mBYdt5+iyLl7n\nXg2WdNoJKxIv/7SPr7BhRYIpaDzstAB/1WSHBIbkaboxzCkh1Jxvthc2RLx1\nmGwAuCcUhrhcQYRSszextBZsjgUOyrIwh1LXsNGObHykBRNzdihutflycuVC\nYxmk0lsZ4ufk6H+6zCtryTJ1mYlP1vtoouBUSrtKbN/UtaA4rQz+ydDE+9YY\ne0FHmr/PLvBZ2hOhCaLj3/McR3yD1jrDkbZkJ0B/+NHq57dcUm+ztvHBlm/y\nkQ7MUPNo7OL1ob0+SpcIJ8Gr7246kuiFqufYxFi1F7qGYKPfhHjmj+JyEaE1\nMKWMV0GVIcS6zWQOcW8zLO//2HXv6QCgYA8Pz03w9Wk/nB/b9IC48t7eou4C\nSn2v\r\n=8OSO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"09d68efae13b400a1a11297db58698b6ca0d986c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200905_1599290565861_0.93452772750765","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200906":{"name":"typescript","version":"4.1.0-dev.20200906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200906","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b01296421e931fdb6ef63fefb9f63df36b53ab2b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200906.tgz","fileCount":167,"integrity":"sha512-iUkDNJzLhS9rITi5pOUqaaWo7OT/2aVdg04PB6LNNDMwzcuNGOhZ+GVfUh+NdY7ML6yKTsOuBf0kXqZyjR4/kg==","signatures":[{"sig":"MEQCIA+wdq6V5Mko1JWblelSQAmbPARa8ZhTApHmHuLYxzE4AiAJ/WQhoJnGAl6ssUWIUkd9RdQ1s3+yti6L2n6fz1EDFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57083983,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVI0VCRA9TVsSAnZWagAAfekP/2yzbyfM2ZFIWtzNSHce\nYU/aMoj2yqPn8vVyds6dMAD875HMZt18P64hZJkNMgN91+wDBvypEfSW3ye7\ncOizDtptP6yK0DddsbQePpDjQhkf3u8pUXS0Mblju3Xn5ilHxNCgGls7SK8+\nhXUdhJfzOWjF9uKQanNOvJiLqehBYheoW6y4OYHSWkph9DfcoNBqeEEd1NX1\nkethoaJzrIufgr0h7vHuznqZx0k0QOBqsjhlqQ03R+T0NBlYkEJ9vhKAAP4F\n2vsfAVgayXZ0BZrFZvoN6nXQDM3uKktwWqgVolK8RaHUAPulc8oHV6QauEig\nRNHA7Jyjiq7MTuWouKZBBhWq+kYFPPZIucNuq3/HTbMmHxan++1WRSrYbCX5\n3oLmCbwwdp6k1mspp1o6FYNmiMPV8ZGCpd2072tEdxLpfW3HbTfg38dN7b+3\nIHrkmS7Yap6ku1sTRFmv54nG3uvCm2wyIqIANBiJJJ6qbeFrCxOrH1pLvxlo\nfLnpZo7CS8irI36ykzjwOaUsvz5LXTb26enkMZzulgT9n0JmGwQZ4HRhSA+E\n3r+UNTKP6V4uWLxgZMIFfZa0b0zByPTQW+z1aJ1uP6cKnox6CRZMZCixPt5s\nFIs6CImU/n2d93l3kSl+6MykK+gRQBrwQbYgbjtes428C6aDVaqZgh0bffRv\nz+Qa\r\n=7sKH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e5fd0dd1e36e908265b279038c316dd83c0b4e69","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200906_1599376660826_0.019053163239233006","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200907":{"name":"typescript","version":"4.1.0-dev.20200907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200907","maintainers":[{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3390d3d9df4b2c695d326073755f2af3b0ceb1f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200907.tgz","fileCount":167,"integrity":"sha512-QGJ2JNoZdOqg2p9oqmRAM1p2ZAwo7Uq9CjA5kHnvA5Aot+A1A+pDjsOG1Bzv82ZTiM4gdmEhKlPRrzWDm5BQTw==","signatures":[{"sig":"MEYCIQDqVgMDdfFtmx6c/NqqPJmvGuoormSeKAf3DP5hjGVBYQIhALd5MActg9rU7GipV4/f0A3P1pRUMyhC23FeOiAo1rcf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57083983,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVd5fCRA9TVsSAnZWagAAZOsP/REfZ80o4+a8bj4kPILI\ntSJNTHbLuBmWrJqVpw/yYXgq+Hzn6YeGRCbwnVhwKelzZejAfolbarsABJTe\nJXb3xHLEaRJ1mT91A0eMQRRAimAZF87A72jU1PJ5wzO1ZeQWgz7g72RENZj3\nCKz42iMXWt/BXquCIKgwMu2JZuHAVVrZjC9JXTahlUzknK61zuMEJuQXt8cg\neRbS23p+df8GRd3kMOffRzQA7d0bTWnDLUF8GgdjAk4nOqPF74kkUMIiCVE8\nw+REKXDMF/JmYaCUdWwU00LiwI8Y8yZIiS+Tr0+gAhD1SF3VJv1j+KsarAQe\nhSPq1N7J+ebefDoQExQ3AtyD38BP2o16q2DNGfPHikXVLVhX73DoC0bm04+3\nOzBccHiD7hKzLOa6zBLPUlIjqjsHOju7muHiZo8ugVWIH/LMs3/SHsaMnKxP\n60VH/fGL3aHNezdeWu6sOXOde52WvZWuQSWlaL6xmBczD1s2pUpfpvcStg2k\nYYT7WpdHVH/xc4aLikdPSXVfN4034+XIdv2J2AV0qfVifqcWsseywMT6eeaW\n8VZmsLeod4S4ULrodHma/uNcOeul453m4JNhmuVXxKVaXMhZtL5A9KZJcEE0\n2XVmZARt87Iw4pcpOT3PZWTuVHl3bg5jcEvzSzRRFoz1SSJh20rWD/q4lC5w\n7IMs\r\n=v+Mg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e5fd0dd1e36e908265b279038c316dd83c0b4e69","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200907_1599463007014_0.44231751190102986","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200908":{"name":"typescript","version":"4.1.0-dev.20200908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200908","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"38d77c5cfc685b65e6326ce9448bc81fa3e45975","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200908.tgz","fileCount":167,"integrity":"sha512-vJWE+ENHFoPIgkogt2fKrEn+Q2HDVsFj1RyOZKHu7nBWLhBWjrz4QtNJpi1iYUy9mm3PjnpOHyQzrbLCmevGCg==","signatures":[{"sig":"MEYCIQC7dHKeAlFfhq/iByuAtgAE5u4WIcYIG8ERHKTbUrVC3gIhAPTN/pZvQEJEEeW0gs9h7gVheRxIUMX6UrbU/mT1jqN6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57083983,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVy9hCRA9TVsSAnZWagAABoMP/3pA5jT+CEwuSVmBGrRI\niPddBew2hzzsFPmObUT83+xb92MiNZkfIkshiuoojgKgoo29zKEizBLW7+Tk\nbdQ4uR738yAGCVi9UG129nmocyCW68BLKrL0PNAvcIGyIc/2A47Q0F/N3RoT\nEuMsYJyQ/UDUuxxuA1XLn5N7Q1B2uC2dL5e9QLqWUbtNmzV9j8zgsk+aCt+P\nH+8zLcCgnVB9xXraV0W7x3pv5O6Rn3J5EuelopFXNKQhqjQQriRu5b+zO9du\nhedEFKpTcgeFojk+RKiQ3QKQO2Y6jdDUpoy/zXVOot8fw7oXajiv/b10qVb6\nRM2kUdCj2em4okfiJIQRR80WT8uDFJOa+HGGliSn7SX80oRoWVoWlOvh0Zqs\nW6vNcPB8Q5W1LTqlfiGrXyX7FIZwobW03pp7oiOIhMdZAuv23yD6X6f/gdks\n59PxpdT8MTM9c5Lysg1gJSF3aVfyoUT1Nl0VpFaWWTFPwEovyX9AtEtUjuuR\nIDl70jVLrsEv92Ljm6yKVOca91YtBv5hNuIYOKPIn1PBSpXOj+QA3offl1d/\n5pKFWgl8IZRjSUdLGGTLuw8YRYAzWR56HHoOPac9PFpp+lfqMjF9CHUvIPPn\n8ZhC1zeDe7orDECd9Yy9QSU4evRCubukghpJHGdJlTUhLBWBL0P0qRtL3kPp\nlzzK\r\n=S6n+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e5fd0dd1e36e908265b279038c316dd83c0b4e69","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200908_1599549279998_0.6994103400937084","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200909":{"name":"typescript","version":"4.1.0-dev.20200909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200909","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"058ef9c888251ddeeea3c8051e12e32ba721e886","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200909.tgz","fileCount":167,"integrity":"sha512-Im4wUwJfni9hGj81Ka6PKJYG9j0J4h18uRDUtMTzIcQDoDOn383AgbV46Ri3ah76nl/0z+4THT2udWh6fP+McQ==","signatures":[{"sig":"MEYCIQDWIEJOHev5CthgfLMs9M+1yrBLuIJYm0kZCMhwfjexywIhAMDTIhF0z0GRP3b2cnDUZE9w0knM1qZJVmBlXBigMpRD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57099977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfWIERCRA9TVsSAnZWagAAixkQAJR+v5cXaS871FdDWAj+\nsJKiqO5bO5dja0siOR4IvJHnQcAFZIQIqkk1M1zn5+qXsiayvmZ+79NGopOC\nqejcFFVL4RXUy1xMuF0udPDdwFGY1JPlBh/SM1adZHvhSm3WpQtZi8FoBBc0\niEUsKx1n0wP1GYcsOLc0Nu2WTmSl3h5CbqTcZ2Gx9BOfE3m/eUzMcYhBkiUm\nrb5pCMjIUjJq1+ITvNKT51KSbsVAE1mOudKrc+bdlwqvM+4/+mj/+KkiTE1m\nXb16iAcwdGRNp9rD35DnC7/nEIq684LACDr7BI7JB0Wfbzz2rBE8NtuQLGyz\nNftIfwX30q7ddcBLp8qN3fB41ylGE+jZ83naVPSyo1jneaDecHuRsxL5yDnn\npwNRIp1RiAreCVnawOUdyPmlGyVCdIDB282oeoTPhFCtrp8yFxV6vX1gUyi8\n3nQ4CUwopFjfc3dqWZ6nnkp4Z9VmDV8EerWeg/MMrSGinH6IEPSsxe0/MTzV\nJ79j1Wx0nXWtPZpLpLMDpmLjRUmsI2Kc2zEhqmjCkmk18ddCZVsE/Xg0AKEJ\n7DrAojcChOQieI5wyH+w5kg0MARURMhAdCXAtxXgQB1Mi8mUEijYE0/mncZM\n87Gtg7b55rjfsGYoc8lJ7Q8lbDVN5KUU8lkx30pNRmWD10hsZluBKjwstj8T\nZ2Bt\r\n=Y9S+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2b0278a88f766e87bd0fb839b1048d1e17894969","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200909_1599635728453_0.22336821465976997","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200910":{"name":"typescript","version":"4.1.0-dev.20200910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200910","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c34aa390599890e24929db1d8193e31004a601e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200910.tgz","fileCount":167,"integrity":"sha512-XF+ZdED3gG6rTrt8TDzMiZvbdMsgZgifI/RNS/kZtpuXJViKxrpUw5WtukKG0XBhm+YtCw3hDhlq3hKdi8SzUg==","signatures":[{"sig":"MEUCIQCX1IoVCO/HrOuNK/UgLpLx+0V222de7aaj6/CsocfKcAIgbKsNJ12UUoWZ4Bh/37hsQMAClnluMDcoAPinFlVq4mY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57244836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfWdNMCRA9TVsSAnZWagAAB68P/2JCLx0JXUclb2AxQKxj\nof6XK9jDZY9SUfJJA/PNxfza0XESrvQSXVdimpZ/hKFgTnHk6TTxO3hkWip9\nMbyjMue8/Hh8SyPkSxuabdICfIYkI8Is9N3V4t/ADBU3O33M2unFxw6BZD1Q\nLB+/mZ77a2HJ1NR3JSvK0ZB9cAQZZ1RpRZtZaAzHaNyI7REgQfaVwFQpPDAM\nO6SNKc6xF6emevHS95ewfjEAYXaTn4Afj2FsNBas1kcMUMKtx5PM6AeTvGoR\n9lPnx46hY0rDqXOx22Kdn+qlaIwiZtg76QIdNLhYlTtrPL0q9FV+kseW3hcW\ncu81oEtSeuCUai2oPvhZ8G1m+gjxyo+fQ2VJOD9ydmzVQjmFAP3bcIQh2UFm\nqGLwlrlwa3iZxMu5A5qcqQsrqONLIt/SAPSJwA4MXlmuEL6q0dVj80J/yT1Q\n2GBecZnv7txFcQN5zdAJZRJOQM6s+8l4m6hjCjMQ0bsa9R9CARS1UbTJR51p\n6E1g6K/PXlHfyYsSBK0Rwmv2+x3mNxJgu5lxOlDVIfPDLN/imtW9vd9szIAN\n2ZfNtnbav6KdM0kl/bYZicW/cm38yvNB+ZXyGfYGBvILLdOBGAw8ohx8mnuJ\nfK0DNt9b5ieZ7Pc9mIzh3QUGQd+2Jgtg6qGu1HZfVB2S5svT4fZjDsLkJeRm\nfN8y\r\n=OhPF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0a1f1c864b2c5aa1818d8e0fb619c1f4e3302eb4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200910_1599722315870_0.5645321907247294","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200911":{"name":"typescript","version":"4.1.0-dev.20200911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200911","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4eced2cfb93ec50d397e8089e45916befd1960bd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200911.tgz","fileCount":167,"integrity":"sha512-PK9OudvbrRBqgn8a31QoSM1IizFUYVihAd+/wJIEDllOV7EyOrdyWylcd9ai2NR9MWvWF5ECBVnRGXFNHu8NFw==","signatures":[{"sig":"MEUCIEuquaW9bXSCwSVIxqRb2MfyEwVm/RbCndMLbKAF9bS0AiEAkUrlP3GRjbgiHvFF3rHJ0eWljTBffG4pvL74utkQyqE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57346541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfWySYCRA9TVsSAnZWagAAF+MP/jly0zcGK/IF69zNKqIR\nQWU/F8XRWR0foMIztqCYhmv5nE3pfS4jBCzkC+ioeL55xUT/SDu/kEOMpqoI\nDRb3Xpa/5ifkAxe07OHC5qSpZPErlGJr9YQ0F/rTPoBa5hhsoxMdd745Hwv+\nzkutAwJgtDB5+zxkKhSc4Z19nxeVXlKtk+CVD4GocTBThn/Qbe6pyQqfmgKu\nQDFa4JEF4GsVto13y0dSznBZEmf2fmvEhgqS5CjGRPV0vBcKfg1ASlm0XCUR\nADAeSsbYY9hIUxhw3fpRQyofgi2SfbboF11H7eh9uBi79yyKELDHF0XP7PLB\nFi1hZXJSUFhv4d3PYEK4xtyupOGIAMdGRio+UO9F8dXCHbhIp2fzRq4H2rSq\nWdneGFdmQJsCaVwngPG4LcuwDumBWFkDypniObzQ+zpa9H3dCEgpwECZy95U\nmmQ0sFuaNIDd8UH6n+Exif1G3pKkHb0Cvk5bHbjndH2Ufn+MIhH4tRDzoaa7\n1vVngJ0smNsF9wqkZsnMTJXFYBZ0nZilt+BpyE4xJHWqJaZ4uTGjyrCgyGYS\nZN86zPklbEl+EK7Yp1nzLBaMgDjGZebtjqeoxMMyoH1heRCKjXboc+ukER6v\nYICgWPkkwbODWSjmaq06+wQzq5Zmyf8GRpe13150tslNTrdQ8fgsD15KuZ19\nHd1V\r\n=hHle\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bbf2133fbef7c87591f2e3e9b40a49004589deda","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200911_1599808664069_0.15179688113634637","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200913":{"name":"typescript","version":"4.1.0-dev.20200913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200913","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"36f512f56a2f8fc395a1c1ed195b7bd395a779aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200913.tgz","fileCount":169,"integrity":"sha512-NoO+mtmNVLlcEN5Ct+GLMjW7oKNJKKIiFvzVn5QSzEUuAg8zsZHEG3VQunmuQp/5/j5E5rOPt+ByTATqCbFu2Q==","signatures":[{"sig":"MEUCIQCM1ahj7IdfqM86fKrA3CfrK+dX/avUzlfWAL0n2zqiuAIgQQT2zy34oIkrzcE6Wp/OP7P7KwajNMJ3qFTwCpYLE+M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57576602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXcgQCRA9TVsSAnZWagAAl7kP/jDhJ6NA2cA6XfKYTB8t\nMk5naYMbe4nZGx8OhMQ78JG8/+lZKfy4FkTuPW/eibq87Ohg1gK6m/HM9HVU\nCBpdTPxBdRfkqLdp/iFhShGyMabpvXlfXLGiYSOfiqZLOOxHZLw3HKlKBG2o\nXqvPnGbbj/QOwG/yAq73yos5wVkzQ2RJPyPL3fHW9/3sgq2QJ60XWV8dn72L\nDm58+BKFgz8vtJ4eItko9GtbZ9r6hy+tOTRzTZsdc6pnzAD+QM2CVL4fpjLd\nYx6xhn9F2hh44jYePL7HdzcV0DGMZL8IVNqU3UWE+YvRU5puw34LrkJIxwEA\nSAkglbBMiZImC5qnn7WPgKpFmOdGjOVw+0d39IaOla7DPiOAvJSc+bC/VAHO\nzUO1DIDPkPwyrgOCew2Qojji55E60Aa3Dra3IS24b+3GdaE0ZLLw3odTJ+fO\nvs4/TeNspTQQFS0sGTEWl/KwAi+q8m7l8wyQ95t8JP0YTiwM/imoj6vw4Nw4\n7xOp5FIYC09qLipY7jR2V4dlPzvvNNJfJRx7fHyEvaFxYBQgN6sbdeGlVUsb\nUYDs5o7GME+1N//k2pQIRq1gAjw6ibLnLpz6yd9JsS7+5937BL3MLodc8Zmp\n1EabA+nnumAigXvsti4IwU05+OyuRaEsXiLxLv1w/t5obWfEZES9pt4F/sBy\n6P9i\r\n=hSYp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bbf26a07eb2ad8c5e117d6128f01e0a4c31f5687","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200913_1599981583823_0.06261521329620545","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200914":{"name":"typescript","version":"4.1.0-dev.20200914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200914","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c3e469003b6b0a60da3ed34fe178877157aa5d60","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200914.tgz","fileCount":169,"integrity":"sha512-5c1/8ZH8/SkPKJPZMjNUp6kroEDQ/2STHsAbkGT050q9mjgBroDee0awp41MsPQbwSKoTLbX7cwxk3WcZxXteg==","signatures":[{"sig":"MEUCIQDGMny3uVz4LJDhEXoruY6aeJ9ceXfZKzMti9mjiVz2HAIgTrW+nraQQ8n4A+6XXJTFcr5+jrMqvxaBTFe5U20M7RM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57577901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfXxkqCRA9TVsSAnZWagAAD+IP/1AdVVsrnrZymh1wALkL\n0LZkNbVJle3321wdY+yYT8QW6MYDv5ihCdP8bPZcgBHSHm233FF6H1l2or3E\nYjU/CpAm3W1I3Ruw8CGN6HDRKFB5IkhfUxtYFNk8a4VcYkNLnYcsrmg9DSsr\nbl/xFYGhrVAuuTqtIvSOrrkPyP6cd67JPKrmVNgM0jz2wtwY8JZrFTFUUCwR\nFGtoA7ePs1aFRwzxSlvwa+B7E2vTFaAFjT3JrO1rvhCGMuesKT/aTkLcJuKu\nhlrTtc1B+XDMR4BkZXCfo9+pdwQmnBwAGzNErWh/+rqxqXwONP24qCLg2AhZ\n/VusUJCSSPGx529uNlQTLk8Nbxfl+x/emKiu/+sdlYmlja8UahFLRXfpwFSC\nV+GE5ZGypIZDO8Iu7xvvhW9I/1vZQolW+nWhd3qx+kUN9sdA0FMymG52hAQJ\nI90jrJ+hODhr9do7Su96S0ctds/9jV5Y3wbZOM89kJNBAEMmZTTs9mBIuyp/\nHEW19ds4kZw86w+UHDU3QJ7C7qLGIn4QPRlxbrT8QYj7jq4CKahAY2ibfJ5H\n/X1YdnypPRu1sb/JMvDEQTUZ00GXnaVI3kB/cdxQ4vwRmYUkK1BTFak7gzdB\nCqWF8DIFlykOWH3lMoZ+PFybKvFKM+cHzU5sNFABbCwTtersePNzRIkJTfHV\nfl2x\r\n=1o76\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e9d2aa1dd2affd0623cd74f4d22d1b21a421b5af","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200914_1600067881460_0.4392909788801822","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200915":{"name":"typescript","version":"4.1.0-dev.20200915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200915","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e5858a5a0326641acb741cdaab9d67f8a1a1a0e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200915.tgz","fileCount":169,"integrity":"sha512-zpey0vRjTtubK9FnG9AHAiOeAXrxrYUUuPuUisEegnxM/WwiYKx5P9xaP1lx/sMExfzGlQJd0kKq9go0dNLBGw==","signatures":[{"sig":"MEUCIQDdt5d7zOTM3yuj1IEMi32fHTcBFQFozUWXl/LUbtrKkwIgLfYbdIdotUDQLkHdg1FnMxHDkMWKnsWa3UsALI11oG8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57639928,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfYGq4CRA9TVsSAnZWagAAQ1cP/00EHNujKKq8XAFz5LJP\nI+/kiDAOkXvQOPEOIIfIhsb2bQ8F4rIec0CjqM8BSVkpHhOfJFr0+VkABIU6\nw2ZQSCwToc48jPZerF3MTxSdPknd4+Mkn86besDqnPUE+KMHvHx4ZyJePKOT\nwtcm9GGSRUNt3vUiXYG0wDESVOE2Ncf9wbmRbZPkLNw0fBg3XTJQYkcpF9wW\ndbTQzj8x2/IDLI/t5dTBYlPK3sPLJNWT2VXHvr0JdVS+bBS2aTexczYnFU4H\n9+1acgdVmBVdZjuBvMDRiAxarEsKGbFPQ+i1cHRwsTTdlKqmflqRWb4Duo2R\nRdtlAzlQs/OdRQLZfF7TyOS8WJAQHTtftsJ2G9K4G56PmEoAzjJ082HgHCxU\nTk25zCGNBjAgYc6uYucubt1ObhbfjbzI+IbhqAyVqJfynxz5nhj5h1OnzP8X\npFkxzIzuTYMPmkxs8CPGNaMzh18hcUUjXbJlCqKd8/MNAPtz4Y+xrJHE0rpk\njWIMX6L90jhtcdw6se5sx7t2P918JQzGfZJopsdpfI+reAUN1+5FJtlIADvt\n2jBdB8jwZBZMQXrg5Q4rkMuQ7s0G1KUNDTkmigZMdBrnflPpU5h8K0pfKZyZ\n26LcJ2ERuGJJTeRUlgNs/qh531I5Do4L71IpbDXI8VoURgCybA/cm+rv6meB\nZYle\r\n=A/a3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a8456085e322bb23dbba8eb0eee3c7fbcfa38102","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200915_1600154296114_0.48784101902218535","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200916":{"name":"typescript","version":"4.1.0-dev.20200916","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200916","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2c803a39d9335086033009903b03e7e53e39223","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200916.tgz","fileCount":169,"integrity":"sha512-ly2k/AZ3AyfIyLWhBSnW3x7aDufIS9uNRagFZin36jXb6DvZEZwtyx138u8iSvtKE1AV/VNyWLLBkZYojgBM1g==","signatures":[{"sig":"MEQCICMDRI7j8oTmIDh1B/WDR9FhSRAeT/BuNdDMA2d+le9gAiBLpv4X8TJg7YGeMLf794IBNrBcKTj3CcZZDXw3xIeCrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57641963,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfYbwDCRA9TVsSAnZWagAACa0P/2lcR76TbkmLOh/jgHpw\nyC/RPWuNWAzdSvbugfUjQIE+wHXVy6wekcHUU3cChByt01fjYBfZnoCgzJga\nENq4Gfw3ciaFiS8dgl0xsfDp/uwNmivh3omuMQBTrBFGtTe00E58pcccWKi7\n96PyP5gvcJ1kV3bMAhQ8xMV8xaX6VSaPfcZ7GzBh35MHOXIFTQtqoSyKcZXT\nrC8Rwxize1+u4uubrmE+sdZlH5p1Y4viNksNu20NIVjivpzIXJzbtMOpdEP/\na7gAppQ+TXXdXdLOMAbmdP+q5dgBilVnQEqje0afcqxy8FtVsAbEevHRGrdo\n+V2R00X/1Rk0rZ9KB8Fvqv3pDIt7A3VN6XcX33+xpYPkJ4kSMQnidtZjRHWe\nunyxxvY/3FLVduP8PUWjkK3J1hG1rUxKbBj0XDUEXefjaCnqY88lgo/T5K6y\nhdhMllnZ066lCXOlr+97SsIPupiPMcFN9+iANsP7QbemcXJ47CEQ/IID5I5M\noYefmDTEKxqOQYNrGDw80OyKvmTAHhkcQlwUniqD6XAk7onJPGT9EuzwrlKd\nH3hvIj7nTzJLVrEH0d260a6n2QmlR46JSZkx8wR/lcpV7s2NAt9OHhrV+VVh\nbCYiXNVsn4HpMbk4DjOsG09qnGILqBqNi6EMzFNgkmAJ9xEJkuro0Wp3opyh\ncgCr\r\n=QAra\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a5babe1c8fab6008559067218d3f5ab784fc85a3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200916_1600240642932_0.1871623365906494","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200917":{"name":"typescript","version":"4.1.0-dev.20200917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200917","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d54495ab06927bbb0b4b7948d946508f1ec6bb5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200917.tgz","fileCount":169,"integrity":"sha512-JFC1mpfYnDVeNE3VcV+Vjb7lu0+UVCV9Dif2sVJnHMD11HGfP+zvwfDzjpk/sks2d0CQfWs4j39+fn0NJAOBtw==","signatures":[{"sig":"MEUCIDhz5XqCBFA5+AB9Nh1E2ivOiQeQqNq9HN75fExJuF8eAiEAnyfGk9S7l4T1X9Q8BaDAaTYTmuhz8XAUdgJ6LjEZQn8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57641891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfYw15CRA9TVsSAnZWagAA36QQAJVESuBWTOI9H2SJX4W3\nzKhD7ua8apNGZtMW6ww5mnVBz5Gry1CwkHI7neq7vkI73pZc2+paphvaYmNg\nwnfww5ohK/uSLFIJTmbppeL+gx14I6/YbZLJw8hQjkJo17ISgl9Khsk3jokO\nJ2b+zC0p94GYZZbDqDwREvevtke5P5P7eJkihtfu3YJrQj2seAjrj+/IPzb4\n5Tvy830dKJ4eNkhtoDBM4ulawndRsECtiLD3a8Z5qHU/b82FRc3UMqGbwl8d\nQz/U/W32Og1bJi8VJ3C5uBgx8rL7cj4lpvQQNZG2/sFPah8FBYgl5RYybr27\nNYxDD3uRQJ9Eq2zkIAIOU8rmeozvrqNxe74k6cxvm5IHQjNN5FBITHEl+Aqe\neD61JdtY5EfLPlgfgpwS0WH69xiH1fG7qzl5ryPkA5DwfC1y3hLEPL84SSDh\ng/DasRPwxJF3MxGNpWVcIUpPbeFNFzt7nf8vsk/zov5Al5fdOAizJqpRS0yc\njA6iYSMflxLKi4HXj8/GHkB+fbPBZPLe+eJjDVECw34rY5jx4xkVy/ngMnlM\nvSeIoe6NMBqCqBG6ss2064VYGchNodNmdjuAgXQUIBYKl9IIOv0nROtlkbbd\nA8Fejd1YTZo5Zy5d0uJNvS/2if187vl9BosZgP+VpyTHis/Z6ut/ljixROZl\nqE6m\r\n=3E8A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"02f500183956d403faaa4260241fa9cfc0470335","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200917_1600327032030_0.6705544690837932","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200918":{"name":"typescript","version":"4.1.0-dev.20200918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200918","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b00beedf2da8dbba09284085114e77bf8f329686","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200918.tgz","fileCount":169,"integrity":"sha512-cEcXJvz55OH3k3cmpMYoVfqdAQ2YvgeccUmccmleUnQ8VqR8T/7GI761Qky/vGZO/VhiU3Y8xJF3oLkAkNrG1g==","signatures":[{"sig":"MEYCIQCm5G0lfb0vlQvEza0cCct60UngnF/C5Pt91W06Qj749gIhAI2pxrfxgK7+oZZJb5CJaCJQ4x/d8KX0sKozf8J91wUu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57642271,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZF8dCRA9TVsSAnZWagAAoeYP/jfbiMz4iiWtJlH+sgfm\nlJdM7mnZGejWnhdY7pJhkwbikOWQJLLa+XSCoAAjXiiJithMXJlMphw+r1A7\nu3uV75leng1d+Cu/ie3lJ2YK/tDe4BAnzbZn7Q4SVBVJPY9Z5jVVqPcTQuxr\neziSRxLNXK1b6HjOjfeQwAMals9+Rv2hn/AVn1DiffE32LylaGhEMfe70+qt\nPsEa5S17K5qwX5hMhjRQTFmnpDS12EuhZQ9R0lxm1movqmKidAWy7lJo6+GH\n4OSeRjQROV4hbORKiOWHPZy5j5mTwBBBPU+b1CrASl5GRe7QaHJw34HpDO1y\nKbAMyTvlvm9FGEaFLL1ZTjZEg1uV9Oqj+hxgwDa7amyd8PS19N3tHQLNw9pv\nAi4zqfvxoc9f423u05sQo1e5GZLpUJXMaVdL1GOGIL8ZMhdAAtEAzhhUPMdK\ndbznuIJE0/Z1sZF+VJjqICdy1TcqYGOLrmVvCD4IJMJqeM6vJANoXusOnr0U\n8k8QxPEkx+/WF9EASoFCqSOvjmUhscnHW/nMjCHcPwh+01Qp3uxMnQ57+i9c\nEbkQPlw+egJh9JbLZbJ2ahVJhGhXqMeeGmXNZ6mZQy1K37YwNRx+3qfMqDMs\nsf/WbbsVdWcGaCXRGrenL8U6vZXYhSFL+T6fmUW0g+gq7w81R6rIV+JDQLBk\nUh2r\r\n=D7mV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0c08138490696c8fee4114f1a8dae0f74caa4715","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200918_1600413468224_0.8485720296333468","host":"s3://npm-registry-packages"}},"4.1.0-beta":{"name":"typescript","version":"4.1.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-beta","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e4d054035d253b7a37bdc077dd71706508573e69","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-beta.tgz","fileCount":169,"integrity":"sha512-b/LAttdVl3G6FEmnMkDsK0xvfvaftXpSKrjXn+OVCRqrwz5WD/6QJOiN+dTorqDY+hkaH+r2gP5wI1jBDmdQ7A==","signatures":[{"sig":"MEUCIESZ0dx1rDxdjy49o/l4fcPcQ0qRSVdYgi5AoDOIsHjRAiEA1BZ0u2l2UkVBNcYtnoGsD2RGIYNxi4prE5ZqZ6dKl1s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57641783,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZQ48CRA9TVsSAnZWagAAy9EP/jY80rTiFV0GGXklzlXd\nvnXyWgIEgLRZRPCFOS/shcM4v3EpzycUeBrRC5K1PfFKEF9jjTV6vBv9IuFI\nt56E12MtIhZ8/JV8iHQSDh53bWODlsk/3OeITL2MTDzS1y0dw20KH2xExQwg\nUqE/iSUrIqGkSY4BM/6uwGBWRV46wBB5ChSMsyk5KLa/84+10W5RuQ9vRwjY\nqfeYZpp6B1lrA5/wvYz+wb7orT4PCfNvemZSb4uhHQeZJoJoohByO4I6BzwC\nNUceIexzAwKv3myfMx9uuT3PKjVildzT65Pu64i/nWKOcN/5NNSmN3Fs5gk8\nF8kXI4Y4jytwVErtrFTIzCg0pcq1slLPbvTBu3IeQnd0G1irmN/eyY9qEC21\nbbOKwA1MON+Ho2/x4j3Yq12XK5q6pmd6I8h88jt7X2sOEMCO9T4ds94Jowq2\nMmxh/6ixhrzIPtcDYdtE18nWwUdXQ7X/9gc9ONTwe3Oj4uCYkAhfbz8Ut9N0\nevz7wynx4ds6CEZ4UbfiSZrFE/9lMeByYWHxLlbNT2frb0hQoxVQACybR3ll\njzI1i8nskkhPN4ZCW7Uq39sVHl9qjlnxDtBwv3PTi9aJxVowsueS64odvule\nTuI3jUB8iqXh5C6GD2/x3AfcEXGF/QlseuE3w5UqqnMclQnksgxcE3GZH7fx\n3fh8\r\n=VviK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-beta_1600458299567_0.020051050733014275","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"typescript","version":"4.0.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.3","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"153bbd468ef07725c1df9c77e8b453f8d36abba5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.3.tgz","fileCount":167,"integrity":"sha512-tEu6DGxGgRJPb/mVPIZ48e69xCn2yRmCgYmDugAVwmJ6o+0u1RI18eO7E7WBTLYLaEVVOhwQmcdhQHweux/WPg==","signatures":[{"sig":"MEQCIAxFMmfVKWVz3pCo+fLmP1+9+QcMVPkf3v9kjp0XTFgMAiAHMbUhKmmaTimItJWURqQi4RXs+mzxoFFVWA1q0OM3vQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56798637,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZQ8XCRA9TVsSAnZWagAAXegP/RglroNo8wLs3izuLQMn\npC+TPU88vpAa2XKb0rnUiZ0meomVVdpKrndxP4xn2/GDyY+CVil8sJ2jxKjj\nX1roZGx66qEDYADEZPeQvmEhxSaR6cxKpfCRh8QbcCNBaIZlRUe8TlfbmD7D\nh/3WSc7jbAkGHDn3SKIgC4bYvFPHFyRTnz/ZAIzuY2JunrOo5hSABdp0xHII\nyTIjqSDCeaZP4nGZXegjWAbRSc16FnKUj9XFrTXwUXPY8xOK1QMhgg14HyuH\nwxqQOF3hDCQUCkO2tz/1fr/3YpnIPTFHdzVnBPJg7qXwxrvkDh0Q2p2y30vD\nzUBceCKTHFLzcSa07UYFcGhlXN3s+vmlWK49WQsPS5hPwZHgZEnXLFZ+3hwN\n+5esLAUOK/nOW0vjno7p4hFoMWZLmR/dzO9mIszLCzrN3XvzEvmXg7ApBDx1\no12iVnhD8zElvGnW7p4j+zBDNtNZQsdZq6z4wYs2J5zAkpLz1UTTutsW/Luo\nH7SSNu3A4PT1JTPTQKDy7o7lUZ8F9JIPnHEFbixI9BIdpAkbBBALAFBK2JOr\nJugbdxyuhtOb05IPd54T1zCz+V1irRh4Q7nioXxpiCfbadQtSTuTJ42OiSjy\nmFKPIwrWpp6md5L0MfyOH/j6SsaT1mmAH7sHGDS+S7xgZRuI4nkILVvom8/5\ns5Ga\r\n=GHov\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.3_1600458518170_0.969322343129873","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200919":{"name":"typescript","version":"4.1.0-dev.20200919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200919","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e9c07ffe89be61f8339561a3e2b937dbfe76328a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200919.tgz","fileCount":169,"integrity":"sha512-idW2yjfTvTCWZv5PKqoCjO2o+/ZsujUPUyGf0qPXNkPdFUqAGAs1JR7iDhzerAP+w7KzELIhgcRBDgBWX3nKaQ==","signatures":[{"sig":"MEUCIQDxlmPdtjHHlTQyeOrxzXgpPTKFvBgmB55HsmmFTLeuZgIgS8ifS5l57GSE+hy8OfyAxORj8426oBrgV4trH5VaBLo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57643291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZbAECRA9TVsSAnZWagAAw84QAKE9QWBCEHZaMRodP+kz\nvEpldZYh7XN9R35xLYtzu3z1CI+wFSBd0hQBCu2FTHRenI1o8a0hGxa6pmap\nnpSeW7RU6ZFHswOzYc5GZedCOpZgupSxapqPTlVFusuPRR/YVAon98mRhSSH\ncfGpYqKUklk7b7dZYRsPt0ZH2HWkX66F4wZ0bKA2CdeLfUdtY0HFUQKqataS\n4dBgT6RITpg8L4oOk/UKlns7OVa7I3IMLN9PYR5aMSeT1714UmyRTG7fz1EN\n49MxLxnMYkPRzIaaMTRJUcqROiIxPjghdQOZfpyGVve0BYmwEtNJdjV2iqYi\nqmtZDSlP9tIRHNIfddMeHhzG887pdBNH4A1KUFaaQaK1ioNo/+kkEkVBtH6X\nw2qhDvRKWUa5D6RPJo86K+6VBAjQhS3ZD51gJ+ojbaVUK0HLUWebwqN9g8eq\n/5snQ/3ZPF8jP2mwDu3NeCyCmF95w9S2wzJ7BvhqlcJWEBSj/UsdDXHGBuvz\neif901x8dt6gk3neTCPfC0ziBWi5CEBcY8Zo5GI1lz8nMeCG3hs9muBeanyL\nOV9t3s3SM7MjlxHvYprL8BzTydbsPsEHgqdjyWxUISkRfuvSAts4ml4PWdSH\n5dDeWKQ081sTPicb9NcOiAruUswgvnvVWiHo7KeNoZ2cUtIPsAGuGHsAxdL5\n56Sj\r\n=2iJ3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8cdf5a20d949216837c3d6d7d13619b726c4be27","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200919_1600499715817_0.8988994149834209","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200920":{"name":"typescript","version":"4.1.0-dev.20200920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200920","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"10ee53b47d59f8f9f5393923af2e2afb77be7faf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200920.tgz","fileCount":169,"integrity":"sha512-bGi57WKSfaYS4FefMMR3a6CcVAc/bmyx+df7EILzSzJk1gd9GSkT/9M2vHPyOEt/IjFBNhyOCB8hQ6PrQoqlFw==","signatures":[{"sig":"MEQCIC001RmKEpdTdhiDPpL+Q6UDdmGPkCRzV4nZKFggQFsiAiAAlQdRycCUydlI8D15BjgimxTF3x8C9otChkl5vbT0jQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57643735,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfZwH5CRA9TVsSAnZWagAApmkP/jblYRMqVcy+0VHZq5ae\ngGrXigHxJMgX6iOkj1NQarXmHvPQkoZFO4TP7Z8b1LDzszI1RbgvQZq1qLhm\nm35D+EYUAlH8m+kYiu6h+9A9LalAXyXVjX5d4ybMn97Sm/GnIhcxJHMw+NVf\n+C68a/DPPRFnbo1Gxtq9ZY5gnR3RGDfRxkHDis7uLQkCuFjgstILkoJ2mndo\noN0tY4povMjQdYIugjOgYSDW8T6ngZQlb2F2tGuAIP8n4/wQh+CJtGOaMMd4\nKIjUVqJYtOZtDLsfwZibXQx+Vve//Rvc28QQB4nil2uyqv5RzbiIwLc6QM0R\njJ1SFr+ed7UWttXmn4XMr/uVkpPyIRMEEnhHTUpuev68JWTsmFUkAILs1D7j\np67O69Oz7Dmus1XUNXP8u06cjvkpAaXr2C9cxliiaQJ5KQIFc0s9WV7FUPLV\nVVCJcOnv/BvILI/zCXJMU4rMFT5jBq0beExm6hmRsaynbEKT5Qzq265ZuZt5\naNq/4d7LgUjrQmMBp4yvSqWtgH4NEIF5puGl8wk/o5fIUKnXYTq6y4jEoryi\niNgINSKqQYrqdGqnXZoExsmYZbmQE2/N9YedHxYhxkNcT5sRox7syg1BiEHR\n/vkxRCU+y+QawFA+sZfTH6mBFwoDs+1aOkxe85SRD8Kc8vtf1teOql4AvA7s\nskxQ\r\n=JtWF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"17c7c261d429cdc0ec3f957eb7f342a852ef5fd2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200920_1600586232618_0.27626360651567805","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200921":{"name":"typescript","version":"4.1.0-dev.20200921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200921","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dc9fb6938b046a71cfbe09b3cecd420ce8414910","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200921.tgz","fileCount":169,"integrity":"sha512-3QUfGlMtdcNEj+PzW8YrM9ERAF86BCyUfAPhRaA7ioTGCpXQ0y593FZcKC/kU5axwIIyiMSloMNbkm6X+Mf8BQ==","signatures":[{"sig":"MEUCIQChO3C3ncOc+tqSCZtSbwGnIpxAETqWz+QjHP3pmxNwHAIgYIqgkh8ruh8pNBRB89xlL3zJCSYHd1FysnWq91+eAN0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57643735,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfaFOqCRA9TVsSAnZWagAAvsgP/j8gutMeealXqNLDypGn\naKYQoiFcPyPd0V/KuG2Zn9h+Q7x2TMbH4Ud76/QVNJ0/2UXO/pqx03cpY7CA\n8+t0Nf4WJdKDPKhgMCvqMSCfpzdvG7sce5ExNkM8yTXYDiPJ9r850CjrcNOE\nDAsque7QYT7ER5cZ541kYUs7joA4x4rBV8SbDDnnmk5UHfSaXfht6rvdFMS4\nEux0H1ezMZXgh7CGPWEDTJFX8kPWX+v2ceb54xvOEDi2mxlmzyMlReKEFLFQ\n0OFxYmc9EmmjtvcnCB/crcjypPRqsq/uI1QbfPpqdjxCRQJCoC+QCjtATqxU\nCBkMdI836N0si4u+CJQX/ckraPr9ezGVkacXe5+rS4d1uMY03NTug4EPld94\nkDWq1IJI5IEZY89jPTpu4kzBGiDsufpu0WBlaWTW6r6/+HrmuWJ7YWU2Q5O1\nQ46i9bcuyN39ZsYyF81IpNn3DqavsyzLe1RwWiCVcdiiSYzQM5jwxC+bANeQ\nVmTfOsA6nkjsy9zitdX2jvDwi3XhY3urcs1/GsO9U/AkcnsNw6bBpwOo6y7Z\nqtwYZArX3/glEDyGUvoR2yJS+jHetlX1fFjktqWh9G+2A57BwGUwClM5FjYe\nBtdzb3OiyxqzkO1eBiUgyaDr8LIstrsTza4zQgr4G1vrQkehBfV6FpdiQt+U\nlxsc\r\n=7Rcb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"17c7c261d429cdc0ec3f957eb7f342a852ef5fd2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200921_1600672681478_0.1468265382588292","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200923":{"name":"typescript","version":"4.1.0-dev.20200923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200923","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"26ffce1a4164037f46db8294db8a0c3a8db96d91","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200923.tgz","fileCount":169,"integrity":"sha512-4MEsJhF6KD9EYXGccE3+lVhePiBiU2HKZSfW4VTFuDhzK+oli/sOm73fDEOfefZDjK9ArvJ8lJr+MDS3/NMyaA==","signatures":[{"sig":"MEUCIE8pIvnQIvj6Mik8AZu/AI/c73crgZvDd7hNjjbbEuCMAiEAgwWifqKm3G1t6U/nzNaG7Smrh13hj/8Ptpv5otTeLYU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57725134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfa6PSCRA9TVsSAnZWagAAjfgP/01PmzAcsA1+zzkLPqV6\nqqlSXJ5oV2sLHxFVXWfJEdCUBhsG8MeRNm8nocD/q4EhyaDt1h41pur9S4YQ\nlxQwGG0Yd0JekttwFKiNQSlk/VkZZsz4+6ufk6T85xjdG/8KYRQeg/ZElhx/\n0ZVN0xEvR2ELiCJdHU4xxziigqwQiA2jsk7xYoNTLlQrFOGf6XWya44SdL8D\nhUCxvTSKMTiKig2dphBFcPVl5if+m6hrgOoKUWbMtvbANwN2Pd0qRirSwXR4\nAxBmAukFQHC+WlGQ7fixs5m4b48p2YhU1JqjVDUHvVCB1Wrka4C2V6mmFKiY\n49cLKxu08OxZIcV10EMSX9zeStnQFRHi/zz/TilOCeWFSYbkIee+tgUwf4/e\nmcczX15Bl81nADTTEcQ7Da3KpIuV+MQQ0/8et0MS6nh4T/L5fVfdBJ8xa+X7\nqxys/YPOUtqKF3xE2rgQiahLkLpZgyKw8QDvyEQp+3iECbc1YHIJ16Sg+VWA\nVVspxlVg8cQkKGbXFj+VZIwmqYmFDeKf/xORiHx2n4DXPuxlQga7H2Ubljcq\nVkMerCugWvkq/Uo3D3VFZueuIc8Ar/zsuKz+tgNup6q3/5x88fTKbtLJz6Cg\n9vKzBdJ7e7JOv4SUlGCbHEKnhx+Ohd6oVKRW3F7+MUC+aHPclX7Ozp1iZh7o\nXw77\r\n=ZnNT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5305e4a44e4e08c911d181e207602bd4cf335ba1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200923_1600889809824_0.24089681237087657","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200924":{"name":"typescript","version":"4.1.0-dev.20200924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200924","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d8b2aaa6f94ec22725eafcadf0b9a17aae9c32b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200924.tgz","fileCount":169,"integrity":"sha512-AXwqVrp2AeVZ3jaZ/gcvxb0nnvqEbDFuFFjvV5/9wfcyz7KZx5KvyJENUgGoJHywCvl1PHKasQKYjzjk1QixnQ==","signatures":[{"sig":"MEUCIA+ynXak61IZ+urumO7yCNye8SA7PVHAS98lJgJ+qCIUAiEA+33e6qSzeNQSMXDAp0frSBpX2v5L3UlQJjPLxfqUjwY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57725134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfbEhqCRA9TVsSAnZWagAAZuwP/jWOgzRIn1c/WBbUhkII\n6+444WmQ/zKa8QPoL8VtbT1cTMNFt2fKCpxYAkHowpfA1kE1eqSAR4n2CenV\nytyEfYcyYyesYxeqXNt5zw2q+cKbp0sZlrs8mtyQSQf4iMEe9b3UZP64dyMO\nlmg7bOiXW53QU1vlcr1DrxjEt5mqOUTtf45kMW21B2JH1X7fWcgik8a5z2BR\nX/Dpy8rhjElN6gOy/5e9cAkGYKICvcRBwOY2CPPE51/DXM9TUEczTfEerndq\nOh4PjCZ37K2n+HJnUg281x7pEeyhM/totOOs/mef/AremtR7SL912vI3OUwV\nNGn3pNzjz62ubXOUQ2VtIKo0mLgOgwNHc8ek0PnK5WZwvSkZLoeTOxkj1tLj\nRwWY2FYF414oF0nnf1ZBp+XUv7T8nCAppw5jIb8JGkOcKZrOMmA2AXldRSLE\nDiZP/Y0mqNCfP0MD4ZNk13YrnMXKsgD0KeabM2bDBXzhYufZnLGmjpSxiG4+\neAC+q7itVW6MoVJ0Yi/xBSD4IKAA9Vz51bfUK0E1LQvhjdqS8WJ1AY6/RDko\nA3QRVMQgSg8Bb3SsDbIG4/dnw0EXMbQho4vGa9iTQdwbneXW0lh/fc2/JOJz\nm91YlIzd+7ehWpylIwKm0in/y1nnUpjFTM/vGV0IkAGEBnuYeoYmT7gx0jrw\nr6PC\r\n=hihm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5305e4a44e4e08c911d181e207602bd4cf335ba1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.3","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200924_1600931945220_0.18985041706067385","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200925":{"name":"typescript","version":"4.1.0-dev.20200925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200925","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9a7b9cc480554694be7ef4bc2a6da4a1895e1137","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200925.tgz","fileCount":169,"integrity":"sha512-6WOtU3qUG1meNUbfQh1s1w4RbpZ6vyB/9neOk4LxOnu6ttN5D/nKCujBiq4tlbX8X6/8SOzokCxpITGBYBo8CA==","signatures":[{"sig":"MEUCIDeQA5SwxcbMmaCufupqiZx/pYv04g1raf6BSh6T04GVAiEA9ufZPgrA8AJPzZin+F+Ehw3GaPvZmmDPPiUVBg0tZig=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57735271,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfbZm1CRA9TVsSAnZWagAAPnYP/2ulbU9a16cW2bftaLBE\n4YjpGn2yLN+agcshKop6nrBZBZJObqFhrMQJ5POTEan9YlTQ5wDH0Mr1jiTs\nKNYAWYRt7h1tq/Mrjj1XuBJAZtyGbeZjQnlF7ceva0b3lEHdBT/lEnMpG9Ya\nvRMJKW3vgBCmpqhedkvLhemlQdRQHMCueRhrP5G9WbsslihnogtXI8K8WecP\ncW/kLCmIN4Jnkxe3JrnKJWwpeg7TVwhN/6URKG8NTFzp5vN0BNBED+s7KlQ2\nmxGK3IErfzvh9snzJt8Ci7LcaWDfTBONASIk++fX5uqpSYLka0pXnlHHe2fT\nw5wA/l1kGLesYwNnEkRw34txpxZuEPs/CBOTGYcumZ0anaBa3x6hdc2yLHJP\niMy3a7+XcqS4TSQSC6I/PsCE4hAgl99yXyvW2uWzLxGDyqVtD71EGpPLHmc8\nRLLBtcwxiMrhTFatmta5MTFT+r1U1eCgTL6iUZINxKViCyeYbArSjcisYHd/\neDRfY5+HsB3kkSFnTjY0QK0+kH4xRp14Q3oGpgqIp2w0TAu3kfgRXBCG6jHT\n8K5veEEm8AAQYHAOWG0q2x5iPL+j5jrwN0jzjOuIe5mCeMc8XT2YOOBerWfB\ncWZKP5DncowaUqA3bTeiBFjS5GeHoPOYCTY+UYpEOx78VWUnUsEui0sDVoJD\n7BwX\r\n=HZE8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"62a86ec255dd877c466b6a243eed2ba0c7669a9e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200925_1601018292783_0.35257770014387657","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200926":{"name":"typescript","version":"4.1.0-dev.20200926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200926","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6eac916352d900e2c17e8e45c717a563c24f569e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200926.tgz","fileCount":169,"integrity":"sha512-9GFMaCAD6OXyXWTOS3SA8v13jbtNn4+qOI0YUnxZ+ZVYZW/b15qk1xP56VRqO5Ifs7a1VG/T14Yp+jwMvmIvyQ==","signatures":[{"sig":"MEQCIBxHb+0Au5rsWRksZ0NNvy9FoF+2XZDtVnTcJ1Thx+6hAiB8BTsArpRSIFrbD+6/KTp7DgIWwk3Egsqf8JLMxElULw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57738190,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfbur6CRA9TVsSAnZWagAAWmMQAJESbS4yhX6eEPIfjlaw\ngRU1Y/N28MIr1YcMY+3JNeVRWqeOjLD6hmhdYwTWP5I/Q8Yv66FrvBxIS9zn\n7iDXaLubrbQd26OtrkCk0yqnwP6FdQO1eC1WhhsU2EaiZH5wmx9j9+cf12Kf\nizV7rYG1Y9OT3RmSICKX3gNcU0N+f4+X2a0gLqIk7mTBJgid9vGFZiVUnvP5\netKlR3lTcdZh59R1TiyjKzTfNBCMxv3vvTizsP425QGbJ8UXlnLsNxGm/HO9\n3xW2IB2Etxaw57cERblIbNDGrd+mm8dnw0oJU4TfquOToCdHjVjVslL5B3sF\nYeqZYLDem+cr7zGJkf2tGp2tByL1OvlffaSj/MZ5MFADb1c34BJxXwORwNcD\n9vApTjpllOjMOwAT9JmGUlJRofTGvbeZgdx98X0uOb+tdrZX0YKeI21IgjcB\nLgcdzOnYKk4EGHEMlnAhHsfVopcimH9EsIR9lcFVQ0WIoWV2PoNcM31kYbuh\nMpRUtiYDywm03Xvo9e1V5xJBQrXfr8omRmqxp6NpPDKneE5IBNkCAdECdonu\n/4EpjbAsCtCvhjH7bQOcmGaFqyarvY4rxu4p22uWzYO1m1C4cxZGWR3gHT7U\newy1gDircV94LwOOYHvrlC+65xbgb4JHc182IOTrevX1ViLLQQM2O385qCaP\nCZiY\r\n=+E9+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2a4167150fa3b07a654d4a01ccead32a373b826a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200926_1601104633709_0.2243125567748847","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200927":{"name":"typescript","version":"4.1.0-dev.20200927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200927","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1820b13d3db78a19fefce00461f7e5b28146f9be","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200927.tgz","fileCount":169,"integrity":"sha512-wMVB/uCTx+dz3FNXn5OIgPu1P6ocfkjMR5+5WSscVTPvg6U1vvy2q2dMocE9goHW8Oa3SJkoAihl+MjsoMskog==","signatures":[{"sig":"MEQCICJXFvmxwWBtQwl0pOqoEMzFgT3mllNrzQMV/g5eqZIFAiBAwUujgWFnqssEWo3L+AvpXExAWUm2JzjOFgW+nWiAxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57738448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfcDwICRA9TVsSAnZWagAA6E4P/1+hJ5ELhkwjP0Yqvp+1\naKrNK6XzwSRUtwBcxWi2Hsmj9enO/rNMfoa/JP27KXs45eD5OgP5sfagB5Tw\nPdag/BI+ZPYvkhsuVjek+gl1zHA+2Ea39rY2VDNBmUI+BY2a7DfRLAWjWfvJ\ng1hXPXAL1YYRoPbyoAmwRBWiOpaOFUERC99QQJZ4GQs2DZ2t33/L/qBHFGNw\n5n94ZQgNQNQTWuOF8tSLvS8Kb9qLuboU8I/SanYE5ptpsiunjxvQ/ft/ajH6\n+S3ZyaZwRxGfFHT8kkcJRnJ49KoHdNQ/6Pqz3i51NqI7TgEoBjiYozR9RW3O\nqJww/9ixDqtYvx++OU4CISi5CnjYt96onp3cugXgBPdfHQkCBm3aCSgSP/nw\nwTggBkSubV2JQnrpYqUOribi6h7evsgTwCbVIX88h/jjz1eizNzH05Ztc5JQ\nInpetu8XhtwnBVrT9xl7Sa0Prk+s25uSeNA3mhBBMxPI011zgGOIBDNGwS/t\nIYqPPdgYHjJNfLI9OhcZXalLQ44i+3vXEPqRgQ+MC+r2/dlatPADBigF5zdB\nanjBkHs81HlGNMPFfAvpOhZvU15abq9I7zBKBtTNqOambvKRADtBwmiJvD1+\n48SBEP8pHvzqHNZY6AwBi2J/NJC/jIePps3XU34un7ysKZWXsbhJvZuOokes\nDUVu\r\n=1+vh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"88c24e6b0d0efb868088ed6da359ef55e6f1c6b6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200927_1601190919654_0.7411956216139184","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200928":{"name":"typescript","version":"4.1.0-dev.20200928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200928","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0a99b6d52dee987f699b5a2a482b818c16c3e293","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200928.tgz","fileCount":169,"integrity":"sha512-9cmA/XElcRW+jjMhZjMLEDOdjsx7VGwW7hRoUwSldlFW4GSByD7LgRO5XcpgRdPaa6qFM2F8rorON0ThgrLAkQ==","signatures":[{"sig":"MEUCIQDj9bA13aTI7fMXnXbxSTQ9/KInc3d6y7JSRnOKuQH4UwIgU8q+KRWu80gUqnBXqnteZ0vqjY5UkoIwpWfIRX09Ihc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57738448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfcY5CCRA9TVsSAnZWagAAo+QP/AlSbXCpCzaV+kVbii+i\nXkqnW/OWM7BBKOwtj6V9duNKX27PlZxJ42ltwmx4dfxHVda3JrgktA/sSgjM\nSXG9lUx+ykDlVF5lrVb1dC0D2cpA9y6KxJ1oc5st4qx2DU34fEtuwK4d6OQF\ndhhlpq0XrUzfTGun58INomtq3C+cC13JnhCVp5H4KkQFHDCHVZMDi/4faD48\nJjSQ7GGRlA8YKVdHp9Ob+ovqe96UYpuuiu4ry9b5wqdK5twiXlqXigOopxz3\nlPXz3ncqwTIuIASsvYlKmpeVc9Fe04fAH6TxN3imC5d1ue8GtkjBnOKsIBdc\nbgfm7UfCSj9uQUYNV3T/uc4kCOkQttIRSz96UlHacYjrV2qiaflUL5eELwoq\neEzreoNe3Q6OJPScN7n52Fw4Ct5ShaBC8fokFR8ZafgDKNSBxNhaZp51xDN/\ngzPbueIYCZyBohKloHMjmQVYvS4k/ahAoYSCBS3gI9O+8W3D5BKIzq3b/lIp\np23QlODcZ/tIVvdLJurN+hZtpjApwDKjCXd2pXudYcSbZ1yzMdJkJOAkT+1t\nkPuiY3kpao/rckhBlRY81YqKT17SDNeQHKzu4xSiL6pJvgDwoHmKr6x81Jli\nifjmxhhlhltFAsSc5Ter/CJlv68eu343jPFNGOW+f+Zha6RKlHD0Q0u7MCU6\nypDA\r\n=G3x+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dc4ccc7d41ff9be90a949eb76fa9c0892d5af6d1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200928_1601277505742_0.5347034349634674","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200929":{"name":"typescript","version":"4.1.0-dev.20200929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200929","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ef79fa48efef1cf27d8edfc28cfb6547ec322e41","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200929.tgz","fileCount":169,"integrity":"sha512-l+2kxpqE9hRCOJJvH0SxiO40nN8YR8qTp0pDCZ49QQ/O+gcjQX4Wmbov0KHV/hBAw3vNC93ZI23XrLA/qgbYfQ==","signatures":[{"sig":"MEQCIG6hUBtRaKPW43fzfABQa++AzdkN32fBvPAhg3KWsCQoAiBuSbsgj/cuU3HYxwNB8UoYQzYt9BCyqLrGMeIUF0lnYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57742562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfct+WCRA9TVsSAnZWagAAWZcP/1cipYBxZ8tAldWgVv87\nndCPIFdVvjZpxpfrZE8JiEfwvm1osok8YtqAKwvnj/WhEB4w1sCAF0g/9OrX\nhgBwd+dPG9GbDxv+xyFzuSEfWIZpiq3TGiG3ArUB0wCnnbia4IRZETmeDeNW\nXjAdbslWkUAIuAkr1qWAPFzq2P+/F8fUMIx/ozd7ciPNABidmlfCHUHTC4qf\ne0I71jfr4YwOVs3uHrhVl8xF7+Y/cVkvxv2qRGHkq8sW21I/rBJdnwMauzfQ\n0UXSJV/7If0kDDU5QgXFrlpf2OvBwKFUT1j2mtRI+eU+KsSRvn0J2Pje5JQB\nJgG212XlufVkPWglbYYnAjjiJqON1Q29Yx7pz/1h1sG//9RAwZyNsxDIdPKV\nT5zgk1MDoZc3Qf6IDJzJrkh3cYRnazRPmIFy6XXZeMIOnUhteApfwQgNc0dT\n8wPM60S69UhnHf8gyt5VH+zVd+jfk954qehoREew9iR8XNtm7QjtwR2tGXc+\n0Q+/gpGVcfNrlK5nduFBKTJZnmwgHt8QX01sVVFXxCS8iukXaTTgaWuEZyAi\n505OeQ1Xil7HCCmpNyK5vsZ69+TB+H31ftwesjBuvMH90QZi1Cdn+W8gFJ8J\nuY88WqMly14RwNR/g2+ADWzGTHHUri1u7x3DjjV6pD8/ziueWJY5mf4sD83a\n37I5\r\n=e+2T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7c0f0d2c692050c52921595c58097258276141c7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200929_1601363861915_0.6971190310602084","host":"s3://npm-registry-packages"}},"4.1.0-dev.20200930":{"name":"typescript","version":"4.1.0-dev.20200930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20200930","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2eaea4a6b741d69f650c12fcc7cee759ef20fca1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20200930.tgz","fileCount":169,"integrity":"sha512-zEzEGftnYtgdaY10tVgfWC/mqQG3e1j3dhBWgayPtl52LlwmTRYRIJ+++hXIFVTs/gjvlFSpzOlrTQ98FJqBwA==","signatures":[{"sig":"MEUCIQCOqhTacCvjDFQ5bWEvGsU4guYnDvQZQjQfMfMV1m0z+AIgRNIgbTTdi1vG9bRTo69otTHZ2peDxRKSuvJ597jf8UY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57743610,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdDE0CRA9TVsSAnZWagAABUYP/3KyNDBljXuJ8MChvudL\n1pVtwMKiufn267GvpihGbYEGtL+Bon9TBqNyyVTWx/b2IXhzwQXa/MrK2w8G\nxnGQ/58NiAxN6wlfs3suYgojLJqw0aPflY5wdhw7OegItfcXGgt5p3/GJjwH\nzLYDEkXYSUN+Mdw8Eyulb7YwBwWFQNTIxzny18mpzAMUyRdmTTaA5JSG8+Mj\nMGLsOqu4n/OpF8mqTOoSoRofykszjOWFzFrIBY6dM4JtKEz1Xq4/LZ17SDeu\n2rbdFPYtG0ZP+tBbUM9eOffpcxzseLpJANLAe7q/XSpJMV3QICmorWgSPA06\n552a9OiJYHZxwMl1F7xyDb5u+P7M9lnnxJiptS+ddPXMqVRgBps8aOq1Mawr\nNMTQKHqafaM4OLCQtLq+NlIrzFCEpQAqsGdzse5p+zA2+eqrC+YgfAuhEbSt\nVbdyVXg3A+A/z/aMSOmZzLg1cTukWuQH7UT9/zRC9Fvm/dHBVozamjRx5H/a\nYDiy5C9Bn1DlYn8SaC609Yoe2ls1ZwnowWZxhGXYGjCPMHjSJLAutwBSPSI9\n9xCEnE0eQvvqKkfg2TBWW9IFlkznHLt2cfLhBlquonz6L/PzdFK8EwsLcSsS\nl3D6LQspWvfPgCUHlDd8Qas7Ty2RyrW18Ur06+kCMktWFVIeFawF9AEXQZK6\n+drq\r\n=cH7H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2428ade1a91248e847f3e1561e31a9426650efee","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20200930_1601450291154_0.40819928682965245","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201001":{"name":"typescript","version":"4.1.0-dev.20201001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201001","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1cf3a6f4075c7f59583777a144008583fbaefbb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201001.tgz","fileCount":169,"integrity":"sha512-hdZb0l3ghvXxDiXy7l5FOoI8UHx002S0EgSKFbQWYQOjykE76Oq9A1NCqdJwz9jqUawQTgsNUJYKomnSD4jRgw==","signatures":[{"sig":"MEYCIQCfA9J6cR1hRkFvjL7/uJHILcHfdMc4b/uRQAaL3JAljwIhAK5L3T1+YVttzvPDhQ/zngFngD0NJtime9Wm38Q5fgtr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57746448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdYJiCRA9TVsSAnZWagAAr78P+gKPB5rPecBmgh20GWdM\n2bo36qy6+s27RkOF6dDIOYI+e3ZI98lzj8V4uwKaMYdeCW3Z/arzOQ+Hk13m\nbNUv4oBI09OiBfV8MPthQi6CUNFne2lJvQsLkvMEaftLbHXEwXlq1MmrI7tR\nLuLUHyals2cVAe2ICh3E3/eh4tVl/5W5VEXkqriAzbe9EJOdTBJ7lQVrzQ/u\nIqpBRBBjDQMM/GYW8Kqiv3ZGmzov/Y2xjOUgOGaSaR5ULksqB39JNit8uJUt\n2EmKTI1GLTz6Fq24aAm9VwZw0cuCTUntvICWcAdp+pxZQ+fvjbeMUkU90IXr\nN6dCZzHQ92zjmVOmzQdUVBBYIpuU6Zek1B7tOsYQKYPeM+QrLxO7d40AdnSZ\noXj9R9B37ZaRdhW09Z58tZIpjjAz2e1OPDUz4aHNISzpxxK1MdJmyukyc8Zd\nG0SZPdyqx94WAerFhun2OEFccVlZ7sENB6dHETQQ/IYDO6lXAsFV+oETmvQy\nrcSO6DCA+ccXtsMGBJVKBZj+rHBawUc8/EtIk2oIqmrGFc5SD/Ijo1elP988\niKlD0YnEdDqtRS5qLJfKri+3ZIkrZi786v7dU28PSSScXvb4DT/jwV9mZ0LP\nRyBjxEzBqBFOkepZkFKPY+3ODrJsmN3bIDaIYUJqdUakcPXbUi+uVXcwAXEk\ntBrA\r\n=HAUC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"35111231f7ee48ce0ca08e4c1076d94b7125865b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201001_1601536609836_0.6552654588365638","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201002":{"name":"typescript","version":"4.1.0-dev.20201002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201002","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"848fdf188eaffbf9746366b5f187d13e19b19815","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201002.tgz","fileCount":169,"integrity":"sha512-zgCPK0dJ827FYqALErreXaBrk1uCZTJVoGH4Rv/U1Qs1ueB7zqt2/l+/o+sNQjNyRvkD8PBTzml3OZSQldw+Gw==","signatures":[{"sig":"MEUCIEp/e7ghGiXkOu4zMfV0sRav5xy9Sl+FN/p98dtzMiAoAiEAn8PJRPeJ8B0WfNTP9UtemcO0s4CunwfnMnCqTC3zIMQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57761959,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfdtQfCRA9TVsSAnZWagAAcFYP/2cQBeo7yd5qeycSncV4\nuXJzWFAi5SUqT4SYziquYVECX7dTcxHIRlPEkM/LwdHqySf7jcTiNq0VK8iK\nykapcxNbpV9+/phIMvNCUfBU5wLNeacrgeieNjjhhPT85gsY64gnFygpRzgm\nvOnW5wo2Ji8suu+3MKtmXF36IqFoM3bytz0bO/skR4xgCCqR/WHD4I7nyuI5\nDSJ9Mre2D/p1R9ruVu9pMy1CClCrgCxUTxRHrMF70lLJMCAouDUqdskVSeXO\n9hqms5uwek7lp7wudVoPUa5OOacFRNDrWAfPs6xT359OMI1k2GEkYMrnrw4V\n+hXadtFiEZ9pqWwRnJ1UJOJaoE4+5IgrrhpgPQnyLfCh1HdFdYyyJXqnjwQf\n44yl7FWOrl3LQCgRu8s2KDMwELIwx15uKsPF2eYtHBihNrsB76PKA/8j9kbk\ncAjTsVxFahyfZ/ObqQORlZM6UGRH+N541A5JLxSeMQqPmHDet4J0I+rYo1Zd\nIctIYtL0s2/Jwo8toyW5gr1cdVrv0RRDJbYeCkuzlLX4qg3FJXyXXF4Q+iug\nbklsJ/HJIRlmDRPXy45OnpxHOsIPMa4aaBGHjs4Z2Kqs25Lh3ZV6yuzTqzXo\nJakk2dwC7aWyU8KFok9GbZLZTh57k/kCLfZdlpobQggEmlxz3KM43PPpjRkl\nFBw/\r\n=CxpO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0ba250dc3bf0daface7b861c5ccb6b4b9baf78ac","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201002_1601623070526_0.9213396294816558","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201003":{"name":"typescript","version":"4.1.0-dev.20201003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201003","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20eb11d0f164d60a497dbe7d27bef5dd0b40c635","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201003.tgz","fileCount":169,"integrity":"sha512-ZQGzu72EIBlFSA+Ooc9mqriBkU0lnnRqW8FYVw+y08lqTTF/f9f4xBzGQP3i5PkDOYG1i4bUc+83S+ele/i43Q==","signatures":[{"sig":"MEYCIQCoYlpf/ejqO9A0re6cE3W6kqXhPvtWaMRysreFALz8kwIhAP5lI03VUol7737SahUIpdPS0jBtesjsvOFrSBeWb0Nw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57808244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfeCVBCRA9TVsSAnZWagAA0r8P/R6XDyZXbMvTHhxkiHwS\n/qlYcpV5d8HVf+MWMB6gzOoQfaYIU2uvO/WFHAaowFO/l3/HhFdVwpEUdO/5\n+5z+XoX47YOCxf7aJuIyPo2hjDVGzaIPDstA2cFa6q7eQtpgcAQbn9sQw+I9\nMiZPSIDoXu9QKzVGmVeO5qpCsmGmAQhnCJr/WAn2NC2NLoGDG6etO+E1z57I\n6KfCnOzAdecYKjGbVL5t7Ziqvib0Yi4CNcEvFDgVtODsE6Snyh8cbfDdYwSG\nsBLM+zOn6cMvDR5V6stnZ8JHpjTVbJsa6xcnijhSpcwINOncsGA2wUE+kKcy\nkRyK+R0Q+xZ05xpeXs7gLJ+iWGyem5BZLS7Sdw6TYw8V9UOQnrNUoLeTEZft\nOdgnPfB7dz0hZtJnTOPaULvI3NCCof2Yhep7DE4BOCE9FuIRaWBi6buadTi6\nckp8GuH6+ZHjzcbQct+aTHK501d8jr5C2zb1rxIvOFP2HSuy45trZFEybQ7P\ngXdXhvuPBDAmDhoZ2a6FaMv0fJ5GKK4qhMp2qGyN9wtbsztkmCGz4OG8RGYH\nVM/hzIT+KbOu5aTvpTt6V7gKP1Gi8p6scNzqyDP9lqNGPgys01WNYm+D/zak\nBUi+XIoKA1Tera6hZSTzye7oe/uTyxLGL0tpaVXl1G8xy1gAls9pbOICQYaV\nNQwg\r\n=V5aG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c7c3a87e3ad3b2e366f95c4ca1e259f358b4e2b3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201003_1601709376365_0.3193731264996722","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201004":{"name":"typescript","version":"4.1.0-dev.20201004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201004","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9c709e3fef2d2c8f9e1259278240680df2c65403","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201004.tgz","fileCount":169,"integrity":"sha512-z5Al+nSC0c6mc0NwYiLzVbTc7hW0xI2CoHophrrs+RPr+haObK3Pe4ZAiYXKmviq6TjR8+lqigLZplr8JYr8GA==","signatures":[{"sig":"MEYCIQCRLzh3TL+NzlAdr3c8VW3YdNYbYG+prdBTruRa4/L21gIhAJ+G/wBxMNOrZg/NnbubpEIdys0O06y/YjseDvoyi+rp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57808244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfeXblCRA9TVsSAnZWagAAIBwP/1fsp/XgN7FAX8NXjaol\nuMvlOKWhSUMVaijbz7gqvwtz4HCeFkJsDphkk4sjIo5MJAfERyxCwWxz8Kvl\niTcHD62zJ5mflep6ChEXdWRUizAuehM8V3IObNV706kRWXWZrOfNVZn17REf\nAerzwYeOwxjwEM+xMlld4+fXLlhMAHSNf0JC7ZkbiMYUOyZI7Pm7bgGrY5pn\nuUoBJd86Dgj8bXBtx2p4A8AcFieQNcJCkg2eRQjsRumudOL6e3Wx8pRUfMhg\nLfFBuiByXzm1T4UNohpAmi81IjnlD72NqqFBx/Tgr7tFDIGEJa5bbc/xVwv+\nmw/NzxStGzxLpXLkmVUuHR+kkFh434hwz2LXqnNFsUdo/Oz0VJnnHmTC00fT\n+YZLO3F9czUsUXZIVtRKHBK/FEmueQ6jhtdm7qEGs3yTf4DWlhbyRplQBEDo\nEQJDZab2GbGTFjuXwl6DLQBq3pn4dnfr9CXxcveG9Q49CcJJnrl656o3vR1a\nbIEne09ZBgqHsuHM4xVuA6LHJcO7qo9bplzlzEJCTV/hM7rLZM4ZNCSZsZF3\njAdg6g3BcuXdpBH4Vg7YQBPq5O3x4Lo3avze0sxoSoRchiW+nC5Sg1MJAanr\nbyDlae0yAMwckIEo9QkbALJa7FMPn4NJnLTv52c5RredZFe3sG7YBUp4B2GL\neONr\r\n=Yacc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c7c3a87e3ad3b2e366f95c4ca1e259f358b4e2b3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201004_1601795812584_0.9365477597005631","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201005":{"name":"typescript","version":"4.1.0-dev.20201005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201005","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"73cd641be3e78531ca6c04f085c673a1d10f113f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201005.tgz","fileCount":169,"integrity":"sha512-U1bloxY3KhKlagq/UkmjPs1tND2Nx8MEopfjteoHBbYSWQkLDaCG5lD1idMYFFHszlpkmos41M7r3QE0oNTK7g==","signatures":[{"sig":"MEUCIQDf2dSxh+CtGn/MCZxxfm9Cz3k3Aq1AkUP9zr3Ph5UgOQIgMa2WOpN2bTeqfzgL6s0iXqP2yVe3MMDFinvxd9kQo9A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57808244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfeshNCRA9TVsSAnZWagAAoAQQAJiwO7YaD5ail7K0KL1n\nJMsFrNmRmutW+lQQM9CZKMdgUJvZ6kHvuFQdhdg6yNtzAgWHO9qLPeOD0jgb\nx/zTnN7968yoWGQH6xzX/PW3+gNUH+yvJpc/TbsNL9QpxA9pTRcAnuXgJPrT\nAyigG2fLv/I1AtH213igugGxU4N7+hKYIhHPZIwfH8EaWphWBIkd7oj3Wx36\nO6IusoxYf9F3WNUde0AKZpk/PgoEPtnc/VE9IEFCPM0oybahnvnNZV02fFHK\nLYszzM+Ku78EzR4NkrTN7gC9o+Ye5tlztWQAZ8b6EBvrsv5CxZ4tb/gfVcNO\nAzLMVs3r5heJl5unl3xftwYpZPuJm3awsZlTCfnj9nDR2qzc1rF0UhjobiJa\nwIgYeVHjxScUTtCZyINQ391ifsWK+3OglnGYGpKxevz/v91VEBSrHCkIhnI4\nCAj2C27csBM5PBVvov+hKcY73DaVDgKmYU2SeIjm4NB6N7zPPLThgYw6ZgMG\nMmTJDhGmR9iSBGtjgfhJvmzLi723cKeMEIsoqtxsdanjVs+0z3xDdpCdowPG\n4kZaod88W5cGkqXHnJqlLzTono2MvbUosc99yBidSNMw1a0nT7F1gYOlL/lG\nniDy6ca2GzbCwLmszX0GV/BEXSdW5yzYKLdF0CL6EkUzqnEqrxlEgq0xTnzm\nY86g\r\n=AE5P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6e034d5ac034d604ecccfbe0b687d01a1f2988a4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201005_1601882188557_0.8271236794539245","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201006":{"name":"typescript","version":"4.1.0-dev.20201006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201006","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf0c497bccfd9cad582eddf176664a45c6b6c9e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201006.tgz","fileCount":169,"integrity":"sha512-VYesHU4Rv1nmjHkThiW+Vy0oyMJYeI511FzJ2RZVN41KqG9CcxFe1riovsMwO7hzLhagQO32fqek0FCM9M5sNA==","signatures":[{"sig":"MEUCIH/XqOPTsVjo1xHyltXNRars/N08wgd3E14BhL0miIFAAiEAv7L4cdgOAGN2wOTrzKyf7ZdCFLWOdJe6VDJlD8s+xyc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57824926,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJffBnmCRA9TVsSAnZWagAAar8P/j2jZqICpoBdghECtDP8\n3DpmzLu8/SQRQdeBII6+AI/yu2eK29F/pnq7rvSpmHNF8Dappot0E10Pnq5E\nWaTO2VgK346ugZoHltYlrLxPQLO4IZAr3Ti2iSLq69qQP3VeZC+5jxmTIWkK\nxVZdG+RQmSLxs3RzWuvCB7C6i963R8ojtv3UwcwJt0CFys7da3ci286O634Y\nVaZi+7zqs5cXo9WwyMck+DQ5WnhpHBvmIBgGh1TiVBPhf+5xbNS1A577f5uT\nFy+YwxbngpxNuSPqOjGb/93hCH0OzCw8869B4T2eToCea33G06261AaVwW2Q\n5k5BTAZGNZkvleNeJvusMC2U+hyen8OHmb+NT1a1KhVS6N2gbZfzWVjNAJ2W\nN9kE43ID5EX2rZW7QAYK3orSMSjXaDWAUFWKFI7UrEw3nfuo5jknVYuMxWlU\nFEMsUHOGMUG3821eIKZLYt3rSdundkB87x9TB01jU/WdZ1hdgJmjj0rz1EAI\nnwVwOTHulLG6P6A64A7cPKD/E8V3ATobQgCgpLV1cudobZEPx2bxFR7iVFBd\nhVe5jFsyYlB0uv32nC5arzDOkb4MIGcj3NfNV4VrHysvAi8mxdOVnT7Fq/9h\nn4hNhekibrdaEEz6alvTf2oKwCJAeM/3W41qTqzT1EtbHL65KMlBBTiilKZc\nMjKw\r\n=RreX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"66c877f57aa642ed953f1376e302ed5c88473ad7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201006_1601968613742_0.3775888853619376","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201007":{"name":"typescript","version":"4.1.0-dev.20201007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201007","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5640344b85822d7765dcd5677c7d119b0e1d391e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201007.tgz","fileCount":169,"integrity":"sha512-rF25tKh9rRMaVynRJHPFnDYiJHx4cw63r+MMdWIBDlEoLzOqEfwL4/v3HMOWm3u2r30xbIydoYVZrRbmUvZrVA==","signatures":[{"sig":"MEUCIQDhK/ecJoIGx2nBV/WFdbFSXbVfKiS207a+voK5lJp11gIgCE2uq51d0JTdEcFZ8Bq+d8ybpvHuksDJufG1Cdhh/xI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57844885,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJffWtxCRA9TVsSAnZWagAANh4P/2+sQFoJAFNv7nON2/lh\nGz5obfbayWA7ZJ+GXSsYYDZ6B9NfP9pnaB8tIDUf1aMxa0NHE0/w1bUCdbg1\namfqc5sRjuG1ddjgcovZWymd8FOvZ+yudjWm2pNgrxFYVTN2KNDB9OJy2d8W\ni4duA9Tu/ALUEvX+ScdhUHqPufBd/6MkyUn7kIHZNdnvzno2NZh61xnJam/B\n/j54mNJQRqyRNKVaK8ygVcx45PqQ7Y190LcZqLJ4yQVCOyWJGF9Y9dUjK9xb\nkQ3W7W3H56AGp/ZWn5KAluUkwy3Dw7Qs0+ikuW4VtsgNH/+r/n+z61NOcNrG\nPJBMIsCpgjoRcobojjiKU9Tm9s8IWAcwv5ReypMF7Ux+J7tuPTe5fVr3Uk+X\n3ZCTlYJPjPaH5FbhtdFuiBqIheve5BmzckbGhhDhTK9SmRsTsVJNvJkFPGyB\nQzPxOEJvPKIcpi8Zh68FOjvxRVeGPqTYbqFezzGHw8+/qltBgIWukPPZapV/\n40VWHNTzU3YPYk34/AjO6i/ALm7zJUup2o/5E8VsvVx0V0E/WegYEmzkbrCa\nnkiomeen3G5241wBii+oXb/e86uFiPVLa+vQFhYZTHWvXwVEsx28uX1wV7jQ\nDa+qUjkhjAnAfLIqLVY2KF5+z3nLNyPdIsp5kFZUxRe/JbsORbYxkf/TEjIz\n7Y6x\r\n=pvTS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"14c731689ed37b8d100b8325d0e9c21dc4659de3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201007_1602055024890_0.5751147910301404","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201008":{"name":"typescript","version":"4.1.0-dev.20201008","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201008","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bf807ceb2424602b9f7520ce678efc0b06435ed4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201008.tgz","fileCount":170,"integrity":"sha512-+g2TfvYueD60iu2YXz5czsDRdY4M/h9RvmwrorTTNmnTQaUOeb7spT4EyHa1g5TjhqHa/8+lCgCdPkuEQqg9WA==","signatures":[{"sig":"MEUCIE9GkiwS0vW0ePCfp+hZlDOz60niiYBvwfDOuagySvGVAiEAg2ycLSq8NjL1EbYBt95ujQbqLbrlhKibezvH3Wqee3c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57854422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJffrzICRA9TVsSAnZWagAABDIP/AwOx/CxpjUwZvHLXRa2\nWJlB8ceqBnvwNvwizwSAYHSi5DG7TsgAvbn487PZOy0EUnA9efmuV+tSAdtq\nLSBSFGXb8IELQ/NVoVprGzf2KC5i9l7tpcouRL+CWZsgMG4xPpbb9Tlnzabi\nJml2syK953q7xgghGVyN4E6N1R2D8/+YI85IZkuuVZL1NN6SrRAw8LM4KFHS\nMBdYA1dH92aTSX7nNmvRsVg8rCdGA+9c77bM4S28JelYBOn5FX0B3RwavFFq\nJ99ediPYsIRQtKxOf6ZC4d5ES6UFMpd5gZPdIA+VY7p8/+zoffRmLsQzbbya\nlTtMQEqp0RULh9v1jXaVPXCQxNEchE8MJLDc/Q0DNKBD1/+FxRPc2+YCbJq1\nu51176inHJt8mt3zHEdt9E3fkfAmUTpgvNx/DwkCsA/mEJrrxBM2MSRJnVpv\npm8Mf/8X/xYQ//S1Hl/TZF3+1Ulro4ft+PNnZifSgMRasbazq5mx4DaR5mnc\nBH6+VVD/W787Sb9z4svv6zPKn7sbDQMl+5KsjyStax/Rb7fHapYv04Wc7Ho+\nLYkiSrE8xlFTkg6TTAgSi2GTPnia6zhoDdGiYNFndUt7vXx2qHh0v/DzX664\n2kXmZicNdLVKWob/64b3C8lpTHnQ2KAAgYYflaJW6RZ+25+Mb+qhCokoW82k\nlcXP\r\n=Jp5g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"197ac804d164cdbc80876d49f87cbcf73a779c1c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201008_1602141383149_0.7725299744386118","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201009":{"name":"typescript","version":"4.1.0-dev.20201009","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201009","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c6c1f3bc696720df62bb8f161f0386569529759","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201009.tgz","fileCount":170,"integrity":"sha512-CVonMYyx/gcYlRAMCV4SdME7eSJEBbfCaNUS/SHBiv80KHUgX8h7nXhB4x2B2b5A/OgqExJiOD6piu1DCQ64+Q==","signatures":[{"sig":"MEYCIQDGrEeMdU6GLt/ugUXwFWlVrvLgzywYhqx3oRFVPAoWHQIhAMGwgjdgyHQCrCtQpLFrj7NQThLxO8di4NLrfZF9hT/P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57872888,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgA59CRA9TVsSAnZWagAANnoP/jz7XevMwIkzNw50hQDx\n1/y+Oc4Pq/wKrhymcFhLOEUVoRkGcdhaPBE4A+X8TEe+9tl8aA6uNxEgzmW0\nh0TuBy7DWltDW6GPwEL4o4LkSECmpvkT2LF3+u2JxLVKyP0lauy5BLlq9DKq\nC/VkvJ0Ni4/yrBQDKUpVUneqypfGkOcA43kUbJ8OkXvF7zvhXe9n+FDMRgTh\ntAJIKHtGVVZsKZy6jkQ8EkMwk6KN4PPZAIJXCCQZPSgswT69WghMZUJY2687\nrfmDiyuuN2WOwv4Y2qTb4jQwP3ZoVYnNgzmRSeBQInYMCtQwtknMCl+ujBhF\nWrEf3K3s3E5Q1P2kzrN0CJpMw14lJzSnKHSgRRX8v/gSj63cTDpuluU5xzaK\npLm5AE2udyp3kiDr9yLCPXW6GYQTpZkOEpl9SOICwe5Wwt2DF+uWNGF8cWYI\n/mxTMLznP0I+Rq/oNhKT60Vg2TX1g5vBNEt8tbtlcHbQ3X+3UdldC284pIzn\nMwqbLl1F9i3jKXDiBnRqHwEDHH4sI0JezRlQNlG1hm9OOKS1BiCP6MDEPRaz\n9kOcvNqQHx049+Z2WL6yeNKZZ4sHH7SQSbx5kirgg/EOz15E6Anm55II6HNe\nBH5a4YHxwyiEfHLb8v1ODwhh0GiDtVBbA7wlNpzlRuvfrlr/qVt/ECxJcIJp\n7Yi/\r\n=sDS3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f7212aa11966f4d1c09f50165a0c7842162646cf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201009_1602227836811_0.8083378912827035","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201010":{"name":"typescript","version":"4.1.0-dev.20201010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201010","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b72294d900f29e08127b893bd1c4cd4a3bf4157","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201010.tgz","fileCount":170,"integrity":"sha512-YpQlIVQIWu72RGboL/UaO3inEPeYDWjpQC9LwRoSvZF5K9o9lvaCe7B0XV26N/mZ5GzIsRVY3PmN2CWxcS9xBg==","signatures":[{"sig":"MEYCIQD+Y6yUbA9oA7T+zMfCQxqjU/POEzpv01gR5rRACuKHygIhAIhDFiL6alO6C5xRCXVLBrHhFWEJASE/UByIGbZsOoQJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57899566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgWA3CRA9TVsSAnZWagAAolQQAI6yaecEWl08I8oUMVir\nVkgNCMwM1bccWvB3fBCNPPZP380QAlrDMTyg8PrVs+dYZcaCjXIXDiJZcXAg\ndYu6Ie8IkvFVq6Y7mLIByWECIb7aW+oguc4mAlkmLuHgFvQH/9SSqdcgylUH\nkxhSqJt4VDpjVA85+CCuYyZzRHoIqfVZwE8hPJLz1O7gp9DFymAHvc4mzhcH\nA6TzoimdRr9a3J+hFAuxL5YCnvrp2OmfMi6JkQ1vmD8xc9cnDlQ3BV8YFxFf\nYJKGtyA8bY1HN5Fp0cPnjdydLWH4w6APVV0vBqir+OeieJTsjeT3J3fK42yN\nvvyKv2PsoechmBzDiFSFDX9Zs7mTfiuj5cAdn1vsfN7mquEhTEPwXmFjpL1w\nXi4zKtp+XqZRPXHbesYpg3nlxhuPo3mN+Yc7ekjYT5BK4jS5v3G4as6wE17/\noyhv5gLUhX5Iihpy/RmjsGnig56gQjGjlKJaAVt7Sqt/uV6zV9eOa07F0ZVW\nTklpBmp3IvAzigwfZ2wg/2jR74BAnUNCDM3oxoh1yOFm4r2eQ4iua5/47QME\nBK6CGOhgD2QDss1xtPQDOWHGmS0+ZqXaRdCKyQ9mnCVGZSy4rz3jaAPn/q2O\nly/GrknZXNHV4VUxl5BKJNMqeDZCXnzs2jGfjwnOWE/W9wzLCauTqWNg8JMq\nJccx\r\n=EH0f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"09c7b3962c9c4072289ed1c3551cab3c9ba550e8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201010_1602314293791_0.7539189239689106","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201011":{"name":"typescript","version":"4.1.0-dev.20201011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201011","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf671aeef05c7af2f930e69f3afae8c30114bb3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201011.tgz","fileCount":170,"integrity":"sha512-+Lfj2Q+dXFAJbfB1jQQRlhTssgl0CQVo8a+CNzlNXsnC1cN1yoH40wkEjWd6uB8NGkamxKda1xrEb2miJtpP5g==","signatures":[{"sig":"MEYCIQCnbIhyXMWUhqGMCi8VvwaKfK0eImGWmSoL9vVe4NhAWwIhAPgKX4gZ6mM0wOo9cqONO7nEfRfW57GrnTck8f7Ifphz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57899566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgrHUCRA9TVsSAnZWagAAiZAP+gNzugr8Ys96H3Wefr2z\nDqrw/DVzcbAJdKv6Q/HlGV6hROu8coOvFtJIi7akV482llSZwYMkwMqq7rsF\n1zgmpi8PPhXRf5imKv1FMXGjiwFs+2GZAR3jgCMAi/DVMjjIWLXIb0Mi0dUt\n5mr6n5ToKr+fMP40GQmIP9UPHDNfaG21jZLio2r+iDPOEue+1V3SnXoobZ3O\nT0AxSYqo2BJoSSz1ZDysaeUjArBdea+Iubnj4fW6zxhPVQ4EBF2tdxAFws6N\nv5JJ7OyxUZqmjmV7QEoRZUMEWKyWuGMnGY7KRa464D9r86u2Nrpvkwlx19F8\n70BpOKh6yn+6q23ehH612xOrt+aMNsh198RlOlhQW9UT/u1sGpdDNaD9avuh\n+ff6/FXFH2Vyfs50EbKviUyBtz88kMuIZALuy+15R6FkON2wX4l1gvUazNrS\nGCuEu9Q7ABz+1/6/9uZXzCQcpe/14wP3YW8x9eY4W8Q16HFgI+PaKm2ahdpN\nMj+Zzf6Bjc8JIR9OLxV/HVwfXq0DSIUkFQMPPRpgxP0bqKZvS16lVV+TnOZk\nQAg+FuLgfVE5qxBDc5yFbadVaFOAAhksySn4RzluIXfhVBT/MrIs5Ni5ESrX\nHQcAxfQPLu/kMuvThdHJTEPqMAbTG9FyKt8WCUZ7OACi1TvRgRym16zCLQuq\njrLE\r\n=yuNO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c88e44a9e65f7d7a72ef72c9dfae94ef0fcb6bb0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201011_1602400723634_0.7626683303898334","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201012":{"name":"typescript","version":"4.1.0-dev.20201012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201012","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c00f102c53f973eadbc39e81813739cf6e27017","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201012.tgz","fileCount":170,"integrity":"sha512-afzjHTxmS6JszBOz3CkQqlP+5ZlvZ/ACbRJMXJWhEYfHPCDHdQGZVEMbdnYICM1KfgN2SUpubWJsWvyxkoNmHA==","signatures":[{"sig":"MEQCIAyXlqah9sGpu8u7dQeypGAvNE/HWRXPRv6vlIqpVwEJAiBQ3m2mfMczY/4k+T8bqbpbLqfRuba9VXpcW21XFMql1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57899566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhALrCRA9TVsSAnZWagAAlkAP/jkNTGd/DWcWgmGOQ9Py\nw39pLbo+pt2bElMHASsW9BeI5DFY2We1r/JszkjoOhPsNh0Y+SlbymsyM4/R\ny13p83m8NDubM6OXb5M97qJafGjzkIF7PgidcmiFb+f875600ADm5DHiDh0T\nKsVnURMjPUnn3X00Nun+pVwQQ2xmhvchazQEhvu6DYkdrNchRXfv9JwQIzAx\ndRG+NL/BzU06BXwQIlwwiXmN9eCAC2mhPbvtbsyrTibtYx1uIFPHtqpK7tMv\nZgoFdpRRNT8gYRaNaHrY7NIEWtSd1CIwcpCfSjGWNJP9BqzI310IDBOOSe2v\nWRXWqENkrdPU4eFzhyt61U4KVYW0h1L14/yI37aJ14f7JPFJEnXfsr21IR24\nynNdTZqzSq4k/+yxkUgmBX3CDYkdo02iHXXy7mLNzkuqx1zulFnkXm1FaUkC\neqKTzCj43/BnklGwEa1vqfGyw1XkVFd2YxA56HlLuj8xFcBsENPlpFfLsA7c\nDmGt5O/m3VC5YEmeqbRVEwYmMYy5Hyur8gcYfycyEW2w/Abid8uV9NmK9JzH\naLNUnqc7Zh3ZOC81osRX9pBNjQVMsHs6HKVKXpmCQgZvPIAqdOp4kqz6vUp9\nM9NX961UGmdmRRHzepOTOPhtizRS0lFoav/B51c8osoqaBu7JoEZyTSejye9\ny14a\r\n=tdYe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ad3ae36fdc7710368b07c12a67406156c4208533","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201012_1602487018951_0.11817582122577774","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201013":{"name":"typescript","version":"4.1.0-dev.20201013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201013","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3fbe3208eb3a3eb523ed136d028fb06afa2e1b83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201013.tgz","fileCount":170,"integrity":"sha512-wM4uCHgnK3SWW3a655een4MF9cDmsUsENRj55foBpt1mRxFjd1OniePSDBvOqdgEncSpAJfVMnB7hyHPhB0Qog==","signatures":[{"sig":"MEYCIQDgNVflZLdfRl11G0gTaDOj9p+Ns94Xr4EHVWl+SFLPvgIhAKM9+qsKFyH0sTlA8rq+ONpMG5IAtYqYx+gjffzSXWpU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57899010,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhVSWCRA9TVsSAnZWagAA3+MQAJqWcq5W5tKuH5TOEUpQ\nHmGRh+zZlL+KJy2XCdoDsPtpkq/qqrruziLYQDyuydhU4Y+y5DRsXEg9LLVz\n0pJa1c4mVybx8e7AwckozDu9wDA140xfZRa4Oc391Fx9/bYNEKa15FeSpep3\nyD8btptSR1Egz70mJgS88tdzBsrZD+dwsf5XdXc8zPIQc9ZfGeSwY6MLekOa\n3yKukhFPZ5qVGYZUwysysu8lPtL7yXdZsfxerag3qzfQtSSwSlR98lwLMOYP\nWxSkat+rp1LciS+kspKVdyXBGw1nASjB1z0jeEyvXqG0LEkuMPD3N0qWPxov\n3YkPNKmMxRSfC2OKKqBh0kPxBgJM9El2hh98lk/KImMX9rvVmkrejxixbAYb\n6eIfT5V6BLZgf0n2J9HCp1SroC9qqNd/+BE6y1iwXDhb8TOZTU3nKBT+EXc5\n+3Ts90ECY6SjcG8QhI2MyMz8LTPRt9zZ4uTp4dqxDfbcYJzXNdXAPjU5Zsc/\n7ppCaJrQ9WX2xNZQituN48SoJ0dhc7seyLp+pNA195cekpW5KeSm9jTZL5Rs\ndhmNb2maLDB0Wi7XKPdtxH4f5TZqiAdk2uFvVEYDQdK0vyRBUJQuTbhYflY8\nBGoMQR3rCw5yeRckLjBsU/2vSJNG9jrPlt+n0F/Xd5XJL609rMvS6zKKuIHw\nU3qv\r\n=NMDi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"83d02a5f05d5e7ca38245afec36b5a90db9fe30d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201013_1602573461745_0.3973504111230819","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201014":{"name":"typescript","version":"4.1.0-dev.20201014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201014","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5d6bd8cf2eccd94c1b4e8248dbe0b7bfe6feb88c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201014.tgz","fileCount":170,"integrity":"sha512-bhKqBI1UwqB+aP6Y3M6yFEgommPn8+BofXQGTcfmlC+RdTfCY1SQVjwl8bIlqbGcMLmap2ncmD3JWCyHEoiSOg==","signatures":[{"sig":"MEUCIQDjz5Ouc8RC2XG7lYToYpWv4zIqWwHL7XR3kK5UtGoWhgIgbleU3yv3z1RrwFaG9nvxZQzHtQil/+5GSX7fXhUhQA4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57902450,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfhqb4CRA9TVsSAnZWagAAgKIP/R0YXkPJHiWrOUHpv56l\nMibajntKzVtzoeg+RtTniACrFo0geFmBPzPFh99TAV5Oh7pH2ZnizkcKKVxy\nM9t+vkydDKs0LzbR81hmp4+lsdZdT/eBB84ClhHVdZXhky2dXMdJiSn/9U1E\nGZMouoG8C7/MHwSi+9HwdpTvxaoP3fNSMR1Zo6EzOP7hO7FBUSaqnrV3en8w\nT0/RbMp3LJq95XqL5PPay5N/pfBudLVerLz2Jb82+QlqH4I8IeEbEpCX5soW\nMwqDsNDSj1zevNSNh2xvKztD5z2W1akpwjn6cz1PXmcRZxyTSdZJIjwdd20L\nXOkKITlXHPtJ5WiMtFHWTOQk33hbaxX4YVDMix5aZlad4zV7cz+t//ksqK0t\nIew6+VlSvgtjo1Q62X+xHAVilrOecNFGDdaMPWVQYr9XFC19u7i9JWn2+PnT\nbCsYlDcbYLxG4n9emP2Id88XeqJktTGcbe5L88h+er6HQapJItQK1BInHjyU\nn8ELCPS0pM3jyDnZqdTCfUysyp7IkGghUZiU9r/M3n6Miy53C9NLUrk36Ka5\nSq019vOOUtZpN59BIBpoDVNGrN6OMEs34wiWFHYPNBT5EWOEsmN6pe6n6U6p\nDngv2UNgqo6HkmthLikLEMeyasaRIlE4v06bm8YBAlaNKkGqFTJ+AhOMy+75\nS20j\r\n=c2ut\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7a484695ca3452b29b268d037ce1d7dda9d69761","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201014_1602660087630_0.2110845596695461","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201015":{"name":"typescript","version":"4.1.0-dev.20201015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201015","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f6b1d17e95b283a367f0897440120a0cdcc26dbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201015.tgz","fileCount":170,"integrity":"sha512-HxuxG+/jnKqvcMfn3UU/XLmMPuGY9CToCWVDidksDpm2XIB4ySjBH6bduGPpgR8/BkaQoSv8cycFy7Ql9t9SXA==","signatures":[{"sig":"MEUCIBj9OkDDIb2X8N6jrqP1uLmLK8YJP9XCmpxkZTfz5pVMAiEA15WvlcGq46gg/gRJSGe7J4VKOv5igNn7NMcOwHzeYMw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57909766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfh/dnCRA9TVsSAnZWagAAxGEP/1w/6EgwxLV/XqobC6aY\nIGHoA94HD7KgUanq+hD/w/kNJDnxhuH1Y8Yl26P9sKtm7Hd6ooloCmy5D3cX\n/Mq8TOAAGjGmH3dh5teOI8vSdEZsAS1Yc27FF3zx0GbUoYBwU7M6YvLV9aWb\nghzXBUiNO59Z431esOaZ9qQWpC76e1S/9Gc6B7E4LC3hLmn2XMmMSsc17+Zw\nBFFXPtG2ahZ58pS7qZMQmzxvNnmf3m6TygzEVnPDsBTufmsOWC449Md/QVst\n6mt3b2s6Jd6XE2JOYgqtHmV1B7OpMQRCYqhoBdtww4T4dQ7mWcPFmwWdpxN2\nNjEPZgjOYwHbQc85mEyG2AEgk4ZrIJ8T3x5iZ3BTmYb+UPuIgGRY4thrweEs\ne1KEP+CnUbPCfkolPLyySKZaRwgBxRC09wQwal6dkNnsr5FPNxZkuIXdLH4U\n/AN3Qu0x1eUQhKnc29isuSLhjFL4Ejz53knvodgEfqijIa8gtFsbUOzdp8Q/\nT5t/r5eigQ8FFQcfmCEeezME8hxNxWeNVsKP0TBZNM4rpVFlZM36mddr2VPw\nh7acqrUwHqJ01+VJ7tlwbZve2TDIIFRrubvb7GdF7ACpH9sQBuCCqmcEKkv0\nFrRp3x7EgLFZVfPDN3xSpKhU71mq2WiRYq5PrbXkjNDuJLhQDmXr/sn29oLI\no1G3\r\n=0x4Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9e5a77937ab033a1ab5812e6037ca3f2846421b6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.6","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.18.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201015_1602746214920_0.40385226958989673","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201016":{"name":"typescript","version":"4.1.0-dev.20201016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201016","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"14128e5cb67004742ba7d871f21cfb753516df95","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201016.tgz","fileCount":170,"integrity":"sha512-DsJnEMvsL7+zHdpUOZQu3s/J0P3IwaFxSe1dhalwAZoH+btc75kpMjLXXzANdjkU5s5hjL2t+JmvkgpsYpF1rQ==","signatures":[{"sig":"MEUCIQDPU3H62ntlXlSm+UYyg26w75RIc5hmG17gE3LJI0znKAIgK2QI70TOBl11364KXR35eUwbZtuGzkKfm07tnln4hjg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57912931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfiUkRCRA9TVsSAnZWagAAoocP/R75T0/NLvW8UKNs4Miw\nfDylqSP/UXh+7ICWPvegMMgtGKKqT0xgdE8M/UWuSPZyUnXQE7+lQFG0/SXv\n5tyFq4itSuuOFFp17gnFkB2xMGHrc9ogt0uRfZEB6m/v9IELziylYqU8hpvR\nljy/SSGK2LWyy0y9oEmJQWtGAPTCXWsklODNkX7rcnqi3beK1pieVZLds6dq\ntl6FqQWh4iZzEkunHX9ZujLWJdHt5Xn7vTYV9uysJSFJP646a7If8MNgtjgU\nRjH4Lsnbm4XITfeAR3eJ2hLZ8naxCGiNt+ERc5DsbZfE289RlS65wumae7mD\nXHWJZ7vdUBvCKzVw/ts1Y9dYY8wMJGsv5x4Oiy5rZ9QebUh5y87Ya6Cwcm5s\nILbR39h3ASYIFlMRVXd8KF1D7yhbVWGn0T3gnHDU87wv1mmtTQ/ZJ4zfkD+Z\nR6g0yq9n/XJckBlVSwulKwABf32Bos74fNMpue6eA3ox6jw9BSpyB1eVxX6A\nySStaaMYDtExq3RZqAxMtPrKBZmSVTnBqfdUB4NEAN5W5yG036O3D6IihTVP\nYBz9vTuTAqNaYXEp/uRJVE5RekXOrzMuuta3EosAhUI2cxBNxHJY4xkQZSMK\nCZxBmBQ32K1rl7ej/x08XjYc/JHD+FL8wzPKg5PM8VBpM53l9omZAE0G2NKy\ndpzu\r\n=OVwA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"868638ae04e7eab800db7213530f1ab61a71e815","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201016_1602832656204_0.6184104104832955","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201017":{"name":"typescript","version":"4.1.0-dev.20201017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201017","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f670520466732c232f62768a178a96e846cb6eee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201017.tgz","fileCount":170,"integrity":"sha512-08/kQHjUwapDt+eafj0JFzu9lGH/PdG2paNnHWSRlDkEbeTbQsWHUW0aY0Yx3qYPe5Py989skwRXACQN58ub7w==","signatures":[{"sig":"MEYCIQChhc03pSfch4OLD5LnX70mE4WG5AwNYWEy5l9rubll4gIhAPuhtXvwa6oTky9SFwt49sYIhr2glL0j3wEDy1UpBB0I","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57912931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfipoiCRA9TVsSAnZWagAA8QgP/2y75Tsizud5+3dcouXX\n61q9/04Mkgo0oTyCRgVu7qfQP4+s8xeTSmOQJzOPEVaaBOdelXJtgL+GF1aL\n3QtU++OdGZ7PEJB2UvRNarKNiZ7ziQ2IWpCGa5fKIPDKQPbKw7KMBo9KYdoe\nJjnJy3ZmxbVOhv7Ch2SDBhoX3CLrmUwP+59DLTUy0HFoVSUKSm07MPH7aCSQ\nanAtLZmdLaJL5tdnP4Jirw//GEHv+/mX6DxG9bk6MihEq/AOZVN4yG6SCFcx\n57YsvlqTlFFg6jGnndJLqSd/eJeiBR3t+eqiMufElo+Xs976mWqsp7pSoR25\nC34luSpjyfWBBERRY1SMSC1vQ/v7OSq8hMxOdpKj9txAzpm8forktb6f+E4h\nVyNTRHYXizXiOMpwRfZPLhTUgUdIaV55PCrTPQN5ZBWJgAc1lfFgrxmrBQ5C\n9mQpOC6XG9vgwxCbDjm3J4J6YCAjAOEJFc1EHGBm7l3Z3fLu7aNUHAL/Iaj8\nLu6rMLSU+DJdLWz54Cojk/T1oPHSFZL96Jo4YoRXXq8PvYTBz0VAkxUd5s7W\n8UqMIRX7GNEPswRychL25i+hd46Tmkmg5UCiJCSW4p4L9phjqg7HoqUlgeTG\n5/ZUSUR5AFZWCdQKjD+BI+Dgw8T2dGwuDym2T9C4rWasOvJzWwcpDtaGd5mc\nFgB4\r\n=ttqr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"896333810e39d24bb5a19d89902b2bbff07a2db0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201017_1602918945252_0.8969806180166258","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201018":{"name":"typescript","version":"4.1.0-dev.20201018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201018","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1a4b8e3f9b640218a44299773371354d75bcfa34","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201018.tgz","fileCount":170,"integrity":"sha512-cOFYP1I+IrMWa6ZfefxcacZha1pQMxrq8DGMBLkvrl8k3CqIdD8APq9LXaMj/PWrB8IPgDprY6jHwqiHg0/oGA==","signatures":[{"sig":"MEYCIQDzNZ8frW+UdZO+4EQk0PVrlE3qplD9/Crc5KVvtBOipgIhAJt0YnN+ku/jpKzpLARXKIBW3yLLOvmwxbOai4ilzpya","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57912931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfi+vHCRA9TVsSAnZWagAAosEQAJMGB7BZTMFo9d/JYiMU\nMNH8fOqJQmO6R9oXoQc606tpXY8VBI2UknskBX4Vp2Fv3t8rLhE6x8CZVe4k\nyZHHP9+YLtSPv8nU4yrirMGLKBehd2x+snJ7vBWyw0MOqpWUZoUFn0PebDrZ\n7MWUki0T6Ir1k5Tmg7zybglCi+Si1O8zi0Q9sQ5hccEG5OratsW3YzSgTevm\nmZWj9bBqlpvZT7ufND70OiheNRw1e8uoaMUDTwiU56xa2wwNLH6/aKaK/s5z\n4dxSndNqiZN+a87tFh3Scob76glBe+TSboY/XtZI9qm+JyB0gUfwDIV/mSOG\nxywH1KkViTkF6trgnt5ahWsKqbSNbDLI9KBbArrCRZUMWBe9BhSrcLwvxJKq\niAMv61NjZbFghZUGZF+chiN3aH9yQpzvbwdE4yR7mld1HwPN6IAC0x7UcTF+\nt6h7beUffDKpAwxuxcQRQxy7yZPLQRNzD1GaBSP/fgnWk5IUZaGi6CSMsv+V\n4UkHW3gjLRM/9xa547iNR0nkhhVkZGU5iaRQNhGY6S5uQSAcFdZ0xho4xoH2\n9Wbb6CqN8S78PNS2qzX1+5gAnVV/uMzcDJ2P7LchnPPMTEBMhD43O10iTkk3\na37GcjfbG/dB4Yb9Q50oOI52Z8goZ01wCuqsf/NmkLQDxNWJPtBUv5GaDGz6\nCjCj\r\n=MaNB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"896333810e39d24bb5a19d89902b2bbff07a2db0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201018_1603005382406_0.9102045750659205","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201019":{"name":"typescript","version":"4.1.0-dev.20201019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201019","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8126d37f5f96e50677cfc5b56cf687a0c9c98183","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201019.tgz","fileCount":170,"integrity":"sha512-JydG7eBKDj2Kj2qOAJM41wFQ97HGi/qd4BfJOiLdC9Mj8PCnmjMuETAQoEjCI9x5TcMFyTyWU0whzSUfpfrelg==","signatures":[{"sig":"MEUCIQDTKNke24eONppk8U+xM7OEkTXu4IFXITWz37d9sK9axgIgUkdL8hPjhMhfK9Q7s5d/4QlMyjr6KOsZO8asfJM/ezs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57912931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjT5YCRA9TVsSAnZWagAA1nEP/j2h591dBVmIrvW/LJbs\nRJA8mGwHDEFESh6bmUA5CMcg8WeKks/b+J+pfwy7O8yiQQ8Hr0qVx1fnSRLJ\nYzTlPcjqCgWLwEkS25BWLVa/OTWyOzVTjCdQCEbYqEkGgdwZsrNBrfFJkTfc\nt4/3DnHNMCACHyjGBXmRz7Ea//2g/Ke58DZdQE4SGLw53AUafeFGmg+p9BRo\nz6jetaSCm7kA1G/vSmYYd/zc1SWLYA81ElU1fGT/VJpJaVd0GPHZ6odbEo8C\nJ7XkBPLdgk5QtU/8hQuzilQ4EwRMUcLc6xwmhjZboPS5CoMO6YY5pBWKyz7r\nlM9JB2oFueyd1zAOFiO00Kg1OqEQv9kXUwc6CNkNOdArmrLUWX6g/Ptz6HoZ\nj6GQznrx9WMzRPrT7tIPb0PTLhXQAWZQEl6kj/o3Rbwo7gkKIWn0KYf3NGxY\ndlDC2hG4s9IihHNFi5oYPhAZrQIjPlIg6VUiAkrB1ism/ivRlRjaMDKKby06\nfFe11i+jJjwe8CkCgrgLYAfEbvrYtwCOJqiEX6hDbqYpv5JOaKWdDVGvwU4a\npu9zl0yHawBWJaAOJGscws3oYyJSPA2z26Iv23zGZRi+RQfKK9rMLr5OhE4T\n3ZUy02WHe9JuzBBsyHOLv7+lF40xHqfcrz4J3tL/9l9BCIQ/3KEkJv9pC0j/\nNSmm\r\n=wio+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cdf9c3b59565729f60a6b6fc1104cfe52986d737","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201019_1603092056069_0.3753922505212248","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201020":{"name":"typescript","version":"4.1.0-dev.20201020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201020","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0bf783a058ac654727f7ef2f4c45dd92c9e1ecf5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201020.tgz","fileCount":170,"integrity":"sha512-0rFdYxOuLpa1oqvhYjVIMHLz4rmozSa7ODQElhVrkjO5CiWL/5e9uaIoOnb5zE6TStZXjhWM2Tzo/CQOeyJfyQ==","signatures":[{"sig":"MEQCIGgggqMKseqaEbPfRdRUzAeb4aYtmia8t6Mw3DIFHh0LAiBXazUEQUMkRUdf8czrXnn07j5yI0vUmHT2+5GyLUWcqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57924856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfjo7rCRA9TVsSAnZWagAAOKwP/2bPueKf/mdJRfRHvt/b\nLDUTUhgkG3f+EIrudbmW2vOTMgEaNabwu5GRjbaq1m8tSGIK8tFSQK+3LK9P\n6DVKrj33Ns7JL3x48V20emtjet5EwkNcC2X+oKSpSq3HNfihqP6ViVmDVtXb\nmfWjDmPB1c1AcddzEjCcK/1BYGehe9942aOTtCSjZgEpGZSNv0brwuDrzELa\n+2AtaeHkcxQZ1QEY7yzZuQABQyLjwMBHxmpl5946zfWiPc7L2Ut7anuwaNVi\n2fHJZkTWv8+LKckcQ11yZtYzH9nZAk7bp5Bc0FFuQRO8WF6zG1P+JTRSHFyU\nh3oYzn+Es2GCa3WmuvZMaXzRzMuMGJTJxyxiVs61g7uBiAovlqATQTkU+uhf\noBL+Hho+veCdXDz+BH+55VlkKLlRRcrkbtd7ZI6sNQR7XQi/47+uKGOWGnbj\nCydolKlUPYhUVedWBmYJHg10zxyblgCA+vhTLi2Oh0fcmKlWd21HwwLlRMnW\n8772qnQ1QbInLgGHuzP/26VCRtdAHHACI435A3wqOYv1Mi6+xH8zEOpV4HXT\nkXFwzZ65yYFSVeI96iSpcrHPlOAZaG4EqsuZ/F7Gvo5N6CfsnRqPeVZB7Hyc\nSqOMd6lL8gHLUVu/ADTIF8unBGRsvMZpxvwzlG++QCjN80ZPNdKkksyAEIb0\nMf/9\r\n=+RBo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1074fd45ff4fd22a9e3cabf9db0de14f11a7d492","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201020_1603178218552_0.8185658047700926","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201021":{"name":"typescript","version":"4.1.0-dev.20201021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201021","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0e12186483bfad5fffd59898c434adc750f3c605","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201021.tgz","fileCount":170,"integrity":"sha512-AysECaeZgcDxcSDtzFq3hBwJ7cCG7md0gWBZIH19UPDcGtJBaAM6F/NCT4LZ4AV2NeGLQtEAGzE53lMq/i5whw==","signatures":[{"sig":"MEQCIFdd4jFsHX6DOyymOn+d4pk+/lYg7uUkfTZGzXrNnXG/AiAc8iDkF38rqx03UIYK7kgk71o/N+6aP7unaWx1H36VKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57925054,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfj+BbCRA9TVsSAnZWagAAOIYP/3xV83S3f5IJhxkK3Bn9\n4jBlbCMUrap9Y9i0zvjIgd8mo9pqd5AI1/6C1Dil56jVeQLR1hgGkXt69JDb\nemYZxQrFfCsk2E5LsIxo0pE12o18SBAM0y60IbipYlIk3+pqleUXZ2uER2Bz\nSqgCiE9QL26KvfBlsfD63ug4Ps3tPEpqrIIAUplLbBsjeosMI2GRgw8mUFQS\n8mVa3ydRn3RyB0nzz5sjuCaCGIyg0lvq2162UnUClUtxEn5IOknMjX78gpUR\n09MUAhZ/qZsJLuyu4ZrJmA+USJBq20Jn9nlvxZYSkB26o/Vh58sVStE3widf\n9RxRj7tGhwe9TGngp2DRMMwfrIoPXWblQiNBrjX9hwuvIrTrXrvn2ej+NdAf\ngkWeGZTcGlmn5VI22EDDKwwYaS6xv3m1KunWtuUwsWEAPoSPKRdmaudg5Jrc\neTpEf6OhxO9KV7+3bQiAgS+QCOXh3+GG5rRSq4F2FPhyNR4VNk5w4kv/GkOb\n3J3rK3Fv8f3AY7K3myovguP+jUOZgK1pL3PQf9sNJOtcUbnK+Lz948hBBseW\ncqTVa2uT46YAjNtEn+qiGKUkzO3EbzQ3TiHYoaax9+k4IELqz9wTYpyPb/d2\nusMWxPCrEv/yoj78KWhDs3LWdTt2WpJQ+GzzujCUcOoGD+NoYz37VmI0epjz\nwidY\r\n=8JMb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"672861abc6b2296aa445306ddef6330437db4970","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201021_1603264603091_0.00901093147810017","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201022":{"name":"typescript","version":"4.1.0-dev.20201022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201022","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fdb3fc78aace3c1f1e7c9e2ab248df458b27d445","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201022.tgz","fileCount":170,"integrity":"sha512-jLWGGSsgH/Mr4BhWMoZNbajQl1szMXWTMC3KTJfmKH6BxxKKd5q1xaYuvYhEIQaucd7TBDHVAcN7E/Cd3wmHaA==","signatures":[{"sig":"MEQCIHL8PRHjQ8ktz8ImqatxGumQFZS8PYKJXiFvyxg8DkInAiB8Fac13eyKzYWMpsfhgHqMUHMQkRUsVud5ieoLOnIOcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57939965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkTInCRA9TVsSAnZWagAAaxEP+gO7+5WCyprmTn3Jkwd6\nU43uog3bAlbc49UFVD+/KzjsdXepxSTIU2Dp/fX9k7DHsjkconrJfUJBPQyL\nLoxeOoZ8ads3ilUOTRF+SThb61ffEdKRXTjhcscVeD4IWFh0P4LncGkaAqkF\niIqg1lp2ZDP2+qRG7PksPLIsRMy8OGTX3JNd0irjrIMYVrrleQ5Tax/UEB5q\ngoIFGzRYdHBwLVN/yhv23hVzml9CeKeqFRcPnuvs+cMFKBr3AfG+whChlcWa\nHFCNuGcdrj0RWYo4DDCjUwkygFUF10kkQ3lMK3ntxYc272mIZj15lEsKEE4N\nwLs+bqxYyw8mZj2XF6Zgw5kaqofvWvJC7jdULbLhUEGsAtx9+poe6i9YcIn4\nJtdJ0qsDfUguld052ADjdkchQbCChvyWCIVg4Fe6wrF+XgExPUmZO2Bn/kN7\nkbYnHSsXdB+3BIoe4826xM8brbcHT3M/bLI4MGRQpATIIjc3zdtsl6LmREXB\nJdICEvviJasdLBsjTAsYcWpa852QV2Vz1z+guiDaFJBN+BNfPWgvwlJOdFL6\n6fv7uYEMKYQMmZrRJnvuOGLY6sEJ4+F9hrbvFz0vHieV/vI9upLtgSFlnNqo\nv1MJFtDf48szav/beWw5ug3jTSH2Y8JELo6A2GkRb9XoPrTiAzqBKQUgo+cK\nbbT3\r\n=YTeL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"97083ea6a289765024bc2b119a3f3be72dcc464d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201022_1603351079020_0.9628492346136646","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201023":{"name":"typescript","version":"4.1.0-dev.20201023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201023","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f08b7a847993ce7650e9057fdbf50614c30ad5d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201023.tgz","fileCount":170,"integrity":"sha512-jjUBsuzdCd7KLiFlRcxRsJ6bR2HI7fs2mIgcN7DsHhc3RME3u+FcTcYyNdAmFTqndDYiee6eRIaH7GAtGTixow==","signatures":[{"sig":"MEQCIHJvG5uoXRtqvpPaKYdkfac87oEwqwMfsTvk0Jkh0JJGAiAKbZJkR4lJMC4QYdxGC5kU7QytRjIKwVC0yRzd50feug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57940553,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkoOkCRA9TVsSAnZWagAA4oQP/1/D04inGuPv1/7gEy7e\nxlOHp39cRpCi6j8G11uKx0ty/UxKgDxYPofMMFsn1lWgoxIm0tb/xJSQEfwa\n1EcWF7wg1MgnZIpGi/BuYRxMJays7sJ+728m1LbUIwTMcUxiE9feP4MphSYa\n080bynxVd1fbFoXKcvFxMMLAQdZ3sigolasKkCIjn0rcbZ+KtdiSgEUDSEaB\nPpEm+6kyn/Wz1l1hR5gNKdCMjTAnDYoTT3VL49NMRsoP86dNE/pTQVNx9dzV\nJ/DPHZeLcVvFCnIwvbwZFi2D/tyVoX1yqDI5/mfJkjz3qbrL7KxtPpw2PEbI\nveZel+JFbJgl0ga6E9U9zEvp0RpaI4BtHvbD7qES6/sHMngx293/+389fzSt\n1v8flhKs5hId11mTEx5OfqHobUOXShodJMn/tr4W9ocIp4lEoyB12vbspfIs\ncddsZp0JRETDDL0zb4/lYRTeX7MenTRUO1/DbuMwOynnlLWblDC07OzSgPtG\nd7ZsomRAkhrq3rrlqDZD+dXInC2kHzP1U5C59G/wYNZRbWFqPDIaiHJFAJBI\nhm4/ATUuBNxJfiTZT8AvYnL8TL6arAD0hcuSnVPDPcdm2yEgrHr6Ht94AE9Q\njsiaBS6XM1fTbu+3FqOagnIiSKXBwFKwKCCa4JRIDJK0UthyH02fMhnXNl2P\n/sRQ\r\n=Jhhl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a191141821bbb0c5093a965d7697b78613784a7f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201023_1603437475878_0.3152823948981529","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201024":{"name":"typescript","version":"4.1.0-dev.20201024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201024","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"03ebc594361ae5047828606ec8b1de5535dc0eda","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201024.tgz","fileCount":170,"integrity":"sha512-HKsmWNtG4b+LfwAtA+7d7QBylNzX+F6p8CnhSzOQn5wbD0OElSX1RM7QyxA56nQcTgDaiXPhFDu2PQZw0eRlog==","signatures":[{"sig":"MEQCIGKA9rkyXl/5ELJAOltcJS5rmTTF8IBIuFZ05tAhqgqCAiBwi4Zja9xswTgnhm4Wl5PQTyUpu4P9qwQm2U4ySEF/AA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57998992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfk9SuCRA9TVsSAnZWagAADyYQAIzLVVjqDECOwL691PTg\ntWVcILe8+hXBUeAAvB6aqAW9DnXsBnDHbuXx7q5xoIn/qFJb9OJFRqR/CU7h\nMqxDr6wTy7VRqN011/zSaHjcVuUrFiWby/4USU6IO8rl24sf/KVy9n795jGf\nLY7x5CeZq3KfxcymSoTa1S2kQFIixoVTD3HhsjXX8roRcS1dMYYBtNDXcJbL\nmNDefDTi2GrbzqNjflhAazcBqO7WszrIv0LgJNOFPUTj401k1STKXOm8SDGq\neZ7rSU209b8nIH+1Y65dD7XWx5MPWVm5MkmK3WeWsp4v4hYgScWIB+NNPPwL\nEKa72EKTx1cvAvjH1ZJ5Cpii1dHUOJdznF4yP/GDoBKNSiBCJM3ZJ+0ok4y9\nr+pXRG8W+m1D/qJ90aAXJDYFkT8o7nTNlJXWXr7yRjFK/qsJMKqaI5OGrCBm\nyJmZjhJ2pc8P+XcffDyifLf0JMsglcstmUNCwXMnc2wvnpIava2uglPuQKFJ\nk6k9FyDHiiByCxPSP+ssRKOM7KjWcIxA3EoheGHQQWl0eZbJCGJA6/QSoicT\ne5r5lUzk34b02bgRHyKNCU1mYurXFtJGktCtpSGlWPsYEUH3K57xexz8ScVv\nHy9NmEl+yELhyPoeDM57LlPqS7w7BX7qzGwukdRxsChmAm8w8YLbsP8AIv2n\nl5Fo\r\n=tqGR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"36f08350c95b8801d2a1334cd700d916f07cc298","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201024_1603523757514_0.2658981943391103","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201025":{"name":"typescript","version":"4.1.0-dev.20201025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201025","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"817d8ba47cdf72e3096ec4f126cd43e8b32fdd2f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201025.tgz","fileCount":170,"integrity":"sha512-JIYTkDadjkqGl1ZgD9GhoBQdJ8LIDLvUtwqhOC7F8NHwlPSenL6mKDtV3IQ5k18UpBZD+Xwk58ncwU47UyMyxw==","signatures":[{"sig":"MEUCICp3FjrP+w6QuR9dgJ560RvPwmX7BMJeUu+3cPEEBqahAiEAp3zkDeyM1PenIbMMKC2ZPauNZbu2NLgQhn1PztNV+d0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57998992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflSaSCRA9TVsSAnZWagAAxf0P/2kXrgEbmV0/cJiPba2j\nepV1z0qUQjTEj+mKWbINgPTgf42vrYmo2zoAfZADskV+0A6N1YbmqdTEdJZ4\nxjDpv2jeX5c8GkjTy7NNXPfjLfVqOeoFAxQ56ujrxinm/JziJtLWdt8Ahr8d\nE+wZ3fmCBplYDrjmfr8ugVbVdTFqL8WJywkN0jXJ2rIbhTAvmiP8orqlsb2t\nXmWuvqGYTU7hULqjX78Q7HxdAZaAMvQgDWyj66IMg0z0GE7um173wH41jOtt\nDPxTg0zot4baKPinZeU24yc985S6qLQm4MKd5qSrVAA/rrKfUvqCL4AZbQjW\nHogRsL3Iz5dybc9sZXi9tVkW4snXbJH0ToeBQB/CDjUlDcrQaDaouu3s9H9q\nywEiSO7nuTJJNGKkynycHaoGA80FxAAA6gMyDAbADsHyuLsduNwcW86F8bg2\nY/xvaxBmsRMpuRxEHiifmuxAz+jNNdHKiogPn8lJ/FQarH+qhdJQKK88qDj6\n31bJ0g3ei0SFjx7AaFEIm8ktY0UCowPLZlZli1tfcqmhQFRXdLAYPIBjMnRA\n2fBuTOSlx223G2cFQXTXaa0dq5p9kag1bt9wJWiqD1xEMoIcV6NY6n5LBc8J\nC5al8EOxHYJhN1m1knslJTPd/Q5JLQX44TDfXVnY8GJETEbgauLeESMij1Bm\n+Xwd\r\n=cRd/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"36f08350c95b8801d2a1334cd700d916f07cc298","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201025_1603610257579_0.2461480406695391","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201026":{"name":"typescript","version":"4.1.0-dev.20201026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201026","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"81ebe09a926688ba69dcb26e987b34993bcea145","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201026.tgz","fileCount":170,"integrity":"sha512-eeu0PiTyVU+obXKWYUAOVkPjKFzQOdLYGbGvd5TbcQ/CH7c5N7Q3VBuVdO8/rUhau8vw7Mc3EWzCnw7WUG0Img==","signatures":[{"sig":"MEUCIQDlj06JjcOzAqGnEBbCmhSdS5PWXzO0U3QRB7kQ+a9fTgIgeG6AHrwyEN0WAUhcFxDfCUZiMeXRT9UK0aP0v+IMcDY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":57998992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJflnhBCRA9TVsSAnZWagAAQZIP/2iH03jQw/qyUWtneqhu\nMz1/QaqCMI6HhI7mOaUrH/Nal3g2Tl2K/zo05KSK7dwWRCJRm5Nyon+9eBV3\n2oMDs/DGonFf9DA6CNSw9VPbg1SAXJcoZLERVJ1rCnXnvzP7gwJVWGlksIYq\nsN1lh5ZECpUxvdutUmnzRypkR37mwX/sHHEtyoULMqwXwihtMFvT60HLn5ZS\n42kXBzdspGtvZtwySTsW0cMKMnBoswDbSdZuEU65yZHVrlsVwV9drrJ4A8Az\nZzUHWedOGVZ2NdF2vziNiMO2JhL5FJtKOxBLngR2RCZ9Ag2gGJVddRaPRDjb\nlDF+Y9BB7sN/fVm5GaztyM3G2YpNuco8wS3L+cfM+iCsL+M/Yltr0B1uk4Ze\nH8QVPtuY0lp3T11CpZN7HcXcnnAPfdqNmOacKUaarXb7lRNzd9Yq4mFVAnW+\nx6Y7o4NBcjqP5Kh97Y2CDCLQshOjL5Rfn1+euIfX2NDSi80vyeJ4CL/8/XT0\nCTTOrHORShDNKiUzheKSentX2W/yxqVAVXjb5egZMAOoClaFLCjGz86WD1Py\naP8ieV9M/i693FBq7Leu2Lfmr6rsuGQiKVXaY4XumPT/zGs2E82nDcuixaxO\nBHTdjjCexj7dlrgQcKPf8C++EoV2GZnEbDqVlCNPcu7GffWsQR+LeQwXRRCH\nqWIP\r\n=rP0P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8a34243bd7178064cb40d34c580aa6f9e910e4a3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201026_1603696704933_0.7970032162941798","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"typescript","version":"4.0.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.5","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae9dddfd1069f1cb5beb3ef3b2170dd7c1332389","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.5.tgz","fileCount":167,"integrity":"sha512-ywmr/VrTVCmNTJ6iV2LwIrfG1P+lv6luD8sUJs+2eI9NLGigaN+nUQc13iHqisq7bra9lnmUSYqbJvegraBOPQ==","signatures":[{"sig":"MEQCICNQLjCkIj0HVWWOss/gnXEO+icU59na4EKVLPlW1kZMAiAUm9m5M6WXWMNYvlCMCmQHJ9XezrnGrdR69ldIAl3vhA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56819680,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfl1okCRA9TVsSAnZWagAAsooQAJ4YjbCPiKrQLyMTVcDJ\nHAe5btkdekUlcl9oGzjBvRbEree9UMYujzSxHKMmegMunbnBg1VW7u7qk0o+\nkxWr2kwo/7Ev93VOjBcFvQ1d0zoX2liizXsXzEzGFFNsw6DtSUQs+/3QUtV5\nNVAWLp/oSY7WIALgcSutgYm2X55j6xV5XnVCBUXbEsBfLPEeeDwEjd/G6lR0\nEbwwmYD/3rL8bH1/Nw4UqKujpPa+HNz5U5s3em3+sT3IYJDBGfVvL88ul6xP\n6xz5sGb9MokLA5V6WwY6RnoLnPdf5FntAiUzY90YzLRBWlbzEQ41fX+mel6h\nmyaAM/ku6AIdyjPZ0Y4IaW7tKYo1NWVNj90HwQKgxmLBgyCqj0J7hUVoaPbR\n5MPTaLlRwrFkfoYF8zh9zhatTVcONQAsVQSrxCWgs0RfNGIVVZKMHwIg8HOZ\n3wEWjjyRwk2bXXn++1apzQuKaPJ9SL9Q7ksAp7Ah8GUXioL+H/Zcmz7dRDaF\nplMmCux81ro8Ti4ovA6LOE0L20ousySOA9a7V5sfumr90r4v2RyWqaMCIM2S\nQ83R4z4KaP8bFHaRYfc9+PQcOtwo3Kk9e5lBUfKliNqyWqYN9cALROeus3uI\nIJRB/UDrq3GXLIXWmcmjerSLVaPBvLRdCBYt/YZ5bsm0jFuZKmKvd7Y0Zf8S\n0tfz\r\n=zkpR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.5_1603754531733_0.49505089287678694","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201027":{"name":"typescript","version":"4.1.0-dev.20201027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201027","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"86442dca7f6edc5e0d3b7eee79c774884996842f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201027.tgz","fileCount":170,"integrity":"sha512-XBUnP73Hk26DKmpsyF3SB6eamz2CHOCN7gDFRUwAb/z7DTktFJ+oPywrxwMMaJO9bx7M+evkq+p6gHzcn1TvGw==","signatures":[{"sig":"MEUCIA30uyx1aB8UZA0fAFv2J6Jv3cuZZBmmZE/NydQZ/hnpAiEA+kdyZvGEctpQzC9ETwEJPBRypCSvuMcWwX8hTdc9MkA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58004629,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfl8ouCRA9TVsSAnZWagAAkCsP/RMtut3YKI1h5biScWVz\nCSAHnwwLNeFS9bngtRKRO2kvOJb1Gx6HuJOGeSZJfiF/oAmNeXhR7vDBs7AI\nKI+qgG3tFD/xJeiyzvYlryW18K//YKcFLl5YprY3VBHRDGh2OBZD6tzVRhm4\nBGg7vgzdvtjowphG879ybcyrwRxIobb/cs7da6q2gbBlIfuF7dtEiBZJmQkY\nsUr2Z1YazWO5SrxjTviUx7wDVuehRiE9vAyTFHsSfe7P9QNqMVfCNcm/N8tZ\nFbVBGJiJqQh/yyGQeir8XW914PT9IePwJw+A5HdJo0La5/M8UMNDhRrsxrko\ndGU5qlkqv6BuB6TdZZKeXUS7sqdi372yzmvQFpB2aP0GZTdfJaD7uquXydGR\nwx/A1zk0tnNBJmGbe3akBjXMFaDXm+kckYUVnOrnsUdL01PqL5m9zjeKvJKr\n3nTtUhr5r2IDmMz0CET1wbwIR9YLxWqYBCrboPIvojybmzj6hIuc4F1ZU3V2\nH05OUjRtw7hufJ+jDP0nDuJPXmSKCg3hzqIOnMp2Z2bJrGjs9EzNB03r4+ke\nBl9bm130xeGFUuFHfipM2KNsHdcbX6Kr4VxToUZJXvNcSiN33IKQiJp5KXio\nrMvgghGVJgy0+vRiy4IdcxYJkNsoKi4rYKBXacWha7uvcGrHAUjtoT3FkuHy\ny4f1\r\n=AEnp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b61fb7893f49f3482cbfa8c1e6a2a3ba88a0a7a9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201027_1603783213027_0.3428358167157117","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201028":{"name":"typescript","version":"4.1.0-dev.20201028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201028","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d76c4a90e0158f044d2d3a5b46bb0d6f02a860c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201028.tgz","fileCount":170,"integrity":"sha512-M/JEPZn+OuswyHK/4aS4TSYpAzghlZRlV2wxmkky/Spqfn0LKxgE/BP/IMCbx6Wnfr+yEOAE9InN23MLgc5B5Q==","signatures":[{"sig":"MEYCIQCYf8ooelXwBoKJbcdhgOM2NOiq7GZPeKVoNY79TtVTzQIhAP4xdlHfqoF/ZIk5uu0iF1n6mr7nM0UjTFxXA7WdPacD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58026760,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmRuDCRA9TVsSAnZWagAA/V8P/iEzylwSivGyDxOSR+bW\nheQLe3By2Ep0h1H/7nvYVOitA2rLH53itBAZKxpxSIcxX63iOkvQk2nMiOx3\ngtyXTdj9Od9VtpOosrGvzWAkCHT4f6mRuNybVg+5ff6UH919eNjBl6mJBWuQ\nU+FR70uDrV5H9ggbzEQVfRwBWwKo91d6VcVrkf9SYk7k76a7/K7ieu4fwOFo\n2QkmHYO8UU1HbgxNg471UoDOEvAhEH76h39Zsfhqxky3OC6bH914GWtIByEz\n5Eu58nJvZIC4/RuXxYcwijLEPO+sVwCvsG/7F9zUxRC3xtt1nsqJT2lIw2yM\n5ep/bAdkFy40ozi69wkNALebQ9mgybPvVC/ODq/A2QZUVEsuDaXLgcXAyQS3\ngF/ww2O8ZOEQ1EHe1DiSN/mF7W8g6SJO5ZxBKc1/1zOUdquXG4W/qRb+8a4v\ntvyd1lztYeTr5Z3RGA7HxgWlalTClkGDtmBVo2FwcSQAg6AD/8mrit2+7VcP\nAezOGvYqvGJ1EgQ/FBkd+PURHXW2KkD6Dr44Yi+kS+/c+/j4AKZ9vfCkBFj5\nrB0NtlYqThAIWZERi/hnLLcw1MK8dssPZc9hmg9LWaYo6xo3HSaKB4fIbwOd\ndNPY4xgvIU+HH6USUDtOpsqcy07+t12LLzERcVB7fJMT09xKdWg/EVzX9VRR\neMmS\r\n=HJ57\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4d85f03afa2fe5fbf015f017a832897ee8ed9a95","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201028_1603869570245_0.6474134534030922","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201029":{"name":"typescript","version":"4.1.0-dev.20201029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201029","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c1dcfa06270aeb193494cbdadc98fc3bb2c161bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201029.tgz","fileCount":170,"integrity":"sha512-79ZW2B8s4P1ZvR8KLv4gnJfn01oCmHZkhs4CsVR8nnJN1yD6xbbf/rEAD3ROcAvD20oQ+RYEId3B67YqcFPmCg==","signatures":[{"sig":"MEQCIEB9rZmqxb6IPvs+BrWfNS5r/WtcqWXmR4Kx2BBc/yzSAiB//JPMK4fCICQ1ivqtLARjYgriw7tneFtISOhb4c4iEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58030926,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmmyGCRA9TVsSAnZWagAAvYwP/RGAYBnnd0iP0yG5HlyW\n91sCXvu/U+sujy/AnFbnx6p5ttqCQiAYAeWyfN+psEeuhJ3wK9ALBs0cDGfB\nPvA0xRd0RdzvOUR6RVPVByQOuLtN+kJUVWP3Chn/gjse4cFUbFCt2WfXjlqt\nAB9BiPLoSHOR3oSaUAo7pgAohUJcECQSb1Q0GQx7n6qNNmmgJqqtf9pF8PKb\n3DjaOrHsWGWRTK8tccQ7Z7TzFlU5J3Nf1lIwYwWx2CdrAf6JUMxE29s0UvrI\nbiyI6YNdNwKTM7pI6RMQwPv5dU/tYUp2dKFb7YJU33e4pYUaShZvVFrP7WBV\nybBInIDmWEdf5aDz34kpEW2u+wI9rSoLdlXYCwkYZlJ3ZL6a0r9eHgEhOZtq\n8UcY1izFR3Ydo6CyLxAzI93Bq/qImy47p3H+aUdanOvQ8dJ0MSXfg+MX5pBw\nnX1YktXvbSUrjW9G7dSr3VrjpS7uhmzI3AlYfqaBJ7M52F2jWdIhGgmqmhhi\nKWVXMb9zAVNIeHXiDA2J108xtC+RBGZjcyNZ1ZWMWnHo64+oYVFoxx3pauQP\nrxDToEHmrvyeiFdHf6eXO/MmR1RYCLtOD2geMBWrpzRHvQ1mmCUnNJhS85ch\n40hxHAcU0HBShVNBWPDV3uF+QBpShNPm/14ywjFH953SOwVJNEEXcB2RAhbB\nKvZ5\r\n=RfS3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f3ce688a94e97e2d51ca08fecc55fb4c874f6243","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201029_1603955846129_0.2638351668874588","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201030":{"name":"typescript","version":"4.1.0-dev.20201030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201030","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6c0d5d67bd97545004ced554deb9616f00c16a39","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201030.tgz","fileCount":170,"integrity":"sha512-L73VfJ023OpORF020zpRUERy/TtXMg+IkKHaVArylq7OHoNYOxCurPDx4JvpW+pwWhF+ebdDHZJm28QVY+tJuw==","signatures":[{"sig":"MEQCIH22eqfBb3CR1X5rsWndP8A1z+oa6Uebgk/iRMi9LXrRAiBjL8BW4nbXZ9dkxn284zVbqo/EFnh++anCXAQNWf5FSw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58086833,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfm74tCRA9TVsSAnZWagAAmBkQAJbGwBKWS9orPaR3WUYv\nRRzqa3EXwdfBXK5SUjJn7Bi85INsFRXu4LQIk7PLvQaZuXG6Vb8aetxzAiaK\n4IO3VyolsvkXEmkoGz3/NDlAcyGXO6kCmNiZh8GMrtdgWoOUerduJWyZU9su\nTROUaBnPzeYtSJdsLXfdO0PraG8/JbyUoT5MDwV/MgFYrUqBm4CHuN8vQD9L\nOQTyih9ojAmo4FMYB7lHdK7c1JOX+kXSARZHbcdZ2n3kOTzdsN+oQKfhznpE\nhpsbABLmJzyi2g41FCCCkRfLDRiRNWU3DYruuf/l1+xHW8m72xWv7kSnO1Kt\nCzJoDIyAHCWvS2/UhoM7lPuB7FpzbvB3KnwkRc4y05ng9rMsD39gnQpAWo48\no+zgQ8/92Muyb9zdIgJGV6CHJ+mtSJ8mDdQrNxeRxp+dXiQFk0vOO7JKZIer\nqI2tV+xCtxBuv01fVT4x3zznkF6P2x9cFYrDEHRHRcgK11/Ph7e5FWKkCpyY\nO6SvgYAuDPLH8PqrPOFntfMo4/xXEvv923S45I8NS/R6LE3WRo2gErayhKjG\nN6+RT1AgIG03rmpolK9+gfof0UtKYRC3kx5dpxw+Un4p/3VX9VrYkxwRd1jT\nfC6jNN1N1A7u92e2LouC/9R2tWRoYI4tnoNVV+N3GqrtaBGfJS8SBE5ebh/5\nmb1U\r\n=RZMW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"80dc9d9e3c7164a77eb7a02d2264bed210a977cd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201030_1604042284335_0.743630850340594","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201031":{"name":"typescript","version":"4.1.0-dev.20201031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201031","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dc22e94fc8973429b9cafb822f2b2893c4687c47","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201031.tgz","fileCount":170,"integrity":"sha512-CKb8JmmalLabmdlUUa04m0F3Dam9ozHG/dHlHQTNMGZs+1P8TLyNPWETXFc6FI+2cUhiMR23nv0HhG3RPhGhjQ==","signatures":[{"sig":"MEYCIQD4Q7eRoQM0ie2IlfYcUfPbYRYCuqaOQP3vrfJpSoOYzQIhAOoDyMzpKUnj8nr1ylGXd1jLp9oYCByzuyGjmwvQ4dfj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58104401,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnQ8wCRA9TVsSAnZWagAAbocP+gPD+MeKfqE3/fLFXt+M\n7nke6Dp3SfGWl4149m6EYnosknjuvGtjLj3UmoywIwsJbCgpZE3zy09n0I96\ntsVy8qIhpQ/1NY4nX7BjcW20ERXk8Al2oc1pCyf1kQlqhZFmjNiH7+YOGAzf\nzvRLPVCkqOHxxZSVPIqtEBXFg+qMdpC1hl8kn+YExWsh+49juvO2fQRflWe0\nXU/UUPYx1l3QUMKsCRfzOFujyV9lD2tPA+0yAV9WPDvSzRhrk3wQRPOqPIq/\nKh6OjHKskLtEOvbw5cPDhBCsVl9aw5GVLGhr9vuh8UtLrGVbxefrmG7vh8MU\nGV63+aeIb0UxBPHlEOV+EWCFhPWhiKNEdzrfMrOR+L8eRwa5uQTjmW/XLsad\n53Lxs6rnu0J4CCPwsJhD04CGwEV1T/pn9zCeow0rlArX5InGiRq8uflyndId\nZAjSw+HnVEwEzOeNF9TPhMKv0D/LZ3LBiquHsEWG7824MSLulrMXLI5Vy4Mi\n7N7/ssfPMfFnwBCmym4CHlDxJCufUGpSdFjQ+5vwdipORw8SwOv4yMzyAhEk\n1KXK2TTq2lJAope9MPDufGSN0N/FULaeT+zXJD/x07ASfryuHyKyOL5fZ9md\nyVtWIujb9Hvhpw2Un2f440nGODtdXKqep9ZoSrIln3ok2CSPT12ANaChlQa7\nY4pA\r\n=3d6d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"71a2c59c557d871a1d38d10df83cfc36dc10d887","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201031_1604128559999_0.2465512069595832","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201101":{"name":"typescript","version":"4.1.0-dev.20201101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201101","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"19397b3693dcf75f2c971ec4a6ddfcfc66527d2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201101.tgz","fileCount":170,"integrity":"sha512-l81ABb3e4oOzOmQcAukCoTK58pwum9jongwTGBrAbz7ACdIOosgZJ94ltbwthvypSvG+3CCkdi86FoTMqtqi3Q==","signatures":[{"sig":"MEUCICX1pkCKXl6I1Bf9rrxOSIonNGa7F4Q2+L+kacW1EM0AAiEAzI+fEXQ7XotEKxTjKVlNnMarRMGq/jNX7102AfP4IQw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58104401,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnmD7CRA9TVsSAnZWagAA4U0QAILI6F0iL7LobN5T886o\n4XsEh5njZDVvxe6b/N2w1i7UeV5XRX/xPFaQZugR8acXMWjUmI+h7eRQkih7\nB8D0qYeROuuycKmqyiDbjTZpvnoSKqAFwFTxmFzLHIgwz9uU0359//pnbMmt\nMukIdD9rPBpgsA7Xy2YWiK9JxAdbUVo82IQRJm7KBRArk/woY9rAmWeWLNkB\nP18YIRh6y3RQsOkpBMdBynaCoSA6QzYUe+XDPktn3+gdWhGFaeX73qhKBw4T\nMEgYxnBdNW0zl7RG6gyx8Q/I9HgV4kYSJFhct+fxnWoi5kC6C85oksJ+SZ77\nxQjosy1r7H2XQY/XOHvSLMv9GCeUbxuWDqKFNY/Vmp2wOQ62qhH5k7Da+BH4\nf4mTY1+d05oKWpJuVla3/MrEoh1VrsxlUP4GDNKCeYF+3l1vGCXea9ErvMY8\nE81ZANtpeCKdo+s7Tdc4m6idp/J6CVxrwqRMUp9X3tmkJA3HZhLkHr3vyAE1\nIbQfCVr8nV6FWX/RY7M4H+oEQbZEmiUhg+pCnlHwdOGRVtLmQBMkNJiz0/RC\nXdhHrxm5iVEucgTrohLwdPxz2nWx9KjfjazGmCBpf3gTAhxI5Rk3+x6UMhdf\nhRt70SnrxfDuX3W6NbLuuokMf87v8MEy8NTNpeTlKT3kM5Dqp72J4Dt74kch\nXSFo\r\n=poCt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6bef0cb0c4e4bf3962d3cace7a72278431bac4e0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201101_1604215034330_0.33415183462143894","host":"s3://npm-registry-packages"}},"4.1.0-dev.20201102":{"name":"typescript","version":"4.1.0-dev.20201102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.0-dev.20201102","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1978890ac063bb3f13d067067905b312c1e0897","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.0-dev.20201102.tgz","fileCount":170,"integrity":"sha512-kyL2MUGRx69NgowtHpnabYzNA3N8CR+XW51kL9my6MfSXyrojytW5P4YmaayHGQhWLRmzzdDvHfkf2PQBHgbUw==","signatures":[{"sig":"MEYCIQDi0rTg7ruQDGADMVfhTMpqi93GqCMaYcycxQYMa4R/2wIhALAYE5cF+rNVW0pnU/m7semgJpE2F7hA+3BGcdC7Rmez","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58106198,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfn7IICRA9TVsSAnZWagAAVdEP/3vviS9Rkm+Qti+OnxD2\n8PA9d+gfCcRHmk0TsLKNVnGC/WF1Fo+4QbzdwyiHO1Go0egKpcWZlXlQ5EGQ\n9Km5xYkj8efH/n22oETyk6f3l++il/E1TtJ10Bxo3ZLVJzjp/2DwPqJrKrPJ\niwCa0Wh3sbuq2i2uHSdkQMD2FUU5i+kadalIdbFeW1WUuQrA4Bte/70HGNmX\n9jRz3FZilHU0EMFS4mADT//IZgYOIZno5IhvSurYZ09ZqUdvxw2rKug9cJEe\njFDsaTxMQf5srr5hwmi0zD5vr4mSLkAO7lZ+EvYH9jpkHsbABk4UR1NXkceF\nc1Uh0ADPb9G9vBPqTOS/2Ayb6aHqCQ0KqzboSyHZH4mNUf+M7MN/W9Wuv5wR\neUMCZnoXxj4N1auv9XbwlvwqZehCv4L3pEE+Pj0jLCTdGpSmSXkde4NGgoCO\nUlf108StAS22LEAT5M4RnzYeivdpo2miVCnLBDwvtOaqR6IRGQKZ1byjv0ll\n2QPqiF2VbcABPq9TkgnUEAgq/nbsNQtyvIXWkrzvhghAGsDsB9HVeCk9V+c9\naWnVKhrbJTW9v5A8S/9nnvuq860rgPEfA/ymw7vRStb3jDEChddDtLV6KrWE\nzD2UCP/4dMuxTtyXhTVDdGjYJsMHOQ+vOzKqqr8vvEuDc7dheTnUQjP6cR/1\nCHZH\r\n=5Snz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4a7b6dc7497db7847bfa01c2e747fb5e7c200224","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.0-dev.20201102_1604301319284_0.059181215398466325","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201103":{"name":"typescript","version":"4.2.0-dev.20201103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201103","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6851743fc0c4ed8ca6ac3938f3d7df0895f48198","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201103.tgz","fileCount":170,"integrity":"sha512-N7CA6BY43clewXH4rtGZOleeJsUVk2PbkJQtPP0D+xcOmEcuPzOgcUFpLuqFgb9BFO3IRM+OJdQdIrXoAOJI8g==","signatures":[{"sig":"MEQCIGPlKxA+1GG9JZ8apfCJMVB+8AbL01DdmqCFob4fZ790AiBL3qpDJjlwoFtntdbPePZgL/0z0w5rtCGPkzXCwlengA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58147675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfoQPCCRA9TVsSAnZWagAA064P/RH2HpWWLtZV92YjFPxZ\nzVhke5+mRrqs2hj5b3Mx6JzVXE8CdO6ay/fuXon3QxaARa2GW+nqw8g1GHsm\n1VE4RRmLaDxb7Cl/Klrt7jFihNzA7dVaHw29D/4hood+CGC3hkn9uzFb3Ggl\nFKTFyASQA0iX7vy7tNjqLsRwlSdDgX/643DihfKFrs2zgGk3E0YYcaTtINb6\n8EDDZTd9+tHnr7lm/LShL6vVMyjuXL6+5WjTPLdFlvdQ/jV+FB2lIGqDbLfp\nnenxR2afHAUS/f4qybBDebC1fBrl4LBp2Y/uNataQk0djLJANdGujDkpP2yp\np2Jgjl52sdK9h2x3Rg7XVKbYUzDnLV49OyNZrIplcaxSPR+oIgQKWC6QH90a\nKyhmz3aXx2TX/D8kCqpQtS0wW6jvEMsIJX0j2xVE/J38c0kruuP+O6Be75xh\n+NoJtl72qDutmfjHSNycT94FBwC4yfVazE7/jWVaz7U8yokeX26p6py/yHHt\n7aQFPb8oCh5O02BlTpto6p43odiHGM5VqHo0AEuSBfvxK/0/6V/ycY5te0rA\n5THtR8OQXmPbNb+/kbmlnIzEF2qRsTWPgLLClA0odbHt3Z4GtH9KjMAGhvh3\nUHKYi1pXgR+NQ/3JwAl4EnqTRNXu66QfLYmXBhqoNUc4f0H2IISzOkSl645l\nA2qE\r\n=xYMW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4d19d98ca18f345297140daae79aa6056d6ae325","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201103_1604387777736_0.3796868411109242","host":"s3://npm-registry-packages"}},"4.1.1-rc":{"name":"typescript","version":"4.1.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.1-rc","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4a335244b9b2754995849ca4b607c74d6ee73719","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.1-rc.tgz","fileCount":170,"integrity":"sha512-tgNcFrLIjlaMWEc7bKC0bxLNIt8BIAauY/HLUOQDyTP75HGskETtXOt46x4EKAHRKhWVLMc7yM02puTHa/yhCA==","signatures":[{"sig":"MEQCH2WSdMHnnhMqWC1na8YWQc9p0FMtOAY1ElaQmj+7g74CIQCU0EzVCxQWQ9fLQD8Z84heIilD86RS3pzYWC1jxGBmNA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58105958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfodKaCRA9TVsSAnZWagAATzsP/1uJpF8SITYYlN7hTy8v\nbHsFnuxnFctttNL0Uhbez7ZkCwY8VJO3w2wwxkb+Mr4TJQqZkOBQBD59jo3t\nh33hOXH4+aU4i/8oxie7OqLe+ejUk8MmvcwJOR9uUy1NV4fYVGGdBu2uZSeV\nG4ROcRkSuGN8n7ZgRul0QZBmBP6ZsIHtfnj9r8YFrKNadRUSVgqV1IYmsqmb\nsdVscqV860bmpK3RhYB2TkARrmbDxRhysC6BG0MHlzhzC4R+kTQfrLnHUnal\nHh4oQiydmZk7NPBpWIY4P399FHscAgBfkEcQT5UKazjqsXU8zWHwkV8HLwGz\nVMRzRTxfg/ZMdsliRlqXLG7GwshwUadPtbCV0t7WscSFUeuXkBndRTg7gZm+\nXhnF53e5xh79t+azoY6gi1qANXIfB12Yg0ErI5ClPLm62dMMYcTyHKeL+4J+\nMB03Bgx1pjAwfoWP4520Qj0/OayGj4B4TpUqMN1YdXOd/ao7ZiGF1qQV6k88\ncBK6w6x9PUGzCAYWVcjKFvuodxwaTfnKnSQXpBQYtwG6pKEOs6pXJBvEuhTc\nAQWWV38z6GKUeqE9hcW7UjDpNpOM49k0Vdw2SVCFcn8s9PCOOloYWjPrNGbs\nBTFaUfrJrBcchO17wlbrmsnFOdhILbkBGkgT9BkdDiE4DLb8riaeS5APPINg\nEmVW\r\n=rRcD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.1-rc_1604440729271_0.17891188528967605","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201104":{"name":"typescript","version":"4.2.0-dev.20201104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201104","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9dca362fd423ac9391ef4a67bdc6f18537e9593c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201104.tgz","fileCount":170,"integrity":"sha512-MEnAcd0iwQySO+8F19KXGsX8WaHMda48j66I4qqUO8bknueGJUH/FdG9MakpApXd2Lzd9tlUMlOyT07dxeNsSQ==","signatures":[{"sig":"MEUCIQDxQWs9mSW3+NEayU6jWdiBqsjAYn5RsYXIHAaAwlguCwIgWefmCDpEkWs5BqVfJFsBU4vWHBdrIiJxYevnq4kQmjw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58168821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfolVbCRA9TVsSAnZWagAAjYwQAIUf2hDWwrsU2yU25eV2\nbrgdCBQvJt+ZRVQI0W0Um0X9sUeoeqEjEHo6HAoqLxyI37PEp+WjAhb2I80h\nWDXA0RtcAIPmSSrvGcDCTJr0SHG7QZgLN+gBzTSOKJxQKWmDGxZI8sftctXq\noUdCKgr0AdGlwQ9HsDdL9cdit+WO7Gfk00lGiLdXNmUWqQZl88fqrXb4fQvw\nquJz1CiMd8dmHR8FiZoH4F1A1ZjAkwXFYte6ijW+Kl9ZPvv2nnY7KNKG9Gmc\nutJlnGvE9nxkHnEj1jnnBqjMs4YNgQD/uOZtXJpAfuMdV07URJcrKt08jpc7\nnsMnEhc9FbsCSrj1mKcMoN76ShO+sVWQUX4MeicZ58BxpkVK+KHLEPBTdJkM\n+SVW0XPXB5ySLksHu2r49VBk/JrdrLVW/kOpuQIC2oYDydgMa9RNZpMPYsqc\ntG06XNPdWFv2SycHK4XIg2PlNsCw/a6MJ8EZe909v9g/JS/2Ku3H71YKeie+\nsMF5Fq2Y5CzibX/LdQ3T2b/RDyRR/s7TGCbEgP0IgSmA7Ljyw6ZSRIrPHdD/\nsExYWl6uSL4e9pEgLEx4+7RFEmJ/kep0QGqQfYc2jIQRmtrRC78H5gblvBni\n8IQUqeRFsbZ4vC4hA83M/lzBXE3mdmpnkeu9uEMNJpozegKlzQviiJy3b195\n80J9\r\n=JQDW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6c6315db580a17ac48811c3e9993f6faf076ed0a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201104_1604474202143_0.058798813776803405","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201105":{"name":"typescript","version":"4.2.0-dev.20201105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201105","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ea38f5c5da7fb6ce847ebe337db8655b23908400","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201105.tgz","fileCount":170,"integrity":"sha512-B+6vBu2b4WNSps/S7KORqQFHEHt4P4gJvUuk/KGn8rnRQfa/XpaUfluRQiAXG1pG2T/88QPkv1mw96EaBQwoZQ==","signatures":[{"sig":"MEQCIGsSe5oEYMeQzXlKh2KUShA33gyFr+EBLtv/2aeKSyOcAiAO8Nkhng99VDRxq4YBll7MsFlJc1MfdKJXgrZu1hPTLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58210439,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfo6cHCRA9TVsSAnZWagAAiNYP/3Q+kksLZSBBO0m33n+Y\ncX3aOWZyLSREGRqxyWeik4AG3NHJFvsAHo2EsW3zylpOJU1O0P6iLqeCZpca\nt6Dy9wJt69Rc91QU0r5XQlAZvaSSdfDsHJ/shjcvgZyYlCEBiciRzhmF30Pp\nsu1bIfA0zkbmoNyIyntyLofJ4uJGJOwpcIwvK9n/PXla4J5Qon5zxxyHs5uU\nVAyV2Ib6eOAwaaPQH38lV7Whq9CxDwePMtFarwBOuHOM89ITGMlSO13keHI1\nVMQzRlZsaua9WJ8ktgrN1/d6wLNhA+fL/Vt3sFcnxc+HEnn4IUMq/mtGUxNz\nEm83rPZwIsS5MSZgkpHbia8w0Dy9J2ybqJB3bQwjAVG9k8GPfe4InM9akQ6B\n36drYdsEN9y3KvvAk1KJikeXg/02L7Whc0vOulJREA4z09g+YXmzZqc0HozN\n9vjcdU8O0h1L4fDUGQ+4BkCganCWASqwXRBh1D1qJkleHMLcD+dCBqkU6jD2\nrzdVMjPdj8lNG+SSJdOqksPJhLOdd/a++cuap+bxfu7fEjxeo0aMkF7sInHE\nd05AfvtcJzsQYO0XlvGQwMjWG/INDk9eJj6oV5ycS/PKg9baTq2xQiVO5OcY\nLbzng0tJNmIUzKz/icsV+tB5+TigwZAcZjJz8zZC9jv+4j7MH5gUi+NcYzFH\nTQHt\r\n=z+8N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"45b698b3f6679c16d69f9117bdbcd0aeb498a8c0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201105_1604560646131_0.007250620168653077","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201106":{"name":"typescript","version":"4.2.0-dev.20201106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201106","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"26e868ce54d2d2e1d7d6043ef7f13f0d05bc9984","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201106.tgz","fileCount":170,"integrity":"sha512-mbAjfoW7tTqlweIy60tjFUQ427LxO9nREPUvLDc/ARxeA+hYScmjWOBK6VXd5sR5mh+R0EeIIXTMdnC0pBiVdQ==","signatures":[{"sig":"MEUCIBzxFqjiqoO2z7O1upfi8xWVXiRPGqqaEeVW1cN26BU7AiEAtPbplwkvxRLFfOqJ2WXtyU1Be/HSL6SLgqAdntuxuVo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58218701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpPiACRA9TVsSAnZWagAAXv8P/0drvnX5xasqQio1loD7\nb8PzwMsCVTumAYvEFusRcBMNSqIUI4dTtopMf2IDKYm5UtfINabJwwmQYXkH\nhVWZLbZyDEVGBryb9Ipo553s/C9qv87NtrX6s7FphgN3+kwgx49TCDRfYa3r\nWGQgQfVR8iuhAmJZhww7uO4o0RRM+bTvOS01/C7l0NVy0M4s3Ei9CnB8JqNF\nNW2htoXrA8olW0LSfzCFk6qVvauTSXiVa9M8piQHgQ5/+2ktMHnJOXtMPI0I\nKg/1DKxrUU6JCl/DHT004hxyyNZOi/7TzjnWDzUkDrTM3ARNDVpfkgf8cvwZ\ngTvnEsf78YLsi2nfvdCzCZm272AnW0qp3EVMHXSyd3XTik9MVarqvSF2CwmA\ng5CKKukDelMSRaxRbPI3dmh6dhtZACLGZwhyb87LDdMLPNJveeKXJJv3zi7/\nryr3p+FMi9iBtGj/Ud8YfsrDFqRssfj5eTZv/oL0Qz12Dg1c3204YF8ZS3EW\n3B8Sh1KCmG4IvHKwpneq2V/Y8mB0n0l5gRnj2MxGds3XEgrpSgWru6tob/Ut\n0XKSesOSG5sLTnBqgRPZMBK5Ln97uHl+uu6jAx84QYv/HqeZOpun87RdOzjC\ngM0LM3St56c+S8q3Rp+Y6lXL+V0fAhDE2cEzF/cDRt5wURCb7PPEIvmEM2Is\nuHLE\r\n=R8Nx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4b76b4aa43f4b8763fe8dfb0ce1851fe8f309cc7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201106_1604647039488_0.004242248380046387","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201107":{"name":"typescript","version":"4.2.0-dev.20201107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201107","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b494ec268f6a1857db1f665cc56e27b8cf2a3b5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201107.tgz","fileCount":170,"integrity":"sha512-O+nFlSp2eny8EYHy79vEhGN/MceDM6Q66vJA3nd5wLbB68cK59ITccXVAqtwSy7mIqoIXmsH6MoerHO/J8mIHw==","signatures":[{"sig":"MEQCIE8aIMSZDGkDkppuBoAt9qZSfYmsdxskFU60hkvNAIBZAiA6wB9GkJ5GIc7Suut9gO3igxfy7T0B8GRj0MvZ+Oejyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58234633,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpklmCRA9TVsSAnZWagAArNsP/jYCSVDkB29fqplC6XiQ\nIhqUISMhi8xI7XEGWphEpFpv50aqqskttT3/Xw5h3VHNlxf70yC5BAGcRVsD\nfilknfWcr2EoiBPW01Z5hfLddnnn0IRcOzw7wewDyaLdqq8nezqY4RjzCaqI\nY2gJQjHOeDuW8DO7XKxaTaCkqEXH0lA+nJFeEnhxXneMaemZrqoZAiQZ19f4\nPIjkXqQ5fQCcFL2mcfeXg1c2cpxd8uk+lc5JDz1yKbh4ri+L14CQfwlxC2Cu\nGUu5FUo3DkOm92pHZ+nmEI5u9eQnyF6CbiSNbfd39uv5HrhaPnObapLw7GT3\nQPV3EHXqWe2fRLHOPhNC72bNZyyCenI8h+fgACroqI9HGH8VuYaZKc6jEsXJ\nwu/QUWKksOotr65uwEDsCQZdk5WPm9wGNWmnBU0cY2CBHaCKKeqPrrfC3bbx\n6Jdql5CiC59pP2a4tHKWVsRnz4GYWZqaJrk1RFc4gxO/37ywtS/bG1nAug7u\nlbYOWxTV2kaHvnRjKkOwAU6Q2qXy2BgbO2GvYXfYaKk9vWsCeRs/MERzpFxw\nI73AB3G59cUzCO0lg8oGLcZ2Wtbi3+9hAKgT8t+ZR/IFSdj9g71muLEny9A9\njvLU00y7LjUAhlXRDc8Szf4SjGfuVtz4ikjTgRXHQhhXvLxqeLFu/9sILQqj\ngUWu\r\n=KWqZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"06a2210eb53cfce968dc855fcc13738d95d4556a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201107_1604733286047_0.4530222298283064","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201108":{"name":"typescript","version":"4.2.0-dev.20201108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201108","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"24aede1e2b464c0ea535e1af0c458e583bac5bf1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201108.tgz","fileCount":170,"integrity":"sha512-UUhWM3MKQLqwgtZaNTXPRd071w0OiwsCjbOZP/qVC6Sw76ra5uUAL23/Y2Ej86hubSOlZTW1XcaQtGbuHDmCzw==","signatures":[{"sig":"MEQCIFUfCcWmKWyaV4aKqmlZI4lkFMlOGbCAWX59oaweqJLwAiAt3xaN3vBkptWH3aFs+I5hyBKaCkQrE/NbCUtgbLfsxQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58234633,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfp5t5CRA9TVsSAnZWagAAZqYP/RlcjX4IRT75gQgjQQ6Y\nNihxeXxDCs8hVVVQuXpliH7eKG15dZEK5dh9uz+fQFxqjJKGihc8En6sjtUO\ntoz+CaKYB3zn4ZvzvumGeYNuY1/foAYgc3qNsqJd/fYJqczSdtflgyyV5jkJ\nVzvzA9jO/TivYivJsYfEHqRvLvwulzOXExLA0cfRGJqcSqVh237TpSJ3M7tj\nHnzoGHcXQi6oLJimd+hLrCNn8HM3izBmLM72qO09/KU3TK2s5F2ISCEDsTPq\n911DjpxB9uwA8k/TnXclqLul0qfUDcsS1lJQFK2VwGv5BqnWmUruCvqtQQ+D\n/eIIu/Hsjykt2+AbUJTA7m8ayEiso90mNnm2hANhky+pVXLyc/z0pFrTta2e\nUIOjJRp0l2UD5Rg/wNl+9PXl/bWzRwHHUy8jXfPB9foYss+ZEqxfYknzllR2\n5twsjtitRuLRYDoYlgcbxeQDqCFHRlZ0vVFMDZpt/Pn7tlPCqdeqxhp91zDF\nL9oxcGyqWkdFxehHb1VZvEbNMVZKgcfKoJjmfNWQ6pefbPy6OAOM38PSVkwV\nfQlOx/Gknt5Dhx5FtkgRKuP6p4suGefp23gsuFB2waRTuWgVpCbbhp7VQjG5\nxj/kphWXHfTuRCWySO+K/yaILgUZPdnuypNzsHSK7V5j1R5L35/eUk+z7UFp\nTm4z\r\n=v526\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"06a2210eb53cfce968dc855fcc13738d95d4556a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201108_1604819832741_0.6859802449909882","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201109":{"name":"typescript","version":"4.2.0-dev.20201109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201109","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aca9ed28a7ee94cf754b79e307cbcc62e34a2d35","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201109.tgz","fileCount":170,"integrity":"sha512-Ip14AJVIrcEWNfDAGlX+IDEzx3ZdqJNpylr9wXSm0x49b1yIElr960aL/USN5TNJea9Jz1mbay4S5sy5k2ON6g==","signatures":[{"sig":"MEYCIQDEPBroK0qyAAxwqAr6AFm+AZzPidAtyS2FqRr+UULk3wIhALBqafG6uq4qLZYw4owGjGWsA4XlOT7igELUf0/i16VZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58234633,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfqOyGCRA9TVsSAnZWagAAFqEQAICNZ3ZkDBetZtxjMRc7\njniXV6mw/IVAz86CKj1NnYoZFPe2PQuJuWXG7dC7mytci+wBL/RAOh5wjyzT\nqaOaD9bzye3CUBi2EDNAUQVX5oWPyTESfIcyuwjwlKyybTnYrzYGRkFbzhi/\nu4MGEj/tGY3avws0La9N9XEJCzGem077cmUph0PPH1vw7bNSy/KcI9p5IBn2\nY5Tj+vX5nuT6mfyXxC1WJHKDg7eqCHI1p5BuUVPeSjrjlzr2/dOdGiLgmBUC\nduHL+9+9MH+0cJESBgGc1SCJZuRsSWhapi+lSwrxswCW9UUtt1fModuO7Cna\nvgj/bqvhR2FMle8Yk/xRD8KBtDZha63UPAGh2pqCEw5NVqrXrZS6MPGiYFee\nmwKLV8L4CpVVYNp8KvM4NaYKhAVUpJRD91lXyHhFbpk+1MJ2P2pNvwDkPmcw\nmZWfk6+9rhS9biVZSDu4v0G139eJXBS3OZyok13oGMRWdTuwubUbk8lWsWKG\nTKGYD4jAEixFQe4MKxbkD2lXlvh25RoKJzRx1JGgEPDyxm0Ban3pwjAg8XOr\ncUvHAiTKedOZdmesyMDbDdR4zvVy9893oZJKCzcFbodzXOOg8x28tBxW46ov\nJAOCnQiTKNisZHoNiuC7IBZ/lUc7kddaC6+Ji8CqhgwjbJItBK1P7X5aT9FE\nKYW6\r\n=ksyC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"06a2210eb53cfce968dc855fcc13738d95d4556a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201109_1604906118004_0.5960042810011232","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201112":{"name":"typescript","version":"4.2.0-dev.20201112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201112","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c582e535d2dcaa6ba62ee52f84c5e4b2b5a001ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201112.tgz","fileCount":170,"integrity":"sha512-3xpSXbRmIydqWhfuQ57b05OGZA8PY0RHe5TNj5RnCdc2qu2NbNUCTRsg9P1TF4Wma6D2Zb8d79E08hNDQNNuUQ==","signatures":[{"sig":"MEUCIAhbJPzpG/N8HO3eA8luUnFeUlbkQi0Lh1sqI3RTvpTSAiEAgfQr3rfNAg6HZ1bhGcn02z2U7e/v8oiAzGQV3w0FEMI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58263889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrOEpCRA9TVsSAnZWagAAkjwP/jSNFAC5/Z6ea70iuMP+\nKJfAMExF24Nl2wuZzAqElzGd1VkS7eucJttZsqBA9Mj2yUlnrAmedmvSQDkF\nktCxp8NxFjm/4OyjBfRwAv24PPSesNg11e7TSimqlqddpwE1772QETcxR8Gy\nDWlPleZz3z3H1z6SGHfp12q0/EDanyHDJ/vZCqHlVPDUJnwGJrB5V01D0CUK\nRBc3vJHfav8bvUsfsI/uSFSPwM83+7jx/1dHvnx4xHkPvkzHsgnrJCcKGG97\n/OuD0pr+vphrtzlQXvm4uMYEY+J/TszhtdM8UV1bKaZLSYnoQ+uA3xoPDMYp\nz5Bu13jOJLeLs1U3jFQTToJM1DXJ1BNc5xyJERWpmic6/4oupRPVEVxQlVWK\n3OwjzV/YywO8n5xSMD8RkJfBuGmpcasM8s3CgXrW6MP3sIVcsIMUpCVf67WD\n1rQkfws6nui3qKK9v/cIKi0+8fatPFmAMd+IRFvaZQqNAZQa0xF4bQuOOlPe\n3gfE9ov2j8plW8gsnhbEwM7Cqfq+Ib2WjusKOX+TLYxYAv9xG2Kt917E6qqA\ny9G+7IibIyGwJKCuWYSC1/256Ha6QY36kpMkIYmO0NLcsA0+Lq8Bj3VkMLPe\ndNb3dgHJU60uJtMzlnvEHj0OyHvYSRvHBE6+k7t+EYEoU6j9AquMcJaknIok\nARRj\r\n=tiI8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d7f8d8de7358036456d64db84c7f2cb6ac118da8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201112_1605165353050_0.7642655775338278","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201113":{"name":"typescript","version":"4.2.0-dev.20201113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201113","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"680ce05af0eccd4442d8bc956741be8bbfde08e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201113.tgz","fileCount":170,"integrity":"sha512-OWo4ScziqXIFMlJ221D4Jejnh0Iq9ayMmynNA/C3Rnx7HVjWsyQF0oapM6/knT7FFF9a125+IU8AXqZyAGQ2Pw==","signatures":[{"sig":"MEUCIQCsXps/pxZBGT+jD42ZsywE09n5yzqGhHuAZkx5o7rg+gIgW55Nlt+sPF2bV/xoJ84jCxjpWWWvjmO4u/dDuNgG4Ws=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58263889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrjJqCRA9TVsSAnZWagAAxf0P/353uenGnk/wy6t2DZ0m\nrDIGrz762DzJC5Xq6rUttkqRKSEODeX8wmoEWrajk10NSje/z6jZEY4fIYOm\nH5t+KrGqGFESFe6dM8EEvi0zeZdmj7HiHi+ahwHAEusqgyhaRY93UbtUR4V2\n9VjCI4D+UvN3RVdtcZeEIY7rLyMIOEn5JEJVGa6iSHZNlCrABcD3qVz7mkw+\nC2u7LU5YRSzN7Xc5xxgkn+obfpajuwItWscET5I4W3JTGkYeJquKdrXS/yZ2\nfT3xp8LKQdSPGFQGc2wlm0kGAf+70Cu/qbS+li1x0vb4lKK/L1/KQEjJzp70\n8chxsit3gqbrIT6W3h6PTC/ME6e9vhYa1OXoxewCfjS+shx3EJhFxvD7zjJv\n57zVhQDjVlHDFnRdj0EaeCq0dddV9GqxOlM7wPLFJzVjycqDk+k6U4slrUZ0\nPzXlW+IwAmaRBtVMCC5n8M+kkM7jvu9TdLjogcSIK3JCjjOWlUFFA/62OLaI\n2Q1+mbap51V47kU2ZT1zdy4MQIP0ejRdVu8xIZrobCWrXiKzdJTtx0l8mgjG\nvbyKn6ySjNps907EbC9XfSzNmuOjy1jrsVir9paCa2BgJ5oh9Jy6HKqZK0KJ\nKJnIiCJAr19ptP8+/fs8Nk6PFqOUqXr+yHTw3ku064RK1jXKZfuXmpXH66tQ\nYX3E\r\n=AcbO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"566faa7a01f3d483f032fda4777dae186eccbb19","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201113_1605251689204_0.8590658456641684","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201114":{"name":"typescript","version":"4.2.0-dev.20201114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201114","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dfe3dee7de7af139050f146de5d2e6d502e149f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201114.tgz","fileCount":170,"integrity":"sha512-QlLij/fsgPJpuLYGUpLH/VESc+02QOrgCbj/kDXFvc2bUmtG7vakiQBiZ5xFtQiTsGpHU0nFryllC7CYwfMXSw==","signatures":[{"sig":"MEQCIEB1NZ6qshpczMP4rMoBWbdtqZFc7av71ZbTsdAFvwDMAiB7I0qzoqVHOnn8VyogP9r19q+dFocHkpsMfsr/dqAr4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58263889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfr4RZCRA9TVsSAnZWagAAjGcP/1YBIWXx0YeZ6jUM4AlB\n7Tlse0wtNfuqCTwWyh0/ixE757wzotYS224/2A277aF6olWH9nfPrsLMp0Al\nftuUow8qbnDN8DZPEhzC5/EXJjNlNSrqMjc08JXyjFOrjOaohBDxgMJ0RUvA\nVkQnDulFrVHKODJ8cajwIqrTpPdTZ4DeC0G19U5Czg/bIZmDiq4q+z0Lljql\n3IEubiNj8PBefUMfmDZce5Sf/TmqXk28TDXNbDAE7hNzrNTA8qHBwAy8XyBb\n7uAF3LSvfEifZWOPTRgmWACbWuWWvGW2potyd0c2u0aRWY2k3tgEgXrwViRU\nf7bsYjcViQjSD7CXgsVmcnI2ObjYKJeoA/e989KnC7yXYhM2tgXzmPkBEv6P\nymlWxHPzLa8AGnOUClrvDUMfFOAuu126Mokmh1fKI49o4TYtQ2QBUQc0b1x4\nPWdPLA3m2OlHi/DI4l0vMeUCDRodFMN4GqpOCBnXc+WFn8w72ihpC9jDG/SJ\ngjKW5pV81sFxRbBhnz9q0IDz9a2mTe5Xa6rQ/ULZrrb3l49Y250g6f6ENcpd\n5eaeRUIOTRDP46aC0qDopDK1dKjjubgFtka/hTfxHejX0LYbxgxrnN8L+W2+\nD7jtZ41J+uIrrONES8zIgkj3sr7t13tMGgi8JUk2dnOvviY44fd6+B1uv/V/\njiMP\r\n=pyyF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"566faa7a01f3d483f032fda4777dae186eccbb19","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201114_1605338200944_0.8637263929430836","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201115":{"name":"typescript","version":"4.2.0-dev.20201115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201115","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f62ebd9c45c09c7160f5e1907aa7243b1b4a2f97","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201115.tgz","fileCount":170,"integrity":"sha512-w/iIcGCvhr2h0nimV0FhpPWzM/PdJZey6PeJf7C26QXVdY+JAEO3T6ba3cbr3KZ8YphgWC0ir1ERPF5Vw9rlGg==","signatures":[{"sig":"MEUCIG9OwHkhZFk3xb6WBScm/nPPDliQ8RAQ9SED0vDY49iwAiEA73fgSHJpHIu7bvJ6iQc3KzKjbP46KoBSdc2ZVXOlX84=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58263889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfsNT0CRA9TVsSAnZWagAAOTIP/j1z8SX5ge5ACfjx4t+R\nqWEHJxOrEXdO9UUujDU6c33Q0SR/88vilXdvoCemQoO9ss2V+L72xLQMOn6n\n38dooNa7zSLzVuzPqBWARXtMPIy4CVm4ZIUExW+rNmRggc7mYdDTGaDz3UL6\nV478uieh86lm0avcrZdxs5iMOByFakWxTHOwrSeZgP44qukfTXgNsYFXhQY8\nw/Mv6pQGeH5lUwqIDeoK8XCbq3Y4XnfAF4Isc58N00APUxFi8vMr/SVME3iT\nz85gXLpbIt2cAOhJdpYpGZEY5Z8i4B5gdBsS2jZ7/01CpXe4u5y+iecZHh7y\nZUhNKlizPPEq9qGgYKiTbtYswfchD+q2WUPx+fl+HcaewbMi1fPBpoateAW8\nnBXg46Ijf4/md5Sqb2oeYvgbIPI6Aom7py6QYVUoNd6goqMrwi2g6ndBU/Wf\n84Puc9tPxiF6z8u1lPkSwbukslr6Ag4gkqbeMtnNczrEpXzUeBF35I3wRGlq\ndO31ASqedd5sGMOntY9rkjIJZMQQmLm/M/+ZL8NManKeFolujrUI8W47c+fn\n6zu55t0zQTDXNNC5fLsOwmH+pl/HxGCJ+BpOJu9YtoPPmcWFGQgX5zeLba70\ngb9jln8TdrT4nMJ10UCdSDiVsEIz/it4ZXvTiltzCbDOApuK+xUMg7heHmVH\nDviZ\r\n=5LIC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4885dec80d184ef1570ac97739679ca66af7181d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201115_1605424371851_0.1131325708449562","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201116":{"name":"typescript","version":"4.2.0-dev.20201116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201116","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f8e218e1a6d0ff45a53c5a081f11edcc35c08e2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201116.tgz","fileCount":170,"integrity":"sha512-lW6bdfn+daNFeey3vx0uEe1HN7g/0K45QNY9CXfGY0qNvoikyIvLoH6oBfLFkFlDma4FWV9WNid9wJBcqIBIBA==","signatures":[{"sig":"MEQCIH1TMyaoJu1p32lbwQIYv5GOiELzkixVy3au51VlYxVhAiA5sTAi82T5KVh12wyccS/Kt3GmZArbeCr25mtPQLJ7Tw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58263889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfsid3CRA9TVsSAnZWagAAXbcP/0TUyVRRZn+z8agF7N2u\nA4alH88ZtQSpae4pM1Gu3qUW+90BCTBastjDKN06EhEUy8NiZ0nBtn7DYZ0o\nI/QcG0VAx5EZngM1FC2Lvf/FIyugcdhwiykaoPzf8MC1hA9+ddUDHSqZ+V7O\nsHt4HiGVXpEepIYf1cLjNVcw+F87y4ZDqgUG6NmWYcN5ESjYBnEgrqvomwMO\nRfmdDJLOz9nDfeNLvl28zX4B0cwYnvgF8AgyZOi4sb6H9ARe6mH+M2duBHv8\nOfhdj+yUlh4FYxrOz2LG13yX1JMPRqaSqF8f1hLkep7iTxh7HyUewnMuYwrc\nV5Nlg2EFHhpO4rIztakbSTKJBtXYCE4MZz7S07xEg+H5QWCJmsPKgoAjUGmv\n34j2LljhZcwd1Q/zxGVzUviDlvkKShQuC45oIpcfOtY8JZAgQlBNlHBz84kt\ncAxSapmG7uCEm9qXoAbuLX9HvARnNEb7IA9g1FPzw6G0XN4Mx5YeicqysJIn\n/VFh2jbwYZxHD4fnu7i9jt7kewDRJ4bFyW+K1uG5ZQZUaXecIqB6O+6AdGyO\nsraeugZ/Wgsht5ljrQkCi81T96sNdVE0WpjdFgmXzOW7YWlZpgxTrOaZBxfx\nEu81z1MpjkZlAryWeZnadaBGCR+Tp1Z/sICk8pSEy9QejaKpKi2oeKIA7lrX\nKdHO\r\n=tHFB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4885dec80d184ef1570ac97739679ca66af7181d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201116_1605511030659_0.6307371173425795","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201117":{"name":"typescript","version":"4.2.0-dev.20201117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201117","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"80208a11da9ed6120e902b85bae75be628eba382","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201117.tgz","fileCount":170,"integrity":"sha512-D5hhpSnwSuk9uwFWifhe+nW97deNWDH1cD4n4mVOdR8ZSCp7QCCWqpS8zrEsj62XlOoE1H2kAbX7vogP9ZK2ww==","signatures":[{"sig":"MEQCID7kUuaRFufk7etvtLEOs5BRwxciqi09+ctxJkqS6dymAiAM2NgBmGqmO4/EUHB+qcoRpGMUPytYg94k0olw2Dl9rA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58277706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfs3gXCRA9TVsSAnZWagAAItAP/0N9WlWLUSBVGsSG/5PP\nea/IFWhRGlCD+cT9mGP8jOMd49IqV0d2jYemq31GjnwzwPNEFBzSjGJ8vLEO\nIXbWIurfNf2vUVWA8G5U9I0yU4Kv64siUH8KfNTYj46z4Rcjjcd36Ey4cpwE\nz6RDfZQBc8OzLr7LWDEg76eTW/QNdoUJKAdfcYrHcA+QO90WDj1WRuxNEKQ7\nQGsARhw7APUWqkUynICMce3+iF/UMTZ4GLK4BnU18dfBmO34NZ9iOsieC56H\ncOt745PIVBqFzmf0d/jCS43PAXTTCJQYYmaPH7oGAq5x3zwNhqf73IOLCvX/\nOfkBK0Bzdbpk0X4bUBxP4vQOQ6u3NtuSHIfpbGooAgTQamqfwSCcsZkGqvDC\nNseyOHfA6ODqK+siv9gV9fQWGyR6YRoXYwk+3FzFHxW3q/ZbJKwC6c9gqnb1\nOD6WHlnX/6lHFYPSBGHo8T/A1a7j9a6i/FLPgv1dv6idPOkUMgpbTvWveZkv\nTSkavZT/hYLdQlhBfA76hsI+kgPlHdMmUjjX6zET8dPnkdrre9PI8J2DUu9j\nXLRw6draNd5pP2Wn0iZfoXAKb3GhoYn9dc0JQtF7/9n6c/tk9YK/ylhbtYEK\n5ZhlveBMoV8Xx3fzl27x3YwV4iyc0m7kY8zFNHMNbTjmFrIeYSbSwBv95Ufq\nTd1d\r\n=mlA7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"79ffd03f8b73010fa03cef624e5f1770bc9c975b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201117_1605597206523_0.8255006855151197","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201118":{"name":"typescript","version":"4.2.0-dev.20201118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201118","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ac4ee10c861c2963fc62b79c0f5434ce3d3f41f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201118.tgz","fileCount":170,"integrity":"sha512-lY0dDeNk9v9f0N2UM49cfa7aeOLYaTIPYDewAmrof5hz96MZ0z29UCX2HiXSPnpCc5a1rND3DYDc+ZYmWzQyHA==","signatures":[{"sig":"MEUCIQDai9wa0xi4WN5EtVTKYB9+3nJEvIqZSZV8Ce+SyBymoAIgV9nH0VArYgnETDdz2LhPgtr8Wn0OHI/K4ERWKhPW+6g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58280748,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJftMo2CRA9TVsSAnZWagAA0KwP/jO36Dv6d3BzuLC/Kn4a\n/eSut+c8aIotQy54a8mfpay8SEyqcXwy7cCRU8QErRREUrhz3RrdvHNQLVTZ\ncQsiGRXpPEQl6uxZPB2pIADHRhl1dDKd1pum0fGxmSIXAdvfIe50GwuRqtll\nlFt7ZnW0pGR0zzd9ovtJ8GOMloAego69DmVLSmBwZ0LDQSlv4KEFA8/gxTaq\n2/xGGqGSmzVEuK9Ew2/pcco4YDXxOk48OL6O6YRNc7htYAlZhQRhDeF30wKw\nhMUKQlWUvdw9Iszzr3D9B74wmEHg/GYsisj4kieSsQP53Ve/QmbmBhSPw37r\nCJFeunzhc2kj1vG4VrKel3SMLkBBiAcPkVZYQj9/AVo3C2YBCo6PzdddCAcj\nDg+dfHa69/7ZG01HuNaCrvGWIlut8yKuCythrtfZD+YPtV9R5R38I4EYkkDZ\nFKwl5ZWMd/9eWXeqS5KYZkDj4JDUDPdQXewn7mBV5pTBeD/O3cl+TmfHQloE\nfiN27HKKSdj8oi6EOKQ8S2GxGZXVrd7tfrycUIeUGRQw+zeTIFh0sBmcJFNz\nUowtufIk7FzivP7LNWOQKCJOTVh1hQaWOSmPtacC+NeJST45kgiMT8eC7fl7\nUr5GYEmwSHJCXe1zwZqMDN244SRPorlb55stT6e4D+dc3RNJ8NK5OOeACBUg\nhbHj\r\n=nuip\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6643d973856d89ef9f2e85e46fe5e460503ff256","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201118_1605683765716_0.5538414653812076","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201119":{"name":"typescript","version":"4.2.0-dev.20201119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201119","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d4a43511cd9931adac05e1a47b6425f6b0e76cc3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201119.tgz","fileCount":170,"integrity":"sha512-HIgv+D/0VpVYRTbcVVf9oac/0GtLKMqaufTcPgohNaFWlCOh4lq8syefANgENXTG5Q4VEC6xwDGzHW6EJAVr3A==","signatures":[{"sig":"MEUCIQC/8PfjqFzNfThSR/ullO7PmkBNHGDwdCQOGo39FzH9XAIgYyqsFYOGDrpxOmjOtFzGJutV/EyJFekQP6b0HhTUEPE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58293300,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfthvSCRA9TVsSAnZWagAAew4P/iIKdoBPDe2SzwDkiPtS\nfIf9KWckP0tqll/7ZWjjnU/+t6JVFNes+s3iwLbLZj9iQ7lu9gNz4DMXaF+m\nMGy+OdFvW3OVbrDSTZrYPHpPN3VCP4UB5FB+sULyqWeSj8zqcgm8vff8fxP3\neOD7UYDGtMzDErAV0eFpvxvqO+SlrajUcnR50CjIOlcQuEaSHj9gCy7mfNlI\neGD17JhyjzgFoRm7+wOWe31LLZ1xgikB1jyyldXY8zrhLpso15lu211bbQ+N\nJDaGXUb/4xIToVSVt2oYHKX2SQ/54k5Btm21VHzjgu6YvwQyqY+1AKVuqAqg\n9TN2fGdUuKZoWYYo1qEolypzaCK6HU1hMIIaIvIyjoBChHiKQBaaYeqOntH/\n9kqyZhgl7HiSaO7szjjRd67JW/ax9PYJ+W3/1KAhVCKWplyyCeKtwMbf234+\nCRJzgmy+or1ALF5C0HbjmaqnlMeprxrAG2z1giStw4Czl/pxl55oV5MzV/Vt\nfm8+y/89GxpTCF3yhDytfYLXfJ0rmW6cKJJx75pn11kChKVD7Nn93yEJ9gNd\nsBxfBuvd5DGFMUhLTVRCTY9vAzQSI22KiytqgQ13O7byEIRMVLZBfrcYWtvn\nUy+0mO3Ww+1ewAi/pt2JMZPGyR8s2dKQwSB52brVkQvVaQC8KVeX5xc3D2eq\nf+xr\r\n=PX4/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2cc67ec0a6e1d48c0fcd40ba1a824ce3f47872d0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201119_1605770193843_0.08247295539696631","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"typescript","version":"4.1.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.2","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6369ef22516fe5e10304aae5a5c4862db55380e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.2.tgz","fileCount":170,"integrity":"sha512-thGloWsGH3SOxv1SoY7QojKi0tc+8FnOmiarEGMbd/lar7QOEd3hvlx3Fp5y6FlDUGl9L+pd4n2e+oToGMmhRQ==","signatures":[{"sig":"MEUCIQC4aD2oWMVcksigtOVNHrgGdH7/gNb5SptsQsyXYq3IAwIgRhDn1chYcTUYRZ6weeMrRp4cr0TAXxNpgVWZHtcXzY8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58099205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJftul8CRA9TVsSAnZWagAAp8AP/AgwfCSifwTJCkTL3fff\ntQEw6KweOasFwsgEUef9N5Xa5rf/56J3ECgXkvPP0DhkduENxxKIRproHMOw\nOCgghGkCkrbZgnVyfHhNxrSYCUHuEfx9A4+PeFV5V6yR1bMzI6BG1z0aiJJD\nyut3Fpd9T/elulEmYZ26vVh29P6zTcaPe/M6IlQ/TK2L8t34y+7Dvc3/uO/2\npWxZOQuduRLEr6CyLTczc3ZwhYRCbUtE0L4tDtUozioES3/fkoOqYfYrgnH5\nQbJhae9oWVy7B8ER6X0dMu0UOlx6QocFKp9mmmQI3mMkI+Ts1BDIWygrAUBd\nP0V8m1MyhHUbwsooY07G9JUMYUpDzEcK5O7f0sL707jKBojP/YlF++IGtR/0\nhhU9tlM0W4Q29zXQTEa+xvtuiLoiT3T7EbN0GCHtxktvIyOYMMigeBfRFg5x\nJCwaxX57B6Un2VcxOWuvCyDwHUe6hwmJ5obneN5WVaHp4K+aBljocK+D3PDt\nsI+KVpA3V6uaAR3eYrfioufAfvtUY4TteV5Ni2sd9JDQxb9+qGBvXGCqcGke\n5XMWGlO6jsG0JDpK4uGVnwZ/IJ4FnIaaIRYTQuymn64URQJTJPN4sJWbfTI9\nsuy6oPQjpPf+9sQ7EgSlZJW935OJFDCZjVbSZyu8r+jcUZvRfQmtjHWDVCq6\n9UKD\r\n=Pa47\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.2_1605822842864_0.13953605379164458","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201120":{"name":"typescript","version":"4.2.0-dev.20201120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201120","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9c059a314bec9b1157fd080f7d8c12285cc0f4da","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201120.tgz","fileCount":170,"integrity":"sha512-FbjPQW61NhfCED5Tkqr50BaTYY1/U6BYUSMYL63KZ7FncWo8UvO3S68goL2Zcw723ZLGKlNUsusk4Vhz42ETlg==","signatures":[{"sig":"MEUCIQCYKexU0o3SGjsc3f15v56o+eo1UX5lUvxR+bW5Fx/aeQIgI3Vx9u8tfh54UslJF3HAKcXW0JBWXIMOqamSAy5V2g8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58295721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJft21UCRA9TVsSAnZWagAAB5QP/RcS3objBRyrPxNXYmvK\nk+M8Xz88NIZ07Il3XvfxE6cvs2hpZFdG9y2xv1cUdBBBI7Cq9+esRqqnCV3E\no5TXlzJYENQWmBCG6SXWLga8LvWEaaKN9gBsofuQqpeOfxUjsLjJcJKrQaig\nfb6VZIHWk7O6tYR6VGpX9Ke7VcOD1/mcaKPKf9ikr87ilP7kKot/etGhhs82\nB1nvNxiKg7X4NGWk38N8F3EO2iUG/dQY4yYRHH/N5L8ZaLCXljHKYVFPQhcG\nOnLbKji8x5ajBl4BKmRy3xuqO3GMEhB8GQe1E0+Xp30ia9Qr3bBnwefj9pVC\nj+lBQ57coZ4bBlw8eCEVvmoxyrRpq9EggwOj/ruHJSSLYi0BHTSB2qSiJuO8\nKWNmvwHGPYUCoV0mMAJbCjfS6TxHrtdEW7BKMAjVzo+HBCaX3emnvUiSL/bb\nisw7xATFCnHr52sW84aB+6e315JGUxLTedk+n+BByhqHYWtg5d7MZJwvNxOH\n/13T6Awk1JDNHKqIIGj3hB4Syh4lEjFCtTThCvnG9WNwpEOdbiTrl9baf/45\n2a2r0+xBgiKnZ4GxPbwB04NaWn+6H9HqL3JGZOWNDXL0qOSmnCyJwu++j7WP\ngW1TjMTClKeOsvMTikQV+ymGSEImGXdv7V0a4Eww2FfANMBYyM+pe3BddWGY\nBU8y\r\n=9qlo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eac0f6dc3085647ce301bb79516cd925e528911c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201120_1605856595453_0.7877555872806734","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201121":{"name":"typescript","version":"4.2.0-dev.20201121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201121","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e74182f792aebd8aee1a1ae827f76cbbf6ece32","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201121.tgz","fileCount":170,"integrity":"sha512-vgQMt9fbBDus/Y/ZvEd/YUitMwf48vWbmJz74yHCqtrpt5IPUkurEY0ktfdB5XtnTWH0n4UB/yMJg9+VR0UhsQ==","signatures":[{"sig":"MEYCIQDIImmrHUZZmSeCd5o0HbVIGtE57d6qSemnKWjP+KsXcQIhAIUemBk2n+xfDYlx0MlC8IIyAqilwKI7GDSEr/1ASx7a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58297902,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfuL5RCRA9TVsSAnZWagAAGkQP/17KKP4MX+2RpdWvwsaO\ni7ioVZx3Xe9RhxqnQcywjescUqKCw/9R7fiRKN48Rt0tYrWRHtReVLp6WUh7\n177QfCM/b9lMVpt0Bdj1xAoJhJAoZLO7V+yltcHnOE9phC+ADS6CaXkiiNWB\nEy1VzNJa77rnxLONiXfAblVmVpQwuglYhpMJQ6P9PPDyL2aFKRzP8XkoD0fx\nhYN+//3sIeOzGzN4RTBhNDBinCId4+0vr+gNLSfEFNpVF+ofB4pNP/2lZ8kV\n5k4GlPNAQRG4Z+xL1ddIUMGKy0PINs/L9QS72D+4IENZTxv46EjkqMuZWq5J\nTW+wuoGggr/Eeer9yxy/T1WK950E+okwwr5E16LmKXCPqlGb0GAi77pPiEaG\ncLNXU/vQtnXT7XpN3fEn1e4VtIS4ncYvNkZlh8a4wcP3OOm5SQYklpkcD66Q\nQE5WP6u1OMKJaAp3DhzOMjKzgOplDonBTCo45YRtGH7z9Mw9I5BdtFMWiu8q\n0yC1mYaeXfqxRSilw/0CpF5ylrRstnJr20Be9bVrwRYAjKMZva0fjGtUIR62\nYSe71aUqqfYYrTCUkd/FR3fPR8DRdC9c3XsXeMb7AZFnm6jTjksVTI48+F2H\nbSy+o8HYcvC2/muSBjFHWm2Q3sjHkDlQlPQ+/SejGL2k7AvN2GOjN0kGOjK3\nZs4r\r\n=fCwG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f4157b41dbf9534a5fb5767672599f012bb0636f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201121_1605942865068_0.5632541623845433","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201122":{"name":"typescript","version":"4.2.0-dev.20201122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201122","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cd91e63d9a9fa66baeac63edffb8332d9f0efbe2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201122.tgz","fileCount":170,"integrity":"sha512-g/BaB4dfXCqGqFfMuM0mtqSG+cMW0LMc6uyKKc/xN3DHWLdS3wmkdxDjktMnuM5Hrg1Z7cdoyUHcsXaqCR28Jg==","signatures":[{"sig":"MEUCIHPyB3+bVJpj62DO5Np4YeNRcsEkJ63ziZ1DI18gFLvkAiEA03ZVQYdHWLJmU+mJzE+Z7WPDaXoS+1ogQLyb/ydIP3g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58301308,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfug/WCRA9TVsSAnZWagAAFosP/AtzUqMMBRc2FtkNaEzN\ntiX4NJdjhF/LMZ85nQEG5DzrAeqLh+UmW8LnBW/5PmPv3TZHZ+OfOJdWZ8C5\nn1uzZ92nqmS8AmRzXtGOZvGcYUOmA/YAkFI6zRVg21aGLzqec77OnscPzCgo\npwZiEvj+Dz1eNQRcPlQ9PmvE7VjdnTDu5V6UUIIpIrDNZBwJ65BCWWGerIJn\nCW/KqhP8dgnl7fb1ihDgJjC8vjo5aaBSBmhXG5XPB53ZY3PEelyt8W0Pd29P\nkEcwukp//mKqisy44rU0ciaX5lkoTXLtifmNyUZE0vLcFyV2Tl7PENNQEecJ\nc9LeEBjO81tPJoWKAxTHksEkgtUl2dU+CVduxaTF/KFRIgsvfN+OCoLC02mH\nQa/nF3qsV0j8GGuxZKP1AaeHrsonYDB4JJ3xaZmuXC7xOu9D9KJcyRiNWvf1\nxhbcNXAeX0nozonewyqSdTDv2vLreWv1L9ANQcA3kcIZ/STKFO/Vjs9e7wps\nzGu2cRijab6I9dPhM6NgVd5SQKU6VJBq6HGRgRpDvh1hoRbUV4MQERMvK0Ok\ncVOWY4d0mjI+3NWjZUSkIZ//K7hHWQGO0CI/K7QvE+9hh3n5ucH3JFYNkjao\nkWfIEF6+XgJalVrmBy485ZO1RmtCzGbSncb+TicnMJFWCJOOId/14U9aJmI6\n0/lH\r\n=KV3S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d057f7a9926a5466e6c65656a0b5117849df2e36","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201122_1606029269755_0.6843050706485874","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201123":{"name":"typescript","version":"4.2.0-dev.20201123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201123","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"03a5d54f9edd1fa4cde326576dee12f0bb703129","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201123.tgz","fileCount":170,"integrity":"sha512-hMh+CSN9NZKBxm5s3oRDy2hTQZd8dLVboBhs5Ymm6THo3/i4XqwaX7g68RH+rxEfF3mtCtbluI9wjIaP7fklrg==","signatures":[{"sig":"MEQCIAVS3Fkg57uLCPvLQ6ROho4emKwqPUZTdU0QPFW+ZTVfAiBoY3hDq3qFBNTJlpgf4Mz2lATcnE8jsXn1GBBriM0Wcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58301308,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfu2IbCRA9TVsSAnZWagAAD4gP/3r/Dcl+4kExJNe9Ejci\n5LcKm3UAX/PaP/TIp4ZQEXw0yWp7ZlRdGh5aWLDas6MBa/m9fYHHmH62Bpl/\nzN6KyJG6GycxHMABfBrEIu9YzhLOAUgpY+aPdQ1C0at5My3+c6C3p/ColWw7\nT1081gFaPlR4JXb6ROda0gxUnMc9JmTHYIIa8f4O8warjw/OWI3R7E0AM+y8\nVKgURkhYGC3V51cnmcpX4jRch+KH8SqNo9a8+Owm6w4U00mzulgiY299NHfA\nxhiRmQCrtHsHPNeoiRk3ys6QuMTyvs62HyXMAp3OhEtmaY5gfwDMs4NTU5jh\nIY1zlGxCsXSjvAIdA6dq/e0fwmohjM3z+mKlUHPWp82vckHoPj2eZQgb+D+9\ng1P9cj1g8M2LTY+ztGMakr7tl1fwbVNfSm6ksID8qp/xmIKgnSteUHO5ojIJ\nMzYvAEwHiRPim50FyUfy5y6UlMRJC0kFg1XEB98Q7mwvEzcmcJ6F6LqqURZH\nCkYdOcm7Xl8Dgwgl9OYGLYtMQKvC1vhjiL7QbsjApBBZeYZO0x190ocgqmW+\nEyguMPfie2MTnWTGDwO0WEYVC25SY/ProOU8YIfMliMDkfGaglFadh/r/H2I\nBIjD7kEFNOBnilrefy5wcDLpxoo3CuvYa4A+XxgT0MBjruMAc0uAvijedMc+\nW97Y\r\n=iQxP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"54f8d38535426814d1c5972e4ec4676e8cfebcf6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201123_1606115866123_0.25851223273443247","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201124":{"name":"typescript","version":"4.2.0-dev.20201124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201124","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a731e649bebaaa749676af4c96d04b3a97debb46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201124.tgz","fileCount":170,"integrity":"sha512-/aK47geEILJsooXvGYY6O2G7rWd8ffTpNqw1pm+SuSdgs6df/CnJqeYWaLfvcamU57KhCbtAuYG3I4FnH9KKjQ==","signatures":[{"sig":"MEQCIFXQvSte+lg6rmnk3/N8rOIA7gHMWGDGJNSpA5jASsOaAiBjp8FSoqhtU4V2hWb+/siWZsnYnxj/gws+KvTNBYJ4MA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58313379,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfvLM0CRA9TVsSAnZWagAADXYP+wXogSrHSvP+ravSkDbH\nc9m7ghDz1Kqew5UxVKvhLqg6BrRZGK6tpOhPlrD/b0nu9LOvXZjMRbzIKMtl\n/gug5tgwzskF6OrLCdYAGtdmX8NgSHemQCIqPnQi1yR32H8TQpUp/6GgK0iK\nnx59iNdCvlxYJW5js6sZMg7PALRmtHzXHdY/wCfqHJIfT1CaS27NW7BAaCG1\nPbR0mI7BlkOnf+x5g9OhCscBbpud7VW0ZQQPioRC8qqPjQ3BDdUI9inI/wJi\nNdSZ3/RTse4sTEpy1+t8Qb2RCBj9iArpDQwSWVRv9EDiBvt5qJ1nPD7Y2Yv/\nShX1xxsGvMv8dT4MQsF4DzujI7hmrws1JGZR7GzOSjrCcEvAnjwMRArl4IL5\nFLM4NSjUMKM/n0TWC6FYQpTQxqugJMRdhgll2G7dHwxuSEzOW7V6veJ8K+RO\nM+/3zZ/vw3otYC5qAn6zVrdlSNEnXeJfzIpqn6aOQupf9PEYt9vi3tZyqKUi\n0Dd/NxN+B1DWMw2+8369zSAC21oZPlxwJVXgkeYT8UukyAPeAXz9yYn1SXek\nTIKIB94kzJJyqdFaFQx1881gxkXJvt8ca9qv1V6bj7HVOhRUsjVRQjWKIF5u\nZQn1MKyIsTEoDHebRvXz08Q91su4gqCew9vVFAdNhyoWU8WAPzLbJO7+tMGd\n8VRi\r\n=xC8b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d338c20c152d86e0749a200c328517a50dd8d3a3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201124_1606202163319_0.7370005479698551","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201126":{"name":"typescript","version":"4.2.0-dev.20201126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201126","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ee83e3c31afa03d3a5101c2f0431059768313070","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201126.tgz","fileCount":170,"integrity":"sha512-9XX3cApBx3qXisnYxPNpb2ukGsSNNXhgAyqil15IpBAx9O4n0mGsewL1RVCdYZGIyFPqZkU3cC9X2nkUs+9r8w==","signatures":[{"sig":"MEUCIQDTCS1QVbvrw/jXyzL32qkOFAdm+OIl2QuUFUk/SRRGowIgFN6l6Xt3j0EKeMtG/SMM3k5D8N7unq0lzYHirc6PgNI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58315600,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfv1aBCRA9TVsSAnZWagAAVToQAKQE4F5cmRf9H3zcj9WE\n3/NJmratg2kEApC3aGlGoU7Vax9AcqfDlVIPT55ZU6beJddAENXGgODSk3nZ\npCIKYFQpJ76UPU36QIG3D00bGMnu5FJ/QPOzz4el997h24oj6Wgp8sZ3ShDP\nneB4YoDZPUvZ/Uxmgok3Ouzn8hJJcHqR7e0gLiIPLadWUNIYewiCKqudqWnd\nAOtJs0/OMow0jJuMD3bRd4YehJ6+hYpnRZIoSe/rCSxaAZEagU3+ioA4kmy2\n8PE1Mzaoyx6huqjhunwg15vCBFMdhSDSDrJvKwcZzkBlONkUdGyvHypL5yn+\nntVfGteXlrbG1WZekldqK7Z3cZsTIJLzAxUJukgLMoKdRxfCsWPRo1/x7aZP\nqVraEzvUXH1E2VB6plMrVokvXYVcb84WvEJeVznoeJ81mtEtHzSmSN0EaO9r\n6YU7cb5wmwvvfQ73Fa7PmbWCIJRGm1tGVFuqBAC1ye7YAj+weSkw/CYjaurB\nG6megwdZhFDoWXeQb50QFprDTjDqoNpPJMHDzPf2owgcoSA0g7XjowYE43+N\nh/IVcJVP5R/TvCdyBV2+D8Y4+w8hjvj8zfP9RrOyMehjv9yq1LSRuPqu0xCO\nWUCfBMdiItChoQBfpAme5HuZz2BoEpksqN0waotA0caiEj/mwyercOZogPYx\n5zHH\r\n=q3PU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d616d8fc11a2e5db3a55fb67b69216a12152235f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201126_1606375040193_0.8040813325099028","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201127":{"name":"typescript","version":"4.2.0-dev.20201127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201127","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f84e19bb90161ef9436d1b89ce201dd5f0aeefbe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201127.tgz","fileCount":170,"integrity":"sha512-vBptKqG8GsELQfRsXVGsSuaREg0OqZ+MN+J5a7oU2OvSZGZ/v3mGvUESPiZ2KIreqI5dFdIMI2TGS0lr+0crZQ==","signatures":[{"sig":"MEUCIBq/OYgQsyDJzVJm2XV4LwJCMKdNgkO3owgiNn6qe3NeAiEA+alEpLjutT0TeYkZM/VoTmE8suanRrxRYywJwO4x33Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58317611,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfwKfCCRA9TVsSAnZWagAAtnYQAJjD1Wvc558EVX8mlYO4\nvP+bj4eXryEJ4DRp4qAt3q/BQhF9QDc3W7nvtHx4BNJlp6pZ3wx3qL+rdGu1\n3pxxIU5H0fmnl5qn68FI7/xA9Sb9CMvjETjJvifK6PWgvp6ZkpRuY4Il2Lgm\nl1Q+3D/zRMmmLuQh433uT3/0+ZBqIg0LlwhOPnEop0P+PJEZKrRNRfsLDH7H\nzYPD+EwnF9n0LlpQZMHCfFKUX9kTTSQlRcuhaVWcguwX0SU56hwlvUQu0cFP\nT/svdXrO3miCa/BOgaJma4TEPQFGY+Umpe32UfTeCecQZXD1e+1HiyJlpZJj\nIBHOKKOTT32qhqtUKbADAgeIK+eklDwMRKkcDjo7YqIj1MWOBtnAOam0j1/P\nZV+89MFXsnstSKXdqR1otpTqwupONi1f9UIl0CJwN3EP/6B1gDgfW5tYnaCp\nWPVFiZLh2Cp6LC60EpCmU98irPk0mx2Nc9jnT5SVxFuhooCqw3MbLf/Mjo1Q\nhNyZ2PDtgp/r0Y4b3ewwBqTGWatkDscPtZZ6uzaOTeZEoNUb0m7G3V+TRb32\ndQsfS2PR5XSyW4+bSVbmG/uxMycNM5ocg+zb5BAVN9LQKOKRS5wR8FTjT4/O\nFK2Ie3r3QHpIGMZVN1Kngr/K/wtJBaERewd5T+NFhSFg8dxfILNA2d0oRazD\nHut5\r\n=4Fy9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ee570402769c3392d82a746fdf1416e4ce96304d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201127_1606461378015_0.06976569302956492","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201128":{"name":"typescript","version":"4.2.0-dev.20201128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201128","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3dfe09d762882a6564a7014315dd054a5002d46b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201128.tgz","fileCount":170,"integrity":"sha512-xnVYtlyeXvJghaMobB5dQwWcz0GtiiTMfaJWjVHGJqf1ciIj47YE6FXnykjyoXEIc/xo5olxSHu8LGJzyPPbsQ==","signatures":[{"sig":"MEYCIQDOHfSxDdI+V8pnS42BnR00FUbEeoRLEvvRYo5XRB6IVwIhANlvPGqkzzMFuSL59J00SJnXgY6VWGVH9Stsk0YF57/f","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58317611,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfwfkxCRA9TVsSAnZWagAAYAQP/2khPSYQemPd04b5ltGL\nz0K7Pw5KV0GfhvZFcvFcHkxfglryC65PuY7daAUC7OjOZ9V7ppcxXqh2e9wg\n9wrLJqmcRaPmLihR12cGTWJOBKxlB0HlSF2af+VLJp+zYSPiNGJztKOpozBU\n6NN/cHdX2jSPm23LXYNfyNkq2/ZSgjr5Y3MTZLS9DpdQbPp34FVOAmQVr7O7\n898dkx/mrR7EnWee/yajbRiAI9UmigYGMphKsaUMUPEjW6lold1OYGUHsaij\n7cCred2psYnr2hC+BNrBnBoc8oWhGd+fxcmwQv3fnlPV4RdgfwAToM25IC7Y\nlWbmVYrBTMJq6qFEd9GXXUH+/jsCG6FB14hmsElqVqBKijondhuRLtf/fs9i\neGp2ign0I1sIFKRz+hJZR3EPIE08hwUIlbZJ3eaYONkFhYextPz5AYs/lGhp\nv87cdDxqN+Ym06RN8EBL36dyZWEZacoXX2+HNIm2Z4ymyE9hKY0aJPB2oJnN\nbAWMGty5Iy7YRQsD0AX7hEvnf3VMmATlLqDmH6kTbK3NnJqbzz/pO2bNYb/3\nD9ffZPkNQv/D5hepHIlq4WLp97WRW6vUD9DDhPeDKKHgknFTNCdPw7aPDMbI\nmm8GiiS32rKdrzZfWWlsWw2B3HcSyBVBwkqJ+fxX69WqPwofrqg0ZLWIL2fk\neOfy\r\n=G1aM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ee570402769c3392d82a746fdf1416e4ce96304d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201128_1606547760484_0.6878336407933217","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201129":{"name":"typescript","version":"4.2.0-dev.20201129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201129","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bb6576318d1b74e767443156c25d3ba4103b22c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201129.tgz","fileCount":170,"integrity":"sha512-m8mbGgTdDt7kHAu4FffcVUv7fDwu+EPK1gbhXNJ56HTOsM1V62dTiL9FK+EOb/Z49XW1q3H2GlT7btMLDZqBmg==","signatures":[{"sig":"MEQCIE7NdsVX/k8RCBSrfd424ctJex0LCD9IMQRTeM90Y8TzAiAvbeMZlo7Umrn+Ov533h78rsEb67I7l67Wfht58ZeoCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58317611,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfw0q5CRA9TVsSAnZWagAAjbgP/1skV8ejFhemBJU/JApF\nZT07UyWwtBuGIbVqtu5OWE+r75pKqybHjyHzQIeYt8vgWIPQ5ND2SMHsoSnU\nFZb2QDnIYZEECjadQnNR9DU+gu/9i2SuYakVr7SFIlJMfLPqHZ11ffcnmf/H\nTcb0jsBB5q/cYJs+JUCiyOu/grjSMUKkdu0lZr1HzHJXxsPVgnAg35RjeISy\ntTjqqVbCfK+tUWDirUkafpE6/sKpXMa8IL1XCUWmkTSZCh1ea+ZycHZt5D+H\nN1eFiKMwTrP81LKMnCX/PE+iyMU9rIIGgsMrnnJeQkav3asJIAsxmZnWVVgG\nR38mS7OiZRR48/HE7El/2Eo9NuCdRltvpo3WtlgF5azs2Q2NwZuvp2zXXMZw\n+4RJOOH5iEqcHTbZHYIh5LGzPVHY2v8sv7rjMVGUcIZipnrlJK4qcIxI0n4w\nebsblSefcegQTcdhHGH7FyIJihWdZ2K8FyDrwfvG/0ArHZ1T7N+6eL/wCI4y\npF+QuqdjTRXuWSqkv4SN0Q3HoDQ89eOc697zamUwNzAl/7/qZWYsmlTTy0fc\ntPFhYG3atfRaah6NQJs1F3SzbhaJLY5qm/e229UyP0kKAlVMgxCeF/PtWybi\nofOXztcP3oN59j0B9vFSKz6+3exVVUPgkHbckacUOMaaLgt1Q5sYVR6Sv+BF\n3Iyc\r\n=A1xq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ee570402769c3392d82a746fdf1416e4ce96304d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201129_1606634168360_0.7197653339135932","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201130":{"name":"typescript","version":"4.2.0-dev.20201130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201130","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"13339af4dfd23070dcd16f28e590efe541c766c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201130.tgz","fileCount":170,"integrity":"sha512-oMboCGPKWDJ8BFmmanPAWw3LUGlEXSkkF+MbuHu97i1iF7K4z4zjmnodoD3Dilqs2IMuVDmWBIkmget9xMrpTw==","signatures":[{"sig":"MEYCIQCV0FxJwtrcst+EvBS+tfpV62P7oo1vnpoakVu4RBS8MwIhAMlANm6xSRtOu4bshsoTDoRe9hW7eng9jCYNQviE5JN0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58317611,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxJwJCRA9TVsSAnZWagAARKUQAJ3z0CLDU/oIKA+dwmdW\nijzufTU46X25mcbd0nOxKvzCUT7FwYHTuLV/kp683Laln2CAVBDI1/+koxxq\n4ezv99iJXA/v3ipInttApFtgDPW8o/c7qfscmZgjvkf3V8gPtmx4k3eKNoRc\nXD47AELhdWrv4NS4hLO4t4EDqB91KSNFSszWc2mLI2ydk0998bTmGJ79OjbX\nX0vpMzZ5+2obTjMI0NTNg5yn+G78EX/+dVg2/oyx0lopzPpZ/AwZOebhiY9S\nqARLMhs0Ul03ayHjFIW6HuY+tKxFhRbrvdgVXEOfi8U9iMMiispdAmeNiOIN\nQ1oucI/MOdnIpnnK8BSDf1mnkrfom9GPTiAtDzzLVFzY7Bx0zL3rljm1ClXH\nkBGr2G0SZ4TiPddFTAi1eYm7XoXPqkvvLJRghfzBqCA4o+xbrjXZD/GFlpjD\n3MNjX7WeGgH611NqCYL3nEa/Ir8j8BkjyNQ//uiPB/wvRiMxrF4Fn9So/ZVE\nl8ofU55Mfmzdu6HyfFhvzyDuFLymZ6Fi1xSsuSkF3/Uk707MjnMDW2dK756G\nGPCD5QaBgitZtfoxnL5+rWviQh5bQUr410atXwk3/k5B7XjnldMQgReM1g94\nQS4+Rr7WbMAx/W9b/r16Sv1vlRXN5UAEM5Z8tciAgCDSQc1pzbu6xvA+vZ3n\n/tvn\r\n=hyv/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ee570402769c3392d82a746fdf1416e4ce96304d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201130_1606720521021_0.4679060311868297","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201201":{"name":"typescript","version":"4.2.0-dev.20201201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201201","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"66423994fafabf8daf470fcfa14e1ce7df52af42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201201.tgz","fileCount":170,"integrity":"sha512-jpbIy0bXQO5XcI1tPreqUEzoPa6+BF/JDC4cfaEd3BdTi1QZwljEl9l39WMma+tUIzLBknTERvxIhUKFPhnV3w==","signatures":[{"sig":"MEUCICeijy78Q0TrUFg60DVP+6lg25jE/Ib4KWUsPlQbkmv2AiEA9ODRYZ4jWAUxe1WMLEKUgDds+YpdJUrOwyNGPhzWFLk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58321177,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxe27CRA9TVsSAnZWagAAqh8P/A91mScpV+0CMuzc3EQx\no3RI1bRNSwdLxxgaYhblHxopapIQEvjJrIX/ERsac7sQ/Q2UWJ2bvch0kfYm\nZKTPaQXqN6L6Ce3V8MpcT88BKtqllpGG3qKkmBzsf6K7Y1gs3L60ASQJHBfI\nCx/53/Kzb1xDU10SZoC0xr4WpYqAYPlKUYXnxKlKVw3C/GsX8ED+Lq7upIhF\nR0ND18UwX7sIbaumQflMSlhv/RMLxKV2cdNgAEvzvd9FA9hC+z5nbpmTh7HE\nAA/C+kLpiXAr1V84A+gEIR1Nqo26j92D+mI4+tOrD6RqJXHvver5tB7Ic67Y\ngN2J9G17XMPA1MX1M/AvlQA9feaztEy/8jpgWfHwguVOplyDOYpgpG/adZIz\nzdLo3mRKLfA2bhEpoVU4nQ4gfv++dcwpLEm1kgE1ECDpsYyJ8D+pIzJnc30r\nCK/Peg99tT7R27u9GbiFppCcty5v2Ec0hnTch8R2sx/5fy0xjRj3lsoJ6OHn\niZUlmtz0nPh3yIuScukNOTktkjseGf33GA10Nzt2Z1opjQwE9D3IalM7NYjJ\nGnj3h9ZCrg1Z+9W7qjEUSOPlYpebJM2dXI8UUsutCb3li92a53XaUj28w+HV\nn5KbR9nsOYuxEAbbg0U8x/q6yoNBCde3btl8QrCQageOtVhwg+4YBS1VA+ru\ncVvb\r\n=6RAF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d0c28ab0c2c54c8d4ab2f0c34385aed501ef73c6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201201_1606806970561_0.5329597580806567","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201202":{"name":"typescript","version":"4.2.0-dev.20201202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201202","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8a28a159a2871583029470cb227fa7b2ab9df3f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201202.tgz","fileCount":170,"integrity":"sha512-NYbvEtFsXiiDF9FpUjVNXq2qf/oTAE1973C8RnmgNGKpdtwmzpday2nelNnR/Q/LYjBhU0dvoDYnVxwr10PmRQ==","signatures":[{"sig":"MEUCIQCZWK2KabaY/WtCEiQmuLk0hytCCZoBDkztUuCZ64YelgIgLeK0JtbiTuQj+LheRcFAb4Kj62W/Li99IhxnSh34sGo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58328380,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxz/hCRA9TVsSAnZWagAAU+QQAJWdeZr+ojQ/pET02yzO\nIHCV/Vv+cyKNhhmsmCeMNy4BiKGmY5P2Nhkf61k9t6RcY1DzGZUrm4DynSeV\nZecLDnYvfpzyhhYXocgwdq+cHUdzZxKdsujqYhW4CcmyAZFDwQqug7+FxTxI\nicURX0d/OcAD21lWFak66k8jOZiAB2mp39YtfQJMDH0bPeaCGcIaf4ckTvoI\n/W80Fq2IlbUnAT8ByqwT91wDX1H/80arImLZVYZ9j3Z8WkybT2gYCu393f6w\nq1IzBVgdL5JfP344ZebO9dPylRR50QrYk/KhKDunnZUbYkQSgHk8syqC6yZU\nrZplAWQyChBIC8PMrCeCcJw9FJ0lvYZWuXbUGCN+ArIOXqbg7HOX9V2ZY8eb\nr8R8+TaAPCHlnpvOBC3EdB0g6MUJH1NnO44SeESYaZCHIucIOcZhIZ7/YXzj\n24hX+LDDricr7xfOTK+khLBdcJP9F5jKpfAmZ3OsWZSuqHthWCjUo1Jqvxtj\nrgRVMZIEnFIk9D+CJHxfia0FZGWjjMVHIfLNEmRnIjBc610VdJCZrngjUZtd\n75nni2ogFF54c7fcqQ6Y4snqqPucUlnPR0Ch1uGUeSSgnZmYBISXuv6C+B6P\nZoeqIVz6BA8oQGGiTXd1g764hkvGek8oVoSd7aFs7APNwunewQWssYep7YVK\n0+eh\r\n=b1H+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b4cacc3210fc61d517f0751f79520ee7e093b1f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.19.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201202_1606893536574_0.18542886624673027","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201204":{"name":"typescript","version":"4.2.0-dev.20201204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201204","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f80d7257561f2a6e5fb06c519755d8dc9c865815","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201204.tgz","fileCount":170,"integrity":"sha512-9aa/ZFeO44zzM0PNBkW7rELmmXeXM5HoRUWkmVu8FywK8NF/n08FGaJ1Dkz9kL0aUlruHRghFrxVDMT/GX8H4w==","signatures":[{"sig":"MEYCIQDgFYxLRxNA7mYOMYNPIk2NDF4jP0zP1P0Vdta6gZrEbAIhAIjbRCwRj+VGrFe1CP6du5OCfQc0vfCJEIU/xpGN9jYC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58345423,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyeKaCRA9TVsSAnZWagAAFb8P/j+nUrzlLVl5v/tIjb7I\nVABZLQVW8FGNfRc7UeVYhMtMtnS/46bUQy9tOfOAixUPb5n7AF3/3v+X7yPc\nV19zBtiPWjIMMMeA9b2hFdRO9Xhshxpjx9uVkSslcdF8nDNLjj4xmLkjqSUF\nysnUSBfGhbOfEQ3lsCr0k3tCWIMsI+oG4u7XE5Jl3kLOuUb/ESUF7hh22O/t\nqPUvx3PLex3Wr0moNbN2ponD9TdBiHUn6WN02UfuHMH/uS5NYRydj1eLp2LW\ne/+GmX+1HJE5YAbBBAx44JdMvEJ6Lgo/6plVaZslazPz2+XOBz31TicdcyDQ\n6TO7H7m1/poCI5qS4kGHe0i9w9GApBzG+J388gBC4z/P3K6a0R18VFX6geb9\npI8/qlvGQyygXFZQZCLpXQNwNch2cmwR/u69T8yAUfMdq+K2QqZ765hOfy9z\neXvIcjXfAXKNgWHHZEQlTqtPGoJWHSNX2rDfKsitcvMmjrUoBvYuS1zkjpzG\na/kgS771ozIUUSb7u/sJRExScojxlbBzYsORm7jf4iq7eRlqaS0a9YkSiLC5\naPdxnSHJK8S80HGkZFWEyDIo/tDbRhmewJo1jiA5brdUrQM7jxGmRA7e1v6a\nnntIz0vopjaf4N9Kre7RQq86xIrVqqekiY+Z+7Y90eXJMBHNV20/2u8BzqUr\n2NA6\r\n=CaYh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"387b6dc3e143c22deb8959eb0480462d32f31ef7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201204_1607066265208_0.4898185741671117","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201205":{"name":"typescript","version":"4.2.0-dev.20201205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201205","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00436254104b73b87e053697e28dec03ab5c211a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201205.tgz","fileCount":170,"integrity":"sha512-NKsg2TertyAUbzHPx1sEMM4H6BDsrB7qdpF8H+6Sit+9R6/FIxy9CX9DZ4PGMMarq+JFbYZHWxhuhC6XQosypw==","signatures":[{"sig":"MEUCIQDBa9nzznmRhvPqoscWAHbnNqxOQ1JpVoU3uJhDK08AlAIgUZsFw3liEkzgiyv76l7AoEG/Px71l9GVjuXnfgIrJqg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58360192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyzQFCRA9TVsSAnZWagAAQ/kP/3AYxTNrjRHRcO1n57JX\nxZkxMfPcGBBcCO9vajNvhMIRlyblstiFSbNqhaegmgTR6p+0GPXbqxN6RaUL\ngmC5wbxHLnBb56bqGf/495NzhbnwqIWbr+vP9vDhBz7wweUG70QE4OBPZ2DR\nC5F5z0HdfaHZOHEpmDoakpxARmFTPKykAOi/sYIZo06u/13uLyedm77HcUUN\nMqAC3g9kIvc+E8GMRKbRS58bYsLQ91vF81RGBrQYseggBPUxw/IwLr7eYgWp\neSllyqSWU5Y5XivVgbo0IUaNNau1auJtc4vJMn+l3V6bC9e7yf5KtojVHfCN\nPn1162kXGPkaDIqApS6cZla2qiD1qc/JS7YuGN7uV2GKHXTnX0Zvyb7K9fx2\np+b6PknDy8kI5xVdUugfKq8LdjDxtkyFWPgpSmoVmXeaqGMFuU5PkmhIa2zG\n/CyTw4GroE7X70FvvYVd9I2UqcdYhyDDMxSzghd23KJCOZ5241xeZWsiA+NN\nnk+RR8/2S9WBZSyeIOHmQVRkGdy7M27Ve3+RZ/bH0XH+OOMRlPEoMngbUn+s\nzRy8i/q7V0rGXX2pmvPJDz5BipD1DTkABu50AbU6CIpaWbi3gBqO3eEQT1pL\nvKDLhFjCw3vuAXYxfoXQ/QuhElTi68F447CDeFh2roChB8PbBwoa1xGf7SLu\nlJfJ\r\n=1ag2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"350e423c5ad0190a2c502e6b0ef8f13092c89f04","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201205_1607152644368_0.8506373249084853","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201206":{"name":"typescript","version":"4.2.0-dev.20201206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201206","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b5a6c6e14a3186496807d7fa0ed105b6edf094ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201206.tgz","fileCount":170,"integrity":"sha512-FZxNnxn0eMjyTMsqdKb7z3BLHPwhKT0WL/FoUzMCtIxALZNRAa2j2o8d4sR8V+FRxqZWpsW3PfphgJW8PkDlNQ==","signatures":[{"sig":"MEUCIQCq933Ch1U2dIzmrcRdDw/pa5JulPlDUC/F6j4ekRn2UAIgDpklL1feFIZSV+7S2SiEE77+MU2WMEYvFHx/KgDbtDo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58360192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfzIUGCRA9TVsSAnZWagAA0zcP/3FvGo6GJSHNxvQ7HsjC\n2S7d+Tb2Y/MBGlQndqVVuJhLoDj7YSnTnBjJMJjpbVl7bnGV6LLTh403Gi0r\nLIBMUNhmaMem4AJS/W4QxTJHJwToqqeI6n2I6GjW5CMSWmVgjm89aDan+2co\n1AGriLXxTpATvATcr9HpF+6l/nzXGQVMBgd9Qr7P0leERgmpyVmwqTCeVkvB\nVBkeiFvkM+/uuUJlGESf/dXg5OVQaI0kCt+8uQsqmW8FXpzqT64lOWHpeRvt\nSAq08z/ptldBkHQ/K5gc5NBH25cfihGc51CVKyNLd/zDevuIpAgRT//U5tPD\ntjeiIng7bb1IuuvQzLDwwFTSqZJDPDQp5kEXoTmjxRimSze3q5NvUlyJSklt\nm+g3CCr77wRFAlVlcoe8MRTaBH0JtfhRan8+cgkDHu0Wkfb4tMRhjdQBYTef\nJwGfjj00OjafxRjIiNI6jaP2XCARSOKkWaEE/E4BIuWrItoB7YHFyK2NPxtp\nOOEwj4idhxbQDqSigRmj7wJ6YA7JbwRmkmQEumSQ+IxTxoGAF3Lx3xUYzVNp\nJQtYsr4rXg8YVHCuEMNoh4ns+g8cXPnoFo0x2x0uR071fRKuwMTgFVRm3F9n\nQ3M4P7rZ9JDT2VFnHKCkBRtn43I09X8BrUdwrP2i8DTrn/bXTWNsktLN5u+Z\nTr3f\r\n=ahoA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bf977ed9189d2f795930366c1baa2cfcab123e1e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201206_1607238917688_0.7364135080248544","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201207":{"name":"typescript","version":"4.2.0-dev.20201207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201207","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"19a34bc7d2d42a7467c512c63f135587ac848807","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201207.tgz","fileCount":170,"integrity":"sha512-fPHBDi/fgdX4WiRC7cFVv/aL069PgUaDWuLYUSHatWZujz/Lkc9bkf/zL3rKdNSCxlNKAMs3fhJv/yompOphZA==","signatures":[{"sig":"MEYCIQCTyd0vV6/tphk9CarnTNcY4ccSjXSMt2xPxSpqDnTD0gIhAODPLCosLdDPY6GMXTVtvUQIPjzGRmK3EAEDXb/VLfKo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58360192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfzdcGCRA9TVsSAnZWagAAgb0QAKE57FW0f3VBer5CccAJ\ndOHK6xMWvt6HCkIzyV+zTC0U6yTequZapbqI6nipzf/Oo1UId6uD8EGwEFxi\ny0Dj6E3qFtJd/CU5yvpnlhIBvInEWVLRxG9kv4/ergARVR9hdsu28gFJdqSX\nxFP0J9LJ7iVsV/atfs2BgTuk2OhOjSAHCI6JRTMlzk/durTa7rX4Q4ZqnQhU\nADTJGlG4ne+jOWnw14HTRFBiw4897lWiTJ5afGwSGCPzEcLAMMnus6AQappw\ni+veKtJsufhCLdgxGzbKg89W9gtM3aKUYwXpicswetTQ4vmaFB01vIPd2E5R\n5WyoL9tHc8jxwp7JdY4fMl0N/73miR/jkIC+grlG66YtaPztxVy4DjnKRIQR\n+HFfSJZZvmd0tGzj4/f1frpYvglAcV3YFzEXFJ3pUGSHqUzh5nfQdv0RqLN5\n/8EBH61PcItkMIl8yE1aaWsNEuKPbR7iuaj7gy7+8UiD1b1qdg0T79X3qLpx\nzyst+VOTXTVOGcN8+g7JWquqzLwCMYGIPLufTY8z16G9QRohZsoiTbcZYZ7u\n8mrIx9lEVb9pRDClRynTW1tak+skl57tY73QLV1ZByZgcLwIqw7miGMCSc9g\nWh+PBWKHL/JD7P/xCr4pYEVmCm2bzZla6fo3wio9/evFk9tRsBS31mtrHvpB\nwazd\r\n=8pFu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bf977ed9189d2f795930366c1baa2cfcab123e1e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201207_1607325446058_0.4943389152063673","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201208":{"name":"typescript","version":"4.2.0-dev.20201208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201208","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3965433321aba5c0e93b40e20d83860117a24d8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201208.tgz","fileCount":170,"integrity":"sha512-JiXZrbA/rT3SVXVIE/cnjt+KHTtPDsnlEt6JoKNzjgyxlWMEYMJHc6VJSn4Pmt6nPGZlqEYtlqe6/BLS/9uCsg==","signatures":[{"sig":"MEUCIDhN1Wq4LNUWiQ6jiz6CWRDNBnQHcumzbkHRFt2UvxfQAiEA0M7v6bg9zlFYR4de7uM1sJ7rBp7gGMYOK9MOIdmWFz0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58366084,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfzygMCRA9TVsSAnZWagAAoPgQAI80mxI/iL710ZxORNYI\nuK2T0MNO78hcAZyMts4KdMq/S0FInTz6SLBoL9HCJWnZeY08i5NVmIt4ICjn\nek4Q3TcYzeOr8sGYTfxgWoOQ2ZDKWTLnnMTyphjTWqeQ4L/zf33OlKwn/IYQ\n1cmT/n2mvaoj7lL73gLjDl15hbmJ11zXnbqPPa/Le86Lw4dYBNn/YObgYLaN\nKFmV+phfsY9Ziw7v8XXT0FO5ejJzdoKlj36kxmUMGjUCyEk0B7RwXnayoeTF\nR9JW/LtkF9Hk9IHQ3uHMZR070f8y/NqNspsQNfAyM5FhV2gy8ww7B9MUYdTN\nl607seq6XLOEZarj1tm/FUNuo94JcIFhlIhEYYvKbC5dLgmHxzWiuC7dtE/B\nOCwcdvjq0qQvYdS6faCriqTNcOJixOWgNdmlwcyxNlLvyyRwa4m1b4fhVmi4\nE2+Qx9AlPJJhl2HBFbCo7qM67VCk/dbKkGxI+rtz++fp1QbpYX4Xp2VCxYd3\naCA36xVNzALd3hsdXj8xc819U7bIN4WxIMlIrxPx+9LT+/p/5+3uvcNjWouK\nF1LH1f8U/4xb8/KlqC/KzTutI1AwtBEsIot0t4Ic0+KtBPS4Wtu1EC8YTULD\nm7ZCCtjM/+Pn07jn8yo5cKQItE9Q7m00ys+YhsGNAef//pFjVySH526Hh7pI\nJhqm\r\n=n6z+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"646f5b3c4e151a2c3da9760a483cb49c923a9d04","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201208_1607411723946_0.9408037412754047","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201209":{"name":"typescript","version":"4.2.0-dev.20201209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201209","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fab33fdb1aa7beb857271e0626bca6b200c61351","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201209.tgz","fileCount":170,"integrity":"sha512-rXJtE/naraN9n3bPBDA5Sa/2nrx1di5se/kVkmAjhUSpBzGmx3zeNHZF59U8XhYQdQ1QsMiDDnjmtjFUGC9LEQ==","signatures":[{"sig":"MEUCIQDeUeG6FakT9EvsGdImxtAxgzsXuI8uXh9Io3wAJojqtAIgHZrnzSHZmSDwi0/wcIWTLMAF5S0Jcr4U1+Y6OogAUm0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58571809,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0HoVCRA9TVsSAnZWagAAKI8P/0M3tzwk3PS2oWBP2nCB\nbCjukwSeXL4szPCgSN/vt03sE6EHpCc8DETiilnQaE30+4dbkXPFi3MvIrB2\nWA9pbIvYm64wtNCA5H7+KpZ3kFWJ4LzfEiEKNfS5DuzbLGTA5xfI0ie3DwzS\n3vVBJ2GwPkP+Dw2sgNQPXhbiov8ya6gs14S7uglntP5wHImkv+wiQMSg8i0D\ngsSvLr+RqP/Q95pVPMAzMMRPkAgVKhBLhoSvw8264/KR5b7IyAJThhyI+9nD\nZelRFzvgYd/5N5aG/gjtDb3G2khwWJknZO4ol7e1QjrWx0Cll9lg45Jv4MlB\nktc/X8BmcA1wCdoo3ai1msTeuZij5jXMmdyhGtxdkIyY0/8WXLDUl1V2KcG3\nGhyv9CA01WhON2L40QqdTzkw7LiB6b1h0nycnLtjWG3qJtSLDuy/pRf6ZYy4\nkfgsNVyIlRX6uLSaHFulpPQMOWtMNLhan+eNjFDr3qKRIKF9INu87l8I+czN\nQ71mQJV3dT+krCFzDlMPu3CPtH7ooJLZQ29BiFe8XQs9I/h9lFWuvosXctrm\nj5Afx1X3Og5OiIguN3Fu7acwq8Y2y9NhEp6wAoDGPF92gRa7e4pIsrSqjUpK\nHId/yv7ZjXKWlaNMoIOEvc4SxfIkNdNGKL2ljExdHewxpnu0/2FsLxjxoSAs\nD2qC\r\n=a0ZV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bfd2b07d26c075f66b80d41b4f1e849c6de2dd2c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201209_1607498260587_0.20297489521253076","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201210":{"name":"typescript","version":"4.2.0-dev.20201210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201210","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e0b110b67215878102db011cc7474ff2de2a9c4b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201210.tgz","fileCount":170,"integrity":"sha512-z9OXmCrU6tloh+QbZem++b59fFcIp0OCy76aEpchJVjvn2rnzSZlsFj5m4n4Z+KQ9/YoPYX+tIbV2sR6/7xXdg==","signatures":[{"sig":"MEQCIDoL1wEg409ZJaYgbEKxgMdSZ+hzwFfCEy67x4lZwNW0AiAmcmL1qt7SreVftepDLnTzvbdKt1sYqzV4JWJAhCQCEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58572282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0cr5CRA9TVsSAnZWagAAjpcP/0qNPQvjX7bNMa1RzpFF\nVrduSYFuUKVplwR105RR4EhNr3B5wH1/pvWRBjXbneN8D8Wv1EIDBTdnwgCz\nMVtP/yhn1XU/ACOZSqGiFqX4aG+i/GGvFkyWbYcGbuHJTESfP6fssz7upkS3\naCQMNMgk91Bl7O+U4lfS8QXu34pFTkbR9gUX+zD1a4bxvJAEdHUCNyRvvhpU\n3W/EmgR9bAm9mvDvcYq8Cv6YqKgkeWko4FT6kaV+tFj+QEtQDj7OWmnuYHqv\nKRCMZlOrsI8r9uC/C+jMO9hzQX3FCKctJ2Nv61F1TMiMKGMoSci6Zsi/iDAt\n5ZBn3SsBM0JcGfQ09fYGxplMaI+pmkhR4RLeZa2XdUfbco/Mz9o0jbf2uYZS\n2qDFbyRn7soVh+1HBzF+z52lx7OK+iqU5nj3HJrzR2hW+rqqsSVFaJLsBMAG\nF6Q7l9BhGeF3T4rkLhBfErfaWW2pH8PxFvhp7tD6lvvHVMS1V059ReFTHBrB\nX1lU0lMW/u5kTXtNvcAOKb6VgkCBPdiNuddvEXRN9eAR1ZaVYLNLNKXLlceZ\nLjuDpz+Jsthmix+VDwDXStueO+tjSTwaUKKgy8l0hARDxqBtJQuwVd8B1aGQ\nlWkXFoP/Mqn59H7jqKww2OOU2Ag2pONy9jU2ElSvRIlSLE3Mry6yG4rNEyx3\nuSKs\r\n=rGGu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d156bb805eba314be2fbe86e4c4ca0179380580e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201210_1607584504296_0.7339353550079306","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201211":{"name":"typescript","version":"4.2.0-dev.20201211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201211","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"725e9e7cf3fae033905e5b9691af2026ca95223d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201211.tgz","fileCount":170,"integrity":"sha512-k+ENtRQ+u9ZWF7URgAAHYTPSVu8imLa7a08XmZG+swJZTeOZJMrzFfklK/Wn5765RFG6kh2nnvcQaO9AtR/DGg==","signatures":[{"sig":"MEQCIHTtpTA3yT/yDuZYgCVqU+b5Gc27Ti+bbeBP1R/pu5CJAiA7OTKhMD0mLqXz8G01l+7a+ZQR4zsYSMYK+iGk4vKRLA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58615901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0x32CRA9TVsSAnZWagAAxGMP/1iJPxDgMUCDqoVpf38T\nw7Uyfpb6NfJcuFxXyvn1+Gp/NJ05Yfow+ORIBxevhITbqioh6ML/KGqe13yN\nk6oM9FUGWghMVNX4NrU8Aje1gQLLO3Py4RN+s//ixWxsYPGonFalygLwsusV\n3eczpUme14TuSjMReQ64B7fByqNB+28HBY76iEZuqnu5xSviKeykIToGj9LQ\nq5nIKxxAoL1r6DTOkLr37uC7az5vFK3N2rHciyouwFiv18IdiE6MFKWgEAif\nRV+2ovSCb+Euk+XYocBi9NbsQR7bvYyC8xSM2DJ1PCjI8JwlCwM12cAM/m4i\nD6qK1+QLTnUbel1PUVfHwc7iVcX7HMTUSmJPT8JayAHc9oZBPhRFeIYkqSSS\ndkbEA5oS1HwVkLanUOY5EJoc8F7L+js0Q9qjSVCbc9V0VHT9Q8SVRhJYqS3m\nAWyw9lEs4yn5w9dVIojWpSxEiJP8RMysjkNwnhy0Jhjn4mFMX2AcALIkd788\nq6h/0VaJ84A+bKgnj3PQq6/la8z6QAAK1AAZxesF7alpaYSE62PQq/ICKOax\nqoYL1gsWjP6F/LUz6iyQMD/jMxLueUz/EEBruTCW0pHcPQD6cZQ/XfMLqQgM\n7RmrNwHJVJoBTVuDo0MLcX8uSea95N0QzqgBVIcs0eRolTtsCw00KdUHRKG+\nBRsE\r\n=0qXP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"06d37a231811da781be724193b25b0908a1668ad","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201211_1607671284745_0.24853465364983252","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"typescript","version":"4.1.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.3","maintainers":[{"name":"typescript-deploys","email":"ortam@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"519d582bd94cba0cf8934c7d8e8467e473f53bb7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.3.tgz","fileCount":170,"integrity":"sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg==","signatures":[{"sig":"MEYCIQCK1WZqcZqXgGpkw2shv04zoNbJ6xbnUrlfl1bHpPKj3wIhAMIzS42cFr1E1jp2jA5eVfjwPCStNopzqVAApAkEvbi1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58100524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0+PZCRA9TVsSAnZWagAA1QQP/1Xc/LxGVqVInuFkZ0TV\nPvJkS3Y2TjB/Lgmf1PmQs3R/HDK6zBhK10OsfnymoNC3y8oE2YCUSk6bTfNm\n7zrE6CBaVLbyAChe+THjGOjekzGyBgcc41Rrf21WyuK+kFnIh91fFBKKD4Xu\nWFh/RF5lGpGE5QrEVi3ss7bKu5KuvX/aU7ZyEzEXaGNonVWQTyk3k5cGrjnI\nh/gC6ltp64eSKWglu0c38MyG4SmWjBHEswuZM7wEeM1+wDeNDI404va/thOu\n/yY5PM38DOYCHVn8Ps1aBSD2aKaKCW/EIQzQFNiDMRuEmnUlmE+2jM3NddDz\nf/n/+ttzZoDWBweu8rDCb/fTYTuIcRI9vfinF5pIL6tdOpft7RuOU4T06r/j\nJIPGsNA2s/CFjF08UqI/p47pp7mHCYDKLeTlKXFapNjFYLRjc0L2D9EapbYI\nHypqQ2deBWzSadXWXzV+89N310VXJTKGMqXBFuQWU523+KUUc1uvRs+nVMyR\nfjDXdUlSS4LU/muR2OtpjQ7HnkbNIh8+7r7MAEYHFo3At6hpkgakOxBHhz4R\nNSsglVbcE6o8FK5rymvxGXS60H4bE0Z3yH6j7UhlZ5/BmQZQmpVrdEv4fvVs\nu8IVYrRXLDhXzdrDUkLUOkcNAhr6wzSh9qBqVVzIg3cU2hHDXpjiyWSV8fQi\nGZVp\r\n=47tU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.9","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.1","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.3_1607721944324_0.9681471080033368","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201219":{"name":"typescript","version":"4.2.0-dev.20201219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b5439aa2e89132a2199c62ef0d007a27a0d3b3dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201219.tgz","fileCount":170,"integrity":"sha512-mwzZnQleSwQ24cx6cqooSPBxY4VITM5kCBOQ5QXLejCvmI1tdImcOVv6dSFUT85/llsg6mqTgZ95oZQQq9TGEw==","signatures":[{"sig":"MEYCIQDGMVJeZR2Hg5NZHuvkM++p9iCc8WEIHWzj86sVP4U1eQIhALDSzJFG3hS79iB7Br8S0YdEkIIoHIOQLr+l1OD6xI5H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58737576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf3apMCRA9TVsSAnZWagAAXx4P/0U8yzogqjqxYlbp5W7T\nyb80b88mGPXOYPG41gtTZCz6XKMmj14vdbgmpSA7/tQwpUEJjMidr/zekqJy\nkFnTovmGRCXuJy/B7xffe8eXCn6B0RGFjoERBc5b59/V6yGDbSTS01Zr6LqT\n8KqDvZBqJEx6gTU7RHJY5UWTaviDg6jNrUo8kM8zsPmJLgbuWy7zrHv88WPR\nUOt/0XmWfPXmKArP5k5qDeZLO4mqNXqHdMlIFWZes04euezl+Pb1+mKZ9cvJ\n2kPNCdHfBcHdGKMVIHjY5kt3ofmGXqpJp0jjKasP79ImIY93aUuTgr68bm4i\nL7ZSwVcAMzR810UMEcb0IhJ0t/EkX+5P7nyLgmjxQYYe97r9CjQbrC0QqXs5\nz4nWkcX+6uoXpjTMN7pvPu2Myz8N9Qd7NOXV9jW8eSh69YLaQ3tyD5rsAgy0\ngUkUgc+tsfGDtaxPtja09eHDQvbHXWiGC7aZvrInHC5rzTwYlVAz+HpdPnNs\nYdxNrBV/8KH1BY4gjZnYcr44kVFdsHy/5R18gXArbsRMBhXglWG/MXjszDvg\ncQuhr8qLu6cN4+S8MfZKUuVBbxfAwKvfjE95YL0f4qGK/o6hJi3KRy5IYwbg\n+GpFgxfb/tsKxMLl6PfrrIanXv70q8Mwc2oPaUUVgYl0mcYamA9tjX5b4p1C\nS1Xp\r\n=o9HX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"777eb8459bd7eacec829882c9b551a514cf7c91f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201219_1608362571613_0.5027584799239326","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201220":{"name":"typescript","version":"4.2.0-dev.20201220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"735449b019cd00d828248b531ac83f0d46582e32","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201220.tgz","fileCount":170,"integrity":"sha512-t403K81Zssy4+02O8rvZMWNfVGJT2aB7e2V5g8NW8cvfgjLbKEDtC5ykAOllOHgCgnroR2QTwU84CIW6loz6zw==","signatures":[{"sig":"MEUCIQCUDrMFTE7LDAeOP5Ldicby2NeCexH8dKmMWz3vtJ/tIQIgIR1jHuCV1LhDKubfP9wZTnx+2kt5w9fNctBHWrsElc0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58737582,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf3voaCRA9TVsSAnZWagAAqboP/jyRIGRBKhCxueFkpuAc\n7D/nOluVc6uua6QxPVfcyxPkBBNVzrVQ2LeD/+8qEP3yVWftUXynsCEP3Bn5\n076MB1E/yxA/QV6bv6MeAjiT/Pl8pxOq+Hks/rDc82UYyv8rHZUJ6znPNYEj\nUvA/gKQzp+HqVbMPk36d+JhjBW8Kf+vN2N7KNnzN559+gFpsC7uCPMRvjnlC\n21GmyOXXo48ROQqTEDQ3Dvu+KrqPxtg4W/9bYcV7ZrKMRnFGJiRKZ0SB73cu\noSDHxOy00NTQjBEitjsJK69R89Hu2b1JFIdh4EfDhazmHB4FJfDSrYbAw0+M\nsHs1yccLdSY3l3lPzgN6fJ/5ImB28ciAL5itSbyXiZ1woziP3vTc+z2SdCG+\nw+g8NMhcAyDd0I++ZllgVuJ6dpkcgjaGW/sKvjNTbadAziSb0gxxK7Noo9W9\nMweReVtakRCiVK1BWMIqOq7/9kmrAC3I3rBcVe+LwpakiTwy1V/Ci28ls883\nroa22KeuZOKx1DaXPO77cwY7dwyFv28WexwFjoNkc77n+s4chdnkXpsq/7xY\nxqEtQAI7wLzfxarfT9vkfTGyNBr5WETRQ/WDVB9u/ycLlw0dZ8wrK3MSqgqJ\n2yW4adpsCQkuR/8oNqG4Tt7XdnrTqXKMFhtNguUDr04nrXKLCK8jgyv6SdPM\nSNHj\r\n=Vldn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"22bee779d729547ca1ea90b1575f34a6f178ad21","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201220_1608448537651_0.4445182078130945","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201221":{"name":"typescript","version":"4.2.0-dev.20201221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c0173d34a31f83608a976891fe92c52e333f740","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201221.tgz","fileCount":170,"integrity":"sha512-kYYu0LnnWme1tBj6VL8f4ztDcM6HKHF1g3vxFTGw2YQRg7sAggr1CUnjEkEE1rV3CyImtcBKLxMYbLsUUyicLw==","signatures":[{"sig":"MEYCIQDBwr819CiXbUBhAQVoBzOHNMpltcEznb234dKIpkj4BgIhAOKHMrlVdZbnEJmOKYGcBqBFUzpSFKxIpSYInz/XOs1+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58737582,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf4E2oCRA9TVsSAnZWagAAIScQAJIixRyr7ygLJsEcZLIj\nc3d43aWu4Af5WaCtkqp7EMlEsMoFsZ+W/UY7/k8a4mffv0Ab779fpD75YkIC\nvFgJIMzyrIe3XMZhB34o3V2b5mwBBlzB824kKfPtnNtgDN6sIUSciGWfkh56\naToVOe9pBJ0NERnIW1KDQ5FL7vXzFvCTfyZF5DbeKtxz2BcNKx9L5hEP7VRh\n3xa79ed+kj1KrgwtHFYjqlGw9vV9HyF4K65TaV7OXnMvD+oqScv+/WIYO6eG\nissAMJXNPp6nca5a/zvq/iAeL9V5HgwxOxaX/i51gU4weEAXCm6Zzt7P2Wog\nXLjcXYK55SGxYneczpb3guZVQe+UUTgTHqAIscwkXFGkWFgugXYrWto5I57r\nzVat44pDu917RLkzEbjrd+My93VxNmqJX5Xf83ayCHXiMSNAwDOWE3xU153P\nzNKJUt8WJRNkzjJn01BqwzAQaxa1NaCw3vrzKj/VtZ364DamF6CezA//z6jo\nVHAIqjwdNXbBe8i68k+dBREIP5+ZTxgUXZTvuulB18u+WGmuieSjqcbJAl4/\n440Nv8H6P0f+fUgNy+hpLfq04CN1YkEXP4BR0z+ud/uEGsN+j0bG6i7d4/kk\n+f1kefzr22hQ+N1ezXeeJQNlGtjORWPe3vWg3rcPtIiOlveVssUpMOi7vo3f\n3pdX\r\n=Pj+T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6ea3885b8c6f9af64e536a707b31e2e15e3887d0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201221_1608535463860_0.3379324608877685","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201222":{"name":"typescript","version":"4.2.0-dev.20201222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"64a8e2c0ac9db367d5b388ab539f85656935ffa5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201222.tgz","fileCount":170,"integrity":"sha512-wSRinpzY7BXSC+3+cRrPuVAmRiUgG0YTgcT17R12nJMitojDSbhue7oD84SoUxm7axefpsow80yvtJ9NSK80DA==","signatures":[{"sig":"MEUCIQCN0hgo3l0Vz+vhdWLWYmTojHjuxkrq/U/wk/oZ4rMP1QIgf99cUNHdx+1XiRVii6aaokh7CpQkijJic5I2hLXfMWc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58737679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf4Z+zCRA9TVsSAnZWagAA9YgP/06wtfzgR7o9P48Y0e2Q\n/voGD2hSv0Ti1Kw82GMQtHyVTVyvUTZLhqGs2cfQVgURHnBhrRNgGwrOfZKx\nNWADtgjOLBBVlKyZ+cvVUI/BDe5IgviGZl+yoAOkcG0OfKFB13sfw3sKixMl\nOA0H3DfT4uVaaIeF4OGlT8CA3h/z2KRLrUaMkKt7FDbUQ9TBNiMoIdM4sqqE\nkEr2ew+/Cg4pFhPcFhNQT9ETx//ozLxG2+MhsQxhlPE5QUQMLXQyfWtnU+1J\nmtATgEYvCiRwykJjwPQ/qQLo++ej8o4rmTRMhmWblwhwGy6gunQFRM/teQTm\nYb8Gh+SEMWP2T35V9HeLRFiRZzkn7wL4ptT+W4bcJ8XOqzEjnDA/oks9yHOy\nOYIUc5/EoCw08riNzsHfuG/k7Iej2xYEqnxx2+/8AO7oXxLYkMYbsMtcrqfz\n0YHzbQtabOrmjXco5L59jjYw719JrZDiLuLhdUnG8epAA7lA2UrnK13KeUv1\nG8kUSFc6S9Jso8bapFhzuD+z4AV/wXfFikpAIZaztefIELujLOChuli57RRq\nq4rfVS2VGrdqT7qds6jtBsPfccxgIifbrzI8GeiMJDT9VfUGmDLSCAmPU6w6\niMVCcTC+/CbyevtUoriva+5sojJTVHhPNjhBe2SNWMvt3GqsmyClpMUC+Ms0\nHmPZ\r\n=8akX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a2ddfcfe0e75d8b08a9ed89a5576196bab592cea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201222_1608622002299_0.15508011309814074","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201223":{"name":"typescript","version":"4.2.0-dev.20201223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2cfc8fe7826ec7a8c000f42282acc0311e71d902","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201223.tgz","fileCount":170,"integrity":"sha512-bVcVARpv1ZgKUAcEG0h3kLXkOLAAAqwdhLKyXcd+qCxvEFEo9tmalNkdFCdid0JEK1ykslL2PvzYuKGjdVhLXg==","signatures":[{"sig":"MEQCIHN8Eyih6frwCI8TV9HJ4sz80qfi87QMKk7YdP8JDuiKAiA06yB6jRYJWPHPEeyJDocLKsbEk8Ur0NpSzyZX2Oes8g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58743694,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf4vInCRA9TVsSAnZWagAA+HAQAIC4XgRMqbTtRczpbvI6\nCnj49IUxZW3BnmUPDbqmMgy5z3fx4a/XrjAJhCLPf38FG3cK716TlXASXi0z\nw8WxRT6SCgHlqUQMVt0qixMj2gWs3uDxq0M0anazfXP0nyV5pL2KhrkXMoEY\nhvvbVdOQKCNwXOWj10GGClvuAsBPGeboP2fBp/6G6ziJxfugkxxl0l1kiJX8\nTdyiJdI2EDAKw5PPVongizOl3S8Xwhcizq2fQv64Qt+bm8C3Ei3JuR0fYqSB\naVgyKCk7maTow3VEqTCBqSPEhNqAq+SezZFXdSXfJvjWGwb6M0uEUfIgAgYw\ngDoUdMVF0K2KwR0KFDdSgXllRJCO1A3XXP+TReUts/aS3OQmxl5xvillld1X\njA4W/znHKDVPwJIrlPcG9wQIanhLKIDePSJxhlVjX3FF2tr85jeO2QqgzJmv\nk6xSw4WtzGpzNDDwIS0x4Qn8l/6XxWny1dXyfLA3u+1Qx/qAaLmwt6MNcTR9\nVZOFXz14XLiggAkx4HioWrgWoBsAe20Aa2gr6Jd3j340BJm7lkFbcVhKy3pa\nU1avxCEXnhTdKt5k13tA5/nRs0kymc2nSP6VkLWK5rGXx7fhya4ErYSwQisQ\nZkAcm0IBY0kMyZXB2GDtnX6HTErYbXs3ZsDm1C4vFzK69qs5wDD3SezMs92M\niS6N\r\n=hbJ3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d1ac4515c8a8977043a6503e0f1e7bca6094c654","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201223_1608708646886_0.3149185112167123","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201224":{"name":"typescript","version":"4.2.0-dev.20201224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"44cbd6c304e78e388983cec9ab81202787099f5a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201224.tgz","fileCount":170,"integrity":"sha512-ARGDjM0lzSsNwf+TBh55wwxMPh47ile5fyB91YBipdL7REuGPoar0KM0GGIPx1+j5R/fOS2vlsrZgXTLYNFqaA==","signatures":[{"sig":"MEYCIQDJjHV6/uAxN8dbEc1LxPjuQKJnSkDX8BDbX3tlXPMixwIhAKlgtcaDHG5jgJAkOP5tr8gtCLH83ejpopSxuORbZOPH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58776958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf5EMjCRA9TVsSAnZWagAA3U8P/2lzMWsi0tEf7rZW20rU\nueaYhtsUwBUijKN/2fspgHuzdKasmvyrKuiXBlssTls0MPugyjFjW3m1Q5Fd\nE3Wjp2eN10hdTuKRm9XsLt6lBvZc5zfCUnQJ9Dtbai6psZZfB2t0cOweG7Ti\nnctPg92FoHtUe1aGHDcQw9fOE7ssSjEy6kYw9ZsuZEh308351SJj1bbQBCVv\naHxaM5myV67QY1G9Ryc5P4SGctwQEUEeSrljHGH6weoODvjp508A0BX3WWq9\n6DHjcuOtFXMgWyJFdhQ5eSiuw1KPyznGz1xwnF7iEoZ5lVHOBzgb06R0wKhl\nfuztf96Daqjt4GW+kmdjOCHY8deVDu7sOadx2kiZVuCeEHfrAKUgxXhN2VJf\nlqfGCE+24qerC6K3pMrReGRVceVutnEF92/5DxFTRf3SbeaiNuHe4xqoZNqv\nunDnmYkOyn3gu0S/bjH93NU6T++1F1CxwY6r9t9HXS/2GU7PTXkVo7Q9/vij\nlT79YhWKYa4v80D82ZC0K6QTMkhpnn3zGzmP0TvquJIEU+15ZIKh3HgYH6TI\nPqxe9vaUzwyuye7rRv51E9bQezRXgOLP8qH/MLtdYXOhNzZnIxAJTAArKbdi\n7BpbVcpNg7FpYWR8PBNP57gAnq6l3cMGBcENqsR6rDR9M9L7giRYFGcnvI4P\nODg0\r\n=tzDk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b2c48f3cdfb441ce80eaac77400cdaa7a8d0c11","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201224_1608794914705_0.5559779272294638","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201225":{"name":"typescript","version":"4.2.0-dev.20201225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e57ba586f5d6c657a615e79883c684481b13f6e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201225.tgz","fileCount":170,"integrity":"sha512-c/Xu3t7YXjTTiFi3V/4Hv4Okk2mbmF/Xg06luvHcZ2zw1uhc8j22dJ4dGwwfAgAYEr1BNVosYbdjTQB8Epm7Zw==","signatures":[{"sig":"MEUCIQCEpTo/d13OvWrkuCFEyyrrJbAUI7YfhYsK4GLK4OpcpQIgBogArCLwcNhpGKuhfoRvAx5reYJXLyTcu3wVhwVsVNA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58776958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf5ZNICRA9TVsSAnZWagAA2VwP/Atbsb3nc4Se9+6W9578\nWvYmqQhUHMZDH7OgUbRzUVWX/u0REcR9jTjyhBW+0fI0ta8ec0O0dZGsBil4\nSirP9mL2MC55F8Ng+atD3xEEqzuGVk8ey9ArU+DaZYmD/BgjJ7WL1llrjwJk\nfQXl35JI7X6MHxDTpwCjxAP+1+cfSqJjJWqcdApac5BJitw7xkkSKqQ5o9wS\nLM2fBmukGa0odgPMFUdov6wI05klR9G95AqX3h93IRnFjKbS3X/o+LZzWGZf\nv1oDivmDs7Ew/H0AqczPdil2rXXNFOyPfIdcTZzJ4OEF7/xaHU285cnT0g3i\ngRWslXZm4603sKEbGUPbGTNgNppVL7K3erRfyfZJ0ZQT/mJeClG4gKdkpOjL\nZr4EjzyHxk3juFMGxE/HxYaG9EHnsghzjReEnwtq/QxU0rn1ZuKeIMytRnY5\ne77t509EuXfLnmavEIANOT3ATDw1yWKXPfLEx1eqPAYhnDTn0MnmjVMigJ4A\n0yR4vM1aYhiMuc+35MOaTpLLnF2YyokvQ0HgQXTnRvXK6PsZBHFGgxInOTl4\nJcZYtQX5MT503DnVDg4q5WndCKJvDzOcF7ixIDfTxTOj9D8rHyFcoZGOQzgn\nFpJ6YTl8aodILkqpARBVJ399zvV6W4p+No/FLYbg541tn/GduTBURqmUpbZb\nCJbK\r\n=NptU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b2c48f3cdfb441ce80eaac77400cdaa7a8d0c11","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201225_1608880967657_0.5429053274381324","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201226":{"name":"typescript","version":"4.2.0-dev.20201226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cd4b2a9c05fdad5242fee4187034ca66e4a80c12","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201226.tgz","fileCount":170,"integrity":"sha512-GRdm7E4VIDCgj13wwwHyPktcOaWSBESLEfMvZPHTQgspjc+1Muqk5mPkjxaaUU603X6IBfHpcmg3+edb8X09Sg==","signatures":[{"sig":"MEQCIH6u90zb7u1jfAtFMURJbUfY5YTXsY4Qwdy0bwnb5p/bAiBC8vqHYqJIHMSfy6zzgS/V/gAawnLzdYrXOIxOLMABVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58776958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf5uR4CRA9TVsSAnZWagAArBYQAIdjWix0wU0nP3T2qlam\ngBeHHxLPT8a2DRTIEsAjSpmW24RGcFa3au3xFiCtNflSOhwjjkjBGycMkSXk\n3XDOOZ01LrrMdA66S+R77+padfSjMKqVYN65+nC21l263t7TLEWDYFQjn+QA\nw73OsY5Nu6OQ//AbF3N6mlw34zbDgnmH3U+IVQUV1CrPBl3bgvaIxSQiaqRX\nTe47+Is0Kn0v3CFY8+Fcx+6LdMinjT1tu88uyBP+wEdHvTrm8NKcUgj+apY5\no/ww/KkwxvMoTqnP/sSo+kuCY3eELRtnCGmYjIZksYqLqmcyO3qJsqDtklaP\nJbP7+LbhoKJvahSDHF+Hgg+pGZriG0ETHH5Grxe2CryYqd0hdrM1Wtrwwfvs\nzAjF3JKWB3M0M50ijRofKJu4xd7wnJO8NkevyIzsUVn7FhuYpZMukrGL3vPJ\nJcGJm4yhcuni8Jv8cjuSbbaCBwe7gfH5PLRwMFceFivzzflU3zVSuj9RPqRN\nnztdD24X/lsoyqBB2s13nsTO1NT503kG0gDcPU2ucEQrZC4nXOZgbMVNRRvd\n2XcRS30a//E2upjHMXgcfHDuDFjKVnuTo3GcOktwtIcp36/A7L2XENs7EPzz\nX9M8ddQ+s1AswXFrq9IG+9aLN5stsEV2VznJeYYfBxejU9SJv9k+BWDdrnGg\nkj2Z\r\n=XM3d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b2c48f3cdfb441ce80eaac77400cdaa7a8d0c11","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201226_1608967287299_0.16650653387453151","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201227":{"name":"typescript","version":"4.2.0-dev.20201227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7874d8c9b23db1b097992c4b29b6dc9e3a07aada","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201227.tgz","fileCount":170,"integrity":"sha512-setJYOmApFpaNc6mUrNZLfwzJwmFZpbzXyQQIQbcAsFKtJ3Xbwz9hm62V6CtwI5gw+379Sjiug3cMEDAVWpgRQ==","signatures":[{"sig":"MEUCIEuqpaxKEUsxnCntUSn35WoRRzfmLdM0ijNuJQvY4lnWAiEAjQPhG2LzVo8ZpHtvS1O1Agy3EoVCDo2da6iMs0f93Ls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58776958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6DZuCRA9TVsSAnZWagAAhxQP+QFdkgjKaenAm/hCRBuV\n4OA6kJphUqJ6t6526CzULnUJvCP0SurjQsAmwBmVvmGoTQC+JVVewo1Bz4lI\nl43y/bayxpJ5jfuzUo59qbXXmpinTff4xJffnkODyhOekxb55cKPQU3U5z8K\nnuoyrFI7uSavDbyGMI604VixjnRBGEt8lQxYQNSQ3iOYQOglkk0tLKZZGLcC\ndSPS2OBUKSOBXBO+DApiIEi3LqThQZS/HW6r6+Jg322ggNcVsN+UETx5/0QO\n5e6Odu96XTvHKX1b3FXWLrgJuBH2juJedpxBdsqHYco0ihH+Rds0ryiZbKj9\nUBYl6kJG9uSsKIOFKSBV8n9xsCL6Q2M1ax6ine0MAK58jh8rgTFO21ht9N0f\nYuc0NQJ2c7XQfcVq9I7vUhkviLGN+TaaqUrU1z9C3kgPtTI7yGso0LyRt8b4\nZh+LDNhTBcEwul0Ftg2gv/XW85+e5SZS0XyuUd/jwyP0hAxoC/40TDOYe44s\nvvdJMKFKNDBwayBdX45lMWtKu0c/niCItNfz9sGuqyPWZf7SGNs6wYWq7xcH\nL4iyxk5Dls4q8yCzGkkwS3sqZANb9sjENYHyJdfpjlswOvDmDGF4TptH7sTa\n4tj5k2Lx1hR7FthcprzQpW05ZXreWCKhJYnphH5iWToevA3YIPsp7fmGcUSK\na1gD\r\n=K8gw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b2c48f3cdfb441ce80eaac77400cdaa7a8d0c11","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201227_1609053805145_0.4414056879731483","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201228":{"name":"typescript","version":"4.2.0-dev.20201228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"be099aa540d4a8faf4e05deb4af43dae602ef326","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201228.tgz","fileCount":170,"integrity":"sha512-Up2tlZYsgRxJg9UG9nA9Bj2/s2Jf/n8rJJUt9nT6kyGKyJ+U63BaDOybQ4gAdNeSR4uOX0nAzgjaUZD64dVOKA==","signatures":[{"sig":"MEUCIQDT3ukM0pRdQXF0K2l4qOK4Q9IQB8veFdvHVt4rv93cOQIgY/XpS0uNiluAjnBBE8Vgb9JQoUNnkJtgRo+mDeOmdIU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58776958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6YjmCRA9TVsSAnZWagAABm4P/R1ImBWxLw9IXuzmes/E\n+uoFieT5krzHryFM4oEpm3tnASkrl8rQjEdM8Sbsi8zWkTJmGZA1tR4zbzVX\nWlLkXfFloy9XXv1mbVx4+jZTwE5ubfYlyKsvCEqDaCWrDfPHFXMXNRyyLz/P\nbLzOQkegW8t43fNvBoxSjUtC5JYkP6bkvYZ/hwycqnIU6yGbj1PAN6gpj/Jg\nTsQaRYvAZV+VijRuSeAUOf50snGULpJ8GOWmHTY8jbcWBQip8umW9W/yu4YU\nKeQAamj0w5Ps/22+0aV4rhd0N/U4+jhiTWHpTRdJ3U8ee5nHBb8uqUjBUzVv\nL00O5PjL1ryulYqvZKT2YD6NyZ/HIgNyay0Jle+3IJJJtti1dt+mcnM7x1Gm\nPmE1rRX6e1OMDoC98y5N0FTcxrlQkRSOfI9/wf4Q4H4KeIisE/z4NIo8ryl/\nw29cOhz4Cw2tb3as8Xuk7w53haYMAWfkV6mBt3mNqm+LB30+QYtNS4r+l+B6\nNZFCGukkYfrkjq60sPqHz/KxMySs0GnT/pU0ckP3Dif+YRVgzqGmRm8FaEi0\nF+yjq51Pb581FunSukLbG97dGrPcmsasRIiY8S3hLzYCwOJjbim6Esji0FGA\njSi6hUqc+vAO+5S1+Sjp3G9h2GAW9VJL9y1MCrhE7NDPijjuujZJmXsxkSq3\nsMon\r\n=w0dl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b2c48f3cdfb441ce80eaac77400cdaa7a8d0c11","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201228_1609140453449_0.08410369638809412","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201229":{"name":"typescript","version":"4.2.0-dev.20201229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201229","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"791254978c378cd710a6d757d433f2e16e180f44","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201229.tgz","fileCount":170,"integrity":"sha512-LbUYLWEV1RrduLTYuUaduTT0HXqdJ4jbs2rdUzwFFIEPdRsnRbWCCdSV0OgA7b9O6n3dwMP7VLqoBnqUd/RByw==","signatures":[{"sig":"MEUCIQDYdhtsfrTZcinygHkI+1ygBLqmiBIl1K+kGeVXRKx/JQIgCWGJwwTsS7AqA4vEqMtbDdn6rAw//RxAWIdYVFqJZ8s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58783024,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6touCRA9TVsSAnZWagAAPukP/i3NgAQud/z9mmuY7MRg\nhQVLnSOUsvSJv1cNZLS400J4svPd4uSsfrz/499gQ0/M7EAGVNWYL2t3bbJZ\nmv+s3GXIvXGN2LaCH9fiDVNfArbP+4/rbMfL/h91fLhg/MRFWko+ACg4i7LG\n8m6KjRlQCnSTNhUF2zqytp72fblocmJQ/BYylKWl3XW00okXixiJ3A8RSXr4\n9tSE/9umuAg/u57ScHflPXtLXyg1I+zZ0Lpz314KpLqItCpJJIvjbgEKvQgb\nNbEThvJJWHiMQu3BYqE8eky1rRhYdjDF/lsP0nfAjW/8H86R/6AO5PCRz9bw\npPqaJokujsuY8oH51dqT0DQ8B510uzUTeh94hkVxSxKhOh3teoCnGcxsqgKL\n0eVtUlIi4XL7iRKjINq2ECToHgJLOePK1jrOhmHsU7Xx/wdpbSwl3jW/IAuR\n8V9H/0iN37ZI3Ga1RRjeQHgnt1visB/gU+DNDXUkV2kwhjst6ii8e+9CfMZk\nC+C0+yy6WesSNoUJvWR9AQfG4wzDgb/YGsZ60Z1i86Y26uFXQAAOkzK1z6pT\nfFMphbJcIpczSOgtwaleoeaCJ0dwI1OLAQSN+p1oWDIusACO6dUAX3HSa2lo\nnUU8CxWLrAM0+C5HHCU7PB6vxVNkC+QRsAl55Uflsg2R1ZVrv6I2/t/7uKWy\nIhdI\r\n=BOjA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"303ed3a357b3e834d70e1e578c3a194b33813377","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201229_1609226797273_0.26157388125657","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201230":{"name":"typescript","version":"4.2.0-dev.20201230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201230","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8dfe3af168ac0fc9e0a2fdc1cb369ee80d63442","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201230.tgz","fileCount":170,"integrity":"sha512-EjMI5rESv5OxNHfP+qyt9HnU+AEyDp23fp7ptGGiSXNucupHX7EcnwhSa6B/YMLZFhW3qlEGGccReZSBpP1ttg==","signatures":[{"sig":"MEUCIGfJ2lZzBN5JEPmAnEIAGQ+/ABH5Qmqkyezhs4yHlcZpAiEAnMZXUrLifGifmg3dopSVaEOde4ret6RejPQh1rVj9Zw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58783024,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7Cv5CRA9TVsSAnZWagAAozUP/2/Y9+8ojwKSmacVVJao\nAsA9eWbZPpHTMPv7ntiBq7YlYkuhSKbJJKHnwFIlsiWtzoEmVB+02DuihSYw\ni0a2Nfg6eJSbT3zEh0C4pKFQZ9cPTShvEZiFJzWSg2dLddzNh/cqCITySpxr\n9TF+bccY4dohT2TMU1Ol1IV9cI7MIyw+2ZZcjFKFrgJLDiJPI6nOoExJIunh\n5FVnNjf6G5pvMwzpwVGcJ5amdJTrjS6kgcPJ5CfAV5uub0LTFzjZxpwXtV3O\nJG+9Lpm0nR4b9hNcX5tbizH0nZGxRvagZEdlcmSruALVrgHo+FxoCJaIeTBO\nNM226Hs5raydMW5ndhYEtwx5G4DUztS5jpvdm/rueH9pTBv/sFTDPBuwSxKC\nG9oP5MDN3wLzltD/BdMqpKu5vGqaFVU17RIH38WPGZBq0DAjph/deJxMId+J\ntpM7MW0bZlZMo4O2H59QUMFHvweyUHe2pyhKNbDMovyIbDGRtWvCvUX+Kpzw\nztvbBgS1hlzT+DM1dY9x+MIZ2EvWZckixFP06XViig4T2uTY8ATyBhZ8QaWe\nQFvGmUO4ddaOFYaYXbrt/d5xvzwaRc5m2MkbYcNqcGIYCG3M1s5raPCYGzlW\n9uyl9TFldcHFmNhj6R0vaYEaXj0cIvk8XMqNeroCfEE1UMQuq6r8OzqcDZXj\nJtvX\r\n=EMD2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"303ed3a357b3e834d70e1e578c3a194b33813377","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201230_1609313272192_0.13405718415922174","host":"s3://npm-registry-packages"}},"4.2.0-dev.20201231":{"name":"typescript","version":"4.2.0-dev.20201231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20201231","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7f9ea9bfa6f650533d356317caec7ffe63af2932","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20201231.tgz","fileCount":170,"integrity":"sha512-kuQMi3bsw/8wNHm4g/weuqhioFCD9Txtj7K7yHOAloI1TNydy6KYCs0Q0XyyzUwWdZJsh1UeMWFngwZ1E7QVCA==","signatures":[{"sig":"MEYCIQCsp9cNGAN6tVz0ii1skyMxYI2IbE6s1TmgYYxWyDO4gAIhALX2tycS62vc0rUGPpz2zYj5D8B5GO6AqrXwZMhfPMRa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58786594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7X4oCRA9TVsSAnZWagAAN4IP/iVJbL/V7apTdwA+611X\ntUs6OKx08jjhm0YDXH4tb+MtP7j/x1uD5t2swQem5mnEZHzZbS2rAOjenYMy\n6kOzL/6Lde1kcxn1hNEyK/4W3+BjHa1qfmTLvOvz+ZHGlyW6vedt0SdE4oEG\naLn8Npb4ccKVrw03XCtRzio12kunjqQoJrqLioIg1RFals5jGndBrXiihK6Z\nSVCkcCEMge53zKBRFaMvfC7+teyFZdgIxh5vgkDJUjjYs209wBZ0xo/cYFeQ\n5rIAkjJTaHpxM6FT3HWT1lG2TztVtR0J6LlcNN7LEGkgO86yUGpR+TrAMj9n\nwkdL9zPXkN0YLI/1RjI1ppgGq0T5L/DuOXHk0O9NDY9Wf6cF5lhjII0Ih0A1\npNYd+8p7LBPjSeD94jNZQWCNh3KZxHww3waAACTbX+kmVnFtYcyC0nbvLnsQ\nYWiBQuqionhbxUgvRYtl1vk33zm+hXDGeR9QE55mtxukGdeqcpE6TtWlfi4a\nZI4EPb7lS4y010OKhqQRFHxBETzK6AmXj3sZcilfS1/hoqP/qAsSwEi+y05k\nTtX9+B1gHznOp9xoQjSTKQk6Xqdu81Q4kIbBfnTdrdpcwsjarUaIRgQTf3f4\nSX+fEsSDgjHqk6kzHnAL8W9K+d+Xzuws0LOGH1f/xo3Nu6Zwg94iv0JgOqeP\n+HJi\r\n=wBA3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f6287c5997b7e05ebb966a1677a366f1cd2ffc4f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20201231_1609399847129_0.1431617303514141","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210101":{"name":"typescript","version":"4.2.0-dev.20210101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a4c26ac45a09eb98d1351f4d170415f4138ab7ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210101.tgz","fileCount":170,"integrity":"sha512-5JQb1+xXO+kHCEk/aJNxbX7oTIqhiePPJL3IRh349QsYUT0F4jEAtu6O0daCQ8+7LUvzBTm8+Xs0QoXLbxgqsA==","signatures":[{"sig":"MEQCIFFV6IFyX9zuNSDGOiEotkDsRNSwI5DsDOcRJKPEpOyVAiAJ6fePGVL9ThMm/+qA/SHOhjIL4S4VkQOpvaE6Oq6G6Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58786594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7s+MCRA9TVsSAnZWagAAmnsP/R0mxOY/JzgqRfiZjMqN\nklPHKdTkrj+zgEZNXVma3ulEvZ+GWBUCQtV0o6t3ulXm1YDjRqVydGd0nSEJ\nJh+OqncbVhIckYSL8vQz6KOcRoM/3Zp3Bh9HWpli9thNWYL1Q3imRkQkh11Z\nwY7lF8/qBTXd0C3n4S9GGKaR36J8rS3gKWYlZmFv6dlh6yh1gm0x9HRpco/P\nDEjD/M8gnDjYmlNqabZINXmKrxfOJfKW0cLWywD3Gkey/HvFA4vN6SHrpony\nPKdOdmrfLMQcKSR/6eUIUgdlb1A5DV62VYCj65d454JR6sAv5yIs/nF7alml\n5yZsbK+EI4N/N2Ly7Jp+MGPDkY4AkZ1Ix1frKXIK6/rxDtNQA7Gr6Ldze4e3\nqcSu8Ucjaz+DJ8kT9kMluvsSmPjtBAzcZiiKpUTlVK8mmi/ZhRqrN4DSc6Dg\nwivVrm8H2HU8Bt+SX+R804UqXrJHi52VynJ5L4hiAYugCuSJKzrUuTy0JWp6\n/SK+dhN7DpcES0CDK15/6QgkA6F5cI0cvtGMTr9zASKOdzNQrfXmZrD6bFEB\nd1lERGuW/7+Rkmz70S1IwfLlwm6JroAttdQKpuqlAkRyBf+3WmtwKd3LchT+\nHnivqWv740qPEYBqztnT5XAfM4Ba/LFzI+8lPxzc2k9P1Ajyk+6IDPjiixvF\nHi1h\r\n=vvlp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"81fa6ae0f377f2a2417320380a1c6f3021259328","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210101_1609486219717_0.18068314444003764","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210102":{"name":"typescript","version":"4.2.0-dev.20210102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0487621e293e8e2aec3805a2b5545ebf8e61f622","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210102.tgz","fileCount":170,"integrity":"sha512-sFOw1vIiYtTTD1UsDAqmwWweo9TFrIVj+Za+l7/qQbulQ1bmrpzj7lkvizO+aKN+PTbFY2bw3haSKTGfe8/lDA==","signatures":[{"sig":"MEUCIQCaV1EsRLw/hAwclh/Oux/lVtd6YAQAu1MI1qaj6TjlYgIgD2kH+kttd/I561Fz9L4MbG7n/QotuipcQDGP88XiYfM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58786594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8CAwCRA9TVsSAnZWagAA9sEP+wW8B60V+raL41/OgpAy\nneDlfnG3IEJ4g0FXZUDD2d5YfxJ7yZzGc/XZuC74k6BU974vYTDXArCqXqQO\n5E7ntJOVXyt8Nt/2S/b44BvtJE/aRzvPSrSVtjxvBYOx6gRRXMSq/TqnInUz\nEQTO7CRwWLenVp/5WxnMctyjh8Wl9HjhPihJ/yurvdSJnYU2D7qIWnZXeYZI\nZ7BgFF8SSoo+QACbwb9dwJiVjSMU4ZjOY6JSS+sD+5tiICmUeH8HEODA/Yei\nYtZNlkIZMJUIshKDeiC9qMwM2cMZXTabL8ZFOdWqwYRMwC37a+uawK5rNLQe\nwt6ICJF3YnnJ5PrYb2PLEE9FZnzDIOda/4/4O3iaoMcjM7DqUEEyimEwsVja\n0HX1Ygk7rxefVAQD7xmvAJiXdejl0m448tuyKXpIT6gO0LAaTcnwGJDWpBxR\nOQAsMV242irLftdFZ6/C9YZijJmqLJovRwcsjq3Xz3oOjA5rHOmnS7rpppYH\nSiGHyh0eoi2r8BW1JvWcVgNgaqJrq0uQWF2VgKvd1+I/63HOfwfCNtmalUpE\nThlmSghgbX8DzmHn7rEjriMf8YzJOXkbVk+GOLsSaCJZIjzqhsx+fTs8Hfn9\n5y02ZER08Oj5kLcSSn9j8+qri/K+QP8N1g7zwRgpAMRcwQkAzbWucElxEm24\nLJLr\r\n=PcoP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a412512fa00376b08d925fcaf5e87773dcbceb63","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210102_1609572399252_0.31074665207102337","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210103":{"name":"typescript","version":"4.2.0-dev.20210103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aa208defe643c17463778c9aa82154cb8d8891cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210103.tgz","fileCount":170,"integrity":"sha512-qwe9N/adPMYAd+uicupebnHFUHJTdx7/ip5QZnjdq1q4EwyJyjVHovZTKiexMmcolSClbexquAiwYuZBgRopkg==","signatures":[{"sig":"MEYCIQDUJdSMIryEmkth7qE85GUCBnRGpj6MDYAjHc8xe6v63wIhALz2UB/a9WZKj7wyx+HadujPNHizGihRFFEOT4IX86iD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58786594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8XJ+CRA9TVsSAnZWagAAf70P/iiv6y/rb/vR6dLFkyfH\nTaw93r6oB6KhqEvguEEt83brExof9Cr7AlP3aE8vEXGdLknGLOcgo/Qa8tym\nXVumpvahOQz+2uEal++miTXjuar1m1By+2mhoUhW1ca3Y68MLwqT6Kbsalv3\nZ4qriRe8zypsxOI7sxGoVeXVD7mReSLQJsyLj9c/CE+Vsvcy7nrXxSnMLq3s\nCp8FiwPXOcUYe1ZRiT030OI30M8Ix/nmzEO1h5tWYGuQikxMtkEl8f5L8odw\ns14dbdIGQV8LZziV19+km+BQ7WTKUSmjEVls6fkI5XIDOs215/+v/cJ3XOpo\nUrQfureT6F3kA13KByaEvZydYflnQTRx6pIau7Y1l+Tj8Y2ZdIFotgXvNi3s\n9cDcxeNVbBz5v+TuZREooof3e1byUtpc6piAIG1aHOgT6cu6dgedSGcHRCuO\njn5yIckt64nGuPl+0ONoBU3iWwYFJlzLhB0kTNTjzm351P03haRV6p9WChQT\nkd6RSwLsjY7WwzPn2TLZIsXI+IIsAxof/bSrim4ju74zVvo7SsCe403QL6q+\nftVif6HIGq81V5DYGUG5Tyity+OD49yY4BVOUyuKajHE2YSn6fuVOv7SkXSh\n5hwz0UitWLHSe9yfj6J1gjv993+3PGIp6MaGYioxe+yqvhlGq0KXDG6wpxw6\nd87c\r\n=1MwH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a412512fa00376b08d925fcaf5e87773dcbceb63","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210103_1609659005303_0.21988592791943096","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210104":{"name":"typescript","version":"4.2.0-dev.20210104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210104","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"36c50bdba0d4ad07c68157fb7e9f2bb52be8adde","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210104.tgz","fileCount":170,"integrity":"sha512-PrnhBH8TmE6OaWg2ai2u6WIfPl2BMpsWT9PDsSkQcYCqsGwUnsAvJEzzeNy09xIAGnLl5Qqf6m8Hli1lyEn/OQ==","signatures":[{"sig":"MEYCIQC1atQ7v/8P3jJuPaRLorQosguGBqOyA/Hj48bFtueQOQIhAM3Z2x1SlcEgYwkU48chX9GUzlmev4ms4JcOJuM8Yb7J","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58786594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8sP5CRA9TVsSAnZWagAA48kP/iFzt4/qi14fA6T0wCZ3\n6AKWO4dhglIt6vxj3J63yzw1sGuRTn51P4pWu8K8V1zrb0+RoZRJNsSkjQxh\nknybTZNnOzXm/wUAM3KqmfmLxkYnQMqsYr9eIWeeocxWGsCFkGHfYuG+KFsE\nCdTmjF4pWCb/ayjW4qYlz/lyJLVLKK4QPPALvBmFY5mRwgu7Crg3deDYcamD\nZY7UWCyo5QCiCbiMdDcsAYLRf3uMXK98IVP5oG+k3lfKQJkdcETqYWy5FIUp\n0nrEowI04UQTsgP9ytVBugPmmlRX5PuShXhtlmGLVWS17R7r95nc7phFI9SR\n5ePreHbctK2vkqU7XhOX9r5rqK0fDV0B4eqoHRc2WYBYBW4Y6aPlSLakjXaI\nn3gw0YD6FMzrcon55r+FjCK7EIMy/HI5FrShm3PPKaIgkNdx/GADbo7junNT\nqPNAL49LunE1HSC8JcXDCUtvPyG5UgvbQGAtrVs6iKVBmOfEZx+f7KEOMefe\nxlCClxv+7dD3kPM1T9BK3xA4AV9wqZTTWbrxL3uoSxoys8aEfPWXvvf3vG11\nGUreBvboJhRtMkvTy0IHiVbsvvqmBpEvpAF/PYW0cNDkMFdeadOy6YtXkz5E\nkMcqirOwU1r+Q7V/pTfA+8TS9O/eOp4NvpOmUBdtwBaStRNbqV6eLEHzOZpw\nJ3qg\r\n=pozH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a412512fa00376b08d925fcaf5e87773dcbceb63","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210104_1609745401122_0.36144916816176775","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210105":{"name":"typescript","version":"4.2.0-dev.20210105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210105","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8cd6cbb30fad2d90d1990400a3dd40263e750356","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210105.tgz","fileCount":170,"integrity":"sha512-5XgdWUw9PdtnnZeL+Df3BCtO+ZJFuqDvkGJoJcWoKC/uJ+YAumECyI8UiF8v+pSwz6b0C7WydE3tmgAjcWNr2w==","signatures":[{"sig":"MEUCIFxPkAX0qNEzqLFk9k+eksbCiOBAZCOyQrT2/yg56MeGAiEAoU52ZuDiZxRhwalRVb2u0Ln+VBGeBVdysVv5XTPdNf8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58841414,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9BZECRA9TVsSAnZWagAAKscP/1/E4vSh9pWucV4SszWv\nW8qo7XP+Ub2HeQP4STkZX/nPe4xN4CyeGFU3H+k5TjNl71zJgPovKFU6KQZc\nVqLfdq05A1TddAPNqb3n6mCoMBI8e3jDSDY+OeE6gWBdgDEGWR3gLe/yuqKm\nYnwFRvUw8XY4uZjWtpBFkKQcgECEcNSY31MlxANrmr54EeyuBjWXuWwKd5sO\nUH/yBNKKA9IocxsvLTkhzpN95uZd4NZbTzukgzrhfTkrTRbwx1WPHVELxnys\nbqCD/RZJXYrtcacrgle1X7q/xLf6eYEzxfkhS/ysViV9Wwq/sn3aNZ+7BBVl\nZrQ3Kb6XW4+CPb/oW/C/Oa9+a/1IXun0F/r552uSGaYVCS8GVftoQ1O7DYGX\nVr0sNISmfNMYy6sy5YGUf9oMD/HLLx0LyhkEnvB1ukmr7VfS1/4VaQOJ8vVD\nRrXgpG4nTnAaWP1zbpLaXDSNtma8eSShEyeNAVkMR/eAh2laOYNrXiJi8lFx\nymBemezWF/MGF2ZVgfKG99GbH86jENHXyZYoZDCBDRUr8BuTnb2p1nXgj1PL\npKConiAJygW17MXRm8XqEPNjwJT0uVZlCfvUIemy99qTFLUarpIUJZtGZ0HZ\nyfNTv+WgxBlnc1TYyzekAtpRNdu88IhQaqamUhI4M8fqAkkKbkmhkIzZkoVW\nYyxA\r\n=YY7Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"64d0538920fcc61bbc6481ea2832793f4c859007","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210105_1609832003193_0.008768404776242411","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210106":{"name":"typescript","version":"4.2.0-dev.20210106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210106","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2152adc908bbe3cee58ceda6b6125561a6e4aa10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210106.tgz","fileCount":170,"integrity":"sha512-dVi415umy+Upk3NmM027+jLEAsr+9f7j8KzlISgLfgz88OpRIpp915hehymDSOPaNNFDjee/lDxJkEyq6tTJhA==","signatures":[{"sig":"MEUCIQC22K4lkL0uO3NFW9nugCcDKX428n5xk+e17+KT+hioYQIgHSThOJ3E7taEq4aP4WSbD/oqXhA5oGqcJe1rcUUt7SI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58847624,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9WcCCRA9TVsSAnZWagAAnc0P/1MH03ljg2zpon5cEieh\n1ZwNeXb712vlyR1hskLr3eCAct7EHE+Yks9rP+Yq6YbIk5nofPFrogTtyvLO\nQpbBvOzx0Rkl9Y0kZ47jz2rQWeRElFx/NsGZUt3m7MsNYo4wzXwFu589yuIq\npj0ni7plIIm3LESmIM14ylPJe3g2jAAEAkSbUpx+o7omMFUH85RVWiAeVDNb\nGhqo10JRyGTW1Ktv9K6hxrvQTt27nsq9X4NszKHOrIh//W+p340diWEn6DWf\nWPhQSIK8Zh0Y9BmeuEgQcQxIYziZt9jzgQfspEAaJgpYTe5wkuNh9Yn3VMa4\ngcSTCW9A51c9ZJfbiek2fEfuFTT1wQQWZ66W2eOM7Ea4z0Ph04qoxkJ4JAEg\nMI9IEafzLciBsPQ80OYnddZE6rdTn6WXfgOrdVMsWKwH63ICEtD3UaJOUyiq\nDD569GarNG2iJT1RVg202458YAaMERvk23IPtZbnW7B0bWucKH173o2DjGIc\nRMHlyV4X7lX5yyHV15DBBGbYkCcR1nw+8yuMBbk23eOXwQdgwqgj+qYJzA6x\nknbxv1v+0xywsMa1teAq2mYF5pv2AY7wnCuFWgNZQQw+fexn9LQXdOc5Fp8E\nRzDq+t62GxqLeApFUs70Ph+1QW0b20cEw3RCCaagig/QhPQsmj7P5/txtd47\nRd7U\r\n=+q9+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6d50d480cec62d7ebd9b9c385bbb18c5ca109c1a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210106_1609918209480_0.8218718896061337","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210107":{"name":"typescript","version":"4.2.0-dev.20210107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210107","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ceeef926a57d2f06629a193a79b2757d39e4080e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210107.tgz","fileCount":170,"integrity":"sha512-+0Bu/NkTFz81q52monvo7BNeN4yfHzKtdfQB8ESg7bSq2guqhaid0JHoQRd9GB6acdC9xY1YZ5etAQrj1RDKUQ==","signatures":[{"sig":"MEYCIQC8+Slf0OXId74LmW+BsDGwTunSN8Wa6nBlmMmehA391gIhAM8xtT8H+A+Gf/sUPkx6n+WgMemsEsN94YNjD8jcRyWK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58847168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9rmDCRA9TVsSAnZWagAA4QwP/1vL6NIkM4iQuJWPWhF7\nx/e+wdAKpj081vzhXMg8908MprWLIGe75b1laKBFF9M9S4UsIsew6WO8o3Q5\n72o31gzQovPYITtfwshkksVNXfQFt4cMD3XLDw7qDqh4TGfm3Zg6plSSgyr3\n9BrWpq7G/2j+Dz8hnuTi7HnuACsqCKBqucZCUcCpURRRrTniLJQo3I3xwyko\nfW3hC2ISuMXmfTErOOTJUoTUa6GMiDVvEUaXp5eevfwpT6C7TtSX7bvBRoTP\n/sNk2kwtkuXnHHYTNYxUJOrlFgTvITXPB1/TSktCOwBnCY76hpvNUVkXpncC\nD+n606QytbEqPqy3Vve/gv0L6QRazR2cZj3p4/+iR2U57kecKtfJwKiJMQDF\nWd0CLf/S6HhJaPa0xOI1Uh/0xamKF31qdPF+uRrkAiYel5KRE3akAAHHuyZA\nur2E1z/71kPjXRFLt7TarZHqmKhwEJqSNT4VL72FYdotGM0HZvSjb/0iPOB8\nhhwBHJMT0IHWZTraODa7cuGBPB2sGumcCV4CiZkmfNqR98ipAoz8y91kwx1s\n1t4j0dWegIwx8cyr7PlfwhK7vEN7trfWGpkw4i7SG9x1kzAEBTorQQeu7Vgc\nuTd16VSE4pJO0dNb/znyZwKNoYoa7N0pnPkEunRy1WrOd7cdzytVTJgFUWYa\nrvw9\r\n=82rX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"35c8df04ad959224fad9037e340c1e50f0540a49","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210107_1610004865943_0.5050189678887393","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210108":{"name":"typescript","version":"4.2.0-dev.20210108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3fd59a03520b882a4272b3ff1a735404b6534c94","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210108.tgz","fileCount":170,"integrity":"sha512-MuIWzUVlTGCJ0wgH40hjc7/LAPDf9ivTwhha2Rwc6k3B3mEaKRF46KCH2kb/KhP8rKRJHAwwQ1mQftIglY1QWQ==","signatures":[{"sig":"MEYCIQCLD1QaBpKZ97tZuKVzkOa7/CpQf2fApHNU+nybm+YLfAIhAND+sudpeMXdPWz68kXLji13mU1ELZ3MYKKHKjEu7g/O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58900548,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf+AsyCRA9TVsSAnZWagAASIMP/2uoE+oBYJkH0YWiUtzF\nNyBJSapAdkZNR/4LdZc3yxmcArGphHO0QW16aWx8zD3RE8yEZE5V07LzIRvL\nMEAV3TMWzrzjy69OdJm/DDVJVJ5BuUa3J00rDSqGrbfViCP+M2qMXuVKWKr9\nBqHgIRd6JymALoIyT4EydtLs3Z01kYpR6YvQUCXLd8tOxK52GS8aWYzAanuj\n9L8ILb3kwYvBHP+yosLy3RmbH5DQKrP1mXB1MCliN/suKo5Ayh97YraCFxsC\nJAF2MBSJu07xj7L7XozJosv5J1IDUgKvNTSYsmQcyLG1uE2LEhQZ1+ePJn/Z\nClYO5oZKF1QpN1xebfO1CFuhxHAIPtLJ1MjhmcX7jhg4FRV728KoalW56jtb\nqRZoVK5xxP1/O0vPX1YLT3UZdbnC7NEPvB/2wYcTJVURv1BBz4InwIqT/PVf\nVYTTTvOlIUMZ+1QThO/3PkWCK9beuylC/3Miai+4RTDVyU6bqFhb3JDTICFF\n/WjiFJJxJH7UPjOXDnHaZUrt/yzQ4mcE3ZBPF99KZK2Xm8k1IfYp1ck3e/Tr\nDH0V1/5erlFghdN2JrlchOlqZlk40tqrVbw10ZU1chVnm/SuOotbCY9M44zS\nWoMapnp5Rt4ARgPK0ruMdwka71qNdL0Bokj7i+8dkAZ3PQOpVLe6rOmRK5On\npZGP\r\n=EcGo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"042bf4eb154b4520975ba6c07af6f2c7ed174ccd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210108_1610091313498_0.10965642842916656","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210111":{"name":"typescript","version":"4.2.0-dev.20210111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"99ca27c711ea2e5901f0b2f8dc1c8c1cd322fe12","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210111.tgz","fileCount":170,"integrity":"sha512-QrrdDnyKeEDEh6R41AmAwMgakwZyt/TIqOmrpmFPKS2AuUM4eF+c/iS410pcbPreV4YLLTGqfFiwM7IfqiTRQA==","signatures":[{"sig":"MEUCICwvJN6ULPkuyLeyjS6MC6QUS8Lxxj807PSVaDNo4MgJAiEA6mO20PPhmaxh6BOW1br+QvQiNXf4NTHjBDDiis7ZpfI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58954424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/ABjCRA9TVsSAnZWagAAvx8P/0BWo6J2EMxS+0Di4LqS\nENuUPO8OpgKnCP/MNO1SH1Bcu7zwujBluInCNYWuPOibvFoF0suxFbNbsqIn\nrC8yveTg1BMzDTjat8/PhWW4qaixEuJWF46fqi11BkPuN8nSqoIrQR6BCOyc\nllaEDrGf8QJ8MXAo0Yn7YUnEbhcPrdCo8U5ppbxJ/aKRsJ5yqaTTDhA7wZy/\nq99JmiWBNPVEmYl9nUwfcJbL8TXL0UxCSP/vpw3Y0/1i3o8Q1MDNgk8CSjVd\nVQ0JyCsMkZ26Ps9Fm4SlsiDyl0pkPMpv54Z9SJqrpwyRqZH4aRIl143vfxtt\npswAq1OVlrXhBzqyvtMwvpCnSeOWvQuF02rqalrCVp8bmya6Jmv08ahodJWM\nnxWxc2ZbQ2hbixCqoJwDq+6vET+TR0sf9uftOuBWdtnFUpxym5VUKUHk5f7b\n4geOiSHQlMqlyxdRELrXfljZEat1/j21dHAWHO684ZuTssqdIEeu3kTgXymT\neQY4zzmCrJEe+lU32pz/DqRUx7oGMeQvMmHw42p4U9HSiQh4vexqD9EO2KtF\nEAeOFK4Z8cQ3fsJA9NnesxIxx5R3qH6WOBsIorlm8YsNBcWoqdJZ6Y1SBGP7\n2hM8V+8XG9L/H4cG3gYRU+YspevDfk8CPIe7U6MShVimRVxPmboz5Ro15+Yv\ntM/q\r\n=2Q/p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8ddea6b7a614914cf2aba80fe3ad71e54c452b54","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210111_1610350690519_0.5457994116946965","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210112":{"name":"typescript","version":"4.2.0-dev.20210112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2c39f1e8dbf38508818259b94cf00388ebb68b3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210112.tgz","fileCount":170,"integrity":"sha512-fmuDKLK0P2rfHpJwVyZ/WLFFdplDdNfLHBAAsgPDiwZFEKv3DFYvWc0B/WZxS1HyMW4926WdFkphxCfwkOyJXg==","signatures":[{"sig":"MEYCIQDZCahhWLWInqCfwFisPPFeNLjo9ogNebGqO3qxCbMo9wIhAOI+mPeI4r93L+MzriayI2zK+6Ny099tJQbdrZRV1TQK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58977766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/VKqCRA9TVsSAnZWagAAo+sP/118veuj+dWWg5Z6EPk+\n6v42lEjQ4tN1MYE9tFOErK1vfOUMUimB3aU+X5oit6bxwd4EFUdMMtqCkJDU\nhoNKGUjjR/rVG74HA+Eoz/tQJ5NZeBxVxF+foNuQ9q2B+ldlomA3/g6j43ZP\nwRzpgpB0MLVM677Ucp5WjaSaXgThRughRRgBQrbhf10DeEvSjcNYuUpjftuv\nKQeWj9gLhmQTlSkwH/BISqatI1Is1RtPAXG3FF6RePVYrEuisGo9rumHGnD5\np9ouppPtYrz5/uShZp4eRbQ4FsmeLk4uTS0JSXn0w1fpm8TGcZBGrKcNq5ww\nyRMIpKV9bb6yXB94nqpZBs3chS4T3wwi0HhH1TZuUHy+QJmaYtgl1fDbl0hl\nuR9U/ra+uKWAcO44mTtrTyI4Uy6PRkG1TVCBXeQxbl8stB4rNjDOhmsAiw6s\nr1Ln+PaDp/feJRbBad/y/EBrJ49I7oNWjewB12sAdzL11PBjDiRsKHs0w5xw\nvpwdK5hfsb3z7g+3U7S2B/Y+vEZvP1c/5+6PJ5R/S0zku+FxpbJl8/50Eeaz\n8VFz6g5jNmm0vX31X/i5NMETF4JkbHAP0qL8KTeOyMqW1DQ3G2WCBRAKYNjh\nonAg1xXBnJdvEZ/nf3L4TjGFFW7TcfsjXIeeVtIL0P/nOK7kgiCqP5pjs3A5\nZMAx\r\n=Mr08\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a894f8ad2b0ff35b1bcfd91defba994136c68b18","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210112_1610437289952_0.25399753553648874","host":"s3://npm-registry-packages"}},"4.2.0-beta":{"name":"typescript","version":"4.2.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75326e43625718f4a325f5725a105a1b3f1a7b45","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-beta.tgz","fileCount":170,"integrity":"sha512-0nYjpkQ6bKjHoJTQkUHcDtGLNenqc5rfTcl3ISUnJXPkGa0115FcVJABmodfMKHLyDBmzDr8IGLbDv5m7sbYgw==","signatures":[{"sig":"MEUCIG8B1C6vcb66KQfmNG3w/1M+WLImU6oZ87jErfqXa89tAiEAvbj7SmuKoDWiMLGyHKkEvBC+owLZlTpIFFliRgMq1oI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58977705,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/j3XCRA9TVsSAnZWagAA2F4P/A7RQ0oawC9gZnLmWUwW\n1TMVPIFcfXLPwW7Vknbhzzf5ExWYIUEKcEat+0E5KDhHqPvMAGwrtrox2yI+\nHpJYQr0cFTv1h145z8I7ZktCi5sMyDE7JLbmMVtyKP3ik/7NR2XYC5uYEWh/\n1lkYO7L1pCIzY61Y3Mpqh8RhqitrM7qpaaEBcuLWiUhHi0HLuYg0V5ATR1pa\nBjfZk3DDYPTOLPdKnC1eRikTLZMP7wrnGSHiKE2IWCFqaLt5Ko5B8dos31Cp\nk+fDo1H2C0BjJSwkH5Piq8SMhbloZuNxB8NOPNrhWbgD/LfYH5VCCwfmG+h1\noxvxIZM5ssFqNOaZTm6Ybr7qHCOAfqMoZ55Lq8cBsHSWMDBV+159K1+4kO4S\nXYDWZNG8vfrCOLlO5HAIij2NzeSTxTWU2v4riL0a8bc8YLATwNShxpzwKlIs\nSAai6Ml5spA64Rcq5Y5vWQhgWLXXs35J6qRgEj63zLwP9cWcDp+i3uhTppJY\nUNEESoX0hN2FZ0Ma/Iy23ioFGVMMMdMDMpyOq6fm9Pp0rMpzoCuQpa1sfWna\n39SMcLPaWzrnbAndFVcc8qT/7D0yvaRpcAyEX2MfEYEWy060NnZyJ0L/MivA\nqW8xEArxiA7nMIvt8G7vJyeFxVH/RJgp2yxRy0mbBy4xEqkGounUKwB1ak2q\nKbDq\r\n=NepO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.9","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-beta_1610497494717_0.23847705599118352","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210113":{"name":"typescript","version":"4.2.0-dev.20210113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2d4917dd61b6d8893176b265a9275caa413a2516","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210113.tgz","fileCount":170,"integrity":"sha512-671w6shD9GTssq7PR66ls9gmelaetphsK26M+RAADCJWGDA58rFeSVluIocR42DeXCBGMuXr469QTsYjz0dBAw==","signatures":[{"sig":"MEQCIAzRa33OGNZhrm296lHub2N+9/nHnVM5NNOQZz7QtvFfAiAXpVBzall/jTbdjF4/gzJoYAZb9l3ePvsrkETFSbZltA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58988434,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/qVvCRA9TVsSAnZWagAA+tgP/A50nvgrsjq2u3/e1auD\nLV6NCozAFlfUzNCHlGRLPkRh6Wec86dkEnHCbYmjqgvVm8FquVxTgUwZNlaG\ndk9cvYvUJJqGajqhbO0NlGq7smlX93B6i+Gv5reCv8kuVxvhS9XhleNMJoQu\nI2Fd+Ivc6kj/xHwMYrZcrm0Xgp9N6RCNrrpLvRQHXUnU/GYBWYu3/pejTcOe\nIKD8xnX8jefkfIp5Ed3a93rAxd8VeZK6MQLjPRzlLsJifZV3GCp5u/8xwwvf\nQgHqWl/6dvouokHSfWqe55ufAOkriLxauLPhd00Sj3P0N4x3I6JOoT+cTPGg\nTtDHDxX8udQ3BvdJgnAVKt4NHTTDZnq5SRpqWtvmXO+zSvFq7ABLDbsy5qKn\nfMTYczgyREbYu+GSKJ4CoVlnH0W9Ah0v/LjDuRPNPQG82Rtj0JJR30jxC8Gu\n7DcBAGKcPteVUERXF0QV5ubQVDL1t+n4Na47VCpLfW77lL54KzCYkeJqLuJ4\nzlWWyQORDWtnyLQ7Y6lk7wv9NlMob2Q0ocqicDW7gMAtQvaA/BmNDVxVjbx8\n9iVDPIoyZ3/RRGAf4Dz9b0Ukff8J5z7WxqKjxGWfaWuglanHBQ9X6Nek9Bvp\nW0l3SJwxwMgrXBZUF2qEePUNYPkNW+fUJyxpglC51kjcpFsdl901ZB2JYr6V\nvDYi\r\n=h7iR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"33046e389abd2c51c42cff9aedfce1343389b64f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210113_1610524014080_0.8727368408821996","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210114":{"name":"typescript","version":"4.2.0-dev.20210114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f05ffc4f3d3e3492a23583c5691ebfe8df649db3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210114.tgz","fileCount":170,"integrity":"sha512-Ia1jESyGM1YOSpc2nA4N+6XY1uPsycVmSauh6c5IkGLGMW+ygGnAF0gvm8BXkGSZnO5dp5+R/6CQLGdawAbv5Q==","signatures":[{"sig":"MEQCIGUw5cRiwr1enLEHhkLJQ0at/2aQRZmlNRfjqevR19QWAiABVoID1GESuefcjxJUzK2D9eOcw6nWb9VXs3scfZ8nKQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58997017,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf//ckCRA9TVsSAnZWagAAWb8QAJsYTG8rXJCtL7DLn6Jm\ngUjYrO+zRKZQvpwZApyKfoaD1u8pA5QCLtv5Rh4r34yJzNdv8V3dZzeC41mK\n6zD1TOo+OQYZ1fQxZovmGVdL+gb9lZeKC4GzLu1DEd9VL6G6RqYP2PUhzX5m\nss1TGtJ8aMxzwf5iBhy73SuYc2DwSc6wum9pQtHbH6tF5ROy4jH4dLH4A6IL\n+2zoOOJGybX06xaeAkiJjLAbgg4duln/2a4Ioal8P7grTceVthUk+JqqdKcT\nzayL/RwDuVRSzBfw97ZRG26739bmYpAxwJ6Bvzv3dcft+h053rE0MCPlWdlu\nmRqWIP46JguMKYr1pq24hynzaGm+XsPJ4NcDFRtsPdI4qVQTDQkwpJUY9ZD+\nZh/BLd1LYKiRrLmIX3qPiYRcd+K3/wZTOpvaqD/1uVBCO8WXHT9BgsoZ63TB\n1xlZJ4fR1sUfusIiTCuhfUZn8cic0Cqqvio4PATbXgef8jkYSRxEPV4/7o9u\nLlDvWVyvudF2UjJYDVlmPVo6IGjREm9VxXWGZ8C+GWRN8kOf3ymCzNZ8WNsx\n6e9vTLoN/k2jPORvaKfRIum7jRwDwFv1m77NUxRf9NJvuf5hPvi8R4OxND92\n5Rf94PA+kdr7vqyXvFYzUKsasXVhyMkK9kKdGDZDhpYXvKkh/4jf2/Mf63e1\nah+I\r\n=wP77\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"368cdfd29ace559e257a3c92b12212c626a5a692","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210114_1610610468158_0.5896025574498709","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210115":{"name":"typescript","version":"4.2.0-dev.20210115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f3d1e4fdadf92701716daf08f54bac121023849b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210115.tgz","fileCount":170,"integrity":"sha512-sDBExKD8Ht4dsLHxNgxPmfFcw5HJVPpi+NxT0CL31IPvJSoUdnIrQbE3SMjIjheqURFYY2AB1ehzOB3O0lNsLw==","signatures":[{"sig":"MEQCIDQjYQ4bsg6L5BA4uq2ImTeDSC6b7ayqbUHNQu5FAoagAiB4if99UiQuy60mXl9Yh/mSXloL2UTTHYGVRnpZnhQssg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59001009,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgAUf2CRA9TVsSAnZWagAAevcP/i3pnxcoZ7w0YgtqgqY7\n+vnUr72MG3DwHzQiBXp2kofym/dfuGr5dLiRe1KxfNP6F3dtvm2nxCkHIXfa\nTHiq7tqQgeFP11Z7XHb2gCwyZbI/rPrOWmyuUcTDwdJQp5aO3CaXkNi2Kgws\nOVrg2NUk+7yrWQCB7q5ky4EwrcxFBb03GiHT02EBxmi3LCx+SzHfKrzA210k\ng0mkY+EYs/RxMSGDp1bFbwB/NzRQSSOKBhU+lpxYyque6znwsT8EVZT+NGUd\nRdwr1aHSd82B/fG7eVyVIeo+u/WgJc8O2Rpv5CeQ5IhctWs3ct1/cDb+y6S+\nFkpVPVQF+2pjzZR42msWglsX7ygk19XaEiErM2Qbk8IoIF4pIZcbo7UJBIXi\n26t6mMa/hyLBoavccOHcBNxVwF+yKFnLoZlRdL+EQ5G7sX886qHH5X5IKW13\na1zQlkqBXclNXpxqvc9aVUr664EJTi0kL+G0x7sIgg0n5STR305/2yWYXwDI\nn2HIgwBYhLRB6M2NC1UmWI+9cw3Idw/0ZQLwaX5O4wRRB6rMDtV/zrpMRyRQ\ne0J13WGlahO4m99PmJnnO99dJiEGwdSTc6i2g+6muURAJWpJ7tmM2I84e7QI\nMyNuVfm9VUmTtDdSq+QZ3n+pcxnRT+zqu5jqKHXm9SBzWHxCp/41gCbd9Zhm\nf0ur\r\n=Oe8W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"22f8fa443b75eb5cced42deff6398a409abb5646","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210115_1610696693289_0.452975816156056","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210119":{"name":"typescript","version":"4.2.0-dev.20210119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f1dda49744ebb367fccfabe85f24396f6d88b82b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210119.tgz","fileCount":170,"integrity":"sha512-Vnxh79MT76w7udgbmzBHM5yvjY0oETejSeZUu8XqF+kL9O45CiaXiHaP1FIUft2SVzLQK0DkEVtyS6n8D8aNyg==","signatures":[{"sig":"MEQCIDU8iMiDObtOrKtNqjvq1gzfT42pQ73wnKKbDnEOB/cjAiBs9jOwMtwfVIgns+yFUtNpJZx7A69odX869obMa7f7gQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59007436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgBo4TCRA9TVsSAnZWagAAYK4P/0+RcUuCHn72itUtnOPI\nT9B0BYCN3Iudmp8haFMtVTrtc3Tsd7e2rgLc7fdHKD6gHsj7oes4CQpwRKr/\nU22mhozJ63BOAMGYDcg3npQ+xwmnYjZ6DsIKf4ANGWhJs7P0neLnmmWoPGYu\nwpznKGY36hVbVaZNOjKSZk4sWiI++AnRoB690nPADpjLGaKgfhdz2pPdBzFS\n0RcHUV/nnS/wm7vS4pkDnCO5zvOWb3Z0c3OPzqgFTEiCITq0BUY5M+RyjANd\nLRG4VZpnRzKElt8KuuPC6XdQuzhp+yJamXww7KN5+3y+EjGfT08af39Tbua4\nA6jMJEF0G12hKnK8oc8Igk4HNgMWJbKCqi9DLEZYuPVg7iyiZxkcKRQrMcVG\nfYftlLr39Lpc+jljMo8G0QWA9J+NrgE+sPIlqbONZzbJMOf9qMX9j8mW2HaU\nf7Lt4Eba3HS/TLgeq7L+Zem95Q+KtT+sCJF3J20oNfiUP38eCvxQKI5jdEex\nZiagOoHXPbmu2jP+mbGdBTeS5P/uQr4NaTvkIQufjMUtcXOpEXikDDeXiSiy\nQA/Wxq796aR+BjOK0W+NkWUfztv9+5UAuPD1z4BpJ9TjnvV+GSVqL8zEu8ne\nKQKqiTOWkCN57xjIz32WTVUp5r3rkSgujNhAroL44WnLBV1s6XZz3AysOTJW\nY4kW\r\n=c7ry\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b34e680cd0e7ad48cae150f2f79dfe475456ce9b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210119_1611042322900_0.38553247408094404","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210120":{"name":"typescript","version":"4.2.0-dev.20210120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"de73e51a7cf8f2bc6a553cedd2ae1f9568600c84","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210120.tgz","fileCount":170,"integrity":"sha512-ko+8fE1gUb7LlcfZVodyMJ5ErCkucpQ3ydkMxLelzPC14LAY/RQ+846hRGAyUBLF22J4di+/y4bvGwzXC+6o1Q==","signatures":[{"sig":"MEUCICdIGygn38utqbXYJAdJQ4CqGBjOmkJEzTLPR/vx0M9DAiEAwHR7WS2kQrhAGemQYi80t49nydo/vqd+eASbLTfpu2A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59007726,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgB+CfCRA9TVsSAnZWagAASkcQAJx4/t4MX/PRhfM98pvC\nxm1OXwt3AKFCufnjsfk766hQ6b9395WkunBkRJ67tU6Iyw+kBOrjaj+eRVIx\nbdfqoL2VJG8IYcwexd3fH3a9czvTivVY9x1ECS4FnmBE0xd6bc65cK4mwqpV\nS5C94sBnhJ7hagQou6IRrDwEmsSutWbog0hsE+I2O/EvvwzAmC7s0nAdwi/1\nrbGMfMmvGWH08E16DqXDcxJ7sg8Q3rYN8t1QUXLIEXTWTgUeKZ0p029WkAm8\nM/HrI+45nTRE/ooptcrx3zGCXxCqxNOFJj90H1d1tvV71mN4gSwrljq4K1HM\n6fEjRAzdEVVjlOW0bxIN7iLGzFzFu6gk+qA2rx3M/eGTzQDC8gm5Y/sPxPLS\nL6vADEh/6k8FQMsGDyLzEAjLjf4HH5RiqTuGVyRHgBDikHc7jD+ltsVwdcar\nggCEhJikyUgGGTlnDWM/KRk5BA3Eo0byq0bPLBOLbb0c+8+yKZ8jYYCeJsIi\nR7w7Uq8MifBHTP7i9GPlbpy2p8BW1M+i6SRk3sipcKgBTdtyrvRLpV9bvDdB\nlmbAOoG5KV5IBEZlKFUfdpTfIpSyRTah4hbdo2xveh8OzOIrprdg0zXQvkXk\nUQCTcWwZJ6fE8szlQV1uyarD+cteOru0Q2FnA99iI7JeHsgPXVl3JXxnk03p\np46g\r\n=5hHU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1cef53f9f5e9e731d666d485fd69c5c6e7c2420c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210120_1611128990702_0.8921990071506636","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210121":{"name":"typescript","version":"4.2.0-dev.20210121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3af5689455233fe9ad3128f2647091dba777daf4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210121.tgz","fileCount":170,"integrity":"sha512-3dq9PpGVO6lJOa1LtWVs6bsDpwvIqKhb4uC5YUWsBfXBBRpqxYfO2RKn/0v8WWgwD5dN7AeyIyEZIgRpPEekOQ==","signatures":[{"sig":"MEUCIQCozovbrvS4+mJCE+3Mo3zJs3y72XBuH8FYMFMKoZTdwAIgRD6dN6KzD7UqUqVzQ7TxpUAXzMAbbyLxFGg2vVoIWik=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59025259,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCTIxCRA9TVsSAnZWagAA/3IP/1WY/uK1FAd1f0XRoHSg\n4Ruyv7LDoOhcetIJVPazE3839fs/h4rxeGel7BQwNjKvJlH/KV+wgroz2fnZ\nH6C+ArhiujamY1o/5ncNqWmzbLlcO6lLCZg7/JODRhDHYlNgqhpdRlKWA5/L\nrdY8qYXR6fqMc5emZgiF7KHBjYPNLKfqaimoEXjBtm8byO+IcZ3LejLdgvxS\nYSRsa2MNJagXLmxktA6ReVmP3ohJZtjQ0wrf8w17WemQOJ0vQ4uJGV6SIFmC\nWRzRLpUigjU7eGAtgafdznNI6SWzTujgZmbqj8XRUpIPz8PeZb82mM23irqU\nx/tpq+9hZFfCYbrIj2BiUei48YPCFNFUcPPlB+DvuJNtQk29Q4rC+QmckP9d\n8+7QBhkZ2KEaSJwHFf4rF1iE9u6MtvUTpUGAq08mYtqMe54ii4Qq0/yzNGOy\nNfLI04F0wrDUaU6JzXGo+aa2IxBnJrpdMWTCqqlZorT6bT2lPcE3y8AcquWW\nkchtkU9HPeyiROKNdkg7TG4Oj78R7SmOZL076HqKDp2W/Glto7Cbxfbn8ijW\naHDZw8+UjV+x2SMbXmk5eGVPm+H1WgLaowhMz7BWNzFZSdlAa11MWIaRuV9w\nR0iDVIVeYiyraP0FodmBENCCupDsZoikL5eNAZRqkB7KKrnBptNjWl9hBBQI\nZcEE\r\n=fUAM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2f47527b99028d969ea90352a13dffc005a50a7d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210121_1611215408760_0.7344823163445255","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210122":{"name":"typescript","version":"4.2.0-dev.20210122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4b2c37ca6935e14bb5d3d3b31d4a64bee2f2cd02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210122.tgz","fileCount":170,"integrity":"sha512-ntyM+PfgaO2E68I0TIv/KiyLZYep7K1evATVo165OQxOXqLHl46QZeEqC05yK6Lb1EPh89/Sk2mv+hsIjznuqA==","signatures":[{"sig":"MEUCIENp+nra85wB1Ia3Dd6NLLMqIVoIQgi+g+9bjqARjbOgAiEA2IUvzcgi/283+yVIno3eJ/yU/+qxJ/KWR6i65qBbL1s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59027509,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCoOTCRA9TVsSAnZWagAAcAEP/1hujGjvp3RKvoEplhEy\nNA3BKDnRoO2VtCRZ0FE/8uRgL9yDLHXF6/oeUTJ3DSgxx7fmmkQS7Q+EPJGF\nUYS6CJDc3FFqTNLvPDajSnzyOmFGpEuK/J22RgbwViFIhhOWRdVRGhEyzHJ3\nEkwE+6gOtGyuVAH6IiTngs22dcrXoMhTak9Fx47XDLVwyXuBuck+sMbk2oNL\nBDBN0+oE4UewDe12SnyCvAAOJtdEGsNVx4NMwNkvLWJnV8vCRtSAMa6tS4g9\n769rWVqSTHZ/GMSMTLwEIROHhgq3B+U/1lC4mEEVbB2YLuW9kewxwHCchPkQ\n4R9PkHO2KgDdiBjFh83bHRY3B/ADBMXbbKNZjTCJjfE+8TpLQyiikS1Q0YAj\ngP9T6nMF7SybMKSXtrA4PF9fQDmUpntYLqf5G3OCEbbKIzKrpawq5v9cYZHq\nL/qYJ1dE1KAdTh7Bey/eZKAk7lgHAx4a9B0WzX8wIQ9+kVpHR1NaLND9QpaL\ngs8fmDxhe7RRPDHOEy8CiN4dSSsvk1xurDNlTN/4K7ZSf+k2Z6rqF8qfyBRA\n7ZZGjQML/YtssVTBSaG3V3/xAu12NpmoVO2doXN65qOSKmxluNDn3eIawe+3\nwg2QoIGR/gyqUwAqVMm/+ZWOSEbZ07Z7OeMG558t4+O/IwKhx8AeF0D1ugJc\nqaPw\r\n=ZEkp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4c62f6e7d62188d8fecb92300c72d1435924cb64","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210122_1611301778622_0.6202491800034118","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210123":{"name":"typescript","version":"4.2.0-dev.20210123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ef408135332441dd0d62b7554c31eb49dd392ea4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210123.tgz","fileCount":170,"integrity":"sha512-Yu5Xp8Hvuvo+1Rqy+EOfkeZEXmA1bSKfm33L8V4fSYlELsRy9MpLJEmSZM+OqxaIsT6MJ7t9kpw0YDMlLWYLPg==","signatures":[{"sig":"MEYCIQDL4fgbGdGmDrMncO78QPch7wQMUmjcBMrfs/dtqg5rcgIhAMR1BFD8Q7o0O+BxE6BJs+e+REDYAgShinFOMEtD4OqO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59028871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgC9P7CRA9TVsSAnZWagAAZn8P/0evtq3zH7QjemiqiBE1\nsw7H6ELLLZFiEYDHR1qu4ndpI1m3BJ7qWoZJaT7HmTcm9em/6zAoiPtMJFWn\nrHP1AvOsQbdGNGGtyRu++ozq6rE6ZQCZBeMAKiTGtV5FIFv405caIQTCp8Lt\nQb0bafgmjf0iqDAH8mGTwtzfhNSg+iIi895sOcpK2wOJNdPrVQOnwCnCBodj\nD57qXavIdIVYcZvrLmcXuPNUk5GfWh70myiR3rxrmDDyHH5mOSlUzOO1/9SU\nQlwTl4+DRn2CxWzIl0VmiivdulxFj1mGbxywex4FgClpGnjAPrqeBrRaMQMC\nsZ0Lqy67UE9GPxd9hVs+wDwHwvrL3JVrfpCm+YsQ8QIl7srayfJr/sX1nYht\nyE09nHjXYUPW6/BzH0C3CEYiWkbhrURWp3NG3AT9lXxBIuDC3DrbdXlX4QoF\n+Q3bdrDNcqPm0D36l9nWulhKUhTp21u7vSg9NYJDTP5shtM/0TtAVV66Vkp/\nGZAUzJOdgzK193X9AhAOTf1Gw6hWLnZ5dDqHfwYXYr9Zxmy8bvZM+6DDMBUb\nq9Z3s0SARcBU+o5YXZ5GGhMb4MkGFHOeJKcLB9za9S+TSQek7oh08N5N485A\npUqV7d0GbU5Kfyo/9bXJ+tuggWdLxAbY20VhfdLe48vzXBcmJT9H1Gyfuf+/\n+6x1\r\n=UDxu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"63003eb1061198805ad8902b6a8b142d4f5aa597","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210123_1611387898208_0.7591222096309542","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210124":{"name":"typescript","version":"4.2.0-dev.20210124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210124","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9d55f7f57926010be6dd69b193921774bc35aa3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210124.tgz","fileCount":170,"integrity":"sha512-mi+Z4/5vAzIigEks/PjBVmq5XZ42byokE9PYkMfCe/yp3nQRHFzNEKmrMffPv2+b+JGNm+6HRYjG8wY/SUa5Pg==","signatures":[{"sig":"MEYCIQDgSJdweLFuKjMpRaqP1quKmZWbR1d2TYLOoqeMhXVadgIhAJkd31n7Xu4gvhthMfRi6aXNrvA5VI9mUMwCHloPxfF1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59029105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDSWgCRA9TVsSAnZWagAAp+kQAJdGk9HpYI3REam17k1M\nU9UfXl0HmeFfrhtMiXroI0drx/l/CA43ffhFenPT3uzs6rCrO63aYyznAfzx\nD+RK873NoBrb30MwrV8x2nhSCvLdI9Rhj6AeRuXpocVKMED2eI58OWZVsViJ\nhpuNW+r2G6iD17rjzGJ6NNKpl8QediU1Vd9q3TJegmnaDoO9O/du7+LAlAb/\n0WAJXFWEXZj5W4EyKyOnHYbla1ExD0k3+DQSNMZI2v9xJ/q3khC/CrCZL+CU\nlNC4DNdyBvPrd6pE2+MzbM+vEpI8de34W+67uI5JDwvjDqmQXvrkhso9zLs3\nCA7uRK1+hdWjUfSG3elaIXuKM0YXhVN0S8mBmD4HX8d9nuXv0dCTTjkdprcT\n0Z2Uwy0vkUNyZUBhmssFOfa2MW2sSzFeTQGph8JIVI72wql9+28EfaDAOrCz\nNrFUiGH7LjexpcvaJPShs4ilK4t9xOJu4yIjqn9FjVdAj5KnDeurnsvxmSdR\nvq8vvRxCCajvT3VLAg+NmfJVrVLT+DHQ9wxUEucr8r7mTs5VruaEPGlcWSEP\nsGvV2/XnrmyiaqCPGUhYeiHgxRLmjjqm1cYPJIqucwosmdEzL2a7vJ5bVnEg\n1U01FYoJTpG9jd3xqqpDEfT1W+kULYzqj7soFR7fU7ljsEEa9jk9zVM7xvj7\neEtN\r\n=O25H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"154f2094fc921911896e7edf1583d0d7fe672782","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210124_1611474336050_0.9451721711888681","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210125":{"name":"typescript","version":"4.2.0-dev.20210125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db5f8e5f81bb890a1f9bb0dd5d031003afc046dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210125.tgz","fileCount":170,"integrity":"sha512-SQFDH7UOlKuHGwhwcus8akkQ0VxT4y50OEUdh5oDvlE9ZBUr7nG3vjZLXPX+PHv7ZBnyb8h7BwdrNLkYHbnFqQ==","signatures":[{"sig":"MEYCIQCMUK6pp6Zn2+1Wjok3iZRoYueKBy1MnPFhHNxMayK/0AIhAJMXlhJapxEDD65KM1bExcIOQAUqqaZJlQq5XKj2Jxgc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59029105,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDne9CRA9TVsSAnZWagAAMUcQAI1UZz/AdjW/VfQdqA71\n9tBgnSUhAkehA2GZgfdmVh+dEQQZImIUw1TG4LuyCnoO/FbAfbKatRySFG65\nszWrlHSKVbx4esTiLYNckvEdvjwXStpEmjBegWTQ3wbUAiYKtygKQyeM+qrW\n+v3B5CC9ZrmocVAX0sfFlRLMj062vS5PkUsaERR7xPR7Tq1zAKoadUB77TWq\nUhv7jhbMfhiTpn4VQY57Ng0TISpPHf87RbSRUlPw0cGfDPhOJgkykkWBJBNj\nRPhe6i38YOQKf6LjadaDUYs6TjWabDAsg+5d4zDJhx4+td3ZhmKEXucHvyAX\n+O4Cy7YykZBzwotMewQHgIiMwF8Di0O9183IkFJyCKdMIuQTu27nIMl+RaD+\nxsPr8QeFOrohlgb06rYE8LEPUJMa2EZN0FSP2LciPv43sSQO+toWcS5PgAWt\nkNUKyhfAa4BslrSriQHZ2OGqkZzU3COBr8/7iVOQsN+/cmx8GnzWNiVYdGSz\nAwt9xLvgsUEg6F84sh1CR6m9LclYPjOX3MebPnVzQA0pXvacuwKL0Xq6VozR\n/48JzK4lzeWUz9lBIORvIT58eVI6HCmOFWMaoThgG3nDmLtM3f+gDVs06yF7\naqK/mOpHpUk7Ql8g50Cn32wxZTOqsMTJGA+qgBo39hDez/gef6dp5rj2nPQK\n5YCN\r\n=JKmy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"154f2094fc921911896e7edf1583d0d7fe672782","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210125_1611560892426_0.854819632536973","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210126":{"name":"typescript","version":"4.2.0-dev.20210126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4793ae57a46f35704980c6f6c1b066ad71f9cbc2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210126.tgz","fileCount":170,"integrity":"sha512-qF2IdchmiWvZFKE6yTMu/6WKX9faQY9yp896NT1tAM5pmJ89WrsyFnQKRjSSiQg0v+xMScM29hlt7uI6Gdg7aA==","signatures":[{"sig":"MEQCIADs9arepu1WT81OjnJXBS421Z6RitanYCJjJWwYZfwMAiAmOJH1UPdbyHzHjGD2f7JuWt8bz9mIhs6sw3BjPANliw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59069511,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgD8LaCRA9TVsSAnZWagAAhosP/1Qi5V3t3873WtbwU6Xo\nGekMGkxr3a9RYdohSRxFa7xO7Z6WelZNQ95ggym1wA2JK+kgzJJzqWZQ1GQe\nbD3jZgHFX+TudyIoooXKpSKBj2JLj9Mj4TDTdBFFQSVpASPZITG/PHKgyrC/\nXKu3d8ZBkZWcATlvEsZ8yBvjpzC4P99sFV5C7fubn6Ip/e6c4ty41P5WJ33E\nMxeBedIBTkj3A9GzHrzgRM6Mfii+E5Z335WvdUnYuTpBqrCCq7y2J+dMBmyo\nmjXUcKVIuEA0JW5xAvbByMuGu80TAdduM1E3K9vEJmvV07m/zzISc9/igwBl\nxUfbocJSlYYWS7FkNs4yP5KJuy47R8WpWGpUhzh7MJAbbpl3d/tjNfXpHqzP\n4lV9pQmtYQOasaD63pr+chUPML2lyQ+gF6mij/aEIm/Etf7nuoGQjE4MSMwO\nneYKIJJJ4Ky1IeQRKxdDeAjdJe4u+iInv4FseYRWG78dnePLWSMhWc2fYTmD\nASuvdlV4f2i0FMPlRJdqFobzbMwsDXFi2kOxlkftb2nAtbdRqq381eLokSAJ\n2oRJgy6Qwjpmu8itggcTd6kyvuCXyX89Th7ra7PpxzKZpRygjEsTzdE46qRF\n60QBgZlg8YPkrnQ7+UDmc2vj2CbIR7gE4mdlvwwji4dwpafsD/M/ecdKRTy/\niEaw\r\n=woye\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6ed344f2c8b66935ace4a2cc78efd7618840a248","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210126_1611645657962_0.3542902299766113","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210127":{"name":"typescript","version":"4.2.0-dev.20210127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210127","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e7b3a13ced8c9c9121a9f1260e14379913b3481","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210127.tgz","fileCount":170,"integrity":"sha512-Cf4mVnydVS0TPY9k4SMZWZY9c5LT+C8mewbWS7xpTEFdzryaCYpwD2JXHOO1EAzvVGXpEBYajIPQwTV0jaWkdQ==","signatures":[{"sig":"MEUCIDIIhoQjlwB5ajhL+1haIuxuUwxBmyw3v7deylL6n4tXAiEA88GHsrL00H2OBXAcpcAegv//wE9Ua9fp0OIXBWiko0k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59071021,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgERRJCRA9TVsSAnZWagAAwwsP/AwzadRX+cakmpL5Ir8h\nVmOQe9vdAQhWFqiATEulzrvhQWBnTCmlFEDF89tdFRfG0rAU32w7AvlzwgrH\nHWEPqJdLAnYYt1MecvamovIDpzA3iW92Mx20TLgWp0JNr9lGsRFnR+C+xTIA\nBMxgtW9ic5VEI/wH0XdwS5NfH0+U8SjSiBXnbT8aZQJo3XtxsQVSFMNqV+zO\nY4DUD4qa4B6H1/Zwc6CMe39Q70spmLA9ueeCUBhqIfZSlkH+WRW95btUKGvN\nXiKuQwqVRa1qz/JwJRQMUb3uHAvgdHJCb73Sup7KJ1i90KlcUfQloCtSzk3f\nTopB2G5Ir/ZK0EMo3TcH06/Zxx5upwbNukYvk+xVvC6+JlEnXHGMa46Q1mq1\neZkJpDGnKzFsdG8pb2Plr9mQ9cyA3/GzuIPyAilvbDqrr3BafJSgDxvSqlJO\nnr48NpAIX1Bpd9fr7ePPi5HBCHaQNm3j7tlJMt7FFfxrOpc0WPsMtcGt43ou\nlZncMSr34eM88IhZ7eXEHhI7T+O3K9tzQln2ZcbuOP3yHOfxWLsoW2p55ou3\nqfIjITnoat8oXpyFDW2jE2KfbwuZTq4yAdbDV2Di5O7vj1IYFFU+q52jKocV\nrtg2tJgUWjxh9Mo98w3zFXOmAxDqeksmTMt4Zc4INgKeJc4LfNiINurQU5D8\nxH2u\r\n=k1eB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cdd11e96ad3dd039da76c1506e35bc7e74dd57f1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210127_1611732041122_0.7911147747839495","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210128":{"name":"typescript","version":"4.2.0-dev.20210128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210128","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4f79a499691f21cba22b21166a63ed4577cecbba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210128.tgz","fileCount":170,"integrity":"sha512-z8DMW5Wx7H4H74NNfFzGX7HdzD3Qi8Unq2rDZGA5ZRPEncq75SLr//or31680eaxhVrI6qYe3YeUEyUIAmGq7A==","signatures":[{"sig":"MEQCIBeiwhuFxp0S2YvWKq1yIWv94MrE4n4gwW54p41wC1bNAiAtGpZCPWKQW6GHIFL7/1i4yLgbBn7puBDEqDqcffXGfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59076296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgEnipCRA9TVsSAnZWagAAMYAP/3zOhUwTO2RlVBgNB8yr\nkwo+Ptmy+aX0t+mNe1U77c0RICnmqPrr6Xbkh4b98hEUS4V//4TS9SBA+Gn+\nSpUzZkKz+DMWiO4uxXSG4hHbQOWNAJ4Ivgv4weohPQcxV8oV58RRBw16lwPa\nP3WkN3ywLfcgqmRTtNHXyoGz9VYW/ptJku4/w3uFKftit2AeECapGOOwnYgK\nX6UitdEHaOiJEaY3FK50wrsxmHCNQgGcCEF1RmCHyELM/w8Zf8JCiO91Arvh\nGtoha4oavrNa4lFNuUmHjVFfRznhKD8KLYhGUbtDK1hYI5cnKmE9/aWEslU8\nkSVM6+4VDBdubiIW0+KKeb5hrP77jiwhmsqQAVrpZ/2fsJrN3FK/E+QUrEYW\nvvLvxyGXlkEoPI+AYH1sn4e7cx0/AxAGcIqE34h3a12Igng2A23b1S0YDChH\nMtPSKvWVMhPnuRBLGyjnFdH03YzWQ3mDGMg6rkgqiJdo0Y3ng+/ymuyRpBgQ\nK+KXj99J7UZz/Ja5LZfN64x/l6KHX7Yv1TbxYJzn3lQNqs+kS6H1IC8tkFBL\nLFjDMOVzsYLgoCBfCybDyNv3askkPUuzf1P64b442/gLRAaQ8z4Aqns8OrZh\n3Gcw22/EiaBufdcvYBpvrHJdgrJFRklr8WCUR6CfJeB2yP4gRpohf2Eqj3ZR\ntT9F\r\n=Z7BE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"517f32940ad44933f8bb3b5d07e8c830cbfc40ea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.8","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210128_1611823273083_0.025646565571903146","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210129":{"name":"typescript","version":"4.2.0-dev.20210129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210129","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8752c10e0d84800b95bb08799a6175075dbfd9ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210129.tgz","fileCount":170,"integrity":"sha512-0mXdINVuP5O8a+l4M+ZaAcCYw9uOy/TfcCVvOC2QcGf3iKE0YAzwhR7XYAYGLk4uUIbMRvoJOo1OqMcz5jlULw==","signatures":[{"sig":"MEYCIQCTimaGX1J69qM+uAnN09QT0S0HHhbaq5UzFKclp282SQIhAIv6N4a4jYQh6Wz40QXUdK4jwFlgr4egwSw8U7G/eX+U","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59087658,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgE7fkCRA9TVsSAnZWagAAtU4P/3/fBdCuJg5ytCBwxMZv\nxYjqE1dSkPJRl6aU7hMqU83jSGHkdanUKiBTqmCZLr4Hjo2jxOfAF+yLOd9Z\ntQBtIeObN92o3YIBvDqkuz8+wV32FW2ZPCUEwWFq6L2b4NCT1Dfcj8wEiCPn\nUzlsPjJfs0814z7vXJI0chWS2ToSH0MccJmUPvzXDcm04xCYayAwZLYfuSd4\nqkqzZ3Cf59zfcdILC/6+13aD2y4o+NAZ6HNensZlSxl49AMR8t6fOxTikoYO\nnwiVn3NYjQpFV2xuHEB7RORMpiHds7US70t1ZEgEExHK/sL13NBd7s9Wl8UM\nF3YEFQ+peVZtTY44dghjdiysMWV05hpE7r3hUnfSXTMexjUZL6PGIEZUqs+f\nwM0NOWEpUhsr52gGCXa4gqsj/EK2VZ8hk8x+wnz5rTKNVQRO2mdP7E8pwBud\nO1Lxz09ccAHdtWIprvgr8LCpEbKCSVwtZbNoBIfRwO26BKizGp9/VZJVrL0s\ncEdyoxJ1BaGxkLJA5IlzEm6j1zwIR8c+fzaraDplrU6SK37WPRkp7Q4TgI4K\n29D39+TbVOtLWtRZ7zIzqi7AskTzgwUpOB4dpulf8+EhUd7wYv/NMUqPnPLm\nZMXEinwlg8D+wUczE4n8Lzu/XF0C/TDamNn8K5lIePJe1eJb8DhoKYXEot0P\ntunx\r\n=B4Ar\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9dbfaeef2d83463c1051561f21b3cd8033b9f481","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210129_1611904995660_0.6847217481760877","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210130":{"name":"typescript","version":"4.2.0-dev.20210130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"df2577ba9bfda4862795c5237264ea6a4a13a4a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210130.tgz","fileCount":170,"integrity":"sha512-+k9w4rShBsIHZMb+RMfGKXEghXQXy2blyKV0g9j61sDaPPcUL5F5zDF+iy8lq6djryYo37sSl94+ayb5R2XPVg==","signatures":[{"sig":"MEUCIDYzFO3LXgYo8oVJ51PLSGgvT39MvDGgEQldbqRszpTdAiEAszLvVM+DlQYLtx41+7adaBgDlCkmoRZ8MSPebjMqN9o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59111644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgFQjGCRA9TVsSAnZWagAAxFEQAI51tv/R5Tz0ZgI+GdFa\nm8U8c0h+362zM8TCZZxykNAl12FEtfvW8ndosru5ZUsd0/LxuMPEfLgfpQDZ\n8991q5tRcutCezTh2RSUENWx21kvq9IkrbD3IY7+y5aBZt0RxDNUfnOMvnf/\n+mfIgeQ+A8Ykx8j4b9FnWVpvHI2PLIIUWCleSHpnNNwNx2LBPUMe3inAp9Q1\n5YRe4n024nCQdmpQWzVmWs9aH3cWn9P+YkZLzqHc0e4G/5HlElnHQWV+SUqW\na/yjGJpl8sib/VUXAlCgvALIHYhYPFJE+PRkfM0fqrqYlJ1SsjPX3esVztbf\npzp38avOx7u/vd3pv5GM2eUEHfJ9D09yTYjmkd73CKHfjxMjInNuEzGBFnSz\n7kkyT7QapzeZoTMPCrmfSSEAY/vMChXBYTq5neF6O2Xw5b6Lb58jKbzsvG2u\nv1Gj+jrPCNSHgThvuoxWAIugcf6HcU4vF/40mxOv2VsqQPjydJBxn87yqyoH\n4r62ieScGj71qmvUAT5XrYdJma1B8rOKBz5nuZhcZiizwPwpQHgNRsWn452E\nyA5CT2mn0cEyoNVeK+bxrhWDMzGgRc0PtgPccb8uYKXnuNg9dFW+nPh20/iO\nM0ZjeA8YGyqcvHHUQL8nTIe3JWEcfJzksqISM9R1TnZs5mim7Wo4wOH8MhvG\nRz9w\r\n=IFlR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8523ca4fa392b5b3d7ff28058503a12ef8569c7f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210130_1611991237676_0.04181386009071031","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210131":{"name":"typescript","version":"4.2.0-dev.20210131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210131","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d055d2d969191d25bf7df82b067b6faef86ee4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210131.tgz","fileCount":170,"integrity":"sha512-+T/ezKwIRHwlNLLL1hI9Q+eDzauAQLf0V8ATyC/beRRyA6GRG+Fj0AC3ClSexAnU7/DAd+kdcUnNtXxBpoqAlQ==","signatures":[{"sig":"MEUCIBZcfSa1jfYcrvUfcXxE3hsO/ojX/iyfi0Ll75HRetEiAiEAxzN9Ch3PR/p8RFtWNfR3XjJAPd/hK6MsO9jIeHLxM0w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59111644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgFloPCRA9TVsSAnZWagAAlXAP/jvh6f9kr5r/WcylzW0J\n9NejdvqdArjWsSiYG5G+EjfOFm8Z35FENLJwfmKcMm2EXviYRZk9g11mPSDG\nKCiTD8Mc7XKrQl9wanuJ5E/opDpePMaOg77OGLvannsEXVE0kF0M5eds/ufw\n+/Wa08a58Eyr1Us2unfeqzbPqnyUSysPhX1wD2IucvfyEIF2aeJjSQC9yBXB\nxDZX+zVh1cXmh6OwJdcgooUwsjUIzOb3M3XhMaO1wsI1NfgvRRpGrSqoy8zl\nKrHds0s7ssDDRp8/DJXCpmlLmtlRSTntu1yJ7dI7vATN1C+kGZcVpMrFvo/6\nP5Re944SdtOd8T/TBwWmUiOaMslGpTv8liBV7sf1oa0qaJnP8vmOwwPdCx5o\niV4O/pbYmH+RuCYGEdVRWmr6kdy1ByNEOKZGuQM3ZNkCj6Ky7sxhuxfpo8YU\niiAanB/0jX7At3MKT1rSANQ9akfLigHNX1dCiYBsRT/U9Xbcg2GXKBx0uKmk\nrRR2mP+WhubIqFeLtPdPrVyMLQXMI4G5nRclqe/cBNVYbFg4wJiYZ6Z1KuOZ\nGVihfHifZiUE2dRQ4Jfq+Gjxx6or8hRLqtoCy7IZ0492FC3CUWDiCPgJR7Lz\nZOIB+K36XimFA+XIOdGVhlcS0fNYIYEBm+XxR+4shJt48PiaKp48KNgGqqBH\nteLf\r\n=DUNB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8523ca4fa392b5b3d7ff28058503a12ef8569c7f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210131_1612077582969_0.04263516417141022","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210201":{"name":"typescript","version":"4.2.0-dev.20210201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3d8ae7214cd4b23d3ae400f84d1afe5679f3e2f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210201.tgz","fileCount":170,"integrity":"sha512-By8G30ZYs+b/8084cSnjP7ILd8ExUBC4Qi9FY2iRlBApHu/A08ExLlCRnYkHN1PgxcNs4rTaozJsgXHJ6cg92g==","signatures":[{"sig":"MEUCIQDWN7RJqtET1eiw5fGMpTgWzU5y9KpSatd5KBE2OqS5hAIgLdtCa+q2F3DoRs9FDMBeh1XZ/4HlfHGFgngKHzT7vIw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59111644,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgF6yFCRA9TVsSAnZWagAAegYQAJ+DwgVao8891lYpLI2M\n8p3vSK01eKbtjPH5pC/xjpvoXlzEV3JqZ5F9qp5jK2/pubRsYJE1o263SsKg\npGOxBF9/eqwiXv49nKVO76clLRT2wcCSHgSbckeG2qZr+e7dJgg6kdWJJ2fp\nCm7xFBJpvij24xbGRMFm1tZmc9y01j27EtFAD/ZZcQlcAWN+iVRw+2ijukh4\n3Cw9OM4PaDhWB2DxKCIN/ht6ImCZp/sB24bFjgzk+uZySde2vd+wn3PGzhbt\nXfaMOJ168OA09OGhM/+JgHkwObplcbKqIzI13xaK+oLnP8v5u3x/hfpSCdSW\ncSPSJRhvrlx7XCA6IM5I5YN6nyqlZ2jTQGlK8e1C8dt6OVSojWtC2wJulXk3\nM2j/LxTs4ddjx3RPAzX4CWOaAOjTsePyE1yVQcZfGFZu4HGORTPtsjYWB9YL\n3TZIxQ0QF5EF/eWR4+rBjzfVcMcm2MYKh7upQNElo7Ehrvyyy3CTdmYJcAri\nQKP5rp3rwbvdSfACdtbQi70t4Y24mmU5gkPUWgBWQ7kK0+KezL5TsZetlBzt\no/3PRoNQ8pwZwV5jxFmeO3r5M5Wp/Gjbvi+vrSknFOOM2+s5p3HxxEb9hLdy\nHpAL7qA3a0HuSfo4Hk7NdCZYOybnkpKjp2c3M26YBQjWgLKCZCNc1p8qMIFs\n2U+c\r\n=TCY9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"66ecfcbd04b8234855a673adb85e5cff3f8458d4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210201_1612164228637_0.0979480289033614","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210202":{"name":"typescript","version":"4.2.0-dev.20210202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f47bf5625ad7886f44b782504802a304e0cb1904","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210202.tgz","fileCount":170,"integrity":"sha512-bwuUQgRcukcfRWAoVK/a4ypk2XGFvzCMdXErUL73UPDUgVnCUmikuFU0YgrI1jSMRK/GRiLr7D9LCgyKA6SthA==","signatures":[{"sig":"MEUCIQD3WSk+gitcKTmwjZNZMV7zGy2ugrJIAPJiZ2ZxRen6BQIgOgf7h3YkEIG4NRMtFL8+vaxBljk/xhekyazOC7WPyT0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59123577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGP4bCRA9TVsSAnZWagAATMUQAIt5DmsS0Cnw6kGc5iyZ\nx51a3ZSCDxeGI/nNID2tv2UJyKEi+YNAYsOEwOyyRuCwoi8io0xf48ZiXMeJ\na5yExImMn7EhCXB7SS9ii9zg8oeMrcQVnJQrq0iVZmVtDz4VepXUHeMwCtbs\nnAnBOC+SiKWRKcimB/Mol6r2/bpkpHUJHfuhosVJi64sxDinwSYOvkPrL6Wc\nRY2y8CXHFZeTDosQ2F7h9hqvGxbNld8GR90zxv/Lu7DRybjOZ+NlXLMiP/Na\nSQTzfB2VgLPdAOkcLg8E7MV0pdL8WvQQBAVBC5KFCTUHfZg/1ffDoX2IOOox\noiD56Mw8LoaDwUBa4SyqnrjKL449LcqYhGpqJHh3q51wkhVzfRm7NLucJtXC\n44JwEEnhHCuKT79rVC2zCDCck46ymK451PuLpmow5DeXWTIlZNaF+2jEXItM\nQDi1+oxccnzRuuAjBsEgCmlCzwlDN05PXXos0orQCSXXYf1wgZNzGD6tjs/S\nYTe6OB5odorcRMYYQesmYzKwOVHAjR5eNdghDmbBRG8tSw+3lHvgObP6gXNh\ngs5Hz15ocVdnkkIBdElKorRbWuTWCP/rJZk8cMdbTH1ByGeJOnbkL6/q5Klm\n2s4FeMWu2vODiXdm556FD6LAIcBXRL8HbSxXuC1ODgftl+M7zW9jZdFtamHG\ng5Ff\r\n=kWSF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"60bde2dbefdacc127df4a66a44445f2f6572558a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210202_1612250650061_0.20880667671740327","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210203":{"name":"typescript","version":"4.2.0-dev.20210203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ce0302fe86a31240796431a77d00cf28377bf5c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210203.tgz","fileCount":170,"integrity":"sha512-3uBqMNiNj7Kkv8tm6XxUrKEDlQephvBKjnQ/r6PbZyDtdAgMu/bJLS+EfVBotzxHAYuhr1d4z+4OzQn5dqDYNg==","signatures":[{"sig":"MEYCIQCSO3MqAEqiwTaB8UL6jt2FMnh2LLFERfR9U79BzNN0ggIhAL87hXxHW7v5I5LKEA1wg8zwxo7xyDKn9+sUS+zTLPww","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59131017,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGk4xCRA9TVsSAnZWagAAGTMP/0351WiiNTh/Z/lQNrJF\nncTOy80UB+b8S3aLSW1bTjBzHLUyevlq22MQFYbRA1tGZM3txSLAM6FyOc5a\n8qK1v/nRAHGo9Jd+UTXgvigSKgYXHZKEMasgcB/ELZ1t+l4LB83iX/SGJaVA\nfm8FTTYwepaElooBC6jFfVO2IqfPpET3tGelYLejIEVm3A2jtIMWFAXH07NR\n6ysvwDU4ERuznTHlFsk80BdAeqtLeeV/3NBZUmllXTnfsbkyBr6U8fUpIn5I\nXaN+KWShk+45+FFluIWBJmd/yaVuaHYLOYR+Ew+j6ymrDnaROqPUJqEvJwvS\nu3dD68CvDZQ73C5dkVqXegLlnwWtQ6tqf2Xhsui99iMWXoRi8tQXK8qGe0GD\nLZtrLrwtDgHcauuMVXWOsd4OFrmj1ApxCPx9ZHeDFBYbKSJm5qfe+8rtKzPK\nDg1ZxvuYHt21sqAyT8ofv5y5zSG1RFb1TQaj5X+6l5TuQ1i6YUZJkI25U9MI\nF+HNeZRH5eN33TrYW90s9VGOL2QcO36MspZJ2Ogdh00/DXmm8kWLdTy3dfnI\niayspJFkbRuchEYwGJp4BRkZIpFn3tsBmuIpBKeR441Qe90BG3zWH9S96ikq\nEOmfIIE7wyfl0e/BC3NPxST6HPLtdzf1cPlSkxw5qe1QCqZ+fQtgYFrTvtTm\n1jzF\r\n=rOdV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bfc55b5762443c37ecdef08a3b5a4e057b4d1e85","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210203_1612336688367_0.9996211534320043","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210204":{"name":"typescript","version":"4.2.0-dev.20210204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8670f992d916121da3c455833d43a17950d35f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210204.tgz","fileCount":170,"integrity":"sha512-mskEzzg8xT6dqZmmRvV27Ktabr79FxJ/nWhSVW2ERkuZHk//IeBkLdXGCUAbB170uAGMr8Izk4U/Lxl0EvRnaA==","signatures":[{"sig":"MEQCIAN0gqP4JaN+X8I7+Zs765G9dA+t00weJ/Nx0Bu85qvuAiBXWw9oIT3u3+w3bxYevDB7+wHgCC4aQ7Nt92GQArWkMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59126147,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgG56+CRA9TVsSAnZWagAAJvoP/0xH1WzG7v59PhcNWw8P\n4pucLJClQcLA2pYWT5DazJwN9p38FbPPcBTGvv2MyPafXN2n2kJlrNcRRq8B\nLiIcLGU05q88BslWOfcwZ4ITeYvecd7JEcpCp6dXYfNdBzct7lUgI6AkoXVx\nViGorR9ca9F7TxJG7CKLYXSIOg3W3RrUgigbSru0fFY7aM7bsjZwuwhV81Zw\nUqpToS9jTASqJq+EWj5bnsldwtgePap0UWgvCUkepBGy4D3T8etQaaE4cZSu\nvW0z+w5uhHLPZQInjS2y7yLdCbyj+ZPLpNJs/Y69cwAM72uCS2aYB8arvhv1\nKSE5y1S/2aIa0ku5kye0uzPTcbIyMZOcdEPj2XkT3BcJq5ySl3UYXoA3ZV8O\naL+2uBPUQzwuWXo9q4zl6N+q/Y/4gAy6iFjIDJe5T2RpRR+dSF1JHPYybT+X\noD8Qn3QJyzPkHyFlCM2F8XE3m4XQTGBgdGDVpN2CH99XkSPqlMe14Zl61KCv\nCcOX9uHaXr7I6ztPDRD0K4dq/cXfRdOsxGMJN1H0FB9DYut5lw8EtkRZOOxZ\nC0H6l5dFO/CoWT7r2RET3+MbenUx/sNArEjRpZxkBK0Xrr48Y2yFhpEMHMp1\nY8oseWhR4VIvx5rStyweC+TEfZO6/cgBdsc/pLGHHCfaarmr8ocbNLpGL86o\noRw+\r\n=vXNE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"05e2f74fbef4a935f1e7daea9c9eb152e3956085","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210204_1612422845717_0.37148406694037117","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210205":{"name":"typescript","version":"4.2.0-dev.20210205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6031ff109e899bebb07f731f2c8f750027baedea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210205.tgz","fileCount":170,"integrity":"sha512-c3Led42WnM1kgBsAZxlelxre9ApMjC3CLk+QOVyC37JWkg0PgbHrPabM3w/+s38jwPGLKcK9GdNM97j/4YBVMw==","signatures":[{"sig":"MEUCIG6fsp3dlEemwoFNZYUE6TieXAWrxnhiBE3UrYXjdLZTAiEA/yDJfApUAG4KEPEgJHoapT9gpTXYfKMBFkVVxQWU/Pk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59126898,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHPB/CRA9TVsSAnZWagAAUZ8P/2ZHb0YWsAGyI7SdoWA7\ntaICkugO3BDcV/U/fVPDy3NGrwAjGBcTiwtEgxAZK2qY6koQeUpm0JovQWzY\nV4slkGat7iJT5MzliIQp0ixeJymL2NQHpqvFmVZQNXuw1pPMwescN2GvgaE4\nnDxZjb7FHc7aN+sIlGj3dZROvnsBDkM0HVTFWJ/r7e42ubjWCMo0K/gutAxw\nKV8f0bcSaefYM8BX8rheQGd2v0qoAKE2omHykeF/LTVRc1Ef6HL5bfpW9j2w\nnT+XPGN1u10MBgumwfxZKvJEy8J7sxJ7k2QTWU0UU1XF6rvOue5b5IhLfYz5\nqZsIlWH+vFdOvBseUwnxhu/u+3sZnb5IlzUMyvNngkG1L6k9yvAaTDGT7qe1\nzH/7Wc8v9gZz4zYfPDkEvhBpEsnZLHf6fa9//jgApnLNZ4V0xgk4UzwRoCik\njyhMOJq+SV2jgydLaQW5kOqRjWFpquzDu6T6vSflv6RuejlFy0wEVXqZ2m/0\nwNSS69As/Th/KYDd1vGC6HDTApnYXei+fmhx8K49noE2NnY6bxc843UIRb1+\novvFECzWFrR9taAVPucXcSpdM+zz3yIGm3R2Fg/CRFOSqZYWtLRkBcrjJnCm\nJdAb9MNioqqvTF7d6VyYK9Q3L8aphCPfARx5MhxyVZo+gS0R0yCEx6MTmtIE\nPXw+\r\n=Qaes\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"215ee40dc81e893a6ff54901d605ba18f11c1178","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210205_1612509310164_0.46560006985076674","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210206":{"name":"typescript","version":"4.2.0-dev.20210206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f3aa6362c99a05a3f33658ad1373b6b8bbea57d2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210206.tgz","fileCount":170,"integrity":"sha512-zi06lKwWp8e9OKgtSBB0ARC0PWbYWdzuxLlI+bC56f6BRK7GVX+2C/CIi/ynUePL4rZyP+gcDqrUYaYLiLhFbQ==","signatures":[{"sig":"MEUCIQCIZcl2Vw4fnvfMd4lnsVVZ+kDrPyHAyJiEqeJpZ8ZS5AIgCa7szGptEavxeBVJCTcrEQ2upPGyBSKhURDH8rjM4qw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59138845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHkLSCRA9TVsSAnZWagAAa4QQAJZpaxAvlKVTIIBiU6U7\nWO1mymvkWckripSJYgA1jUhx9Q+nf32GNVLJJuVwqtgrUARMPlkUJ0Wz1ONe\n6XgKxrrdnrE3yw+IF3BmktUZBnthXD4td4GZtL30+/I76g9gH5c6ytJrZFS5\nvGDU1Nq2/vE/ukAdYkdlBPyNJ3yj+ZoJpF/Ebfu7DsnHV9RyNPqP9ePbtrNC\nfX6/dGOR9F/6VMHolRfnXsBfDMj0mecKND+HbyXQstRt7QCTyG1mmICH6n2/\n7FaNMATHcmSkDFiCArxh8ZFPpYegaTXIpyzuzhq6Xo6KUX44ZqCOgAXd5RYA\no1VsnshwYafxPLvRsBtbS61h9Smek8ecU/Uc0DamnfG3447b4F8OF68JjJGs\nYBAhSCwAmY4bMl3CN/dgzoFhM4UKz5kqXSkh1tJSUdnGac6h3KmSsjI7Yauy\nAL19XyWqZ9/6DaKAJ0htHSkqdgszBtgvZ+KGQkQ3F5klGXfPX+tR18wMETNS\n0nGzlkpyQFbni32hopbA/SJl4ebltQ6p6BpNMPZYxzc6j4MvwW283gvK+ypQ\nAeX4Yg1tsLRtEDq/lNwJausZC9bLqsQCCUXaohZfE//B5Np3ZXQLMutFWuUz\ntlWcn8oCc+iH3wPNm3gNQtQNYKpndHknyl5WBmBzMuSgXiD9Hwy9qjx0wY40\nFDwo\r\n=4ZC/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"60a62402107f1708c4c66477256090b6731c48d8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210206_1612595922074_0.6947495808818873","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210207":{"name":"typescript","version":"4.2.0-dev.20210207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"440d91b0481d110a9764be07c82e8818ef97e67e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210207.tgz","fileCount":170,"integrity":"sha512-AYjUONY6RLndsxZWGweKmRo50dWVe46IxOoqjeuh38btU+6Jv2PWzKRaMGe8ZF34vzt0K9zZd/zpVoaftaz6CA==","signatures":[{"sig":"MEUCIEYYTE2PWdPeM9NFu78QNTNgl1NenAOCokv6farKKhOxAiEAkekU3J9F/MCtVt1gcW/vN00N5xyAslgF91UFwwBwreg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59138845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgH5QwCRA9TVsSAnZWagAAXVoP/iBr62xHW6lWbUc0Dw21\n+01TzbpRIooMffKNTMep1+OrlZkKhroTYhG/U6DMvZ5V3cqtjxuWZuN3ximt\nCwRoLHAcbR/2iMSP7wevSVUGqo79XT8NbqoOnXqoOMq7wmWiM3RkablKC1La\nbshuCqOJBAoBMV2N721HEmqG7j5x5YG23hXUL+Ccc3G3PutHhgvdHrxz8Bx9\n3zG1NsznMYu+1B1lIin9l4QT8JsngT3KCisCtvotl5Cn538CMxEQOetzPqRG\nvJwYhEdDWyv2efsRhmljpTFsfBaG/muffNOCOR3AlkUjW2uLnRo4tdv/W5ik\n5LKC8QTUgJuMqcXEUSHXSfKSvu1mh0Z2H7/2xmy9yjuF14vWfbE9jiKE7WbA\nTNxf6WJsqU3m3voclPqktmSrrlHMHSoZ2RwSLkcLJj8yIBk+ucvso0nSc+oN\nA5if98GcLV6SSPWl3vTk5MgoVAVyPx1qhCh692kTa7hMgmN00uxc48wInG81\nqhaeYjZggBlTu4qvim5u9jsEqVPkSV9WlwUVZ+R9dr5Z0zfvKNxC8gLisCxi\n6RBBdyrgE2+tmRZpARaQjbhIccrAMAWpikTs8nVEubZa9VIb4lyMyweMGdWu\nYg+f/DwXj4fFEg9UXFeJE2b4oHklptQzxEvVwmOizvfZpyzbXoQgt9dl0yyM\nUguT\r\n=DjvG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7de5d0b83a2100e3729470b76846a4bb36e1b30e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210207_1612682287506_0.6151754564688958","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210208":{"name":"typescript","version":"4.2.0-dev.20210208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"81d44a872c48b2a25c774ceab60faef82ba90a47","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210208.tgz","fileCount":170,"integrity":"sha512-zZD4z9MS8iy9dPxwBeEcQDemi13rfdAk7oCyAaiMQXsw1rcdmdsNGjpaQ8OZiY3I5Y/vaoDCu7yBB1ZaNSemLA==","signatures":[{"sig":"MEUCIEhOYtjb22g27meWYD6J8I3aDJCpRhxrCMKO9JmlNqo2AiEA0X8yyMXc360mQU+fqkrhxfKeuoeLdUFfqpdojrK8ISE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59138845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIOW2CRA9TVsSAnZWagAAIk8P/iHkmZKhZOQAcwnJ/zM3\nc3wESpg3gxBHhaTgAY5vJObO8MvcMNPdl8zc+Pztza6tIBHOwsR3K4wWYcNX\noO1tUknAu+h+RDkV0i46K3sHlrEmC56lHG6ibFLnvWNiS2xBsV+IcydkqjmH\nLxxidfH6lTcQO43TvnZJZhlveE8IhKz7HBHMjWo0WWly/tZ4ajcG8+H4zlpz\nPR+XXfkiaa98Ga1MlXPjmvGACkLkX0DHw3+uUQ9gBCMmBJ6iC1v8E/3SSKPN\ngU6Vy4Rax8VNFlwGEJFO3x/WaASVMXyNtz+llwSy+6RookvZscZkP1o3T3C6\nTpI9NGPkeMLdZHr0n0j88WiK2AIqTJU6Gm1WxRwnGz3yUisTAxVU7P6aMfsh\nR9A2xX5Zut/Y5FfLxQq4qvk4DNu5JreH23ZcCYNTv/KT1qCMGDMPgJTYDlMf\nyi9taOOXG8+i1RHKlEmmXZbmnPuRq5wpzweJ5hThdA0OyL4tYjUeER02xHU7\n3/B2LFo8gLQoDSHMqE++FmOVsM+2gWpSyQ8bvkHg4BxiUfPsmHp3fNn9Om/v\n5twy802Jhgp6GvUQ/3VUiFzWd2Evy29y6g0iB9rcjNxHMXDIsQ25kVGv/0tk\nAJNSUt5jTO6CXgYD5QORRCFxa4SG7Zac+7tZXlB2x3ZPPw3OKcqcgPCMl2Z5\n/Fbh\r\n=dxJQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7de5d0b83a2100e3729470b76846a4bb36e1b30e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210208_1612768693246_0.16248434542295564","host":"s3://npm-registry-packages"}},"4.2.0-dev.20210209":{"name":"typescript","version":"4.2.0-dev.20210209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-dev.20210209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"251d733f41a3882a1fa08d8e0f2acf7226772377","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-dev.20210209.tgz","fileCount":170,"integrity":"sha512-wnZgde+d2MNeUnbdan2PpQofKYMZdcKVFD769BSMHwtNVJzT/rnHQeoQUpkgj8sumV/NgQx4nwVSWrhqmzqslA==","signatures":[{"sig":"MEYCIQCiWeKQS1vpxjcVgRxUHBvCZFmmx9T5LVSNi7C9EfacAAIhAJ85gpi5j1/OfJAqK+kyRFK+dhh9fCq4GkcMsblg5Bm3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59159058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIjdACRA9TVsSAnZWagAAaXQQAJjHk/C4HGFkh4p+SHRO\nGRcBf8zEYzyfgsVBb8DXpnfUBIBUvQ6Gah5TYMD8EWJXccHdAwcc4th71Gv6\n2UgN5O5flRIsOZXNZulwkIjQJzS0VwERFnefvEjysGWvtL8DsK3kcDQI3fej\nBI4JbhHtwTDuz66+k6jzSy6ndR11rrgaK4UvKNDGz3sGdtiRs/R0wdRNnMEo\nczVjo7U+1YbuVkiBT5lcUKPeT3a2xFJg8vs8og2tCCEwNZ0Z6ZF99FQ701S7\nFjYWomW7g8aw8lJNl8emrEasnNFQ9YdeVXufhtg/h2y21foqftMMAdFZ/lEQ\n9npz/vQTzwMRUt9sbqGKyIboPN+njcytAFSS5n2hRRUnMzVMmBsjeKAQOIhz\nKSsbgtRRWoT33j23M81xH1MvIOlpBBrraU7Psk0DHFJKm4tKoYvCthZ3H/XJ\n1++HnseRSYMebmm9/cAdBaCtWDHiAtvE1QxnVhrpLJpGYBcGNubODs3GNkr7\nJ7chvuq2i5Yhq/TL29Ze1l1i92j0WEKXxd4jGYdHKyh6gA3AtPJHiw1PPp5V\nSLNr0a7LnUFmHmwTvf/dg3bOY6s2nGTmvEaxajcoao+1VZEyO6q1Il3thc83\nYFUqkPV5vVaodN2+W0j9hesEdPwBswuwynQP91N4C84up/vktQ21mw201uFB\n1Owb\r\n=FMqZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fe2899c2acabd2262f8b9c6230e821192ea369e3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-dev.20210209_1612855103809_0.9901581994707733","host":"s3://npm-registry-packages"}},"3.1.7":{"name":"typescript","version":"3.1.7","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.7","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eeaba92172ad30ad2217cb60b3a25bdffbec20a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.7.tgz","fileCount":75,"integrity":"sha512-B3x/rBOIhxnbJ5BZdmdr61wQlqwla0P6Xw3QxDMuWepwrJy7YaDyR4ZJGjbX2Okhm+o8PuhsoiSjppYNWvL69g==","signatures":[{"sig":"MEUCICZD/OFDAH13Q3nNuRJ8BvC2KQxNIyxt65UzZNCjGgm2AiEAzBzSBtbYKLbixWYBG98i8zfXJX/3AJjJ+sw397O42QA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41517006,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgItcnCRA9TVsSAnZWagAABnIP/21R5Lqh7DwBITENDdbK\nBWbYiKA6SN1nqXu+awrwK168b6lxpb5FdZxsmnsqe663XYoTiODGLN9L0esU\nTSn2mrOQTlRHdx+KmzL9gO/RrgdAmzZq9sZOpzSXZskuK/a2bPEu46L83KKe\nT3A6c4rg1cxaJn31haMo0CPsjlnYW1QXK6sr8vFMSLohFqmZ4+EmYqqv2Lup\nBX4Fu0fN4JX9xvkDDhOS4cj81KC/NArr++SgYCmO6UniwAENmQeqEhpYKDuL\n+lIDVebRU+9sufFEMCguRi40ApneSrxbTjAp5sImvdhdE7yj732aFoPpRnxW\nKWSo9FUhK/2FFf5TXeo559Q5KiLfB4eiMpwHnD2qVu/ODmSRw+DlCp57Yqf2\nQ+D9Wv1bp/XGOTYtirrYXov/e10O+uNKQy+aGJBl5DpvAaE68GOtlk3c7ECm\nRkoigirkyZBboqEtoM2wx1u0E/P38BpsyGC3NxDl0jri4mknCUx69YAQwnuo\nB2IjUcsfDrlQTXF1lpJ0T9OuBxLi1mcFL4Ui7/2X9+Gy5ITlN8sozJA6P9M8\nUUAP9mbDRk4y5LuVlbSLRWJxg4sJ4MG+qHBeDkAmd1r5fP2Ygod9xC6mo8Ot\n70KnQBNftH7h6EpjFcVxoHBNLvXaAXyUAOt2hloY+aaH93uS1hkA1AsXaxxr\ndkQ/\r\n=hINy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.7_1612896038503_0.8894288510694339","host":"s3://npm-registry-packages"}},"3.7.6":{"name":"typescript","version":"3.7.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.6","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dc0404270a2819593cb184cd49ff06e7d3854e75","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.6.tgz","fileCount":167,"integrity":"sha512-EN/xStKHt+xi97N9SdoxbWgcTEMbcLNPK2GmTz93IOR067it9BX4bkhRSJdDSc2et05XF72ngCVCOrjaM0J+dA==","signatures":[{"sig":"MEQCICWTwolOj3Xq/rXQuoEJPnVhH9xnDoZGmhSLfdNVnm8QAiBtWkHFTeMgN1xElyiaPfDHkhxt1p8q3ys3deW6UhYmBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50554032,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIthACRA9TVsSAnZWagAAiVUP/2YgDAdn5CH4EaFJ03F2\nz8n3D3COgSLiKQh0OTvhNJzaOeg5VSvrDeh/r4UA7fgWxdRvX3DOu4LZYNGN\nfQnAyRMEolLEsl8sGvcV+r3lnrMiUR08aqH1GOREJXD7Fp5V/zLYLbzV5rr2\nOlamnEkK6MT1OPW+TBQBX6vrpoFMQGlF4Sf0sbNofXvg7gyvkrI1971B/fOU\nP8HBD8KEY0J+Xx3wJuUrTa+H+MqKHSDxyoNmEGAWu8Tb7LL2R/QJsdeqAmD0\niHErQ9HYelsd1KQawEDCfIl7z3o9m6EJdItJWXt+2MsB0lprpL2lBnY0yCUv\nXAVsQcAag3ilzfkgz5EWYUMfQ2qq0WoXQXN4/XI5uUcuDrNscfZUk6g9ammT\nSjCRR612RJAF5NNjTK+I+lZARrKISbqodYpObWRs/wXUBWYGGBub55gkK4U1\noSrXWA0sTNG7AP+YqZKf8DRHB+xGJhHhLsH7TeAvPUDrWepG9cTs1LaPoA/I\ntHG1bMcoRhGRxYvSlkeqX5DOqOr088ZvC9A1DRLhgwh8f1PZTS74DpGRILd2\nimcv98ANBBktgUaW3qm6dXyVPvckr8cimdVlBaQYhjAGQoZObh2j8GKE2i3b\ngphb/+QeGLBRoX+Hd0rkVk30oomdrpeWZhM6xo4QYbd4x8HAMFk5HocoKvzF\n7ytX\r\n=30rW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.6_1612896319642_0.5930707724956552","host":"s3://npm-registry-packages"}},"3.9.8":{"name":"typescript","version":"3.9.8","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.8","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7d937ba4e4044af7fa83d127b982f8f61ca816a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.8.tgz","fileCount":171,"integrity":"sha512-nDbnFkUZZjkQ92qwKX+C+jtk4OGfU8H9toSEs3uAsl8cxLjG2sqQm6leF/pLWvm9FAEJ6KHkYMAbHYaY2ITeVg==","signatures":[{"sig":"MEQCIG85eCvcV0k14CxNQou1ePwCarrtcvwHTlkjrW3EOb6xAiBHVZ81ojBtxW4S7+mjys1aE0j6qGUdZ1G8JfK+C+bAPg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54139272,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIth7CRA9TVsSAnZWagAAynoP/2Qg5TXKHWuml9pCNyDB\nPcBS5MiYhe88E4PvvURDfgTCjI2uzLGQE7cR2DgnyYTQvFAwIkuB5w7qywAF\nkxFSqwiJh9eLBbKBI854MZt4GmoiMBETSHVqYGuBNLDmGkM27zoPJGfdN4nZ\nYOHK1Ip6jOc6YMJMDndI/bSJ660Dm8VPdQfpXx9gu36nD/Plb582qCMst+Fs\nPh5tK/fx8TTuIpitw7FuZyul70a1MhBZZZkTNG1kOkpycKys72IfVsjMzA08\nfKgkqwob0db8ny1iqDcAdWD+J6MUttT2yj0Q4BGulcIXKnlUmrZT+VdhPLB2\nvWSs7y2KzyC47rJ3alBzalSkOveecIbfy5sADlRa8kxDbZaVIDvOg/f9Siq2\na7xkEl1Vw4wRJRhYgzV0+h+quO5UI1/6GrIpF4QJ470g/SDKf4HvogHN9N8l\nncK0IYsjZAtSfaTk3NL+li2z4bKoSfdFZ7liCFSo/mMlai7chJ6508AY5bKx\niUyPWXnZ0cEpIHkvpVm60DW805QiSigmDNM93b650/UN8eCHNFpRW9Vl6Qhj\nFsE3sXGYD1y2HMvJGst37Bq6hiR21QQKrjki0/MWLo47qj8nXhBLChtt87HG\n2/eY67lzrjapObB6On+iDAceFtTm3YZKmU4CpNyXmWk+U6HOuUnoFOwb7pxx\nSsyx\r\n=Fa2c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.8_1612896378135_0.46307365416176416","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"typescript","version":"4.0.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.6","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"314886f72a8e224d48e6ca760a9f314fecf7adcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.6.tgz","fileCount":167,"integrity":"sha512-+eGgIo8Fl3l2B9Red9Q3VIkjMlUmaqELTJlsMqnHRe8V85DxJtr1q6Omjs0xBzXl0foNfCWu0fTf4jZ2LyWKPw==","signatures":[{"sig":"MEUCIDss0/qZSuVcNnEOzQhjpW9KZXHGq4MAVbcd/9tII5bkAiEAw3XYUoR267h7OSI3P88QvWgcakY+nqJyyhmwHCgbdsg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56820232,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgItizCRA9TVsSAnZWagAApMYP/1xRIvJqECjyNejHeyNc\n2+XaDa/NKn4s7tDUBaEl4lUqDwgPfU8apJ182Ll6R31koSCtp4KNlfCH0PfV\n+iJ5zcJFKrafn9V8825PHBqeefrfW+cfJ23DyBfhJLUCbD7leONp9f455xCr\nleRw4L0iere7FVyHuSddWCiVBkQUUTwBrEyWUeTG8ZECy1jDBkpqLHapfRQv\nVoX+SDe/8huomOIUUZ3NY3AQ+Oc+yFtRUO2b5rpdz21H+4A2A7TUPdTe7lIA\nlSlBf05+TNivDg2z7D7AUfD2mkEcYpwSk1AP1uxej6ia0dufRdb3vbMu8ZNf\n16kIlfHvjetJ2uHW9MAwQPk/ylvwcgdzEkRkezVeueJWa3uN1KwfjIQvr6t/\nj1eyjMdzFAAS29X9lqDIQmfwydwUB6xiaYTNWdIVbHdyKbZj5cr1GYVIhHJC\nsJoMU20i1g9jtyTDHpYN3pFY1yphJm0jZqjgDtv0avn05a8I0hT3QyUTvpK+\n0hFenHM2aMZR4ckmFKcWeEywTzqIrPwobB8ozlJAV7xjH18O75Oq/KAhN+Dn\nUAyKOiUCduQ1IeE6fORCbo3m3h0//4YVOITh2i/YzomZIjBwOfHZtPhOpXhU\nXU/0DqK90+UmRn5ze7vbKdUXoy6aAEJQzweHA9I9zlR7X+y0cVajxbWK1rcg\n+wyx\r\n=mcTn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.6_1612896434693_0.6603670357900209","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"typescript","version":"4.1.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f058636e2f4f83f94ddaae07b20fd5e14598432f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.4.tgz","fileCount":170,"integrity":"sha512-+Uru0t8qIRgjuCpiSPpfGuhHecMllk5Zsazj5LZvVsEStEjmIRRBZe+jHjGQvsgS7M1wONy2PQXd67EMyV6acg==","signatures":[{"sig":"MEUCIQDoiPvxptux8HN6M6Ntg6NKFDTdjjGdidAYBnYKNLvRDwIgCAFErErYjvEFI5n9NuRKAj60gg3ACFU0SQD50i4CIHU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58101076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgItjtCRA9TVsSAnZWagAAXEoQAInafYOGebCyF1ObU815\nEe5aACLC2Re9C95gsE0KzWmryQpoPoF809Qn1VQVXMf+QiPE7Efe+mIsTgxX\nlUXC7F1O/fufhlA61VjlnzphVb0nhtnoEosxlFAeZDwqGBub5keitKEMgiYP\n9j8/6KoK0ulbTlQWoynmz6LCHma6FB+00lbF0mDU86apdVAeUIlOq/YrKAo8\nrPNoF0XFkB9qkqjFykKh/t0DUzblilOh7VnwZBErSXfsmjtmw8d5EFjZTYXn\nuxVPtEgDXl33+RNBI97hnxSYJBoVb8tmtdtKQf3SflXMoa4Yebx33O6SXVFp\n1nv2vCQpP4mldrg12QroTKzTUilJfqVzIF5Mjr3CxvKBthp+EtMymekU6AOx\nf1ahQPLT3b2wQIhDZBRBfaC5Qq0HRR2uN1g7VJaGPUauTMfSNz4BrGnLx0gj\nN6kKF50FidI3qIXueK6rvmobznSRfO/pBsvNbSLT7xolhFy+Oq+whOyRjwgx\nRmFV3MvEeZurS1ISd0gjfUs8KT7u6DDmxu3F8Lj39tz20DJEYzBdy06Dyyj7\nWttookteWFTiYq6dwMJOuufCytRGY8dAiXDok/v/N4lcIMOyPjej2pddR4p1\nKWjQZubhy4xhKLl2B7bheWyF1XyPmsBTkZyQ7RirGdJVFQC2q+2abQFkxPaI\njMYl\r\n=EQrf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.4_1612896492765_0.5822085607499548","host":"s3://npm-registry-packages"}},"4.2.0-insiders.20210210":{"name":"typescript","version":"4.2.0-insiders.20210210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.0-insiders.20210210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f109217dec41af7ef0fece60a91e5c3cce572d25","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.0-insiders.20210210.tgz","fileCount":170,"integrity":"sha512-PBBQ/WNJ/HG+cH2nu+sPFbUPqv8FMraVihOfwlBzoa+0iGHa1I8gueJTUyBIOPU24tClLwKoU8dfscpn0rnuWw==","signatures":[{"sig":"MEUCIE7/WuculZV5hxjUvDt4F1lNhPtdVCuiIYdJnitkXoJ3AiEAufjWR7piyjmPgxtdxjC1/tmEgJkZA/NW15noMWvURaM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59176542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIzK1CRA9TVsSAnZWagAAwI4P/0M3FvQfXT4ZsrUORr0w\n4BG8bIgCljMTlPv9ECzYGIygXyroMdzge4NfepM+tJ6NPUCyviJY1MFZQag6\ndzepAFk/Up7l1Dd6nrnIhjsUTixmz/qVlylchn/QgvQacHyvIIzO2RyShn3w\nOuffRXQ/m/Gmt9pdHhXff1PFEEdMFCJ5CFrGOq8IwYya2ELAIih7pjth4ZLa\nOPa9D2USsAcq8nZH6CTm+tl68Auzn/+QPQDAiwVyDTRPb2yK5QLA+qxJANW3\nT7VvayozVX9qJl9nLDy8TPGL0HOrGokZ8cKEPJ72rrvYDTP57Yt1CD9WkJ5T\nsKDGBX8zcIw4+4MjG0r7xYzO8Pdx7zMoem1TVtV+9hqUCWIPspro4rkRUMeK\n8W6OS11XQ/ZF8I/ck2XrX3YqhsGc5bHuZ7STqSbSJ6KvWvorWT5jM+OTHk0j\nvAiRglMdZ/sAwjw10ceiBjyrw7aMEI++cfCwknjh0C16FYBIXRjMcCokkjYj\n6l6Mxmq4bjKjZ/mHM1daIW+26ZyoQewvAiYCMX2ge7LqAafC5HSVxMeJsMZe\nwXYSsWVON1/o5hdS6VDh16vYmLt+sNWR4iPojQ/1ZjiR7WgtDbMsvdyB1zw5\n46r0C0nMg0WqdiqppSBqJYMHbNr4It/I4A5Yh/7kmnPGvtJ60VXmMAVbZkoE\nE2Xu\r\n=8YIT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5280ba400c071c87e6ba25c7d8d1ac9c304fe2d4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.0-insiders.20210210_1612919476725_0.18711771079926498","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210210":{"name":"typescript","version":"4.3.0-dev.20210210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b4c6527e176e8fd7fcab132c5279b0f537b35673","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210210.tgz","fileCount":170,"integrity":"sha512-k9Tt69UNV1JJaKKHzlCsb2upivvzvvbD+JWmGq9ExWqqcL0iNVB7DgKGQXnF0JmJR+zPcUZk6B84E4E+wc4WOw==","signatures":[{"sig":"MEUCID9oTSLfcGCT3Hm9jTSqIHKbAega43MUBwsWGKFw0On+AiEAzIUznc58zoN2v9CQ9CIsmgXgoHI+d72m43yWJzrXF80=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59176507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgI4hWCRA9TVsSAnZWagAAKSAQAKC9l0dJFncit68v6pF+\niht/JUGSVhtBcpdGGZ1LqX1J31SvIJyuk9TakY1Yzg4Cf6we1rXHbCQy72JI\n3AGJK9BhbGp1vQfvU36/9mXm9fcHTZZ/WCm/khYxeOWp5PXL1dVNCTZfU2Fi\nwEejuH9ha9DIkMu4+Z8jLKQi0hWvK64Go0I1Dbhalc5MtIBZgJTLzuOUYuqt\nOQMYvk5eZOwHy96L3cc8NGrFPc2J2GlWeoeW28cZgyxIDyvF9p25UclbvIfr\ntg5HvX3nUllTs+4gVf1sMOq0Ja0fASPxErkE1gEzmNWugT9EKTI0RKJTxE0m\nWzmfq/XPnjq/7JvMYYjFCsxb8K4KZ5CgbJDCWefZGIs9KYS4GRIhfknItDX9\nPYKSe1i/7ufKl4wmFTXUM7V2h/Sp/1K8zMe4HYdbcAjHTpPrxh0FYL2XDoRk\nzXAr2NPHyzu0HbX6YVXt3O7pQIiuu/VwZncWGxU4FQtcGd6beokGPcry7VCW\nZ7mvzw/c29R5tb0zO2QPmjAIJi3Uxzr+6pHik7KvdzTd/OVJz7rb3NOD+khh\nK8ucV7jczOsSLgHvPk/os857AldFOr5ow1PZOS//tSADatZSLsNstME5nXR/\nEkyYm5gbTlq+/YpGl04Y1BVycZ0RbIQncF/+M6ou3Ih3uJIjsSYMoTjEb1kp\nSnbj\r\n=48YF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"55cd98eaa39737d5a971e8d400134ab566637b29","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210210_1612941397553_0.8983719458433641","host":"s3://npm-registry-packages"}},"3.1.8":{"name":"typescript","version":"3.1.8","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.1.8","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"http://typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20703f388d9fccc562ca4a049d8a7567c8e95ebd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.1.8.tgz","fileCount":75,"integrity":"sha512-R97qglMfoKjfKD0N24o7W6bS+SwjN/eaQNIaxR8S5HdLRnt7rCk6LCmE3tve1KN8gXKgbJU51aZHRRMAQcIbMA==","signatures":[{"sig":"MEUCIFeo9ep8m0kgznnaF2XgJS1S0/Ve+gTkbCTusKwprXg6AiEA9E61mCcivR9Etj1DwVU75PMVDe17mREBveFm0/UWRIo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41517189,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJERmCRA9TVsSAnZWagAAWwIP/11KfzPk/5HZdST6Pc2v\n+jnpwIH/KTYLuVUgtMOf0u6h0Yb5UJAV+wY/M1Cy3t6vqp0RYWRaJlk42N2e\nLdJw4RypZL4is4swaPK+KQOyBHOo3ZMaDGbKAFt70NSHwRYDTmC/FIKx6yp8\nfu8aSRghKNmGGk8/U/xHGWnbiGRnQYqvIY7gb088bxsjTULyLPrtZZtXVTYU\nTQHvfeFmUA41tpOamm6K1B9ZR1c8C9afjcjW6a+ee2mGra4MNudPUv+tFdWO\neDIExXJ0mVospiGtDIEK+c/vaIUPKkk8JMsF0SrTTFZFaljvXaQyYYJRUJgv\nKm96BInx4nB3zcJ8fBZOBxLtQH+uVOfrStG1wT7WyEolIzL54me6Amd/AcP7\nCngbm/yybrr6r+RCe59c3YH6Kv5AEtguouCbiybpgsYS9CZuUGyp5KDOsHV2\n9o15mYO7aiZkOWEy9Z3FY3cAAEKCFXIBZbmrwj4rHbilNA1crwnhjQyn4VKQ\nMBUE1D0RsrKJ4bTyW4T8y5yNaft0eOfVU20Isve1kBKG/WD3MY4ntx16BLtv\nk3CZWdqsVlQ3mijbLajKJAUjPDR9DmDpQqV0lHX2D5RgYuhzRmrSKRGJEDdL\nAmuo+vZbw93fVRtBRcGJS2uQbDfNJiI3giurleKblpQwY7PFZTb0MJ7qwltW\nMrnQ\r\n=LMM9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"10.23.3"},"browser":{"fs":false,"os":false,"path":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"jake","lint":"jake lint","test":"jake runtests-parallel light=false","build":"npm run build:compiler && npm run build:tests","clean":"jake clean","start":"node lib/tsc","pretest":"jake tests","build:tests":"jake tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"jake local"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","del":"latest","chai":"latest","gulp":"3.X","jake":"latest","prex":"^0.4.3","chalk":"latest","mocha":"latest","vinyl":"latest","lodash":"4.17.10","merge2":"latest","mkdirp":"latest","tslint":"latest","xml2js":"^0.4.19","gulp-if":"latest","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","fancy-log":"latest","gulp-help":"latest","@types/del":"latest","browserify":"latest","gulp-clone":"latest","gulp-newer":"latest","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"3.X","@types/jake":"latest","@types/node":"8.5.5","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","run-sequence":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/gulp-if":"0.0.33","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","gulp-typescript":"latest","remove-internal":"^2.9.2","@types/gulp-help":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","@types/run-sequence":"latest","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","mocha-fivemat-progress-reporter":"latest"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.1.8_1612989542069_0.663379331923271","host":"s3://npm-registry-packages"}},"3.7.7":{"name":"typescript","version":"3.7.7","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.7.7","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c931733e2ec10dda56b855b379cc488a72a81199","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.7.7.tgz","fileCount":167,"integrity":"sha512-MmQdgo/XenfZPvVLtKZOq9jQQvzaUAUpcKW8Z43x9B2fOm4S5g//tPtMweZUIP+SoBqrVPEIm+dJeQ9dfO0QdA==","signatures":[{"sig":"MEYCIQDPlTb5V+lHiP2EZkDbrfW06ao//ua3Cgn4geUJXziQvQIhAKNL8Au6QZRJHR6l5GlkQ156LZmQaBRzadLs582+ImLm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50554214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJESdCRA9TVsSAnZWagAAznsP/Rl5M0zC9+ww2UZrwBU2\njqSumBl3flxF3gLwvWeu0C2/1le3+2A/oaQYlxDKqO+E/pxSMjqol1uE5TiW\nZYqNvRbKamYykGroyxHDh0832cPSzOryzECJqNE5bT9RmNcfnZLhN6m77Vjh\nUw0PwaB3/2Jm4H5PrgaI40c+Ib69PrN/0MwDqzI7FQB+IfxKBBoo+abkrMlc\nvO3ZRP9bGk4R789eaWcpA4Z5PvaAPVpZFsP8i1mpt4Y6U+mTSQbuX76yPPlp\nohohaIlxXtT4npcVIcow4Kmptdl2zemV0fH09KHNZ+VgD70XdizC5PP2wU4h\nTWdJrHtNnaGS62mON9YxsXbagTDLQy0fOHLCAosmypY3GgYg4wv6UMG8c/0M\ntAsBhz9OE5oAWT7ZHJU3SfaFQgXaroY6zZp5zNXGceh7kTt2cI6TZqUGr1wI\nPXSVetWnWychSjtPBz7tBbQDDA37gOGl6wloXC2jEehiTODlLouRz8lWgTmh\niAVqgnhXOLPpUU4+GEAFfWRMX6WvzJK2NKTCy0vCVmGGIwA+4XXL9jDEis97\nun8nMJVLptHzhwZjrGclXBtFeH/ISbSKvNqu1yRUWQpFj8aK3k1c68Ju4zzw\nogJ3R4NPgPrInl7b4dNVlN14M2yA7wZsNlrcuRI+QXAVqfC/tzBhIrMsXzIy\nathu\r\n=LK+U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests","update-costly-tests":"node scripts/costly-tests.js"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.5.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","simple-git":"^1.113.0","typescript":"next","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"15.9.9","eslint-plugin-import":"2.18.2","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.3.2","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.3.2","@typescript-eslint/experimental-utils":"2.3.2","eslint-formatter-autolinkable-stylish":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.7.7_1612989597015_0.9485735435084621","host":"s3://npm-registry-packages"}},"3.9.9":{"name":"typescript","version":"3.9.9","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.9","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e69905c54bc0681d0518bd4d587cc6f2d0b1a674","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.9.tgz","fileCount":171,"integrity":"sha512-kdMjTiekY+z/ubJCATUPlRDl39vXYiMV9iyeMuEuXZh2we6zz80uovNN2WlAxmmdE/Z/YQe+EbOEXB5RHEED3w==","signatures":[{"sig":"MEUCIQCJo5pPuGHaGJS+HoD8gqklsir9Uq9dNtF6Gr6Upv4C+wIgarbuFT/SSJ/rbA4aPd2U89X0yDv0a9OlJMw0p+pyuGk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54139406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJETPCRA9TVsSAnZWagAACREP/3WEEhfX+RAFMA7uIk4o\nSsM6WETuzzfAUBd0lL6wZb3IY6F0/x4zd9J/vsE+jR5+vXH8Y+SQtf/zF3YC\nj1UwHpU0qCtIvnE98rFeEk7+Ur7TL8d1H9pJFVFKlULwLwEu7TogYDG4y0Ov\n9wxBzP0xENMG35l7fyUmJkDTptO30Nsj6UnYrckL7A1P8+l/gpBqldRFzN4y\nOkEhxJL8vV4Pe5hrDqu7jz96u7Kl+MYZK2E/VJO1Y6008YfVa5/hALemLI6R\n0EhwpmKUZU8zgnRiGzMgzvFLszEe7bfHS+dcZWITs9lw3E5d8krAcBAWGkqs\nJGIHWDdUc2N9rY95njRR83XQFSkHcXgH5v62hG+AindPPwSJhAAMP/AJYDak\nvP1ePNliv0bkeAcWpJgDUCc23mkrgwo628M7+VynCxfWrY3FhC6FhLzhItDc\njoaSXk32+FV7SoQYIbBl0lElX/YSJPKyi5HMJxZqtEtWbQhIjuQ29AhghJba\nf7fpkZTjG9N5C7IbrJ+Kw3XoIWHANtrxQlrMPCXs6Cqvi+xGrvp1FLte2u2j\nqvoTG0A45913jtH84mZiaF3I6tT6ujJuIJKZbMSJch3L26USfUlvOwHWE4fz\nAIyYx062mcllBufoDaXz6PAgMLHkzSP5dHIYbaVSKipy7lB5vGdATciu63bi\nQdf8\r\n=CBC9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.9_1612989646404_0.29449562183402667","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"typescript","version":"4.0.7","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.7","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7168032c43d2a2671c95c07812f69523c79590af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.7.tgz","fileCount":167,"integrity":"sha512-yi7M4y74SWvYbnazbn8/bmJmX4Zlej39ZOqwG/8dut/MYoSQ119GY9ZFbbGsD4PFZYWxqik/XsP3vk3+W5H3og==","signatures":[{"sig":"MEUCIQDAw+3YdcpTf2RXzT+wI/Umkn/F8ONMe+mcvvSnlvYyOQIgKy/kfN1DsSwY+/pWXeAGoyFIpbdLOODct8mpoy4ZK4k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56820366,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJET8CRA9TVsSAnZWagAA0BgP/1O+74o7isq+Dsdgweg7\nEAuy38A03Dkj4Dmvyii5LNSSYvQU9t7xd+bUcl9je54uH+thOJZsXcENt+xJ\nkggIRTAeSBzLLdjG2BsIHFP4/BQ8Xo4KeQlONRcWsdNCHm+z/6ORULtIzSBB\nSGOUGvSeW03lHYi9TjQfolEDfk9iNwakq9ozGGHWbiCTswTwEsRp5fKRLBlh\nUp1SEDSSN/XSDcMpZaolrnjqoLXr5lHLcwkTAoDYlhj0sJ0ArX/QxEXXaG+y\nCmIskH4usn7nXtiQ27vhYrFTAhnelPQGvjxKf75HK6jN8y+BgcO69laYmBrn\ngLUUz1bLLmUzsGiVMZn4usQDGCozmWajnDdAABBPoN5MO+ej7wnZNyQxPLx8\nUiYBgUnzpC56/t5HJ/+Oj3vXRJshzl04/x+mlztuXJLZF154m7NWRJI9cUob\nHiuD6y3lMmsBuJ1VuDsYSLaHsaaXvc8Ke13m1qbV/GzWjsedjWmGN2Ibjg4M\nqBFILuTvG9q+pnFtRbsml1trImJLWE9H80zL6X6ogpGMn0cyXBq0ONu4M2+p\n9WwkjojwXBM5i5Sk6SbY4Dauk4fBjjm4FwKOpVsz9DB/8VmYf2La+xRxjdJB\nSGUp0j7l9Q36bYHZxEg2Jdk1dUks53mN3bz1o3jX5WeNmfHkARkb8fHKbyTk\n6cBG\r\n=HZPE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.7_1612989691957_0.9577145040804604","host":"s3://npm-registry-packages"}},"4.1.5":{"name":"typescript","version":"4.1.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.5","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"123a3b214aaff3be32926f0d8f1f6e704eb89a72","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.5.tgz","fileCount":170,"integrity":"sha512-6OSu9PTIzmn9TCDiovULTnET6BgXtDYL4Gg4szY+cGsc3JP1dQL8qvE8kShTRx1NIw4Q9IBHlwODjkjWEtMUyA==","signatures":[{"sig":"MEYCIQC5Gq28iT5kT2ufA8+rA850AwiGm68W/I1zzuyVAjTnSAIhAIHRqPrNWPOJGvTK3PS8URGtC6i5JpQcpLZVbdQpeYAH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58101210,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJEUwCRA9TVsSAnZWagAAIusP/1oixCaVzT/WpbyEmftp\n+bUHSRnHvzO1VsX4VCpsK4JgUObxE/TXuBNBFzufhFyGcO7ic++stL8wwggF\n8Iczn6fRqB/57fkFADfO7BaSep2cvTSqEodhVfz2ObkqLsPJLy/7Z9WTipdx\nN/uUGgnCG/eIdSIkZz9afLWnHdAjraBr20cdeQEVORtsyVbYHPfhsUu21H+o\n9Oua4+DxCdckcmxrV8q7LEiUBk+7MFaCAGry9H7JqwtTvTrr92vlF9RlKzw6\njyUx3a9T+dIBoAzLgBnJPMsdQFEGLxMSsEgSYmn7abJ5J9dfGVdKRISijBOH\nZLWF6AVJG39gYv/2H1NIcSLxIB/NVj7FJYmU2yeEReKTGVWlgikqnnR2s/rF\nAqYCQ8zGxUjA4j2+kcHEiAFu2djuv2Y8SpZI5nbxAWGFDyrko265z9P2w9H1\n9srGcrSLakbER3E93CxJShmRRG+IA5rEzjS2Yia+X/ICZ88xlAixkcp7bp5v\nDoSNHAtT2kdlI8GfGzqd9CIoTtZaSM9xnf+ON/FpVjaZMod1PKHuOLLriFxp\ninei5tjdDTk+oepvf43fv1g4NZw51J7Wk/RzsJiPhZFHIFbH0so0PucUr2XA\nc6JkfEgcH3YT2vJhdZcxbZpumkadcfjbAcVZcrvboYwxvrvcSjZfYyX1e3sJ\n5489\r\n=ksVk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.5_1612989743611_0.6064048133075639","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210211":{"name":"typescript","version":"4.3.0-dev.20210211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4ad889da82e02dc74df155d9f31c28a3f7154403","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210211.tgz","fileCount":170,"integrity":"sha512-Xy5pmfBIAYjHItLhqGASnEy3TVzUQNr82QDFspuSnU05Dpei2oZz7mw9FSyNWN0zddZ2twctKKQpYpv2nuRfZA==","signatures":[{"sig":"MEUCIQCQn/56/YYOJLWFsO9BR/vJ2G4WYvwU20gXbhHL9h63+AIgKQzGiw+l+K30W753QXD9udcM1wXzw+p3ZZWztUGK33Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59176555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJNooCRA9TVsSAnZWagAARRkP/irQQT2REEHhiOtu1bF0\nxch6vhu/pO04ogQy0aflzKvPU5gooE/M3FpLu1b0DrSJh7PZMK5TVywBoQs1\n2+BzkrWEQCL1pqlRNojYikQQ1RoLYNR9GKb3KhRzPDJWXH5FL1p9bOp0dxLI\nePguhoghstuqZgFWiFA2vwZvAh38WHLnveXW2zdVE40eHxDbvF4Vt/aY6ME5\n/zqJYf8/keSrY05Wz5WaWNTQGh9tOAB6oqGkuVhQ2X2ImErhybXWJ6UkiAzZ\ndUellc4Yk9bsXURJ76IAeXZfFPh6MpTNbUzKoSUo+H9M8I/qSnE2Rv+Dpx+J\nUWZoBIn6XoJjln72GOtzbhtAQSbaSfQ6s75Xz7QQKA9kXcppWXVxpShI6M5H\nZ5QigcDVTNGlUzfcbFksGP7adHe+blMzO5pABK6S8rfxNPkVfKCtnDNAQ3KI\nYmWMm4QaNR/9ZRYiZQDhPhAI2oW3FdoPd+Wk9nhDkQocPKlTspgh7IRIFc+C\n9V/3b5T807kcepUdtsst69EW116e59BbBymkeAUdbG2rLBcuvpN/NQyyzZ/P\nttto6DqVlcdSQbYwIfYZ2pyb8nExQxxSoEQo1p0GK10nVaumyahYuhdAO5XJ\ntgpK6beUHbtPo2oxcQUeaS3cUuwYeKPDWw6eYY/TR+/54fo/1yvAyd0mid1F\n9/er\r\n=opkQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d18b728e0b5491662d3513dd346d039a746212f2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210211_1613027879599_0.006394246674610082","host":"s3://npm-registry-packages"}},"4.2.1-rc":{"name":"typescript","version":"4.2.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"57adcda3eda7a63226c7472e9f42b9aee1de2fcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.1-rc.tgz","fileCount":170,"integrity":"sha512-R2lWNtsP12ZLGMPl5r96nieXhMmWhfEMtmvUMKjix0smn1TD4wgHvKf3t4zz2spJnT8pktUptPQniKnTL1ZPJA==","signatures":[{"sig":"MEUCIGCugm9D5RkowQLWoY813SyWxynAxvQcbVgDRckCd7AcAiEApTeDDzVUU1XZv1M8fGzMuZ/f72CXwPABk7V2N4TjI5s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59176444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJbjHCRA9TVsSAnZWagAAvGUP/3Mv/lWfzLKnoLu/LSHJ\nn/D97gUGa2eJQEMubB2pxxawvZb5vQsGvFMA9Kh3hSGu/gNobhpkNLQZFvun\nd3f10w9Wiqy6ISa+CjyAjLGq+g5rIDdkjf+jpqEl2803c2w2iLtsi59d4wmi\n9MmUbysBeSmSXJwDraI8oVWLb4r9HOG/cLSMB/qn3iDvFrkNcHWMi/BWTcWV\nn2tOP7IWc5+LXTwMLcfc+owLOCG0ilkGBdvNhcfkynx2OYRBh1rUPzlyEIrN\n4XeZEb3g0+f7HIsmvNNZ7vurqTMVOEv8iQHfIJMEad+RzI5x/ZeDPYe7+FgJ\nhmpgZ6lGg8ZvszhoSL1UMkEblsIMfpT7M1N2rxCMWZabpunROWa3IUG3aCfh\nwfeF78F+42E05I9JT6nYIAViSR+Xzf09EVO99OIuQZkYiGgZG7iuHHWAaU/R\nvxfWZZSJkIAyeE025P4epayzKSrdFWKs8OYFb5mIwkqlOuX4lAq+P49XbwgE\n0cbpMLk0N1tRws1b01awDTZdy1hR8ZD82U9340ovbhh7nZ6H14fcFraNdt5P\nI080i5P3cYYiM45AAzx3QqhSOa1+35xkdSlOWSfeY1DClsilsuhIXI2pLGr1\nxPrMMfTM7ImWxagmec3w1QZeLac8o4t874Uf6odAvwL8eNzJ/acms6MBPAt3\n3K+S\r\n=ia2y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.4","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.1-rc_1613084870270_0.14090981782580458","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210212":{"name":"typescript","version":"4.3.0-dev.20210212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210212","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f41a2dfd71478ed95e4aa3a53d1b164cddd3c09d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210212.tgz","fileCount":170,"integrity":"sha512-iKm36HUBMbiu+GrctMg0VE5znvcrDRVbkOGguczzTEsvII5ukTDsUPje/FSl7s+ZbJ7BMOf88UyDOao023tKIQ==","signatures":[{"sig":"MEQCIDRM04T7j6M/FcF1RhKDSFuFM8FyLZxyuiFNRvIzO5SyAiA8CdIOIHVHBwUIlbr0lEHdnUZNrgLc+hqhQ+fYpGoUaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59179076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJisrCRA9TVsSAnZWagAAjpUP/RNt6558Ij3TrMf3O4F4\nPR0VGx8M+W/OFTcmlJ+soMFuCuoSw72j0I77qJzn/DCEoje5A0H/GBsy0yu9\nq45jBnt3ibAkV6XN0reUSXOGPiii2n/NBRXGcRQQETB+iYV3u2M/sYC1c2yN\nPm58QZB4LUbrX2GI+yyPWKzCtsLAr3f0YavNmrTIh5IFA3c1Flud/nhby6v5\nRjIc17eEQm/2sifT3Pvv0424Nq05NdVySU3UoXYoHyr7bVQsOTucrMQb3EW4\n1sOmFodK/qXpDAOo+CZyivsXmLjSh1jupHBvAgGC04z7tsBL5lLGue5Syvbh\nTUGnwPiKBNidLsWDM1bYwlG+aRb+2goh6BBBcMtZ39hGXOSuHolxVMfk3w2B\n2oCML6ac+eOEjDHQQzjGj3mRfkGbOxdZA3LTdEfz16T2JQvdwKA63IYuolXY\noaUAqZZ/0036+RpKlwRHzlaJNnA0VvD6GhIsBCEd8W7LTCHtGxvvSGRWtzvc\n00eLEXqbk/DHT/ZCaK6/v0RLFoKji3vWIifkJH3nFSaCIasr1l5H8y8jh879\nyscZKcGjZCycO4KCXTNRFzG3+sePi+lKFbeXMfK1whaWuKvBXinRRCz122sB\nc8HcFp4D8xya2FZnn0vGGwOa1v29Y37t7RzFPkJlg9Y94tAIiDNrPCu+Srmg\nJnPc\r\n=2U90\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e72c015bca07e7f2dee9e6ea4fe59793400d9fee","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210212_1613114154696_0.8322832337404351","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210213":{"name":"typescript","version":"4.3.0-dev.20210213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210213","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"10a3bdd82bf9cec52e573818c37fe0bebe2dcde7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210213.tgz","fileCount":170,"integrity":"sha512-zJG5QIkviTzzYRmKylVXIG2YTV7P18rKLclZu67WypYhsPtaC3KSDD5mOiXJsurDw5rqTqN/OgjQ37cpc11P3A==","signatures":[{"sig":"MEQCIH1X545ZxNdHaV/jOCygOd+pRdeWywYg1mR1JX3E/nyuAiB4xFMcwAaruRkh1w+VLniMf7avUzFh4DRGZgd+Mshv/g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59183314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgJ31ACRA9TVsSAnZWagAA/gMQAIr8qFNOR0hn36LeUU+7\nPVXnpT7S5C/d5uH5hniKYjYsVJ4uA2KDJaARHK66h0v2QJttM0pwKiv2k83N\neurYMYZr/y8RgN1rlHQJQ4co/pzdqm0mAMebv8OUtDday0AKo2JoIqsB4Hyo\nJi535O1HbE7KA/TGmstw79In0reM67SuXIuPJcCXPqjiJEe+iCxBZ6WNl4iN\npuPH22gNXK5ayK1tR5sXM5gmK6ZRzXDRCc90yWmAO5641rYMzc5yBHJ9Ku/k\nBUcdGq8PxSlD064IQawsyJtUY3xT6qcRINeJKNmHIuCqT+16Vz7UHKT0bClP\nQ5x7HrQhnDiGklButMwzR9tST7PxlHofQSZyIjas/l8YBzQk+LJ3SmDXxgnK\nsstNxlUZ4f5sVgDgmOXt7Cyscq3zQ/PFD8mLT1jAEPtXO8LsGgjRqyPQKKIc\nBXqtcm/vuF4yqF8g9JI7mpJrXIvtUqn7GPwnikHhYS9RIX9ADtI2UvfZ94qk\nop/CvawMKYxH7ZtN8Y8SD6IgGDG1nxS3AhWMSpr8hRbUde5IEvht2YK3Tyf3\ny3JgQzvdUsB1UjDH8JTJFNITTGjTrVxYjy8m4CISOWQ6pDXOGg2oTZhCZhXk\nmN5PfPd3phZWbqh9NQEJs5TnB40CCP72welLThl48baNkBvf2VJFxZ+ooXPG\nzaYo\r\n=Lj2V\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"31f3742fc426484d85989a526efaa04701ae9dd1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210213_1613200703759_0.6389269411618774","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210214":{"name":"typescript","version":"4.3.0-dev.20210214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210214","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"160ab1079fab6b097636708861f4b4256b2ddecd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210214.tgz","fileCount":170,"integrity":"sha512-CRZUGHsQsL3jOiWrUmm62MUjir/dIv1jWT1X2cRNcwrT9iqIBLjEiT0hD0VoxaoqIXzFV/fgwjw4zCjBuw+h4w==","signatures":[{"sig":"MEQCIGdaYdw9gAEb3M/5KPhmncegszCTUSTR5Lox8M4SWDO9AiALMPixV51AcP3z9Ro8PeLxausv0n6JQu6gf4sSLrmy6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59183314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKM6QCRA9TVsSAnZWagAAsOUQAKKRZSKaUJ2NA4rqBipt\niTmw54p2/eKHnBIgAcmy+Bspu2Rw30LKG29M6LxGEB5Tt65W/JceNGoLgrjU\n7EHEtYfbkDOReOSvpx/WmtoMwEEZJifOy911Nc3Sz7UgWQVSdk6j/NWNsEt+\nuY8YrZSewq0HLso+7i7OWlhtIKueZMggkn6+8EwTd3Sa2vf1Ola7lR1GR7XN\nhJgqFRlm0T3ozNP/RZ9yfBZH8Pf2O8y/GfXgX2E13Q+Cw11BHx5Ol6BncVfS\n8vNrK5HUK1js54POiFBGprJJloFdvQHgyjcsiEgc/5+F4MAFX3f6yo4/fbjb\nVB+9hjMfKEoP9YDtFi6b1v0TkezafeBpqOndfDEWG7YK5y7NfkrYWIilS7lC\n637D0ijom1GB3/d7RX7FXqPTgs1FHIbmvOSpOC+e50p76t1LpDpBXSP8gKDU\nxXNU9wiGc62fj+mYKcVoxwOiKqfiKJJMxSvoR59WY+YrQEZMpclZn5SRoUxG\nAB/i8sAUfQ2SdXvECUweJSNz21768U/wIquJibPy57EsGN1lMrzytvizWcP1\nrEcA3YX38B5QscD+iUmgm4JG+EwwxjeoAJB6hPKzddXB8gKU+NHT10HEVLM+\nV9gxivdVQ9+JSFO95JKONqQGHgq3KViY68B7lHEytEqn4/iWoDZkRwNqmnDz\nYiMH\r\n=Ai1f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"19e7a89bbbbc25db1e0bf5d30420b509768bffe3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210214_1613287055658_0.5384341232712766","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210215":{"name":"typescript","version":"4.3.0-dev.20210215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7f4dacfabd7fa0a1cfbb1ddceebe4a801af1d9fd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210215.tgz","fileCount":170,"integrity":"sha512-xQoARBZ17DPxJCjd7Fs1C/IPv0fUvR3Qmuva8bYVfRJAHpwg/y7/484n2FdPYvIv8KV3AxGGQIJXvkHj/DqTsg==","signatures":[{"sig":"MEUCIEFx1dD4zYTthyVuhp631x/vcKkjun5AJjFrYSKHaJWmAiEA6AefbfsgBoHXLjpMSQXYSwtt3hXHJMcWv6YvrWrO4Nw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59183314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgKiCACRA9TVsSAnZWagAAZXUP/iRQS+2ctyqQOnLCLX7B\nz3yWBmx6HaZ+TxIAaS56YUsW+R29Is6JwZ6gQL5ufO8lf3pDBD1DvNMmk/WV\nV/WaggKtdVNnVj3rLumZJpFEVPipZsMODUywAIgF60TGT2pFsRmluY5dS2Es\nKpsliqWqH29bFroGsSIAokzWAIvjoNdnA+BNdO7ygGduLSIy7iVBSBQDmRxh\nBMCx0vE1jNSTGNGsOpL+gWWtL8vf93LVarIXQLAwE59/jy4U/aLfzBYBwMe1\nA2QlV2dTGr2SdlNJLDYX11FQINP1d1ySxfU8QUK9BJLRru+PAgI/ItyL3pwy\n9CwYBK4g4L+aHvalsi/vKQ3/KL6FnFFacBeafV2dR+IFeIel26rdt35BRrz7\nuzEa514OBF5ZtEMRHUhpQvt7L5G6SJIAjqHX4QHBxMH6YScgkzfCvrqdgab7\nD4Zl5VzBcAbj1pB7g7P/p4yEcvmqhXieu1tLkM/JBIo/po4/q0ySaJO64YIF\noxgJy8saQsLDJH9mmi5yM/B5xg/Hr3ggyA7IWafVhC4iyx/cyI0TpvO0bddR\n06fwmUlFLOVvb811zt8n7YjOkHLRNnUwgr6LXvUaWp0kxYZBNFvEmf6abl++\nMVvQu73daT88jsI9aZ6V1PuFNcvs+uEMCICH1Si/jd+REFHiD9/zCXXkU2MH\ngY9+\r\n=sODJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"847992b64b4d79e0370de1c0001ce8c903482b9e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210215_1613373567541_0.1096936120696963","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210216":{"name":"typescript","version":"4.3.0-dev.20210216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"233327e6094008c02265ba140f8d9ece9133421e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210216.tgz","fileCount":170,"integrity":"sha512-pJLcC/kqnE+0rftTRc2/gYBkz9nl+kJfaU8sSOLYnzUvD8p+LOZMzXfaLoKPdGFJ6U9+Ox/sYV9HBTJVEjSTYg==","signatures":[{"sig":"MEUCIQCTg+PT+QQrK3j1rAdyEsrWFNgwbpAUdP3nlDRJq+CwQwIgL0PpOo34SBC9bh1fCWHGHdl0cdVcpDs1CuPo+39H7zg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59183314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgK3GDCRA9TVsSAnZWagAAvMUP/2uKnNR3RYVToYIqR/ov\nfr0B/wm3xi6VSAjCAHvVcoGDuCA6PFWPxQVSDDGJ3PTLaiaUs1BVQ5/fDHCU\ncXgITAfD3X8r1i1zViivPMt8h1jbivge8QeuPVNT2FgYm+n+Ij0+nZ4ktXFP\n2f19qx9cUTWEw70a/H0EH/Ws6Ig/ec7QEQ3dIJXg9R6YCR8vEntXi4J/9hho\n43XU/7pIVsi15io+viHElZYq+nFgqisrrMGBJe52Unp/XKZ46UWBnMShPHbk\nkRYKv2ioY+Q++sCW6XHenmUHE8nKtHqux9BhuvjmLPLNR510LgBqC0eOcxpi\n8SOfA7i4hs5W+OjH8allCG7XzE6XCyXKAuAqx0ihOBv1i1stn2PY3t8GIFX3\n5CqOGkdzpyR44NO6NeE1wKYMtMul6ByLyGLzH8aqeXdhAgIUpd+CfbgQsSCx\n6RubXzFx86JjkJm5jSqYGa5zjFQfLjUxvG6QPH2WI7MpgOmToAAzurz+U6NE\nnMBaGjCkXFMXetparcMJXPm1nfj46bx9hgshh06Bz98GlfeECAbOW4qW0Bd3\nJG/VjpL4m8GftiKikbLBhCPl4xHL57WWnE5T6tZ4BbJqk/39WQzj1h9bZVHa\ni4W1VBvNGpXqGkgpW85NYXTYltmTlp06+4zZbfhjLX2VbW+QPzezIaQwG5iH\nxE19\r\n=q2KM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ba994f1381d6872b7a1177f7cda1dbe07f5132a0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210216_1613459842181_0.5720688297336116","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210217":{"name":"typescript","version":"4.3.0-dev.20210217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210217","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bd2842730b3f9cc59414fc534df8ef59ea38f602","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210217.tgz","fileCount":170,"integrity":"sha512-gjh5m/gbj9hVmoTzb3yePdhCfw96aAXhiV4MqyYMyvlZzaw+IkIOGvQBc8Q9Vu72jdVE3mClIzrIg3o/Xw/vVw==","signatures":[{"sig":"MEQCIQDZL38w4kosQSXIGaF6/kYzB/Jgi5gzXz57IL6yfrJsngIfTOVMVmZZ8rFmxHrmb43r8uU+ZjGmHjX7qpOwcTa4GQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59189614,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLMLtCRA9TVsSAnZWagAA0RUQAJYvRitNvqKgWLhT/0pX\n4Z2z0Tfn4eNVpHfCMh9NtS7Uw4HFj62VJkCrLbkc7oXhZmBXhwfcfb1WyWht\n6EQdQ5uy+7EzQpHdI6C5qQP5YKIBgrxwAUi1LGMQgIvbCxa/AJzka3YEVQsY\nDCgdbYQ5xyo3mSS1pwD0iYr93n88fpQDOxFP7n70BFLisSzh+9w+USSqJUFF\n+s+bmw7n5WqGOFxEzlyoY19TDhsaSEBPrWV3v3PqtWp3K9/xGzGthOxiaYt1\nUJys3ge4b2b8+9TsZ4NcTJbQZzB9eEB6ggK5uT/INSHGZ5xq2R5sxbgA/OKw\nead8PqzzjdMCGuTWyNxETtTFn0YwoUxI3KWHkGkZGA45r0IXpDf/VWzOxNez\nivK6FZMD6ZrU2Eqx8ykGL09GgZv5KLtSxP8+lM+8ldORTGMaJ15D46h2g/BO\nS4VqQ58aA2Rx9PAqJqnicXrmL4jl8OSqcqcf2Oetv0Q86kdUKbLJd6tRkIPl\ns+vJipgPE8CqO1LOY5CMbaP+DATIRf8oPxxyMDEPjdAxENCSyo94rLIHSQLw\n5dYg1+XMcca/K5a9Y2Q4pVX56fsG5hYd6ws264RsvdIvizOGksjpz4UHZ6Y0\nDlrPCEXfa16hcuLrPuDG0C0VpeVGA0sycpxny0RgYLDyRbZch7b0k9qo3BNU\nkFwp\r\n=M3rc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3fe05c8c810cdbfd1b850d334355625c40389adb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210217_1613546220638_0.184435656223485","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210218":{"name":"typescript","version":"4.3.0-dev.20210218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9f66a76ce7cdbb40c101232eca42e4202521400b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210218.tgz","fileCount":170,"integrity":"sha512-NXMUdQO8b/Jk6nG013aLBuS8Cn0wjIL7RmHRAIwvmovAxURTZoTwAKY6oiDunydV5kHEX5MTQm0Qpvl9MsB8VA==","signatures":[{"sig":"MEYCIQCePJdi4eXQSq2Akzq75hvdwZlgTvJXlKVkURojvS2xNwIhAPEEHr7S8h5P4BL7e4ODB0ndmfQkeIwjQPg4b7cwg2ge","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59211651,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLhVVCRA9TVsSAnZWagAAdY4QAIptZhD+w8DtO5j5YwUn\n/IyF5ZRv9Lk5M553wIBbr9YD9V1TKPta9KtC4BS1pBEzPpSjaVEcN6TBHDZ+\nqN+QOi3FPMALsuYckomz53TEqYqlox2aRVjIh+lmYloMza49dv4urIDn/3TA\nCx9xlXP6yffIqcNy2FXCVGPcJqmhA9DnZxPSmBQ9dDYZ2/HyQLyJTdDQo2Aa\nZpB4gw8BUWFkOWQj0WbtkVp9HISutDHidVHD0US47UpWd3Hh8nz4cPhSelZJ\nO3tBMln0LFXun+EAjZFM2ZpFg8uz+TPtcQHESm5+aTqNAnkFeZ3AlplEtk+B\niyWjVZEb1CxGxERI5gaeNrlSjP9n8tTws8oMVDs1uG0dDGRBn2L437+fuYbm\nIBxq9uJ0h8t1LGlALQt8BfqC0XUxpFcT/17/qlP6Gjs3Ss4YrIhGNd3z2YPr\njBZgUDp6BPy/i7d+eVQQ3gCosc0Z+LMdowjaUVNSHqdfXSQXIjcyoyudJ9AB\nApJ7N8BYgDWdMx34/p0k30RxwvHIX/AQE4ih/RmERP6/XuX2Mk1y5ugY+V5A\n9psbsBjuv0LGS2y5I/xl8mKiQfM/yK9URe9OGODMn092yzl0J4vkzFkvyxWb\nvBpQVv4OtfDPQpMY/NvVczSp2FYjv4mF3/+9yvKPPokAONZEt6HIGXIQOVcJ\n736g\r\n=iC0S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"05ee94fba374b82e7249fb5dfe650d2455025e0b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210218_1613632852918_0.6018002286573132","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210219":{"name":"typescript","version":"4.3.0-dev.20210219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a87d1aebbc6ff842852c1615dcc55bc25355b1c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210219.tgz","fileCount":170,"integrity":"sha512-9ttM1StIx+z2L4NnLGaYkOKIJWWFwzL4KuvhQXfulqjl4PnNjAsrl5QKAbI07oEvS2wn4rUdGHYQnCxh3/biWQ==","signatures":[{"sig":"MEQCIGxNuJohcsaBBEzesFQN0DRn8ZNLtzM+6euOkkHLHOCUAiBc3mldxtfmSsxn7x5ez8tTKddurCYb1GmtalX2gS7iHg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59190761,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgL2XjCRA9TVsSAnZWagAAON4P+QCy8pKntYLo/VXrD98n\nKV/3GkES+oefB+shGtps/UREyoMLIaX3wAFND6TxXNFnwyS3AajiO+LtH1Kp\njvhzf3xrkgUeDC4BaQL6W0QgKTyDPXXkLJJueEt6M023YD2EGjjcfdsSO9YC\neFinmZT1XJvHPqaO9FqpfJNioeUL6oBKWA9370kf5YqGZI1ALEywuosuei/8\niNYTaYbgBpbMJb39exFR7ogYsq43INgiqrijS64Z7h+N2hE5ngEoljl3qowi\nlNlchx8SpkWHkJEf/PmiCt8xd/z4EWV+xynFZof588nW8bHCWrpxF2aLkkBT\nBhr5wl+BZw+ky0XTfVhIRfYoVV1hJEKiZcxw6/AiYupbK4KgDewKswR2nAHb\nzf3GA2ZnEnOpNxiGs4auhPlURCJ+ixeoS+4GHtNu2fta8MTq80jGq1LQg+vI\nlQLqRbVZj6soq1SpbWWqzwauE8ErhjSCK+R7mJPm4YofFJvOwYPj9QpBu0cj\niY0jCeP2FO2xztTxTW7qEhBFvVtAUevGPC3g9FIRxkV+e1VatRdN4nF3Cfu+\nOzDU9Odgcrm8qOeNsWDG9H63IY60zIBuWYFtc7augLh5MpK5fVD0p1AoqEqc\ny+wnS9Jdcfjg7on5auKA5xHTN/GK0mGn/1ULACDv7XxioXMcudV7F8Sx6F07\np5IO\r\n=JYFj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"36d021ab9a2e342eb8299f54ad6c14fd0a6127dc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210219_1613719010633_0.7996408945140951","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210220":{"name":"typescript","version":"4.3.0-dev.20210220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"18ba1300cc5d992781a3d1a9b1016d1f480ad707","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210220.tgz","fileCount":170,"integrity":"sha512-Ffv8BO3iOhCJbHMnc+JDbO4LwflNRVW1UJ3XGI/zOlwy7fGPKgCbuvn7cBgtHZCFV6GYzoRJivNjM+oUF6FM4w==","signatures":[{"sig":"MEUCIATe3cZkxqfzYrZ+6W315mzfhk0oaxiWHdhPwaNrkYVyAiEA5FEXUPk4WHK2Mgq5hG9vhs7GjgXfucIbwHHWAR9VFwM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59182213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgMLelCRA9TVsSAnZWagAAv2gP/idZpz9rUSiN+IkEO06v\nK5JdFQoX8xPgtTPAi+aTBtroanmqMqXsn9dXoZEvP6FusBXJsonhMcRD50qT\n7BV9MQt08/i3hxWeOSOVvLrRrjCmVnQ/EmObFxx796F8E+f173syj2CgAJNT\n2Ek+rRSeibBszwgateKeGf/8Gs+U/JDOUsaa5/sNSiWdsXJ5PsU8849Mp2S5\nmF9KMNRx5JaFEgMgqzAZLH2aV6em63xplhODuL3PZv6STSp8Gf9NwC6AlmRs\nbPPqDcsIdApn56WlEPMhS+ai1JZtC4yKzDqSrvKjojrV3GlFnuwGpupy5CtH\nx6mYf8EgQKpi9sV6YMgzDuP0MSH+DuBVoit96eqWXmJtKwejvhIeDSJDC2sY\nmBuDLlRoar8r76ev3BP3H0uiEYIBkGnvWzygPWa4/F6RBnXn0G5oxLxuWNC5\n7In2LcSmZy420hplMzxYe+vbEL6zeQYrhNg3KgcgVgjrNQJekHEskDF9o9q6\ni6ho5+Y3NEEPNRLC9T4uJiLJgyYGL2MYky6aFWbgacZqFOOiZAeFyibntZKq\nYvthn0uIkJdpeT/q9wwJ35gWMvq62mzFxavx60AhffmQRNbKkNNPArP7xZb8\n/pM3cFzj+Nt+Kk9EByXigcDG5Y4yTX5O329ksai0X90OD0TgkMvdbf2V+A6M\nnCz6\r\n=Ospm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c7fa6e015496c3f3f78a2d5406dd9a3fe53bc96e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210220_1613805477066_0.8949438749010927","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210221":{"name":"typescript","version":"4.3.0-dev.20210221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"63a331e9dcd2f4e5ece7c139cb9e81fed447e883","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210221.tgz","fileCount":170,"integrity":"sha512-XmZXakfRX7wuViUlU1k6E21gp+aQ+eIOgahlhXRaakuv4mkK3fEs+hA93/cucOlRwpDU9R/UgN5UuU4CDr9wag==","signatures":[{"sig":"MEUCIQDNFzZrFDnbqrCVoRgNfz6UKxdXc4Dx467cnKh/CgRhiQIgDeQgOwCifpYyuF4fIQeIAzwiOASfhK0Nj6Q9AAdj2MI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59182213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgMgjJCRA9TVsSAnZWagAA+7YP/jieJAOTVTG95clnRqZ2\nnOx2AaVBCsFtUYK2jMxLhRM+ySIkvCFjJ8lOQ6vpi/OBl23xLKDWczeOJqS2\naSvBxSxzguNnhiaJv0DeLi7ZPsO3sGaBmS5KqKXg1oIhtq9Mr5c193DolqBL\nEW1mX+16zHm/N9vE/cqLuS73qEvyxnACbOxo4D8OWUUugUjWXa7A7ZSNzllt\nmOh/0fmFQ643lBbgMDMK/Zm4gcn7JHbF8VGeFShuMiTillTrQNsTlGBayMIK\nmNzHK2k4d5sSErMxK5hjjvMxiek4iK9XlLg++SCBs6eVQ2/7W7b1Qo9gc5Cf\nHd5Xd0mdR/nx/3qNCCl5DTrSWpSelYsnZmDKK3hQlxy5UBVVPaLLlvd5V3D/\nPW32puKJJB/22thdVUKGw2EVmUEtDlIHqDE3NFmNuYJdlq3DsJEAUKn4HCa/\nllI4VBz2E+InJketNpV0MrNCw9ZVk5ggYCYiM1je1cSdjyJBIuwomSiTF/X2\naQwDgGcZ3OBZBJDhQMh3kDSOB1yTm4y291f7B+YKPVhnshWrA0kyXio47LkO\nSFQrfVKfv0idmnKXQ1F4+o06IHyb/0HhUcUHYOKuVNuAzZKvNTuzb3w17gY3\n0pDnXpFHnuw2ZhBi8BI+JBWCJuEMWipjfWE6BM7rTLGmpbIC1OGUuaXQgh0O\n902r\r\n=Vx5g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c7fa6e015496c3f3f78a2d5406dd9a3fe53bc96e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210221_1613891784766_0.3186885368307315","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210222":{"name":"typescript","version":"4.3.0-dev.20210222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"91768f4c7ad6dc097fcd93aaa74282901abcf9e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210222.tgz","fileCount":170,"integrity":"sha512-z1ilq2m+uV9jdn/FRbVq8pdesomoqnd1N19/6ArXMxr8x/aZSoP730nXSXMfyLVCWFyDoNasFSdwg1t+j44Rfg==","signatures":[{"sig":"MEYCIQDytjy8VupPwO4Nx61MYjkWy0cZ7d7aWntG6JfWBw96EwIhAI3cypOERdwzqNdD7cQ+6sGEFxR9Us7nti064ln0tQgV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59182213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgM1pkCRA9TVsSAnZWagAAgHcP/1KZzuonT6KGA55xfV1F\nmt/k34eB+Iv5mLxzCy2DDST2RRTXv5ZvKK0wK/IkVdHPskxlYiyFBB1lTNLp\n3Ty57iJiaecVqZ7FBB8LFUQb1/v1399aQoqgoDITWP1FTWj4gM8nkGvwcFSW\ngZ8xcDNqsk87oZhJ223Mkotc4x2cp72s1H5LxUj7+skFK0IVI8gBwCmS66sg\nGbpFjEdJpzQVYL5L5TlKn3J4n3ZRo7hghmtvNtseIQsSUHnciqbbMphB+q9S\nJUgpsBI0NZfkaemPXFFng1V/djyISX0tHzNspLCgBNJ3nd2ZVnUWP4j+0Nxj\nRagx10YgCuGbRkP2aAIflrKL5sex5ZtycDU2FIwjPunvrDFDnLvNwoMLXiar\nkMFocZGZCeYGj+PS7sEWlkoKMQNVNcpJb+AeLfvhPPxmqiBOBgV7Ux4eQzcz\nEGLBQT6Mpe+fb7zEpZ1dcmZKoqOQz4MUm0awXcxqUiDp08fndzyB3l4n8RBJ\ndi1bowaSHbE2mMbIc6NXzaJen+gxKKa6GN/2hEZtJxBxRpPEY1wC574bDoGY\n0t+gFCQKI931Jb0aYpKnXD5JQ5BHkV5P/JsZwQ9pbjdLXqsZOtSEGfUa8brV\nYcpn1pHc4DJBm9R6wJrr+Jsyc565eLboUJL9aBGFAZEhbhf/KWido9ECgp+r\nNHBp\r\n=ahfb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c7fa6e015496c3f3f78a2d5406dd9a3fe53bc96e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210222_1613978212146_0.5681632044793548","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210223":{"name":"typescript","version":"4.3.0-dev.20210223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f565f74a37f2748bd24100dc21be7fc85922cf95","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210223.tgz","fileCount":170,"integrity":"sha512-LS7q2Y13YUKlrGLtNrdooAKkRaNOrrwQT3OjPLcW3I37Sj6nXT2yGjzepXYaLX9EEMEqpth32tC87JX2l4cRnA==","signatures":[{"sig":"MEUCIGlj94DkLRhDxHUWdcLqF4YgDtRbVnBGpAGdSMf/aqH5AiEAyQfRS14itpYvaObBJMYZqz5Ow1NZrSJAGDJES4a7N80=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59217575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNKtnCRA9TVsSAnZWagAAHmAP/j8hewzhpJcTR5xWctQi\nuKlLc9T7d8Rsu9LU+tl2E5gYbDoISqJx1pFXz9cq0Qv0SlhoH5+OaYA8/uTb\ndQkes4FVDdRJak1XkuCcR7O/B2xJIXsuEBgWoMMjrDMNCDrP0frFxV6t245u\ntGyyeuEL46Lccd+VXvlHgtt+ysyIn4YEYPI2nYr0xSXx425lSLNemJ4iHSiN\nV5JSE6KTY4BwlpKUe9eEyVp6K0g6g60hosyiPWXVoqv4DuhnGIk73CVz7/Lr\nbGOAdOojg8F2iQjnqvYhn5d9NlttPB9ETtak9N+q+XGYtIr6AAk9i6//WFgO\n9/gCBdljywBRjrXJylYl1jimeLZGn6jH5G/qKAn2PwX3kJbFnqufhUsPVP1m\nZSq4aqn/i+llLpSkdRdD6SrBIJtP4Vrb+MQD7Xlz9v/cp8mIUWGHskEX120s\nM2iKHIAr5QwzoIVNC3MAoY15N8aWY+4fzHLlnHUSFGuReg/V9D8maN+mRMcE\nE1PfbeT/x37rqWibyxi/172A25Oq1yNV0jnt0ohJkPbaGXq8B3mLbmBL8yMF\nhS3a8nkJO/PUTAhEuiuNZUZIEySAt/kXVo8hhm4M/VM3hUv7wEOeCdhj2s7o\nsLFZucGb/EMqEdWes7F9/1s0YfBonDn5O+rihdWLGCwFK9Vdg7tWRt8xTSe9\nN3Ta\r\n=Me6U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b0474dd482ebc0acd61fd16b58eb412491a6a4ef","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210223_1614064487029_0.9308638927646133","host":"s3://npm-registry-packages"}},"4.2.2":{"name":"typescript","version":"4.2.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1450f020618f872db0ea17317d16d8da8ddb8c4c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.2.tgz","fileCount":170,"integrity":"sha512-tbb+NVrLfnsJy3M59lsDgrzWIflR4d4TIUjz+heUnHZwdF7YsrMTKoRERiIvI2lvBG95dfpLxB21WZhys1bgaQ==","signatures":[{"sig":"MEQCIDZcSQ3MlIWtwACADSpCRKA4Q1uDGxNzna2Ju0+Kh7/8AiA28GkcC4O0t7B7ycuy4RMjQQsv3hBYRlx68Gqktf8iGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59173331,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNXbtCRA9TVsSAnZWagAAFvQQAJ624BVd42yL84cJRbHd\nTAiRk+5VBdlymhMWpA9sMuchSKjIQwxNbl0EWre4Lsl1Y013Wp11rgouqqKc\nkp7KAvrnBDoPgC9z9yJ4bZmMTl7UTwJ85nmoPqRs0gBcS2Wimu8ytnVqzTBi\nA32gyEhCVY3qD/X9JyQ/UY5DVIOHNREQrYtV5mp97AayH7Mpb5+zpsbEPFPL\n6nCGvEFzWLNNgbemMnk9fjtoySH/X8kZZD9YTF14o+9Y1QwpnnSI6Eim2c6J\n09napT9X6hAnVRtwJi6pcoIBXxmfoMAn0ktv1Y31N8sal6bxh2qs7V0TU0qg\nPh/dBa6hACE8GkcviNZo5d8wIfTgbumLGbBKGD4Ld3dyKqzvD+2B5BrURq2i\nzkpQHM9mesgXOFK96YnJK8BsCCOwTz7J51sCoUetn8PYSjxcFTup5EVy1QI9\nWjcvk+nfwXiKwhp+b6mx8zRaannhyCda4vXZYJeJcAOSr3LZLdq1YxfajMRk\nw17EG4OQp94tIYi0FoOSAc6Lus6RCrlFMJa2sJZxyQzvXtj9Lwqw9z8vPYiI\nwTBzbAr6+7Aaz2fw2kbdMUB0WO8uJj1iuvBxb6hz65AFg7ROxfKFQxk3wdhM\nvaPZKhdigGZsXPbuJEs7LmavI1Si+AnZWbpP8uelADQSoM/ujFw9pbTlNcuf\ngfdy\r\n=wbwF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.15.5","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.2_1614116588735_0.7123296462883377","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210224":{"name":"typescript","version":"4.3.0-dev.20210224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0706ca4f7dba592079d78a6c1464a41e8e7e2f2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210224.tgz","fileCount":170,"integrity":"sha512-A6+di4zjFtFspmmuxnXjkYYeaXFr7Bf4t8MsTciBvBJ1OoxeHtJJEAnJjhcIl/qiZlC2Yv5TXGAI56GFwBnmqw==","signatures":[{"sig":"MEUCIQDgs9PRU9g9pX89q2lX7qv3ZzNXk6a2aPrQjIog+Oa12QIgbex77zypurIhNsC46NN7vGzWvAJUUI61liTp7TPyBD4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59247445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNf2BCRA9TVsSAnZWagAAHZwP/imMrePDj8KPyPZ+hvAc\nPai6fZy0q1TP0zVzpORKKOEMfV8SIcKYKHcpx/uSVnOapn0BzdYotBR/2Zop\nHPfe8zhhgvqwYMzVora/gqCfmQJPoTUS0jPSfFauPsaSVuPZ8JEVpNsJORuc\nCtKZw/hkkBuX90NYiUIqYCMpbYE7bVemEc5uEfEh7RoTViP9SzspmAarbDGD\nJlQ70GQ7wrJUJxCXWl9CTLIc3wAYHgBzQ4SodE6vegSdWI0TH5AlNeEJ5Lgp\nJeuW0LWHxFLNaY38IZXzO3Z+x41Au70fKCnIyBF77joIpGmhNaUQ/nQa54nG\nqX6pESKvGi5INfbORXu1HWE9G0zW4wMz3uDd349lnmhHivMnVZ8np4eeiwS3\nBRooNhIgXAzHdGvkmJh41+7KXXFcgNTMPMeBcFTJxoTnd6vavI8sDtqhgABK\ncOnmpSSNQVRYb3dQsdOLZ14vPm4GxA8z24FHIBJhfx/ZB7Je0vnrvvsse4uc\nE8jlPABwV7S2CpFfka3BBSxC0Kp9CRgONGG6Rwnl4fOSyGEZnyEhwkQftU43\n+cgICGPZUPP9AjEVcl1XGy+ijfLH3n+ahyzHk2f7Ib/ZYHE+QQPAN4sR3asg\nHFe4Y+aq8Ikc148pBVVIKW+vgkX8THX/AuSghW+tdxVQq3aPbjIN/9oG/T67\nNXjX\r\n=u5Gn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"26bbdf11738b9939f74fb9f790682b16b92dbebe","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.10","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.1","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210224_1614151040199_0.9904413365896569","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210225":{"name":"typescript","version":"4.3.0-dev.20210225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0159ee7b2cc17332ebb5828e4781c71beb1dcccb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210225.tgz","fileCount":170,"integrity":"sha512-EdKY+0vy3jYPqWZDj6x3VTC30e3Rq+flaFpCLH9r2bwX0+VTOqZuM3qOQpWoq4L1c4p/ye2xJd3Y79iweqzlCw==","signatures":[{"sig":"MEUCIQCfhxYr8aUlwvwfBlFD9JfdHCfhoOcFWBU+UsW6q/bWTQIgM5n7JxNxtCD9VJWPlByRZH/JBKvOy3kayIJ5+6KSdjw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59259403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgN098CRA9TVsSAnZWagAAKbUP/0EzixgDLqeXSagGFmEZ\noXfSd2vGjNupf3ScJsWKykYQQKcwLMFP7QmG9cNhW2/ZEIBcW7HR6NiO2JaC\nAqRLqH23HTZ8gM1BlxkwO5YghrwE6NY/ScK+D6lCspDIVNEIqm1J6ASwZ4+Z\n4uzXADgnklJh0iUxzmCtkrZ6D2DZKvJXGBYcEmf9yrGvbcdHQk4YWBvFQKM3\nJ7N29jQxI67yWe0elwOsbLrMhUIzWVaOgTiTFYjyaTAAm5wHezFrif9bJN53\nQwv3XttIh8F3enpdECSqYvBCbtmGBgxnvR7ioVKswc/e5dIEGLnPhRSa61A9\nYuC3XidZMA6BR6viY70Z6uNtVdPMhnNHsGZidQbtVospGfxTX52JHCN++yPn\nNPQ32WDSBrBGgT9+vKkyS20vn/6h6KMZmU+DW/fkq7009Ty1t705cylfemb5\nDLwBbHIUaOY81/UWkltDQa6By+YssWn5NWuYOokZsxc+K7Ni5R1QJsmN/ld9\nH1xbA+TK10Qwj2X7yjrUw7n7N3mzpRw53LeKLSoEawSc523P8olNOxfIxRIh\n10o5Y+vSt40vpv/yHiwKmaMqe5zHPRuWpEHcIR5pCXX3puzNBLuxhme52LRx\n+l6wfZyG9CSVTjUtW/knWcKKzFLpjVQ8gO25/W0r4lpLMeKSySYe43CPKxYZ\nm0Vq\r\n=ZQV3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b35522fd09944c77e457180fa5ba392cd1e5151","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210225_1614237563316_0.6295716887587537","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210226":{"name":"typescript","version":"4.3.0-dev.20210226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e754283dfaa01d79cea9df6d0f8a18114ace41ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210226.tgz","fileCount":170,"integrity":"sha512-jxqKjVQsHkEMbyacr5CFpWnU3pv7H9QBljjORr3ct7qq+Q7ynHHmmFd5zQjU8HgHZYOMapIBhLsZSeqUeduQGQ==","signatures":[{"sig":"MEYCIQCswPhhmDVImTO71uJaPIkvWnwjllHuDv1jskgXhz95PgIhAKUgqzqRZ8NEYEFuafQwEAmp8tCedU2aiwSQw5G2X0XM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59671603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgOKBdCRA9TVsSAnZWagAAIH4P/i6Io0OPP6kfsZfLn/sJ\nBqKFSYJcDqPEDy85Js9DiGpU0aAym/JIPt1yy8xsCRK0a2TWi3/vgQg5YBEp\nsRyl4zR2AaGTdRSrcRaOmSkzzg3bkps1kNsQTAHlPqmpklLz8HHbSqfLOK+v\nhOXkyRAdgo9MZVWCLOW9q1/truHGlaipStfz3lx9c5v4DLR0QslQxf7+c5pq\nl7jziavwXvZzotvhoE+6Y7U606N5eA0BAG1wBtaVhZBp5HzGsZq9PSC98Sa6\nsza+Hy9skRkBUuC8uLHPXrbTuoWD/wcPEF9rChcO0W4N57aj2mJeG2YLKHDE\ngkDMedcQhu96cMuuoN8KXS1CRam7nUm06cxTu6nW5IFdeoS26ai7S5SBe/L+\nUmq8HzF2m9NN4Ynxcl/794ijnHlePX5pzH8yNeHApb8nkgfg9i9cAomHvJcF\nC+D3yzv88f3fpfHlRUeV11FF3FtRnO/1Ynpmw8UROFFk0/55D9RTMZZ6DgtZ\nuTQfvFWb1SxmDbu63xYkZp5wB8o7ONRULh8G2rWpr4J3Ebz6c1CIKV7K65TQ\nJfXr8GaoIyv8Bb5R2SayS0+VNybe0slnCQcWHOcbsXgTw/cUKFbphspodt+V\n451Et5ZXrI2dqfZl46GHEynrV+WwZzcgYV+lkvbk/1CgdTAzyP4D+vyBKI08\nK9wq\r\n=n10o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"68b0323b72bf51236d8cd181ed94ba9a63f933fd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210226_1614323804270_0.5532202029302085","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210227":{"name":"typescript","version":"4.3.0-dev.20210227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4bdedd4f10cd4bb10d1a1969b144f020c1d79914","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210227.tgz","fileCount":170,"integrity":"sha512-b/MDOrhIvJ9l5KSuYLpn9xjgvy8+4RvqCSfgxYCVE1krtPUU9mUwGhyKy3tAc25ipySrIw7Bfq0mJ9OEetPTRQ==","signatures":[{"sig":"MEQCIBvOkdLPNVwGNRNoGed/LeFArZy6AirN1Mk4re1ZJbMQAiAohuyEAaWwAhaLTiEsSG5gpm/y3gqMZ1lKlh/dsUBOoQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59693853,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgOfKtCRA9TVsSAnZWagAAn7oP/jSnpNQm8xUfnBXiO/8h\nMeAjzOBocRyjvdf1lfq6cxPQ4jASzxYWhlk4RgCtmr5A8KwF0/Vnx5jSkuxk\nxNtP0HeU1hCRIEAg/UioyoRP20GEVyr46V3YmccS0fAiIhziUzWxq0S39syK\nM4nJ1pdQ9KyxcX2CesCvqE+hpeISqKOX1u1wG+hOlQZuXWbIH2V+hxsnfhU4\nbQz7kQooNMHeHZaLh90hwlTh5Thfr8hIvLlmWGdkF+lVFQusiG6kC4afPLW9\n1phAAXdrHHbQtwv7+iD2z8LrptcN8b1IFY0wxD6GZwedQmm3PQsc1BRch+gm\nLOurcbO6yV84GwKN7BZMBfeQ7dbdaEtOzK5xSRbzk5mwIOHs5JmpVJdKNT2S\nzNqI67Z47C9n9HBQN9fDgwKu0f+4Bltyf8K+vquLyjF51jaiJnqRiH1q9mBQ\nCsOQOchpOrDaK5utpWtRcLYWJCI+hSqMLCmLoAhAEaINIqe410Npqx6DKloc\nNkp0CUElvh06/063PwvXLi2nY822ql85jyszIBm4Wki8PCDe5cJ5XBE6WATf\nJ8bYZ3a7xP+r1kV59D14nUJqfNNseuVvWXrYw7vngD9Q5T1y5L5NReyKRG2g\nE7pkMOBRqm1r6TJuCXmZq0VgVDFGJpdRSPurM3dHBUsoMeEQnw/c6WRq57SL\nXNsd\r\n=Gnbl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3821ef011ada48c14e07e3124c6502a44a3e3856","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210227_1614410412739_0.7787989797509443","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210228":{"name":"typescript","version":"4.3.0-dev.20210228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5b387a9158de69af35dd523314ec5d36ff6494ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210228.tgz","fileCount":170,"integrity":"sha512-Iadgi+PbwFmz3rogXB3Ju6afQIE96MonoXhxrGigy1c98/2h6/zFNmn1QoCcheAOTH593IXVJxGU8ctvNMjRuQ==","signatures":[{"sig":"MEUCIAJFw/n4sdDS6Z12SKDFmBKisqiGCEPinITILyJH25WRAiEA3/az15Boojg+KLWp1egIHUCtC0ZwEbWkIvVhpObZhEs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59693853,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgO0PCCRA9TVsSAnZWagAApQ0QAJFZE7RIHRO3pNXp9UAt\nD26WFd+Ee6fdtWq5wamE/BXyavtavDasR10Hsedo9C66/sJWSVVIyw8E0XhM\nQCtVD2TyfnqNQGeuUh5mO+dvek6M8KFWsSTZqqmkylZtSlvLonFVKDXw7/l5\nj3b+WKYPBIVDnKmBDDwsJ6TB9T4cvMCacWPFBCKLnWegu75JbX0gEe84un7G\nW5NY3PW5XBjOrcKk8R0YZQ0h2SgSdBT0FmNqNDtFZGnkgP71hdhpUZh3hpJC\nnCK2GoqGf2N6NPOZvR77uKS8+/gbD7R8cTTqfsRnZVW0BLIIKZ5QPK26c10D\nso9kt1/jt6K+N/tK+sJalozw8q9Wic7Aowo4xuYHPE/F9Yh3FxrjGr85ngkA\nrhVxEHJtntwDoroXipFTKD8fXRNpIp6s1ei8EhJp9ToxOqaltdaiUwQAx6gL\njwPrZaMFiy2SZdeDN95a4vRRSrprBcwFiBlcXn97VdE34TIfH24rM9fPyqwW\nPGyAig3AwJF5KjGTWwBk6QtnqL+pfSaHFqjPi9GZ0IXLkCe3HI+bFTBaBUui\nHiTJy7BPfAw3WJXhEWI9EAhuuxvrT9Hj0Dwc5qgA/Hi/JFlx7oXWMIhaJRDs\nibnljGgyFWnBtAdxyadHVEuXBBMnHzwl5oAwooSoDDzcGPy7CxgyqYWheHeY\nTSph\r\n=idgQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1db60035d678801ccd7235205b146c47c9541173","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210228_1614496706135_0.43752181164760917","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210302":{"name":"typescript","version":"4.3.0-dev.20210302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210302","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eaf5c8f33e5e25e63820037b6909ba0c6449cad6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210302.tgz","fileCount":170,"integrity":"sha512-j8UsZLmGC3z0dzJ+Ybf3Q0txXvnGLkoIORUYApUfuJLoJlkFI7po/drYmhgh4BFjR3JnBQmniRHipEgcfQOANA==","signatures":[{"sig":"MEUCIB20KRE5DCW2nvvvfUY0APfXpSs+3KJsIPRvBFcmat43AiEA7G2FMYO6S5Dc5sM0ZnfHvTUB5mlpwH9tt0ecVSgCq9s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59820881,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPeX7CRA9TVsSAnZWagAAglMQAJlbeWC8qM9i/YMsmXwm\ncJKjaJ4djH0ZVunIbytNPXy3V6N8Ur/61Fu4Rqnd+uhlLA+ZBIhIdSMmiSTt\nymB1IKI0yk44pirPJbovC0CEgN8WhIEbw3kF7A8gr7KXiLgFvt4CXgSZsVSx\nBrr806QofpjDlpe3gnN86lMSbU4hecmV93s5hh+P3XkFpK0A7BZFjDMlkRAa\ncND872bKXO7bzxjO//sAqtSSJN/dRmMHNRGeuVOMghTSVgyHQ+8HC00PJyTY\nFkt4aAbgIdCtiyAHXpEySRc7nBxyzoLt78/Lt2IxQqE+N2jTgjg5g1J84vw1\noFgURwujFSnVQ5Y8vibDlXmwAJQlzOWGvFWgvsTRwqQLTpxJeDRodzxSi4Yx\n1/pRKugpUWPL+5oNBtPqAGYIeCGaLr36NO6vK2595BiL9IQ1ZAVen3xXtCHC\nM2lVB23MeLs8Pzyx/GjB6IhRD8NM4yRhnGwcPURloY+QfzRT81JvxUWW47qm\nUdZyzOBzLUIwk4h34MKVpIFgdqSH9LU8u0ad8ESGqDb82po4IV9c1ddxgPSn\nA4hvHsqKLSEkiyYDd5mC3cWnQT13NfIQOLFiEANFwcYFhZqs+sYd2W4C1+Fw\nxB99xBLCq8+zEzsi45LeKPyQ1nST/EOU4BRbI0vJAc5JjzcZAQ7F1WrxjPsT\nlWkF\r\n=zyx4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2b95b5edf985483f0c0923dcd781b73f327de757","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210302_1614669306786_0.5193589848235076","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210303":{"name":"typescript","version":"4.3.0-dev.20210303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210303","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4d00bf9bae064cdf3ebae5793a085e79aafa3b45","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210303.tgz","fileCount":170,"integrity":"sha512-QfSr2ukl7jOdBpHI2R4Z0K1mzpeuNDRgPC70+ZN6REtsJ4owJzziM1fWk1hlf+Os6jA3tBJ1pQjyDJOqpn/ZMg==","signatures":[{"sig":"MEYCIQDhgcDtlP5dR62sn0UQdu9xKay75IJLe9LRF82RblzczwIhAJOBfQ2ywLxWvHUdWQtmhYSv/IIHFu27vt+58zp6IyQB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59849157,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgPzfKCRA9TVsSAnZWagAAkzoP/iFTH8H8krFx37a6Xsso\nOhGB0aO8lieAEbm/oBAAolBoNQsMQZtv8yUKen4lkgAIWttvmIVpUpJsqrF/\nQwPD+7lv+kHuzUEDPx6aMDe3RVYXLk9bmBe+a6qDStHnFYnlL4Pglf0K/zfR\n6DXPp6frndHLrSZAi9XjNQI7tYIf1OCWgU+Y71w8ipM9b8alVZMERw8ztbyM\nEknrEAiRFkqVFHu4MycCts6M6RYwIqGnmszgvj+2MAE23w065gSPrfz2iVv3\nGZQxi+nVsW4R9IFISF9aZAHVBJokLcG6AJyaXNKBbHJw6ke7bKqJArEITqFq\nU4lX8OtARRdwGLJHfQZyEtcp67RX1r5uiZLbZonZEM6Lin6e8A42En4ERrFC\nHoTmUt0o6OmZfOyhQyrZswvSuf9wrTs/QT3unw32oOppl8qNsgmtwwXwEIgn\nplSOQ6ev++gEqnrRezwpzq+dAKgUzy3RitOBBi/ZlGDiZrwn75dzDV1qMhT9\nZfapShOJJ4KKIh7rQlhjQNIgzmLaAZsWUbEtJCKxYAYR+Tjwz2b/8dxbOiCu\njDcWfNLzrFAc35TDjCi87pQ4lsvh+G1m+yXK+QuhE7TsV0tUif5JZj4qQoU+\nCuSriRcXzXV/Ut79J3RRzX8wdJnzmlRppV2IHOLBzNTjobp/2pt9nYyTRQMf\ng+yr\r\n=usbL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a8742e35cb56686a30e9e238276e349d931e67f6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210303_1614755785472_0.05030531951565553","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210304":{"name":"typescript","version":"4.3.0-dev.20210304","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210304","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8dbe3cdee1f044656232ee164761c44cc2416ff1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210304.tgz","fileCount":170,"integrity":"sha512-WKBkHocfKiF1PaQRLirbrZYznReRj8JydT5etrhNOSGj0OCEq/3MXzeted9pP8czVfQ+yhzamrDnHlHqYIBTbg==","signatures":[{"sig":"MEUCIFXrtQP0fGXHpas6fRQtvxlgwA3mhktQoBQynsHajyKSAiEAw51FN8SqtM+n4Sn3Ow6pl2NmbAs5f01OGb/Q+CiLpzc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59878487,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQInKCRA9TVsSAnZWagAAeCcP/ApebAQQ7kssFpLt6NNY\nOIkKGA1wvId11m7+wWVstySRe5k7i4Rs0GDmkXH6kcUjxj4e/kEEGSnybD9Y\ncYVbmz0gTOdVJrko61eVmXMNdrTKoS7cZpzPQHNWf1k/JDj39+ae/SY2a2TW\nG42ked4AYuQ4T3jMzywYGyyqU0Zbwnt03hqEw/QDppecSca33oyTNfuX4DPw\n+5ZZ/J7/CbCBJgUm+08LI2oC3cOUu6QnwdXOf949ZswmlNEWTxw5gRoxAkZu\nfrJWs7hqhrfVEZJVeNoPqLjgkQ6njuWMP7/xyztZRtetmOb3Pi/pJpjRkq2J\njiiNCDb3omH08RvUfTusUUaoBN8CnhbKzaSJLeDxd+cEZafTIfba556M2xaY\nLZdBEgnuH/Va76ynhEFJmQvsHJ56W0EBM67ig4xJjrn91lXClG1EqNOfE+Bc\nGyCosvVUXqPM69vXN+JSU5Mrxy1dQJqnaf1Sb+6ZZ4mMoC8GqRcFzFHE66oo\nLVk9nTVHxPh/2I7qUQNESEPNHLuMdvdQrV5HvqyOJWnVy156WDOtN/Z6Hrtw\nms++7+BkcSHeuVkDU2KkqlFlMlEQ5120wgdjYX7goqFNZBGC+6KueCS56FZR\nsxGvJUvGk+aztmEZTJqBbG+Kh9bmt3LmxyScmfACHpygH3gE8ZmYgNo9t3NB\nzVOk\r\n=mCn5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1f6a8d7aee11aa121e630f2c34d648a2cf2bd299","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.20.2","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210304_1614842313187_0.4407105305118273","host":"s3://npm-registry-packages"}},"4.2.3":{"name":"typescript","version":"4.2.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"39062d8019912d43726298f09493d598048c1ce3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.3.tgz","fileCount":170,"integrity":"sha512-qOcYwxaByStAWrBf4x0fibwZvMRG+r4cQoTjbPtUlrWjBHbmCAww1i448U0GJ+3cNNEtebDteo/cHOR3xJ4wEw==","signatures":[{"sig":"MEUCIQD4qsr67g7I1UpEMs23ZxZsRxxn6CiMp8EUeUwfYTNqwAIgFxkSIlqjyo83uJzrZB7mSTWeJwuRkAe3B+8XfAqMYNs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59185869,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQV7KCRA9TVsSAnZWagAAU2wP/jMPm2IixnixQtwuFOjD\nyUbXL1tf815a7odIAuwY4qmbPkxJ8FCLnqmFfF598sfmC8e8Gfwec9urXsA0\ndaMKjmNsMk0URy5SrpdnCSa2pbJ85f10tPRGIBkoP0YJys9EcUJUBE81auA4\n5ms/vJszb8d7vCNfwUppgbOXY/tNw53leVci7d+53Sydiu3aKefXX3QNRARB\np6kEKTRRZYDbu8TE3/kqY1f3zzQ5qn0O6pSN6osVsX149Tc+Fj/zlRUxKvgw\npWcANRIHsyVAwagsNx5DV8vHNc/Pkxf7kf9iw6x2+l1KkWDrUdILPPocLsGg\nY9qZPYcqU5w0HSiyD3DlyuTVWSS8WocKQFek9tlo/1qUZWu5KZ/HgSc46PCR\nu2y6pzkUEuXJ5HLd6gyqPy+E0RnI6rhZMbNQAkMbJma1I9Tx+pI0/XEuVuzB\n94e435/qwoThotlG1scLtPES3+/+Lbi+1+KpqOnfj/RDu0xv1tL5Z3yBY9mN\nQ+IAGfm76mAoAUefZD3456TZR88Z1KHSUlnKG1ErbikJ/V/Qx3bLa/8xLSvR\nHsXyxf5SI/h3CNM75A7r50iAdJhIeXyMrvJ/vYJ7LK2bxXzprDUtvbDxXu/1\nPTabpoIsu18TTmRFE+TFpXMwNYkY/v0bfmnPzrNH4eqcX+OkpLZTga67Lh0M\nYkFc\r\n=e9fY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.3_1614896841505_0.24113447102051744","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210305":{"name":"typescript","version":"4.3.0-dev.20210305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210305","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5e354b303c435f84a25fa82f45e9c412bfd5bd8f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210305.tgz","fileCount":170,"integrity":"sha512-OTALeeen7kl6FU1tcXRk3h+WY1NnE5lwyTGAZUCt9hw6tdaifgLXqEkfw9NHJc0xKV6PnU8GgnYFFVVyHLPSHg==","signatures":[{"sig":"MEYCIQD7WseRKRFt8TJsRL8dbEwbTitZl3eIdZJaDBI7SKrUGAIhANS4ZXDWufbMFo/CXbGnbzDL4Uwtb5vhTI4AI2hpa9BU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59866826,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQdr2CRA9TVsSAnZWagAAfXgP/RtyW2Yi4jFmsJaYKVSG\nGkVZZj/a6fkE1y3Qk1rydgl6QcByd6TiPMN8MCpuRPRPzHG2FDUmfZbsK0V/\nR8my5LLO6tYj1k11kGAYWl+D/UB3h6j+lN2Dnkx59KVU9NS0ZcR7DeflEhyJ\nOUye4aLxkbLhTJTGOjlzIHrxybh4JEy8cMeH9bne8sh1clFZOUBVmXwyZwZz\ndMbkstEV1SeeY7TzNVh0rlJytJYhfmemFuZMhKcShphI2xPuBE+bqlBaGXCz\nmjTG7fIr/lkCwKfZJn5bafHx3+UAlGPKB7PQpJCRKDPfkEH1FiK7QD9J8ztD\n0I2G4j+Np+IN6XiftScq/1echtyePhXkcYESAeV2S83GBSGTJiRHvlQnx1pM\nvlaG08C4lM0PqnAbY3F2AfjNaJlQ99AdBwNzWgYCH98YM7uhlXzH4Lfap79b\n28AyOOKpcL3eunuqTb96A93mxQj4bAxf9pooXBfd8c/2YgKUvf7ojVchr79L\nMeYO5KKzKg6z+04FpQgns713A1gPwvRkSALsrokq27xCgnA7MXWuH6WAh/p9\nwO+KwTrI/mSqIapX95QxNppY8wBss1DT9grFlS84Vh3DUTIM23Ri/F9iEezX\n+oO2KTPnzP2BTaOLmIufpSuLOPB9NzDAWue9GFxIf6Rr6+SRb9Lyc4o2FUa7\nc8Jb\r\n=ZoE5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f0a72e24506ffe3165c595e12cd346c5314da3bb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210305_1614928629103_0.566135675757955","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210306":{"name":"typescript","version":"4.3.0-dev.20210306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210306","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"45feb7bc7d2096c7daf2ddf165003f185c15963a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210306.tgz","fileCount":170,"integrity":"sha512-1BYyXB69wisTnhgq5DUwxM2gBKPqljrFXxYjmKLYrBT/INwayJAs4+rz2aoYXPt3x47mzF0Hy8HQHgK5NmIpuA==","signatures":[{"sig":"MEQCIEfZlP0PXGu0DvVr0DLTKTXFgl48Ey0YopP8U1Oj7LoBAiBW0Fkho/mwLx//ffz+qZ9sJTh1XpcmVHZaJhXLxvM2dQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59869059,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgQyyhCRA9TVsSAnZWagAAiB4P/0L6x5sOF2nhSjYeXJ0x\n2DMkY8ca4xmRnPeShSuoTVNhfkbwGXO6CRLE0kUDvSnRtE++MHvJbNat6YHc\n442wyVS8rfBDNetaAthSLex/57ZHYeHKcYRgU0l72fDIx/FZxUhq6q/a20Vv\nf/HsHh+dbH7Yr2rj+k72bHVGpX8YwmIupeBQuqWrEinMiRfAg3ukB0EO6urZ\no+xdTwm3MZHRwQXAdouqkcERsSmUpxleOidPkrzSgeYWLeg5YVjQYk/l/DCN\nZ7Y9bzHJmK9LQEXcEavM3FxYV5Wli4GGox0E0/cDNgLRQiREa8WZMERBlTDQ\nx80nH9JUdLDk2wFaHYKQlmjQFIgb3JkHhWv4M39Y+LC4nAh/rB/Fq6G/Ffkj\n+6wy1n6o1luox3H4LHY53CWVnb6LgJVl1pvWZpMiqqHNUn/+VpMzZz4ZPddg\nmGGcrKn3IlBt3GDzJYX0REXT/bFv6PYMdTKyWrXQLWV3ulZqFAiy6cTjwMwQ\nYNBBnqslXpfdG0KTlImlV3k5nrZBcttChxPawesOJASbLUwDN7ahVtscft8L\nTTWDnYZozQvfojrHvhZXIBli4P2FPjrN1QbWcrORWER2nQzUxHxiBlMlwSYS\nnhxApRv8/Xk1X4ETKDWmD6GiHGIAfKlmPKoAfejYG4vFV+pxBpSUDGtNPDDG\n+PiW\r\n=6izq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7394efc9be7b8fce879b770b729ce525b7b995a7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210306_1615015073028_0.24371962470446107","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210307":{"name":"typescript","version":"4.3.0-dev.20210307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210307","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b334601ec0a79904c83dcdec4a14273154e31f4f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210307.tgz","fileCount":170,"integrity":"sha512-asXnAMJAXz8hPTA5TqI26gpf3l5Rl0hITjWEmuPKlTEVYBY4YVLShwMoo48TKWcq8sQ9Rd7pW8MclXWoHtX45w==","signatures":[{"sig":"MEUCIQDVOj15KAjFOCl1S4fauu51zVbT3NAF+tzwCirUPP3QmwIgAxuXqcPN+iTd5/T1GIfKzTYio5FVVThUd8M5xSSnPfY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59870094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgRH4MCRA9TVsSAnZWagAAU1cQAIkJIZayAmuDaiSERH89\n3DC1dsY9ctsCAPB4kNd09hTbzYjjy6tjVsRkGBT9U4hJhngRIqV0i0WAyHO1\naZmb7HMmJuXkn3rZ7gzMp+7RjhDHz4nSy81sRnwYbSX7fmO6eA6DLueV6aS6\noZbzFuJGcW2WC+BKKE1veEmdStAXPdlT+W9YDaWpxrhtqcwH95jmu+H1vxRA\n9d8vnr0ys6B1XY5Lyu8hBIh4G8NzImEQV2OB1V0CO/oi+jnGEmrKOCszNG8l\nVOMsrTOgijt532jBBw6dUsHidvNxZj6MTJAGa3k+Go5ftnFoU1zkewh6Txbd\nPiEc1r8UXpylppR4C7NFWruhOm+mRyWxl0MglybvdM5rYJGxvuqloRRXNGfl\nYu+qtvifaO1bFmz6iPtJWdFd6L6h1ioNV0G/y/G0qZ3Ox55vPHb4EVhT8XDL\nay1+r4lmWPH5++kotKWlPn8vTJ3nuo5+CFuQhLc2DpCxk+sOgPmpmDrVhNRQ\nrO88eZLZm8CeEpFM6XYmERS/XPJTnepkiV5Cl4kI4K4BFvCVq5B3cWwADpuZ\n70I/C4Kan4K2b9PLqPo+7W8wo3eIIzyPjra6RDhv8ExKaxfPP4eCb7xdDFza\n+HTkFZpkpPqXZfhen6qLDzZu9QwNawjhmd0/ksIGzBw2hXxxlDbvvsLLgBZl\n1wtK\r\n=Teqj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f7cd70291cd93c8d5a92552626a55e28b7940545","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210307_1615101451171_0.8299889074375413","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210308":{"name":"typescript","version":"4.3.0-dev.20210308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210308","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8ffe41054c01ba8b1b9360d59b1a06b5a065e896","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210308.tgz","fileCount":170,"integrity":"sha512-PrFoHN5EG8owW3fi6lpTj8WT9idOI7Rx7A/ggXGysJhZQDaBD2J1CfgY2HNztqfqpX7AAw86PcHEJYsNn/8Yvw==","signatures":[{"sig":"MEQCICua3Os5di1EXp9rQgi6zyv6daXxbDV/hbc6vgw8j3eMAiBQz+f2nA/4Wd7+e/fMz38EteXT8aXlPeCw+2sqVHtpxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59870094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgRc9MCRA9TVsSAnZWagAAenoP/2Z95n4hReFQBiLfytuj\n6P8NTrXeP/r6GyrGnCjNm9jv/RLIA6fNNaQQKwSR6ysyg6+zm6TGUZv2TjMQ\nygJDCqr6uQgDI+Dq+q1JP3lAQEMd7YcAi009GxjbpLsK7oeBWLudBLDv6aY/\naNYao9z4Lga+DdAYkBrpfOTN+9fOgqCgaGkYTqQSjiwlHwQFQm/2/r+udV1k\nTVN8OMfyK5wvEu1bSVrNMyBMbufLnic/SFu7oFIZGgNhnH2sfsFMlMmYF5HP\nLf/Tb9ciyEmvkQlSMslSbCZxgagSlAbeSsv2XsWQqkP1aTHzWBo25gJRR/+b\n7Mvyqq+ms1IZ7Zyx1AUSWHXL+Wyjcxdc2bYGzFnc5d1IkB8GI5b1/Z1xwxm6\nLPbMQQsThvsm/fzXJSvz0z+c8Uc7CNXDkU5MXewCIM7K4WxQ0XmO9Fll4FHw\nP4IpdH0wTlIHAvOPL7vkCI5BtMstHq0H3lhJkDpd8bby3L3pckrol1Tfz/+d\nlyWJklmCGMSFwHAU1Tu2OFh4DDCIwPfSfsDOyNAS0blBoKFombZFULFZ31iT\nVGRzaS/K2BYFsCDtEvuEDb5NHsQNVlzQVbqbsSiPwrCMBRDtJPREeLaJ5kuk\nJdAJTV7jNYE1O2EdJZZbvI5m2s38TNWRLFaL8CZzq9hIDZUYOT13LzPNXamc\n0jm5\r\n=0ajO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4d506240ded68cf099c952b889a3f93b09f703ed","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210308_1615187787755_0.34709503463019087","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210309":{"name":"typescript","version":"4.3.0-dev.20210309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210309","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eb3ea54ed481f5140098f21c5d828a1b3744518b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210309.tgz","fileCount":170,"integrity":"sha512-eNMqXCiCvC5347BRgEwixbSJd3slyhoc5mDxDFKrbbfcATS1Evqh/1w6nToCi6ibYewUmeBlqSsxSlmwROLJTg==","signatures":[{"sig":"MEQCIDI8ynLxEx8iRRZon9Xc4CRgzglgFDm3DRgjDDbKcnZ0AiAB96hMMDQQiBqN3Z/MhxMoo7XdTmlZUaEqCFLBfUSxrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59870094,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgRyD9CRA9TVsSAnZWagAA0CoP/jdqvKxRxSmrK1HKkdpF\nhE81eyEmVy2CH6zEyXtTqlSQbjj2+50m1q/IjJreb1id2ior2MNZ0JtyKe5e\njsI5fczwJO/Y+XUJ9batATQuqZX9s2+EK0NjvJXjM9g3R6JPew3rjorp5CqY\nkBt4+i0UGz9w6B1H3scEGKVrc5kceD2H+rSPvrOkGPzKV5YujNF3jTpQQ7Bv\n0AvQslNxGHhoSubd6AdcWtmTep/Jc86nEjmLOU0UfoNTtnyX/L2GiWz4lHvl\ngiIhfSWATOfmU5f9rhi48lmL9W/kRO/dXOgBhlF/peraaNeXz7P40dTByNNO\nkOBGKiN60uYeO931txLF7u/vCG4/aCZKVSv5hSFiDwqb9EPIqJ88yntsf70G\nJsO27EyljxPJnNag1VZqEw5540VX3Qo6ABWiOZ2lvhFHJJYBvjy3Q5ZRoS03\n4sVse96n8N9HUdvswe6e2QvHR0gjPtewlFGfK8eiYWIkG3f8OhatJAUoImKY\n0aYzjuMNkP5RRibxUnkpfMnvSRjFUT4cu9NZJf2GBzcafIEOJQpTXJU4WCKz\nbhQ1LXDqW0OlHGku+RxJk07CeVxxrnTCUv64aNSFi1M0XH/DtURSCqy0FIYG\n4a2i88unx7texmb6Dwla5EXeMTJZ3Iiq5TCCGCAgKkXi2ja7hh6c8yga4WHC\nl4TD\r\n=uU0k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d9f5a85d5b7d1094cbfedd7d4792548db93fe74a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210309_1615274236298_0.34767964901918114","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210310":{"name":"typescript","version":"4.3.0-dev.20210310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210310","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c1c97633b3cefe4b4100a704a6a742864ed63936","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210310.tgz","fileCount":170,"integrity":"sha512-k/FbuOXh6ASEGg8R468bfD6JJH9wX3woe+NtxcRHk8tXfH4lsU7RR4LZgEKa9ctfq5Df2Kvj2WyyTcHV2XYPsQ==","signatures":[{"sig":"MEQCIEOn6O1DGbFTT3qxTDI8X7Sd09ecn/qsbxv2ggmNK7ZqAiBNJb0wp0DxJe63RcEYZGv+iQO/DFXYnkkEhboOEGxVZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59887134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgSHMpCRA9TVsSAnZWagAAJ0cP+QAsnrsAN43i/K5Qlbad\nRu+DZq2J2aIyiPCDsSQoQEnv/aMMccDgKp5G2UizvvfsLwNTmDz6qQeU0EF8\n+Kwvk/yBASw8mZMt3NMLQ1C2Lc0NuJJmIvYIIkrp+fiBNaWg/fUdA3W1PkTH\n9WdUXlfXOL7TEqinQghgB9SvMg+DGWSEDHHq+A2DlecXdQdWLVY5BqlcP/3L\n8E5KJioMoyjQLW3zWtZnoWIde2gwQg2G+IAbrxtelm3zTA+h0qAAEsVzpuUP\n9qln63qeQ+5qVXCc2ACEqtwuXXyWOdeMQW7IJyyXCfN58oMkSEnszlJIO6Ra\nEYMPoZyGwyLeSSugQu7jEETdWCwlg7NWr0ffQIYYlblXFiz+ANUQ+bsZRqd4\n+XNkEu5vVbTMe4aYdxwXOxl1kEsC4ZYs4VySjzBeFu3HQyaJoAeH81ATwtw6\n/7O0BdttibJhdHqnS15q0sByATZlWKwSOoV+msp2F/uyuQ0wQLDMIwIE7mAB\nA1WpAWPdw7zhAVGnnjaCgfhoAzc+m6UZ5IvWReI4zGUxdjNwqadiDJKGV8g7\nIjfKT6Q2gf6J89F8boSi88e4YodXUOEqghrd9Td7itbYK6Z2OM6PgHaOjFOZ\nOOHMDakWfA3Nkr2XD84QorPaa55VlBZijFCj+g5Nw8VHGZJXSB/branoeOXc\n4a7o\r\n=wCaa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2e49e286ae7e3cae9587e21238915bc5c854a165","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210310_1615360808712_0.5836961804706653","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210311":{"name":"typescript","version":"4.3.0-dev.20210311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210311","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f91ded474e65a8bd07804f9c379bd99920a8851","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210311.tgz","fileCount":175,"integrity":"sha512-QryvYCLxIjrtou+p9t9NWINnGwwAMcX7jcuR5+A7NA3Ni6QVmqNfMJ6+gJSQ8qehS+i1ZdgRXW0BqI411kW+SA==","signatures":[{"sig":"MEUCIDg7Hbn6p0M/xL6YRb9MT9bkTu/xXEXzmWCa/jIoteX7AiEAmOFWOGKFPcDOHJWe0PiG1Y7iCBZF/7XLE8YJwCIjyTs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59909502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgScQwCRA9TVsSAnZWagAAG+QP/i5GqBxCtsyZ1arfDb7/\niX3+3rC0rB1z6ZfNbFreiDDvkVUiYgSCQxZjwa9YqvUiBcPjPXZ/ss/2E4gE\niKs8c8JHmWJGb1/UcloxLB1sQ+fbETl6qZllomrNCLMTqeElIWt/nc+r6wRd\nCjeRxa8NLuAynZ7xSTGGCrW+8mFC0O3YPGpfEaMnQNN1u9sFfJaXMdGMHe9j\nWAy7/jcm+xV/QerO2icJfg91r2eKn3bqQLZ7TEAaeREEyLrxa1ldaxo2wXdw\nbd5pFknthf8kSxut5u1YRzFBhOvYFfAbjmShldph4mLdhIWlLc0KaT1aTRVO\ntuci80XK4aePULi90oESnjPxKyF3nJu6fX3uHlOiahhriUqDjxyV6ZAzjWqW\nZypkjzTY8vMEcAzwB20dfZiqPi94ePj5hKH00+T0CdGb7MefMdFXG6bZP7u+\nNFVSAh6K8jMQECl13Rk9WbyBoZ1VHgG2UEPww7DafwmCJtIKsW1OPUS/rf5L\nPqJ6MeCeURcFvrqSfV4vK0QGPgP+HJ+R2pcqZUWci5xfdReA01tEHsjA9R7X\nNZZBZVeN41lsN1aou/y0+Z5I0peXtGCRchF5RwPQlFv4rJz72A+NX2zZZMX8\nga1CRzENS1Yk4tPKlzDry9RCNBP0Ozf5+g1h7MO+vLAlQER2gLlWbIlCJTG8\nHZyf\r\n=8b7x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5053b0b987295296108598bdfd87865d9751f237","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210311_1615447087867_0.8578991434408516","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210312":{"name":"typescript","version":"4.3.0-dev.20210312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210312","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"be99ef671aec7d447c52436345bd6d8d31cdbaff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210312.tgz","fileCount":175,"integrity":"sha512-dH6ZYuVnxMFBL3T58XPJgTsr+8u6eIfrUFfs876yccJ+hMeMDvDe88vkuIgCfa3WC2+y2JlRmrDivRdalIcmhw==","signatures":[{"sig":"MEUCIDN0TmoMyRud4Ugqez0f+XIcuCTBvoXr3/PHHV9SZoICAiEAhTtgZiCLMH7aFAdeigmD18TvFdLUSkBJziLC1VYiNiY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59972464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgSxYKCRA9TVsSAnZWagAAikUP/29CMkauYY6b6itBXtH7\nSpsBHMG4F/oFSH+/wlG+RuiyhenpialKT61y4Pj7GJ+hs3df4hOKjj7sNR08\nG4+gLe8TfPQefkD4lpYsrn3/X9y0oinSHsLi8FQSkwy0qYZWBNPPQiTLT1mU\nTiD7jdeSLTbsC9pmjLaT5npM1967xn97FPghd3lx+WIjwcuHQq8iNkweOJx+\ni7tkFFHyykMjF9GVbPooMoimm2QYImQ/5flJjdgu1bdzsThYJlsmOq+RCFFt\nORopQY7weK5C5hcasLhZtcQBV35bpOh90ncHSoVRISf0Aolzs0hn6+FFB8Tt\nxVop6TAdiks4t1gAcKJPazwCQ7RhuaOyFIp+hUsrASmWtTKLPREQ3E/YZuCS\nnGRt4iLe0jwK8G0GE2rWgFGwxwxHXH4G/oFkdXqatd8NzheGLV3UH8CXxy/G\nQ5BlKei24gx5sqwUzyR5YNrJBYrXW+ybJSXPX+ViCFnDKm+7W+ieRAHK0Nc5\nbYQcDYuLpApoBwrwIkkYWpNREUd/NyKuvRljxX1QWKi3poLGoiNNQ5twXK9z\nVr1QaQVFV/rAtJZudALWwweUOgQR4qKez2Nq+RR1fKfFIN57cJLXIisGVjkl\nBtARXYrzQUYKK+13VOOZD+mt6mQaliI4GkcpbpmWFUEliZIPcUo2zNapdVA3\nhCnv\r\n=E855\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9c73e048ae32379a2f113206ce2f6e540bc5334a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210312_1615533577773_0.8139714079145735","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210313":{"name":"typescript","version":"4.3.0-dev.20210313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210313","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e4759e671df30721538332e4e8505669b0cdb741","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210313.tgz","fileCount":175,"integrity":"sha512-ZIuoud3TOIG0oW0ovdQBc1vOkqhScFZDVIw/2kABkvOrWAKVhkWf79+j8evHKbqZT5T3DZJJAomid3PKVpUGig==","signatures":[{"sig":"MEQCIEb7AuWo9rR2KNu0vILkuhJ22WxSSLIy+kyS2N7yDJBiAiAGropBWI4QqWodLfbueysNiQx8iYOJeGexdlzS8HuDmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59970779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgTGdnCRA9TVsSAnZWagAA1MIQAIaBwfOQVRA8HLzzsdoD\nqorN7ZOWHOLBjpjAJowgtK7Kby0RYtJKjrkCBB+z4gmHz2XcW0g0Zxwq2qr3\nPspYwiDI/dGeFOj9VtjKcackFP1pCODYeOrb27xdECPI03YmmRJB8FL84Pe3\nyZvZsg5l0TU79PN6D+7A/gERgEpqGfFTwiWWtOYfVuRa7dDZ+dfRSRer1Yi5\n2Vq64waJEL6RExKk6+skcr7wBh5mzrS4mzZdFq3A2+7X7niIS6WLO4nfLC3R\n0hLkIPrQHwAxVOY9ktAksCYmwHAa/EnCiQRPKDAfPo+82Myo4IWqVxdPRfeE\n7791mFRNU6YVVoJUWo5COL2Tay6SmPSiH3eAfxjdL1GaSoL/hRnavnPoNR6E\nQ4dVTZsV7w7AFY6Tqm0miBhsKV4nyYKCdQS4dvs701xMn11xejSnocTVp8HF\nf3Nm0q2vtSGSnSMDUUU1bXXm6sAJJsKK/RVsrXQUj22/zQ5wMyMx4anXMe/g\n9F3gse4DPFced36HjndZrxA2zxyn9A4RNviL+3KdR62h5kH1GLooACB5zYZ9\nyFaOT3KOSB/d+JmolpoAtkUWSP4AqiPTQdiKGfnwtUuY5hJ02eJ11PclGknD\nTPyxGd6SyHQ94ZQHuOwpMbW1qoHsoE7s6N/RFZCkc0IPaKZu8Ahn3wqmlIny\nFS6N\r\n=G+BQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1e9b21f70201da60ecd9181f89b6d93c3fa2211a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210313_1615619942054_0.16323827163632143","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210314":{"name":"typescript","version":"4.3.0-dev.20210314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210314","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f130e52ed1fdfacfd2d3057c48380ba273f02316","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210314.tgz","fileCount":175,"integrity":"sha512-hpjZOBZmJtKf54Y627DCslGx5DvIUO394jpOON2AkQelG6hKhvgLaSaFpkYmcAmldsSuGJxrpOv1jPBNjK18OQ==","signatures":[{"sig":"MEQCIAwWK0tawJDZyvwinX0ahcNwUbrJfUK8TF7uysrdQzp1AiAOAa/fpSVeca3JpS9XKy/s46GadLDHJaXPgTDKm1RH6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59965061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgTbiyCRA9TVsSAnZWagAAjqkP+gJhpFeL1tFrzJfe4MFb\nnCwMybAdnk+VPx2/5hCwJRA1rvBOj6mLyinkM8FG8vzbsq7FBqzHbBCUj4fN\nVN6sI9QVi8pzgNv95phqZvXsFs2xPzgfdNIvh94lSwQ04iOZkUnl2W8kHP53\nT1qn+2z74ZD3WUblOR8ZZ4WwZ5xZg1QEzc/A6QZ3vaZdhzC+HFEZdh/c+UCM\nzyBXRYiFg7lYifyvndJ3y7ZtxcppCdHZOLUZhGHTr/cy1JCtc6XXdgrqEwV1\nSP7BkLQcLlEJemicCaVQX8aC2VrQZ+HGZL/7PPoMMJpGqkWE8eIifHFDR4gD\nuFRcTp864jwQJvW0rWsoHiIyYFmXtBMO9TfAVtGtN3ihCbO7/8FP4IOBXZWf\nYi2U1VAFE875S27Zd9Qr3mrL5fSb9/tW//lpszqP89eGLBDpUwzP5rOqFY+P\nHn/A8OK9S2HIEfc8buwEDW8kP630fD8wX8v5fUKuqBxwdOJ3i1TXeuo3FsD/\nPNji891y3ySnPoYftwNg8V/qjynGhbPG3oTj8oOgKfJ/aDradPEpf50vlGEJ\naMjQ2j/3yK/SjiVKe+DMiPFqwBZC0sOdy3Jv4R11WGfyeMqmcBT3CETYd6Fn\ndMDBSG4Gt5Ddy/FW0tpV2JA4RIelwKUCrnhqu+VJIez3phoNCHeYvhVgXUV5\n69Bg\r\n=JER+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"322c70fd8259b2beef001e1a346fc75ab070dbea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210314_1615706289249_0.5479573634792558","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210315":{"name":"typescript","version":"4.3.0-dev.20210315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210315","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4157f6ca15ccf6f7dd3a433f5673ff57789cea0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210315.tgz","fileCount":175,"integrity":"sha512-8Elk/zTbYDF/X4i7aUlEkR3DoP1zhP56QYeUG7LtSVxiAffUQZqVEp8EckpoKnUcb+ZuZLihelVZrg2NJ1mymQ==","signatures":[{"sig":"MEQCIHgZ6RhooriPzgzxPkDXT0CgFDtfcCrjpXQnj/02YG3KAiBe1ADdagSC+OUtS2E1RH4j6/c/UzE6u40XdqvXtFbq5w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59965061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgTwooCRA9TVsSAnZWagAAu5gP+gN2mB0agW3/th4/NmII\ngO5uLYPzsMkxZjgK3oLHTnYuAD9dXisk6XtUf+ALC0IcJMj19EDXPsV51u2g\nTKBFaj2W7FUDzCHQ7vFM8zWOA8B6AjR4w4oOfh4ClfcpGOySDWVTaczVaAVw\nibsVqLvI8bQKqBH0mixWTOU1iGsrrC3Z1jX2hJ/0iT4t2P/22N1f4XsIYXWC\ncICtcRhMUFFZR1Uw5bjyQpAubd/8njt81tdGu7z186N22t4zHeCvRi4UxU+s\n4Ik7PcNZcTLeiTP7g+h/IEaa7mPZ+SXqcld5EUJtSNI+41fVmMgjqlJ5YgOu\ncY6pDiO5nNm1EziqiTWrs8n/X1jop4xJvbbIwMhtzp7W0pNcIVyB6RuVe6o1\n72FRblYfDRIS7xvQyV5Sh4e9gDnLvpwxilkTsJMYcYHu8t58gwGUTpb9DnDx\noKYk7aZSEzA59dUWB1DZ9gP1+/mk62OCA1mP5UW1olKXpiUPdHvnm1YNZo+v\nmy5Atdko3cg9Lt6nuLPVRKHv3W0BBJ6YTHnJoewHgrJYEQowKDYMJjDZTLoM\nOUWMbhEz++ZD8jMNZ70cSzBsuj1ucNH3bA0fk/GFcxs1BRI79bsiJ4eguOEW\nasMIH/O8JXdH7kfhOy6fw/OmK2J+U7gqtqk6FUUHt7del6Vjz57+ipR2irVM\nXk79\r\n=xDh+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"322c70fd8259b2beef001e1a346fc75ab070dbea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210315_1615792679347_0.644007994074647","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210316":{"name":"typescript","version":"4.3.0-dev.20210316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210316","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21088bb00d2a03b3bc5c008a106609d80da8ef00","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210316.tgz","fileCount":175,"integrity":"sha512-AsCsSUa5Y3zbR/mdmhHeQp6uDtRSSKKWaYlroKua+G3D0dEjTuq16DLFC33ax+JPT2/iPafToMokdEJcinoNag==","signatures":[{"sig":"MEYCIQDMoF4Jzteh7cC+wEa2yfOSZ03xJDgMZsVjAKo0veHUwQIhAJRfOlrvNUrU7k+RRUB5uJqctVMYEAKsYvgFzJRccIhY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59965061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgUFwMCRA9TVsSAnZWagAASmEP/RniL8HsbLAZPkjsGfl6\nCg+Wi0DUtz3xOMQeJ5nwucmhiPcBnLIndCnunH/7gQjEgeuBmSQYySk7gJ8y\nh3BsP3rFH3l8BH53QZhz8AQlnQXpQ5WFQs8sGW5j2P8CkVHvYNnf0awbXDAq\nHaQl1/8K7oOIr4WtHzmWOgNP3cG+hRQtyOhIpWrLRReE6yCecWAAf8pMJ5Bx\nFDJiCLIZ2RIdkIrAS+Hk1hgtapKlDd4wuEZ6Grg1STFIIObhnXgVkUFahIgx\nrgvgLxYbPbKT8RSZ41cQz38QBxZXjl9yFVCLKCQd9uxxFlrsuRQa8nZ5M96Z\nlXkP8e9X1KP+PWtEi7IyJrnoE7NHc8ywjQOINABL6ztfwB/Zaxb64W+B8ist\nIuIct8hmv8oqf3TTILYJ+K3TfcU2IzuCIQDitBZZQT1TRajFs8WquY/9mWat\ncpD+5bAkBeTQtu2Qn7G/jtoP+NLU/LInxWaXeQtO3/BaHdwcMkyWiYx3KzTR\nEeR2+8zl5m64C3svmT5I2Bz31vp6noW+IfKoUBkP/TV0F3kTo2qUW3GZij6G\nRAldhVZoVMdPWzWJAYWvjMRvwERQ6piUQk4E4lO7NO9/f04S3CK0Xk08j0PG\n3j7RjIhbkBmWqkJ0iN6DVyW8Mo/DF5ZkL7cGQ5vzG4oC44ZxYb/xhLnwK0yZ\nk5V3\r\n=NTO3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ea92e3f2a018f5dd4c85aa225f23912273a9c930","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210316_1615879179786_0.36205226662662393","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210317":{"name":"typescript","version":"4.3.0-dev.20210317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210317","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"154a7ee8926cc4fce483556e0a3b0b86c02611fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210317.tgz","fileCount":175,"integrity":"sha512-8cWbTP3pxvXN3v/okhJqos7raoUuTMz72HbLoCZZnMz5YcdHbiUQUlbJqABbW7i87StwCW4JuLtiT4+ofwwENQ==","signatures":[{"sig":"MEUCIFZh52RLCcO92gUE1KPVw399eGaoxJDY1CHfiSu8cSsJAiEAnClLfP04Fa11aG6MCduMZ1WsR1swqYDZLWWRdFGHDAs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60038534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgUa0OCRA9TVsSAnZWagAAcl8P/R6VbBiio/zeOBMTux0O\nmDZQjYkPZVrlzTfuPpO8kCbXwAvOT/7a2/6HQcELW/Pu/b1Kw2IMBB8FfjLJ\nIZASOdSS40NOQRWbGcqf6pqEhb7xv9Tpug4cTjdXdsl9ZjKw2Vw9T8BJa0p6\n90hGnJuwG2aiullIc8kfMS8RJ5hNn1zKCGrSELM6xW/kndDoPjlGPSCTX+sM\nWWxdsRgsU8JVgPBcbPHcJOGq4hrwLA8MvES+oJ+0+iipahReE2JQqLTWdvbo\n7IjoMzc1bEfg51WZOoVaWnzZ4KkeFkGag4K6aYaEPaM17+8opDjEFBNDZGk/\noVXnx1sg4a9gA1gSnmp1yccGYW+YV4sh38RTgynaVptj2h35grvHTzy6GpYm\n/knm2YwjqcgKe95h79Ezi16FumyRruVPe8bFMKg4zHbajjwbGNL0kmYAgVnJ\n1YmIJof4AGYZH630h9ub+B1XvcXKXBYNNkypSq07UjnP8/LLJmIWy/5xGTgd\n/eKb6cyp8T4+382x5S4dYnTeB1bontwSzyTPSXwThUBjNUUsw8jchf79Mm8c\nO+RNocrp8J4NMAvWeXzn6t/m4q1SuouB5d125tWhl1KgLYedEioW1C1BRo1E\nLHlh3+5EtBBFknfPq6ZrG+HU19EXjuS3D+Yl11rlDVA4/OUFiLG4jS4JQOpT\nTHIY\r\n=ZSgs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ec77bff33226fb01f4e38b20e481f8c1fcd9e6c0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210317_1615965453617_0.22211338503665412","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210318":{"name":"typescript","version":"4.3.0-dev.20210318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210318","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3a6def444ace2a21d3b18573feed4ac67cb4b671","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210318.tgz","fileCount":175,"integrity":"sha512-wLmMZTXjGFoqLPU63244P1umXxDVK/7KMxZ9ZpjU4GUgawJQGFywGrnmbdeNc2f1pySIJXWCBtDMY9QWIupriQ==","signatures":[{"sig":"MEYCIQDk9bytcMoKJ0FgaZ3YOpx3CZNSpfletrfMZYJV/9DjuQIhAOaBQEttc523kAyKnBoEXtSIkPW1ociRqBATAd54rP3y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60038534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgUv4OCRA9TVsSAnZWagAAGWoQAI4L3Y4JkagKq3WEC07A\nnwptItv9LGR0OwFXKK8Zld8O3gHOkS5WThIPsSWUi4bJd96aQLHaPflK6DBv\nhR0wr9BOVwERnE8NVRhpdN/C2rPyR12udDOE9P4rY/o9/Je1Uj3ZiM2x8zuo\n8U6vukkC86EP58E5FR95rOmGdW+B3BSqwaQMp/b6oLhicveKaDGrRoGVC3Ab\n7XcX/0jmMA9HXV+fAMU/yyg7Ncr1H9KGLfFWC4Oso2wKkXtMQeh5WFgXP5Z0\nkcUgM+pPD5ry3UhqGAUIpjNWxHtXwM7hSTXAngytAxN/9ueCujDurTZ3il6U\naC+vX5MLBXFUFcIwT1omwy+6UDQdrvsVFeU0r7jLaJTiZzkOaFhED8AdfuuY\nDH5mg22MGqa7BkP7NvhiCjOTYmGj6FQAwoe5rAiSS1Ma3H920IbKivERnp9O\nw6UOVORJtPcPR8sW8Q6h9Ri1UgYWEPXeOYjSbB/BJux3ya+OmmVzxI/NcMKf\nK+1NaVKgKXyYY+arxEU8tuYFMTPMH3BwxXbJWeqESmsB+3b4WWAwDcCmZqLa\njlFfvv0sXNimsSeW93VjriB5KmyBNx0uBA7AGWopT8d8YQYvM1w1ciUvxySo\nIHcc6g7WhK0g5kElSeeOBREFI3Hhj6p2vObmayYHHGa7fFyyXnk35GqyYRA/\nytdI\r\n=ncj/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ec77bff33226fb01f4e38b20e481f8c1fcd9e6c0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210318_1616051725950_0.15831714159613908","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210319":{"name":"typescript","version":"4.3.0-dev.20210319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210319","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3d4326a0f2d3c7c01c518c458020630a4a2abdee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210319.tgz","fileCount":175,"integrity":"sha512-voYL5zbxJ9NBtBK1jCsg6kUkDSeWbppHpJVL4+FfEJCU7lN+zAQ2vL8J+W7g6XqybBNBHuv8uWRa7Oi381o6Ew==","signatures":[{"sig":"MEYCIQDoI5keQhGOLn+A/DGsSseMwa++wHiwLC9MRbmMG8p7cAIhAK0ig/cyJGCekTnXhLJaa/jXia891+cFCN+FejFp+Yqj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59973638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgVFFPCRA9TVsSAnZWagAALcEP/3X+wEdBiDppRVnliGaj\n98MehC5+S19AB0BGJIG/06hIOh+b4i2V7MSumC2C9SXs7H4GjgpoSqsmlVsh\nNZmKHYAoEDxkZJSn0cMcHTdbdnXA6hB8Y5lxmjxciMiHD5H3rTqhTWUnIoF6\nuxUQU9HDWAw/k0PMbGF9SJHy4fSp0GZkdv51Pevzy1kCUuxH0i+yjELTSqiL\nQ7cv8jN0/WLdr1F4CTzL5qEaLwu8QpIzn6jXd9+0EMs5OlGUboAx7ttHUGWK\nTk6MELgD69Mr24sEwHF0mWJGqQTLx6UuWxwhFiFGSVyRVdTQ1+YvrjHsJomW\nQLDJSWKjYayzwdEDodj9mYkzSmqOcGMduJZCcLvbmrJ/et1xiKBMsU2TQM8t\n4e33XtVG5bRj0+0LYmwjVpeilJxYs/DN8oMbU7CGiI2/YErOlJiyIXCwx5qh\nV+ip5KgUjkrCpqKQu5+o9qZ+ts5/SI16b4yfIyc7B0DdUMyUe4DWTt9tk3zJ\nKcSofO6HRYSoqmhYR09c2Lbd6VVa6OGB0rUQhohL0AI35T6rvtZxtBOhA1On\nL9RI6lni/q01x7NHtW9h2d11MDEDiFiDCKnVXSlX00ROeO3Ihw+wGvd4OwsN\nM3GhlaqD9cNvc/6gDWItXVBDPJo0+nJ7n7la7UeQb9p8O3rh2n3uEVW4SJUv\nwDXD\r\n=h98m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"451d4354b94e533907ef3b6362a89435f67577a3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210319_1616138574970_0.9925256089711316","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210322":{"name":"typescript","version":"4.3.0-dev.20210322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210322","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92272daeb7a4c900fa984776c4a7139221fb7042","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210322.tgz","fileCount":175,"integrity":"sha512-uXL/XfoI8FJwmAL2w+eKJhU3NLYpPgAf4EWICxzmva1SDlufogoR/GbLfdN67KX5hWYVVPm5UXC/pUNRXpPPcQ==","signatures":[{"sig":"MEYCIQDXJIfC19zSmL4BzvxciMjKQyk+iQPRd8U7HrmNNWPVIgIhAPXRpzn+dXmtcMxPpq/d1Q1NAfvDa89H9TzCruSJiMUB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59988432,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWEWGCRA9TVsSAnZWagAAAgIP/RHaQUYAjvyy9SnGvuia\ngt+n+04PYeL/313BAIENnhrVB/agLOgiueFFMxidQZUMYUIOVRTozyiDV/s7\nFUNpx9GCHh6REamNp6UNC5s0OIikJF3zxpiabyCx8gmZq6X9Ox1fDKlawCRN\nI1tmU3R+pZ67n8xXRkm++rb/D3tAc1IJYrMqi37h8rWGISuAsYwTj0wqS1P+\npZTpQlXLOk5AuTvL4nbaIjHNWpdpapDlfJxfIWUnckNRngTIAUCKI4X2uKsG\nJZY2MJP9yt5NZOrFu2vxKeFtAh8+Wwd0TGDH9ydV1DsUTbEl1lNKF3dO+VKL\nY5TbGvqWOXOcbugBRUXsknej7Mggp12zh+bA4/QJcGFemhNI1YB9BLrrBuRx\n7WNqP89N3Ed881hkpA58Cgoauyf2lwqdOPrGdeZuaPlQJy5vfZXxhACKuko7\nW4icfRpIJ6/jsvD6TQDRIRkORMeE3JTjbyfn+y9ntf6J55/adoDiI27LM4Uc\nujcvQid9XeWhZQSE7FyXbfSl0D5a7OCedtMLRc7pp1NwqYscmUNXIsvi2anE\nlf2Vb3M7A8M+mAVyBsyCFY7R4aoRzqxJBr6XwKbQBaUmQjPWs3wB5PAifWQs\nHFJ6c2TG8V9sr9tSemTbYH3xybfCCtKQz9tfoBEUVX5LGclRHuHYkMXzukaD\n+TwF\r\n=5MMZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"865cec3ece4e277f10c970283271aeb0751dfbc1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210322_1616397701506_0.8634376157303922","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210323":{"name":"typescript","version":"4.3.0-dev.20210323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210323","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21c6da2d5ff237600d9ee574d8f2701869e6bc02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210323.tgz","fileCount":175,"integrity":"sha512-13er73BHxa49JxfDuKDEmQ2w7F9In/ma5AhO6GxDwgdnlYcQUyvBr8pSx1O3zclWI9JEu1cH88G7j0ZSQQ6t2w==","signatures":[{"sig":"MEYCIQC6xJMzwcUtnnwF2k0ZBTcDCVUwW6bKGQoKQa+d5m1oXgIhAPuGoxOXbGbNpQBH9GFjRf0Q2HagVD4MwVgLTLv6GYcy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60085887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWZXQCRA9TVsSAnZWagAAdrkQAKR+du863FWP5PoMCuwE\nhiYPMfD9h7eskdSSz4uMi+x97gcnvVCI7zFKQ+rWE98a1fY5RhMWQWKCsIdC\nc7NVssRwFWul0DoDFQ66AVfFUJOjGUBvZU2RqzSAdwSwCfhvWtJb5fj/+7At\nqKDCS+shiknrLOo4VwRe9D6Q4EVRArB2BYvylBDN4FCffMYZ2zTAmckw4MPf\npEA7MSuyvH1iJG671iEx/euShyuSP7E12fG0PPX1dS3xU/1ktUaKefugp0mA\nxulHLOo/EbumieryT5PGoeIdgUgkL2d/XQJagfjVjijNNInmvxYD6Fe8paSu\n9mrOxBJtFo1IdSNWsgff3c2bhwsWkLm1a+YgxVsv+SmZf7baIvoeRxTwS/R1\np5d9s+70qY6PJEO2cy8kg9SR1/gd4DH5tWHkB+8+e8SGD5w9d9OWWaCMRYW2\nS3Nqrwgi+RrAh2Nbs6BLs1z6MgD8sIC7UEZitW0YPY3Q1o4YZp3pvTdGAgZ2\nSNXcaynK0qGifpisgVAqUYP0eFg2THV0auO+2MPTwgHxBebhqdZBTsaeyzVF\nA6duSTIvDV0VzY9q8yYDxTJ04BelGiuwhe74hZb7cKM5ZOK4hzkB+C3PewL2\nFFrUxZFj2oOAWXLZX9pR3/0Dw/CRtU0/2+dDaPonQgOWdGV8ZVeVLsOBg0nI\nIKJH\r\n=Vm0h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dcc27ebaf2e21a02d89cd3bec4084184996b72f1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210323_1616483791577_0.9945132674613968","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210324":{"name":"typescript","version":"4.3.0-dev.20210324","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210324","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a548fff6d6370a366c443a3e28e560b7e61be7de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210324.tgz","fileCount":175,"integrity":"sha512-bno/sHDGLofSyD5JCLIK0TDl7F4omBmg67ymaLPEJcYZJPJB0CNq1rwOMwIhrPl6TMZPwICp5ye3z38Mvuo08Q==","signatures":[{"sig":"MEQCIG4Z4flV75zoGwxgKp9ZqTHG1vnLm8IHJOIW4CCXZy98AiB0YTd9je5LLP5DH31E2ICLpV4I5RrdGLKym9H53AsmFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60089819,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWueECRA9TVsSAnZWagAAm+IP/jAyE+yM6A+2i+oXBz5n\n8b685utBQtp8Ci8+xEkQudCaZUs4eL6Ik4p6l6iI9tjGC42NjPncbBs1rTUv\new1DrVDPMRGcNogh36RgdRn0V8PYuVRWc3j5oVW5tJP7tzHvn1ThMb17fk8o\nDCb6alX8GcrwlYvOK7ycdvwnVl4cgOjTTsAMU8svSHaSJa6wFf2GeLYGD7lc\nvDItql7cRGgNj0c8MWJ7m9SJC3TykrUjuOt9Ao5c2HHlODQkIn/lT4DbpQLM\n9jv4JrQrpkh6OqLxRVgG+li3TAde1adaKM/5iVb7U3AgefoRNk22E4W5WBef\n1fcFRULF2qdmjfT6NkX+C7oJ60vUmCTUuAEg5qEPfAmCSBi2VupS3HgMTpmv\nC3J8olyGpHBaGY9mdwxb2xPH7b/uyOVSqZ2D03E9heEwT3+kDlN26qSfdtIO\nKuKeJq3nyD4ZOi7Vv5yaYgnUgBRYLHF1zjw8GSyega71Z2HBqD/mjorvwlu8\n9Nqixc6EGrTXElyayDr79VF/+RyxzB1ECU+nupR2Et1fMzeanWKobtT3SwD/\nP7wblaZJZd3urqJotBzrPRxypuBNfcTCxl9Q7IOrIYticY6gWi2YLFl3v2ss\nZjoy76URkAce8//okfgCd/sRwQY6h0eDSTMSzAsDd2hPH2wC1URFhSSuIs1k\n00Xm\r\n=u8ZW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fb60c9f46e827f83a09b076bfb35cf703692f1f1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210324_1616570243966_0.849288438678073","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210325":{"name":"typescript","version":"4.3.0-dev.20210325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210325","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"497587b0c0b35890028a9aaa87b9c71838776646","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210325.tgz","fileCount":175,"integrity":"sha512-8jY1Bd3oGMcHvcSa+E9xoOkDZt4dH/XjM7iXvXJU/apWVSDX9uhBewnD6fLLbUbxRADqo8f5ghufcqjW4fxaiw==","signatures":[{"sig":"MEQCIAFaXgWYMjvttGTulWHauWZrbNhT2qEgagMclGfaeZJkAiAZNE4udw//BnLKh/BF22oIMEo3sT/hr0YEFmf+US7CDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60262795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgXDkECRA9TVsSAnZWagAAamQQAISmf6x4WGWFgxNNhecf\nqunVc36K7Dnk45U5zYZ14xJgUvIzRsQIhIROkeqCpNUD1C0YcpFm/3c+w+kp\nFF7SCOswvUi4CJ9RP0WBBT157ZJHD2xW8G0+cZFm1FQ0zTihdptVwZW76TC9\nr626GE2i/CX4r9y8xOO+ZRyh/ayOeRqK4hia+El0KPAYFi42jWxPDTJ8RSbJ\nQwT+fd7/ueBEO7bBUZFa2o+FqRR5MHt4hWf5+Gb73MdYyVDkGUD4ije0+YZF\n+sJBuZk2dREH+89tnIcU3GYRikLre85XoS3ELbMIVODuYP4pLOEn9AjxqiVu\n792FNTF8PFXQ7LNxyFUw5lfCoZU3qM7hu6eb/kXXvUwDw6e/4LpAxvbI1N97\nQDFsDwzz+M9PjWtZQLZQ0v9l3vEbvzrK+GcS8BXhw/LP/0eGy2v0uB4C9MDw\nLKoYpzL+YkhZrlYs4uP+v4jTCnm1QsMJ3KUTWTj05G9pZgUPJO3H5msSikk4\nnhYsgtUrHE7d1zLS7MZUAzJLV4YgadcKSW653t3YOyg9xMIZHgKRQBgNFCQs\n3ixS3413KXbeNvObAIHI+pZBRiFtsj6pwX7TZuYJNen3/a7p2K8tTQHelAaY\ndqK3a5Ei/pAIL5oLtH1wRJJqYoTQH/LLuRSfIqo8K0Oy8lSvSB3b91CEPs0V\nPIqa\r\n=TOlt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"42b0e3c4630c129ca39ce0df9fff5f0d1b4dd348","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210325_1616656643207_0.9763903299643739","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210326":{"name":"typescript","version":"4.3.0-dev.20210326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210326","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9fd780b428ece6bd04eff23ea2ed5ee8fb8bec15","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210326.tgz","fileCount":175,"integrity":"sha512-NCU7ks1nNdOA6vbsxVdVYgLoNlxSl3gYq8HFymBNTyd+512AaPC7Y0LScHC/dNatcpQWKmmEadITX/VbCM127w==","signatures":[{"sig":"MEQCIDMZdNlQ/r8CdsM2tXVVnEwERPi23vAzKIDXwbZmd9OzAiA1tXD4rYgJL1Df6fmZEvyngEzrqSNSAh7YK7Ub6Ft2DA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60264664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgXYqMCRA9TVsSAnZWagAAM6EP/3e/FOXvG2MqBWL+sS1B\n+QkZcl+WSEQoqlKpQbGSVHhBR84r4eVS3mYDR7yy1BVwvBCZ6Q/79O0ez3G8\nriloSahW2b0WAcS3wVAJP0YnmoNTh1T9biz26q9ahQTlqy5cgyPbDi3iLNp0\nAATnW6FoXDS/MNlHCb6ziUXvo8IfjbSVPvziC/LV5doG9l8opzY8/DTfxb5t\nlhuF4YEUhsSd8D24hBEItxoyniAqt3wZbp+FQ2uYBC4MRGrAAizO+ZMf2w4C\nBa0+yBQoD8F95ueSmZaLUeNFYdmxQ0nVcq3+dizQ0RpYjaVTkDP0e6OkMBnY\nzXTmLB+p5ATaVqdVBvZTI2PA7eoxIMHN/404RxihhPs8NUuopCQQ0MvmgfHW\nmeVnTI5nOVDWI35C6GvFZxdxcJ63JJLcYHcZrX8A6fArqgxE1dwlQHBM5c1Y\nkb7h67DNNB3a3rJLLIiGx0XPPMgs2BZXWOMAvQcUvmAzBuXasPUzszxsAvZb\nf+p/t2LjdfGM7NgUAf+3T6QS9UPbbdbQfIcxWYW6DHUezuFq3BRQb/RUcGkT\nR9feSiTphxxmo4XSmimnOuZD/4Ho0dGcR0jlzJ4svlfqKO4Dlkk8Jc6ivkk+\nzFrNqhk4rdXeZwB9cziXM1FT+HBf+Qf5ANStXUQXZKullHAdCCwKp06Z6eYB\nMnRJ\r\n=BLgR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b34e705672cc31b86ce9291f1e234b387aaa3184","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210326_1616743051706_0.9330988406461325","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210327":{"name":"typescript","version":"4.3.0-dev.20210327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210327","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8d391177b504a010e4d5a8c6a42333365c8f1012","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210327.tgz","fileCount":175,"integrity":"sha512-NAJER34OrUlyA665+xxPLu2peQ5ZHP6OEEV/3SJUsbqR/uYNZyFAAMUaJxHZPnBZL6Tt5kf7wBaRNZjEUJPSug==","signatures":[{"sig":"MEQCIFIh6dKXH2Ktt71mxO2O/9HIiyZJ4G5t8cVdAFs1EjhxAiBQtKVpQTEh5FKxCHZiFyJrnhmHCaS3xpRBN0R31euXiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60573207,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgXtutCRA9TVsSAnZWagAAkioP/2MOXkSY8LXAnkAeE6NB\nzNag77MVbkQOLu/HlcamxdXaTje3uDds7itieuKk+VAzZ1fBx5eiWgCB65Fn\nSZ/Sas2/BjFIw9T59RSTGGqbXIQmzEnGpq4DMrhdi0Gvs12qlvcg096PbLt/\nMm1FdGG19OgksPFsw6z1XW7WoxM+J2Iw2cQwBoNdVE1w+6Ih3D9LBzwF7ET9\nwd53u+unCnDItfkpNVWnu/STKAN/cHrg+7MWlQgwYb1p7Jz3CTU07znjGFKL\nfVUYdjS3wDTIBzZ+sGrCJO7+Yb6okteH4C89sTB2/+TTwnATTw6F4aeKC/B9\nRy3rQ8gGjwsbgbW4YUPvo4/qg4kOi+nSZnGwoWlx/y3t3KPPR3pGwdEfIzxi\nBmPh7eLUOnYy2JaEKUmcazE41MrIq3qt8ta31Zxq8e8fSf7LTk20LCIv2+bP\nEwhFwJjBS3W3YZ0Nt3Q5bJELHi4yAyHDVPHWnVdEPpN3mQOt2L1R+v/Ox6ti\nXPZsyfF4BgT++9slnurMLm97/HmirPdR800p0cqoObUCFS/Vu64WmLfLpmMo\nLxL2x7Br4KUQC/1RxZCXIhBhvAuvE6L6zUQUV9XCzQK5KCMC2rb+Am4Drjxb\nzt6HTdP+r+CnJcv+UyBzw4MgA2KBHxzn7V7n30C5WL0JtJbeasydb2qZY17F\nCMF5\r\n=LhBH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2ac888bf5f18107fd4fe231d5fcc5980ee446674","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210327_1616829356497_0.7524595168188033","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210328":{"name":"typescript","version":"4.3.0-dev.20210328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210328","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b830b8b1ca8cb566c421603e6a6b68becaace914","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210328.tgz","fileCount":175,"integrity":"sha512-wwUbi0Xzio6GOjz2IDdsmrtQy02Dwz0wbL9QJshJuGTW+6V2mTox1f75wpjm/5YlrVeyITGTTrPvW0c1S7l0mQ==","signatures":[{"sig":"MEUCIDK6k8OXbgSDo7QGqBca54vfjAUcYK7BAF6SLeA2Iv/JAiEA8/0Rh6R+o1XRYEB6SAqoMfy28mmW7ONp45DvrV8cer8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60573207,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgYC26CRA9TVsSAnZWagAAWxgP/ReyWPjWP/xFPQ4+9iGi\njgsJMZDSKuRPPPWPwJXLv+vtZsg4rPmCiYORLGb3GwsGxVTyI9kgqdi9HJU2\nVfP3brAN+eoIhJYxFBnrtuvXpKa43waxd7HAu+wxtGgdFqddVz4aNybaqKq5\ngKqisCP/OG7V81S5KQWw+3ULy6L2KjpYBWORsKA/FXCrUfZklR6vvq17VHEY\nHpTMNeoVBs5GuGj1jPV+z4z/oRrGy96wcDXC+/zqE1ZObboosOhnN8TO+nSV\nFF6gZz+/8qIApVhUkQGVLrgSB6i4mJl5hUPz6AM3Omxgr6P8P18hVSmkyeye\nqJ63WcsKJYRXzW5+2LcH++sbN2tx41dTbcjMq59r3QrfJKHc7ixn0rq88qKb\n1Xtg3niU65Mbe4rqny7J5Rfl3L36lNLA9H8gQ9lVRe6QBo0G3WN7Sf+QtQyw\n147OjhnkAz+L1iapROxOQJ3BmFcRLBTclisejELJcqB5swZTgarQvyQJz+Ay\n0kZsKUoBHBZOkpxTKyrtRGooydjakVFxMbG8d05IyIu7KkzWY/QALZ2xk0Je\nIjEj9adOV9wyNXxzJ4m0Z4qCerXjzpgIO3ZMtRwBeOSW9n1eDqq+1amrA9iG\naaYC1r5efrM5sec2W08MeHWJ+AeVL8CuYoZol1tkwEtwaotd2bEpQSYxgpYJ\nAWGA\r\n=8Jme\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"451089e8ef2eae022e2a4b2171259fcba97f288d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210328_1616915897638_0.49870536653764064","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210329":{"name":"typescript","version":"4.3.0-dev.20210329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210329","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4fd91c196737f86d09fd66ed8c0316c3863964c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210329.tgz","fileCount":175,"integrity":"sha512-kKxDSUJ/MFG83EcViMB7ES+uHLYnVT9SVMn1EOtH3IxtYOdUuNW/4WRfoZcjp9Eu2pk847BfuCf4+kEJNwvfMA==","signatures":[{"sig":"MEUCIE7Kuoqg6Wl8DzJgHsXSNPW7q6RXAxMWdlEhbSHoECWuAiEAzR0pGRdgZWndKY75E1V/PmXo0yfVrpNbAsn6TN+6ZyQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60592352,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgYX9cCRA9TVsSAnZWagAAvSwP/304cma1gZEujKT0zmNk\nRBJ9NaiLHB5JgKwW2u2ZhpFgaNj7fnioEkhfnquI8m5JmHCbPYgwlPD8YNRc\nVtobXqgL5Mdpd+mrpIblJPZHy5XkUNy2gKs+QZ52/E4Fe4bHbFh4zQXdcurD\nSGNMNPfiyhe0sQBxDl8ZzvPEIe3QOip/Es9JUhUQ6wPuAPPEcQg2vh69yOND\nQO/HAzzNZNcOCu4vflpVa071Jv/o/2EY7UtfRP+b/upg483fTNvK6eFjLWlf\ntCBrUoxc4dVYLsFEg4y/r30yU0r8s4wMnokzm/2+p5ezMHfNFynzNhprCI5p\niqstq4mH0UZRg0ncXkM7sonyzvaASnUtsC9uwgY3ExNRlxtzZEBiyCyuG9nx\nj9iH82cYecCXcCFa6nKJdrd99U53MfzuSbuhL0G3hSt3ucisUDB7I7CCj7Ur\nUDbtjED3tnrZJ2Nd5nhcSo4QpA3386XI5LDiiwaEucBLK6bFRlkMsdBHAtvV\nYZzDErxai6wwJrzE5+Qik1jNLGMuBBHIZp2FApsj7nKHV6wasuZDp/Gtwiaj\n3+N9RtZLlAS/52TYb6gHbp9VhREoz3QZeE6vFMxwkBDXwdcXdfxgO6K+JZNN\ncshV7gaEX/u4ztV7m07Ek/EWV9jeF4JDpAwwfcJByYi4NnkOmE6ahXJLjkvq\n0KI5\r\n=G1f2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b1571fcb71501d16f21173979365d4c4d53a11cb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210329_1617002331699_0.9644064191831074","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210330":{"name":"typescript","version":"4.3.0-dev.20210330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210330","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d8ac321a4083b30159b47c9aa21d9026d66bc3c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210330.tgz","fileCount":175,"integrity":"sha512-QvcevtZWd2yflF5499EUAxao78bIHRzvzoZdPZKB0V+nh5RkTPQzrQXPxd76pv/cIaumqUhvlB+SEI8KB2COIw==","signatures":[{"sig":"MEUCIQDe+Eok9bjvczswNmF4usp7bQYWLUCqPR7R7tPU6g7chAIgfHkrjxjNLIjZVDiQS6BNf0ppjpOepV79EZR+sd3BXPQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60593632,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgYtDSCRA9TVsSAnZWagAA0TIP/ixahcqIbMXDgMSKN2w+\nYaMULKIPJT2q/yyjz6FMU+LxFaOHBBaYOGX+u0QdrkBsyx7fipeIjrLpWroO\nRbG/HZXvQUkmY6YqR5pq03+36XKDPQ6oeVqEj2+jbfIpfOztWj4bomHrBAEH\n3TXEIs3/24VEHrk6vn8wLbCir/ajbWuIvvnX7W97HQla52s3hrRPj6/tV/sA\nFJiuxdKKkQ4vFux6E4RJpjT+BVIE7rWGsvfeH3o/aXgJnN9s8OfUVU5CTsI0\ngnSZfzXEHsUbF/p9keqSBg7be56YJa1IHdIWQgvel734P5fCWkDD2xW5/t7E\nnt4ZiebCdcwzHMagEXcItP42nAJ9rygP1xKuJ4/UGkAUFgu/4UZzUlC0PkbU\ngXw373VDX9q9qTjTrzHYkqdyL+E/gnA1FP0JLCOpKFN8rQWVMLp/oD8L0M8L\nYLqkTxB84mQFpAtmnpmZHr4dnrEGsTB3Yyx7wkRHWwUalqQvf8IM1Ip3HZxA\niOax5UtuoLkBV/HL035/UuXapGzWcmbh7FMdQkHIBfLLpWHn2yM8r5sWBGg5\nzh40/IXWNLkMS7Igm1rbAQyfLttQc/jt3t9iQSDH9VR6zCpqvtcthQOmr8rG\nJiRMWVSfvETvyKVQraalc9r9CNT4rKdpEAa1tOrcKt5EjBaqD26ugOmtmlWB\nhGdE\r\n=Cr+j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"294a5a7d784a5a95a8048ee990400979a6bc3a1c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210330_1617088721178_0.03755595410048529","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210331":{"name":"typescript","version":"4.3.0-dev.20210331","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210331","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d9e176206798edd66410c52002d6e4f7ae6b4271","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210331.tgz","fileCount":175,"integrity":"sha512-4yniVMW2gmWWtbaaSibGXDtac67UHFj0bobIsTKFtl4iDvjf4JI0m2eTQ6Mlqb9Nky/exI3Fp2GGUBa2TtpmHQ==","signatures":[{"sig":"MEUCIFKremOjEh2MW5YLMt+e3BOcY+hI9UwTu5WaYk3F/fgwAiEAzmcqbXTzscCDM8gw8pMuGfXFekwID0tMsFlbYdLQJW8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60602139,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZCKeCRA9TVsSAnZWagAA0GgP/R+f2bE1337FYCfnUv52\nc0t+NNr7UJfobEbHO9zTsBFCdPR9LprtIiGaXSqimq8xljziKBt/AM5iTJQk\nEBwozIyWNIb0lA9BcvzuwMtpj68Gs5Vv2C8C5QANaaw0H3NkF7heLHelSCdv\nlTy3mnGVwHdJvySyRRghpVdBPPM7QQ6m07odera8mB9/CtIQ/QNalPCqOjjl\ndnAYCatgHJLbTesoupKGElbJ02oJQFVpBhoUWlk9i3IxOevQizIXyACHe2B5\n3pP+Puc4ifv7BAjzONe2a097taVeanQeUBcJReydPqDp28pcWY4HahsgpQoT\nPG2SYUYjQFd2u86iXySJUfNzunv47llUbtXWkwhXIIzTBsSoOcDadvsxu4nN\nhUmGMkayGe7QYGJeAltbcwAPJ+/QuP7VpRSbGBi90gL0JMMVy/RfDHLMLidf\nAm9f86rSAP0KVKXXs60UbGawudEdgOvqVizWy0lxyqRrdN70bHPfUPWlNQWu\n+pPrsStZIYb8B6f2W38RoMVRHBALWnhT6WTpgvvrwK8RMWDJptftw3Eo0V9N\n+9o5xRc6MmrKIlWQRTKv1k22/zye/P6WREpP+gab0khbxlCg6zgBOzCh1qHM\n0E2euXVShwtOtEJwiWHMmkimNTI38oBRIVNxMlYjFCoZPktUDJucEtMcvddn\nSfid\r\n=CoSR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5b7838e6faaa9590cef80747a35a1d0ae99004e1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210331_1617175197793_0.7028891962978501","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210401":{"name":"typescript","version":"4.3.0-dev.20210401","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210401","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4d48b29dd7c8617d51b55c1152d6531b28304223","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210401.tgz","fileCount":175,"integrity":"sha512-CVEwofJvklq6xj1NK25nhh9diBOKOIdQTd4S6sOmB9aKcPtFvUC9XS/4w1NLZB6o+AazPrCilXJVmRzU6EdF8g==","signatures":[{"sig":"MEQCICtb7RKCoEpZPakvWtDL1/jN2/lZLUHkHqk9N40RoU8YAiACKCWUATUncU9il1Lagj59S0sVZiRpiH/+rRkAn2bASQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60601378,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZXQSCRA9TVsSAnZWagAAe+oP/39Xw5yShm0SoMNKF30b\naIkx5NK+5H0bR0jypnImXbQKXTUhdIuKCgupaf1d1al/Vq39JmoxumihFNVc\nVCo5zQDpDu+fUlzCi6cOY1wEYWdLXFmJ/XRdodW1nzdAZg1YNpgGQOpTJUFF\n+UqdYKMnacmZe6j6qWcH74Ard5inxCFGNwLWHN1UAvliT75HseSExYqWyb5R\nq8fHXXVIp5YrHABlxP/oCkgT69s7+vx+757pRQJuINR+XfPXxmKWDeZd27Ot\nrizRpfI9UCHKH4pAUyLcPX59YL5FvLk8dmTwhcJR5Iy/Q65he1SjPgtqGOE2\ncsruiVpgihHBL6K49HqwhlCQsyeT9Od3pB5UtyqtC0cZUM7z5ndNT01xxByP\n8wXk6FF+mzb6ZpP2O5yivxz6tZz4QK6Gaj22AGN+DHBiksdtqxuPbnBzBGMm\nINVNshM6/cLqt9zY3tMhOfxX2ZXKHeifadsDfPxLLWMnzR0fOipmFyW5iAue\nnSmQT/BDsNnGsSHI92XkPsJG+Vfwzuwv/I+V7oVogByWmbcAhLs5n9LzfHZa\np0m3ZKCYZKHSrBY9RKh/paJS3lf/FBV+oUOQ1ETPRKjoefDNdSLZVDHTNQ0N\nF0zzKah6hSOuQGUDXPC58Y6swfz5z+GmFxyiGF3N3re7/4WlR+lqoqKTpz5b\nuBi3\r\n=6GwO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8f8a579eee719bd2c95c7a0b0e27de4f0bdc14aa","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210401_1617261586062_0.903426784990198","host":"s3://npm-registry-packages"}},"4.3.0-beta":{"name":"typescript","version":"4.3.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8098e7be29032f09827e94b8e3a6befc9ff70c77","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-beta.tgz","fileCount":175,"integrity":"sha512-bl3wxSVL6gWLQFa466Vm5Vk3z0BNx+QxWhb9wFiYEHm6H8oqFd8Wo3XjgCVxAa5yiSFFKgo/ngBpXdIwqo5o0A==","signatures":[{"sig":"MEYCIQDks4A25NMCvvsMxK9CE3aEyvHeJHB/Gl8FGQay9WpfWAIhAPXu6Pdjt43pdzm5tXWIeNgbq4jKXYLMu7qaZA0x3o2n","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60584703,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZil3CRA9TVsSAnZWagAAH+YQAJyXGHoXcseIIopM6REp\nqCJyTzeKCNHpRnZh1e53pA2sXtgHfQer+2jmLgj5KSSDKTwMjdKMH8T2ZD7m\nWPsDFFUdWlgchLFFRv9aSzpF3NGnUAc+RYrJIqxilr09qWI/rQXjoiIL0Hvk\n4YCA2sR2le09B0hMdrTSvospWFZwG8JVNl4NG2cQFBeRk32P+StJ4TpaZt12\nopl0PC1y2KdNWryvLnnn2FE2nIE2F8CGjjM90jiREaKV3hcTBzpVpIHxbfVN\nrw3YU8YBW76dvy8h05ds5Rb+TLPWrcXATUvd4elRJP+CLkm4cUuX0ivK082P\nMG1GMXIuN4eMeyo09qVLcRiznez5neIhEqueSF3ZhBcXQdxljlP6MIkBO5tH\nMNOs6guV4CqPTtfdDvq0HmsR6IaoQj8/81cpOBuOh1+Qn5jgsWq8tiqj0Tre\nxzbajtYTmy1LZSX5b9ZL42shny2tE1ncRsjGb4Qywln+HdVaeCOMkXb4eQZW\nSVYOmmhLFSyieNXp3K2Veka2YiAGBjTAamAjl4t5ZsdXtdR4KxkagWGZOeGh\nEWt81eDP5KnAVhh6rO6z3JE+ui4mKubCRcB4QIL7R/A5eck1FEohVeIWSXN2\nr1gIevk+n8EY9F9I0uedozPE4phjc/z7G7RU/2r1+ASsuIf1TtNQmd95XEsu\naYX6\r\n=F9Uk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.16.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-beta_1617308022832_0.38346545777221586","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210402":{"name":"typescript","version":"4.3.0-dev.20210402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210402","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d64a029984ff37ab34fe67e5e7fac660316bbefd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210402.tgz","fileCount":175,"integrity":"sha512-ooxNNh58EG4T3WZ6dfOee37bd4ZitxPaUg9zWo4rSsqmMeQoaLB6oDVCHmZuqygkfWUuTTnxcj0CgmS4kT5yyg==","signatures":[{"sig":"MEYCIQC6VwCM/oF0hSeB5FjcyB87S3PuKvLdqiaL9cHrOLbS4AIhALNJi1rbZwoiN4AJjHcdQKIoXw9xD6bMp4+qTPWQenOE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60601715,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZsWFCRA9TVsSAnZWagAAHS8P/0pzeH21oMKT4rh519lI\n3oRyBxZAvQdmcMWxj5Y++O6dumA+xhORFM8dRFxjQBwmeda9LmGzKTq7c8o2\nJkGEyJDHqpSVymJWNO3rLaW+NCtagR2BaoHYz0kmPDoa38ndcM3q/clELIuW\nPD29MHiqFwh9NWIwZ3MKcUFIRiFoZGwjFM1iWev9pkFciUHruAYtQyrMjjkF\nBgPqkyX/Ic6BduEwU9FLh5Q98f5YTLVMGcK6S2LXo4U4jsRAb3h2f6osSV9Q\nez6ZleI0ai979PN85yUm0zYahpZVSmUZeBsa+MNf0hsavNxgAckLF2umyPTZ\nNBCoGt/LK8pgxY4qBB6TmkECdEDBGtA03YHcD4M8VvwdWvO2UTGxLDpUu0Jn\nXDO2LqosROaI90UY5wnoUjLE6ShifkZI9obeaLF8tLq0oHgSX3HCJB6roM2S\nFcPS6LEUlKZQYhwmJX42NspERyVYnhZbCl0uR2u5OV8z2RxAAx7Etn/2r1Ao\nC70kH0N7PKMsU63SYveoj4X06TgxYz3+Mpe6QM56BeNNUJ/Pcil1tX0z9nZf\nnejUQVCnKc3ZM2HcilhhG9x0EM7zlopiDBTcfIb0Weyy54n1hhxrDzu36S/8\nECW0YmsUqE/RcTwEhNpBbh/wPUfVgB/pxrE0/w3UYTaK7tu1Vyo1MHZnJ87H\niz5g\r\n=6x9T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f9b35cd302a6746fd281de1d39cdf7f8c8860cee","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210402_1617347972726_0.12780524279754446","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210403":{"name":"typescript","version":"4.3.0-dev.20210403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210403","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"06b4d372a047c86b9e80ae34e1163dbb1aa1abb0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210403.tgz","fileCount":175,"integrity":"sha512-FnzOpginIeZYd02JN6I5nE5a6+AA8P0KUdcJ5sVkLprFLtUNDZ99fq3pWg9F9Znvrq8RTbJJhkt7Ap5r4tURNw==","signatures":[{"sig":"MEQCIEzxw1goqoTaVOMbDjUaZ2rjQjgbngCCKSDziz8QavIdAiAC0HA3Z+nsJcAu8OpqO2ki6p+pigF6YVk4cjsJZZIoUA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60602951,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgaBbBCRA9TVsSAnZWagAArIYP/R71DIJTd2AVq1T6/p1f\nixnGphaLo/Phgu4donL7JGlieJKbEriGyMXz9RDk5tJNXBW/1m2YFOR5eNVs\naa5XihPJxdH6bzlmWVAJH7WafTERA5+s+hks52b7HD1m0I3Ky/h4GzhgczAi\n4QeQ/IcEnrNp/cmn9maF1qK8RurCJFus4lekB72DhRyvO5p2IyLIeel4gIKk\nkDDDojUe8y/5BBq8fWhTZt5bKxtHVPKv8CAK/NXpcOX7D+2ZYt3yLDl3TOu1\nDn+Bcy4lyfqL0fasiwDMzhCAxuuR+jKWpLbCI8pZW031rD2sMhU6t1JXDpnO\nIp4Lm1C5vrAHduQdMyhMinKplTTAial+haEjgGeHBTtcn1Onslr/507fBfPi\ntB/O/dik3MeO5lm7awD3NMeBnzxMrqQb+P3ZyiACLx0Ty0cK0t6DpIfk36do\nn6qKonO3Lx5xQ2s8xshfG0LNUsw/2sZzlCI7XDeQKyF+6AxGzXekakfHjsu0\niXBoVt6TcarA0meCBqdh3ibMqtaS2KksypQSXDCt4o4i0vkmJlvqldQuzRvu\nqlwI5G9salAw63uF5dCR94yjmBn4pN2/Rr5XSftwZcjK8BJq1x7nLx+CcdjD\nFjK7kWLSfWc3L4khaimrEymmc1phy3qLuHTWpawVsvtbo7prExzVqMgeKegY\ndTt7\r\n=4Amj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dfc380aeeac171ee0c595b5a28ced7eb962110b1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210403_1617434304343_0.437108296860655","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210404":{"name":"typescript","version":"4.3.0-dev.20210404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210404","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6199e64a70ce550c2d270b04f8580a4f5f9a22f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210404.tgz","fileCount":175,"integrity":"sha512-j5JMjB/KNX1bnFrojw3kLdbye/bYp8ZKVeZ1Fv//Bda+aea0+0sYa2iX/4QgD+G7OiDwMWo/ZvPO02fYoEBArQ==","signatures":[{"sig":"MEUCIAHKksD3kGmqOx3Tg9HFd/Ghq34HP9wHN21FDTQ0KtTWAiEA3Bzc7K6OoqiwboFkT45BT6KNKFnQ+Y4ftVxM3pUzc3I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60602951,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgaWhECRA9TVsSAnZWagAA7+YQAI1UGy280PunqBFogHmT\nJlxDATjWyIv274/6KVVO9ST7EOMH9g7XrOGYBfrVwMKMRygfYMnHo5ovLvei\nAyxVNxFpEOvnZVAYRrBIRYyXgA6tHq0a8F4Ksg0+qeHT7aDbQCvrQdqG1Kv4\ngm0J/WgLj+J59UPiK5LgRa4MRPPnZeuEMYpUj1GjeMMJTapa1CIf8K+rhuow\nLm3aMr7Yj9FBGufoQG/q/+/RqOyxZpS8TtgyGmA4yDnJpvf0295HvFdDN8UT\nvEwy7L295xGi18I0OZ+zgA2pKQB0DG3DLzoLYxtfXGEkmDyz7AK12IlxycN4\nry92vXUtBk0/Bf0B5qRoQGiSMB8VfvMlFl94buRNo1j93swTz9nXpyIPy/XU\n0aOpuCbcDRyCYGf5Z2N85zNkRR8eB2mPq6ClOJLujSjXvZe5AA7QnLEtIb+W\nMpYzkaUYCGkNvbSAkMhR3VwpVI5GN92lMVtCliuRk+fd2Sa+bRzaR1cfVvSp\nFrT0HVrEckXjF00zN6IIk312OWnQMOvEjtIDV/l0ZdMm2mKHR66jjfN+02z4\nfiRM05stk4M1ZQMbFAjMVSvch6LMpgo33nkGElVmYZjUb1pbLpp3guyALeo+\nxzkRvJLCqj/gFhbugKgkYg0ytMqEBviOYg8hpxzEsby79Xk4tUeBZqHbIrQH\nOrfB\r\n=HDAZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"61a9a883a1485c9bd7ac94eb8d591f6b7113b785","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210404_1617520707396_0.2831552359587448","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210405":{"name":"typescript","version":"4.3.0-dev.20210405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210405","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"33af6d23c43f08f2dd6b569b8ac965819ac4ab7d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210405.tgz","fileCount":175,"integrity":"sha512-MAyzFoV6zJCa/3HzQfWqh6WeFtfmO08MsPT1ygN+c6cfN0yyHFsrL473pm2YyQ493p9zz3THIOr95jAwLmA9HQ==","signatures":[{"sig":"MEQCIBHvNOMUTl+eM6RQhoglOlP53eGwtLFm0GXxQ9s5EiBFAiABOwZhXXJwFrMzeEA6p6Z64y5zALsvfZZd7Ejw2XJ6QA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60602951,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgarppCRA9TVsSAnZWagAAHo0P/AvFhKbil0SvwVdDuUCk\nkzW0NbHoNQgWUgq1Nq3WXC1iUHUN5/hAw6eFIMwozRVxIy1NGYjwVzTYEnkh\n+sXbWHuieIj4soZ0KmukkUTZMAohqHkCBge3tvLVsyuh6Alo9+vM+oo/2vUg\nwD0mxKGufcALaIgyhYM6tZdlenUD9EtYTaqByEfrBnnDBGOsvRfhVe473qK1\nogqE0RTn1kxrB2DDy6jVPSov20iROV3lCNJc0EPhFd8UUEBA3uiTqI8s/ZKY\nCgInaqG9EscqrbGoW3eCpucAXnXS6g+h2Wga514Z0Kozt+LyrG+tVZ4S0VOw\noGh1pn5psIwruJgv8HC6G5+DIct8pW3d46q4YdnMf9NWOVzbVf5qsP6NwAZH\n8LBzJrktLKL0XEFcGseUznRf3CBqxc+ZGFAoyPIgNIU6Yat4S/S/YgLuG1qs\nPxZd5hE00yifH5/hCkbcwLX/vu8lL8GoPZun5Ei2ed7Ia6ecAzt1zc8hsR93\nzKyFc3sIRuMJGq5K3w3LyOdRdPwOHm7i887dyWvhCYTsS5wWri2d+UIZozgd\n9qjKR9N6N493iYY1Ck++vYogodtPmnmM0hV8GUlGtkDWC+QsADVEZALDKsXx\nld873V7qXK35/pvgYM0pi3dPg9km0EWiKsZLl/UF0H3OkC4jsEg9JhjNzt3L\n80ya\r\n=BeyJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"889a10368112ee9ec02925e05f50d85efe7aa7be","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210405_1617607272067_0.5888803079535527","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210406":{"name":"typescript","version":"4.3.0-dev.20210406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210406","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6994270b6bfd539c1946e2b548f5a9706f448fce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210406.tgz","fileCount":175,"integrity":"sha512-GQ6DfMTuUsy9oWOjrzBNL/aLgVy6ef/vS1j0iILTaaAc0tojeMIs5LNQMVc0aclcuuKnzuv9jXrBcpc045JWgQ==","signatures":[{"sig":"MEQCIG9ecK4iZB9yVHCnZSb6uIJXNYBr5M48ecHtveKlxs+wAiAtp9+aKIfG//VKnn0MOrarTSz1lPonhEua7EpRUGoZUg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60644029,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbAslCRA9TVsSAnZWagAAmmsP/ieiePjo0LJXSDu3ck5T\nZ18V8xcEFNsdvILqCpJWfzwZm2FG4sCBLQhYN4mYkIgwQXEuf5Q2fcBIjw+e\nsx3pmfRF0qY9bViH/Yj0IT+zSphhV3TG56leu/r91nREfCfHU6aABj1h2FXr\niqunuQgpvxBajvuHVhI04MPMFA7lF0rp6Pl0wiMBVSK8LSSAZMEec2zeJUf0\nMw8Yk9xss3j5bzRnMhvKYvszx8EHcIEQKw9zXjDYGHOS1iopPwgwZ17Nlgfv\nb/zygJEAA0OERlrH7hqAhsUv+d5BZhCQxgYuNIKMz+F6m1IKUpNoVjffMCbY\n/3gMK7RS4VQHxyXHHYQdlfqHaHgLHis4CirGA7I2dn1iET0kqZ/wR0nZPGo3\n4CsBA4ZH4XN+h8+b/miqX0eSliTpug6i4fF/237JkHkNAeaZsRN8sssMTJ5I\nRVieMVl29bO6CLTIGDM5GUaWbKfiv3XFXkJdvOJc9Vij+N9ZTQqxAeSudlQO\nXMiNK/TIevVnZ5Ouo6QDYavNcbDlSnZ1ZpUS4r82WW1NYCrj4zyy0BvXiTHF\n8EdpQclksW/G55qsZV4b0kCnSK4eukBPFmWc/O3+2KmtGedCn3HLdxunn/Nc\nlWaJuXuQ2WCBNLu3O8sKs/SGF1+YqXJ6vEKh+OvZwVjynBZlaPwzSk2uNJEO\nAQ2K\r\n=XXkE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b06ef1a733904013d67cb1e1fdb366082f0f9dd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210406_1617693476563_0.14594838703750113","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210407":{"name":"typescript","version":"4.3.0-dev.20210407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210407","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9a64dab0cd55c3baaee9a08d5eba5b6d2bee586c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210407.tgz","fileCount":175,"integrity":"sha512-zblU754+4x72OX0sWijDz/XmW6K4rgJ5DDYxLfrySU8QJWXR4i6VRgkBP03Jq1EjUfOR6cYsRXl5/wU0LNrhpA==","signatures":[{"sig":"MEUCIQDRfCWcZpHpjXCp9/ANRNmBEY7Jw2yFmzK9XL1cChkBhwIgGMJYxEJqlRxcKxSXb5MZ3cGh7k6CutN7jyLMjX+dO7o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60660465,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbVzGCRA9TVsSAnZWagAAkgcP+wfXjxYHqcQY+a/Kzf35\nDxsaPuvy/S5dzfGjdv99HeyPuhffbqEpwNpvqCdw+1e8iC33aBCLIDKP4NJ1\n6M6qh2yWuTnieLWwh50Hy4CZIwQZ6MNJshVtDnxYImGhkqlhGXj9dy3M5aoq\nuLST7xbozbE9t0Ox8B3w8ccDK8V+qTCqBauOI5hFjRCmO+rKasDvaQlHTIG0\nSdlxiNIOH6OACxyougK+Y0xEsrI4bVyQvlEM0Bx2YaNTjzuw+2Xa2QTgjJsv\nhUHDj1Gu7ng28+eGZKQTxDdIbQTFmjygxhHiBaUfKJaxq5XR3VeYdKSpZNEW\n60592udwTAnqgv5DWBwNi/KtDBeX3EjGO+II0I5JENUfDUXI7PS3eh6VvtJp\nr7Dl+AkYLXSUmjDD+AW7sJYg6WjEjuNusDELCMsP4in74mTJECs975JF0Oji\noZWECQQDxCCtP7dNs+Y4q1BwPwnyHO/cfk/JRU7JndbjAcYfVcq7R0VLwZmj\nGlY8fXgsP11JamhSdK6Na0TqJ72JBheXCAvHggoYSqPcH4wj/aaZefI3e6nv\nVuNxkIe0Qtao9sm6W3V86KRVGqMCgRIlonbFTQqIRbp/gqgxuWx8ISgqtoVB\nd/S7QWUpugGEzhEVrJw0sGzd/qPzlWgrDyyJ+J364wcZrrQRemw8PmRgT5zR\nOhl3\r\n=fb1t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c1923e9cd1bfd54fe4d4ec5ea11749d1701b2c6b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.21.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210407_1617779909988_0.15390401330383963","host":"s3://npm-registry-packages"}},"4.2.4":{"name":"typescript","version":"4.2.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.2.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8610b59747de028fda898a8aef0e103f156d0961","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.2.4.tgz","fileCount":170,"integrity":"sha512-V+evlYHZnQkaz8TRBuxTA92yZBPotr5H+WhQ7bD3hZUndx5tGOa1fuCgeSjxAzM1RiN5IzvadIXTVefuuwZCRg==","signatures":[{"sig":"MEYCIQD4/egzIz3etUyDUtQ6dn+9Ako+FNb/BVlJqkVh9CWIbwIhANq1ntB7dlqsqSdsn1RDhs8ZtRwxbkOpMC7D8edpqVnV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59186523,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbf+bCRA9TVsSAnZWagAAnhoP/27TuRRsjjNINh5x/Boe\nbHSKWXUKJaTC6LBIfGeLFNF82PQTHm4QyJovF/vsbqye1fhrUQdJwo5aJ71T\nWu4RfQCBUWtz0f6JSoG7oEUxZiCnR2Zi8uykbipa3dnAOHzOT8oTmZuUtLbe\nxGfArB8olZYx5BVQ9mrnXfpGEsc+qLuamVJnatIoXYe0xQchWul5B/821PbA\nlTUKLOhSUiV2L5tzDejJqXVQahiicnAUXUxzPvDVXRGP5VjpDn2rfdL0bnUC\njM4Ox+YmIzte0rT1ECLjQKQM3cBZuDj/4kqV8xF0630yY5Eg2eVNp0nSwzVB\n5qh3b8AZR/BUmBMC18LwMMD960VdYtcII4Om3i0N0mlnU3dvDtSP9TtfmVLq\njjmY5CIV+adbIqpd7n/o5Q6Gj/FjUjGFoaaap7dKFRTARhW1xDsRe+naHgsL\neh1UHVPTlc9X0u2iUWxpoAdJNmlI2FQ97xCFYw9A3yU6Du/JuwRrW60ytVqX\nvcMqmris/tJNmxZ1N8D6Tp1ygQTJLDqLqskmENLxbV4GGJbd/PXWQCFWZmrG\nBSOmQ+PnKLI1QThcloDTvaCcZbYA9GR6NmBtIPWlKF9IXLXwgDr3ldi6ti8s\nmOipEvb0fBFqxhylCIiDe60FGmFPocFsZt++DZk1MRu6AiA+bXl/ARqbVMvb\nzZFz\r\n=OnPs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.16.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.2.4_1617821594239_0.6272505456067419","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210408":{"name":"typescript","version":"4.3.0-dev.20210408","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210408","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e603a54a185639e7dd42a3f78f7648d621b3789","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210408.tgz","fileCount":175,"integrity":"sha512-5Ln6uHIvUrwmKuKldAa6CaXqYdhH0IpzdBZcVOxWMnjf1POmDuIVKuBCmmb9HnZgTWjpzMQtkbyICFG2qf06Rw==","signatures":[{"sig":"MEUCIGITo0V8MzGvpx2fiRe3WV54t4TrRt4Jbu8+F0siFTc+AiEA/lMhaCr8YM8D21FAQZt1foe0JhjfueGL6/k+RW0Ia6c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60687224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbstmCRA9TVsSAnZWagAAoSsQAJdognVjmTkdPyXTuB66\nrbcu27Tf+gU5JNpoesQyVCExGmhhD5f9ZPLjQ8Vhy+aXrA2zIkwpyMRzicKC\nQrLeS5Xfryi/GUpcttldypXP8zalUZM9R3d9kzO9shAuZIHQtv5jCk1KeWyv\norViulm8597dQBTWtLOqEXPrf1xivo0WtLmWJcHV1AIXu9uACjbn1yypaSeK\nX+nK5kIxMWGUmFtUQQXhPNwgNoHWNxjLxRana7VfRUhA0ZboqhPxVY6ITcrA\n6f5buuJtaNgalL+eh7gJ5TplxoCU0ey68b/uG55aGwL9uDxPRCCPITzhTF5k\nCRf17N3lq316S775rLXpJaF2VIEdX1d9Fa2z78exwhMOp7182P9fDIezM8eN\ndeKE/vs2gkR6wdFq3c82/w+FOhBxp/ilQ5Qsfii4xjCuSII8gOEkf0zek9Sh\ncmKMusdP3pwtytNANP/CMepBZLS3QjmX1b8mwIjFYiu4PGP/SwdDlm509hV+\nVCZAgFITzK7R9YzFPW5JhQCYur87lK0tAkyRt0NvhuBiGvqtlsCF6w4n4WVn\nIxUjJT3cRA8yE5tqrOSBXj25XXaflS56H+lg9VF17T03LyLED4+g2nfRoF9x\nSbSI0VUIUaaj0ckgRABKlU4+1MVrKdZE2mICT1LAzWA0NXCyEwYQoGnNSDSH\ndqal\r\n=ueDu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fe4a6709da77c7eb7cff1ba2a31963e18037bc86","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210408_1617873765357_0.5383267299772339","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210409":{"name":"typescript","version":"4.3.0-dev.20210409","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210409","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0523e247d99d5c1f37b5f48d5dfaee9b85ef1caf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210409.tgz","fileCount":175,"integrity":"sha512-SQah/5n8QCjkKr1O84dwv26QgvAAA5Im0I7HOx1JxUXTydiWiy13V9dbrY+aMCUehQcByuheCUgekTMRmR2apw==","signatures":[{"sig":"MEQCIHBsD/JT231UJIFLnEHZp49RrU7ib1wNwuwjsUoSRldlAiAz1mATkzLrYd6c1KqM0yu+vW1yn/vWuPXvVPUdzj7+ag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60687482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgcACJCRA9TVsSAnZWagAANbsP/3yeb2gUjQDUOX2m9OAy\nVgNcYLiPOA4Wom2p05ytBvXMsK1s7frCNWBx4N8NpegRUpc9hOP38PhH5p6P\noQAxI43prIPy6Vn30wQmtiEYphCZSLdLGa/ZVKJmlY1aebiDEYfzL73uNaQi\nZ1PGHogkN0Uk0xZ65GT4txVUXlBubFoVDf1cxg84HF6e2cRd0WxL5YejNybl\niWQrJzN0MaXlbCi41Z4TNKjrtRy3c1pG92JI1q5/k8NUsutKUi18xZ/aqoSy\n3xKoZxfFKZXfTzcMYICQzo6qwTITDFLr3QsZ3nMmE4sTOavmWbGRLUyg9xp8\nvABNdYixrKwV0nWoqD8Q/Av1wvP66olKfaGmdp9Fz5knW3JRVhfGAwlzfwSb\nz8lPFlXlNeUvj4pF6Iv5PXd9lxvu7UexMqte/cQQUiygDKf8Vz4/Jzp7eV3D\nVTZcLQyNlZVLEcFUfPVQkSyKA5eU5Yjneq4WTg0HTF25WOJqOVyO6LQp2RpJ\naieMbkVohl/iayPxNyQ3BqNHYF4RV7S5geGsRLJuATfJjngUmw0w9Z+02LDw\nOY5R4ebiuxdfj8aVPSFi5b9azo0N0yDUxUbfIYDU50LoyuTle6S+AH/vRSHu\nsfS6/Ae8NErVjimxxiE0Eu30XjYL+YEnbCiwSU+AsFV9jaZVrWP8Lc2TPEMi\nLxCx\r\n=4E3C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"75e9c94e50e7ab78154edd3a8d79f71e434bfc19","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210409_1617952904775_0.5141900100495103","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210410":{"name":"typescript","version":"4.3.0-dev.20210410","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210410","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"28a844a51f88cce37d424d586c6ed6f35bb5c760","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210410.tgz","fileCount":175,"integrity":"sha512-I0SyjlLiGKXyX9+YvzPhHhNT5zmDUNW/pGaE1tz3RvZxbk6GGlHMxJoPhR5K8TdiEeMZkDtw4cT4K8rbtfEFpA==","signatures":[{"sig":"MEUCIBeXRiUArAo0YGUY4V9t4sxI1ybq1XxDJK5hB1aC6VoaAiEAitQTthHjoPCYmMJjBEif4eJh801XoNC/DwIfOnR4Ves=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60692604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgcVFrCRA9TVsSAnZWagAAlGgQAIjpZoNpQb1++3qxFwuf\nFcZ/Pov5/wF6hqQ84v7fcZtRYMYpL44r+9pIcmNFaN6UJ0ezrAGSgoV+WvD2\nadupJ0gbi/8VvoSimAnQY/nJPubfUVzwQXSD16QH3uo1P0dWEEdTS4t4jC71\n2dcREiu65F+lHOKw0bHSTm1+adF462+Mx5oRuVm8jNKvk7POozKCzTaejonC\n+5d52Hv4qCCeRmVPudvwlVOcd7rRdDXP4B+10S7kKEwd4Fh5QOWROYD7GdjR\nkqjdqGoJlXgSrNy1cEtRsSDVeI9a/hL1RBMyLAaod9oKqv+b35UO0aTJMfnB\nX9mFFBGv8plpjAPmhvdJ3YnQwiSP99LN5HVU0FRuAxNyD8wII7ubuGl2qclU\nWFwyU9M0kILMbmJ+3OSxqx+QhLPmVwDNad+KzTPJoLsCR9cTxNA2MRgfBNjo\nzxWWkvebVI5iPVasY3AQGsxM3pZuXKB2ex5Y19FZ8LCpu1/FQ+LIO48mwPWJ\nushbiRWnyeGvXFyd9GgJRckEAyu75x0+WI5/vENm5o3JbQFpxE3xZsSiELKl\nG2F2PLGQ2/EYQ+zzFC+P7jKquRdH4RbZxk+Qq8XEK10SScj8LiKI7IacuLmt\n8Q75il0evi9PxeTSM+bmuXzijGGa12vntiDC6zSirDfatF5KEQVPVZvoOOHQ\nESH5\r\n=vbPZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"131875bb849c0a9c56c26d09881453aace0cbfed","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210410_1618039146875_0.5748889618934625","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210411":{"name":"typescript","version":"4.3.0-dev.20210411","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210411","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a6f9cfd46335a669ec9f0b641c89dae023d73222","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210411.tgz","fileCount":175,"integrity":"sha512-rej5axAPWWWne7m5gcvnlkBfMrrGrCXYjJWHwt8VjvWrQZCMNuVon2mRD0sJNvYhJjKv+QRuA4gOLpgO2Pqtaw==","signatures":[{"sig":"MEUCICve4LzLhDc1Nj3p4AxcTZB1RS2Cc6XC0U6zF74626K5AiEAz8gTMYRF5DMPoGiAgnxT/KyWgD230RFGldWo+eSelVQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60692604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgcqNuCRA9TVsSAnZWagAA//UP/iFBiLg1yj/C3KAO/lvx\nb/yfA2NKb7W8uX8H9z2JBS4l303p8B9awJoxqOp18dXoMGVvrgnUxw1aLeLw\nHaBZcioQJcurFaPv5Ev8SjE/tYM8N/ZKaTWww8EQU2VLuB+27mN0PK4iRUOD\nZfbzzNYUb6z5CahScNLc/YPOQdb9bUUe37tRwA53N68wGIAEp73DzlYTXGB3\nHEI6itcItzodvYQhTK6RG9iT+hutsZfIqjDe3+caq4E3kgDIBdXgidCNb1JA\nJ+yhMXQ8zzQfpAEfyEJeQgmqCG8NDhJt2OcX2D16uMPkl6CJ45wd0wO3+6E5\ntOYF/Iv7fOpgMiseR6kzzwM6ZjMPnJEhKh3MH6GHtD+dfQlGIkVca/bvlhIp\nXHGUQfG8Tv+yNf2h6NuPrmBePQJ+2UxASAdZTzGoo2TIhkk62V8pKeo9NIWo\nPpFmxSmxIcJiWc+CllZYEM4Whppqf5Eo7lEMppJueayFpFLcO81kekILK/M7\ncnuQ1g+G35yzVBWv4A0aHy4mkwVjAoqLtO88j+rJUVrzW5+o/sD4KG3hGr5D\nM95oayGIacH6IYUsVXPAcJ0LNwxSL1onIPF+9Gm4FkI4w+ozMjn2d9jlBHoA\nSbCzMZmsn01m/JtDy8YeiP1vJhEV9J/u5eoyP7rX0nnQofOAtnEfL8IzKcRv\nSjgo\r\n=MZkq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"131875bb849c0a9c56c26d09881453aace0cbfed","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210411_1618125676065_0.8184658166829051","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210412":{"name":"typescript","version":"4.3.0-dev.20210412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210412","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"985af41fcbe9d6bf9c4132e3209b7905b5af4281","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210412.tgz","fileCount":175,"integrity":"sha512-jAoT9A85ujmykZTKSQ7WLJ7aItFTXrmt+FWPl3xgvfrtM26ZAqvfYXVm2XjSFOwSzMptS+7D1Afxj/fynTOhEQ==","signatures":[{"sig":"MEQCIAb8Mh2zHNooFZ9wL4DmEzUiirP54ib3PROQFOUfPvXuAiBMgScicrURvgIirxK06CRNqXVp2lUfyi5mQuhhnGmCcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60692604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgc/SLCRA9TVsSAnZWagAAYjgQAI2FLVoSdqk3vGdHzEjI\nzEoxc16YEdCHNUNwPwldxKlRv4JU86dla6u9R+t2B/aFwZl0A4P/JiEAEbD7\ndu/mmnhLMojBt+E4umZPA6eF3KA3t8wLkXfgu6OFy+CR6w/riAcrzXmTc5LT\nlTsJgcm3B7SfXHm88q73pr43XwZmkcutchVkp+nJ9mt9msSTUZqzkykdv7xM\nlN30KlmJCpiaYmb8zQFSt9TPE7DvxPynHbz/uXdG6XHnLohcxJ8VW+BGRCrr\nZBmTsErl08yTwCzOFOAHiz6J7GtcEvkCbM8pSntbdvXAZFJn2oAMJlZNAnp4\nOPUMUtaYvxu9wlFtifnd0sgJ+c+ndGu84tVXl1wtGsZHqtwLpVyiQlVxzIdV\nsXh9d2qYNoAjMu4PIG8Vw0oufnP+RLVKOfd8f6+NcBcc7TxIxwDW6h9d5/MZ\nczUXF2CX1jMKpR81B8Du9csHoxJnr0piM7fELeYi+pe6G7lxCQGSoNLuQvAT\nDpqygN4dsZEe7kVwd9+UQEgv0NnPOyqAMUmpCnKKvUasZYFwKEdY2O00/4c8\n8zTu3dun3MMBznI5Kgq2eWgYs48uqHXJKud5AsyVyg1uHw9mpYWIpQdVFerM\nvyF80sh8VnCk12pGWB7ZFqAzSY1KNbwTRTV9ceWQc0ZrUo7qP+sZ7R3Yyo/W\nF9KK\r\n=ewTx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5d8a4a175340cd4b70568fa1d09ff92039f567f7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210412_1618211978544_0.07647630289134821","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210413":{"name":"typescript","version":"4.3.0-dev.20210413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210413","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"394a6f50673987668f57bf540a4d28575251cd21","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210413.tgz","fileCount":175,"integrity":"sha512-g4I8In27fKNvXS0STh3CXS4PvP0FYQ8Z1E0PqEuf20bNPRGJCm5+cEb4Yvd+udcqLTBVqpT8J/VCqaIoUXc3Tw==","signatures":[{"sig":"MEYCIQCoMXfx2irsXAlanpyXRHCnROfh1dtaxhaq+RnEcycUGgIhALqB8arOXecaiRGLegeF/NJcTQuQyqHtYbmV+C4b71GJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60694638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdUY1CRA9TVsSAnZWagAA39kP+wbFsZvuwUvcIk8x1wyW\nu7yQ7iWj87KgUMf1EROTaI15G2v9Iu0lZVuIqacWl8pBLNWjmFO7WPL89o5A\nwvysqvE5DdStpwHksnOOR1jVlFnUrhVCO0F03ZPT0nPQnjS4zIKaXcWBF5A7\nyeaF5GPU6AjYlCL3w19IrsFZ69KpIHPSETaA6pKH6KWDe/zmVkQU0Dth1vEb\ncQGfowAW5c+hBqXMzZwO4IbxjdWng27bE26oESAkcWcqW9iUg6H//AV1uQpu\nxa0b9r3QtZpuHyiLI4R3+DtGtvLWj63aDXEGRfDospxJpZ58VIi5RjrWEW38\nmJeM5CbhdINf0xKQZ/rHzqdJK1JxgAVSSCXWQkytdtQ7Cp51zyYBktv/eKYE\nXcmawtRQlCmoRpOaenOHyUzIF2DPowvLebPIZRr2V8VMFe1aKEO3ec1TIOwW\nf6xBTqVzSB1xqMJLxRFzyxlkwme0dM5iH1ekvJtMTfOKFERGmLsdZrOAs+nZ\n3Lx2R2Dgb9NrH2lxVl4XLs2kDRz6YvavTfJ7ajY33s/lXpaNrPhrF9M4EpSW\nL7sSPzjhpOFDRy44GN/TOBAYwcucPOgzV6duW3CyhY6UYipaSgv9hQa9YiSN\nsXXkCkXyIWVXCXdLEWFGZ6Zz7q1tLdtXkMRfPXaBzdLUY0oM9kMwhLHAzd8S\niR60\r\n=mPgh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7c10135d9dc64fec166599acdcbeac733f40601d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210413_1618298420764_0.16486409815655167","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210414":{"name":"typescript","version":"4.3.0-dev.20210414","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210414","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"831f2e7a98cf2722936b666512a673a37a927dbc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210414.tgz","fileCount":175,"integrity":"sha512-1wtHORw+vgOGFV237vmARyUts9wdtsnSIn3tKjCs8uggEnlHbSXnX2w2TTp/yuyxZdYWJPcnqNX3BkgsdBpSoA==","signatures":[{"sig":"MEUCIFBqBs+6fqPG8ha9GLpsCd0DvmtPdxvBgKyo6wVgd6sBAiEAoHizcqFlmMnwfXBLU5XFVAP94Yr0tRO2W0Yff2Gof5g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60721527,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgdpcqCRA9TVsSAnZWagAABP4P/1fu7Gz7piNx6q9Tnu8r\nQkNmoBaOg2CYpRAYJJ1TnaSxpwVSQnLsbmtfFaozVEuOZBYOgNZLLFAImHxj\naAmVHK3OcjDmk1WBIuq5ZgkOb2pRZIc2/UVER0WZ1Bb5reqWuiQlfn3mZNDz\npOzs88433Gfg3ws1pnJRYxT0ICFS9uxs/XpbrLzEMBePEuNLquM5X10z9lXr\nHvK7FZc77EhqOsBK48yr79VRHQgKM5yIchXWvs3tugn+nKVKvuVpagfi7G1K\nRw0RAm1mx6cCFO3GsMrWNFT9OCCR3XGvTIa2bwKXIfN0/HvlLevoo1SmXiHw\nhQVlnYEgNQWLahAy39xXmIHbmUUECu9lqvyNLLHTFjcAjjib9tqcwITEn5Eo\nWbBAsOg2uxNoEzo9lN712n5mpBXLKNAVTHjfGfg6n8l7oW+ya4GZXgRtzklk\nY0jm3iLbKd9Tzv5ngOpeLQ7mv1IG1deQ2D9Dl+jJQgvBrRSZ/+OUPz1PRRUG\n/CZhrQZqvb7NAGvulos0CmWzWTiia44KOcOd69owSS7Gj02SEsUBJTbow42M\n2IaIYO0nHuqvomPMnSDinncEg2LZBZTpKYcSouvlNrWDqLBjpetHPyllOTTk\njy1hwEAT3ENVfrWoyAk4scgpG8zM7FK+9fDoTuWzYcnNOzlvj3EgmGo5dMem\nMLGS\r\n=oXqV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f74f9cac1344f6c88078c65d89a4d496bd5a8525","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210414_1618384680672_0.27440861667585303","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210415":{"name":"typescript","version":"4.3.0-dev.20210415","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210415","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2964be7a3a43375760ea9c047c2ced2449f144b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210415.tgz","fileCount":175,"integrity":"sha512-0Q5n5Oh27saEMEMZ4FEgOD/tHI80R9LWWNGcm8+WLWxpYqQEIkPv1PsREPor0Yk//wZxBx/pJNR6BqbOtwjwxA==","signatures":[{"sig":"MEUCIBNv5M4uR92IeTZxcJ5VGAqy30rfR3hAt1mGnY1EFe57AiEAtRmRthMSNzmDg1WdkTyaSk7pdfazNi44Bmxfg73M/rk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60734119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgd+j+CRA9TVsSAnZWagAARdEP/3RHFsVh3fbHNvUGNpwI\nyH5zL4NTz2dGgUXgtby4pqabfnuVprROG14ULfqVGeE1/uxuSQ8L0O1J0YpB\nWe15fu2ZLBwnkOTA2ajOyoi3TL/g4oh3wdlYFyqJ85cbkdkizcIIY0pw5iOO\nqfo3COmrLXQ0h/o5NGS9NUI0QjjcvS3/Gv02+quTMUkYUG7mX6OUoqn4pPnN\nVKhqJ5r9FvflfLpbDcCR2qaQ0spE7IorEuIRXZoAs0CLadgRepj49icLOR46\nFHA+mIuifUR3ZKVozugbz/Ayk/DoaXNb4Csd+u1Fq1ovU6zO7q4lBXHA87j+\nfRnI8Z7cwtr7jFQ0SzDtmco0Jw4Z4e5YopRTxIg2CqYfa8Q9L0rgiN2vGWQX\nJr3tuOu43OujZ6Xw6NsyPtnwbHZv3kOIGx/Ea6uOSMW8pGKg1gXidHKVXqT5\nWvsX4I+ZHBHAaaB1XAJ28vRsxA/6nfCAEBZoJuqRxqtkjBx34px9CyaL+1Ta\nqRAZksqR61sG20hz66gkJjsBmowz1YilRgDc/JD8FzdRhO0jYZ4y833B6jB+\nZfZI0vAEV0hCLDTulI4cPi0VjtZFsLBSKePedlzc7vrDqU8TOkeq8WG4/Jin\ng7uzacfEtEbg9IDROZAIPZoCGW36MIwWrE9acxFbOc/MqE5XcP4aMXEy4ekP\nxcd9\r\n=KcNf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"931b20af6ca347a78084c13338bb37631f034b4c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.11","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210415_1618471165831_0.05297097825150332","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210416":{"name":"typescript","version":"4.3.0-dev.20210416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210416","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8d87bf1bc6a80bcebf86f93cf26cdf5b384aea6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210416.tgz","fileCount":175,"integrity":"sha512-/OaLolzKBq9jlpV0HzuBwFRfmSPVbuz++rinPbLOfo4R1uHHYMd/3pNFMTzcEbk1C25q2lmY+mofPqTMfcILUw==","signatures":[{"sig":"MEQCIFXJnxXF6YPX9vhbpt0U+7AcRvjD7S7uqJUtfnu/0FhFAiBKKUwfzKLtUpfnfTfLtu+/N6isvcmW4ZP2iAiIPYDIvQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60736630,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeToyCRA9TVsSAnZWagAAgjcP/1gejI6nKmpp4evzO8kH\nXUVbcgpJU3ELIxsrkf5pioXxjLkhNOUa/ZAEPO3LpPGgN0vAPBOs7IHubv/+\nqwt6ShmUuypETdTRtDc0/FECeWMEM5eDML4ZWUayhvY/MgCXtScxTBiaXEMU\nkFJp5a6croYMtGk7tVpItgB3KL3/PLNyKHobdPyGhND6xXz0IKiiOjoG/8ie\nejMp3ZAtb0Hie8K5wcY68HNqaNQLpMkthQ4eqyEbKgqFzA1Zyyd4tJ/kpy19\nlUvAMG/le8m5Zytuim+O1O9SugYGjM1SkYHatqdu3AKOs1zdhV7/NT8OB8Xj\nERskiTp262hfFxXakCp8gSUGDy67RM3eu7B4Epr/YCSH9IH6TufJq7Gt0+1F\nnfoxLr3Tpi3F9k3vRyEsnHLpRZdE228/V0Uzzb6d078XvzSatCLtJHTdYaHb\nNwzR1z6NHjEru1XuI2Y+HdRzx4/QlNWmjgOgSCSffn2aAk885Hp2P4mk6lWb\nz/0Hpkit0mEmYngeljMX0rdRFNZ8uFmPNu1jSgR6HQuH4twpIOuO5uOjsUTF\nfvdqfvXE5yVkRwPH5qhcC87V6uUORjddDUiiu+UuWg4a3oQLMzEO9ghpeTXy\n5Q5kaElmQ4tAMDa1dSfEt5krPi97beq/fliuPFbcyaJuro8x4syvvmFNVRSB\nnXRE\r\n=4oU8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9af763d8886f2259b0251dd6341d0b5a03afddb9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210416_1618557489292_0.7500962434370126","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210417":{"name":"typescript","version":"4.3.0-dev.20210417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210417","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"74db1f9021fd3263d7432750b8d2e3dcc5f8eddb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210417.tgz","fileCount":175,"integrity":"sha512-oilzA5GZWyugWJLOo0vgFhOX2B2xHVhwHof8n1hd4IfbBVJed2jxlr9EWbsSis9Jski8AFni1KJl3LJu+cWG0Q==","signatures":[{"sig":"MEQCIAsTof2oXf0FZibaEw/hZ8sH7iy1p4ETcGgbi2+CcswwAiAhCRAtUOl1zQIEpJ5uBZpPa+ou3CSFvYL9mI8QnJnpUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60744484,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgeoxBCRA9TVsSAnZWagAAq/UQAKBFBs1T3zdvqyF9/1kf\nQSsUPbL8Q6KrnRXEX40JS0VEqYxyAS50R3eNTNm6+Uniqmcp4T7yRiahJNTS\nVFuDPnS+qiuS1o72qCwIIhNcF0CIYLUYcLRDedlORm0mMvk6s18UvI7wd6fX\n4eB9RRnygKjggLMEXSHVMLepj5xyUNN63iBFqzPKq7r8t4nwsOGdPdlo9zdL\n1NFpi8OKGMlWNf3qq/tjdhvIzIIw+HMjUnWPVR3KevDTSF2SnqtLjLunTM5h\n71PDLGGL2Bo6diTMdFT3bzRIu/Nw3uCauWCwm+vW6dTIfKoz19OdBX+MW8rq\nvRGCHKIap8nnaR4qXYFSB1X7TFkPHxWaOuHYGzF5onPTAsBmBKQTZkmNe8XK\nBQVlhljSr7Ka8RoslK7jmyp/s3DROXz8xLgO/byLEK8gt+F0IFmW+GplBGlh\nPT05Wh198Q3kA5wx36rEIvgaocvgfp8aRhYJk8QJsF1glk9Y7h87vxA9onJ2\ninhYRoQ6VNrXe/RjAif1DQEph/mWudE6WbTAZm+1gduLcRLcmu2oob2mVb5n\niymsQLqzOLeKh+o8inuFfayjKzCsZaTQV9Dvv5MFS0hVV6kUvuvobdAgOY0/\nf88LKpE1Q4uwHo+aAnns/D96ZbxaBAQEnOH3xcZJ8e3KjBrRKyiKJQg/qBHg\nUEsa\r\n=gVmE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"01264ac4148eb749314980ea841d56caca3460ec","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210417_1618644032871_0.567781004442079","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210418":{"name":"typescript","version":"4.3.0-dev.20210418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210418","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7d7b55e97cd1487c8d19f261f141f6b164ee5d20","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210418.tgz","fileCount":175,"integrity":"sha512-J+s6MR5GWE3JYqX6P2nNYZGnvBSIoG+eZh1nR6SyShLvhUX13E/5UBkoryU67kLPPyeDUK+yIXs6vod2Wawlzg==","signatures":[{"sig":"MEUCIQDhjY/9El8Y8B1LfAHKAgnPpy3Qe8RyRpNCotyKS8SBuwIgJKTu2MoP1M+CJwy/0vtrFme90bsH/Au+Dte/MSIDxr8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60748990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJge91fCRA9TVsSAnZWagAAeCYP/2EZPxkT3Sdz9LQwd3NP\n1oS6QsMUEmRQlldYebop++HurkNW3ypyKhs0FR3WNaKvNSm8q7Qp0nDcqC5g\nuXwKe8Ui1TmmjAhkEw4QMWWInNrZLurfy0dDZIdP4ecUwtVeNhTQbjANAI67\nojnMjUeVcxmhhzh46yLXnw7bT/GfcyOYjLoXx05gRj7gdaNmoMfokwnZCHB4\nl5LzhMsLUlZPbE5zs80Opue0MItOTcWuc1lU5ygk50DR+2OxgYVwrlYO5QeY\n0BYolVk1VoToZgDKj37q+4dDnfidQtK9rPxccnkCTmcqNk7MKGLeelXmOlcT\nSkN1O7jvM3/8ZebVT26F/tuRZ57gB64s0eRUc269PyG7RLcUFxvmHGC6mHJw\n+H0SEnHRQCwsRfDgTSmBA7DD11kO5eRACCDDRUD9StDO+9PstGfW+9c6Hlgd\n00UD9N4VA4Ph2RUX8+ycmW2vnqy72uY/NSM0Omb5lzA/f2PzfxxtzxpIVroC\nCMlcXCA6QV0ncNy7kyjpo9f3r6I+i8BRDPh7mvzUs1n9lUxFC6OkwVCq+mhy\nV4ab14Ok9hPLbnQvkKYDBp5td2V00rQCRX6EjJzk2hxW3/OvU5w0jejhzgQn\nJwgIBrBOp6IgJzxNHlNuTemYG6qSNN/Pn4FgoyiOT1IbePLnSNt0LovMlfSu\nJXli\r\n=909i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e4e96c3399c2cd8fefc5f4fbe887f981c19ae71c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210418_1618730334693_0.4120016503657682","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210419":{"name":"typescript","version":"4.3.0-dev.20210419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210419","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b650f1481c115c259415dca71f89efd04851161a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210419.tgz","fileCount":175,"integrity":"sha512-JdcBSZssKDnPlVHVHLXIljx/ocN6zBXUwEeJYPBynIt6GAXIqFJXfQD8L+pzjaqJ1qcN4RO6dxvItQYszjv9fQ==","signatures":[{"sig":"MEYCIQDV5lx9gd86V2eReyAcYd0xcVXhWMzGLyKaYxN/bl0ZtgIhAMobpiar0OGAgBywf0KuptCGfLFekzY+QY+fGdFNK2pb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60748990,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgfS/SCRA9TVsSAnZWagAAO+8P/jCmb9mlL4oLlNlB+a9g\n0suOU9FlSUIfVUWSUJJfwDp95ByLJm0NxBy8FNDA6nr/9/zHrM2grlobjAdh\nE7V5wKZ3LqviuJIbjmJuo++C3+dW/gCGNrNYAUEJ4zu1UdMWl+wKRgQXhf5r\nL5Dzhen/PLoFc0bIgOWlITphyVSHTOHsoqXM/CsvBDJmtvXPSkZbqn3HmyTY\nWIMxd44FeekuvwtWDfLiUMTkHlnUVWfNYJ6iqGDFmA5E28i/jAKtwKYeD11q\n2g5hKY75ylMN5iAi0rg9wf2N7S2I0zq9uqQoEljY5xBb7JF8Cg/xx19VjYSm\nStsiwH99j9MF4LN6Ns2AxQH+4zjMnSgE7t1obWmSASagQOMV9AtaqOomyRN4\nMcFZkH23sVTMma80/4vyJFe2P7OZSv87nGehqsqRGIwxVknkr3sXHt7QCO2W\nACbCi9bgK06iTe80GeFPx0+xC4dlyWuySyU7u91vvKDui/ulAL0r6Vp7/JCL\nNZ1JOYnD2QjufAT1h5XZGdqBQfx6FdeSfAJ7VnWXILWJzIq+84jx49WJrSYy\n2Wg4d/gT4gJ6d0ThN+cVcNrVELlnkdUNFDQUVflHS/R5TL56+gix52cu0KEw\nJbEjNbCZn0fXRT5tWJe1Cj/dD3YkF8JeIQeDRVNDi33Wv+fujBOa80ocxX48\nfjSH\r\n=SU2Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e4e96c3399c2cd8fefc5f4fbe887f981c19ae71c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210419_1618816977903_0.1111160555007693","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210420":{"name":"typescript","version":"4.3.0-dev.20210420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210420","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8a7269694d5972411e506921bfe1f1858af8d1ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210420.tgz","fileCount":175,"integrity":"sha512-t52VhOM4nSLtLZTgQ8/dtKNGXQy7oZ/xV62p/S+wjHgAI3FA595eIz3z4PaoYgURH5nBxIrvD0OMj0Ac5g9KyA==","signatures":[{"sig":"MEUCIQDAjZibcRn6XtEPAwlFAjPeVGXCpfFr9hl/rK/U5j0kBgIgTvm77yRIVizgXEmbSuSpLtlntV+IgzaF4DVNLwDCeZI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60551061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgfoCtCRA9TVsSAnZWagAAr1wQAIwfxqvHJAMC1+8mHHQz\ndyT0hQebVBJtS1dwW6vTm/bftSgSeCgW3qDbzUrmGqTwD9vn14Gg+wwd+g4t\n1Bb1lkCkrWTa7+ASgLOut8EM4HU6fjHfusvesVM/ceJkYLlLNTTFyms4quUO\n05Pj1NGgyvC+zHbJYFVscR/TqlLZRo+pu9+4nN6clovB6W1X/vmO6WmQRe2Y\nbre8XaClEHESRCMlrpNAJYxCXAMXx4M3bePUMkQdMAFW9ieAzbZPYsvQl/rh\njKepHDCdIaXfMQVbHH7sCZ7ZC4ONj4xoKSrZS1ClE19XBfgWZkQORT7fvVOH\nOpsPKND+jDcZg4I/CkGyYTogTzX7/g1fuLQo+kA3l9hDQTWzIgSu0sA+fEKV\nMpEjioLIYZCPVCx+2t2DnVvaOW2XSwgyjNwPWya5Fd1HFhXBG99cgZxie5T7\nBO9t859unBr2tdRV+l7tlG7Ivd0U6j40NIXCJuqrnqc+XO+PmzMQqtbrDqOU\nLXbYq4fixK0QzIWwx9QyuSx4KpB89xDRAzFisVdb3xm5HtZoLvDIzo6fxQfL\n92MWwn7xdRzpihwLjx31eAhS6UIQinBh/nXJpPvVPh1ZrH4RymqYLDuyCPFC\nh/oI6mfPfoMESLs/4QLqSdtsRB9Hps7zqvBmXAvZAwYxUzmau0TQG0PeTI4a\n/PPZ\r\n=pwGT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f67ee4437993bfcf469e72ae4a753a570300339c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210420_1618903192730_0.791373696093594","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210422":{"name":"typescript","version":"4.3.0-dev.20210422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210422","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9072294010879898823917f2ada48599c08f41a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210422.tgz","fileCount":175,"integrity":"sha512-WPiKSJKnbSNyXKJcQnU+6nsd9jKu5wohv4r05PKtm0eiyIB/orQpJczM4+M76OckXhSZw78Mj9jgzAxH7be2Lg==","signatures":[{"sig":"MEQCIGOkSmcCpQK9tWAcGTM2CvBOgOFMNj9jrXzds7JbKOmcAiBwZb9O7jtaXeA6KIcyVSYxU1ar6GMzvQIGyHlKuslNjg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60630525,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggSQbCRA9TVsSAnZWagAA6Y0P/1C8MClQxWKNWCIEEBEZ\na+iwag+FMroSvswv5e8iFVOddI7ZtyEJIFmk53goWSfxrKZ0hJ3nH8qRk0AN\n4bRjB+YqQAbkpPfr8uICNrDmHODxGRyBtFQYrlZug1FiSWZ03+a+qqKNfp6o\nEmpKuffgCoLs75wwnbLuDKHaKbUuhl1AXjCI3ckxuhwYiDR6wiCYWR00IfUQ\n8FmytGbMqkAPhxdxMxn+QwIIHri1Bx2Ua3wkl6uyW9g8J/ukvCxaHRRSsVZj\nqj7F8/SL55EXxFJzi+MfFm6lQxDhSPeX/O339nAlwQ/6uuzs3Jj3D0h7Wq1z\nLSMglEfFaSJO21HkvQKx77VsNglImIGBGG3dlwWmZUQYAs+njuAO3JFZXsdJ\npsDo0pEzT01Ia8OtUyrlym830KwpgtTbDIivDZDSQFuMQPo+NJsX1L455Ykq\n2MR+c1lodHdRMx283IMikynBZ3O4s7oPJIUS/0tUgqzDriFdel/0t6F25b5T\nuB1xrN5UuvytSyZwwNi2ZR6Bl/+WkRmxkzkVFq1LB11Q2g5KmPFP/aPok/Xl\nrlF4ot57r0gCPkQNz5S17HAFQL/FqA9mtIXUc3PDEV2cqA7RWvJI5beSJBeK\nbfO2b+CSAPDpu236T7sKShINKJvntRHs9cV4S4eJtZ2na0I7+AWhNuj3ilpY\n2Ucp\r\n=wfk9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1a41e19957a114b7f9d348a92d12db9a672363b2","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210422_1619076122443_0.22485293041406917","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210423":{"name":"typescript","version":"4.3.0-dev.20210423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210423","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"07984db81f660ad0e0e2dd1229790299f10f8de0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210423.tgz","fileCount":175,"integrity":"sha512-2rJFJX6594459dFyxWkrl4Io3Gs140NylUSlds/WWzdd/kB4YTeM0iXu5fZLv6XM1GOLSnwnyDmUEu98Z2SEkQ==","signatures":[{"sig":"MEUCIDLP0ce8dueDDh6XsFtFUp4z/HPMB5WfrZnh1NipN+5pAiEAv9DdWZG/iDGHsIEZxksVbABohcHBw5auwzz7D961mXA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60633181,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggnSpCRA9TVsSAnZWagAApaEP/A0TqDVxMAWlv4p0cXEv\nS4KweBdeChzOUYO2+m4CHq25MqkDN+23NgDEMRF7HjGwbu7Rut3wSuwRYU3K\nddYQ1TdF1e0W1GAQpuXBxy3s/bqXaaEjg3vyM0ynkr6fzPPEVOpI8zHi4htQ\nouQLtk+OOG71aEie8Pt4x0l/nU6ebD/q9SUqigYH/OU4y613ujOoVcqmh2Vh\ncqh1h3sqY3thdxVooDa+/uhqerad3adrG+eDyFIHHi3FFTjAeQmqa83QrxGv\nnwBZvI8OP/YEyR/0jXJj9+j8HVRd2y6A6SQd1CuARd7MCPo6P2c7te0AkSnJ\nAvgqlHRGoeFbet8Yrwu8UQOaq7psS5Druce0ZbEC/B7x+qwLwmfSbBm/CPt3\nC+aNbiohGKBx6OMmWILTMRaXA4ir5AX95Ei+gle3BYUEMBYtg4VMUSlCfJw7\nwi2aMlC22fM19x+JE7JePuJkRVS2ih1G4vClgyMo6gTgBfbdr8dGxXKKD8r3\nYFQicIK1zp8UgFul30uvPWKQlxz+vvbyI2NNJ9ZnvsFqtTN2OEWcZi/0RgqE\nDiwlICwEee8kNND0A5T/70LOnVPK/nseSs+nmW8j/6/x+tr9a5MPCx9Brbj7\nV4SXiKJR9evNClUlH1RxPpxY2mS+ygwJLkQhjaJglOiM83iv5xip/j+3O/da\n47BT\r\n=DC2F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c552a4bf827cf56680d5cb1510dd948a3787ea38","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210423_1619162280518_0.18316969055212984","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210424":{"name":"typescript","version":"4.3.0-dev.20210424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210424","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3e445e67bc8cc3d99a8f97deb3344404a883e7ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210424.tgz","fileCount":175,"integrity":"sha512-PBQQhQwMQ27OFU18QjMEzLiVpZyMlCRkFjIkTaVBjUhA9GX8tflecjC8nROh0lNt+sJp9bNWBtpQWyyyLGymfw==","signatures":[{"sig":"MEYCIQD43ljyGf58R6VSRgDAjDnb3qvi25I7tdbQEk90mVlbogIhALMAU0oDntaUUtrN+2vbuJmlY8PSU2SfmVf/Fp6nxumS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60644646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgg8aXCRA9TVsSAnZWagAANnEP/2q2RZqNKaYcTcigbHlq\n+A7PNkQCrEnFNRXZVgNa8ocJl6zhj4QbUC/Dw5drtc3glu9uUDG5v5FQX0vv\nZGwk9IVr5JYSxCZapO8NdbBBRAJ+gyVH3mvkvj5r6+f83c30L/NBDHdVzJ8b\nwAIxj2iylLaTYeiOytoF2fWb+2KPnsYCuft2BZLz23QHrG12/4MbFOrRwJil\n231Q83gE8XpnWGm2XmwvF8TJ58zQYBMkHgZC+B6KNzZrbeT8ctUXCPDpAJny\n6Tz4WJOlGbl+fd/PD+voycRySCgYaMdsI2zgEuqwGCckkKuGletzkQCzmcyC\n1kJyVW/qeAOTUGS1+NrOfs746fCfHRNxzV5Ie/l3dluXafoJnL46DdT9iu4i\nef6wA7c51Ba1x/vhy47gZA5YGT4Jeu+jExqygkWQbhBnUJekJ7R6fMXBHFkM\nCghBZajPz9fmbJt6vHIWJ0KYMm+BM2t9rLMRddSx1QXl/kfFoTKT+57OpBr1\n2+NO1bkFp/CCMeV5QktzHzr7L6wRPUPgb20iIhY22pvINQhmQ/9jLa//vpw2\npIYw4qOXEKvfeFQm3GlcrejF5EsuZexkfuRVe4+9kOrQkgTj495JGRoEUlyF\nKQFfOIXqLvY9Vvb5I2MUmDqHnR+RqzHOfKFe5pW/s1RFMKiSXssLxuIEJZH4\n3bB+\r\n=xSC7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0ad158e164883e2cefc48bbfbadb0957824dc79c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210424_1619248790151_0.6109049820038308","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210425":{"name":"typescript","version":"4.3.0-dev.20210425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210425","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"45c056cdc0beb3622027d0e77bc42dcec8533096","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210425.tgz","fileCount":175,"integrity":"sha512-QyLoUkuox+dFhIdSEDBJkwirMVVp/hfX52NneMrqkqi+Xq//YzEazUN43S3gjx4rADX95WE5+il8dRUX7fKw8Q==","signatures":[{"sig":"MEUCIBcKDtCwwb5Ecu5oDSh1Ry9Pwxetj4alzjjliQHYv6M8AiEAzuq+ymo1jZGy/kYF4qnumTemqkcXJRIscQKQQWhusAc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60649932,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghRijCRA9TVsSAnZWagAAjlUP+wZ0WbTMI10yXfVYg9MR\nM9ZV3idh3A7Gi7lZ15Spg/FVVb5cB82eIx1u3+oIZZCUV7vvRhQUYPUWANXC\nIPSBm6nzLk6jeLHpLPR4u5s8jUzM+u3pKUC54Y9H+mJ3vzPe0ToU8Y7wh7CQ\nartwr2fd2A1JvKYv2GvDQWRGRJUQBD5B4QWv8oo9lVUpPRyG3V3Cpc2QrUUx\nKRSej3wxzkEWQab62qaZtfiM5J6K4Zj0XvOjuucR6D/VIOtmXvyqBMAbZ6uf\nEtZbrF/SfXYU4phJ2LNqPeMLnXNWu7uxpxzHhnYM+GC50631JU8qSNcdp8dj\nQJAmoi56oISgchDsrUqR0ul7nu9Gr+9/uo67D2DB++FHyx5mg44AmL01GUTs\nMEM/kChsN+8CUmDJvYOc892yS94gMNPvXRa7GH8QllKCvegLEe3E8e9/Y0qW\nmR8MkFuub0+SuITfhXYKcnUXdfn3SbsQDZxjQLhlVR+3QF+xx1tcrOq7vEUw\nCb4sN8SnhY7IhxtW0rVnFSgUqRtlUJxsxBMKs5gCBd1XtYGikhy8Tkwvag6u\nKtuXs6dsoWtPVn3IUKNL0C9mthfTDTEdoLJBJVX2pK7KpScH4XELkgx0+9d7\nZReyaMuwkU65heMd4xg0kQx4owoFirOI6b2lR9mtnJrH1YtgaA8f8sj1PNEg\nKJHH\r\n=C5mW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"514d8d88416f9112acd94be07e95d62b8d957169","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210425_1619335330483_0.07178860401759812","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210426":{"name":"typescript","version":"4.3.0-dev.20210426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210426","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00198cb8828f6a04b4e0ae32554a486bf7137a53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210426.tgz","fileCount":175,"integrity":"sha512-8YTqlzf3w8O8XwnnRlwRV2rswu7V7WEPUnAnH1BPPMrr06thNByMjIadA5SDW3tUJc1MG8Uj3NgZYocU5fWTVg==","signatures":[{"sig":"MEUCIEgIYWqzHbULR1Yc8ih3lgEvo0f5XXqCMqpOSBXgM0wSAiEAp1eAlVgVl0gVP7dvi4VAK4brcsIdxLDm21c5qzIOnrE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60649932,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghmnWCRA9TVsSAnZWagAA2NIP/2ui8kwK9L81CpVA3s/I\n/4MXOUFrUft6or6zhDQ9wJPsY7hg7/3Qi08MKrFBC5fkay77MakEcFDh89U7\nqoGWRDsPaTfcrGW2C6ieQEWqWX//7IqphLj4Kv/UVKjCmygyWAUAAr6tH+0+\n6x2jgfFxtdNgaJzai+7dn3HIzLxlMcVb0tB9kxt3P3ueCxZxC5WCqLs6y9Mt\njPf36t93fQGHaBpwXEjjwUhi75h/LfBT6dcqaBi8YqkUbydx2/myptx8I3jX\n3RK8uRWtwqNXYCTMFg8V79xQtL0plfvlKcU3frzvL8zYiYvBGqMfCPPbDP0Q\nyJxY4/4R1jUIn3Uv/6QdDYjajPWR0DqWNQGhtsMc8KkdeaHN0PTT94hHdMzt\nMt4OC/oDh9uXXZ4eALLV0ic8Fs/ktlBgF4QD8tfIADzIqThqoeluJVD6A1B5\n05smfnQSXaBIqOVZ8xXdCq6Sj7wst9Yp2r9wweFjhjbKzYY7J4rYlqLJ15gj\nPQNyPXp2sNMMVddi5hzREk2tVhsbsCZyEBkpnkzWvdTY80deKTA+K80gKv/+\nSTRqqGKGUywE0QMdOgd9xkRPKIzsN2K9vSRf8NOBchQeyENpWG8iYpiONy8T\nUGShNYCTR8Fso2y3AKyo+BgZL6GqqLLqw7D71BnU8wUkdtpykb0Q0fSUC1qi\nwUZS\r\n=04Zt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"514d8d88416f9112acd94be07e95d62b8d957169","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210426_1619421654008_0.2068318847459325","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210427":{"name":"typescript","version":"4.3.0-dev.20210427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210427","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fc57503708f3949c71013f5784e544b678db85a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210427.tgz","fileCount":175,"integrity":"sha512-JW/DR0cgHZZhzeyZEk4YGTWTHLYpqjDZJHlCNsaEkjK/UDfksXDGsxcmBjxo7I9hQe/Wb8yHXPEThVrnyppBKA==","signatures":[{"sig":"MEUCIFc7iY5oL2tikPWFUwjJar2H8mtue/bJYmVL0a61deB/AiEAtiK71i9tCE6btsIH/EUGucouz1UhIT3G+wkuJvdSa6M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60658884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgh7tgCRA9TVsSAnZWagAA2YsP/2vMpNWoAyiL3J76Au++\nmVrgou1w8iFZHRDj4p6eVG2tAHaU8+JQFOyWoaY0EkZaPuDPmHpcgU9srAd0\nkGYwHFqfa2EsA7kd5eKgn2MZiO5jpo1cTaUjwmFnDD2apXi4zPKNh4QCGaGJ\n8YOZdVj1C/IKnQ5sgIX43Bu0Jg9b73oGDPoRVUd77FPlpGCxL1FQpewLxVP1\nw4nCYZ08TQU5oZliwy4AdamanffFh8rfkJ9BgWhkxsYGZ6djTAZab4YFb718\nUUexmMkPwWCO97v18q+CRZoT51UJbOXK8Sf1eFBXXdRuqyYtiUFn26tVtfVs\nBogHwJywqnHaU/nHiQKBm4CE+a2VA/f5KX4yeu5kYI7I4wvLBRGhLkiM7ZCY\nRTywTfPYcnQQJRvyvOQxCaIrS1GHDApfcuD6W175ZBXe2unGSob/wjIxnXRd\ncP48SoAat7RG3m0vrDuphYcOq2gMloGOg9DockdI0xTfGhfTBb/ZE+NQos2E\nuxC6+ct5THVervDD+eSQfTW8hBGEBHGeCNbvtAtG4F1XZsTNuWEPkj4uKkua\nzlgokjAUJEfWdtaCFH/EXBauMUknvALt3RvsOnD5Zi5DpPeBXSnotfZFb3b+\n8ZM6X7eao49e4yeT00PJSC1PeHVIF4jW0QNv71AQYwohs6gHUFLhgz6LWl1P\nKexd\r\n=mSWw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"353dc1814fa9b75d341768439b8ba2490a072f50","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210427_1619508053976_0.038972855018101216","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210428":{"name":"typescript","version":"4.3.0-dev.20210428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210428","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bc65c7cf30b899fe11ed5e27f459b9edc5256beb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210428.tgz","fileCount":175,"integrity":"sha512-SaWY5oiD+EDrNJ1mrqrPQ8uZN+84GGgDkMBwe/oLBURjY5sz4eHsaR+oQsavpABR7ifyOl/NNVuSFJ/Gv3hzjA==","signatures":[{"sig":"MEUCIQDaonaF2RgrW/NKEaMCyLliS/EEERAwNypvl6N3Tgut5QIgBwVSz19fjkgE+9FI2KVCuvmD/2N52qD2EVRFpgtsUpw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60678655,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgiQymCRA9TVsSAnZWagAANuUP/3rg3O6YXeaqbUVRrw4q\nYupJZYg/LPd9yPDl7WGVv5B15DndhjZwHLonlcy17R3PBnL/KzvpMnLTZ3M2\nEAui9DB+XC3Lt2MiAnm1MsdO7tdodAKBRfJzW+s21WozuxKxHFuG/A2xwcm2\nbqDU2f847bcp7K1hHQm36lW8/GHPhHYZIZISl7PBG/LrkqHt2+jREWylIQsr\n1gZ7Uyj+j0oqy5MoFEHQmPW11trImi8+RTbjCDC6RbzobEUPMM3xb+/FyyBG\nANommoYoqLts1a0OF9NW9LCohKkfEK9tMFkBN/HHy9/9n2SAiy75HqPAU/yg\nnxxEssBFp3Tt0uIBS6pa4cChuqGbFRlH7rh9tGpukEVFjkvvwZnY+higduCT\n/zcXZB3i1utme17kT0huoIt6X3yFGKJuXjf4Ljeqfh1XZQasZC2C5tUCEgor\naUnjSBI7ud/7+41s2gdWbuWMOv/WQq/Fn5/8eACxpKB66oU0O/nWHzRQsRlY\nm5k8zMHs3sLp1fxQ4V1NPYxp2T1hXYh0T4rVwSoIMMut5EJH3RiqqmKPp2Hv\n20bigJMFPE8/aQARrxD0Cyx7BOdfXpU7UfANI+JRqNb1dhQWD1YpwktJOSYh\ndw0WaGmtp0LW1BZo1d3+Q8BsgGgUuW78OyxVtIsGAecqskRqE/8obXpBjZik\noB2Z\r\n=sxaP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"046c65af0c9c653af25e1d88679b3e16823a646c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210428_1619594405641_0.5355132279888262","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210429":{"name":"typescript","version":"4.3.0-dev.20210429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210429","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21254dbda45496ba6f95dec4f98244f01b255c07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210429.tgz","fileCount":175,"integrity":"sha512-rBkCCg6odkGs1Xc2pKHhjwCCYm2wrx6LvqgbWAquRg7yRVFz6lNtRLfqc+q0Oc5N9BjnlcyWTAi+mqOZzIZUDA==","signatures":[{"sig":"MEQCIF/t40u/0sA/fCDq5f7IKsX9fm8beYLAIyP/pSQAoxFGAiAXeod2KLK6Rek2CFAmArRqCMfDOPVIKTSr1u2g120MHg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60684132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgil4YCRA9TVsSAnZWagAAjo0QAJXzyfhWj3fCHeNO3Pt4\nuIiAcxWNpAF53Rf2N89M0Fij6WsikqJsvmy/OLenL/dN7OViJhAAOecp3k3F\nGp2aVDkyGjGhcOT8pSvJQJWHlRFStsspsNpIAve2UuG1ZirDZM3D5O4yYxBa\npRIbdZ8re2QXGn+PjnhDxwlIa5Tt8RzbdIhUDZjYa+2N9pEdXWlOvOwHGNc4\nc1sa4NectdgJSFF44VTu9P7ErBzyfHbCiL+FZfuR0pr0QPJ3Lg6ZpYHTw4Jb\nemLV5BQYLw4VqAs/6AA+hVPAVYgo9pnQZx1aidU27+19QPkdESBDyeTIA0JU\nyG+ZKhshpHEqegV4EI2JS9IFWnNMsU7NBcllcCD1Pn55MkfHQVBr0301b12v\ndR+p4GLmUkKwLiPuyiEFkfEl4YgTf+1NXLWdbDizOFNrGtd6bjRY8fIdEaPo\niwaXtN9wmLISZblkALAvHj1DUBrSBa+/GfG2SmVbSVG1NE5myofl/wx/EA6s\neVN80arS9IEHET/XmudBSvehLZGw/NIfDF1gwATefZxQ7Gs+wZBrg/UnNVOT\nGuulppbpq2xms7xmF8UEzRcpAKAubIdXI9OTcIJp0zodWdzTSiuAAXuv4AXq\ndVXlVHrcrkF179ycOKAkOVamI4D3R+/GLAzhXlAWD4ysce/ISxZuN4BqmDK3\nZcw0\r\n=97Ys\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"37035dab6e52b8cbbf3e0fd709eb560b637b40bd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210429_1619680791626_0.09153445355699685","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210430":{"name":"typescript","version":"4.3.0-dev.20210430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210430","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3de1eec67bf39e6a19181ce3db13ee33872422cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210430.tgz","fileCount":175,"integrity":"sha512-1HpXw8unlqVEEai9BgXv3t33Jkx4Rtg50pjJgBQFwMY07W9NzvexA6bM7ZApJtYfRRpB6B7YZM+AnprT0qGZGw==","signatures":[{"sig":"MEUCIQDbEXtkx+Ii5/OJ88H76w4aZBquNnw3q2o6MeV28N0v8AIgcllU4sMkutgqadynTKW48oOBW2j+/vNrzmzfP/lGyfY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60692671,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgi6+1CRA9TVsSAnZWagAAKPEP+gMhSULUZI1ZubgJnzOU\neR/oG+C1iwHc7rCUGqjA5WfY/JS955+W9qflOlFzBCYPIpmQJlC37tbGLi5m\n+NGH9wlu7/ehuxdPRCYL3mHYok918or59JjEZcWRMMZ/2ZO64j0SUkzliB/1\neLY7S0HjCTyYJfWpYCgQiws/eg7xtUv0HIGEg+y9jWo9K212myWhMRSUp9yO\nRJ+zipQNayRhS5y1kQI2KjlulH5liu6hgcn0FHP6mVEa9+LLbBRyZ1ZWuXlI\nE4PFsDRFfqxjlJ9/cEqwjoN5pnIR0ACWUmO5DkUwCLkeLbdDudndA6ScYOUi\noZdnMAa8p72z//yvb1aNEwrOo59aAT1Hnds7i5vjysE2BpVCTHksdAdHBNev\nDUwk/2Re2dJN83PlyZOp4VZ4BR7JkSSDLPx20IgP31A4wEvrBacg5BOKZ9qL\nJpV7K7pTk+ZMGlraJoL7VA6iyvkZyVSHB1pk5PXu/BcNURxdDO5kevYKzL4f\nvfSovmQ9+iwUJp+4HKOu2ADC5QOHvoRva7nHyDvD/AHfJqHgzf0tsXntjTy2\nJLqHQINYrn2ky+3omSpWe6ouQsNZLhgHJXE/v1b1h6Cvld3U3aqlnN/MN5Vf\nHJg6GKwbsWaaS0heMNch8TA7QYWBF9VlO3h/XCmyXA9N8TqvEcjDtE1yPyub\n2InN\r\n=qHux\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d16790e3cc6a3b65274ffcd857d0163ce6397ebf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210430_1619767220868_0.29567771256393605","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210501":{"name":"typescript","version":"4.3.0-dev.20210501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210501","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"01f9df505fde34c7ba5293747dc9dae298d7c022","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210501.tgz","fileCount":175,"integrity":"sha512-rMtoZu3p8ELtzGI2NzGs4Xyiyc5Yy9mW8c7tCV2cjd11AS9hrqxNrfuCeph/jWWftgtuwx8ZbAxxnBlT69QnzQ==","signatures":[{"sig":"MEUCIQDsgeZz+4zb39HEHUioyJViSIQITrhL3RJBc01rlwV9aAIgI1uuJnyY4rywCm5U18rr3RIQGoumqh2zUDg/Y7Qdl6o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60701422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgjQDJCRA9TVsSAnZWagAAqrwP/iWe39gJeLJh98YBlIGi\nBKT088eW3WZVncTkSVsEte/LtxT9XIqPAvXtYR18VCIarBdH3ku5EwwXIfR+\ng2ygk94H2wGTowTM7e3k2ni0ffFsDEzrN8l6pVUp+GymvqyrZ1MvguC1+qZj\nqBKQQmOxI7njxRLxEbJRklYnmV8G7OnXZeAwD7REJ+c/b4tzLQ02J84R1xdG\n0G8/TvMHb00Bt+qmH/KNcI/tKFnZITmkm2dfNKM1HjENT7RylfTByRjZBnXg\ny/rTAyjHYryoVk9SwRC95tfAIHMN92YtbwcEKjA0nS0fzNkC7cMovIR3XzS3\nNgxfAt9rgQr4WCvtUkQk6D2h6KYbXJEJ1vs501kew12lTuSL6EKyKCBt9Q8V\nrptr6893mVBZC1B0ltfaiunXx+RmdONhBl6u2QQGi8+7T9SQEHUoeQlSLcUv\nxefdyOXV6XezSm83SQJ8LWLpV3WfcGc+ieyPPl7f6GnK2luSXmdeyfI5xkdv\nlvH5ufoQZhkbPLcEPbNYW0sLl3YqzN5URIsbHjJilahxGXadZBzV88DUGUqV\nIsYJw9d8aHofleB9RnlmOUtfvGuzUjWlXYxtyZbHmS9g22G68Af6EFVyImfs\n3b8ecbOMaHoqGgwqsAkxcoC8CTP2vJc5iTB0T72yF0Bg4U4qa1w8YxMIR435\nXGBF\r\n=xmR4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7a8c5a00018eeec8861d81971b8fde48f56348be","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210501_1619853511553_0.5507575477949698","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210502":{"name":"typescript","version":"4.3.0-dev.20210502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210502","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8bdbf7b8f0b9a3d963801ed6835bc8b8176a880b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210502.tgz","fileCount":175,"integrity":"sha512-0tmrI5p6ZhFDCKMGRpyaRQpt3nbb/bQ9rmBg5Gu/fEV1MZElhW+vx1lwRvQm1AlyVcbNek+2F2yKorxHJQyQZw==","signatures":[{"sig":"MEYCIQDfrCAsINJ2SlgbMbZL0ZfTg/JubrCQlKuqo0BgZItipgIhAPADoEDTSXvOJWfUGPUxcq2UudSd1VY4PsmOaUoxdwQW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60701422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgjlIeCRA9TVsSAnZWagAAf+wQAJN0XNcFMxOVOq9mcjIg\nMwpXzZ/sYByDvyIQDZfuWXkK+mkemeVKtDNx4CShjT+9gn6MUy2Y6uDFvmq6\nBx26DFZUZxdv1iqyy+rM9iOnenAvBQ+2TKL4LqD494MdbmZ15b9xdSwXytYe\nzVtd2pX1p9YPjW9tQTDVw8p4+tkskmWjYTIKTpUsLZB3PCLFDi5efjHlWZRo\nKXcTOnL7qIDc6TbooMjWadipLn5GaOYLMOQ8kRFJS/jwpHjCiTXI8ZyKBi5y\n3ik88PH3R3zf8x36zrArrFRJIpKq2UF7Z1oJvhxn1LPPBUe4coYAJl5oyS5E\nsgW1Fq4AGVrNMdQNyjt0Gt2zNzqN3YfYUCRDltvUnbG6sre/Jh0F6+64UKC7\nanzX7Qd/qY6N8rKWdVhihTEs0Ra1aVyKRT1dUDsCig5USsEejxdOZMvSg+WA\n+rIdF8HJDuJdyDGCuvBRlVOf6li5x8bnzo9LzGj2iM5aWLSrv49lW9c/9o0J\nu0h3HgVP/T5z7g2ZR5WkHwMyd7RUkSXQyDwkaiOYvDgy5/NcuYau4jI0Oflf\nnXE2VLUe3nV4nQigwlnWDWmChrLVxdX5wOp/rL4pc54yoxyhuA+Skjww7XIz\ntUveDAcStXMVgUuoGA9vdkhtRzePJu8ymIEZbAO1q6+8s8/COauNRp8bvDkE\nlh33\r\n=E7zM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7a2a687c8120cf38f1118b0ce84e6c1ea8302a27","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210502_1619939870014_0.8843906400976156","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210503":{"name":"typescript","version":"4.3.0-dev.20210503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210503","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0a3eb480676effd4975beb5a2f097530ed53550a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210503.tgz","fileCount":175,"integrity":"sha512-Gj3TQve5PLCZoPBy96Yp6Y3+jNLmms0i3ynhxEJAKgax7Fxui29/uG/DClbBtKz1peNhzXwikXVFFAV1BB/3mw==","signatures":[{"sig":"MEUCIQD/TKcHjy+9bW6MDBF/dCDR1vfSYWKyUnG0Kv9l2h8TrgIgDF+cpPOtPZihZZn2Zy7qsZF7ibWskNJkOEXaZDwDTLs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60701422,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgj6PrCRA9TVsSAnZWagAA32MP/2xu/vOpQm2JVuAIGhON\n/Xd0Yxe21HbcAypI3Gimnbha7H9FKb2b/WFibmMKfcbD/CE9CegdwTDEPktB\nR89guOsAYT1Fc3AoHjePai7U/9mo61rDB/Uv8Js56v8+Zd9NbWs0Z7fTUtDM\n1m01FJH0GnwnZncAiuO8EnCG/KcBk0yMCctDqZ2tqlMUl08PZemKx8IpaE0p\n3En8Z8fIP+NK207InNyxIxvHU7ck5fr7hGTphZtr+oCLzzYcvOVAr2STwYBL\nS5sGvvvSuiSbR2863yb0XP9PabTPfVyxobxGMCikg77a/04elpKA25UriOpI\nV9XDt9pUpmmoXuqBr81NGws0RB20JAQmuzwz3goKxljtlOu63Emx/+IjI27H\nh1TOQEOPkWWJCyRlym0k9efMvbDS55gpHPyv69GjTrEGNGnwS+J02n+k40Yq\nBiQTYCNuDRf61LQz65WnftsHdSavrPB1rRHGTDoa32FB77YkEHqqgtCZuqk8\nG33SWgf9A8UkBYK+6a6nnoa9+TgV6Y8Vf+24/LDsflqwlh8lfcTn95rGYGc5\n6MDLr50bJ/WDz44+fn4JXBJsETZMfItgu0ikrKwJJ5lMewgjyYAVoOU3TKjN\npFPTpUMMDOpqP+OnEBug2x4BTvWnUHTVZZB06+e4LI1CDh6wNTri5KfJJqRC\nYSI8\r\n=S29i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7a2a687c8120cf38f1118b0ce84e6c1ea8302a27","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210503_1620026345158_0.5476354687235399","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210504":{"name":"typescript","version":"4.3.0-dev.20210504","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210504","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e5c75b63cf9a3eb70c326e763784aab3cdb4b435","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210504.tgz","fileCount":175,"integrity":"sha512-1ROBt+Q/fOQTyCYh5tKRJV5IXeuIMWNU9K2NxoNghwfUwUF+tbAYWdToYLo23zIt7OUAsF/I/sWAImmQM6XUSA==","signatures":[{"sig":"MEQCID5JJ14RamlyNjmyHsTnTEf3T2JXGI2kqIdXzDeJgwNyAiAlB16oWXA4aVo9LSEwzMKNOs3Js6O+pEt1rzYKsvf0zg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60702916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgkPUmCRA9TVsSAnZWagAAH/wQAJSDDqHp+DPZOSgXOzmh\nljRvCQzagU4nPT6ITxCBmeVohnftZ+677Bv7DM3eL+CQgfDX+QiDNrWaADeS\nqh+zss8M1e3ZKBiIUL4HC51wCX8rGkZrjYXZ4/zw2CxSgtG3n6w1WRnmsRxS\ngmN25sRMszFLm/m4AxVhum6x0+63aWoWBYTlnFKPhowkJ5QoiAr33qGZSqVI\nvRSv6fdehq2bnfDusFaVKAs5Fv2tGBZxOKUdT6cU1LUIZUbRD2+WqDKEruzV\n1bIcoIvunb7e6SOQVo0BS4sTlP0Nx9xjFyrkjrs18i9NNConG/Dne4WZP9po\n3fw11DSPlaEnKrqUBz8EoNIcIO67dCix6rScXyAiFbHPWKTJiVT9Iu5QvcDB\n/Ag0014jPgNabZ05VyHSPSt2R1JgAJVtQPF9rSNajlPlpjcDcqCYOtBCxR9z\nNc24KoylK9tRU53nbrlE2vpL4OhvUnvOER0pHy/Hur3UGdZJ8IWPyJ3dbVBk\nOPNWhHx09N9HUTz9DBeoL0Ja751YG843jcNCpr4Utr7E7uvGhmhTAzk7tMbO\nG3LY8klEsjD4f/2vu0j6kfJxA+tPUxLeTXYOnstX+Q66BB18TZSgERSxcYNA\neUrgXRjZaImt7ale8urE5nrNePGF1nlS151QkFPIJzWTqC8SP5mvC7W/oUvs\nlttS\r\n=U+CK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f7ef1540d3c10fb282d1d433d9f2850b28391169","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210504_1620112678011_0.5305940258200563","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210505":{"name":"typescript","version":"4.3.0-dev.20210505","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210505","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e07b21e12e1768ee3a3dab04b0264da4d10a8d96","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210505.tgz","fileCount":175,"integrity":"sha512-nwD0tapmG8DX8GLBeDCEYqiYjj5hMUB4eXiw7Z4MYkjlAD1VQ0gJAaf7BKkGRU5PpuDFGYH+elqgJckggKVW/A==","signatures":[{"sig":"MEQCIASgqu7bmWUC3NP0VDHYCUgF7OG2ZU4dN8MUAivxCw+jAiBX0GBmNHGWV7oScnwpmdXZko9GsT02cW/YgWwK4a5cFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60702916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgkkZ5CRA9TVsSAnZWagAAusgP/Ru0BEYGAf6xnNlQup5m\nvjwipjUg5yfcGIoUx6WqYi/Laf1P8z8JJuO3xcU12pYwKCYaqdI1YqbMdXh3\nUVh6FlAC8N6azlM2SPhKufDmDMjMDS75iy31iVAlWFE6rpk0Ja7AyfM2Tnlp\n3r1wktZwTghxgCesV7BGN4sAR/Vovq8qn1/+uWI2EsjPxvEUkWz8KM/kMw6M\n0pW8FGQWsGDKJ3zDRTVGxrrxb2RdstKmnSPMlCUwmHqrWD/8mrE1cikV5Ox4\nZp3Lsyi0xR54przRCN3Lvx05GrDSgtSyHZ63GHXapyHW9UyrD/Fo5pDNl3TG\nqjA2N7zzAF1I2iFkeIQIjCoWPDqmZcattsj2QZRmKC5zupXHJuIGFHiaDwoF\nwjl+vWHtK0CJ1CWPgxXL8orOm9bC6wjKg9znVgetcsMRs9PfkpJj3dIu/PB3\nZwmZmdxxiM4jTBxqe8/xwD6l+QhU9WqT2jMa92DRSx7TXf3vqnLpeXIKnrX8\nfxgpukC7sRb6siEPFE3fgr1cpM8b2XcUU52AcDT7iva+0/oiCIKF2kwEPrc6\n0e+V0h155VexiYqmyL/oJs82YLDo1Q4tBm0jcFcOZfAOCpOCy+yr39QVblyV\nA5eDMz9ZCFao+PVa8U8fQnPZ2BQjzvZd8IuBFXZtcuBNbuXNpeNvF7a3571K\nVuxr\r\n=Gsid\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2ef2718b2f0d131050576d837f6490b463bbf1db","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210505_1620199031464_0.21115395660568814","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210506":{"name":"typescript","version":"4.3.0-dev.20210506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210506","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"65279fe5746ae4d82397f8ee82c16024e78e1e8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210506.tgz","fileCount":175,"integrity":"sha512-91ypOFD5hHQrmldSns8/oIq9VZ0rpA/t5NC6M9b5ZLcUz6tSF66wDqIBs6fu/yOwvOd7oozYEEC5nuBfItMAsQ==","signatures":[{"sig":"MEUCIQCeO2noXO5P2p9CQp/6klcGE1OmXqba0Mp1EHMyYqUukQIgNpEnBPrp2pcNgW19MSZsZ+4CG9ewEuTJTIN5nLp6Pmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60706570,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgk5hbCRA9TVsSAnZWagAA3cIP/0O5vsC0FDO/v7K8usJ1\nxnc8AAUOKMngfO/SiDhR5RszxMCUNveZAvODG7ZE7VhKawwPqpLIEzMm/hwx\ntLa+MfksmQ1q5bTMHkWfVpDkcnxePqtkGMgMcgY+3x7cl2LWiCZwu+mIFJa6\noonJzbyZTMgcAGaNx/09WihYQu1kJ50pDSU7QiVwSdsHnajkBypu1XXqKjNH\n57x+oROHNV1p3vDYlvz2Mu1N+3ABiS/nNZ3Sltc67pTyqNq6KU8fxlL/RyCS\nj4O2aBuDBDKZrp8S0GE2WzZtBja8gliqncjeHJWM3T6MDA09AybbC2MvDUZk\nCXNt2v19mxqnlDEyLEhVU+d2pekHUKO/z8SvsFLl7RvXbzfCoGgpIkTmcP7j\nu+rwIIDZBfeNk9VMW1JPJMWRGKpfO0BaU9jbbT5rCNXMe/S/FSWOUoidBlm/\ncEawI77uLCOmyzVlChzXsreQWOsaYcRlOZ6Z6NtHapkU1VgbujMTX1WpXajm\n6FnDI5U0b3imqaXXRbNbEGrFNVoJWoCX4QpvQnnGyKKzP6wMmmr5iZy5eDK8\nxsWo7U/kt1PRul3JYL9SBjW7Hccv/HgkbDLX5yDQWfojGWjnI7ZkQpiEcQqE\nVODaap9lAU9QMNiDvzCrdyMYoI+1GcbEqfLeqQ9b0NMhhhlZVPsxTyvu5ewZ\niEkR\r\n=PsFg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b8da22e6c3c8152e8369f7527ce60253bd1e439a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210506_1620285530530_0.015120727901243969","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210507":{"name":"typescript","version":"4.3.0-dev.20210507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210507","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"07fdc0479bb1b215865aabb01ed1d920cf844ea0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210507.tgz","fileCount":175,"integrity":"sha512-SEZV+XOg8exwPXlTmxPT94v9kasblelh4TjL1I12FBv0DiorBHDtUs8GC2h2sg8zJOgFwj06QXiaLLGL5RhzDw==","signatures":[{"sig":"MEUCIDGNSdHFrhqjQovy/uSlxH4zhafMh6sc+hSIzN1v1d31AiEA2imYhXkIoSGXJuNcRBsaJiymWmxEBp8a8hCx7CRN878=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60724665,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJglOkuCRA9TVsSAnZWagAA4/MP/1FKBVqbPeZc/UD+HfC5\nv+ZIS/457c1yNRppDrk6KTNDRu4gzHaB9w73Y8VjXyRNTQfryjDrGaynu8gQ\n3dAv4W158muKQLRzq5g2uxZBcidN6uCeu4kYe0Viz7xCIJmrCnlnKMQ9trYh\nOQxf0FJtTOJquAXk/PUQNIb3W4VtghoEM42EkPgh/xa9gSnls5dYQ/YKx5GR\nv2RjdrtGSqjd/EZp02MjS+PT4otghKxLSghfk8vxHfIhUN/wQsYDRVhBcjvJ\ndT2X/6AT1HZ2fnve3JbEyrkmh+ye+ucXQHbLwyeiVuN1Nciux98LFnXh8F1a\npOEn7sMDNgaOCZe/vcpfTUoffoMtxmu8vhT33YLead0vVbzZyW1dq1z4xBuP\nTnsPCDp7yzloN9m23T2lKy74RyALneu6MEVXoCl49Q1y+taEvOwG0giBxG28\n2U8VtWyUKH2d8j1HwNMEIab2tiy5akVwI/TbWfTUmI3lq5z8y5eX7eD1oY3n\npMSASBgRhvf9ikO7twCG1YY0LHdf20cQrVZKJvrpwknWAplo+6XU1BzWPDg2\nsBwFiOVD8D0p3+jCVtoqodL9ADXQ7rb7Kuj67j34trBPU8Xt/H8J1UnSyNuE\nCNfZE6Bmm4XTKAnJsBPlKUTbqKHriMaNBob3YtfYuG4v03vLGjiGepUNfmuO\nwKmn\r\n=I1Q3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ad6ca7ae2cc0204cd9194cdc754b860aa96b1ef9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210507_1620371757723_0.8664723618258252","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210508":{"name":"typescript","version":"4.3.0-dev.20210508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210508","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"62532cabfaf444441c2b9776dbf80852319cf354","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210508.tgz","fileCount":175,"integrity":"sha512-nUNce9KTE/qnaadNe8j+qvmnyVWrMggucMxOpG2Tu12SRfrhkxkPMAUkjNzIaJR0t11aJnnTsxggk5ENakYFsQ==","signatures":[{"sig":"MEUCIQDSxIcABBfBA4JSgHXc9w9H6UMxvEaKs35gxc01w9m7HAIgLyJrdr8DxgzZUG6Uzr9OYpmGRvyedCpoSUf7YTriZXU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60706068,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgljvhCRA9TVsSAnZWagAAKxEP/Aw/w4eTtEWU/d18b8CY\nj7Fv2hDWGglxs7Hze+AS8hQSyLjEVCVzg5DUgO7hQTEMwWo8Sy+KHZaxiFfW\nAffADvCGlkMEztRiqoWG2uNYGaHo0XIIu7sAC5+psviH3UhgHeyz+8BwRfz+\nNks1wIxpwNatbnM//e6jHbzjkaBv495LnHmg5Mi577hrPSwOjUkrAdNe/8y6\nrBJrQT+PKDzsWlfgNH/4H9QFf8y4rDzqtQoRKqEaoaxW/C6hdkEHhzPKqByY\nOCa/qZxiPC2QR5GudJ7qcV3wY1si8oo0g9uDe913I54fCAycro4745hsy+EA\nLTy1k+UV4ggJZWnSBvO25L0ub6VEEorNoPpEH6TZf1Dfnhxl3ytw2oC5x01S\nSTMrmNxeBLIEuSaJwIRWZ3WYB6BGsw+ILQBmh7ASmyxkmxV4UoM9Fo4tGlrT\npdIc2ICY8zdhOipvZV9TyE+da0D6OW0IGwPUbJPppJeThg75xHBxqjpAhrPK\nIAgPtbO+u5KBJElBGaysG7zaKT4QzPiRT9zrUeKXJizJoxxeoyRqew7h4zp2\nrePDNyO2umFQ+vnlRcPu3oyuZVU8rNSfcu6YrKs9KRzMxrss4gUt4DWqwRzq\naU2iuVhsUBAoXO/6lGDjOsefYmBEUT37bnouk4UHEOE5iPQVtDp56EUeMFSC\nCms5\r\n=WXE7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"31253984aa831a298c7a46d4168d3cc9568fce3d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210508_1620458464951_0.2551492648626952","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210509":{"name":"typescript","version":"4.3.0-dev.20210509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210509","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"899a2c48d581be708288bcc0e03f9138f7a70ce6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210509.tgz","fileCount":175,"integrity":"sha512-XBx+Jjdd3Te1SHm6Eco66Ed75FuHq9xC4pYKoaJHPQDA8jou6Rwv3/2w3h/5zX1d5uQudnfXJYSo8TZiI8KRWA==","signatures":[{"sig":"MEUCIQC2mSbdjk5GSiyMCxRxomMolzSS62TX3cRtiRVGUxWOYQIgIz01jgiPGUmMQoePf3yDrHSjqAOLxtg7HKlh0Egbieo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60708178,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgl40KCRA9TVsSAnZWagAAieMQAItAGN1CZnffrhud+vsU\nNbOQ1A779HBLdW6jdKyD+PWpNn6Yp2O+ePyzHvbYd6L6VIWXgDBGCJY+Eu3n\nPgpO/q+AtOBmwcGfbsFLGJMzILZ+SrLsDbO46Oj1mpmRp5nAK3sugOA5LE2K\nd08HlEpxKs3rUAVN4BVa5Cbs04FAouGAn7xq8TUAF8F013lVji2oGPUYRJgY\nnjL7gIheI7MITpDeumf8k3Wzi3fke0kW4c1PKjTRVVxnhlSqaxqUUKm2H/4W\nn6TUe7oBK1FXhYRDMzno2mPu/AjJ1u8J+FiW1WqUGewSWDx2GUrntqE76TtG\nD87Y4rBgkQw0FRVONPITvqyXKi7C7nbvEviXIOLXLF74AC/2vUFaqvO/F5br\nvDK4Rd4i9KlOMrgRug3UNLvrkGJ4ds6fDWG/VSifKKF1yxpeParKtJkzziuv\nOHXsDyRcktrNkp2XmgDk0hFB9ZyEXVXWuGKTM7uanWnA4EdVm/+PHSHL8pQQ\nrucFIfOui6+lXYbHF5nsrAVHcKv1jyhSN0hmpHkfa9yxmJUcKfhhWYotEYBe\nvT1iXGxKsapSv4VX0FMtSEkc2Tacreods4EH5dMV2j4Ee1yzeoFG5UlLPewn\nbY/7I83yjCIe74l4xU7XYUJ77dHd03Zmj4gYz01a8LunBvdPlFT9zvjWJn1H\nNNGp\r\n=Ga0o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5b1e873b031f7c82cef0bc837c3656a4474fdb35","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210509_1620544777852_0.9310207256598271","host":"s3://npm-registry-packages"}},"4.3.0-dev.20210510":{"name":"typescript","version":"4.3.0-dev.20210510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.0-dev.20210510","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a50dd4f9a6e616f82cb33148c7f5ee80cc07857b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.0-dev.20210510.tgz","fileCount":175,"integrity":"sha512-HR21ZkELulLWOHfHIA57/6rD1rkadgjyMp1TVeXQ5v82/rn0V3ROkAnd1elt+Mrjc2pTXcIwom7E/N5RCUUxMg==","signatures":[{"sig":"MEUCIQCOgAvJFZTyYDi1x1RsoyH+nvaFoXJ7Dj2ipzgo6AivfQIgVbl3thewkf49UxpxVF+6kfXS2BbWZSRXK1u05zQk3h8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60708178,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmN4tCRA9TVsSAnZWagAAQhkP/RELhjkYbZjcC1eCkzmt\ncyp8qEOuPP9x+YOMnUy1ZScaqQGhOGvYJiPiVb95RhDdDnHbzal1uqUoHIjm\n47S7sPnoxIeotg8/m2o/UIHfaFxBN5wbuBlvU9YOWJBe51zwyQqWlRJtps9U\nPyX0wI9xToIn3kntTq98KzEgBMB3phGSAmYYXA+RXjLuIC1tT6xl8bobUSPk\nkoBMiCuHJpowkrQEAntwQOBY8mZ6ZDb14EVCj+7mTjfz0GJZfj3+hjLCpwVa\nCYZ3lZEE6p4Qed/OOApe3CCF/dZj0oSMeF9bFP71SU6uGovnTBGrYQ+2MyyV\ns7mj8qZlIG9Nmaf7H9Uy228wVh75KCQmqjCLhP2hAicZxq0jZmcuaEglKqYS\n3AWRxKdL/RZHfzhSIy6xHdhUJnV2OHKVw27Vs3F5Le3Jr3cV4vR7fmwUhhGg\nexerKaFBJNriWasA5dPxZbq3tveoMUKus5Fu+ZWmHSjsYeo8FvkpbOPdfAyE\nHt3rx8X3bAQZFGAPMQ80gi9WyO6mevYpeegOkz/0U+oKH5pYsWO8pWyaRme4\nYuWQBHaA6EUxoTRiHWnSUas/NgVyO3ywd8RK1FEIKRD+Jq6khA13BNSLpnfx\nw73K19WdN+D4R/MKCy3p1EFrFCJV4BxFgLTF9x0Z0lJLbrDVnk0PrNgy3rxw\nluBd\r\n=Q5K8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fc34fa0531d63a625750b9e77626f54fe069d178","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.0-dev.20210510_1620631084617_0.23617199378397147","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210511":{"name":"typescript","version":"4.4.0-dev.20210511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210511","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"35e8aa59b1b2ddd35ad42b1a2964e20b43adf6f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210511.tgz","fileCount":175,"integrity":"sha512-qrATRKQ9uiuLeykJ3FVG28DnjZQzNv20dDPnd2jij1moZ77wnF7ClvTjg5vbwuLdx9wXeSG0nIFbCYz5zEPmjA==","signatures":[{"sig":"MEUCIQCLPeDfsu0aRez1w1VurJ6au9TP+hchyIMMYdOQCpN4bQIgSTzK+LqUh76SVwX9IcNrSqFtiGAOVaD72MjOBLQMimg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60708178,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgmjB1CRA9TVsSAnZWagAAdg4P/j8JlgBqasSi6hzEJCst\n2Dpw12ub5kuqoKKvjQCsbu80yPc3e4ClAkA15HEoObWp7AsZRmIFLFYbQTUT\nEVJUkHNFZQhKxGR4lHn5Ho5jUKGCmLUr6GHI9NWh0Xuc34YDumwf9pmT18Pj\nyeDsMGeoC/hMszPaWuOkpHFJfUSa2o+aeoIsTur62LyWN+dUU58m5Pm9GnJk\nmuPyUF8rzNmpf5feYKdcOum2I03DmEM7Dyic1+tpGxej7NAroRpjCFLEFTV1\n+WP8H+VVHMZI4O0Psrh8eE5jozYGOBYI87BIwOf4aYlzPJ9uqcYcNvZXI0Y4\nl7DZEQAaYgIjopnDX0COThTROKiXTaAL3DKkAUNJ5SP5cI0XqHVNf2NRXJo5\nGgjoUusNzJhIu982nNAzl+achTvMX8uqpyqrpgru7v2+Z7976Q0iN3gxS2rF\n7HCUXOaWaBPjhSkAvIR9KEkM7tuEpxOO/WRM1V05UUdG0a23wuP+EkjdGz5k\n8VHK4+y1Hfd0J9yfvEBBpDFG1/IqHJJA09y9LsVzTenfx2pXT6Ut6l01xN1E\nT/wLITME3y06Hxhy7KI/7fRJLhsG4Rffz4HyN+ADAJZzammFxnj8ezpNCRKG\nCnKtUIx6UKc/L34td8n/5JJdrPDbzzloy+VPA12tS3IN3tbyoSWO63A241Cs\nELC3\r\n=tDgQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bb6d8a716e4eb2f7f18e7ae7b1d0f69d794b2d31","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210511_1620717684897_0.010761735032411401","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210512":{"name":"typescript","version":"4.4.0-dev.20210512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210512","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d10592c84fd2285113f507db2bea5041b550e6ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210512.tgz","fileCount":175,"integrity":"sha512-oXSw0IS2xpMeBYv3V7ws6S5TFYaRkZ5TS9m9KslkBClyh16sg7c0H1vCje3NriJe9biTRKuPjms8524NfETXUg==","signatures":[{"sig":"MEYCIQDJ9gibmgmLcIsTaR+j7wUoVBZJzraw8EGewuwpV3jJdgIhAKGw9uNQHNTSZniwmlqv1iayIMMmWBvHaGxIQpxKWkPp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60708793,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgm4HYCRA9TVsSAnZWagAA96cP/Re59QQlgfREiOcnvmtN\nyY5W3T+7qIXsjcWwxV0OY+zMgkDI8GQR5K/r6Hz4ew7XP5RlOlLLmMCBSCTY\nGiRIyaUKC04FmTuEPQtPlLKw+LMdv2cjSf3YslGr8VonIth1KHQBBZ3jWeoi\n+weoO6SxvdTKx5d3SQY44DM/D/yGjJHv2HTFdsQtB5nO29Q5AgQEfcgTTIjb\nhHQ+i0FcRqsB1o5ArPqNWTptdH/4UD6kbZIM7keDNS34LcoquA5zWKVEmBLR\ncFXN635gVOhz2Lkebnkar+HypDSnWzIxKqALRiLJBJs8hHm/kkNHSm+HVcxO\nFNOsFIcW9EbGeSicnzaYhm7VVQBGsSNazXD0IBlhUsKvBdZkLmmCCvSdJzZq\nclmsRGYDdwbOc11vLA0s5214xjKGIOgx6pFJEyiRUV17KxVBa+I4TnETnBt5\n9JG+eKpw5yh210t7zsq4y8qSQzgpWtaCDzBjFizCAKWaz/E+MP1jwA8FgDXk\nov8lrsR4O825JOTxjCNHCCD37CRlEVejgQIr77eRWbJwBa2Vu5Ov7ifj2fjg\n14ox3ti+9Iz105mFXaUHkAptdZ4t6ou08BAj3UPf2Vgjbg3Ec/v01qLbYhN1\nc+AyzuF78/W4o5cm1G6+kmhWYxEfenGV+lGGI5e9OFieK87rsHrB2Lp2t84e\n4Dqy\r\n=HOCz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"463c79440fbf6a135f32ddc96cbe9a7bab697030","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210512_1620804055449_0.7585558551492397","host":"s3://npm-registry-packages"}},"4.3.1-rc":{"name":"typescript","version":"4.3.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"925149c8d8514e20a6bd8d4bd7f42adac67ab59c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.1-rc.tgz","fileCount":175,"integrity":"sha512-L3uJ0gcntaRaKni9aV2amYB+pCDVodKe/B5+IREyvtKGsDOF7cYjchHb/B894skqkgD52ykRuWatIZMqEsHIqA==","signatures":[{"sig":"MEYCIQCSiN3jY3UwRTAmUsIa3t/ePRPw/qq1a8sfvtlNGIW0sQIhAMzGADJ6CnvXkSk+BjVKfGHW+4gYLREZQ4ovp/XL6H2/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60708213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnFXRCRA9TVsSAnZWagAAv6MP/3RD0vJe7t7uXp6G26Xu\n+yQWGq2K+mCtKp/peVvOTOTDnlqQ1PgiO65vSVPkykwaybBcwo8cURbIGuaq\n2qQ1RC36G7YkQqctpoj9kd+V9K5yTf8A5QYm8lqcoayw7sDNMu7uRvtlfFPK\nhoDugLa+euYptNJ/ZQuL11LAaypbYeJzMdR874E9f/54DB//GmXhsTKQqkDp\nRcmARfsbR976mLihGr5+coI5tRGhjAHcBzNkiTYVDhIDjDsiy8hmOWSpyrEl\nEQ+WhWhcmDA9gqkToL6R1dzsHydGHhOQxVr5Skeg9KPyYNd/dxumn4Jr+uzO\naXXWYJ6nY0G6eMTf0LrhpbMZaUvBo/5smkOjg/GkDawhb0Eg6Pry2U18Qxbz\n9Z1kZ6w4QleqOcBoXr6yGQ+UBtxYE2RPFiGS58lj+DOidk3aofkgSPqhdX9m\nuEHRLNskLKN5zI8K2ozcb0XwDiiFa9OtYo/6txU0abCOFsgkMOAyl7kRDY5F\nSYCrwI0VANBSnDgscybGuO5jcD5CpNTDpceVH0PVsV5Wi1LmuNaBpmhzUewQ\nPDqfH93uyTo8Y6agOHGr25Xo1MaW765I/T3IaTwtVXNPJkkUyX+bQE9vQxo6\nDUiXsWK4dmOT26Fbh6+9ueAhr2XMEGHcGBAYdSVE4bPFuEZ6zbFw9VBlEcMB\nd6xJ\r\n=+z5z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.16.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.1-rc_1620858320804_0.41310825688885733","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210513":{"name":"typescript","version":"4.4.0-dev.20210513","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210513","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1947773dd5326c1cc598e92c7782271b8970f2d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210513.tgz","fileCount":175,"integrity":"sha512-EQpGfND5id9w5jBmc57FRcIIkbPXkupQVNoVL5F0a5nsCGS55eKEsHjRsnDhFT9rv7W5sXrLVWpE4/0qSmxGvw==","signatures":[{"sig":"MEUCIQCzaLwrjlY0bznvMZZz4eSnfbJNXYuS/f8bZ4fN5CRB2wIgR/vHtCD7ZVYxKjO4NN0NLmtNJQw8XYVhgDh3Ar/5nXk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60747623,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnNM3CRA9TVsSAnZWagAAmu4P/2Zw4TR/6/E3LNXqprvE\nOpJv7/UkvuYV5DCSlTejQWz6Qh3DzVdKv9rsy1SyAdebFLlcFXSnv9vY+9bv\nQEeUdcfgXguJEl4vzWIm4CfnOGhb8Aet9jLaDMBkEaX+4wVtkp72SXG5ziD0\nxlNbO/7NmIkv+yuu/VElrl1ZBcb1lnoce9hVDCWrtYtv2+bJUHJi95haW4QQ\nvtxZv9BYka3XkS6RuwIbzbGHWqPVAJ4wUji1K3URIiHcLBZAI5qRABDFc5bL\n9bbGIDqhuiiUzbxGxzioijVUMByS/u5zVqdwjzP+uapU7DeLGmgcZg7eoTrM\nVCnSm8Hd5UyJb8VABHqV1lnsDJfIG0IFUFzBGofXH5b8BOU12dQSyTBoFYZl\n2yLIdvfk2r6xfOCrexvSeNFN1E3CVm6LtsFW4ICrEmL4R8eSGbqRnzROjq7C\nwq7Z9V9c5KubwT7sIUS1I+1qb98RpW8YuU77XANSlHV0n/mxvYMpRNfevc+y\nO8ezTePB1URcA28sVQvGB/LoH0tfCXzyXN2pkZytI3y5QjwXL3jSCXj3RiCG\nhkNAJdno6aOrqOqN7SQRGlxAR7rEBN36FPvNdoh668kM6tQQkNNBpdbF1kDM\npUgZuJ+qpXxcdYZRJXPcd6X8O6xGS3+/XR2prDMNoVGtV9wVg/S3QDCYVAO+\nPzvn\r\n=QGdo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4990bd9293e6076e3c73481568c9f55ae1070f1e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210513_1620890423118_0.6392012876491695","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210514":{"name":"typescript","version":"4.4.0-dev.20210514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210514","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1233bc9ac6a85ea92ad616dc1872dd556c648a54","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210514.tgz","fileCount":175,"integrity":"sha512-ebRy5mxGK5tWPUo4zJ4lJhlRWywO4i9txBaJBxXocUxyLao+2nXno33m67J0Z5R9/PYKPNESaAmrgxNlVkYEsg==","signatures":[{"sig":"MEUCICFOcjjrcCVuXxZzIWfAEF8eLax4E9VLRBlbIotGtFYoAiEAyZ2GLOdOXg0rrtJGkpm+KIyQ8HBdlfzrpibYdilU5SY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60747975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgniUaCRA9TVsSAnZWagAAbGgP/1AqkspiAIR5ubVVEs1y\nYHGnP/es0pL3nWsE+rUsyBxNuYJBIEhIwXfMyO3RC8WjfxU90wBINkGntm7n\ngAJGwMvW7Qwck3TQ5KsFv+PKjrxD4u5PAq1CwiVTIJh8ZB0Z4gDwhSUPmUdH\n5Z6Drk8rA/59bUji5208tGuo7adjowBj01xoCuAzOHy13rvs0LdKsr6VQxys\ncOXUwHVAdf44q5JEVKLXM70RnVOwayxAkhMfF9z6NgplzHvWpKJc4oCeUxq5\npJzIPtfULd5jklSF5kF7k2T2OF7jAEA1L2waBSF+jcB7hI2n9PdSL5sO1RX4\nHah1Ia8SYhd3B2wGuh5bz2lykzi9jqLEc37g+gsLo8j7nVpnGoRb/VeJ0bj/\nrfNdG37IqrK5d/fdUM76Pk/Pcu1Ik2hxiDXjS97OKi7MF+T9TLzGF/EbW9iO\n5yDbpbPxqH5qLqEtJqgLWJvmG6PwW303gAfGSkvNfQlTBGbBOEZ6xvn2T3rE\nPlQumv0lsKc8zkqJe5LSYQDfs/Ku0h53M6sSg3ZrAAbq4xNmoOK8RYaYfT03\nxQljM+SJqa8EGm+X9+J1t8dwD8LFefwLkiWJFSEeEHl0CdO8jNouwmRnEVzT\n6ZVXFXYWy+u+LX0YjBq5NkYq650nmcUSnQT7aODdvkPKEKoh2JN7F6cSvWT8\nBi3h\r\n=x26O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f414d136795ab248c551978ad286717c016998eb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210514_1620976919346_0.5949368325950679","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210515":{"name":"typescript","version":"4.4.0-dev.20210515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210515","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7a8aa0a8adaa758ff6bc5eef18223be77ca35179","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210515.tgz","fileCount":175,"integrity":"sha512-1pCaHD2bVzh+HSyfiuCZiiuMx5tMYrTgEti3ES2Me2ei33qR2cX11FfJhxh/tKZD+hsLTnlaiOQjSh/inXJR2A==","signatures":[{"sig":"MEYCIQC4Ue7kTxfE27TIeFxIY/45o9w9tw7mLcPOsTVK67M0uwIhAJTHpkviEiflIcUDbo6o9pJbqIUI7OVDmCqUE0Th4nVS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60747975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgn3WeCRA9TVsSAnZWagAAUkAP/RnlvcmWyg0ontPMNiAv\ns5MexM94ur6JMHS5H5WcliQex4EEkZJc2jsSx/n2bpuOQFzvm6VM0OVMijJN\niL5u9madsFPPa1j9ev3+MUU8xjciwJDl2nkhG5UWsy9hWQyDn6U6w68wCeB1\novU8cKozYfNRTSppbvpfmt/fihzKD1pN9Eit78gO8fSz5rfIgWRMkwkjJNk0\nqlxIZ2BA7W2/7NnWl6dvMYd0c7DwIrpqmFgUtQ2BrUpz/GTTWKuIBOgAiXrl\nwwrrCG2tJ1fAs1lzOp1NeC4t7SuNf73FxSgrIDG0qSVSNgzVDC2B8DWwrDnW\nzcJwIF7MxyflHHYoxxgWEM6bcNG2zjERfOCBigZqfnx/GfP9C3PPAc/MltH2\nvwLEqq9cd7p0TSEDFgd5Mxk65FM8Nc0kzCx+okWwhhDVMAkAQOSuNBUL8Cn0\nB0ew0YashtDmlxZuVGdXIsTjNwpBv5SO+Oxn+Igoxpo4BEGXOLSQ2i/M2TnC\nW1raF4YoWeMD38+5SNCVnTiSBEArC8g0c0L/JO3ubCsdDtaWG6PGkfpgURCs\nfooB/aO/2VJDSuWKM024LDg0MXnlomKrSbfzG6uBB0Bk0hYnF6GfjIZM9aKl\nPm0zpzIGumGRKnV9YTZyiR3gutUQn0+zY+YeFzrDNkdNOg2+u8whhGVvDwyF\ndurx\r\n=txIm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9eab33463ca08a5489c3cb370fa49dde44d6c4d5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210515_1621063070097_0.08855863540878639","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210516":{"name":"typescript","version":"4.4.0-dev.20210516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210516","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"685804a21f63065b95e760811527d91cbea8b53e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210516.tgz","fileCount":175,"integrity":"sha512-8wtQ2mUF2+dfWk2CaLRdE64MbmOqTEgHMyWJ3fXLIAl0XSCz8BZqFbjphLMdb0yIG0I3P2yVmEDgYm+1jovNqA==","signatures":[{"sig":"MEUCIGBOf0E4Iibadlnje03Ujz7Iu8fmyj0mA0+Viziq4pihAiEA53hSVSCKM0Q89y3Jv1BR3ykZxmo8C5NAj9hwygtneRU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60747975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgoMeoCRA9TVsSAnZWagAAs0AP/AxIaiBdOAL+G9Bx7bnr\nQCyc5eXVXSu7XFt74/5eH6hmim0AJShHvwjbyLSxF8nAy0qgEnCFEu4A9qBR\nBIVHowq23sOzXtvbDn5ZHs4RXceJbUNcUQU/vJ/qHUlmTbVdxiO/9klRUCNM\n/X/Pw2LaF6gC0wqGIpQ/AyCU+mDR7Pm6tbNmD6lzYfDpQQ8i7ViuRhAcOulj\nEhtC+r0owH/D2IlKq8l1lQa10VodV+FLhQ0dkmlAx93iiDR9bvbRzypGU+17\ngiKw+WQM2URqYxS1KhVKpLJIrkwY8b0kXXqQdwbGH/i96h0kv8Ki17aIGNw5\nKMgf/ku1zIaLwa//sMZgkly5mPM7RGK66mSAyHKlQfLR7zSZ4dpPYyLQZ2Ci\n/hDqQC6KNJ9qGBge9RkWcpH/PJ7PorgT1QwQpxkWt0F4klSEK/JJx4WyhuS7\nWlBc7jZWy8UriyEEbNwiftKBmH5RXv0OfdPv5IshLzGNU3ySdwKiEi2I9tVU\nKsm4w7uvjWNozPN5D2l7eClvd/bMvItS6Ij9wbITDygeYsHRg7F/cixHqvCm\nLSUtez5MA+a3rZoMJV0eKXxNV4nsPrlcXZwHTfTG1DQxBIUqo0vH187JUpQ+\nYePLonTB7c8mRg3bhgFdoXzE3K+bNSid4eC0mlTXoBpci5V5WsMnmhWJD9pG\nm/Zm\r\n=jcDd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9eab33463ca08a5489c3cb370fa49dde44d6c4d5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210516_1621149607074_0.9787503177925241","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210517":{"name":"typescript","version":"4.4.0-dev.20210517","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210517","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"54a07982fe2e16086c96f1f783aebad76df9a8ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210517.tgz","fileCount":175,"integrity":"sha512-+g0Z2lBgY/XA/VWQuRQuwwd1g5ljDFngGhT0izUh0W/DuJUzwfkCe9og9wB8mdJqMHT5BCYLuhed2KupHhFXMw==","signatures":[{"sig":"MEQCIEA5j22JsrS3928p8jVdpuBHV5kT00K2X5TvNlmDxiXSAiBGnH8Me4LOLTU9qlQ5ZvlfJeZaXQwsr9GiDcuKs1Ow7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60747975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgohmZCRA9TVsSAnZWagAAskIP/jY5V4R5NjHllw6jUDXU\nj8MOgOGRFGjSHK3d9QRt6pL4JEwEe10DsnebWqq/uep/obTUtmxgNhB7CqQU\nwsD+zaTkOarjU1vTxnNld8jRWy1GoXCvaoXvgIQEAJRCj7olpNF/RGujyvaw\nTrZf1IBgvbWkjINF5qpMJB9HuZbQMwA6ciHyTBL3kO+sKoysVujO5vC7+N+G\n2r4pkU/otTMFuSu9c1jv45XVXt/RgdP/PZMK/UTmv52ggdCUbbY1x/M2bNu3\nDSyzs7TZtC7JF2+ODwVQyzmDTrYgKG4TmP8OEz6RnJupEVOjqE7z68fqJfj7\nB0cA61ZGEIhGTEzpvMWaT0/GVAJVfVJKAjW5HIKbQA5LPlgZtUWEJ7LQypeq\nM4qowB3BabWL9aXgut/pu9bmFizAK1JevmbLkCBc5TCkFoGKRaRt6pJtD/CK\ni7RyB7DT9wfOCiOCjzldJQVyn+9KcrGhDDcH1aR/leve6sU1ofrSmhsWzFtO\nHb1UxhIgBpOUeVvToxBUw2d3HqX3w/JOqdN0PVDxynbOwFcN2uScJPy2h2Su\nyN7nDQVTDUCdDTitDATypSfWW5rdlMeHNW8iW1OH1IH5PfN+NikdwSRpC+IX\nUG2kWFninom5/a49jqMMcMEO2SCDRTdOTA+M5X8mAxf1AnyQ5EbNu6DS/wUp\nhki7\r\n=NXcG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9eab33463ca08a5489c3cb370fa49dde44d6c4d5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210517_1621236121217_0.33164874915623055","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210518":{"name":"typescript","version":"4.4.0-dev.20210518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210518","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a7e2a0fe391cb7dc06923c7a77f3d428bee6e242","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210518.tgz","fileCount":175,"integrity":"sha512-nLGWBty+5GfP3e178KBcr+5yBxP6Dtxb3HFJEAKgR161CbbTo/5h7PgUS24LICazRwFYrmZn55epXh4+ScGXew==","signatures":[{"sig":"MEYCIQDaNL4FJoEHYsEvzHmb3u1pQzuzYh+UEfyB6bfjFk6ziAIhALOw6YMg/YwY7joI5tqPfCZgi5GL9tgZ7rIl1Mm2F1y1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60758309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgo2w6CRA9TVsSAnZWagAAw+IQAIyUb3kCS9n91v18RJmu\nMcMXd/KJhOKKIBxcWk4vgvKpnuCyCDZRDHYqbNW7R6geHOd+a6O92BiPKxql\nivVX9zJk1Q5Axf02gx+WoUjOU1u/ZMIzS6ss50alA9rJardSoDyevg5APWqE\n01LKJ5Dk2Oa1GvRVyhn6JPFTFLMU+Hc8e1Kiala6cpaGObb2RtOA1BEz6L7m\n42EA/azIWec2ct8DfwhNQw/RitJO/fTxmI6Nj0WONE16Yj0WsPx+IKnk8XDn\nGaSN0+obVVdhFg9OAyv2kXbmX1rDqxDhFTfP4Sb5kmZj5x3mNTahCKNDpBA7\n4jb5VzAZJYpScdJIZwOH6Oe+QDpm3VlT7OoaDEA89z9ILiyTnx753XKOX07u\nEISYUpgX9dY/jKCMVtAyTy6M9Fd3w7zqc8IePWUF4wivYBr2ebeeIAAf+HDz\nqQPI+doQez5jdNlmbOAABklCyX40QnbOG24dt72iYcFi2bHsJMUbuFRgh8hz\nDAIAs3K3PzSZwP8wIVEfJ/F8vwzv15yMuraXneTmLqegH9e5H7euy6uiUHpK\nRaaS3+EDvImDdciSnR/givLltbuMRDDkCgIroe+Fa+JFybRLtdPr8rZAAHw+\nN6FZcFd/okwGBFHWg0qFg3Y0MZEJ7O7g2Y5rIGBAROHA7EDe9CilF9zJyztd\nu5VO\r\n=w/R6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1c12eeecb81befc109e71866a127767babe8d35b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210518_1621322809310_0.09529662249820059","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210519":{"name":"typescript","version":"4.4.0-dev.20210519","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210519","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"66aa46bfb337e6c57fc506747b0f3fa87299a7e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210519.tgz","fileCount":175,"integrity":"sha512-KI8wgfE3/44tIlaBanlxCPDA9hrr4+9WiCujftxLrAmSFHr0JBwXPgCidsC64P2GvN8SLBqKbBLt22Ks/3SwDQ==","signatures":[{"sig":"MEYCIQDzDQ1dTaaWx33zHhWTWsGmE+ouaydKRwE7T6kovMKSeAIhAIvEEtnmpySmQAmDHpCpY6YsBM5l7WMF7NNKcGA6kHYW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60765902,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpLyDCRA9TVsSAnZWagAAY6UP+QF/+2sdRvUFGzxfCVuO\nSSYLhpOo46+A5nkZk8T9G1emPoG3N9kh1LVQXikoh0TjQ+3Xzp91ddnkVEV8\nMgSn49GQxPlCmdhpxTVPG7i4zQ3Zag4KcxHQfGA5EDe1T4WERR5S3gEVYO7w\n+Gzr1nserkWGkaVS1JrOrKC9WN5WHdzKwGbmW8ZYbA8i6pIxvZXrDWMTXfH8\nDgNPvaVgUR6OOtIIDWTrjZvWRdE6B5umuq3ZYo4bNColgJT5mfyCsee77pkg\nDYaMS3P4miu3ginfR7ACkx8SJaDB2nbUoNmyu7ICkq6bAv8MAzKSmfP73fpC\nyCwQ7OsaPqiAYDOSehd9lQ+S5QTb65AHd9xmKvwkYnp+rU30uUHWDjuZZPAi\neV9UAhLdFTvo1x3Yo9lKCM1rxJ1FAOmTfBGYQAs96Cc+P9T3l76J4hTLCZ2W\nICmwnKHX1zHvvjzTFjr/TaBlOfz4jStWFTng/FaDW7ilxyYZ77Df1nusHmW9\nTMVuclgHrYTj+MjhaWPA29oI4dgF0lEj7v2iVIWwkAhueTMHQ9Uj+NZGfn3a\nbNeXHZeFzrHnx7Ku4etXjA4Eab8NO6PWW0RQgVXQBT7MRAn2FnuZrO40w1cm\nqAbihBlZfHI6DTr82cg/np6r9rBXNsnfhWBrWu93B5TfgoP6fUhGfvcJg0Yo\nH5sV\r\n=+fD9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"87c5b6a752f8ac3239ac05fbcbbb889dc7c0019d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210519_1621408898669_0.0693575092186447","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210520":{"name":"typescript","version":"4.4.0-dev.20210520","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210520","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eafae61eb5a2969ab68ce2f637e1e7e2a891f008","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210520.tgz","fileCount":175,"integrity":"sha512-vhDj/84jOjVOgW/4cIFJEp6yGpntV35noXVN822ggHc6xj1d4OMz2I0HrIc7zoNpNV3esw9hjLk7SWOHc8bPLw==","signatures":[{"sig":"MEUCIDPZs8hBjiopOviCItXNIcBsQWHkwOLMVlL/nBhwOUTRAiEAwPCQ7/0Qg69TIIJYEy6oeCuDiLsP1L+TKAOLQIScbu0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60766952,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgpg33CRA9TVsSAnZWagAALZ8P/1N5CYqYT4fMo+3FYZLx\neNeJs+bbHdQvW236WjFuxbPtjkEv8yiotP602d0dczdmeRLTkh8eSN7ERNof\n0LuiEcunpXUYaq/OaCwmqZYXdJIqGPr0g8TTTcodD4AZtOhJTmWXvHe3WE7J\nO5vr0TG6stwkt5Q6wityqYult/WWtSj01LSdTu1Bm9pdkWRPyEV8Xp5uXkhK\nZKZw/D0qOeoGW5Z4He0EtzAlbybJF9Btb+wDhgoK9GwT04nQoSSJo/huGtEl\niunU0NJ2BOuwWRP7NWCxspJbV7vsH6SsbXdShPr97nNklJO6/V3o92ld4omt\n5Rq/DPhnk+9r6QXM85a7KMi2sTPDH/2grYD85PRRC+pUnoe5YDilGlFrXAec\nxsyIOx6yNCPqSPDJac2yq97zpbhGphPaD4rupfXs+hPdCPeE8NUlVJzwCXqo\nEqAbtudb2pxRn/MOAJhurZfsecwQjjp0J2MjqF9klBJjeOFIWIJZiK8VPwXA\ntipTBxnlTjyc0AsFf9EgufH4o3ohCAMu82/6YgG56TMFfi2ZCV6SS79qSWvv\nRxFHSOXW8JITEneOy3DVUG+Tkpn8HWFYrXQuDrp4biS8vUyVk4FwuOmlAMvj\n6GitvlQUiJalLwml/gVe+AbfYcS5ps0XhXRPRSdL3NpCrUoh1o8HDQYAG9eD\nWh11\r\n=Jlzs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6de6daeb01fc85c67af71bfb306ab658eee5402b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210520_1621495286187_0.4803015356248679","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210521":{"name":"typescript","version":"4.4.0-dev.20210521","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210521","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d563f7cb9e66bb4d913ba57572da092c9255e252","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210521.tgz","fileCount":175,"integrity":"sha512-m9PAyrx1ueZFxRoRxpCAIW4k/H1kdUEX8nGaY3l90zJHTd60iKBRywpu4kEvqMUfhrMighnKZhAyH+AXLHP79Q==","signatures":[{"sig":"MEQCIB/FXvW5GiseWjgEFm+qrPVg/r00ts4IiqsIqPAugu80AiBXt8w8kSLIfRh82GRqY1hI1e1ban2Pp1VUZ4FAh+wxrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60784627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgp1+bCRA9TVsSAnZWagAAxB8QAIz6HXBs+jymR2+LriZw\nCm0i2K3XLzetrR9MT5IcyAaslk/pNe6m1oAL0rQwHR5CxiP6wxpZ56Q0AgJY\nQCW8keCfrZcPEcjHPS54hx8nHwFPEYBtamAiramzfDzf3f1IR2Vf/zWy6nev\n/BhdsfqgdPDJwZeXpT8Irty7UZCvrAfSBl0PLBVpXCAKNCk9RT85BrqbdZ+k\n4NYqH7KTJw8C3tiKVDPexpJX/0s6U5ZdYvnTTYP8KXY0Au4CaJGelObjn2EK\noeoCHhNwKFc/ly4t+yLzfb6y7vBQnmyYhtNUGVnHg9pTXui/fXukAORWug/t\n6ezrR8FJO+vMOAENo2gt9snaxYcm1jZWHrJaOw5xIgXPkkGSpft3cHXLslY6\nWJoB8wIluQNje1cwehxGJg0F7pUYPUgEoV0//TKy46Z6oOx+tOMbWzStEthn\nIU6BP/l6Qwbdekug+40ylVCFcEk7nks/i5qeenmYO4goL24HKXKS11F9tTZk\nnQNJLTLqdJTWEFxXQ5Mnb9FDxKmpEL+r5pzYkQG3VG8AUotJlUd8KD/Bg6q9\nBflgdvduypXyCSXRvdTn7gBYcjJnLYRhMY7RCihrlC3LY5DQiM9epyrLDdoL\nmccj4RowFhK6485EZ5NeciJHub4q/LRcU4xdQt72tajQW2Xg6xeySbQM+i4E\nsOoE\r\n=WF9s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"71cdf6a920370b43e5ac0fd8d1da8aba22cd2044","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210521_1621581722565_0.6921066389538175","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210522":{"name":"typescript","version":"4.4.0-dev.20210522","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210522","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7345a128f5b117dfd250ff0b1324bfaf2609b81e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210522.tgz","fileCount":175,"integrity":"sha512-Li1NPBx4gRIWX8F9dlPki8L6KxdZ41cbaXLfF2kLOh1VEXNBxoaB6Ex4JuDidELHEImAmvIpZNjb3zvz1i6cZg==","signatures":[{"sig":"MEUCIHorqHNxed3vnDuqUYlbUslF/YsiCOhGFMJGh/Ev29UbAiEA7KaR/bB2PWNh66nQqsoNp2TWl3A4XNfXHiqifPpzOZA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60812309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgqLC3CRA9TVsSAnZWagAAoGgP/22efkJn70zcpYOr0o8x\n8PwXV0Uuim89lrFx6o+fd09y3/UpJ7VXk7dOOxY9Ep1JereTnI3eH/fQqSCq\nCBLnJu3lZg/NuvWXnjvxrD51yGUPDtl0/54qSdWSwLemk9dZY4M5Cn1118fc\n3hlyL5ck9Yqr9P2owh3QyLzgGQYJNa9AcS0R3WJpQUTjawucDdwsxYXKyEqr\nqlqJK9BA1A1qYCInifGFidVvRwecE663Y7/2HiLbmj+2rSaqXEkjLAqodE+z\n1qYAdfjmg6CLiYVnB982fb2IkiID3bxH0LrELPuqZWzh2Y0dbfPGlWdUDexO\nF5zdkqUFdclMOdKpf+eP28HA2nW/ZNcQ314XFlj08UXuBuk7dPx4ObFt/akh\nepzEuxb/aSS51Y02hiykKhkMhCW6RZd5bi6mmL/rmU0uVtFaJYvlhOAFfUJ0\nhp7AwxeQW5GMxkp8/fWJTthNpaHboI3ZfpyBizQsG/SjpVS16rCqn0w5yygK\nhz6DTQaY+x2b47DVg8bhBttyI9y9f2B9OG78iojc95uItgki5dBalzvmGY+z\nX2Y+YvWP6yjTBH6FdWmF7dqPezRnqYWoJpTPgjEMyf/OGPLzVv9eIuMu38Hb\nWpJu3AR5zdyfxEC3mGtKSODBjYu48BM3b02mALxsEl0q+4P0N/6/nizwr6Tm\nRM63\r\n=sROR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6df16b35f2bc5a53599f6f5f56dfd3f79545bd1c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210522_1621668022532_0.9810109857263456","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210523":{"name":"typescript","version":"4.4.0-dev.20210523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210523","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"29faee2e8c2aaa7ce93b6194370a085b75517f56","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210523.tgz","fileCount":175,"integrity":"sha512-qGqHTa3VFMhPrXn+ktL1Hc0QYgO7ylJotPqnrpGY8yYJORtk5f9FDzGfRgNP93JQtWIc8qPfjAnijvFcT0eU3g==","signatures":[{"sig":"MEQCIH4dIZyp2zoQU9iFLr5yp0SzzdD8R/XElvnmTIxfu+kkAiA3o5cvvwyFcQZiUiFQObz8MNrX0/pW8NucuLq72NGcZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60812309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgqgKoCRA9TVsSAnZWagAAKyEQAJxN98SfZ2sj8NpTCEvZ\nZSbECRdhmczt2Lt/8lNZUx/cV5SBx8PoyNmZWYGrMiyWVFgUopaLYBY8qKmX\nRmQyVDk66I06HSyRlGXqUvEkyb5HnMJy6cQvw1FJUU6w8iVUk8AvSAWMQvtA\nB3qkdq3CoJ4io0OCIbMo11VCxnthyMQKOLtog0j8GgJG59HeygwfTzQfk1uk\nXXxuSmlc/Ut2lZMPRFLm5EM5m7/DZnfNNS/JFRLRBpAcD1xiCvMn+iQlS/9J\nS0R6lMGv2tNorRslI2Wus+0YigtU7gi809YMKYnyfMKxZAYNuT+qMPwW0Ttx\n1XbIKKIi14BRMoj8qnpzOgSYZNGAemtU9Da9HwxzSolHNPXS2dSxX2506JR9\nHtTU/BpofSZ6iHhzASX4f0hhddfIgVHGMDlIvfDYleXg6JrmD/gKJHPjiE+u\nL3mO4WeNyLnXuWcGlnHBqHH2MdV0HBrGFbMFZcvP96OId7eXbi4s+/mirBFO\ncjQBNK0Nb46lyPLdv/ivXy4F0kSfO1GhBmv9/qHb0ToMDljtnRhD1OPFYkmt\n3uUR10Mp2QpnW2cHPygTO/JLathnKDMFdMtnnbZx8SPTYAOznRmbRFxwGUMY\n6bdiaKg62pK3kxcexaDwBWdwtsWEfIOrcWDIDfnUcKNe9oTqfG8HsCtvdULq\nip9j\r\n=hSI5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6df16b35f2bc5a53599f6f5f56dfd3f79545bd1c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210523_1621754535734_0.2963136834586366","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210524":{"name":"typescript","version":"4.4.0-dev.20210524","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210524","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4ecca308f49cba86208845b7b3a61a408c50bbdb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210524.tgz","fileCount":175,"integrity":"sha512-ELMo3xjgWGxJy9RSE/0D++CnudtdnDmyTupqg5A/8G5TxZHJLo1jJ9UCWkKBQUE10BZS1B/2oQ2ClO8vD555SQ==","signatures":[{"sig":"MEUCIQC8588wXISxJP4vGz/tpXOBFgREZUCoFrW91w07lLmcOQIgPqiaNflUH2WMp4RShv4Yy5QIuijpPsmciYQE8XRAnTs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60812309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgq1QiCRA9TVsSAnZWagAABIYP/AgxeQJSddl4W8I+ILAg\nZ8EBwnrj2EqXeXG+Zs0T7lasnzW3T8gJTN2n88rrGBH6LzaUGqvKGIGL1MgH\nTjGdM4uWuMy1+vNIYDQc0YMfgQaUFUfIx9goms82frrW9SfwXg8e588nJm8c\nac0K4KwVlYFWAUhKDsfNpUfJy2i8688eExTYIn0SbmLn9xJmcSGT1lWvVrG3\nMeS7JoIVCNN5OWKJ9f0f9cMkQdnsHqXe8fDU21+37Zm3y5mzATrN39RbkQak\n9SzHLU/Bt+NXCj/CL308FEQ0+K+jPpNoWrIQUy7ui0PKp8J6uRUFopNN3CHb\nzHqzBssE6Sp61MvvSn/25+tySBuUW8UVuQaQnZaNH6UMeg1SDaJpwtnWm2FQ\nNsKsIVx3yNSi7hoxuhGj0wqA+I1TqonDMTZEnt/tMpeObQtuQbjHbo3JOSbF\nRrZiZBIkqTAwR8gm0TFkbhUBAZmnyGiVbKDg/DF62KyNqdNhtJhtFODb5408\n2SKFcdA3XhL/nM/MXgNmGKm4z6aJnOFYag2jPxjsN6d/XdHtrB/UjP6RLtWA\n+UXmY+oIAmmvSKe6SQd0LShHHn88qwoTm4uD28DYBqnHGqrX8L3qCYkqsUra\nvzufTxSGfQhBM1f/dJ3wc3FclL3oBcbck1I9TDPMWH3A+SVMkKL8NP0p0+b1\nU3kA\r\n=sIMr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6df16b35f2bc5a53599f6f5f56dfd3f79545bd1c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210524_1621840929502_0.6281002984874653","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210525":{"name":"typescript","version":"4.4.0-dev.20210525","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210525","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9f65c8e979d47ac4a8c13379f343f628b8133b22","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210525.tgz","fileCount":175,"integrity":"sha512-hpPEilDaUKKUgh7UmsjDzf3+8dSVICYRHxrXLFOhhKe5gHktNYVFGYdRhUApIPbWhAbwJxIssM3X89QW/+y/+A==","signatures":[{"sig":"MEUCIQDxbpBm/aXRyd/azc/APlxQFeQ1roEk7m2G7dE+QkHArwIgKSfzTk74w6vfgDNd+Gs4Yg2GFbLNZXFuA+MIOoG5kkk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60861542,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgrKZHCRA9TVsSAnZWagAA0ckP/1FwErSpbVk/nn3wr4wG\nFDs8q2z28DYOb90R9aakxysQfBLV+GUPJ4B67/G5Nta3woyTSFUd/1AGrgMc\n+g5ELN7XTUNQSZ8cGAKzwB66oV6hmcr8Z3ddFjZAkb3HEhPxBLWB15DO8daN\nTYAosVD01CHGmDnchIWAt3KsJhfkizELdShsGWcQiGmXP5vj4Fi1/ugqRv9O\nasc7GOLNvq0+LxF/PrPckqr592xS8gFoF6Fi9F9BRxmKViMOmn7w/5JbI7HX\n0Q+CbDxBDnih2kIWHWjhDp3sMrIW7OyZMth+IC2SaF0kBIcycphKEVP7JQw1\nLEh1gvoZ4VJzJoUad7Ry74ZEpiE2SfVYz+H+pO8G8rpo5UT/MSsB8cWiGhTi\nhE2HaYII5K2oQxR+4eMI6vJ3HqLB7zgJEwTUe0gNrH/DruTqFk1BIjT8rq4G\nALETa88hWxOBKOx4M+eZdbUMQ29i3tdxwQpgfNpY+Ls8dVspevi+CgWJkPOY\nINw/G9Td/aN0aBse/RNtiryNWnYydaMvRWtvsGdf97v/3sXsTH7ULtzJK6cZ\nnNxmahir8Te8f/wkbxazGOLKQmsd/bKGvbzZb0Kmsp6WQeQ5UpJg9wYVEbtA\naqVez8SlByPE1BbQinqbMfMOKwAp0PeX2wzVVl+5i+q54yk0YuAnjAepYiDa\nnpJx\r\n=ud6H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"59e3a802347bd1e3e9eb14995d24ba8e58dcdf03","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210525_1621927494885_0.461439775257259","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210526":{"name":"typescript","version":"4.4.0-dev.20210526","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210526","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"09ea2a55bc1a6b7d5bf14a5a75d8dcc8fd40c3ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210526.tgz","fileCount":175,"integrity":"sha512-4LSewuhFndF8rOywqwKcoljqNTyb5L0VjPxABuFfPGIZ+RlVmQjUml/RcMi1iPb/aMJ1bRMsqJ7Rf9yz5ozO9w==","signatures":[{"sig":"MEQCIFahMg9eU5OTm62lVx6P+0QnxB5nj1hbfPHc+aOz9PVEAiAvk0KEBf68jRR+XYM5DqHbVR0s4Fw4yyAwF+rSI8iNcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60868023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgrfkuCRA9TVsSAnZWagAACacP+gIfG7+gWdYtxocWorOp\npiKQqNr1yHLNdICB+OzO8oLwiibpqjOQZ581ibclltCX/jqEgqlWBpWmFwZn\nAiD64THY2def9r1fjhFFUJOj07tdq2lMS0M970eU0nDYQyTww+ODww5Bh3at\n6eM0BbjInJ4/ewMGIyca2zuFVkKp9pMpFrEgoLVr1CIh6E5/UPNpOPsDiSrS\n0nNsHmuIFkcLdjmUx2ezFsoBcyvQWB+rusSYhmuLZjQSKpc+cDX6a7LxGOqN\ngLjdcp8kqmTQ/BlhBp8rSxCmfSc32v+jUZpKbopA2HW8tjEYAqyue0QHzXly\n+JgWiBt681UpmQyEM0MkppDmAXDBBPY969xzK5n7MNwJcpzJXwrMzXKsvPsW\nX5oe09LEmN4Je197hQlRNokXNwYBTV+HbHP209apHKfDmVPMQRHbgo8nlW9E\nVNbFdiuf0g13YsDPkigLRfel2KaQ3/mqMGASwktDU2OamdLSbkGMm6XSrHqe\n59HqGvSq9VN5+qASO2+hFXAtWnyS1+3Q2jgmw31R9xCk7dPdyxPcgP8oyVHb\nxu5kC8/qGMcDlv8Tjj/YMNGN2tD8giq2VCPT3lWha6N12cOxVVqoHArpG0k+\nSvHTuZoq07eKpzqsgV/xpj80lBQbO9vbZVSRI7P46HTXWlwj3lPhFL2qt8Xb\nQ7jp\r\n=O1Vf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ddd3cf9406afa63e450ca7d9ffad90865e8b3566","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210526_1622014253436_0.4057266396933059","host":"s3://npm-registry-packages"}},"4.3.2":{"name":"typescript","version":"4.3.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"399ab18aac45802d6f2498de5054fcbbe716a805","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.2.tgz","fileCount":175,"integrity":"sha512-zZ4hShnmnoVnAHpVHWpTcxdv7dWP60S2FsydQLV8V5PbS3FifjWFFRiHSWpDJahly88PRyV5teTSLoq4eG7mKw==","signatures":[{"sig":"MEUCIQDngtg151aHntJZuhX8Jd1t06EnSOxYFH8gXgBUczSssQIgEXEdXNsGy5hDsZ2jE5xT5YOAJVkSDEuKpkJsO4Y0KA4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60718317,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgroSkCRA9TVsSAnZWagAA6dkP/1X/wBw3Y0lmS53sqE1X\n2vYtKSfKUQ4e1CafFvTJ0GbWS0/xq17N23KeeRXxFEOtEUeB0HIYLAXNl4n2\njcbDBeCSyvfr3MlfHrFQkIDUYrxtA/e+VhYT8v5D45NrK3bnXtDquqC8OnrV\nIZn8x5J7OHL9q3s0rDyGyT8HojyS/y/OIrCTh3oth1tt30/II1KBmM2hS6tm\nufefwO/GrKFAg7yqHWB9OzLguwTXs4/ahVkMPhy+4Tpd4PQrUa6xqi/OfYOm\n/rqPnBCdHHLCVO6VPVLNLE+tixBi4xvrsNZHP6ThCF1wQuZsYX7YUY9ugtll\nMPUUOlw9BZ6UhVugZTyF+9g44y8aVms2ES+h6MdDEej9Id/mT5yzMaK8hirq\nEMObrETvx/lvhkuFQVk5dAEnaTJpA58pE8IoD1+OBaxeF4f4QiXMBhQYDK/y\nWM73tVjuTN5mmGq7SxEYlsvr/0/ZKaZvDKewdXwvY/JHKcHUqiOISjC+DHL7\nk+xursz2iSvL61NQkKSLbilIxEs4t9hJKyaJ+iBcv0DbGGSaYj0r1npp9DPa\n0wEx5uR01ZAFJOqgSVU5phgf2CpFwdhhYri07NKy85Ow9N/6ja3ugZlK0DeW\nZa6vIZK1Erx/5M+WkFq7nUCTJodG3uN7LUNO/WsCgFm2T+8aHP9XWXBPiUL9\nrh1c\r\n=Ix1w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.2_1622049954405_0.5250884311477511","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210527":{"name":"typescript","version":"4.4.0-dev.20210527","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210527","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"291aa7fd8b7b948253fb1daf02deac772115403f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210527.tgz","fileCount":175,"integrity":"sha512-bwwoVc4OKe6FMngqW3A35QDqGjVpYbrqWbPt63W6HmU2h1uBi97u/ACJ3tEjDQgTsQD2RrfxeKOVijxqsKogng==","signatures":[{"sig":"MEQCIAUisGKI84H/vozxUNlOBY6Ec84mCOo6IgGEONHfgPe5AiBxoApxSPoG9ES2INPUvRXf9tYyDWq8E3FwAqZdcAT+Fg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60878735,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgr0uhCRA9TVsSAnZWagAAcsYP/1QjUNJrXuNyZgp9byY6\nK5RGqhxBNaZw8uUAluCWKMW4Xral+wIMAi9ctBbbW3nFOpU/j0Zrx44UtaTq\n3+Kj4/K0bx32ef1f/dM+dwrB8RSHSAgB2HpsnNhE6W5XXYnrGVLnzz7axAK9\nYG0gcaEGmQi7S8eNjnmUQsQ8ve7/69s/Q6LuYCQ1p4FdP6fVXDVb5e9CrDFp\nL9RSwVcUsVD2KfPYB8Ppz3BRKJURUJJs5if+LfsbIGJJFhW0TJv9KtTZnjQe\nURFNt7AxS4YjNtd4UF/6pJsDSUiLGrtibP1vd2bzSZBDjOIMgh+IwfQmnFX5\nvM4WEfESm71z8kDWa7eMCbyq1jqx+tueQDEVUI6XJEs351FHFdTpodQg/L6P\nbVGoklaLeZk/HbfD4kU0Y/dqos2s5CXV0ApK0eSA3VDXaYtRH/i+V+NLNRLm\n1c/fXsa0iSIo+BlHGnlpjlltXmjZ8w/C+RqnjfnGuY/6RQpmxU+pqEnGAQpq\nwV0ngd4jQvX3OzCHP1EX5tSsJiaLUAR4CwI3ur8hYVltiJarmYKM+Ivmt4Zf\nP1Ha5WwmsJL9MHWLGgjnL99iLs9LLhWjDWaClkyYeIIetftkBcWKiLxhLUrv\nyGkhOlG1l3i0WkbhCk5ugSCHyXdwNWfAJk64VTDehb5ZY2h2lWo0uxqyitWN\nx7KD\r\n=JdkM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5fde87135f25a2dbea8a98e05438e61fdad06fe6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210527_1622100896442_0.7736405873579189","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210528":{"name":"typescript","version":"4.4.0-dev.20210528","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210528","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"42453bc42e9d9df8ad0741c207c24d56407c0347","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210528.tgz","fileCount":175,"integrity":"sha512-ACV+mYKC+PhWUXIDUL6qmFClIdrKc20KRxDePt8bniCgkKQD4XRYKl7m02paxJM3nTMRdlfjs0ncaslA5BA1GA==","signatures":[{"sig":"MEQCIHVX348S+YOcyxgHFkHHTB515u9tFsbmpDphpzIWMqYwAiAWWGY3rowEpp3zDJ+YMy7VHt//HUT/IWXaqOWcqWWCuA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60930025,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgsJ3tCRA9TVsSAnZWagAAe3kP/j52LewTAYB38w1Lh2h0\nVIKvrlE595Ch0TcPAAFNyJ8tOy93v9aCvSgYfHPrTMKSAz1V+gFeDKla6Vds\nJ4RQxzhFhj7sRH+igsae3UI1b0V/C/YddvJWRr+kuLaL+Fdq7BCmA0fgIyYz\no7syAUya7rs5Dz6Wz9uuzOg6lFDQ/ORkysqv/bHAvw1p6mbeGsigS0B4Ez4B\nbWeXehENWZhG/jxKHXldTv57/t+nnKpHel9e1n5a0JC+njYXqnLf2zdbsksF\naYAzNkwhVHiRf46pD3I+aVgt3zFHGwMMkWVmvhD8+N8rbsqEI3nP7xNk1ETj\nZukgZAYFoUx3CwCuGB5s36Z+X2Ivj9r2ZO0IPtA/JD0flTQWEqCZrOPSxM8Q\nTR1z9osXvERPkp2D1S1uE2Ao3Rh2S4yhlI1Qgbbam2QrbYeAwbW2Otw6h30L\nVleI5ls9SlLsoBQh85WFkY50B8X9GlNCfshvy6WgVI7QgFeOXSjjpdvBs416\nKCBTh1/i9uPFZ5iJQJjEDhgklQ/oBh8h9Su6dgQ8KsQJmg13H12ylCeswV5Q\nO5GQ9XtRCv99O5JrfgcI5bqVtawXJUb+PeezIEP07M9oS9ysdyMNEDP/yh30\nfh85bZkZFB9UyNb+1iw5ylyCMUFLcOAiKc8QhWV+C6Bs3eiWM5Gi5Ujo3Tl9\nxDo7\r\n=tF0I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e34b2adcaed2ff12761f7cbf87a299f5082c4e63","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210528_1622187500191_0.12788874743577505","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210529":{"name":"typescript","version":"4.4.0-dev.20210529","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210529","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a788c50c8d196f6a37a654034f8b37b8b5a373d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210529.tgz","fileCount":175,"integrity":"sha512-C0BqyMjIKwCSHriCa6g8y4fna7fScIwS1WOPCKTw5H3KzwWi0qJUYMZt7V0Pv927gGkOuRVzZoaWRJ+R32aLPQ==","signatures":[{"sig":"MEYCIQCYzd9QcA84fPtTbqY/b7ZEuOtV/mplKdFTWxNzrpCkagIhAJ7A1L3Dt1DpFJIAgM8e/4Q0H1/BdwUSvEk014izkg/Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60932437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgsfEICRA9TVsSAnZWagAAbAIP/jhVPEXOKF61PDpGUXiu\nk2VFrnyueaWOIbRrUVcb7DmkVNpcEolcHi8Gt9GUHCAZUjeutdFLNYEQLoyA\nLMOjZK9JSAGjidjbfZcZZCHqvfCYxbOSn1S2bkpCbis10OstO747Nlh3ivb6\nmj4INDX2xoAq5IclWEJNhLfmQFvYKvOrnQRQBxAeYdsXZExRYyKDnBvpnvh7\n2nI6Q/q0Tz/Te7Sih6n+TcVXMyprXwWnDUDHDQeiiUbokIHNSVWc0E+2iLnz\nykCXULihzdsyjnlVHFuJ2dVkCbdQcSfqw/Mv1lprtk72lAyRaexIGPr3nOM4\nylSn5zH6fCUqYlHuvO2hZydTi8n3ECc+AbmINmnKL2ux4GKI5dt3VU4tzomQ\nf7jG6qcytGANdJpu3O97dOUUSP0JlkwFJ0Gg/1hPbUech+Ad9DhmP5Saf2pp\nFuAu1geCYNDrpuOd/7VXgyeNYsVfPQCCM+tD8G9IgMin9Ao7tpuZsyWWdfxr\nTpMhKwUYKqWt3/KtxxbVwToDRWPlsQEU90CtP7wvnkM5oaFY0HrPEqaIKPJV\nUgKWox3asWqETANsKwsU+fa77JgAXmXWelwoZgc5TNCtv136fnaz48ZZWfpb\nEeUnNbqJY/xaBuF60nvt0nPCQ7Kc77z9XS2XJjM/ELgKVGl1pbcQu+x5t/YL\n3LxV\r\n=hNeV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"663b19fe4a7c4d4ddaa61aedadd28da06acd27b6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210529_1622274311544_0.4587969612632634","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210530":{"name":"typescript","version":"4.4.0-dev.20210530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210530","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"76e339bd974a7c5db18015feaec9309b6b6e2326","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210530.tgz","fileCount":175,"integrity":"sha512-8kxsd6Uo8YcrX3yq2n9ltMdJomJD8oLH03UGCIQwIvG0TTGwqFfZf/c5II7c03C4Rfuegg6ld268mXEjF5f2nw==","signatures":[{"sig":"MEUCIQDQgLOhfxvg37ZVdc9mRoJRJ/PZqgIKDNe5Bm6gzwNi/QIgYk0VDewJ1QjLYVwcrSuXwq7LfDP8I6r8c6b+ZKPSJlk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60932437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgs0EmCRA9TVsSAnZWagAAEXsP+QFzkVaL6oV6YYV3XioP\n6/DsvihdBOJXXMSR586fEOkiO8jtpbWZ8udpuoPSDugePmWgj8Dbv+GR0O0s\nZeGs4Hs3nmdyJa4iIILFjbIsybGiqRJbAHlWNVZyfMH7215sC7wJzdeUCljO\nqMqI1L/PoXkpIPdYuQUrIfh7Fnf/GI6QSt6dBSnuXn3gu02tU7mBhMrrzhdp\nPL2xszAfkOlifuHa1LsmtVHZu2VelsYGBJ1PrkHDjcJIlpyZ3co6ekHYY1mS\nU5Th/Z+Ctmb6SyIOuIvIfmVYOdQCihhDCl7o3Jqup7ExyGyoYdfElSl1m15k\nk5FKsm6VeAui6dk2uQf759wWPEY6HKzE9W4tCQXNAgPzlKVH7Iq2TZLANouY\nxT/+Sbw3N5qbSI28HnYrM99hrpwzMawfsMJTHiiylXDhoOLh+86eFOIF0RVA\n/8MCy3wnP7YFVHuACcisDKuU4TyhuoRUXTuu8jLH5UU4qJmGLa1Ri+CSQr8h\n5tTYv8/QYr6LfrFwive5On/R75wo8obklZ764upDyDKTjymrGd8kd6VvuqBp\nkYVAZAZHn/KndIMixNI6KXklUiD6ZyK7EUJTIcDfh/QCuf7XU3mJ7Ho9z6fY\nVxjluJ9fX3g1IJxtvEa4NOMvPPvH176Mz/9LIjC45CbuG/HJf1xv7o6bTZ+B\nrJUB\r\n=tsIv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"663b19fe4a7c4d4ddaa61aedadd28da06acd27b6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210530_1622360354804_0.08728302889193729","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210531":{"name":"typescript","version":"4.4.0-dev.20210531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210531","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e66b91cf0d53d122cb01e93acac231584d135d51","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210531.tgz","fileCount":175,"integrity":"sha512-gCZOe+p1/u+FEZWEr/rx2XEk/j+NnAD6YwzL1KLux/Crfmr7UrHvAYmzfYVDsvUrq4AvpumBb3dIk2uhdJ8Y6A==","signatures":[{"sig":"MEUCIQDyF6lf77S2W1eldbNvl1f0SoPvFqEA+Xh3FAgYHM1HSgIgUrmZn5ZnIP1EkuF+UmgRjML5Rt5I2erHUTasnmtUgUk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60932437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgtJOeCRA9TVsSAnZWagAAc/0P/jVMVrRrD+e4p7UHYJrJ\n1/JpXmWLpzBUc5rv50lBV9f+XIMF5eCh9CaG4P6606VR4bSpe0acPYATqokz\nmfZ78WycCl4id84QansKGSdLE2LZLHMQLkwn9LR7bQiVDptb2Z6siu6uQ+lY\nPZMqiHWF33gK0K8MlS9WnC6D//c12l4LRxHAUpph3se7u8UH+bkBvx2+IScA\nuhzCbzXadD5yNW59dvicz1xjzksI+YsMO4yW+NZutF7A91AbT8//E+lRH0sV\nlt0gmepHAxKXxTcHFtvj0cslLLm0pMPUIIxMAmq5FobW31lt9GgI8paVDlCE\n7BzqSTbB/izJV+338fJlVhri5YdU4iwyUYZ2A2AfFP+qnQ2ICNuKVuGA65us\nzOTt6LuslBacQi0Z58Souq+FNoM0iMQVIhkGOYQPGXjMMKOb7qZIsNEbZJuE\npDtD2wY/DEFPYDlTK+ReDF0VIbZV5Ocqi2+wQixB3VyBpbkd49rh5lGiRxBk\njEIEqrlCHco7HRllSXPKwXZ5HH1LpwwN58I65OfEV6MgnB/m+47PsQD6G82r\nfFOAqKbstUhwR7knjDPlhI7dYHhv/rHe8T0QDAeENwu98FeNYdrCepkPO7aY\neBZ8nbvfLos+CBVB6IRePUCthWGQE/ZsoNsActc8XR/Dp4NpJ9vJTniNGrBv\nXa80\r\n=v63k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"663b19fe4a7c4d4ddaa61aedadd28da06acd27b6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210531_1622447005199_0.09374633707845836","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210601":{"name":"typescript","version":"4.4.0-dev.20210601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210601","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4e0dcfa6b250d98deda52f996670809cf1cc5e46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210601.tgz","fileCount":175,"integrity":"sha512-C1ayWUQ5IMtblG6sYpqtq1IQqut+I7qW9o8rWcq0COSg5vSczSGre/HjURBAxzGA7Dwzpu6jZxxAAC9Wgk/XTg==","signatures":[{"sig":"MEUCIQDXZJqkMLvBan+JdGTgpgHOwexU2d6xoWQXQJd2z2CwvAIgGzqYGKhNBhXyECb6+HfU7kBjF7GMXoyjP27FZ9dpeGI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60932437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgteUpCRA9TVsSAnZWagAADCcP/2/WJfNXOdBkPm519eZq\nF3DJIoGJDh6Jy19KJ52R6p1uIVmuCKpLHJa7f/yixKWGoQL1NxmGeqS42D4b\nNmJ6sfh4ouQr7GaaiIfEvJH5KcuiVLQm/ZlgYXJNUJqhmUlRec84ZSkbJnsN\nYXfdACyQzxVmf5Lvp1WYcjF6ocXtXlHTMDJsnyGMyteNlkhFPqDPAUnm+l08\nCgYRlLnypWGftuBxdMR13OyKzZUXNNnGXbIguEhE0lKjB9NoKsGoss6v9RLd\nsjCdUdSLkQyJZLcbKL95h1SWexsY6MKKcMNmOAbIO+STQMTiUY6YLwyz8bt6\nheTauyiUANq8zsKta3in48LB9MBceqEhXl3EWMB17NUDpHwLTZK8E+MpGU/1\n58sNPOeVPzRHD9zQRX2yJmPCvitDUcJhfr0gaVKJ8H0LyK/GIdHAEQj9Wexw\naTfCob3nAm+prIw55eaS4M0M0PJUt42Q8air5j6N8NCsEfRHoilP24Q29loc\n3TAI7wLLVrF5JEpouEJYyvfBb7Kg9FP/03zIX/89RDzCst8Pe8oNql7CzCNu\nYFnt81VwCC8X0GQxV7ucIsQNkR6uAiBeXt+qIuGzcISrIrdXRVf58bTTfZ9t\nNtBMP08f851wEBzGui1rpPHmioat58Xxz4s31HbT1PAXtzZKNEjYPFGHo4rB\nL18z\r\n=3Dto\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"663b19fe4a7c4d4ddaa61aedadd28da06acd27b6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210601_1622533416893_0.767278363899208","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210602":{"name":"typescript","version":"4.4.0-dev.20210602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210602","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"15beefef5a149e250f257756f6da7e7d542413f3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210602.tgz","fileCount":175,"integrity":"sha512-YkMfJGVri0RxwxEN8mzJc/FtJUuBxE+wDKEZ+7sFdQ9n8CITJFRcZ1kOEApi2RCwOrBp3xFqLKv71tT7gSQXCA==","signatures":[{"sig":"MEUCIAVqJ+50/0Zh1Pal5gl5QmjZYk0HJZ5IFm0+P5z+ktWjAiEAgUQ1FTgVK0C4pwwb9gj6r6jI0fasabEYE4yrZhzGxAA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60950478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgtzfdCRA9TVsSAnZWagAAssoP/0mkkyRBja8GQhL3KgTG\nAyqKBri89tHu3uoLkOZPEEuXQgTiVBm3JlBGmTpm35rYA++j/7xJA8GB9/g/\nR9udfCX9PvynpbcaPFHfBDbpWEqInLMhqoiVfF6nMAPvvzxTS5UaAldTrXiV\nzyU10u+3Frs0df52U+s1EMKNJoZoFmN40KLKRLqlkM1wQFMwZxfgny8wxcz6\nWpQnpVraf7GpsN7IeO8VIz0ptr24rjUgQPgblCH0LHAO9vkzzOuJDSNEdtqG\n2MKtSB+pCzF3lNUba1HgktqGwcJVQ8+qoQAcK5oteqyEH85W7fOiJlYypmcV\nOEPOe1HVKZKgCB6X41NQ7MbzhsD7ur9cikRK2D77VF/vUeuh3ejqHTwKp/3T\nugKG9VpdKgmROStfxqzxmzrjdDZEXK2eS2jtbQpSyxukLPPuemOB/BoJj9gz\neamJedtzgXzwlUKS7sg4lXoTOahb1L2q/dqI8+ILvMswxI8Pg6inrUzyOxjv\njYbRtynLEeO1rhr4dqa9QcO3pg04ECgI8bnDN4yAEkd4rs9jUWyI6yQ4qNgD\nSt99G+tZdwtAEoSxitbjm79UVMJVAMm1tVdnsxBWNTN/p4yVzQOUtRWI/TDX\nmZw50fko237iobGUaA8UEwos5vCHN/n1vOEpuH3S0drHvxBfF7TBoTC4Xc4y\n7m98\r\n=DCGl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"df6e3af022c1099ee25e988407df0ec6f74851d7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210602_1622620124433_0.613621326890119","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210605":{"name":"typescript","version":"4.4.0-dev.20210605","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210605","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fb81bafe98e9353f950c182016605ffe1ce3fa40","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210605.tgz","fileCount":175,"integrity":"sha512-JnhEPl5U2fOwF27Xv/953RsajBi7bp448TiGx0r+pEZr9BF45EhVItO4tVAtMhb0Sr17XF5exJMgT736xw1PMw==","signatures":[{"sig":"MEUCIAhh5JonL4d+4Hp6OnHKQ3sxGXpig58aIGx2a+NDhgWLAiEAyOJNIlEWKTCWYCgvCsp3QNVzbj0X8CYYD619AHXtMkY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60980573,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJguyleCRA9TVsSAnZWagAAXuEP/2Ka2wwHBqD9Cy/1+5VY\nzCQmhQadhLOd3nQGp3JGeaSH+ui/RaHHaVs+fy5cdB1NoQoq6E5ESSrfiMbZ\nwa6hfe8hNwRBJB22VGMjjoC/clgT6eXyCGsmpRKyC1e28TfW10jRXZfaV5xl\nOby8s4IS6kqb3j2nQtOWblmoJJEs8lUR8SzRCC0xXS5JpxFkbSWqc4yavbSF\nSkw6h/tznEoB/HNRYRwQFLTtXwFDpGu0pR5YE6r4plz/Tf+yZIyS6x/7OoCO\ndxM+dWIl/5UZ3KcOXe3Xz9d7ayI3WWdARx23v4WhMc5MZno6FhWp9CcYKDkc\nzFiqHpYb9+IC5hOBE86aMPHIzXoALcwePUXT/1QqRiumzltnfeT6yQTa9zdX\nrvPnBYz1px2k6Nv8FnzIxyp7SsvmyI/Q6CJ53c3oaZd+DcYIX3v0hzLpKM22\nAh/dS3itS8ePj8QJkzRGc/RVquqzKvPjasuoGFGpMKs6RwiMp9kGtY65Ju54\ndqm01+qKBptRnSWmYLBEOq91UE01nGMVHXGDpGkTkpScvN04JVfUvoaT/IW8\nhmR2P0GvhlAvoT7IlC/b2/AvSvc8vCOvS5xqPW5MVhZNjAqYpiHzRLXcwQwp\np/Uur76A1RWqpKaAqfUQa3GDeMnmKjoXM1d7n6+QJKf69n4sCG7AG+l5sU5K\nMeXv\r\n=wbyi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"faefc72566959e58dd847443246242a03d075469","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210605_1622878557025_0.500234043493544","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210606":{"name":"typescript","version":"4.4.0-dev.20210606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210606","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"98113eb42c290d41ec61d07eb6c5264258b7cc44","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210606.tgz","fileCount":175,"integrity":"sha512-7pn++UPl4Ep39NOlFy1SLyDOuJWd0z3uNhlmyV8EKvYvpKe+JDoJ361V/RB4SCCM8ZaFzHAUBRG/7mP+caIl6w==","signatures":[{"sig":"MEYCIQDmBuvsfIYZBvPYAlzlN18K8azWlKXQmBADzr+4R0IN4gIhAJ63mtCJmFLJThzjRfHLoYFXeuWpx2ck7saest1dkklW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60980573,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvHoCCRA9TVsSAnZWagAAO9sP/jf+9sH1cMI0rpD5tOyg\nOD9ttmfIOAo8G17E6lkzw2SFVhTNqVnLKVs4sUVI1lH5YXsgJwqTgv3PLm8q\ny8AEPDlCSoin9I+L6jI4i0nLfLHRFCzecxsFVRPETAMTlwiicG/neJW1wdht\naoWM140GSqMIamnwJwFEUxIkns5EZ7TwSYdZj7SpkOBLPiGTk8gvlkLW1/1a\nYZEHDp3cKrpPhW7/6uEoi0ahvm2sa/pyiCRZ48+w2nf5/XI+UTyrMHgiBsX5\n+0nw+LOilTAYQyMaJ63mueMGFKLgdWNAHWVwAMzMstT/PPvn8zYOdpoYucAC\nbHWmh95lnhSIZTeDKFTW0TZBEtECggaIHttKIKwyQdZ1b7bzoJwP3A7xJSW9\naGmi0ywqvP5RFBPSI7wWWjIiQ4DApFn3ZqgMg1hnBR+Ihj+qZC2xzkzsM2jm\nrH+twSaStNNqfaBKFDDiO2Ob4mUEH9kHA6yog4SB+QEEdcDJ19dB6YOBAUdl\nYamxyNrcMmhZDgbOVkNjdgKdRXE/djtdq6BFCQzqkqdiq/iFFuPkCSWPxPex\nGbW22PyZns7FtFf2DbJrIQGi0KQCGO3LxRsYzxJjWZRZQnCPaoiwQlUjFDJu\nfZN3dcWpL8E67dk/LXDuJ7ltpMNSYgq1EDaNKWsNJmqUj1fJ4pvFbJCCQNer\nzZJu\r\n=U480\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"faefc72566959e58dd847443246242a03d075469","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210606_1622964738258_0.38926102975825705","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210607":{"name":"typescript","version":"4.4.0-dev.20210607","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210607","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ea802e420785ef3b6b9c2e12d1ff4b8d2e52ee19","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210607.tgz","fileCount":175,"integrity":"sha512-tKAp1IL4APSdxD7xHLDU6tIDOEN8yJOTUGG+cSdLunmysl3yOkGrdUbByDaFDmGjKywghGhQvcG8gOqbLUcDcg==","signatures":[{"sig":"MEYCIQD+F4hXpv01XlRxSFUcht+RTbj6tuJYFO7vuq2GBEIYBQIhAJpCCIxZUAYNmM/pvvSdYIAsJA6D4BdeYo2m8kDfwXKP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60980573,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvc62CRA9TVsSAnZWagAAI9AP/1HVD+y5/T0X5+yro9j+\n5tIhU7nx9ca5SE2PC7vJxCFKSfYI4HmePT9cnogrP2L5S50J0+p8oRUOVtct\ne1nhWiTzxXX2IODRDQce4ti9ryer4s5ydVx2jQxh9nZy5nLi1rVA5p5reHpv\nuihEXLtvnFDusYo1CKroeldVswKkDEimk4luO/CJanml4CJcKCYN01TsmnhG\nGPdPyWkLnGVN/ZQ8LMVdxjazZWBYw0xamvbIAbj5L1wsAtWD+KmA6nXNrOTP\nHOt1lkEIWhPgVdomsGCrWJ/k2olBuUvKU2Oo3VpJoAYZGZXS6l+M1HH7uIu3\nGgyoXYjS2d+VpT/tqtd9cXDNJrSaJ+Pc5k2mivAQPsHpb0UZtFTt9A1FXGrm\nOEfJ9QPI2uUMNNUo7S9y5Ox9Dai5fneJBA5ENCNzRKvcgPNUbEDAHhDZcn9D\nWGcwFtY9Cb6xISp6MQTReH3rl9QwdhTmTApCxxPalQL4hCA1Z0x2xtrnDBgq\n7l9t9ZAOwbFaRSrvWbbTyWlLqLpb12TgVhEWZGiMKminxM3Df/uyIKrtaAsq\n9EyJGQz4XR0wu3LTnHsSQ8IWijUvo8pXUdfzE54ZXDXTBjBB0X5E6bXQXBCy\nDy+cVQZ/A2ot9MTmioq0L0Lk5j+0YL0TfmT3jWh61Wdm+BU8RiidlM7FXkQG\nP0KG\r\n=+7B1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"faefc72566959e58dd847443246242a03d075469","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210607_1623051957925_0.6707271684489005","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210608":{"name":"typescript","version":"4.4.0-dev.20210608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210608","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c81b8592c0aee6c8d4b8f233d1a7a4d87db17ef4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210608.tgz","fileCount":175,"integrity":"sha512-es0oGUFQdAKLkz043/oTP4IKnEJ5LtNRz9jGCeNkCYsx3qLrN4idKjWPicKjlwXS3FoVWj20XwML6UKbBdwzWw==","signatures":[{"sig":"MEQCIELi/zYUTblqhS7UyY7wjWIwvqGp+1/Rlp+DuGHBWdb4AiAkG6S66d3HYSBd08GW2EfDPN46OcSkT9zR+jygKYUZDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60983168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvxvfCRA9TVsSAnZWagAAexcP/iyCN7tUoDR1jB5kSRV+\nSTy9fUjkQjzAcvyBj86gR4Gu4pd2qfH+PRoF+hAycG+iFpBJL01M+t26JL2f\nn8/JXNcHWslmaaTP/rx0BUgp/GMS5qFlrRp9VeKZrGN6UuM9KUyUOA71LA6f\n31wOdGBD05qKVZOnnBqIJgz20WesJtPYE65GIDldEpQ/tDByyDx63ywVh1BY\nAxWOxSPe5Bt+Jfl548VZRC+iobnreWLgCHWvF6WasjffWsVo3lFpO/2V4y4l\nPQiA3QVVYgZTNN+lNZbmMcCk70ljHAk9GpHJ6PRjQYeUWYMGO1IO7LQNvvXm\nM0Qv9VU+Fvfd2F29dtl5RzFLaJicWdBQfZbt427yLVAcmbYtdE3SNpyopisa\nXjCs7vBpvglS3AUUpHOQQOqT3qopRTzCEnmNotTVsqwF0lznC4ljfEURlvT3\nF0NBfhTZfRzzI67Pp2MT7laZNtRdAMsgxHVQUF2aJUvFLHv+lIFF6FFO5q36\nupLYAbPksQRk+B78kfTxWsPSg3pZQmrG/zrVofJMno5VEbIX6V/sot6XjPkX\nTZxGnVZEAwgCW+9PT2OBhTOSP118BRpBHYYjtx6s8jOnUiOtoTr1JvItbTwr\nWGDwrXjdhN0WoCI1IArHIixWzdyWuu+UgmEC+26CxOho9zE0YwtwVoKjKfeD\nz2ky\r\n=Fxfz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bf4642f0898f6d50c44cc79cb799e0017b363b2d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210608_1623137246550_0.7932109197269468","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210609":{"name":"typescript","version":"4.4.0-dev.20210609","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210609","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"47e531f9a2d4059c307640a24b448c677d3afff5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210609.tgz","fileCount":175,"integrity":"sha512-KbyLTo+4lpkZjrudkWFF6VAUuwVRkpahmDOwYRq5yiqYq6iAy7fi9Aly1t2vIjHMER+ALbD1xmNyZz3MnpPVfQ==","signatures":[{"sig":"MEUCIQDkiUIMcZ9UlcbSOjT4W85KYbCn98VTwFLQjduf1zGzUgIgB1yQXQJLocBsOdUu+WI5otXKYo7+dP4pev8VoSSxZYQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60990706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwGzuCRA9TVsSAnZWagAARIwQAJzU//QIJomO2TMM8fR/\nbuhcD2AKjLQdAhXJlVZHUmSeLKd0aPzBWBkg7TsJ4Ch5IC8QPa2vMIUaHMv3\niQdHFd44pCZzAaf2n6t4ujn3rdSu72neOCwKXioZk2rGp7HCV8QumT2ZerNr\n0JJCbwkKxuOOJVzqw2z0my4Z7qV938ExSVfsEiMqo1zYipWM8rH4Nfb51RHC\n0wet8EZ8fj6sW9QXd5aAP9KrT6QG47o6aAId3yX5714AKAUaenaDf41lRC4n\nkxdTCecPlu12mZauvJ9Y97NK4p1yGf3AZ5POZJWh2SufiUNNkjexMSyJDWTK\nMY8Dmv/L2ERPbdAL3v++/IaSLL1GS2Hhi555bSLbVJw2l9y73XuRw+NJTdEr\nE0KZ3tve6qE9eu+/jkC3xQUIprLqGsevAne4AcWWqjKoogWnjagffqM7RO0O\na4B53PTwVLawkqRyLHHqY6uIz+xVsM6Hs6F12y8pvuZpTGdZLyu1jSQXrmAa\n5n7MN5GAe26ZRYw7qWiUgRtmEYWn4QgfebEEsO6TUdDR+FbsWi+s6WDBGyPi\no7KSWLYVlanvLosbayA0FdvllQx7f9C9B/8nLMde+rjwR1kP10QxSFJqoqpI\nP8wYR5Ub5+iGqHVsLxVcF0uzBPafOLQ1/wAeSDQl9QMM+lhfZdRHyX469OJc\n5job\r\n=/1NN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"147d7211367d9f576bb227a2c40004901c5521b6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210609_1623223534098_0.9756280733810256","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210610":{"name":"typescript","version":"4.4.0-dev.20210610","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210610","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b787509068de20058d130ca7cba50a94a09b59f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210610.tgz","fileCount":175,"integrity":"sha512-w/NzOUIBHRyOKSSMQYpKJYKRmxTpcHEExoWORbIflko+2JlOcUxR2jTjEjO8AYuwyxPEz0wjZPaENNVrI2JN8w==","signatures":[{"sig":"MEUCICzvrF597bJjM24dkzNuTcFBD9iFUSFBntZEQXAxrlWlAiEAoO9x+9z980iCf4v/PwSVEGkOAMXXopkdc3WccjiZQG8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60990706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgwb41CRA9TVsSAnZWagAAdjwP/RJbZDzhR734siYMqlmI\n+iie30JMSBD4j7h+OixFOIAmNTYpk9RHqyMK8DjEDkkbpHrKBcPwLf3uVmLO\niZgN9OQKJ1eHIedzC5jCLqg/U/1VHgLHYXY3PEuMPZMNVvM0fINY4y7Y9wUK\nOBum/5g3xm+rNbk1XEN5wGCzNkpWXD3LnB8ZBwi/zDWsGpRiDIwUJCnuJVfF\ny53zvKKqU7V91PnMJhVm9bVtRytkkYt/XZCFgR9NcSevUCC6QXME7YPUo0GD\nf+BFTUkYSa3QalsIxNXACCWXo0fquEirOyZVy3wJQ/D6F+lz01mE3b1UauD/\nUuv/3FOCAiKr1RNkTND5vj0SmQZrLE2CLME7v6wX2JGzDLp5QnqCO14Ue9N8\nJBkaxxS6LGwZ2U/YL/AvTsvrfiK+fidwuX5rsaijP8uq7aqSC8LIZeO4nL8f\nuzsGENi1PfBLrrwfZBStuJ3mmehgNELFr7ZfofNaVnDI6auK2natUeqfxrln\nERylOgN117d1YXR0bpCeWYswW3r/3AbIxRFX3s1f4lGgO6kKA63c/w2cuNBG\nadr1Jkjozpc44yS0KM7Kztl3Dvx8JnhsHneeOByF2q+9gIgUc03CATUSpXAE\nU/642Dai3SoLGdRqP72rUDdgwQR+ByWFqJAYClppRMeHE0ezEslgYsuFPg7j\n6TdD\r\n=E/OC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4903c64ad2577ef4c0497736b76108ea4059ce4c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210610_1623309876895_0.840915760704402","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210611":{"name":"typescript","version":"4.4.0-dev.20210611","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210611","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"38e7a9e1a7525fcc66bac5caf03a057f463ae5c8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210611.tgz","fileCount":175,"integrity":"sha512-wcyVrcKFyvC3fFWwvTk1HeXP7KWqOnL4s3Ofbqi/MKYB73rghmBvQwhr9NXYuGsfTBZllEHBe7l6tVHuxu4GGA==","signatures":[{"sig":"MEUCIQCgkYP4MF9ZnRVjZSaKrxn49ZWxZB2qzRZMMUUTuINeyQIgetse2zytYBKOsjo17Lb9kUCelUsZTvQlSaSbOVjsXrs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61018485,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgww7eCRA9TVsSAnZWagAA0UcP/3Dnp/lPXqBa3luCQc0z\nIKWoBqys9eq72KqLMVQtLwgQMvJmPi0HuR/iJ9GcnmA8MVkj7Jli7H6Ymcru\njbE/RcpB6bRjG51lmIOTmQxhQqac5QXv1Wagv9DaSv+kh3mYeCRu/x28tCHw\nS7zbo2urR/SZHh//lKKWBywQOkaUtZ5nRUloGX6OZa6i0i46tr8tQM/0RIIx\nXnkRilmVswWBUBsi4ze9ZVFYnSs65sdejN+IxojdqPxMRepFHaH4JDdXWp3t\nvun5vZxkgVo3/pcLBypIzTj8eJ1pnGT7gJ7dFqOXGZERA9j/nsbT9g8tkAJS\nijjrHq5xyKyWiXFVUFGivZzTMpZwl0sIzHy++nD46AU3NSz0MCwrHXxsjnnI\nF25d4injG5RNm/NJ48Q/QIQsILdYl4vj2aiUiNSBb3VCwWCh1UiD/qMalMjm\ntVKB3d0mbj/FFm7erKm1aWPwMYNIOA1pSbhlGFvcN9f49uDfgBkbGx5axDaR\nlJspa8sFtMEeIlE9v9UHcOtp56ATNXPFBSaSCyQY2/jXfMh1ZxlN/6qdA7eo\nrt35M7JRt3HS7kJ38sOzKngO23q/2ImIbQOhgpu2HzYhpuHRswvC8f9JFmLJ\neBeU8Wi/ItEjqN4poIvNJAuTaXMZLBM964S5BL3jHgt8URJ9Bina+kywcWc2\njufW\r\n=06aA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"41f78870e60d9eb285c1882ef6a9bd2cac8ece80","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210611_1623396061132_0.7756644533351462","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210612":{"name":"typescript","version":"4.4.0-dev.20210612","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210612","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"04326fe7fd947a9c1de6ef19e669d61a7d86a231","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210612.tgz","fileCount":175,"integrity":"sha512-l2uaPVa9sLCf09ut8HyvBaNzDRHMCXre5jXjD4gMs1wxXfeNbWGEsMzhXQxybxJ1aXzcRen4kAIezKyEJhfJLg==","signatures":[{"sig":"MEUCIQDKuHonPnPgm0Bvq0QN7FFMgRDxQBVvSVsRyq74SCbHqwIgDwIf/SNmc97tAZQgBEd4S6b8/Rp1y4bleQ3BlzsNbSk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61042122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxF8jCRA9TVsSAnZWagAAFkIQAJ0S3+M94TiR1VH3e0yr\nW+hTDsTqQgNpLeSPlYSTn1QBZHTnuZh3DBp5u3WZdeyOr73tO+4evn8gePAZ\nsLbE6QI8CcfhvLppPhK5gJG1wSH3qwgi8dxB4mYMc9mOkQXF6zpHfS2pU/Al\n7AiRIoyfNj+yv8yLFJv8Ss/zC0HrAPQgX4vnPkQ5pJgmQ8U2o43yMAQiXWq+\nAEhtQpbqhnQdQYedyLRO3PGYv/7X0YCfGnyEqQhtKvVOOaMPCoSlNXLEDfBr\n0HJkR4DEKLVgAVG2gYVmzIpw6Zbm7VCFxgbz3oT18zl+6gZkhEensRrx0NCE\nJdq+UK+XmPNj9sPGa32dTZ8EXzCv6tqWjqd4KlFGrswL8jSCL3/c2VjuHhfF\nT4tAhO5MNIXL/GPBpaAUl8v5v3d63zmpP+HZ/CFkALb9Y3WvxNP7ti+kHvjJ\nzav8rv6ryefxtHN0MWtopSWlKCp580RqppkIzi/E0ZJZqp6xNWiwSwhx40JG\nuB4mD7q9AUSZ+JBlZombkfJcWHJAVx2ABYy5DFZgv2gczoRWWVn5bLas3535\nlbryM+WRZC8NmVwJYRqGOzytPRY8YsjADmdKNtS6JPQ9qiyNOX9tfHrVKYsE\nHLij8vgVK+R8QJqVtuyJ1AQaEixY+G1C2/mxkAASxolvwk55WI2EGPWR2qHE\nPNv7\r\n=WMwJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4829a7fedda6b86ba6f1e5472dc28720f4941742","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210612_1623482147481_0.3232429188521806","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210613":{"name":"typescript","version":"4.4.0-dev.20210613","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210613","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f88577d6834eca25654ad89343d02d30239e1df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210613.tgz","fileCount":175,"integrity":"sha512-95QIVSBf33gZXzuTBoeVmEXOoTu9x7QNAys++xKmPiJPXq5BvIjveGtNtklKSuOQad2nnWSvrPXB6lMu65yv1Q==","signatures":[{"sig":"MEUCIQDs4Yxj26fs+CF7hCaf2G/Ox6WU6EAwrHhU/9kukMcKXQIgBfCCvKZAK/dLpgmeZEW6hfHGWzIvIAr6lR7yrWG/R/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61042122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxbFgCRA9TVsSAnZWagAAwMQP/1enCGvYUlKYvvwakiSg\nOeb4az1y5JLGeaTFvIo72wNPkP/UnHXZBe10KmWgoASLdKETr7iA8jL2023Z\nKiMpxbLd16YKHJdiB+lVDDx3Ip3+feaXTy5TgpyGOqJ43vgEcID/xjPfHg1J\nPpoMRTmMBozFlfd5VvD8fgLfPamuOWwTQNo1hj+gNJsTaWWMcZLCGur+0opR\nqkGIehYbSq+MT8S2UnSPj933TIBu4Vy4nSwSsBS+T2dE4cxP5SYdHK3hy3zE\nyUC80AOgGQCt/G4NiwidCdCzCtwUkNxkRFw+jhLOEFGPyd7GNXNWi37IxGxI\n5wnYwbKL9x4S5muXneFi9rP1Xyg2iQ31U0gt0brslkcWRb9a/yeWwkPVqAYK\nuGDVoNYmh5C+GxX4jnDm2Xw8Z/kz7mmW8T1x9S+RhIzQBr7gsm9zLK4TkELt\nvUbifvCBZPbiMXPl7KvjYdt2LlU6q6cTDFzZUnwuQuIYtQDeziRaqRyYvw0Q\nEEqYJlQFyG7ESQE0Y4XY69SPBK0RV5sTVfUcvIbaWjwMoxOE5JU5vVSp2jLA\nHmR48G5fAaRbiyZr4nTvF6qFGveHWhdheleSaHwUods3Jnt7DPHgFE0B6wOn\nkZqLr8MTKE1BqyF7U698hOoXTkY0iDN7nmhj2Glu7H7/AK+mWcX/F+P9kh8x\nywqF\r\n=JOQV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4829a7fedda6b86ba6f1e5472dc28720f4941742","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210613_1623568736323_0.04548990046757084","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210614":{"name":"typescript","version":"4.4.0-dev.20210614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210614","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e5c99cf28359128c621032768786612dc2136261","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210614.tgz","fileCount":175,"integrity":"sha512-ak+zaEap7JH1bWKOMGPCTZoMHX5kBoz8yK8bnnvO0JWbIu5LDE3QqjUfYGq6F+T/Zkxn8EOTC+NfPJr/UCSntA==","signatures":[{"sig":"MEYCIQCJtsVwA6pnfeC3q7MJxf3BgOLd6yy8fl0PRr2ZqB3X+gIhANfhrRHD7JDT6dNUCGkneXmueU7FNFz/1xMDXxsw6ioT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61039629,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxwL/CRA9TVsSAnZWagAAHt4P+wXGKSEWrpEAwSJyZRY/\n8Ok+Qc2GYdoiy8TpS0jxvMCDAKjv7eNcIbABO5TCRNbeXpOm9cQlGoPbqcvn\n1+VPuf31xyRhXXDbpOoJ9nmIkuzOPs1sAorDS2szeg11eVW/JUnVaZIN1tAO\nKuoSNeW+NDznveRv972BMffvyaxkyEABwONP64NpJjaRWqjZx3kHI10cvTUw\nKaV9eH5HbAPT9cIWxPPlXhjOjya8YRi+zX25ILcugUkf9GlYmbph3KPKbsWH\nimHsx3qSghih+whXoctf9WRf/wfJMgXDzoH3eM6THq/R0K6T1/P4x4JdiQzO\nkWjNuq9OL4ybNMCFstEgQFCSHj9HEqFqpdk31zX0BMiVlObwK+O3OhjHwlHO\niOZS5UP+ceZL6NgS1I+xEwKKybkaGr4d5J7iT+G5p6nE0VDYmRMUH8m5onHa\nwZifl+PTJ/wKl5F5opQTkmWtUhubYn5IwAtCpZ4HD2wbwuGnLu+rlO0McRM4\nvp7W+pOiLNRrb9vjqNxgfQxEh5l79i9UXCfBqiCMg7uD4homxL99FlQXAuKz\nrUf8ASoiy2Dr9y4RfUbu3E2iw3ejLHt4zJ4jC3mW2xSigqF5wAnDch8d9EcS\n439GDQcKFYp2zwuRm74ybMD2jO1ZdlXFz/dsBddGf2bSLv4Dv6jkTHjOQWIH\nMEuG\r\n=iGBs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a875635ea7e3c37fb44492c30571f91ce65a635d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210614_1623655166706_0.07448308403946369","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210615":{"name":"typescript","version":"4.4.0-dev.20210615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210615","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ab279a7a177ea09be20aa827651f024ed5195519","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210615.tgz","fileCount":175,"integrity":"sha512-vWaUSmOQ4zk3lDh2arJAqcfP4rJVLH73fik0S9cQJKzd1LZ9ZoYbHr2UMp2mGcqzIki9cifhHoecArvhdXKbhw==","signatures":[{"sig":"MEQCIBWnNsFf/7afxVP1rSQYPBFpL7qQG1NNCrCfuDg+CE+HAiBumbhGZeXBm9mdDTSNJ1oJp9GD8s7I6TOhBO3sZ8Eauw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61041337,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyFRVCRA9TVsSAnZWagAAf1gP/3GE7lSMRbPcpK7C2Dww\nt4CMS/SW1nfw12OFlzx3Z3KGQqkHiGlrLstrJMhCIQm7WS9ZK9llMYfOt83C\ncu5YUqY6WhJw7KG8q/Bxh+EsHCswWJiRAYYDDhct08J6o//vn0J4k4Ege3yG\nBcTiTdmmOGOfDD5g9TAL5ZJxyyPxzGYEoUVKJy55ufiXlyW1C9UM9oXNo5fH\nEvKlV2l4Ccvd+JWm0mhp13e+gN+nlrINClXSmZrIuZO/wk1HTOfsIYaImbw2\nCD+JO5blDfh/gKy2wFZUCUKNf6ELjUXcZ17BcJWfXxqEZpCZYBHoG/SKJLfK\nK2NfMTBQG4NS7X5NKo5S0LKcXzXg6+V6Zsz7RDfepdvgs7gIgl9tIHExeOjf\nW+I9Buko817HC7afjNUmZGxvh5LwO0PmTri/FG62YYEKd08j7rIJiNzgwXuM\nZ6myNEhjy3ZWa3iuECIFI0hO/B2jg/ELgtOJ1FI+JyHaULAe3FupL6/TbG0Y\nbGwy1Nq1M7T+WuEvOP6wUs6RXXpPWPopPNZJgJEb+qv3DuDtnk6PsneTcxp6\nzVJd/NOm6Fr1HpsyfMGPy10AkpT0gEdNSv1vVPkvmSG4fFrReL9VTkZ41DVO\nfXeJN0yVW14G8FyQrrLFka6nnOhY6SIuqvIWQHLq5jf2RI24zPxnhJhCz5v0\nG9MB\r\n=WYud\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5be0d7156db35244ce2f3304550910251d51b9f6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210615_1623741524892_0.9642012045067092","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210616":{"name":"typescript","version":"4.4.0-dev.20210616","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210616","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"df5d1d41b9a22e824a6d9b8c59ad893a2c2e7bc7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210616.tgz","fileCount":175,"integrity":"sha512-VwP2DBjpgwB44JNlSjkjbuvHIcGqDg06M5LOMxSdwG6xE7+iqvD+uiB+B9GdFNy6viF7lZWj2U01j1ARXMemeg==","signatures":[{"sig":"MEQCIDd8zU34x+4rsA6CCjLAsPGGfKDjxUzzGr7R79YYhAy0AiBuo1ti/lOqXe4hFUX405Ox3vNc8TfC8NR25lqVxTJYuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61228973,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyaWXCRA9TVsSAnZWagAA5z8P/06A4PvguCRIY/xqxIjq\nSGOQbmNeVRzL4T7jBw9dvbEzwCftw8v7rsnO819p3xB+3bsk8TQEvwNaVmbP\nbALPDVyRm54JOniLpxKXb/51cGhK35FjWYLtfNlDsptOvA17BKpJTaGDL/T9\nBrZRFvpAOcq2QRnn4kd0a41u0Np8AOXx+jpF5V9Y5h6ol8NAj2WecvYU/GUs\nh0QoYoNamykNLrSyHjAsCfe6H9ONJlKQcYSJAeoXtAwNtIHvHdL6WNUe7sSP\ndRRtAbURKLvW7cZQdzlkpBFplrq62Zu4c0SUptoeAkZTJzJ43rJ0Av3fhdyq\nX0FIsJJwqYfru+7oeOl8EkWvs0N0Y9DCvYHx+OltQMmz/xtO3L0SKy9gmDFX\nPgodoqhZIYBCSCeN2q4D1Bm7zbyExmEUoW+7aHcvcQMBzACP0K93DjMcbiM4\nxwxpmH6JKvD5i1wjyeHhqTbmaP0aDvCglwAY9GDlJc8HglvNiBT4jRgjWWYP\nECPYn4Uhk31DIIGfuSv1kNVTStJG4Bh4tNCiIWLOZrGIPD6vPTXz/Q9DMNA8\nRryE/1NMuk7r+oIGtMQendzaxVspv7NyhNSyJ/VLbmI/yVGd1pRxD26+jys+\npwUWvYHX6iwy548MynwcsAmgG2qRTTdtLr6P4Lod94ePcPLmMSpf4iosuCbU\nDDqW\r\n=Kr9X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6bb1f0792ba19b662ac0384ad1db824c5de43bd3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210616_1623827862651_0.3935968599438615","host":"s3://npm-registry-packages"}},"3.9.10":{"name":"typescript","version":"3.9.10","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@3.9.10","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"70f3910ac7a51ed6bef79da7800690b19bf778b8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-3.9.10.tgz","fileCount":171,"integrity":"sha512-w6fIxVE/H1PkLKcCPsFqKE7Kv7QUwhU8qQY2MueZXWx5cPZdwFupLgKK3vntcK98BtNHZtAF4LA/yl2a7k8R6Q==","signatures":[{"sig":"MEQCIE/I+TPA39uYjzulEi+DnnNsYvIYoOPaIqo+EChcarwIAiBnE7VAvkFpCe9YJc+hvMcmrRWSSHrCITOPe5t18eo6Pg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":54144233,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyoAkCRA9TVsSAnZWagAASkgP/ihI+fqX+V+ZyzhLJhuE\n0CXs+gr6BFzo7g9GbGFkkLEzaGVk7p90BfMpid/LmbvpuSpMh7w3IXR9S/Dm\nK21P1rxA2xRRpEFoVNt2JceSlKgMqX/xtCXHKBCWrtUtIPKYhBjtM48dTOqQ\nXhkar8pw4n7/vxud6BnGkMisH2WO9nLMmPN5psEqIaDYaBlDPKljmafsRtsV\nvSnHcTkI7YwkVl1cSk6UGbcy8o+BTPDzTLvvuOpFhOrpDJ7KCibswn1XrNdt\nicgX8/rX03TvDlkJXO9bkrOW/hq7wMr9WLrTUgghTGD2wVXhoB0lTjSkHTZ7\n/ssiZyhB5Qoans6rRngBIqW6dUjvDIcAEyq624R+WLC7neUiJkmj+jl2JNia\nXHptpuF6A48QxirNvNioon8HrkHzum2tyjv3h1kixLlKfHUdmrRMDB9+LiZw\ni50sOoETpleRhqXyYeq1IuqIE+8pHKG/4H2eOjbX9RKxLmXe7WCsgFDV2jqx\nekAkf1IljJrTkTFdzbd0kPNi4qpYSnMQ24IEYWytceUM7wLEp10rt0QuZFgm\npkmjbxAWU/2Zh4sbWlHia5vCpAGsnIHfx1DfTNSgMajgr/ifUeRW6/c7KQIE\nrPfs4Rb8w2AYmg0sAEclNb83JkmuPSR3azkqikHOx/Ec963yAfXl+J1cd0vz\nYE4O\r\n=jpfe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^6.0.1","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^3.9.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"21.0.0","eslint-plugin-import":"2.20.0","azure-devops-node-api":"^8.0.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"2.18.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"2.18.0","@typescript-eslint/experimental-utils":"2.18.0","eslint-formatter-autolinkable-stylish":"1.1.1"},"_npmOperationalInternal":{"tmp":"tmp/typescript_3.9.10_1623883811842_0.488268848329829","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"typescript","version":"4.0.8","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.0.8","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5739105541db80a971fdbd0d56511d1a6f17d37f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.0.8.tgz","fileCount":167,"integrity":"sha512-oz1765PN+imfz1MlZzSZPtC/tqcwsCyIYA8L47EkRnRW97ztRk83SzMiWLrnChC0vqoYxSU1fcFUDA5gV/ZiPg==","signatures":[{"sig":"MEUCIQCd+gbchX5pV/BOZOUk3O2vNulmRsoztGTrflokGomzAQIgaadPN9GNYSeY3IkZi38xq9PKKtz+t1YW2hUQeqINB5Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":56825191,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyoOnCRA9TVsSAnZWagAAhG0P/22ocGJXQ/olDd79Vine\nfEYQpiL4ZRcdQboVSpzX25BD5BtrcJnWMJAMI4edqtFbzFMXjb0HRIhuF4DY\nptM8Y3OX0nv7HJSycIJMDMm1Oj2p8HUir0lVTE9rt9CCpF9GiQjnyCM2RypZ\nTAKWPU5oLr4Qx4x2iIFIl3UDTwSAPcwdiyfweQTc4JvpEnuSgcwripo5EWcn\nScZrA7tIHyCLS1MkqjQY23Z8l+C9jJXNZJLVHn85g/9551SvDINq5Fg7rVVC\nuLSeIdXN8bplV7gM6mCmt7JAERu9jJLJCQrJbXObfrt3OTDjKTYg8vZBOWlX\nGrMs2l5KABbfHc9dw9qnm05Zw9fuTohOGFFEM+rmKuefkjAo1uMrBSJN2xLG\nKJ1B6+rArXKk853GGowHn3dwxtY7RM46xpMTbfWy88Ld6Wa1yKZ/witN+cG2\nL+8auyJhQN4ebMok0xq9+PshUgKKi7lLldSZCa4+mCxNF0f1IWB39e+B81rI\nJ6wigwOJvDgqw/vdIh7Mr5f2f/La7KrscYvw46rL/0nLfxluAzy1CQH/aX9Q\nGs0fjrUacq1dsHju/ot2THxGlMQRPDUkf+sVx8jxLecQjtJqLC5o0/gaYC5u\n0R45sl0OcwlLNeeUe5OSlad/9KgpMbfvlr7u/rhLfibgzx63ayJu/Sp5GiLp\ncGdY\r\n=H+Ug\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","dependencies":{},"_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"6.8.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","playwright":"0.12.1","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"22.1.0","eslint-plugin-import":"2.20.2","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^3.4.1-alpha.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^3.6.1-alpha.1","@typescript-eslint/experimental-utils":"^3.4.1-alpha.1","eslint-formatter-autolinkable-stylish":"1.1.2"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.0.8_1623884710607_0.29035715115199867","host":"s3://npm-registry-packages"}},"4.3.3":{"name":"typescript","version":"4.3.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5401db69bd3203daf1851a1a74d199cb3112c11a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.3.tgz","fileCount":175,"integrity":"sha512-rUvLW0WtF7PF2b9yenwWUi9Da9euvDRhmH7BLyBG4DCFfOJ850LGNknmRpp8Z8kXNUPObdZQEfKOiHtXuQHHKA==","signatures":[{"sig":"MEUCIHuDZkXfcuG+uHyfvyMZwE38I/Y7WqWCLxfd5o2PRjexAiEA4oy3CobjZj3ZXocyjaTrupO36UY2TXAiFXc8yNQghkA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60728449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyobOCRA9TVsSAnZWagAAagMQAKRViaZTN3BftaTXm9L7\neaYGjQwPyatXC7oWs6az95qNJclKVWaz2LBW6FfHgiXbCbiHuN8XrCwLH2r3\nzOV7Z7/RBcs6B8OI261/EV2gyubDNpc4ND0xopjPoK3AKBCsRYRLeqffclxb\niQtBEXKIbbN0koD1biJGqT/Nt8BqIPS2b6DKWhScAYrCNktMSjBl+h263wVi\nUlLWs15z9dk0uWAflpxlYAiQc33tRVl4JfDSOvZh4dHtKQZQofme5zXisUSt\n5AfhFrCUH7Qb0hPyr53ZfTkVfTTRQpq2Y6iU5fQZr9/vAEE7Ei+mZyIVmfrh\nyauXDBbyzcoPdMOUkiAoAjhZQNWwS4ERJgApGYmYXqERP3GWtfuafYrpnoVl\npfEpfe79LQ4jzFPOmwnWNVLITYQwQhsKbm1f8Gx8EagddpyWW3ONkz/z216j\nZcmKAzxqXpbTFwaI3C5MjyXDXvqRiDNyrp37dSoyljS9waPpCermZmRudzAQ\ny2OzT7hHejxbKyhbLfvZ7mPYbMD3beOiiUvOrHDWFRdsdBiwpoypNtV1mbL+\nrN/5S8ZX5TPpwvnufDrdm0HaYU+uxMNbKSua/kVIGsaGJWz1nBMufOYA4z9v\nS0BWKqiS1P+pRGPQ5QLO1gjjsNcnGIYlE/Wt7GuI9+htZKU3Cy2bqghVRlqq\n7UqE\r\n=H21t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.3_1623885517216_0.21117664540684045","host":"s3://npm-registry-packages"}},"4.1.6":{"name":"typescript","version":"4.1.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.1.6","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1becd85d77567c3c741172339e93ce2e69932138","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.1.6.tgz","fileCount":170,"integrity":"sha512-pxnwLxeb/Z5SP80JDRzVjh58KsM6jZHRAOtTpS7sXLS4ogXNKC9ANxHHZqLLeVHZN35jCtI4JdmLLbLiC1kBow==","signatures":[{"sig":"MEQCICai7mXGTDIe6QN2fvkz+/JgP/riK8dISH5fiX47QxQuAiB0LeRpWQSP9BERL0LSMBumceTq2LnuHPPxVsJt0bhwpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58106035,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyoyECRA9TVsSAnZWagAA/J0QAIx+kzSia2nkVlzM6G5R\njBECCU799XjWFtT5aJCIdKiCqZb2J/Ahi2LCM3TXfnjtH9oJqIt0C/nnUZWE\nAuwHi0+tgXjUe1YEaY29fYNjz1Q7UZn2XMlfKx5FAcZIcpl0H45yRsBCPnnD\nj+d5DGGDJ/BpOfP/x79XhkbOzdqyor/6dJAQE1DCYd+55SQY1T/WHVv+hqR7\nGpyWPxDGCqBXKkskG7b4DBD8Z8jFINyQxkHyWiMlMEPQFn/+1Y2qeol2kfqq\ncHZydIn/L+IahQRYScOZzQW41H9a0vKA8IdpI/AJbsrt+ae9sZPBUIZoTBOD\npsfQW+rQPLsQ94G+k3UqlflcMfW+PzVtcbduzWxlhccLL4m8A7sbYTa8TdAk\nPcbIvlspugVKnqvTE4HhQxcAXpX79H3VvFl37sP83gcUSDY5mZjM0+u9axM3\nSUHkmQnjIPqP+hE7ZnyGy1L+7Q1vqfmMgVkKbAKRrRVCdxaPjgkx1ox5Pv2f\nwZWocFMFJ3ggs7c4gNvET24nvlYob48509YXgq5bcChN8snilikm7ezfcvB1\ncsWrzl3PYGP4ssmjJSoZyfHwdEPjYHAC+7NS/k7M+xMucB9r961J7JBBkj2a\nWSKRicP25aSmklv+1qQ59Tx19ZY7a41ezQ/FKwTbE3TrWwjW61brkHuQXpKp\n7FOK\r\n=53v4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","dependencies":{},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.0.0-dev.20200624","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","travis-fold":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","@types/travis-fold":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"4.5.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"4.5.0","@typescript-eslint/experimental-utils":"4.5.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.1.6_1623886979962_0.7590715576749743","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210617":{"name":"typescript","version":"4.4.0-dev.20210617","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210617","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f1316107a33380847c5523ad3ce373aba7751da","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210617.tgz","fileCount":175,"integrity":"sha512-mw35ReA9eBTCf/VhPmjkYy+ZlkKZUPxKETTydw8s3kfyA92+aybitDJ1A/tO687XI85ZkIBQL1xIuNoduKWIYg==","signatures":[{"sig":"MEUCIQCdksDCmaSVS8yYy/biI63bA3qj6BHvsCYO5a3VEwxc8AIgC6UhaiJ+Ou0ZBG3lnUeRYU2ZG9/PKXQz0MkKD8gNb1A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61305692,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgyvdeCRA9TVsSAnZWagAAys4QAIJ2/v2shWn/spRoFkCE\n2ODlcUmb7U/hOhovwcrHEXp1BmdGaxq1cNzUmkfCSNjlXWhcLtEETZVBwezh\nn+FzCIu/Yp6bQjXRCbdtFa08r3ILAEisT0m+da3nsUGkrpPJDkBNDjnNUwNy\nK8gelGgGfzg7SInwkbgSxeOLqBa6wIxyJPJFAhq6vfgLLawNRylWnJq9rVRj\nPFK3ToLDnrd7quAsKZOfAaX6jaPVtOXi+73cNk8Abi1m7aYaeR5vQDIFut2c\ntMwQPaamGayaJLb/ayL1jkD5FXfED5NN7IqViXYm/rxWty3j8yOpsXaTpCsI\nXpPvx03y6uA9gqx38eOEatsFl3j/Bgz1NkkeIBlZZjTs28FZJl9cgRZGZU9P\n+i840wY49FX454M7OglnOTYO1hqh0vZltylU2B22643UidL6O4V4EudTY3Z+\nbN0Ew2t3fQYu5GmE/izLIRsoeic5OrkQUtfEP0OIv0CTBnRd+I/7BRVZ141h\nadATBJ8P89N9NEYy78Jjg07WwQurQK9hCNkm+8IBOVqdYISLH+rpIGdmfrQg\naANgtBzz+ZhZkzoGHOlNs4BV4OguxAoUnzzEDEfq7xF/51mkp0EaxCe08Rhe\nD0M81XCSmvQIec+M+kaPWfuO2LOA3dFiZOfX1+z16uIhk/RTUsaBYpg4ilxF\nCeui\r\n=nqwy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d46d82c9bda7411690fd864a35d3e44e1c90ea13","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210617_1623914333639_0.8905616598022534","host":"s3://npm-registry-packages"}},"4.3.4":{"name":"typescript","version":"4.3.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f85b986945bcf31071decdd96cf8bfa65f9dcbc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.4.tgz","fileCount":175,"integrity":"sha512-uauPG7XZn9F/mo+7MrsRjyvbxFpzemRjKEZXS4AK83oP2KKOJPvb+9cO/gmnv8arWZvhnjVOXz7B49m1l0e9Ew==","signatures":[{"sig":"MEYCIQD1LAmoRQxHwH+/QgdcvPbCDK9/YV//p2edxOmfDBsiRgIhAN5OUKC4Un9xZsrC9KZcAbEb9eGjHGS9X0BDSnO9HA8L","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60731044,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgy5H6CRA9TVsSAnZWagAA4mMP/RoMP7cVxrUf/WuotInh\nfMt5CT2puHcWlyYDU6+BxN6wfR40cM/V2k/pkfoJHFNagm/RUk1AF5uVxBem\nlepsKlRQoo2aOYe8kY9QCnQhuPO9/jX60H6yxdPcTkVoPuWKqdBG6FN+tZOB\nUEwWMLihDXbIrwMFmJAolCvAMajuAnTQaEfY/ZXaYJRSp+ga2zRw2cEr8t+p\n6RXI8t0ibGQRaYXBxuFn98hdYZkWtmEWJIj3CZiDWGWO5DAoI5L3gPMTQ5OP\nF0yX7VmQqFL06HpSDZfkK/LH98myZOHYOA4BZU9Mi0owEHjC/9hteYatpC0R\nNlBEMrWZ8uH6g82xi/1h6DQVpDyhEV6gsk8NO5Vu/y/0g2CwAgK/AASVGT68\n4vDgEqnJjQGIgOPQSvLn104Uo20LMfCrlZbxpJHkoPR+psgMwGdN1Aosjjqt\nbZQRYKeDpEeWCO3DLZBJRpbIUIKVvz7UlRsYnxNzJmQbebtYEX3D4Ds1gu/l\n8Rj2f3Gq86Zh3Yr5iNOBKhI+m4RhuAoc9WEWgGlMauzheqN/BzDrVRY+WMUB\ntTM/mRUIZ7jxYj9YJF5cFougrq3XMPG+FKN+Pgf3ufbl2Wi6qNOvazJ/676v\nzMCJhES84ckrOozJ6Aiw+fXkvb4fcsF8o8jkZ6kw4V4BIoABII4NT0OWbDNY\n4W6p\r\n=N0tM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.4_1623953913949_0.723123255478205","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210619":{"name":"typescript","version":"4.4.0-dev.20210619","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210619","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9a3819316a505a3d7d1b96e271f6eaff2817672f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210619.tgz","fileCount":175,"integrity":"sha512-KukMvMT+dC3RS4Yvl9PeHuE4ovvSyTaAof5UbfnJ8cf90TqMBSRG5SdTaTHhMr1nqxCmFuYlc9/ZIHcCozr8Tg==","signatures":[{"sig":"MEQCIH3skjhgVOC6glh2fpSoU/uctMVvtzguQlFXRBh14BTkAiA6IiNkhm6O2s91XNVxKOEilum7v5vAKbzODS6sYr566Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61374156,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzZpfCRA9TVsSAnZWagAA35EP/0n7wg+vKV7KMJDtoBeW\nIbjR2imsXr6uqRmdELw0JOKFMRc49MXImuqDSdZU4PjGfn/JGtf4sfrM9MFJ\nI9cpm6aZ91hMJRx9T/PGA/IY29Zpj8whSeX2lQSgBxeDgtpeBWYv4Fjk7wLN\nM6BQGOQQwTdlUtaYIVEUH1lTHasQRhPTjmQMvvU8He66ZwYBDMWYmwkiG+tl\nUEXsCpSlpDAnnAXSgqNo/bUq/QuLjmEgv6rQ4cYiS/3LTFVjugKAjL8zR6mp\nZ34Nr8mAPqtOp2AG8+2qz9CJsnCy9YtNwI0cjIGUmZx8FBl8j+S+/0KYuExt\nbA/7HJIezrb9jB0p9bVyOxFStcpoO8VR5MFARPPdT1RJEJv+ygoxodNY5/Wg\nI1O7oErYtZDcsY5eVq4Rj4P4OmPg8JZVBKtW65D+cd2OM9/3lkKHmK7dhT3E\nsQA8y8TJFPj4yvUGmRylq8HZKwr3gedjDu4MCnwQAweelTwQnUgRU2RHFruU\n0/3L/iqG/TWvYt/y9YpB6mq+/tvvvhj3ULRNxVAW5AnEz/HOQ+FHa3Y7LKcu\n9AuNzgPgw0QB23BEnq1zc8G7fmQ6nXogXauhwrLEzST0EFnDTVkmKow1rFmv\nkA02KgOzB/iiFWyz1+7nhZpGUcTcgZnIpGF+bKHt754vOaQvYW6Tu86CDdLn\nEGCX\r\n=/Sed\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9251304ba7fde3dd4a78e119dd69c6bad75985e5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210619_1624087133902_0.8177292794531634","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210620":{"name":"typescript","version":"4.4.0-dev.20210620","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210620","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"756122a8e889210d79f3f925bbcabc28e6070a9d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210620.tgz","fileCount":175,"integrity":"sha512-76loc2bhesS5t0CulViiq9v9O5lFDwXKDZjHDwUxWO8sxznydxeRtN42mJLt28uTROJFxTfkvUVjeINTM9R65w==","signatures":[{"sig":"MEYCIQD5L1Tf6GNgIEluWKLvZbXELfvFE0HTRF7oLP7hNtuibwIhALMWIwDJMuwuwQPVOZaVxo4eppQRjjaMxBUZGqSiESw/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61374156,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgzuwKCRA9TVsSAnZWagAA5vQP/RfL/diwp+Fia1Dyrvj5\nl2N44vxKq5b5k+hgIwahRsAC5cGBnRuSPFkZ4SivOC9hUs+lAXoJMHode4lF\no55PpPMce2t7F5qF16YA4l1BXBeUlxb8q60ovMMbteFbcYmMWSsh6kEMBAyk\n5356cZMLCxpHzZ91q3s5FQBkgXa4GNb7ZyF6lyrhIBHxhveCkhHHb8Zkl8tn\nCgD1Q0ZqCtsXLWuRg2n1WygXEw4cR7LhjM7VDCzhB7d/bns9Je9pEQ7lSlzW\nfiwoyRnpsY/A4ecMyV3P8nJrlj8s46X6elLbpPgT5iDD+ny0i35rcSUVagHn\n8hcO2U4gBbIG68SY7AcwyMvWBFx5iqjGZAhHXM/l3Bj9Ns7VHM3ZS7rAWxXG\nBYCef6HH+k6JChjHoZ+pUrSqINJibs2lO26agzy2mY15W8+kBEoRl44ecFbC\nW/iWLYJ+t2IxVSjzeZgUsfTWPNWTD2yuGyNR5AuC4DNH/8VHN3JI+ETqid5D\nxRqJciT+JKciuzsRDu8LbsxceXEb1woJfEqqaDUsqnAja7nL1hGoRy6rQBFp\ncbdJRaSxDyFgC5ConDNpI/LqZYberXqsk598ZZfpGux1CKeLHeAyh37nZvFI\noLDx27JvcrD602eIdw+htTcksLiY+NyQR+munDdLjX31zwLS5Fcu5fn08mpQ\nRs87\r\n=VUit\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c786ad4071a5f23c1fd389eef75f2fd309b43ac0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210620_1624173577404_0.1870696071957989","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210621":{"name":"typescript","version":"4.4.0-dev.20210621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210621","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0f1d58ee999c6e2c647d2f30f1fb1883a7237eb3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210621.tgz","fileCount":175,"integrity":"sha512-GOuXM/Nw6LpPLoHYAKSn6QeoolXEhdUAUVDt1EI7crtSmaLE2D30eaDeaCkaJ+WcyzxjJuGajCqeLq2+cHWlXw==","signatures":[{"sig":"MEYCIQDEs3Hl31KgyTb8fwt7Les5Rf7uA1WY0gCvWz40dFeePgIhAJej0LkqEOHryOP8lbbzU37f/77/lGaQ0QY/OkFtpdWn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61374156,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0D6KCRA9TVsSAnZWagAAM50QAKNs3LqAv4pXOYCRwFo0\nnu6iExwJskbwxuVV5Q9e0Cx8Emhb3Ru1QJSgk5bTy2WoF3u+/SuecuPElCkz\n85OD/vNvi5iyCsjeun3yaFyFB5sUFBi/nKiWHnibsafwepNlN98XoPMeNPVx\n/oYrTrFiZVbzGGUaFsYHn1r0y61HyVT5FFKWVNvb9Bexp3EX1LpvPMg8Hfad\n8N1Ww2vOPR6cz7bf9kn/EyyxY2wai1KzMla35O+XNLK87wlFd8U0RHbdZDao\nW3V8y1w7CCfZV850HMnzDPBC4bQRcS2tPxecR1epX9eyTDZtesSpdZczic9y\n3wWHXaiX0jCxJXV1JwbsCtKcdblM7Cun+JzpodCX6nnwOd5Sr95QcCIfbg/d\nkQUTo2PBT+bUDrX8KE7tPFfC+1Md5e8JmdmXmWl52fczGx+1GY+pzEOHE6/P\nXrlJN2eq7Lbz1ZMozP0HQKSL7KSJkC1UswBDUI7g31gEpeJdf6u0+kgFyZMN\nXIQPOAqW7PIZb778pwjJJCnYUFKgnHppFICFZwDwUV+ocbcaMcMD5sCVU4ux\n+ib5s8V5fsNkgk41EnzeTSmG9cLEn57c+J0dTrISAu4sr/kMbvZDHaSp/wJ2\nRIS1MEWPNdgAoLshkV/CkNe9qeZBHzLAbubAgnrg01dbtk4i8JjXKXVU7CEb\niPLs\r\n=xYaW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c786ad4071a5f23c1fd389eef75f2fd309b43ac0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210621_1624260231624_0.5704300268569391","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210622":{"name":"typescript","version":"4.4.0-dev.20210622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210622","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e31a026a4445513e59bea439ff30029ec7e5ae08","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210622.tgz","fileCount":175,"integrity":"sha512-kT0baBQag0PVrvpC1NWpL4/kg9zKL51KN0DKyymK+pZX3hdJRYM/CnMndEZufzBYz6Axz4xwlc50/pl7PO+KpA==","signatures":[{"sig":"MEQCIBbTxSXgIMdL1CNGfR5dwlQmyGOHzk3Be2XKZSxPFp8LAiApyePNQSev52/smIpNzIAaew58BNlNr0xPwjFwFTFwHg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61953364,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0Y5dCRA9TVsSAnZWagAAXz8QAJZEzUoFjsfsIoKPThsF\n/eOZGfx0tz9GEovGFM64LMlXib6Z2M1U53aNFJYNxBO70GJNCpcqBLQvLqmi\n+BIXnUw6NESFgoYXWEOkAGAP0j1dz1upuEoKcU+xAH6t3HAEKcJDwzVTHhFC\nyTCbqiPGrwSt3T8evL4g3O8KjH7j8fBj1vT6A11uclsM6aAIOfCIwPRaa44X\ndYzuCUiG9LG8Ou8h3CRwVnAE/4cKvobwUsfc3+8Bl2ItwNIyl20j3B5CUVXI\ni8eHsr7XYVtRzNvwa1RWWQyfXrCWnC4BRvWJEnGq6YdcS+n/rJGpki8ilPiz\nmhao2wOodtWqyY86+jaJl1jA/njz97wTkqrPrhKD74G/lZ3De3KFSRRk5IrM\nFnnNRrJvFfWwxW+yapeLcNqvRBPHp7Vrbjsl1uVzesigRX1Ls3TFC75ea4El\nVlnesvWp0Av2pFfZilMABqM7Mj+voKsCuA2vaJUXUMpp8UbKeXIZCfhERruk\nWEE6FsP+8jRiM/7aTZjoke8GuqZbWrU1fl3TtsZaDToszrBTCiorQqusdGIn\nsro0v1PjeGVazBbDs6e0dWs0Ks1gQ/sCU5rk2egIAVQmWIIJhemTjhbSPL1R\nKmtzP8bOwciCcW1UvHY1nwK/eSiVO6ZQPXpNtqkZVf9h1lp4SANvnRhab3n6\nVmwH\r\n=h71r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"711b4e778b168117f7034a28ec821df22aa617cf","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210622_1624346204346_0.9018529097161212","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210624":{"name":"typescript","version":"4.4.0-dev.20210624","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210624","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"24f74170c1fbbf9cc6ba927e73da367c5c5bc3e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210624.tgz","fileCount":175,"integrity":"sha512-RKFEyDnV4lyEszzjMO/uvB+chplcTeWOisGb6sDfORIbYU2e3lTqDDQWRkBQWzTp6r2ca4qw3ptNEh6rtpLvVw==","signatures":[{"sig":"MEUCIQCDLVwlDGL8eEIPK18M1uwNdxtmmTr0DMmWSrcpiFvmcAIgLKYM6/Wen8hfhF+f4ZithtDFmZM6Qij27HI/DYKDwI4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61958675,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1DD9CRA9TVsSAnZWagAAtjQP+QG7/bq2E/NDgV+TsTRs\nFc0k65w/qGCNL4h6kp8DcV27rPk9SKzjwxQnAHIbAjAFMxw2nWGUF2x0nR9Y\nCskrcWiPtCAYh8JGtZdUG9wQELLSaHl6Bxvmu/yJWysGrWJEw8RgW0H+tFST\nB52yBihHqolAzmjlLtVZqFCVwK7iHjEPrH8wWut7JmgZlZYggrK4XAaKblCL\nQA3ppOzMaD1wRma+JaBvx68teXbGXR/4al1KH/Cfhkut5mglzF0kzs+Jfq04\nK2NWT7MrpCrIV4Dtz25HJQpLIYRnpb/AHF9ddwZ0gjkvj5eBFONOsgYmcT8U\nj1kEu8PPD3AMr3BKiYe7i1kOkVFfu6qMFs2Uzm4m3J8I4JFHcnthgQQRTw0u\n2vcpJmhBcShUjNQBdU7CI8BnCKH4ocBPPtg2VqY0bbQ//kVrtAREmf/MIp7Y\ngxuayT+fZMt88vlS371I0r9COQJuaDO0UHKZrtMkyCJRFfRjFGLBho8B3IKk\nmEAis5BlJfx476KD21AJ/NHgjdigrt608BN2ymqdSEtBixWJ1OeBt9CKnFjc\nSqSB/1u/KgffeOJd4RbZG+J4938U0gn5O5E/hYXNVUUIs9ay+VutvmKSGPYr\ndr/JSwe6F2gpfFtUfovNY16k29pd4yHcMkHclvJhw1yCpN9fqxhjULRs/V65\nfgOF\r\n=bpwQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6459ee4e4a3fa137089ab57491ca176089e3ff07","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210624_1624518907865_0.46119812823170747","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210625":{"name":"typescript","version":"4.4.0-dev.20210625","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210625","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0a22fef024138ff6f2d9c660006a5cb6984307dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210625.tgz","fileCount":175,"integrity":"sha512-ThG1wgNkWHH2vdXHOfT2docBIOFTEoRiLqyQIm+nfP9t9bS1Nd7Ze268vCXKhItdhIrUQ4scTRyw7xdiHEHo+A==","signatures":[{"sig":"MEUCIQCDvniPuZ9TZaIhiTL6ubzJJdSGxFbyG7M+WW/OZ+9ncwIgd9JkHvC8X7PS/LLoIGNb5kxZgRgr0UqPD6EKsxfa1Iw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62036016,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1YJsCRA9TVsSAnZWagAA4ZoP/AgnEqDxZELUUrNDMSeL\nVbenGWG988IbVLyV4x7iBcape4WpCxz/5bjIsfQ9kAfIqrvMLpJ1EB/PY7db\nlrDyMZ+1VCLkrARuxF2nKlsk44zYK/GyVtYRSjJPUOhw5Vvww9uA3Z+3jXUt\ninsCvhpfAU7O7yMCmjWuklhRshvHUwx6fdUOEG5NYR89NE6738Dko3JBTRpB\nzzco1s4xkBOPmK2FpLMhtK6PJER3MqbVKmJcHNBuK0lyLe121dIEP7MGyCsB\n+YwHoq2OmqBbOThnCgxwrXCtF3hKc0H8+9V5kKaIlsPOOIhtGZPvgzfvC0VR\nXL3lBHT34un7qXI4gKvphvC7x6HDYfugdGA7euII+yI97PRE9mRV/Y0DYWVn\nqq08qiqZe+DtVCrdb5CaZWIxz0fVhXCsRzpWoPILDZElq0eP6jcKc3YygtyU\nMKilDi9ijpmVCWSimRKTvKnl+n70kwatcbSneti/GQstLeHrn8M94wOCSPTf\nCfMcMYDVP31TeXQ20NcdzN2ju418eSO+Wkui7z9UHw8YQB5FXHNsPlcW89qX\nPcvef4vGL4a+hP9iN17LDAFg1uG2RHlUOFuPigEQzTzDEjRSDvLFXiA6Sdww\n4itUPH3fMqGgEB1wdtxDHdXPN/GVjC3QJP+fmRouR39KaJRaotIKVNg+QQB4\n0khU\r\n=EMQC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"66b4ba4b35cc1a6a7a7de7f4f95e20911e2fae2f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210625_1624605291357_0.11932599254800769","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210626":{"name":"typescript","version":"4.4.0-dev.20210626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210626","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"70aa1d42543aaf8f144a6b30f995be2614644d68","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210626.tgz","fileCount":175,"integrity":"sha512-MFcWObbYbLlJi6WxfF7hv4YtR3hv8s7Mh68kBsV1v3jW5SVLcs2KNEPRPxLPHJlKXm8CRKjhb0iukS5qfOI9HQ==","signatures":[{"sig":"MEUCIBTgiEV0HF6XpCae4C+jhFI/Ge+ra31B8hZarOT3TlO0AiEAmxbgnGJSYjWk0ThiiCUaNpb69eCWaEi6FN/lYP9YWLg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62399590,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1tOrCRA9TVsSAnZWagAAyroP/AoFkS7t7WJ2I71edYZK\nX8+p03D/c5vnwgS7b8aYCAfjD9p8pOmeEiLwjCHLLlr7df1/k9Lq176slUro\nrsHvj1tH5/7Jb9lmUz4ipcFHo09nRjnRgi0RoQwWjFIM5Gss9ZrHrG8e7eB3\n5BbeL1FQZ2UeyfKSHtE9W1drSQw9LU5Qt0niIe6L+/biEHKJDcUPijEO59Xb\ntvGceyNOKTT0VbYmXgIgnPIRpAdymDoMI37WT1Az42jvD+6i+CZtS2bqxpeS\nZKBufIhqZdz45g4zH3cgEDCmCIx+lbRaRJz5E+LXGeCfAyXCOLn+YHV9Lr/W\ngjymyyrq40faas54hy4dgpAWHvHAGMqFdtCMFLSysgp6ciV8O6IdcmQbkG0z\n9nMh59b+G63ijUABEiEQJYD4C/2+wP052Ja6bOCUYWZ9FTkWA2rRKfWnm8qW\n4eamHInUH1L07tr+0QS06Sbz1gUyhy/nVoY4M4l3QVxQVfShcgZJcBOmgZlV\nFtFtUrF8ZKluUhgjWheNSaOgBjuBhp+cjb4bl9h6gRX0lFT+F09qMUjhnHgV\nVUoY4jq2IBACjvWRe55GmUu65imsT4crQD+IRFU64wKKoAK2eJegoTmCcCDB\n/ICDLgpjGJfgBIFrXZq0cudICkw8hlZoO7Lz+6MrPXot7rdP0NFD5JX2GBFH\nmzaY\r\n=cvo8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"11b38676b0e23ff109ed822942300420a0c7a8fb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210626_1624691626797_0.5492756018238911","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210627":{"name":"typescript","version":"4.4.0-dev.20210627","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210627","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2f2ecd5339ad10d01e4211a8e4a92efdc6e02c2a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210627.tgz","fileCount":175,"integrity":"sha512-XTMu+s8RwD7/b5Om1lTlV73bfkF/ClEgUEePf+2lLC+AFCrAzbuugVVSNAr6RBF//kDGleVRHEzDohJM5mVvPQ==","signatures":[{"sig":"MEUCIQCy9pqGh3ouEB5vz+Jq5P+lU15tpYRK/5sTnH3Ntg3eYwIgSIIHAWrz8CaGJigE/cG+21bz9lg6kHnwc3kdsnyajYQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62404698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2CYKCRA9TVsSAnZWagAA0CgP/2R1xy7xMEHE6atJ9J6I\n/Vjc1ExBfAcQzJ/yqXD2gikD5lT963vfFIGO79QIjI8O8hckg8wxtwmsAqV9\nd/pUmPI0J2H2MS7LnQlak34Y0IC9eHVO+aFTejY7ZtpVrjvaqkHd40Pz+vyK\nG25ZnFEb4cJYT9KPcJ39q6pRrC/hNKmy28UJCZu87oQCpw86OM8QqwHTSXaM\nBJK+v8rY5tnPlR0VQNrmaT9p5FSb7jpUO53bsSA9KCRu771S1ZtfKBwVfuxp\nY2dpRPgxwZ9dwRiGbS1X00Ioh7fo1f6T/5KD1k2f47PRTQQqqsRnaf5pN2zv\ntV8pm3v1r7SvqDfiIQV/tZMHeFVqVk1hIhULw8SBC4npUT/mm3vnBs0EsqA0\nwKrJ6LS/0PdUKKR8t12qLFZ2y4mmqkzI/xbB1kPrV7l6z7cOinG9T0uZU//p\nsV0mYfhnPWOilp9alWmkkEEqhulieHbAt/NBIBS2jKWQIwv5nZ23+Rqu2IsU\nHfgy121bBHBkxURRs9ZBM2WMQAP6gCV31/pAmCac1OR0B9h/gd2AVZ/8Brxb\nzjmsXiuzySp2sQU1an+bo8Z7A5deg4lQHfcQiHlhR5CGjoNYEXDzy84OYJid\nsmktXFOWxHAIJkZKS54nk06QBqqPpmjVdTsrrDMjFpz4Z5x9rVYkRr/7yiZy\n6+R3\r\n=wYf0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a7a0d258cfdd005ac62025d0549ad47fac00139e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210627_1624778249871_0.5471741287667613","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210628":{"name":"typescript","version":"4.4.0-dev.20210628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210628","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"26b3a8a3a086900cc49b524d9baa7ed2443761fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210628.tgz","fileCount":175,"integrity":"sha512-8kKAZVg7lLAUfprNkSl/VtzawLrzbS1GxpzKVLYaxxXHHNWxlWVqphAHDdNNrral5SD+WKetCfq0ZtWUIZTQ0w==","signatures":[{"sig":"MEUCIQCQ8j3rdOTFgVOx/LqmT/MX8mEhe8wkv97l5O/MaLMUUQIgCpG/gMVfTX9N7xX4DMVJv1jzWKczIFW3S3Wfn1Mru/Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62412111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2Xd1CRA9TVsSAnZWagAA1IQQAJdsQjHywBylJKErZlwp\nimUk2CoKZ/inXFsTGjeiyOHPK99iUMspGTXM7VFWqTxGZ9rSeLY6fWcIhG31\nkagdyctHOskAXhJSQktMMru7bO0v2fhosy8qtpEC0l/dYrXgR+Ud+gjK0MXY\n1+dm7sECGKJeN2n5uFCGNVbUC9Zo/++0wPd4Nxbe5J1mQ/3s5j/rjGUSCsSz\n3cWmrwG+gTJrJ9LCGAR4thNVuOYvXrHZjV909mv7v3K8yRoTxhLRX7cs8bhg\nGj1z+XSPr4QDn1UNaDZC8yymmGJt2ONfotY7xeGyj+aoiyc917ou1yqxeLbl\nuyyLgJ8SGf2+Yk708NU0u9ot/+6Lcc+1wQ8hCrzpsD1v6aq7mKmPiQuCDtfE\n4LoBbqIl9Sx/xoOm/+4fFaeTFnVQ+twegMDsFLJSYd8bML/wa8OIeCz1DdTj\nr5kg7EDmv1gjOMUB27uSPx/xwCgFuAp5lGVc4bGXqvs24w0ZEcOBRXLHR+lj\nxaBenNno+mUb7bvgKTrY9tmANyTG9P/S9hjDNeykFFJBDUeLfXp08/u2fLS+\nuofxIJjuyxPZbCNRYUJSCmc9DrxOvqXXGOG6dmTKVOovgnJ/yrQUetA9p1jg\n/fL28shCCo1o8Yl3QBQi1PT3ZXikydRhf2/GZPZB/yQhn0DPzR3nAVmb/SlI\n7sm5\r\n=RRFg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6824480de88814116d63731d63b759197186801b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210628_1624864628756_0.9158782214055867","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210629":{"name":"typescript","version":"4.4.0-dev.20210629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210629","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"35437bf673e3fb9658613c48bace3fa1cfe0d25d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210629.tgz","fileCount":175,"integrity":"sha512-kqDceSuAA0qQ6z5mrQc3LcD6IcwrKOZZ2YO7oBgwfGM0zzraUKhpdJSZovwN0pF3MdI211HccvrHf8JX7UJD7A==","signatures":[{"sig":"MEUCICgg1L1HTyno7dh2asBfpZ32nwtRWZw2yUDtHyf4LQGPAiEA2tuViKW546WE2HpVCvn72CqdYZcDOoGUsw+pVoHBUBQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62425352,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2sj9CRA9TVsSAnZWagAAYMgP/RIZLAXoO5fpXrg/jhl1\nFo+AwyUW//36CyNWSZi0IhvYG8uM/zu/035uHZQSr+qPmcn0KbOB2HgVxjgF\ntwovwvMrpPDH3nhO5p7frnuEdQgMgpba949XU1uKOTN2z9GQiMHn51wL5PyG\nVhYuY2DseOi/MlEC3iE2Fd7UytVK0crxiWo620dO8Vy4gsTgwPBpwHVYwOTx\na89TE6Sx/IZ54YXpN+H18KvGtGy4NbVCc+K1SPVDbIp8GkDCN5eu0ouX+Lqr\n+CRUQOo0nj1bPuGp1Um9nyoBN4Mr19bwNySJawg4wDM/cWXfWq7X1eynuZC0\nPVPkPxrLqV/HszT5lj2CXUAXYnR9ythYqT/XRRov64yRXMZ78v8xtxHDKoGU\n1xN/AN7w23tapNA1BfQjPFz6oYHbs4uJfwqAkb6zLQaEa4bMDMRT8Ce9f29Y\nDYfPtyY7y094XYeGMqmyw8RxaQCPgFeJ6W760yb+aB4GpXRRmC2VtpW3KoZz\nJKUHxfko3l/nKReueLRWxNLU0R8YoDBthVhZL9IPp9jxs23ovqnRFM5tOLFE\nRwZd6NyOlbmWeMg1i9ZAg8+i7Vcd9BoGqM8FRbT8f/Q3v+Piy4dVFTjWhOTe\nhMRYwDbOzfY2Pma6EneNvA405V5p1TyqqyZBUQ7AitBgjqFutd1+RXTAjgkk\nTSC0\r\n=nAAC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5cea46c5376f244980207eff22436742e27417cc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210629_1624951036774_0.3811810444436119","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210630":{"name":"typescript","version":"4.4.0-dev.20210630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210630","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"71eb8fc9e5a7ce05da5462218bf8f44ac7ac1d85","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210630.tgz","fileCount":175,"integrity":"sha512-7QoXJLakGlaFOlLAKTxiIfgoxzinTV8ssJ5jFQKG9P4bap56JZNVOjWqb1cmquUwzOH7VF0wZzwyx3V4iYP5Ng==","signatures":[{"sig":"MEQCIAUpRt+YWCwC8DHMNvNZo0OGyjVUTtgkHXWUAEldHhMIAiBTGTMz1c/DT2r2geQPeh9xpGnCtEhfrScL7D7SKviyaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62428807,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3Bo+CRA9TVsSAnZWagAA2BMP+QAdhA9v6UfRh4xtJ3DC\natOrbgOwEIPeZBKB7JjR0IRZVCLWA4kzl0pdlHKTQV6NAfUQ1Wa6oBYPj3Ob\nurRb8bBldlK5JP9wVe+NLdTXfxsPwTo8haO4jhAPE4IYt6oJwRmXMEGfFsD2\nsQBWjXcTFontzWokJi1XIQKWtUyqORKZDcUIj94azaXTSWmJxkyUQ1Cn1JYm\n3GUTHhnc2x2aNbC7/IbI69SLaWRgYV2/v4OtfyN2tYnt37V1v1nEqNEchpfM\nssL4ghRAkGNVz2CZQpo9awL+GbyUQDZ8+Xh4XEMtsXYgLYvL2GjOq5M8O9fL\nF34ubwCCjX4QNGYOPPBeqEFlguhjiL9QIAquXVVKRM4jMuT/d/CwcH48W9Qc\nFa+YoKqjBbBQHl1J5KFmzvOz6Fv9vbtCq0wcOOUSBq9s9PHaHF6BpbUO4j67\nLaimk7K+yiszsRhuOYuU+vGNJPrk6ZF8xKnDBVwiOiJTHImTZfSOp6Y6OlRp\nAV9JIhUZeE23HBS1vo0wb4e7n3Dxyizaal19MSCM3YPQJ7kkAGQh2LaVlVx3\n0iWeONaewvp4WBmmBfCNlcLgAVntA1IYtsjAaPMIiwriPBwV/L7r3Q60gzbE\nPaQwv8XxJHlNgz/JcWZYHOJlpu+tDlYxsUxSyygPeVH83hhK2dx/j77E1YKc\nzmYE\r\n=RSOT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"837ed9669718fa3515aabc99974abe91f7254a3e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210630_1625037373628_0.5861019298031946","host":"s3://npm-registry-packages"}},"4.3.5":{"name":"typescript","version":"4.3.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.3.5","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4d1c37cc16e893973c45a06886b7113234f119f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.3.5.tgz","fileCount":175,"integrity":"sha512-DqQgihaQ9cUrskJo9kIyW/+g0Vxsk8cDtZ52a3NGh0YNTfpUSArXSohyUGnvbPazEPLu398C0UxmKSOrPumUzA==","signatures":[{"sig":"MEUCIQCmB6Cxu6RL0DxwNFmNPl3iRjw1xI4XT8+5gpcOVwASHwIgQbMJ7khY5UIhgIjqc260ThxZQEbjPyB/rrPsqcxHTcc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60731388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3QFNCRA9TVsSAnZWagAAurEQAIRgJ0LZRHxZKgghff7I\nkd6kxaXXWRY3mkgMYbYCcHlj5ixDhvomUAJoy/2k8dmfInLSHNl3En6Yt74I\nE0ovvIvS9rNHUHp6OV9LQ4pBlaRuFos1sv+yUkXsJM2S51m1eoBO80/6nDP8\nBb9OnpNPyURb/QnsqYM/6/hIgOMMn55k9NoTi/NnCyNqJEsviZoKpASN053D\nzEGXccvjk2oJlQ1zJFOOiVmyowwCvgFflht0bGudPwVDBAD/aeu3aC7b8cLR\nso/I4tHb56iBUzZ4NEFAL1XeyzBFxW1NHWGeat0a64St4R5ANenJ9KFrbWe7\nE49ZBAvHYQEGQjJPuPGBRnGhI9bottM4VfJMrQAwNqZSg2jBr7vwvAkWNzMu\n9bSGo4q1AK4GJLDQEVsGsjn1mZ9dYrup3F9UGosQIObCiUaXU87Tg7bJGhTU\non9YVuG1V1XP0P+XJXQM31db8TxlM8x/kyMxmNiGQZmpnfRJ09u/e7URMjda\n2Fvw6L/pbAfmrv6jfDaOVGw+ouzL0PCqFOV34uaTo1qx+QUSP16Vck/kEDM7\nGpv4hiHef3awMnIDLZb91ZLmW5ETBeYC8to8gYLSbK1ybBKGv0DbUdvjqEq/\nHU09/VXlTENUKb/jCoGXpoNAHVW7sCHAw8uwKbvsR6c129owYH3kZVe5ktrT\nWFYl\r\n=AuZ5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.19.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.19.0","@typescript-eslint/experimental-utils":"^4.19.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.3.5_1625096524282_0.8278284345529341","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210701":{"name":"typescript","version":"4.4.0-dev.20210701","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210701","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ab6083b5b1c81cf51e3b331646fd8735b4bc82d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210701.tgz","fileCount":175,"integrity":"sha512-noUHlum9wzLJF5m33SHAZjBYC8Sn7CjDLvAnIRDJUdqM1VyYSWkz4rX7CELSswTxlObZj3+b02cQZTyB37DYfw==","signatures":[{"sig":"MEQCIGSgg0mmA1MTZw+pmcJPdR38rAxn/BbSkfKt5yMIVXDPAiBAwMVVPZXwP1uAcsbYv/OQj8fy9cVODHizqeJGH1DP8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62431851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3WuaCRA9TVsSAnZWagAAOhUP/AqykcOS9+vbb+jEZDUW\nJeNjISEN6bgk1gTQXF8Mi1qDCM8YI8HlpMu5AgBWKyZWe0YXg1DZycCUWPWi\nsHgIfPu1Hu35dUAnTrgeiNh8LX8LL0INzWMiDEvuJfsYQTFMKZz6CnZuUNU1\n1HPPmeyfDD3m+woT5VaNhBkL9NGmNKX6JkEtavT81EVHinwnAGv7XbT92O9K\na0My87T/LThVnCPPwA18Smln4ry1bCVk9PKVbfnT3yhHjq1jJ/Hbdj8gaCGq\ncWHWi332nfDmPCV2jWmFZXowFJRQRsGeZJct8JaNm6qrg0vi3xuNY88WY5Nl\nITx9q5WJVImx3l1/LPM7eC/K8JZxPmeBAGV4K5WCJ36nHNUzE2Hiwk78ns+z\nTjibZZUIwRl69iKRRQAPLZk4+D0II1JGy9SV6GDoOCSPEYWVvxL1mEm5jZt5\n9YNAn+UFlAS5L+KW+qAwRf1gFcVMReRvDbTqwMV6dzsQN2454QW+Nt+GuyA0\nb8foYEKb/Y/Z0WlpfEj6Wi6R/IkC3R6J0+CNhlmvXIK0QgNwaHbwNrQdaiD0\nEw1tJ4/2DxD3WDVNt4gw890dPU793Ti8LVcAOwCf39cxkMO1DB/rBQy6teSx\nyfRCXcH2h6yVxEfalreDjJbg594roZN/xIqnuWrtFqmP16+VcYQobJY/R24i\nmI1C\r\n=3KH+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d308b99f38b788caff4ebfc7a07cf46a87f8c3c0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210701_1625123737948_0.4182826810889839","host":"s3://npm-registry-packages"}},"4.4.0-beta":{"name":"typescript","version":"4.4.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a5b8a3a0d260fa5ce84daa3ab58f7102ad19a655","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-beta.tgz","fileCount":175,"integrity":"sha512-qMxA8NzN3igwX8Mii7MXGNW+YeFAkUKyKg+x4F1CCFsO36LqISf1EXXSOLDuRIdGjdVvV53grRxfHjOW65YfMA==","signatures":[{"sig":"MEUCIQDz/b47OuDyGCUr5nlABHYOlXeMWumO7eKjeyzWDCXz4gIgZFGpE4rL/7+3FbBk7yaaeC3tefHy+Z70FhZVlBa7siE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62435620,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3hEVCRA9TVsSAnZWagAAuZ4QAIqAf+kxQqb+r8DHj3hk\n/X7Emjms3bz3eK3WpXx8uOI+zYUnfRcf1rEMroA5on1/tbgMEJeXhoITGsJ2\naaet40klMngPfPaUgQyiKndzVPalWPAHxghLvZjDCMzTGUMc6IYPp726S1Ak\n2TTW2qLNPgqGbOkVtrBz13srUbnA6LVKcOnkjoUQXzqsPq6ycLkqhZyCO8sY\nCx9GQIzvE9/0E3ZtiCd7+mSWqeN4CSIZA2XgQdMb49RZbHCDNTrYZv8MLg05\n6rdgej4RpcYK60yAlMudQwdDwu2/4No0gmVY2VwBp/Kx/cUyO3L6wUem5UsP\na+gkAdnQPbhd6pr7p+iOeku71WEIsclkJSOU/PzRoeORrqRk1bDQ62bACNFD\ntLdROmtTU6gFhHW340WH66vN5f829TSev7jAvuvbyFEEhqupmpcX9VBqg23v\nsefddWmeuiA6J+GNeZis+C06x6VvhWYWwShF0bEHqHafg/keIPbncUJ9pHYu\nlY670xJ0Hwd26rCRBKZiHU6/Db6TDKmnH6ZjFbJsrMLRS+LMdfWDUEe4nAda\nRpPmFqa4jy7IoxHL5sD/Sb2mUg0z3K+lWuEbRDHXkd6tmzknI8Yl6A+qqmm1\nrh0AlH4EA/xeZoiuZd4HOiV4MWfZOZmJ4uKR/nnyrzECcuhbYRt2VcC3Qztb\nkzsi\r\n=7aPD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-beta_1625166100800_0.7679433207932249","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210702":{"name":"typescript","version":"4.4.0-dev.20210702","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210702","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e3fdf60071baf2f5e9a7603707afff7f993bd7a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210702.tgz","fileCount":175,"integrity":"sha512-M6rwczCm6X/0exbCYxki+Xe2+Kvn2aLeAPUE8n7EuuB3ul0ag2NnUlqG9NQAu97kT4oKwPemtQcbMkthtj2vBg==","signatures":[{"sig":"MEUCIQDhgGFSQx8KHHEfCZy0dkVz1mKu2LMcuQsXdI50d3yugwIgTpBdLUjhF0s9P+mBHplmWszKpgto1S34W2StY147d1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62439124,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg3rysCRA9TVsSAnZWagAAzHwQAIprEQTUPSkITombue2Z\nupFWdz2rYIPsdhxnTtmMq8XPH1IG0UfkEOCV5WOpavomh2l+3pC4wNmT1bcb\nlH1hvlefw3W3ZrWObXKAcfZtmHMmWhuv9wZwDqFGtM8CkXJ5aGu+sUHjm2IB\njpX7us6UFCOD/x/Qb0KO6aJdjaKqrL6tkIPbmqz+/0sTpcqykA7FliuICinc\nV5xu0w0GgRn+nxWhEpbFCnF3HGs6sFD1M95xq6VKMSo3Aib8TahnbcRWzOro\nipXykC5B/NfdwXKItkXeN8S2PwCIDlwCrgwMT1iMy/1DJ8KfSuQPFTAi/qKO\nmMrDySNipnK4jn3MH647D7zm1EsZU2R7iW06EcBasNlXCXD5x+8LB73YMi0h\nZjowLIcBVh4d/fysVI559GEA6+zmFQlnVcfFb7eONlxhecIE9dqDgxXeYuQw\nEiu6lqWSAI6lAlpO/tUHLh0zsuKIVBZuSBmV4gMe7oUoPTz3w/b487UzmbkK\nCZwKkRcWrGriP9aAN/XTnqgeJZS+98QhW827Qzsx6ZIbxwXhgzUxa/cdpe82\n8uGqVqQOp+wF05TZbiDxfPWHxIoBB9U/7/no7sZAFB/ZJewkKyWRnUWm1siP\nQMyEw2QMQVMrC/VWJd0qM96ufb8oMKPTjeIJRRCM7C/CAkCbE6yirep1NZR8\nxcvi\r\n=hFvT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"62f9155a9d3c734854f3340e2b74fb799bf407fe","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210702_1625210027303_0.11977846569197359","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210704":{"name":"typescript","version":"4.4.0-dev.20210704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210704","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9165faeb783179080212572b60417d12df5f043a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210704.tgz","fileCount":175,"integrity":"sha512-5Z/frymux4gcEWlBxBtxDNAXDezbwKEXue9ZPOG1mL/6fqanC88qRuf7SRP8QzJNR8i9fSSj5AD+dwsDt3XKCQ==","signatures":[{"sig":"MEUCIFQ0f6OfWscmSyFWyYt5pXZ0UPnrUlAVB8VbT+iIIZp4AiEAr0IOJjSTxIBy3K0hvXcITMrLQRORjb2zd8R52d2Sc0E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62439354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg4WA1CRA9TVsSAnZWagAAUCYP/Rk+gbLkRlPfVdQ7mTMF\nTbOSo31MmJiECQriS25Bc47kHO643OyReceEuo7eg8cIHlblGeLRjWirIDkn\nKRPAd0dm8Sl/piWtOP23R+rxRscqgY67NoVQLFBcmHP4xfTfFNXHrCS1cG6C\nr/bw0zvqzivk08aaAph4HNB+ZptBISNR7gUcwQ85IQBk7ddy5sIbuj85FckC\nJMTdls/qzJcjcw80slCcimx4n6GATdDNlgkBKgwzE/H+rATr1uonRLBb/LvP\no4/497ABzH/weo4m5aSXo9odohNLImstUT2YWDCkY2thxtgKh7y47NeCv+Iq\n2sC00A9YQe7QUBELRHFDEV9J/MrFSp1PonFdFKdbWtN1PgjEYY07LZy41QBa\n7R3Z/8TL094c5EstwnMLjUrnb/A6c5leAY/LqK37lKrONV2rmFU0AaNUxfGk\nLuPX3OkNzk1qK3GgjcwP7H/Un6g4YfPPVmMG1lrlfCZ/ZDNUZsTDchmbKO7z\ncAyvaqPRvYrKgA4y9rNw7pCKj3BkYpWP+BwtizfOi0pmNH6V2sMRRp1mWSDW\niZDJpli5rBPrJ60tsYh2Wx3QPE+5o9sdQ4wmOp8NrTDdUtgU9ziNnj6Ix43H\nemZ70a58UKnE7fbRI5xw5+8dVF4KjJm1y0MYxG0u9pmy77szt2TjbRB0hSeK\np2ss\r\n=ZqYa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b539c9a0c37f611150136c3862ab72799109064f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210704_1625382964882_0.5015943944766341","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210705":{"name":"typescript","version":"4.4.0-dev.20210705","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210705","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c0b056879ce92294846a3df3dcfdf6a3290b24a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210705.tgz","fileCount":175,"integrity":"sha512-s3TmUrDUw3pnZgNCMnMngYBfZgWbLnF69JlYLxuv9sUCW9pjit/5Ncr/4BcjaW3qx203wLf9mVlWE/vdGpYwcg==","signatures":[{"sig":"MEYCIQDD9rSQLmDrCJlkp34iZyJOZxTXzh5h7MXu9G3JzKaQ6gIhAOr+7Z6BXYm7UiYktFiQxNE8N99yZVCGquUPMvrkYk2o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62439354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg4rGWCRA9TVsSAnZWagAAfhgQAIQaP/OfqWv6SzkhicNL\nDEl1CneZLMzohmpf5RZwQhSptmn3EjK0HJ8eolF/E5b013l5zkTGLDBFS0tk\nhrOI6GuRkLP1u/dx65RHfjOdzK05BxBgGvw29TU6H+c1U4ZQaxRUfFyzyL3l\n1lp/0zMuVJd9F7N9Zr2kXvtFAYzeclV8pw2r9BBsXWZM0TNcofZyyS5uFHgF\nZLht917uvwHhMgEOd1C2JZTTQ/948N3SXSv/XRUWnI5WTgFtoxB/RBTY5lzl\nLd32cLcb/tv0xODyZY9HZ5Fo+rv7yKgJNXM1q45zvdiwaZ1KQ+1+XqaQ04Br\nCP/ImCl5m8WqQjJ4qTrPe/ni44s6t1PZ51saOy+wWk2UCgPS7r4GoPf7b/Pf\n1ndBb3vkrT+gxLth/A0D9xBHHgvcsZ4aZjmrd7ozcTbF7r9jVQElDzvJOjop\nTGjab/7gKizEQR95jIOYhfwP2TzJP8B2WyrQBP0CARV8WRWC+B/Gam1+8g8g\nz3FfzkSn+JudRz6F5xRcEWJGfnNWuI96zGHRIzfjzFZIyNJ72LVO9+FlRB/X\nfavuroZrZ0fCE7yb06+CcbrpRq521K8yk7MWbxInXIIE5Y+XOWYcp/G79heJ\nQ64xUQFL3xkEtURTmLmJFdtxKGOxEoLHY/TYuFuGTtc4qrmB5zze7IrT88SA\nVWhJ\r\n=3nCo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f58a662950229900e14472063b3a5312fd61b8e4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210705_1625469333983_0.18775193230661413","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210706":{"name":"typescript","version":"4.4.0-dev.20210706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210706","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"94a04e263c7d1b204e349ad71a0991cc7c383d3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210706.tgz","fileCount":175,"integrity":"sha512-cNLZuoNNIzp5ajwxG/6fY3reXpClvdLEnimteSGmcy2OQBqirMBKDL1c0gf+KwHcMJ77HysWVkhTXGoZm881OA==","signatures":[{"sig":"MEUCIQCWeSSG0pApzqeScUSxSgcAvqJdIY0iuYlkosRwDi7EQwIgZE9M6p3sKhnUq+YWmVQzUrNRcwzCTCxSRZLWUHxXLGA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62439354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5AMtCRA9TVsSAnZWagAA+84P/0pzvR8/sgrqJ3B3Jx4a\nHIElQvsm7RYaB5J25O8I1rXwvizuU2UHKADHOrzv0R2FDa8fLjP4gP275kZZ\nl8hTWJKSwk/TrV9xTW2/ErAraowumCwgN5X7HsJ7m0aA/ZbgE72YeT73PQVm\ndb74VjIYcKX/OsE9ueECM9QsKLD7kTovh/SydMobZsQ/xKE/1w7KD46yPBW0\n03cz5S3V7W4f/pAolXWzACyoLziWkBWwNDe5dcRwWnF38JyKMN31oZwtVZHd\nMnNYdeUd4o4OGknS98iFbL8cmlLX2Zue7rWs2ZPFnSmaqrluEcw6Zd/1WAuE\nLr6KfgA3erXBKnXyYrqfUGzDomBTp7qMe+CMkwaW8QMjqr9WL/JjI1Xl4QRP\n2rqXeE55FwCvIDysIpuIcQ1bFk/r0snTSGtTrqaH4SinhvDkvA0mgh0kXorC\nCWQHy9yX3aEej5dm+dG+Ykc1g00ZURZV6qcH3bvzh6GEv71tOZIN6q2A9lpL\nxTH/+RlMLMH6D8IvqD7Fyy/a0Drw+QJJdL6My5XQya5mt0pyhqWgkF5S/qRe\nnuUTR4rquE5sCyOuloytHjLCXAkH++Hv6ee9+8PTHsyUx/+CjsWtyOny78xY\n7LuHINHf39gFvONYWnKyjQ5IYE1QY9j/3trdGa0P1kI9EPCQsqFm03aDQH4V\nu7EZ\r\n=2IRa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f58a662950229900e14472063b3a5312fd61b8e4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210706_1625555756344_0.3581020391932501","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210707":{"name":"typescript","version":"4.4.0-dev.20210707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210707","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d4673f0e6e8bdb672f68b8a7b0ea3dc8851e844b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210707.tgz","fileCount":175,"integrity":"sha512-9TUj0DFOChKsftdRqeSdhuSa0m/POKDguX3Xw/7fMUftdbQPS0d1dmuN5bTXl4bQPESzBrNW+yBPnFxM1Kfhqw==","signatures":[{"sig":"MEYCIQDFWpowptT0cOMCL8PAMIox+W31JdMZS5zsdxT5o/Mw7AIhAO0FQfn1nISY2088LTYjyeWMveHEIR3+3YSBEHGqlSPH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62439186,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5VSzCRA9TVsSAnZWagAA5MgP/3O1Mm86+HbVLa/8Zk/a\nGJ70SxPwVWYXOkzhR17ePf5wfa6gG3JkyZ7Y1yXUYbZT0N61fKiYnLrReZ4V\nJyuM4KNZymek8TyL9LtmxSK4cl3sldwOYaMJDMXdsbATzX8YgQwE131epJb2\nVWw1YGVs2dFsfVIKi7Pp81691b8qPA0khyF4BluORZd6cpt1Spo0vPwsbEDL\nODduXBAt35R8NuxDzsXGpJ+M8Lh1jmTeCyHHmbry2PfpC4TiL8LPufC9jrTw\nWxbn/EfhV4lQrJbwR9nZiQfnPdgKWrOH2IeGD/yYE2nnPQ9PF5bEenZJgkfW\nDo0ktQark4AZDSDiFe9XH4awGFdbRcm8G58+3zNVLbVSzDYVVe1kIM6JCMoJ\nCTGtWylSyPcaBHcEpdY8gFhbzeh6fB1tWzm2E3gADxTFKdJoBH1IqhsFNLbt\nRP6JsgXgxZoPZlKNsSCuHlqtrO0mx7XwFWjeTpjMEfqdP4nDbeJ0LxQef9mH\ntw8R9ST+4X1Bm+dMc2DZC3fnER1YZsZcklbrYjIXAR1WnFZwFHrmN16rh0H/\nI0t9Opya1lwt2B5zmKHq90sQ3BzkhuZBqxo7aE7gMyaPg4QUtcg26vdf5m4w\nNntpwTvJBm5SWo63VV687Y1mu83hTaSUQkTvVXuSuPuekyal2rtLrblN83dD\naamX\r\n=J1nc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1de29af70922dc38218936f8acd246a94207acc1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210707_1625642162252_0.84226395337334","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210708":{"name":"typescript","version":"4.4.0-dev.20210708","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210708","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0043aa6d3b81c111c6215477a31774b5a864e7e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210708.tgz","fileCount":175,"integrity":"sha512-jGNamsvrU8F8KjMawCauI7bQeUPKYdyIp4yiEsKv8Uk1gt494FN09wgtH9wbbT0qK7a7lel7A/N/DodpPWK/6Q==","signatures":[{"sig":"MEUCIASB+8xOfC6lsN88+h4TsX0iV4cPCkgB2PPPioTFfN03AiEAv9WVPLzTDoB205lLg52X1tnbw4RBdC3TZfuXBNfaAPo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62437388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5qYKCRA9TVsSAnZWagAAL2QQAILQ7NWyd/LuAREAyQP9\nwp/WGt1wK0ue8YK5j4kQRjwxccTUmuwDoS9qjkTSgBm8paCeOt4EujhH3CD7\nhEc/sKTaAKFthym7w7z263ewikCH4XjrG2zbtt15hM4NmziIAsSgE0Jikege\njV2RzoOtaZdp7xDsiVqXBIWyVwOJFt6/GKscpUc57Qnw1x45V5T8eN1vUSpn\nOejZNXhywZAhUWpv95837bdhCLELNIJ9IlfFQAae6/nEXcuXpaZlzLiaSsoA\nMZwHNRh/SzhpUK32nwjqlLEhUwIeVaH5wJXGrAl1uTrQwEPAbO5ki70ipCYl\n7p6ikwpyvjHVWtXERL+KQL1oXfwKgdfgvJtKW+L9UXkWm9xlqtg3fOuWLCES\nZdBduaYWZWyGkuYFI2ZSt2gi/sSry0j3RqFOFvevhoN6KKr2Z5J7Cg9bctvO\nODPKXFsMpKMslHN2jUWk4io3p9ajUYQI00bHoPjlbkEnGwLNj/5EtfDJ3yQZ\n65eKiB+9IGglWiP+O03c2n7vLAXq1POJIBdjC73tlJLHaeaKlEZdZjqVPh/7\nx0+apY28F8RaQSXRM1nns2aSJ0EC3WnEVCRt5Vpq2l/jX5rUAm5Yu6F5zqH2\nc2aj8zzDGbj2yMi5RHmcObf9OLXbad+wxlPitIfx+y6izufx3k7Gam0PsZD2\nZ7w7\r\n=Cg9F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2f3cd38121efe0693591f8fd59cd57534ef3d529","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210708_1625728522033_0.46890123051188537","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210709":{"name":"typescript","version":"4.4.0-dev.20210709","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210709","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1744f92e64e1821fcdf1606fa0812d485192ba3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210709.tgz","fileCount":175,"integrity":"sha512-MQpbXilLwJc94+tEK0Ah+y2anG05bW7+uvsDi77yZKiL6dHCu8cwUNc1TfM3DRs/bomDsU8wz41mAQGxnxYddQ==","signatures":[{"sig":"MEUCIQDnLpwII1k+bWqnzJLFIhrEp7mDFo0cJxoyKy7N2tPzNwIgIxjD3ru8mrnoFNQi62/dctkpDmS16x/x9wXqfqXZQVg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62442632,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg5/efCRA9TVsSAnZWagAAiKcP/1P2cdmhsEjRmCOojkRM\nVmOQ6QJ1PcuRa0giVhMoozq17ayHp0z5ZCyJZFBLB/wTHe6u1SK+qkd2aQTp\nszOHy9czyiJF9KzZncWMcgWS1zKBWZm7lXPA5jPrD4jkWigSxHMYjESBtTjN\nrElWZU+M23vRmexixO3SED96oeQLW2WAWz8Rii+VA/vgvf9ok7JC0bk5D0vU\n5hJpLHyoxRztDALICw7KmiPKc18AKNGlPpRG3Nv5jQlTRK+c6FoFEYAgbHrI\n0uQw5nnmcs721GpkKWknS34XEAMol3Rqi28Y1CKQwh2RoQ7ELx7W1k4GqAU2\n9Ns/F8N7rD5r2xyom1miy5/skYqjDVA8MJNwUP3cIIM+9XTIi7rIqicxDiBH\nPutU71xt7lWNoq16ihbqRK5gOSyXcIWHMn1MHQ67o2EmTIL3easS+x2Jahuh\nXeoWPuCuHsQQvxq3FFgTi8pvb7nB4cD6kd4twQvNAhZgyVR0RHubCToufKL0\ng0OcXS/tgZoRFeJcKgdd5nMvIgCbXf/FlCUD+QtqUVpV/VwipamVwjdh/MFO\nTicM9rIrmWS3OfJTjepnB3R8fYclI4DeinuC7pHVj4jktZCvFxA7wpWH2GxK\nledFdgzLC0xssJHJ3qUDoN2osl40in3X02wy/uxB1yjRLYUn8T7LPtt/26TW\nak4x\r\n=nFOB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8e795108eb0d35b36048ee1b0e55ca154a72a5ea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210709_1625814942477_0.3095197475815328","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210710":{"name":"typescript","version":"4.4.0-dev.20210710","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210710","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"54daa54841cbfe48e384db9fac89048f6398642a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210710.tgz","fileCount":175,"integrity":"sha512-Ddv3L4dKRcHiX3UmZYqf3i/hy9b5bb1DFS18CG4NKzyYKpdomMpAKaRgudq50qfAPWBUAOyaDswkMbx9Lnfw6Q==","signatures":[{"sig":"MEUCIQDMsvN566y3SqakpcAWPcc3JpsamEx344bw35X69hX4XQIgD8PKtR4Z/FSKEDk8jFBPLfrXa4duqx6sW45423fid7w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62442632,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6UimCRA9TVsSAnZWagAAdQsP/Asb0FRVME7bOSHiu98e\n4KHs660c5xdceT2rCuGGS73Cpxqe3PcOh+CmptXqQKW4Ox2FP2HZwrylTgxf\nvb5xKCv9Dzgpb8UIen0QALtOTAxgio59olt7evRpC+g/wx+GwOutoPuhhTCn\neoOn1rsoQJDqLWw4Cv15sJKwW8J55/ZgmfC/8fH24xPFGMmvHpp61T1x3SLB\nYWx2WZuJwdIPMIA3zsmC2JzmMm3MZ6F5N/sN1B3pOMn4eFtkK4Adbgy7SLua\nlP7/Smy9yeCqVJudJ36IccjgoKrVsglKwa3gjC5rO9JxK04baNvdgLInfY55\nIvGiQzTs+6PscainBgruaxTe9T4kBMsK5ypDx8A3iuywf2jPIeR5/7Rqnib0\nZAmPuf3YiptE6sRB3HOe01QHIH0AdhOpHcQEfMOOzYiN5c2oz+KN58G3g6x3\nXkTYrxUaaoEXeE7jeUUEEuFOLbqPIUfV2Ij0f73mUxp+9daAhGW6/cwDjNhe\nPuPF7nTeBhErPeHwkwYlITSFc325LSDFT4N+xA2cZRlyNk+XfZQjnTmp94Np\nUDKnSaR3+A0cPuKO08cCRbfimc8VLG0cHyBVAYcKUw0O/OE6ZcwGsAV5yaDO\nJk/OI5bxpOdkHsqHuCZd/T4NXz09XVh/US/tqtlALSqrAGNc2TTuq59hkqov\ncF1z\r\n=rhSv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6ee8154b2b1408cad4f2ec94205110882d860006","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210710_1625901221103_0.8417881633031294","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210711":{"name":"typescript","version":"4.4.0-dev.20210711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210711","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9678849820b91b59ccddd3c0e1fd900ac26c9cf9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210711.tgz","fileCount":175,"integrity":"sha512-QCPsZ5O+q40c5BkAhFu1By7zDndDDkdUZPEq7zHwBG2rLLYZloZpppighyrpd1IbdRzitY9WDHMjJ8ft+Au8Yw==","signatures":[{"sig":"MEUCIQDXj6RBDp+s/KtYJn57mCH8vS0CUui7rmVlTJNLd36y+wIgSZziwXuVegjEkfD14rfTR+wurNrY3mQikGVAUmoJv4I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62472833,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6ptDCRA9TVsSAnZWagAAA5YP/Rv1QOIhYJW3fJdcGwqA\ncf0fmCIX5NKakqW6bkWwwi7X4/s3NOknOqsAQjUstkn6D2mMidVpgXxEb00f\nTsj+JvbYaU9bogongbnnCWRCMo4MC4V+n90yJqtK1aChmpYFqMiNBy1/G977\n4bOVF5ocrUzxqemYoYc66BMWYMB6j3q60KDurmTbuBd9/k8Z40XvRXu535GM\nTQHDLRxUCTvZqwWZV/v8M3zXTHa7DQ9H2DkQvcdeJb9swpH6lpRirgbE+DK2\nVpJubscnPbSj1nGL0ESx13UKgDBK1cSMpyZa58Uk7j6fIguv9bG6Gky6c1vz\nEeJb2W54uReG++OApsqkUyHBRJG0BfZ/w2oPwF5RcPeUKBSKxZaU6M76QjFj\n70Nz57TO5pFPXtAVBfrgSRj3ZrOPvtD7+UTGCrvicj0teC3OFCV4Cwgm5Urh\nYvSnnPLHrLxOzrvrM9kMsF5Z1nhX34C42k2R9d4+gnZR8FK1PKxZIwQph1Dc\nmA4covlb8wmkSf3GJCH60l0Zs0FuImGBP9LRvJnpO7PGNKGmbQKaVrUnprTQ\nOAeeGwjrC5Cs/bHg3WTVQJL5/0pnq8EeI1o43lC5pAjYfX9O7qtg+DKzRBFX\n6chqXklNPnEhm1ytr+v96eKW0C/kXy9lsDFd6KHpGyeo0WV6AOawMq0Svh3d\nn2lf\r\n=Qajs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"66c3063b06c1a8efb8d25d99db6426478b7dff79","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210711_1625987907213_0.40971920201589507","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210712":{"name":"typescript","version":"4.4.0-dev.20210712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210712","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"87d9f9452bcb70a8d357f8a1b8c749fc809b202b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210712.tgz","fileCount":175,"integrity":"sha512-Xrg0x8qrW9MCu2HmDHzBL9vTtlT+rEkp5l19ceZR5zMgHQIBWisxiB0/0tlESK0ZPsk7tN6Y/zr3pqSY6DTOAA==","signatures":[{"sig":"MEQCIDNuGOc94eldPw2Xxv+fws9GDYlak650lrLYXjNlcf+1AiBi3RCmfN7n0teRG/Sm9V7BQpCHlFjUUc3FIcpKRrTj/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62474411,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6+vBCRA9TVsSAnZWagAANl0P/1e3i73VbNpLQO/etc0J\nBCUiFaubXDHnp599mOHZ/8xaWxCU2mlT3HarkVJh7I5Fp+T0vQy+vtHKAp0n\nSYqhHEGfbNvvKByK0t3JjEVPra9NkaUBc6eJ+RC7M/gxRwTEBcME7bCSvikp\n3QglBpQikai0IYlYvCTW+dsllXDj8MpyOOJs26l5tmWPDqYp0rX07oGwkPD+\nj8IPHysljalfwaAv7/SHT7s5Ox2K5tpr7EXUPe3tezN2n9wXqnShakortsvk\nfwdN03yh/i8pjQFaQJKsZz7M4z8fQQ3KrL1H27MhBz43BwRDrQJrWf0oueq3\n33waV2f03GqDLe6RTKi+osq0TRctgN/2U8mWzhVNiQIitJ3VhIkXQGnMOplq\nJengO+qhprJe58VmYuU7/opB9ajUZ7oNXyDiMtB3olUaPWXKsAta3y7hXKW8\nvz/M+Fom8f+wmHcbaQupOwUCaKIzbp7aXTidhwVzdHWwu2vu4+zbxxEI7dDY\nPbDw5DAwZiTSR6LKcRUYVjYNLtkegJsu0RlMVq/aIKHFZGiiRK/YZ9T4QjH+\n7kN+dJQrrPQ93m1SyYp7sdhJBl1FRFXlopftRN55LM2n9plv8qo5KdJNTmHj\nI1WmDBfrYuW/qsjdkFskr0fPjuP4QepkHgyVr4vVNy+FBqSJmun5ni0I2lgl\nP6ow\r\n=UehD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ed6007d316c2979fc490051e4a8104aedd7a9fb0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210712_1626074048518_0.6084413167831761","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210713":{"name":"typescript","version":"4.4.0-dev.20210713","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210713","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"80e5d4c550e464e6aad8c0e2aa4cf42d67ce549d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210713.tgz","fileCount":175,"integrity":"sha512-Z8zYMhAwLa7mpc3LP3Z+fOTmXsRqkvgepB+dEg08g9tI9B+kR0izmPZOlcfBN7GlyxmZe5qpnnGmkhxZeHxa3g==","signatures":[{"sig":"MEYCIQCQqrh/5iqZmt/eG5z5r3nmHkpHInsHXNX+fRv3+49MZwIhAL645C0Nv7ax+4Ma/Msjajh1i5/PAfzCBEvjbVyyZhWd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62505116,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg7T2jCRA9TVsSAnZWagAAfQkQAJVoEFbQOz3olyHBN0C4\n05ndieXvOa+UPWYYTlkz0O6f05iLNJ/bPD0QSomTZnmamdGeazFNKEfwvttJ\nU+Dzn5fMaRXfXa2DxjxEXPHS34u8XXgMmNC44IRe2FmaUAE3dLOKDpIUDiWO\nVTS+hMU0v8HjRfTCIRRBahpPGrJ40um+AcaKDRKNUcmDXPVyK5iS8S9eO9yQ\nu2HVkDAVQ9dcGkpjBKtE2ahJbD5sy1CvEfuJZ4Y+aF8i1xRyvoqWlHsuUEQd\nfqgGqkOh1mePS/Ji9qvm3+Po7BbDrXMHCb9GIXCS0xPSlNOiDxbYasfdi4Xq\nmK0EkfYVvM/ytgOSSt9hTl7EVbC2vYwy48XDnpgj6Uotg+xBuCJuGFTfcCan\natCczoFfSP6H9BiVHWFGvIeCpIDwqNycoEkOmcCYe+2RWOJynFqM2I2nG/Fq\nvCtAcdXsPmFdcmQnAaxpfozCMYa2uI4SHNsTwK7zbGqat+zBQ1nJGpFGpsIw\nnqpghk0+8fkw2ANllwcmUzqTAQncfhhT0Dz3NtjhDIPmD2k3sAveOTG8E/wn\nfoqLrJqljdD09jKk1d96+WnfceCRmCrZbiafi339rM/dRGn/L1eePg46BszY\nxGS0qNI5fY1SyN4KZmJ3HqdZwZNukoT+3F+NqURW1LOo80pnDXPJWhyBq4lK\n4KZ5\r\n=cKRF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c17fd8c479c58795253b25e7272ae9072d68a9a5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210713_1626160546404_0.06873630609999126","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210714":{"name":"typescript","version":"4.4.0-dev.20210714","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210714","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9e3a7ca6266b866f0a46b34ac8b11e38c20e2ec5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210714.tgz","fileCount":175,"integrity":"sha512-DLbv1uDsao7YphFJ6sm+gFd3iuNNj0SynJPuxD1MKM7hqPxKc8vSQHej/Va2k8fl27RTxB2KxxeZo0SoqszDpg==","signatures":[{"sig":"MEUCIQDZ4m8DlupMQDYQwc8kiHh1Z092PgJ2q/h60CkK19V+kQIgZxc2LPebFSbiHZDWZ4PZ8m8C7CjCBGzvKtw+9mcAwxc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62504822,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg7o96CRA9TVsSAnZWagAAubMP/1DQj/o0UxuM8tcl8t+A\nqorC0FZv2RqvCyiiQbzXCLR+56IDW47qZUVIYcIzLce+fW2n97MKcQUu0Zqk\nZwOzXXCBRLNvRLAs+Sfvm/XZnSlve+Ax/9F0yIYt85TR4ygzyLddDOmSxuS3\noKxvaTk5ZWgCtTMHFozfJYtjB4jyyiWnCWJAQwVwFP1MCrVlfOWT9JPhjMxv\nrax92Bwd0M0cAC3vTx0J70eR/fpftgTUaGbFuS/xds3GAHzDm3eSxc2rUu8X\njVruqs0zlXvTtZLPRqSa7nepSiht6Wl8aTcqnavW65y2gEmm9KsG11ZzBJ6v\nE6ZSAYsDwjrX/CxepqibnVVRPQC7a9hXKrL92TuspoVdOwV6WRbcA1odCKc7\nK5kVfcXCw8u6aPny2a+xfdgFLkRjrVr0KJTuNEoF/McyZ46fs5lsffuLQX72\nlWQi4qMmSaPqjpHjVZG536ItmHxYPD5r3PwUO0CZTdDBXKBsw/cS0UHs1Ws8\nwu+l23GmQ7pu8Djt6NYL5AV9p9XAIij97cDfMsYWRMf59IHdCfdVS7UdVPdi\nzlCFYqukULOxRftNFBDOPg/HS2jHwH9uFr8eaIUFR4QUbQiXoXMAMPqu+max\niVah2UlCjfTR/AsEArzkWEtR6on2UjBFTJ2E7Rriq68Tcyzr729XuRUZdgry\nw9oi\r\n=9S0e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9247ef115e617805983740ba795d7a8164babf89","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210714_1626247033509_0.9582111310644894","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210715":{"name":"typescript","version":"4.4.0-dev.20210715","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210715","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"62f9fb498ac5cad069bcf2ecf9d2e62db05135f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210715.tgz","fileCount":175,"integrity":"sha512-qPq7CXLSmlFrteddmO/gRe49/TLlmhWK4HSR/pOqLlQC2Linp2SPaluk2ul7NwP3UI4rcdb4pvVKqN/nhBRsnA==","signatures":[{"sig":"MEQCIDGvs9BupEqhfzg56TqONBJiNVYc/XYtH4wDJNd3I54VAiACmjpEWUVUcOs+onkC1kwK8v++KTfRf/JR6UdpFcuH8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62567263,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg7+AdCRA9TVsSAnZWagAAqakP/j3RQCuMa+1CKB2hrFrJ\n/Hj0kf0ZjayMWBfYorA9MErs0sv+dMoRm1Y0DXfGPUZW4thJxaaxuixF/Mq+\nXe52Xu506ozy2cV+3LuE6DmiwQuJeviN26rSni4McDIYeC2qZMVilasMAb62\nhbkjjBT4oZLSXJxBFeuR7DiwUWYUb5VPhpqNzEiqN3Ox6cnZR/mm6RW6KDkk\nxXEpURPom3LFnvt9xSa8zdNoJF53chDC3R7sA7nvXhnTJAsvT3lhb5OsT260\ncr6tvSPnZPszVRDG+/yqSupe1omu+iwlBThrUhlgMGoxOSov8RDr67YTJxPD\nxyl3mBfKf9tL1/oRyaKwvV5anxo2NRf3ey+ChJLVugpMRUqqJKTfM4Gg9XPv\nHobQy1/o1YxVYUzTMEkK18eO6L5T1JnKQZdyOpjet31VoCYt6q2ysUVTzNZQ\nnXycjGbXTisfLOZYthAON7SbnRb2/fbJ2os3PZlh/3hafrLrb6iCU7wwT3K6\n6s5Fkgl7wDY6xqny7bKNCWb37w3C7pcO4npb2D/edLI6Z5s8CbE2ZluJ/lgt\nh2vaaQerPcpcl/hUXVzco1IrwfOF0YZz5PbHzmwXL/bopR6uSv3AGDLUfiTI\nytDhFTG/DB+hIWSCvFIagFZ9SABH7uNpNc6F1v1aydAgTZwKDDO4nr0f6zlj\n6Vzv\r\n=6NfA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"541e553163bb79fba64fdfd7c8a2c96f201c3b0a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.12","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210715_1626333213059_0.758924268367329","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210716":{"name":"typescript","version":"4.4.0-dev.20210716","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210716","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"53769a16d09023f9c36a997cc248c192e0b16b04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210716.tgz","fileCount":175,"integrity":"sha512-HhBC7VaRxaYDGDGUOL5NOKtK1jrkJfu0ATyFXxCaC+38ed9jiN/tdfS5kbaZ41fXPsFYq9QuoDcEzZRDLstpjw==","signatures":[{"sig":"MEUCIQCUYj/dS73bVn4LjGvxHv3D3huXa3D5FV20kvgcd5HfUQIgPSCexbgaKB7xhtEkIg55RXj5J5OdFz4sBCh5GpBwHYo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62582821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8TG5CRA9TVsSAnZWagAAX9YP/1DiFJBTqy/Vjslabm7H\n2IXFQ6fFO/s+YBlWEYyXjct5gHyxikLMLku7uDZjfV3VuW4tWFmddhJKi7Zs\nO72GPN3UXjoK2Lmx8I81yluPqEYXXYhbzZQn3rtbKSfbnU6nbKt1z5lpgRqY\nGCQGI0ixumNpuEv6X6Y1TgHv1HsETWUpv2ZXrNg4fFbiP4nYEYqpYrUH//SX\nWCoyX/efBST/TXeodlbS4gI4H9zaK4g8mpMzS/cjLJHO3wSvxVut8W7OZNZ9\n0rTUPsiTDiVx8wudL6mwgB7FDsKGUZNIAI1bN0EiW7H0bFMVxfyK7us4S6Uq\nfKYfGnZeeIpTgULvgoGhz4ky5foVxk/MAqgdGfHOP0sWB/7G1OsCc9A+51Q1\nEo6fqjq5DZjvYk0rjJn+CMMbKBkh97Pnz/gYqeNj6J5qs7KGixzvs/9ikUjJ\niXurEjfLXZaRR7Kl/8lPj1arFcaR6s8iv7WL6I14/KKsIfMkUByQKF3D9DFb\nQtanWujTQDGA2oFARdOimrTpAIleqwlw++3GEFFK+rnXNz+0gGMYIGjBgEw2\ndsdUdfqogseF4s5NHYNcvPz8mfIJlUzSMBnWeuEQclFJSChREDYrSuB0DLdK\nZ3QNcIzKSC98F2J1nLjtL+bnUk+lz6qRuuwBAYP3nWF1INTGpfya0YFGTllc\nR+sY\r\n=2Mc4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8268f2adecba780c9589355c7117bf6652745068","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210716_1626419641059_0.7884487153082791","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210717":{"name":"typescript","version":"4.4.0-dev.20210717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210717","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"15ae58f45e0fc5bdc1d3be9aab7308500d6fd573","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210717.tgz","fileCount":175,"integrity":"sha512-q7SdsBPHgOmTNF6vPPsQCJDQKxqXY+/MnTDKeNjCz2iVQ6QZkIWoqhvtbKclYlNJOhXZQFCH7NucGy72E/YgnQ==","signatures":[{"sig":"MEQCIDCsS/jfaGUWZfJQPI1B4vIhEHDHSzpKgC1LcrGWVLkeAiA7+alVacSexTd2fkVsm30KeUcmtF928YI5ZukZ0Lf94A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62601925,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8oPkCRA9TVsSAnZWagAAPm8P/1bFXRqG5F+DoQwzzYRh\nkDkvalRPEjhxx9KwgvD764nAKyktA+T5sSSI1U8NSmpJM9OVEZ+EeS2w5xGt\nYSajJE6jHa4KxTpP934F1NpzEnzI5Qobzb2jgtpky1h5/MQN4PnE1BDisldv\nHLzte58rfPM1Mx3S7d8zqOO5dDYzzhDHo1hsL2ZjLOXwMEVuYmNOflaqR1Xh\nXqznmqKC6drRwWFsliCvFDeJmdaVN0iveZrFU6VACzQBAMf/H3VQwnBlnxV9\n58D7t1CJcgSoMjhb8wkg0rgNMJ2pwSzxuxZ9pW4XRBFqRCnAvUhKrZ76y5JB\n99w3bkjX/P/UYlROnr5hMGbhYBorBzzV7e0oZA8zrxZ73zV2i1AC/EDdvfL3\n20a8EueUSUIFacZUwoIKs6FVjyWvgvV0vbaq/CQsVAx7f41QEUJEXHV84iGW\nU0sCUE4ZipZlsB9torApyxgUbwwhPeEjvCgn8pxsKiMA8+5SeRnKb7Hme2bx\nmCxdWuXImipvVSlRHS8qX8vP5QVxC3rjIQ3ksGKIMWeXmZD1bdLBa3FAxB9h\nuZrd2BibiIxJKMj5ycBsp1xxYu4WhkYvK7OClud4psn59T4zexUa1+d6vq9H\n0X6u3tNvB7dmdawyc0lSnt1tFv5Bv228U4t1edDeA3aohq9T1Q0TLZkXndE3\nTGdi\r\n=dUcE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4ca716ceb3d359226c3a03031b88b409d422f406","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210717_1626506212325_0.5991961219593733","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210718":{"name":"typescript","version":"4.4.0-dev.20210718","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210718","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2cb70e505dccb4c509758bbceea1ca3caba83b18","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210718.tgz","fileCount":175,"integrity":"sha512-2p2EmNS0W6nph4A8Ox1JDOXH7PRUBMI5WfucNvTU1Es5L5OfRSSbShQzHU6eHJFxfXW3dK6T6VLbCLeFB5Ejvg==","signatures":[{"sig":"MEUCIQDaF082aiLog4zkY8yHkTzKhWALKoJss3KkcyHk6zE56gIgPHCg6bu3FcKfqqoow7qpnrOzKNiDn6KEfhq8q/uuvGs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62601858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg89XRCRA9TVsSAnZWagAATlYP+wZLnxvbSNGnPB+TMS87\nHJ+bBC0vasIh6sjuF0lMo3aT2XtYop9uQkxDgIR2BvnSFKZzieMJ/bywGn6/\nEnFEE2AzoR1SB4kYV5u0Nv8lklfNh0WaSfWFIeMV9NHu8cNtFrXqql4WAr/8\nFlLTLqnePwv7nN2TRwB8SUECVeTIBAuFjnD9Ca7sjb4A75YjjAIEsw6YeK+i\nJMA+NpokjtmuGf3mvmk3r1ki4M1E2q27SPEq6GJBNKdyRKrwUM7ekcRzq5pw\nmBNL9Ev5CPC2uS7dPFF9uRPK3i8ZfRw2Uh3hm2xkQPIOIz67dchBhls2vE2Q\nmBsp74rtdrPUurww1+9It91NOc00sK8xfPyxTxK3lvHtH4V2jA/wJOXBURPd\n/IJELbxKPRWln5R3EJDCreMT71YaZ/EOivEwrVB9gWVgoNXw1EuxG7ddIYtg\ngXldio6ti1pxc2nj2THOrEkGH36UlwJuLpTm10MHZHkKY0vcZFwR/EId0pc0\nFWb3+iyDBDshnWcPsy14is2lK3/rFECLMqIj7DQLY3cYw727/DNHulgFwfse\nmAUhR7VDdHYQhgads95EjAtxthvQT439KU4qLM33FvASNwiH0A9MrNm/Zhxl\nd6DVA9X00M+1y8Ap9+IBL5+4v/1SCHoN0E+cTxpcSdJPZkIGj9WO8li+YNtc\nNYqD\r\n=xMJz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a84ca309e077aed2c1d9e05793e28ea869c81561","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210718_1626592721222_0.9714688779450027","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210719":{"name":"typescript","version":"4.4.0-dev.20210719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210719","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e8d559ca3d8ab61cd1ac21a2c64f634664edc05d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210719.tgz","fileCount":175,"integrity":"sha512-dPi0te3zlBNIp4D2McbQjt7LyQPthQvPyAJgknLQNoxsVSLpVyG5tO3yINgFgHlK968uD7B/wPLFq82CgOjy8Q==","signatures":[{"sig":"MEQCIGgd1VwCR6Iv4cyWBO3znOsIcwpevumlpfIP8F2z9qNgAiBlCZ9EFBPKGqgkzqWJ2lYF3LSxazdYKCq8SA9ukQwPcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62601842,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg9SbGCRA9TVsSAnZWagAArOIP/2D6aAEm/i+B0P6NTdeX\nk3/nBW8Ax4EjT/ehZtTrzUw34glcd61SojNRFNdZiZ7g18020GSjCh6M0f5i\nOW2l28Smkq70BJEzC/WW9pAmLg1/6waCuBdOsA93DjP0qUIb3QXfhabNj2is\nAAtr0MsU7BQf9ZUFnRYzLpki7HNdiCtVc6X6iqJ/7f6i9JuTtPg7clYaZDqq\nmza92K33aDPr39LV3lFffQApLEtwwpx5cbhqFUhKDC9mSRtBhCUYJmIDwRi0\nVyIlc8O4j0K89VUSTUcGgU+CFjCrWbvyA+5QTNSFlfJRGEMsoCprI1Fdpk7O\n2AxQ262ENm/nqfuTwUc6vSzuwv0DwZBsOzIMNrdwevixMc9jbKUlHV2LTPZl\nlXJ3fJDks5qAL62vt9g1SeVOWIujFblNOhNi6DYoJorKNRtmvE9kpD2gqLCW\njRNj/y54sKDSvaaLHM5VSs5xd27OFLbRq+DFHqkVvWuSnbS5/AqVcCtZ4JFs\n6Kts+JP33BaqB+nucGflaosMPYYYLUdfqCqFA+tjPS+ExYrPp3SvJXHpH9sy\ntKz90hxfV+/hjpX/L/D77k+vvj36naMh4CHlkerIOL2NhI3pivnJn8QpvBBK\natZAN8xxt/1qXNI7NDUUxhVQsIF91LsgMpOWyjoz43oEMUFSNZkbU5Hb4esJ\naj1R\r\n=uuHC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ddbd829ea14d5a40152f6f6a1a693709f9e3c3de","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210719_1626678982234_0.189829765848319","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210720":{"name":"typescript","version":"4.4.0-dev.20210720","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210720","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae06b242bb9aeb28990e3a123cf7395805d57755","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210720.tgz","fileCount":175,"integrity":"sha512-JhnfUjRVmaKCkm4B85owbGVjKyBDQHhmXwAywBXaz9D5ojGlZgEESXaBeFhTVOKlcRif5IiKfBSss7r6bnwnyQ==","signatures":[{"sig":"MEYCIQC79QvjTq7gy5PYNlisRZblSdJAkMJ/c0FAA2XdJ3cLHgIhAORq8HAy+NmEz0CAipkEfGiVE05HwxRPgxdSaSjhKFBC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62640139,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg9ngHCRA9TVsSAnZWagAAAQQP/jrGzwzY1ZU4rMfVUgb+\nJVzBhm9esQZ2mDKwOluwCD/t/QdKEZLhqNdcWV988x5b+GVD8hTqxYdaAGcS\nfn2NV06NXZlxmPH3nckFNn0BfzSUTOv+7+rSme3FOcB4zvV7YFjNCy1QQ8Nu\naVVGjPe7OEnldEHbbCHRODV9n5+58KaxL6BHQ8I/T/wxinpbPqXSItTr/1Pg\nk+F5S5XcQ5qSq/YYGJZQD0Y9T1cBUrdz/pW9c3qlPCejfZlutFIa3n4RvRXU\n++6f3cJd88dHvFnN03diNGzwhcPji9wKHz71ILNGWSA2QDDtvKL81erH6thT\nxa2TwfdH/6zpKJJgzLGQFHSE/xzukb8AaYH9zVIVxLOj/I/dkdl8aaLis9WP\noQVWNbU/foEW+/PvFTJs44i8SPmQMMYc8N+9cqg9knnUontDekdo9iDdyWsE\nhhvKNjDVMnV7KN+Xh6kcuYhUDlRR77jD+V5QquaQrUa7C6DdkWjGfTkfzZow\nHslZTqzfZzq+sBsn05Yyeia1o+sJVaK3itqgX+OGv9D4tOSvrM//4en3psRu\nCL3YMKHzQ4IRmfxPIB7YPxN3fwVZMK45YbQDIA2St7eUe0JVRGmbi3upqS7B\nc/btKIUmGoqtTfpwwKpiZAYmSzzWQdRlQ/bZ68NXP6Ktz7dvLos1eFkkcViA\nRoBE\r\n=bujk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"365b25693c6f8417440889bfcb03e30bce1640d0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210720_1626765319538_0.13024663800534242","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210721":{"name":"typescript","version":"4.4.0-dev.20210721","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210721","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"645c55bbbc8d8a3be25450f62f8dad747bee4e3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210721.tgz","fileCount":175,"integrity":"sha512-87k8n+/gtl7tD3gWw8JgdPlMA7ndRUpSOODA7tCnHt/kPMVfjgUGXTyeCOG9NOU6q9fMEllsANfqVsPkR+Fmnw==","signatures":[{"sig":"MEUCIQCoI54+51j7Tdey5zB73Me5XZZHDcK9cHL6HUXRXCxRxwIgMqikBUGwE2EJmnRzkFqk+TC6t1x4Mn6vEv/0wwXlswA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62640377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg98q8CRA9TVsSAnZWagAAc6sP/j2o95yMWmJGFFo1qCaQ\nXxNSZxwn0krdnZo1k7Gfa3YWANV5LQJEHInh2wzZVONJjsvqc6GVLmlcTkal\nnOsvuSTvdUQetFCJCz2TRiGLQvLJu0kXFFOlHltHJHo9+4yT2WbtDneONu7a\nHdi4sQnFMR6QDf9PNIUDDz/IuAGbSrK9AznSg2Qt2QezlVc+MO28Yb7SiGRy\nCiQwsLlzFi+nTAJbVTyXwlXiXe0npmHS4/yZZ8BsdONITvvLNLwTNVtA4LWt\n6GkLKcucFoqvZpuY1cHjUwRCs+KXdM/nTDcwLsVcLlVaR4XtvBGdU0P6Llgm\nwQzpyRKfsMq067JVGxzQnx7rCAAbDdpszA1AMsNbLEBM2AOOYoagXZB2bwBt\n8k+dAQZbUA6XBX4hqStbjVS4eyWd9QOu9mlVkzl7ryZPBc3TnCHdrZ5p4UbH\nOJMJrz2jRYIfbgn4+0i98Jl0MBvzKoJQexV/LjSF/Ykhu4M3CfVOiahf1s7v\nIFRL57Q6opBLAsou43duWyUw7vT/hGx7oDFN7F5FZlxMTvf7y01d5k60FVKN\n6cP4r2s0wt41pQjdCqDDqV68OSHGCCMPKBAkGS7WD1iXTIfaQOD32hAc9ZFI\nXPSHQ42fR90pUH/h1G4DIzXF7S6x9Ir6a0R3xmbcOkRe9OA+ydVvT02TmpGN\nEb3T\r\n=Khl/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1e2c77e728a601b92f18a7823412466fea1be913","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210721_1626852027582_0.6286091095886985","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210722":{"name":"typescript","version":"4.4.0-dev.20210722","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210722","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1245944aa2fa1f46037c1b41e80bdba78cbd94cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210722.tgz","fileCount":175,"integrity":"sha512-Af6At8ZAJXttGt3upZ26fvNzn/xryarRG3d6fv4cyUkhrBXzEM9s25varqcH8rGheqD62Djamtb3CEae4lhx8A==","signatures":[{"sig":"MEUCIFA01wCecnDyALvFAR5USPdz6WIKX4yZ8qd2b/j5I5ExAiEA03O4/dTIN6Ewrf82R5ilEr13k9ArsuVyQjguyiWJf1Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62642249,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+RsRCRA9TVsSAnZWagAAggcP/03RcG3Us8mkhLGlV3ZG\neWq5Z6FnJF2dV2GiB3MYjdMhxsiHVlO8RRd+PtnVv6GuTJBUrIEqmPab6RmW\nFel1FYeQ3A0TEtju5MFcO8EEi0c/Xh2HFkSEltTXhTfLClwwkY9fJLi1xmC7\nw0IEB64glKj4XDZX4A7gEBDpN8UL+L76sMxls3Zd1ii1neSb6GSQXhANESHW\nF5/QiYTU4q+UGPutoYzjPleTbg5UMi2lFMPL0ZigWhdDgpR2/Ir3hxKhQ+Q7\n0KVI5luu2QFFjY1NuDQVAqSBvjG0J0GwyvNzvPWTbrbdXExEtfFza93lKoyz\nnNCjEJqhfibqNECUny9uqgn9cilXgp0rosbA6Prrw924x2SK4M+ptF9ZsUzC\nNgsXPtwBK8MZpNWevwDcmNmKskQUOakvvTrwV2a8bw8aAQBzu3p3km6DE+c4\ns3TJbRPv0msFNIMtae/1RBzj8G1H9sSkAML/XEM+NfWvVHEohIVTPtBpY7aJ\n/MN3f6iSvq0ncxeg6xIVwzOCF9wB5fvvy4KiR4RkiT0f8cLx1iDU+6y17tAM\nVF1FxcsWyusc2UwGDzWcTzZHbhoGVNSafWkRekiSr9nIK1W2YD+zWspxLu85\nU3j8itYUpxELEm/B6HkeFlli010yzf+8EIxL0yKHZpxDugpwAzNRD/Oiq63J\n44S/\r\n=HAwm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7c4c0a396203adb9ce5a989b61a04ac25657246e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210722_1626938128757_0.7239728388102935","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210723":{"name":"typescript","version":"4.4.0-dev.20210723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210723","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8df50843ff345b048781c0c65dcad255bde64373","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210723.tgz","fileCount":175,"integrity":"sha512-2ZnhLfDU0e4Pj0982xwF6FUpsZgQ/YMT5+f4r938zv1Q/KliDh0yKfYj/IcJFBeA+SCpCMPMNrj0c5z01S+6hg==","signatures":[{"sig":"MEUCIQChWSVMfa8tQWjCpanbbDZkJO8KahyiM2jJT6DRAJHbcQIgJZtahmQzqxmhPQUNtFUGAgitgNlhz5k5GKUEUI9QiKk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62642249,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+m0VCRA9TVsSAnZWagAAMWAP/AsJg41245lu1wFUCn3G\nBZS5NHgiR/wGhRHBV7V9SXE4shpPRc1hE62q9wNpjU11jUqDvOIbZoCHpibI\nG+GwRTfdb4CDc7b4RSeA78HtMltrD10y83Pglli84g91nutUWek+8+pZKjrg\nwNyI8KN4NiFkF/E0/Brj5P5sUQqiDQhUF0ZUAVgyKSS79nXsSAmMmuN48t7K\nHlo3q5TdTw560xZ71FZkezQpwL0tdHoI72fQO3G3zVi+5iYaCc65fkJzwFgq\nBkZqqIou6fK9b5/gOTITBQe3X8ooG9kD6qz2rZwiX4lDMN7G2P8U/YgtnkAZ\nQPAzOEx7CHVI87ktd6WGoYhM17/JY5GoyWEJodrJLZ1I/dqi3U4JtnuutbkH\nU7m7dAnHPvDFKPp8thxzj0dvwrN4YtcLTNvsItrd7//zl2Kj7ItwPFm6+yPG\nqxG4yHNq0FLa33aIVW8sUh3XR2IVe6naNJFkQmUlKTW+hfYec4sCkoim+ohO\nhVt4NURY30Q2kJOTa2Vop1akuAH9PheAg5qIk4OMKIKfM5bTvHRfOVA2/Kix\nExhBEDJGnHyw30yenohPzyh6I8M22ZXMF4tK1zqHV/aEA+VEe6V11gFaVe5j\nhQNRFSgmdZ/pYLzS7RJUBMhO0iuSMd7g+ftCCeICOvpT5H3m3s8G4pEruTQu\ngCsV\r\n=+HEj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a947bbb6a97bde3f6f490a40e0f6c04a4923cb2a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210723_1627024660145_0.07748774111421519","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210724":{"name":"typescript","version":"4.4.0-dev.20210724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210724","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"977afbe6af5bd91606c7984cc1ca80b06836e7ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210724.tgz","fileCount":175,"integrity":"sha512-AIH5F4++W2itdYvLfzPLJ+zX0xkDMA2IYOSOOz8AUj6tbfp3jW/ox60ByoUp7FwyAqvWve4xrow7xrcXrdl2pg==","signatures":[{"sig":"MEUCIER1Yk532dwy3M2xLlCZc+GcvS9vOrh1oBVRsbF+VDCHAiEArxGBjmKBLeH2MLnfKOYFx9HHMdTuO8Tr+oCWoVu07pU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62643740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg+76QCRA9TVsSAnZWagAAFAUQAIlR4/Kd1AJ+RiniwYHG\nRThDKAqNaWoaMR7cifDbDYHRrRLVUthQ2jiAw0bxb0p8omnSJWdlGc7OJ+F0\n1o08k289e81twNluoAB4BLYqc56Hz4e8qO2qkBNUVUVZ2Z/1D1sBKMgcsO1P\nlb8quB6XY8awrPdac0odmaxmukbcJmwLGz/LxriJdb6hFxRI8SeHJi0QqXeh\n080OJV/kKGQRyaXyqpsS9GokBdafqByUvmG/RnjOKQ2K/zyzcXaFXLCVGgzn\n2OnrbW8mbhlCm9Gz4C/VwidIvGxMBtFyNhzmefnUkazipAZ2kLRbzGmkKwg4\nps9NUiI4RNQESefmPcRousOJYMCEj9nHr/4a2UvmTvxMhy0XpH88bZmMfFUz\nJMVt7HkdaFDYGDpWEq+3vUslj/yWhjbEj/wTqdrpJWy6KKBX9HwkHyr6GJ9I\nKx7Z+QTPnMux8RFl2wnNfoRspofTlTWfYvFCI/+eBaL93NBL13mIWa7JVjxq\nfJ9dW+haUzm/z7Fa1q743NUWzHUpy9AZIWLEwUAB6Cg85mGC4pUmANJocULz\nZCC0w4rZudBB3EXhmZVscoAtKvjP+0gJcKRYnPskbDVy2QMEctYMnIL/CoXM\nXBoxC2bh9fMaerfME39dSyVhXMA5JqanItJUgsY7M6rdRw5+DuklaTvl8w38\nhlHy\r\n=DL8T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"90e15549fe742c2a74e44387f2d8fab42e324873","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210724_1627111056430_0.909378970987549","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210725":{"name":"typescript","version":"4.4.0-dev.20210725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210725","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"239aa5428bf79390383fc9105e68ba085111d7da","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210725.tgz","fileCount":175,"integrity":"sha512-AmrBH1Mk5plb8WGwNDh5UUoGd6kiEiUF512GTYVF2vV98xjIi9E6BFuBytTYrL7OJBHTUsgEqETFr7G3SAj8+g==","signatures":[{"sig":"MEUCIACBwppbDWrTlfZvPGfwDGJlK3w7P0mKCYryQFU9pP/zAiEAot01TGvKsaxaNBOgTMfKqnfFX8le/foY0gfAlA4LVeg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62643740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/RBfCRA9TVsSAnZWagAA3lMQAI1dxo7EaOVQzsz4AiQr\n3C+L2v2HtouUQ8C9fri09omWjOxfOxZHHV9tj1L09OO/mb6Jusdpv8qgvatg\nvFfSXfz1WqqShnGvnJS02V96V1AfzoksYELh9fgWtqEkMujVjQ3PqZnVfmCM\n0YcZvaD92M+giYrDDp1nRb3Pu9c3gIUpXb0G4jPAjmsnGGE3HqXAiupkUK8g\nZW4SZmsxP6Xz07BDLgKj3t279stOY7W3XrQ655ib1IZwnc6f0oqnC4Nhao/h\nyqv7sQkINVz7IB/Vz7S8sDtnWNWMFtb8HLJm5LE0nos9S1R1A15hFZ4K07w7\nJnDXYozIb0Af4bGk0xvoPi2ZCZQthyNVpJ2DHBspKjSRs4mWqr560FEAljAy\nu7qRsxF2jBBYwey7NwBlKFuyWo44FcsrD076yEmpkUdAaSA4wg0Sx8fSBbSL\nx6KC86/jS/WOn6v8gY6RyZeleIPxOAqlMIbJyor1PLiP3Ab9IBugzEfIwyAU\n9gUszwTLIhaN3FR7p+s98XsjmH0EpS/YaMKgOOIj/foHUtfKFIeyVzknEEFg\nqS8JfFqvRnhRqRy8NTI4NejR5QsE3F+5Rd+t+3mATiZzQeREFJwXLCfd/0Ak\nuUp/+JqWR/92ppSuO55ZLb9W2JOeYz0InsvlJGCvZjM1Fh8zwZh0fsjBpHM1\n3mqn\r\n=FXd4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f449ab1ebce9b8777a20f904aa920679db6b5d60","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210725_1627197534619_0.0796771886711014","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210726":{"name":"typescript","version":"4.4.0-dev.20210726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210726","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4c52cdb6a12bc0d411a22a8c609cf56435e7cb2b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210726.tgz","fileCount":175,"integrity":"sha512-7OOJOTf2TzRbghu251KOmRtByylrRxRmG71yvQ4G74g4RRUVyx0aSdODl9/BPNgyC1WqMob9++7xJM81noTahQ==","signatures":[{"sig":"MEUCIQD6GztVRI5u/ix9T5POXCYzMGFQiXWYqT3TO79u8sJJUgIgUgXg5IJlbEFEX+khiDT/O728bCTB41+UUPn8Kelk8C0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62643740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/mJiCRA9TVsSAnZWagAA1fQP/0ZdLTfK4x3qqgtHCzv3\n8ZwhlJoGw83UZcniWSZno1ag4gGHtDxd/upNuaxTf97os7XdFwXmHmIVSjS+\ng8/CaC2K8Ad40l/N7Ua4XgtinGDBH4cqW1RYj0kETscOhS9W8eGPYAe3Yn5Q\nnVsxoa7ktDruJH7tEKyWG2nQZUkvfEC/udPsZwM9/NiBrPJlkZAGLaphSQLs\nPHMfNFEAR8tGkngVZZabFzX79CWT+59/Syu7WxbzmXkTcCktnJtV4gMg30c/\nybjyZXCgiAJcIbxe3y5EBnKn92eOnAdUCYYVgR+LdxAuAWcb6MAWV0dPVeeE\nFa9cU359kKyeA/w6GRXWUO5CSUwl4Dh0Jk2kXM81lR4dJYgkWTfuPvDEtRZT\nHjBfqv7vokbvDPVXYVNfkAcCpee2ZoSQyCaJ3gmtrF45ExV20JiDM/l4j3VJ\nFh9EQvOqCNQqYAPUgWBry3eYRC5Swu5KLcfhQ8ocG3i4aOvSk/ilqN11ueHW\nmaNRjjqc+gUE6trzIaTLUDgW8dC3IyBzqpVkg0dCV9dvShMby1s65h/RwjD6\niLwn15QdbtlTYknER8xk/FetLfFZUn8UgEoEL5bxitqhgv5AiM+PGM4jIa6F\nsNtDP1q5eX5Ac7OtQLThk2Vfvzo5O4eX62PN6X/prinQ66l+hrl2XeL9zhfb\ngZfL\r\n=ZrQQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"129623943b0e5622bcb578831d579e595caa3296","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210726_1627284065810_0.10503043873569196","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210727":{"name":"typescript","version":"4.4.0-dev.20210727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210727","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"33ba246c91c57e2aaf6330767bc6cd9eee719a69","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210727.tgz","fileCount":175,"integrity":"sha512-RG4uLCYW/FzU5cffTTwssbd7j8Cv7FPJ3zjF7jnAqvm2rXVyrDCmoipIJ0a0XLQ35TJEZyfMwReeeA6ibagolA==","signatures":[{"sig":"MEYCIQCXJp8TNiLrr1g7pWUCjyuu3Ccnop5MWHYFq5YL+f+RRQIhAMEETu1slYhKa7mVNCI2CaHjbBJbVUjqsSdg8sNCTuVt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62649228,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg/7MLCRA9TVsSAnZWagAA7OUQAIIiS2/Jj1tKY7brNzKI\nsKAdCkTh784xaayCNe93WWEwhvvQCdUHYb6tQZSqi7i36PhB09xgxZiPdqwZ\ndd5p7FZdjl6tp/m675mzqDdPdVGEXQGypvUyoEmcOohX93cIB9vXtEZNVSTo\nW1Ja5huPQCTVDpw7cEIWBOxTNgtuoAG0bM2YtNh2+Zy2Z24/hwYrCQcN1rEj\n8BhT0/JWa512QcH7HMTn9ouKxp8NtzCKAUefLyUxf+knxrnd7YVa6rPh0PKw\nvdYRm508KiCvNkPcxhd8MI6zxlmAIPj/57qeiU/5u1azCWWN3TN3KSk4g24R\ntx6Ks0ayjKTPg7fy9CnzDv4SdaczIqzqawsE6EHE3ylzhHpO8SKRuDGdsyiK\njZ+3edBRgYf0BVMUwjSItjLUyVLIuYVePtyhVPka13xKhFfeTz9fXLDvhTNX\n4EHVADCk7pRnG+e9xgprmaP8XUdszZ3TnFnPBRrZqZ6n6ws59lNNqf5jBc9Q\nHClmsLyv/urR39CoBkIvuKm9qpgzs6Lofj7vvV8EYlbUVAh+lZIdVFfNa0UR\n8EfhOkFWtxwdEl+Bldgf18OnI+AOdn7azSVKRk4N3vhteea40krgQhrmCJsM\n0+2lvcFllKtLWdrIyyzUUjntS9xRsuEK5/k/+DdHmAz9nkAqsavi8Q/1475v\n2UTa\r\n=wRe7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"85e0e5ad0746a5d5377fa3e677258516231336da","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210727_1627370251165_0.5348333781984849","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210728":{"name":"typescript","version":"4.4.0-dev.20210728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210728","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93595435d2f64d9da44e1d0fc0e8184132006023","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210728.tgz","fileCount":175,"integrity":"sha512-ZAbNY9MCH4O4gtolh/3+nsYgDxItqCGBIqERwaKLzjMDJDyvyiZZzcUHsU6DMo/44dAetm4LXZ26bf8hbryUew==","signatures":[{"sig":"MEYCIQC7/huk8dZXr2kU80ZMrmPRPQO+PTMgwaKBTuDNCVoagQIhAJRBqX4nd2RZLUUv+0kcLKUrSLHYUAbwh5oJd8bktgT0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62649508,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAQRuCRA9TVsSAnZWagAAFO4P/330odlkvMQoQzhDYVqw\nZw/iArqNFLwlw2pivV2UslvqwpTdUEeXzki7h7cifqyNXgGruqwhkIQAo9wq\n0OJxjZV2V3ew7WEOF/1FJTZVeXeB0XcY6MQI6/PU2+h0SEStU/8HFTgg97T4\nINFqIHlhO56WUH9fdFVc5JehQo2D6CLYPyaLxDYQrij2u744ffTEBbbommda\ntgGh8zpoqMs9gmtApYSmz/nROgxsaAiwougQwxVBfbKM2OzkcOghSqAmKk2q\nMV0YXdCld2UYhwAqq7r/+Qw/N+M/D2HoqnM4RVPs+fBwoqb7/x5px0jKrFOe\n7VwxttLENUpxRy4TyE1L9ppbfbsAVn6VCQn092fOl7MlqD+3IP0UfH/KroIp\n8zt1hrGd6jGKJ51LQY7TsVF+Gjn0EP3/shURS+28XhSPKs76lrV5jNGhAz9O\nJZQilIZ5ybCmpWqStFVV205Vzn9uji0i5dNeyn40VoDE08bNlXKp6xFBDMcE\ncW/5osFj5omBSrJTtA5tU/YOorow9sEpj0Sm72Ev6J4UG0W0RvaexlerPc5K\nCsTGC8jqLGt51bNR/jSvBAT7/OVQtPRygzKjBW6mmdODLHltUDSGAtzgJhJZ\n9uI7Dc3mBC39P9mdVkq9/acXEgxrpZbtm7DMrUzMfYuMmzEeUsPXC4UcT1N6\n9UNc\r\n=d+Rn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d1d65cb6b1f962792cceb1eb7cbe26ab1d6be432","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210728_1627456622382_0.1044210160467045","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210729":{"name":"typescript","version":"4.4.0-dev.20210729","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210729","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3510f9e68e8f2fbdc9c64ecb7554b3cfbf1a3664","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210729.tgz","fileCount":175,"integrity":"sha512-ZIYTAUPLzZzBvizIbq1cXnEA3H3GcDMMRxRaWbt5S+yxnmzYU88KCC5eYo6myHuk3ipXDGdiM58nnqjMEM6hgw==","signatures":[{"sig":"MEUCIQDIEydIbXcIA3StZaN/nklGxSndeLB5jTaipTZzIqo54QIgLCPxXol2mFoIq5VY9zn6AzO5mjVwhL4kw/iz4k713Ns=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62648124,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAlVrCRA9TVsSAnZWagAAc+YQAI8OcjVLf212Z5rPha8E\n+QrD1VN/zMTroVeevd1j3a2/CkmSf2CodxW1Hx2ryXZiSwN3IPwbPFsNsehO\nl+66J5VjDTIK7F68mhImfiTA1NOwXj3QjXz8sEkyiAJOAqUTwl2pIFnuMSx0\nvuGxGc+43jyZyob9heIa4XD+Ok7mxGB1UItPN/Kr6LDstWdCGMsL1++bikK9\nVzdfthJsyJyjN51aosO3eCEgxkblNbrqSHSnKY82IToi33UHVuqNLEpzKbZI\nFS5tfT3q1tFWBlCvX6aJaT1BB+aIr8EJ6Bs5oKJd6MDkPhGUkJrUpbi//zoa\na5MchhjoeJTnxBf2VaU3DJrFvVSF0tjpkXmHYAeQT4mQ65QI8IWg70z3Md4V\nfGE7R1Hbj9RVrw2/d/ynyYPhVCy/ZlX0DKSIEYUomirtxKZp3enwoFuLpDeC\nIEZyAs56ziqTnXXIpxZACwP8sUPF9cnpi3oRwKykxOx+vdG93dN9K7iHZdXH\n2dAWK4roon6GaC9agXh1hNs+QocDKtw8l09nH28c1ky9Wde8KX9u1a1djPqz\nBZPcnq9wW+7Xu4Ijjw/ssHjT49PmOqKoW4orYmtJDjihNCsx5xu3kD/em8e/\nnDQGfZxP8WMKcacWfSbXNloDpMYixXJy9xgC9gpRf5+tCKByQkjag1f3Sz6u\nFZix\r\n=60Dv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"52ca2dd9cf46f186e0e6cf14ca5b1398f316410e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210729_1627542891410_0.9625643996269211","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210730":{"name":"typescript","version":"4.4.0-dev.20210730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210730","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db5a0a2f0bf9d98b9f7aad447629a685d26b161c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210730.tgz","fileCount":175,"integrity":"sha512-fE+6+3OVJMvuupRcMZk3e7W3/GJ1IZ7SVnwLKYWMGbZ/PMdbNqJrVYVE9LzADLx0MCmh9YmCj2Y4xJZGSFH1Zw==","signatures":[{"sig":"MEUCIQCdd2BsDPwwyoahcUPh+IhROsZ5OVaAfDg+E11OCup4eQIgKPj88XtQNg5D0bKEG82dMpvvpWkNvAZMksSU91lLbkc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62663564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhA6cnCRA9TVsSAnZWagAA+tgQAI4PuPB4SM5v4uRnHwiG\nuZxI30BV7fSuatF3fTyZjbf8hj6rM5wMtjmANAaUz33Y3ooZ5lhYS86Ink+A\ncpZvT5SU+r503bKV2KR63TbJ9rtIKM0Jg5+LUJ1qVZ1QHkwzohnvMilLlNbK\nRK+f6wCE80f5MCy4f1nuNreUH2qS/vUWUCDJnsjPxAszp46D8dr8fkXQovHK\nab5x4cUz0cviGNOkhYQUJSsv13b2QAVNfcvBV+4hRysqWGFf+nwNP+q4LPlQ\nXpBjl4AJUHOWeE0ERqVOR+Gunk6mfTUbf74EukXD5eLnTvEa4/L22xd3zjrc\nm15n6R0ZI/iQseIoOI6hekXA3P7QCq7GOQ7S2aiKcGgxu8JMTNIn/Fv/+2rY\ndON3iRPAf6JLRw0GZDZhhaGtQFT5T0UTTtxfGyLOxWWFcSkWr8ZMKRKdqjLI\ng4jPG0blvHos53KM0koLc5P3xcrJqqjdTmZDXJ88DpEi8Ei0l8Ls8UIHVjGq\n3jFNN7w8SK7HbOSeMP+v5ru0TKSA+m82CbnQ4ekx/tSxdn88LNiMYKq70llH\nbCgbTGcULypRdHSpJFaYQhyJZ0g7WDgv5JIlXAUV2AFYBFO5FaPTWoe+2Q/o\nyV66kMd/KWmhG2p0DCEoK0L2k7/LhmTqjtjl5IgTSj5o3uabUR4Q9OygUWuA\nMMSh\r\n=BvLd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"42915c35299a79dc132bbb77e70f558a2b93a04d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210730_1627629351039_0.9087961842551366","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210731":{"name":"typescript","version":"4.4.0-dev.20210731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210731","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5cd44f4536149fe2d66ef72e5f46506093b66852","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210731.tgz","fileCount":175,"integrity":"sha512-OE8C8JcSYb7zwhTmbIT2BD+T5WB4WT8l9o5WqUfrjdccqqZt5OuPJW98G/PmDiKYChWOgwJzp2oS453L4ouXCQ==","signatures":[{"sig":"MEQCIDVO3rx0C8uiNeLdTAdMqRl3xXRwhyZiKsuorFuivqJRAiAQ+LXpQsYbBFnl0fZvzX8zgYFxQR/JmHenE7cQjQ1jGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62674473,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhBPiHCRA9TVsSAnZWagAAILsP/0VuGpnC6v8LoOqQuNB3\nfNT7UNRY7TBtKHL3hBnaMXlaEidFE0y3HnfVgZu+eZe+cFZ8vLJTYt9HPEkl\nxSbhgBfJTqdVrTgy9sbOyC/uiF8phF4yX3aRfVuXvs53G0XigN0+CYwryL4p\nEG6dV3ZlXVwyKff1qdIoaJwd3zjl3DkOfcro1rgSjblcBhuz31Rn0KjuDAKm\nRQkUXrekhTCTcjkvPw6B8OkTwR311e2rAv8DYmxSX/t7U7t+bmo3g6mA2TYF\nbcLvrxdgbPP3pWThOvsu/Wk4GwMF1wVCgG2kd1jSCbaoha6SULpyfeNe5TdP\nMriysDoLCkhJMPnstQ0r8j6keOM0KZW/+gtKvaLeaq80zrlib5i78Uc2YhLe\nmH6TLsneuvxd3TX91TzYQad22104UtXBWCtHt4ew+5+zYkErwtHWosfSUAgy\nZ9DsKaDSu7F9O3PE8yY4tshMkNHtpXoqla2HdkUwwUhVFKDToM7eGiSJYSvX\nXOSmV29/sFjt9ZdChScZ6TXIBt2fJsFitY5s1o19HUYHc3Ahzz8ps7SbZAt4\nSBkL9vPi08lzMN4+DX4HrFqdZlT1xRiMfswCWOnmaOTWhxgNjpwcZCTJOtn3\naVYS4U0fUdXglHSDeqnRHMfKPKL3Hcq10F/Q9gc+SwJS4YwAL5ROyN84XClc\nnPlP\r\n=nCSO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"582e404a1041ce95d22939b73f0b4d95be77c6ec","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210731_1627715718727_0.3210621909849838","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210801":{"name":"typescript","version":"4.4.0-dev.20210801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210801","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1e974c50ac7b84aea28dbf6ce89ebdea82ed5de1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210801.tgz","fileCount":175,"integrity":"sha512-yprCoCLwRSAhPODC01/EsAho7LITRdQAOubcQg78GE4urVXXpp2d/PFcTcxhictB0qfFfBkEW00Lf2oAhYmDhQ==","signatures":[{"sig":"MEYCIQDbUy5i0P55S6p4OQuM35zlU0o9dP+O1ZbxyvFFvVZa8QIhALjzwwgEkCabsk0jy2orGayO+ggNMClmtaMPQGhjE9xn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62674473,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhBkpyCRA9TVsSAnZWagAAluIP/2D9MlvaaZP8OSX+9fZ6\n3eKDOjNY33jRbg0SVOMWxV2V+Gh58HvnnWPFjlaBVePV2/0qANelOrJszwim\nG6mehmYLm+ALTyK5Tjl+qILWss3rqlVhBO9bteqBIXmvByBqkRzoc63P0yu2\n5ZFxslPfReXyaMRdiNQ73Twm2/dDvSM+QYSm08L9M+DDOfxMHzl+qqg5CXSg\nBeJUlzMQypQYOyFDIA5euDnecAKTa0cUxjCadTvEoH20Z8XKqV2OvM7uqJ5E\nLL7DP4//MeeAKGAuXq5Mp54TylfHzuP8merlPo8b5NdZPw0j2hEN87+WsjNT\nEmOqefineSeDFmFKdD5ULgi7IWHeWSUFppg+1lvh6kmOzF4oKDsM3/Juc8T3\nOXF/8Czcd6JtX2XCtWxVjzqImclSa1d/zT7sGGpJXWhHNdtyqNGxdEAv3+S2\nlz3YjTtThw/pNu23Ym83ogR9/GflxLKa7Gn5V1bbmHyFGylOAjwWE0WCTfUX\n6WJKmBIJQVN998r5qfV1ch4H5XJKH0epDhzpcraf6fHI0MNUXIHxPrrPI5vE\nNjhn30YigMwU3fAyA8mgcIUHiDe9rKfoNWvG1wva6UwWHEoDa6MlYMHRiYXP\nmRq5kvePVkdM4NOp/Zk65nQpRiZ+FfX0CBFmKLMWvvF+w6FaLo9Gyti/Rydd\n9sZO\r\n=kZtj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"52af8bf70f4992e5c862f1d1023561e95a0e59b8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210801_1627802225883_0.333454139066677","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210802":{"name":"typescript","version":"4.4.0-dev.20210802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210802","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6bb697544506b33c062ae2e18413bef23251ba72","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210802.tgz","fileCount":175,"integrity":"sha512-PknU1j5Vk6LCUWgUwqAcTpuYv1WfvNEaMDTS5mbFFcXTTek9/z9PQgJPl3gyYGeQXjjcbhYe3JVHXG3jOExAuQ==","signatures":[{"sig":"MEYCIQCuyHb9PLaS5w5tKTvn7fYEmI6RM3X+KzZRSlMSyhPRAgIhAOry32EZ+dg9ugR/yGZFtEeLg8LfQ4S5mccUHX8Nbulb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62674473,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhB5uvCRA9TVsSAnZWagAA2eQP/jplhwIegr8sRMrSi3uh\nvpa+PAW2Gq1tQjDlIqCJ7VX3pHUktJLi5ZLh4wMSeu2XYxR6ufQj5S+8sygK\nZW48ZkqMxbC0Q/FkXV4AvAYuBlxyp7t1/n3xjKnuUHpmqcUK9wlaxAX3HgCc\n2QyeKOPZsYOnxiDdCAvoYlisX04JIJY4ZFIedwW+cEt1ECQeHzVkRRD4WQfD\nJmsBgkcmzVeUnUoUAjSH18lzSeVaF8+RBSC1u1xl8fpBQVmielrkIgSOeARp\nyci1K25BYCippCwXqVPphajr14BPE8HyD6sTb4qiVMnsTDAvjl9+A0Q2Ypvv\nvMfmhAIoeWURbOITuxsCAOB30e0uaAa/92lkuiGM86lAsFVIEqq7k3j4KLM3\nsQRpkxYSWcSc0Wfi+ZnKKHHCsFfAPAvLrK3gK7vassOtU0xTY66TVBYM04c2\nyEPYVoAIwqm5wfY6fDIJonDyrh42B5pi+erpzgxVggw+ZsC73BMMq9tijUA9\nDCtCdZWYimlJST3L90Gqg88i1XiYGiJ7fMk5FVtVgFfJWthwibA/J8P14CFs\nys95P9DWdj3WYiekfMbZSDnTsIxqd+AAqtCJzZ8MMK4drA9e7W4xjrEuwJ0U\nSaoRM+1MiwBmncQapQu4twtq5Up6nZ9QGYe1bcDWbekC7m12pAYhqlompx/x\ndxiv\r\n=Db7s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"afe9cf5307e3e34c86c3bc6d3a5be5f9033be528","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210802_1627888559093_0.4095676707803344","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210803":{"name":"typescript","version":"4.4.0-dev.20210803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210803","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"74395b468000d6e21e02d1506c127e6cc35ca8e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210803.tgz","fileCount":175,"integrity":"sha512-f7b0qpg4L0bmYE1cQgq93b5cfmwCLFZdFUttCeLrVBDeBcNne2qCtWqCsoBoPrpEH9AY/mt8PIKNLhwHIScN2w==","signatures":[{"sig":"MEUCIGaM+HJkKc2ksfY0isLWk/liyYVq+YSD+wX/UmlrzmzpAiEA48/H3X+/Jg0UWddRLF87r1XNy7efRmDMUcfGM50XFUs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62684516,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCO2XCRA9TVsSAnZWagAAIuQP/jQKApr90H1Jk8E9mhX5\nVsvw513ZpxokyBQJlPiiw5YC7yWSJN8nQDB8EhKu2WsubDHXEcfCCh46YKz9\nlkJEV0W3Nfp/7dwecxlhJ6VXvhzVaUjxCwl+4Ks2KKgfqomVxgFoK6AqOyME\naQpbbUZc8II0xwqd558sdMFZTBy90bjkG8Tx7BJLx6C9HgS4FOv+84q6RCe7\nF4Ni/IG96ylTmMTtjrHrvZ9qFmPlgAh0KUi/eaxH7XntiCN0YvTtPTfetozh\n4tW5u2298YXCYva9VOSmvZEm+7CanBHogZ8xOyg6WdLSFCZNw1eMyqcM3lXA\nX2OSoj3LyKIIu3STceG7+em4qLA5vV/AnWfNRQevtbbSgf/DbE+W7whEqhq4\ngnBqn2DP83MsZeBQ8xEPTjRpXVFYn09gjwFfHer0XUkL4tnyYMQEvAvM4bvD\nkFCl6UJ9yJPymSKxU3jHwGaRZPsMraiSKC6C/z3RBBDiidAHAMg0Y+AuIgyo\nxwJGasLXhmxjMMuRDWgvXQ86G3sCJFNddeIVXo9jZc46wK7RKzqTV3WY+hdS\nmkWwNx84ba9Y72EH/mGkot8Ejra4ZLY0xVLNqGQqcIHDUaM0VrPU9xFxsDMP\nvJifnkuSUoaiekeCIlFsVJwGbsAgTNdFZ1aDlY+NHkAZD+phC3MLDW41JKSK\nogzo\r\n=fszV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5a19533d1b5a278c71d52d7ad40e4670e523137f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.3","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210803_1627975063124_0.9950841594740798","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210804":{"name":"typescript","version":"4.4.0-dev.20210804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210804","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9ced1370d102b0bb00222e919f77341bea913a4e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210804.tgz","fileCount":175,"integrity":"sha512-pBw3EZJW0SuAi3gko1lSZ1d92c/i8nDiv3NLg9pucIND7kq67WVEP6OA9iurPAPbaZWJh37ZxBtsFfdb7HDOUw==","signatures":[{"sig":"MEUCIHca5EaUr+FHJwt/FTRCYwjztqmGhfMJAQD4ScwdkHdOAiEAvQyREFm2Dg4vodmrwb0olNHJWm/4errvJDt9bTDg2nI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62684954,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhCj41CRA9TVsSAnZWagAApt4P+wUxlqstU3YCZuEmNGcu\n6NVNL6UghbsPqOzWRX8VsfLFqIgKW5guMREw/gqrL2WT1UFgudxU8T7VTfJh\nKNf48Kx/qMj/v71os9SVAsM1Z41+xEzVmyoAauDnlhkhsHmWGBW9HWe/KDLE\nLtjHVOCAWoj/6j31z4Q2w1j9ewCdBVX98JsMWXZxBMX1Y/RT6POWlYbIbejz\nML/fPeBZIMOWpfV/tnBMDavx1bso3VxSKrjEo0+23E++WRch5vE47BRxBHWd\ncfhfYQOVwfbQ1NPGnbKTALYs8YogTRkeVLj/KUCv5nyoFz30FgXv4qdg12+V\nWBFCRQ+8LFxXLUNPOAvzH+G/DKahsTXtu4rYvv4sua7zVxh1D3BFwRgWylfd\nbhWnARKaJP1twBhL06qGaQbVcxJh7Lnjy1OmDOoChFN5Rl7wPlT10oFDNuTj\nfDM7g3pi0xCymeCj7ZkDPu4rJtDQbkPG00DHv1EdtQxkjxNmAqtUTlUmZqRh\nEw9GcwAp5DVuqd6dKjNb1VxTNQdPanhUuflaxnv4KwbCzriDWlbJXuXzehFL\nKiYZBNc3OWwdJAB8U1buESU0CKp7fr3XsCbV/UfURWwpQEfUY8VPs/IOoUfG\nZKwXypS/fP77mBgWI4B0wwLq/pTKWbDNUONJ9kvKCOSqVrkDvFh8KTPe4PZu\nm10d\r\n=ULU+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4646640e6f9d1e645d7c9acb3ac1b5673d829a2f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210804_1628061237591_0.7116303936711652","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210805":{"name":"typescript","version":"4.4.0-dev.20210805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210805","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"482e51059c09f8226f96b9be536f7cca5d13ed87","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210805.tgz","fileCount":175,"integrity":"sha512-eOWuLJKiSWo1xXB+3EVuxS23wJmuelKq/xYVYUfkygXTuP99s7cCVUgUBQrGO450YR21+dVxm/nSiEiVtf1MAg==","signatures":[{"sig":"MEUCIQCY4TSJdY/239/YUG8YVY9g2v6vVcXilSM+okJoDgLzRwIgV81YyXVncd3C0tc5Ji6VlCNMrc44/VfKDsFFmTX8fzo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62714224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhC4+MCRA9TVsSAnZWagAAN00QAI5MR7sRBB15iJ1WgAIU\nUWJDXc1T7PKAnYN0T/EBW6VFGs4/WNCNyQATGVWCJqgys3QYSyzNtRrxGOQm\nw9ZuMmajYq85oSWAYIj6O+/R347+7JRBQHtM+iDqso5Xf++lxHzADphLfy57\nmV4P/6ul+rk9dWN5mNzJkmd5ilye4RktGQln2SW/CR3M4TWjNuLfWZOetRdZ\n6MMZ4QTFK9gr3Oyz0uOWpXvTcLhn9OM3kBccSAvA2Aa7QtoUVw3Asfx6hr3e\nAfteO4Bhhe+POJtrrZit5TpJBy81XVciUxYhm79Lv09B42QVcrk14MeGnRjY\njVyxUzF6ZYe/+fGGqLZTDDLCddoEd3HrDEe/yk7CNZjWxWKvrDfMzRbLsWpd\nynt9/ZaIbN7v5M/dlSvFjW/Fdibz6Pdb/1pktjK/yqm6hAhRV+ViWJXpMJRt\nMnjS7ZxDgzrjkzjc7NcU1mU47DbgQ9Mfsg0/ncqGSgmAR+XxCKKwcaKxY6eE\nTWCN6oOPzIN7wYXQ72+oH5vzjy4TWx0HuRpR8dbAqUiXsTW4pFHq0S8LuVoU\nEdzlvYdXduTWoaEp1dfS4oWLR0MySws8vzGuHFcEUHHtmUw1YHpHq8CYX722\n0ampSoRm+NWrxRjd0dcSq1lRrvrP5rNOb5DYZUiZ78pqdenzYrVj5/DWboEj\nPD9v\r\n=sfPA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3266ffbb59b3e8a4bd4aeeec896fadcbf7eba5c5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210805_1628147595608_0.38937815312330204","host":"s3://npm-registry-packages"}},"4.4.0-insiders.20210805":{"name":"typescript","version":"4.4.0-insiders.20210805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-insiders.20210805","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"225a003c8bcad188069a29520a3bc9840ce0758e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-insiders.20210805.tgz","fileCount":175,"integrity":"sha512-pNeBoduMJYUs6Oatyew8OFNWunGXdatQHqUQJX3vy+kYwm39P+5QjiSVTXJhzc+PHnUCJGoJ9BN2bkdY4N9/4A==","signatures":[{"sig":"MEUCIQCJBqnGsDsq673E3GTTnpPzS20KR/rNBscayLJMZM7FJwIgMZ+lX7b6yw/YoTTscQ5RSjsh7lWNwpQeQUYGFX8H2Kk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62717387,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDHA0CRA9TVsSAnZWagAAevsP/2/UUKsMIWSgWs/BTUZF\nmpY6Vec64mjq2nd375G2qwquXan5ho/PjXHWfA9hAZhNEo4hmENd7Ibnf3Ce\n7vVm3jD4OFYVbfHlGB3+LSiwRlckbsNakCGxfynLRS8EQrVXCV/9dbujcR5C\nHQxf4fVce+BFuGAIMS/krRIqDgjV1eb6q6e+mZAHvCEd22agjVxM+9S2R7CL\n80nyf4CMRg23v19wlb0pAABpijJ/yLRzV66IUJ5xwEA/C/LvRjhjOenSbw29\nnJbN4e+o74bO8n+1EjN+PDKogWVPRovLVVfXrj+4+GzEHgdUT2vTOcJg6591\n3dcxih9OJtK18iZ4OXNlyMypKYGqLkmmrmIYc+X0SE5Qgwt6afbYBdSTp5VY\nnMtoVSJYQ1rmPFkdub5fOcUxdOPVnYx0wXAPcXjuGA7F3WJPS9yR0gRs+8BV\nD5LzzQ/87SDdF9VAiutRR9PrhNZc8gftE39+DmSkv2JL6y22yB79O+xfV2E8\nw3sEo3GfZjQTMLcRoIp27VTFnV3VcTQbSX2N+4ebxB0njjQegi5eu/R+DTie\ny2cPs512ZWjAOUI97v2gr9x/zeLuwCS1R0IU31k3QtkHAKVhyH3MBD+fF5Ok\n/UBmgFXx9JIy6XaGHcZrxJ3MUlhOILpeWaK5/SfIkJgC+TqK68byKifN87Te\nRwmN\r\n=M9+N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1f85123821455dbfd464eedce854d09c3e41a1d4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-insiders.20210805_1628205107626_0.7733771477412548","host":"s3://npm-registry-packages"}},"4.4.0-dev.20210806":{"name":"typescript","version":"4.4.0-dev.20210806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.0-dev.20210806","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b99a48596f0f4dd17980ddc19f81e25b56fd4df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.0-dev.20210806.tgz","fileCount":175,"integrity":"sha512-Bg5FkLhMwHSM59QIOeFjYPL0LCxfY8eVFgubpmIHHilZFzjUvlmXDx77DePFL0uQJ40xlzea/5UOOfljCvupUw==","signatures":[{"sig":"MEUCIQCmGfb0iJfTw2kikMnTbm2LOi1rPk7riV6terXQ32gS/gIgYwOXblH9kgxugcout3dUfqst7tyTelVDSbzL+nIP020=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62714470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDOGjCRA9TVsSAnZWagAAoZYP/R+y6pmSG4v0oDWwEett\nyg5xQgcpjaeNm5GS+l5D7vvsw4lHI0BT3Lp7y3Q+2z6ByxDlpAiR4sHNoEme\nRd6lRdgc0R/LeLni0U5lFoDVfEMLpk1O6igDZEBJkWmf8hbUYKKm4nmiBlfn\nY3vJ/sb2o9dn10vjHwVoYsFzhEjgmeH9xjUqPhLnQJIeDE8N9b6jtwGTB1BO\n5D6iTg7n4N+dAspSbSGDcgJpR1DDNBGwon2cEhVhjJ9yf4FhOQlsRDKNkmIv\nVdVx1LNS8EZqenJ6e2t7+OlwfuG3FHcpP76EFUSLKxLVbox5zR8elEVZYeMS\nJIaFryxCtSYM3RwMTBDzlzmxLwfeDkKJfF5yG5IKH4UKGS8Wne8AJFuvjdmM\nqngpKe1eUijv/v9d5+iPkkZIdyggyJhy58+Bs7DPNSRkNhSF+1Yz+mrG3UCV\ny83sNSXi4vDSWizkSG9XVYORNpv1ZQQgI83JYJrVYjbdQFskQ2sSsrIneXyA\nvxCP2PIhIO6pMKlUiF1kyqrRgMc72PFRwguxiJstbIM7hBTWqmVcE/7jaP15\nh3i+1vK1TtV5EA9+ikS4pQVI0ec0Lr5soosXV1ovajTTtHNWzGuyQUkm5vjr\nfmIcFgQq6F93MRhSfBXHIwZ5ByKyx+IsZxsv+YIYMGbAhblWu+ftJXWZJHzx\nyaBP\r\n=HXRC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"409be37bf5f73e08c0a881c442c14b5e13d63570","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.0-dev.20210806_1628234146473_0.7104569211525824","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210807":{"name":"typescript","version":"4.5.0-dev.20210807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210807","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bb6b1437660c915c317fc1693a9384dbafaf63de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210807.tgz","fileCount":175,"integrity":"sha512-lZpUVmO5Y8dMF1s6agHWObXR1ZD+Bf21UD4g4O8vqjERifq+Zl8pk3Xd5yMiSQY2JVEuIx6bT90kvDd+mRpzbg==","signatures":[{"sig":"MEYCIQDDZPmabpkYd2nMk8ovlqKCRwuvGQxLYJUv3T4/bvS/+AIhAN1ZWNxWdEgHJ+C89cU94AUZLuw3kSqO3zijv7P4MXGi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62734107,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDjNCCRA9TVsSAnZWagAAf0EP/3xLO1EIO95ONznUxkli\nZg5Px5+eNuSapOzxTKR4ohDWXkN0DXnG4Cc5OXeH8PLAnvDfff2uv2m9moiY\ntkkJDZyB3DSwnP2irHh9JbeZ0DnejXUpkyNkY1drUBoU54mvRc78lZJCBcbb\nHs7j8XS5F8g3645huWPk7vRxaZWaxO1gfyXNugP5YT0gtap81g9AW/kuC3Kv\nOh5S2+OANa6iqFHYLm2jiTQoAAUP4xMPUuvyLIhm9aJeXgQfmOBIDiXAo1Ji\n2ItN7dp1T3TMkyFUzWEmv4c2Z/NaU0Tg9Noa9j4t+TOyZ2WhH3TkoPe2eu3v\nIjEXqo2tAqL+M/31zE75Mq/VoDTPHZrkQu+mdgxm+7QmlfXx9jRS1mzMmA5v\nTLVcu91G+MU7V59d1C2gyyHqyeG4Wixiqe4+NIX/WyJR3WgnsOWQrlbV/RHx\nSd9yq/YU4oMYjjptysThwG6vWOiO8MFmnkN26ga2uFkjwXfoEyEXWnM0qBmx\nDxjtlRO/cIgc6fQycuouFFF2yIJZJ5WA34V2Kp/S5EpWGEU97i8brf4iawg0\nvtXgq7kB8YKprIRxRs3IESbXwegFlzx4c3SNqfJ4gVz34SrJaKUIR3q1G9YI\nm1o9DY60lSG1hd5iqqnSnlEgLDPShUQRzlX17/QrdLnvBs+tBKPkZskhRcKg\nGWNK\r\n=jrwh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1f2187b1cf9f889d913f9c74ade8c4da2e488fdb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210807_1628320578349_0.5828823469332327","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210808":{"name":"typescript","version":"4.5.0-dev.20210808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210808","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bcab28fa60858b6d9f116fd5c3e191c3ef6f8484","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210808.tgz","fileCount":175,"integrity":"sha512-S0Uofvpy2X6jt+U6esIPdq3MjriMmvQsB/1vsyVY45O2V4GA+Q4pHxEDmGhHK6TCOB53T/HtzRvUkTlsQM/syg==","signatures":[{"sig":"MEUCIQDwWpwbRLXCgLzoVDAjXv5UzyRCDFFZydZTPDQyKsyiJAIgLEhjH8aWlRVU6L+TfQQPbq7P60mYz5jDOSKbFXRdd+8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62737968,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhD4SUCRA9TVsSAnZWagAANUwP/AoPqoKmPDFhrG3dSBpG\niuwCQxqzknLiCDjopnTI07DAVV2DG6G+ouzRVjGgvEehlFpjQvGAnq44e6XG\nqK8ljF0SfV2husTF+08SrFslHvDAZCMOvPBS7W+8LPw52G34T+kfi2EoWhQt\nwlwi+XfHDif+WVI5Epi8xkvDxYf1cJ/umsmGmhfUHAzEzfWHl9PoFIcZ3jfY\nDdjJVx15bHjmY88kDsH8Cvt+G6brj44+J03J95mnajmKygg/jr/0nbWS36CR\nfRXjTIXT+ZhgyG4vXRuxjIsIFWMJsiqcOTPWF/zh5qKnDJFgLcgNPCh2L3eA\nsxInSXvhpwOmTCfCHTA8CbFeQwei+/isNe42ihuzc9VqslOPROg7drEvCOu4\nBhNe0oj7Cx+W2he0FvQNZWGFQpSK2SstecQ/fDS0+d6gAmplbzH7fypaCGnm\n3/6hcKAEDIOf/BI+Z/g4Z9sBvYpuLUXf8kTUPu3d+KjbT/09L6bZugGzh3yX\nWbcNv47cCHRhjlkUjCPwpdF4h9DQfIWVeeRxD8X7I804lz38aphWs3/J6Hxr\nS6/UNlVN10wKOfuaT1VDT4Yj04hSzsDyJXAYSBxBISo5zjqYifpkYPz8CysU\nRAfSQnK9uFU5IB75ybDTCjFzSqDPMVvyNnZAuvkYbOnNVRDIakkqb/q0rs67\nZsts\r\n=nhIN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e527db6e628b1568966324f10c43e00a67915700","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210808_1628406932279_0.40565336866463664","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210809":{"name":"typescript","version":"4.5.0-dev.20210809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210809","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6cb240f88a709cada53302b1ebe3b19857c997d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210809.tgz","fileCount":175,"integrity":"sha512-Yukb5415mQ3QhPCNd6llXyGC+gJ/ALXgnYgyCVzphvFAZmWQVDAQReNL6lm5RYGxTJs/u8DdKKUhTCe7p2CEcA==","signatures":[{"sig":"MEQCICxtvTFJoT1Au8wxLJ7VMtp7M3ObmC1YdXtjxMq+7a67AiBsmvQ//Qj1+e65HcvqltGTGmMbM8k+3JhZQ02H64uSpQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62738809,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhENYQCRA9TVsSAnZWagAA58EQAJUteIzZ6cEVHxKs6XmK\nz9tEqeLQk+SA/bQy2lSImYt1A9Ez015B+MWC31G9sG3qnmOl9vmplYGJEDKW\nSUyZGQNYAoNA+px5OBCUQTl72qoD3vERnK459Mv+Hhz0B8f0n8zSPsIHgP8x\nBeYTZdHzfCsJ+1slBrZ+Uvwo09KoN2zMo25VNFxhSKM8xRNlzOq0DH45g0EM\nO6niUiylOhvmCBtmqnvSxz78XjWnNQX8g2lZFOKO5QSV5oOQqwEEy8vIICkV\nfRDwd39NeG8UGd4w4LTq1dcQjY5xS4YBIgW3CPZkeyq1aJI6K9hfxxpxdHJ2\nEXp6kupDy90WbduOxCFaye/xMNsI0JnKlgNZxHBTfIv7a8+icmdNo8q0tXdJ\n8P4XibjQ2Lh69GzPee32kdQUyXgOUSkhTNAbLAwYkzaZraDPuQJEGNJvpAI+\niwrtMLLZho3Id8KhEP1E6g7ovCdYC84ug/ViAFTMbw0QTwPHIxOFWpc+X8m+\nRU5WRn9rvM3/cMIIBoATY5AS3vMh/7mSMoY8M/EyTXl4aDUtlx7RdCZzwlLo\nEwi9rRIeNRB1RdiNu7vDYtEEhxeQ4YS+fmt2Y9C3V7k3tUYv7izFfWbYPcvQ\nT0aPM3b2mrmlQKzAZ89feJ6R6X5lA03eTrjTqZgKCsXhqG4qivG8DnQW2fpP\n7Ghi\r\n=zuJz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"75cb8b2393c9684952d0373ab77120eabb80f93d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210809_1628493328316_0.5399428528853807","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210810":{"name":"typescript","version":"4.5.0-dev.20210810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210810","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e29c56a180a3ea43dca880000f8b1cbb4da5af48","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210810.tgz","fileCount":175,"integrity":"sha512-9d8OrY8J3LbkWgjrPLE8pXOI4Z8bfS9N2SudgvrZOgYUmEODJYfA+MIZ6Zv/qrVSRH3M5632/0CjJr0Zk/sqWA==","signatures":[{"sig":"MEQCIQD4ds/5J5XCT2KBmNX0f6YykU+ZibKnOLq1Il1MsM8aRgIfbbyaQ+grfUAVDpwgGW55NtU47gE0pZYQdeYiPNy3Uw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62738977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhEidRCRA9TVsSAnZWagAAencP/0n9/EoJxxT8+9kUc1ZE\nI1rqeBgH4GPSrtoPDm+gYx0FYHfr3XuXHVazbOqS0nyDLTu/ZjoLLEQKWm6f\nne2GpfqrfBqxXI2o3isuxclgD1CglRJBhsi5M1uwDuy3WKsN8ik51wMWRVLv\nw2LuZN9Cntgm/ckW4B1w6Jz/6T/dxoW9PRzPa38H9qFUYIZIy5dvUXl5GmKP\n1qeyqoVQlYZoGPpZIbgoxjyMBHS+B2E2zJokBl9rlFf5ercVaHWCfeOcnpCX\njDNsE0dxBTlHhFtSBTKQpwjad1tvfq7rEfXUlq4azkPu0hAbQaDYSawbMNFT\nER5SbhTV+Fai4nO5AH+fLXo3K8VasZ3t+sG9m3lRfIg1el9qOKTrzc/hzpky\nDyWTJkIaXQ81i44qMT1c0hdrJwsF8b2+bHnCu5LKhwkbgbkSOiqTeJy/cLkb\n426vuF57PD3VLJCPdEB8CLEQTTIMBRDD3BrwKXI0ASFQx40wwrhSPvqNwRbb\nEZe1NDZitrR+Qn1YHe1GkkuxvV3wvLCYPpQlr45TYOV8sBFg/JgMjFADrCH8\nbpEIrP0rGPcsbCkUzoR9ZwnYr1IY5DG4Mx7js+eExamlm/oI/wSHFiEzDPIl\nI3w4n9JuH37kEe5yqompbX83kwQ/TxEfN1uZzW1G75aCwIaUqWKEWDAvTLRE\nhpiZ\r\n=FTta\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d8e830d132a464ec63fd122ec50b1bb1781d16b7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210810_1628579664812_0.33115692227998883","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210811":{"name":"typescript","version":"4.5.0-dev.20210811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210811","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d596e244a702ee4c8106b544e32537903ec0a403","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210811.tgz","fileCount":175,"integrity":"sha512-FNQT4dqjSxFuXx3r2mGE7EIHavAY/SFXpARg1Q7T3m80mDL4Uug2xZtGHo7Qv7xvk+sdqtRR8jkAZR/UWbhPyg==","signatures":[{"sig":"MEYCIQDbDYBVzK8TaeC5Iqii+A3yHkfNYhVZmTAuLnC/HTPhvgIhANWnSU0O+MVnvU0mdUyS+9fQ3iYJp8s5rWnzO3m98IJj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62792205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhE3lkCRA9TVsSAnZWagAAp+YP/i8HSNK1g051Ow3su7TU\n6SF+83Rp7Q7dDmQkfzYThdL35Bwa4BbdUN47PxeI4jbf4VIqxk5kwq8/l2jJ\nnayx99/7O/kUNKK5R4Z4FkBaZNUNtFdaF3P4XD55i+1M7E7zhvF6GIyLOG1q\no82VukzS6rWGvXELR1jmCYCjA2fTdCttXARgOE2C5W3OA3chkbKIAiNrHXY8\nL79nRiC0igo8jDXRNypxfzaFzvt9lti+ZcPS7nmw85/bRt8rBGJoyBa5s9df\nqrJ2mgszUegIylxMTUOeY4qFG+3sv/CNofvOfhfdg70Jd1+MjFR3d8BhQI8G\nC8CGr7G0Pt4L5eMif7EDE8E42pwJrRgHqAI4oA6x+0xu0waOWoi2IF+9MYi1\nASHpX3FDHeUpr2Y9zdbSI5wRK+Qz36Ld01KC+xwbY2Th5h/9/G2YK2Zezou9\nKRO4265O/Wzdb9tFd4uvg+ZZFeV9i+e/oxfY2db3BTLp1GhD4cJTDXg5MnYS\nMycEtxq2fQLR2AsGzEWAMsKSwinjz5sfdmmNoE7QBF7JEOlVGhPyEvmcehMX\nUwpkvAR72TR6Lo5iP2n9GqtAuJG47PEWbA61Olza83jd6XTnnBWt4cngQvtp\nqfyGQa1rRPV9cXjc2sW77OB4HErUWnarz2UqxlBaXLGqYWSJLhK4dUMMtmLy\nhr2f\r\n=USB+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"08358f3380a64553b59496a4f8ec14de1d33e852","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210811_1628666212176_0.12168426422579648","host":"s3://npm-registry-packages"}},"4.4.1-insiders.20210811":{"name":"typescript","version":"4.4.1-insiders.20210811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.1-insiders.20210811","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8ec3f87262901965def829d64e47c223ac45d03b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.1-insiders.20210811.tgz","fileCount":175,"integrity":"sha512-bAGT40BAu2fZziaOfvPUJFL4Efxczr+AX8fnp3XQFJI2NDeiAD0ZM3OKwNVVTRSzPntNUHjVpBRULxNZ8YHpUQ==","signatures":[{"sig":"MEQCIFxWlJCMDBlbnQPVjVgL6Bc3UeOj23iAgkBuUgRzDxTuAiBgxOl7rQtFarGb9o/TVAcTIUUH/iApAYnztMHHmeBCsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62735732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhFCSqCRA9TVsSAnZWagAAX/QP/2JSlpRtqZu4/d793jYa\naQ4SsfhtJ0MWdcHn9uvaj1359Ss5Cq7s59qd/AcryqqSv3B3mCta4CWOCcIe\ndgKAlG4rMmZTlCEZSDBCy9KL8HXD6WjOWWf3/RL2akbeiIF9E5I4agjGCnuB\nNfv4U0BXMkjDfHmOBEdkmh+Aq8NIeel1H6+jqsftuHbQPzbwQUFw+G9c9rf7\nUTnNyHy+i0Eo7KFdcffLnAZU39jO4EKA/wEKgwMpx5YJTxNp8OXXb5x7UGnN\nnYD+kzUc/heWFfswzAQyvJ6aSKkoqc+PPdpRf0fpqQsiJPecn+b8OIyBzSU/\nPzPoyZKnOT27V0DAOtl9Ms+2S4FLnzKr+z6zDqkBLmKHToHWP+QSfvuCNy5i\ngCIFLFO6QEaweua2+isXGu8/oBx9wXxryjdWK5dimHdAGPjxmc+WoRj57BR+\nJS/1hYsg3B9rZKyCi8D/AWjChgJ1lNKlcwM4t1vW8um1N+QDDsJNpWTf9u+l\napC3t69Tl6Mu17T3Kmy352XwYSiYZODKgGL3QvB/7Z4jFrxIKCocftM18Onu\nYo3d31DXZMzkQTzUnw7LkwEqcNlNIv831F6S87YFk+QJRNJmSkHtIXbL7cAU\nLzUai4wpyox80E+Zb5ImpbMufP9/zL5TtpIrKqhUU/W8JeslMy03cmAqapat\nrnw6\r\n=pSwe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2e587aa233da182c77638cdd0dcd5ebb987964af","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.1-insiders.20210811_1628710058064_0.9030465779804469","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210812":{"name":"typescript","version":"4.5.0-dev.20210812","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210812","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6fc96bd4f753f9284e8c40da9328c1f0414a5673","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210812.tgz","fileCount":175,"integrity":"sha512-4gG6e/VG2spdGmZKx/y0ZudZGYSsgiRrrkI+79TVh9CD7KtrMp8xHN/IwM538Sk9YTmXxM0dv3W6czfAt6S1MA==","signatures":[{"sig":"MEYCIQDm7snYLFRB9XCaUWP7xVTCBEsjixHqatRB5KOJhAfsBAIhANLRTu9OEuH5eESLNE+Txidoge8oI2QuJHan9PDT7Tbr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62792205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhFMqtCRA9TVsSAnZWagAAVmwP/RGeJQPpeClGiVmDuwgF\n+XhopcMNAfPnqiHIZCPsVzVjKyMZ8i7v10Pwg58L4L2QmdYhBvBj238TPs6d\nUD7bIrwjpt3m0U9Jgs5OL+N7ioFHhYm1wDxNhstk9k3cYT2Lm3mBZs6ExAHS\nl4S8YhaWZzFPV468DSazQJUjwKfO+buiWBMclQy/l5SjXJIvs0QHfg4sz5E/\nuHclNYOB15Nvyua+r9SI4sI0lTn3oYudh0hsRkzDDCOo1P+hCkHAgWR7PTFY\nWC5XG0VdI4lwOuVVh5v83FFdSH5ZhlCRLnTRapjx9NOy7vOkOJnS6gtlxqSA\nlWrlh+/ciqAEpMJKDuZWK6urpY9m2bt5/p5CpipCFvlSbvO1LqIp/gxRMUxh\ntNQ9mCA+npzhOIb1mUFT2h2Sjf5/T6h/hThMKYd/PWkc6ganH6t7R5DoqACB\neKZuFZcYEdMuZsDF7HtwbFhv6DCX7UQ7qRBVWtJRPj4sem1x2lmxjHMyf0v/\nj8PtSxzLgX3cI2qR/4fwD3WftM66zrkQSlQEfFLaAQj3NXIOoDkpGX13W2cc\ncG77uWrs5BYRS5PSV35QRspllHp+nYZhEOUWm9w4B5WEtDUolHdbcEjqTqQg\nClgZ+2bS21rM2xxM0aVBcubwYn5kxer4GrLGHBY56RgJEpIFzEE/iEbXcegC\nkEny\r\n=O/Kw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"88d8d1cceeb0fa83d849f9b9f374c59e9a33b7a4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210812_1628752557528_0.1622532370637606","host":"s3://npm-registry-packages"}},"4.4.1-rc":{"name":"typescript","version":"4.4.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f75f17985a2329a94fd911b3ef2e619c33636fa0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.1-rc.tgz","fileCount":175,"integrity":"sha512-SYdeKrJiOajqNTI+sweR70JET43Z567HFNo7DvvBof8J5/bt2cywy7VoWXqZyrsHEmQ9foraLtLr30mcfpfz9w==","signatures":[{"sig":"MEQCH0V3ebSmqYALMVL09M+W4PwQqg1Nq+wSzGnBaqlmzogCIQDmFDRS8dQEmQzQIIGFBbrQ2pbAFnIBR9jigCiV2IPCyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62735844,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhFZw9CRA9TVsSAnZWagAA524P/34Hz9HDmWK4/0Vo5Enp\nGWakWM2gf/sLjPi/w1g7JF0lzDsNoqqIUHxv7Pv1Ji0GVP71of6zzS/QZd8h\nBAomJz935Ll36FN/tU5beKfFkM0VpPIixcHm0+wsabMrSYaaGtVpxV3axT5X\nTnKkFS73RFiqtaP78pDhHCZC/GxirUhco820A4eS9M32RDvUoyG8vSMXUYbS\n+z3AWptsn/vbz+8+gWAy60WXOqoI9RspYWOlaQ6a+0uMBhVRrc90T2uZ3Jab\n0AXNQC8a891dsvoDt4G11JK18WigPv1PAX7PLd7naIeosGKULbf0B0laISl/\nyHu+E8Wd9ogjK+mjWEcr7q1gw/hspAtDvtB5iPUctjuv6A4FFTOihRtEH5uR\ncX5WGCwDnfE3tEy7AVhq5+TVeNQewTlRlrnstIMDS8M3ZG+HHGNDGgiz+Db6\nEDWoNe5i6jdcGIj70HQkF0Gmy4/jz1vBoayRKIHjSaY3G38GCl5jfEQ66QiS\ngWduJuu35kzUrVWUzSpY7ywA1XdTcfWKIvmCP2w+TzhE5F0pR9ATNFonjvJH\nlnDIFY2PtQBl8zaaX4vXBHBKPvMCpXzdu0je42/dziiueRx8Pl+SVJm2TRZ1\nfz3tlgnL/BIbktrMV2vGoe+uOM5sDFg5XOIgZiXB633cRlipiwwxtUCPvfgE\ncL9R\r\n=CAr+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.1-rc_1628806205146_0.6007734062304311","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210813":{"name":"typescript","version":"4.5.0-dev.20210813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210813","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"54adb843ba7098d6ae429fd773e2ae3af141b04f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210813.tgz","fileCount":175,"integrity":"sha512-c51mAthgxspw92aITqagsqjgO2wxxUq52YfR94F+CHhDyeahZEEHbHxh3X15ct2Dv8QdG5rSRHy4tt+I0x5ltw==","signatures":[{"sig":"MEYCIQD52MuIIUXMdfaumG98B8zyxEOoXgHTWaphOwwn4XOf8QIhAN3AV2+2nJfALEQFmf+0Bww9izxPUQppsUtSHoVBCYVK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62794253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhFhxoCRA9TVsSAnZWagAAF54P/RxLRvRK+Em+x8UJMrYv\nhXw2KpgJAuq/oelbjYzEKVJnMrWmuJvUI3mUT7nTsM6fNe41DfOioSr6pKvz\n/BekNC9p1M54bbi5cyfXjgdKU33W//l4Zoow+sMccBFT4s+KlJdHC8WcbTmJ\n0HYx9Qixwgd/yY5lbQyKgDH9uXhU/XznCN7DtkiJ9S1kwjUraTjAVb2iM+DR\n5/bvxNNZPQakeWc3Rr0QPlrSTGsfRId4O01tiaQyiIcEy/6jonFGIq4bfNo+\nKjskkVMGjvABglEnoOIoRd8J3ueNzRaGZglqIPFdBAwGPK0dYG6Ptq0cpUOX\ngoHMk9HVhIvvHlFD2jhBO/ZG31EordHWqHOx+SeMxoe6IFepZYD66amLPNcA\n1ZCglKX1Lk+oDlC0gVwFhNlhCteqanihWh2p5PiAvxI2PyWw8S3JNaMwnt1R\n02aB8OiN29DKNT/mGJ+SIq9raLK4fE6XGNmme5MTaC3M6JQRwgvs7o5B5BVJ\ng0j3HrW/hJ1Q37D3jn6N0TIqRzi/fQO8dPteSzi/D2V5AVg0l17fHU0RQndG\nZgleASOk6ds/Stacxw/LEynFjTyzlp+MU95VILSXkAZGByn9GxRu7jpp3tFB\nVh9zHEHYWo9JVbr/8OuMqUihsfaKlyapv6k5jc5s3+KUHP+/J7h32cdyTeqx\nG5v1\r\n=dgzF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0cd447da549ca37215b59ab297fcabc814ca94c7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210813_1628839016147_0.2984892255954079","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210814":{"name":"typescript","version":"4.5.0-dev.20210814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210814","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"48652e5142c0e129c77388d7e01ee55d547fd997","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210814.tgz","fileCount":175,"integrity":"sha512-DZzGZymwX+hQfW7QfULjmtwmIOu9mRV/jK55Ps1/T4UeOFjjmqr7rdCwifn2Kqpus1Cupe2NjV+vCpnZI8RjJw==","signatures":[{"sig":"MEUCICz7wIeyXZ47YfJ4wYiB7GDFSlM4EMr9WCYK7rbRyFvTAiEAkiqoomXOdy4VjuUR+heiXBnPrrtaIvkSRf7VqewXbJQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62811067,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhF23iCRA9TVsSAnZWagAAT14P/19TkWCwpaVnCGYSa/l0\nAfKdwAJT0D4Y7Yqk95jigLIiMW26XELuPbJcq+8UfvztToQI7bB3hyKx0FoQ\nvcMtU2DW0e+levnLdiyt6zsBBBxz7hT0Bk3ZCtKSKjNN7PETYVVtLvH3qSKt\nm2fFrmS0jMH2VsKOFZMSXkxyL2IUpr1T2PYEfuS2kBLieqgKRv4dC7heCVWd\n7Si0ELJKwik5bqZ0okBZAXrXeLK3aqAOocjpHC6tEraB/5mKrt0jrIOqK3W+\nAf8lr1QPWfMCrb+oIBLx+9LZyqf+95bIzyQI4rSU5xPHs1uYY0VUsbEnZVHY\n04ZZLLWVdg4GKUDdtU6GECrQ/ATauEfz4KJI8DYTp4eLn7MU3ZkPILAhQvSM\n67gkNVW4qSWrgb4zC2Cu5FxZ1FD0ljtEbrTEOIELYLvlDDKJJHjv1g7qMq5e\nm7qR1eDMa8IqqGcMY0VhIfls2KFcu4Y49DbeLCEWCWccKgGq8f6mCSbt3BXI\nNSvhXgeD2joa40czX9Yod0pFC+a+DfURi/Ykpr+Pqkm8qiF0JDIfRuNlTKxw\nctzBOKaA9pDYVdGJG3vdEM+fJrM+7FA/NsqYZOL4T1ekgE87oHVt1v9ByuaY\nWLNAvhuL5r8McesekIK3XgmWuhG3zugotrzlyMe8jI8pPaiqjCLXYaJ5FrjM\nbdnu\r\n=OHpc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5b3072f687c9d57c82a3e53da9c3f7658db703ea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210814_1628925409920_0.04690132719162965","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210815":{"name":"typescript","version":"4.5.0-dev.20210815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210815","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"04da6ab87b34fc69125a81eee4ddb5284cf9e9d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210815.tgz","fileCount":175,"integrity":"sha512-kV7RTNzKqngBFXIE3033DwjwomjQNDnuA1bWjUvd0ptLVG9/+/x10kGFuBovy4w82BN0TYxieZoJUtt4+K+k/A==","signatures":[{"sig":"MEUCIGVPJ5Qxmv5y2G8I4kS6j5JhUtJ6CDvtH3Xm4oZ70squAiEAxhLQt5jxhs8SSnCvULP5yOTFOah5J8lsat0HBYmvZp4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62813060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhGL7bCRA9TVsSAnZWagAApq8QAJ5yUW9sSp9FPToz0MIu\neqwfq4O0RGrkeWBr8mr2ksnnqJovLYjgxO7MumZvk/WIe2JNwTftuTuv0PoT\n+E34BclpmqNaN1ABZeRIthFj9HCvNzeann+vmGgC5tukYXyqjzKKs+Fs62T/\nvZyNvEYMHPiFFw1okmbeBIE8PgKRw3hoQVidEqhrQUXZgLjv2ZDq0a4/gSv/\n9OiTFTDtkdSfz7Zeov7r/LfJiYFliFFiywsQt7uzf54SDtR/0aUTKonnBkqM\nYGJcaU/MTZXg1HQfCMZ05ulMRp57r20n9pLSwJAZownUpGclJAC22JS/3b3D\nePjyurhDIgKR7b1pxNaX6ItTRgqofHvmLPBc6mfzscMyB+lTUFlSy2Rrwe1x\nFzbrTtssZ+a6NNiJeD3qNvSebYW7mIO8uBt99Qt5shRU9AWGwR8EZN8gf+lA\nTeGa1iWMCEB+9OFuE/4vI7tkHkDjmM5kkJWu0qo6M7Et/YQRoYYIHnf93Lyk\n900GBMdpHQuOG1izEHpjRSHHkgGhaJAvEIkk/owLNk7KHxcBQKZu1hzDClFT\nT7rBEWdPF9yTxnEesSnQdsI6yP5OraeJ843gWJb/sKBJQ+15paBpSZRnmfYw\num9Fd96qXVlMF49dhZ8hoaQhPMQ0DUue4SaW7I8NlOSOLfQVmNjaq37baWJU\nzIfl\r\n=WSnu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d50c91da1719dc4dd32474108dc4cf082d751f1b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210815_1629011675320_0.13800099071582816","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210816":{"name":"typescript","version":"4.5.0-dev.20210816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210816","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f167cf37ead5c2400ae3744c8b0276602d2e0e54","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210816.tgz","fileCount":175,"integrity":"sha512-j+NYwIY9VVIL5heN1piEzX5/bIBwuiRWlP7mNTP5f3uItzIwwGMVoFAWkhIgDik3F4qvGcE49EnWIV5slbHohA==","signatures":[{"sig":"MEQCIGfna2JhWYwZQsz8F9S+y4m9j0GQ/uxnYbkldXSJg6uQAiBgBpA2cftH2r3xcfLeK/EUYv1dIZTpzqZhlxgIalstLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62813060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhGhEOCRA9TVsSAnZWagAAGBgP/3/mRUN3hCwpSK3pO6vD\nrBjGt85axSbjcEFKnQsBeiYuKU5Tj2t/2nBhLCf2E1iYtuJalqOubh60b1eA\n8uf7BUTyjLESnLSEkFsbEaAmz/jLb4PF1gmE1+1G2Y8p2qh5A3CYMb4FDRjY\nwJCxtOyNBIAU6h4HCdzcHk1+ulCI4Zptt7ZtLzbxwPtjAPN4NgiJtYJOyfxd\nrcQEgK/7d5K1YtMjSRL9hPbZtb1zoswZfBjBsYWWJgINgEy6AwR/KIXHhizr\n6hv/OXKavztYnHXffmGF0YOtns/eY6cROo/tfzBhtFYuy4BE9/rwBLflvkzN\nWGgSrccEuTGsAN1z6N+XgTJwLs2ScroyusUMhNTKoBkrrhyZqr8lDPXUDwfU\nLYsAJcl3W+o9fhuPB3cbdF8UlD0fESiXIIUxYNi7wf+nvICZngesRfRpDVBP\nUycSVh5YGgJ+CAY60CMxuHgxrpJcvxxmByiTmahfyDJsKzvcLzXK0h4Ibn/T\n9Q/vUT4t7xwRg9TrZYF8nwteYV79riBz46PrgBSMIM84lmOBbVjMYbsykOnT\n+keO/dX5aNOFtivn7ki+occnJho+zomv31/0AedOFCJYrpy/0sDNrfGA9xC6\nIPmHMqsMEW5MCW1e7OrolC4sUOAMLlvM/A1fq7fBjSCP18on3SAE2PbqyERA\nZnrp\r\n=3v/T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"339ad92b986fbc3335b33215c30c24ea62c2e030","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210816_1629098253983_0.10826323935404036","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210817":{"name":"typescript","version":"4.5.0-dev.20210817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210817","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6b0d0ce68c2381cc85fd0d609817cb3576eb9480","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210817.tgz","fileCount":176,"integrity":"sha512-G427tdOZrQKSEUcLF+dq57gK7D6CzxhbZggpEwqZP1HDuBhIk2bu+br9QvR5uoubR2P6lHhWhUZaCDmkIpnnDQ==","signatures":[{"sig":"MEYCIQDIxoHGWrHXNsNSJOsgA1mrB0gL4fHPuw/Csfs1b4D3ggIhAKvnpVVbvNms9nRK4gJ/TPqcEfMqySxxh2GFfGfKHrwY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62814741,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhG2KoCRA9TVsSAnZWagAAqg4P/jiPYJthdPz3a2f2UCIq\nynIzeGZAK+zu/J4cb/01H/mx7hzyqxKM7PY8P34/w6yaymSteRyldgA5v7Si\nf5jb2eydHdzy90mOHp6GYtEj5HnToSsSv4+aRQpG3v2yqGPn2lSB+eHQJA+C\n41rL56WJZOEahVrJ6qrF8ff2SKTDpfFDxUmGIejqb92rmPI21jzSiPqN04Sy\nCsHifo1PVm/rS72lM4KRLXE/GwyCL+XIkrFEGw9+YrZE67eXup7xw2pQH/Kx\nsvmN7zB5CyXIkhwe2fCt3Sp/J2Zkz0lqGarCIneBde0C4XQIvvOsb1A+ue0Q\nQlX0cpmzUM2FB6kcVW+aI4M/bwXWHwqF3YVM8wgQXpU3mw9JqBYCJ0NJQ0ZY\nu2qXPg5/OkOEryVF7XmVFUEIKHv9gLobU5IOyK561QM3u4PGZvYq6VXo7uP5\nUklqL7oK74F/Q1fsJ2CQ0Uo7XBjchy2TpSuI9URdayaFjP921Ri9OHrLbs4o\nUKx+JgpfqMAel4G9rV4nI0lSe94iHzJGprZxhy0waVEMfx5CHxR/+cgpOsl0\nnaOjIB90KYLa8lmtSa6nWBRN2jT6XisTp3EaNvRX8m5C7cgnr4h/aNpnVwPR\n85x/2RBVVS3eovCtiO+2aoQAaO3Bdu1EAANZToUSVw/v6/ajNkwIUsibEpb9\n0ozm\r\n=QBJu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dc80e6a28b693ca9d8406a4618d7fa4723a0aa95","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210817_1629184679778_0.9212772509377882","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210818":{"name":"typescript","version":"4.5.0-dev.20210818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210818","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1e2ce8afe90da5db4cc40f0a3a28a8ce30412f6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210818.tgz","fileCount":176,"integrity":"sha512-zsQSS2DBSBSneBOFjAF45DaD76dK4Oxl5rrkdgetxUptRmrAPMq+Dy6lFe20mpUK4NIROEvZ7ozk7EA3+75g2w==","signatures":[{"sig":"MEQCIDolfbpQ/zVA0hyP2jebZluE3t+4S2NAETqW9cm+g22iAiBLmQ/wFD3iRT6n4DdhEnXKe+2r/IQLa80xjBBp5v57eQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62813971,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhHLM/CRA9TVsSAnZWagAAEn8QAICp0WamumBGE4LZXU+F\nti81B4U8lbO72UGWiv5P7yqsv/PSIVzoI3As6NgbiBhrCgVGrE+/QK81SDAM\nfVtJinwpKvLzaiqqfcidjThP0HslIvR1a4py+yVavdP77QPWM/VIeXd2xM5k\nwM6PHke3+cq+RHWvLhEyS7mU8JkSzIDDQ2OPswSPwvPsLmohEefoJZNygwJ9\ncgFDied2P/Lfcq+qGjecJ4Y5FGnsQesddzk5IOvzBqL7ddp9WIR7pJUWlVt4\nhYqduSoYNqN235y6VHxNYa2dRhA1M/Ol2/XWAaub6FJMfQ+y9Jt6o5QeLxz1\nORSbPWVZOLUz1ABE8mBZI1CTJCBAHD5KK4HfZbwQu+TFgFe9DUboEOlfw5MZ\nTrdWYsgMKFeUC7E1Rr3GaEvckuPo1Fc5N2/ZLgVb42Yb+rUVXI5E1VB1wVuN\nKxG5V+fItkvuSW1j1CUP73E+AgRaI1s69Af7SX+wBa9Rs7ehJ/bUUuaSNe7r\nU8rqVqOjgT1FR6EKXRzJxdzTDg0ZEwYzPegxwzwiowUzEXnasbDzyA0vijNu\nk+la+O6fyO6JKFnxVZt/DGADWQ2N6gFDgGT9eE7gS2O/jlYUGlfhIcHDQhUd\nxrXGMnIxqiDa6kPhntyeU0iK1I0QTB9b4uE76lxCAoEftvnWaF1gJAQHR73I\ncuJO\r\n=pGRC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fc07d9dcc6c94626df329eead7be6a59fa380751","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210818_1629270847288_0.2782575084233443","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210819":{"name":"typescript","version":"4.5.0-dev.20210819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210819","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a96209234c6b5838b7a456394e28e7edb73cceff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210819.tgz","fileCount":176,"integrity":"sha512-XZX/ymTw7v9HgB3MxjZnmvll6zLE7MepnY0dR3PlshWPycpsrwOUrAi2BLNXxaVgULBMVNJexkQwNkmjaMFEMw==","signatures":[{"sig":"MEQCIDfA0EGqlrrmn3YavGLxwYo5f4DbzGOruyfR+vgGCw7fAiBKdGsW4o4gT+kQvVisYw+MmJi2PbyGC7cdG1BtMsWM8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62815291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhHgTKCRA9TVsSAnZWagAAmbMP/1Eps6tivXiq78wWiKB9\nmu7j6v395Tf+xA0Qsf2QdNlPfJZRykNHccOadOgRRmStGgOCnueWYTVBEyp9\ni/OaEctlTCYr8+2OBI7OjHaSTuDLGGd8I/KSSPHdybSY/kiPrpst8bKWRK2U\nDw8B+IR97EAyU40PmFsoFhNOMbEyABp2qquBahUGBtmtC0FlWsNoHqvlYHCh\nhMsy0TqUOfUPw4nHfdyiY0C73v6tFQnYCs/yjIPoR2O88t/yTSz5Gc+U4Nga\njC0kysLyPJ+qhgslRjSC6Yb1QVmGYuEgnK+npPmlihok6qULNf9DYlsYRlFC\n/tZVsGkkecghpZoEPnXEwM8qO/GOkCSSBcpg3GAUZLdd9jKVpB8D6BPdYWHz\nJoMEwRzZe4tA4XRSYmWUiVGuOjIw0DfjpgPn7/v0zmOFdpy8E/l0y7oqGxbu\nSVpkfM0umzePxwzvebWldGk2MpeD1NWAa1WZweqEBSLS1UaPen2c7p4GhSw3\nXRyu6V5aNUrd2juTxU/AJB+gH81f4KYwgB4PgP6ejxqGrMYGToebHiLIvoe1\nrACaHTvU3eBzyTIr/i/JTk8wY2SnFvTpp6jXLakmkzjtQ1LW5+x7rlq3R3qf\nfVLTsznssOuq2CJtL89OS+uctyX0Ap7+vQyNAGlj23mYQjMCxO0gw127yR2d\nOp8K\r\n=E53s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5da27627022a70426ce0dd9548619114ed7026db","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.4","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210819_1629357257854_0.15585666799303421","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210820":{"name":"typescript","version":"4.5.0-dev.20210820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210820","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5745b802a6679e925d02e627cb4ea99ceccc4649","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210820.tgz","fileCount":176,"integrity":"sha512-ZVCwAITgQc3/i0xXizD9Xm8rWufZYFjEDjGW/ONtekWUys3rxQi5oTNRMWRRfN/zm8kDdilZ1/lBt7mtrp/VKg==","signatures":[{"sig":"MEUCIB7Q9ZKV0Gj/aqUeo+2glqzyLf/j/EawFpNLfyOGLnPxAiEA5lbfzZjDdGLguyRZZrhvThKy6Ll1fM6hk3faO6dUddI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62828007,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhH1btCRA9TVsSAnZWagAAVKgP/0I4MVuch1+T6NDnf4s6\nvgDQcSm3kK9bM1Vl856x8pDYRawlPZ5rYu0pVj4N4PDVrLnu6EUeSMFk1G2N\nX2DHttzU+ipgcr0HJZuufE2HOQZGz6a2L7tkJ9uSSpn7ATsLOfTcYQei0mRS\nG+me1EWaasjyTIeITCQf6J266O7kiraX4O9SxFsTT9ejPiPCixIk7m/loznR\npMI0yR7BWWqifMP80mKbDLfDNWxvTZPTso7OF+mnzaDqpHd1zpIzwuo9Hg3o\n0grfvo8BEzof10RBS1/bbfbaQmYq83azNvEUgWJwy1vCKlqNGgjYcq0WHyC2\nPkFy/s6l1zxWseNmDmpL/xebuIRNnggCrQuWW7IKbSDuL6GqF3YIUmDXkIxo\n61pq49W+WtkJYg1SGuatNtoZe2bnqluvXD4GQoqDwOP5VoUl2OARNrbj8oG5\n8FxwUxd0YGh+lCfTcQL5D1eGoHt9j7Wt+beeORCT1yPWqjCNqNacXJaHr448\n41FpSdnYb//5pgjiHH1PMa8bzowYIM6tEl7vzBYHS21rqewWEaSHbRxVb95y\nnmr6Kh4jMdUqJzqZLt+V7pYSI2l+0SWUk7L16RVVifugNmNdqF93yvtn9/e3\nZCvZITsbU3xny3Dj5xG6nzwIf73GKQgCw99HX/wSc0P4EdubvelF0ibg6+Xj\nMZjL\r\n=prAi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e00722f262f8a84c27f01e2b6a41eecb87c4afd4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210820_1629443821335_0.8774248433599541","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210821":{"name":"typescript","version":"4.5.0-dev.20210821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210821","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ab8d9e7ff8b67b4176227b890d5648799fea2a1f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210821.tgz","fileCount":176,"integrity":"sha512-eZZJFIHnWiDsNyRoAIGrhK4D6XWdEPBNx43Mx9HoFhDgk+N82lVCJOPErHJNvZ8snqsW2l472H2kHOCqMa4i/Q==","signatures":[{"sig":"MEUCIQCZwEyN7Xh7+zKh+lXa7yeTErj9blFamQu4egwm3dgYwQIgMCLFDcErntT1MmPlkHMbId9ZzOssOy4vyjo5zEdq2/U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62844563,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhIKi1CRA9TVsSAnZWagAAYtIP/RFkZds2gPuKKkBSWKet\nT24xAKraJ53KzHQBza/6FRcLROiajDUVTTScQ4SrurNaxwI9i3tmMUQNuvmo\nc1C2rUUy5yxtIIplOUZlnTriOX//F7ggGPTX+ngEEDQYTJ90T6+zZqXbNUBO\nSygrizupl3oW/ud3DmzmEkIqaLgjx+j+gTItOckTNXguXlwBozCdaFXwadEm\nCp6FqiMMDRQDsRIShosQIRC16aix0eLL5Md9hYVIFMgXqY8xk2EOJWjD4KkE\nwnQLnxgxPy6HRgiEy9lnS91s0j8oBshP9fLb44IZq3yua+vGsqVsOANYpuMg\nSOVSuAyLG76vefu3u0KWTbgMGQ4BRhFm8sX0LzCn85kYdo2dBO2p9j2bu9AK\nStI4K6Opec4nPLWiLq2iCKjo+u26xGF4BvSlfYzoXZy0Som0Vl34FaGMMCpY\ncwMMZlIXo4ZP4vlsJq1sk/WCWYuS9HPqD40LketY9wYhkX+s8ZaeA0eSPsax\nkum8l2aLzaCXz4wb6RF0GSWkFK+vLDvNgC/aCEWzL7es9MstNt6WFmpkCGdq\n4NZPiRMBOAWNls40HzVVMwJBcY2DLMJsuxOH+uiIYqcHkkh5PKBrz6YQuuHE\nfbIjnL23cbIxt591nhFqijTU739w1De9ReD9eofd8umKy9OqkEW23QOPrgut\nW+Ok\r\n=1Nwj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8362a0f929d74ff46828016ec67c05744a8dbb3c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210821_1629530293425_0.796924255037545","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210822":{"name":"typescript","version":"4.5.0-dev.20210822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210822","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c748faf295596caf05af781c1377b8fbef6d6d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210822.tgz","fileCount":176,"integrity":"sha512-MY5d9kJu4lj+nwsvdi3sQobJ1LzotLal+2BOeSHhA2TjrmsEwf6Zjl8kfIUg42qSPlz8aULuVQblZKpJLpxRog==","signatures":[{"sig":"MEUCIQDJ5k+1n/xfoGRuHXqdCKkp/ST+tPfgnwnyBU63QLmSkwIgGyhzDNGRxGBFHGmBgaxr8CtY4vFC7XitoGnPe4uBH30=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62844563,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhIfoJCRA9TVsSAnZWagAAtQEP/jW0aIjpceuy0FLONhAS\nI9Bo4AY1RRW7gmv4b8s+lFQ1HiMiFbYkRRVtBiXw9htqI6xPito2jHAtzVCx\nVMn7vkhzv9+/wQcZ/bEA9KrrWvW9VbXiaYP6gIlnjaw3P0PBi4G+et2dt3XN\nrM+wd0g1TeXImurqxl3UEpp1V1zMrKJsMUrvl6ifdXIZVK/ZRAWnp1hnyRHZ\nwHm4fKmKpw2fV+Oa5ptjB7Uz1nYW9Keb87SD7PcQkHwr3CKk+7Oy/hRXecgO\nkztwBpZzL+WVdki81biFcitX9kpE4bPC+ybQtnySo46SfjU4g3XZzYOoBmnd\n1Yg5OAxupzKbzB63aiWf9XH9J15P3BJ4MMjDGKaGSi4rIVBc8KxQYL+g66da\n99HwopSSdPn08jYDmr7plUbwlSvCNYzCGBbfZD0djMcqtnBAo/1Rh+UT1TCX\n772TmeE1g2X/iBzPobkXb+LxPi9Wj6ChOktyMBw8MN1GZOME5d+tns8QfL+y\nNQUrQ7I+yFjNmMXv+G/fR4qGV+qnOSzvqmIbzQ1VSbMq4zr+vZ9JkYOTwRzE\nj/fnlyZNWLNVpUUmsyR+c5oNEu8ze7bsKpPbfc+C4kAxkMiHwC5h+gaRBtFb\nu8I0rPMRZS5raCbS/Wqre27nYj4TxSxS6PGWi1e6xFK3e6whi72wbgGpX4Ua\nSFrm\r\n=shp+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8362a0f929d74ff46828016ec67c05744a8dbb3c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210822_1629616649622_0.3297692181990266","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210823":{"name":"typescript","version":"4.5.0-dev.20210823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210823","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d8445c2fae257f692963f43d8890b3cb127ff18","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210823.tgz","fileCount":176,"integrity":"sha512-6YyhX0SZFnDTu8ggMKjR7TvaA8B0Q0YdZyCSDpQIvDkBnMR5esfUtFTvsZAJAA2slTFe34fPyOB5SGBkV2A+oQ==","signatures":[{"sig":"MEYCIQDXQjlv5isJfpX/XaNrD5MPFcC29D7Rf49OnjaTd+49VwIhAJDbzgnq2K3uTM9ULuGeSbd8p8omv2bmzFoRtszWKKUy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62844563,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhI0uBCRA9TVsSAnZWagAAnnMP/24h3FFPCbDRdDI3h/bs\n2p6nT7i0NTziiz0T45R7UEvtctK4oy74+ZiUKDKqhm2dNQowSoJfQ5yfWNZX\n7eAvFAs7Quhv0vjCgeYr8O0oogntxeAIrTzdAVyjZwRIPXqN2e+zIdeSZ9II\nsbTt/vddrEi5zAdKNYbjTOiQesY9iCFRmkAnyE9Sft4joMcKZDQIgIwPl1Ox\nDFu4Y7YPh21xvMVibYOFnDJ6kDoHM4mO0t4lz+eVFWoE9FWT+4IG/ULRc06b\nQep1NmYVZp50joYNQPPnYPig/zU96bf9954xFYiImhUMCdscBF2myXdYRISS\nz8MmLD2eMAeryBfAHUH8lgx1yXO5OBL9nKL37bzoqJiQDDf+GkB56o6do6n7\n4Cv20t+tOWWjUvtzvUzYyRZUMm2pFlGYnssPmWWwE3+V6iay2BJArHBUPPuE\nwlz6Q9ezf4HnaHmZvbZU/dfDNARkxIupaFwkLReuFJxGI2IMC+7N/eUeXHnn\nhwiEcHoy8dMEONWGzbRvZc365HLoVLf10Xdmf3iHlqQK2YlBaaj3u2YvI17x\nx0L4cx3KZOwtSHQRBeg2oXVL42JP+VykdM2mcjuhA3h9/uKKq8GP7gOkk5l5\nWFK7QVOfsHsBo/XqUEZr/LIcrk18dPpV487/jhDm9BwulzhQNu9vzzCcZnMx\n26tS\r\n=zUKD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8362a0f929d74ff46828016ec67c05744a8dbb3c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210823_1629703041186_0.19556714409747333","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210824":{"name":"typescript","version":"4.5.0-dev.20210824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210824","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e734209fbf767273945d474d927b2dbf85dab556","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210824.tgz","fileCount":176,"integrity":"sha512-kTTrSOkudpHTcFaZZX7XkypWszmAntb88l9xlQPf+lhWf8BIPVPTFZb8QY6plLkWPvrHWLpTqRcyVjxKg0c8BA==","signatures":[{"sig":"MEUCIFA52JWAC29N+UyN9PYt3bYdAtCDaxZuQx1DghodGjPkAiEArekLoLTDtippHdF/gDfA0LEYw5Chf9MamgEDmu5J470=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62842939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJJy9CRA9TVsSAnZWagAAnLQP/iN/S8cJVy1k8OWKk70w\nF+3EcvoQCAr+bdMtM3rhJamIlWAycXwxoHlRKO3OtBngCPf0otV/vjLjAGYM\nscGwDuXARtOdin/BnhurpZNbKlWr53hM3VKLXbCpp2z1zoAHmc7hSWAb+8Wj\nmkV2mUhzBJ25/LcXQZ25JVkflzUzcXRFwyX9uaRtSJxAJaAeqnDUL+qzhvL1\nRq9SzDm5Z1mYWmLNP+WcxXSWCddTO2RsCUWSILrpU28CADM7DmVz1DSdy5Dz\nchVHEnSBjDKBM7G6mWOwrooieqCZJR5wcucFnIUccpLcaTDGssLpZgIitOVU\n1+LtH3E6o3uFrRr5heoFfm7kzXVBHCINPQVmERSwaETpLqo7dsiPFe3fOMK3\n8R25zXlBttUfMB0fdYGBruenwTaYLtrMgsMEo/Pffo3YYxNR4o2lZPiLoI2T\nRo6Fl1iryZd4qf5zpcdUKatAY6813UvgAHuC5Bn78La5g7gdrxnlcT2jm0+i\nnU3jZqZRjYxKRXYKvbUlSr9BwtvSAQp5bTkOuG0Ya9tbKm8KEF00pt/2DrTJ\nzjnCRhYXa1zbjrmKTRXkxGa33RSHkVWRQpFhkKhVWHrIhb4q25/u3GCjnFoV\nUC3tRmHBRcAm3eDhoxjRe4ppMTzeNft4HSgX22Hng5Gho53XyrgKbJoaqTkS\nnISv\r\n=Q6/z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"59b8bef3e721262a62dba1612a3e0d14e7507f31","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210824_1629789372891_0.917684519148426","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210825":{"name":"typescript","version":"4.5.0-dev.20210825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210825","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f0df371e7923e5e82ce91af7b9c7fed8cb690802","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210825.tgz","fileCount":176,"integrity":"sha512-/LgSPMeHqjmbwKbN/gNmtfFMbcoMDrlpR5raIGeYB+Qjy/dSdQd4yZrtDVQ9sNvsIEsqsX8WbeErdPpdkbIzWg==","signatures":[{"sig":"MEUCIFLRHWCm1ickaNlJUlMJKdsL7DeHJ3enBr7n0eGXkiyyAiEA0HV3ShWguqaP8TSllmhPIlnIpxyo8dcTAkbIYzttCa0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62776510,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJe8gCRA9TVsSAnZWagAArMYP+QFVopHGxuFe0Ze9sksi\nnNLfAI3DrlLWsgHdrx5TLE3Ro9WaLiUAu3movuoRrVQMKR8NBZ9rNhmJMbn5\nGPPL5F3R1raKBDdyrtsGKOecWy8bWmSOzGx/8LV5DDtpzerqj2LWGZqYm9Yq\nTGrKOc5GI5OOgQ0z0Jmd2fQ4BUBRcWU5DjK0rvHaNJpLap4HBYwdiztM46ZG\nE9gCgRgrb3k9/59q8X9MgWJr1J6ENw1MS8AdmvGaFQ/ZUeBQyKFFfKejv05K\ntn5ttfhJ6OZsK9kQxXXWGdF7HbWqORNsntO5Gj4NYLbwtA/5/20kFC6yYw3M\nEyUvPOv/0s377PKXMYotOhEzOmv+sxeYhvMF0FP7/1Xbzp3HtvzOhhGIJUup\ntuYcBfw3AesYRfaijzOPgFnGglytGaVY81hq2Z/WgXcFfoxMc1qH6BZ9h6Id\nLIxS7ZVOMitakUhexBlsLcqMza/OwC2GuXE2pjO9iF20J4Zvtsmee39VNO7C\nOAW+G9Pjxnsh0+4H18fDypO8KeeHjUKOTn9Qx/TVBXaN+fiEHbPDLeG4rzw+\nHv4WkJMoF990u1yzee/Ot7daqdnIUF5tqRCm/ScsXi/a/ONLv/af4HF4zI6m\nVGl5/YiETAy3m7FMOJIjtgVwYZVF2aHtL6QwUW+9fnLnQoKS88GnmmkjPHBA\n87VH\r\n=0rg+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"db0576c2514bf0a557846c09e872f0d6699a7f4f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210825_1629875999370_0.5995164514849687","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210826":{"name":"typescript","version":"4.5.0-dev.20210826","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210826","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c00fa7b8980c21f648e475ec340f721908e7bec9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210826.tgz","fileCount":176,"integrity":"sha512-ZFkM93Srjzl0dDBIBsYpQmxZ8884iw8oXAh68ifWN9l0JFk5bGeocJhlId26STGfaF49Ry8Ld8V5msBjo/5/9A==","signatures":[{"sig":"MEUCIQCjsceSuMhhqwvguDEBMwb3czatrH17/gEgDd015vUnDgIgBj3bixd3tjMpPRCTgVGY6r1CMdEFqPqQNnMtpP2grcU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62778254,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJ0AkCRA9TVsSAnZWagAAgpgP/iWMCfni7LWq0yAFDCIk\nB5ugn5Eya1qEM2EGZXahsLjx0YZN/5iP7qG6TEXzCROq8DnGfG+dEAB/OFCO\n6mLdNPWkkD5KV8pnpIAjbJIBc6lyWvHIGacBwhtbSpye+d3b4CROOYJkj2U1\nsy5NThXUgP72M9xk5qnBtnJibHc7vRDvqtrUfTQXh3BvFigTDdRh/AuogFVJ\n99eqJhD9nIkfI19Ow07O6HYU3Pk5LNrLsuM5bGfCf45XQTWAOIrIM3Q3srRn\nMllMo/BU0jsOgJA9BYsydgmOkhkbEkay6tci7cVKG4FU/MxTwkBg0yyMtU4J\nFuVJa3uYY27N/lAwv2kSbbwBexj9jZ3IzbvBDSTjK/7n0IzBwJibm7E9rD8e\nEDlLJC9ygms2EUlpuHFLUI4eXK5xx0wp0MrfhRCRNNKPrykQWV0OFawaybiq\ncpudOvZfDfmNi+Dj87gaBIvXk2f6VdNa2VPLPCZI5BxxxEOovWTODPwiO+Bt\nBPhPTZCRPj+pq2GMGvonp2Cf4xoioVo3zB+LbzWg1wkd/Zct26AWvUf9pHB8\nIR8gEc0DstV1bKlfqRuL/0hHpY5UdZ5HGz66lYEKAOdQWmgtGdJi3K1yg2Il\nGeDBFgkh6WOAoivHNIRXPIJGcHAOMt+Fonp92zppVTW+qG1QUF6SpwLougMr\ngiHD\r\n=XGiJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6cdc7d1ae39dd8b996a3495cfdbcdc2556b61307","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210826_1629962275730_0.551533596503184","host":"s3://npm-registry-packages"}},"4.4.2":{"name":"typescript","version":"4.4.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d618640d430e3569a1dfb44f7d7e600ced3ee86","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.2.tgz","fileCount":175,"integrity":"sha512-gzP+t5W4hdy4c+68bfcv0t400HVJMMd2+H9B7gae1nQlBzCqvrXX+6GL/b3GAgyTH966pzrZ70/fRjwAtZksSQ==","signatures":[{"sig":"MEUCIEpajwaCDFQUn9/fjOJIIy69TPFZSw25eHsKd0kmsdpPAiEA3Ltx0dcuk1RopLiSewtn7mCD4kbIMKcrfTEeegSNyWE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62736103,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKAHaCRA9TVsSAnZWagAAZYMP/jtFS5hWiDUjSNTKbcRX\nad+OMIz01aQZ3i0SuHFgXUWAf23c7QcGA3RahvOum0adIJUQZu3Vxqg1pzbX\ndvmAtoEPNXyns0TJjK2M2P2i/DtOTBNoYj/L3OZRiUZjViRuvhlFDAE06cgv\n+dR5pLacCN/bLT+asRe0ACsQ1FjAWyp0+4XUDdgonzcG9YGqXKMy3Sg/1bmW\nfVtl+pO4AWVLGYG6teCzgv17IgWGK6K9jePTOJ6pyPQc+HLHWq5Er2ImBZ6Y\nzIpI4epb351Xd6HpiPAg1ZArL3JxAK4qAAAzoKL1wueK4IhvN9kYn0H9kqvU\nMv0tsbAiWUszJBSRzxHJ+403Pkmz2pjUAfxw7so1KCmhcpQ/VeoAk26Lddlq\nf8IHGyjIeFMBgyyQBhlQKv95EJCaZrt3Rt7XAAqvSq+VT3nrxxuq6/3ZmEjS\nUMs52aJGHCaZWQplTlo2F1/u0NnHpp8+vSfSemLUPtZrvxB+/VA0oMNgO49m\nGcVbeplbN5gGb5swPqRy0kjJaSqmE7/GYtIIGi6ElFFTeq4gLWo1n7Jdtwro\nVDxEsfRf00C+cxIeEoDQksCBZr1bX4Z5w185lUkdXrZRTILx7cZITlFNfJcM\nuK4gNBRNU9oO9MOgQNKe90AhCNbKFMzrpEFrtZ2+5ofr7SoDD1CDE/hfn5YX\niJHl\r\n=O9kr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.2_1630011866509_0.9887001777064037","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210830":{"name":"typescript","version":"4.5.0-dev.20210830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210830","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aeaac505077f3a8d1de198ac538daac819b0438e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210830.tgz","fileCount":176,"integrity":"sha512-y+dKpgTs8oqPDRorq0+0AsgZFXLX+6/YU0qea5XAaIzFbumNFv2DDPOiSF8ozJ7y/YSvd+cyvyZtS5bK+3YtnA==","signatures":[{"sig":"MEQCICRGfGSTM7c4kPmF3vNWNbv+pnBSUe6okk7wQF80hdwnAiBqbRPyB/zwTDqoTwnDjFs56aRwvULK7kP7MN7U7qRkvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62794153,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhLIYcCRA9TVsSAnZWagAA9VYP/ipXnZFKAsUdJy9tmdmV\nTSE7YFuMc5p+FqtbifygpCcovJkkcROmo74Osr/KpkAEPt5IzZqPMUKzzu7T\neNrPzeIeyb/WwoSlxQlo9T2OH4X0abMxW3Z01nbWkygAfOA6Teg0iizH+KV+\nJl+oeN0td7lE3X6UM7Zvaf13BcAeatGYxPV7Je65KHXMo9az6T9YqcJDn19c\ngg4AjMrfsFWw0JBa134IarUB0bvu/qGwBv5hoS7sgkMCrbBmEQbdvQLhA8vC\ntnqTjMoy2el+rnnAhMLUJqEOuRSptSWGHvkUiGMLnhJsKr493gV3C5otqeY4\np25G3ue1WrtC15g/zoMyddNOANUg7iWVeo7ffyYdDKfTF79zm983MXwY+soq\nnijUSHDxYsZE/5IhnSX+HxN6o2RZ8aYMyJl15sXCWOCITvBnAdKCDXGl2ltL\nEM3RcTmY5leqtDhl8UEKLmhRTyVuqB1Q2GTlkrd6AKXgO2Ww6zzsNZ83WWoq\no632ez63DO5TgZ8XrztvpQW1VpmLa47e1Jq38KSskzbYvFybMqN5PV394lKx\nnlL/FPlYebNBmCq9LrzVSJZVXSua191LWdWgZs+kq9wZ/ApjMxkOxebLAwkH\ngOgxzvrK/KNoulypKUbLSqcM4IU3spifKeIWgol6PtlyVuZHg4SSPtmCTEX2\niVqZ\r\n=lHbG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7849342c7cb5045d4549739ae9234e9abac76da1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210830_1630307868481_0.31794793988580916","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210831":{"name":"typescript","version":"4.5.0-dev.20210831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210831","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5a2debbf0f976e411791f3c51621eb7388979e11","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210831.tgz","fileCount":176,"integrity":"sha512-zSNyMDpY4jz/pDtpuhne5vMuWSqxeCihsFbztn2EBON9prp6wISZqRELnmXiPujbTehjdMHXCmCl4c/Jbfq8BA==","signatures":[{"sig":"MEYCIQCaghwTaV8CkVRPUMBbd2/i8uSs5ba/qa9pERa8BNRNoQIhALxs2jtRgWbXH5fpLsj5ZlqjQ0Qtepulbli32d3pyfsP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62798078,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhLda/CRA9TVsSAnZWagAAPNgQAIsGv9QeT7LKA9UlCVHO\na++oLxeOyPBUkHN8M50yaSHv6uNhqq66OeAtHyn5V7Jy7ID/PIxdqzd6rOrB\nWMniy58K9Sf+XQUr5qgddYrNW969uPaHqMMvpEewARVt6OFVMmvhOTZdnNDw\noOTnBPsF0lEC9bZbA7f+/SRnq5QSUgXunxIYh72ON5RNEyDOL0r8qjWePqay\nQSbK3xinWH4dE/3NbhVtVXnNhnPg5iLTZIdqHp+EhDJ7Cx/w98zUGvWTeyYR\nqLPkq5D2zIQgcityOrToSwNRv/nYv88MxN9n+bYlqN3rF8T7t0luIJ02AN7M\nMoMq8MpJ7avt8YM4/hrTvHb9HLgBBF3MOC7b9AeelYWCccrirXqEnYts0Imw\nsAfFPlRg6w9aHgW7nBurli0AmMUb7LgtlndJQyne4HEqb3grH34orilf+MeU\n5Ye80+gXH+lKHGgYTLERnW++p22OM3sIoCkif7Wf5kb0xrtTYdP2tP9hhut1\n/2u6FGyuUmr5Bo0/vOFS3Cnt/uUnSCXlPq8r3sPAlI+WhB5ZqXVhkx+0xyn4\n3tCxzjyHBcZYbw3KkRgnGRhdRa5q05j48/nI4dVoUasUVpoNJrkxr0HTvk9V\njxwt4gH6xg9GcOyymGkIGjAk23eZEaMGxBrWtjU5YGoczqrdTYCDyoj9QgOs\n2Dmc\r\n=1tHW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"80a1b5ef9251795b4c7d86d74d3dfbf411f704a9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210831_1630394046516_0.021000745532783638","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210901":{"name":"typescript","version":"4.5.0-dev.20210901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210901","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"650c74c1b476d3c869db829f6f0bf60584355e2f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210901.tgz","fileCount":176,"integrity":"sha512-qGM5PhZXSpXd6iyLP4L8A18HyGitaDI12pBdbd4QQTeuyJaQiF5XH4iH3ifJEyNLAaXyFucNLVRe2mr3y6uCkg==","signatures":[{"sig":"MEYCIQDkIWkqFR9o5la0i4b5wyIp+SxNpndInGBGSSyk7XAvrQIhAIvnCC3LZwxpcqWl6iJbLvJh9bOI91JfEjKoMX94BfCm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62798078,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhLyioCRA9TVsSAnZWagAA+G4P/i+2yHRwmTYtBc9bSwTw\nPHp5ZWifgoZ5iQksbrbZk8MCSoMigZ5UnsBKjerHEPbBCXvsGlImdt72Dajx\nLtwcBj/QrnIL+AjI71JLe0nkp2NGSzw1emE1rcAA6QF8FW3NXPdrDqkvwyTk\nkYunWlVPThyko95wi+6iY+K5AkensWMweRkWmR9UBerTe3zSjWpzdkk98Q0s\nQ39vh4UipHgXQXgNQfc+p1YBDJ1Q8iAgk+TeBgws51MimEA45+Nk3SGWr02w\nSsumUCEANZ6iHxDIp50VgdNf3WFsaRTWbqTt/qgPk40BSBxc4opR5u9B7mVr\nZI+gurng+RXfPsGxuqtsNITiJkqP8XtD8FiTMiLq8s2MauQuA79cCIxxIVhr\nNFemxYiMbRFJp6bTBfDLkckEmJ3PdmRiM5lP/p36H6XIDjpfnlNuk9mz6il2\nCtyuvQ6NnrJ9u6wRRLuo1ypnkJyBLYSWBpyQ25YyepT4JR170bOJZlizXpON\nv133T0dWZsJm3pjVokyUZ2GNVd7b1T0MLo7UYlT2gwRqVt8QRL4zcqNGfmWX\nGcfafUpfXqIucludjBl9mbXfRcCwVSxd640ZHTgsdKh/J34XHloWUxkRcdvi\nwV4UaY4B9sNKcKZPTHKrvzo6pAep0wRZXohVgcBjMWCEVM59TKq+YKMOhiLn\ndX2F\r\n=34Q6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6b086689f24c6e2d03720861e0bf9b4442f414f1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210901_1630480551000_0.865317957180652","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210902":{"name":"typescript","version":"4.5.0-dev.20210902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210902","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a2f9152f5ecb251e1d69c8135778c79ebac744bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210902.tgz","fileCount":176,"integrity":"sha512-fZg63y2Q89H/yuR9eJ7IDZDaQwEgRZwLxK4xtVtYi/g6ONVgLmaC0wy/uxQ9GVTN/7P8r7PHqpsb6icYlKVuzg==","signatures":[{"sig":"MEUCIQCb9PCv9S89eoqM9PYFtRq2pGnlRomEDlMdEPbDbr9gxAIgWdGVw2zjz4TynP/elQIYXPGz6hHXTjLhk4sxl3cZoWY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62859278,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhMHmTCRA9TVsSAnZWagAAbkIP/1pCtcXs0ns8mdOWCH6G\n3ZQqiPnpfb8+6Kgn4w0rlhRhGteJ2jCAUJ4HJTu9NiUMUg08n/NOUoGpnMwl\nfM5YYrYKmJESjcSfFD9mcq4316wRTxt5848PQQySwXAlxBZP5NAncCOam+7R\nobZAbGdSYERWFrZhxambrmTJvhfNaZneqyCtvOXnEB+N3EECEbd5qxzQeAiX\nPaYynT49+KC3NEBMfZ1QxvMiBkQzOz07XIgaMptaToKmJIV99bE9IdxEaqcI\nI1Z2hgs9lCQcJ0Q0SeEI/rwdglOKEzbm6AbbNUfYBazLPypL8Io6DQwuv8zq\nPXXYnYaoRgW4gpm59qwTUeWnqCZi84/k5rhI7U1okAnCzDgtKK1zRNx9Hxcs\nYu6ls5OOeB5SX8DGLNcUXruTcvvwskefTWK76fVmL2b9BhiEFmKYamvvrSkd\n+TL+9I40iZyyj+BEVNBekO+5N0lFostjaGmxDMvTNQnYhhJOXKklFYiyz3vG\nHFygr6zzV8yllprfOwgIXXXGHGjH1Ot7PmKiknIIC0qB2t9QPH5dDWOTI+Qb\nYVuVNAq2Td4hnXIQvRNPXlJZaA/wNvliAlwVMHiWhEbBVdS7sFs46KBr2OKB\nCwTUp3BezTfGnqTJ0b8DXer8mcrvIaf5T8LVBMhg1Vkq3j1pcGp0wJuc+i+4\nSr54\r\n=30dv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5daa6f45a37713c3773dcadcd20f19bec3a7508a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.14","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.5","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210902_1630566803216_0.38555081728308416","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210903":{"name":"typescript","version":"4.5.0-dev.20210903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210903","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"011fb4ab3597253be5ff08f012f2c4113e69c990","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210903.tgz","fileCount":176,"integrity":"sha512-18JlNGxQc1Erm52kpTqBWSQqsgU32EgGFLrblxfwBVSKh0oua2/DESzQhq+nvNwYS8quOhG1uij9eGtzs7IUfw==","signatures":[{"sig":"MEUCIQCkQ+IcsLWTFU4a5xZ5efJAqZnizC0dwendfM69kYA+IwIgVLNLYtDwIv6p1Bib/FT83qIUIqGXo9+jicpTf1vPZOY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62802822,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhMctNCRA9TVsSAnZWagAAMf8P/3Rfskl4WUgotdAk8Jlj\njPKGAZ/uFTNveLndm+bLCg+TFcLQozQSarhu8lnQxp0A06VVMMqozmpXR5xS\ncIC0rdNCm3rAOWQCmeaG+HKWO+bTj7DcCKnVUgoyEYZ0zKd5JKPI1FyZ2BPo\nnSjl4rwpxEsAqVtS6LJFTQr7Nlv8IuFA+2et06Sf9SqrAkIeKcTCDmmZzqz4\n1feD2+5NRTuOATuk7OG5ulpiMIJdayka9nN7+cTWoZgA212OuJKFSPpFC+Y7\nKfPUlT9CuXMj8AteHObn1Y7QtQBr03rBaH7V9S2HUU7Gq1hhaSeLfHr3iV9n\nWKNqybrqcQwjWgf8aURyYqGQfpqSU/QTzzFwQUJ7U7ET151eNpl9Xgphl/5v\nhz1GYNbnM9KamwzJAf5wmj56DNAB2+KuJ0eUqYuNoOTS1AQHIW/RG95BJ+EV\n4PXpbrkqwqmuS3EC+Fg2RGZzo2Jmb8QhYCN1g4+ha1yiB2WuEWCDGzCdps09\nzI7RHi35fGMT5fWwcIHkNxoDd0Ek78bSx2FuZPusbIIR8aFpVWKyz17iJ1xQ\nHH7WxXh4xhbcGorvd017IDQrrlTFXEXU5J8P57BmpGG6EF5UPWxGyPyzHNo0\nkJs3jEn05aZ77iRh1HoNrjjwD3KrI6kxcymf9FG4PTOgZ2JbfBPCVYMQZ/7y\n2Qh1\r\n=wFi1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"66441e2f12498b41bee258175667fb61a11c9e06","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210903_1630653260641_0.9527636548354974","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210904":{"name":"typescript","version":"4.5.0-dev.20210904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210904","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"979d35d273ba208d4ede928bd38cd65183eb72cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210904.tgz","fileCount":176,"integrity":"sha512-16LeyYiopOSneuZGKVuDDq4ZAzmyTUPzNUWNMXhdhbuWmAHQg0XWJEsj4XaSqyCI/Nayx5MrfsGkewxrc1fd7A==","signatures":[{"sig":"MEUCIQCOo7Ax6rIipHV06fUPSfRivtO4l0HE4RMK0Yjrox8kfQIgBqAnZKNPsIoa5/YZ2+Rq8tzfz6yttFz4TaP8WBIa7v4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62786264,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhMx2HCRA9TVsSAnZWagAAsQAP/3ewohzC0f01ZyPvmqga\nQnMk7StWD9lf2G43zGIa7F0oYzmCnFuRuQB2+luCT1ANCwBeC4lg3Gw7/LTC\nTzYwdCcncEpfdw/E0Ny1bx9oedLvqxkvpLahUu7dsYubh2N7yVIE1aY8/p0g\nanWbWuPK3lGRKiUuYcgYo3Q7uEJXdO+gt/VZEUVeJhSKuczCITXPm6Ua4dyn\nKGoN6lDuiCZCYkLeI+ySHuy7FgOXW5Ir9Rd+jiamaxjMLbQswZg50XZuF7Ge\nr8EMNdOM5wF49VRqn1VOiHNi1zvJVEoxNIKd9mdoyRDFhHfE/iyxDu2sZIfx\n1CkFph17qasb2GdvJx1bNe3228SryoMxBoTxEfrv4EhS4aMzhRDKFJ6D0qGQ\nLa8E4F3Id496YP+cld5XaodtL6fhx/hxCN+OOv1PvFoun5bN6ECVuSbC8gKK\nqnQcCRw08eg27zt0XO5nUYvgY9JhXAvepriOw80nDljnfKdgqYZpX6Va5MM3\nrKmFHm7UMKIRuu44sq0RUJ9Mirn5q9qcwGKj8wOgsQ9UNWIWK3RN4pz+U/HC\ns0JSCII59p1R4Bk6Jyzt1Yv4F2Y6mYkaVZy6tbsqj157HXOqYJuFOO2N0siD\nCamr9+7UELrdvjsI4MZ34pGF6DoihwWthrjFud8K0y5npCg2X4T1KPm+tr4I\nhPiL\r\n=bJcU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dbf3cd38214cbf84a1c39ab631b495bc40b46b41","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210904_1630739846853_0.15386359346937617","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210905":{"name":"typescript","version":"4.5.0-dev.20210905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210905","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"90f281f5833cf44dccdefd3453e46e81c7ee4f76","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210905.tgz","fileCount":176,"integrity":"sha512-5/mznb9mA/k6VijJiFbJTls1jIzrRnSI0g7m95QuWJTMb651QBTKudtq9SXPuvlL9zJytH/NA8jquqrCeQu9PQ==","signatures":[{"sig":"MEYCIQDi6DPqmRSJasTHzEDeTk4UvpNcD8sk7oekZGDY/kHtdAIhAMaCdg9MVoaXMwvfjc7Cl9OIYHnKxDO1k9NrGtcwZUcX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62779163,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNG9FCRA9TVsSAnZWagAAhXoP+wSCdbq8GSn4NcWkGDLD\n3Jz9vq5YLRA6haSnvtz3sgIF79RuqFdRV3j++EHCqNssylsO56PoHlKDvWUt\nZDEtBpXYQ6tKAxrKi2pdPQFsUU4B3m4SADGnetfG8vbw2TWrFxIvtLgMtzfG\nz01Ypvl5EpWQLAzfNYJF8XE09qdwsHSsVXvTKvLPubMPkLlW4KAUPkXlrJzw\nsyQKgevCY8TWBhSsSxbTWDRsF3aSyKyZUfaP61A+mf7stfokIhx0n0xtqSpL\n/6O4ghAZV03tWZYO5MymZBYqsUYs7JZ8/PscxXdLXhGe8zJFZ9g4wPSCjRzw\nCYq7UzQ57YOqOeK/UOXfymNWlxi8+t7jFglcGZNgsgtIa8viPiCyxPanMpsE\nyOvFM7pa5cYfv0OI4ik9Z0f4FNj6he6XUJ/kHygwZHTR0XcabO+K4sKOmZJm\nqIFTaG3Shy6vA9Sep3GKkXhH1oJqqswuvmo6zut1NGQvQ/GMZMtO1wNiX9cO\nK3dk24aNxGhQ+yQo+azZkCHAn2aHT8xaGAOc4qZUdKNAlUA/xSPJ0tvijkgk\n6yUiTdpinFOxWHmnhw6lcl6XxnHRHceDD8IevP0n67i3AKqonzKj2Dyh7NUN\nt+VLym9UClxRJA+QL54FXCE85UoEBefqm5qwGo1bZh23rZjaGxdm+85fYNAR\n7Kun\r\n=czT+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8894262baccb1d965e71a2d7830236b431e224f7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210905_1630826309013_0.5733884983796078","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210906":{"name":"typescript","version":"4.5.0-dev.20210906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210906","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92e95d396cca9371db86b0e19924df92d8ef6fda","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210906.tgz","fileCount":176,"integrity":"sha512-2YaBZ4fwnBGXIg44vPApNNvLns6jL+uJOjIYgbltUvD2KP6TopvctCtGKMsvS566PbC5sTUv6IEU6G8THaxAYA==","signatures":[{"sig":"MEUCIQD+28ySS/UO+g/jFCiXc1F0fWt9lQKDZeC5yGVrDRbY7AIgFCybmO1ffDrEDJyAxo3ClMHrcieG1icBPvJiE+9jPXY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62779163,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNcCjCRA9TVsSAnZWagAAGfQP/RIOFpxyR1HOKKf4Cfy2\nvhmGoeP8KwVcQg++eiO/PnItJ0MBd7WN3+tgYPC4/gdtbrQ89nE1y8ojhRx0\n0KWGVBrlweRH8nfz9KVeyZ6wgCRJbYBIvL9xo/YHmOuf4xBsl7IctmroDV96\nm8K/MA0tE/8IfbSOtclTeLiu7HLydvIH9novpJaYokZWpZ47u9VgxFwzVc90\nC1dZYj6jvJDyuGE/wi6xHPzFvDS7wLnyNjdGCkWfVqtrPNHzWVygWcQqfdRb\nYS/TpPwNT7q6HdrOgAEm1gqRydxNcB0THut2NMbgU1yR+UA/rNmWYSK4Me7H\nrxrb32RjK+kYpky4Je3THT2E7/9i8b3hytIBTKVsNUnIUuEeDOgVlaOObAyM\ni8PFRinrhzAlbsfwrCzibC++sfoZ5THYMnN18YbRh5EB0Ox+Pc2LXpaQq8r2\n22Ff8yk0yzVNAKUyf1s5ScilXgIZIvUDRUW1Dk/lYuqfmBDFfC1cAAojNHhM\nsCLZCV8nlZ+dcGqoUUmo2LcpfMdBkoxNLYsg6YA02r+u6CaOHSSw/04HGvHO\nRUBz1q+Q5nm7zohXhbGorirSzHX/l0HF+QmJ4CgBbnizNDL2SPp80jPad2hb\nXq1RRbeNvztAvfYRymd3+n68ywMZPHBWo132yfINm8exp2bNV+MXNiGnZ1z/\nAtsl\r\n=5pxt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3488e6e3003c7d17f7461b837ea276a92f4119bc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210906_1630912675366_0.511028412019769","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210907":{"name":"typescript","version":"4.5.0-dev.20210907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210907","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3575d18b8e3a84d5ba3e498e5a540c79320785ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210907.tgz","fileCount":176,"integrity":"sha512-zzZnirJe1AWNhriDpja5WvkrkWvu4YZRe6xlKW4GBnrgtLpmhjnbwssp1UNPLumfSzYrdiGXboxTH49qPBI8QA==","signatures":[{"sig":"MEYCIQCpNkGLF+DZ/TQ1qqzdH1RpsBE6ktpKUo0kLbc16re5pAIhAIfbtwP+uS/3LD1lhj7+ie7ItFc/2WyO9iWynby0Ykv0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62779163,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNxFkCRA9TVsSAnZWagAAPnUP/1FSd0TNGT4gvQJU5X0G\nniCyUcqNW3wa9E4S6gnuyjQYOQ1uWMRpblDM8hQGOwSAYFGa06wDkZzDCTjO\n/i3rapO2H1FiZ/IBExVX8uLdGBPAZNm1WxCN/X7u/hnKAoU5KxEqxfzvlDjA\nnwitopStMqgYEeUFXLbz+Yak+oyB/dBYF1xVA17OE/EO3M0n8QuL03GkMXFy\n5gXOF1fXvwUcJlo8ycM7fFdmMAZaiSJRjj+XtSOwhSli8eRKUh+ItwSkAQCl\n2QN9HKXjsZy5aGh0rySLsO6hdKfye9JuLPqXWaOMxL6jYhAqb7Ijtdwbwsm2\nHYdyp8dsLtfQ/xOPJUTUUAOS3NezfhjWPRR4hw0oV9vSsD/aS7DcTrvGvt3h\niIOId6CPIJXz41L/kvlG2I/1xo77/r8g9n21MPDaOLNkEl/UcfvcNSmJUyjS\nRegs/o8qfqy0LjO+0sBZPPMmfMI0J7bn7b14FKqJoXZuxFAlearFa+ZKjKBF\n56G3IfMDD3coD3ipDhSFw9GPpXXWRQ4d+hbGNVrCSf4TNl90UHVHvU2GGsSI\nZZz/Q88UjE6N+r4sVMkf30wgv1e37uo45nwl9WIpLXkhVgbRsT6n0twp+7zJ\nIO+oJPY55DwX9y+iA0mo0L4rpvB3E2U39Vza6eXrSLnfdSSZN4raog1xoIM1\nWyZH\r\n=A7KN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3c8e45b304b8572094c5d7fbb9cd768dbf6417c0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210907_1630998884041_0.34328000996102626","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210908":{"name":"typescript","version":"4.5.0-dev.20210908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210908","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4cddecc1032d77c3e225f8305789a22c0fb5d0aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210908.tgz","fileCount":176,"integrity":"sha512-BLCOnAVF7kUF7Df3TKdnq9s9Nbgu+M+EbN0wZq+COgnEtJey92APZL+fEOgMDig3ovqpGiK7E23R/j5jOKgcwg==","signatures":[{"sig":"MEYCIQDd1nz2sQ8dGXIQM0octNHNszRNTBsCiNoq1ra/TJOPIQIhAKmnQvfaLmhAB4jGqxIo6oSj4AWvDNWkiyOn2yOm5+15","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62780161,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOGO+CRA9TVsSAnZWagAAXwwP/jncAcj4Yi3jQdBHc+5o\na4N8RePSN5PNmrGn3cE+jAUJM3nD4R+A59fofD/wTTrqpCPkaDeXyFp7CoZd\nLCFfL9Liq+IPKTf5AaJMCgGlWb8eLGQ3FMgANKND3IG4ZO2dCUy23n5frEYY\nVcNkCxEJqRpz3npm6WKSKE6RGCkr7+Kqf7Ln0qqf1seb5LR2WpIGbPrb2Gps\na0F/4PVNLUNGnFFu29Xn7w+FZQWTmXgtRSS9ietYOQtlsu3Hjs3pa+awlOlB\nqCMGHk6fuKhZAOUSD6G9c7eyrO7bVr4sKrKkTEh2+n4Einc3E29rEr6ip1l3\nCxiZ1aGxsDoFC48tovkwfmnBbZ2sGPDFJvuKdssixFjBRIebtaGI84DbXc28\nHHTiedu1ef1qtAQ0ejhTjQQ+asAf0zlGZzutkPz9H2aQ2NEV3GvDoFWhCvrZ\n69oGwScB3MF5dPAuFNdbRU6Q14Hba4RZkNrDgG0mkMP/OMMJgR7CmR38+GfY\nFRnMm6r47pAEh65YWtwiD1L1Yuf0ds42hrKl1v/FkX4NLOAlK8087pl896m9\nbfovtgF8Eicy6VrRl2IHadOYC1P3yXfz2Np7PeYcmCJUQgDugAfSJcSfspUc\n4eIcYDX4HKwZItdYWbRLTzl4RWxXjEb9AAWCfw3nLHmsnwYNaQ1Jr6pbIUW+\nK+mr\r\n=zohw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c8ada74862c0b17cb73ae06e01b1e89f68ffcd5c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210908_1631085501708_0.2095856884600542","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210909":{"name":"typescript","version":"4.5.0-dev.20210909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210909","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"16db0a54860c33fefdf6150f29e14fc3c517b8aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210909.tgz","fileCount":177,"integrity":"sha512-Ho6P7zF4Z69BLYanohqbWkc6XyuR/j853XNwPFxPN+NSvF20chzSb4EuYZW4X0UaFBrJJ5JYV3wIYzCzdnz6dg==","signatures":[{"sig":"MEQCIGo4rU7KPdTaQbwkGR/6wiMrRkOvnWlkJz7qkgHJKVizAiAIvYatqyh+LsjfeZlQjeQWswfHk23kJ/JjSEhxA+YNhw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62863855,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhObZuCRA9TVsSAnZWagAA7/8P/R+HInKNKAI8s9HnWzon\nuryGDPbuAWVWtyBwCA4UlcNbYc1ScNoPIDecOgmQVmY7HqJHKxte8AfyA4As\nuYzWrzl+ei4RWkfhIQlw4E49uYCoHxxsolmVK2Vfv6lMyps7kSPxyHTusJDt\n4/EWa406VKTbZXUFszLtsJ/50tF6QUbmBDTvnbjc2/W/+sDjyMECZIlWytop\nLkxS32LfRZ62IpfLi/pdVdwqxrGw9T/4/8NKvXi7Kp+at6qI1/MrN4MbfKoG\nsnuzxObt2VfssxR+hIAcEPBDFES6y4HF6WF4Jft/iUALTb5yan6F+Ev4c516\nYuKrWzGYnyQyTrM9e7Qx7UoirHhG6X5pufdsh+IsxghHVVyaslMcjPplOoCE\n1SdWmnmD8Gq/+gsVh4uwsIQmu15szJJ4LxR8KjjCztVK7BJbE3agpfEeyc6+\nVT6rEADZtb4eAj/AiP0ifnu7abFNFAZOMG/r0b75zxq0BAP0k17KBjbpQezM\nsh1idPVPgG2yTZjAKBhuai2etfptstH3N0rPT7ijixVHfa4Ex8VriMUevQQH\n/JAwwcRqxpV9fKuTFBYMh+qgNi5lqx4TEkOUSHMHuZ6W4XZDQB4cKK9WNMAp\no02c2AJvVBWRHEHH8ezBG4oez+xvarqTHXY7+b2VZytBvG4fGaCZKnwbSNBI\nvmhQ\r\n=KQ7v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"630012a6a79b3a811269c6ddd66310f49d2c02f5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210909_1631172206233_0.030011116204119226","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210910":{"name":"typescript","version":"4.5.0-dev.20210910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210910","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"24307e91348b9e417590df2dba512b899fbae0f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210910.tgz","fileCount":177,"integrity":"sha512-flWZIqtSwr08r/SMmXfed+2Beou4LWbKemMNoVIhXgWuU6wI+G9A+EWtV/f6XVhkRfJE5RERa4JHpIy8h47fgg==","signatures":[{"sig":"MEQCIBk5iCprLKa6VELT/DyL8mt54358w+AVTeHr6v8OKhTwAiA3aOhbEK3N62speYVB5mS6+9tW4ylyug7GAmMpoZ5XKg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62897019,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOwasCRA9TVsSAnZWagAAX1YP/A8k7Qd3qpHBCaJQWXSt\n1FslxY+XayKHDXTSNgFYLa2WnBnPf9Taw+kfPfsXerKll2lJjsTpvMODDQK5\nU806Ej83O5zeyGCmGG+6MbDUFDSaN09/IEp7flZMVXUmwLXHZWF3wiPeiBW6\noyn3SCE4sY+1mL1tVUV5jSfFZQT8EQKFfU71RmuMLvM29VRjmF9iGsDnggFG\nwVEC830yzxmnIVWVSgxArXoRiRxPPAwWEI9LeGvkdikA92DDZMTLtsd7cssS\nUc/7kOXxdWZi7BcwIc4hAL7M8PErF1J6onBP8Lmm6m7nIoowEI41Xd+rdNHU\noTRYj7dFvnPvNccVlrSaGS99DTumDxVLZTkCDnk62bk/d3zIzw7YIs8SvqD5\nX9xraeJu+SHIPHfZePNosXewuYPCRYqtSO73gl4j4JV4li1BiTYS5m08SraX\nBph4pbLbJZK1dWmQggJM6G1N7ujmS4fbf2rawSGKk2QFFeA37lDklTkBARjc\n3bs1jfo4XdAy4T9eTCBz5vq0qAKLjMRinn0DCLlM/xGgwFwmy4+DVyzqV96S\np6D8+gacA6VkWsesZO20WeBIeRxOBSrl1btURVl2nY8gDhsJZrYpNB0oviNT\nRSif6bEHkgmXi2wq70/M0/hrQI8evaa2wtb4Q04CWLDGITUA04Rzj8z8ow9w\np6JI\r\n=YWjh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7e400b4fe7b6a8019138356a8cab3a0b01d6297b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210910_1631258283718_0.976467752803212","host":"s3://npm-registry-packages"}},"4.4.3":{"name":"typescript","version":"4.4.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bdc5407caa2b109efd4f82fe130656f977a29324","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.3.tgz","fileCount":175,"integrity":"sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==","signatures":[{"sig":"MEUCIQDrYKVhzupFIVC1WjyPazFKaEbek5UTmrFY8dai146rPwIgMaxUQS434ayAnxgUWZgQP8Nr1mA7VWasBps5guvrKo8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62738063,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhO8pwCRA9TVsSAnZWagAAyXAP/RJWjIH7mA2vkpmmex5S\nlpPsooM/ujnV2bioaf6twHI0CLKgSXfCecfirUmnBKnzJh/u1LarURzW2d6e\npZRJE7Sy/x4yUklscVyn+R4R6eB9MCTocWj2djZfNYTaSEuhbvxCe1b7XhMA\nZdWJ2/ZyuHFRg4MFLodFNGHCniuo+O0GM7zWAu2/JaqVsepySYvSASOZLRFr\n5Dh6S6XD8Dl5STSRE3Rs5S0c5qSC/YvMBYpq3yImvw/06zpnF6HFXVdxIAbG\n+hJDuGb3wCdTEKWhhrKh/8jlG6zWdRpvj6HJ9Lx3+CvNU6IRsibFPwSQGif6\nIqJjw6hQrHRKbAdeqLGMJJHlPdCjpfpQWaCVHK5RqT8gjWYIBdOf24VzGAFV\nXPC8Dj05uOYhqXqWqRv6YODq4YLTvvi/PRsxS0Cf7xRQ7rDNVmOTafa4ydim\nserFSEKPu1bUrboZB7SGX/twAPaiWwAvOWtZmUxs6bQYwWuqT7oi07JgTzd/\nYO53RWz9ioeoJCFAoJoTr1NixTfxRppYEiVYRyvE2wMPbOpeaqOnPKAwMXxo\n2Ee5V5kUGjtHcmGZZxJyoIspCD2KGx++dhCjDK5eHJtK6ba0FWEVTsAzlwjy\nXWDBugPRClxc4ZV+tl25XrhuTNya72S5n3Ped1Cycjbk1q9mU1jyZ0WOrgdI\n6NhE\r\n=NeCX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.3_1631308400011_0.9250965165692879","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210911":{"name":"typescript","version":"4.5.0-dev.20210911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210911","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5e561e9c1a161839efe674cdb35d510783049f04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210911.tgz","fileCount":177,"integrity":"sha512-27mZRIuktujuZiFGCwy6pOhqEToeM6kwQlw5/oguO+p4PSHqzrLt9a/duhWD0RF2TYG1QoRUMSr9TcJLQd5xSg==","signatures":[{"sig":"MEUCIQCNAYnNSuMsFM+p491j4iNfLDbZ3f6HrARmwx5x7sI4ggIgHyZXbxIPsZ+AZnJxMjh5Nv259Z65n7BvgntY3eJO4gU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62908787,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPFdJCRA9TVsSAnZWagAAw3UP/3BZZi8leSyrQliF+d2S\nRqHAwLDzSPPPSIaq5NWDhUGrvHk1U6pwVb5jkFC9+8rC0HFGI5j7xkTPIJQV\n93/aFCErkFFQdS+1ZV+ibAOfvExA0a+qA4JslAcNwLfNIxElzXC/zboKAjEU\nLgqrLQperSAhJoeZIQEDJuvlxypKWwMe7C0TVLVrE2bmwxqkFsIMk67i4C3G\nFq1A9WXoUOexzEPMH/tIyfpSfQIJCYkOtrQZbtxghiSqAoq66WI4F0+dXPp8\n+IrYs6TrhYeTbyyL6OHPYSP7tMuJG1goCPtDP7M20g9QgbF5J6ujNraPVsj7\nlo8aFIMfoVG8wLQerdztVf82VQuIIPdvv6Uwun23sWx76xMW/Ers8erCj2dS\nHfYkbUZTmL45qgRNDIaEmXI5AM0YNTyXwPNoTTyo4V3xmntn5My1fiM7wKvS\nOVCaXSWVl9kVNvOZV8bhr8GBFt+CRo/2IZhQSdCcdaMZQTGx7FAKuhypxF8n\nF1gLeiMeYJm8H/nPP+rGMi+nhfBaBvnNTAZk2P65o5rnxcu3dCojlroiCQ46\nBk54EqaiPimQmOsa4aW/+G5WzNxmSP/8b1L4L2OjMr+HDpHYGVuckojCHCe+\nriMC+BVj3MSV+gGpQfmIie2JBdtmw/SlP+wxd4mdAvGZ/VDsbgbs2cSyLt1g\nfUca\r\n=2FBD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8dc2c14d81d30b62d59df92795f3d970fa204465","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210911_1631344457210_0.2829483060934026","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210912":{"name":"typescript","version":"4.5.0-dev.20210912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210912","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e8dfebbfded278f0e0cc9275c585c389af21310d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210912.tgz","fileCount":177,"integrity":"sha512-BLagCBI5IemzBAI9EUZE4OVYW2rhRYpOce23D7e+eNT3fR9Cg4snxY+brq1NBfgtC+c2A4BSI6XwZ80BNmDLPA==","signatures":[{"sig":"MEYCIQCbZddcvTEA5mAWNKP2BUL6KkhuUaBFT23N4DPBzN8i6gIhAMQJ8ob5Mqdaeijzel3O/YdRCbw3oEv+kg7RE9ASof0b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62915790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPamUCRA9TVsSAnZWagAAimEP/AgNNWtvBckr2wyZXh2H\ncPVAvt+0tw4RaL4ePxUijvvoZEtV6hSXcLSRn0L9jPAwvHza5tdFsYvQgcO9\nMpz0BCZtqfY9IovL4qt8lNHPO+x9/DPeJecgd46ju8f0xtNXk/1Cr5MUS2cG\n8w+mNE+XACZGHyxEMXrTOgwHOH5hIJRv2XcQxNy79Q+l8Vz4AbMAJyLHsRCw\nTH/FQv12OpaeQaQHilS5e7EIFSt4rwUH63NUqmGzUF7XyRcQijpAq82uVpPT\n8OUEnsS516L1wbUQRlk8Szbc4oKOeNIJmeiP8LXqOq+tcAV9P7+z4GWvD/sq\nri+ZUAGEpJKI3quPc28/5GCrwWe3HHL61ylgwfzJxaeT2c+b7tLp64hcO6fS\niwdeKmMV1meqCV3gWpaAJMSdboEkHUeRlcQ+4zlq6uaO6leQODOtHMDyRQGH\nGhz4oCduQyYyQd88b8AHAnDYLRgZNTheK/VhF0+DDkcVL+sjGF5ZHnpBVavD\n69DJQHfkfwZ83L2YH5gcctZr1L7wy17G/tKW8GVdh+IgBY8GGIjDnBOpRE3T\nEpcTlUmOHb+p6ufwEQ4ilW7AWn81oEC4iNFKsQApd8YvofIGwUexy4u7XO44\nckZARZemvTTXMKwlIf0EpJaeqIKb4aPTPxYU/IEyttpaD+vGub+z87APgoxs\nGR/d\r\n=wJx3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"db2573c20913c5ef22fc9953e9320f84ef28f622","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210912_1631431060579_0.5460378281897647","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210913":{"name":"typescript","version":"4.5.0-dev.20210913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210913","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"13b3d5a500762a2e5311dfb3ab47c2825fc589d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210913.tgz","fileCount":177,"integrity":"sha512-pNI1xTL2c4qmc28EYKOQ3NxsRjMtqxyZKfMA20YJqOU9gNQ7lf6PIyBmZP5jEZMprh/oXa0KgMxxCsnCrVmp/Q==","signatures":[{"sig":"MEUCIFsvRwPp57a9s0K9Dstzu0T1zqFV6EjBh2W0ORyjGyHJAiEAlLupAW7+kYl6JxfPh805sGXi5z78A/aq4ZbtNzUIGJc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62916004,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhPvuvCRA9TVsSAnZWagAAKywP/jtLQBV/RNW+y7dDCPn2\nYkABIUXwYPVyFJ19cb/mLgkF9M7PKYmVkciCX12IDipFrD9VAeKzkxWOl+up\nE0duyJEyrj6hsFONJxPZ3Fsu50ydIL9T+rKCpPOQejJS8EB/tOZtBVKJ1KDW\nB9YvQEPOYlcjVJZrtDUArinnM5zbAt3VVFJTsxdt2mEuVTOvWHjjKDdPmfGK\nj7aM62PHGxqqTumxU2x40Vx/TOKZR/YECew0wQ34AoERxY4lYqY6acYr/dPP\nJmTDqGXqYAST5/rg6indLgxMhFLv04HzubMMACzIDMJvwmNO/TPbsy6ZVVht\n+Vt7SHnkJ3yo2NCldrKr+HcQQiKU2cBxSXV73cIKqPhgx+rIi68o1bUp2Rui\nYJogxANn56XEX+FwHPm6nUrY0UCPmXRCUjKqFoflR7uF4J3FH8l2AS4RH6EX\n9dYkc5asz3Ff8wmHzbsQRgTlbCWr+GVkPYLvqyK689sxbxIg/qWYWXbjL0mf\nZ3cCZYhG6Sj1LrjCHKHxqkHusGUeUyO1iRuXzBXrKByvEftqhbKVE7gOqtDf\nSIqf/62MUxuXXEyPjHdKbToBTnUi2T6PPN1GLSY0XIGSKqgoQCQbLsMc8Wio\nE9UiIR02+2j6bG9+UDDrvHdE/UBagtYK0PWjCAIsjL2hrrLBSUVCtb04/Of4\nJEYZ\r\n=my0V\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"768291f941053d86c3f8df901afae5c48e027085","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210913_1631517615584_0.4708093110224787","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210914":{"name":"typescript","version":"4.5.0-dev.20210914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210914","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c6954939c125bf3bffe085594d58f0029f21ba94","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210914.tgz","fileCount":177,"integrity":"sha512-ZV7f9sBWGz5ySBIKZrlTGtebI7X4oxI9/A+bDq+Rf3gfqzNOsgZjThL1gSiaJu7OvpNbtIF/dbraoIrfqVLNnA==","signatures":[{"sig":"MEQCIFqvqBquc7Esrrw5c7PHELuWa1J2gixH4EvQTzEUeErrAiBkxZ7wDS7Bzn79yxgx9nObcgsb3jONfLEUvTkie8QkSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62916035,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQEyxCRA9TVsSAnZWagAAHFgP/1/jOO061OoYWXVGqSC3\nyfi3FmGIcYXy1yqYD5Pkoc9v3dng5AiPOXta+6qH0FSurb+pspAKTrDj+cas\nLLxgibrBzJnbLW/Ur0T9OzcJnkghE6M70Cgg+UYaUsL4aOaGAwvRMDDHnGa4\n50bwhpEXG7GV7rDzX8YK/an8lVoj/vKJR8mb+DbbW0TK9unYnTyAm3vcOGsr\njusJJJPXx2yt3TOKakP1a4NQBBiLTLIPcokDhAuBY7WoEoWohNZuu0k0Crxz\nZWw8iWHe0uGexEElAJ2i0zEWvmTEV+IsGjc+imzbJsr336PfG39ggo/K5vFm\nNF71VJJu3nI/a0hdD85nlJvtrYztcs9ed6n1yJEiEN1b4GpBZt66hSL8WU2b\nrSqWb8hCvUGiGxDV00pD80LmYkCzihMMH06WD7vR47H0f2sfQHGQgoVqTo0P\n36S0LTvlNR0LIG04S5tJG4HbA3F/5OG9uj364Pypt/hmqfxjIrXz1ziHx2rz\n2YlEY565mFCUhSB5B9Gl9OsTBUkekaZ64JW5GA0c/9aogk7kzV2UdHqXBMnx\nbYuK3e/WVn+wiI/XQck+2/bf1Q9FFN4H6z40r3APAzYXC7aLm3P29KuMLlh0\nJP95Bso4NspvpygFlgOoUhf8j6uXBveixylu/IIlZskwhJ/BCWKDEHAKDxe6\nYN0J\r\n=4ob7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8523ac8bc9d18d0a027dee2d03f2933921a6e45c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210914_1631603888799_0.9589264964294972","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210915":{"name":"typescript","version":"4.5.0-dev.20210915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210915","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7422522065d414fd5dcf1b6aca1a4d83db441935","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210915.tgz","fileCount":177,"integrity":"sha512-h4TGWdbgsZgyqTqHDzOnGHad8Qfp086jGZK4N5gDs82RWzBmpCMWxVWiqaJWJopRlnKJ28Kctumf4Mjazm2ong==","signatures":[{"sig":"MEYCIQCaLuNN6W9YLDdWKkp3k0b6O3K2gW+qiJtWeuE2Zc8zeQIhALXs5Js3jnpCCgMkXBOXzX6nHKsQYXUpGAP/8VpSE/Z9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62925626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQZ0/CRA9TVsSAnZWagAADZsP/A/x83d5ubPWZ2/hcESx\npmW5fSub4cUycJ1juOVUHjEueWmds1HZopq75uLcWBmhlY1oGUB+XlcZ8FAV\nt10kdsjByuQ7k+d4HT7GJPU6xRaLSgc1qrVIAq3JbpybF5RFT9NEZhlDFjIo\neo+BkJyqKg/QU6k9PQSWEXkolfpigSgpnnDoti5aYMbL8aFSl2SOct95a3fN\nDiDZ2HlLVRE8zYqWQ96xCYWMpdfP6H0MxjjKV/gIAeelFa6XnF9JT9J/+EJP\noRrT43eRT8QUzf3fEzXwEIqglu2v+HQp9CFqchn1xQ4ZMHBmwyvhW4zg024X\n7gw8uiq/UsIGhvTathvIG4SORlio5q8ryDIz8aRMpl9RDiKjir4V5B1ergPg\nc35cYieoxw3vIM8X5TRrt2b7COpNkJ3UAZYP1EBeu2vGvN8bjOOz0uFT/eRM\n7pz2jcldngp129jt+xKgv0dalUspHAyrpGF5YXOt8kur6iXqTb91daOdCYhQ\nfQ7k4dY2W7Ef0buyBCpNcEprv01Ia7+0pFMZCXrlJ4uK60daULgvwShvoFE0\n5JoKZsvco81SZ2urJ3ymHDgJ79f95FhtLZj9To3lhPUmu4wYYfZo36+IOEf0\ngz6kFF+nNilWBYHRsSN2aZ7uCUOdkCuXugyMzsGC7Gw0syUCAIvtw+Jsox15\nnAqX\r\n=EAfc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c620266c87b52ed2c011b0ba8b599177ba934259","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210915_1631690047562_0.3834797717063785","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210917":{"name":"typescript","version":"4.5.0-dev.20210917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210917","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4d11c844463adbe0bd7555caab57f8c6021d7816","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210917.tgz","fileCount":177,"integrity":"sha512-0wp7ef34/9ZAZsBPRn/Cec+9eF1JtY2lFWyjjufgCGxlQTnokAqgGEK3igYzhDN7IOCNJpBhwnuwKZvagMJmeg==","signatures":[{"sig":"MEUCIEW5sPKX4wvAnPs1aNC9RTEBhK1KKUr7pJVkc9H+py4yAiEA/qwe3961xHWo66bsucrKc5/0vRu/UidZcS1pJgTH0+Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62962565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhREBXCRA9TVsSAnZWagAAEZcP/iRjBFmLkWfMQK917Vlb\nhesrFbtFlNoHR35PhwptixFvn2QRMV8i6g2ydSwmsAEAYRJClOH4MI7XJ3sf\nXeU8NGnCtP9/PKJzmktnZRCYLpB490889EdP74EQWePY8a91ZHW1uQ3TPJNt\nuPiYPEa1LPXh3ApLv5Abn7j0SmMSbAmT4FPIfHc2LvGVCMs+za11ormx9Ux9\nqs2W67HgkXARKqbqAO+3TFWKN7Aj//dKvqDkL+uf9Hwp7+ETYxW24MUfqg8n\nnGtgv6VyrxwjXmS7TPCSYj8n8h8/PMZZzJO/vL0kq0panuYxCwjmhS+qE1BG\nJhtm1da2kOgxeMVVd4kV3JmDRo4/wQxN1M3+RwaHIkB46qSbx4EeUrN6Glo3\nOVp9beWYDHx3YlCq49MugEvSq4fdIestw+SkhI1WuHakKbQCe6mz2Yf6gkPD\nRW5BE87BhqcdqQzQOwj4Z5dxNer+KxLc/dJIyGxt5GYSyzWFki/KkcVIZsvX\nVT0R7UsVR0nHROjwM8U08sRKRZY4zSrP9xYcvUrTK1btIE/USK2i13yU/zom\noy+LUz9fL5UNi2ttllH/bynEc+gScc11+rlkwtBlDPanopuv3vmFHYUgvIyJ\n8449SjBo9ekvhWcEYcClL/HEMaXGwuWgGuzdnbOvggIMED7BAjNMu3+haGVi\nxtTv\r\n=c5wk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eda142e0ad8174f582eecbcac579c1cc10a5dfb7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210917_1631862871543_0.8551936903767534","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210918":{"name":"typescript","version":"4.5.0-dev.20210918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210918","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6a112491292f2e984cfc1eaffa04603c7c58e6be","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210918.tgz","fileCount":177,"integrity":"sha512-UWw6jIvJLjs8L6HNyBygJ/aF0OWlxce3YwOwdPicxgU8Fg103a1/qA0UxZQtfhH2smmknKKSl36UVKBFUEYaHQ==","signatures":[{"sig":"MEUCIQDzNP+EeOgllM+cy+TC+5JCJSuA6V12BLJdownJ7LG1JgIgUhSVQ3kfMq5Xx8PwV107MqGSHHcoJvw3e2lwMYdMRQY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62975596},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"285c0e2dcbe9861f2c0ccc70866cb89fc82f4184","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210918_1631949419368_0.8227122769898099","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210919":{"name":"typescript","version":"4.5.0-dev.20210919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210919","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"09ccbe3d6b289ca5293deb5a20a6e004577799a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210919.tgz","fileCount":177,"integrity":"sha512-lwCC7rXgn9mHRhcoUlMLPUa+UsauuIOh1dp8JBYC3tA87YfCn3/ugXMBeonTW/1JjTz3X7KmijkMKtkchCf7ZQ==","signatures":[{"sig":"MEUCIBShsBfaSCpfhdPYHn1hFLVRJUW7u7J2eBfZ+3iubKFGAiEA5T19HJ7Rlojjj+QxbfAdZ4vdW9X0D3FUvn6Ob5D59SA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62975596},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"285c0e2dcbe9861f2c0ccc70866cb89fc82f4184","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210919_1632035663763_0.5164197860052566","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210920":{"name":"typescript","version":"4.5.0-dev.20210920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210920","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0ddab9d5226680a2da12647bd7e64172fe6c8f89","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210920.tgz","fileCount":177,"integrity":"sha512-Uv0O6PsOJubmPwdRkWl8K6fuifzcQ8Ipv/gnfK6ddjiFR/LSaDsqRB+X3mR6aFky/4zqe6M3MkFsKwfhkVx1Dg==","signatures":[{"sig":"MEUCIQDVOu/HSbW+xSjeOuGfag8sTg4gQgz4ofg/Sm15lNsT0gIgRNOeAQMf6CYLJqkizEqoevLDYIEtkCCvtCEEimRTmmE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62975596},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"78472ec14c149bfd3b55e878a552c0ac26f3f522","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210920_1632122423509_0.04466075834779892","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210921":{"name":"typescript","version":"4.5.0-dev.20210921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210921","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ac3b950ab482f0c33c5b759f6f9fea804769ec09","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210921.tgz","fileCount":177,"integrity":"sha512-3vEJUv6bUIzo4UeXrIg61a4DH+Qn/Mg6IyRzxF6gObo5n7lTtGcjKZCYxJ7EI9JZs81QrppFxWVk9uUxnLkNJw==","signatures":[{"sig":"MEYCIQDVRvR/zqjf9nzpiCWWUs5bGQryXoOaek7JGVgygHOltwIhAMWHDW08NC9nfOTlOah7kMQ8K3yedMd4KaabIx4n1HAr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63044807},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5546f207c5d20578f1d215ccc110dd42bf8d359b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210921_1632208462872_0.22511494899416506","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210922":{"name":"typescript","version":"4.5.0-dev.20210922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210922","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cbad8f6b28583a3b9a868ff2cd9be109e3d94fa1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210922.tgz","fileCount":177,"integrity":"sha512-sjfLVMfxFKrI3517rBLIMFInpDvgYF/eLLC02PFiF4pXYjxZ+VPZ4wq7ho/qxrbFRYd/ucqFPZK+aEfla2Q+Ow==","signatures":[{"sig":"MEUCIHaFLsa2G3yAIEAALm7cmoHXOMFaWUeHlF/YKbmhECXjAiEA+ymSHYxRX/eh6U1XojXpsekYmhR/nZLvSuwnsTgsV2o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63049822},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6495544770e4eda0ad1be83898b8d1103daba984","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210922_1632294958663_0.2664049874883805","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210923":{"name":"typescript","version":"4.5.0-dev.20210923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210923","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9c8b16abafd2041bd05ddf07831c0f2bdc26ae73","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210923.tgz","fileCount":177,"integrity":"sha512-dYmkDaDTblBvvyBz4TfZFg/JYcFqs5F60OhlAg9BEeJRWQCxfB4PyedSmSRUxNj+r4b2tZWHPtNvZRwlNJPqog==","signatures":[{"sig":"MEYCIQDasNjbD1UmuEAIDwmJa7NbJrpS5LuEc/OaLEAYMYK3IwIhAOcYwUKf+M1wZYO4Pt415BWrqtEwQbpj1fQ5IkTrDQ7v","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63070628},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"efbce1099c7eb724871d1fa1b27b5be463ca3ee0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210923_1632381519430_0.11060218507452224","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210924":{"name":"typescript","version":"4.5.0-dev.20210924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210924","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eca877b3a3fd6301d53fb138624c64b192b7e3fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210924.tgz","fileCount":177,"integrity":"sha512-EZCfh+tf0+lHdPI3b/0XcYMW2LN62szgjIMQY4/5lA5z7QGC/PYt4FEfUg8rV9IzLnCnaeFRlPNtm9XVZKfcXA==","signatures":[{"sig":"MEYCIQCSTrmWX7BvDZ8qXe5nefhaQiRD3AcRXGndKRjFIhvCDQIhAJHwLvyPJWXtllIWJ5HNMNDc92kh8v4BmAGnq9EGFnZX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63094407},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"59fb3731e3858743bd0aae82e35097ab4f4cc7df","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210924_1632467925120_0.5374979748057234","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210925":{"name":"typescript","version":"4.5.0-dev.20210925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210925","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e44c01410a48e5c28797f97c1d66fed79ef59a52","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210925.tgz","fileCount":177,"integrity":"sha512-vXcEkcAH5m6lBO9jnV6CFjZ/p3d6ZfSpLgoeMP5SPOsmGGuEnh7Hj4DIDtnBocOLVbEiLb+lMJTSlNJP4G/WHQ==","signatures":[{"sig":"MEUCIFkumrAmBuJq5qFvfRu/Dm4pw/w21odsEHQ9uRwyeDlOAiEA7/bGYzn6BzEifKR6QXHh6PRrDs67W9PMzq80DM2bt94=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63505731},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9820a1df1745140a8273fb16fc7f48ca17558cda","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210925_1632554227376_0.3199570009501911","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210926":{"name":"typescript","version":"4.5.0-dev.20210926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210926","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e0794359082c3737578d4e8c1ce08a233804aa82","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210926.tgz","fileCount":177,"integrity":"sha512-+XtThGUrC08vUqnv6NS/jMJOoUejJlmX08G+arfEYJNyVe3fN04Q+t2AYJMb8pHdGGpF/jeNYfB17gspeoZFvg==","signatures":[{"sig":"MEYCIQCLix1RHKMp+cCw+cj7Roorf6ugVZgXTYK7v5VAttuyogIhAM55xV6EjMMMZf/BBOKfINbvLfxGrl8sObAtyMgn6f1Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63507620},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f715af9dc17927b979b9989650441a8137411fd8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210926_1632640795833_0.08884560641430506","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210927":{"name":"typescript","version":"4.5.0-dev.20210927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210927","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"708d676e1d5664d341f1efd6da74e59df4530a79","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210927.tgz","fileCount":177,"integrity":"sha512-SwH1rcPWT0rtRerrAsVExE1RiXhqKZdVOLVo0T9iT2+Lehq3WT5zMbTPIf/LAZ6mQlYT5XxNMSMjJl+EHr2byQ==","signatures":[{"sig":"MEUCIE7wDLSo4PCKGFIYYswE1iT25O4hCXssTDooTeIXKZ30AiEAkig7MxBlw6fL4nMHzWnLEYC6e1CTcjVDVs+6iNBe5yk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63513727},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4ce902c5fa31d402be78709b3c44bc60405bad02","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210927_1632727141353_0.631174391731373","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210928":{"name":"typescript","version":"4.5.0-dev.20210928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210928","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2ac366f25aca8ecd440acb0aee311584e09f48bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210928.tgz","fileCount":177,"integrity":"sha512-5uVQjZ5afQwPCxdOa5O+IM46lSVlHqutx3e3Eh/W4yWBcBf1ul796NYt4wqwO2nn2KdsyDu1jquyLhGnOIHtvQ==","signatures":[{"sig":"MEUCIQClcxoUY4PZ+lAdNRqbnjQbWLMQ1w5D+vsDmPZ8DcZdvgIgb+gv1Ct99cchdr2Z+HtxIyxMn/KqrqgcxsllHnck728=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63648868},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"075a7a8174ba32d4932e919ccdc8b0c67e423aae","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210928_1632813426484_0.3307898483879901","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210929":{"name":"typescript","version":"4.5.0-dev.20210929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210929","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ea9a4f5f3e545d5aef07e934440cd5b64899860f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210929.tgz","fileCount":177,"integrity":"sha512-L9/pEm3evtRRhZv1yBgsoMFMmlYvJu/nH/9csUmx5+EA6tVE83a0Fh++F7zP2nzyAsc1bH7wzKWgpCVZhrykQA==","signatures":[{"sig":"MEQCIB/opUsZGcmOMkfUEOtePV8so6ucO0+xiJK2WAhI5h/uAiAWidS+kSbkrlsm5PBCdvyJ86TshYGVrW3CGGN9nixXlQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63673086},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fc4f9d83d5939047aa6bb2a43965c6e9bbfbc35b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210929_1632899704012_0.6864016039211478","host":"s3://npm-registry-packages"}},"4.5.0-dev.20210930":{"name":"typescript","version":"4.5.0-dev.20210930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20210930","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0331ca800c712ee0d51d896e3bdb0ec46c80450a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20210930.tgz","fileCount":177,"integrity":"sha512-cjPzHYLj1hlAsofPNf33sh9VLzX/rC1fzE0W56vDlH110VYRQn6DDtujOzI//pva6yR/dr4EYJbdzPhrqW6nfg==","signatures":[{"sig":"MEQCIHmi7qdTN/AbfTMqVyDxGhrpIrgM/mbr2oHuylNxxwJrAiBbl+8fq/mGuJT2f/W1vwuaXaOqYmF2EjmDik1RFH/zdg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63687259},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e4d9282b4b20ceb789c1be17652c1d5cc140e95c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20210930_1632986404214_0.5924955732684953","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211001":{"name":"typescript","version":"4.5.0-dev.20211001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211001","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"150dfc91421557c7034c95af285bbeb06954efb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211001.tgz","fileCount":177,"integrity":"sha512-VemSb7/9v1oNCen6l5wiU3O88kjkiQXLVFYsmFRoUvyIAk5F/eNn8n3k4gCgldDO3SpjMpkngWnAagAYQ/MkoA==","signatures":[{"sig":"MEUCIHXDcQxwie84x05LB9nHt78zwaSslyRnLEiOcsPVXVJLAiEA1xMBRaPP8HzNFaDMSVP4lQZDk7uIT2xvSyqisGXviJo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63708609},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cadd115a5529ebff270288769242a6c3a29241fc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211001_1633072510361_0.21733341596904387","host":"s3://npm-registry-packages"}},"4.5.0-beta":{"name":"typescript","version":"4.5.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f2e2724d93c35e7a0d0d1e55a22d1e4efb2181c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-beta.tgz","fileCount":177,"integrity":"sha512-7PvWhki2lwukaR9osVhFnNzxaE4LM+gC94dlwcvS+Tqz8+U65va7FbKo02bT+/MFlnMPM8bsPUXvHiMD/Mg3Jg==","signatures":[{"sig":"MEUCIFkzyjbNGQ6wmFhy6dBsZlI47mag6Rku8kIrvzGV32y3AiEAtrFbKWotEiB6mJCZvCiPTXLurjBOP+WD8TrdG5iX4ko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63764808},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-beta_1633129565308_0.3172843731851922","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211002":{"name":"typescript","version":"4.5.0-dev.20211002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211002","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5d76de1ecc8ca6846abc473826855935d3bd535c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211002.tgz","fileCount":177,"integrity":"sha512-PeTMZdddNkaFrL3eXz9/9BonjuKVWRUIxcC9osfDAScbGSakebcWbDka0wqnlgGy9DPLc6BPP9qZexWokadTeA==","signatures":[{"sig":"MEQCIH/Hpnwpql4ZaZdOKwxoaKnWTig0IHsa+oJz1+jXu3kBAiApZvOUHkChUAf9yrb1IH3fp9BDDpscfiyz1sjG5do43Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63765720},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"49fbeefcf1bf582ec784da1e959428d068110329","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211002_1633159174147_0.5443029965457535","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211003":{"name":"typescript","version":"4.5.0-dev.20211003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211003","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ddb909bf0cd0fb0c26739c80217cb7aecf0a9ef2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211003.tgz","fileCount":177,"integrity":"sha512-pZ7WSjQ3YJZr69iiehqHzkLuzKrDbjLWAP8+8nAO+qmAA6iy9fFzTnFjL4FXtqwcNk05fIFYr9nkefcNtQjdcA==","signatures":[{"sig":"MEUCIEfGLo2+KUddo5U+JeQ/zZGXVHBl+nu9xF0nTqodac4iAiEA6Wd7XP1UuLvxP5AOtem+KLZF3Sn5T6znqYjap0Koz1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63765862},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a0b6eadda0bc537d95a1d49b6789be2ee5bbcea6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211003_1633245581776_0.44427994525916437","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211004":{"name":"typescript","version":"4.5.0-dev.20211004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211004","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"596e15427e9d6814002fc265bc45cdf4c6caf38c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211004.tgz","fileCount":177,"integrity":"sha512-uYE+osZkS7cs3vcHqEXPvXrdpRFbOwPRx+Ew7yO8sLX20dbEOc3rCRCXY81GH3RDQ//mb/h6uh07y9XWOxmSIw==","signatures":[{"sig":"MEYCIQCy0SthmRh6y97us9zn2Gr68hnP+RJQY/hy7/DhcEqZwgIhAJAfuRfzzZsRAZ0SXtR94bZSjoY/g7ilLBSFZYEJZ6au","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63765862},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"91117b67634c81aaf9c612fc126a2136e7ff2e42","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211004_1633331939216_0.6321328435036802","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211005":{"name":"typescript","version":"4.5.0-dev.20211005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211005","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2df7096f767ca373f3ad3bbdb59fe0aa4a2d3464","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211005.tgz","fileCount":177,"integrity":"sha512-mjUgXI5CUyuhtqyrtao8GGXFzCvqelTcEWPHxOLUnWxqh0tGXI2KLtRut1Z/LAbDh6YfI2ICIZlBO4o5gNeF3Q==","signatures":[{"sig":"MEUCIANgf/XnpLq4S+u6lN2Qqj8MUC6YWXQ8Kld0+3OQHQkuAiEA74dcJHQA6NW8wbTFU19cis5FLQ1xnQX7/E39nW/BpBI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63765894},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ee24e2ee7e30084c03696483934b53624671fe68","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211005_1633418387302_0.8403605285592326","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211006":{"name":"typescript","version":"4.5.0-dev.20211006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211006","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a83db37b5524357222f4307ace4dd2fb3004d109","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211006.tgz","fileCount":177,"integrity":"sha512-UDWK5d6F/97aW2IqdsrietJa3zXPrtH72IUZaahDvF+zKdcPsbDtuxnzueKXnqEQbYx2P3LfQeSlzMDA7KhluA==","signatures":[{"sig":"MEUCIF8tD3lLQCXI4TUxau4UqTnRd72IerCN+a/zAww6wRgkAiEAoYD6D1FVbspN+QTbHPF4z1D5nc42woaSMf6jv8T5pso=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63773218},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f8cb5fa1d7b36d93f63597354106c7d900396bb5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211006_1633504739334_0.2234420340967318","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211007":{"name":"typescript","version":"4.5.0-dev.20211007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211007","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"da90b5547ff84e3e334e94414f674e3d6a1c5394","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211007.tgz","fileCount":177,"integrity":"sha512-NUEjWBg7fo+w9DC6ffCeaJ+Oc8a99l7vmWDT2wWWPzh4TwZX7ELFmaOKY95ErEEbjDFdgUTEd5QDZwxSjKiq0Q==","signatures":[{"sig":"MEUCIQD9RBbi6lTEFdNoWOYg38Ja7kUY+5jnG1lqALC+0j7pkAIgFdxhML5RBYxlM3OpCi+pek3UBW9yCQhU4H9ihjFoz2c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63775579},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"08361e3d3c1e5fe2e1d19267d72c8292345c695e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211007_1633590833901_0.5535516383744454","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211008":{"name":"typescript","version":"4.5.0-dev.20211008","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211008","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d1d5460547ab08fb6edea4d259ae8f2b684e3eca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211008.tgz","fileCount":177,"integrity":"sha512-8TgcWvX2BZk3z/aokY6Fmzn58nPB0TNs41NlRk/giDKE8PdzXNhOoR5uDkkPT7N6MRJNlE9zviFTvWNtCUYMqw==","signatures":[{"sig":"MEYCIQDk4+KvLp+L3w0hro5SA8yoygo0Ib8C0oMseSHSzLARywIhAO5Tzwh27MB8osH1g43YzOqo+jRsg4PLaF7vcbsSPJfK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63791673},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f6c0231f08353cf16d22a54ff33814110e6c9d7c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211008_1633677454013_0.2228552058119917","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211009":{"name":"typescript","version":"4.5.0-dev.20211009","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211009","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7bb8010815f5132b216153e52678a17adb31c5ba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211009.tgz","fileCount":177,"integrity":"sha512-YWKx/1B0t61rqlXp1CIz9BooLXRwLtV8FWR4++jXKMDZSnIrYY6TxoyJYCnyTph2jES3ySEVhROaQadb5PjRmA==","signatures":[{"sig":"MEUCIQCg3WgNJEGBLUoDCKOD3BCFI0JOiYdC7ggyIAOvas56NwIgaf8q9QOApmfdLqblPqz4QToyb+89OsRbMcskmPJzoss=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63800845},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"feac9eb126e56837d16acb61cd019ce8520db76c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211009_1633763634501_0.0051258603310435635","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211010":{"name":"typescript","version":"4.5.0-dev.20211010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211010","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"688e70253fabe701d69be7ca636290dbcbdd525b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211010.tgz","fileCount":177,"integrity":"sha512-gFJnFGSIcSBpMtDuEYBnoDcQeZCw16TY9pv4yLpfKTPxbXSaZb0hlZp4AdomVH5xLvewdUBFvVESUOXs+5Lnrg==","signatures":[{"sig":"MEYCIQCxqHFMG/46xNOnU52osRr0Af2LTP8PhD4KsdsdnREjjQIhAO1hu1b/hrxfrO4FdNNRIwwEi7kyuxBfpvpy5tvlhjjZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63800845},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"feac9eb126e56837d16acb61cd019ce8520db76c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211010_1633850083255_0.7820495191553378","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211011":{"name":"typescript","version":"4.5.0-dev.20211011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211011","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d163f55ba4e94b5442eca04b53846e840ccf6d09","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211011.tgz","fileCount":177,"integrity":"sha512-1jTV0bjpdhzBTsZCWSc2NE7IHhFEsLtcHW5/SJz34UkZIa5AMd2Y7W9g2WqXDVjYxVPE15ZjKOPjSuXGv43+lw==","signatures":[{"sig":"MEQCIG0BRbVTtWvPT4P7ApR6atKRRk0erMVYQ7Xw2jvJk9aEAiAFAH36gghoNcB0xfmXOIJX1WguDSz4YTGxh/VOvjfrnA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63800845},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"68ff7380d2aae287282dd972a1d153cbb4e9ae2a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211011_1633936524806_0.7985228103278885","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211012":{"name":"typescript","version":"4.5.0-dev.20211012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211012","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2a5f866fd7b5f13bef37a3127bef949619212405","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211012.tgz","fileCount":177,"integrity":"sha512-Kez4/9YMGMDEL8uDs+Gt0f82/5mBxMHCv4VqwL8lXB87+N94W1c02ocy9C0t0UYS8vaZgEJfR4HbQnS0IUdTdQ==","signatures":[{"sig":"MEUCIGE6Te6tXaZofHXiyCXCGH/x+f/XW/MgWe45bMW7LRLNAiEAppjbiAF8bU9C+XLoYgVtOSzukK1PdHtOwEE2404vYC0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63801529},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"44deb844602f3dc635e749dd5198f08a01b50518","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211012_1634023161003_0.4737366310673814","host":"s3://npm-registry-packages"}},"4.4.4":{"name":"typescript","version":"4.4.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.4.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2cd01a1a1f160704d3101fd5a58ff0f9fcb8030c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.4.4.tgz","fileCount":175,"integrity":"sha512-DqGhF5IKoBl8WNf8C1gu8q0xZSInh9j1kJJMqT3a94w1JzVaBU4EXOSMrz9yDqMT0xt3selp83fuFMQ0uzv6qA==","signatures":[{"sig":"MEUCIQDF6F4eUqCdDZ30RxH3S1MQPZyPUNhQFRAZR3vHYndwvAIgbbeF4lCn1uq5jJG4tgUXJoJ5rgdfO2/6LeK66SgNyZE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62738207},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.13","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.17.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"latest","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","istanbul":"latest","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.0","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.5","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","remove-internal":"^2.9.2","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^10.1.0","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.4.4_1634066166451_0.20491885016374245","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211013":{"name":"typescript","version":"4.5.0-dev.20211013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211013","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fbcac90bf5bdb1d2a97b620842140b27f85431c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211013.tgz","fileCount":177,"integrity":"sha512-1tzSuscCexbHb761+7ZtVg/1QDECO9Ub5OI3/VZF0nvfhbemQMc0LGQcWO2wB7o1utlCdoaVk83O1chtVJ5pSA==","signatures":[{"sig":"MEQCIFfipdzQnBFCsNSVVaTX8RGsvG4VZa81+9KQJVIbeh02AiBFOXyF6IoHdL0fmERBBVPhVsAsdLDF7vcI14e394hgAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63802704},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"315b807489b8ff3a892179488fb0c00398d9b2c3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211013_1634109605749_0.5234698048845183","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211014":{"name":"typescript","version":"4.5.0-dev.20211014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211014","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f16941f486dc4999a6b61d1e743f09d5decd0246","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211014.tgz","fileCount":177,"integrity":"sha512-ubHRpPZFRXqp+MbIGA72zfKku5HrZZ2rAWuuy+Gr+yoHwaGUeqXk3ckJm0ndDbyj2HSk/zZ2F1ItiNGqBNy7DQ==","signatures":[{"sig":"MEUCIHN90NJ1jsarGHbR2IL6/UiitPARS1ygEZ2K4DP5US2iAiEA2b0VMiy021Egjz6zOk+pK+tM6bjfjiSYiPz6ukQL3uI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63788718},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b086e181314b2c5b0381cd469a10027617e9c51","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211014_1634195865946_0.6530043668032832","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211015":{"name":"typescript","version":"4.5.0-dev.20211015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211015","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c6b4072e54b5a58ef6146106d3d690472a8e3f3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211015.tgz","fileCount":177,"integrity":"sha512-OrFbSZdfR1lbLhaXTb0lVfaBkx0+WLVZsCKtRRcE+dVvMJfAK3fZhgCR5Q9AUNQc0eqNgWHjQ+MW/dhHSjmNww==","signatures":[{"sig":"MEUCIQD70lHglm7r5nX6NCgRI7Osav4e7nK1kAhamJnp7C1MdAIgWFK16MlGnNOX3vB2ApLk6y4a8ppngvZb0ddlltDdY+I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63784855},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cf9d38fe521e5df05aaf0eb8cc6fdb8c4e6716e9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211015_1634282384917_0.5200705847943434","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211016":{"name":"typescript","version":"4.5.0-dev.20211016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211016","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b9364548e1dc53d60cfcb6d2596187927aa75870","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211016.tgz","fileCount":177,"integrity":"sha512-dYaTgXIv5UrgDimzSbWwH0q64MdOiXw7AuJtB4Bg/H17ngamrSQoPzZj7/k6OcG2c7Sl4V5ykhD3J1QVANswvA==","signatures":[{"sig":"MEQCIE0QH6/3Q/w9opC3XpZprSQxmyH7hZqz6Qhw3ZCgWAItAiAPj3JKs0wTCpWi1jq7CbKwb9g7/XuMQ3iCSPisbLDCyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63786896},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"506a95b5a5c992c774eb0c9463ee20dc1f5c8a6c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211016_1634368460591_0.3838194620109012","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211017":{"name":"typescript","version":"4.5.0-dev.20211017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211017","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4b5557738d4ce3e8d98a5ad009e0cd211e2ef833","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211017.tgz","fileCount":177,"integrity":"sha512-4+WLjJE9T4+LxlkFm/lyBasSpRjcXwMQ0jqGzrqb0broCTt17luVPaQKl9U1t/nArxbNyuEtgKHMFAelVGRPZA==","signatures":[{"sig":"MEYCIQC/heGx6s0vgkY6jZf1DjBF/0qgRZSdTs6AtvhajYZ69gIhAIHJnNP92wf/g3KAoQiL24ffsBp5ajPLWYFcS0K+gmuC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63787582},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"26aea0df613c61edfbfe7b003ff564bea421d071","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211017_1634454845679_0.6697131976190287","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211018":{"name":"typescript","version":"4.5.0-dev.20211018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211018","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"73d5984cfc1e63f0039634e3643bea123e4fb95d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211018.tgz","fileCount":177,"integrity":"sha512-eV0JNL0XLjoM1Du/FDVoGMePuKCc/tdCpP6nVJUZD2a2syyvEyfblLvEUg1Fh9+GUuZGOpk6ospvIUxlfBIfRQ==","signatures":[{"sig":"MEUCIQCwYCItDa5kiyrxrnTo0kKJAst8iRSoZDtsNW5PdOHn2AIgH/TFfh+CDzAcKw+Qz6Hwu5/SD+9JCZM/P9O2u9h3nE8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63787582},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"26aea0df613c61edfbfe7b003ff564bea421d071","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211018_1634541298510_0.3548606488220034","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211019":{"name":"typescript","version":"4.5.0-dev.20211019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211019","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ee6db30685b13747911150f0d072fcda4995ce38","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211019.tgz","fileCount":177,"integrity":"sha512-gyZSLwXJ9RowresRBKvQn3afrFOsN97aq0Tc9FK8K8X5tyoOEhAFxIyKjBJLEwNtVUNTa9hfy8bgxMau1loS9w==","signatures":[{"sig":"MEQCID1feaISMB5X1w5lCpdukTE+djmVvfmsbxxdHBmpMfdNAiA5Afj6ySuhRpFOn5w1p0q+e2pmRwRD7b29l2NV8+cGCQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63798348},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"556098ed50310965600aedd3053d35dc04aa2811","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211019_1634627710645_0.39290388950569377","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211020":{"name":"typescript","version":"4.5.0-dev.20211020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211020","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"937ba5d94005f5328dc550128102fcedd1e5d987","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211020.tgz","fileCount":177,"integrity":"sha512-6arxirkX5H43wKXfvcXSLwoGQx65gYi9SyRzhyrZamrx8x6pFkwZcGq6/HjWsMErahU8ETdDX2Si6WflWX+oXg==","signatures":[{"sig":"MEYCIQDFSOfXy/L1nm+AITbeA8c7Prx+edpzFIdmjlqkm2KANwIhAM7c0dVgyYo2l31HPyCWahV3LzcarwePNVUyYlpbn+7F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63807265},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dea48531f1599605ab1970b7e356a2785e0d8d49","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211020_1634714308521_0.5950095958594934","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211021":{"name":"typescript","version":"4.5.0-dev.20211021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211021","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7bd786f53c33f7ade525d0b34bda27f2e01927fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211021.tgz","fileCount":177,"integrity":"sha512-lZJTNSL8CBqgURSrVwCto8WEV1U0BUwoy+GTmINoRc/Sm2BcYiRpcq/OAiSg/1q/rvODousdOsHePfAZfwi0Qg==","signatures":[{"sig":"MEUCIBVE4AHEks5XP1YOfNp2Etqz+vscymR3WjrV0zzfNp86AiEAnCLWxEAtNRvNsxmFDghdSjxzxKi854lzxjMNdDbaXs4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63810324},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f2e59479354c4d925949e83a377deb33d9850ea1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.6","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211021_1634800540251_0.9440676215433474","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211022":{"name":"typescript","version":"4.5.0-dev.20211022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211022","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f08bef6159c849edf527c177296b1d31ab99052f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211022.tgz","fileCount":177,"integrity":"sha512-c9X+eMEixBn1zZW6LXzugaIlCTb9IRp9/DtIv6B8iQbFbshb3AafDtlheo5i2spEDHKqhPjXzka/NmEeVWuY7A==","signatures":[{"sig":"MEQCIA2/dUHy/qnxNk8byyUg+mcpez87AP25hPqzBY/EGRHIAiAr1KHCKCzAQmTi0xAFtb7EahSWoXsuC0TLcpGDimSeAA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63805055},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"65ae16cdea7ec887a6a16f9e709a07c2abe88387","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211022_1634886913190_0.3137840089784969","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211023":{"name":"typescript","version":"4.5.0-dev.20211023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211023","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"de45b734c381f73c6c759ccd59473c703c9abd0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211023.tgz","fileCount":177,"integrity":"sha512-HjAZs2LBoJBvgSGi6t5kz5dS/7NLTdOeYTZk1qnXCqJaxAgdP1a/WDwGYRXARLpGhzbLkvQESuMnxznyzE1rDQ==","signatures":[{"sig":"MEYCIQCCW/Ym+WCoXqLXsc65PvSKu4nutNf/b61u1fpvnqUR7gIhAJOF56Dxi+hOOv/VLAGJy2+5fzvqfi4T7LTrCE1sKtFI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63812924},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cb07891d19cf714262a35ad9753f238e4225012c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211023_1634973605685_0.2886264119310442","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211024":{"name":"typescript","version":"4.5.0-dev.20211024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211024","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"81a452876b1c81077cbb65ad4293497f01ed80e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211024.tgz","fileCount":177,"integrity":"sha512-+ypn7khon5yj7zNMibJFonNC3B6G/MI7OaPlROfdWAOWk2Sld8yTxFdmvmU8S8b8R/mHyoH8OOJBMzpubehLDA==","signatures":[{"sig":"MEYCIQDSxF0BQ0cuxoIVCoUavGZgCjd+BdocbCyicKg32v3mLAIhALtpb1HA9JQvkqzgV2mwELeT92R643SJ5on3zh+Bl3A4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63813442},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c2a4bda133d84b5d4c7dee1931fc5443449f1d00","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211024_1635059910176_0.7785436023411871","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211025":{"name":"typescript","version":"4.5.0-dev.20211025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211025","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"172363eb50c5ef2d702632a633176fae1bd6c6e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211025.tgz","fileCount":177,"integrity":"sha512-IE6h6bNCuRQCWqZYQSFlrKXmDAB/vNrtPWiAnf0y5Mg43zToHdlr5LgmkgX6tVhmjGbeshHTDM/uJ2KbEEVoug==","signatures":[{"sig":"MEUCIGsYkW2zqMBwlW/1FGk6E9qo46P+Qos0YGuRgPXeXdiCAiEAtfw8H78po7TUgAgFpwqUH9xKhecokPt2OUA6pB/JPY0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63814629},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"61f5ceb8322ada7e24ba4ac14491248eb7bd202e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211025_1635146131674_0.6942384964447401","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211026":{"name":"typescript","version":"4.5.0-dev.20211026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211026","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"07ef2fc02abd3dba892b8fa247cfabf23a5a86f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211026.tgz","fileCount":177,"integrity":"sha512-I5crDLk3EkC56MIxsh4juyCf4kopy9snooERex5mX7aDjl5BgrY2vHN6AebXPFW6TfeX7aNbSgDQ6ORwZVmdJw==","signatures":[{"sig":"MEUCICJMNFm2U8qRue26ZN7IFrgxUOdBtMVUSHkoHEZKxB01AiEAqlo+MELY5Q0NPBbFTSNiG5AmcFqKeywHrk7F97cum+g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63817076},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e1a2c2c5a96760f841e461195ec7ccc59621431a","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211026_1635232700844_0.12358764681025258","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211027":{"name":"typescript","version":"4.5.0-dev.20211027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211027","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"719679573aafcb1d70cc13a47f7d21805ca5dc5d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211027.tgz","fileCount":177,"integrity":"sha512-VQv8HqyL79TynMj5Vq+x/Lq0Q/RZUVf3AvNLPLp64y/Wnx+2VhGgC/4iiFBg9LtcNifXv0g7Dy3E/Xnq4zWH3g==","signatures":[{"sig":"MEQCIEp2/4qgUXz3hB89ecTfuofAXpC9MyagMDpWKLen2KgHAiApLz7V8qEGYB50JJcNeRZji9QhwlJobqsjxIbPXEcRUQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63817651},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f424dfc18a01c45b8709950b6e2dc3beafaf9960","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211027_1635319084542_0.6106063877259873","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211028":{"name":"typescript","version":"4.5.0-dev.20211028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211028","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1dce577e467294c58e1133cfbd50a42125d5225f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211028.tgz","fileCount":177,"integrity":"sha512-nX5EpQVLaiUZQWVY5ho2WMjGO7ObuQCjvkyv/mY8S7QUz1ae+mArPKhEATsm/zK8cojXrE9CJD4Y8s20fkR4Og==","signatures":[{"sig":"MEUCICgcBg32rQcoZJ73kSPXuy4zkFcAjhfy00E4wAZKBzFMAiEA+7NZwQiidohsFdsbToV03Hhqtr8cMEp1KjvPk5YgKl4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63833648},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8173afbb8a5b12837e9fd5504fcb56c560805b0b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211028_1635405654774_0.6811288617304467","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211029":{"name":"typescript","version":"4.5.0-dev.20211029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211029","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ec4619ab136bd70ddd9ec1a7c18783b7ce9990a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211029.tgz","fileCount":177,"integrity":"sha512-N+2wLMbTq+jQmad78i4wKBGcXudBFWy+QdV1Xu9cx+F5Xi6hubBotFEzS7zA7G1Eevy6NJwlsNy0G8ok2GQ9nw==","signatures":[{"sig":"MEYCIQDTbD2zEsJjmXODZVJW0HI5r0aK+woBv+ocCdQYn7C5xgIhAPHrIXaZt1GObqNMj/ahMYv6u1TbxH6gcRX2MHdy85vq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63925649},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fd620c93f6d13999225230e9f2da1be654b56c9e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211029_1635491869501_0.38142470410288576","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211030":{"name":"typescript","version":"4.5.0-dev.20211030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211030","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92e57e013829e7b1b67f71b2d34ec69cbcb4b951","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211030.tgz","fileCount":177,"integrity":"sha512-bvlbecORDrK9ifr4ZcZPgfRNYu8f2XhkufNPJps2P6R/50+CFUQhXXgFbp70Naen1Nh1GmdXXvgx2SMBh7OBmQ==","signatures":[{"sig":"MEYCIQCMN7rIzYN2ZrIpYCeXqPnDhXi7MoasKJ0YHtT8AM6xhgIhAID66T6gBbtWpHcfKVPKUfgIk7TvZNrRjyTkDJ64mPL8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63965838},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bf6d164bd5b265ea9596e71b6468ecb695ebbb67","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211030_1635578124276_0.13122226890845878","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211031":{"name":"typescript","version":"4.5.0-dev.20211031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211031","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"405f112d905c4a518fde36230ff19f0a1bf1066d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211031.tgz","fileCount":177,"integrity":"sha512-+3atzaOk3Lr/5b+u4C8ycZekYETTklXv8h/FLuyLDK7pjkqLCTgLk+nCSruALk4MEJv7lojU6gScgIxV2ryomw==","signatures":[{"sig":"MEQCIFLCp+Ko1t0e3KY1OMud5WLLGr8wroen2Y6AwY5+R0u2AiBjeLpTgoh735fnP6JDrDqwfX9O0KtQHWCGTbFOE+3+hA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63965838},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bf6d164bd5b265ea9596e71b6468ecb695ebbb67","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211031_1635664792534_0.22040988988644283","host":"s3://npm-registry-packages"}},"4.5.0-dev.20211101":{"name":"typescript","version":"4.5.0-dev.20211101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.0-dev.20211101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"45a1f58183d64b776b95f84998484c333a8fb202","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.0-dev.20211101.tgz","fileCount":177,"integrity":"sha512-hghclbWgoJn85Ygh7JY2Sumh0BeJ3cermrmRdBaOorPdoufi4dr4XYwm8hjgNIFV6JROu6MWEpo5qjfJ0a/92w==","signatures":[{"sig":"MEUCIHewpqSfBrhaYKSVrLq01HSekxLfaxGoOaIW6lnAkpgrAiEA6yZ1FPHEMBdDeu5YIVzpZcdFfqIwjQP8oSO8GEW7rck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63965838},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bf6d164bd5b265ea9596e71b6468ecb695ebbb67","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.0-dev.20211101_1635751250574_0.9188457495307922","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211102":{"name":"typescript","version":"4.6.0-dev.20211102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5968214bfa6416628420df33e91cbd5e364c3a5c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211102.tgz","fileCount":177,"integrity":"sha512-gLhPziENePM0tbKKvK1aOmDPo3ec/eF6QthrZCYxzk7pa8a3mDsYASIgSAUKESgxVmfzpsfV7sXcgm8bXWepCw==","signatures":[{"sig":"MEQCIDLdlTs7V8kk9B1o09PPa2xW8LwpjWV/efUzUTfyDIgpAiBRkYzK/I0wxaNwKkweXJIBw0+l7PPgAS5Cf1dySbMjlg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63966686},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2424d0e5759dd1fed0b15e2bfda760e544f20a4d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211102_1635837483035_0.578667353067704","host":"s3://npm-registry-packages"}},"4.5.1-rc":{"name":"typescript","version":"4.5.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"02155eaa0579d11babb2a55dcbd796948a994bb3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.1-rc.tgz","fileCount":177,"integrity":"sha512-tQBWW1DCFqweyhSzsAUSFgssJ3uuRBh0zyOkRV4CaFF2rMBkGU0I+MqPMch0qhGCUGXjOW7FgMrbQLS6PE3Z6Q==","signatures":[{"sig":"MEYCIQCYqZ9lYzT0K3hajqhMjxW9lPICfEzkMV4geTUxMfwNhQIhAL8MGeAtKm9p8kXR0JYfIzsYiJ9GKtS5fiIeWbixcCeA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63965937},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.18.1","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.1-rc_1635892661464_0.5870857323982195","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211103":{"name":"typescript","version":"4.6.0-dev.20211103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"34f5ce8711faed3803ac0fbc0ad601298c0beafc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211103.tgz","fileCount":177,"integrity":"sha512-S1WJCE4uVdG6H9o5iS+Vl9Z25DSqXpwDZGZimUqPSFrZKcoZFgobyDTqiNWB0OZ8cCcIqe1GEMEcWMHo8sZHTg==","signatures":[{"sig":"MEQCIGyR8OR035EJx84+Z4dISTpbTKDTr1fqjuMswjbSKX2HAiBjhLntUGKWfhqiRqAvfMniWXxK0mPAP9gZ8/s0UyrLpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64006209},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"831b770b95762c0c660d195941a8ae7c019e78f8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211103_1635923751824_0.49293249501559955","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211104":{"name":"typescript","version":"4.6.0-dev.20211104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211104","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d8539863a4dc07784c742a2092b26172d4e3f17","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211104.tgz","fileCount":177,"integrity":"sha512-ba0yzrYVbaxe82WNAvMIlXrJEbpL+On9qq0L779E6JRoN/qlglwT43lnURL8tPSirfm95hYwzZBMbvpBHnoU8w==","signatures":[{"sig":"MEUCIQDY1b60kChemxT/7fIsaVCtf6rv0pKRQZhTQinjMYZUYgIgTAEAoNNMY/shSDkqqKCBR6Tiqeb3hekn+Luqgq1izPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64010445},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ff75b8a180ac69f5d22c079ae053e4b8db29a307","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211104_1636010378586_0.7980585238581783","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211105":{"name":"typescript","version":"4.6.0-dev.20211105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211105","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b0f5819711b388c4a8df383df62788467a6ce112","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211105.tgz","fileCount":183,"integrity":"sha512-Af5rLZtlF/Ah4i7pQBxF7OfxK2bxDBoxgsRUK639YQq9zNmSj3H6YJZIFw/+OEthFZrj4izAfp6USxBUMAdqQQ==","signatures":[{"sig":"MEQCIGyh4hV9RRZQZ4HFYGEHibC9e9+YuI2ZRF7mxOiLP78/AiBDQtfcj0lI48s17kFA4tm/OcphYrcGdLP3aoaJKrHgIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64027251},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4fca1e1fcd6006150a0060d1016b430c1a818af1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211105_1636096770459_0.6517506520479004","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211106":{"name":"typescript","version":"4.6.0-dev.20211106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211106","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"568f13a98f27c2e13970c23103dd3e8c554a5824","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211106.tgz","fileCount":183,"integrity":"sha512-fWUFrtmAgitOB8m2e6wri8rXw48ulS7BrNIVJ4plQXqHQ3PZcAZZX2jw8ZulhdnpacCK0TuGxZGGRndFRg4HLw==","signatures":[{"sig":"MEUCIQDK2xTtmvyf7SpG14Hd8omE19a5xn9/sC3TZXRAYQCxqgIgali9YRftlD+44qyBv6eDldE5vRAjKZECJUpiobQh8Ik=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64030259},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3ef3cdddb338b8f0e6a2c5971d255390b68654ac","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211106_1636182919656_0.5067691711816917","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211107":{"name":"typescript","version":"4.6.0-dev.20211107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211107","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6563c096bb4d76225b5f1efdd4d03f1a1a2037ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211107.tgz","fileCount":183,"integrity":"sha512-GkSw3KkGbjF3yuidsDcnvfgLpE411A3TcPmPPjqgVBnJIZJonWdBXIn2LH5Ui3TtM/cShgQgf/hvIQGOQEWOtA==","signatures":[{"sig":"MEYCIQDJ8pbMIrf72eZ+dDMYq0A2dwH6dahjbWi8VpmGyUNQFQIhAIGbxB2nYG5+bIz5t9LDEqOBrbzV4Ofult5Q6oEHXabi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64030259},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3ef3cdddb338b8f0e6a2c5971d255390b68654ac","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211107_1636269472848_0.5090845275284708","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211108":{"name":"typescript","version":"4.6.0-dev.20211108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d9e65b39f0876ba9d5e82b7955d1183c38d1e40b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211108.tgz","fileCount":183,"integrity":"sha512-5a0mWJq05zNPSb0vF4s6OJbCxT0Cz6XIjgkaiYy5pkSXlu2E8mYRnYlo9IKKn34eUFO5FiO0uwm0Z3dsbcEgDw==","signatures":[{"sig":"MEYCIQDq24qaqlENHYnlxKP15W3csIiqF5116EgqzetGi+oOKQIhAIkr1D1DowSDl6HPFnokv/hXPYq2SJSJsvWte8C3g/Nh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64030259},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3ef3cdddb338b8f0e6a2c5971d255390b68654ac","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211108_1636355842898_0.2723546590272332","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211109":{"name":"typescript","version":"4.6.0-dev.20211109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211109","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d95733b9160eea33841dcbb91233d8e7c9281a9e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211109.tgz","fileCount":183,"integrity":"sha512-eOWV1olYHXe5C6rcCiZjbAvhaKiaDn+qMiijqToDT4KxH2rVCUpmZQZ5Nc8065qlusES35Tq6inh0Tc8rOammA==","signatures":[{"sig":"MEQCICAl2iKq0v6iugr3DuZAR1bCpx2VMOU2sias9z2nM2WIAiA84sBtRBGV5rCbskmdWRRHP9waF1jdyyLpNmlzqtgPng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64030479},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e040e8516fa0f4abefca2bd2539890bd6f4e8ed0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211109_1636442233124_0.1836700903630608","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211110":{"name":"typescript","version":"4.6.0-dev.20211110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211110","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"94ef9bfc43515cd3847525bcc8f3e71bc3aa6cf6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211110.tgz","fileCount":183,"integrity":"sha512-XiKtpBYgeBT6aqt0PNRkrge5h5jqzh5dUllcD8/nimf/rAo+F8McXvWdnjs9no9gCLYNZ/VfiO5jElcwl42EiQ==","signatures":[{"sig":"MEUCIC4BOSBj2y0owVyus/ZuiI6/zwANPtFXECIPELSOub3iAiEAv+94NJ1yrIp3EhBDQPZerYB/5wU2imXeWjXNn1nHNZ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64028804},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b12d5c5dc5106a9ee040cbf4acc32f80a8032c7f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211110_1636528788696_0.9344068798105869","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211111":{"name":"typescript","version":"4.6.0-dev.20211111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"50b56aacf3e3918d37c06f6e0c599d5ac5c078a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211111.tgz","fileCount":183,"integrity":"sha512-khlP4Z+UL5VY7jKmDmKPnQXN9noPFxceVKNwWVDxUvnoWi7L4t5tu/Eueq1/8Oaly/TH60a64X2YXC47eu/SPw==","signatures":[{"sig":"MEUCIAqhMm2riRwv+i60YRbNn6iaU9METRy3zzAwnehrr1YUAiEAumsUn2BmTfgegztF6ScKvt5ffTcwJT6teQYlRmY6rxk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64028252},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7b86a65f22f1e33e1e0082dfc2ccfe7ffbc6b676","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211111_1636615107671_0.6066593774819928","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211112":{"name":"typescript","version":"4.6.0-dev.20211112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c66ef9fa78f78d3c9336990527fd4926a6f5b25e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211112.tgz","fileCount":183,"integrity":"sha512-2MEUYMfg84B8kuMTHFOEHOu9YscAAt4GqOU7FkfQXTwC9iGaGwUwbBeTaU+3xvJ18XS2sv+tCTWNRloqQxvPmw==","signatures":[{"sig":"MEQCIEv82reE9EWB1wLLGBOiGh7G4UUmQokUcItQnpk67TRSAiALsoKLNbSXbyqbfulX2PfNusG4e9Eh2khtAcavOJHDPQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64027255},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1298f498f4cde7fa53cbf050ebfeefdf85c848ec","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211112_1636701471488_0.8563847233294357","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211113":{"name":"typescript","version":"4.6.0-dev.20211113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3e1d540101eca6cc1bf25dedc9882e440147462f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211113.tgz","fileCount":183,"integrity":"sha512-JFXPiCZDupwa9ohyWYHiYJir1KIbSDbVUg/l5wKJksWVm1pVVIcOK21RH9xCC6/fHFgQGLzuVbJrPD5YuN9SdQ==","signatures":[{"sig":"MEYCIQChjCI73M+UoqDoZFfqbKLOzZlEDPu5QVmzpZ2BsfLpHgIhAPkK9fiWZtVmaq2cCJodBINYgO7sBASoYHYE//zk8jOu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64027525},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"719ab0b47721c7dfe72708d8771f6778f2de58c3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211113_1636787729193_0.6183232592433345","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211114":{"name":"typescript","version":"4.6.0-dev.20211114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"df2c2c3ae17e8eff0e3143aa7b5abe5905135637","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211114.tgz","fileCount":183,"integrity":"sha512-CM3y71yxJmungjeaYHNVAZoBamLGcLovtBFgeDo2/yu/cXiMnH9kNyfAmOfQ5XlPJblG3+YeGxfC0Gucqn4GoA==","signatures":[{"sig":"MEQCIArA2F/iv1UVD/2UxYfh6DXsd3bu3dFL0bm1c+xum1OUAiApjOqf0vGiwOVygabsNDBAahtwu4XuJMAtc/eDjcDGzQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64027525},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"719ab0b47721c7dfe72708d8771f6778f2de58c3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211114_1636874269705_0.4143914319139219","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211115":{"name":"typescript","version":"4.6.0-dev.20211115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"215e5d032e77cb83f382dc88e901a0757c02cc53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211115.tgz","fileCount":183,"integrity":"sha512-rYdYp/j8OhCRFs97l7GNOX9xGHndwwgY8AcL7LDzmFXgBOXC2VLoQP48nCg8FgVzjK6s0M5V4nijTYHRlwiqGQ==","signatures":[{"sig":"MEYCIQCSl3GrjTWNRjMp0WipCBB4zrgpaH+kjcJHOIosYBcBqwIhAKAEvIMuM+bXEQQAQ6g2gdrq7Zja6JOL7h40caFp7tIZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64027525},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7615547d426d9e9a633326937e8936b1083638c0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211115_1636960618540_0.3389433864581177","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211116":{"name":"typescript","version":"4.6.0-dev.20211116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211116","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9f3968ee7cc1b1417dbb19f7e924a47cefefdc2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211116.tgz","fileCount":183,"integrity":"sha512-Z7SBOG6T/WRwP0zkxIzzn+TZxUgO+eM0YUfeSlU9mEiJOqxCaMyKhH42v+mQ/Ma3Dtsqe4D+vmrPGthZcETZeQ==","signatures":[{"sig":"MEUCICptemYoUjSCynerrS+Vi87NfpOad14bCK7oYxet2IF1AiEAggIkqz/DACOyF1uVOH/Bfqrs9EqG9X01OM+M2atH4xU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64027525,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhk1qZCRA9TVsSAnZWagAAAdgP/1V5PfwfdOYF42na5/Da\nqSaN9d/1SzqIya01mNtTvj2+i9G1Umvja99EYjii3G0lsdjEVgf3ls0wBaCh\ncgkl5TXi++QaAVWwF0gK0D0bheraoaCJrAAMZXhPoG/PxEQf5YgQ3i9oI10o\nscaxkE9blB31jnevHKPoU22HDCS30BJO9Ptymx83L3dwjqFk43K8jPjIP/5N\nYn+LyqdPhXHWoM+FzpbOmd0E2k2MiEfq2AiSWFoT/8tgn6hM5KHhuSnGE+fb\ndW9nEiV9Vtm2PX+j4UjaxXEDvtL0HoFONO1zgVUq1kxmfAYWVQDinzt2DBo+\n6uUYRlMPokShZ2d8v0oCV69jyY//XJWS7+gJZOIvRpJKieoMAbzavCouK0pL\nfu/hNrcTHwwcRs0wU53nytBUazZ/IPwIrKRXRrK4Nh1TQ98MYSFOoDQKVd/e\nlts0ikuk4YEpS9TwX+4cA9DjgNBT3HEG97mEXrTM6klipVHcCLAKF6cBkWzf\nuBl2bh8aWYIRQps/zOnTnf9KBCrHUpHgfiAVTsJnXorBENPmWK0Di0kRtk9Q\nAYnIohoCBLFa1QnfgtxloYiFlJAb3xbAte1mIgGOiMP0mdyLm2OeKDtPaufH\nlYXS8JcmqjblOHAk9nw+jSjeshJBXCKFaUerJsB4ljOge9YR9R3WKOj57m64\n1+a6\r\n=rk1W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7615547d426d9e9a633326937e8936b1083638c0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211116_1637046937365_0.5715863263449315","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211117":{"name":"typescript","version":"4.6.0-dev.20211117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211117","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"97b046e1460ccd71ff4086833d039931412a795b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211117.tgz","fileCount":183,"integrity":"sha512-nJ/wzcX8J2vH8EYszhtGC6yYi37e3Orqk5WHvaQl1NLryHNq6AN4uG1eT6tY5FXnUqsNs/SiXx+dBQ95jV7d4g==","signatures":[{"sig":"MEUCIQDaiMHQUfAD9aUbXKKhk1lCS4s7KJPHCxF4G9QRKBYevAIgLqeaW7s6nZQ2gjz7FRFNHERtILfYREY2nesZZfS8x8c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64044669,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlKyZCRA9TVsSAnZWagAA+LwP/RofIq9IwvP8nv/E55Zl\nEUv8de4qB0f8gi7bUpvoGcdlZcRPzulcpBF8RVUwk+L97stByZ9G45fzp861\nDBsf1H59fBUpBK86McdW7hdiMSvg0sm875ECZQRUdOoABF4Xi5cnffmSV2x0\n7pRksUyffcUXCsC8mmhc/M1dKE15GcDytdZSNILx9/7Y1KAh0sT9cMzR7KgK\nbUTI5ciLPcZ0zBcvVo8wkZtC/K0MTYuC9e/B0yalEpEME6rVyRjuQfaxRLlb\ndZKzZFhoeiKQTLDZxBpz/T0j/R6Kpy7T6LX+UgrzKFEX4KBli2eLeqiJZdTs\n+cjsW3wDwZrgRi997Be1uyYFNUwRwNauiS0KUlqoiCS9BD98LCubgDA2pyL9\n1K7rU6W31LfDxAcRof9gTtr4/02iXbdgyciKY/ZkdiccrnWSvK19DDLDDPKw\nW+5mL+8kL+PCFMK59y66tJoycS/8zbeL6EFM/qeQJ0QBDbrbvoTfOZNNucAQ\ne6oKm+SGEVoeHhtNjLRP6V3ym7Ge5rjEDm3Q7FLRTtZlE/zZKm+9OfRW3lAk\noCRzexa0DQvgJ9DXFA20Hf4l2YjCyATmOfPNCm6+MkCWwAyoLTmajoEQ1wtx\nrSiowGe5HHuE0D/4HmSlrs/0JgIGdQrUMhYPceTgOA+WD/W0xQqzaz+gNGVm\ngjmT\r\n=pJM/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"009dd487a6543d16c8e403ea055ac0683c6bc5d3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211117_1637133464860_0.8753963435480927","host":"s3://npm-registry-packages"}},"4.5.2":{"name":"typescript","version":"4.5.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.5.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8ac1fba9f52256fdb06fb89e4122fa6a346c2998","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.2.tgz","fileCount":177,"integrity":"sha512-5BlMof9H1yGt0P8/WF+wPNw6GfctgGjXp5hkblpyT+8rkASSmkUKMXrxR0Xg8ThVCi/JnHQiKXeBaEwCeQwMFw==","signatures":[{"sig":"MEUCIQCU5Jaz7Hnl9d4v+QpGAVKNiPoMg6SJCy0/FN/P/EkbPQIgEFQGaSGbewu69BcmHQIeJEp6UuijsHdkFAwfzQKm+RA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":63993903,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlUtOCRA9TVsSAnZWagAAwmQP/2UYobz31HkNOUHYfYm4\nShlmbaG2t2TALTORkuNO5/viK1PaBmLxWxcmmamlNL934+et8t2R4UHA4h90\nikoVC5kQQn5tNxiMZdEmHw4s34Z42dyzpXRbJJ4jCBJLTJ+4PmsDKf2bK+Jw\nFso4Ha69FJnljYcs5pP4sXCYdIvq6bjhIHY0BfVOaguDeU2WAZOcxkgKg+2O\nG+4psYZMZ4YtA9/NGO3g2qGkPYZSmVKWO76STHw40g6vpVHTIEe3SpdNbAfb\nfne77UynMlSPq31wZvF+rdrrjSYiOFkgR/FXFEzGqaYh+/W4Fn54VUb2tEdd\nJATa4gIMZa+iQwYG4r+JsnQbtj/f9xt1n4fTHwoWLvUjrvd0T9i1lMAXB9WZ\nvzXF27D5xt52GyACyNyiyuBF+AhLYjD+pawkG3Bw/7HmX3JvxwkAhYRpmbrg\nPjb1IbGc/p9r52+dJuX3CCp+nacN0ZshvDchQCWiIIc5UvzkIhdR6FWPgF/g\neo9PzW1XT8zHuCxO5tClPsUY2g1uMRUPpVy7CIboeH3PbQMgeZyox+HmFQas\nZkGuIrjyPMarCpKp/wqWN+UYCB3x3WeJKCD0fZqavUVbDHnG+pPUoJgsqmyj\n7Ijl7QIga9iIUQ6ryRukn7kNiexlZ5QAz+idJL3cLvWI7KE3H63M/nRD26SC\n0tND\r\n=/9DR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"","_integrity":"","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.18.1","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.2_1637174094332_0.2750120775976006","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211118":{"name":"typescript","version":"4.6.0-dev.20211118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211118","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"185b6f41b6ba5ad5747fa4b19502e95775ec13d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211118.tgz","fileCount":183,"integrity":"sha512-QPfgtKYsYPSpy2PfjwTWsO8y3RuZzLL+JDbzTwlqkGibYkZ9JfGOhRfkxZZdtHxBkMfzcii9BmAy3RQtzFT06Q==","signatures":[{"sig":"MEUCIQCL05mH1YVDBZT27XASCVi8mQFhedEV6qmDbxG9WfkJfgIgabt2Jg3I8/g8zXTUJ1PRYELDgFnwi0PzsYFTEW5g3uo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64049871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhlf2ACRA9TVsSAnZWagAA4YoP/jTSytj6gbQS7W2AUScu\nFmIcGt8LaS0Eb+kzxxS+rGpFIJDDAa8TZ9MbZBWll7f2Ze9M6IigM2S5o096\nm3Uu7Wqorcx9eUc+p2XlmWVtSs4dQs0vviIF75L5Q86UQr9EC4SE+g91HFRh\nZnA/F/zWmzGO5lw41tE8jtbnxRtvPDwurkP0n+4Ren21KNfYYR5HYK4iyzQS\nK2IdO5ewpPWrvQL80dwZTqbmP/Bw6E8Mvlj/p/Ddb6O1TtR9YO+GfvkOpm3k\nPUTGJ4j9PJT5MgncIDqysKjaIE5lawUP+8SSTEo8wM4hb5P7h/Q96l1bi872\nW7W5VIqOPk0wcLa9jhXdM/I/p3WY9yCb1coxjCvfHrT9kv/eUkF0TEyNwVlB\nrKpEBk9l8bsiemO+7Yqd7r133ytRJRAABBPDTOTD6kls0xsZH6kUzEFP6p3g\nq+AkXGwnhhmdX52O9TxWD85mRH37CgytHVvIJpWsREQ8wXMP1ia94e5cV1u2\nQeieeL4UeuwwpjyWXWsE8Tb3RUEHf+sKW36nqFAA7U0OG+eIuViXSfFAU3kj\nzha0JkJWxb9eYxIjYFjRt8sd606r0ROlik0m53yw9Tr38KhhsTRuMzOLjgLT\n+GHYB73qB1uBx3safkByrw2qsJZWeBXlj/ZpF7yDv72pGnw68aRFW8wPKygs\nGEG+\r\n=lL1/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a75f26e68b0f423e5ca07d04c628c57adbc9dd06","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211118_1637219711547_0.9968177259160897","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211119":{"name":"typescript","version":"4.6.0-dev.20211119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"57ae2ba92a5df872ca8933d658711e7c0d5a8b16","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211119.tgz","fileCount":183,"integrity":"sha512-N9LNr1az0JgEwLBDdIGRjImUS09blsB9DcYcVzlRmh3MlVOLrybD91BVUiZSyC2l6eSniXmnauxeza9b7NfGlQ==","signatures":[{"sig":"MEUCIQDOBIYpRTmmNAHXpGtD9XC8jTZVmn/W5DwOpA829UpO0gIgYlUmDqh+lVtjWge80+z5Pz5O+f6JF3199ciOBLtG9cA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64053996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhl09HCRA9TVsSAnZWagAAQ2AP/18/kD9KdAqOKsWowM+C\ny5BE7aKPTwD9MeFs7wiNaEauWqlwlaTkT1O5cf+qRXxFoAMmXqw17jG5xWGc\nhYTnjrPhCijzuik7sQeBnhiEYvNtLeXJkcByAgpP9BNoPEGqQ277FesfuvW7\n3khMGrsETKMzxSK6aFBUndvrcvrI3r1yaEnM55jMR1DP0b7nJC2FIXocWh/N\nHC2PbmPJeqoYt4t4Pm66ffiwtTM0TbRmNB33eAtyosphJRWN2GmmRANGNw5k\nzCDUH5JCBgDd9FFQz3A3uEMGQssQqN7JqCBQJhOE/hd5lbpj7xQK6qJDLTWP\nk1QrYEDVye412RxkCuPfdL3Vz/WCFCSqoVGyVNOyJdidCmUZBHz/sI+LIe8W\n7VNhbhDNkgHiJuYW4o6hiEaO2o0GAG9TS3x6kuQkRPkp7I+dHMlQzhF+zcr0\nq1KorycVO9G9jPtrLx1nu9wLYSMZcjvjSqROiKQU21GnAo0zg28n23cdi8d3\nP89B6Y58wapzNq0az1+HMkqDQRb3YrWnlWIs50gr7h2wd3idBlJxnBZCTAgO\nuXjGo3IX4nSvmnTSZXmkLoSzyasueTOwTd6VV86zMJZRgcWsbWgkkA/oLNY8\ntxDdLTYwZGmh224fZ07ZA7hDPmSgbPAMS+QaiEctgs12gc9HWvZo7sPe1MUy\nhVtL\r\n=jQAw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9766757ee6b4df479330c170bec3a8951dd95744","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211119_1637306182837_0.2873254773668117","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211120":{"name":"typescript","version":"4.6.0-dev.20211120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2860a7c2db8af4973dabfe3206f8470178a81a66","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211120.tgz","fileCount":183,"integrity":"sha512-O/brbZB1X5EFTLHSfWQ592ecFLvdYSTYBasacUdR/V+Hqm7y7lnHtO+DM07fKXvXRZT+XCPB837rp7N8a3Ns3g==","signatures":[{"sig":"MEUCIQD84oA3cNufPbYyKVpcr6dKg+TUMjH9lmSBy6gEx9oSggIgZD/VtU4rJurI8y8SkHaGMCxJUvOZgf/N+WWx7SlC27o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64053996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmKCFCRA9TVsSAnZWagAAnSoQAJ388uOyAVS0w79hgpLx\n098a1Y2Vd2nGsJvGIxEmNLynYtePuH2KKrUNDJm1LCkRZSaAQLe4nk8upfKh\nIA7Bx14lfMJuComwtXgmUHqXnwMjh8X0eFs207NBjIHhfaVwYJtGRu+GzgZR\neqYF2xUX0kehjpWGsr8bzjvxgLDCw5VXeIobKvJHdgAeqPj+aA3FUwJpetPu\neW83uHUk4IBVBAWYafVjAo1c9wl+3WWBq2XRxa1eWO3ib0r5n+Qw546/AxUs\nOw2MBkxDc5ymatMzkS8NExj+MI2su9Q0QJZ+VShI6OgfEZJ21B7lTyirUbdW\nYRGjZDtd7oLprWnbdfbsm99OJA0genfbQFY0oAbg/7f8jvjsxgAyFFRl6ui4\nCbfPsunYCaT1zYEU4wxWXSTsCAnLw4z6LlOJZ5yUmYE1D5+qVkNJ7zFncDJp\nNKzl1/63saPoKJDJph+5HZV2I/RnROV1eNx+PlkgHLDscrhf/sIvJsWc/rz4\n7mYZ8tci45Z4Zt8cKNA/tLUwtb3gQcNOXWeqw4eAGT7ROtf+r24LhALbmIvt\nsrr/NNGPGxDxNmmpTC4YsZ/LHxl3/KBOD8kGKnQA3JbRg3/qej9j6vRcBxUi\nRcgl9oEXXEpUxl0hVDdcdppXG0BvI/zTczkHjgbu+CufoJy1yUi53+mJWeNf\n8rb8\r\n=Bk4D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0163a624b7d91a29cf24b4d411fd6d52fb5339cb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211120_1637392516788_0.8375054800741966","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211121":{"name":"typescript","version":"4.6.0-dev.20211121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3a48516e8ebce67c6905a7fbfbc9f5ad754199fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211121.tgz","fileCount":183,"integrity":"sha512-GN0hCBNC1rEH40vszUh0H/4APtfBq0Wi3OFEw3+NklbWvPAMXC1sYzbYRG8bzNhYXGgo8xBvsdGFMqwmWCYmlw==","signatures":[{"sig":"MEUCIQDOXnAh2U9++QioRYcB8INblRSftP3wcv5/YcJPR+KIMQIgD/OK57LZaxF30bBHCg34yiuN6bxMyj93RX2vXjnA5js=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64053996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmfIYCRA9TVsSAnZWagAAFhkQAJAcWEsqXk6KbTIM0YrT\nkJHjeKT/tUJE8h5+EUvel9sph60j5D01xT4ltBAz55Op0bnmSeniNjTlPSIp\ng+h7y/IdWv+mB7Vk0bMuRm1a8eXjLWqR1Vvewe6N0xkoXH4YYNo8nGEo2auL\n7tFZbu1CJWS8if0KgYrMDaF8YqH0L54FMEkrlQ7c4E1bOchlOTVHPjsK2nUj\nLDZG5nZVmbw7g2Kx90WA/AfPV4n/SwmIK0lgnlUrel2YJmWYVbXOU12OixOX\nFdpvs2AMo+S+WReQ81sD28gmp1ZCAM1YygqYPMbZXJZ3+SdOEyqIrveqiyEb\nJhYnmmml2YSNSDunPlBxCGdU7Oj60HUuzKIh2By2XsO3RZLfI9Lxubm2G74E\nrGdneidNbnv/LdLMULHv3kEYc6rOVwezev12/PKxnNTwXwAevVuVLfLRggam\nc1da1RJOyiVMWYMGK61Fx80QnNOFsZ5+HpbMd2wH7jRP/BFP+x6J4CDeae+X\nxEmyIftvHc042h4Zvr4mM+p6aRAPwKCttwClqr7s0dq2MD05u4f7A+zcSQiu\nYlQakvGW5kE53Kw8/e0FGrMGe7O1X+P6PPslVo3aEi4ko2ITrxwYpUBUPk1M\nhi3Tfh3C0J3pcKvuHC6xqmvoA5nQQhIXrZ2ntN+BtRPDvpeDpo7h5crgIevA\n7tHc\r\n=cisI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0163a624b7d91a29cf24b4d411fd6d52fb5339cb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211121_1637478935746_0.9486622107165528","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211122":{"name":"typescript","version":"4.6.0-dev.20211122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c23d01ecd22e8539b91a143ebd67a517b97d3021","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211122.tgz","fileCount":183,"integrity":"sha512-pQHqnO48X5zrnqAG/AasWXitqxM87qHJs5cXMBtP76JvlWLGFW1XC9PCuL6DmpTtnDwEBcxopNqlspeqNL6XAg==","signatures":[{"sig":"MEUCIQCAb3lOaZAMz39iJH/OsdcaJXZNYX0dGhY1KO2EZ/9yBgIgAMRiArPnbErSaWD3bhARvUgMdht1n6R2cc1nSU56p9M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64053996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhm0RDCRA9TVsSAnZWagAAA9AP/3njNEIJ47sfAFN0T8DL\nQR9LsYFBO7qWBkenPmNI7+uBbgYglIqvWZRTgESIYYmzYkSILofgL0Y+3nFI\npmyJ9YjAnyagpWjXU819dbc/5OC5llHccsCcU1y1bROj6icv9fAKseyxHeHR\nc3W4TnsJmEKRuCSs/q2GPCtXuRR0c/qVAGA/JLNe7SELs+vF/xT1Zvy7RLCD\nHR1G+a7+YYKwYr+XaMTUE7K8E0AmfTyEOB0Knl1Y26eMebdqkGM5KhkSvDej\ntpQVAgWNblJMmLORoaU1nhk9uhgY9PlbSzxKA5J5dLqmks74bkBnNNQl9I96\nm4YEMpsN3SN26ko+Ei4HJnae9FNiPTgmA/7+TPC40iHSZMZc2fkAIe0m1ll+\nNwvr6feD8Q99mgdn/ikKgUy1ar300RQ4DaJVyAKEQULWjVqT0OHarruXY2BZ\nEFeLAGu+ut2eMzQfoIJe95d/Wo8t5lAmELD8dQWPX28FjL9DCkC1fk4HwNKC\nSxDnJ4bP38Uf6USg46AFwqse/z9T6yfbLck7pcav7k/U+ShObOJQqRe8dfKo\nSDaxfahk1XRwghGZGhyA48C/gM85I1eJVcyvVfG69+3xu4qxIg7XY8V0FayH\nBYKjIJPXC2c6tJukwk6ngxqCJNt7LXjstI0xCOQ4mLk3j0ebSMosiuEn8qo6\n+A3j\r\n=vM40\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0163a624b7d91a29cf24b4d411fd6d52fb5339cb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211122_1637565507175_0.6259689276864884","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211123":{"name":"typescript","version":"4.6.0-dev.20211123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0cf4ffa71d7f04b55444ebc2f8621663c79c1f96","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211123.tgz","fileCount":183,"integrity":"sha512-wYOeR9dBNSXN99ezwUrTGhR9/d1seue4UvRWVraoq1YOp67tu3q8BOF/DCAf2Y6k8/RcLkNoLITyApFAVAIijA==","signatures":[{"sig":"MEUCIQC5ekX3LOWICTRz0LzkvUz6S6See/+zX8g8VzyDydC4PgIgMGxKFjQitP6/yRnWQVgFnhIa9Q8aPPioSPF6bDxEfmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64053996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnJUjCRA9TVsSAnZWagAAFZYQAJxkFrprNWftRvUUwBf4\nfTyU+Ss9BUyKbYeA1GxTVY3hF2zrGMLjmKHqapLfxGUHcjmamuMWFba56+dI\njobnSoaNTjnvnhOipyEETeMBeHTO4MU+XvpW5mKxrF0GugKCUyg2VugPLcRo\nwHGdXYSYXVI+euHLq6xkZhloKrtlWw3TxHhGiur5wkDhBouITtV2n2oMzs5Q\ns3O9Q23P3kjtNvfv3ohQJnZGfeQBPt+y9RZTuwEfMwHPLbmQfkbu9JT34CLB\nr7tMh5gyMgaMNa5Y+y30BFZSGqeUm6kaIdilZFu1CJr5tBGotvQhKvWGv/bw\nUt2uu+IuHb/fWYd3M7zHolTTDjh4xhp8wMzAi7WogqMaI3UX32FMry7ncU0c\nfzKSQF+dh49MEPTqaoP8gCQWSPqogloa44kIaXgo3qCE+2o9Z5qV53QSk9TL\n3rnzA26VmUYEz0NQDZclbjeOPLP6KdfhVtnz5avyrbXZGKQ0x2ldrIYGihkv\nKtlbryQySaKlWRR1yN3Kp+KYrS5SlZCsC09oFvtNTid1DHOsVH31Kl26vYVi\nwjvQxEH/M6QArmkp0RGla/2vkRyFF05vNDMYpSniKaqYNfCcLg545bnaGcK+\nBWXeIetocmj3DSgT7SyivRzcCSbDfz/Q5Qmj4Mb8EDAqgKZW0HU+Dc1ytPHG\nE6RV\r\n=rnQE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0163a624b7d91a29cf24b4d411fd6d52fb5339cb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211123_1637651747357_0.8783331392664222","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211124":{"name":"typescript","version":"4.6.0-dev.20211124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211124","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0637ae150cf299f6a809a4b1b27624ceea047de2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211124.tgz","fileCount":183,"integrity":"sha512-ETq0nFVLXolwFIBJZgcxc2IxVI/fwqe1LIcKgWAlmnlwQ3f7EMljl0Y2Zt45P+hhB9Rh3bfR10R49mvS1LtW8w==","signatures":[{"sig":"MEYCIQDRkkvN+8efSab9GY+oO3znE7KFCxicUBRbJlBRvc62VgIhANz+HT5NDelLZKR4m/EHpqhYgCQr3SYeaXaimMdPq2Jx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64053732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnedACRA9TVsSAnZWagAAlKIQAI/K1GSl/bpbmbO9PW4C\npZjEhPCcxLUPQVj2JgdVC5k5GvG84kHduJsGwocjcxP6Y9Z9UiSWhjbBPfSU\nF+1FIAM2YswnyclAoSMDbDiyh8Gtbkjv7HRf+oFukKS7FE5G6UleWCre7vCX\nZ4IwVeIPyZfHS0PbpNxamJD9YbDFDvwDP7cC8CB1yJ3KCLoEvY2p3IspGPN5\n284Puehovreeku4tZh9Q+arFJRernInY3n5t+JfqUoMsmatu0crSAPjv9ABO\nMCvWiswu8iW8ZY+S8perIJGMKOlKJtrjk9B0z4DpzwQBBQBeTeO9thPD2KfY\no34QTzJ9jn9+7I62WeuiZ1PezBo0HIZvvjwLAMQ6scBwL0/L5nFjuOinFKw7\n4VjyVzZVe/Ucz5vrxTUDyRVTbYDd07Ueu2lLesFLzWC0hwgb61UHSzumJy53\nt5YXKJrYbx8UAiaMcUH+DG6/Ko48kBfZ3TVuWV1OqUhTB5HJdI1kRoXO7S/P\n+d4i1lsGZcuFJmmZrPh5pEkoBWD1kTQcmtUS4Sia7eCsEzXMg6gmrByO+2Hn\nnYjvUrXh0/VcIvgoUddRz+3DxF+1jhq2+iZFBDCGgBaAS3UFynXkoX5qTl0A\nrRY5d5Iv2vr74ZG1taMAvSqc3bc8FO6RKVFXKEnr+ERge+F8fGj9P+2PW2Tx\nGhUg\r\n=gPr6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"90600e1b17edb9072557816657254001a07c3ca0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211124_1637738303658_0.9728490319455951","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211125":{"name":"typescript","version":"4.6.0-dev.20211125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5ada5f35729e0cb5d277def23f2be9d26c419579","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211125.tgz","fileCount":183,"integrity":"sha512-L2OsmOI27fdRq88oIfH55OGrcvYjlI0ckXB3wLCJIzPCnH35ZoTN8YUKYCvZ+F/5K+76ds9PrFQPzZazA2ogSQ==","signatures":[{"sig":"MEUCIQDwhXZ6aztDyqgdL0ie0WEawCOXECPBZ1oSsOImPPr9/AIgS0aft/sCs991fOvwiOkF5f3zuc05f6lh8qnvNnSArmg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64053732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhnzlDCRA9TVsSAnZWagAAgX8P/29EAXnF4WTQ/Qv0KSXK\n0epjcx1gkfH46+pirHphC6DN69onRaMF4cA2RxkkwgExVUDwbYCtrcvyJsbl\nKAwYVv1ABHN9aVgSbseVymT9JzzNCZe7hJloMU1wUce4mopUODw0jdyX/rUF\nWZUP2Opr2p90ez06tF29Jnhjwcf3wI+zRKu0o1iFonug1Y+HoG2gOE2IBtR4\nhTUmmSIQZPX4V9sJdD+9KLD3w7tk/SDoy9KzTFkgoDk73TeX8OBEMWI8FzN9\ntWBFtrmU5UqtC91TTaNXwaGdUDL7LumU+pyXT61/MGwRyy+jZ8mwZkfxcyDX\n3SrNutGPWpeykV66XtqHanjf3t7WfxRSDLwpyFB6a/3NknmpKBAYW6fTHUKD\nqgZAQM5J3btMHsdvyTP1o10tq7WmLKqZjkP7OWoI/e2tjSXe+vYuhuI2hKpo\ne+MKuR5jy5O6nM8NRpWJ0h1lOZf8qO77UKuzE7CS7pemowjdA0zHOP8pWaZc\nqUS+BbOY2gsjRO1mlxcoqkmg48LBRg/WS5OhIDPu3fFcOdFE/v9B30ioir+a\nrVYLujR7c9SeQYVvCgI/e3kKbL3Elky1s/RkGYoy33q9j8jBfdEUFU04Ff98\n9MWhIV4Cj1wd1CA+W2qZ1Sl5KU2YTiJIpxkeaOxP35GvMFAIElyzoGZvZrV/\n+B6m\r\n=i+df\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"90600e1b17edb9072557816657254001a07c3ca0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211125_1637824834627_0.6589357280684534","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211126":{"name":"typescript","version":"4.6.0-dev.20211126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d27ce3a360dc4da1dcdebd80efe42b51afdeebdb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211126.tgz","fileCount":183,"integrity":"sha512-m+LKstqVv6FYW363aIbO6bm8awsLbeSUCzU6FxPtzUF/WJkFieQfYmdVwEIzigeTpw4E2GETBXnk6P6AixcQJQ==","signatures":[{"sig":"MEUCICsFH2rSeEAeFhP+xGCxel2rgDGrJjL97Sqnyc/asZKSAiEAkeR0S81o8dd79Hf7xQSxB6DfSeaa3cxSRM5F/GV7ZxU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64053732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhoIl/CRA9TVsSAnZWagAATTsP/2sss4rUecpJWwETve/V\nWj9Bh9dZZWY2mlnEYZjZmLroftugYR6urwK7+wRzKW32SjPxuOhDnPlM1Oua\nHnXUYTGSBDxaDv1qv7JUw7UmKSWJSOZiPk/zoYgBAVIh1U/S3Ng4A66C8xqo\nDOJPMxLQDg3dbGhCgPbnZGPI7l2YH3pGYukFPzzCd4dFoKV0S+dEjR5NrjZD\ntY02CVN4qGvckrd5kuEWUAg1bdELrQ/u6ymzFcNOpCqddNVTy8J8Of4WrmeE\nSr3f9wkBxAOYZ7y4HK/Es3LW0ajwOq6DUzTb2pg7LzOMZPb2g3erNVCSFfk9\nKc82RWLmF1OYCM5OV6idoGcVr5i7ndyywj1pZsiQD1b14eWvNWTjUdDIrkvy\nS3QhcchMAEj7MF7ew63z7Y/mItGbC+un/5uCdi8uULPvfgzbSdsHYGukUj3g\ndlgVDQj07SRx9s2LI0E9Wj35L75uij4eFC8iLKgQz420it1DpNAr5K7RIUfH\nmBhFxZ1v9bb/M4TQkaxMRYv9S5B+zrpB6j6cy+3N3Z8ukB+e6YB6lB41/KKD\noGOT6qpmMymYHD67e0pw+TqmOxbn0G0Ty+eyaBBDoqV6jK0HvyLN6KB8sq77\n92qzsxisJwPW0NMpyv0bU8BajpoL0sUbGIQQZ1m+Xc3QO0TSynDPLMTTKWyu\nm0mV\r\n=pZba\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"90600e1b17edb9072557816657254001a07c3ca0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211126_1637910911248_0.8941118975254667","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211130":{"name":"typescript","version":"4.6.0-dev.20211130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ee2b82f25cd84e8ea5d8a1030593eecbba693597","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211130.tgz","fileCount":183,"integrity":"sha512-JS6eBsq/pp2uvylUNRncHxHD9D77CJKw/EtIOiJj+2eiAF07v+Q1GoGntr5HlMrB+FqvDCBtjXtT6CRkSNq8Pw==","signatures":[{"sig":"MEUCIQCneZDmSyrigE+rc/X0HFPbPg0TmLYI61IOK8FDHdTCOAIgLLALYHjL+7aqJa4z9isL4NN3pVpTzaaJpFxjxPMkjYw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64081996,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpc83CRA9TVsSAnZWagAAoUsP/1Av8wwdXIxV/k1XD1Me\n14ItczPpFE8SerHRJ2JefMPBy67jATa3moWf6hDJ9cCvBFK7OduInVNBMmNH\ntjDHxKCJj+JsMe8v5Pzdi461z7hJP1AgGGr/35XU6QLa4cEx2ajr6KxoCKrR\nRD8gykGYZHqrXuEIlg2WXOQtv0ODAu1QDPr3QWEvWZW5au8J9rRItuApf/m9\nsbtTAb08DEQ5y6C7Zn6zGb4lIEt4vO69HrSAGXReDgNrQIPaOd/SLJi/WDC8\nXNYHcUwpsRJUeu1s1xBs3Ny2uVJk5/68yu40AuJsracSeoG5psMSKEUM1zXz\nawfyRePLYGqNPPslw+aIrjluUCThRt+13R6GzU1wWLqJ2Em1/iz+dh/cVgXE\niNJQsg1TTal01UKNhOg8Eo8BstQMstvq5e9JuDZZA2y2jEO/szh9scdmFwdT\nUoF3P95bnGIlmVT82EuSKEWxF8m0+ko3mMinvUZNV9Z46y30Pu1ZwbRAh/01\nPw2Cg8K92iX67YtMwX1hl52+W2yc97r+weHSSbbLB+cFjWqbBewNbhrx7RsP\nP2Fw2uae6MqzowseKRIEOfNc1XkhJYDqvT7CFdPdzW7Rg0mMhtpVMbRTSsNM\nu0vrPMi1QGFwqI1WtFPVH31r9LaQTEeXBazBxv9vBEmTeV9q7ETb5Heox1VF\nlHEU\r\n=dRC7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0f3d0e047014ca71f0b8b457aa83cc8590bc5650","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211130_1638256439143_0.5847604785731084","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211201":{"name":"typescript","version":"4.6.0-dev.20211201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0e4395a826d07961c67fab640a689eaa569383a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211201.tgz","fileCount":183,"integrity":"sha512-1anRo+AvSLTTVnhHgo4USDowZTpv7//Yek1W0ADf9jLZeNqNIOzCjI2eBoNNAZ327cuikwWuo+u8cDO+9VEYmA==","signatures":[{"sig":"MEUCIHr+tElc4ZfHc6rPn0CSZUZsCgCbkyHnm44ouMEdYRlBAiEAycaK6gVRdX48YlgySo26RJoIw19PIFFORoyohd6oeTM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64082896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpyIjCRA9TVsSAnZWagAAb+UP/1iBb3SsmrCKfkxglL36\n4ck/Hnz0NheXrkNurUPvgXb66HQNdM3kvINrIFEJpiPLo/Qhbnr5CxsH3XS+\nfvTdKjeulnp8Y81RbiWNaoB7iDHXIKoTxp5z8hoB1wbBWdwJjjNPfu1VjsUP\ndl9sRFFqPyatNYE3m99f3CHPK/QtIqADVZx2r4NVX3C+5hSPrfcI9dOz5FOz\nkJSsloE0rSxWpLcrdNv0sKMYRiHDjg507KFsNHPkY/+Td++k8mo3XBJhbdq0\nn0h63FM24vTLPRwvV1kQVXjTtX8yX6RPXhfbozXrnUkdxD9UfuJhKyPlu95H\nEttnN8+JdAyC4cBdef2rc8/qYKcMJaHoaAfhXZ0NezENzjpQlQmMMNbyD9Du\nsFGPz5CzbUs7LVxqkJCkOAMv9EIhLI6B21KaJDrIx+OlWk+tPs96fQtiXC0+\nkQTzhxQuwEOUGMkICXPvXnU7YXq78xM3yF52gfbuWkeqqE9yLi5EpxNkf9Bs\nYuR3OjnIpiSroG1Iqa1JEnJPsbOvTsM3mt0QscNKZSIt8SemXLcVzH55lhep\n4asVKtOdOoq/cKGfBg5RXOvce5BobJCpnEF0QZL25LuoI9ENOQnsOfWuZID2\nMSfQFMOmdH2E/TnRWHhoWY2cZcNckB98MANr+4lgKSk3BSWvrg6zg9L6IKPb\nqEQ8\r\n=q26N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b8ec791ca17e36b74facde665729164c5323adf1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211201_1638343202758_0.8915722405232227","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211202":{"name":"typescript","version":"4.6.0-dev.20211202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cd99dda89d2881aec11a5fcf0d58c39629c97b87","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211202.tgz","fileCount":183,"integrity":"sha512-GW1OgQGLFnmcm8cyMTFJfudA78Ip94Oktfpj9ZoK1KDKTtGR5pAiZR4wkCYNiDnpWmtYgL7vgRL541KjWBuCiQ==","signatures":[{"sig":"MEYCIQCYraKpsPFZfKHjYtqMOViaNZxoshm+h2KXKg+IRgj1dwIhAIRQhlObnrXrXduyxQnNoPtDPLc8EcqcSNZ7Flb1/oua","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64085601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqHJRCRA9TVsSAnZWagAAfc0P/0XZTWugDjNIwNAxTkdC\nS9S0IfrP32j7FEwx5wFYIDuf8hcflHaNXNxV7ZZE5lWiM9ajHRZ8Ifb/dlOc\nz4BWdWXdY+BeDGpk36paqTjdn4G+dTZOSunMEPufegAyzB4291iKfB4cr+CC\n97OwC2ynk2finP24wmsJkaM8L6V6ChscLsUwxaNuhDyCzBLvOsZiJe2gFnlq\nV2NG+NUws1xyULzIWBVmdweVqxCdHheHf7StBGF+XI3NRZFi+Iv8aqVmSMS6\nY9pNzjQD77F08uN4jN/6oaYsU5bbNYovIZC+xxaEMkkpgZu7bf7HJGLmWPVU\nQoIETWaO4LGAPCyBdQ32aJ85z5BX5fq5s+HQtP3PH9If+f39b4q26IkDsBf3\nR+nlV2OeKhCHltIJSmN/cThOGeHaE+FCWYsOdopCVURaCEpYHxyStizXbz9b\njDj0byfRC9mU+Bq3/NNpERwq24XQeKVc4A2nRG3Yfmt26CXYrHJWxjJzGwz3\npyfiXZB0UVWHqQ+WRRTfxCgdFaYBTqr+DT5h9mqBfi1lCA12vRq2zQzPENX7\nHt57IX6+MFaGrR/tfuVJ2pq6lzozKLyObJhPtmiTLMivNZhKDGdO2HQbgHdQ\npsjAtSNJgSUQhM5wngyNBBmbX8Cu2Oef413pUQh2+DX/rgnApg1VSPeM/Fab\ne1XR\r\n=0mZM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"670ad45bda93298eb05d7d1e4a0afae7b02e671d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"latest","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211202_1638429264679_0.20421720195161153","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211203":{"name":"typescript","version":"4.6.0-dev.20211203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"76ae5f9700e334755dcaa0a8bda1d9dc13b534ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211203.tgz","fileCount":183,"integrity":"sha512-SXvnaxyclHGlMUB+hXjhMOESSr2QEInawWcJeumcX44vzrlbkvVTcf0r28/4DRi465jfPlALUKG4qFKFaynDfw==","signatures":[{"sig":"MEUCIDhSslPWlTqJOntT/3Fz+dMQmXWnOyeNRsdNWmlkHzTPAiEAjavBkTq+yIlafst190CIjAwIuzvQSOGmp5Ffq3nU71Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64087978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqcP8CRA9TVsSAnZWagAAcYIP/0eVWb55CPvjXLivNdPc\nnZcyPmc9LS2qIajsxUvs0BYLax4q4b/ksPCC74HtGSbqkAblOZvkFYOYX5xy\niFtxIKSbKEztujG5jVwtzpbmoC3iAnN49DnONHx0dTHwE7kfT+YoCiAC0J0b\n6cNv4GyZOAwyTr4QLstQGfnfdYbe+2k6uHz2HAVjyXLuU9TReCMd94II/zce\nS5vCn62bEwCdaoi5+DLWyGIHy2NlVSnXSs0Qged9Q5HEKqzNbfjj+ZFNMU1M\nZNob8g8Mr3XCGKmL9N+64SJZ2Xpzhv5qwOALsggECa4ILmxascPP3dlwFrxq\nSyke+SY7eA500a+qg0KRLIvxkeAZ/TswuRF2xmuWG6ZcFXa1fkzLR23l87U+\nZWH1hPJRZr/03uNsYOf5cM6xnY/X909zdvzS0yTg63YWKyb8AJdjafBcPw3X\nk+3UYsZxg1svvlZRqybpGtyEZ7dXTNwSPamJn7kq7r2xe+zWQGFVx+lwOl3e\nbIE+IAgWbv3qGUY2DNwST/UI6Vo1xnm18uOr+7gGcTp11ssLl8BAEWB21UAC\nuaXUtUtlspWinYL8Vpmtf7ytCWsk/ofB6j+dfyj9M/KG8PB4xctMDx46+acr\ncf4/BQL6flogVlATna2j6bhblq4fyyhnHdCw9lFgL0aGOwGAjYGUHyLAQWwS\nfzaF\r\n=bSC6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4b794fe1dd0d184d3f8f17e94d8187eace57c91e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211203_1638515707731_0.5089578095704432","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211204":{"name":"typescript","version":"4.6.0-dev.20211204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20f0231fc38c2762e3aec525b2272b2c8a7f273c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211204.tgz","fileCount":183,"integrity":"sha512-SYwEBQvNfSTcoQN4fItDeuNfZm9wxPo8THQJfZdnPEMJc70tKgU7vQRLLMNrEk654ekfSal23KsoxvLmZu7ctw==","signatures":[{"sig":"MEUCIQDM2aEMOHP9LWBW3i0mDbJOd1hNOLwUTDbUU5fpyAsaLAIgGPiF+NYBOctrlbQETSzg0MMFFgtOIBjfuacoSWCcVT8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64104592,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhqxV/CRA9TVsSAnZWagAAJvIP/0TDRu9/RAEHgUS+tpkm\nLCwbXsY2N7injdgAgeX8Fy48mYI5zgPrmvXYxxD2cbRZ0LLKwhqObo0ZrRkd\nSFlK8qH5sO74S9f0f7sqWwo3yEejWAnJTa6tTzML9cMJZYZsWOCdXtrFc3I/\nVUvriGlyQcNS7pGzVajSaAQY0T6f0UiZ5wzWZXBYNDVHqlPxjvP8TfycLHiU\nwIY6cu8QurdKawb1KuCMxa3VjLMUghNisBL8BHp1yimI40wG4y/7eVDNf9cn\n1V4wMh8SKQaQRQXwwvG8iXzCMxnyHHtfIMjZzk88AYMRaC4y2OZ/RGOKApJr\n8QUv5L/Xg1eD+vEczEjtvnVPI6zQcnjeb2MWTRsEhg+VQdScNN7D/Q1jx5Z7\nToaOLACf70P+mT2gKVSEpWgjdorjCLdMEv8xAfg5jSFX4KiDQZBwLsQhn00N\n1zURHa+BM+Jc3PZohgpy2V2a/wp8MnK20HxLID68dFmvgDhAlr8J2TsEPkpi\niJRIpOmnX+DKj7iomBtwkwJ/6AbqeHVUzco//GRXiHMvuTNNWrLwJlD87ylo\nPet3XzUR4qjBq3w5m/sJ/hLegM1Hh1j4ju2wHz/qKXhoJAFCsAN75UuoM53G\nNh6KnhBt8B3x3vNJ75iNguYhOnFrTVKVv7S30CQAaaHx+5ktj/O2f5kgfuX/\n+qyl\r\n=iTJh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b2af6051ef30de5d85763f200511da4eb86c840b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211204_1638602110804_0.3394500172074566","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211205":{"name":"typescript","version":"4.6.0-dev.20211205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"38a5a152e432442faa1f9593220e3b8abaf1726a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211205.tgz","fileCount":183,"integrity":"sha512-OThM062cY8geGPmZFgih9QNtslG04mUgJYFNlGAkqZKBGOOS84gEdV5omwIi09q7viDSabIlyFd45YiIhUjaLA==","signatures":[{"sig":"MEYCIQCChD0MifhttkT6p4toOrI0GaVEK9e0FiryEhj6DqIa7gIhAKUDe0vkk81eNkIyKUuKxantmoMyHuCbPbR616qwpfCp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64107166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhrGf0CRA9TVsSAnZWagAAbNYP/3RTUK+CPn2kBSKOr7+n\nvOgqvJTmZovQB8AxsYHeTdgWM7lu3rIqf3ov9Dy+uR5swPGk1KZ/hihFemI3\n7sLqXUi7ZhtM5IRp0hqggI8/ngklx9XCCdIyje97MVAzcrAShufEbj4S8asG\nVVjvxFjRhfCtDhtLe0Mc4wFEkYKAiWlhAYgpbPk8GECSfhmXEM9xIz9a5UUy\nTjqSF3Ad7ImvdVc9pXcjSLsRbDfFg6yc9bwJxUoxpTHegP6Sv/Hz/2fX3D+P\nnbo3Zosa3yJbUr9d/1JjFUVaRoaAleXj17pD6AVsi4rSDQqmxRJD4Qpjomuj\nkZQ36ixalO7F7hKPALkmphKOTmLLDNTR+Bgp2YghY2Byx4j84jHYf30B/qn6\nd6QwaXrznoZLAI5vQWwgVaN7GSs6Juax2UKXdeXhiLulFCQ1cHwwRfNASCol\n/8Mbjh0cvPC3F07Focc1Eg0y4FM1ZsPkvjVSj8IxqgPhj9qxP5jmdmIVp6fB\nlYm4G9E89TD0FaADHopN1xDEms2c05/0LjJMPJi3UUBGKmDqfPyDE507qYmz\nKy5K3xC0ZRjQbmycrDwwzP543rEnMonANwR9qUyqJ85aRJ6fWtiNNZ836vhn\n++dd+jzRHxXpZFE6EAPrE+WIvRipk/HO3UnB+YJbDaSby/8sTIEbrlZrbJE+\nvnYQ\r\n=5G4+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"97a7901f26290a13ea6c3b057c8720c1614cb221","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211205_1638688755835_0.05477801797807147","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211206":{"name":"typescript","version":"4.6.0-dev.20211206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ac5a55858c202061fc02ae1fa16c1e17f15953af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211206.tgz","fileCount":183,"integrity":"sha512-DWThh1xI5p8D4U0BkiOGZRxFOT24XlKoB3HZV0FdhT9j3g4DC5jerSe5Ndzh/ThZLaAUx4nwNrzINvpf2w5slQ==","signatures":[{"sig":"MEUCIQCmJXf/YGbkAcM5NpZok/zz8r1z+ALDAusEB2xb8V66awIgXpn/x8kqlwLpPXtNE38yi33/jAjXfGSb3oDJx7UviH4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64107166,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhrbmjCRA9TVsSAnZWagAAIkUQAIec2Q4unG63ssKytILN\nCLlCcR4yR6sevm3bZuO7I/y1lekgalPx1ovxHqlJ9rYwz+Vi0G1M6gLyiFyM\naK4ZeUJDhQXsY15o362bjZbcbrWIN1DOql3DW9NiiVCZ+KfzlGFmu0AJMfSi\nIIhtVRWHlbspfemfcju+c5cFDKNW0KPmA8GtY+biHHIYqvR5WWJxuiVGLskS\ndsR+EjbRbuCkT1Q+d+Gw1PRbrGVvxdAqs6SnqM7tSN+UtII7koMfhC8GKRhU\n/mOMueTUzKckHn8l6zdLEtS2pGQbYvZwAWyXI28Yh0qoiBMF6rb4UqjQCSCf\n1KU5+i+FhLQMfryefbCMn+f4Q/irO2fv2EqtipnhQHSl6DnT1XEs6Fjvfluc\nwMuGIU4KBOHEQ1HbKS9fEVJqJRneKkiI3PiMWvsNDo23YcuiVBpJqpGx3lKP\ntzwlBwexMjhbSxVkVcVwp0JyG9QW13MLaLVK70OUKhV2zSmqCbqqTufPMpOI\nFM/hsRLGpOqJBMIgBCG9pziOBxwV9zCQkozhW3JBGpiKTfGUpEUH+H+8vjZ9\nQPbpEpLgpWam2Wv3Z42mA4+ZzKwV5smrSXwe0FYkFwSfBa+DqwRnWH4SJcBW\nA6RTXxa4KyiJt8YkUwiMtbguZ7/4ch61q50fsM2s/RwgSzAGpCvY35d2yvwB\nEqhT\r\n=i85D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"97a7901f26290a13ea6c3b057c8720c1614cb221","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211206_1638775203208_0.04640271448658506","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211207":{"name":"typescript","version":"4.6.0-dev.20211207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0ab38bfb45bac92403693fb22746c5e1d30a6b70","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211207.tgz","fileCount":183,"integrity":"sha512-YiAu2D64LUboL61keXJWJy1qOmACe8mrn/S5bu2tgjRIOSfQd3VInYcotY6WUt3p4JId2wN7onQAFwgKl9/oYw==","signatures":[{"sig":"MEYCIQCrmBkOILbTlg2UsfTGKe4MIZRREmtQMayVfF439vC64QIhAMTuX05O7okWVFZsNKQaWSGQEBvtQAiWVCwBNZBY10bp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64109210,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhrwoWCRA9TVsSAnZWagAAo1YP/1zRWOcvsBVDfiY2raTJ\ndQtAGxwRMGJwyRoA7CW+6FWVP4mADzRp/2RSqLVuGjN4YQ1AAGOw7c2ppkta\n86+CzCihoh71PJdzg9cURfs/WY4EoB3m0qckxmyS+lFs+XIXJrPdJcOYIil/\noBwk8sClOXDtNDFkENdTTaolk2ak1uPeuIUXrG7pI/Fg8Ral7zgo13of3NO+\nr+OKjO53YrfwR9ovMEaz1HpSe/JKK3sJwC5MgLNMApY4Q/BAKDHEZDZA2exm\n8hfCdqYW29yjv892WUp/zp0Z0MMoodTxzhQmbEHGSyth4aWmeQqOdkSVMWRo\nhDSAR5/vQ2e8Tf5NeaEJk9LMOEd6+yJ7fZhtbdnbqnx+1vQii8LqaBiiy7yJ\nmijFcJsxOgiJD/2nolR2qAmROr61YVvU+xwrkQfi3vauoflr3nC+aH7StCbi\niBAexZGlYcK0fpUsMfo8QZvQCgF1I4XmtgfvqoOBEyfppvFyJzom+IyNEiG1\nIwa/KKpQdEx8IgAK1s2t+HPSRjlpHOVbpH6FzGCDTAj84xaSxie2Sc2UUG+D\n2eg1NiIOVzmsHxGKy3mR7T9FvWUCOQ34iByfl/A6bWzoDcD5zjqXTZbB1XaR\n8PYqlAXDOyQFdlXwYQ33fjbKBpsf7sE7aWAqSN1OuV9xuap9J7OKOUZQUoHg\nYDlv\r\n=I4xM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"305842bd9e9d57eb4d7b19c44ad1a60b43ae2684","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211207_1638861333817_0.6576106464551184","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211208":{"name":"typescript","version":"4.6.0-dev.20211208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6eae1cc387868d9074604af45a5955affea7c023","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211208.tgz","fileCount":183,"integrity":"sha512-yMG1rK3/BUGqchcRwixAfBLcpNMBPe1EC0pOls5iqf6RYonitQ1TqLEkFA2ero7b39SydW7IFzeUaqRbfXYUMg==","signatures":[{"sig":"MEUCIQDrKchZaKH7mvTupDTPbUNhUQzfneDi/AfgUeGrT7Lu0wIgN085r4mSmbTJH02MIG3NWi3lpSO/tr867VUMehkYMx8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64137524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsFvFCRA9TVsSAnZWagAAwbIP/AjC3N9VmpfMfr6xz4fP\nRh1aXsblTBtHn+6j1HowRaU9lvuFN4FCFjcqjUq1jAHxUjSkbwZNW1tvS3WQ\n7MqFyc+Z6JVEv/h9xbrOolhgayGS9IfPn9UMGkPhRnULiYfqRv2XDBqNCT9W\n3sXOAPsVGg1DSAVdYaG9x1x7BHm/Bbr7yHtOdnfWaSKQmPk5NLuNzc/s/Bhn\nXIFJyQ5X9Zk/ENMF5l1mWJpxGRQ5zf5bYaZG6VDzO+mqf81FQZVFWz2VfmaF\nWaQUq5Xu4reisLmAw0vH5cm4pdjTQv+HucH5S3UtAh2NJThiARv8piDj7Mjv\nehl2iHOcTjWPYNKJmvXqqf6WabtSywiYHQdzAMPZFQyRTz+r8kArsCZyYYCm\nUOgVYqrVKoz1eDt1ktLiW4CRfvkh6WN8rlrqDl+ROFtUTymbqz5iP8FbJGTn\nu5tDGUIahf7UzvdKSMxSSRor5EpINRGFCfUQtx5MzExsLiIIc7VbH64W6SFl\ngF1vHJqV0ikhU2IAns1uRevo1r5di0G8ZiebVMqmFoF/2qjZi46Vez6cyglq\nZESFcmhvdCFFtV8VR34xBQqgcUWufc8QiPHq5ddkeFyglS82OHGJy2OQtFeP\n3PqnkKKO3UBWt3IaZ55eRj51tvvlVRNR/sQJfFQIOVA4kMxnWNYkde1X/O4C\nSDCy\r\n=HsrE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"48228b810fcac58003c8342f577fa2ea414367bc","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211208_1638947780773_0.2992440081337413","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211209":{"name":"typescript","version":"4.6.0-dev.20211209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a2b7d04e535f3f1171427f5db50e168c4509cb83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211209.tgz","fileCount":183,"integrity":"sha512-VF/iLmW6LbcmRMlsgCdHO5tcBaGWcC2XuP78mTILJP3Yo65jg4D1aGlhNtTWNoOsW7kbfMWDqEUQiR9l7+aoXg==","signatures":[{"sig":"MEYCIQDr0rSuTQUcCzvfQEgOlOBV7pmoBoQ0Jq6vMHwWO2rZrAIhAP26wNxCpmeyWTO59KAklX+8URQUD/RqQi+OFA13mGfA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64174363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsa2RCRA9TVsSAnZWagAAZhYP/jzrA/3Axvf8yqfn8+aF\nrcLWpPB/UHk4+spxV2YhSoSG4j7i1hIXHS0jit/wcdMeLOMUthq2zPWrDIAE\nnEbzAH+kil61MSAY4DyUxzwidhi7emQSEv7AOzwAuZEVtwDhkldOnzny4E62\nXoDK8V8exIHI+v8bBuycdqaKi+z3mC8bXW1xdawScYqvMnrImsigdTXWYz7+\nA/7MqWbOjkuGWfQ41yDAtQBdYWDTz9UX1+g9oox37H+RIM+GR3UgjuL1UcGf\nK/odnSrLzObEt/vBNCbTS0HlypwQqOpXHOYyv7jCaSPMk37ijiV2u3/ZG755\nhmsYujDnPImwl+uR/H9sRmY1IxS68amHoA8RSXg2dJqODRo3QVo+CFLext30\nQ7Xu5WuGDOq+wsEv9rT0nOKYWVsB7Gz7XC2BnV0C/IK8PsdWRBK1/Vbjizad\n9VSwgT2tCSQK3bjYjSd1YItK5pKMnZyRA8yd04zA3GZ7wJ7anp13owldCSWQ\nCMHQS2g/ZGc+Mt7Sn5wj1xCerBxNfe1zM4zNbq18YK+MnAvDZFvr6vpItNd+\nmKcZNWjMwLP+9cJ/ctysHH37DFj8D0m1NZdN/xVUNRbjS5F6e468BkModU9l\nhmzvoaqV7rAJ1CG+YAIsOIkXBQlx1hs+GrA1EB+kc2SPnhxzofQBO7WgsaIY\nJ7yi\r\n=P1P7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e2c89af335e98003fa3a1cf8ec2acbd41add8a68","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211209_1639034256708_0.4760524146951286","host":"s3://npm-registry-packages"}},"4.5.3":{"name":"typescript","version":"4.5.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.5.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"afaa858e68c7103317d89eb90c5d8906268d353c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.3.tgz","fileCount":177,"integrity":"sha512-eVYaEHALSt+s9LbvgEv4Ef+Tdq7hBiIZgii12xXJnukryt3pMgJf6aKhoCZ3FWQsu6sydEnkg11fYXLzhLBjeQ==","signatures":[{"sig":"MEYCIQD332SkPFOKZ5wQZYMupbGhVBBfjCAWD2xR4ZF69GTVpwIhAKLlBpdoK7b1wVCWA0GA8N6siw+gj/13tQAVwbijFqLV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64005097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsnj5CRA9TVsSAnZWagAApA0P/j9hdihtr/wIiA+C1MqR\noKFnOgj1JRCCQ1I99k/DRRShSVOqZ3rOVxaAsdUdQ1gPVnVSXtmzKwn1ypkT\nehLe5anEtzQW3SC2Xw+lYBHFrHcvPFhYzgioHetbrozCUzcwShuppoiQnUoq\no5n0n07xbdUIulwyI06hS5h4Cw6yEwGmV+PIovAKiRyh0mAzSXDPYN2OWfTM\nKNlGIaj6Up4IR7NypRK0ss5MF5qH78FaguPnARtBiyFLNzz9qil5e39VMewB\nDCeZu8Zq/VnDER44naiiYqNzzRtifkM9FYYK1QdfMMuZCx8P7n7oRRIHr/4n\nhFKSNRgQTtJJZJD40BqhYlDmEilOOn+RcL+L735FiQcRxo6/cdogh7rfOjm0\nGUFvwVS1CmQz90UNuKHUHX/i9ExpvjwTnX/fYWDzEdgW95vMUMtQgR6Ctmsv\nMXbSGstS36YjR30ZC07ZtNepEmIBso5H/v0m31UPxtetzRwpFo9VPcTMvlA8\nqWSXlFVV68TX/6FhV6x4tLoGGTvNYM5bw29j9dUJO5sWMflwKciG/XJIkA+a\n+zsxrFgjrEut5tumSwUWuqjmYDzNAAJktFSGs4dt21ESRh/7yFHFj97yGe7B\nXWHvlRHpK9Dq4GHuPfbtVDDjbfuR+VKtiJ71yoNHPHm4wb6NGuaTbyqxgujC\nh3FU\r\n=GKyy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-eVYaEHALSt+s9LbvgEv4Ef+Tdq7hBiIZgii12xXJnukryt3pMgJf6aKhoCZ3FWQsu6sydEnkg11fYXLzhLBjeQ==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.1.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.13.0","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.3_1639086328650_0.18554044957816274","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211210":{"name":"typescript","version":"4.6.0-dev.20211210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2b1fea081ea2f74f1e74aeeb195ad5c05e1dd111","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211210.tgz","fileCount":183,"integrity":"sha512-rR0Zj8nk6hkfg2fLZDXTPu8/cvLNYK2icyvMqBezyCDqZcenuHmn1LHA5sqF9+qXXZsstDh76wUzjaWaiRnQsg==","signatures":[{"sig":"MEUCIQDz7MRPSlE9bdquXJvwQAcx4OhYap5fi/DGp9kJfEcrfQIgSOGt9vVAVO+gF2OKEUUTtFGT+QZr4AMDuiAKhD+B2Q4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64179836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsv56CRA9TVsSAnZWagAAdXMQAIa2mdKcVzxnVyETiSmw\nSi+3JfJlITaP+gnELgGLwjdFEhZnZbw90HudDPn9kfc/zoTtEDYD0FregkB0\nDEpYlvB5jbDoMtLBdMwiEeFCqT0/1oTaS1EjWftklVdRq6KeHTM/5r0hBBtJ\n+zGZ9nhxr7Cil7vYyPgodE8vzgtNTVrxmiAa4AA/EDaW6UjHPWqI9vRqp4D7\nJCxctffnnBhVYDpW3UJ5lPlUP47gPqtcdltskHImM5Gw/0Zgg6VLdourvpea\nqUk2NwmoUsaITH3qVOZiFvSNUv9oF28zQGzYy5wan0gfma8JZC6T0r1LeM/+\ndpBWGuAOK5NktB7HYSr3Ub3cE7joZAKBijsaBWeo5HAU6lN8VU8VXcpRlTO4\nTCsAxr6nVPCKC9+g+qa2Sg+Rt64QAL5Ybwjy7Voj4MNyJBpEQ/yos6CBPQJ+\nmzX9ky5RUS30u3Sns7BM0oSNwGHWkMMvxm+7nSll3F9w3vfzQWZh45wzn+tN\nbsrCBpUdc34hh/d+mhHn/sKItceMqcGP9zsZVC5+CPAhelwEHgPprFgqAEpY\nrAd3sy6yTm+3Sq3R5FZDFD9sPir8JTA//+vDfZvF93nRKjMw96b3126+Clb5\n/tabWLzHQu4cLaj7zb50ugBq+H7+CBni7QdMIkmFXavpakQITSHzABlPLYUv\nUAVc\r\n=UJVU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4e39023396f03907f7c9fecb9ad72d5f42256eff","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211210_1639120505959_0.7772487460946698","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211211":{"name":"typescript","version":"4.6.0-dev.20211211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"39e4718f7184e20065abaf81950de37c84143ebf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211211.tgz","fileCount":183,"integrity":"sha512-aVIoI6aT6oTi7pjPGarQ5lCBTMGhIhbW3KssIV8mWxVf9ibNcMh0EA8DQtbBAsJDD/k66H8N6fnMOtbLYeR6ww==","signatures":[{"sig":"MEUCIG/aSHjTwGoV6ju9+uRGtk9Jf0sRvQlKa3iojveDARbhAiEAgvhOOwdtYx7jCibBy4IM2CJIkCyEOYvFiOWYa1kTqJI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64179794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtFCuCRA9TVsSAnZWagAA5Q4QAIy7AxvXuA60mVbqD8gO\nBvLpjaBq73A8+00wIMl8UCu6XGuIy2m6uxeIhaLFVX5Xr8W0eGILtIivHVnF\n/9IfTgeOQ+xdHhv+lekmg/dARAPw4TSjFwcIlbACAwSwEs2txveQs2QJ2gW0\nmC3RvNOqDzUUeJAIld0aqURMfLQ5kvRW3pt1f6fIP/eKl5ADyok6QRHAn8t3\nc65rW+ElNGUylkiuKzaGYebLJV2TeF7zNFIPZMnaX1RgKlbD3gKdHIDcRGO3\neDAi7gJ60N+iorpAI6fLFeRkENfd3++xkDAPprVCadIPWTCNkXIiv42rZX9z\n6t7olLUSwbFnbUKXkyaDzVprl+Xdw+UBCAr5oRANZggFVhfyqJGuTqn9C717\nbepWqA69NkVqPdioz07qJVwtibs2/2joMk9mOWiFjHf7Wp9+xjrqO6Btfb7w\nvXeg/z9qAqbAspgyHSyDJiecfb/ioe54jTwhyIwGYllGx9jsFM28ENpbtcSj\n8tn8ObFrj8+LMdkPGUzfMa6lKQ1dOPOKW00lcv0FRz+pP4hUMUe3iHL3s9vY\nL1SCMQtPZNfOl0ISaIW7Adkd8aM9F8eehCX1FSmigJFD4Nu/P3CoMnOSriVE\n2pGVPodYONPLsgbD2I+kCPORXvC3urIT6eKpmXp6IhrC7yOc84RlV2bx5n6c\nfi31\r\n=jT1M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d4170586f04a1d6430024a05ddc7bb2bf5a5c5b8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211211_1639207085731_0.9443460121291065","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211212":{"name":"typescript","version":"4.6.0-dev.20211212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211212","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bcab5d57e09680d9ea041f77e962a5c9e1a7e7e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211212.tgz","fileCount":183,"integrity":"sha512-AN/SCQmoafzCrIM8wXzHOrUej+fQ/44k/xR4rY8s4elIKQWTEUPL1U48E32tn0K/n1bgD9l5tSWiHdhBz9ehoQ==","signatures":[{"sig":"MEQCIEtGPIoGTITNh8UPy4Rap5Q9zOyH6MOzvmu7fv2m1sFqAiBqzJVQLBm9v0lI+jFiE+DNkv54WdRrqKAsbrvL7E+8KQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64179794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtaFWCRA9TVsSAnZWagAAn/IP/RnJJC1nF9tBe9yyhzp6\nCqvGtdqvMT/bSmm6AsFQntjNZiqiKp/obimXRic44Pm0kKNmTUY6cvy2Vezi\n/kxxKuWIgdhic1OhMK/54bNniwhsL3+nSCfZWAm/8F72E1HQu09GFP1mNQZm\n1/jwvWxTlffqA8HDLuJkJ+WLiZfPlWR8YVl/PRnQjVrSL+eh7e+4Jcw2esRv\nFtjfSfMAemtiz3tdlXbsSYOVpPEpBf6jYPkTHdJnOSbqFyOQw+AzQdLswyAF\nLLZsY4n9/WCbmiQLMiUW0EJQa2QGbBjAFyrLQMgvyTRajgH40vq6FPwwRNfl\nCYaOe60v4hGXJl4pR1bSRiy+l3JmEfW3e8QtD8wcQp9JPx1Xskckf0dvwWrl\n6liWn9pVrTEGrt8qG9/fa0zI4ebdAVTCJQ4+fKkSonvBU898D+sY4cGlvrhB\nititBTLJhme1gw6o6bD6P487zk+zxQ35+fZ6PidkQhB4RW+8LBnZkOzg+8xH\nKs8MED52yJod51fgmgezOhovPVT9pJeDwFNjsoovWHJ14Ooak5t0GO27i/NQ\nRwBDlfC2w1WiDnayaRZRCq9vrQNeBeDa9N4V6gD1TiqLCrmgCrn1TVPCTrUk\nmgF+PLGZwwucIHy+VzUZcASVi5C6OGmEjMe3hgMHPQIABkFQV6HchiGRrHmz\nLY3m\r\n=/o3A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d4170586f04a1d6430024a05ddc7bb2bf5a5c5b8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211212_1639293270167_0.788045903352407","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211213":{"name":"typescript","version":"4.6.0-dev.20211213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211213","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c0100b3cd385f054f3cf7ed686d3ec1b26f1e3a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211213.tgz","fileCount":183,"integrity":"sha512-YfBI+mHWrxyJ4S3TYtp6/kbWCwEIU79vwuBjEJQVvFPBWsQVl7TeVptK6EkPacj91TMiGdkpfAIRT/CupIgVrA==","signatures":[{"sig":"MEQCID014ydB5h2bOltFdPTa3V5EZz3C+99ioe9027WNCkKlAiA5uypeeoz72oU1GLR68DhEH59niCblm5YQ3p03HDwTvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64179794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtvMiCRA9TVsSAnZWagAAmN4QAI+O8b4bN3D2IMYuvLdG\nMGwP6yrWQnDy+nq+9HotriElE5aStvwE/f9JGGnXsAXdRnTKGTo/IAao06J4\nOIB2vzhZn32BidCwStnP4wtDTrqCqDCArb8puVkPgfyXvLu2/zsP03QG6HiT\nbsoK3M1bm+XgjrXYCH5kbgyL35+7OtTc/mqrvQfJ9IqFUmI2YH4B6BoBw+cK\nzvt8QXmy1fsJQZDq3kkHje6r09XJo6PpwX648RPxcs3sWIkkU/yIpclcbjU6\nCOuMo8gbPkzo0xExB4uWhry4KMF1tM9Qhm6lfIjdWZjv1HnBg4GJRE7neeXj\nOaeJHKQlsXzsquSgiifC418lictdW79DQbuO1mH2K6Aw2tjwUZTidIrvuWEb\nT0Wxninic1ssiVYoBkVZfFLyjOnPnB4pG+Zj+2gIqdauC0b6Bx1QEldJd0V2\npcuvC2Q+/+iS7YcUK0P6rNQdxrwm02RGwOoa1UixzydxtXfXlfK3UgnRtdGp\nvToTduXCHGPldt4zJJ7A/e3hSEv/t8iHCbIb4mlBz35AxmAWbLJLAELZcuZr\nQbxLiVl9VDagYKtq8vSM90WcOuRo4FTicsAoez/2j2guWyBB+viqPObylXc8\nIhyUMK9yg/g2TgCUpk6YtAFEyIqoZOriRAEiEZfdeGTiYj7b+HZm16wml/mc\nk0/2\r\n=HV+r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d4170586f04a1d6430024a05ddc7bb2bf5a5c5b8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211213_1639379746103_0.08457453806703463","host":"s3://npm-registry-packages"}},"4.5.4":{"name":"typescript","version":"4.5.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.5.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a17d3a0263bf5c8723b9c52f43c5084edf13c2e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.4.tgz","fileCount":177,"integrity":"sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==","signatures":[{"sig":"MEUCIG1Lur0hl1rDafhlc+3eEOQxV9SiU0SD7ou93H23gwH4AiEAnkXLUXIyLn6Xp9NpELQOCREa5izH+/Fp/9eK8WVqM8I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64008149,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJht8BRCRA9TVsSAnZWagAA0qkP/0aM6hj2yQiz7IExms9U\nT4iosObzLCdaS8xNzvtS6+pCapzWXQV34PVpeG+itGyFsThD5QQxhkhi9auh\n6N9lapPADbAvZtCLYnvMMVYh+aV3YWaz/h6ulU5jS83HEk6kVihDyx9ONtOC\n5YKZQa+Ew8OpHhJVnBiIEV7GBP6UJ0AaAj9+ZIKoODiR+lL1nENxemWc9/ij\nY9acb4WaljIoKlDVe3fGUiadxm+nj7FAHrQMzxe6Dzi0NIHZoO3ctz7GiBR7\nq8UPn7HrbQwIZzj9DrdDTMzxYA0NMnRy8jCM+G2PPNIiK//WSasqSBppFQai\nmPuPBB2GaUkMdRo/M2kZ8bbvi7MK1wwAkMn3iGEjoqrIUpt+/ieqpvbHIqek\nolz+9yB25y+BDYUYBrpnGiAaLOK8tfatjK9hwpg7v11ijHB6TkdLZWTI+swb\nDyp03QPv0LZkcfw/2pgeb6HPL6uTsMJEWwREA5vA5FizeczOUijzOfT8Psxp\ntnAcYBQulGdi9Yd+ECvX95Ndr5+PGGPpLCe/iLwnj2v629iWcSOweaEZRO3p\n/fYE6sX5tBDvkOh7jbtWm4dmVXxC7kSKzcorvmpRYdeoEOrpE7WbDiTX9/q/\nMK/CcEsWByqzK9HZY40xfjKm3yKX4BD5LTAtauDGT0bKVnZPBUjrlGwSRkd+\nQsni\r\n=DH7Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-VgYs2A2QIRuGphtzFV7aQJduJ2gyfTljngLzjpfW9FoYZF6xuw1W0vW9ghCKLfcWrCFxK81CSGRAvS1pn4fIUg==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.1.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.13.1","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.4_1639432273439_0.24949729660638909","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211214":{"name":"typescript","version":"4.6.0-dev.20211214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211214","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"52a343c6adde553043611eab289f9e4a31a67035","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211214.tgz","fileCount":183,"integrity":"sha512-ob/0uphXM81aqRfUuMTp4ypwdbfpuJOnmPRvRMyqF11WB3a/2q9gwORi61iRH+rr0skVXgB3mgKc1fsxpSOP9g==","signatures":[{"sig":"MEYCIQCncJZ038dkumuLBwRqThaRKzCj9RhBAoaJAOvBnUm3jgIhAOosT0pQc43ecoMfa3sYRNXs7HD1zPZynON35n6BG79H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64180208,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuETlCRA9TVsSAnZWagAAXM0QAJDCns5Fkun9kBq/I5pk\nAC+S57cc48jOMj63FItVvfamU26MPC4xrpDFAvhH91YV5bZCKaV57+NBfJHR\nnrO/PWEElT+rsEHuIcWxyHpnxJUf2e4/zMHjluEsHJVDnjmtsZlmKHuSZLcr\nT+9X6fnsoVUTzkdaUNY1K0PR7AMSdLG5Ws7Mql+yhhNRCPDjfKqMF95seL9r\nw2zz6LlRgWhN7fkZFlwCV4fhGaOYBVfOVmOEKIytnQEWriLu9aE2pAach0iy\nEagpnZY4lajf3g1mc5wacRF+tcpZSGjH3Bi8g2xenD3sEk1mm0JszbTUDM/k\nyKBjOoimZmO0lO+5BZK0eUFRTUpq07mdKF3514QrcZpF6E8zNk+wbQGOtQvP\nRVn/VKc7yc7nA5jCynnKHS1M1z8bw0Pl5bAAdQR2RJObKqViXkrWvfBc71Me\noMhOLtLc5h/0IS6SaDonl8gp7HJPDidfaqSEA86W7TI4KY84hGea3klgcBGV\nis2ufigtFxNsXTE2pA8NNYOpE+t4qySFbqfM2fxU5ugZNKK3qFvp4FEj0KSB\nQfMv8rV35TbylrL2N9eILUBbm3Xw8YwaN60kCJp1h/MdPp9UkgpwQXVyYQnx\nON4g8WOypX7Vqurd+/36CNC5aPaGUHlPabgvxW5IWFJ9jiovMG1azkyi+fQh\n4YeM\r\n=51R6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"67872a50d071ced53c1be6a8c03c9c3610584b4c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211214_1639466213133_0.3313048921404642","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211215":{"name":"typescript","version":"4.6.0-dev.20211215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2551fbcf8ca60fec8e9175ce2fe8f76b985bebec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211215.tgz","fileCount":183,"integrity":"sha512-9RBON97pZEzPN4v26Fr+nMCoosXl/cz6131jJ6fhB2Cd5mD1WtVf7RnfcJEKBksFUPpmwADmw9XqqYFm85h83w==","signatures":[{"sig":"MEUCIC7idlcNnrWPFdGczSF1DK+xO36HwulPYyA4F791DE0jAiEApGWMs17GzrbKsXtHYI0Yr6CQYeuLpKogI3qKsXsJv2o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64183761,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuZckCRA9TVsSAnZWagAAsh0P/3rUlxJWUY1kACC1NyaQ\n3tZzHVBj1fPi78u5NkBiE1tYcANFUfKmE3vg18uGbrmjlkKB5WCLzJN7pLE8\nhUNRFhXQwY4oyitKIYO9L2Vs4Yr1kHsgg0DN5zf06L4T9pgyD8S06x/pNGAI\nXrqHflghoEvR1c+9eOuY1zM5u8L36QF4MdtZ8h90hWcLMK/FPBJJz1ECoW1C\nIDQzBx3prCtfhR+XMFOQ/6RucFCCRmol81dM5Ysx8d+3jloO57XOsIkXgsTi\nOLH3gOfqvXVy+I0JqOj5pZJyi7gWt1gEB/JCQqbvk4SXXc4QJJwbpm1T0rDL\nUIGC2d+WSrDLW+9E2sqtl+MoEU0k7+F5J2XgXYWcrdJ2EyhuUyMofZm1zZ/j\n729i8+LupGT1RKkTGc235hgeuQOI9WANijf9kXMnO8vfwN4ynY6jnRqd0QP7\nRvrPzgHL0dGhrEWq8KrZfNy199D6DyDZZ49v13Z4duP4vi4xliR411BnKBXO\nTshe4jU0aLOnDG8plQIRmOUmcPVyesE1ozz4yKQU3Gnx7Q71cw5sLfltGO9k\nJWHObt6S2qogz/0bN7a4MGwxi1oFWsi21eBcW6qZu+RYSZMeVMuBJ2QyA2iM\nD/3mQZH+WpKsYVdZHeANddR34UjtJXmHpeTBBs6iie1PDin13Q3v0WVaUCSR\nPrLR\r\n=2eTS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f21e1a6e9d85e44ac3b91ca068447a0c0584cd42","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211215_1639552803652_0.7025645714038371","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211216":{"name":"typescript","version":"4.6.0-dev.20211216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5f6347b26057a5ff3673dc312404864e3a3ec710","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211216.tgz","fileCount":183,"integrity":"sha512-MD8GjFCjse54hB+dopyZ3D3nY5cWDZujrShDKAWOrUsO0++mtSPCrE9WUOZuAORY6wQn8nUA6yl3Uwva7Inwyg==","signatures":[{"sig":"MEUCIQDIqKZqfcK/SrWM4K8ktLjHRgMcnnJ4bQDtgwPUejkKuAIgIrTB4QJIEa1VjHH3w8NGY6J7gGcyssewN+igU6Sp4pY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64183773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuuepCRA9TVsSAnZWagAAIoAP/06YS31rB+6hBg08ne2h\ns2yjpJzN8O+IrV9ffy7DsE4JvI9V6D1a/2xVYWYCmwgwaWp/73Q2XUyInmqw\ncOI+GjnhVEKFuBgaMnmoXa8jFz/HVPUTYebN4MpA2hNdteIRSHb9D6SUpOJl\nuZECP2rrfGg+mQ+kqlwLihy0g1HXthRlJ8Otk8JiLR3Ox5IuOEo6irDsQZZO\nuJ0S2yzFc0yT58dKgIa7Ghvug9tWhmVCuYNslOqg2hiycvcMPA/tEuur0htY\n7w/nTG6qBFI2XM9qT1SqJIXThWkhU85DDmZ+zU4srKeinUBZru+V9j9cWEmr\nGyRZ4fneRbPyDPnVSGmKU8OV8Ceb057aFry6gfSS6J8f1672cEGO726kxQgv\nr+zRfFusngrtPa12HH6shWE2iYSw0Mh1LLXffLsj+ZezG18H7AsQB7t/CrWF\nndpuJi7C69iHm5OhhXYNIo5tBokg659U2k982nGw4JSvFEIVkR7Mkch66S2N\n7/7JWMvFz2ZJWgQkbirOxOwvOLzEu/C4oUjQLpGp50CmVnjBtEHH4/1Vppbq\ndperhi7nf0feSX7mBcsOACTXsnj9FMvIj3dMuIDG2txDWvLsQsKp0O+wSIcF\nwHdHeRFxvEEz4fN+iSAFMKZIE0PI6vccDwgfITU7TSTTecf8/Q2yu615XcuW\nJ8ju\r\n=YouJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"34e897457ad9de6876090e19c15cffe04c9cfe82","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211216_1639638953514_0.8890188300110993","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211218":{"name":"typescript","version":"4.6.0-dev.20211218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3fabcfac79469e9a396dab8de6ad73e193478ba9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211218.tgz","fileCount":183,"integrity":"sha512-GNry2sZft0Fomj1ZAj207Okn7VNgOqoEUR+EltF55fBOVqwU9wLt8292xCxjoHgxNPbbyUDr+C3coSVleDIM6A==","signatures":[{"sig":"MEYCIQCWM59y/GF1zv1UP1EmM1LVGL7PzNVeGLKMKAncNN15TgIhAKcyVA3Lm2LW8irx38kQ7ZktjQcZ9EuwZxrDbsbr7Jn2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvYsVCRA9TVsSAnZWagAA49oP/jC+9r2IQftFmkEB9C/A\nnjPwCE2tjhA4tJoahBaFNXy10rjz4TAdG7Z0LHg0aYkKXIArQhSy6TTxl3pk\ncYc/NkTOhq5GQoWjjF7r5zcdbDl9yIDnTAFufXmyOu334UV/yTdllVWgioA5\n+7W7kG32FUnWk/m0Q0LeZnj0vE/uhfJKZLy0BumlYvHQ+jUnlC0soEA6zFaG\n/RwNQVTNNUGpF0OiWHm+/nhLkMCcF2TpCEtpqa/Rfj+pOk41HIL975IzPu48\nz4CM2ibowmFVj4453SsFcJxp/bJ9Lj38bROi1eq2aYMg+I6m9+apXlmgZok0\nVG6UR6HiKM/APh/FyMAiCaxKf+7rF1+UqdS1ht8htVrV1pkgQ+47z6rQXUwt\n2AZVWl9e5Yz6tZFr64HG1psffDh7tILT003WcEVXR1KT1Yy2a3K/JgCtH16J\nsSzxJjaMDDcA7LeyIB+cAd5oyAldNUrastCQM5QL9soPbkPoDurAdg0w0leX\n7DifyPHJChY+VkL/yX5lsdizXSnuAxKc8hoUzYNcEmoExMTlfqUh2V9USPYd\nWg9sMWXsbZjlkZcsNESOjuys9a633D8INdpjBWYky3o4q3bweZizDEh/wUUN\nXmL3L43zQCuOYYASHYHD1LX4z/n8RUsAXq7BA1j7TCyjlNWJfpSW5Wmqy95c\nqBGF\r\n=BUYs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8a5d476ec98fed6d297c70062890dc20b074b4ea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211218_1639811861174_0.07056983092338776","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211219":{"name":"typescript","version":"4.6.0-dev.20211219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"40602b689c56577c7ed8e47ae84b4e85e5d25cdf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211219.tgz","fileCount":183,"integrity":"sha512-86epFB0DlWHuEdWJT1O7GX7x/hR0RnrHYPp6b5lPQ0IlFQdIwEerX2OJkZYFQUflHoz0XiSN/DY5ypFNFWmm8g==","signatures":[{"sig":"MEUCIQCYTbu9IOpaRB+bipwGJxSgV2hx0liidDHggrXpzXJdcgIgBsBzxyEm25wndb3W9Hof+5PlJWNQwGskgkMdsKG0f7M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvt1HCRA9TVsSAnZWagAAWgEP/jXy0nHqMaqAByIKD3A0\nvDygcbGa6kLwWkvNxXHsxxBpLSNk3oB5tRred03afu2t5EVXh3nVXF5PkmDW\nwDsJHLz++SIwx2j4D7rNpv/lncWomSmKaLuQ7rkAPElHRbfJZmVpvGCnEjIa\nk22Mlx7UHuZiykz7UZn/YQ9r6eG9ZHhOy9CkrNvwI7FZLiIIuc3vG/EnSGnB\nJ3fGIt5EswA8K/ILTjMkPhMjsKIHwk9dD658faT3rjsMLxBuZKSR0/WCnjH1\nZCgLYlOmpPNzdzS/ag/okCQYEKl3Ye+HEh7gp7rWMhts1jQcvklVjDWYNqV4\nzpuUJb5THEFo0BDWeqIlSJ9Yh0eS9SP7KZf9spbRxDyEGaN0dOyWjMXfK7vd\nValMKNJi52MpfJb4GuBHxALkaH2zNim4QVfQj9pAbwmuyPj98u6APnPnWo4H\nBPJ55QkfiBD5Jc+YgAme9inTVQFtcyTtPYw3Q3SzaddLUd6wf3PErlfCgvsA\noCS5VxE+DImI118+zyahXDChz55Y4NSl58pcsOeQpdPfVZYSEnJX5/2UD4I8\nlm+j/TjdhnJGswz3tPVSGG+nAWFlkeum8mNxUB474cSTZLENEFu62D+XmPDS\nsmRfxYdwvrfo36BmtT1hRIZ8dL7Z4Ii/q7unvcX2vScpeur+g2bESWxipRz5\nArKI\r\n=zkft\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7433b0c6d05bef599f8b7f8280810705a3278ade","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211219_1639898439255_0.7011638369223507","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211220":{"name":"typescript","version":"4.6.0-dev.20211220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0fa0e467ea2a0f4331d2e07ce4c56abb57fd1b00","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211220.tgz","fileCount":183,"integrity":"sha512-Q5r48HCjD/dgefPknm6NecnILcKyUTXotrspQfdmPI58Z0gXA7A2s46Wfh5zmsiW6lejJYJ82O28iOwiWk2JPg==","signatures":[{"sig":"MEQCIDXtPqObm8hyaajxfHOvssEw7ARNp0xWM0LHPJldSK1sAiAehqCzG8tUWweLtJyVkVj6y+Xo4jIbuaPyclN/bm6M5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwC6cCRA9TVsSAnZWagAAWYwP/R3GqZ8ToMmI+9/rihAB\nuY/WEDFJJqUPkYCJ7qyKgH0+1gX7fVUUvBMz8qf4ddlVxZ4WYia34NxTOtAY\nSy5kqUwJzJdWzOLG4hOF+if6ODAMFEu8ybrCBXeZiMQx7Ts235f5buOyM1MC\nW5ThT5v/EcMLQ6eqFKa6UZld2bw8J833gk6LpgGx/OFDT9wvIkEfe5eDzGZj\nfbd0YGATtrseCX5jOXehqobfMs2ChT/o3hEVmBtrJjPejkdzHhgusQ+YqU2q\n0C76d0TUxsvWL3CoyidpWH0Gj4IXo/3kGGHlbdreFKLZ8b842vhXUCEpeW6X\nrQoZl1vR9kLvhQmL7vPDYGZT326whqYeUOw+7wbam5Zq6TwDHGLx5wJKxem5\nO/ZgmRUCek6HqAKXIWTloz75hxTGfzIX0e/HhuzBFomhpzco9GNfk/JFRgVm\nktKfx9aFoMV3nZ4vOq4sbRvfSDpJa8MNXkMbY0VmNRkEb387chf2vzRzGoxB\nxH7mUKgCMCVgUIUQu9dv/iUCaMdtVWwU1cwspcdaNGtGhskB1f6WZNxAol1u\nUK+FKVI4MLfzm2OH6GPh2b4Ftv2157Lq+9VC+X62w1KuEdWd85SLA2PpApWD\n/dtog0paEfj0Gg3UNYq/22TDmcpy5xcGew8oZAuVacmSYoIrspa9QJn6nZc/\nyMrb\r\n=K74s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d7b49238eaa792ca52c027bbb70f8168541771d8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211220_1639984796192_0.7541615159173345","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211221":{"name":"typescript","version":"4.6.0-dev.20211221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2a40845f9c743d577394ca97feb0aa64bf9da8df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211221.tgz","fileCount":183,"integrity":"sha512-k9sZZZZlXyJafk0//HAmilfwiXJ4F5uevaaPEmS2Dih7wRgbEv0lUFu84In4EqhzTROHkQ/888Be7oXlX0CPNA==","signatures":[{"sig":"MEYCIQDHfog3ngYO2IRi6bD4VC8lIE8Nfy9q7olH/qgyoV9z6wIhAK7Cupu1LvZ852Y1p271sdvF8xZbCwL6C2kOSU3eQmxf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwX8sCRA9TVsSAnZWagAAuiQQAJ3IkcXQMdgF5AbTqVoP\nyaQVYpRoLAmX6SCX3rCxMjgDm9XhLbQMCzjq0PlRK0blRCIxOSGV424SQ7Ls\nY8y67+0vIi3BXKv7GP7f1vIf51X4Y/WpH22hvJu3ULkQfa2ZRfgy7nxShwoa\nHVpTljiRDrRtinYOw1Ksunoxq1MfrLLCfOvMKBk/zg3GmhoG/ex7qiPjSxDm\nlzzZ12eglR9gbWBWr2m4gnphmS1pgv5zYPbE90zpWpm4aUW/JAjmaKXJeddK\ne8mS83hflrrAVc/0z5fiVNoxNb/Pa6SzfsBklLNQ53t0dqMzjCdyZ0fm2Tm0\nPDE8HzZARCnjhuofcIXPmVTrQChszFd87ULLXBJgcakfff660Et92zBBNIYU\nFBV0JhOjQ71i4L8CXQB1cJCvk3BdFoq3hcvDyUGdLKIFOs/Z4wt0QcqSCsVl\nI3gMquOSCRCn1DQqacSLWg9d9tdVE3VfLlepEuH+evWUHvrEACQkivTfpZVH\ncJKd7xuHAzLqGAJcpyjiMyXcTJMpSnPtTWfcV+L0yLt8hxmTrH/uxYeRaKIo\nkbgVO2zSVjPGHKzGIUfoVeTZZIfiCXfzsjdBU32RajXdoXibcBjx0I9Oxa70\n8D4DGSlTkEF6xU+BrKfVpstf/pX/nbfA47HmupzKnuqmU74qAlQlO7wk1xHn\nZnfL\r\n=JgkG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"25fc025f501d97190225d203a4c02d2c847ffffe","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211221_1640070956518_0.29038506909094863","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211222":{"name":"typescript","version":"4.6.0-dev.20211222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e549e99755a1a96672155b54b2f619275ae6f61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211222.tgz","fileCount":183,"integrity":"sha512-R98GF7MMxxuFLs/X8MjK41vwUT1HX44KRTQRL8QRxTv4AeFy2Od2pZ3Fofnai38491Jn8BB3aiORp1Wa4OShWg==","signatures":[{"sig":"MEYCIQC7MCJTPbLDRjzfJ4SbhLUB6m1wvh9wYPekg6w+UthwfAIhALkGV8pGI1kzGntnhlf9RX4W7Vbd0rvHmwKvLlCmuHl9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhwtCZCRA9TVsSAnZWagAAtIcP/3W+sMwzpvOnCs+ZUACb\n++eLUaO4uEfnd3ihyiMgiHZb2nxjo+TCcdN2Swq6Ez8UQy+0Q+KXiMi80oua\n4i+hGiDacYfCiuh8goxER3F7DRMMliMTbuMXC5LCFX4GLanvx4GFXE+x+mR1\ne2vnegV3B6eKkzRtlbM8TmDbgvNSeQs0C+xqLA1nKB64b69yRqFYB1K5L1qK\nwNbPrD9MxgFt8NveA4oJ7sq+YKEo7M4Sra/qKahJw0SBX1IVfBTa444y7FKv\n7Hf0xQsoksRjabaXW4KQdoYp9nzGWRX/L0mh1Dj3EDTAoZTKHLTOYolQAz3/\n252ccFI9PZeyQ/5E0tuKQxyxrCS1tGWPYtwR1+DfdvSCxQHuX1bnsQ0K5cxm\no1awMiYG3dW5qenqGZ00BviEcTLPoYHYlArFnWW9gSbiZE69ZvopAbGPltPx\nP0cYo/B0DgrXgFmP9S0dX70f3Mt9QJthbUVKYOXXb8YUedwFvk7+tgDpkWu3\ntmT9Pmng+J65S787hFaapsWxja5RPAZH9JIN+oJE9XhcMs+t4fotiO/wmbne\niantx+1B4rbc/WqzrYND+CV7DLeBeGMPvIQ7uJQVMZWJ03BxSQdR1n+JJoql\nc0AjZWJFa9o1RbPI9qA4rahtPpEchnjEAeL60Yri1VK6367g2bEc28LV2IpD\nWXfC\r\n=6eTH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"25fc025f501d97190225d203a4c02d2c847ffffe","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.7","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211222_1640157336817_0.5349406213194279","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211223":{"name":"typescript","version":"4.6.0-dev.20211223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f2ee8949049c7dd10c5e3f4c6b63c53d90cd3605","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211223.tgz","fileCount":183,"integrity":"sha512-RU/oyZj949KcjSUoFH3hQjSZuashI2nGmgbLKiZuFzkbrV6UwkjItkqd10/wHiD1dS6VYTZkq4a4hScCxcYbBw==","signatures":[{"sig":"MEQCIFwieGgoqtb65i1xrgPzs8/sRzHdoC3x3l8H7bBNXGo1AiBsJyKXHVDRRLrkI9RRDdNKLctX76jbjhx3oEqp4sXGjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhxCKCCRA9TVsSAnZWagAAxlsP/RaVLJiiQ0CypVAwMvuo\nOuBIaDwRLsQyBuD6Kf6BkJha9r94sq4jC+Wx9ojwh+csabSdz0bQ53iKyj4I\nRYBA1rmCVrKBYZg3rDR4fbI1h+XQ0Yky82/Ja2qyyiydCSZ16GPplhFQnt3o\n24aF9FgLeBbFYXJeYV5eSYQNCMFdW63FLw+5XBMFpvCtvmH/DIOuBFbimb0T\nCr7n/UF35W9YHRlOFuP7U0p0gdbm+tgxiWVWtCTHjaQLiSrXtAll1uGZUiex\nf9DUuCo4wuBVe0pQeQ7NaLxsBfSqi7uY0nV7j9xyAqfAywtuSzMbpHyROLPW\n2RN41BjxyeKiXhBmAid9D0GaOLsUiJ7SAmgpInMAQ7q7nqoesDz410ysWL5G\nGyk09cyH5jL4q2jNBegT0ijDqFeU/i+giYxbqz47xefyZyWArI0ov6mVCj6u\nIlnJK1LNeQ2zVsteUhacjpeo/3Ab80sHikz+z6SLd2v2wt8HDk1B0l2pSLKb\nGtFba5BZ1icONlqcBO4iQWbugkJQvMpTkrkj9aluJHnhLyu+c0VDpSKSzjNw\nUPPNSNleOCCyUVV2ioHSRTEtEkHh4+9gLOj8nq6Y5M6almjtucFok/Hn8ilw\nzZfgs/tvN/T0SuqvRFW1BbSlUFTaDtV3oKI6YIFNdtYpaubd9Uym5Xf+J8N6\nl15X\r\n=8Pqh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"afce88ec50ae47bbf3ba30fd0b663fb8fdbaa027","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211223_1640243842223_0.24051588284207814","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211224":{"name":"typescript","version":"4.6.0-dev.20211224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e6884ef387fe2add3940be341cf07ff1ff71f2f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211224.tgz","fileCount":183,"integrity":"sha512-lz87Gw3neUXSN5YJDKEbvZ8k+MtsYp68IOInIZCINAHEwre2hBf/fCrBxXx7TrxjUSfnmzW7fz4PTWhsSdUcdg==","signatures":[{"sig":"MEUCIBlC5J+JPX3NQ1MIT3X4BjglnHWD7xZWR0kYk6LKK0ILAiEA9qv6k8fSzgK8enSYIvK6quSSDZu9om5saceFuD5hCxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhxXNUCRA9TVsSAnZWagAAuukP/RyM9htzMt5/GazOlnDP\nlSThzQ3yGsHVjZGQi8+2jczGY8mI7ofKj4MJHQiKRQQQEfdhczI74rki+h4s\nrwQeC1zOWtI09/HLF1fxV15S1ZeBBlffAPVaJzJUK6DT8g9R79I28LryXStN\nK/J0Gvd0lbME5f84X0A/I9w14SizVkOv+L1GzbDDQ4C1fs6D8Dj5DnTRU4B5\nXuWfoVrp768zozw5CbltcGqKYpsNnvbUMEznMoI6rvMeN0i/55SczsVopwwG\nWfodylKlHJcib8+bOSY0VxRm/qYHRPm2GlAOuIRidxHZDRWjBJQCAC6PaCSE\nwQusMbn3s6AFGrmf3wy7lrNfr3/SayBcDUykFNcsxeegWfTyAALKX7swE49o\nNsn5Z3RhKLWZrWU5zD+xIGMea9vwYUqsIyNCrMTVETxKeBm6ThPAXRDZ2r9n\nrQlUIggh16Wf5V6bhXwfLpch0qr6XS11L2/K3iUlLMASCjg/PT1vdzHIq4x5\nEpY2+6H8EmFzQKO5lZcA/Scp5/pDkJmWpmyav2iJxvBy9SBCoWOKOqCXOZtk\n5oeBCzCXvpu4kNDMap7A+PkP9ia6G3K+rRANH/lGMzq5UewEL8HDAlmcV6eo\njIDezjydYFzAakKSUEb/jIV+pmvCb7l/PPCN6RdW15XUfK4E2OgLp/sfi1Ou\nl3yr\r\n=QAfS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fdbe371b12aa6a45ca7053318debbab4a09d4c66","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211224_1640330067868_0.8269732481751622","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211225":{"name":"typescript","version":"4.6.0-dev.20211225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"65a4d2f88fa251bbd2347c51386d1dffe4c55d66","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211225.tgz","fileCount":183,"integrity":"sha512-lU7I0mnawGSSs0OH2KKh9WEjIUSfEjQ4mZ3/TyQBwrE95iKp1VQ7Dvl58nOoPiVDFynFFN0WBtmlYk8atpU3LQ==","signatures":[{"sig":"MEQCIGNgt1r9rYq3MMan34ONlwVSie08O3f3ZtcBiFLv5Q6BAiAyU6qYqnw4ysN29PouUAD46aamSg6evd1NN57JF2IvVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhxsWNCRA9TVsSAnZWagAAeDwP/22QWf3a6BQB1H6tqjrv\n38bud4Eo+36Oub1X8PtlCiqForB7nQ+cMgNZb08estnZc/akiyoYwOLYaNE0\nkd1tX807fwWjVWFR+2dLjlXnqDjAn/jsriFtVGEXLANoFo/n2HmDbSVO5VAb\nMqIrvahXI//uUF7OLdEIECUkEszKCkmNib7StY3TUeovLfNLmKLC5POELJ6c\nwylJwwd6A8xDn+XcbY8mUdy+uqCR7XBtx7MoYRZGGPRmk4BVmOwUCnmaFkR1\nqEU8NSmegA0ZAEN/wT0cx+mdKHT8FkmY5yoKWjwcR7iw5M7ZItih3o8Hq+Ex\nnnBtpN4T6Qxr4Crfd5KddYEz+KdQA701qUB+UPdJks1SARqONh3vJ8FqFcP4\nMSfURBFviVNzQ66b7uqoJFx/a+IIEqp+8D/i3TWeznPOCHvfXRb9BeAU7tWz\ny4HlhGCvAgw+UNbj0fPnlFfI3OqNOKIs6o7YUJFtNqkFPYiuUJ9eADZ+f5hy\nz2pjvy123iPGAWfL5buUF9SoHfsVhgbjGiRMYe+XDGFxqnMJLSKVN06kH7lj\n1GGGP4DyQcaGZ3Rmdhs+X9/rl0LKmV6lS0UzJXHcCfDQQGtMHN87cac9/EYm\n0S2WMgW0rgpolSqGOPK6Brhb96rRzon/q383EBU4Qx9CZYo6eZKEnaRhS6uM\no3XC\r\n=vzEJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fdbe371b12aa6a45ca7053318debbab4a09d4c66","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211225_1640416653006_0.09694778237891488","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211226":{"name":"typescript","version":"4.6.0-dev.20211226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4703413878bfcf52e0a38b9890be953b734cef1a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211226.tgz","fileCount":183,"integrity":"sha512-lxid+O+vJOiRyDrbsRWNk6qI3XMaE0BRCkPxtSDcI3Y/kp0f1wSRnlSboKs2rAzXQSERJFoq3oNX4NrlWFeTLQ==","signatures":[{"sig":"MEUCICrNVdTlZSJh4BGCX7r0d40EWTwNvu1aoKCFNkHlPN1tAiEA5FqBVB7N/SMz9mfi9F2HzJOWkfsTxV4P6ONaH0otJJY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyBfWCRA9TVsSAnZWagAAqw8P/jYx4FL4esbHx3vqapgN\nHp29iB+qMdb1NDctT11WkD4krNafwSC85sE+Jdhrn2ofUUMxKMho46oD48t2\nJzj/FDk152hB898zc/DL/4QSE9wc4gAxIAsOnY6IYS6YQQNckWjHmyTI2h3h\nWwLgpvTxIswMfP/g1rgyTg/MsYcd5TySmSlVDRGFNWy23eTOcDEVwn/Wlnc5\nWfEs89ZMTzpO04SahORd0mSXpxEmTWsAJksPN3eryZvs6q08cSCjOo7sc//a\nIVUxHkcPtp22TIibrdQHR5Ihuy/MPBHhfPzGdDskzz+B4A0AjhUOqoa2LdNQ\nq8pJAfoVXLH1ov8gfWG41biJPKMmIoNdAVqRHrXOEtUw1TkKMqMLc1Pf4awh\n0+4zWbJ2fGs59VTtoEXs1narQWqlnQv82ftfsEClwP7MIWvs5qfKA8wisgA4\n6CTpFirVzE01JkOn/5vho34UmO6dmZz7B5TDgTk9p38+qV6TgFo5JiJZZaKm\nTn90WIov7ASaPFzhcrYkqpCdy+1ucJPXFrfh0nWZOnRtxR7H7Cn74sszKSZr\ns2+GmjImTTHJyE5QDD7JTgSzIc3A2rx31lJMOIKmmGT5FtbISyC3tpWT94Xn\n9C2up+P0AaFlmTovFzcOHpCTrODmZ1miDpl+ZlqJiuGW4fMIrCbUkg4eJ7eY\n4U0q\r\n=U+PC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fdbe371b12aa6a45ca7053318debbab4a09d4c66","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211226_1640503253788_0.41523403741024256","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211227":{"name":"typescript","version":"4.6.0-dev.20211227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9a6448a5c1c3c5089aed5763f53707b144e6edfd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211227.tgz","fileCount":183,"integrity":"sha512-ybFDDvIhNbxjJY/PFflxFtUWRveDyQAHFmzEr4YkNBbT0iGTJyLblIZiuAHlzxSWFjE0KgLeoSfGmsj1tZrldg==","signatures":[{"sig":"MEYCIQDbt9LsiEPkpsv7iRQJbz/Oq+UTaw2pkRCRxrw8AiQV3QIhAL8j8gk2CnOhmy/bYCJEz1pYsHzkwhmfjgdN91dDqoeJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyWgKCRA9TVsSAnZWagAAFekQAJbO13vs/CrSFnAsoF12\nohgL+3ddznJNdKBJnUnEmeEwJ6ou9ULRvFwbDeoBo4lzMDC2Fu3+RqFiWImF\nozp04GhI1XZeNRVtMgA3653hv0cMUQAhoNWXWiIQSayXNR8aBxtAgCUIbPDU\n0LZsPZumXOo6RL6X/dOICukltwp52DJYfrTyHRbybafCJKfVIgqpqFOy9g38\nlm2F65DfhKv6JMfpRe5RaCTes16x1391vydGqTsQBhRtGQEMT/49tYrkh1OJ\nmxG54i3wt8UxJ4iQWnE9lG24k85t6rHk72S5Z2ZlxxzrXn1kC3dM+BpMVgBG\ndPCH4DsnxCY5pTPP1219lsM3+W5itFKUhIA0uKFc/2lApp3mFtyxkLlnpxfs\nPZCaYIK5DwlAHNQ4E2Ca/o+bxhlV+56nLOA5yy7t9TNcMb6ECcQhpe5Mwrg0\n6c2/wakJFvX8Wepk82mDTEVZFxItvAZRADuOdyRwWQnjGK1FqbQ/WlCrNiJl\nTo/XJh1I3JPEoXNww3qUdZHY7hgJiPzlSSZjsAIZZfafsu4zJfwp8OifjlpP\nly06QQCIHybh8PivooYpOxfArr6Pl4CHWxgxIy/BnWL28NKpO96SD8foF70e\nQpnprw95MZNyJLle1DOpU330SEq2npcagqnIThs77VFBZK6QAM6UOW7fGi7w\nBVCE\r\n=CrDL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef9fd97e4dbcc0a26fa5bac7007e8bfa594ccccd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211227_1640589321565_0.4100081896196599","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211228":{"name":"typescript","version":"4.6.0-dev.20211228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9cc728e1cc8e2f5bf34388468e1c2f6bb28af87a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211228.tgz","fileCount":183,"integrity":"sha512-B3scJtks0tt91ndCYNmUIfVwlcuc+mqIkdEflownoPDj7KwqYgyu10rIYPoTztnxlDvpPoNygI9o4AmS5Des6A==","signatures":[{"sig":"MEYCIQDm0YTzn2vBbPkiDOUKBT9k+gur9bE4RR5KdJ2t5ToPNgIhAODWDRtIX2bjwO3QIdFREf7qB57rb/a+m7FPqeupZOL4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyrokCRA9TVsSAnZWagAAB1gP/2GtZnzbbmfzR9g7wAOp\nZYwtemSTLhm+ktsHfhLgCT8EPdAbQEbs32VliMUO4IVlwp61CGEsuegge4s9\nq7i8jg7+WxXffnIny64rLgBGyGlpqVtcSxfBOm2T/9oYVHLfjzAqNCdSUUr4\nDVO+epvWnr22WoWMNNTCJDuPaaclBlI3o2Z6tlLe8VzGr+gtM4+4cuuIcePN\nvwzeTojpojg4JGef0Pst8vO2el5ftdk5l7kBbbuDLQjfP0YKkcp+c8E+Cy/w\nt5GCWsqfS9yQSlAgTqFZXYre2OAB0qMGDEOFapdpuNR5j89XzZM9fktlPch5\nxHZ4vbrSUbMxIykS/e65fgWgZAQrCWmJEE+JliPzeb4unFXxQtXJ2YCSUl5l\nG4CYTFeKsUPSBzG4pOPaAqpwEZ4uvExJTj8p+fNseyOgbic/IZaehFO7miKs\nEn4P8IAJGrRUkUiidpBTsMIwmRCNyzoq/9IssxtrhqeBvPrxWpsbjJ3d0KOn\n8eihOIefPnKrBqL9F3qJch7qrxZntekMhabCAgA0sPVkrIpGZFWFD88UGIsA\nQ9eLPJfoqmmlE89e2nhQVygJ6I1PIxhnxRDhRzqCCA/IyFP19+GW/jg1Qe13\npfSvTZOmZKr/oedkOYwPNAIbybIb/rG358DasRFMUF/rwj9TLUTAWulzVQoM\noafS\r\n=eto6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef9fd97e4dbcc0a26fa5bac7007e8bfa594ccccd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211228_1640675875554_0.10653666861384203","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211229":{"name":"typescript","version":"4.6.0-dev.20211229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211229","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2565b42690c869b71e0b91930c6a19cc02984d84","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211229.tgz","fileCount":183,"integrity":"sha512-mgoLY81r6uzY0GApAGf6mXyha51ffZe/3spUTH/hli9kXBz6owDPAvBU5N0oMZaTzzWnHPkEKedz2AQ8wzqatQ==","signatures":[{"sig":"MEYCIQDpm+agKbckPYr3L0uqmob/xEajoUqhgdNmi2XJdFxatwIhAL8CBSOgOcHVtfM2DmGqLNLTKrtbf9ciq0ZgBgnb/yGe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzAutCRA9TVsSAnZWagAAfvEP/0XssCH3QjNlKqbtZgCf\nzghPU9nPSqAFDNo+z/lbcHu5EPQOAY3PO+hprIENS0W0tOrHFpuz2vR2OB0P\noaOIkg+Sf5gaOeyUwIERaZpojacMpOpi+RTpuFdsAB8DWKqf3xJSooFAb2v6\ns2gcWeuSiUtBE8xikmI/VPJ3psItd+nk/mNQC2US4v2oQOY5SISIK/0C6tNP\noLmky6KHCv4uPHC+6GLpoX3lda1akawjgTfp2PqMmA1BM0kSdZymrDbmTIAj\nLVRsvDw3KhPEwHtVaN9MGnV/A1Y0RDJEb4MjZ+Vw7jm3I9D7F2umxpDfsV0d\n3yfMfos+y1dq6ak0UuxwFjS0ocQSw/KcsI2qo31HTNcoE0ZFfHySclcaOv5J\nLOE7MzTCi0/vXv4St6L0BAPSGiBQKCtFqTLFkDimFOW0cSRcVcW/9u34cBtb\nriu6qrFiPdNW8+OBVKohrhiDa6WkP+nAeYxJI8SBW9p7BwxDoFayDMpwfTsi\nx79DT3U9c2u2kb/nPOz8EwdxpxPCUhNEosBhN7ccfTBBcwPCbR9+CuxEE4rH\nyJEuUlwZsw64oKpzp6V2aWD3V0U374AnMm1ubIfnNux742AEgemqnjUGwX0M\nr2F+8XJWpof2e+OyD2oIjmWPzThadkrrnr7A5jvWQMR5k2fO+02JtAFJrgFF\n04EV\r\n=uRXF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef9fd97e4dbcc0a26fa5bac7007e8bfa594ccccd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211229_1640762284647_0.08873668059818951","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211230":{"name":"typescript","version":"4.6.0-dev.20211230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211230","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d4fbe9ecab3072cc0d15d557ce9eabc869ee2878","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211230.tgz","fileCount":183,"integrity":"sha512-WBrw7j+hiWljZ7TlHJvzGONxrJ/F9pMA2tSID+yA9UTVadoCr3oM86Zorx27LFvvippCEFXr2s3KwF7aUVQ9jQ==","signatures":[{"sig":"MEUCIHunCCx+r6xhAgBT6sAnSxzhTVJaRO0cUIeqOQxhs7n4AiEA2nJnz/pHTkAGj5qV3JSA5Pelm/EL/lMUoZ+WGVHFEtw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzVxUCRA9TVsSAnZWagAA7hsP/iW9cXMPfNJURpxaFNNu\nd9e+qZMiftICyzjtcZTnhyNq0aGt/Qq88PzEAxWe8kGdRvKnxB/Ske3tLq75\nPI/zrBbwyvIdMcG5G8ERdQDTn7qZVHQ6Oz2B6bbyf8Ev+d9QMSZeP+y0eRz+\nfmvNIj8Zs6I6KHqOdtLbbDCOjwBeqXFc6gh7Wz8pQIN6j8atXgRP3refwoXg\nA2ub4YAJRFzcdskn7O3am5UVbvrT1nhzfs0PAt3BFdMnWUcge8xxxfLU5igH\njW2OOtigW5kcco3roMQkBw2OpmE9RHeGf/se0YV43H3IzXVVekj4HBUwYljv\nL3adRwrVz3A+z0b8mjogCX1ebcn9S3SdfKk6fCqtP7ah6Rhu7RvpADF3J/sW\nnIiZuUlrIji7fwFva0auc3KnofHQWVlQ92V63YTQf8qEhz/DiLgSg8LDtdwW\nQFs33r6pTwEplw0oPHLLtvMMPAh+JRGEGGJRIQDFa+n1PuiDI/ofG72XXsRd\nunJZ1Rx+esClZcUy+fCYALV6GvNRpFY6LjJiPWnReYF+qFZ/2vphFpnkeGQv\nWcNVg4Htrhxvw8jaPuVpvWkbV0ogW9vZZXXJxspKE54NqlSilQ2HgavTILkd\nqqRYvx6OyTpowxHlIqC/XVS1fjdICrHpYmKrZIjADRaRvqA/eQBFKIY1LT4e\nxoIm\r\n=BK9L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef9fd97e4dbcc0a26fa5bac7007e8bfa594ccccd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211230_1640848467895_0.045410215824032596","host":"s3://npm-registry-packages"}},"4.6.0-dev.20211231":{"name":"typescript","version":"4.6.0-dev.20211231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20211231","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ff8db41cfbd467ac3d924d854faa7d7a9040e463","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20211231.tgz","fileCount":183,"integrity":"sha512-3iQyUS68L8dOnLASEujx7WL7UeJex6KrFqYmRYG7SavRAS0PhwIle+0O4fn7vfCeNsahFVuu2CPRoPzJEViGdQ==","signatures":[{"sig":"MEYCIQDzlFS2BGrhd0I3kTus3zmZtW9Cj6rPBhrOYFQOLmOwCwIhAKznLDgu1QlKV5sUrpjBufFRwD5ip+a1nDqdebpxSEUD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhzq32CRA9TVsSAnZWagAAWTMQAJqUu35Q+zQz6R567DHn\nHDuHY+EZzzguDRdTl9UgOB/HdX+Z9jDEYCOi5LMn0L6brMuqjtBuM31dJy9p\nj9sUwEIlTbN6LY6ZuTwpv5IQ6ZWSFnZ8HASFkHvHEcj+NMM1cp+67/jSBUqR\nJvXM++w2JjXmB+L4kS3Ij8cHWPlCro5sKT2I8XIzkQGmLm2Y93iQ415mOB28\nJVyO8tAySwNYqQCedZ61zSjJkXrLA7C8n2h4wpqfCkogvuRf6GYqptsaLNv8\nDNHOX0Gn8XhVuxJmB3TAE0MHkVzBuwkgZjCls5DR0i98dwIBN/lRR1/GA/PP\nnvl/7mQhae6wMocOF2qOzUd4fbPaAViHVnlTXv075p8/N+Zgf60l7+3S+Z/n\noU0fvRiHwMkG2dnFpihxtycJ14unulthx3d0IBlwVf5nKKv0l+Kmw51FCHso\nGuVVnggKdULBm/9tpf2FSKHh3WT7eF9mF50LNAr1RcQWOMQafEN+koONdn2A\nvTcDDlugjzrLtI32yZmCfLWZ8bJpmHZe9H0mNlXLcnEhAixrLGUoNOe0R8mK\nPBrkranIjSoyItQ5FSbUlmmoSC+ArS6VHlk3VxklBP+KckrFh7C2/PdHgO74\nzcyHH/lYE/AzU7s09FWyNfgS6XwYbFFfVoU9OAhJ8uSMbgKNZjkVJZkIdYRJ\n1RJS\r\n=Aq9A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef9fd97e4dbcc0a26fa5bac7007e8bfa594ccccd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20211231_1640934901837_0.8941384478735064","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220101":{"name":"typescript","version":"4.6.0-dev.20220101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0a909c969489379cbfe917abb8ec32d8503fae36","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220101.tgz","fileCount":183,"integrity":"sha512-KF0Zu6ziPybhrKXYrBq19H8bX4HV1jwKsJ2Siqd2XFgZ2TpDKxhnfhWkarxxsM3msCRoaSB6f/9ooKe6lR5ghA==","signatures":[{"sig":"MEQCIAxj/vVjtCCW//+3ZS0QpJOdtZCoM1XP9NzJsCLsog/lAiBEHfV+h4T/6InQxFlfnGSqtBe7cNJ/GeEYcaM71oX4UQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhz/9yCRA9TVsSAnZWagAAMXcP/A+4FM7+0v9tF1OQwV45\nRlQxw5xRdbx+nGwYuXFbBCczAVyCH8WVfw7yg987lzbBSDCazzazITaoaQSQ\nzUL18K2snYd4onVbo4ViHgQmYZAT0fOuoqo6l1KJ1nTz0DiClSxKc4tlEgc2\nWBQ+6+tXf/t0gInIPbERN1fSgfdWveR3mI8FldxWEmnDMhLPMOFBYgLJwNy5\nLYf1mnbUjfM7ejTZe/0/NDG4nYtjz9sMRtwY4rU2dD2s+56hv3jwhFcC9SCp\n+EJl2KCsUceSEDC7WMETa0WUk5xsCxenDfkf78O58HF/rNYp7Bk796rvJY33\n+6s2bq8j64NT/dmzzVs6pk8IUXiAl82JY5pRQh/GatDVJA5/p6G9K/tVup5R\nyn9bGkU5SW7wzg9M3cSop2MS6ceFYe5If1EgcwJ8zPV71UBeXtqqV+gkT4Q1\nalArQ07aVkVV+c70A5GsEIlSLa0kzXpl+z7v18caeE2G20td/LosGdXT8mC9\nVYFuznKJESdPPBI3bOTF4Xb52eYbhc30AauwF+mXxYUCAJBzdMqR+Y6tzaL+\nqq//XTRVX7neJgl7a8njsDVoRXgKqKj4cQtDspu+fYEboO9vOPdhfoptj1Ct\nKzmbAu2vKEcD7ITSpR2R+nZpz9mpex7afLgF6qga/jPcoNF0ElVm2vktz2rc\nf55y\r\n=g3rL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef9fd97e4dbcc0a26fa5bac7007e8bfa594ccccd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220101_1641021298155_0.9390932358115782","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220102":{"name":"typescript","version":"4.6.0-dev.20220102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6dbcb011bc02a9e050c5dc56a67139814f711b76","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220102.tgz","fileCount":183,"integrity":"sha512-vaP6Mx3WAn+tgM2wzCWF3ehxWtZGl+K7dRf9Bmg47QTlVYBObwoUtHlpMrdu+z6tVXyZ9sHDJci71A/9B6Mjjg==","signatures":[{"sig":"MEUCIQC74TiW2NXNsU6dw+aYRPCKj6rKHXWhhNGPrIX88wEATwIgR3nWNFNbHVkTO2yymRAp1Vxh0M7y/UAU5eFuIsb3v+U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0VG9CRA9TVsSAnZWagAAxNMQAIkuwOq4YotR5AculUYJ\niSsV559YFdixqkBBL8b3JOmP7St7mz/S5eLuV1HpLIZvxXG7mvTtzLWDlMql\neLlcf2gw4YCFk+TZgElAmoPyVyJi6YCtQ1z86iS0adOCzSgTWPPq2turPjLR\ncTBNdjaJMV43lE4S+uT+QLB9q7O5faOnKjYoqxKaZMiwewT7gw+//amQ37Gu\ndJqCb9qnwIAp6bmbtNeX6hLv1TDIzPqzqLipTN30XhFcsQ4xfcRvsc+6ntdG\nhAZ4qJ8dqtQQ7qyFabDBp3isOF4PmOy2UkCAZHmlAjjRaMTKPsUlTBH7rCDX\nB0UPQTVQVIbafCsxDsSFKvW2RP5pOZpiLntD2jp2CAYP6otMjfIlhHaFgckv\nnoiW7oIPT7CCCYlGEv62dHN+3/CPxYBi/6a5DesYkyHTnU7+XUG4qzNxPF5A\nOtuE5e3QkHa6+9boHqhOxhV38uc5E4057rJM6EKX1bowKQGVjzKTOXfiH1qi\nd1AQREsrQQRA935MDyvxx6lNxVlGUCrqZ7hXiiRS+PHEehOtd7oF6wB9GPoo\nQsn0nyqFVLK1dBIE7Gu6tlMZhIHzXina44oF2kAbWKLD4wDISK9tDB4P4eKC\n/wyGQB9vXid0DTXghXmpabRTAqs35T/iOWkkLIcrIwIyYglSYszXn2dIvzgP\nc/GO\r\n=jYds\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"db9e007900238f12afc7a231817cee1b087b037d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220102_1641107901449_0.6575648999472583","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220103":{"name":"typescript","version":"4.6.0-dev.20220103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7d5bf7d580dbc6f256ac9a7742a8b20375f78cba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220103.tgz","fileCount":183,"integrity":"sha512-cqlyL2+ND18H46z0jFbxlzO5ZkL+YPVmMBuM8FxY3W9jutPJyfmAR4LGBExcFPqBGHH4t/Ke32WN6M3AbC5O0Q==","signatures":[{"sig":"MEYCIQCiYgj7UWyWCNpCMW2Xl8fc98NGM1vqCbJLYC0+RWuRKgIhAOdhqJUroA+Kg6NnhN8JXSUBNWxa6js6tnL7bYtqYIlq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186306,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0qKqCRA9TVsSAnZWagAA5Q0P/jUhl9KlwTlfw0beQRJm\nfMTgJZA+vqK0oJucww9hHQP3eWMUgHel25/fWRuGDM7hwyntC3fk1pFVxenU\nipYa5i6dnbSW/rzKmjed0ZJwxODNePvlM7C288XCdoX9ESp0i6UPsc2+UMb+\nRWUluXmeHIjmmXuZetIvjzpdzvF1jjufTj/MRVo7izEaQW/mwDJQZKOQhN2h\ntikFIAklJPTTggXodxbP1TMASvd5ws2BAC7JSHh4/afWJjdYEwB9aYhyxaG6\nHlFwPbOCnscncOCzE3fIH8nZ3kFISQrFaHbjij+3SBKcLT4XgX2h5qciZvtL\nHdVtaDxpuoVj/qkF3RLuL+xkDQFO9hvGaqzpE2KFq49qaXzmxX3HqfXdsC0U\nkwY7XKQ93x3Y0uDVLu29OwDjaVRPa63ZE3PT6Kyjs3qEoScTDhqftRkKwvYe\nKsBz4hGMGQjOWhmIbnKc1++uvdLhoRNRnEHU6ilAMUDB5d5P4YmkZtNb6fne\n26T7joX4TdZI/KpG9lkamFsvP4NBiiJmivs8DIqOchds2/78TcdZL3e0tXR5\nBkSp7eGKFuP4rtmslFoVxPH0KjgEdOkwemgKlcpR74lTmOVfyFHXvfnb84N9\nPORxmaGax6tpJhMgew+DqSYO6BUcx4o7HLgyjKfMXp2IEJvjEIWof8V7PqaO\nfUVa\r\n=ZLWD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"db9e007900238f12afc7a231817cee1b087b037d","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220103_1641194154621_0.06808745250171833","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220104":{"name":"typescript","version":"4.6.0-dev.20220104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220104","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ec5069ad0a698988078618d14f206b678130c49e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220104.tgz","fileCount":183,"integrity":"sha512-0tyxo2USt1H/6fFqNavxNqTEWZyjljAKii/JgzmS0YEyA/CnPMeeJ4+ra5pzIj10LvZw/S+VliHwYHDMm/vqBA==","signatures":[{"sig":"MEUCIACiTZG+dS9mqFO+wFEjFJY+bfsTEbvhF7nHFO6I/Rk8AiEAmn1D8jghij1yQMtlYudM2RFa93w/LX+JWZJ4GWbcUMs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64186353,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0/S4CRA9TVsSAnZWagAAPzAP+wbbtyCnP+HEIO7ZURdt\nmiqP6kwlLctIEu2mttuQOyCRIlV2ftQB2dCuQFNDYqvya3AdoPbEzN/5vBi9\nlih2OaZtMk1NYpfJ9xEXKlw936FSLjz/+3cK7HViumKbaGw7Ia09FTk+Ylwq\nI7MEGoDgy6cdKKigitAzIQPULJ/sDR04IcLCZgvuUFHNe4XCOf+EitK1v4lR\nnI1QBqMP6jjV9IsGzfSY9W2I+D7RprJb2dh4iBeqPVedCtUAzBNPidm5bkIS\nqqLW/dByupqX0bpJz9C1QoRI2no0ppcAQObJGD5ZLntsqymTLau+0c+YmThf\nB6dGjTyI8vg9CtlZIQpLcC65Gui0lboQS7gxmAs4TFWVnbdD+XAoNSXuF+uw\nY+9LBoPVeG0FlB0t1Ho9hzN7WR5B1Jg/5d3lQlU4aHgScHmSxq+TvpQlB0G3\nLoD2zQv9zucJSE1eW1E4Ln/CPBTO2AZVeztFyVVojq/4dgeB9X7QX6Cv9cSg\nKP8emZwP3jqtDTi0Mj6QZtvkUFlo1MT9K3yg3B0IaBqJ4U/9ST/J5GB6D2C2\n0reSqOasiVBsrCzuRgndf3xvuaB9e0voDw+YpL9jO7k0zk9bDPqsSTOwfOSz\n3GN4TadpsB2gE87SKz4jhynFGEO4FFmzP5e1QsJUqQTaqYoreXgo1WdyoAAd\ntq1F\r\n=mgdb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2f058b72d6e59730154eb88490b32693f0183539","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220104_1641280696482_0.36974030393300383","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220105":{"name":"typescript","version":"4.6.0-dev.20220105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220105","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b579d05337689e6a15abb706cead8b72bd5b94af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220105.tgz","fileCount":183,"integrity":"sha512-smTVpBwnw0ePDLMkknx++AYB0iFJZT980QBr41p0AOqZdycxOwimVly/u5Ew+iLpK0Ksg0Xn5YxO+AeKqa4AjA==","signatures":[{"sig":"MEUCIHpeEOxRGfKTjLrkwE8cZBuprRiNSfoQ6KSRuTxQt3SJAiEApxabYD/Evskqw1t77zfWPRWOxzBFF2CDYbZep5O10K8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64216119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1UWTCRA9TVsSAnZWagAA6xcP/2YpyITb6USCIETV/Ska\nO5Y9LH+UgFxQuq74Uu8fclFqFjzuZz3fa6Kw2p8VQuVTHstPqplmNBbK/ZTT\nsi+m/lJasZdUHLPmte3zKyVhxBjFWki6x2a6NP2DeB/hbxn3EGENwHYBsNnw\n44WdjFWDBn6eE81fIBnMGMhuDJ6yKujuWiUJRLuduUS0KP7qnLFskAIfns6f\nN62SxLuVC1kknjz6Oh+CJRp51JSbzK4sr+pDPUPuBoamGND2g9hhylZTDfOr\nOInK3lR945Xte/bJVhnVCpL6nvtkRcl4ISFx6Sp7yHC/YCKc7k1AEjgYB4JN\nl9rhN1AQPOqiYFMSvmzZgApue7Upcg9vF6iw22qOskJNrHjfxbzibLWiOj+p\n0sXJh9amxjcPuZtetbmlwTR3emrdFlVQYyrU+mrmUj4rc9Wt2nprx/lpMDPz\naa76z1s7ERk2pf1QRPBLk51qwMhE4MTc3aRFh+/TDGgwvFV4KkCk+RK2fW7t\nASqV7bfA1xsbtyKxNNajDgh0rDJSast9RgcbA6T7y+kM1wzqqj9+brdk1G2g\nsNROv1cWZUmsl7LnpteVWQiBLRaIosAxuI1xm0VGOLFntur5YkRwWmiVM0qT\no5VninLVgjcQeEYMpuZ7yfil6nU48474XRct6CmMRUJghmQ1NiWXG6dsFk5i\n5DJd\r\n=ELkT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e10c912bf6d6424783baa55511b4caeb52ee14c5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220105_1641366930548_0.09041817060469493","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220106":{"name":"typescript","version":"4.6.0-dev.20220106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220106","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8612fce8bcb2e6002d7e54b25de4302368387174","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220106.tgz","fileCount":183,"integrity":"sha512-DsU5FQw5v59ftX9CJXfgn6AQCZz+iIvLHtQcAGuo+CFiBdByh+1uiL3COxvA0ljoH1yitWutkNkOBqiSLOjKjA==","signatures":[{"sig":"MEYCIQCL3LsPTMP0/+vktLgamxuw6NTYdW2dClSz+mguA/Y6GAIhAPcUWpk9VtCT9/k8nBJQn/oyRMW97g54eKN8MCgcyz1M","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64217781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1pcRCRA9TVsSAnZWagAAkowP/3bCKvhawPyhAZUyp5xs\nFSCaHsSN4G/1FXM0ORzQoLUCzM/e3Q9pwuxX9WDRAbr4V2dTg+gHXiBgHzl+\neahO6V8JWI333tPQkUEcN7GtL/cdZaoJOwdviQNQqkyRxeM4DSDhy1cBFXw5\nGNennIUyzae9gMNljsQF5BexsRuQD4IR4Rz5OWEHgvsAbQPeKa3BovjVigGJ\nUXMrNEXCz/cHzeA5TbjTkflrXdSVTstm+rEmQZRiYmzgzcwFSMdcBA+Iyizm\nG3aMhIwwLzAmApR7Fi9vmAtVJDGz5QEv2BUIYLHq5eB7jpbzo5G01+7K23FR\n9RccyYLA1E7xBzNfQGL1UaTXspZqntYK7rje5rBQO4TuIc2qMp5+Wd3/Kz+E\n8XwPnYSCr4bG6ZOjLfU96j5DlMjnXHorkVfXHReu9E+AtkrpmktrnQOYKfyE\nf8XX21T8i3nqpLauVjzEVQVkwTJOcgJWPuJ4cDTQlbS5DzXHzNJlpnVel2pY\nIrHHJqhYBPz027q7sDqlz/nW2qtkKWAn2JQ0CjAaPayuR2b24zrjCdx7GWj1\nxtUFf3lcOGSufdVNLxaXq0fI1iugpmbnvPwtficrRcs4DrfugCy7euGwbpE4\nlYqhjiV1P16OsV/jCyIyCzk94GF7CDBG4O3oDlB5oCptydm+pnQyN/WzsBun\n1Ado\r\n=zGA5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"95d89216418d339339499e1228f83f48f6ea22c6","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220106_1641453329412_0.04911538990277298","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220107":{"name":"typescript","version":"4.6.0-dev.20220107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220107","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e09608e3134383b5501fc9b4a9c902eb186db802","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220107.tgz","fileCount":183,"integrity":"sha512-U/PitU3Hvyf8/znYmodIuyUQ+66zTKloq71N+hJg7mT8oCRBuh0NOAbT2GhHwbouxIeuDfhsiNqonPyZ4bkdTA==","signatures":[{"sig":"MEYCIQC9+9Kp1XYuK5YDWneZr1j3I7NYHWJ9ZOMbwmE2jHUWFAIhAIQOX1fkaEYc+IEMJ3QhZeR8dZgH7jakOi8on4kDxxGz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64217781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh1+kcCRA9TVsSAnZWagAA6MYP/jLqVMF9I0Le9X/FImf+\nuABxmQJ70s0GBfi7I9K67oLKgjDKmP6EwKWM8eZwBcztcpv580yA+3hPvbs4\nkx2RiSLwZ0QgsxyKpwJaWHWlAlc0/AVrZkIdRbfwMlgfIZmCysOFMPVWF1Yi\nvrepBBAH8MCipuQZY4ylEy4ther2L+ztUQGgTXch4FmMOcFMuwWfNr8YMKyu\nGgzBYfGCyOzVub5qeATogFKw1/pvCKRuC/1X1T2H7Jxfi5WH7//E5EJa5IjP\n43jgl5TnCw2Iz8eT/2X7+G6rfm6zYhXeE39RemiD4THe+zjKP6qBW3WrXWo1\nM/bhwz/rcVJ5sw/XKFRxnek4MXZs1/UTdSHQWjR6IxIy2txL3iXrOmrVYadI\nq3YJmFipmT52UiyZbA2y8fIi2gfuM5wCSpGgm5qXTck+xMrtACvILEYpE6ZH\n3sHjpzOYS4+g0MTq1mDQ1nqI3hQ4VdwGz8/6yt1AAJ1iqqA0ZgKLUbvk5Vo6\ngFcMUupY6R9Q64nbc8nTwIWvcZsrXCBcnR5OuExBPEUjfDe2YUzBzn3GgpRh\n/sZhZTTeRGFOTA35rcBtKWUMgCLIqYFDdnZNLTdIKbf5E7Et+Icyc32tLLnz\nyVU618tPOZu7C0yMmWxcOA8BhdSoyvzAINF5Zwjy7xy7Q3qwDgSi1f8mBFON\nj3pI\r\n=C5eP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0fcd86150e22648147c4a35614a5f80492b25ac3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220107_1641539867818_0.38899615511616337","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220108":{"name":"typescript","version":"4.6.0-dev.20220108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"26f1290d420dbe910c20c9687f5771028d0326b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220108.tgz","fileCount":183,"integrity":"sha512-cF49BWDXS01VtCUuX9ar9QIXMaFWMpE5qhMHp2cCuV3/VC1tD3GAeunM0VuB3BQpFrrYtaITIiU+L2atbzhCYA==","signatures":[{"sig":"MEUCIDGiln1Tpya1nhU8eEW1H5X8Ty2SG09J31BkmRnCviZqAiEAvcjTwmw+MzIE8Rm6oRlw0Z0noJHwg1PqLNLHmXNoWDU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64236882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2TrqCRA9TVsSAnZWagAA05cP/0r6FpbmSLfdazMsAdqM\nOy8D7OZD7M2uajdeAVaUbLNwQqX7QSSPI/gxBUHwjPepX1jxNjwZPvpm+1I3\n5XLOP1CZXstUCQu8XY9CD0WUJAp6fIzckCLXxyId17YTPiim3+TNzxnkoFu2\nZBs7pTueWUvz8ufcRuinXx5h92u+IO6QP6bEdlN6e024OD5H5ICInhkvOWzz\nbB2q62N150G9++vGJqZbQgTJ5uMNLdAX5oAyI4etqdLrlp1HM6lB26Rr4sOg\nfHC4IHLAyS0tJhPVMWiSrcPcBTdPzOOWLKRATuHZlR6BdZrHTc4QvBd1/WrH\nyJgoLT8kD34esHkGhE3Kl2f+7QNRbAUKyMFdg3Eq6WKxNCsOh7zYxB5BrH6K\nE8el8JP14/9FRHagG1ujrOkJyRXq64juk72NiaDkTUOpzptL4DlsvdMzexP7\nNaZEGtLZjgTw/q7qyJ3gBFBIR9uuEC5DR9QeftAUe4U0Y9T2fkid7kTKj/Vg\nSSTeq0zTGC+ohNWUlmmKSFIRpYSJDmvJoiYX7ovFF0+EHCu3/RYqQ2CDkBu6\nUC55CUaJcR1ECG+xYZk1228shFT9yUBCZZdIaf+4OH6x7V8kIx+05dttE5TQ\ntajXY6T8hiTyosHlwOxmIwwTxBS9rAv6mcJhYgwbLJVzpwvwqyeYOQ/8mLiK\nb04Z\r\n=TeBZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b53073bf66571b4c99f0a93b8f76fb06b36d8991","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220108_1641626345544_0.14718616760210113","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220109":{"name":"typescript","version":"4.6.0-dev.20220109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220109","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dcae8f7c58c03a9726f3d7a50b01ecb22061d0a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220109.tgz","fileCount":183,"integrity":"sha512-Gjyc3DWIqN+jUlSCNiB5uK2FV7L1KyqNV3ZPMUYPjiYDC9v13v28q5ZqEZc4CRdquKVhXSPBrTYp5mODgmZtcA==","signatures":[{"sig":"MEYCIQCQ7C01SHWQoqzka5DXcNvwl5ApiFTkH1jAWWHM2WBs6QIhANc59e54P4cqZkw5x+oW6kW2gzTvV0/rP9JyaygJnPvs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64236882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2ouLCRA9TVsSAnZWagAA0IIP/1alnpK56cR+c9XIvI8Y\nfwnI0RwzNax/mcsA0bGqioZ2qfghjryY2P/+PLA9iHq0KS9J6J6TJ19ErsrI\nsNr5NeD9EeMPm3gg/zqj+uzYiAXlGmgbOQPpVe2/HeoHz6HNZ36SufFqUGXC\ng6YKSRr9jmEF3jUaEN7GvI59Y101/eCejTh85f+KlA+DLq7HbvQiv3DiI+yt\nYXm2aJi55B+hx/S/dn9hILEZSJ2fW+D3IVJAvWFwaKxZ8qEH8tGwucUAAhLA\nZgKuksWFE7hnMBnzHvH1sb/3u3o/HOCakcaedLJHFLXH+hrUg/WHhY6+hMaG\n5byiIh6CiU0lAf2klIAtnFcFHuV1UF3rKgJfniZJr9OtOLjVqv59LiIt9jsP\nEMXd4CQOQwKhbcj5CzZZQqFhW8+hmBO6d8DNgT6DtCTr8Vgj/n8PgCAetJWO\nSgskm/o89PMd8jNzEgs7IY+tUJGOmwdyBREBE/FM6JMZOxuxar8GU04o7y8W\nB7sjZ7SLBlvH1eJjtOXYMq11OQVlnXuNbEy4Kq1wu1rtw4hAtxPsltQpxS01\nrvs1KX3FnydWU+zVmw69Wv5sdZ8JJ7sy18+oUYNqMgZM+iX1ypetcrXHttTP\n+ppAS2c9dbZMQnEQBOJV+dPwvnTNjp7l55m1Whg2+g3C4iLlDClP0BaUx5MW\n29hr\r\n=4VxM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b53073bf66571b4c99f0a93b8f76fb06b36d8991","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220109_1641712522828_0.02426615760224693","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220110":{"name":"typescript","version":"4.6.0-dev.20220110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220110","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f553b81b0b1f78432170e90786f4660ef27c98e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220110.tgz","fileCount":183,"integrity":"sha512-OqcSY8hktJW3KbW3HKOAaLt/bJstt5hKS+z8o71dMvEv1+xMIYkRUlnVmuPZExJY7sf8ELFRx9cFhjOQ7moSbg==","signatures":[{"sig":"MEQCICO1WvwjNwygqjBYCndjpREBvHDY/842Vrpb7JopVgZ7AiAKjCcTIcHdOi60YyDSzsfptNB90l2zfOhjoBLUqaSxBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64236882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh29z9CRA9TVsSAnZWagAARjAP/3Xw0yjsaF50jzju3MXM\nbP4gXLVihs9H9vsXVTvjKkZlMDOdZ4/ytqAeGijkczAVzcHrZk0jpRPdHbp7\nEPbwsPo+JcV5u03zEqMfv3HBmxcDYByDhWJDVqvprXwZUq2ZQ19+BeARHBqX\npwG+xY3klbmOlORf1/SpC12+HX4t2F38XoSnnE20yJjzCb51Q3Kgikrr4to4\nKV69GqM4HhaQ8LLvqLU7ar7giSd2D/ue8Jg3tjwKhXSci30Kc/9+WyAmkt5g\n0vIHRSyNTdNc8SjlhpXlPoXLJ3GnMjHghhQQZolDuwlGhk8t2zVxJkfx9JH4\n9OOZUNPxsN1jnSqjO9H4sSmlfu6o6m4pDLCbNBPiTgiiaQN+wLNe2BQR/qXH\n76eHLOmvkn4m1o0394FJJJENDidOC1Cgq0wYy9f+cUDDeqGutfWmJupkQ6r9\nbjfaFtg2381XGJJcXQDZdWUEnEO0L7cTmMr7wIkgvDzDpj3wJxnS8jVZcza7\nf7BtFxS9BkcOaO8XNEI/3u3us/dflz0LYrvAhWLH+CqJSNcDe3brKQGPc22h\neG92SjYRgdtAcrbvmbuo5DMrm1Kqt//aG64REebBUL/AfFa9/Mv0l1pyBPJx\nqK8wirnAc3YpBEMaa2MvXsfhfSdu1wAIFWoMpLYOeJTMWG7YanQDncOffu9p\nXOgj\r\n=bvKS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"337bbcccbec76e4276bb3c17b2951b1974bb9e86","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220110_1641798908799_0.2245766355282639","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220111":{"name":"typescript","version":"4.6.0-dev.20220111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6ebe323b067fdd7ec02e7cc2863009ea181fd184","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220111.tgz","fileCount":183,"integrity":"sha512-Xevo7lNQivH7sLYoBmDiubjROWvTrVmcyP2h3iO/WZAmFf3vum9KSldMAphZys6Jkq3WbCwBCJvvNx2Pdix8cQ==","signatures":[{"sig":"MEUCIQChH9486a0yuJ9qW6IB99lUkCMHP2lLvIkVbr/BJGlpdwIgTDGrR9KPPLDIquMQ9ObSyrko6SxepBbNUIFAltB9Jaw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64237108,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3S7XCRA9TVsSAnZWagAAGgUP/0C/MYi24/ej/X9CFgMj\n7XHZTtJpL/qIEZPWN4U8CRWHRYV7BEjhftevdb4rM0LvjO/gnGgc6Kf6DXzX\nbs2wXfJwQ2dVI/5OnOA0uIxi0TQ8AczzAmKD9ivv3+nedm9VFtB9w2kFm787\nmotlMT3mLo3z0jgyvZUof+HMzkD3PwvxwtvX9JJYaz2/NR353kmNnNeNavfk\n5qLrz7eUXhqS9LqQ1QwNhyB5JGn+jkAcJnZC/tC+mZJbd6Vg6EP7IekXJFj3\nmcrmMjcTQUl2NsCwoE9uQr/ubXovQ0wwZ1hy2q2ziBKNqSjTi+Gb3JXmAEZQ\nt/OnD6wbICxiIkw2x4IFEdw/6bd/lCACknFR7xf9AhDauw5S7NvX/H+s2Wqu\nuVB3Dq7uvwtuPC5YDlefvbWz3/BtHfek5MetXw8mrx2LH9R+830M29XIFgWO\nA+XIR0zzJAkYsF4YGElo8VWMm4jKioEEKvgCDVFPgdPTD1CwT71n4srUXa+P\nQR5OgZiCBfFk9NdL2nGHx3D12v9dHmBRJIAI9oLt+zX5jfp6tX9dC7cE5iIl\n2wfWpnp2vV01hYiXhXksWgOBAoE2dafnObJswq2Qjhvq22Pc9hn7X9x27idZ\navLe9FpldAH6MBXX93P7QSgnpBZMz3lMBptUZXPqjmRhLeGekDu47ZqZgtHa\nbM+C\r\n=iEuZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"852b1c2b73236ed1df41b397bc4ce7378b3158da","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220111_1641885399039_0.08970226539931891","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220112":{"name":"typescript","version":"4.6.0-dev.20220112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5289d6c60a112686ae1c5dbdd912e47f67f6172d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220112.tgz","fileCount":183,"integrity":"sha512-tqbEU6fph24Pp5eW1qbXRDRkjeUZbRTwYsmFsmNVRcxX739UJ4seH4vS0UCIj0y5nYPtmF7U/uvgwCsHnkfHig==","signatures":[{"sig":"MEYCIQCJ2p80hnJADyLV/iqf5qmFw3oRBE8mr3m7vAeWDiabOAIhANFO0h4/rFCgtBUdowI+IsWS3eDrDxgP2B6U/zgQnQZn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64298429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3oE4CRA9TVsSAnZWagAAs/QQAKBw/4QTJN3rlebfnk0Y\nSfZfKNU/rZnF5dSRw5JSKQrxrFdde3os4qsTppKglFDbPT8jG4SUNIJKUgSM\nxAih3vqpdhzzT+tQMJ4bpJNV5Hd9J6j/BGw6i1ISEiR26NhUnwdANFo7Kcb5\nZNWjEAsi0Sxqux2ag7pcRZrFybOhgXDonN8JM+JrMY1cIzzBf1SQCnZFIIfN\ndR4DyKJe12P5KqFLVddyvn2nnMhpmpiSMoJw4inqwtm/bGykoW1xVMFFAQBL\nQT5zel6OWQbSQegmRoODMPlm0TWPYh1hy2+ODKiMIsVkL06Jx89f5ieSNwLm\njgPus03wK3uzwdxfGwseWBoJkL0aKxGUMI2E7YaJCXQTuBRM3g+GRwJlE1XX\n+Zl6+Xk+QhOTFHhAyIAzjiS0pkp5kWaxUgudbNUZbxHrSLCJqRIrMl7z+hp1\nqyfs3b+2JG82l4Kku9THORF7Sgcf+9AdksZ7n8QHn1XHwzlFwKnKEsH8ck4L\nOzjrRWN6Tb/ENrUCAO7HSMm5CqF/2KqzLyrxdA90idOCNhDi/U2aGYoFXLGT\nkQxEGgq85QWMNNn5dt4K+yE69Xcvp+O168I2j7tV7EfWE6vkzInAeaoXPx1f\nkAqHiYM5yj+H1gKoPjBk/5o+xvSzvaFtrKdSIi5vphuxCnMlE4Ruvhrpsl7j\nM13E\r\n=5/3m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"14f33d5c4b5354aabc9b69c041545c5c2e4dcda1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220112_1641972024315_0.19997267097087668","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220113":{"name":"typescript","version":"4.6.0-dev.20220113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4e5bc0769c3f43cce273c46bda43f8812d38e10a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220113.tgz","fileCount":183,"integrity":"sha512-hZj5awMxIZp7IhDt1B1ZAEnL0nSTqJiAUP8mTlGA9EXLrRMSZMwSnknu8fxJjMg/miexSfwk4+Y0Ja7M+6PyXw==","signatures":[{"sig":"MEUCIQChgntJZoJcsDTIeNnRUstXb3LC0TdZ9N+p8zzNEkBmFgIgSjfxp3ucw0QnxmDZ2ZkckwSaru2MQkidjhfEciDM5lc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64298805,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh39IlCRA9TVsSAnZWagAAH/0P+wZ+XJPXJHOdztGnANBK\nJanklGVWcevvuyBNvvGYF+N60OUaJsUQesQuewOT77Syxzvi74ffCCOSa0lD\nOrFbDirMlW+751JLSL9OsDiThIVXF9TlyeVmNdfhm4p/xgZywUWNG4s0e/z9\nmGWME3/fvCAdQuxpuyB0CiwdVJPlcjPkeVpQY2xy+Y4IF94/6y7YoK0SBj6p\ntNduVMcrtCkoeSzwKecBoVat0d0Akvp37ejg7mYFQqx4uguRevLOx9GN2Nap\njE6i8i3xoYO8SsC4bCjIBTXTGRBUlB5J7r39jRcVarB4r7m8IoXZuJhJ6RZC\nQVKReloas0JQgTSv01VTwcl0H9fzTT944dc4wHJ44gL6vS1oi1E3vgwYr9Jp\n9EhaMibEtnU/uOvzzgA03Wln+y1w04pAzDzWI47o6ZNgLsX5dqz90MyFfVwl\nMKpMX6AnUC+p2xW4byWdRrJRjw7UuceOp/5rVVH4awBnhmkQKeiDq2y961VI\nHCoBsHqMbWo9/fujnfEmHFiTOE4YN+vlpm4c9wdwUSn+mL+/LIiKGxt5XoHx\nHSd4aMHphB1aHWy+z7vkd6JPt4yQViylP63ttJdKFrYoZf0vZQdQvjlSW9zy\nYSd2LW7orb4aRa71RKtjfhIcPBTWBXsfo6CEi3NEfeNKRYtuNS749zsHiAtB\nE8g3\r\n=PHIm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"82377825d73a22f09dd13d19fbdafc1666d52e36","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.8","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220113_1642058276030_0.874660586108043","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220114":{"name":"typescript","version":"4.6.0-dev.20220114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"105b77aede922849d69c0d1afcced011ad8f0a45","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220114.tgz","fileCount":183,"integrity":"sha512-WcHfPkRCvsoV3BozLL1T8Eb7VPlsoA6yyRLFxoR1zVOyUdILHGL9GzXG5e2yzMCg4rQBTkTYZmkXTBZUwO5ONA==","signatures":[{"sig":"MEQCIHst5tix6DxHaUbExF6hVvF1lcP1FAUW4Pc+2lvhn2NuAiBcS/9lCeGQCJ091D+uYFELgAVHHU9xAUwEg3oNONsKdg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64356175,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4SLuCRA9TVsSAnZWagAAsgkP/2wA/mBW388pRnMZIfY9\n9CL4R5zWk/WeYcG33c4wqMAUzh3388NrD3LQIVOjXNUTn6TypycC+DdI7wz5\nLgMCoS0T0LEalcHa3XVWnK0xpasftPjpbRVtlUTV1HzM8h4rsh+Nl8/v+Zr5\nMEODhsR1Wcj0jQqfW0TGYMJLZu6VSxRltk+ZrMQilMhfgp5e7JhuIQwVAwfo\neC103Qaf0ktF4o63V2tBu7ZzEG/x556HHvAhm+AJihX3QTfVK0C+gfkJNASv\nM2rhMqyOfMHUSHCOJTwkLGA8zgndrkbSpBGxp7u6fZSFqVZatuvgqhNDy0Db\n+9DYYeFIyLleQjMbo797qbGpSrkeCcLOBy99doCMhLtQ97flHf2Y30OMkpcy\n5MwkzaygOest68O4y41BKJlnrgeK6rxhs6ykjkEW00uvYZ5ZOfqKiDHVdojf\nmBm9t2o6mmbZYqXth+43bkHL/Rjvhn/NciPZnaznUvQPczsKliyDKVeM3jAV\nvOXZzxsClIemCeF2QYHqwpC5O+CeI9dta4Hb0yDuE3KpJUHkLGvkRPzHOlNt\nxviYL+OD4oKBtAyjpnvtuZ/p8lQgQGdRf/74lJ3s6cizKAY7tCg636qX4fp9\nOOEIVru2D8v8VRSVcHHoG/M1rVK7KHmkhKzEVuuCTiL88Crei74MJ8/1OLLL\nPaOE\r\n=v0hg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b7fee7f1ee78d05c793409069ddd00105eddad26","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220114_1642144494255_0.2885208636468497","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220115":{"name":"typescript","version":"4.6.0-dev.20220115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8571c71c2c23f9b238ef46a7106cb5cf5bb245b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220115.tgz","fileCount":183,"integrity":"sha512-Qq1P7qTUdXPbZ3bZHDAfTKphUsm3j/5/+vFoUKOgXMxmckAJ7ow2oyhkgvW5qzk/AWJCJSkcEqm18WFVZoxXYA==","signatures":[{"sig":"MEUCIQC4P5FoMcnS7f9qw/xo6VcMTpRJS0IA78m3UJYxgmgLeQIgRauBE6ZMYh+iPDvLGrS9vsOKuqQOoBlkZ2WnYvbzcBU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64358451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4nUBCRA9TVsSAnZWagAAYsgP/ju6+zRrapCuIqcb5cGy\n+zyyWCaMNbI+Jvo6ZaukNJ/xJQyhWt7n2qeE+PaTWGDxzEuFtfeAPPyHfVzb\nUAcYbCGKXt3vA+jXCZYEgBq8wDoIV171wbRlXA0gOg9kESLIt1XioRELNemb\nMRTU9oYkBZFxtwdqnWk3k2Kp/3yhygwf4+zUPFG9ryOPlrjeBD0WbCBogmts\nRwxgnzYFyiQ4kIZPlWlBbxQS/m2L18G39l+/WSZH2AFvvfejMk5D4ACAX9M+\nkP+Ay529OzCGFoNkWBn3Bq9jzEzhyYnbhZr58rYJxc0yjKGxXtL3m6lHsXqs\nUNKMdSXeFml52hp5FCzbMF0QI6+6JtSp/sCok9S9zvQwjt0qbzq7p16/veyQ\nAfTmURpnOsJOBcE9G/ldqJe4oV97TZvBJMESy29kb+RbVjMXRaqgw4ab+rvi\nlPTiDMuxQLFdn/EWN+xmnVcmgXQpLSioX2NtHu30ILIBitTHXOlYnOpaYr/+\no6rScKB+lBy+KVlKN+RzNfBN7upO6Kq/1sgGM4fmdZ2UitIY4Hj8gR/HMKFF\nXma4b30UPiq2ufKkbwqgPhtEZh486+SWmIfKZGkbipdffLc7KPLP+fKHvd6Q\nLIZzhpUODuxVP0ipuy7vQGb6bcYcENo2wsFds00C/tgi3noZYrhznsDUd/DP\nIM7S\r\n=MiBO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c71ff4dcdf60c373ea0ccca56b112311470c38b0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220115_1642231040610_0.5610890059608651","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220116":{"name":"typescript","version":"4.6.0-dev.20220116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220116","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"170e67d1afb0b037304bd99143bd643cfd3534bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220116.tgz","fileCount":183,"integrity":"sha512-eIAPZd3+mwhWOUXri6hVORk2CvZAo+npIaPWJvvTavSsJPvrooAcEh52+R/4KVDL/hMRu/sbxDILBFma4Jbabg==","signatures":[{"sig":"MEQCIHxK1grqyJTJJFlA6mI13KQngIp4e9kQIHvVPxlgvnFiAiA56pw1xLKlpOxY4+SXAZh470bMpONv9idc8M7/8Jx22w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64358451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh48YCCRA9TVsSAnZWagAAtmQP/AihJw8A50oH0rw25zHA\nRoVp500J76xyGWIEVARdWeVIMd4jOiPjQ4+cZt712Wsy3AD14QKZCz5Tub3y\nMut7HHz7CM2J0bG+xhZIXOhz72EjKSU/v57p4lpFe9GpYAXLt/sPRuvqab2X\nEG7bPhU8nCff7MXJkLM5oK8kz1kziyg2BdOplNwrKjLOVfMODMkuv0XIb7oR\nEIvQs8+elxQy7q/hgxnsyh23ooFqoVq8PWMVe6F24Sr8Z5uhndVjFG5u0KDV\ngZyPBdk41gze6zc5OsSeFNaoxnAP+KEAC0ARkF3M86Jje2rtm0M2QAmufTjh\nxiqW3GpRN59XY09pfb+ZODb4tlj39sNLeOdYnCHbtq3r1TKCqLzI4XM+O4Bx\ndxsvE08uw1A2MUP6/KZcFtNVLshsRrXGTNKWnEL0g9CndI+OBc4bQ7cneGx1\nYILAYsyajJ+qs4Ng2/lVbMamZuAbOkqrEMDmcG2rSA7Ul31gyBhaAIHUP3Wk\nIA54ShU+5Gd1kLJvHQshCnfCHcXLigOFWp7jwcGhb3ZFR2HqAnAsXccqnWus\neZnOTZiwWFfqadSYsbQh0rMoe+J5aDG7pQnekKyd01LmTaPYegEiL0C3gA6O\nMKQ6qXtPoLfjqlBwq+lsWSSNC01vgK9jtEaplS9eEePbwg6YC14ZAKSlmlEM\nNy8d\r\n=Z2dl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c71ff4dcdf60c373ea0ccca56b112311470c38b0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220116_1642317313989_0.7227722532935912","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220117":{"name":"typescript","version":"4.6.0-dev.20220117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220117","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"85d248be4b5a98e8a09e381ac206393dc3889285","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220117.tgz","fileCount":183,"integrity":"sha512-FY2QAXTzN0i/xegaA46QeHzxPw9uhrP8Kccqwez4pvkIkJQYXVJ3jfXXnjSzWel6CdPIfN7jrQWxDboVUhgTJQ==","signatures":[{"sig":"MEYCIQCu0tkX+6prQ8L7iHNO0O1QtnnP8AT4UR+kWaAbLO3xDQIhAO4jOIeidKl0In6upb1zDhLV/xcQMT3fDA/ORfFK1vnJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64361231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5RiWCRA9TVsSAnZWagAA2jYP/2/m2BOcddzc1wXyRFVG\nHSFgNFBTqyT4iz3Y8PbNJ00SqojdsSUZLT80QV9c+RbkLSis3G/2CNZW08ml\nSeJ3JHP/UJuUl3/XUwHz9kJma/Ry4RqaPQFDE/goVQOXwxI2yrQ9pLQAFErU\nW74rUmFE+CZeV8W37nIV2x7WDl+3ivytYU0bMG9Cia7D8vOmZK89vCchcDZ/\nRRPMPWcG+dOKjxDSEfrKtjyOj/NWQmRvVUMlUW6lqluMft71/3F96JZiKWFu\nfMxlo6YiKTvPX9X1CFAiLFbd2rVy0BBhSgw+xJ84udFYhZ5wymb9CGw2oC5N\nXVzv+l5DSCV/l458FyGj548tgqeG00d3iaakbZ5waujxHU2qYLLtzTXhFU+7\n11Ti9uGiSNWvlETTJQ8XlohavmjFYodA1XQQdBEWsiDWbQML797aqmcI++Pu\nz3MDEor1ne3+jj54OMTPO6JZpCjNOy/pv7vj7tOstywjkoMnzXyNgHVr8C5k\n6utblf6M8CoEVEZay1dhAihkM/4nDp/8XXGQPslsRxKVOKDXyFrqE0V7fQOo\n8/M1yDFV7c6Cr+OkPKAt5NwRRyjrroUqb8oWxFp9MrneH7URse5C4ZhXTbAG\n27qxO7QLkEGjXzqq5xqz8xAFsyfSiK6RCrSxZKUftuLYq2xDVEA4rpWqjeOM\nUq93\r\n=6e36\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"febfd442cdba343771f478cf433b0892f213ad2f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220117_1642403990285_0.3398555102679741","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220118":{"name":"typescript","version":"4.6.0-dev.20220118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220118","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"ortam@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d87c5c87906f1fb6be59a5134c6d06066341442e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220118.tgz","fileCount":183,"integrity":"sha512-DHBlU8a1iXW22FlBXzJL+ynX2SkJTBaavjiuRJrQjhWT55eOZLr3vDqDpCpFOKGCYBZI3MMDzHDVlDuA0XcDLA==","signatures":[{"sig":"MEYCIQDmUnKmSWtkDeJmdZ+KwZgPRw2wKnUaTbjfXBeZI4uuSQIhAK3QRKxgc9iwW4tOYdOUHceRQhQOPIZ9/hRwDiZd2tKC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64361231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5mmkCRA9TVsSAnZWagAAjAkP/jb0Z2AicEsVUmV+URLN\nwN/UPAJMv9t9KtGEBZCdv3VgbMHS9gxUnd5In/UnSXNqres93KB2PGGG96hw\n3fFiGxsD3qvLpQRd6pLph2RVdz5ETPB7i1UrO7NSgv+eDBD2RBgGdzOzjTgW\nHuTDRCCx8dPlKOK8UtAItZ5en/xRfKRAVZIix+q+e1Ht9KLSmKWIEpPhgoEO\nsk3U+aiSDj1oLLfz8JCmMIrBu8gPjBw6WpCR2y0nboKTzD5rc6a217rsW+VF\nHoGeV7a7AyLfwsYjTkya3Bj3Dwecbmmn0/t/YU2kq1EYhCvQXN+fdIzli74A\nvf41/PLBt2QYwHy9P2pCC5Mm/XMw549OsIbusdMiYqfRceJdfYEJsydPEOTx\nfHZArjhmyKSyoIxPv0uKq98sSpW4rOwb+AUcBrJ5PcrlrymyjmnQ/na7owUS\nr8ezLzJoDUfO7hcPXlUpMi8xfoXFTXSyOtzK3fCJytU+T/LWD8i+Er0huKi6\n/iIUPRHWzeQffJLF4JqWbEi1ptDIM5lZlmlKGNXPY/ESxwdtUlUWS2v5fsZc\nuAE9s1Eda02vYOQYtdi4WMDjw/RuNF+NBdFzVqfdh+2B9jfLqzzl/oUm7K2u\nJVC778QBY3ajVXjyZirFB/1BRv/tRgAAe1nlxH20j7EX35uwPmIcAeuteJPX\nz3Ve\r\n=U/BV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7490b329a7a0e7250d9969db21bd57cc515b4f9f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220118_1642490276600_0.27652627869158897","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220119":{"name":"typescript","version":"4.6.0-dev.20220119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2da82d2d9f2482495ac31ebd97a8a345e528c822","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220119.tgz","fileCount":183,"integrity":"sha512-Ux13gRlLkWU4L1Pv8CrKsY4eDDvWwKacexub3IoEzISa4VFDNwgY9Soi+vlte82Hl6K6glHqeYVPhcMUwCd30A==","signatures":[{"sig":"MEUCIC7AkVAJAEOyjA1mUs9cwYVEF+erh+5jP6SwfW7TaGRFAiEAjDa/khEY4ktx1a5hTkJYsW3CahqzKxSHpC9TOF07WAc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64382543,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh57ufCRA9TVsSAnZWagAA2BkP/jD4IFIJyDnXWx8l85ak\np3XO/vskim5i78fjgpEQpzPqsdubl1aC7D1LH4M9+A/gY2A48WLBgUcuLgxo\nHiNTsDObhV+pClf0OVbVJ33iRzavQWEtAsQZG52xWkjgNwFPbHazMqLDZd6k\nMz0i8eaElLYZ/msWQOu3Xm9xUsiHfD4nsTwaGylC9+XvyegQBMW1aqQhy3W1\nejt3msUnt9icfnj2zIjaxwu/vqvvfJOCl6CDyOoE8kM+XoitW0yLvu3jTt5F\n/1bWt7QDZnGKNB3+x2XVxyXPVV3rUQJGG+S51Sa/cPODwIjuc2UJa2wq1m2j\n8L0j8D8XghBRXKqLCMs4xffUPISEE9jHU4N35bvG6/q01SpZ5azXsILAKBzh\nRjnoG3NyAJjDvYxt8eu4UjjoEg3sTVtuFq00Oijey7InvtAjpjLAVxFclkhv\nDgwwPgfICMX5m03c0kuVF/69oG5EvZAxJVntGHnUnizzbJZZnTi6xWdWAEw9\nMUwpDHQTlYzhsMfVe/MaboHTCDVuFoq+Vw/Ip8t7Ce9WRk9ARNBgTCwXpyFl\nxL54tOkUh1bYKAtn9XojyBajHm8Rf5uz21mzNM+F6v87HYjJbc3/K/w3SMmA\n7hArCXywqiCs0dpcGLdkGBRU22AlPZ4qzKoYKb+5lujNxhGAAqbNE6fJ06I4\nwCy9\r\n=GCjn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9f6483929bb2bce86e6ec55196a209b3911731f4","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220119_1642576798609_0.5169254263367482","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220120":{"name":"typescript","version":"4.6.0-dev.20220120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00291b05eaa32522c9ed8525bb4f0f67c8d243be","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220120.tgz","fileCount":183,"integrity":"sha512-UQfsn8bQVvjNacxDE3hfKfQi/wX5YbTVsoQJC3/c3W6tgzcCW/gSO59rw3A4RA+pMHfzhnNhMx4AIXn/Xn2K8w==","signatures":[{"sig":"MEQCIFxnZJCX5J+Qf5P0/VV0bjrbcU83pBuLy3iNgPGEw1ZiAiBZ2FDtn01BDu/4MmsFKBRscbSdKEPQwHDoO+wbJVCrUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64396532,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6QymCRA9TVsSAnZWagAAMFUQAJYoasUl1n2uBf2/ojnv\ncEJ1xJHVjy3OVm3CItt9j81Hk4adRPhkYQRNBxy3WdP/pjQDB0a8twWWZqXd\nhYMx4qKTPSBWxfnmU9Tyj+bAYIGEupFKRDInoy5QTOumvgAKz3xGy/oC/9km\nYDCgRvsIojC99cmU0EI4iTP5AfKygMAVqpfjWPOfn0xnFNuCGL2XNuegGtyo\nO9ZSyIwGjr/NHzWFHueqsqYEC4LHL9PIzkBOSD6XY0hGnemqqP+93FmLL8e/\nYbhVg6YBzID9vXlpwr3NFtD0/bktEQp6CQ9JkKQe2cFYx7CR4VxCYvTAJfM5\nEsfRJcZHCZ/4PH2Ceizs3NnYoEPOJhOtTdZEpdjfeqx8u9yR2RzXXt0G2RcG\nLYhsHga+KcZ9nTas9170fOPbbDYvh5GGD/Gd7ABNPO5dwj88jSv/lhM/TMUG\nCMeIBnQ5WiXfDSAIvA9o8fjk6cF83kfqdG8HMTjkFHym0+1/ZoQdNufZWENI\ngPRiZ9mNHOuVJPvrlcnhkDM5BgguPaOljgcSqa3UeUCOIoVBz3E0wVW26L/C\nzOFW2X61HKhckBBMwUZu/EuuVWkbJQHCigGPhzZQFgR5jPZxHdYUjS0bcmS3\n/2/29ROTAowS2wmI9ldhwr+o6mlKJd1EVP9oz5DluDTUCblIxuJK5mt3dx2y\nF8z5\r\n=o2L5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6c8c829148b42dbc37704c1841f8d6eb6445ac6b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220120_1642663077920_0.9131315135381417","host":"s3://npm-registry-packages"}},"4.5.5":{"name":"typescript","version":"4.5.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.5.5","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d8c953832d28924a9e3d37c73d729c846c5896f3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.5.5.tgz","fileCount":177,"integrity":"sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==","signatures":[{"sig":"MEQCIQCzMCpqH3siTq0UahslywpAUQnGQzNINJNyV37EeB1ljQIfGAbJLr5iNawABOMUzZ2Rp1x8AMjqhtG9saVrgC763g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64013269,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6amgCRA9TVsSAnZWagAArRUP+gOTleg9KCWepRYkValY\nSKggnCAGZvIlJYQ2ZSLC0ysZL1KcPeUosxTaAsczdZUvcbdH1j+LOE20gXuv\nW35j9hTre0AuHGmtKYVYFaM6u0nrawZr3n4nOndSg6LdGY9n9V81hPZprg7t\n4QHEVWR7aqNqKfODxFwkE1oc2WsfWGrznu9x4IUSf92srUCPXX4Wo8IJMe+O\ngzzXi1332OV7jjiKquSBW6XZHzyylw5J1wtV+3wt4J/+NT4cir1Inka6jEYm\nq7k61slWOX17LVBuornX07HfdjOBtVB1xkU8rcHi5ql0VZMjz/OQW/vJevC4\nYg89QLe0gIuHDIUU6zhumRei5g/QezCEiNMjb+VjzrD+wfbKf46AseZ0dMEk\nxSJ2BMYaRVuXTsO+GnWNy2tY1M+5vG8wfofM15osaO7LlavR79/x9XtYQxVs\nrtpgpmF6NrWqdqoT/ZEGQ/P27yfFSgdbHdHuTw5JvopqrSvR7VUcTlg6N5XA\nBcxM7LfB8MR2IEAp9YkeDP+PkRrUTcRuCelRhcwmW3vUsPKS1mPP+eAnhBx/\nza4ZJxWmxIQuuLG86crWS2Ij0qs3jWWQiiLsw5e8LRVLArMddkkCIegsXO+0\neGFs1+aqmLtfMcEkKFZ0BuoNp3qq7sjlHfoZMYcfE+uAUl6ESex0n8kAGlTC\nKoh2\r\n=UlBE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-TCTIul70LyWe6IJWT8QSYeA54WQe8EjQFU4wY52Fasj5UKx88LNYKCgBEHcOMOrFF1rKGbD8v/xcNWVUq9SymA==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.1.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.2.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.5.5_1642703263777_0.34809284745062397","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220121":{"name":"typescript","version":"4.6.0-dev.20220121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2448520a5a4258264cd197b38e77c4f6612f32c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220121.tgz","fileCount":183,"integrity":"sha512-8+85l6T9fYzFXIVUtRe9QYMlnwKJL0mmKJglTFe0bpsqkBc57N1IKXaP08srzrEiejA5VbqtkHW4uT2RM0Y3nQ==","signatures":[{"sig":"MEQCIGGRt03NN+jFmH1M5qOoTASAU8PeYPOm+IcNJg/2EHLdAiBacd2hfboDvwOJBL6yW/qggDY7ymFLN+fcxeEo18fTqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64405280,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6l5cCRA9TVsSAnZWagAAND4P/2YgLEPbORdxS1R1e+LB\nVEUAuGE4ZDNeGAUCPhOHJPt6bI2Szs13/BjaU9BLKNoSAoMRJeujo0bXpIPz\nQ9PXTL3AdErspxOlUZuDYBxwRmHS1f+dEORHkYSOUlddkbU6irs+oGJfEBYP\nseNBYUaiCOhI41pBbZIPXY25dsaE5bVEehXeg/M6HcKRglm5GPQkYRaXdm2X\nViXZ8lKyJcNnm08PLIWak5fyezW/BCvC1ors9fXDrEvIayVA6gbtHF7AUPgK\nvjPuRuSmRDDxvmn22SVnLeb9vaunhPNAtDFy5/u9ndTAHSBSgpqgXZKVyRB1\ndEdzQ6LYWBb9OPr91UL/6lHmbRm0Kt83YFAcuIBAEHOlAedZN+sJLqd3fBVL\nJUCfOGbyzb8WUF4o5kD4W0yRkFQeGB5TPV80qqcdBk29Hx+pUdGTJIJGIVDK\nab5m54mIe3nHK5w4ewIARqYQ3Y+16UNfvI+8gY/jH248hwrHtalihMEEbpSj\n+zH7taNrH7rU1j3FQHdyLSw0NM1CNEqiNaZdXa3O8NPzXnU8kHoqsbwqoYtN\nVm3uXkI6PoaXtMgxVHFg1s3vNbJ0gxyqDipIYVROtWNjUWo0bIX++d2CvPuu\nepJaQlQyiKAMVtJnK1ImQoBdBcrTDNnj9bxd0+LKTSYc6u2NiEg8GdDXDGkC\nbmJk\r\n=b8P1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5e09e86612f775785137b74482ba77764e22246e","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220121_1642749531971_0.4496536591848834","host":"s3://npm-registry-packages"}},"4.6.0-beta":{"name":"typescript","version":"4.6.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.6.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"274a93fbde92a2c3a5507bbb5f70cb199cbadf40","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-beta.tgz","fileCount":183,"integrity":"sha512-xg5avH08DioTdxex568HFLHvnHWxGzpu9FK0ehLNwlqzx/kjy5/qEkBmkbPlvC9xs45bc7gbAbEhNqtczJsHAg==","signatures":[{"sig":"MEUCIQDyyPDlkfv+gNo4JNitt1JgUjguCnqr12UnCFNlal2PRAIgOlRJ2tvr4cUMABDFopgHPlWWpONCegglr1FwkEvx6tQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64405225,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6zvBCRA9TVsSAnZWagAAt5kP/1eIWEDycOOmDtrq02fB\n0gEXOOnX1C19IfRrjeHLIWaWz8UTVSVNmPV9QHTVdAqk7sIAc82Z54Y+YvBR\nzvPonds5ejQYMM6GkOfV+hmB3vgfCUqU3VWctXQQINN6RQI4ajV+EP8B8jRM\n3geGzeGnUsXnlavT1Yceb/GaPBWLELzRgQFODM8KQthiPIJkvjSnBLGyuXXb\nTjQrf5P0zAY3GZ1iVpC7pTZiLTUHeVvSqlB1AEIboLY2M9MpofY7KqcxO8jw\neXpRqjo55xiF/Rqmg4Ui0fLu4Fd78tLk/hwzSuS0P0Zmdr7FcTTpP3lTfXQk\nni8EW1TTbpnWW+TmRhVF3CwmfRA3NLPPn3jNmCR5Xwjhp8gyCPxmT9tPjJdT\nwTmKC5Wm4bowcTe1xZxweeue+yMwkr7tt0tGsBPiVGO3YmqZOtE8mBi5nyjz\nnwhU0tYstFeemeGUBVSubE8ZOC4w/dwoWIxMviqwcD5Hf1pM4eSLVF+figVP\n8wReMKrJ0dznirAyDcP2XbfZjQ6JxAVw+jxDIsPJR40Xo5Pt5kO6B0a5TXVA\n4WDd5/QicDIgeM4MtdYmvd+oHrS5QgKmaxujNLkzUXkyz555o8PXuT8kmoRR\nBwglWUnHf2YvPRc08BfplTZ/75E/awgvywNYdVqYYnrQlyuVr8cjk3r1bfTe\nKlFI\r\n=tnHv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-xg5avH08DioTdxex568HFLHvnHWxGzpu9FK0ehLNwlqzx/kjy5/qEkBmkbPlvC9xs45bc7gbAbEhNqtczJsHAg==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.1.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-beta_1642806208599_0.2540251801550997","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220122":{"name":"typescript","version":"4.6.0-dev.20220122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6211f6ba8045cc4be64629b628cba048d6933a5d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220122.tgz","fileCount":183,"integrity":"sha512-nX+wVJ8RND7eT1bPjq5Ma+UxAG5E+chfrOcL9upNZgfGmn605zTGRg2jPd8aBnfXpG+kH9LEC+1muAkMCqRVeA==","signatures":[{"sig":"MEYCIQCLqzizwyAnyLlD+JHI6KGv1lMFNTqTTxYRr2m/9TPsSAIhAKWkrshYA/dHUz3Fwj56PebDRzZ8zvG8Cd3HDZkr7ID6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64409388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh668pCRA9TVsSAnZWagAAY74P/0nttjXERVp3lzGf/pXE\nmsdILqQlCzYkKv1/hKrig+kWET4Gu20H+3QwbD2+Qs5OXpz7LhM+xGD6Jmwt\nE5I8B4rySA5gozitttyF6lXIgEmRisWhMUxvJzOfOlEpLcz7xPn/Rlds7hh/\nyJvy3y+p1ArMYVFNxID6h7U5gyYmIDx3BCJB/owgzkcWnbf+eqt/juOBj6KL\ngJrI7/6JE8353rS/flA5JY25+3aLCNBu/F0EKu/5gW3n6+02VIGvL1r6VJIx\nqty6bodMd1X3HQr7fnwBvB0IU6eqHNyDB0Ij/MNvNh44bCCdiTRT7keheMIV\nBRULq38eQcwUD8/8wbeEv0TtGrEKNm2Gbw8AfjYeaa5rvxvPlPVOmcXywYrR\ncNy7izAB9t3EHAvYtFlnYhNdDBULuLpEsSBo/+COhfmRniycKIzvewdEOtk1\ny4nf1UOIQihWO5fV0buzeUUZeRJZ4lknmdc2mVqCO+h3lavcw/eAIv3iaci6\nhNQbE5OWFLbDOBvsVG5YoVwn/AP3mschdE4sbJu4U4hqQj+fF91XUstERUr0\nrpJ26/EOKO+1GbfZ544hu8KCgHd4vmr29vj8BCbc3VFsoPvTW4RArBgavYYH\n0cHd1aHnXcuim7D/jr/crIN35GDB/MkPOXVPXYiWEieylpH9sj3pLAkSEYQ3\npyLn\r\n=wAGc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0019c0190df637901606b7fc6b563b482038a14b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220122_1642835753561_0.22965117122514878","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220123":{"name":"typescript","version":"4.6.0-dev.20220123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b68f3aba15c377e54c34dc747f4f6e813a5db80","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220123.tgz","fileCount":183,"integrity":"sha512-w380L7pKumXRO4qYjky6MVXWcQRzvRt6NeAFVRGlsxbGQSLVEwvmgPbFvSIdfu5xTfSvKYxqKcQsPge1n8cACA==","signatures":[{"sig":"MEQCICb2nZkpHI2bpy/ndPhOlXf4o9rdq4BPjQu0CYr+XlXeAiAbGzdzLwzi1FvAaNCMoZAaRKx7bcZupgfknp4nGdgNNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64409388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7QCjCRA9TVsSAnZWagAACaQP/1CSEM2m4C8dNNzG1x1h\nCrlqTA4aWqEOE1oVDwI1LN45KEcXoVnCiK5tjaAduFWhrP6cGRU36I2LwQ2M\noEDX9Yqj4lBJOWS3tB0g679CSMKj5WOykA192v2847xInEXd0sF8THrlGnAF\n0zLSW6L7QBPIHWNpZcO5vfRVUIEKltIcNXH6cr1yvvAWWoZJtQ4oK2eUWEbT\nYAj/fEVA+4eifBtnfxqOaTK40FXLXJLOCRwx+JINokPHUnJ6yrbcDZj4ITwz\n57QrO4sPCkw9Cv/VoFU27s2PvI0AzGEsfcrICuBz2gBwOAIoI0QW9EcLSSod\nkeDikcFJ+qsiEQ7uKIpzg2FS07Z1+VdtUk1GlB5HrO92W4HfRX3DUO9KYkgY\nFgCNPMFsfoVbR0sBYnAwq8eaxvg78cFa0aQ81ElqHgCavLhqTmezcyt9CZEk\nZV6DG5LE5le33DwZaKJE7yN3ipL6BrtkkX5bhW3sL+/pd8ZwmVv8zKSOJTuR\nvorxf+tMvfjoL7fVPagx43zarFIeiyP+tcso0u0nupuK7OSCiLeDw0q6UIdk\nkb8wPfXHT4BZB7Za/vQo0546gmjt7IXW1Lz7f7bcogK2rYP+pL8wr8qjAqb7\n1yTKi4ggbgcUge08+MYWAY4qEXrNKpYhEuLOazSgBRHLQjI8cdTC8BgFH+7b\nKIQt\r\n=2/RV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b9efc3b6141f06d926b4067d086ed5f03f221c49","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220123_1642922147252_0.25630963931483697","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220124":{"name":"typescript","version":"4.6.0-dev.20220124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220124","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"763614dd33527dc71ecabdde098cd5ec5a040d83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220124.tgz","fileCount":183,"integrity":"sha512-G9kuKvKbpecjC3HpVG23HMd3dic0R/bfk4aH4HNY7+JRGdadGt05GbKKy5xyGfvA1SNSSpXvPnZnj4jeFTDhBw==","signatures":[{"sig":"MEUCIQCyFYx4WPWoU56HYivUn7o62puSF0KiKcYj1rjQ3vUq0wIgEZU1a1It3jFy+on7MOKjUe/xD1pPMi8JfvwhXMHMRd8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64409388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh7lMvCRA9TVsSAnZWagAA7owP/A3AqWzZmAVlUvnERxU+\nBwbzbbGcOwATG5a5GAtf73H2AuXLdy4YKffB92LzSt4uHzLRgKzfsU7bbgMB\n4aAMcPUf8FohoOLHaUOV33AFfm5QjS5W00ziL1S8EDsBLwMTXtWL9j03sZg6\nDX9qwBmQdE8zvE583RG8YOQ6C5RkSd7AT0fKDXdeH0M1mwVB4k9772njWWxz\nzf6YZn6ErA8pgG1GbUXeVAlSfH6JOJMBhLGh6QlaKESA6Jt3qjiuSfPaQ57D\nJx0ES/g5QsXvino0dVPrgM/HFAtfR0/NzNndn5L1viLTeoviX2aA9LD2u9lX\nLPETcPVm/TLBGyPH+3gz9zno0dx4Vm5HfUQML92TqIhhRkASmF+bG5wqu7/R\n1w+ddXDmokfAEWNlstPN19NEP049DQf6sytctdpW1PlTbJyizDJGhgfnn7PO\nMo2RBthZfH89zsSH8uzyVLWoMDRZwhrp4nBiuAXQNNEWRBcrlMYufYCLo5ou\napQtpdVUuqYBFWl0dB6FDfY4dQquwowsvlIDS16c7MN0mHg/ifX6pKCVnn8v\njVX3GAgYxqhRdWJh2WS9Q5dRTP0CREMBaaSKM8Fk0Z23nOCA+irPS62rmYyb\nOQ0fJMEnQUOlfpEJB09knD7G1WiVCukKyW9rW7ylACVE8nutfj6Ku0f6wa4n\nUd8J\r\n=LjbO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b9efc3b6141f06d926b4067d086ed5f03f221c49","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220124_1643008815516_0.9475210143923722","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220125":{"name":"typescript","version":"4.6.0-dev.20220125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8728416183e657b470d4edfe4ce3cdc7044059aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220125.tgz","fileCount":183,"integrity":"sha512-//hQWQWU03AVI1VNNiii8dO46TcerWv1q4CWwgOmjKA6ddJigbdQ6aUYgDfUILShI4U13bOvbDTQREp74WO4cQ==","signatures":[{"sig":"MEUCICuIRc1X6odrYJAIqXWTxI/Oie/3z2J6FDZxPXIrQ24ZAiEAy5FmVl2BweiviyXcfr7PXOAxRKTVyY9wzgOErEVgozQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64411716,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh76OVCRA9TVsSAnZWagAAOVUP/iuUcLqe6GJmmohmpdee\nd3aJqfXlIzzpktMfkFsYbURw9lNCSMGnyoxraQUffJAYmNTzV41p6oqUyQAa\nyd4KLaqCeobZ4Q/KDIjjic/oNwGn+BNb88s+dM5xdwVkYFJSl6h822kW6FAw\ntFUVHlOM1GTQZ36ONTV3Dc95g1S4QTWt15fhOoyOpG7+437t7gDrzr53/rne\nzWD2jT7vAYErdTDbvKfIKwi/icqh9guj2TuiIm3uonVTUuTkgLPKtLh5e/Et\nnCph0V8qPw4bxsU27M0zN4BMV/4Hav32GPxOVj0KkW4FMxmXXXy6JSM/lwTN\nGuBEUtq+JaxQBskn1M9AQ02zIgByR6WDnTpOUXKS0sCzPU3IUasCLFYcoeuM\nofpBiEIQsRB4J4vqcxGVctWJH8jgZNYj3aY55hGzy3V3emuSwwEHhHLEKPRo\n3krmX/gX7foMmsqgrbqAK7tkNWw6PZ2Zf3MK8kQCPcLIVcP0XGpjLbWPJjq+\n/6BCGsTMEsvSSTzV8JYgp3gnohnu5mBU9WlyAzE9DM/1jnvoC7pLX/j9ilkU\nRaKyzF1SjlVvUrO25KzThkPfDgEt8NLMpBf+v76lMo8t2MJZ+heMPK48A9Ax\n8GITxiRpWFXRec9KePSAgF8cZAbJCTXG3xPaciaD5TOuVkoEs5m1YZ2Zlt/H\nKKfe\r\n=0KBy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a9efe2be6040e581100231891dea78a7fbc4f46c","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220125_1643094933131_0.49847070505824465","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220126":{"name":"typescript","version":"4.6.0-dev.20220126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3e258976ce7eff8ccb4ee1c19f764c25fc7a50b7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220126.tgz","fileCount":183,"integrity":"sha512-bKDK9F9XJrN4sHiEtbvfDFx1ByqK16UmdpcZL/hauORYTCOrkm/g86Fb2eJpy72m7eaZ+EVAz3qcNgdyYTowgA==","signatures":[{"sig":"MEYCIQCRNBBpXKZtcZc02iVVtLH5k3iyP4HIlIFzQYucxtCBWwIhAPguiDRDpPEtTR14VETsesuBMHEWoUZMKeojaD4A+AnB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64434752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8PUbCRA9TVsSAnZWagAA4k0P+wfK/mvRqMDb7ikgTiDu\n8kHHBJmSRJNficgC2wZyR9x/xNz3JMwmVKkmk3LdrJ8hwt4IrwGHmZCVHkGe\naZcxHRx3PK7z9uefN/Q8eJjzaE54+FGZVbNyjcgHFSvSxUMITbnx0KqOh5ph\n6V1TI087FC+djjyOcMEA4Ae41tzDh4oXLQC3Pcn0LKAbWg262S3CqE+F3Le2\nykCeDFgza5IADta9rmmPW8Hwd4oalRjK2nZW4j8ljWI3Qy9JD5DyoPQJhhm9\nG6bbiO0o0GdmApR69P+8hjeTiH6IYv01Sf5cL4oAEF2vKU43CA5FyC0g+cmX\nNqE9gFiAdJ2UswDsKDMX8PLFom1avK5r8zj8OkmkqCMplPYKPdtHOTw/dfaY\nAQn6cD61Wpa6puT3zhC/Bnp/XQ8ZXvSqzbvbPewKTZtch1AypCsyUHp2fYsb\nS17y1K5TvEZ7JpWKD8EbfUj8ySjrbLGkk7ekhf6NjVPs3K5I1VQSIWvKtFHE\nvG85Lqih+sI02EyV18BcuErP7KNdmJFdg4YChCxRfRjHdumFLB1EblvhrSJb\n8N888y3eY7P/EHkkM0Ywl0FrD5wSYRah7MkPaypmz+QANTurp2fhz5CYbUDb\nTc/w1fk7e82ixXsGvKU9LaHRFxw7N7c3piLIU4DTXwIbhLLc6pApqbMsSEw9\nJOTf\r\n=OsqJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d56d62185ff24b169d3baed213e5476da2fa7a54","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220126_1643181339008_0.3041592522760779","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220127":{"name":"typescript","version":"4.6.0-dev.20220127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220127","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b9c6f03eddaa62c1edebf660cbdd61a68d7f7244","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220127.tgz","fileCount":183,"integrity":"sha512-8RHMPT+/xSmnRRhBjGe3ANwhHwmqFBpPF0X0fXhqmL2m1yenpcEpHvI16/OqkOMcg6vtZyX9j6hXUS/RPjbf2A==","signatures":[{"sig":"MEQCIFwscoXrIoub5Vpw5NI0fVty/3QILctYEsUkPo65Rmw8AiAZvA9QxIgAIdTNT67iTrOB0TIJOXg4P+sXIey4+RiwRA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64505133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh8kbuCRA9TVsSAnZWagAAB7QQAJjf9GH/W5YKS2K0ur4V\n21mRaQWx9i+4AqhrY8fI/sCMUw29tLgYCRt8crQwL9Fv2LFNblBxb8ZqxemC\nLfU39eGT+QQPUbYN/pHX1kxoFjax+wXw3WkcodY/tyO3hhOnweXe7iq9yB4V\nvLiAWIxygZYv9Cl9W/6ePLdh1av+ixV2EPtT1dCKiMkcMqO70In5+3AIQk4l\n3eFjcXk7294EhYUD2GWh2EAGD7q6cPd9WnIqA8Qvl46qrnrmDEqHfiVjqM3u\nXc1b8fK+hxm2skKpgpVLAurjgvJzC0GDYpyoKtIQ69BP/HotFiuqHmwc1L1H\ncjfNf8xWmsgTcItFQtLIaZ5DI9HsAUkwBIKKB6B5f+7N9wHIlms4yxLimJX2\nQCo5V5Y7acr3mst1WJyKN5HwQQlkLXjT52FQaPiXTGrkjsCU0DO+i58Ijq4s\nswcM0BBGIX37JR1AdfNAqPyBYTfYjMmZ8S3WZinUudqRsKsPIJlB58FJk+O/\nGasy+9kZI2E7AdwunaIhS3oaZeUMT/VN7Lipv9/KZQkjM6msYZub6EYODu6T\nrSLe18JFxhzLzAvAerCMN3S2RTmBMRZAjpE1SAOYoNLUBywKtVBzcD3xtka0\nLfcn2nMbLQksfdE/8EygVWFcJndm2wGOLpT1JYlSDuBTLsztf1lh5SOc4EBH\nd0wL\r\n=T/r4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"52e785ff6c6c276c286653064e1e1f7c2857c7aa","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220127_1643267822180_0.6370858111037263","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220128":{"name":"typescript","version":"4.6.0-dev.20220128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220128","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b7149b29459b2f64d254f949280e94ecbcaf975","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220128.tgz","fileCount":183,"integrity":"sha512-bTe3MO3eY4Pt0PFhnuXtj9GxYRvwYDdx+r/+mpK2Xzfz4SLwCydTVdrNs5tqfMuqoPn7piOLeBfzkoheQUDeXw==","signatures":[{"sig":"MEYCIQCNEdkDwGXD8AGmeOpNOvcKRQJ9127loaihpRO0i4O5DQIhAIvHGo/9qrpGyqP+v7WNqNJEcGCVfcFa4T7KnkR+aAii","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64540507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh85g4CRA9TVsSAnZWagAAx9YP/3rsWaWSPVyfeC4iIxPZ\nEfkl+v+Q1MDzUGAO6OuEHLL2otHM56uVSHaby0AL4u4xrko2fcRjufRjE9zk\nsrVateQe686rbVKHBbFh4PuJ0qU+vUeMMp7sy7jrcpkq101INFc1mnbRotS0\nATF9TJpmkqWO8KhNix2z8jrn/2SqRY2Wgfo1OIgVkyoWwSlMocO42fQkxZ/G\nnTu93fU36+LMLyaZEarW7YWOcXLIEydYlxCK3ARTlHk4YvDGMRqE6DG1ul5H\nqoC3w4zOWUAt+HrAEC/ZrGohOz2miD/bluxR4uz6CKKTwTTPKkOWqLscD8Xr\nYpmhTTCFvvj86plrz7sv+8wB+xz2/pDz5pIwV4nTpbdwRaRyHF1AiMoyTISG\nxk8UOyG1GK50TjPMLkVE9Ivm3QYwRMt5gEF2SdbjoXWwfsgOVTdeGU6iClrx\nyHIf6l3q4RiFBueh6FFyJxjc+A9yQvXefYWrt+6Cx8UngHN6heFbFZn5xjRg\nzSQBk64VpV8cy+G7U7o/EajdeTXFa+mGvPHS8mIIovvdbdAH0+QMMdjNjZFL\nlJk3sXI3ZYbHDL1xQWx4FuNoHRzccIRybnxjW5MDIqf/dNpz/qbd24mkqSFG\nPo8B4hEksPQvHHF9TDTtc/yn+4eOXHdwUXaYg5x2/rdQSMD2eHRbsC3p8vKY\nOKwF\r\n=ibv5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"09b84d56f34b1772a8779623a3b27294838543b8","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220128_1643354168538_0.40504168494740744","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220129":{"name":"typescript","version":"4.6.0-dev.20220129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220129","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92cf2ba379980a3afe36a5070e7415a75c36d24a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220129.tgz","fileCount":183,"integrity":"sha512-O+Bd/BIrFU9h5TlQFWL0OMloGN/LkAhJii8WTvIHWg8tXrzkoz0N3LcUfsf4Qt9elyGVolHXkNRMI0FluUInrg==","signatures":[{"sig":"MEUCIHLmDav10ZgsYoUUiPv4kNaOBfBv0NCwyrPGkTLGHAy+AiEA8qGJHKF6hpkFctAm0qoaxlCWSM/6Td4kb9yXpBe5KVM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64542826,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9OpYCRA9TVsSAnZWagAA6rQP/1kdOjreRM5JKVllG73e\nPb/0MSipXOtMV87EPeq6pT8PQvrQh2G/ucISbqTLqHdofwmr/Sxb6SXH+423\nK6lkZs2Y1jRufM1AqiR5JTTNOoykK4cEHhCYK9tmlYOpx2xjzFioZSPQmv+L\n/tGzm3n9+6OhreuQ3+EOkUhRfD9xl2S103/tFZIIfXG0w4uvaa/U0wV/MIbA\nRKyAINJD1BJmQ8TEgmNt0k2iI+xhSNT5Mf3a7VvrSoedYr5Ch2AJUYKl9tlL\nWNUb8r5gKCbVfxiZMchgEwKh2GtLyagQLXUgud/h2xjvlHyyFT+R30ZC/zgd\nOKxlk4IquyybTGWBfglRGj8CF/B+/AHIi+loh3zjGXI7sSy3qhlCIhiQ63dG\no3Skm/as+w3veCjBbPQmiFakkwr5NYL47PET4sBoiibUVsOJK9GGE/QaV+qc\nRcuqQnKsBQSodAVQKC+7gZ8gava9ckpZ8qx0UMzuJrFU+n72plP2xK+Ey5Yw\neWqJg/BVl10f8M7ZlqoRxKyo+QyqA6V3i9fUqHa7zSHiN7ROWL4mVWzrmTzE\nnwxSXVbK+tz8fjRZYnJbne2ChjDYlkg3Txy3dfPiYodQ+1eaZvD2Mp+aEnbW\nu8NAZvUKeEMFBgWXCxGrH0O/TN0yT0/w+2n/9ZgFAeg+6NwcATCIByKYwR8/\nVObD\r\n=b7Ha\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3e19cc871180895a7a72fa4490b03f43daf9dcf7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220129_1643440728375_0.6872656851707319","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220130":{"name":"typescript","version":"4.6.0-dev.20220130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"87b0dfc5f9ba36b4cdac085fd1637afbdfdaaa10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220130.tgz","fileCount":183,"integrity":"sha512-0qyAS6SDfC9+gVdCI4KUyfEtrG0sLpnHEudBnIr2TwtBh9QiBagmS+Ljx+/YDpMVgZXRZ9Otw37G1b922NtodA==","signatures":[{"sig":"MEUCIBZLDiL1YYI4Ie84rF8PwCSZRFaXvMHR87ce+yQ+Z5YiAiEA7/Ff4dNIqqduGWnavFsx0e6plF4pWS5MiQHtipxPDU8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64540416,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh9jsFCRA9TVsSAnZWagAAKKwP/iko9g1Vr70RqfFi1P3V\n3gObTXJbKpIhbzcmbX6PQF/dZGqu/VAmZycrKqXP25DDy2wWTwT26LmoRwoy\nqltye5kKx4DVv+gbQN+wTnYfBqV2dGYiYE9IcZKwBCvkxt+s817noxO9j6Cx\nqo7Ju/8RnRH1hdQ8xHlyhhNliHOK/njffrPBAJDlxzxoH8HhfXysPZQl7Dc3\nFoOXgdfh4GTXklXivTeAhHQHM6lVXg8B+XFXMtvdSYna4JEb99piclzd85Ic\nJ9bk6VcoN8sK1mNSWRSpG4X6/dV7LrujiVeHxfKkU7+jpJxG29Ru8bDfyg9P\nlFPQ1O+ZuxmCu3LHf/egtzr2Os7L4vvCOGwZ6vEv++bEbvUMhnutawXXgAaN\n+NMsEE/tgCqjTs/DJwug/UBqjhI79w1aofwNzA+okO813h3G1BjokBKRCbJ3\nBqsb+LWyxzRI+QGxbt5qfPWTNtAesT25RBWQJevGGYuIudYt22bQWMcD0cIU\nRGXQEev2BBAdWtY3D1cTSpiM6ky/1FjL4UK38Hxtm6vgkOjqUjoHdcF3bRun\nYSx3XxJ9a0TP5YYsvYaZrS3cPqyg1XJre2PhSZ7em8whAAuAPuWAdq4wMJPt\njMw5MhY1AhHNo8Rx66vg5BbeY5I4avUBCfeTUoi6XOMkPEEvXyZWM9QSD9vA\nVTPo\r\n=kUjX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e5d7d704710cc941ecd33435bc4763eba57b273f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220130_1643526917453_0.8046137337504304","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220131":{"name":"typescript","version":"4.6.0-dev.20220131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220131","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5660d0ef3e11e7d989b9d68d51110832c498d452","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220131.tgz","fileCount":183,"integrity":"sha512-8iguijOxKezSxnt1y2KrlRN6OAI1bpibu6FEJJPeS58XB/QzqWWlfPLUkf1eUz18TUm9w97ihbOnoy3EChmJww==","signatures":[{"sig":"MEUCIH+4UZK5r8D2Zp3Xre1zvoiS8/o29SnZ+P/28mhCWwfWAiEAjPI3LsbcBYVxtjGgg7dhF9N/auQHcqkzk5sbGwjntFA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64539697,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh94yCCRA9TVsSAnZWagAAaKYP/iyYSls0hmaZ022PHChZ\nciZQieOpxzWIWhEKl2ca/Ih0TUUDrpStryHkYjjy9OfFYszxkNhsxuwKyjI3\nJqA2aaJSof9Q4iONtte+31cPtIbvcyqD1EtjFaOva0by3A8h8i9SATtJARFc\nuHVlkA/NQRusCKdCEgCBdGQADDqXIdaffVoSnxavQ6Hse2oua1OzeArerXEr\nYDfoiv+k1NjJ1bXLqXtAe6nz9zHyBEtdB9GM+X89EnIzaJ6ukLgOt1zhxNQ7\nN/aq5G38gtZF+A4sNWwvyxPKy6AIksS4JcyryGZIaomyJHsio0fQO50HTYnh\nmX6gw/TlCngJCcErbPVKyqhmB7B8nFfgSSxnW0Q4hLcdC0plbg8WBBbJ0b24\n8WY8QjhYECwJ68JCBVlJdKua8e9EtmtpcCiFoMGxkjjUUQVo6TaekR8UEYVk\ngc+Q9ingaLaQYjRgM3otjS5cCmjdLG0sTBha95WhGemlYwadSVj9X+765kC3\nHGhI1SvpCQa0Dso+lYt0nEBwxv7M/OmHC9AgIwBUYbB0MbLazlHbPo0X/oVM\nHiZHhpO2cRKF98stT/bGjtytNjyrrrFsBg+pGUt24RGDNTIhmgTVLZgacmU4\nmL9HlYvyPBclCC/AFoUO5QCN0+nCVqeF7HbjUuhCYrV7vCFJDuCaKukj7SiJ\nCuDO\r\n=rQkf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"92f54d6bd63575bf74bf165b093da0a1968eb2e9","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220131_1643613314417_0.16162861676511397","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220201":{"name":"typescript","version":"4.6.0-dev.20220201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f903cc4d4e73017ad219d38f7627b6af8f336602","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220201.tgz","fileCount":183,"integrity":"sha512-FWbG/TBTm+wS18VS0QrZ8VDeBbjVPXhRlfEXb1KjhQ4sTGupiFzdEpHeJTsARd4KoJ8MP4OTdWNm/Wz+O4EosQ==","signatures":[{"sig":"MEUCIE7U4jK0rXIu53Qz02/9DNcFwib9A2lbZasKEOSIJ2tlAiEA7k7wVr0lIOrDjmxiFrPd2F8JzDL7srxlUMn7Jp0/0bE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64539445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+N50CRA9TVsSAnZWagAAWycQAJ4ZsgZu8xAO+aIoCJSJ\nJmK4LLWNtD4vYxRGCHCq1OBaB1VSA5sIbRjWuc7XuL756Az7tO3iIGajD1bR\nu3XgJD6yn84ySRSptFjhLV+bOit0NjlsSxO7EFDQjJ4YvKTkuqAUV9J9FexI\n5EcbKTfe2mWtllVQN1MPnIRMJegiC1eKdLvmhw8JSIrQoJZSGzsqnlcKBGll\nRLd6GIuYYvHVA4AXBhfbETPBC1K/7gcrZbNrHYoSByjxxFznMi6feWjEHhpu\nbMcA36OK/1iMEvZlkO7JsE+hPHV/xsA1uVCPt/CGheEb60nE8JO/ftzrbeDY\nKE8fH2U5ZFzcYIPc/40SeO+GfVBii8fAHotAAP3jV7ivc2yvbixGgM1k+xZE\nL0eJG1EPCEWjgPn80hsa/u41TYOGm5n1apQFfkSnNn8WIlGYtZPFAbtdesKr\npEClllPkM3ASrmo3DUW3y2m57nT5v2U1foCqI8YdvHPcvqCddyrYijvaSYnn\nuG7cvRy+/7CNwvNskN5Yd1BwfU4x9ekmqcPoiRxSJCvSTzPpj2Ra1gO0u3OI\ngbgvkehdv1KdZdSQE2qJCWeghZu5Omf45/5uI0PECoX6zrcStwSQWxTsLIXI\nX5liz8g+IbOBhRNZwV9aSuvPgZs/gizLWqmR6cjQLatGKY3S15SUMP/DXeKH\nJS1B\r\n=p+tr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9d5f62af44e865f52d4e3430d829f716f270c21b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220201_1643699828298_0.5533087236746921","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220202":{"name":"typescript","version":"4.6.0-dev.20220202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"de971a3cda3c3295e41e7d7d93f0fb46a67636a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220202.tgz","fileCount":183,"integrity":"sha512-3+eMXK11wKAuOQGScJYHhnQ68RUzK1fFx3av2janwGJYbcTzXecIH+MTT3Umhix3Zc2XkAMzxHgwwuejjZY0HQ==","signatures":[{"sig":"MEUCIQCC9vJkTVkjQaTnuqG2JBrSuM74zKzfqgJgrBxwNYSbEwIgZkJJBR5Gra+pRi+u6ytqaDr0Qz/H2GURvdVd+AOehiU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64591978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+i//CRA9TVsSAnZWagAAMrAP/24Tzc24JQ0UYefpwC20\njn2qmDdy1Q/O6XNQeNHGAFXY6IFFm7K946YWdt4IK0eOskDMBJmp7ywMOUjv\nxMzYQuOL/5Iv3cuJ68QdOBIWhqUGxGUDYdEyWvNyWIOnLBVdVdN6ENjun/zB\nfJJy8i3fI6lPb0kozmRxTN7VPkFOoc0m0fQcn2FZUWsF6/ql1oenyQ3YW6qj\nsWLmqV9a46R00+8+bGUTSqoScERocXE2uPuWSmteu8o82PwBHXcj6YsglZNU\nzgEy3/z/lmg1EIkhAraqSSENwt+ON0T5AUJKv6ahVacq/1CAhTDcBF5mxfEc\nmq70XfORNT3yxqidarR0vqmHghFIwalG5oQM/7b1vFqLVDAxzAZTS18g1nLF\nyuDxTg5K7dWt4qyYIHr3YKVp9mkDmWksqjmomZjaKBFvgqUdCgZORoRVRdso\nx8vClzR1Hm6L+83tHpzq5wbt4ZFgBuo4tqsADKvSj/Utn/dwkf0RcLEWvspo\n4Is86hl6+nn8VGpJpwpcJFtEeYGYKcQg8f+W+A3Ns8ChuIG5SE5jn++DwV53\ndpcJxT81aNv2Hem35sCrYSq5Yq+E6+SWE5YoMuOHH/2oqUdCK2hFtRnMSEn7\nRrI+gcXueT3ZqJcI+RAKQtZD/kiP1m/DrTxBJ20Ly6UCds0kZ3gEaMLa3NwP\nNRQX\r\n=cUjb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"afee8bf9682dfb3ed927fdc7756d96a19851b811","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220202_1643786238775_0.9687776071093213","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220203":{"name":"typescript","version":"4.6.0-dev.20220203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"46bae7f2648dd74734f24652c336dedbeb9feda2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220203.tgz","fileCount":183,"integrity":"sha512-CLrz350WM1GQ4KbZ46IZRsHXyK0ar1QWEczY4awzNt6w6YrBaB7IYCbpTbcTeel6dwzhWdEnSZj3jQC9UTIgaA==","signatures":[{"sig":"MEUCIACTW8DWCGiquUdS/4EuOk7GqI4Uleev960Nqf52LyqMAiEA9eYMIS1Z5vOBVx8uJHn5jrBCsp2ntZJ3eayQVSqcUdk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64597430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+4GnCRA9TVsSAnZWagAAgwIP/3lG9t5B9aMktEEX+bOC\nvzv6xNMlN53LXcPSK9jCfV6JJbBN/qza/DnYUH0OY7h89W5aLolr+8bdtPBo\nD9RNGLeWIrVKesq/23F354DmF60K/80gTnYW5/tvWhpkpEecBW3yIK1mEYCg\nWvELImugQU25LDmABVW4c479Wf3YutMc1U9AigG9Cx2c1qIaphRNsnWmvx1q\nQoE36GNZLYrYFQFTFzITcu8TGYmmTZDDroyEXObc/AK/BLpKzyXhPhqIUG4q\nlsC3i2rkhely38dETTN8gpv5NqMslBLCvQgcoSdlx1jLKa04VxuvRBffeBdL\nDiLdFk7xyqCLoio0zOg+fkoNbp0Ogf6xfryWivev5ItCO6MhZtQn++M568ID\niPjtYOIULJ4em+/2Zl67UtUDASz/JUqyZJbqQaDtPxM+sIHvMU94csn4d9Kl\n6DLBbDFAGFImEHG5GkWc7dAbR1sXUZMMnqPAHG8kUDSK2RFczl+tn3yeWWoi\nB9DHeYt80pD9/1Cfwjc87coBUbf1eUoHtWfu4hRLzLVg3fYx6tsTmDOL8c3s\nW5xqWOW60lJs6sw32IUZtlZA68kC9WCvYXAMrRK+YvPnorqiFwqJaclPcg41\nHYk9aOCMJPnvgHicforTE+buqDwjzjLBBGLYQI6vbOHXDo1WRo9VHq4cmzgk\nFyz5\r\n=5A1P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9b0f01a13f3d9272d1d71cf9151d7617581e4853","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220203_1643872679321_0.13015996444383648","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220204":{"name":"typescript","version":"4.6.0-dev.20220204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"998c3b4ded7fc8d2eaeba463bea668ee46b6ce90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220204.tgz","fileCount":183,"integrity":"sha512-jmqElkRy8wCq4KBHigdbbXIqe7yLrZhaym70+WYa+lkV/kI/uFjpuB/b8KmtfHWtqnGNR7MUcfHhwcYNYk/yQw==","signatures":[{"sig":"MEYCIQD9xOATRU/HTF0OKw7wTif50YtUMmvdfiWQ7UvjpLwEuAIhAPyL68cuMmXqHQi6+rtH+gchKADqWUU2MheDZZJY6a48","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64600866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/NMjCRA9TVsSAnZWagAAQa0P/RPyza6diPHz3UNW5ECE\n8z7M4CopQ+rKVt0iNAmQMwMElvHADPRRdniW6YmLC9ktn9S7v0aAq6BAXoYf\nCHWXmV7blQZwv0IkH+ymBPWCnfoNOXm947POh3tTY6CyyhTIRlnpnH6Qv6ZT\nIx0Rwlpx9F0OwYTmOd4Y93Llry51DuxXW4kb+iyaf3GfDGXvU2Sd95azsBb2\nZUBpcabyJ0yJDGpD5kFyIIf3Ve0pV+aFaLoPNZJFR7Qmf5xrgIzDTNkk+qwK\nSp9jrtpzzbPAuC6QSNGeLNUY2dIRAXgVxHA+1dhsPf3ClXuVIf+t9H1lxsnc\n+nbBa7EmgWUv83Q9d+2WzXiSHXJr0Jd7iKGLP7BdWBx2ltUBPrWE43O93FQD\nOqsvCOXCLc106ZtWCuKmTIe0+DhGfcZTf1hM0Y5ieNHokhd+1piZ5aQEk2JU\nkNkCQeLboTu0w6td4/yRY35A5CWm3px4hbSxXm+90On5aYactuESipi5icGm\nSEwkm0zybANxbe8gfO8AP9Bau43qoO3a2G750eSPeJuTKa1aw5HLdDhPJG/M\nJWgC0qPTyZNKvqePTsP4D+gogkioTm2Fe6aE+hvYmGACDSeKA2wFdebshPJq\nIuRFnoS8vgffWFZFl0/GJbx1JRYd5D/IKSbHPtTvK+tVJJDJu/iRS9GCfaV0\nB2fF\r\n=AKYY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"69d06cb359cd1c9c6125d0b61e75de1759dcc741","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220204_1643959075316_0.4286791725276258","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220205":{"name":"typescript","version":"4.6.0-dev.20220205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c4f92bbe38ff2af511b5eb33d1023869a0abea09","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220205.tgz","fileCount":183,"integrity":"sha512-yapAaHHQzNVETUH13DyO8LgZ6vEROW4EnqxSeBx6jWreonz7Nu/jwBPn5r5danUHjTjacpKJcZJvvyD3kLjGeA==","signatures":[{"sig":"MEYCIQDFvmZvpAkjMm61VSJGetUvJKZz0ePweADsFBR8WMTKzwIhALA2BYSTeyo+dRg4JZCXKgsYawUO22nOPTtPHcq/l31r","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64610402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/iUqCRA9TVsSAnZWagAA3vIP/jyuisKhS42vA7OEoStr\nTADgOzkXRwvmAeKT0SuN5TJnhJcmtLy58ZiY4n9KKNwPSaYmrEeFTDS4OFxW\nnCTk28gTMmvDyVZIj7zTYz3m/ZtxxuysEvfzFN7hpxtrBogNWQxy5tda4wa+\nIzr/rHMe8EkcxJoNKC4uq0agGaJYEUIhQFsZiWHp8Bv9DdPbOery8U4z9sZb\n9CyEN/GY2hjIyRYpVpH35EwoUuGV/Ibhsz8JGWxeQ1CqOOhli564gtkeJqoO\nnYxWUM4aryTpBOd9HoAd0MdCt+9/vwv5H9E4iKNNG2OgnbprTDe12DnrALSh\nH797fPw9WE6xhmQD7+kuZne2f1SwCfI7DjDNaMkE9LK9pdx0us5DyI2NFe6D\nR4MhW6kDNAzvQfeOjJ69Gk8l9n8BCHSbT4f0FaW27B5Rp6PpY7WAB1aEei8U\nvG5Czcr7qw+eDz+WqN5Y8ZE4UnU5nj4ZvBDF95DdcQB9YkHLZrkL87iSsdMO\nz7nwQkEKmyRdmTZM5wYQ2JOpVAMIDKJ2jXYaFU63BJiCyK8SlCemYZ5hH/VU\npHlJ85/aHuXN+DH5/u4X0sc1iqpAUTkwgqq0+7emuyZr9gj842aRJWO3NW2X\nnDBM9rqjJ/K/j8JxSZLOPB3GSuMwSIpRL9TKoqKnsKG30fcdufQ4ZbRjtvoU\niNxn\r\n=gsuH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e1532a18ac035a91f9d6b4168745f9c81a8836a3","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220205_1644045610404_0.39767075994092105","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220206":{"name":"typescript","version":"4.6.0-dev.20220206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"35f02b816cbf9af19add0085e6d90f58f6d1c34b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220206.tgz","fileCount":183,"integrity":"sha512-ICi2q0S9hMc4LUfAz10AfZHbkhA+CaNs6DLHWRklKru5qHfP/rI40tJd1uUv70vV367DPnNCnWVrzaFdZmmCkA==","signatures":[{"sig":"MEUCIAZGmlIzcP8XjjpPSCuSJG8X3L8vrC0L4ZVZHzRvXffUAiEA+xi8mxxc+sqRu48a9JXwqOel3UFVlvsO7cb9rXjYzzs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64610402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh/3WOCRA9TVsSAnZWagAAAPcP/0C+zmRRsLcEZxnMD5TE\nQGD021WQ+Te6E3XoTJmLLX3XCkWWakj2qmEibhQH5WwkHXlT8n759qjKZq8S\n1eA3APX6VuMzZpYZdGnJqO1CyDI8/2FkZVuU9YECg60k+cCCOpzD/ofEiG17\nzlE4FulEEJG59UdJD417M9aN553mg7MMGPVeJAW7iVuDkvoKVh5cylymlrRH\nVgrqsKtOmXOdEz9LeLKXR982YpqPy6/9uESY38wi6KDcmXeum/F3V+3TK4+e\nQ4J9qW/tB7tLbPSDMGSNrq3vaavLYMdrftlHhbs29+wD+cAr7Cm28KY5AItz\ndaoK/p2Us55qO5x2WphVkN2X3yE559+qFij8snmKsr8T2D7PQYmaC9Ksapef\nHd/buJ5fJsCa0qi4DvWoPD8wok91EwgvEBO8DMqVSWuTDJIE6LjwLutvbOom\nE5XHqZAgup9P8I0hkVDlBRsUTcy/miwXL7Sf01sW1cxw8BJ3+i5zCRbFENOU\nvVvxiyi3pSuriuWETarEJMeCPxMSiH5tqpchSO0nFLph0L2IwxIgcoRwZkK4\n2CY4PZ5q7pQ9qAhLbydP7sbOsV9g819F1JxMRRggRJ012b+qAeaeuaQCurhW\ngm948Kk5Dc2Ea6i2guwI78tybSdFr05G95c2spMEjv5F2AP6LhERtqogStPH\nF5ZH\r\n=wRDa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"163fef9f5d3b7e4aed2fc08c1770123e8eca8564","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220206_1644131726518_0.6782898872693679","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220207":{"name":"typescript","version":"4.6.0-dev.20220207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4697031ed64f58875a3f0b468c5e38584ec7b9c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220207.tgz","fileCount":183,"integrity":"sha512-AU++hFXkHaioNp6VREsdwFsoPgg3zGDw4qsogI7xUe+7Coe31Jn4S3eSSSOyZrHgiEH48r+qRcTK0vnUW3x7+Q==","signatures":[{"sig":"MEYCIQDWxk4Hbjqi8pXLP4MuWaJqNBcNUeUgvyyQDdn50aL2tQIhAKgJyAuShkSBmecfPe+6VMe982hdRy0EfBWoMnceJdPV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64610402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAMg5CRA9TVsSAnZWagAA8jwP/1F64zvTtiaLH8U/UsSL\nsBq0fpIVqFfkPEJQoJWTmx67Mt4V3RrT/fBEm5PrKfYNNZhIm8tSE5jy0nPU\nJUKcxytPu38cT+0vwgfNzi8SXfsxXi/DtQ4N0JbXWtgcNqfkZwrqMx70MAmD\nebikkyHdcT2bgSyr5OmrDba9WVRCrO9zEJDzQEWB9Svwx5olCMwDHQ4cFBTQ\np8jGcylJ4lf9sals2JghGrwYS9Ntk5R3uPArEwAcykoaWJmxVMxaEe22u3Fx\nE/T740taTP23UboyXwLmZxWbXCi+nkU/vqegUuTCff0rzzWuy6BP5+m1102L\nix4p9idQZsU9nmF6xDFt59lpF9+BY5VhWTFOvcSwC8cgxNteBk+ivU3sG4zA\nJ+z4oZNbNp69hiHwAeT6pDQiMJpuFd+1os5g6PAL/hJ8Gtvzdc7Rv0Vj41co\nyxYx7dQhKmWLUTDMcfu/3SNSTbZDX6jpDzdAUAffSm5nJ4tE54B0Uv14FvGM\nFjkj6ld4pVim/IcgIzn1E4OhiM62+4LswvyTqDDTe6Dk3BzlOszBqoB2QIq2\n+ohZ1XWp/9j5kQWA+iHku22XeDz0GMlgkBCYbDRv0OXKAqob1ODGOXgDk/LT\naaUOgjxdW0fp5a0rz4EgZe+h169V3Fvuem4Fg9sU60kSKPg+82sI9sL3euXm\ngYQY\r\n=QMcl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"163fef9f5d3b7e4aed2fc08c1770123e8eca8564","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220207_1644218424552_0.43595152447963925","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220208":{"name":"typescript","version":"4.6.0-dev.20220208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"24a0371626f614f7805fb326bc6a4229eb81e630","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220208.tgz","fileCount":183,"integrity":"sha512-2yfS4UYfkLnpVkjs2IEl7T++ojqdPiV5S/akYv1trTf50TZHmGnyhF5Umo2iLWZEuSDmBCe2K52x5qzBXDi+mQ==","signatures":[{"sig":"MEYCIQDy2uYosUwuDfOF28p5d1e7M2ab5SfAa4M258hVWvYyWwIhALBt1CvwkSBxqEbZ1ay+5Zn+NfU5NxVHl51JilVp5UAr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64615109,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAhkaCRA9TVsSAnZWagAAi0UP/jPbffSkZjUcvTAOOk4u\nsBN1WmzD4FQU7KINX/N3I9ks5TLEkknZfMNTFKrX6jynPAdtfUjpuHpr0SCi\nYNIGouXGwVqugauIoYlHnjYP+MXyRwNBwtORmzFD5SQtLto68qtKL5YJmWei\nIwG29GVZ4QJ7K7Tj7wylpTMy+JfNcF8LqwI87fclH1+rX/kzWOaAVn1N0E8a\nWLeWBIdcpjhOeJl0rrYddjc7rUyQGNwmTPIc62p20f92I3YFfXcT4zH4+Zff\nC8wbJVAOIT7CWbc/lzEh7KalxeaDkQwRxv3H4LXt+4ipu3rUR4vAHnqMACHW\n8cvW5YNbgo6LYeNrMiwbTGP6/XbfsKS6svBPPy0LJ7ABkKNZ2F5O5tiJXZEF\nRQk/tH/SAxIPIqzththSxByq2XBAwbwv8FmLn2hm5b9TTaid5WICZE3YyGOh\nJLTO4YjQD/kzQsWKZgcfQwzYqTPI/+OUXAJto/Wnv5EJwi/e2BCH2bNnbsCh\n78hFI8yz39ItwO+h2K11Ln3dEig6upazI3vpf+u7bRTpMgYfAwFiLct7upVR\nOtCDYC42W/f3baR/nu+sL3KG4CBXmqPQm2apLxaT1MnTtkui6LcP8gVF3Dxv\n4qEo6o49A9mh4/4QXELTcS8tRvXY2Vh0BEkGG3YwXK/WaQKVDJTl+C/t7IfS\nk1dc\r\n=6VT3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5b53e4ec28daf1f2404c81ae8e59f7e2457672a1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220208_1644304666547_0.6664557468409751","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220209":{"name":"typescript","version":"4.6.0-dev.20220209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e50fbf9838cd1d102398c360dbc7d5e2b17be4d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220209.tgz","fileCount":183,"integrity":"sha512-T55LJkTXli4n2+zjAkxTXXM2aCUErlEnJGcNInZh/GWCwlEKWHWRDZ8d7Ow1NSGUGwJHjb/cnESptrsCP5p8PA==","signatures":[{"sig":"MEUCIQDO1rFC7AP/0ED0o4zEYXE7yPvCPyIruDodJHss5cT8swIgcBH+zmch2v8Kyh0a9axZujjiD22KqAD6YqiUxwk9ixI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64624666,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiA2oRCRA9TVsSAnZWagAAurAQAJ9oIVeWjRTy9wr8SbZM\nQxhzJIH3P+kA+3c3zRoX0QqdqZcT1j+bZvRurohXEUF/Ao8TzRUIqs11y7Dc\nMv2kev7uefc3CpuQXiQO7snsYcO2WmNyTY6gGOGMMRCBDyEwVS055GtpKUSM\nxlDLLaZMqR6l5cR5kOITKp/4YIV6x4i8pg9B/NxydbdRlQoQdhS25a8U/4Br\nne9cpwuhXFfpU5qMTOyDyX5GEzL2SnPQrQEALAUh5boQqu1z+gJdVOakpkjJ\nhsH0KIbvkP7G5hNS84HA8mTqJprV2AktBfF8WREvAUFsm9Fj4mcHxR6t19vh\nccVFmc6DnOz3fatezT7HTih6NK6hq1WXMpZYZkfbRaktQbchjyeoyPHUUFyG\nkIQSFLadq5zThaNr2QxCI7wc4B4nIceMHJbhouVFMOYOzG99mAylFfuVvOY1\n90zL2mFMFXLrROlxyZUTPbG7KhFuPnydJbNlc7LodPsNBME1LdvPx25jpkIk\nkRgiyIlAt1isSQhoAy7HSmFYFWpOY71NNT9mKtTmeE6EG48ZD7FSMuDf6x74\nEL75+C0ohA3JNiAn684jBKt/dkUlow87jHMNuI8dMOlY/kjPnJD/2xMbSNMB\nFqAc3Mn9Kwj27ITKzlO0wAIcy7MMhM7EYKMWiEqkD864Ovws7adMH5gjk5VU\nD4oS\r\n=0nff\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c06849ad16a1ab9bb1e457755f3ef22cf231cac5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220209_1644390929038_0.08691155561507857","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220210":{"name":"typescript","version":"4.6.0-dev.20220210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f76c4a09053f8d064a37e91dff8a32dd5cf7d842","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220210.tgz","fileCount":183,"integrity":"sha512-YWhjn/bTswih1vihuM7B5PHmTvgBgg9WGww22HQZjGnm1HIqaeTDw9Rm0tCigNp17bvmwB/pstojj8WZDUEUPQ==","signatures":[{"sig":"MEUCIQCVKvrn5uNeNQxkQaDSrY8IMtqFY902AlDk3ODOrn2XyAIgV3YnI9iY+V34V93Ildx1CKQBimwfPYtXgs3I5P1A2W4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64646378,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBLtGCRA9TVsSAnZWagAAnroP/R7lCV8Kwd+BOkmuhaS8\nRthOKHr2zchLXctFqvEPMaVxHPGzUX+FpnsWrbzkyggsaWmzRW/vKVkt/rkA\nF3xVkXxpWWxWsmBC0naNKAZkWSisNknGKmHaLNqS6IpZ7+fs7LFjcxkm27Hz\nVUS5m/eGOtbbAh+mc2yjFlugLGtGesdBJ86SX/p/LocMR/ySipy6kCIy+G0i\n615JzEunsrLQtHX0MYumHYMuCoDeJqoc84MNVSegmgxSXzwFTr/iLpnf2Rf9\nYarkC+73xKKHCIvjfg158s7VRlGriWmhya6ievo/kqIkbBPXydh6ycdKhmks\n/9jyckJk/E+AovYd9PSxULXkH1B+CjHT4wf4E0oGhKUJhvZQGPqlLk0ZHdcP\ngkIgsRU+uUER6NvkfvTzzeNs3Z6IZmDPDgFo3zSQa28ukZf4kKARaV4RfxkK\nLSFbKLFHpWUrug/++qVpNy/xm6KpxNoGHAgwK5KVpjm8QNJiNkFYqEKTPky5\n933MhzKQDhjBW7xqlIb0qLfEP1xRt8H+5BbC8yDkoCgTUoO2Lh8r3RMDa2bi\naUCoBUhFEq3CO82fWDQFwDhWI2dzRxi+fh73WJAmlqrZwdtGB3YbUth13enj\nx8K5kmhn0aCvzseGObLcMitm7NkIiNgtyxE9YvaTbCxy2NXrUNBNbYOsTTwZ\nClvZ\r\n=J1Bn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"df673f74f5cf4fa1948ad2f8c25e6a0290d212ea","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.15","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.9","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220210_1644477254166_0.5978422588317511","host":"s3://npm-registry-packages"}},"4.6.0-dev.20220211":{"name":"typescript","version":"4.6.0-dev.20220211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.6.0-dev.20220211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0b5eb36bf5d9aef424a4ec56e9b64cb91080ca78","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.0-dev.20220211.tgz","fileCount":183,"integrity":"sha512-wMVJ7QGajX2OXpGrX8cphiTsyab79JS88F00azUMgO65ooUFgyFFQaXn2zOO8h8RluD6kHWzCM3WTa0Tc0Ui+g==","signatures":[{"sig":"MEUCIFjF9sLPD8cfPZtR0/esKvWyoAIu/dNqHzS40GPgnoLcAiEAsXzg5OwVR619xGYCGAmPvVqu0cHBYH0Jz1yPwLt2tMQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64684131,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBg2VCRA9TVsSAnZWagAAv4AQAIT/+8YaMaxz75fPazfH\nv8AuOzsw4cZnGqNZwhMtR9QiwTfE/pxrkFdzvRXEp6MxqAWZY//T7rx8jX2p\ntGZmUQMoXIScm9504QiNaB74ZE2ndRLidJ3clNRuEyPpGTnLkRbOGWrSlrKh\nsFsuaVGh2Lg4xo0cJrV2aiiHGztQ/vuYO9952fkdzEwQWtQoYUwaGjyJDFfy\nDQCxT/6ZkiEnMHNvLhg2dT3JxGLFYlawoplb+oVRCilJGP1opbea99m+yCOx\nbo1AfkCMy2PCLl/zLD3cCyrg3ivAJzaQYAjShOlAtrP8cwPbCpuIpEIzuxuz\nTXHl9wBTY4iy0HwCHpml4NQ4hq9W+jRfbpwY+IDslZLSapXQFPncckh7aqAw\nA9sFWMz/lT4ztNlFsOOPEDSeubw9LpHwKo9aIaXNAEFtxEMoVarRX1rpjlSw\n1DVs3ORfrCJPpPOSM7jcE8Gsr5yitPh5f2MIBjv2ug/Tb0dICOp0e0B4eaFk\nrbu1aMSRwBaGcbY9dejzYjFwTwTwN4Q93XvSDws3dHq7NEKlxIlje5TdErRI\n23CLEHFbd9NPo0YYtcf+b1XZTwfjaOxC2IoT66iNvkrNtpFfMgQ2X/i/EMs8\njO3sABMJ7pswPQ43gvLBa8St8b6RfImUMylJvg6s/hdfazFUswqXtYNGylzV\n4uQU\r\n=n5H2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2bd91a6e3a3830e4f818706a035aad2ddc2fcdd0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.0-dev.20220211_1644563861373_0.8852994746987282","host":"s3://npm-registry-packages"}},"4.6.1-rc":{"name":"typescript","version":"4.6.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.6.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75baa823a6fca592f358b486acc2039f103ca2af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.1-rc.tgz","fileCount":183,"integrity":"sha512-tLPT3GelVfTN9wXPOuPKfY83PkMvgdF3V3gHK/ElNrpQPdLKQ/HMU5cS6+7epYSIF2gne190jzydAW0FLLwU7A==","signatures":[{"sig":"MEUCIQDDfWoZsl+oogCTOr4a1JkUc+6NACsn8ZgWXb2mj5Y4mQIgAdSb+EgFg2gRUZfJE953LFEkO8Zm9zz44Vk788/LjRw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64708536,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiBsXECRA9TVsSAnZWagAAq+sP/2hnQwcgx+Abg3TLMmq0\n0OCq0rpFl4j5j/OJ5x9rYw2pHyMksLmElgVZ4SOI4mI7DEm1A7AWssOlEWx4\nOOhtSgxp9yZR8TTGFwvfyTLW27B4jE2/eKz2mnzG1AgOWydZs7ukUGquycBP\nBe/lTq6ndNh3tUwUBShHySH75v+0TqjQjFB7be9CxJtNs4tMRXVgTe0jPdOS\nBu71h7uLs+4dSZmD0t/p7sohdw3h9dbdHGNl4K+DfCW9pPWU5A4MkEweVQ4b\n0IEAcAk/bnaTaRrj9vVUpdU32ruUYouulbIHE0vDZWzkfNCthG1o2jwWppvp\nkRSgB+V6fzWMIBWpDpfZuDEIh+OJqXr2q9PMwWJzFbdhMjoMPJOJuUZEo+DJ\nJu87CFeUkDORWY0nIQyetNG/2Qwvov9O9hsCbzhywF3NfJKelTg7yV0yMNuX\ndEsvtrCja1WOuu+nOM542uRorQiLPIDF46/vbAsNGYNv2DBhdrfXB7XgENSp\nGdEMFBBkDWEZByZkgiU3RIfMr3vXeWpGL7rqXiNecpcnMMR3/z0EnktkkfYU\nouCXqC9pFG2u4RbcrDKKRkXe2EKjgSUe2ZgI5vRXSf7DM0RAKVQ5vbygDdUB\nAy22A7QxicbllFpGhMunkIZKs8s0Ntx9kMTvbhl3rAEo4BL60+4KvLttwC7s\nTwpj\r\n=w2i2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-tLPT3GelVfTN9wXPOuPKfY83PkMvgdF3V3gHK/ElNrpQPdLKQ/HMU5cS6+7epYSIF2gne190jzydAW0FLLwU7A==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.1.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.1-rc_1644611012413_0.15574879960649834","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220215":{"name":"typescript","version":"4.7.0-dev.20220215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"orta","email":"orta.therox@gmail.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"acf2b9555c711e7afa6868a35d6e7555ccaead5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220215.tgz","fileCount":183,"integrity":"sha512-nR8nlomkUrPGacuVXoAfhEKKbofLRR+dIy66EbZasC8H1rAbk5UXdXgZMlh7SthBf4w2y3sjCiq+MCQgY+QewA==","signatures":[{"sig":"MEYCIQDTyR+t0s6Svt3UZQS/GaneM1Vy/HMnOrUZMnVhLcDilAIhAK7uTxILBa6iugWROkqMUogjl1/tO5Y4ZbvwwBt4fREH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64737683,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiC1L7CRA9TVsSAnZWagAAQvMP/iNNsEUrZ1UG1RDvvml7\nHx4eFpv0ck4sT75HPmBtubr6sxQmyA+2DHqPEfDlrt5DLLIpG9Z9O5EzGb7k\nKmLXKcNxVsC1q8fbUSs1EesFLz997EtIyEKGqDTwRetUoNzSWN0nxb2LSpNR\nYbBjHmwR+aPhbGkMXerK/KpDfjr0G3u7+f+7aCCbs5wb8p1qaBxRY4z8sH9X\n26+JnyUvZhH3XGBwSqI3J15VVMSygnq3qIMZyfpRop7pJSgk3Dsp+Stgmw3Q\nUx6m6uU94ztCxHoB0ONLxClDN6akIbDD8dHRQSu89/iXQRbg9DXfb14WhbnN\nwoVsQhTU0EZdxDXOmbydHqr9d4QdSNdFtGWlEiJlNV/eMjzAqm+onaHNwaO7\nU88oZt4GBIqQYKHiYHjHFkEiRNwRQZyNPr666eAR9n7aTvaYzxmt5Nihi+YR\n/NQUCU/zTl0zyLbz2YESiK5Xp37T6YGMhCt11GeM4s25F21osu4M4IxqRVAp\neSBfAZ+7GGKkHChniw4jC69K7ZVS4wEWxGS+VSBq5ogJk5y6jIEYiMEf+/IM\not0Y5ywerR2mAkO2qjjuektXtlB6VqlgkkRpZFPTz47hnI9hBiYZ3GrP+Y5p\nJrpZ9Tep9xzF0h7Is7N5YxqBShLVMQIlIo5WQ4vqRJkP/r+SGvJoKArrvyvx\ndOzK\r\n=hJn4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c3a055203306682ee0b4c5cba1fa508128ca6c03","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220215_1644909307401_0.9679854137183621","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220216":{"name":"typescript","version":"4.7.0-dev.20220216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ecb24d5d0aebc326d06f7b62c3db5776ca175988","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220216.tgz","fileCount":183,"integrity":"sha512-Qwhfu+Ht6Vj5rqCEcf5sgrackkAnTzQ+eB1wgaon+Q6wawUk7LJsfuiCgTvYnyLvtd1xLQcpIohlruvhNws/3g==","signatures":[{"sig":"MEUCIHuh7iNm1myRoIShEEJhQOe4XENNlPKHMKROyEs1SMTJAiEAkCKwhhbwNE9qo5nPyJ2DabdRDN/CJKqqQ8vgosW5XFo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64793429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiDKSNCRA9TVsSAnZWagAAX20P/0YeP7SOstGimInPK0KW\nuAGVB0ULf5WRiQOYg3eIxVV3hoCkBRNGvDOj4QewDJBzdPcyMvmMkeyJrdN+\n3Gtc0XLp+SfloGbbKSzi3hBbxBinYQoYBiYD5esWLf3YsYNbGK5wfz6h/dfv\nC8uVdbGZwoahoNqS0EPI5lG4U3rOpQ+eRWiwPY3Q65OjaGTY2ySnEK+DsGlZ\nS065qCT53L9YJaUacr5NKQTAokq3gUkSxp0VnVyykuuJXTB+JABZWU0ANozF\nhppkWK69ayoS62EEQuf8Q8Oi6UuVVDmkZJ3+iH+2ocGcz7l9RjhrADz+zQeu\n5TfexMatkdfwEkWHUwuvMX+d1raoQMgaEA7MhoHXVf7yLHdFkc84NN+Dp6tw\nRgM/6M7gAZkf4aAbr5qqsBnUfFJMM+qtPn40rdjLVIBlWK1QvMy3F7Y3Won9\nTqRKffoSo0e+auxdPyWCJPbEskY82CC/zXpTS48dd4FQmBrHkobqYjP17PxF\neQ3OlT6x035KNq/1M+VHGFnbTAW4SIpS8P8cE5wIf/HZGmbAHsfjYfH0krUP\nn3ZpRidy/q34fMxR40JBUNz/71uELqTQsxbuZlIZl3vAb9zVfiEN/FHqBZAf\nq8pnp62yhQEdCn5fI8NNpqS5PIocc0cMaU2tAnEmsXxQM1jcqxq6Qr42VVh8\nkm7x\r\n=92M4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b9a06e515ff4ffaaf5eba87fa49f169fb532c7b5","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220216_1644995725559_0.9482532518668352","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220217":{"name":"typescript","version":"4.7.0-dev.20220217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220217","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b615447ad2bd04b1487506d54921ca3e54131160","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220217.tgz","fileCount":183,"integrity":"sha512-pwkB5yG9LYeggC4IsNnB4ua+bF4bttFMcQWInnGP/w5jxx1N+80F+J+lKUirUIIimDLyfQQaVSOlOlXcqpKhlQ==","signatures":[{"sig":"MEUCIQDVXRZ3ofwkjXFPWl5FwS6gYiUGyUyFr1bzXFqgO9IMaQIgXCr+XW5iFhzWj65J5xQq/5WhTNyz4KYo5RvV4jfW1dE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64821546,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiDfaiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrbHQ//co/fap2fkOHXmoePfhiPWTxW/OjutXVuzIqAJBWD+5Ye04S/\r\ntzjcSeU/xEFxY/LhdN0HpqroGvUaRKyHbw5IIPmv5IMJpCr0dsEWWxyK1YAc\r\nxsOA39EAHhnazc0uidJEMjwxFt977zLS0kiMsDPEP4ijUJyNA4roD33yw5bo\r\nQ5pCQipq0MnPlb0K6BWqR3lPNF+4vLF7F/svFEnUlJQ4UaTtXdhAJ+h8B8pn\r\n3w8CoNqcIPkVCQbAGOtWm1KlIlj/xT2AWbYxom/1tetn4gCw83s4zQfQw/A4\r\nSb/ivSRMWnvn3VgxYnI52k+RSsAsYRuN55Vw3xDvS7XyLpsX2xNi4wR9vhhf\r\nbmPH63+dVl9gmRLTqZeo7RmbiFfXQ+oShN84RT2ykVApisNCAHghn3p8onmg\r\npuyPUbA6omrY4PfRVuzqqew7gTiecuEd0cAMLfgrbvZuoakxavJKy6XFp+zv\r\n/sCsWhy5jIqRshFiRVQ9kFsuCZy9YmZIaRQRY8opS1e8eTBdVqkxcMR1h2ky\r\nMfiIfesyjuLCT8ctTSFFdZsvwAaeSVwpNnsh+ePvqQNw+YixMGQU4xcFziZJ\r\n8oPmTHLhIkeEFzKd/T8ctQ8bYWG0S961XhKRbALvI4QrpHxgttEBVObi3Ua5\r\nzCten7oxw4KbqUbtqvbOwMDAYGrJp0uDnME=\r\n=lN6u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"03a4df7a57d5699fab8474d74454f787747b2c25","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220217_1645082273917_0.5768122229487784","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220218":{"name":"typescript","version":"4.7.0-dev.20220218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"65aac31da188c37b6820cf0208a0959e49fd34ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220218.tgz","fileCount":183,"integrity":"sha512-n43JDgz4Dl0l7s4sE+FaiKVj4H7ZjET7Tt2102CT9PvpGHj7KJE4yDxtoOGHdgu6W8dl3Gs3BvpmdXuHJ2r6Jw==","signatures":[{"sig":"MEUCIEiGkEtIJ0kC7+MmPrqldUq72u0g2xkgglq0Igi2muSyAiEAsBrvLGxq/QUKZYNFofGhuyauWHQ4B7Me9M6Vs/+IRGk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64834092,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiD0f6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWzA/+JJgMbHASxbg4QgtaZfjgu9Ap+IbVZS/N41o+U2JovJ+PkJN/\r\n4zEe9r+8KIBs/pG7o9+/VHljVuEQKmuJgF1C7D3dKTDuvb6TsjEjlcLhiT3U\r\ncquV7VZmxTX2LD74XE0H3uJz1UoymaLIpguxfEoqjNpcHxnAHsVF/duFsfN4\r\n6MjSugz5qVGvCGRUw6WnC83UHXwpO23V13AHaAFzcqwAWBBV9UyHWK+5DeLX\r\n7TX4G4cO6ZD+Oqr37Gawt5C0lRev/csDM/paE/7PRVVHvnxfwJ/qsoStt7/o\r\n9EmwxYLmUl/Jv3hNVcTcLO0P78B85XweG0KtYdFilTtSj7ynCcOe3TOfJQAw\r\nwY2mXDl6E1BTf8lORRA7/EDuOQG68w1TQw7zyowb5aNOrc+ZupJTq2rkxG6D\r\nKE6IesLZ0sNkdRXDFLfZd3EJG8O3W1aazMqCmnHOtwFwDLJPxucoBwFNCeWf\r\nSCdVu5oC3zk2GzTQCl34v6H9y+w0M2yIj29wlC/cFh1tEOAyUgFe6PAiuJfm\r\nXSGq5XMaeeDeER+w5m1chP0kzMaaF9rsdSYBvYJrSGikntC7PaDdk4n5vgBc\r\nIokTDoHXcq/BhrTHMHEkKVZK/Jn+4hL3WzLBt5Zsc3BdIOGUTQroLdR3Xdf2\r\n4DzRuio7CYn3a5dryIcoyhtOnrqGMJD8R7I=\r\n=jUtT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b8b1201e4417cd114fe12adb0a1e728acb2ae8af","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220218_1645168633883_0.38467374169434665","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220219":{"name":"typescript","version":"4.7.0-dev.20220219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c3d993072e5169425cbf9813e93688256007931d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220219.tgz","fileCount":183,"integrity":"sha512-BDrc4KLLYzwb3p8P3c/PFEYg+P/Cr85GJy2gcLZHNH4lX2BmTRdIlYSx278NO2NeBER6Cwozrg0WBKT8PiT/8w==","signatures":[{"sig":"MEUCIAoRLpbUWyzvYiKIZrSvAoFiF53tNzLlUCz6VNXF1twnAiEAu/7m86YlXTHDCTFJ7Aw/WLqqU9ajswLZqAHU9HPf9js=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64837114,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiEJmUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqD2Q/+I3gyuC1sPtUsL+a6CsbIkFNhgaBm9jVDuUgXhDUa+Mv1Tl4d\r\nI/V3HJv2glWQlwI1ezdfrxG9xQcovsgnZ202f9P1lZ70YSUn1XJnmcjLpwS2\r\nBcI+SPFjsWI/sbg2eI6SvWSEJ44Pik12yavXgwQn2KON1fPDHWmApWy8ygWI\r\nn/OQQF0Ck0JvK1QB5kE4Lq3iCGagENfVu9GefOEhGd9yBqGaamPGZpK/WJIO\r\nLlE/OYoqzAVf6AdHigyfcy5BxWxCCANgL5dh38QsIIUW+LYX6wEJACFrm1Xd\r\n3sQ8CESVugvC0Gvti3qiE5CQ/uNMxlp/LxaRJedCl+tk3y8pZXF/8dn2+Fri\r\nJJVZgtSM8+fG0AK28gcD/0YujTpFk0gbIPmTnKhgx5QTuzyO5NXSvZ21YB4b\r\nbrn4Ghf51tVPXKqR+yWb8FE6XG6Delut4RAMtM/nJpe9ktx4UZq0Ak8wC0Nd\r\nQ8a7a7lQdP0zg6cw9PYhqCbtd7D98EbEEAtIN8xKahDA/xU7REUJ99SH66Sq\r\nQM6vVWHabZIL5dLMGuB40QMzWieIaRIw5XeG00s04kWdn1EI5VRgS6OOXK8a\r\nJiyd6Ef5+kRMADzBkQr8ieZ7FfYqJzcYz3TLBkSoEIckBD3R+gDC1Xom/5ym\r\nQxsgvbL//eGd0tJr7PuS3PGesf1iOO4RRYg=\r\n=poX+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5150682a58b8043ffa1c9049d92c0321609eb361","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220219_1645255060383_0.13419359377964568","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220220":{"name":"typescript","version":"4.7.0-dev.20220220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6e154e2a293665fee6774a04eba2a80102a91996","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220220.tgz","fileCount":183,"integrity":"sha512-qBlcGLjBUBXHE4VrjS9HjZnTYGvFcA4aKIGZ4cG96lx75EZigfrzLBrBx5eW93m/E9Ivq9NcWR+6aAtwbluISw==","signatures":[{"sig":"MEYCIQDueYPUZBODbVBXEW3ERtrVTMCPKiMsAf5udUMloVuHdAIhAJaI8TDLGW0g+We2gDlM+724rxvEkndApYgoDcRLMbbm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64836931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiEetWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHVBAAgG8lVS7k07Rz8ab86gk/TmuNHMvyCxhdOKxMz5WMhe/CYuAH\r\no05BWE1fF+lvV5dpA8o2yshttMNQJ45mLJLZSV4tOk3W/2OLDHwpgBCUSGaX\r\nW13gcfsmaJGtBZuWkdwTHr1jqf35D3uKG8sljOsZd95JS5jb9UkzooUCfacz\r\nBXFa/pV69cEAohFnHyXUTz3K0xpoPUo5ux5H/D/SupWvQbrQwqS5qXYOuwIM\r\nxRVZPuadO6MIt6rklyb4DKlz0DIMoGaOvirMOGj5E+u7qZv2kSksoXCnq6E9\r\nJ6jWqCIzfDGlb143Tzc9++ztHUUxCak2gogGCNU95oaM7qwd9b/WHXic2cuc\r\nu75540p75trwMRWgtTT58vxO4yQha+wUPFkOJcA5FJn1uClYlGSTYsT4S/PG\r\nQHSY2zNy4yUJS+/TKlM3vu2q7ZzRPVgXUvb6L4+W8kwQhA1QZmcyGQqUpvru\r\nFQFefXrVRfxy0z7Y2T7wQ8Y0U8GBlRNjSXdP3FlHEVKfpf6M9RrIawZ4enDX\r\nePhjXBV/0Zvgmfr+02+K95ktA6azuQfJJxL8EnxIFTVPUzBWWYHiuGkpOGSj\r\njDhpeXJUkcX3z5TlQWdWENUe4K0I1Of5C6ZjG8ypye6xmtkLQjSbX1ySMXgE\r\n6wueItEAK5pcV94JQNCA0px10OPzolysV20=\r\n=TbAx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"963658545249c4c5a31a31c97bacb401a952546b","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220220_1645341526317_0.5277509866557295","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220221":{"name":"typescript","version":"4.7.0-dev.20220221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c1b20e391f2d324d9b4f7f32d467949dd9f3954f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220221.tgz","fileCount":183,"integrity":"sha512-KG/K5SboPsuI/1HIJvqCdegnrVTp13uHrSuIVtLexe5FC3d1uasepzRP7tuglmoaPxE3qaoya3eeGa1/V9N4Dg==","signatures":[{"sig":"MEUCIQDhO10U5Jy0QUAs4caWXjGNkMqqEtX2EaUyTmKthdV60QIgabyw9nF+fmFwCJNWSxRyCQiMEJnppXpULCNlY3o+DT0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64836840,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiEzzvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTHBAAiF6JeFUbgNSS0n4CKFwPvmTy8gBizyExBtFio9uJBdonttli\r\nTK2l/+0BM0DBy0BqxurNIaoMHDgS9ylfYDmnDeIgV6RS8RtLS/zj9fKg3V3s\r\nIOObV8lyshlidTylN60275VM/6AWJXnHIrDuaKKiIgr2I58+QUyT/+nkeDHx\r\nSqNQ/c5VgKciYCPPFtN5GR0AuISY/FgGDPB80g6Q9Bnd3igOEnxXt/QGYpfw\r\n8r/84+1yZ97xGyQ3EgpJrnSp5VAFi5Dv8V+f6O9IqigsxfoQYzcYezrhpOZU\r\nb6FfcRVeADYBXhplqzv7mZ7YTdibWqwN95BJ/n0HlQtRVxNgr6/uFoIlQyuW\r\n+8ME0/8ajeoeOmajhlnOkqKJWAsvstlUdnq2ljdBENzxMyulMUMFMOHd9+Xk\r\nqfjdpHkevmkYl+QLoVfmG0Skwc1FGM2B4BaouQF3ln2AV9NgTEi24bpTmtRC\r\nkDZAcdFDiqTCmfDOiwYx9hSjX4++ZeFxal/m0xr9ONtSsowWmHXdd8plHz76\r\nywtpN8sQOWCy8BVCwoIPENV5j5KE96Mif3A92McPDvXlqPwqfrkOT+IN7CHe\r\nn1Ps3SwbqtPu+VK2BwHVN4dBhqGvqj5baJ0C/Qfo034c+/yYzZ83Ac5HaPxT\r\n0VRXQlGNQM7Jwq2Sc1R47fmD5o3GWu6j3Nw=\r\n=kXkn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a7548745d78858f94f46f643b2a6edcec12e3a91","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220221_1645427950862_0.639542034134875","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220222":{"name":"typescript","version":"4.7.0-dev.20220222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3edc3cf8940ee3d5d8ae1dc7a762b80e0c1702aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220222.tgz","fileCount":183,"integrity":"sha512-gm3f2mDGIHrWi8TKsgyl/FuwZWbsmXJ8FissebhjDsqjG37Wk5M1i6UN3iinUZkX3xVebZEWYR8y8sHKgaJO2Q==","signatures":[{"sig":"MEUCIAWOkCA4VIX5XHYalK05h2YkBeutH1gyZyh9glB2kl6ZAiEAkXLoWMDKBH3ZG0X0ASGJJ3T0XgLAcGRSSdGARxX9Duk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64836788,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFI1RACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp9JxAAk0LWFQL1kghbeaMtOhfJFX1ELBIDltOJWbaNUZeWNiSf0AGe\r\nDXfTdHABwjks0CxPbFAqvI43Za02HsmvaVERkjpsiY2ZIx7W0fvozKrOPnY6\r\nPS0Nv3x7Vn6EQ62VVBzbaDyG2acFNnX7mAsJWxL8UyDxg/fYZ9vw3QKbq8V9\r\noO9cN6O2rrFz+Jbw/AHfyDjObsde5hwdvzHBpXJSHhPkfnFMOfDl+q5tmnd2\r\nwaC/IpRoO/StAP6Ynsj+bgDB8taMLoVkJnHPgHqnoppbwb9e8w9iFmXPV6HE\r\nmbzu5lYV6HdGwSKvPGgyu4hhFTnhV/Pc5mNVffkhtPDowZgTbxgbnH2YE/87\r\nRS322nKeIKGYkPr1MAK3KCS+vU3+H7VFQLU1ZmU6CUoM8pbvdOZO7VxPytv9\r\nKva5lBCl79jOruwlR32ap7eWibQzPCxuWvMe0Z3dYH+JPbkkx3Jgdmb9toaF\r\nn2cO/BZ1Iad9pgQUIJW9GQy5dty7PkG/iqv/7iDPZLdmK4Bywjx0dnkiKfVW\r\ny230+amIwt0gQ4ig57Qjpr8QbnDlTZPiBBHVNVO0iY8rohD3k7fZTfWd23Ho\r\nPL2F9N08nZya7wkP6spwWbhzRkQjOn6ssJZ+fzJ0M9ZiP73kVrK+90wIuST8\r\n76YIi+MTyhnxtDnqu5HGz4luhXvD8ddilJM=\r\n=idwH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2d85e1e8fe07280d589fa8879c5cb814bcb55275","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220222_1645514064836_0.3523835053318862","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220223":{"name":"typescript","version":"4.7.0-dev.20220223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6b40e0b20433dee02453a3f7198fd08e4142aa76","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220223.tgz","fileCount":183,"integrity":"sha512-KVrNtXf8TXH5UTOLBo+z95Z5f4J6j6Sv3geGS2td2SRMmlpiWx0AtoeBJEAk5QcnzHkojwfSZnh7xx0gDYu8lg==","signatures":[{"sig":"MEQCIEInLbCud6zKZYk7D1ro7dcHxRIH3JRhMFd0do+D9KC9AiB6ca5B5sNzNImnFlsPbd+qXrU2SsPDxXKnYqUIIbwJFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64840026,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFeBDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqryxAAgIIcNASL9+2HsN12w/Xho1p1X46sOfjcQtbJQWR3Ial8cv7U\r\nOCx+Fp0OBD8RZ8R4SJz7scNdc21cCYITumrKanoTDlul+Ts/7rerTzGSQ+0S\r\nHqhkk2+2HOjahUUt6cp0lxjm9NhhtJSoSQxTRUPuumvwMmhAkL1R6xLe8o05\r\nGTBXyAYJR7V4eOy3pgSmJPzzbQniXkHTwSNTq5Wr+Nd6olyW2FmjysMOMdLx\r\nBSW5TTeKqgtEWnt2wqSdGgQ+Nw1qhX7S2x3NVhlQJwp5wqEswidLZYtpnBiT\r\n7oinNQvzJxBt/ocIlYbH7Ca0x+/Z7CxS4F/zkxB1cRiaqquUB9xgHIneVYsP\r\nvia+jXxxwcT8fKoz1ITIfqTjh/LVfMyrA59eyPyl4bVnTcz9cKVxMNY/Rorr\r\nCzdCkI9rcUQ1mJJ70hsaOPg8ZsuWQnIKpT2SQP40tZBw/4PYg9iDr1sLeNU8\r\nqBmskkNJmaNcPFjCg0mt8pG9RCkNJDcnDj29V7fJNlo4lyIkvuoIFYzx3t8X\r\n2Wjm0e2ApS8RVi8AA+BDv6LKxTcpO9tzhh4xHohqK9junR08IA+TIaYmKcJM\r\nYk9Y8zUqo7Y3kNyqFQ3SU2aa2O+o7ItsdFeXUEVuM3nbNve9ujftHmL66e6/\r\nGpAgflEHU8pj/mb1tmI4ug+en0EGSaVQM2A=\r\n=VIg+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"78818e03908a6cca779fec1355744ed60bda2c63","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220223_1645600834810_0.3232383080044543","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220224":{"name":"typescript","version":"4.7.0-dev.20220224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00d02c94ca5e61187678fdda063a7d4b3594f333","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220224.tgz","fileCount":183,"integrity":"sha512-KWBI9iqVdm8g95Q/vVISLy2jy2tyyY9qJrV/cWSjfPsZtJ0V/jziAs7b/E4Twi0V/b73VG6mFXGnYfloQFrYNw==","signatures":[{"sig":"MEYCIQDyWO9+IZmfmiJFb3vw+7X4d7C/VHOH45WhW+DjF/+tagIhAPu5ZozW0OnjMO9kVTGfBoppsHnkf3WFe4sSdoX//D4y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64846352,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiFzExACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrcXg//U9J66AILQWzutXCBt3FsfyH9WkkATDEIbyobd7Mw+rOyITy7\r\nqeLiBOc0kIspRpZK8WkGpLvJ997wLAZD7sro6oR0SmGDU8F/8HJYUx1GlBMS\r\n4l910dDdwt+MxHPf0yonVa/ujjn0yHIXoairEvdrxHt5xlcPemhaR6RYe6+y\r\nYOhUfCOSNTmaCfI1RI9GJJQxWNXI0ZgOM8yKeb53DcyKY4JQDSVamN6V2vc8\r\ntgYqSSYwKNE+GdwKdqPqX035+84lsx+xpFdil5vajIAf39lYWjExdmjo2o2P\r\n/yjPWG+AceTYuFrVs2MiFD50GOQVGqIqrBRfiHdF90sycK1NFm8mir1KlnAT\r\nZWRVTPZuYSu99ZJP+wL58txefP7QE17oESKK9BMnji4oF5BgL8YizJcYOnnJ\r\nKJeJSGGBp22hr0htHn0mftBeoLENcVoXwL+xLy9yvw14GoPOQsJLZgmAx/KG\r\nCwkhEtc76y4QFruR8lbwu9ImeKDn1WhkkJ7WR6gBCzcGuANW1dOsNIxBI/BM\r\noqVAHN902PBvfuVpfP+TJQqJ1VEPX30fMPBjff270bLoeyOeHtlSF239zA8/\r\n/pWm8Ly7OxeJtdi0WCBMy+W9XymJB/YpG5igVxBFqdrbEKNEWvcatPX++QWI\r\ngufjx7lkZlg85/6JtlHSU0wiiLlqhHrnqqc=\r\n=51Ho\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"29c7ae23cadd3ef866ebddc3923423eec27fc531","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220224_1645687089225_0.7100546754270884","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220225":{"name":"typescript","version":"4.7.0-dev.20220225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2faf0f391ad2f3808b2b4de11e8bcf8a27b8f434","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220225.tgz","fileCount":183,"integrity":"sha512-mA6+ZQI2x0EMUvest1tst50eJP2OROay4Qm1VZdtKm1WLpQxX8BnuFdazwd6rufW6Pl37hjl6n36uC0gIIl/zg==","signatures":[{"sig":"MEQCICfJb2kSqAiioqUr9F47OJwD3pdo+LEGTExMpseOP+1aAiAUrr45vXvsH1knSEA7MbRaWnEqZDmoStHkwlM3zL4VHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64846352,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGINuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmor5xAAhq3554KBunXIYOFGMZOTlqVMPeOcgRBh8zRtzuJRvpWolzoi\r\n6ZPo7DBbWNphe63QMV9A7DupvVVAs5KTosudzhE3UboXjXS/Gcs3oh5Talyu\r\nxBHxR4oLJGtSJm6lL95O5XKaBpo1CXjZQctjn0Bgjs6hZwR9qba6GlBYSgga\r\nPsM0zbA8Q6c7uIHZvAlwdSChMT1pcF+8XiPec6FDfqhB6HFNL4Nyt1urJ2c2\r\nIKh+X84sK4ja3zIKw9jWsjO65/8vJ4q/cn+FwP3qeY0IUyZbyq1ZbMUYJs+6\r\nzl3ES5byyK4eLabjEdewo8e7YP79dPPku3DzCbzxnOZK946YEhSX3MIiTEDn\r\niSnl7yhSSsHEhso46Wr2jb/ptRhnhvySjo5KE4/WpCTH3sVNbzouqtd6s9Cc\r\nfp2AoK0JkT7JBXvBGUxeiTSdOUM0O4oD4D3V8qu6UzHm7DPNtPhgxqb9BteV\r\n6mrZOWWMCq19VHIrMXobIRH/A/B6bDNHPl1UQN4M8gdE3aS6McKenEb6Nfv0\r\nmlRLt0zUEONZmdPM9DYinYmhdYABPKMcAzKZj5mjzx9th+lcHEM6G130iV7Q\r\nTJpHMczK3uqzeocyP3ZnTrv3QOoYLEqPv3ygiCum2AfgVgOk5Llfi6yDjal/\r\nvAwi7aYrE2KYDQCHSnfXDgVTGfHyg3jd5Ps=\r\n=LpVa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"733eff2b104540648dfe0c661f08b019165bdd09","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220225_1645773677784_0.1714338691277868","host":"s3://npm-registry-packages"}},"4.6.2-insiders.20220225":{"name":"typescript","version":"4.6.2-insiders.20220225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.6.2-insiders.20220225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e0469f0814bd04b6e276aeabcc481057fb2433a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.2-insiders.20220225.tgz","fileCount":183,"integrity":"sha512-ugJR+CenSK8o6vFvguSinjCICseeJ/wlo/VqEFyB8mHWrgt01VRIA5Y9GSwUOQ4WuohBBAmx739cWCdBiztR8w==","signatures":[{"sig":"MEQCIGQbO+U4U/i8M1U4czJ++1VdznXsT+VdR5nbkr+Wq0imAiB2snsADzimjLgU2Nf3CdFlxWgkko8sUZNoVQwAFXVNJA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64712001,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGWAaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqVbhAAmv/9ihMDsGWDH8bvD1lCyWbGKaHXp1ukyMxt6kfRJ1WJ515a\r\nIHgO5bJE1zpoGXGzncIa4M90evp4JkBrFeglWMeq7dsxV2B/jQqf5bhzEdBU\r\npBwYsQMsqjeiaBG3+us5OLwkp+jSXmtw7gKbEm9Z/KJ/LgphL4UFrnsoir3t\r\nEUCVzOSHTHVLZVzCHfXZjlhIoS8glVdbxy2JcTul6rwiZlTL/hNl4StxrPy2\r\n5MJxRSi4goV/RlnynomdDFWueTiQRFH1wXH4dusHXSN/sdqgUezGp76F/zVE\r\nLHLpDM4xrDRIozuLlxh4qmr+lmqbKEPQzQQWr19lF5YCbLHvLDI7O74Zvy2B\r\nFljiysYPxcwJOAlkUzHy38icNxVA93yaeR11cJOr9TWlL6C8vQo9tu1DEJu6\r\nhAd4smZZy8bHbFVhloU39V/n8Xxcku7NiWZaUXMYP4jwDFvLpR6nY4Qzlw4z\r\nO10hUYEa7ThulTlCG7Yb+aNPysjF94EHkic8zt9HcTAxlDLD5DgK5jvv+uRR\r\nG0+ohWU474/UQAF3wZG9pvbaJsnDOtRnNu0IxHpr1dtQwdVjHxj8QQa9ImTB\r\nsB1h6MMh4wpueGlignkxGA31PzEBsp2Mla29QwYRCj/MQpxMW/92psyFmCNF\r\npS9AO6042CQSdeGmR5TSFOhrCjR/S+R7Sz8=\r\n=z1XS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-ugJR+CenSK8o6vFvguSinjCICseeJ/wlo/VqEFyB8mHWrgt01VRIA5Y9GSwUOQ4WuohBBAmx739cWCdBiztR8w==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.14.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.2-insiders.20220225_1645830170319_0.8669214870374982","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220226":{"name":"typescript","version":"4.7.0-dev.20220226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d589c35ef20fc182b98174bf4091b95bd6501f4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220226.tgz","fileCount":183,"integrity":"sha512-i/SvqeGzDmleaJkH6CQ+Aa/zcroUnmQTpGc1oe2/iwbbbSZQcBY+5Ed2dAr8Hg+3ctQ7ri407sKtQeWkKnui3A==","signatures":[{"sig":"MEYCIQCkyIKZw0qqkqEWDE98sSv7KmJeFxszPLdaaaPVjDtNTwIhAJzHdGHf94GbxELmhYORCJKDtUKtlKV5L7X57VNqY8S4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64865282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGdNnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvFQ//VV2BdeNM67kT9Y+7mi8T3bHwwaDTRCZm4n9FRhA5GJ7jtPhf\r\n63w6e+bDUNSoHJRYFTV6bhJTajXqmx1CXNG3WxVdzHKhVkSHLEPSFmAxNysj\r\nMk6+9kN4vItHm2ybaplSwB7Qhes1AXZZlnVgnpExQTcnnaCJIy/0+uqIQYgD\r\ngfIgqSVC41VNGQfm7EJVWHDJC0TDRRCzr9dUqE5N7cFbfjZhHN23SZCYOghR\r\nyAIst0DA+EIi3JGkd+k/GWRKX2yzs0DVlux9PrFlgpf9zRPMz9aZKiF0vFcr\r\n9S+cXnwea98ZXExqGRuztsA2XkEsNa3gix0uVQnhisNbrCjLgCShzquFiCH+\r\nYEnIqjsHyYsPjqrHmTOjDqxXmsWL+iMuQPfcYDpiV88eJmQ278aj4eJIF/IZ\r\nbHV42T5hA47XLObE/pAR5D5EovALBVJL+ozECGTpOSfBAPTRypFOiywFL00F\r\nN2Gln6CRc4EqflDAI0+iR80OCEerWFuj2naIyPejvSrh6b0HwgXj1mCblHRj\r\nDQQsuelh/dNeZJvbmnwLdFByOQF2iHdhe0xJJ40JEmJJ6TOh2VB+XeF5OJDD\r\nOHd5SxDlGeLEeHFOZlZePwFP1PLFiUVmlostrP6esexBuJjH9649txjr0wH0\r\nBSjvrG41I06vJpAZfpqXlUSBfLGTCkgYHDY=\r\n=1oGH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0043abe982aae0d35f8df59f9715be6ada758ff7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220226_1645859686741_0.8506095303209251","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220227":{"name":"typescript","version":"4.7.0-dev.20220227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c7d967edf68586229cf8a188d3e1082caf36a6de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220227.tgz","fileCount":183,"integrity":"sha512-OlB/N880fypOgzZd2QiNhOPXeCLBeBFPTKpIDmQu2mHyGA8cLlsNuZ7tOfW8tDu6I0d4qUl2SlVVoP3vYOSSlg==","signatures":[{"sig":"MEUCIQD2eb6g33NxktQ1lZUj5mk6lNOg8QQiwRrAEGbpUdBz4gIgFRvV+AQsGSs497b+G2DlNTZqZHsDX8mhuOaDoKTfT4U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64865282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiGyUGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqiyw/+IgXK6TxS3P5ayvtD2fvf+AgFSahbC26vKVtxzmTcELocqMIF\r\nOGpTOLOc+9G4yUO7xAM+S223wDDf9krZy1LGEiBW/ReffHXccn+64ychO9XJ\r\nMl+v3PjCxIn+fmvg+2i9WBEqrIA8SZmOEyVlB1WIMEHfTlwpXqfQggBJI5zi\r\n757VwZ6ReXdJKQz9CUOsJKdzSojJ/wYqP0K8vbzhj+tVs8SNH1XuseAl0Hsi\r\nLO14atmMND5TArkAEGkZpQmxtwp2cTCeCfOeGUWAB5xHznssuilhGiVfn12Y\r\nVQNXVPxNYDqH361xS8+utkDzINJLWy2gGHOgK2UiZIO1StQPFoePmrTIQW8m\r\nnpXiuJQ8xH3UFrV03ywWY3GSundTdSAlifW/6K1+VCGcz3v8gGnonBIy7Ukn\r\nhzIM6IDiZIAVVDMkWTXYfwdHF4VVhQbUVaLkf4GRLO3oKQCpeYfhNEkgWLMS\r\nyTjgJn+CudFcf9TUsJZJlApQPjsQFdFSdqOiyVgvGYf/52pRB3adCBzONLBM\r\nVftbZZl8ZmIMGJWdvMpn7t+SfswNxo6ZHq9K7wtQvAnuxqiAaeGgtluBUtft\r\ne+O9bXtsfI3NlfFUA/UhPMVMXvYYTIrfG5DshTelB2Km6ohLVUA9ggTdMnJI\r\nXtnN4TmLMgIK0x10v4pey1TJmOQlpnuftm8=\r\n=Vjpu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0043abe982aae0d35f8df59f9715be6ada758ff7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220227_1645946117702_0.3965521792896314","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220228":{"name":"typescript","version":"4.7.0-dev.20220228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7eaf05c59bc0725f6206e110af48073179299f2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220228.tgz","fileCount":183,"integrity":"sha512-cowoK2SDIyt6GlnSLgq3X5VZ/uhAcUrFIzftri4A2w+U1qGbF7BKxXVzC3zEqZ5hjD2egNCgknG2eC03uaFRew==","signatures":[{"sig":"MEUCIQDbRtzDVg+rn10+rgj987zYogfxwoUb/1Lw+MpES6pAQAIgSnkQJcaUnILJTKgW14mBjQgBXdzbfPHf3ikXqjVS57k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64865282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHHaoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqwVg/7BeumBKVhJ5dtqFV2jG02VCVEK5xFIw7cGK9kZ3p0tFiyx6nu\r\nl+xyj7uuuC0ZTyXJkHI05q2CKyqPKZxsLECcBDPzZxYFMR7bO7kmZP9DxjmX\r\nriPoBtvyW/3lOphjnoIEsQvREvzBb+17aq0cFhOIRx6omaDzRfSeyBP1QkwY\r\nAvTtlBrvBfsQgX5Jj8aXTw6Aw7WJQdr4xZ56De8QcR+FKT4G7/OR3xPMCikW\r\n43WBw6f0A3PNqntQS71nJH14sJtIuX3bre5GDK6TJ4WPPgADioe2HZiGEPks\r\nrxt57eoaA0Bng7uuoys9VG1k987b1E0yo923BxhrHKRkKnmGc3Mm8oGyOiCy\r\nE7m4CRh88lzsUgSwKK6lOuLx1VvK8FjhpofBMQkSrfI2BI1e3DZ79tdQedKG\r\nhGadqy3Ui5c7hT00QlmOs+66aUL1SymZI0M8YrfeXwlz/0acjZgwH8tp3MFM\r\n+4YFQf23QBWLuQTB93x7Fk/yQlMQxvoUblIvpe3x9H5opJekG/tmkT26q+Vw\r\nCG0sEJwkC182LXQOS7PjfJ4ATJDtP6XMrqix7j16dEiMCU4UotusgM8mXA98\r\nuqsZquYE1e+z/1HGeaYd9q1/231EryaPp7WZR1Q/9/esNXi1wN9coVLv0Ual\r\nTykDPfl1JouEJm8A++SpuzLGqnNS5wdFarM=\r\n=EoZ3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0043abe982aae0d35f8df59f9715be6ada758ff7","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220228_1646032552460_0.9379693793503481","host":"s3://npm-registry-packages"}},"4.6.2":{"name":"typescript","version":"4.6.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.6.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fe12d2727b708f4eef40f51598b3398baa9611d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.2.tgz","fileCount":183,"integrity":"sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==","signatures":[{"sig":"MEUCIQDwRNMGiAO3XghWj3EQVJ5si8qyCt3obD3vajC7fqAfdAIgZ5T2zBIq/BV6L2EYdX6FuFQxOuVpwpzvgJDqFS0kcLc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64711972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHV/pACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoa0xAAm2nQMfeF+kvrZ1vnBa1tuW+LOBnkWfm58i/4Tyuwe1Y2PXbS\r\nZYgFOEWauPw8vZr1O+TA9Mud0XFYwxloxO6iOuQ/ZK8BjzKVPx6yu1+1sy47\r\nU8Y2X+/hB3ggif63fY6uz4L0bonNWpd0/W6a5/uPFyzx5r84EOVJ98uMWkBv\r\nzTHas+Ub5ThioeJE0M42/oHmRuWR7cx2p3ss7RrqcNoY5H/1HMJVFeRMXltS\r\njf9c/EuinXz0x/34WB6eS0d9gK20haMeJ0Ir5DX40br+Z9kUum6psoZDqWht\r\nCmLzc8iGTCIyUIJiinJAk8toHaMgrDzZFGCIaaiesdOLaN4/W/re04XrCNa4\r\nQ7cBV/TvdQ70C9s0RJpQLJ2AQspQxwD0iVJH9KjRB8S5B5AGTFh2QN7bNWJk\r\nAWWAMN8CmglIC7p7snzMzlJFT6ynxtO0PkFbm16aTyfjT8Vekem/bNF490bG\r\nJh3Qmf9mSVuIrmM47GNucpHPtdiMl2TuF0gXbogZ8EhDzsmoOE0aAwUvq8/5\r\ndF+AwF3HUMbcPZK8/NgcGSqly9ttDulqixihmE9dlqkhvwERaa/RR9YcH+l9\r\nJhzobKzVPW/Y1DQ1XUpsfna1xGSOgpUE2hB7PjFGT+RoLc+mZM+qtj8ZTo+z\r\n7RRNw3aykwE5GgcKnEVK6hDtpX55XUYKO8Y=\r\n=MPz/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-HM/hFigTBHZhLXshn9sN37H085+hQGeJHJ/X7LpBWLID/fbc2acUMfU+lGD98X81sKP+pFa9f0DZmCwB9GnbAg==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.14.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.2_1646092265084_0.49065052718718416","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220301":{"name":"typescript","version":"4.7.0-dev.20220301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220301","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0338f788bdda33e2eed37dd9e45f01bfecb5822b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220301.tgz","fileCount":185,"integrity":"sha512-5li8nRSiJvEFMjl/wsBpvVBExdqWfEWwWuqBV1nXOPHjvgje1AktJXy1pswgNyX6hdozs9oWMOGWQ9L0JNNKJg==","signatures":[{"sig":"MEYCIQDWuaTB0OSbV7roNisu+Lhv4gZXUr5VSB2oWc6vWXCypgIhAJpi19mS8h55VyxG+w3dbxzTcMRWX6TNr+CaLvrHgYXp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64867891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHcfFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6bRAAjS6U/MFXZw+HCRA+ijPEOe0Q7s+H+UKcIqh/Q20QWZPKb9Vv\r\nFtThWv33VFDJzBuUQiyF6/jSlJU16FXi3vMh0rPnuqpcxbzowwE0UD7+4Rdk\r\n6kT87lYhMTL1Pw05RXpTES8Fmpp2o4De18WNYsem6utxLC8R1K7PGbtrSZba\r\n7GGLT7ryyRDcyobk2YWhXrWb4QD9F8GaZKIry1oQNS2RCd8L++IqVdZdMAFl\r\nY90Dg5a1Gn05ufd8nMKh9YHil3BEe2sgncbeMjIaw1JMfDo5Chdm0gGQqRQ7\r\nVQY4VwU5VMxhVIz40GOc8z36feNEdDXT+HUCmFwwly3xZ/Ku9XGmSWYez9ik\r\nmB2HrS6+lkV9gIzILGqE219fSg2A+Ci9caLo0qKloSn4dgRxdSsFYPyn06YA\r\nUOrRzefP9PFcoLuA99wP9SBWbvKqddGDwaK/zTFia7+K77E3si0tRbOc6ld2\r\nAUQpYqTTMpce0+1zNm9waUKMN3+Zy4l7ur/clOgYO0Cmzp+0b5PJvA+AzMUo\r\n8lm2HFKm+8zP5Vzqr3FaYCgUE6WPTwOq3o0z2OlFpGaWxG+or0yF46lM729N\r\njvPT2jLps5XV7nrPrW6EAK3lNOSDQiY4QMzf7x5Hk7DVS0ZH+jL4UaGkjqMr\r\nhDc3Gw/qQ2sTGHB5+bORNfvljKQAiq3oFZs=\r\n=kBbM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e4fe50cca477a3e46f9b629a6c5be0b0ed8b010f","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220301_1646118853209_0.6567636548425515","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220302":{"name":"typescript","version":"4.7.0-dev.20220302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220302","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eef9b5a4b50a5c392a89f0e38b25f7da4f146030","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220302.tgz","fileCount":185,"integrity":"sha512-v08QY17yLZ7ReaDeB/CXvUF/+Fu6xMFUdYMy3TcYIHP/yqTGTnQvdtlYAOQozZ1RTMOMv2L5TgZCWavkJaMUpg==","signatures":[{"sig":"MEQCIBjFW/73HC+yFOlFxN/LEacbs4fan2fvp8lFsAiSlCdjAiBrvKj067E3fL1nSXnnwz23V4rKGtI4vtyeOoSOEBbIEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64868138,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHxm8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpqVw/9Ee86JK+1KeRAhwhgkaeYCtVcwCFBhCpG1h+KfrTzxIFkbfJ8\r\n/exnXt/yi6sD1Z81n9I0Sp7TeVa8aX1zcXpxMZesd5wGyAXOnN/ZyLEs4loT\r\n5XgRK3q7XxjXaLOrFulPSWGcAqpbtIyV09bvKdIrcsBm/ZwtQkZPDugpklCO\r\nlPUR7WYybxNrCE7sXJH/r6zgU0/SHQMvOuk1ygWjKUpDxzdTWqtXS4n4s85I\r\nJAGJTu2+1ySlvNOtLL8YFPUClliGZPTYOZ2Hcrnzm16cQWMiMTOZ/lAaA2dw\r\nN+2wMX/qv/us/ME2cUeoiDIP9b8ohhsBklVjdCxlyRcWwKW3goGCxmQwKyDk\r\nLpB8hASp2/vJPYidmu7wVuorv28aXtIaHr0FPTL4tI7x6X+Njdb6McyK23gI\r\n6yMq5FN1uApxlYMINk+wuGmDiRiDAEIQxj3Xj1CZYcKYc8qEiNrXaDbL0KeZ\r\nZuLhNXFGvqexYUNq+bhHoUX0n3+xIZFqCNnaREKPb6zaO98axRoQZ8myD0H7\r\nQSfOZkHGas/qXD+/8mspdSOCtpylxWpkqzWT7o+VKpjcrl9eRdpJ0IPtYZQG\r\nSOF2jAB6KvHUcaNbzBILmdAasv3xVuNxorv6vJG5qVgmd37GA2E/vL89Qa88\r\nPx5FZQsi8zJAnrZUur9Uz7Pr58rqDEgsR7M=\r\n=B01J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ed45f058df1b0646fbd899b518a15f9d4cc71e27","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220302_1646205370948_0.05517909698414791","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220303":{"name":"typescript","version":"4.7.0-dev.20220303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220303","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"845889467c51fa27e746100190f750444cfd22ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220303.tgz","fileCount":185,"integrity":"sha512-Lhmh5V02dsae865qHgdZyygJQp7MuErTHJF63NB/by1vXBtuLEUnHoPWbZOGa5lemklMP+VGSjVH6jJyGjabLQ==","signatures":[{"sig":"MEUCIQD8oOKFFzgkjNP5+glSjb+eMJvAi6q5AbdV1mac1EmTrgIgPdy3txXjwXbqO9nxtOqEKQE0ZOvioqVUjE5/y58TV9A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64970006,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIGu3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrNZA//QmTgWL/endH6ugPXY16PDtCMOCCnuwAsPssCg/wpWRkB6u35\r\nwvNHcFM1zfryoRMNdRTeEk73yAQ7ys5/q7nu/ZxtIS+gnG0r8oQ/sTO64gFn\r\ngwHyDfsQ7Jh1huuT1EChWRyD32rlefJ58QHOWrNp65hdIkAGmb0U6txQ4UIJ\r\nQj7jKno/mPZW6RwZzPO73ZKl/B62bYGdKCOVtZA4PYILai69kZYyCST6CQp3\r\ni/iMBvK8/+MTmvvzqUhZ1BQz+EEqx0FZEqNMI8r5K+5H/mORHkgMcLxEpGwJ\r\nrbkPW0D/JgZgcrNJ+n6tErR1PjuG0JPqV6D7pZ9QtYiVny1rVIM9xUph7HL1\r\neQ5KuYisfVogH9BK6poruIGJwWMLyOxqp7Z7J8k6AnG1t4cPdUdCTM5OxX+B\r\n/CU2Rkq4Nwo/XDtPdAh4OD12sD0cd2uBaCYoR7fpC4G+11v4AWvM96mFmy6l\r\nZeHVhCQIaKjL9o8tbI3COawo3T4T/Gq8gQCujiiOgXiTc/LZ33YJJiuXMm6B\r\n5NSODEXQeJTEtjWzmj0VNMTxxCXdu95IBzwy/Df6mL1NdlxDu+2fFXWpFJ/z\r\nY40Kc3ag1tM2ZQxhz1h6zCIKE0ac5PjT5K0gM6ZfR5EM+hvhEb0Gw31HMqta\r\n2bRosW5Wwk2+AZcePjsDyspz6uA/qaojbuQ=\r\n=X5lj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f82d0cb3299c04093e3835bc7e29f5b40475f586","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220303_1646291895399_0.9048375840618275","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220304":{"name":"typescript","version":"4.7.0-dev.20220304","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220304","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7aa26f887009a53eed69f684b69523cfb0a115b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220304.tgz","fileCount":185,"integrity":"sha512-Vrc6ksLI24Bhte4nhumUJ4fRIX3WB4aBGSSP0djrPY25+j+KaEfS6xZ8/t0NpRxkGtr8Nv1Q63dMHBtA4qmISg==","signatures":[{"sig":"MEUCIQDWbWqxNILCeD+c657coIvvOkTLtMssLblaC1ZPLvA/VwIgekM5142v+M/Sy9nk/YXiCyXz2maFump7hq/2e/ALSdc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64971131,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIb3mACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrnyQ/7BHEaU3dqc0jjEOxiKaBfjD+o/LIPfQ2jqLvqEj5fBZgG6Q2F\r\nfSnMirogd6tTl8rZIjqVW9PE8QsY4CboaQXvG/TqEUcalVSJ3cxmaJWo1VCq\r\n+lj7YxBmzO7l00rK0fo49Co1LyCe42hpyM5RoUkJsljvBOAvf0zSbV+OijUM\r\nlEaiYntS8eddPd1ezFq0kvWErzNWeqAxpoNS1siiLJMRYShhrG9W+6xiDiK0\r\nXsmJB2a/pdxMdjbyHJ/KHuSBCXMMi3G5YA0QzmxppwX2DtSBj48NH9RmDT2B\r\nAGyJitSsoL8Z6SqDigQWaL1KsjBH6tCEq303M+81cMgvSmFj481HwjgW7i3G\r\nug1CEOx5a7/W7umJk3qddVb5KOTkNv9oaskroxpYhU5Z5lPwVdeQLSLe48I8\r\n5J1bMcr4Zk60FZbqGMxxhxJErA8lwXD1U0NidMK6Y8r7v8WNhihSRjrQ9dIp\r\noqQzNnKxkGzeU5jBg1++lUTYn+DhU52MkTaiBY59z9cYNc6/viyquK4T0Lka\r\nkJc1fv7iGiDfXKkQWuHfoBS4FB6pD4gRe6mnQdrEb/Gx9Oe7AZWgik0mKekt\r\nstDwyCrHSFAof5lvM7JPUdzHgFOsftx+5gZ9IfTFOJQkjH5Nj0ltjlVsSKvF\r\nD2zHN5W9QG/gkGdxEBZRWVXBJD394x4P6FM=\r\n=r8uF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ddad61e1b00275efa0719a640f77934562e00ec1","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220304_1646378469665_0.4683115170886767","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220305":{"name":"typescript","version":"4.7.0-dev.20220305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220305","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"696500b7c1fd3000b5cb706d21daec792a5eb6d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220305.tgz","fileCount":185,"integrity":"sha512-x5dGcooqJZqeSGp3QDgR2zb6VZj9Ozva5qYL9IOq3ALmbSAl1Bghjbqs9Pzsdavjnvl4d8RDjMXJ9I+metQYug==","signatures":[{"sig":"MEUCIC08dTmpYMKZi6RoFc/RAnZI0XZeJjLJFwP3w2cs/nucAiEAnhjj/oUJA1pPGP1hCg2H+Zqq1pDb4RrZFfvvABue5N0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65006674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIw4qACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqoXw//YsRTzjt4MVrzG7Gp3sCbYgvknqXq60HIBEFxKP/K3i9+YXQO\r\n0Ct3ghVeOUQTRZf7+M7/mmmLsN5Li+6+bcyuEK6Q+M106TxWGg7U1v7u9iJw\r\nJOwVR9xX1rvtQaat37PcpeKSy5MmWjHx93AdeNley9DKW3XxKBvi37AVtxvM\r\n1Trl3pxne+9qz4XkKlbOM/YddLmTbs/RoFItGj7N5NpB03nHno3VBGN2tZyS\r\nc6MWvTO4kjf5u/eqzr5ivnvj0AkcvglVu3UGS92a73on4HMsvEV0pPunM16o\r\nTd9oFsd3qP2jkQiZEAQZGeCT8WLiCK9Bo6w2q8GmlvnXpa6FxLab1vxMfH+P\r\nq3xfPyKyHcDos9VZ1maAkGtSo5+ElF3KHVgYko22WCzq/jKrvtFmzyW+5j4E\r\n7ZG90H4bWSl6Snp2tNaSnchtWpsOv2ZfsJpzMbiTjTuwokMhRGrRUCeyoRH5\r\nnI5FJeIqeTyPM/R33g0GuOQLjLZTLyAVIlBswcYwMgfu61QL+BEOSihdL/8N\r\nBj9CrxVvzGxrpyJtp0usM3ZbaYJV5FxZEettR3cyzffo5usSw3CCpg/X6WBU\r\nLtjEH/Npk4fFW6x0VMqtZRF0RQ4Zrq/tZ9hsLrOpaIW6IH5ETyfu8ieVsUVD\r\nrdsL6SDitrGWwUXceLXXzlAgqenaJTv5PZQ=\r\n=4RGx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5f6ebf9d787c57e93b40e19e8f470db27c1878ae","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220305_1646464554179_0.4698946004452389","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220306":{"name":"typescript","version":"4.7.0-dev.20220306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220306","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4a9e7e12e455d8fb926dd65019abb6997c76d43e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220306.tgz","fileCount":185,"integrity":"sha512-NYgK7dHQjuupomp19kGxgU3Xv/12+DT8uhUoI0Pq0FZoSRLHogjiEgqBSyqgRbxqPUXkqtxzDq9yc2NbCw/dow==","signatures":[{"sig":"MEUCIQCF1E7DkMMHvPckW8c2GeYELwoiStxd17jvVouSN0agaQIgId7kSTKyTceTfo4/ftnl2xpbDXePS+STjco4eijWV2E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65009429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJF+bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYrw//b8ooinp2b7ZLcPBrl745OwM0saF01txE/ArywNPj7J8UtIdk\r\nMsfNjgF+dUgkNG1E3x0f89hkusAqAmxuikSCVJlznYEN9BFCSDuQs9jPzjD+\r\nWDDPkd5vAdydbiTZQaespkQZmqIN9prj5bv08PDQkd76elOHj4bFgbusix8M\r\nZYzeq2TMupfyZeCoqzncJhrnDHF7VjjpQUxqRw3UecVgdeK4cGqEVChRexZp\r\n317Q58py1SUIRFQvkE5xipPbqIm9PoZKCvjueuS27rrttzvrdMQ0THGjmuLA\r\n1sGLgQDtOy+2IyMrfwQOaiLi4P4N9UJPoHvKFqIdBEZ/LR3ZVzAoAP2fddTn\r\nJEZYJR7F2Pt6jEPjzrmem9qxKIvPcGzXUeLF9nFfICDFKLXD9o9zRQVyxwXw\r\n0FUdie34+DiVqGUiXeCqWF4zOq5dze4cm8b0trax0qWcMOUlvIhz/rFUVxwy\r\nBnK4U+5t1pEjkrHlLVWUDQ7KwKYZiePNlH5WY0l70ExrFuPaJQ73qNjYmbin\r\nasl8wXYqFD367mFMQPUX8Rft5mcpsqtm772m0l1/SdX4U1fUntm6+X0CAqUX\r\n6PBB8oUACSka/K1sxUrH4Ze6hYGtPKZ5pEwo1Vd0dj/BZXx7TC/ch4GPYGCy\r\nyez9McLXDaciZvxwR3vntUryQjr2czvWb0o=\r\n=L1GL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"20c93d3b1da44d8ee740b466a5cde7894e8b3260","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220306_1646550939476_0.5029399212106795","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220307":{"name":"typescript","version":"4.7.0-dev.20220307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220307","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"752c68b1be4598473f269ae27b90952f79733d48","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220307.tgz","fileCount":185,"integrity":"sha512-exi10aOM9QQvm564B0HrpQmEO7CXqvBMzQtufGuSA7XN9ZqmYOD4B8Q8FwU4+Yk+O9zsdkee03s5xpWwWH03yw==","signatures":[{"sig":"MEUCIQCZWFiQ1/hAkXo4QP1TIYotXoY6xN8jgGL0yJKExcPS1AIgQinQELlafez/hUxN3X2pjw/stpmSYZgy7dOuCY+UQbE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65009429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJbD8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmreSA//dfAXI/6592aJ9ADLcRhNzH5vSUcwO8TMrmDJ74FaCJGfjqpY\r\nejyZdWMctlOkzuLz/rqjPmy+sTpAJmltR5TeK3szTn7iXeKeN++oIw3hH/Bw\r\nQiVKppHGnED+kfyeLOs/auA15ijmd8DOxx0QJyxm84Wqf14h1lW40Zw4cmhL\r\n109Fnp5V9WB+vatsn0Cqz3fVHiEXICPfsp5Cr9otcBkOl6UDo3E5xhnrOcTR\r\nUKFBtFhf7yY8DvlULcRWuXiOEdtGm8FLAWF2a0p/EQsognKIQthAQMeg/+5z\r\nTBn6R6g+WIedcqaUv2rh684TGqTTcR7EH1wHxLAl0NhX4Sh9Hc2Zfbt0OkoQ\r\n7qAiuq+408lAbFwib8NvFkqQg2H3TFOsp6NCupUCCixjDI/R1TYpNWdcx+Ir\r\nd9EPut/sTPnC8Fg1HLBeG6NuhyQJKfBiRD4fAikoL7Q7sGx38At8gg2VHb4x\r\nuSAZRqm7WJ3kDI9OiNLgTKdRd3x9hFvC3Ff7WeQV/E8FfFhdh6sfp1KqPmIo\r\nUwLpFpG4yFErEVEwvXJ5rDpQYeYQ7diZ7LClSkL6EWXEcHphFDhVjOXwUkOi\r\nW1UchTyv2Yg2Mk+0GjXI16GmFZruzxbmMBe5n+Q78y/VR7z+WjrnJBuwpL8A\r\nYxBtvXjxXxCbGk4y11IHpP0Hug1Oa/zfGBU=\r\n=OpYG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"20c93d3b1da44d8ee740b466a5cde7894e8b3260","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220307_1646637308600_0.8068845254451196","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220308":{"name":"typescript","version":"4.7.0-dev.20220308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220308","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5a2281dfe38793657e7a6f8d9893ad643be9f384","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220308.tgz","fileCount":185,"integrity":"sha512-dWx2ETRQadrYmrtU4XDnjQsxPNzX1u3+/TWJZ8kU0gOwdyZQ8NrO5BSzhIwp5eqAGe8xdBg+xPDT9tI4mxLfjw==","signatures":[{"sig":"MEUCIQDU38ER8joUzVynyWWeMRGGXryCXah25lwrFbWGNsVcugIgbLljs2yibbhE9HC74YSnemwwJMlyJYT59pF9JG7PtmU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65014751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiJwKVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpyGw//VLQZVpHIocGI5lVRRSUsPE/hoiTzcSkJcRzkZuzlT4jkH8cg\r\nb3BZEKLFYYECsmaAzKA49CKxFEgDHY9Y0uFNGhYcxOsTD+YhNJGYnxdueUAL\r\nHUR4sS5Eh9BaHn+VxeOQU0omTypfWTCdchj28pGtm0aRypmCvShTKXpmzr47\r\nNbyBOEjWJ/E+00w6lgYBFvw4xQFVKlQJBF0DywtcBintI7zeOX98COnQoNVk\r\n+eZxSwasW5UqlmkDqB0yJPQreSYkqx2JXK7TYW/JblnLn7OUUL3jmVwHmeYp\r\noYsQuxVJ2FkmS+Vj9IP9jTZdkxlyUeQx5GdTSQhRzlLiNsUSRKaAFF3fQ7+q\r\nE46bi2Bw/HVEOK3BXz0ZB5uVvXMDySZtuUVHHaOpOJLRM6qdiQvt8r2EIGb4\r\nJEVqI6iYejewpRZeahKDIl42vjaTowOOtieFUqLRcBJXjEF9/iLt/+Uucz1V\r\njUwzNmMNLsSZjXy9HaVBMNZwc4lev76+4V/xQT1GZqXsXDDZJ5kazQ6KbRF7\r\ngIQf6A9hUe841x0AVQkviM6AjgRuSKkg4x4aOPQthXg5OCGvQ0zTIvYqwkWr\r\nNXeLcJnEUzJVV6MHmJZp+64XRxOXrI6WuXVD4tmDamj3HoWwJgmn/Dpnsv7q\r\nl1oEr3AljfpBT4pO+CcvbNxgxI/Ygaqc0wY=\r\n=uoDo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d8b21a8d6cef772fea5cf2a507b651c5d38194bd","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220308_1646723733254_0.9796105030581126","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220309":{"name":"typescript","version":"4.7.0-dev.20220309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220309","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"14a20e681d2099d5150457fc41008bc213405026","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220309.tgz","fileCount":185,"integrity":"sha512-7pi0DCM5fVfheQpx9gYH5anRA7gBZesmxTiLYsI8v7CG5HlLA385/bkixoM8j3g6+3u+AWRNEXzx1j/ll6OtOQ==","signatures":[{"sig":"MEUCIG08YePvs4y924WAj+sIOhhmQ3SoRsGQ9WgILqO2t3+PAiEA6mJYemS2UjVwoUyHJD83fO9E5uWuq1dsv/2BrhF7XMM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65012975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKFVAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqPWhAAlj3g341qkKFPSidwqL5gb4h4hU+IZZFleYpHztxbfsmq4EBe\r\nhUFCI1yzYY+IY0hBc/XBh0uJrYBtjD7AYLaFiT/ZldWd4UpaYnGSmC3iAng6\r\n/snoA9TWCQUYdhXNl8oJE2r+lKtBe5Lw4LI1m7blXA2cseR7JpZGo3qb7//y\r\npHQPGn/7NJiCPH+nsV4R9DUfFTpT1jnNj+9DfKwhI6elDKMxRfK0iDTKFTUN\r\nZiaV7c5EGxDmV6oO2/9DOtc4WhQDs6ZYwdDM3nJ0FT3MjX8WT7QjfDVe9aJH\r\nIC/yoLQP97xdosMUM3KnqlhH/mASk5Q3cJYAGTaBhZLSPOKEXUraZTvGIpq3\r\nDApXWW2j/uZvAMYSHbscVluxvJoup/KGOzH12Z8dofNvVIplr0S+OkpwI9yP\r\n3NJVAj942oMyEzy8qoXbfEuzf39jdmnXZjYBDWjNudU6ms5OJu9fyKL8gxNa\r\na9voN6CQtr8lkOUmX+tmiTRjptyfv/xfajPcbpDyVixy+x3naUT2MCC63KKo\r\nbB2lltm/HUo0EdLayJyH29HkfuR2+CT+2puyt1oU1aernJ4k5GE9cV1TZvju\r\nt9rGoltM2cTExCICXMFkGVOxiU6SWcZCppRiT5HWgzJNBm3JgOoBPPV/uNR3\r\nVHrIheVWqUhMMi4qjhgmeU8z9qW+hutw2AY=\r\n=aHkW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"94a7ec17e0de5b9afd367a18e8c8aad629f0ca39","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220309_1646810432611_0.5382824034683829","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220310":{"name":"typescript","version":"4.7.0-dev.20220310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220310","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0f13f3690e9e168948c0528da9ef817dcd89e02b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220310.tgz","fileCount":185,"integrity":"sha512-JjuOqCNo7RoZmelTJAB71/+pGu/5wjPHduQibPSMbfLBHXBv45wb9YZ7UIMqJ5PPrG7jqKsU6sOHLF6uJDbQBQ==","signatures":[{"sig":"MEUCIQCfJ0dXRjWgdGyGREpfpf6DcthVpO3yh+eRZOq3y+wTAAIgJMwGLUK0LffXBjHvW/rVrYYoHVEZiarj11aOmtb8ca4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65062825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKaalACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq7qQ//WbTG5V02l0UGXRa9tVNuuVMdgcdIRaD1mzMogFUQcyRNdnnT\r\nzNWGA6L+e4hQYieQK6gjFHeK+amKMhQdmbYV4hDI8Wp++b9N+zs7PqCe17QM\r\n8MnyW+e7Rsq3zUXN7yEdPaaZqwDl4J0oLxbwX+yWB0OB3JvDxgyzj0FAb7bB\r\nifhh2B0Ar3FEnosxa+rggGNT2cpftafZaMsEziO0ZRiTyRzUYvlGp7il3fgu\r\nZpURPzvTZOt6O3lbmdTv/+cv7SnmNcZZ/XSmnMpvc/cI0dV0eGP0y5pOGvRW\r\nLHbj0Psu2P45ps2wZocPEl/kmjxTWxkNM4XJTRnenMCjXLIdLnVULMvd1eQg\r\nCRThovgw3hWzZKy+q3Xkkf9ePN15v42J//BllJcmiTmULvKhlWXjNlstEDmm\r\nSO2T9WFRuOyWaYAs70LQuR1LfyO4iYLzYDwIVOdfLuFTOPSnCbWk03c2tdDs\r\nsVnJBnaKUOAPT1eVP94e/H8FOpqe9236ZD8GUB3WE/Q7gCOEWmyDkn+rO042\r\nzcAmsEkK2qeGtv5A/79u7IgzHTiATZAZp6TxcDNDag3NYdpRxd2n5mK3B6K5\r\nDbwi8zQ8FMPBW47J0oQ6yQeAqzUalszEXT5JJwsF2Ufy/0+Pj+4B+4Lwzpfk\r\nD85Ew6d7zaYKuNrB6oda3wcG3zKVq1hCNQQ=\r\n=eNs4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3f638048781bbca3cbcb073bb43ee8c101b352cb","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220310_1646896804696_0.6186234033300961","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220311":{"name":"typescript","version":"4.7.0-dev.20220311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220311","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4c9798bdef10d2a84e3793da81e584a898f16526","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220311.tgz","fileCount":185,"integrity":"sha512-ZNMv/ta7e5SqRO591yC36VBmsM4+S6u60MFW3xOwKrrm/RbPCNJjwS+lmSY57avA0VIAUnokWlm+ThWBNo0awQ==","signatures":[{"sig":"MEUCIQDqH4X7JZ8/4opdWJzDoxnzODK9dDfFkJtKyzzyUKnqBgIgCYpkanSstpYOGOIHj7WGseAyC/d8bLJRJ/Y5qGsnMCA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65062836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKvd+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrMdA/+LGHOk6cz43XFIR0/nOlgGF9Nckvzbjn3O/Ks0d6Lcu6Emvq8\r\ng+WTfjupFREXYMEKvOADotqsUlJjCDphIl3mIVro7pW2+EKE2qxroqNHxchC\r\nWAkBATkHMM5oQ+5w2Y4NYMy1VJOXVqmvNGONxlvxSNePOmb0PorpWCr04Z+p\r\ngdYd/vo11vu/aomGfMJ/8VsYEpkVcMGjFj//kFbDBLfrfGuP2l+7gAGFGlO3\r\nlmNy8bqpRxLcPMhqIkRrGsZjtIvoAkuWS8hQy4jF2d18tTwcSgtnS6gqRj87\r\naEhtRGon8BJCBYvkwwcf6ipmC11/TNK6r/G9tFUHOcPPLNVLPtSJ+uqaNf5h\r\nwF+2OIML9iifTWShg4uvvwTg28sREr5jNjohtp0ZuA2Wo97LEfL9swH2uuwW\r\n+z5SpllDwcDrqFhc44h2mFP5NIbZo/o0K7u32GcgasR5sJpa+yRbTJLFuqG/\r\nFsVq93J6MofLzflnTdrQ2CDGtgj4qtdKmy3e7S2QpCLTO+FMEyybaGmvxsXO\r\nSjmROQmvV4tam0RFUMohz38tS/1WPYxkkPS8BW+BHN9iruk3NN6TTxkVZJOO\r\nAkJr33PQ3jKwGvh5Kr4kLUKYbsW3E254R/rSYC2FsVtMRBPGMj1noOr0jIA0\r\n4chBBIGmxaovDf7O0g6mwidtv1Jk/LCQcUY=\r\n=Kzc7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a4f5555e09862d442185c09cb0b0630f6c06fbd0","scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220311_1646983037706_0.9738663331690027","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220312":{"name":"typescript","version":"4.7.0-dev.20220312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220312","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"385e0fef7fd1d00c382d4b370185dfc677a581e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220312.tgz","fileCount":185,"integrity":"sha512-1EP2WBZYU8+Dwd2ZxcFRCTxekOOomO0IqHquPxFNZmdKq8INwZyNlJ7IBtciHIcE1a+J+ljcR89nbZ1mVJv/qg==","signatures":[{"sig":"MEQCIGSHgc5lfELJ3REiY1p/ehcySC8Nc6gCykUgG9m6z5S5AiA/PKKQ79fajAeGwg3j3C5FBcZ9R+XyLvOleLEcKlLp1w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65162443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLEkBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrd8A//bDXswq8oxbnZfRDW1EOrGk95+P63w2GxmxftveX1VMTYUvVG\r\nvw5q+fplPqkfIdnSJ1cPq0GFlP10kL8woeMoe760JTMziB+wOMaI0TStuDCh\r\nqw+66KnbZHtzp+liZiLSgAV6xDVVESpqy90L6QG6K8/O6c8IyotaVQrbspQO\r\nirF6HOQCRHXLdzIsAlSyjvYJfYy6Mn1x/4erB7c9AbXrK7S3kR/TdgTGLnLV\r\nEfc4ENboit6EzheflXjfy4TvFPibafkIMJ3ne8KqpdlfBHT9QqCVk+CdSsxj\r\nr3dX2T2R9VViaaPlzAcX4Kc73/CdiYln+N1csBlX48L2D0UFmDu8hJBQvfbj\r\ny79AfUy/k+uHEyHqlq52pGVLHIRQr92cjJzxiML3Rork8e5A79V1AdnURcR3\r\nEsuNti6CTiBNUMgLd3PpurnmtHj2HdxU2mTAz5Eh39sBUK5+mUjnjr5cWSBY\r\nHjWz+YR9867Ve4Zf+VCu31Mw3MVZgM6DCtr2mIT1tljYBNgUdXjz4uj3k3PO\r\nVt8aOu0GbbXtRi8yvK8fZBM12U2cMO1/owLhOnrcSCn9Rv4/ZcKJqYopivpH\r\nrOvcHEw84XSVuRA0MqhNAcO0sTqu9DyhYKhPPY3zY5Du+l57J/TTot0iWElw\r\nVxaSQsU2d8y2CFi6PgANuzz7FZLXyRNMOPA=\r\n=EtcV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6f0dd47a88bbb2c00bc5b078e9e19c27f2d8eb47","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220312_1647069440713_0.5445108227523792","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220313":{"name":"typescript","version":"4.7.0-dev.20220313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220313","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae92bf01d12040242c2c00a1a1450f2677c855f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220313.tgz","fileCount":185,"integrity":"sha512-q+p/F3ujw15hOvibJRAULoJG9N/Q/qoQh6z7g2/I2GZV6cuqO7Ya2ghVUyx30P98RTXLjf6n5NuMOCv7TAj9Yg==","signatures":[{"sig":"MEYCIQD55NAbcZLFZJ0igejQkBuG+Jo+lfN+lAbyN9Fe4k61vQIhAMCVORQivTijMskxp7Z/mJD14Lfs1pWYNoPLuUgt1vuZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65162443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLZoBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp4Hg//Ztwk5z8B6LmjqfIoMdqYIDIw6VoQHp+L1CTQ+nHNpfRrqaLQ\r\nAJqjPs9gNjIinbMSv5WAYesHvfTxFp2yxLzdOV4k8C02t5ZEz/iHODDsp5QC\r\nyKgsVNAnp4Ch43C5xYBozPf9T7ySGww/BEn4cL/oaxVTK7HPkVa1pOk+/Txs\r\nSqPMnDm0BMmJ11H7CMPaoAIx3yL4uGwYqQhT23PGz82O/fd+aaFil7AmEZ+T\r\nF4mQxN9IL7zwu8H0sdsaL33Pj8CKQPQmQQud9sa9aARFYTyrxpCI8EK0KAbT\r\njdjet7eXhh6VMiFDqJcRqtYN4Wgh19IZDJdbPwrmRuPSBY2IRLlWy33KLqJe\r\niwQSxeyP927HgAJxemhcS0yuU/AiB5CGBYGSqy8QhepuMWRPdFRtGJUovCp/\r\ndXR0XyJ9jOJF65tSkPBNB5Yth/fGeSQNrkWVL8acK7fV4PAmYvxpohtcVMUo\r\neGq3iKsy9f8FiLuoOjTYqSIdt2E12pssqgcG5hSNC0qaH6wrMm+D1G6203oW\r\nSrpPe6KIw2hc8KksMh9tzUyMzZ91zI9I5m4tqZ7hX2Kl5N8fsfVMJnqgjk2X\r\nTQCprAsDmEf52OTOX5BcgVUWjwTDlvpWE2SiL9kAgmkrc6Ps1a7B8DbYO+LM\r\nzCAcScYeFHpyb4UHH/ARsagZa77lJZ0YysY=\r\n=f2FZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6f0dd47a88bbb2c00bc5b078e9e19c27f2d8eb47","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220313_1647155713484_0.14803190562041713","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220314":{"name":"typescript","version":"4.7.0-dev.20220314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220314","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"463f23945f87661d2f7675068ee27c7352f7591b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220314.tgz","fileCount":185,"integrity":"sha512-MsTMLb4vPtjIZbrGHRLfFz9/Mz0fSgh9ZkUb7Ot1UH4MmeG7UNtG5yt2nr9PscPtK6l9lnpmJUAkemv0wlrufA==","signatures":[{"sig":"MEYCIQCRn/Ao4NG1Rj58LSM7fbLAIBnWgGsYoeQuTPusvbesjwIhAP6kq6I4xfkKdFuZj7YCOp+a9JyCKQ8S1iDiCsISso1Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65162443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLuxPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqBHg/9GvOfah6Zspa5w64tccF+nGvzseYR40jbqldL3o1pxN52oPVN\r\nlenf/ZHfFPn2BtbFyzjlo8C1LLuCqqRB2L0CfUexo5//oj4CV7B2g/wZ9OoZ\r\na7SLKEnvr5H+9wZOfvrrNdfQVjiBk/yIdRpvmZIKossQYlq3ybazm1058QgJ\r\nRps3kqW87bLYZ9d93ajJkCL2KHNZ2dKJaLNMow0j17eEwt6/z8ydaI4OUiQZ\r\nHNDBQrDpQDsrKPexb1nsKdq0LfYrk0t9PTH7cAbOEVWfCQSBa3Qs/mDY8jfh\r\nM06tRtOiw7lP9Db9D+mPL6p4gw/HO9kSU7U59igAnUttABfF7oD/wWXnRzy2\r\n74KV0GFrsxV6qpr7StkfuWnjUpuqjvt2l3NbGDLGmkzwGu5tmpywsI92puXQ\r\ncc0eeqPXO6QvUyeGzQoKDIhP3yLxoA5nBNWx27o9t8D9I8GYRmSGFQ+uwyuR\r\nhcEXI7wjpxU+N4J4ar0wGNncOmHhHWZlGrMVM+7wsvI/4OlH333rz9vYP7Cu\r\nw/QjJn9QHTVcDevKDCTwTRdFot6FlLCdwN+qM9An8SrcOxP8Vd3KECGtUoXa\r\nXbgxE4skKUJM2KlWlO0PFUw87h0FFxBe8GEw/xdcrZo2IwkVEmWaEZbDUJ0h\r\nMJ3/jydJMtKGlDAj3kJ4Jlrs3rg6gw/YNFY=\r\n=lDPK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"995e0a060116a905e41badf15506c3a94924eef6","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220314_1647242318454_0.501015780223012","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220315":{"name":"typescript","version":"4.7.0-dev.20220315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220315","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f4486025a7d9aa39e8bd21d1f863e7b7513347dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220315.tgz","fileCount":185,"integrity":"sha512-miUXjP+dc+ZRT7cUv/p+FKBBRifvV/dLZsrYigY3pclH/LMWWcmUz9mEtqOxTs8m3d1T6RobtF6BfQB8goqM6w==","signatures":[{"sig":"MEUCIG0lLvTco+nGtuzOOyqcD6B64nKxyROKj6rOHmcx8KPfAiEAvi9sbtDsC3p4gLikTmJoI0TGEYkvjBuj/FEDAMwugEM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65162404,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMD4SACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrVPhAAiv0sd9tc1FEtmQhvlw2SA+MFdgmgZXZ94Uu/5FFRaRicbh7B\r\nSsoMvAKOeF/1EoKQt3nOk/fbAUxgbRd8tLgg0BCzNXhtGg10ojeY7Q1i7M32\r\ngdslBBEGzGHXb1EkCk9pIK/E1xxd/9oHbeOMGdqMDSmWTeclJ6LypnIejSaz\r\njakU43OSVRwLaSWP3UaGDp5hf1DZqE8oeMAjNamG3qWOAw/LsVW5og7ycvac\r\nbxgGDhx6AgCYtL95SyTav5V0nRWqNnOlSKe+yNt8GDi2Gk56mO7HGnIqr+/l\r\ndkUVi5E6qkS2X9yrbdxH6FH/atxpqfYyFUwsr/TQPb2IuAObGAUOuI0qhvN4\r\nHzCKXZ7zl8IbpZBF8rBwALRRc9L6PErbYqZIFxyhvYc5KrD7WvJGHxb9tpoS\r\nj4uJgB1922K9Bpekkd1QplZyqnJpyfDvqxK8PfpEESYyDs9sFuYAgS9qAfyY\r\nZzSsPjhU6gsLIv8CiaWc87IFoJZRrNjJRN1A9OMVfcRpDqoWzbLqw1TFHmRF\r\nksdxfkvOajRmA/Ub5l6j5LfXeWrkh2k5UvjyH++DZTWssHoMdSTe3f9sB3IZ\r\nyQyzw+XPow8sorWvKkp8Ld6Wd8PTzWt+bWJrhBbRww/jnvJXlmIo2Z+lwVUS\r\nSx9YOYj1x1NEX6DYePdJ4/tY4Yh8PujLJ0U=\r\n=VkG2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5f017df609b61f017baa61ff7679aabb39d089fb","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220315_1647328786505_0.15844114069069914","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220316":{"name":"typescript","version":"4.7.0-dev.20220316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220316","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"255c8079e39df6182af0089fad6092a8ea49344a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220316.tgz","fileCount":185,"integrity":"sha512-026xY5jsAZ/uBqzY2wI28y+iTVHQH+V5Ws2FLIIsusz+ARgsLKF74nz+9JY5O/OQR4/fVB/ky1etIlEo3Tu7tw==","signatures":[{"sig":"MEYCIQDnRkw/KIqZpwQIPa5nalqr3mVQh5wn6EAmdcgdXLdzrgIhAP55dAzQKouypoy8CxIVbtz64WErwAc+1aR0ubEX5IAT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65176541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMY6PACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp4Vw//cHAB0mWAAkmZap3TofDBoLt/tvsvcMy4AzLZYxYn+1DXelCN\r\npzt9Ai2uD1YFcvrTtLOGZ05ZtgRbIeIPJCikBrEXx/+CWqSi79aYSiGFPMXq\r\nPwbRTd8w2XaG4iem+givfu4f4JODjcV6or2pL22zlkFUbaRZloxB3hdLEoZU\r\nwhQZmQM4FbOUHHPR04iSWHLmLf4rH++5Mj8479Cero4Qj/wwavv1ieqmf/Bq\r\nTFWxqacpxepO6R14bay2c/do4U6RHkEVYmUh5a8yPE+ZCmkNzkhC1m7sgt2B\r\nbBYDDTE0Bj5HSCEC/Mm0FFyrkX1/Np7qtW4bDzipcaTRfE9yIw/wnvaonHoV\r\n2L/PCNzkuVLi6UQUBZAOxSwJukQ8Nam8rX6aYCKnFJ4loQHj/8qxmWr6BI5m\r\nVh9apG5mF7qgVMQyx5rDZqTMedgHm9+K5Y3KTSPuhSem803raI8HIFbsq8Bs\r\nW37XyLAxlhRov0M+OUUPT2f5OygPXNUycN9f0bNzDe3Zj1NNjGRA1wwl/n76\r\nkekuPzYIjoHNVYh45l7iLGKTnubvW3jxZGKbxntciNnJlBc1eTXWrhVQ8zNj\r\nVTzjeneY9viz6Y7hQBmPCCK5plEPzCYifS3GG5OnJgG2MFT02hrEwvrHwZyk\r\nsSVam7tVuJbApJ1O5XZivFnYK0xG5kwp7II=\r\n=m9h4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"92bc2ddc3c7784158714bd737ae8c8ea4c820998","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220316_1647414926368_0.8290348756877426","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220317":{"name":"typescript","version":"4.7.0-dev.20220317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220317","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d33e1c68bb90be48798c71eaaac58c4a7332b27","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220317.tgz","fileCount":185,"integrity":"sha512-BSWI2k1HSHl/NfXlTgth+3J/2BqqhbqrZB0gtgNvDsHSpiVzt1WEkGV3yab/U8We9r6X8YLebW3AFWXm/b5DGQ==","signatures":[{"sig":"MEYCIQC8KC2e1kzCdqn320xiNcmo61IyynjSgyz/uP/KiZFzXwIhAIj6zH486c2iHol9OnOBNM//cTaykTbAEiEE9gpYrbDl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65183255,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMuAhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtbA/+Nl01ES+7wUc7xYMUjQRBpVxKOCt4cKpN54+ZyF47sw779NYH\r\n8pUpDjfkS4SnNDmLR8w7boYkjn+rpJteT1jy5X8MHs8EYMvqlqGAPv6kz83H\r\nb38lg74KuCEO5GaZl6uJixShGnXm6wgVNy8JPLzyzevoQAd8O2cPgXLp0lW4\r\nvfP3l1tkw2EyoM28TdVm1E2s7aGpV0us8gAMtPiQ0nGah66CsvIOKNa+/ZSH\r\ngUkLQJHNPR7/R+QDtMyy1JYeZwVJwAcKv1tL5v9k7YaqOZbE/oAOd9EkC5Am\r\nrwzJrtrhRY+qHCsb/f9Ha4xQze7DnJH6Dc9hd2hA9WGs0yveqhJI8NY7zmn0\r\nhnQrk7CXAIyuTV0Q2qQRf7gkxB53gcms4HghRgWKsuebA1hlucZLM7dPGM4Y\r\nvOjCq7+gdLddEd9Y1+VAHEn/Poafe0oG9qfMTCo13lN1dDoNVzxrwRWWkqzT\r\nuYziGJn7EVsDZlRpEAJxOx4F5Fg31+eHiT/M+SegVbLlukQk50SuwpFl6Etn\r\nZdBvV2KCqCxHyChhM/wrbRYV+ak3Bh29rlHXRgEKNQ+eowpFb99YAMUnC5YO\r\nWSBvc4qp/eb76J8FYYfiUsED+xHlA+9JZvsqXjq7ihNxMKUyAG1yJqZwudBh\r\nFzLQ+q1mpaakrnExSe/8VYHDmNmCVEnXV+k=\r\n=LKx4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"546a87fa31086d3323ba4843a634863debb75781","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220317_1647501344498_0.0016898030711480772","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220318":{"name":"typescript","version":"4.7.0-dev.20220318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220318","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"747936dd59cc6eed055209d9e349f1e15b7510b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220318.tgz","fileCount":185,"integrity":"sha512-vlPtDgN1KNd9AbQoBoXAhTbHhqZfkpitjn8Rsw4fAaaRmkPJ/G+rardB0wfUQ3mZUy9CwMJ585DzknzHfTEvsQ==","signatures":[{"sig":"MEQCIHdhGMPqIyXyiMai99yFFA+cjYwZ1OE2Yi2b6AAXKewuAiA56q0jcSy9lCs4jdDdVsublsv6vEzsTWdtTpkSjTej8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65220547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNDGsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp1WQ/9G5YbvO0Yr6fjdgX/GFV5RuJsfTvdBRo5aViiE4JY+uzIrl/V\r\n/MQ+X2md1VJs/CDhJTnzeUHqZ1I0HtG0RyvUCu4vpysSDewkpu8pQFa9N5qW\r\nzZ0BWzoDnkEHPDiIbYXrdrRhI3bBxOPeWsdYp/zXgglvhzJw7Gns9uwaoqQc\r\n3uEhuZOAcSGd55iU6miVg8QaziGi72sFQ0HQra0m9fWAUG0I8kD1UHPzBCJB\r\nmWt0XRmXOgwgh5ovNMrnW1cPif0dEIkwZd7NYk8JNep4NNIxPQsmOjo1vo7a\r\n1tWuum615gGJnew0Ssh72/tB0A0karW3EPeB3lleCSsj3eKwcgfii1gJg/+6\r\n42mXI1OZi9JUOswBqJYAWQ1KxYg9z2zxiJJoxmAxdycolLwp68wjUYuy/5If\r\nNsBVxVaBpFsLl1a0cu+3DTdk7NSVZwUO72frsluurnbZ9LHpf9Bl7kVfT4iO\r\nCoPQaAg/gCWUUtzArgpu4rqWKdfFkPeHMtg7qWy+D0rTfjfbGbP3BPy5gW1M\r\neFx4zT6V95XyySjDck8VA9ZZ4xnfpunh5RZK2/5ztcC7xiADwtZqSDnCRnLi\r\nw2mFui4nsbtkslYWZ7N6RSJPGgHYtb+mRWTUsAj54mmn9eEpTnW7xLTWcOtK\r\npd6IDKjfKE4miWOdHHVF6Pkg+uPGmQ3BZbc=\r\n=8fCX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"073ac920adee8e517350a455908aa420b29f9422","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220318_1647587755949_0.02661184677052164","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220319":{"name":"typescript","version":"4.7.0-dev.20220319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220319","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"993fc0d80bd4baf4c99cfda4ca7faa034151d728","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220319.tgz","fileCount":185,"integrity":"sha512-28MvFXY/+Ze8/WDoNrNfq/OZMUENtkzTb4JdAZP11/MPx70j8xR+gYNvAgu9GNtKey7E8JHBQJXJkZVRT4T7gQ==","signatures":[{"sig":"MEQCIHJaRFEbOzaHmnEyik3J/nZtdTPYkRZgodyeyM+KFLR+AiBIDXaj+zPvxQt7dHFwRy62mJDR/2eNotJyDOcTXkVFmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65220547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNYL+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2KBAAhfGnc8t0J31XrWDlt+P5WtUhX49f1mv56SAtbj88ApPfJN0K\r\nnQ+GamXxhv9uIbPZR1YyXt08Te3OnY9wgOPp3jXtJ85lxfZocFIQ4o3wZaWQ\r\nlmmGzFsb1L+nlbpipxetPI/XyLACoSBeLy/yYQaSIy1wTdP4fj56rdOCRMBn\r\nmB8KCMhSITrHBQtkL82D7ulK2ArqQomFqpmIZ3VFXusO14u5fcYIXX8EKUtB\r\nE9ha9yxj2P2eq81EjV2ZXo1kgdEMAmBqSVkcccIcAYS/PqaOrlm/j6I7YmCq\r\nhpkqepck82GYr0ICtPM5VAJO7yxYmYRxGkR1q6uqB5su9npbNztIPmTNwaVS\r\nBLIc9h9rgZdBF1peHrnUOyGWIcD9Exx5rMFqgZxqVqe8gZSqjoyAOMPoIma7\r\nbUgHU1kheSzHB2h1ZZcasUp8go7HHkwnS63RRA8fmuEE+v+a73eQTifYQ6e4\r\nUZASRm0RJBPJdg+Pm6cqxSEfO4m+sHZwB7CEeCNYl8FlNQDShQ6n0cG4/PpV\r\naBaeIU+PWyjDmNysAQZns1apZt7G9fAxajjbquqGJ4uBQWXKxUnOQuaSYGT+\r\nBs0dnBdCldN2GHyrP94UhpH3YbWtVjuB2Wvd70rNxoKDo9Sh6FAvusN7aQGM\r\nSR54mCe7gGax4MOTFZ/QPtZ52l9g02+ZRTc=\r\n=Pc32\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"073ac920adee8e517350a455908aa420b29f9422","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220319_1647674109556_0.727470119616132","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220320":{"name":"typescript","version":"4.7.0-dev.20220320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220320","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1fbef5bfc6e0be87241062a4fab48b50d764403e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220320.tgz","fileCount":185,"integrity":"sha512-BIkevbhxQtYhAi2jBB3bSNYnU02DyY/l+Ikh6o9oahxIiSu4DVJhu3yAZ2Gp9syaEulycfHMOik3eKNDozSmBQ==","signatures":[{"sig":"MEUCIH+2Q81kP0yaMgl+Gcc3ElLeMAZh1MYYy3QntXl9GijZAiEAjIKi9DdDdX+n4KTJ4tn8CjvJe/Mxs+qeyVUPjb1zkBs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65220547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNtRzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqE+Q//T3/T5Q9yma2vKz1Knb4JWFa3B0Yvcnplqxc05VdhhBFOOEzk\r\nVZfAJatr/ps9Gi2S4QOyPU2KaqVfmuEkjgjITft1EShO6iQvRelbyogCOEHi\r\nYulJmSzbnUsSftAAMGh28rvbqXKuj9RowSToV5OXBKhC8u4hA9qb0lN4NZP5\r\nqPdUxZBsAx1J2pOJezyDMhu0Aen63CQrS1ov4r3B2Nqjm8kYEvT8bHEWaf9T\r\nYWdJa9kv1VOA4ZAzbEnF+MRF97Z2BBKxwdyTbyJGlNQERRy9milyz+jX/Pob\r\nrkPyhBjr9gzsk7GvKkr+MsXeg/MH2xkBC9QdKVIxp60Fk2SxQ3SwCeCJhDyp\r\n26F/DhjX1+tlWaVt25/GObwu7fp0Ur7j9TfCyE9LyyMee8S0l9coSMNhe/bO\r\nW6ddkfq20lA8iNpuad07GNeF/Iea1Vtra0Ae45bJ/6eceyGkyiy9JuBIo2kN\r\npZgEvB8ycVECJCceXY8pMp3zhaNBHOpSu4jQjKdJ2iyPfibELC+oVqxcXOeg\r\nAwQblztUSeAFS805qj7mRQFIEkkA0I4eM1OwNjIloWT5qDLX9xISLmftZ93b\r\nm1M5QrDy4X2Bi1zWH4w9MN3NGRCmWiW3SSFC9jdMzG/IRQamLASaX62YctFX\r\nfIRsh7pS4WO7WY3jdwr0KSSthI1csXgdYSw=\r\n=vcWE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"073ac920adee8e517350a455908aa420b29f9422","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220320_1647760499470_0.9497403125480244","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220321":{"name":"typescript","version":"4.7.0-dev.20220321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220321","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"54da9b32245ad083246219609593230ab05a3a3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220321.tgz","fileCount":185,"integrity":"sha512-2w0N4lMmvlOFMAup4H/OoN6OnnW+J2J9vAgXOjdk03ZrFA48LO0V2YsG/Zx5amhwmJNH8/BK8UDYRhmVM+81HQ==","signatures":[{"sig":"MEUCIQCJX+xAsY/lDJ+qWfo3LWz+G+YCK9kvkq8PaYBlC1/DqAIgWzqq7QDG2MyVXitJ71iGb9xDrBE/Uq5pZbCe9yp9HJ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65226069,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiOCYaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrXoQ/+Ii4kIsiq6uJyMjuJHJZpk27eyBC71Se8rCKv+bylLFpqQCJP\r\ntZN/53N/Jas8BR+WuJLP9V+VI4CkXVgJyxfxgxxs+wq7K+USOMmZWaTEw7HJ\r\nF4hQWNA3eO5rqTzETXMWm3utV5dUaPBEDHMjaw2+s9E3x6VggWnjMdXhsMw4\r\nwSJgnWsgjn0Z6NTm92VLh/Z4GscxHAGiR+eJU8cMxBCdEz+sEbLYqZyWesPy\r\ni9tmfGA31XmipdOmGCFcN/0vil170ZydAX5Qbjg+f8GjTIOFCrEqINtTgIjq\r\nbBHS84m5zvBchRezdHe8aaJrJdDkbnwhNvO7fPwrO3GIMumc4o7uOoRmIS/W\r\nwZ1ii+SqhgzsYUOZZqvghlupdvx9Dfa2CX1yRhariKNooozsagfnePvWvRQY\r\noK3sn07r2KWDoBAu4oCgDLs30hvuuCwJj15NWzRVRpRmCSBe2qbcQJ96GXGf\r\nCRgbp0H+qWbUM4qOsn1wvMBeOHUxWqA4rOaniU4imfJ0Q9AdXkZlKc9wtnlD\r\n2L7cM1p3TBeeHJVU1OIafzkRqo0KNSuKymR3+3vhQ3pgt9hg1CKdkPO+dvz9\r\nBMOWe43YM+5x/A8MdJ9sctrFpVVVg0mdPAWipCNqdRBJo+9CRLBnRNsIhUe6\r\nHxCHAD6EMhDm9FSTJBHaX4w295T1lbPPtGw=\r\n=ojJR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"92af654a83c497eb35aed7d186b746c8ca4b88fb","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220321_1647846937818_0.9935216412440626","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220322":{"name":"typescript","version":"4.7.0-dev.20220322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220322","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4825c2bb3cda73c86414cea59837b4cf90f1bbff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220322.tgz","fileCount":185,"integrity":"sha512-9pQkL49asHmlHfNGeTlKZdTxTBJmxeA35/akTar9pW5gd1NfHbOwTvqRWkn4zkhaqrUCdDR/k8EJCemxbxKbzA==","signatures":[{"sig":"MEYCIQDC+tOme5o0ygK9Vm3LGTxQRROPRum3Q+tQrQfu01bgSQIhAPnnFQ2F1utP5MEG5JgPzop+GcXhGfB0hCo6Jx6v5Zq9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65229947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiOXi0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp/MQ//QC2WiJMy2riYaB7KZlZrU1KArOsUyd0VM5gyN3zjknLoPAV7\r\nyCeG0nzDxDUafmfM5Qlf2t4flAOktu1D2LmqWem5NRuS7n3gPlhW0HFpizw/\r\npBqEqdWcNp16Vd0sFPdhYXth+3Qh7HEpERaHZIA6EsXYZ34OoSwRjDTtEas3\r\nLIDoZxuwzklSeGeqMe4k16EU6cEI0S0W8lrWSZzCk23qogQSO1uuZSY/rv8o\r\nTW6C5qtHTUpe8K8sthJyeEQTm3UK1wAZSSiJ40U58lO3ObnaWVDH1eNZzp78\r\nS4zPAtkJ2PzOTSxf9PJiwbyKIOEwrHIVrlXQgFZeF9czRNaCO3eT3Q0Q5xw4\r\nI1vQuY/SAtQszcio9nNuc1dRt/i7Wec1jvXrtClH7Fv0K9G7A0Da0TwWtpJ3\r\nu8ZGUv09UqUB7dfA5pH5+A8dCDQ3DfmWJ1mCmtkwT7diVyiiV0VOoKiL1Xlu\r\nrrYPKjtO2rMQVLxKScBwQ4Yokpd6CBrf5OxHMLsBdtWOfML1ZigknRsqG/DI\r\n4xv/S/aTKKZZCCoC4LOVX5Bz+8IDQbmvOr3MbDF8De9ygsz24I2/Y6hHTk2R\r\nnPZ1fLUiKtCDTFhqVJfu8q2E/lgGPbRHUyuDpVyzyewWiVnDt8l0Kd96t8wX\r\nSVKLRhk2hgt/l3dHcJQG4UK8BMymaaiNAPs=\r\n=/FBN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7f1ec30b8eea79e84aeaf3c7b231aa5489b7439f","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220322_1647933619439_0.7965055621097104","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220323":{"name":"typescript","version":"4.7.0-dev.20220323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220323","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eb9dd18f77a7fd58bbd53ce8d7dc86bdcda87e40","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220323.tgz","fileCount":185,"integrity":"sha512-fJQwwIgPcAJV9qn45kgIaiiklW6eY+SuTVAM2WgNAJS7pGN6mfuUB7sk0G+HGTsWWI/gMlGVgNdPY3jK4M7Hfg==","signatures":[{"sig":"MEYCIQCNbkT2h9Z0EezgPXKIg8e3TNARPEJNDZD0vIp7VCk+MAIhAJr4F2A/E9nogk/xmLGAyeawcIco4wMr9lukB/DdwZTQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65279550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiOslYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqD2RAAhG0fJ0sgC0602R4Hf8Ln35c/mTvuA4w7s3qcnr8HZcuE2n9I\r\nDFZjSjBRUqVlCe722NgmAO+6pWszKmP0Dgqwu4GYxHtJamQyjP5RuJ0QGx1s\r\n6UxeVQMQPxdgnvBeuFN0Xgcl+Yw8ub+RlqSbireES4gO1mtHZuVgsxaHE96O\r\nZl64DEKIQ/T0RzlkAy0oUEvU7VZjrPWeuSq37lyGY6JlkJEw8cTpBN9FizTl\r\nJIWWrpU+sUeSYdht+ZuDv8B/UjbiYWmNJlIZV0w+rM6hYdij9ERQVtR+EUPV\r\nNB7xixUs7jxfGi7kbXpAGnmaArUTlKePAUI6pKyinC9zwEGFrR5wE6wldCGa\r\nK1Dq/bKz8jI4HDBIVEJUS3VlEUVgvvA7SPOhRcjzlRgllQK/Swc/kAsxES+W\r\nJdLPnmwaGKtbUg7t3Ex5jQ9aL+JVWcrbs33iPuGyejkxrApSTHJVbjba77nW\r\nNPxH7qXxoLtW26/g6HO9R3zrt3biuVn0dLXP9MAvi3tpCl6SP6eBg21n5/iO\r\nbqW7H4wO/nyrGuVK0sA1rgtY5QOR2qQZ0xVY88Rs5KkWop3bt7RclZ+sXDDp\r\nPT8ueNXvrbDwqdlXV1bzVG/To8xhCk/Qb4qhwDP6PvgdOuNZsoAEl35mOsl/\r\njjAhiM4rt4a3PU2CQJbj8f+qsQIephVvADQ=\r\n=Qae4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ba3645e03453214576bcf1127fc091130069b5ad","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220323_1648019799809_0.24025861026442752","host":"s3://npm-registry-packages"}},"4.6.3":{"name":"typescript","version":"4.6.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.6.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eefeafa6afdd31d725584c67a0eaba80f6fc6c6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.3.tgz","fileCount":183,"integrity":"sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==","signatures":[{"sig":"MEYCIQC2nE+S21l9av4qUReQA6d4U7kRpn26FPohwhMwe+DlbwIhAOxpIvPQVfKj0R7j158f5hLdYchFfQYDAI13AMGWZcn/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64715549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPPEQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq/Vg//V+dYtlW+QD3lT2MEt7HY0RX7xqKed6fdoCo0JPy9TLpASHWl\r\nuUkMLq/TWRmhwfFjrQCQ1DxuI1Ec5oArzjk3BapsRzpY2kqSgu5WACwnNcA1\r\nar65jnlbslf2KwYTWkl4y0TEoA1kSYLdFkn+DAZXp2FO9x10aqDs8F5PDpKe\r\no6Pf/2TN0buvzFskYkharLfNBL4JR2X3RK/oNcNzdmYHjJinL2g2hQPOURQl\r\nSF20n8Mt5ajcpuo1Nc0TNZ4Ca25lioBHIc+mCTSmgqoTU1AEynCuwhuFGYOs\r\nnr6Eshx+jeaQmmDPzu/vA39D/QXBXR7xv5iNr6V8ci5CzclN1IqPZQjGeOxX\r\nIQa+pPG5oceT1JSWl6MOwkYObKT3zCXiy2GcmjW+gKjxa0Je6pCvQSrC5M77\r\nKAUFQSJYmptXafkLqf5oyGseVv4s+VQUV4n75Kj02gvE08iR9uBbo+cZMyaU\r\nWGAYpds5YtZxs+ocGFWmS+ZYVpmfCYOXx/f7BKm6zcUTlD3wascCx3yvptoU\r\nsshrVVESGsYt/Zw4g6iDKVl7GzWaOT8dsUmyuIxZXUKH3vbDHi4e6E60jWXZ\r\nexb6900qpceMt58DfhXYLgzz2LspTi8EEbqQItqfL3kbqz2EeqPAEnXYQmt6\r\n+XgxowuXVVdsWUWXUOLb4ITknZqPyONdcp4=\r\n=RGTD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-yNIatDa5iaofVozS/uQJEl3JRWLKKGJKh6Yaiv0GLGSuhpFJe7P3SbHZ8/yjAHRQwKRoA6YZqlfjXWmVzoVSMw==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.14.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.3_1648161039993_0.36016311652567445","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220325":{"name":"typescript","version":"4.7.0-dev.20220325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220325","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"54036cb3502230737530610887050257e60c8f83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220325.tgz","fileCount":185,"integrity":"sha512-3S7MAr3P2vkrpptkhoEuiATOU1kPa9+3FUrJAAYZ4/6mnI1SZWeVPeBIbhzIOUij27QrRMgSwN8aHrqtgGVqLA==","signatures":[{"sig":"MEYCIQDQsgeT3yekj1rsmA1K+DCkE5xpagdNDkmhEeRmdGpUEgIhALPSI6xIHlfCHUUUS7+iv501+ZIBXirhbf+Y0wKS67UK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65319451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPWygACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqO4Q//T2EQenL194qqVSSuJ6ODVLkGZiT9i7GS/lljNSu2g9F25dNZ\r\n+TR7mdXIntmqhhOkDO7FWxPiWWv3/6J3h1eEoY6J3YVKSzD34pXutlUYcIGr\r\nTck6r07hDlX8f4QxvRvnPzt+dAykeFanYWIErG1z11mDibEPsL/9jjuY7PJW\r\nMfheVLiTEQVP5mtcU53eS0IJt1RW/vB3DnEo6oiUYbbJiHtR+ig3dQRe1Gq5\r\nGzpjVaoMG7c66k8Szk/wzvsJiCrcFLbXxQMNIT2ucwS/wMyFGcGZHWkHw5Gv\r\n9r7cI327UQHsAPw0L5TX5WtgCBoo4HDac0u0hWM0kl2i/CmIcQOTT67DSi30\r\nq/T8FqMCEC+IIhcnH8cufqXmyK130TvVtrDT7uNQrvh3B5RR2TnlAhtEUbtO\r\nel7D05qEazIzESwujyK5GL3Gu7GjhuB7R6w7yrX7vuJhRkVD3RreLA3It6lU\r\nP85WXR1N4HW3SIphhNXEk0EnEFFm5mtxMX8ZPMYmE/ZpYJkQxwOzwNO0LRvj\r\nliLU7JV1EzYiNQN+LJ73yHSPp25nsuYNuPfXCqrKY89+IWwlEd+xrd97Qupo\r\nYD55MnHo/ENWUU9OoOmOl0AxH8LLXFddgSxNNMpsV5SUD+3u1D3ZNwnqHMEi\r\nIHFcCikhqCjS0q9Re5bO/O/yyr6xrlkE9Fk=\r\n=TqLm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"49a12dcbbbf974c98885cefe5ec9659166bd9d7b","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220325_1648192671999_0.6869636381188662","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220326":{"name":"typescript","version":"4.7.0-dev.20220326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220326","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"817672f871c16955f16b4e51db18323f94e97203","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220326.tgz","fileCount":185,"integrity":"sha512-x1rFXCwjFowe4k5eiRt4PPzAtLZ81+maf++RXZ524Gl/wvmjlKLMscxLusB/Abqp6T6pXW0nSGtUjPsGVV6kTg==","signatures":[{"sig":"MEYCIQCCADgjlHYGTyN99LF4gL8ZPleYKjxVCozT0hHKbfRldQIhAKTrD2FXXKgKBqNY+BqH+ZSvGuYGHeP+OYWjNoiwX78e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65320478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPr1rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqTdA//VYVmJd2WYTrOJ17TjcjFPrr/i9Loeq94oWoTjNaW9P31t0fT\r\nhhQA8X2DnPpfMcsi5eZE3BStMKxF+9Jh8P9MqC7nQFzDG8xYsJDCZi8ji3Jm\r\nwbea1asJUv/URXxpZw98K5QxcwyqhzckBIalcdxI+opvUuVrJxyjnh9b9EiI\r\nIemPVsYFuQzUhvhcSp25eL+C5nrOMnMvQXynO8oSnHJuZwDmOWsAUYJ3G0bJ\r\nrO8Noeng7RxeFOBSgTOsSGf3VCH/hvBec9UmEBVfz/x7Ubp4uDcTLpMRBwPG\r\neAfZsqnS48ueaCSN5SPpvjOtUrfFUpmxgY17iZ6lHDBqpAMAz53spjHmze2W\r\n5P+c5x8n00JXVqf/ZyEJr1A2fjm/zl/G64zwnHLcuTUYUSllihKQUsFIccgb\r\nbjiAq5YgmGDh7gRPMoAq3xF83NlFwV/7pDG3Ul/uP4QA1Np4tGsgzG53WjyN\r\nu+TvxCrg/6eaF9EKieYHdNGzPCPR5z0Zaz6yOpiCLjRqHK64WX0rrqZaIPvx\r\np2AFpA1Fm09Crck6kieEgoOuRKMoTSSqynv326fzR2Qg2nV8fqnsGfEg7k/C\r\nnNvqLFtf1vyzAuTP4SCkUp25ZOeriNVEW8fVoDIYpMGLVyWd0XrQP5sgcTUf\r\ncis1TZB2dGyQLFoEiqQz+IJT9FsBD0WokLU=\r\n=Lknc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f4d76e5b934186717d0709daa91bd0ee97b4e581","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220326_1648278890887_0.014429068182203908","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220327":{"name":"typescript","version":"4.7.0-dev.20220327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220327","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"94df5e5149b7bbfdc7046e2ccefd37b544d84ac2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220327.tgz","fileCount":185,"integrity":"sha512-LYn9aP1y/J6Hyxm/jgyB/IVee+hXX6dwbM+BoMum9cj3gJ0D7daBs5F+m5VXkAEFTtnVrL3ZQuQhTitrlnNDBg==","signatures":[{"sig":"MEUCIQCG+HBTw8I4FQJfl5xLAj9qxp9//xuIQwcwKz2aWj86PAIgJfeR2IkH8bxaRoFN7jkf1+4lrOAUHGSoSAgE1lLo1x4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65321530,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQA8EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr7EA//RMHsqOPywqUoZFV/GsHWfp2ZGcRCDT4sBvCrcvp7P8UPvXPH\r\n9wd4CfiBy21bJ5koiaN0jre/65caupITlcy2vHOJvscQgyyKWZPa4fIyG6BK\r\n+QKd5MHWvArvPnF+SZQh6gUGI4WXVb+Z5V84419oLmi3VooxfPfDRClWu3y7\r\ndGV/EYg+k08Hs/H8VnR9lYrHaJELFzCI4TpiMMir7ewGd+dWaqzD8JBH+7nR\r\n1amXJjtPiU6Oj81bmULDwb4aqIDrHFxNkYDPFvGBczkakxzbD0e9Gm1/bhJR\r\nJzDmaBqMPLS44K0RwoDcZPLDxu6NPg5RI4MV2+/1E/mnGGyBuXjn3N5ZB8H6\r\n//JH/6rLdwIi/h2nDIUDR+biQSHjygjRC+u8+BHImqne8YFzvB17TmeamWM8\r\nYFgyFOLTOEJXnSaEXVUCZrTj+BcwwW/amhnUp13065JWSv/fi7OEBjwBP7X0\r\nNWdrM2Jxlkr53bbHs3yqoCI5yaSwt2WeocTyq7eZjG7DayzDvzN6U+yePZO4\r\nKnXyEwWNr/SE2L2+/4h3ETJBk+f/vb7cB8Y5nadwYL/DItIunE92kwwbImFS\r\nGGfQwlspaeSXMCAWvLi7IYul/M/K2gcC24GDtQqSPjfIf7h6NhGNKjdU0ego\r\nMYp/gFuGUjWmQ2GYnU3TlLXMhBb/uW8IkIU=\r\n=XdS6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1ed1a2394e75fc18297d774961e9fc1509c9e47e","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220327_1648365316036_0.5117962803873612","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220328":{"name":"typescript","version":"4.7.0-dev.20220328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220328","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7344be59cddf99363c3285c85572b7ebf530ed0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220328.tgz","fileCount":185,"integrity":"sha512-6yhLvkz/emtfgoYJoWcwLjH3ZxAoboZpflWKyjgaXGkTeGim5Mzz4o/zByBchqiBrrTLtCM9IPr/oqadmcWB4Q==","signatures":[{"sig":"MEYCIQCNauW+sds2KpxRK7ZpdyiwqL0aph6Dl0z04H9XjKRzgAIhAJIxkcNk9H4YvRwXoBfMnKM/nEO3itkQc+Q9gv1n53/x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65322559,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQWHZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqMKBAAmBgXvZs+6aaMqZ0XFqhbob+MVb2CgvC5tOp7S+dlthl7J7tf\r\nZVme4cqWNc7kW/54GxqynIL+30T/57IRd0BOHubqPwUZAiBY+3ZAQQMUKly+\r\nm2WDO9YKBJuRgSfDygNfEUPLedB2j/Xv0vuR7YzgTW+QUmFxLFnLoT2pjh2i\r\nJ9NCJ234THV41MbhoIdxnoqscHb3Z2salCTPXGC4/IJ6hCfwSECBFV/KR1/p\r\npcE9LP2tcg78t5qbPsWC6dSxYhNX8fxrPkPWTjNyZSlfOO7/HZSEbAq81OFU\r\nnbNmutOJCAGIG5YvHdKmv4w9hXd6padrbJde7TKVCKqe2LfOv9hxYpANT2sq\r\nOAau5qADaSF/OEAk25fn3G6iTdlV4u3hnGHaasCKRvTgWW+tTjKDdyQPPyyE\r\nW2jNKNe9aD6Q1ppIjspaPCjMpx5nUCVEPYhsuSIKEIowOoyHOQ7t6KKJtt+h\r\nFnprMR8nNHru4lo0R84Z/APvq6nj/AN1/oD80RRZXEsYcHfP1smKsiP5Xlp1\r\nSvYZ0MVA/WX4RWiR7IXFr6UNjS0LecnuumwpDQwZjvKVOZD/UyU7JKl2d/rw\r\nU2JYbkYHTybyoo+NNMj+vWLhy9LR1hAZO7gDU5H1KM2k7ANuYItHEomRKNXI\r\nf3PHPmTJS8wgmm2VGY6Lg6pWf9793Kr+olM=\r\n=JekV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eb95b32dfb968198a7d5d9d049a64deed8f3a478","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220328_1648452057557_0.5246441384954463","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220329":{"name":"typescript","version":"4.7.0-dev.20220329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220329","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ec170c17d4fc18230f3b67a759eb676494a8d81","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220329.tgz","fileCount":185,"integrity":"sha512-49bJbE8S19rmXN+jWRhXzWEHLPTpviM7k6qLnhL2zdxLodgzUzvzeG7dCWx1AxbGQ+F7eyKgyV7Oe8rcp8/w7A==","signatures":[{"sig":"MEUCIQCLyzB96HB4x33CFK28gTx3oRTHBrsz8wWsBOINcoUEEgIgICBcRfLAcx8eXfscpp7HnQOHe3Ep/yZBESTB+LF1rL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65320200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQrLGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqRLg/+IqH1Azy+Qj5nQMDiFss1HFCFKD4SgqBqX3aVqDHIKre5SrCo\r\nMBmjBBnOIIkKS2b6o8ejjTXnEVjUBUDzm6wm4Ov1K6IFmiz7iPhuI5iS4YNy\r\n1FLsZPMM9ZGasoJ4oNp5Aettz8mnsI7jjpxg2RubzKFEvTLwhyk5okBqtqy8\r\nEbhIl1R0GWMI/m685ucX4hxx4n7qEWBi354vrkjboAoGCAGvHyG7FV2jcWnZ\r\n1FXyZ7JCA2R96Uap4S4QE9RH8KMlrxr+Fao++s1WF7NqXRig9V8YWGBPvcfP\r\nTDy5Qm7Xp64xDdmv/zMl3qIYWJ69rrc5lN2iSvmmcOULHERA4anB4gKVBhxO\r\nu2lfGGDZXUGT5Y/aBcDQGrsebk+HTGIoTtKV5oloHaXiMvjNLKpC9zm1fnqc\r\no7in+5uljpKbRIZxaD5wH475g0j1xEgtIWg6QpgdmpcOHmV/otE2RWG8ZCyx\r\n09JKWk4ICL/3CjSXDZAPHEWlR0c+Owqmulow+PkxqzoqcRNhXbcqI2uVKJj0\r\nz9G8wh3RPg1q4pzlRwxX9lgZZ5PMhFK601wWSJeWdep2NIEIyVJjYpjG95Nr\r\ngeSPfvCHLhuvmsJfv1azLJpp65Htf1l0hADGMPLkmtxUT4qLfBKzgIN6qIoq\r\nXFpmC6X3a1YfKMxAASKMIPE6MTzs6lsLAN4=\r\n=dui8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d962091d94c8fa1a02a4a88c2b6e9809472a1509","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220329_1648538309883_0.38658469818765906","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220330":{"name":"typescript","version":"4.7.0-dev.20220330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220330","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"82668541ea19b9723169add13f5b08368c33246a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220330.tgz","fileCount":185,"integrity":"sha512-TNmxNhJa67ejR+va5t7dg0Qj/oWOtyqsA2K5IPrY/bavenA4gXNRPzJE/I9y/1lzTdLe0hl2CyREjSbeGBzKpQ==","signatures":[{"sig":"MEUCIQC/FHFtPPp1y1iP5QdxIzlFY5acMMKxK6Hih+s56t/whwIgDcbKT5o3kK3qIkk/49B5kyq+j5AYKpgnBjvd1TuIb6s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65375650,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRAOqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrY5hAAg1blOxVJx7X9Dz9jBbxwaWuxSTxYSbQQIQGIatwRQmgavC6H\r\n0BFePB2NHmiG0iCA5pKIHFn3bhhap6pjZA6GRhQL2CiFrJyS4oc1IqE+u2Hz\r\n3YJLIWfSUy4McH0dhR7E3DY6k6ZgM4spPi5grAA8HSq0KMJPeuW0sAYDRSKj\r\nnq6ncvfC1k1GYg9AsZAIevbhgpYv4EoRzsWX/lah7v2sjyEIYcrhOKI/rQS1\r\nQd2kZs8Mzqj2C/HfjUU0/L/cJfjOkONg3rlbAliR32m6VgruDBVyeYeIzdNW\r\nCejN4q0GywtBVbPunGej4h7fhHxrX5gTnNyZhOq/llYv5xbDAFsD5Y/VsvHT\r\nXA6MLfBmcK9/CgHch/Hu8doGXYfeFSFcRd4UMua/2awST4pC7dTdwPsYocWH\r\nO+OkF/dBY2Z+9Hd8JyAARYGJPQTz5qtfH+W85xFNJalR4mGuX7xYtfc3WxsI\r\nUnpLl/KWVQH2CJCHtK8nUamyHQb9IJfwx+n4gToKEWEoIJOYdmMfTGDFHgWE\r\nMepk/6BkCKi86y0WN9AhhwngVwSmJNFqXZTMNtg4WsCi1BfRi84WGAgOwwSO\r\nFFf+7TX5oZBEcFxsBgQC7bKAPip3dBgLVyaTkH7sBYqcTJBDDbkqKl55bNd7\r\n74crUhTrRNVpAJWps1alFARd3NUENGppvVk=\r\n=QfpO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e25f04a30f457c4d6da7c6e60946950d169159e7","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220330_1648624554482_0.8729771488076563","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220331":{"name":"typescript","version":"4.7.0-dev.20220331","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220331","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bb3907dd47041f2db1c3019a903c89c0ef845c2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220331.tgz","fileCount":185,"integrity":"sha512-YBVBcWV7K+dRWVj8Jxh79JJp5BSCxg71CWn+eLVIkicIWah29YIGS/OtZ7wbYfxgUZn0aA4dEDDq/mhEU7QcJQ==","signatures":[{"sig":"MEUCIQCuL4ZdixFlsvNiDN2ZhxlDeRDVghjsOtc+tDNNBuN1mQIgB0h7dIDm8DILooN+/n6geJ20pdkGEHgAP0kTC0ucowg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65402815,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRVXEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBhQ/8D9bph/5fkInUrnQ2Y8cgbEtH5i4/ZPGj54a2VsSLpoNicQP8\r\ni7Uiw+tX4zyZI5uDEpTHiCWnU/YhrifR0Wk+Vntd4uEqaIka2lMxltzSL0ao\r\nA280oVwtwyfmPAkrS+NcqvLLCwCMlYFYApFGKjcdOUNVzR6crMmo0vtFoI/C\r\n9dvJ/0VdSh2G9Too2pCPHkd+DkckWOxEAeMHHd0tvV0VoHXassOH6tYYnxCj\r\n39KMNyPswgYRMFt2Yt3WE2a2UE1q4JbCuXV04jY3d4MiZGCuTWxTCZSMpi8V\r\niPAFwkePQaF2oJnVW4ZGDhRj+MxkME9+/w4QqISh9OvwdiLkF15M9PMKURMz\r\ntghCtNiWAqYcI0EiFQY4SWp9yfM48tlTXrwxbEBlZjWyCwT2qyuIvPYwdUlR\r\nmxXyd15O/WGngAf5C16JGameheriiS5b6dlr5dMHW4cxdfeYCH3qXaeIsAOV\r\nH2vHdTlZpwa36XZm8I8d5FoxX29iQ6JqdxCXuah38be0n5FT8vqGN7E2bmpM\r\nWwUD31mDp1rZ/7Z+EHITbuyo9G5Okqnaxbro7lGUTbg5fLQFUewaTq4eiQLW\r\nYszeNFsGXCgyGaQCAk6g3F7XAW/zCJRvSxlcjy4zT5ue4k77dpKGdp/y8Ryt\r\nXrft68NfTr/+WlJhwP8VeqSFtLB0UlsB68E=\r\n=s2MF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fd601ddf20af2a69e56d69fe418d0f80905ce66b","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220331_1648711108649_0.22491243545359096","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220401":{"name":"typescript","version":"4.7.0-dev.20220401","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220401","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1bcd6de8ff401c7dfb9e9f071d18a89835caa189","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220401.tgz","fileCount":185,"integrity":"sha512-L6AjCHEw3nD3npBU7nMqbRJnfhDlupn3/sR322Ng/6h4z7tInP5u+8l58CZ05s91M7M808y8PLJMXHKbSZHroQ==","signatures":[{"sig":"MEQCICdPmWoLYWo1YafcpRJx8GTEFSr3EHZ29rabfXdxg3o7AiBl3L9R0q8r7kT3myxwF38prqI6sBiQ0JqqEdaCCTVAQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65404433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRqfvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqDhBAAjFsX/9ZmZj9zpJTghqZte8r8EEiJ3eT7aItoL74TezIxfEZA\r\neP3xK/RNQ4QirPrYEUdmZv2jvErQtQR0RxmSHCGRI7fnNQauIYeDxqa62fvv\r\nwNbo5bqi1BNYwlWKISC/EJMrofCFVUMfj+zHrR8XMTekgkomzFDt+gcsw5xM\r\nIW+5AbpYyw2krxuezmXBiKNA5Y9h3q2Pgk1wooQ4LPkPhHWEtKggOU8chXzW\r\nJMwlRO8mb6Bk+O4aMSYap0O9ZgxLZH3slsCRQ0oHuktqbmzklbns3olCzKA4\r\nyrO0ws8B7RN2TcNeARDRE+T3LJUm4LCjt9VFooqte9dSutuOAwiHRgOnzUfl\r\nWhT/14cs4mo++MvSKaFbwHe3FeZXyRosSEQKvv5dkB1pXC98gomeiJ0pM90O\r\nvhyXrupb9gJpJpL0XDxJTrgXmBBccbg7x/JypIDCHeWJ7gq7KZir6hvojB5D\r\n7sdnYSYi53XiXTN9sn7yrOa28O7njPaQcf2aWrXjAnmOryF+2CdmjJTbnL3g\r\nlzd/zRx2tqb/d1D2Eztj3kW4ke9UZd3pKIGCY+Odw97Si6yK3kxKhJQtfGF0\r\ncl22dpN6ZD2pRkY7K+GXhCljEUoBR2vH0nDmaCcKoyoUwkggT9hCxLcGWf+N\r\nt/WE58KeDKwpQxjEk9dIGjtkEnJVbVCUV1s=\r\n=Ce9e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"54fa69cb471e2bf4abcc155ff613ff9529bf075d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220401_1648797678651_0.8833244001832854","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220402":{"name":"typescript","version":"4.7.0-dev.20220402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220402","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6b31d23c736137088f306adaf349e62a8c1e1a13","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220402.tgz","fileCount":185,"integrity":"sha512-0T97mVZ2t5hF3K9uWWvLqrGByAwwauXWMTJ09AWQKPMyzyo5WUFJr/XEOPbnamPNjVX4YtqerCf8uf49XYbqKg==","signatures":[{"sig":"MEYCIQDbyAm12A0em2/m89cTZQuWSgOqjQb+rZ9qr9aZbvGc6QIhAN2WTiH31Af1/AgARrkpu7FnqkDKack0Z+kLY5AoKYwf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65405972,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiR/gUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQgw/9GBugScRFPfVG0N/qteDDxw+GV29c5qnewtsnRr1nDo0UeZ+q\r\ny8bGnIj1/2sOoL7qoL1tYTvZmCK7VR2JEk8PQKfmALwXZd2an9Oj/3XofvEC\r\nmMfP4LHpAWn95l8FQT8d7D0vtkauJf5Kb9YsxHRWzIJ6w/UeHsi0UtGLTfoZ\r\nqJIq0HP7ejFBe8U2lhgHrNt1CBzRAD7zutmoY41B3dZ2FGs0ZmaMuqe1J5Sx\r\n/Eur5VNcBFU+FWmEtPnLRmCX4+6n3Q8DESCVoyKHmV+GB3rXNTSFVvRcrfbD\r\nyEeXKUYLOCetjgfDkDwbImiClgbyv+1jqaF8HihXiJ9036+qZg7O+zW6HB61\r\niOCoHptc8iuSMNLpkxZTV83MC/5fZ9fWdbo7fgiRKOD6+ccUqDsbpyQWiqFB\r\nb4h52e2rFj33ByQuxUYjV0CjR+IFBCQjfE7MCPnPEsgSkfT5EElfifUby5hS\r\n96yzo9hA1C8BI/sP/9VX6tNdKJBByJyj2OGByRl99bobazXnrVfIpPejGTC3\r\njosMugvNAGh7VjwO4v3DguB7yZSOMFResBMq2PqTovBYKWoLzOpbvDXpGjoq\r\nFU18rTf0jnV7cDoEhYDy/j4gQPk5CS6aZnTduK12PjikJHKbdxsrXMIB+ugM\r\nO9FB+1WbLxE5hhy53g3ZXxU7IevNp2PNlFM=\r\n=dhJe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"337d1326fb67c7d8ec76531892e07990fb3871d4","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220402_1648883731737_0.043095800354290725","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220403":{"name":"typescript","version":"4.7.0-dev.20220403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220403","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2d6cdf9b6a6b1d7d168538c5d5320f5a14a4e38a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220403.tgz","fileCount":185,"integrity":"sha512-1kTFg2+08XMrBmgDDQVNxSmDWcVstTcNT+rt9JC9Z511ewqUYe45IpWSVdS/xSSTei3N5grakAVbSAhZO0HloA==","signatures":[{"sig":"MEUCIQDQps3enRBrKuSWsZKYpKuTZerZBWIuG5KMAMVf7yz/tQIgaqUzMbTH1fFifXWS2gcB7z4LEvjdS0RPP/pRozkezY4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65406127,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiSUl7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr2Ag//WL8+a4nNwMnwq8X4yOzHrm2pgLzq+Ls81kxSR50hEaKJUUzO\r\ncYEJW4IRsRKz2vcazCctpnBI3ap/iJ6Ulkdnc3+mmfMkkIxaCeUZcmRM66Z2\r\nxLDZxwvJBJdSfGHfPuCteCADqG7VOpDsXSIZ26h7Yj7SEBL5Keaj002RTwXz\r\nhWVBUOADrQUUWRTsMFxArRVDdg9MshZGHqVwKzynmS9N8sMYB3zzMN/J9SkZ\r\nA9kyyswcmIgCMsSiwyIRWhiL4VoCWACmuBGzmlN29J8J/vjO6g5lH/95NF1L\r\nB1s1fkx5n7jmM1+gB0sfBa6geTzm+uwJlml+0hFzEz6cCbv4xCiVx62+32G5\r\nQNIN7d5FJ2UjUMJtG391lyEjeB8mY56DGlRMwJFYALv2+GCMnxhz3Fr0Spx1\r\ndj5DUlH3F2kPNLPql0jsOIWBPKMOtXr8uX/7BWfGqSME1c5sRqwJXBuJKOkY\r\nCbNkzI769tXWE2TK3fX3hWavl1sNRZWTM1VQI1QX76Rfouf+WXDVOStMqcZC\r\nH9Bzdp5EuUcrp52T0MvjZNgTWe1GmSYSUKMgufhetTXvu4nqkTbo76EnQSHd\r\niZ3+XGgtJrofB+tIVrqug5SNx5eAQ+l6BRIvdTwG+jDf+F1KbD7RCXAnhOGW\r\nJvmm+KytkiNJZuczZk7fC5zKqa6T1Elw6uA=\r\n=gNhu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fd4943bd9c0651f098649dff8d4677d4d28b4203","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220403_1648970106932_0.27571192414226475","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220404":{"name":"typescript","version":"4.7.0-dev.20220404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220404","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"362c8e9cae6f1734165a94d8465024c99a63a925","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220404.tgz","fileCount":185,"integrity":"sha512-mwDmc7qyaMDaspyaXZLK5W82M8fmvMf+4Eo0jWJBKcLNSPqQl/K50jr0/Of1LETKVoYZEB/G80aBI/MRyHBwaw==","signatures":[{"sig":"MEUCIFwICrAQiCjABD8BmWCw9CH/9qle6zduIpneiI50lWFqAiEA6BdKZFWZGEoLurMw40lqnWhiJurBBX9xeIE2eiiQmJs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65406482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiSpzWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqB8Q//U3O3TwOO+oQ628hlTmqmfSOSWfNy1PazGYEhGFWuL/KldFkK\r\nsTfvlDZFmOdFD2VVuUHeEuSNnCwnF7sjP095q6hn9Ee327FVWvvXpReoYYjC\r\nXp3x3zb5SVpt+i7cuwPIXdWIwAhoSEFzGC00Bzk7ZvsAuCoCnkqQ6gepm6Gr\r\nxXfy+b9IhmVg0AAN7r/Gf9mpDqbMe0EQEjbcZBNVDvqRYH80YUQ6HrAiHSjE\r\nLaobYo7cPEigwNI+6d2uzYvJjyJDAchTrT/JX4UHuVy1+Qkln+eqEDlp1HMV\r\nnrCRfKltd+0eFHoXjuTvpfFe2MH+2NybF0zFZMAFjdduO5yAA83hAVW19aox\r\nOJqTLxpAe0jtyKs0SHh/DNRa6XxrMMBvoJpZKHw6xWXR/6BYH14N7vgFazXG\r\naMhj5aIhz1YnlbCwuwdZ17rk0ItFKo2UYbsfwzOgbYtn/JCag/3UDOkEKY4T\r\nPClIp6VKEYofBKafsze9AQZZqjFnA6p3PYaUP6dp+zVedUACADdQJvxQAOaT\r\nHYYOAj1YT768ymkyAiR9oWGnOAjbWHXQAo0Rq5zagM4yZdtlYVULPusXn+ln\r\nV307pxNk/GEWFV16pG/UieIrFoF+hG8OsaIrT59R+Pu1jB4xayfHbFiL45gQ\r\nP64uBl3VT0KDNv3Zc+jgha8JJQ1Hk5ev184=\r\n=wMrd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2db17fdda212574f29d06c08cc35b8668258af51","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.10","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220404_1649056982121_0.13917252714185757","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220405":{"name":"typescript","version":"4.7.0-dev.20220405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220405","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e64cbe64f20c46a978c818919c0a07cc742844c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220405.tgz","fileCount":185,"integrity":"sha512-eZ+4zZzog1VweWlCXbyuq9zI9h7HqVxvfPQip7XlhAtpPeu4Hx4fj5YR6pgCkDGCK8ntFmmU6AywuIwT2P1ZuQ==","signatures":[{"sig":"MEQCID2N+CejSot+wBpUK06/b6jSsDUUwm9npXiN4oTD78+oAiA58RMpRJ+/EoN27It7r2wgKM6FJKiM9157+bd65a39UA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65410189,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiS+2OACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpJMQ//R1/n3sBF1OoabwHvW+Gw2Lhu/RAHsTOXL0sRLmS0y/rUPrtG\r\nx3zovGufqOdPhAwpU04aisdPbZMuP4m9zpkWujpySV/ewETmFMrgY/lkpCUN\r\nsMjz7wVhaFbJkODx2jZEDCvFuZfq/MPsuNSZg7W+ISw+JrjAemR4vscpJc8i\r\nlQyLw52PHs5H2RBYt22/o7IwnliPwBe053/UwrC1TDoHKTPGkXkLQEFJTWUv\r\n7Ed920I0N6xARvnPUnHg9McrV2xGxesWovQLCLDuoJXL2tyjawdh8LWXS6pi\r\nd4Dpc6xE37sPPQGdkapFTwk4wohaZST2gnFZZ6EAZA5+R0qLtoo8VcJxCKox\r\nar07j/dg29jB2evLlPd8yzCOy1jz1dMiyDX+Vk9kfPkXZgS7Yx18RlRVQSdL\r\ncJDNT2Oxy9nn7X0KZACvTc7flYsEPl9bgZilTt9mgBy8RO7YkAuKTmy9tLQA\r\nlDwbCr54sAe7jpkSQi33NWJZA6QsuALYufoMftAwxxfMKuzB6UkpcQmb9rT/\r\n/fjurbRXeoJVDTBra6qCG4aZC+PwysEFYAqP3Muy0NJvvDeYcTN6E9urBgzH\r\nqhTh+cyHY9WqWlZ51QPgx3pHtL36yj+UShKJet6d402pCHvVcg8Q7uwKCFRi\r\nk9SzUR6zvGYLPDXHW8ZPSa6b390jPaSRm2c=\r\n=JMzZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"25aecd4c3eb645553445657abc2533f2c929e3ed","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.11","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220405_1649143181796_0.46650888988193917","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220406":{"name":"typescript","version":"4.7.0-dev.20220406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220406","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"35a98c3081491826343b01177f84ecf4018e656d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220406.tgz","fileCount":185,"integrity":"sha512-keoDBX5MLMgonG42c2pBNMCMwRgxsEs2U7xKHDP0PmU76BzNuVgqR3JmwWwwFtTQJAeEGl7VN5GPYLehOvAz9w==","signatures":[{"sig":"MEUCIHnBEoj0lPvj4kBq7K8U9ZKbpLD5aZCbLGztok3ZkvHdAiEAx28xVO9G2iSv/AUswg1TcxR+Fw8htgfKFfbUz4U2GhU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65560801,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTT4gACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5uA//Rt9COxXqvndTSQgAViPBRq31litxEcD8zTI/P/t8UDPMQTRt\r\nlAx3eaDgRBAx4G27BK6CRs7dwncJYRm/nQBlyxBGfKBgXdgcN/ZewNcq/Nvr\r\nAM+n/qy1PRmWk2mxBlfbvllddPbPoyxWKAfNBGyxEB+7R6i3wEA7CKUQKUP9\r\nk83pD52uvdGurxe8vCBcl9ySwsetj0TtPkszbzLUadasTXGn5bviqlqLi44n\r\n/aruCVzOHdtFPJWvVb8wmw+fnZyyzV4v0/hPaRrsZz+e6dA164fqvCgxrQ2B\r\nOmAzkkEAJpJSAXhQp4RdaCVyjpCGrlVA4yhzvYsgZ2GdKWp9cTGxC4RoxQFk\r\nBH4A4xVIb3wxZeqQ/U8EPIt8Zq80f5+JW3eW0HORPfJ/PjYbKda6Vd5VKTcx\r\naepfaVkTxYu4LJuaDDbo1Tyimi9tQFRo1f5axUFKl504hjKzVfKiYaUKaAMr\r\nTZ16C3Z8QvxcutRzBW4cnHy/FWK4Lw8Vksryr1CoqehN8/+/i0PhgzO38kzH\r\nExS2l8GK9CTlEyG6/YlSTJSt16iksF5fJu36sNbUBqKhwdhidwyrQjSDC+hy\r\ni5+XHqKgk3iYI/HYS+z2GvUabPOlV1EFoZSYMlCr02/p6cUWyzV9PDx6Yp5O\r\nQoZAqrN41C+wfQcGYvPzdPB5yfZZ0u64igQ=\r\n=Ty3Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"16b6f0f53388b01fd383ca75474d2503e7f455dd","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.11","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220406_1649229343721_0.5979466591877791","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220408":{"name":"typescript","version":"4.7.0-dev.20220408","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220408","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"52a049ad6c3c78856935692c3fc69aec8a40ec6d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220408.tgz","fileCount":185,"integrity":"sha512-2KgXRQXrjFEbm+ismaGoR803nTRQuc03XQ1crnlxXvQYIXasPiidwiczLc9i0rTo33KXIN2M6YiNtn1tZihHgw==","signatures":[{"sig":"MEUCIQDfAsve1jmH1wDIiU7BUIjDU5iV4wMAChjH6i6bRVBctwIgahX2xT/twzvsoTpZQe+bGqeQ6br1cKaN0d/B96OdFQg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65593227,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiT+EaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqGYA/8CCHPIhNERHYD6Pfae/p7cOWmuoRdn/0FCwQlyAKn246TdYFF\r\nyPn16ryASsQ4ondcndYy1DTto/+ki5/RzenuBg4UM0ddguhdUaZxRekxDYUr\r\ng2SDHBztxszwrDkFz9o1wPHMKtbdN0aClzvrMPjYE6trR9EMPmdXBRVOdoqt\r\ny0MGa4zqlurDOALz2gHTPS7zrNQFoeDqCYrqT3c4XVH+tvLrTSccROSXhqVS\r\nx5hgYzelGrYQv1noEJN5E0yWmS/g8oe4l41J6eJqJdxnK0Zxdq1wZ9B2GdkX\r\niONC1+NLm4eXb0k6oeUw9m6Gxdb82Zb8c+xJy3yDAv52E7+8Y4VgjRS8Ftcv\r\nawOVBRGlZ2OsYVcnaLjkj/MQefMYwVyqqsHkCF3U7jjjRm86Fbn1//f7p2w2\r\nZDzEVxR8s1dMYlSs4t+hZSXPt6YnUH9zHSPi8C9Mss18OMIJtUn2OBHP4bm1\r\n0T/sjIa+oSWktbt29isVFHoOcri5PwjP7pMCL8iVDD25JlV8x1l9KJm6ZGsJ\r\nanSBF1GBzshp1ydGiSW4vJuBu5yeFGzZYVlQO08l9hXVPGpJOjVG4SlWK0+F\r\nnhjYW7cxYG3vPCgeWKFUklfsLJWaBIEbe+2SZGMwopUS34aQ5hQUMv2EcCSC\r\ncNed0jH4HoikKzS6sa9hXYa5BCHZzTEKR8k=\r\n=1LO0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b45cf0d694401aeec9023f731e5da7ad8e418f71","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"12.22.11","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220408_1649402137823_0.7726992747057095","host":"s3://npm-registry-packages"}},"4.7.0-beta":{"name":"typescript","version":"4.7.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.7.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"15952f24d4177479ca3d19f09436ad8c69a30563","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-beta.tgz","fileCount":185,"integrity":"sha512-m+CNL8lzHyHDxYYDTI+pm5hw5/bufYVGan2bokPyJY/y9C/4W/PCWMtYZ0vV9fLXbEL57elMeoaz9Evxs8UQ+A==","signatures":[{"sig":"MEUCIEbtEWgn8ahf2hcjnhHfUJtw9/b5qsdUjS+6B/EDG2/yAiEA1cJUoVdA03SfWxP7wQ/QKlBT5JXbQbjdAzvd924zclU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66805285,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUHDVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEOxAAne7omLVldwblsSJqhNWdXfoLQhGnooTCm6I0MieVpCpIKL67\r\nwWPhYCSO58EliXzuyAcWHmeZVy69B6S6NCnmtnxLS/6LnFbZlzAt5K/O8zmh\r\nmLHW9fpi8Hq1G4o1XlOY79lR2EXBFb0YA3/QgigTPPWps4NXpwZBTX9Dv8ts\r\nFdI0hgzJgYC9QZaUIMeXMjib6GMdpJCqG+OuJ32bsjbQZCDwIV71n0GXJNeO\r\nBiwUKzOKkX68bW7atZKJzYVbd5TIgFT5bJiRtfvmTkTQ4/1cKlCL/QPWNExD\r\nU5SvIyxhM70LBuknHxWRPorxcSSfVdPy4mENixubyTJb/UJ65VZvZfCK3Fqb\r\nWFHsng7Gecd21feB8z36Yuij8mOq6uL+yAb86GOv0DOYlZVxgtGgSb39maqQ\r\nGQhbuHTHMsMy0HzMLU08Ry5IabGcL29F8RPANBjIV+EyawY6MR5citashHla\r\nKT712YRlP3jdcTQ1Zn0UeTuasKPVUSwYtEohq1XvDsRs5fQjJa0tH5Fh6muY\r\nacPxORWJzzHp0Eq6GE0VVBs7yXEuINP5DbRWGWPOkBZQvP0BbhDSHnjxMaZN\r\nG9ZAXsUM2iZ/e8twEGiwLyKO3Az3FqWMUhmg7mPwEu2U37AKipe3iRWBdCba\r\n0oAK+8qaVrqozjbQDaEZL9r+1ftH2PqJvqU=\r\n=olTc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-m+CNL8lzHyHDxYYDTI+pm5hw5/bufYVGan2bokPyJY/y9C/4W/PCWMtYZ0vV9fLXbEL57elMeoaz9Evxs8UQ+A==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.14.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-beta_1649438932822_0.8334694335764139","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220415":{"name":"typescript","version":"4.7.0-dev.20220415","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220415","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4b473c8217fe62d41743c4eb996c71e8765abe11","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220415.tgz","fileCount":185,"integrity":"sha512-z29SdimqisA560ODjUyM7ZYj5behBCzge6HmGBzkVr6zia28HTFeZORehCr37e8Hw1IlsULE4uz5oPwuck8h5Q==","signatures":[{"sig":"MEQCIAYWWpldfQxDVZtSrggYH9ShVxDzDKxymc9P+thyLwOlAiB9i21nE4rEqzv42FlUxHMVBC2QrmrD51P1ZR+lSosw2A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65664798,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWRxnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpUmA//eHng+2A+d7G0Okj9g14KTIdHMVZSyQTYXaFSe6Ca6bKvEJ+v\r\nycKK0DDVbOhvGL96zTnfYq10TIDzwGQZm/B/wGYsLaF8SbRKTaE4tNHio+4p\r\nwZIwAmf7aWwG7em4Dt5X1TrsXzlf7NKzwvLO7rfM7zjU5y+HTH8VtYKuJGYV\r\nslejq5JPRg4YmtukU2lXFBNv/rvFGhGjR/Nz6GTuQyRc8KPXXKN3J0GklVCh\r\nk8QzqRtqiynHfQZFKyBwfqu5ncpFrRvEpXKmOwpbQxS7Nm/jNEStdVTpzt/r\r\nSBjR8kQ+X3tmut7NPEdbu3CEpV/bC1KQ3+5JrNHpmP5RSzSssy2tDUzYDlZ1\r\nXScO67i/+kUCHNMa8zqVq2CqVZIQnQSgnAGleF1E17tnYxDLhHvRiFMWxurs\r\nCCT2m9PjAQap0eCvn+DRTaMZaL8NUskIj0eIgcJzKAgMa5gX5GcW3m96rjNE\r\nreMQoObLwHRkYnGPYiRrno6hFfzsRjbFSSoX1mDdsr3FU81xYklY9R9vWT7g\r\nrWZevjV4A8RgAg5jazfW47nkl2hFAqSMdE6F9kd8mzORsj6yYtcLmoHR66kV\r\nmVgnp88Fo3pIXOrElzna0ISz0YBEV3zHBrNe/v4lfQifeR14+Xn+pTXvRtUt\r\njp6M13ZuRDZrN1VvOQwrl7J9Pjx0h5DOmtw=\r\n=I8Nw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0d9a4fe490499de6ec4b8a399ec96645b67d99a6","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220415_1650007142736_0.28736785612778126","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220416":{"name":"typescript","version":"4.7.0-dev.20220416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220416","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e7f1ba7cde7df071211ea8a5d40bda3d023b2b8b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220416.tgz","fileCount":185,"integrity":"sha512-kLTJ+78UAvgU/f8S7EjoS5OiFP5MVcaRsO96jNXqKYnv5gT8398adbgll2EWf9w4ANDWJUo8JJwx+rKqRpTubQ==","signatures":[{"sig":"MEQCICtvPk/oVhEQXAenJ3GZqdKloauOiTwCZmDtJgsMWSf7AiAYtLqvkrSV5V39OQ35HY5mnlzDE/yQLYsKew6+3XBH8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65659388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWm3dACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqo7Q/9E0uAWpiErQjz7evPa8GTHCx1PkLw0MrmKzkV9M+rnvnbXzsw\r\nBJSoPb69OpEJJ4VM1afuzB0jBnf+uLlvlfamMNOY0pbj7pxrqqiEhbTm2YjN\r\nWLk4rxvVtdQ4gGpPah8bwmy2y9PmWt3LA2VUniWSUEenUibRFyaHna5C1cXA\r\ntDACtDu1Uk+vBuWb2OjUKsr3LnKlZ/ZOFcScQgTtsuNltVveQxuYqDeiXPFh\r\n+uiae6X83AweWW6Vg2PoFkgcTrYmLOAzKP2p1hCNiFhYfaiu37ItsBzLAcrq\r\n/E30MLWfxHowHQVSLwBEUlkkn6J6sbGUWqWQN1wIJYN1XNHHKTSQBM6qM8dL\r\nvLCAG2RcKqmc22uaZm40sNxQWinV2cN+0Y+LQecjv/zTksSq2ggHmUjLhhEk\r\nVCK1paLDuvhpL8TBfU1WjvmlQIe/xCnqSxpU3rOnpIcJkJzDWO5646ZRSKG4\r\n1Pbkr59mpL9O/V47KfXNTC+WPIkzhJaCupzC/MqsBt9Mbr7zsM1otjCeFjHr\r\nmN0mvhETMRnIDy9sPhZ75K5ZwBHvAFG1UAgyH5M0Vp+Sfdx0Kqje/KsnkrLT\r\n5vPhqMRzmO61XdObDVk+G95YyENrBSIE6mJDZPrkKAtISKnk/mlsj9pv+IFF\r\nZPElAM2XybuvJsaWwXoDfCMB96+CrmpHYsI=\r\n=19ce\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"56a4a93718ce016f038bcbce425bd3f47c3bec78","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220416_1650093533145_0.21147492625356978","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220417":{"name":"typescript","version":"4.7.0-dev.20220417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220417","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"04e3b161e36b02c6188b08022bb5c8b72659a757","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220417.tgz","fileCount":185,"integrity":"sha512-wK22mbVpNsm0NZFQzvSWO36tGjxJ2iQJ4dG169YfQmYlxcNZ5UqcQZ9SR2hynFYepXFjKPwdLHDRwxGPIbh+MQ==","signatures":[{"sig":"MEQCIHtwrhskEntvWTa79kVeaxxmbs7iB1T90j8PUHEp8FIuAiArKVLan/oPinT2ytzxd6fTzHzsRQ6W9IKaJhJdma4ADA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65659388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiW757ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpjQxAApHXLEK92cGxBG4HWmD3ikB7VY7lYkA8xkA/0CFbtChU1YxON\r\nCehHiFKPxlipTw7J/Nzm71ycAC2Y/unAwV5jdf1A2oUF90XhgMjFnnxR22cw\r\n0XyBtd3lP8g/T9Sr5vtC5H5xen2lWYwMnJBJNh/EF1lFtOOYF8XqOw/8DiQH\r\nO64GwqZlbI+LRSxPzNbwbseGiUSHL6M8CrOKDntWNA7Qwi95WO3rR1afPUGy\r\nVAqxI3Xw2kvtkdiuGAGUCkNmvVitx2SAtotJtnQIF1i9Q9ujP+0EgTDZMd+d\r\nHgwuzu4jdbDywdrsZ+w1abkzCqkfsEoAImPiUHnKOWPdcVbvU0JtDyfC71ua\r\n9ZY6G4c6+GF000CIaoHYlt4VMKILjWCQGNizlBQOKUpHXK3f2an3wTUxgtXc\r\ngfYOSrUhYC+KCUJ37nGYGgvVna7WapeBoNBNVWkYLtfvHe2Z9T1kKCb8vnAz\r\nUxLXKsg4+ZX8khGsLloQg5frwBvTWOdt2oiy++oXxFFvM3sbjIMoNEditikI\r\n3mXxibVLWhx8OdbZ+ayM85Jz+ok75opffq8AjcQES23Tk4ECmA/s6bkqfBaf\r\nN6hFLZTcWpNshP+Cba1DwJYP2fQzdlAtr9NMrk4czFGjJBKmY1YjJlDzcf4k\r\nkfn77ZLjc7UXlI9Gal6cwOPpYZvvvay/Vqg=\r\n=4z83\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"56a4a93718ce016f038bcbce425bd3f47c3bec78","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220417_1650179707120_0.619591303867173","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220418":{"name":"typescript","version":"4.7.0-dev.20220418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220418","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2eb6a4ce22da3e5cb6655677591745bbdd093aa3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220418.tgz","fileCount":185,"integrity":"sha512-1V703WHO2gxe96y6sbNGcqalsTCjHozhETgBtXt9Xl1EPDuXnQamiPH8lskapJwyr/VA+NMfM91BN5hSVh10Iw==","signatures":[{"sig":"MEUCIFK1kF5qH7w+IRalMNchSJtEU+3lqosD5p3ilBtFTXxSAiEAu1B1sGk70gBurLQFONvH4YnMJKLEShRaAT7G2Z06xwk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65659388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXRAdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4qA//VYHnPKFr5rDJ97klTee1Pdk6UuYJDNNvOfMCV84TT5yZ0T7f\r\nWkyFT6DUJJFBRxPzDU4VjP3uEyJiiaxtM27n+Fcx/Q3ua4x5yGAa/XIFfXbd\r\nBvUKgYfTkFIPNDBVH46uIU29GoTRcNF+fh1T8x4SzPAK07+wHXedvCCHDLj6\r\nCSajHlyW1GidbUzduaU3e0tBjfeJqV5AZNpm3TgH4sUHs46oCyhfSGp3e4I0\r\nPdfNJfESoaSOs7t89QN4RbWnoIcNy/SlDYN97OPdwmxCWXhWCjeCO6jZnA5M\r\nm0DAPLZZXh6f9icV8WGYl1x9exmygbqOXFFO9qxqXb52wQMTtqkDvb+JM8EI\r\nYvANvhUPWn7OaeXv0StG5eF1/9Mv+HHdvAf+N2ku9Rad6GQFsSZOCqsKBZU8\r\ngZyGQ1CdQ9cydnF8BblDezwAfPD8COon6k5vBEelqN8JdqBUCTLS63c2MCgG\r\n8lEHQLbZH+Y0UT7ExeatzdIjNI7FYhEbTfs254Dn9I7x45WD6+SnMVjs7Zjv\r\nVAUWYwVUk0m5E0WkPppgo8f4HNV3n2XOVHj0owbHXmX5Lsqtp94JBrHQv8b5\r\nF2mLcvbuP9ccotSpw/ujjvRAI6y7z0ICLGUY7+jVkdcS4f/L9lMow2AyC38j\r\nMgPZ2ow+atkzbGHUK1qQpX3+y46ZmFq7268=\r\n=FfwN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"56a4a93718ce016f038bcbce425bd3f47c3bec78","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220418_1650266140801_0.6362721341249953","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220419":{"name":"typescript","version":"4.7.0-dev.20220419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220419","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c9bc57a9f4e79ee687ac60da6a2170bb3b482467","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220419.tgz","fileCount":185,"integrity":"sha512-eqezQkTMfRDsbYTW3vWImen8yasP99iykbSLr1BjF7jusxmnvfOVWzXr1zsf+0+FWufBLwpa0rpZBd8TZHWmxg==","signatures":[{"sig":"MEQCIF/bCVhk8rsqE/Epuo6yFbBX4lH7YkoSLceaBBs5SWD3AiAChMaVmra7RzoL2NB38opVpoMd9MJUO6KU/Sr6SRbNiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65661660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXmH6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmohABAAm48JvfEqvtVd+TiTXcBJzrgoU1diAW2k7jlpmBq4+FocRaxM\r\nYmundzRW9sHOZWE1fm4fFXz/kXBD8jyuC4YYeIV5rORNDJ05QwIQqtbHFGXV\r\nbIFvTvPWIOOITLhjFywfiggBU/W5dHeYPffZ+IijNICjzb5SM9UUhkC1ev7f\r\n3i8sj+1CtpwAH2+Y+ELtPS0s3nBaTQAddC5LnCPEylvzRoJN0G3rxmXCdRN3\r\nmoVacQOUk7SxyY/EmvcFp4pRn/ef6I/25jmSwyIcQrIEJE7Z3mZfeOD+nuy9\r\nG8GwuSA1wVDJdXkU5Wz/nTo+Jc0cS8VfrJu1cDdPIKPyfocyc57H4UFIQvxy\r\ng7dmPdbAOZkeDE+ChvImcLAyzhtY/MuT2hS9oOIW5bz8BZXCuwmE5u5MHdMY\r\nklJ46NxS/KuSIKT0obbVeYs1nw2XHPYJhHY11A72E2HvQ7T8Vr00Ic6v9Gf+\r\nI0CmpuhkEJ7enI23MAf1r/PQxlT+zr9xxmzjP2UY8Fgsk+Fm/ag571QYjQH1\r\nWgtUa2+SKuf/ripa2n0K1pHA1467aBXIExGrmizlQASSOSpyc3uf6yJOFdpx\r\nJBScp0HjePpKtOtLIeZJfluww5gvbLfVbWGBMgNgRRKqSHYnobB2XBFbSPRj\r\nqWKWBKh/q5l3pDPJWjFq/hZOOZfYXZBP0NA=\r\n=Q6f2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6894f913ec5c7de25f77b121af7323ed6b8eae99","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220419_1650352633658_0.8252019367749173","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220420":{"name":"typescript","version":"4.7.0-dev.20220420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220420","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1857c12a6a4dc8ff472eec46c630738020f65bb5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220420.tgz","fileCount":185,"integrity":"sha512-6XkSSHtTW0HA2scATG0w+dYvgpa7ndTWXh2+4o5anGJwLoUAftshebl97I2EOBbweo6mdWX3v9nCZHkvizGUvg==","signatures":[{"sig":"MEQCICsf4kUbfJ2ZHWYz40y26On1op23aePBzdgXkeytuODiAiB7szS7FqRbAaRU6eMulltgINMghwJ28nReRgdcYD+X8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65666504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiX7PPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqGlw//f+Ws1edu9nMWtqrnJWXd0e+PKSzbZ7j8//fsI9UXLYdHqsD4\r\nRaiUriNFn5+AWSGI0ujo7ove7XkUoX2JjAmkbVUUrJGAuom7xqWhDacqF1ij\r\nOz7mw9fcLXjEQcaAsoWyB2GiTuWYGauCtilqLOFFCbJjc4gGRCL5Qgb0+eCy\r\ndniOxxEjOOXAOv3PMNUz4bFl+ghZ236HWImKRK5OuKZDenSvtg1Q3xjIjnYt\r\n45ih+A01NGeHNkWhFTv8I/GrojngbpaoSSffNLjB4PwMnR2XUf834OMESJRV\r\nsy2UAt/DeeVeTiwsfov5KRMxGNHb2AOoPzpqsV2ViO69Oica9o2R1Xkteu0H\r\nIXbbIAn1HXiFR7jgHypAmO7Lqyybb45iK8hBMePY4bS2caFmSebqiO6HBwA6\r\nrbYNN+Hi+ecrEnwHzktN8d97rrSVK64xb4jJUgP93ErBEmVaPK3fR3SchZS6\r\nibqRi8xZU49gn7RbPHJSd12Yw7nwvicCX1Jr6bc4QJ3IsCFXKiixQjlR+1OK\r\nuV+byQ0JKuwHiv74RiJ1KM8zluN9H5Y2OtrgWvb7Oau+uW2r0YHtigQ8LZEZ\r\neEsKNr19a87vzBnPs/Cn4cbnV/5hN5su95rfPArEdMUQtbDoMGyrQ08fmTRx\r\nJs5jzaSvTDfPZnglesXbdARNDMtBxQYSVm0=\r\n=wqb7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ce487e4fd37cd8715191e5f641c08a120de90521","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220420_1650439119508_0.2735641329815297","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220421":{"name":"typescript","version":"4.7.0-dev.20220421","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220421","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"34d0a3d3aab6e6394d75e5806d80ff85846110fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220421.tgz","fileCount":185,"integrity":"sha512-SWMETCW3SwzpCE0eyfqqUDeiKV9hJIs/g4eT5eQU8qv32lk9QNrH7+4n68GTZNiX3bBfHfEUcuh/04afMDi3Kw==","signatures":[{"sig":"MEUCIFqNpznAy2P2HyXLCQJiKupNCtzd71C9JaORkaAHv0CVAiEAuCMeKCATX+MkxVmwL44Q6dN9YRD+1FNUFuGHb4gADrY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65671854,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYQSQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKtg/+MdBHPllyDgZ/S0gSmO7g/SiJsqVGpQPsbWRkvuDGJ6GdneCt\r\n6zYoXs2gfbqQQhe7jzcnNLmdnmeIgEcEshP9oD0mOfjg5uUWeAyIx26uxDlK\r\ngfQmDRYr0+eA6KMyq11MWO4wyfReltaN3Mt2yIorVBHZZEN7GVPzbg5USEWO\r\nOY6hJxWmIYrY72K7NcaKK/hkHOwrKbbKBWFUZSmTQa1LVPu1qZ0NdfOnwfZx\r\nl93XJpwCIMb0b6lvSlr1LsXcbO+rSFFzpL/OT5a4MScA7q/XxusaKsoOPN4w\r\nNDq4+ZSSGaQY2YdUrr2/T12SWNyteGGo2k76MlXRkusZ6nMcrw4AHpCM/DDS\r\nMVV6QTJNVlhfeT9WXR/Ajdy7SsYhFDyCQbzFTzhTzc1NBgKGFgCRqj08o/vG\r\nEipwNdn6iO2R9a7WftAkuaZlUfBc1lRvTn6wGK6/Zxl45MxVAzy6h75Y+X6K\r\nUQ42MIEET2ckWEBWzak4CKW0DjzW4S4TodmdNGD2gP99ydga7z6pVcpCVjFD\r\n1PLuL4XePjpxoO13EG/jMxeMtMgNxRd2KuY381HQY2BfoU+3osyIIhLuefDn\r\nEHQ6F1JvudMwjvTDhXlz/TwDx4v2z/xaad24xYRMkca4f61Q/wDWHaZUuxCc\r\n7nFc9rG+71bC/hMiOmjIWI0M/SCY2bI9Zg4=\r\n=6dJm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"45faac7e70174d3738c9b5e290a76a4ebb67d518","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220421_1650525328449_0.608131627821543","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220422":{"name":"typescript","version":"4.7.0-dev.20220422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220422","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"19dccf6adb94ebf87c5e1cc13d85ee8b5c54621d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220422.tgz","fileCount":185,"integrity":"sha512-Kqw1BNhbhJ+Gvg+Mydh9mcb+hCHfoflVpA+H6pnSdcUxAT7kLMj+kna0IX35J1cHsogZolaiLKM8G3FJnZcURQ==","signatures":[{"sig":"MEYCIQCNcqfTS/1bwpBErlx78k2/1nS/RrWuEYvq31EAmlX4JAIhALlNQ3v8vp5iTOdMOgJRs8+G/V6UPfQDk6O/5yJIU3C1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65700868,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYla/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrPeA//TNlN2tU6dYW3QZDVrGyTeGeLsPNAePFwO/kdQ2OlnTlHzLmc\r\nHCtlxPxkm2oFnqU5/kgzBXdABVwyiSdRDuHq+iaNxvraWvvym5y11/eicKfY\r\nrEidEuZk9OhbyipdB/X2GS39Qz2c0DNKSQl84dAmi1p7DcrzdHZxcKB0ossA\r\nXcEjg1Dkv5FwIp/FPRQSHfwWO2UGTINOiv66luatdcSacnUT8hSjrfkUEhHl\r\nBq59kAMFSFYq1WOTpbspAv4lerdZA4pCsuGgNfthGY2ilP/0n2YV+mm6B7bR\r\nkWwtJ6H1XvVG29gDabejJNEE66KXM563pg/gg+YTGrgEVmOD/1TemVOio8w6\r\nk7XbzB49ljHnLOIeH4Ou2nPADaUmtERYBz8BakMKzwJDqMdzSGOQWnAmNIRq\r\nujxNxjJgfvNIBHJlocfBKpJe1cUfZfqpOCTVXF17+wv3ibg+uTf1PA9NbDF7\r\nqtAWMrsMwn8NCZAQQDr65ajzHNjZL2dL3CpgWt+jBn+dPoLHcdck+ySt8Fxi\r\nGnYcjk4mzKl2Wzs8IaFXyhe+8JH2YrBSEP/+Ot6ZaYzKQsW1rp9bMdSdVPmo\r\nCj2MGQlQHF0hYbrFgWTRjIphiS9gcBWPxIdRUVr7Af7cNN2slAC3Dx+RKw8C\r\npHAVIfApd5pqE9kT81i1XvYNGJ1sdn0lyOI=\r\n=Qj7T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"71f94c5bdb806b1dd835cf5a14bc56413bd62cbf","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220422_1650611902641_0.11998375081368695","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220423":{"name":"typescript","version":"4.7.0-dev.20220423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220423","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf524a738ad8fff1d2dbe482c5c50ce85333f937","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220423.tgz","fileCount":185,"integrity":"sha512-NxH+aoFQ+CiDnU74u7GIHMmwGugcKNmEUKTW+N/u+v+1glHcFUyNspC/AuZV1FZPUFFS5zA07L/+v7nSuSrckQ==","signatures":[{"sig":"MEUCIQCDpKVH22kERy/m12DbRpkZp13CqEiQfeZieVLo97QOQAIgWJL805wEPOLskDhHdBlUUfMr3MlFpnC1U8F28DpSRRk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65709148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiY6dRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqmIw//WBOEx7MWhI1td8EbdxI3Ow8nx5iK5m0tltZlkTxJmnQZq0uN\r\nEWJOjxMhBIEneXX0E5wG+CUQnn7KlinKmFb9FAPRXPVfhVxAfn3qVNJueZ4w\r\ndfYF9zDluqLurkhnQdLYdI7NdOr4XoJrNFDmqa8j+Da3IiP+Fd9mso+TVqwz\r\nc+jMnDh/4YABju2GIk3kKzRs93C5/zZNsjHAnEX1MFU7A9HdyfPbvrV+8iAq\r\nOz1uERj0CyGoaDGDtuNYgawknmw7pvupf7MJM1NefWy6z/sscrJQsJwqHGTV\r\nisXrGkfmgpfej7rz0MxL7LbMn6kczfDEypUl7ve6cYyIx9zdX7xLP/fv/NPh\r\n4BfpqjztzImcmJw2IsJC5hprpThyeM5ZnmAyXaR2UIPC1Utvnb9F/WonY9Do\r\nJQVsQsMU0l7n6ds96fa4sfsswJoPKGrV+DpYQYNeRwZS9fnG8hoEL6tHxOES\r\na9A7+YuCahdGFYi2jnagZr/NrDPGKGO+w/+zxhB3hH7+LHIKnXa4OZ7LZmIM\r\nPQBO+rNue2/APFmJNIJJw1Ytt14LqI1kJLQRatT/7cKuUqx5o+hr2QFw6td6\r\nuhv+hdJgOk1OyQBIMZZBn67fncwqz/KNRu5GTz6rp7b2lnwRKAl8pUUF19VC\r\nhQxlehTaVANPVZY7UecRggQLAakC2SOKLHA=\r\n=zchy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c99380f87bbd72c107ea1998766ae3be07ce90ff","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220423_1650698065243_0.8718253948171601","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220424":{"name":"typescript","version":"4.7.0-dev.20220424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220424","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fb9cd9a4f7495248694ab1b9c8fd6cd350c7428c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220424.tgz","fileCount":185,"integrity":"sha512-oQrr51Qhxrgn/PTNoeRX4aNRV+jzb4egLCxW8EZ3nf/O50VckCME2hwS0hR4IPA6bn6CFPXhAY8rYVRIosua2Q==","signatures":[{"sig":"MEUCIQDJk1pyVW9qnL4+1XO0oWBD5c1ZYGvsZPotB3R8/Y13vAIgTxDy6FkG9w+StNwM4fYE0buaaPdUMeKXKc/7tzkTFHU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65709148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZPkBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqe8Q//erHR8s8qR10NFJFZhdvdhOhaxeMhDhNYG0QPi3nO8LTlvvv2\r\nusM6uN+w2Mwq86rRJJMEd/DW4ezlQlYwDwYWAAEgzTPQBy+kJY/pD5nTys4Q\r\n8s+XddWyaS0NaFKL3ysB5Rjq0PIoIHjowDeQhyCAZ/2oHfPxywhDAgHuEwin\r\nUB9QZdFdyXVkS76zMSLI4/Ka7GvyxRQ+GKfZakuqXd2eM2MUSSb2zePdkeZs\r\nUaKy0tpONNZeMKNYciZM5s4BRQtIPIr+LG/NUVOYk0k4xKHPamnS17u+1OfN\r\niMio38Kvztjhfez+VwmRbTWV9T7uKzEPqPiAnMNjzmm3+2ihlPt2LfaYO3Yd\r\nFd2ySPitws1V7dKHArEGsNma9VYYaVhMY2XZxpEY3cDZiy7MkYXqW/MF9U/J\r\nOGkqQf9rvUJc0qCFwn6v/4BZ2SUtxgi5CBf+uwnIn4DgEeUaUCrbiUD85gpN\r\n9pc/aQtxw1jxvKR53hK5nhdGQGjbnoPYqy3rbNt9QG6YYAc0/eJ+nLXbkW9p\r\nKHHL5B7/XIf4l53929MRJv8jv2CxLR1X1BXrI+ujDqHRPNJdZQo6mded7E6X\r\n0qudySTmpx3xCYN2Z3mbETd1WdbM6sNsiYaKjmoXheWVTXZ243kiGRG19Iqs\r\nmHAljIR7Sg1tIbINE2e+Nl/otjdATNznHw4=\r\n=1T8u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c99380f87bbd72c107ea1998766ae3be07ce90ff","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220424_1650784513017_0.6921416216083638","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220425":{"name":"typescript","version":"4.7.0-dev.20220425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220425","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9b7b76e5514f92352098c802df0cc80249b1e38c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220425.tgz","fileCount":185,"integrity":"sha512-fMwLQ7gLYOCEH+fwhUajRCDSrEu8Pu26mL6HV1yk734f+00QGcKsAJTjgAyZ79rnYqQFzjIilegksYhZ7zrJAA==","signatures":[{"sig":"MEUCIDTgjRiOO+YfAIGN5kbonQJpKEUc+lNq+7QRA13EnvtFAiEAiXrX4GjpdDJroEqewS0ctCx9dn5iP4JCEOC4fTZ5EFo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65709148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZkvNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqjhg//TLpEAjKGHN3kz8MG6ZxDi3ha4msugXDh1pViBaDDZAHYTdu/\r\n7Np4O8PX+wyuMD1VYtD6Sxil5qC92r0yMTqz7gL67x0NfWBN3nGiZFWjfjRF\r\nPC2fbd5B9a+30eq0j+Gf3jrQvhHxfpW2HkSsoWNzWArjKCk6V5Xyepcr/B9+\r\nS8KMSi0jqBwiUI+cSSOn2z+Y380NEH6AHCrc+ExlpLokAhn5M1uw/dfCcblK\r\nK6Quktb187Twg4GikbykPmi1TCbmJZo1LR/X05n1PT3nnHeL6e8CR6b4uo+6\r\noGVj9GBpivkD5h+gxIawGoQur3G+Dfwnw7yiCId4TgtVQIk7PZcS3+FJyVKj\r\n/iPK1GG870T2zBjuKXJ+K0SjlJ/PzFfeY+CMu7xo3tyogeLW6IsDSpHKrlGn\r\n9G5DZf4jfPWkaCmi5ssEhVP6ax2wnsr5iEcJlQICV2fGwpU0+pv1GFmhQiRk\r\nMZoWuajV+xGHhr3tED+WOLoISLC92oBi9LZBstaLVYiIIU84VDzOtjv9uF3t\r\nm8mDnauKUWf1Bjvrfl8pwlDphGbbLVQ9y+T2uIBlxo15r5t/7xEn+5AoLV3C\r\nYYW9vzR5v5mSsABXMJcHIOezO0MPacscx0QQkht17Z0fBVNH0BDiKkIhTBT+\r\n0HNgCPxUdzpq7oxxsI2QgNoKTdS1yXAWMhA=\r\n=oOhx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"06fb30725d4a70708b28f2a4613543ce8c4cd645","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220425_1650871244831_0.968341620818266","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220426":{"name":"typescript","version":"4.7.0-dev.20220426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220426","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7924d223a4e111e5bb30c8d99ed989c4a594ab69","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220426.tgz","fileCount":185,"integrity":"sha512-Kp2HY+EFd3ohtistJ+C4Px4esymoC90SFH9/aNOhD7pyoan9DSRmzcqOgN6zdwbSH4T1Riju+p6Flc1VnVlhrg==","signatures":[{"sig":"MEUCIQDGZHa/oT+5kY37gyR1ly5yjFTk/bCxkEWTGA6sasLY8gIgF1NgynpJvMBF8ZfM/XrpPCBEOXPyDEWDpsGqUNN4f8g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65716574,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZ51+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqyshAAgmyrKFYPigxL1NWdXv+Mfgbg89VdaP6WXTl9BE+JP68YmxVc\r\ne2PX1efYzWRnvL7X9uayh2FlmkZ6f+g7IFdj89uBVnolXvyqrisCYYc9G4cn\r\nkd00BpE0iGqiCGjUASUc0dyddqU84v5Sd0qPYNhx1Pm0cvaQ5prG/aUgBWe2\r\nPXP0j3YsagLZCP7UaxowOOmZ9PXpIiK/1p+nG5c4C8yPmjsmKGtu+0L95Tgo\r\nlcmyW5MnTNVCd/xN3snWhT6uA/brSLCRrnIJA6raRmgE9EOvgTwghGNO+y7e\r\nm55RcA6Giv9BKIRRBG+7lGr/3d6B+0OrwzZuOyj2zUzuKEx32Unsn3T/U7LU\r\n0PsYKxaD4bLv/ZIPOPND4FMiwp3YxJ4eaOBMERrdkm1IfpMcxt1taH1qzsg2\r\n6RKefNQSumAf0IJVv0JIxMfNj7pocKSj4ya84nE8KYjpbhe+T4IzAtwOi/EB\r\n550P7Ur7xTwG3hRwyEBMke1PK2n5YvFaMtM7Xbrsz5gEnLmAyGdhAFCfsoc7\r\na5MBtMPcCebg84TQc5TRYEGHLU/NX64Q23zg9qXAaq2tWVxqh7kBvr7aTg7z\r\nqXNldAt7PqJ6psYHsrO2S3MctcK+ZWS3c13k5UJlrqCPUu0GCFV+v/8pnI+7\r\nNWT5JeKE5+4f87/7xpckXOTn+++E0q+DBpA=\r\n=ln39\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c5f493e8408d55f4fe0d53f4aa96379c69ca5b5c","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220426_1650957694044_0.9833924025414778","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220427":{"name":"typescript","version":"4.7.0-dev.20220427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220427","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4f9c5b880f077f17de287c73b75cc41862894865","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220427.tgz","fileCount":185,"integrity":"sha512-hF8uZdb8/p4O+U6fl1J+H1sMlu/IW+GAoRDWXKjAjTVilit2Su4jJQxlP962nDkE5uu+VJPRrqESdusNxuberw==","signatures":[{"sig":"MEUCIQDJPJ+J3TYQaOfr/B7l8xHPmYZixCDXd8pjZAUZzU9xlgIgQx9sCgwLs5B0Xh/zPbaZn/963d58I+mtXQ4i25ckrD0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65716586,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaO+aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoR3w/8DIDJPCZekE9RemsXx+Cg/Dvv+GtEXi3xRGCAJp0jS42aGuJE\r\nZrIQUJoH+35iFJpkhwo1+vJCcneCFWTaVK49/+9w7P2ZObPwMFlPj2ke9O0I\r\nORQ2OtKXp/K7Ojctf95vWLOzKsp+ShZjOjKcmA8zKALOStM5tMQFmtLX3PMv\r\n9kHTGRcJdlcQ+LpP9g+Mkt0R/gXFu+PAe700VuDxwfwg+OE1w+Csgjy+5F7Q\r\n6o1J/9wDZSlil7CqgQl4H62Cka00K6aFvPpEdRO9FiXQaYPcC0IIBcsWWhtx\r\n/O8uFY0yHis8I9rbC9lzru6ovGQQrDzeAnZ4Ek8ajLizCzzT6I7mTAs0Fwko\r\nbLpVR3ys6hPy4B/MSPtCArObDY24BDyotVZDG95/kRcTAOBX4bL6n4wKlGJ9\r\nVrBM/5hQry3iSADMo9Twc3yDZXeKc1xIE3hzATdM9ePryK7Lj3KfrqAWzAyI\r\nl8osrnU51NJ54YUlGx6FPErrBGFxCayKxB40fNa8ICeCEB7PAdX3yP4nKUnS\r\nz7CdC9izz5I5AL0nqfjSrQCrFWaADEJBgvSIZ1YHF1yWs1DrSG7yDehPhG0t\r\n7Vl+loJC2OOWDDTouOPPZ8mwAjycuTamwYk5ZT2McJw3UcUpq7gUCBV0lGU4\r\nziNfrhTz72k8aIvg+ixatJCHAEcGuBxom/Y=\r\n=Nugn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3d3fa0c0c83050d26390ef5773c471e15c8f1b21","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220427_1651044249907_0.669531559110079","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220428":{"name":"typescript","version":"4.7.0-dev.20220428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220428","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7d9ece191ef811bd9c2f302ca827b9a16b043446","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220428.tgz","fileCount":185,"integrity":"sha512-72LpPWZxXbshZdxGwmvF95l0dBy00niR4vMkRDTE7VC29NOpSl9mMAWrfmATztVUh+kEMBRKW1l+4pTmIWSptA==","signatures":[{"sig":"MEUCIEiTrgZZp488LyVXSVxOxcKyRYaBFTpUVeg0eHsPrGedAiEA/3v5rzqtmtpKXsbXY3KnG7oypvBC4GW1WTu6Cw89qy8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65746338,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaj79ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmopXA/+PqSQaQGkpjQzP4NUITYh8SM6Eix8qVWWGPnDPAD+UdPS1m8F\r\n5JWcG1alqGALM2WYBenbeoBZRocZa45EuaIxfbVnKwuNzDSP0V0Nw0JtRpT9\r\n6b1GNh30MVGJdxDsjg4ijMytkOz7pnzRGpAeb2NNQHOTr9ze6mYMGlTfVErq\r\nNpcmBPNFN8d1vuup2ggN2AGwR6DohgbR1EBxZqI4If2kCaLjW4nl21qs9JLI\r\nnRLS0l4tcGQigOsqmYrtwg9YMKp2fibm3RKpk5H/TqE0WDoRuaUwcO8NAieK\r\nJNkFs7HFlpEpQh3S5L5fak04hHahRGcJD2atM/f9G0rp9zaHaFTNEvYzmLeA\r\nFf+xZlOIrPhowdlysHJZ8G8KQW9DYYX0TaVigNRxAQkiy6TCObwJJHnQURIu\r\nRRe/4zIEVu2yMjHdy3cdnqP0Gk7zC/rY947dTA4LYJ3iHO+a+wqfyrD7EfTe\r\ncL7+cJxX8t6Czt9yemNt7PXW/OjxsvjxEUPXcXTty0JDJgLAjCApoQNVT7nF\r\nm2IW3D8tY3J9AbXv3Qh20svUcAV+U+bio0W+sHDhCnLlwwLbmMPjdOzpXz/I\r\nvntPBQWpwLeF7EZ3KYVUSfIf3kQZRuNc8vkxxdM+UWNWtBuXD3IO7TRozNlT\r\nN/7X1L2/3EQCb2/0mUJ8inlBr+YEIJGD+oU=\r\n=PXOl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"61c3bfe484101cdabb6bf706c635122511b2574b","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220428_1651130109481_0.09405751255632677","host":"s3://npm-registry-packages"}},"4.6.4":{"name":"typescript","version":"4.6.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":"Microsoft Corp.","license":"Apache-2.0","_id":"typescript@4.6.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"caa78bbc3a59e6a5c510d35703f6a09877ce45e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.6.4.tgz","fileCount":183,"integrity":"sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==","signatures":[{"sig":"MEUCICCdrW7JwNHSmq/F57I86HAI11aEH6aiJf+oEM9SmTElAiEA1Nc9BZcyXz2S7vrDgx0kHP32S8iBWfl5nC2orVNApJY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":64715745,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiawJmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqSXw//UfkJ1TAcxKl6fcCH4C4baMC+PCKEY7CNYtxwMsz8Nogtt/JB\r\np93cYHWjrzKwnKy6lEE4KkJRzfLQPRwycTJbMzuibxihIyE3syj4pqi8Sfx/\r\nZ02sveN8uXcBzbOlCEGMbT5AMWp2nJM6MUTUWyIIKBLtsr6h8HxDCMeaVSRz\r\nYcyzY5EYdEhq6XlJSo2NO2TFWrG2IfxUJIy5nWL9XKf49Z1xqIWE63WQ0PI7\r\nMC/LahYr/Fx0epb3KfDuU2ODtz71Rbti1+JFGvjrFAgHeb8Gt8vCrsAQ/f8T\r\nb5DxPDG/e0yTdw42axuNHYrpZMBs7hy/z3deUs36Wbuu7HfjJ9bf7VHex54z\r\n98mnV/2XVDHGGNnlguX0G5PzJrc1dLKpCUQll+W5LxkMGCG/aFodtzA2n1Vz\r\nYIPqZfHcH7E4m2tu6RLWwMW8W/ixA21ADhl8/O4mxJDay3QZvLX1RNIOU9kZ\r\neOIJ6tOPLuUuRzVy5vLXt9jmURtcqI0JOfaavvUV/Uxda6c2pvwD6yuxVOt3\r\nX4usgr+/SfMw/5sNfTV/0azMOFZIMLjuGpR+9PtlVU3+k1pCx4HY6Kp/x9+V\r\n5oPWg91LbskOnm9FKFommbHxZ85OlNo1MbUFnauQr47RdfDYuheyCgmA0qRZ\r\nPzIPZEX/+ZnfL7Tkdbc/5Orc4sCmXwhUSi8=\r\n=PpS9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","jake":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-9ia/jWHIEbo49HfjrLGfKbZSuWo9iTMwXO+Ca3pRsSpbsMbc7/IU8NKdCZVRRBafVPGnoJeFL76ZOAA84I9fEg==","repository":{"url":"https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.14.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","through2":"latest","@types/ms":"latest","fancy-log":"latest","browserify":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/jake":"latest","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","plugin-error":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","pretty-hrtime":"^1.0.3","@types/minimist":"latest","@types/through2":"latest","browser-resolve":"^1.11.2","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/browserify":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.6.4_1651180134567_0.3728994362646063","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220429":{"name":"typescript","version":"4.7.0-dev.20220429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220429","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f31e3edc406b6bd9f137f8f8b6befcd2563a929f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220429.tgz","fileCount":185,"integrity":"sha512-RpltV2YSqWFVLLsBLW6gAPnYBLC4KQpxtPcuwTx0PmYVFpwzYRtsR8iemeEFr3yBALG21cxbm2a0xF3GRrihsg==","signatures":[{"sig":"MEYCIQCJe/BxFK4afutsLlNxpUmD2Z9mFrONbbd0lOfF91zi+wIhALqEjGeH32fuLezqUDRgBu4ZGeXoDG5XkzOUexlWZD7z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65746338,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJia5E2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrcqw/9G1B/ndWzjAooCjHyXBIY+I96w7P1uGgafASVVaE+tDRyVueE\r\nVd2GkpBc1aO+L97jLg3a0sKuirib3Ammb8lQ4u9qsn+Su//RGToAD6jEE7tg\r\nMAQj7g6YL8/e3Hm6Esf6XiTNu5HbiefWcWed3OPU+Tcwb6iIcL4llh/3Yxoa\r\npgL+IXpHOp+xaieK2cG2sSXL1AjzZywInlAD2XXXba7S2kt2egp1uwYg1i8S\r\nUVD8hNlCG5j4ea9PBVlap1SvuBcRNLLKkgdk20hvDzn+wH73lpV39Bx8A1Ai\r\nz+N5JZWq0OSdOpdRszerAz6lNTnqW9AmZM6XGvLEJuoRCiy+I6M/Bq6KIrAV\r\npAIyUYqzxb0JbPw6gSOuMVCuTmtfx45k8E5LO5QoUymsGdaYB2ViGoV2iB2v\r\nLZcCkwmIbhFUmGxImtLY4u4WOJxmaDmesAndpbpabJpvs54elzKE+vhKDagF\r\n0yyxmnaO9w6b5eOVcWi0/lI1uR/RyrfBZmaAhAv8qzUF86JghZHNlKgMJDea\r\nOzyIlbXFMsRwG4IUAVOQsAFUwwD5Vv7GUZGkKchV+P3iO0wVyx0FI0fWRxkU\r\nxc13zg3tYyOfBegvZV6Jg5KPe+VRF6peuV2GipIINMlTdbFNP2fXEW5jBVz1\r\nsN0k1WnY7a2pethyKGGKlDi/vsFZ3rJO2kI=\r\n=RrBp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"189c2b9e4a4fc35f8a66c4796c0653229c71829d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220429_1651216694211_0.13665458237552053","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220430":{"name":"typescript","version":"4.7.0-dev.20220430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220430","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eb050fef5e33e55bb2c337e680928caf514ba2da","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220430.tgz","fileCount":185,"integrity":"sha512-ty5OXuKmvtzsKwq591xhf8fwqMDKtLbuP0XefWF97r90xU6LQAQY/i8gqQbn54QQix9zaTdEkNle39uC/9vsVQ==","signatures":[{"sig":"MEUCIQC69zvrsCGo2wvJCUigrhVgO4B2GjUl90J4ir7KjOJYLwIgAzSFjBIkMIB44zqbHpckKH/IO411jPXOWHacH49GWBY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65747562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJibOKSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKig/8C0yg/iRooOfDN4gj8CNzi6cwuIh9EudVOQgp45hJM862/yaz\r\nVZVyvTnsB2PwLCnOd33LfLqJuOseFsKhb71oS1Jjla999YRZFiO6/MFcgKkv\r\nGKyhoXBJPDD5NdzJqdTNQtCqjlYwprJJk7XZuK33THNiH51DbtJeL++8To4V\r\nKtX/snG6Twi2JXVhrZj9tgwPeSvrnMIJAQSyi/PttyfQ4yUqDQXBmbkPtjps\r\nEWS0ncRYOPXVTgSlYxgohLqcwQtrQjbSOpmjT8HHu9MNQqLqJWI48UadOhVZ\r\nMhpW4IqpIiMbeGm+KJMmPhrt/JHUEMvTHJNc5z6VBM1Km8zlRM9Byn7bozOJ\r\nYQui1zdIpatG2fbP33H64iuq9c3mNrySV0J9osorqGVXKZO00eHPd84s/CTJ\r\n79sRHs4kR6nasbI/h+vzevO/M2zZbab5HwNKQKKOW+G5x4r2sep26OZVfldU\r\nN8Nip6fxhElO3pk+259n1kmdKsVnFe4wSROA9MeKXgMmeOLxoSizMk/I9Oqi\r\nksRYdIHqx4xX+GqGR4CkB9r6NZzG1LJzaAdjNGFFWXHV+rGgsYUeqXKGrBFB\r\nxApAl/3YurCBb/iHEjK5bFvbo2ue/59gqMc1K5j8WTbAUVB/9ZCiXmOR3PzT\r\nj1cfEwuzc5uqKsdJSzpQspYRPVIPV/X6Oyw=\r\n=rQtI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"99ffa394a838a5528d6118fb3c23f81fd8e99ab2","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220430_1651303058059_0.25890971455933154","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220501":{"name":"typescript","version":"4.7.0-dev.20220501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220501","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c0e67572727715b9d29e74b27ec75d75a1b4ca53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220501.tgz","fileCount":185,"integrity":"sha512-B7jOkO+Wxe8+MfKAtjAeA0iQQVAYnUXDkdoqw9CjRQX87ZcLZxUvlqkcWmBdJ5swzbFjFAqa4PJvN5zOTgSOUw==","signatures":[{"sig":"MEUCIE6Qyq8byxPRT0qEgBmpQr5CDYtT6gY3scDteQpwhSWeAiEAv+BzrKRKLOxFzGPDczHitVBNCQjGYzGkRfmg18nG0Zc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65747562,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJibjOvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4ZQ//dVRhSoZey9ahlSHZJZgzyJqfAe+nEsLiNKVwzzDEopwvbE1X\r\nST9+4Kmgtr1lfAUvupB72aVqDfZLJ0Zsd3vR++ugT6ZQhuDhW1xpEeLeRlvy\r\n02WZMQTYPNgOalYbETw5iZgiXSc6s8nYtK9Ot3sAExME9YX0rtw1uVDrebqJ\r\nNoMT8oH1cK9s+Kxi+ALvqjUljsIKL2pSK9Kevh/UxCEtriZDuInY2nWLBX1A\r\n1AQRTipH3LJ7NYYRn78ouMMVdiOw14ayinNMdE+5PouTVXQjpceP83DcF5Nk\r\nLEgncu308U5Z4aPBz/miknmCEWfRDfUfQEEVoRuhydm9caH9vWHt0fqopc6+\r\n7PI0cyq7eLO3yuABxXCtWKkzjYSSFOT6Heqj4LpsliqOmWr+dYcLy/7k5xM4\r\nxlMNhoz51+6iJLBHyBjj7SAo6MHCVfDFsDoha+AOSSmCnNKjEUmeXSqp4ju7\r\nFIy26cJiZTeawLIinAJ/oEcJRGk/oGrUQO5BZpwt58Qfgk7Y95byhj2YvwQe\r\ncustLIKE1q1y01yVyyfohs0jO5dn5ufUwNri/U+MybB5ZTyDukFsfjw6f9QX\r\nOmxXGnmdPtrgnfxoH21Tl7LxqXDcmoKzZ49DHE9MTVlpQ9qe22noD44pUc+w\r\n6oGssnQfKUu5STIXrdSmF55YL4eHujo2jvM=\r\n=/OV8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7ae09880f87a9c01668ab1963327d1aa421bb8d9","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220501_1651389359494_0.7531744745273392","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220502":{"name":"typescript","version":"4.7.0-dev.20220502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220502","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cd36e6036cc49368aa054182314cb3e070814d4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220502.tgz","fileCount":185,"integrity":"sha512-a3YKUJyJ+XBGPsp9NwlqombKF+8Oplg565LaHNYL8p5VdhGJ5M+UR0H6wmLzCx4OhzpT1A8uQtC+f7Fi6TAYsA==","signatures":[{"sig":"MEUCIDmea/fjXotLMalLiPlr99xKH4Wu/Cu1z1T0Zduee87rAiEA8/brEfkDw2Fa6S4lqfgGnPuVU9C5bxtRCSRdwtWa5kY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65748776,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJib4UeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqSTA//T1lqhQvm3acL3s7jJz69EGcW4yjk7bfsBmA54veCMzqRBWjA\r\nYEbTxlifyMkNdUhbHNpkVUnQQIIAFNJbrB4L0kvN4mukDoqO6iu1brOXpWzN\r\nIU2pMmDzj4JG9/PYe7EmD9NxlXgHc3CxlsjPip1yanLdLTVIWwHcMo+nrFtG\r\nC/yZp4lr55cQjs+Pa0kNotk6mEzqomE1CvbFbWoR8eWAksS86IqDCvQDOGZW\r\nReAe3TzG4aENn7o+VS5NUVwASrbPv/Huxy5V8Gs6lazJGBXDPUAkJAYt+/Gn\r\nEPYkWpJ0t9oierQbyoy+WB01KTucbmftRuIx/OK0kNU3GEctkvjIhfKV2guU\r\n+GUK0Y5RM0X34ewn0ZEOtdvRLmPW2N/YJsSJYW6YMQXTSMjriFuMociA6N8r\r\nbf+s5qe9jDal7kWULswasZWGK+dQrDgNj0Dul5avdJvzhkomy8L/rQLOwh5g\r\ndhrzhbGi4SUQksHlb44lyU2CV/M4UqUFPO4k9nwg9wMP9E96fYbRSvyBfv8Q\r\n2TCnOmL/rC35VIHGzGDf+sA2/OFIFfD7a60cSy8/tSvkA/Q1IR2uvYqZqv2H\r\neT8HMQF5Up4ClpjryVrf5gcOvneZInlDKxIyBj29zQdvr8XaH1fE4UovbauH\r\ny4HZvnYrkJ/kcvzlbbbpp7NsTNCMKXEpRU8=\r\n=9YwL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7cb88464deb0d081c628b3ef343915b78723c32c","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220502_1651475741925_0.7668888646640217","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220503":{"name":"typescript","version":"4.7.0-dev.20220503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220503","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"95f2a1177842606451880fb0a0016763b2357617","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220503.tgz","fileCount":185,"integrity":"sha512-HXUE+tusfAC6MQ9hz+PA+4KJfHa1Qd6tzcHAm7uS5pnOLVMdoVKDE1z5KYr/eXMTEekITZVnUcuGtXlWYg7ZqQ==","signatures":[{"sig":"MEUCIQCBB7uys5XxVcmn4FLZqwehRC8Lizy2hTsUljY0f4gXjwIgZUwpyRIKdK2kQMrhf5VNMy610mwz8MEQeoBGOQ9IkPE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65746292,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicNaIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoM/Q/+KNA8oLWybqQ8LXUSPh1bTFaNxIRkJ+P+JEYaXtWOJA1Vf7ot\r\n0TElpkwTEheV0HLzQRnlBUMwMOiZXlpnEGQDHftFHdzukSs0u8RGArl5CHDF\r\n1GwKrShyLl0Om353GPq944DIiHkhC+9dXlbjHcVSsXrHrlbvFMsRjGLzA4s9\r\nOaLCZ/Fg+aS3LXKe0mCh7cOWcT6OTw8N9x1iNp+6OZ2cPezw9iONTTw1OEVq\r\nrl/WDo+jZPj8jcoeHooo86UzmE26XVD9UL5VEuXNAvX/7O6eKhVw0VzbgaLH\r\nDq9eGTt5ppdLn0SVa5uhuG5coo7qcb6Al1Wa7k/koB4KLJHoqOnq4qaN3/n6\r\nsUtmY+J/+/1mW8jP5jyDIaIrroyxGCxFmtlfpPBiQEz0SsEuv/g3sTDQG1q1\r\nhVXJSDMZAQtmP/EU3SzRXYxjIDnYo35kD4bWo0fp+vurMdqcAGx8HuGU176r\r\nYTGfnon4TXJmgU25hTMCztHrPY+ODYqNDOrgnSeN61nKZ0fnNAXMogljvBZO\r\nhExkkGu1eA6l+yRUA53WflMTwoY1xskHqMfCMRbQZCrScfcgz/g8Yrr8i4ys\r\nzYBSss15S0hifafNKpq2zBiSGGzui33NS6PX95ZAEHsrrHLCEGEP5gzEEBdx\r\nPzwEToaEgRQeCYS83dgz5LwGa1BSyr0kajw=\r\n=ERli\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b8b2078a32894e0d66cc556c1fa7912f4540c09","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220503_1651562120022_0.33523735864573","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220504":{"name":"typescript","version":"4.7.0-dev.20220504","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220504","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1ee6e6de3ded0aec3f0638ac24eaf432c91aa51b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220504.tgz","fileCount":185,"integrity":"sha512-H/moHCIlyBqlIEZh/JGmIYaJ1uD3nh3XA61OcwGjUMDIb007v7jurz71lo1tI4dSQacbLA43QAqqkgaqo5bjfw==","signatures":[{"sig":"MEQCIBTa8B6jU3IFS5CrHpvP3aVosapcrwxz9p4yzF4gX89vAiBlZHz0OQc6KDUPGDWRR7g0v5iegKf8ZM1Td6/Bhi5MyA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65756805,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicikDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYyw/6A7Cx+30EZxr6P6K6RoAwckiMdThyJI+5OSadTLjnfNYbWNDG\r\n74UVBvDa7hFX6XGC/j5Cim0GI2UX7N0QDrhL7g24jfWoBx6q/mD6wyVTXyKL\r\nqwkb8/Pj/j71LVN9TbxnUmgcUE1S9B167rWnXahucZhFmtm7pcnh4Ix9rxDa\r\npfx+soGuQzOGoSpBFfafrofdxCBO8zioT1DvonrfJtZbQavMUihwSMSDD+lt\r\nA6W68nRo3Yv6qSXWSsu14vbQ0CZMfxjNfk7fOP8TxBKe8lW2+FS8DoxsJkzy\r\nF3S/56GLZOswDXz/nxSUbPoisTVM9BiQslQ8AW8uij5pD3um2LY587QePgUp\r\nhCqOZbc7or1jqJMOvqcDjTgTf7x7IZwqFDrGAq218K8GaGhY9eRgghabPvkL\r\nmQEx+zxS2yAEXDv5oHjF5eLANS6JZ1GOaRtEaWqubtYvfYq1jvghnLpsUC+e\r\ntgh7PMTLGWbHbyp4b/IdR5ae9dNmdxsGtcgdg/RWYVIQWf7Z1Zf0zwBnOpbe\r\n5Nrx3EsDd4Yur4CB5oMO7CjMe3j/R0pfzrOcD1zyNx2DBG37nSi+i/ZjRSX8\r\nb+9GRv84S/Ij7lCmHboO0g4+h6CUAzmyYghiAXZg1l/dEiFT4E04EUy4Nm3H\r\nxga3lWczrru0Tn9gZC6uoKSGUUkHmA0kU3Y=\r\n=BjYI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9469f95bd4befe41de4ed7f0c1728ca7be05c402","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220504_1651648770646_0.07372367346352826","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220505":{"name":"typescript","version":"4.7.0-dev.20220505","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220505","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c45f5be5ed063fe4d7b00dfefbaaf54ec6e7de77","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220505.tgz","fileCount":185,"integrity":"sha512-qbUbxvCcA12wDtMXQ6s/uljCQK0JO19NzlPivqqbDG96jWFhVBEL8NRsN8ML/PYEz1KSd9RM3o77T2SxFePLEw==","signatures":[{"sig":"MEUCIHQdx+uGnrHS1C+S1TqkxuxTmj0gg+k9xX7d7lSXOFsSAiEAwZkt3MLuF9pssrnHnwGC0cbg+kgHq1RHIR5zbX7VcH4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65743970,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJic3mTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrsKA//ajegPALZrwp0LKaqJAOe7QoLcs0Q/HtW6pbz6xoUeEZ4d1OG\r\nY5fGpF5N84j91mkjtS83fnaawyULrHD6LHmPcVIHS8xe8YQOwB8vPEAzAbSJ\r\nDSDVFOyEBIIsf2iv43RGNIW/OyqG+QBibf0AL1pWudWsHIJImP32RDkL/n3F\r\ndED62Y3XsjmpZ8HvsUfdMCFJrlRqd/gqcRPHPSRBMiZRl8qim9FHIQBooaHD\r\nUKOkqW5MF1h/ObD8tGZ9d9/l7kpIpsxr6JFtOF0WFWcA4PvOl3SVhcDeKpC0\r\nri0gYg8PrRL+dOnZY2voiPJtKe9U6TMqbAp4vhTnNgE67R7YSa+anirGcqbr\r\ntc3bpzFLDj+6lPG4/VmUh2KN3YIgskKMzGnwgaFKcvu6lhb+PtT5aZjqf1p4\r\nsoGzI6e0ja7IqVmAmjzQZ6TMhr4MuFxY5deHzBgLtIXxS9tpzGA4+jwtfrrB\r\nICpul+14+S+NkqAyCkdfyu3bG9OpfeiUgvVr6H9K6JdkXU18VdJmExCahkBo\r\ncwtZJJuxWLo3XSgq7jxvjrTwwautikt0UppFpzVKnjEaCGR2UBsVkrkxmhFq\r\nGCgIXbDtEIei+r8Joz6JMmGoVBOYroZfQC1ReusO7RLreSZlAfXtph0AncM9\r\nahc9lIpdd21YbjOj0tnyNIMTlRlEasos5e8=\r\n=3AEv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7d60dc1f5db04cc01cba2e1def292432fa41a7ee","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220505_1651734931525_0.49296919349348456","host":"s3://npm-registry-packages"}},"4.7.0-dev.20220506":{"name":"typescript","version":"4.7.0-dev.20220506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.0-dev.20220506","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1930c24322b9289188f51a1d2a4acc43eb2bf3ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.0-dev.20220506.tgz","fileCount":186,"integrity":"sha512-2rqSNvYKymAAknVcWTgZLsDGWkr/PZZ9s7K/zGHa8vhAmTPwoFSyc7YxRHYHe2UcxbovTkMg/g8yCQ/VHsk9oQ==","signatures":[{"sig":"MEUCIG1kixdaF5WlQwJqgJyu3NQalCQIY4DXsCbu3Vl6r/e8AiEAimxnT5+z9t81DqV6qgOmMHqkewXo5q0CfPQsblZP/iU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65849569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJidMsWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5fQ//T/PbuJO0iLN1nM55inU7RpNQQnGQau/uGC1REBEmLCj6SuSY\r\nPDI8ksFVs71KDIPhC06vmBsxrIjHMRnk07XyTXUey5H4vSUUnqZGo9FpPC0o\r\nsQHULVwm3qXii6NqbkGPkyPBwcQB5xCBWprWjMYG5aENo7DtABhAdWMXkA9Y\r\nUgq/cO+JzywDQGfbhR6UZfvQLtl6CO/A4sRwOTMR+ctVWk/fPVjkb1hhcX1x\r\naTX7YSWe/1S8Af3wdD/ufWQsqNpSUoguYo2B7TYhTWRGa3xKHp4Ipl8de27p\r\nTl1JEMr1t1DGIAvh+Bl2NR5hbIotaJPUWveoHHal9G9YMIyahB3uypLSp/RU\r\nckrz8Kg71lp7uvw0JYe2hdulL/8M22t9wjxzuZelxzOcyNsHY+U867ZFBOvj\r\nw/Ob+Yt0B+YQHObstSzg6k8DSazrPu8jlem1Z7xL1QLrNYX49Ov8g/O2ikMl\r\nje6MazYf598UfDbZkEEOEOBtPbC3HcxDlPUkcFs7ndEU9iQrFV/p9NXUyPmJ\r\nttL2lx6DV0Lldzr43LSt60utocoNtqeIMtMhEF0tm/6arQUkYWDH9wA3iqXp\r\nsrKB6aYY2a4X+6mtXVeiQFw8gGiW9aPWcxDaoTQVJi3obid7EELQUoVMXhT2\r\nFnBc3WSHp6dfd+Ow1pMxjYuG2kjQWmQJrWE=\r\n=PIB4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4a0b083c69042953b80975541450836ad844c70c","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.0-dev.20220506_1651821333874_0.33656918504058253","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220507":{"name":"typescript","version":"4.8.0-dev.20220507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220507","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dc1c118da82c0f0c5326ac4707ecacd5be777634","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220507.tgz","fileCount":186,"integrity":"sha512-xbl2bvcJSSPHj/p2sOCQAfi/bhsAjo7iz+rcgbycHZUCoc85qoVmg9h2h9PwluMhReah1h3+1emdbX0J/4BMkg==","signatures":[{"sig":"MEUCIQDPDNoJ6+t3ih3yCcMUZ+nNJTyuUziN8OFS5XxF4Drp/QIgQdPGYd87+eh8tcOIktQcexAeJccG1xv/5GEAx+2poxk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65859864,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJidhzyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrfbg/+M5vqmzHO4lgYTAiKsiEvciMllPJRgwsGpqLXfZ7XXzNZ/FWs\r\nWeC9ReG7MsswZB9BkTqcWprxQn7YMSHQaA002WVvWm35d97fdACqu7AGdnp/\r\n4iJ6ZbHp2mzNIMr2uS40tm2TMxOgT5e6Fzr04zfYmdlksQrpgMk7NTyimI4t\r\nEAHfg7pDTgrNK/DC6ORQcQjGqVCqIzT30r1xZ67aCpC1glC/hzRpbIxMZ2Kp\r\n35DWUx18WdJOlvj9aLeVFGMrxkSpKL1hIl6KELX9B4QhvyK2s0jZZObKRs7M\r\n4VbB7HqzLe+cW2XVd4xCBW4X/LlRE3g/PjFtfFlcGw1q5D0voHDib6fKe747\r\njNhOi9QeM1z63dV+CK09Z2iVKRuaPv01myYKNsL55AiApf5rsGjajtCamTJR\r\nhUv7Tay7012qpF9QG1pGVVOFmjS94aHykRemNdpERuamH6zdnR6oUvwjw/z6\r\nTn+rlfBkjup9SLG9dwblN3E06frNJr/RVTsygihFtBhgY8wGY5RXyY4Kpjkx\r\nOhTjAypN1WIr9M/PG3Cz3xtNFxqNb3SHARGBdb5af/VO0UT7kFraBQwYWquD\r\nnj1/nYhhKmcHBRYbWp97IMmCK/fpkraMvNriHSFqN2Y6Wqbqy/IBFDn0JhAy\r\nz3nr9RhpZ/VopNajAwGoGh7f5ZrsjLEjNuc=\r\n=9KKU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bc161c0dd8f44df74247c29f5fa5eb97dbae457b","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220507_1651907825505_0.0640636299015469","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220508":{"name":"typescript","version":"4.8.0-dev.20220508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220508","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a33be213bd3869807f2c558971c7ab444a7405d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220508.tgz","fileCount":186,"integrity":"sha512-JtVHundQI8nGl1hNhrQtO8FUwZvcDM6SAxXIHUX/2jKMzqtycEDIzMfu+tYmscs6Oh0h1zjjHHHpvQnsx3MNQw==","signatures":[{"sig":"MEQCID/nq5ODs9uBU9DsTKqS1cq33AjH9XRdOSpAoOlmhQj0AiAylNE33GAxtTsrTYienmKTYr/y7Mv8q2nIah+kqR1Jlw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65865402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJid23oACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoTThAAn/mRYI0lklcVws2qzODcMAo0Qg4GPStVYlk7rQkdEpAzV9DL\r\nIg9KNF0YhC6h/gJ8cDmPxA+zCyejOkVwIPe2Rpsd30t6D324ueSOCZ7QK/Zy\r\nen30AnlhWf8UsqXfwJDSIhnq1nu8uX+lWyfgErKQIjiWCzb6Kl2RwEtmhNo+\r\nqWKou2+FR0LroYgJLwkyvPrlsJF+1AoUDJR4STVNaUS4c7MM6m3D0Qk5yw9X\r\nlUGbwx2DW/0wvoOOFOXiURegkA0jmkOnj+dayVQz5TQREAnEooubn/CNJfth\r\ndNB5SVQ86NzEh2kcSLYMTcy9KBmcpgu0yp0iB6BTDrzN05vXuC+45hagu0LJ\r\n9/6cfkS+n574iOcvCcYHYD70tqU5XgO1qX349WfLYkHD6tmqh86rdQV0/41G\r\nXDBKZC5AZbfqZQCsHzW/sfb/0tKgD7+5OXrPuQ3sYHl0oRKBFEpg9JLHhdMa\r\n2lH7H3JZ/feTYwvPotdUFexG0TqsGpt8jmhoTdZ+djwYR2AIrnWfU+YKe0YF\r\nT73HaJA6hTbKf7+qlVypMaH+WaidB1CiCG/GwgSmCHkO2yKK55v9lM690Z0T\r\nvno1wGz52KcJvRj36It52M0hWsjvof3UXFIWpA8bByhTtgpUCteXPOSoK7oH\r\n6N4rL9s0tKVB7xv1GCeveq5AnusA6YUiWz8=\r\n=5Siv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"53343dd94d894ba141f53a1b2dde45d91e6b3a14","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220508_1651994088209_0.3464953813804166","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220509":{"name":"typescript","version":"4.8.0-dev.20220509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220509","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ec143427e0fabd25be1c1fd893bd609a091c24ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220509.tgz","fileCount":186,"integrity":"sha512-DrZmgMriffoaIaeK/0wjo76rvYmkCdCj0XeNvzM2Q/Ex8HId/Unxr4K9WMwwR0LBfPThF7sQnC+GzhFrNP+arA==","signatures":[{"sig":"MEQCIFzwkf24QeZ++/kbkudOS9v5Ek2w/nIkfP1634ajDrUeAiBhxTfHlF5lkZqUQ0lHFBx8+DhZKVJUdZkc2uKlIkrL4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65866882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJieL+8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrOyxAAotxtF58E5++GKAcrdFn6PaCUATrqe8NPshaOeiaTbbseOhRe\r\nfId4RRRhkr57KkBtCzg7gl8o2sbNbFfaD7l/mrDWjUxkmkEdCrMya0d31sRm\r\nm1ETCi2yydg9Tnw7xAXk+Jnfp3HLuUwfaJspG97lYMFGPyCAKy+/CQzeuCZe\r\nrqC1KEsl7obMBKXyXEGNK+7TCmjkWg5YxDp+f+Cko7VhZaxeBbSnY6at1B8p\r\nN2aHRuH+YkC6tHgBNNQ4C4d1JqzeiA89RlkJtJpyvCVV9EPGnTuWPFFOfbw2\r\nOmHB+3k58G97rSa7BG9AV462yYg/EOGTYfveSwER3coaHIJiTyvjNLRLl/40\r\n562/hmqxDILP0E028kVgiL1kwzVmW67REG+3TiitDKTo14D/mN9BajD0p7Xl\r\neepZM7OjiUnwldEkhe+ypghKh4wfZNN8IWi0XLULcOkudKlEut2vJoj8o8s8\r\nlnZkMSOv98694XpLA1B4QzL3qpeVED3HEF+vX4wkG0FWcBZ3WNibInbQzUE9\r\n5DojABvSRnsPpIG9bioisoylzEdUvwoWDWJOXw0eBsDERSMr6enrCqfNuItv\r\nED2SGyZ/3aVYzTh7RI/YqKVLk3kjyyFACixzkDvMqL1GbYcrWtWkKEpu1un+\r\nrUaoBJWkOgkmqxm1ES4PY2y6tABZGgwN46M=\r\n=FFUE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1071240907ab7aae63ecc9c0bbde42aa51dc7669","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220509_1652080572010_0.8880570672526575","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220510":{"name":"typescript","version":"4.8.0-dev.20220510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220510","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0d410eee6fafd863d307cb15784a9532f2c6d5b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220510.tgz","fileCount":186,"integrity":"sha512-tetO33Iv3/HIOjJl9IbNGsWcctyToiEjnqeU+ry/FVaFdxuY9LrX86WYeEsajD+eMA8UsEPFYk03LMsyvLheDA==","signatures":[{"sig":"MEYCIQCV6V6WtlzNbe7Q9oCvbI47n3sTKZpfPgkQqeuBoHWNQAIhAKkgsmfXJGp1n0axOIEuG7ncCsy9NGTU0NehL0uvgerU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65895794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiehFgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrPRQ/9F0ZG7Kj3tv8/WdF1YQM2gfxj37v4EKSHwihsTVufY76HS9k0\r\nOZQ/t5vPitU33WXBjIDU/M/B8bn7gOanpalvmd4jzhiP0uuedoMSmNz806SR\r\nydGUqkqX2SzY/rSg48RorKIowgVSFir6PLTFapQgH0KxUbeWLXCoaHxnQUaI\r\niU3ZJGy2zM9yZ6TuY1N+mEjm4HrYxS4GpPZuYUOuJ/73LQx7BnyFzBnsAPn9\r\nXWeEN5aLQGRyuV4XLR67pPhSlfEWUB+GBoCNu8qCd628ZIq0oYVCF0zQP3GM\r\neU+NtYoi1Vc0gk6ztOSUSkjxFAxgOhmkP/+8/sNwVc8UjweSjR8oygekZ0JH\r\nzjK0nrIgQ6D2v6aZW/0dWiROrVKapSs2dBx0aYdnjK4Gs+uiFdIwB1lqO4Td\r\n558wHjvVpGTlKVumKu5NDlC8wgagRXQ8Bh4y4mHw9cOCrgMleZxPz2HRG+zD\r\n5nY93NHu9Odj84CB6B0n1CsUMxMARAZZyNXmYoDbCdLp2qswVH/vHERSMJhX\r\nQKU8L8stDCmYpCTODnn7Liv5OcKECB9XNGNbKvPLfeOpR5plXPmACqPyJK75\r\nrUzk+cHwmpYFnYj5reo8P96b0F7NoKI47D92L2lMo77qqaKMVJSHk/liy6ym\r\nLxyqKT/gvfq4fVzAc/llXiLVNAAq4+qkk5I=\r\n=AaFI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9236e39374c0ec9a1e3f9894af4fb9eb34ba0021","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220510_1652167008168_0.7779687018674575","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220511":{"name":"typescript","version":"4.8.0-dev.20220511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220511","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"42dd5ad99dcd345277c784949cc36a7b5d43fa18","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220511.tgz","fileCount":186,"integrity":"sha512-MDo0tI/TRHCJ1sxochoU4LhT41C6jhEIkWneehqsxNYV84+d+C4HvD7Nq4DQrI03cIGvPJbdW2s3ZladROXE+A==","signatures":[{"sig":"MEUCIDJfSXqd07ZOE62I+3+ZBATsMQ28IRETdlzD3mc4BZiAAiEA9NVmChmQRLMMw+LMnk0BtsNOHzW8K1A4f2TpaYpZsWo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65905435,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJie2QCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp7Og/8CrM6uvgy9pSKj7mtAEgYHkKRNSgBGowfW0qeNbI4SiSjmbDz\r\nFfYomm2gf2t0ou9GgUgshDtRYmGeQlV4lgK1mnXCmQq0YtFWm2LUePzUAEut\r\nX4syWJbFK4LFfjk2kzehHIwa1GKT9JoTGbJJ+o+w8X9kAZWa6q1ltdxci5jf\r\nbiCtI5VSo5YcVcCm8oTqxtccyzS9mXukWxalRnsTxRguDYsO7Djohf6gz9vK\r\nMOh8p3hQC29VriUFGnQ1lZdWTuDAOb1Wv01oAsb84j6pKrMi0hl5ZKSw340w\r\nN1J0WiYhKovFlQrz9DREAeOLFqp8qJeJ+SbXjcfCy5LeS21lgult8ZLMBdZY\r\nTFCyyWiBEHuvD2NJs0MMueeS7UJd63k3FB3R0uaCNm0+CZgIu3tv+NcPFRX1\r\nAy1fK63t/sCj9h98g3pd2cD0kB9TMwsRmGjlXfhyaGfmdrL0zhzF4+EHsnDK\r\nBH7vWMDWGPIMi8vFRCndpZDnXKz3FAM0ASbQbeQgG0ZZJJAQc63605NEHbFt\r\nQ0777+VJLFLnZc25FBjzM9aLwJbG9zIDEyFNauzBoyi05KzhXU/6XUnw0ekj\r\nscwiP7xB8yUMwdt/oxHx0LcMuPFgu9lzFT8M3OkmxcOhXJ7Zix4coD992PbI\r\nRr1lwc9eIAyUSTGMbC/sRtaV3qZYgCOs2KA=\r\n=J7y9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cfbb517f357b7f33a2c896346d4e64d2f1ae16a8","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220511_1652253697874_0.2554534686119214","host":"s3://npm-registry-packages"}},"4.7.1-rc":{"name":"typescript","version":"4.7.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"23a0517d36c56de887b4457f29e2d265647bbd7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.1-rc.tgz","fileCount":186,"integrity":"sha512-EQd2NVelDe6ZVc2sO1CSpuSs+RHzY8c2n/kTNQAHw4um/eAXY+ZY4IKoUpNK0wO6C5hN+XcUXR7yqT8VbwwNIQ==","signatures":[{"sig":"MEUCIFY0+mKbXuQPhabuSXvfY7ns/hTC3saxa11dw4s0+TClAiEA6p/2kj4XCP17YjXL8tiwALLpmUtsb8GYN5AuliqWu8Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67114230,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifDIaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqjew/+M3uU7+l6KIY5dMTbyW0lvXkSLeiwmT7YfvNYuBnx/Pb9fyqH\r\nx1kikWvdTqAUy8cMTEzWKE9eoORGLKbFR4ipWW6Ehk2UKDppGE9Z9r/CVeq/\r\nd3VteZMhdE0nCL01c7VDALZTAOyip90w1smSVkL+YWY3bfWxmVaM46yEcl+u\r\nR2aT3vz1u6pxAWFEx174B44zeWCCm21Cypi4MxKkY+oSXHkRqS9l3ORh3lVD\r\nFpYtZfNu0gKjRTLFPD8hjrTkD2vu73tcDqeDOfnM2pgwsW+mniFQSHGU4dXy\r\nnicdjdSPQ3jbOKW0R7Fc1iTKlKCHgAaX/ErI3Z7d8vj7ion2C8LGCx0S2DiQ\r\nbRu5FVArzSu1fOCCXhCoWO2HrvOfQYloZ+NAjwtWguAyIo1MUkUKyBh5u4uM\r\nSErgiyu1SV96y7hPv7smXu93lzbiINMHzulNOUSEsJKXfxECrZdUYGjfGx+3\r\nLIyr0kEg/4WlnGx3jhJNtzQ4EnSWXcm+RuLHJF8W6DmA3iSlOgSaQCSxOr4E\r\nF9KVHqxpbzWsQmsBKhhxTJgJ2Jwgu61eAgaywVrnRz/yNEZSjE0hoyYy6CSV\r\ngg65nxhyyEuxmatA2FIbGXGJJkWGRupSOCBvgt/12YvQf7OYCeg24Mu5FQQ9\r\nYbt6YN/0YpIFzH8AlfIn+Lr4HMSPUhXyUYs=\r\n=7t7x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-EQd2NVelDe6ZVc2sO1CSpuSs+RHzY8c2n/kTNQAHw4um/eAXY+ZY4IKoUpNK0wO6C5hN+XcUXR7yqT8VbwwNIQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.5.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.1-rc_1652306458274_0.06648340882019332","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220512":{"name":"typescript","version":"4.8.0-dev.20220512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220512","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2f9b96bc7acb0f4190bfe6f25dbab44416841e1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220512.tgz","fileCount":186,"integrity":"sha512-GkLFx5zji3VXVFfOhhYuFbyNRrjzmokfpp8Yq15gzjNrMIqe/dgUIl1yzMDoY5nuB0ul2Tac1+4jeAWFVf6agg==","signatures":[{"sig":"MEUCIQCXnnpXn8/Bmu70RNAnozuLETgk0sx3ZsuTJfV7hXyHlQIgbTGPgzb7UgK7ToJ9yO+8a33ueR9dVB7v9lMRxdCwzHM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65914155,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifLR3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqiDg//RJd9dIao+hBSTPLLsryKD/nAy3/LYKJoXDbNflMGm0rri0w5\r\nuMOj7A9MpG0H3OucuSPeDaxwhGf//I7UNYtG07CQUx42R3OspgkNiZ+2CDnl\r\ntAkq7m7kg9Pdh0R7Ws7sqsKPoXo6UuBCp1Xj8/G1qJzJHsgznPwrILP2dQ55\r\n+yQ09AZiiyco3tC3zRpiPocrCUDkr+X/hpQS2gOEmLTzEdfBKq5Kg/YhWjz/\r\nhSsSbElkGelQ4CyWIOx+3mTIBaz3aPhfVoC8H+/m9yQF5OkYHfAtK1hrjMiJ\r\nMc9/HqqeKHLUd06fpg2NlflSTWuuVhin90ZH0vL67Nae9PT3xz/I3lGy8AD5\r\n6qggZojyhiBP0GtB3FpcQbzgHxR9uw5H3hirbBoJPMQAurgg0+7U71+f/RzO\r\nkCwFQ0KRS82di+Ek3RgOPgUUrUBtEmimAYRq0dq84/5M5x3eo9B1IoEgcnix\r\nS5KKYbiRiXjTjG9VJReFPKclN9ePaGLgihUdUzlMnOIVGUKzex/BN7XegvoN\r\nFZTFswgEHmRvQyJIWasBS/HnpD/jFo/P1c0tx8NHrSZq5CI2WJAPnKIr+Tmi\r\nusey2ZROt0/O9xdukBrgyJ8f8bJ8rC41qJ5M0nMJTa5OZ1Ju32EXqQCQ+U3j\r\nfyHS1MAsg69Bd4HeOZaMa52XdNzOzlwAEvw=\r\n=ngmE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c300fea3250abd7f75920d95a58d9e742ac730ee","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.16","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220512_1652339830596_0.5169780916728877","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220513":{"name":"typescript","version":"4.8.0-dev.20220513","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220513","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"18a14e78fa1adeda418d5c43acde590c3544c4c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220513.tgz","fileCount":186,"integrity":"sha512-zNmhxGQm8LQ2N3G8bmRNk7jzpsdQRaQ5/J46Sfe0hIunl0w/Gadq+zSGeB4TZInfKC1CaGsjnIImIo1pNPTIOw==","signatures":[{"sig":"MEYCIQCoYtBFrMAzZ3FCbm01P76y5NjB20WFJcUNRGgEfzNpZAIhALf/a7wdA2dq1ow7wcy60TWzoQntWAomV0Hd1tIl5YT/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65925259,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJifgZdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqXZRAAj3mK7/zVXRUhXkmi2F6ooHQ12c251lhnQjTCLr3QNHCye+bd\r\nh+1DCXZuA4lNzV2n2jk3H65L3A4GbTd6h3qN9Wn/592QVgPt7hf3GL8aJFDI\r\nzySTW7pWkixoO8KQ7wHpU5f8E2AFNI0gTk1WRh7nki3rtcFW7+A49gNUKYEZ\r\nj9H2pVhElDKOA9+W2IBQKmsYjop+Mle4W9bT/ivAU2tE57awyT7ecdiBKWvW\r\nl0lw+b8jO9R4mN592HLx45oBA7MQMatmGkddY+sEy3wrbz7CkKsxKKwjugQg\r\nDrk4ZDdxsgJ4OzjggatHewuzFXh5F+i9TnbEZRcgCJKBiMWvP2Z4xYawrLo5\r\no88431lif0VnpnnoEymMBoC2RVREeBW83jl7IxjfRDdOryI6Rx1a+4FBhlMV\r\nET1SOeG3V2/Jr9RvVqVHgqYt8rBBD36kztxQudC8FbTY4662XmSOGzUkLYpu\r\nBU+f5NSwy09c1wc4r47mfpdKALaBlpTdIoSnersX0j08OndRa8pTDj3yhuNe\r\ntJO84KMNSzPenp1/GKY/3ziE4a8qRcYb12VCUPB+1OrEUVkieJBVVvVXSrh6\r\nOVZ5xGqSpHwEnv2SKxNVW0FUwpEMqBVkS22164yYXHHAaIM1RrEq4pPRCASo\r\nZ95LJzwh8Op/rduBmYqxqev/4GDImlRoals=\r\n=TH8r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d53b16ba0a7f3ab62ac38f79e897555dfe1e9207","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220513_1652426332922_0.8339552353345558","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220514":{"name":"typescript","version":"4.8.0-dev.20220514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220514","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"602c2744d9c3b4e4570f17e5dc39ff2ff20661c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220514.tgz","fileCount":186,"integrity":"sha512-rfLmQGPxkYme1hQqQupiavg2LW3HFSjx0nLCnj3SmbMHX1kCSMZ27u6n2XlQNXOwYBW91FW6o709XInP3rghZg==","signatures":[{"sig":"MEUCIAsj/pgiVOeVXavt7QI0fuVqesPc/mESxcQHfIMQ7BqCAiEAm3ek4bcef0l0b5agaxQVFehRsINc9y4kAf9dq2nh9J8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65931756,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJif1hJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmomJQ//QgYI4U9o4zDSXUJXFqkWDJQb31HKSN0qGFrx8YUk9kZL0jIs\r\ntCQZHWE9CQC98wUtIQKuFi+VVZsg8rzc67vvs8sQNGrbwGItlDGrUAfA1ILD\r\n19T+GTQ0QDJOtYAwQJnuYP+8ZfmKBaj6si/BrtwwDBDu8c8jNQn86KhvUkgo\r\n+NPJpDc0EsOw+cILB3JPIXy6/EICnbS8+9tol1gyaKOOEOcbfgMecoR8+I7f\r\n+f8MD1c4PIO8ggKbtvGx7ReZa9XDYlWptpoPpDtpcv/I/FRDZPiIhkhgZe1r\r\n6LTC1fvoUeEDEuBTlEwFz4DSZ0aHFUwRFNDk9XNvzR7Z+LFW5eQ3aNhgSDBP\r\nLY5p9gxQckaH3bPuX7+MSPOa9z7HIr54wvzp6Rr3E3SlyMEXVpRcIjhYYVLh\r\n2sY2YduwcQJa6IunPiVBz+onOIRmdgrUFEUurXOyWosrwgBji2P7478ft9I2\r\nK1pRHW2+UN3LMjro/rCjruHH8SfoKnFcQKkRiBM9AM3HaS30ytqfBKw5222S\r\nw0ZadJ8ohxlBYfyUMD8kAqrOs62M+BOQPU/Lg8brPMtAE424P2jJ0vp8UjOy\r\n97mAF/j+czsy8AnP29mu7meATJVm1w/jCThpPU5FcuQgWb42mpExwY1mt3nt\r\n91yza9m24ScwCILAEmt4H3UmCKayAcxZpbQ=\r\n=C1Zn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"85bd9d97b88954f247ca9a77dd1c0014f137e296","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220514_1652512841249_0.2636768563799379","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220515":{"name":"typescript","version":"4.8.0-dev.20220515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220515","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5ce315e5d7b929c3ebc003d074591d074db6b5d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220515.tgz","fileCount":186,"integrity":"sha512-pABtRgOXxIi33aXzrsRX1AsAlAAnBQeZ5s1IYW3XMpxi60cVLeGNEwRWLQpGXGo9x6PKPZFHHshlt3PuLzE1cg==","signatures":[{"sig":"MEQCIEY8JodY6nDSvkesVvytUqSQ4e5MWsA3J+WWpWLrSGs2AiAiZxZBI4Gw/Fwjm5eod0h0p29ZgMhFqpyUq1iNnX/+pQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65931960,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigKlKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrY0g//eAKa4/0x7sogFcACiK/p18WwCBCnr/IyO/fKfhJAUTAwSx5r\r\niN0SZlSQfdSi9wEHibsb0v8+c33CYJwBnaB+20J7f3n8MhaGH7SrGbRbHoqh\r\nd58jhTEf/oHLMQrTqN/DirkRrdOlNx9YIff8e0hLaL5kHFVH9dQWQlzBEK76\r\nrpL1tvR6iYKdoUJatZGcqRItE1JFq7FaOXn8YSGMXrqt/2eVXNWwbHCK94xB\r\nSc6moIRSmWxdWNh9oyX688Inp/mRWMtJmrEV/EUHdvHIiC6nZQMc/FDI+AXH\r\nAytySkBxP4fNjN1tjqZrS1EmcMvifE8mGbI0vlOchNURxSATY4BYR8cmDW5D\r\nqBRcw1gE7xyF2EwpsnqGbL4sIDU2j33wMNRVhdyv716rFD1j8fnEkJ71Sc2l\r\n33MuXDondnbeLtGO8kSlRsDGlQIiaNqYhSwnUfjejCJ4QmdjPDpWV9QjTOyK\r\napkjDte0goCZkKDQMHHHsI/dRyrm120lNbYHbCuWghTp0pkoNy+8NA6Qh9sP\r\nPI8MLOcI2kLgWx3j3+a0cYHBpdBSiiBSkmShUNMesO/nBUt57k7OwypH5fBx\r\nrdlbQ8KDbmjpEiHf6v48RHwHnTn3b87iA9TxfjTsLU1Ca2vSX8Ailg8ihYLk\r\nDVwQXoC3fHf5FiXGZTKo6KxyUmz+E9JD7Wg=\r\n=vBWo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fba6eeaf6e7e520775749b74017a416e08f4e587","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220515_1652599113985_0.28566805239461157","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220516":{"name":"typescript","version":"4.8.0-dev.20220516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220516","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f90b66cc5fb1714cbf2c4574865a0a0591c47b5e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220516.tgz","fileCount":186,"integrity":"sha512-8PSwRWl4nLwPrCMlkD4p5kk21SuyNJVTal97ujy9Eja7DO4DKpkMH354XONbVoXNTjcLa2DahauXMe1Jb0XrEQ==","signatures":[{"sig":"MEQCIGXTgAv5ONn7jVxBSYPtYCP5u0aWgFi1KsprM4lNmo38AiBNRJwUPhnGM59Bjf+Hn4D3U1jz9XJDqsb1xcZdXi811Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65932027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigfqQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoZqA//a69gbzB18/ij2fmwle7YKYT9e6+WxEhwQfclp2wSqO7jCiic\r\nUvkz+1y0JWS/jpItGZbnQ9+Ps1wpBVuJJ11lzIpqlmP0o00MiZIiSZgNPOrL\r\n1bF9t1hWoLIogLjb5v0WX+TAUT1kcaesbOO8vkf++oAcc7ZY2cErNe6KrWsv\r\nsN5Iok1h5ux4e4cEfRa5jIXXOtBtONQzbD1x/YOKIyo2/3G+AM4Psak1tN7e\r\ncU4xUU3ofy+WUwXDXap6QBpfv+hKA04on50nrpOgygY+YjhrdYLjGyud1hdE\r\nK9YE1+UFZGVrnk0W3H+BypHuP3OdAB8FTAk0tkf/d6J40/uSaedZVaidPmIi\r\nOfbS98BNMAuLtSEZvY2LckO+/+fAgDH/nMLb5Jmk2dif3HCITSMnrMHIlSvu\r\nKySF1IQ3D60hWOMoRxyPruXXqgHPLMM3n7KbZCBCUcKmQBuO9nh8+QABiew7\r\nGnAd8dw18OXYoPJrNeVCeQ+YglZdE12HvjF+zVjEUn2f0VmYpusp48+xGb3w\r\nWWUs1Ss61Y6aSvtgDYT2AxtdtGe4mG0qARaxY6n8hYLBuY779jpNWer+lS1p\r\nw/Xy5/rPzDbZPft5Zcr59FXQyRNsHIXAuFEhts3U7sq/m+3+HA5MIezwYrZZ\r\n/Ex9tCfq9tE4znawb1N3oBbLRLVzuwVEuUo=\r\n=h8HM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e5e4e684719cd30181794a3d86bb19ea4c336953","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220516_1652685455997_0.3641577646228551","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220517":{"name":"typescript","version":"4.8.0-dev.20220517","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220517","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e55821dffcd2cd84e2b5f0985f68ffbc2686cb1c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220517.tgz","fileCount":186,"integrity":"sha512-f9/v9nrc4nxTc4KBgwPN+A1xLVDB44szb7n3C+gquZJHQWQMYf82ZJqzEfczvtkkCnooKfRKTj4jYiV2xiU7wg==","signatures":[{"sig":"MEYCIQD/5dPpbGEqbKUtR1iBufMjXiAU4IdfOjxpBv79NDpy8wIhAKPCt5MCZlauBmAHlXv47e9wY2EK6i+IIekfijOAu4hm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65934730,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJig0zMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqWVQ//T0URh/WFqdiPoqiKVNJF6QjsHBSYZNqR0wOU/92G65ijjY6M\r\nH+PzGRssTIEm6HN5ffBXE1ykBHPaw0asASr0cZE1qMChyTS2N2T4Nso/QnPG\r\n3AMK4Sb8FtHWNFyOqC3r8JJDNniM3z+Atubsp3Xa61XnS80YzNtmuQxzTKWi\r\nDEe3MTwP1jgjO4NuozLR7/cw/QiOQK178Q9m2krHlgzhOp4h3jB10sYpiq1A\r\njC1j/w5YBRDS2/GnlYN657svXlPXKiml2KJ7A1uVR9ev/XPNIF5Av2QYqKGE\r\nBV9BpDGSQ0uKWSlgN8PvG1YItyeqNIJEVSsh2lkkjRIuG2fQHnfSCOnPqErF\r\n26HYblLnPUkKhtyNMi2vS2+cNAjVhCW6KJ+aNbKN12MpR2yf5mySwh/2zmmx\r\n6bRzi862gfv0OTV6qh0noUdQetcQau8jkrufOuwBuAK928S1ADeCyyokfcZ6\r\n5WH416FJ31AYJyuUu3I54pTHtTKaplrAC/HWqCHLtNjsx6VPt1YqAbHzxakg\r\n7QGZCUyKbQWUPOZt4rj5A16i7t4gZxPlK6eWzRTEctiAr6kWSFsoM60jDfjy\r\nnEcCR+q5EjKcQAzWt52SAmxUg07e8s2W6cH2vDC57VEBpiyg8HlmkanQcN9g\r\n9/kOJSKCX72pPzn/D3mSjtf0CBmpXQBd6XM=\r\n=McGQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"49145b86169c81993d6f00a4f7cd18a42ce8719f","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220517_1652772044250_0.38967955899261053","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220518":{"name":"typescript","version":"4.8.0-dev.20220518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220518","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3082c89c764daece904480552b9f2c3f5ce79c56","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220518.tgz","fileCount":186,"integrity":"sha512-yczRLiowXD4THxpe2DrClYXsmIRt9VPDft1dat4Le50mQwuUcmvdqD43o4hmlbNP7HpyeEYX51KXozGq1s7zlw==","signatures":[{"sig":"MEUCICQUnorv5u74Ot2HZqn+09t+z6lcon6aCRnBCpfOcd2ZAiEAtj+Tk8QQFjZfcECtG8X7Z0raFyoQFXkfRLNzwXMqwgk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65936910,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihJzaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpQAA/+N0kWkHFw/1m0LGSVd6z/RsR24A6R4svAyT4V+rqqlQ8tz/nZ\r\nrKdfIhjdSU3dFMHWT2uAZX6bJMsF3Qp+V/brXkFuJcYRGvs0zcsP4CbtL3mp\r\nJ9/Omo9icUpVUWYhTgkJnK1f48Zv56yglFHEuPNYf9Z9+Q5KTDkK+0Msx0vX\r\naf7O229GsWH/nHYBscvT6RgU7zCVZxIEzEyEensXwyVyowKRIqFyHvMINF7u\r\n7odSyauEJc8cKk4hfzc9VwDSUAwVUOWoyRJ6a+KdO4lo8g9PcBmqGXohjkYI\r\ndK3qVE7bBxTe/cQwFsEs4ybKXJ5c3A/LLQ2qtGF6PqtyJNH6c3e84u9Mk3pV\r\ntf3ySLp1QCOGem6cAIAD48+WvjRm2hbskL5cOsm0wC8FGt60TNmTk/tyegep\r\nGFUf7z/Ip1Et8wKn1e7rdyHafHZMdi5xRDdQUApr2KUtMSFnyyKBSz7nN40S\r\noC6p53qe6ZpetE7erOELr5Rhd1v1TL00vK1VXt3JNC8vJDX9jQT40alfjqei\r\n6QKCxhYNsUdKuDmhs2OFywqzIcg2T15E//rI/ia7A3qHkcEOhG9hs+h2yu+3\r\nfNiS6Vzb+cySeqwVD09ay6LXB0F/VEfV310Y6bcXNdG2+SXF/7GATVY6ec4m\r\nNlGpgbAFAH4+MFgNssDq3xGJu6u+SwOWbj0=\r\n=HowC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ce85d647ef88183c019588bcf398320ce29b625a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220518_1652858073981_0.1548878191063212","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220519":{"name":"typescript","version":"4.8.0-dev.20220519","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220519","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"16422c5e1c0601653b2b1c014f7559628c2a18ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220519.tgz","fileCount":186,"integrity":"sha512-ac9knHGWM2Go5qy3VXajzAG1laHOEMNyDYj7W0cCcUBddp/boZozqvgo3EAv1KapC31Jdzkn7wDGY+Y7PonKSg==","signatures":[{"sig":"MEUCICEGmSZauTKEslC6ap5FG3dgCd/8d7C4MgFjyWVPFBEcAiEAmRJhJAZyz5Sz+tREx4jTuvj3ioapnLpJ888Bv81TiyM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65960496,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJihe7bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoIjQ//W2jGEBza1RMib1/78RzCJwUyQzXd1IJ4zgWtL9foT7wXeQdL\r\nD2Z/zqCqNqDHA04Tjbd4CMwIjJVrnSefg6RFE6pkD9dAH4ok5U8gPSCjOPsQ\r\nLgAxLQ7CK041iCXBreEWjZpPyW8xrtAyXjKW1J0/A5dabHtPhLigKBBU7+3S\r\noo6AM1ny9KMz+br/fqMyRfR062yuKQh0qDnUvOxz6yQktLqi9aXM2BhK8XpJ\r\nBS+zELNXk24Vq4Jn1gGF54AsFCOvzaguWeOw+MzEU7jYNYsAUoYsmuGCUZN1\r\nzuLyP4MEaDTvcey1pUrtMtYzAKDKiQjelBnQfLzpSpQXwR3zBdBrXLkq0y2t\r\nJdk0px4b2W1HcPF9eaIXrMao/n6NZD5pVPh65i/qHN9AbNFUSwOcoTBX0nK6\r\nFS1fJdDaybFdFvDRsxQfxVPM6BJV9B/8PuuosnlmSRUd09EgRf4GDRhkn42s\r\nEyMA7bDDflzbE50uVFDqOk99/vapuREnvNIMR/zjyDDZUJ3woXpnuWllf4QP\r\nWEeHJqnHgAiBMZTZIGjY/UR9yvu4yYJc83reP6hWCb0uUkf8DkLCMM0kJydw\r\nfiy4s0Y9k0BHLfDT1rr3nVKcFiWkhA42p/bAUhv3RSH/lPS4i9hM2gHcSBqB\r\ncM1B2s3HL3K03UOZxTkB2sO1679+Wrxs60I=\r\n=5hOH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5aa0053c74f0c67b2cbedf9cee6607ead3b9dc45","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220519_1652944602764_0.400896484434476","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220520":{"name":"typescript","version":"4.8.0-dev.20220520","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220520","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"738288a2788f82cd7abe4f82941760599788bcb8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220520.tgz","fileCount":186,"integrity":"sha512-OLLEy7nRAUVunVn893E0QLf+pNitQQa+CBN4ZR3LpTIbK2VSPTIPX5wAFfVPZeuxXWn8mzCOammnyTAMFWpoEg==","signatures":[{"sig":"MEUCIFIeImLL+Vw0ocGNJOMNEnytrq3F7j2Ic8BU2EPDA7b0AiEA5aKiA7fFRxgKNsl2NPZj4rACw7s0N40W1cDtgvbxxh0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65975108,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJih0AtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6Ww/+OyzgPeAQj9E5rpZwPLbkR6P34NOuF2qQSERhoQSnkGdVNYRx\r\n0qG7bnZHGygst1SekqAZlhKOKCjWKW4sqFerErNapNGMyzsy2hHlY2+as0Es\r\nfVSqLRLcwA+DECav8UFz2t7kv1zDeTzuCD7KfVXcKCMhP9a4+8N2Ybs0fj/s\r\nUWeIV73sI/nB3ccYwtcXnBR5TfphFv4hVMK6P8CKWxPLRlWba1+Sd6Q7XdYS\r\nTSwkJbGKggMuYwom9XxmW9H8DHhyg39I56GxTZQ/uDiO+nL14INvTMWGVGQs\r\nlIgYi3iOHIGIxcTInaxzqRHT/q5yHiM+okxl3QwPhAdEYsoQEBgisLWSCXJW\r\nKgseaZAd1ruii+LYZ/B8v7PIR06qWUEjZp7YxqhEqGxrVrhnVuDGqRMwAw8o\r\np2uWTgz15oZvfKnka0rX1GaEYdG8wX+kgQkmuYHD5M7vW9Z2MhXAHSffcbL7\r\nIzcxu/mBa3k1bqGOqHWgR2BAMilpCNp4xg4xuT+nx/qGXwK/waK+aMex5vCN\r\nIhYy69j94/i5+ESk7a5q4VNGgf44GF/DyF+neFgb9oYXf5IiS7GSUiEG1zWW\r\nFRL2KDvbtLyNBonolDP4He35rlezFxaBO3nAJkcAFLadDx3wX3hMKPi33kYT\r\nRwWgS6ga5/YukRl2UuZeONadOzTEOht8EQw=\r\n=i05Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"408c760fae66080104bc85c449282c2d207dfe8e","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220520_1653030957178_0.23366545612646727","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220521":{"name":"typescript","version":"4.8.0-dev.20220521","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220521","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8dcd07a87651acf87c5e554be8f8ae2a7c5dd4c8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220521.tgz","fileCount":186,"integrity":"sha512-JkJCiKUFeGZsExkujaUnILexWkxZ9PZNzX9BX+uYIgdYIG85ZSjRKvStfiFxH1pqxNhQugcK6AP4RvM+95OKaQ==","signatures":[{"sig":"MEQCIHI5EalY8VRRburtHhCfbOCS/mTc1n7cx2vobxL/FS8UAiBo3uZgW0/CJnn+3YHBs2D+8dljOqeM3QEHKygjsz/4kg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65975145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiiJFoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLPA//TG6X/kaYGEkpv43F7hsM5troTjjYeM7W7C8JjkaykbqnnbUs\r\ncSUem9zfK6rTH+mPz1Wnn5msOLORti2bKMSfP8a0zCo+uMLUKtocB5Nxti0f\r\nus5tMkQ2oCl6HJ+kCjA7cvrz5avh4wkeFUIeGlAU6I01v8RAW3llV8YqUcB7\r\nNT7ahMvnlTIPGjJeFTEbWDMIcYiQRmbLW/BWHfqQwoqZOSSqVUHOBXoG7CZe\r\nLzezTaGlVneNk3EW0fPPr82FZOCA+JtQp6e4WrlLb8LyycrNX462BYGyMxOB\r\n2nR28IblEjh5GZ3pMmzvqQqmSkDMYVXYUq0yfpPEn7e9Y3SNT83tMf6JXMVc\r\nUBLh6r5ENr0mJRE+Tn4SjF6kLHEynZ8uklaU3GgofZDs2e3hKQXkZeswGRBt\r\nOBfuNUPR9xBA+bLYQDfauy/1zJbGYWbYf8PRQB9kUagKhsppto6mG7kdApTY\r\nCCcaCvZ/FDuyN39C0MvdbTRY2G9BCKs58afDqMsMGPbKaC8WH5vmIkN2DbIu\r\nJNFxyg/98Qsq9Egvd6h7aP1795rwvParHCgYUXESIcY+pnOuUccqaM4N1R0h\r\n+BgFJ7F/MDMIo+cOR+U/up4M/lxGljIq5p+UKhxe1L5LbM1czkVEIw1ppnl0\r\nhmF+qDMCiUVElKF4dW/15yb9D1agsd/owX0=\r\n=VpO5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"006ae339bf7bb7ec88bf148a8e2612bf9419260a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220521_1653117287816_0.22531155803264613","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220522":{"name":"typescript","version":"4.8.0-dev.20220522","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220522","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4ab1edb9b5a0c10aaa52cea3a765413c1284e8cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220522.tgz","fileCount":186,"integrity":"sha512-Zr/+SgkXW7+lo6Qmsnqnt4QYUi7bNCU5w1/agToFVwh6QxhmG+qmhfEHt4HnUHfVJYLKHo40D4ENHcgPDaN55Q==","signatures":[{"sig":"MEMCH2JQj9xANoROqOW1WSbyUHH8WNTLciH7BwDinu8dqU8CIHtHhOOT02+g4JgtwTb8c4zQKuPcwg6PAXbAh9thKmWD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65975145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiieMNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWJA//dtTQjHQ88ENiETm1m7M4dyHOHm0Fgvc8oxofQlR1tJWSvTB2\r\nuvPWa3iG7K4MKohmv/4089y6I62qZ52kUdJdsWymGiKVgxRmwWJt3IUdJNoX\r\ne+lzmAU34T6DyYl5AWuo4wUUEaF0c9z+JL55QfmnHwam383e1LSqC2W9Tfra\r\nB2qxIF2lENloDxHboKTV9qtOnSDErArITPGms9A9ficuto4nY1O4dnneq9h0\r\n7zakv1hd+yiIHb1aAijUfm9ks9fK5eZNB1I2P2JYjtPfOblSTbmCrIzoITrC\r\nIiV2KDxtEc90QjarkGS3qsDkjhFx6qdVhdlyrGQ3ewlFyFJHFXh+9rE6sVRT\r\nmZQ5XgUOPeMMC3MBA3b8+w+nYKHFPRyn5VFC2g50Rh4/7xk977x0jamMBHDB\r\nD+YGFTxxeHbQla2vFuN8mh+9Z8r+oqAS2pvpP3frJVhVVMXgBF7dniaYHN5Q\r\nBaS7i80ccjGKU8wP1RPOmBt2+U4wDJ4rgLe4ovFCXoNO8q13wosp2aTkan7Q\r\n5NTaGijQx3vAv/Pek+A8I7XwUSrI6WllkRgQLzr9MbXvaQCHzTqUyOoNCpnE\r\n7/EMUKf4jJ6lubkmhX+H5nuG9Rb4hV50g6EUxFHo5cfONm1BazMEdJM0fTr+\r\nE2wkWXYb3yXgziBDLQdWnTH0mMhIIpemXbE=\r\n=8K1l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"006ae339bf7bb7ec88bf148a8e2612bf9419260a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220522_1653203725214_0.20284602787415595","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220523":{"name":"typescript","version":"4.8.0-dev.20220523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220523","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4fd460bd04ed688c013d794d0cd5ae1bdd27c2fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220523.tgz","fileCount":186,"integrity":"sha512-VvYoh+ClM2gvpnjDbwJP78zdFG8nTxAn4tmHyTDRu+2EzXw0FundB7mVa6ug3JLMEGY1bA1tGkIBJHLJlR0+iw==","signatures":[{"sig":"MEUCIA01XfYF0Y5ed/iv5/K22Pp2mmT9OM+z8y1qh0tr62jIAiEAs/nNqX3bvVJ9vfbTf/MdONHHKiN6/hfoXiMHUcoSz8U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65975145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiizXKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoVHA/7BLQPV/8Xpa3LwH/t055V26ZW7GdSSVG2hubeNNMCc9yvP30K\r\nAoEURJ1lE0iTyVimhOCs7r3MDt4F8EcomR1mtxNm9lxn0ShOrMp51g0Uz99h\r\n2j8c0kIc6JSC23AjUKgR/Sqt3z+Yu+YyOn1GfO433tv5rsHZQLjvEf8ED73O\r\nIFf57IX9hVruRqHZjcDjtex+iGlc+AHdPoeQDtaUOmjWeMw/lUS2GG2JUS+N\r\nxVxj2GOLe4//35UWwxU9PGEqSrsu7IC9cNL7f2dtKyoEhUawhwa+VOCX8VkM\r\nW1A/uAqX62oS+D6L7ShNJXMaL4k9pTd+MdkdOeRRUs5eQNoxKuWffuSBuBLo\r\nOSkXxH1J5vxVkP4VJTbc51S68oUVs4ZDRbHFfDiRfaL/UzZJN3iIEjrh9wt+\r\nl/xvFscNomkOUw3oiHmJBRzSJWtNyhwsFk6tfl+TSxiKZb0WXtVKIj0tPCu8\r\ntP8tQSw32J87m56uYvxrnhBYCRiyVyJXJpF02+mqM1Unal8MImTDtg3wcm42\r\n45rVpz3dUALTxAlfoPdyNHHEeqTIyhVLW6xHOoj8VsKY6vVMqdYzUMWcJTMq\r\nIcoJ91VHIVVjh5PvUh9n/nkSb9Al6kYCamUGjzzfHxrK0QWZiDAErcGiM7TI\r\ndIA8EG8O5lTXuB6rhjgjjIc+66ZfYdddRvI=\r\n=V5kw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"006ae339bf7bb7ec88bf148a8e2612bf9419260a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220523_1653290441729_0.5392368861816781","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220524":{"name":"typescript","version":"4.8.0-dev.20220524","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220524","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1c7b94f048507f1536abdfc33111407b60e8491e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220524.tgz","fileCount":186,"integrity":"sha512-g0n+G9LjQriWUgYDWX3uk5/CToV8aV/Oh3fWF/dR8GI0kNG3xWYcJBdbjdBFe7PJmYCY83VvIW5tGnuK4rHB7w==","signatures":[{"sig":"MEYCIQCtxMFBKgJ3p/lMOcqHV1DaVe8D8yE5ejkmDJqX3/n84QIhAOTIO914i0cK6uXNfqmQOQfpiZpH1z25xipDSCfYPOcU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65983773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijIYcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoh+BAApGx+e0cFZWodt1g/W8tIQmofFx1jbMf31U8jgf5xlqo3ayXT\r\n6N9otS0rQHHHJ2izGeTIS98/SvMO/lxqTdmKQRvioYvlkdsvdAePSGVP+8FQ\r\nsz9VThQXYTI5BXaAwM7FMWTjQMTjF79+aIB5I1Q1bVyARh386GB0dbOGuFph\r\niIbp7lzRTN387P/sjtApsWdCQQ76ZCZRrB+De31jMmalkANOl+IW75bzTEAa\r\nDC09YBX85coxKABGpdxgRGXYChiKkaSMaNYPHOjgLTfLkJfI+pn0QVKw9/fG\r\nvztya2g/D+BCb/C2+Qz9/y+LgWRH51LP+7ymxw5xdT+4ZsweIWeVP0+8Oi+d\r\npMG/U1593pyfSZDMCbWXrqfPJz7zm0Bk8WhYBtcWka8Z7ZFsUC7xbEaolaoa\r\nxQxjOesrgFzWF5Cv8J6fBXHi7yxj0+Fb214pa8RJfG1t0cCvcqv2m8bhIgJS\r\njnWdq0bJ+wSlqk19RWPvf9Yy/hXR3gilBQUBMW1o6f5IDqLvOrzj84xqd9Ev\r\npko8IWaU9csIEPtC1ACB3013P5rMfbIVEPV+22DTi9DfKduNekfVCuXDbh/v\r\nCTdyE9RnevCzyMlh+3v7Lrp3oZ+aePJmggFNDTV+Y1Mzz7DhZ2vMMZiNuF2e\r\nN7KtTY6Wx9Ro8I9jYyg88yjPn+Byc8t13+0=\r\n=eQ7+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7c6521e8fb8f24a31f28e00e92838ad1b975fbb3","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220524_1653376539850_0.7647574910235673","host":"s3://npm-registry-packages"}},"4.7.2":{"name":"typescript","version":"4.7.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f9aa2ceb9af87cca227813b4310fff0b51593c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.2.tgz","fileCount":186,"integrity":"sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A==","signatures":[{"sig":"MEUCIQDQwW0Fks9iz/cLClURm18NPwRIs55EW9m9rJNyAJERDAIgZA09U/f+OPGAP90zd3ve43YS2Du1Aa9VE4eeq7bXvM4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67113636,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijSYSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo/aw//f7oO3xoSme6cJymCVbFnukN0RmrksRUlN7vrqtKgwoRY81YC\r\n1OvselqQgd9AduCYa2Mmppwhsbr2vz7HSMkhrkrQDio2c56k6ept1Y7kFP01\r\nzi+mEHlzMKK+bu/9OZndYTqXw7vvUrgwvWBJRoAY15dIoF7v4mA+g1rziZjp\r\nZnXapMPfAJGiHpO88zIe8BD/Ub82SAMTG+z7UTIlxov9n9uNu9/jYM4jTC6U\r\nnhYUMmxeDijiQl0SZBCRILK4kzjrSV9zFvEIGHb07qGtYlDezu/mwB6tdWWY\r\n7mRUUoARq3VzjsL1ezvyzHHNiSfiyZ9URxLvdMMLuEHmiP3F46hJ5Hry+peZ\r\n4U11q1GVtJn+bf5Z/qyDh0P6+Nk6wiq6r7td+rEy9I5OqysnTMr4L6gPe8uF\r\n4mKpJ5Tg4D1Ypc83GIeK0BjL1ul/72jeRAXgHMXVxdAglxOBrT1ZlRpCGwGc\r\n/mTkVsd09smWSBkqD38s6JYYA2m5I43aSf5gnpecnsTAJhVYBl26vLmGd+SI\r\nJJnjYR7dQC6YYkFweBm+r1ZIkrx8xZHzkEHRvpIEajkGrFt0Mrz6YuQXxDZC\r\nYC/t+4ydRAEmCQ0ZlPeYrOHXCf1VBWB215Aphz8AjyKz/3fJBrZYwbI4nxeA\r\ncRPuSrE7OQBGOFGV8Nje5rdQZJFazMDGxVY=\r\n=sf5o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-Mamb1iX2FDUpcTRzltPxgWMKy3fhg0TN378ylbktPGPK/99KbDtMQ4W1hwgsbPAsG3a0xKa1vmw4VKZQbkvz5A==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.5.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.2_1653417489992_0.9825248849330306","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220525":{"name":"typescript","version":"4.8.0-dev.20220525","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220525","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f3d996e0210a48708a7097d5da9ba6750e6cfd1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220525.tgz","fileCount":186,"integrity":"sha512-pNd3/XAybx4HcvSvw0IeqwDEVz8tqFDpaPYmKLqs8Y1T1OZ+wYbDDQ/yiu/9+YV1WuWIhM1w5ZfMvuMqciU6xg==","signatures":[{"sig":"MEQCICr1PSKn+qDC+aJRFoOQuDjO/7v0ASgXdZ2RxVzWF4d2AiBQavpoe0SzUt+cOK/WErra4dwdmRgYrirzJkC+m5xswA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65989971,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijddZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoGqQ//Vx9JVI5RvHZpZ2/SMufAN5pj2OkkUNIkoQFWORS9uWV3I8KQ\r\nCbb+EENCmlDMvQbcqqPDb1avGTRzbpn98Fhh7+7u6YcNsy4ntx+ZUrxKWpzt\r\njl76Sy6YFf5ELASIkfe/Bb75qobp2ixSZZDRRE0J90k/UH6a6CxQ/Vnp0FpN\r\nSl9AFfJMzp9qrRgto1fieHPNRF7WzHw+eHg5QtnbEopCeKeOshvPPhJ5KrbW\r\nNe/QZ27Uk7Donmwr4pFfxerUl2eerUxkeOA0K9jb0rj208V9uU2pXZbZIiln\r\nNoDGuedoKyQyDSppKYKbdZZS0zBycvVda03gb0uSNXwV2YKrigKU0PKpJSjz\r\nMTDpg8gGWGy51arYp+X7T7ocSydV2/hKYXQz/D0lv+O1jrF5dLh4LArdMPY8\r\n+4DZH+wD9yGuwoBbbpndb06Q8FnFi7UYWGod9CGc9t7tTRxFMCWzr9TPNl/W\r\npvMvzzsYsIAnEyRLRDpBnf/W0Xj7jIwk7oMJO6Ucnn6IRSMroMifNvmfAnTQ\r\nGQ9MK3gOZnLd33DaKG7q/CU3MRtJS2HfREdgNFZn75tSi52PvPmwMg1/Sk1Z\r\nQlMd52bSz2y/v7gbE4jJ0jLI1RyWE8u8SgALgb16/5o1dpmL39hIBgLlnn7v\r\n0P+S65Ls3PGlxAM2tnD6v8gXzsloP6VOTro=\r\n=+3be\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b57d6e1df45578798a7fd044075e677c31ef662e","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220525_1653462873244_0.23311995612848446","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220526":{"name":"typescript","version":"4.8.0-dev.20220526","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220526","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db21de2b358f0263579d7024e676df1a01847d69","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220526.tgz","fileCount":186,"integrity":"sha512-qWTQU8dmR878V0vuAwsBHaHoS9kJDsa/NEsWB3GEMNjiTMvoKfIHUT2YsIo3KlNAZheFKi1G59TJtpibt/gdMQ==","signatures":[{"sig":"MEUCIBr2Sb+8LWLkEN7cQVuTLc9NUiWjl+3NVCuHbwojbxcjAiEAhN41RQjt70wqXTxRdsf3IKZn9EkOMdILfYMhwAKhDXo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65993500,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijym9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQNw/9HzJik981vFOH3dq2DCReR2QBn16G9qttjIcGcE5zqBZDPSKU\r\ns9XCsAmEKZ0bh2TNlGD1I82j42+UP2nHCXWnvcxqdX0py/323yUokia7DwHv\r\ne57C3C0g1Qsqy5OTFkU5JigsvUyUfbZaVaD5rS7/P8OAt+WbgbznC3Q4bTu+\r\nEvUvOKpr0AmukRRoiGzdL6GKdFEiw+ZYhuLwCKc+ibALynMcegkbAjGfc8dq\r\nb7CEs0trhsKZbx+5DrM94IkFgyTLC/zi3U+TLvlWUfOa6dzRn8zhmlmtm0nr\r\nHs0+Druhn/yYN1IVvfCowC44rkOOqU/EJz1o1ar7ZOTfB5JZMkdAiWB2Xey5\r\nc7cSL9k8qjRUjjrhtV3OKSm82xi5Tmpm+wTqfQVDT5qjvizuYQDrhVuVInAn\r\nCkmHzvU4rNZGdGdXXzM7TFEqlPNYkk0Gy/daisEuwM7VgI2nTqSTsAgPiPC7\r\nw8gxdzNOF+pFryy2K7TnD7GfOpylLdD7gv7o/R9ilWS+bNbBntItgM1e1d4H\r\nRPNyWlG9LoL0C0ZKPSc2FjxgD5GHIiwrfLW4LKENZyOLD8P6hi5wgs8IPb3Y\r\ndoRhN1Sn9FLwr6SRxTC2f7WPaA7niNmfluYtHeBxWVqbKOyuW1yK6xsl6kzR\r\n/hYwZ70Xmu2JSp2J1t/C7y6zsmh0RWGE5Ew=\r\n=ErGw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"77ffb96b1a7b3f9d2e7d2417ff8f0cb0f815b977","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220526_1653549500760_0.735945936630368","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220527":{"name":"typescript","version":"4.8.0-dev.20220527","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220527","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d594c3e37df3876f8238a41df754eb91755918e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220527.tgz","fileCount":186,"integrity":"sha512-TRZVcNGFXAZdpo73XeA8Wg90nmEbmVUh/7RKkl+yCawp50V45Y59ZXfhkJwt/rmlUafMVK44DfOyd0gXsEZC7g==","signatures":[{"sig":"MEQCIARuZCIzc9jqBFlxktjvIr/Ig7T3aBkvfLno6NiB1f6wAiA42uMS0Ef/DC/GDFhtdEcExb2qdqeXXPu/ag6xs1Nh3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":65998667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikHt8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqm7g//WfccNUMvXXjuQKMRkTUBrbXAA1GSnCAx5QpjA6fMRZcMmMbP\r\nfqExbYn28hLG/+e+AS/vnW2xJEpactwOVzz8Uamj4ikKnBMKMW5vcaQ9lj3u\r\n9inld3eL2BV6umUGC2vWrlnjyigouEkAAAALP2a7Tu8C2Xr2XhJJE9SBSEG9\r\nbDO7PtzTznL14uBBbQI8NsCkRi3Y1fnbVO4fgsg3yqYwYjlyFiv0oJC16ycR\r\nYGuCvl06684fmEOLR51T2rmhSsgPNAxk7OyF4qzrgkMOCsHOLFCdXd+tmpH7\r\nHDWpcZlvibfJm1lKn0VU9T8VatU0uVkf3c/mtjOH8cHZHZ0BFTI9mRMDWflN\r\nyN6FbxOSc4c8xT20M/yBLJVIKDqvT6jeM0CEe0JVW8Nln4cM14kXZ0vXwvrX\r\nnoA4rIGcC8I5e8syVtXPjI65NdGTWu5wy0pHDLYmN7YsHOuCk9cv60TlNJhz\r\nrNJJnmerMs10X1jKUqn2B7R8gkXolIMW6vpgaSLycNxHT1R2PH6sfCPP78Cs\r\nBFyy9rS8ZacxZvicrMlLXR9Rrt7v2i5NB+zDuDPZwRaDKYo/pztJGbaN3ciq\r\niXOrMeJzOaqWhz19LQsSylW/igUallL0ZGM5vScDPrngsiTe8ERn5e9eqaOP\r\n6lVN9egLRvUwfdP4zHOH/hSPiIeBmfMBpSs=\r\n=O1RV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"46e53016e45133dd4901c4d3de62c1e249e131ae","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220527_1653635963936_0.2546440945266131","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220528":{"name":"typescript","version":"4.8.0-dev.20220528","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220528","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"949739c146a4041fe49cd41911e7ae7da4f687d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220528.tgz","fileCount":186,"integrity":"sha512-UwmuLxRQY/O6TxqCcrEDbGy+xktr823/ysLvUA5cvKhousGfv2+w57E22mhLirzYh9UUqRfPYGvko2tjyWMgIg==","signatures":[{"sig":"MEYCIQD6jvmRVEL/T8IpFj/GGGZU6j2SltJxPL/31H6wfzoQAQIhANJTzW6rUU9Nyujg0JFt/pokg29LDLhVgvlDnl40NH0O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66064549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikczIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpJiQ//aiZTK0+tKcwf2bd0Lnhfis0LBacCCIVZADDsTUrln3mf68xO\r\niMLBCgbftFVG47GgDgLG8x4G2THBASuc6jHB02Aq8abItJEDIE0ODvDxIC06\r\n3vg60E7QrtUyTPX7Gp6itN/leWtq52qDjM1yUKcugqYYeF0mLDnr0pfw6nT7\r\nhyb3Sd9J0e5iWKE3Ogblyh+wF2wMfH7T3v5du/HzNJDvMV4Mj7YxL1BxZSz2\r\nia8xR60Oy30eM40qO1LLCqZd9GFZ9d2WzKEswalmhWkdsmjwy+FroHDmLUF+\r\nVppKofjdW6bgpYey2uhCLDJrU6BcZ4DbvNZMFycnNnh2VgrLUs1FZPyOWDfU\r\nWd1z3uif5TMB5N9hBUm4LXP3PR7/fWs19pn7oWkZ9HIPkJ2fRQ75kA9mAJJG\r\ntKshhdihZOzmui0+t0UIXkTVOQZ50dtj3WVVD0iQlbgkguzy0ju3GSjcS9r5\r\n2YJA/YZvoISMStdxzppnjNw+DDVn6WvY8TJxj40UkOpfY8WLbTApCQy5sxdY\r\nx72japgIWuNTJbfrRpGkK/WZK3Olt2oPuNqTe9thPUfUROvNzX2sUREgILcU\r\nnv+xLNcr/+LrzVYIf7pXt2/TziHz74L6GDG3kM5CJyeExzhZqxKNhTUntAe4\r\nHHQFHLQzY0oCDsZPI+LMR7HYA1mUFaZDHzU=\r\n=CqFm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0d9a9dc75d12afe4feb8cfeb12a29f1a87c1360e","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220528_1653722311829_0.7418053115461662","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220529":{"name":"typescript","version":"4.8.0-dev.20220529","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220529","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2a72d5d87d484ef6484c179149a0da03600c41f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220529.tgz","fileCount":186,"integrity":"sha512-Qwj3szAlVVhUj9+dAAh7MiPMgnzMaaQGiXQsrhveTWj3FXvtJ7H4Q0lCcyTVSS55a9nVOZJPUzDePWJKG8v0VA==","signatures":[{"sig":"MEYCIQDeagK4Xj0Md4uhO2vP5H3BeXGi4I1fSurnlG5LenDVxwIhAMSLsWGZfohZ5QELR2KWKd9KjI5R5nZ0c4Eo+rWSv7+N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66064549,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikx1AACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTkQ/9HobqwaqKIwYSZ62PGUBbfLdlQPtMETP7blawqF/TWs7QRWMw\r\n8UPmu4pa1JpmMfIqFqRNCrZSnBLD3O+pM1jCKCW6zpzW4wirFGuISSMw0ICE\r\npt8NcJbqKRpUXhy/GD75p5zBlwYJBdlCWhU54sNvx8e7vu9W8QpBf2EJvorh\r\nBu6jCM2luPp2zKfZ4g/thLPNu6i2xW6+MsMSkasbWwyexCKoQQmKtSM033XT\r\nVWO6wJ6hS0uCT3tX86Mn+vuXBDpDEaVrFeKQl2qSipxgeH5lupTELp3wJBQb\r\nbj4teZjx8zf9+NTv5AUxfiOkrO8ma1SDePyVh3yKRfHUz8rP2w2YNNGI9QqF\r\nYOdc5XLESq4uoARu+0IKk7BX2WET49lCX7LNptLcaA7Mox6jzMw0E8DcOacW\r\nlOMcqSACk6sZcXRQAwoOy3brIMvyqmgNoQFn/V3ysKNH7yQOPtRb8gPDyn8M\r\n6TZcPM+Gl+RsykU5OWoCG9yFCM2oHzm1+O03OPzLeJlgb3Z3DWv6LpNzTuge\r\nRlE015oprXyQswngfwzPMhdQQht/j/xZ2xk2PjXQIe+lwGjtj+Yiw9QcvHl9\r\nC79J9IfE3ZUNqB6pH9E+usq/UMP90Co+v/of8n+35XbzVh5TistamqDZeX7Q\r\njRky8yCIT1Vn2uS+WyLAc5jLq/VquMCXwgg=\r\n=IbXK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"80832a8d08ca53f5d2ad5a946cbdfdf79bc56052","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220529_1653808447606_0.9718463581494909","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220530":{"name":"typescript","version":"4.8.0-dev.20220530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220530","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a71d95c17df28b307f02826851145d22e7ec1e96","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220530.tgz","fileCount":186,"integrity":"sha512-NB9F5TGowxNmBQ9GY/ufx1dreQby8NuzdtuogOEFFsK1SruBRlmCCUX6YkrTUK76WnhEoSzoLGGFj45qb8wfbw==","signatures":[{"sig":"MEQCIFBMEBI089CU9kzcUkPPLL4SQPld7uGZx9ryzPdfmQ6JAiAlpKLBgM9J7Klaj8UX2g+BPyUosBMCOAy88WAaNop+Qg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66066630,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilG9iACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoBzBAAim64yky0kZH/E/bdqfakhXLrd3WgbiukrWnd4wOmmqlm256o\r\nsX3sQ0o8FTvv75kQ3Qm2iPJP1SPS/yxZfbZncbz0udZonhrKPSzwEERj6KFC\r\ntU4YtqZumm/OujxAHEStyWqL27oU9kvSbRxAg2F51FYE+/O8fcG+B0ljApW8\r\n3CN3YYEzUwMTxyFPeV/UvmameNAdG0FFI51WLDSsMl58Ys/EBbybnaI/QnXq\r\n+2tD3OEhEWq1P6yKOON8GuAT+IIqD5bwJzrMGCKhipPmO7Yk3kiDdeAhzAiv\r\n9RLzR7lwi8E+lk6FVwv087k2bNWNCRmj3N18ce5MY7R4Q6xifJXRl5G6yj0U\r\nrQjw4HvsRODHt3tQd3k4Yhlg5w+WeLf6suP1irFAvg8FYZnrUpQQLf4PYPc6\r\nrzmTlVnpjqozA82KjfOs02uUZe2OqPXLqdGRVW5qeNW8Nz3xb/wCJdEd0j/p\r\nO9J0sdIoqplB02Fv16NCkidEWDM3Uprue8oWYuhW5vBqdfwBNo6GaHMCeH7f\r\nawuxPKUJXQehf5r6RR6+Mxivr8tLpB7BwKYhn1DYRqemQH5Av3j9v+UeR1J6\r\n4CnFlvmHMPffVKDXvg3u1dadPmY/TlNyqOyPwhPqC3qHsbeBN7hMjFBwmIvr\r\nWg7HMhpdidGkC3qW0nKF+hHq3f7uLCyQRoM=\r\n=2sFl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6cda20d61ff19c18f172c36ad91398ddc83c11e6","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220530_1653895009696_0.988699851907181","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220531":{"name":"typescript","version":"4.8.0-dev.20220531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220531","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9624eba9f3ea82376f5e53539ecf8e2a2dfb757c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220531.tgz","fileCount":186,"integrity":"sha512-2heG5zmrhGjjgnX5n9Gpm9wW/zVcNPlj4aqZgzF+hAVw3mmfaJBnk+C5PxP2hvTLpuwkXkKoh51Aq1aZgc5htA==","signatures":[{"sig":"MEQCIADRmVtvnQ/Yz7mIJu8KMvAwlHQLj/9fSNu2sxR8o1hMAiBVWohHnHBO05nEcQGFtMMMQ4GmPyQATU16+OmCQOfRiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66066630,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilcFzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo9yA/+JK+S9ApgpfC4So1by4vrNe4lILGAz9QPUYyWUIfpaEO2X4TI\r\nUbVqSrj9uulTrgvuHWmkDmSFgdNV1SKabWZvlUnRTaqBC+CLP/4ASJabDVGB\r\nt9Y3/pIw5At2fdLfmFbgQyP0df3dyWZsd9omJSGA1YP99gACf80jUhd7y61n\r\n4lCcLiLfuHufKDcMW3PNa3/DOtuwDvhEFDiFL3ZDtq1FYaDk2mkhqM5ObmPE\r\nKKBck7F5RUcN87quNmwXHHgAWodgp21yoWpD6AlFSK+hh6fq+9dqse4NqMZP\r\nJ9cGWwvEgW4DxLefM6EtnT8jyAT1BS9K43s9QgHf9r06/pPxvUgK3Uy7MO5t\r\nUuE7wFDeXQKYWQ1oo+5TOrdMv1ZEl/gymKyJSOprfNMwLcpBVt5p4gMC3suU\r\nBibCEAX+jVvAXHDN794FoKxNr5ZiLfROHctQqOVPvaPrysfZVtcI9ycNvcHK\r\nFBp9GlEZTwng4PRYqDn7VSJBPbgWblHgrX4RXyKXmNCOJaitZstmmlTL0EA7\r\nZ2sJnt4wcCoU9+rKI0KNFV8UHWM6A/m+u3p3htdk07JxzxF8HdqkBkcA4FBR\r\nhl4vqYM9YQkVtP+ia9byFU1PeNCahTV16QUTwda6COw+Tem96PmhHq0KgpjR\r\n9gljS+g96lnct5uSEj97wrQQn7WTf6Mu7YU=\r\n=72M8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7baaf7be1c6b1b4669e3379510ecb346ec3f2c82","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220531_1653981555114_0.3172188677522383","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220601":{"name":"typescript","version":"4.8.0-dev.20220601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220601","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8543cbca86956d5f47abdd2c6b89575d62b4c03b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220601.tgz","fileCount":188,"integrity":"sha512-dzIzpi2YVK18wMx+R84KWfogx6T3VXG/duNZuVKok+G8ZFdW6BNlLsweHp/z5/Fyiw5hd/Lu17K3mBL+chVsCQ==","signatures":[{"sig":"MEUCICQDieIOUGXgarjtGMDzKa4ub9dNeS+kMDmTBD8t4IY5AiEA+1JzkymPY8SzMk4dgzixwxSIA0FGa4rTYmX3FeSt8d0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66072332,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilxJtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4IBAAlTDWXvXk4fOupnW5DZqGa+ZWu3ImIYiQ9Z1lsIC7q0sOKyLG\r\n03VyBVlG6ou1pTwh1HF+i4sEYRrkc8QZknJOBvP64WwM4swHt50Osa8blYSw\r\ne2mFALGZdjFHFJts/TI9gqkVIDU33vyC6+WzVhNZOlL03QHXv7yBMPQiOFLX\r\nYN2HivFbYoa5tjav5cuLLQ9gdIPjv9puJmiY2D3oHt45LgR0byyss2Uoykvl\r\njsc5uEBsvcD4yey2sWYQGK8OElSphXVMkZSqc8sBq2eejBdmfvo+6lYeicfc\r\nkDAiyYV7Q0vGK4EZeM6GVPtquXUsp/kxF4QMoigoDkX729r/zs7YdAZRgz0v\r\nN3hWm5hjjnoudCfxmQTDFVqrOmIE2J9plr8VXcDpbZpnkUSLR7/hO8LXwI5X\r\nps/u8OLyLE4xqf1iBCY19KRnXPbEVMtP2RBmAFmalNYYHsk0EzEjntRtBP3o\r\nn1qSLTNFq1zHD2rdzHY86NMi8HLTFskuGqu9rZ6cCGoASW+b1cJQakGESxaS\r\nM8Qn4sF5hNwAwei5TuLwqd1QBoVNfhYhy7ITL/fUR5B8TjwE7BtDmZHB47Vh\r\nv/BKWMAWRYsxJiJovB99zSXBIPrgmR6l8e5uubBLgm4RDtQOB0OK5OQIF/Ad\r\niL52nILOnFpxD+ZwjTXway+MIyHq2IZH9yQ=\r\n=Guap\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9031497b92dddb712f0d057ccaa6bc82b9ae8e44","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220601_1654067821040_0.424224005532714","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220602":{"name":"typescript","version":"4.8.0-dev.20220602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220602","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"84138d651c513f075862a38d402b3d872ad911bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220602.tgz","fileCount":188,"integrity":"sha512-1T4oqo8KYojf6edCkymgrNS7Rnmou3o02jhI3cT5zLQx7WeVqwFii9hTZ0E39oYOVnRKSoDDeQw9hPdX/3SOVA==","signatures":[{"sig":"MEYCIQDPJ5G9rkFsh+mFKnkrYBvRbxs835n+fihCpbERKoCrBAIhAMWgjKoghLwM+3MtZ8+0nn9v1LD2iZ+CKhDDpdUCQ/+w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66073780,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimGO+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLpBAAm1dCquhTQ1InvLZUAb1Y/prI+wBiopvwz6qOYtHWLdOJqBmu\r\nLbuYpMm5c5yAjbYqicRqQCvd/VSrnXhxjTrIGT7CrK4ZB0Q4OBCopo6xfrfh\r\nHc9RHlTSHh16r7JfTC88ZXZwK+S9cefFjMXYngXC9QOIn+8iJafebYqRa0wG\r\nOAo/oJyHY4BBC57c/PLCCiB11c9UgaFFJu0YUyb0FFXr9d73+Nj9fbDo/ZgY\r\n7Opm/fulMLf60s6C18s84QyRjMXpZWeOffsw+IR7D14CnzeVoy32hhmg8eTB\r\nDE/7MjMNEaQTP1O5XEkta9NQGT1fc9l061IFz9YeuE+7CfmN1yg2HAMoEfv/\r\n6GlsYxHVi/JP4csDVuLOC8JTcXPufn4K2cjifvDOY0xLc++kPdFIKxyUDTQb\r\n7dJnoPPz2aq4HYBH8HuuGmSMqunh+7QO40d0XZsJHIYPOmyeu84HuVT4zf4y\r\nnse3iTKRTydanF0OAv6dIs626mHEfxo3p2US4f9J09R0nWnGdUfWon+wNifY\r\n+k/PcTy6Nq5iSegM5uMRhfWKUwijotxx4nZGwGZjid841z5AmlMXCSILVjCo\r\nn1a7/OcOs+tm+tUEolYg5Crn0jOKaffBDbO0ZEPpzsxrdTwquFJ0/H4nBQaA\r\nRkHBfw6UMMH9DNuctU5ogCmFxv0Xm/Li5bk=\r\n=bFmF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ce9b4c1d5b612895f45c2488d8ba7279b4323be8","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.2","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220602_1654154173395_0.012762271386379975","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220603":{"name":"typescript","version":"4.8.0-dev.20220603","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220603","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3d854d2025c2574d0681d846efd400028b2815b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220603.tgz","fileCount":188,"integrity":"sha512-/BcKYtfSpuzSOPHdthZs78D7f2SCMKQ/rWtyYq5JJqVwHhuAsa0BD/kUlUFqB91u5UU8yz3UiG+mXBC3H806WQ==","signatures":[{"sig":"MEUCIEiEc+4CAGgeO00Q4dyv9VsQk2K9y80WSkAXV2ZYpZsCAiEA2PoCa9uRj1jL5kRE/j72n9S2kzsIJDSsbtVRI7NSNbw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66105831,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimbV/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrTcRAAkPjNEN1dGBDMAvNPNwzzQ5U8Tdmls6kG7irwe5VXrS44lCRl\r\nz5f/NuIzzZy+PMRpCiJf4PFyLJscqNjSypvW++ARGE5LBRqcddZPsq9Pxrlz\r\nCQ/WYeYOfcCHL5IY56htD8vJXaKsbiIKjBCPJkoPPejjFAR+Q6+UJB4iW7J7\r\nYydCrgGaQQXdsksn3XvUPgsFd3XronXQ6SO9VeFEpGePNpqOTvITgdygigTJ\r\nDeij2i6cvIjXB3VtV5nBTTIyk6FzLD2IzTxL+U3kuzQLI3EUgDWswnzjjUwR\r\njD2AwHJY2wJET4HwBliyl9Bx4054VVq+biS6RCvVE32t0K/lc+c5VEblNJnD\r\nkzOsfYLmNeloD+gF8QulYnVeindNV5wlTcTrCmS6yKvPoGbtZg/475OgNySF\r\nP86C5EzTLw/JMtsMXd7woFAhOckeArXhum4rMCkaPzp3tl1A+BF5BCsMF5Oz\r\nhVVwIHDZ7dxRuOZsJj61jn4laIri5HxgqOMFhRj5PsY6q+GsKQEsWTOR/cN2\r\nORiNpyceCCvbcNcLjO3t6cjqOORrU05oW4wO5oyDKCfEF+Tm6/K4sersN4a9\r\nV6mL5+K1ICcWvfG6R4T9WbJFbyt0K1/biViDHbfOehd79l18gqHYMm+apx7X\r\nXkDOApbbdv4QrZU/agrIya92PwPIHPAPqjw=\r\n=nw9h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3ccbe804f850f40d228d3c875be952d94d39aa1d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.3","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220603_1654240639406_0.08356236810151851","host":"s3://npm-registry-packages"}},"4.7.3":{"name":"typescript","version":"4.7.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8364b502d5257b540f9de4c40be84c98e23a129d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.3.tgz","fileCount":186,"integrity":"sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==","signatures":[{"sig":"MEQCIBgfZlh5hysDyRJbDH7RXpcyfw84e3e76jd7h4vy3u7rAiAaNEC3BMNptg7LALa53CsN9wmfhDc9Ferm38xtu+HsLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67150450,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiml2+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpfBA/9H/ncrfL0AjAyIwWXlaaOmQa7s7jbx6dXOGsYRGI6iT8ye9xj\r\n5MICxF0Lj21jZxm9OWANoF2V/6+P1CGl9N4+3PDqUrzjjERIbu970d6EIvDs\r\nMrL5HKLWqmFu/UY57DoRep3Px8SdpvFzf1jQ9P6jKuC2sTjltJ80eEV/XsPy\r\n6L0ukqf/YursGIeT6s27D6FO5l1L/OwwM20MnU0gVG8X4i446fh8G3EdJ1MK\r\nzYbK0QTRZpgAC5F/Kml0Em4hXOqYCiySQj0Al3QO4ZuSy1SPfuXtEN9d1dZ2\r\nKNhZjhlSR7YcIzywFIzEHwP4V+GmpHuAEaNWuHoV10VYEVrOpDuos/YMV+Kv\r\nUdYn6lKwYrtSgOtAAuKDjkT+XnaFMpojrQUbBOpzLtcPHTh/LDZcGP1fMuQ8\r\n+6/FO3XDSst4N4sq71vSAwwVF12V40Xi4UnOjdNtCb6OWqzMOFuXnLlXRhGN\r\n+taMcSuoDl1k+jP+1bi0hWHTPxGvRiCAhuu4VdY/BbGwp5ikWIsu3aMkAt3m\r\nJdczUyN4VtAn5aIuHmZ8lMYI3Cp4DgxDr3Y02GUvZPFyruDu4v2AnX4JUC6H\r\nizNzba37dBnKiFF/c08lwYYbvERE4rQITvTCStcB2JCaY1uLApX9wPmn+mcj\r\nlzjTVIvD4ER2htMg+GiYRWxs6lkg7k/zH14=\r\n=AP8n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-WOkT3XYvrpXx4vMMqlD+8R8R37fZkjyLGlxavMc4iB8lrl8L0DeTcHbYgw/v0N/z9wAFsgBhcsF0ruoySS22mA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.5.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.3_1654283710510_0.445445047470169","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220604":{"name":"typescript","version":"4.8.0-dev.20220604","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220604","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d82c1d3e784c163892f81131d8cf3924005a768c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220604.tgz","fileCount":188,"integrity":"sha512-TrscG7cu4ZS+KWNYpV1i/W6p6IE6a3jxdw/b9sW54HbB8Ij2nOXHcQWnpbfediTBWS0gzFB+BICbTukigRJoyw==","signatures":[{"sig":"MEUCIFNOiQS6zp2yjv1dS44btsvAiJsiub57LLfhpt8nrPxXAiEApABGFOjJOK8Eyp5UxPZy42/a/zHlm3DtSLZ7rGLjIl0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66245965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJimwaAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqyTA//e/nIWLAOnXnSxBbrmIhhMCGijWT8OyxP9jmO4s2cUpHnnmr/\r\nAQAUHdqFvieYtPpxwD2kezHepPP+iuQykqzVqoW8kF9qH1BirruJIND3CtYI\r\nKJgcuVxAWzlvJEG+7Ned5+40gpRBfRuEVf/sNhunHEi1gHU1uE5gaOaRSmCi\r\nnD2BaggVsLo5GgxEoUAa0sgGW0ucFxZKYEAgWYDWsLclr+Uwh16jpCYwwEdk\r\nwIg6oaxM+/ia1FGHXnhG3dJ7hLbuzIMy2+J5XToz5ZEg0ZArken3IXrb+ppp\r\nHcsZo4lkI+7Z3ajSsxNlzlswev6F4CG6hM4v7kAV1ZMR1ky7UMo44CSZIc4i\r\nyerQqYyEveH+6pDjlE4RTTjJrTthvsUATMOojGe6/185eTyX35psGpnXCLtG\r\nH2B5PiGkJ6UPoYTxsRwXfrrDjEhNdjS8Gy7shGo5DYJQzk8T8TkU2ug0M+bm\r\nd0dQzo+kU2NGnaE7ncoJPNjEkNWYhx3ZJl63boAWTzXjSSZLArqHqAdXqK+E\r\nnQbD06xPMBp9KGMADLiB4/f307dxwrMQ9q7vCnHC+UromxZoq+/mq38EjmgV\r\nOlzRIUbN9pEqpH7lMW3VtVIKRRYoqAT+JTQ4i+lqBB1P9EBMJuwGY+xDZ1fL\r\nziLIS/fHVlCgrVHeDcRt8tzjtA7GUJwIevc=\r\n=Kqwf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b2617d6e38340b172058223879ec91964f9e5749","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.3","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220604_1654326911942_0.522288526730093","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220605":{"name":"typescript","version":"4.8.0-dev.20220605","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220605","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"66f5f53b79f36054dd73dbdfa2eac7fe6575eb70","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220605.tgz","fileCount":188,"integrity":"sha512-lb8OIbeTOnk6I0M1Q6l635GmTlaX9ezaxCFpJ3dRjygaErE7jdhOaYpgzmd3M1kXouQglwcf2jYggCcyrN7+2w==","signatures":[{"sig":"MEYCIQDkrUAE7AhvclVWnvU+DJtss6wrglP/e7Hxf30BH1WmbAIhANndw7+MduUu28uUCGd38J821O1xYKvIqWK8b3oSzx5B","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66245965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinFfxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqWcRAAmvKSD1EsdRAcqeF5sJNVmB0HKBQ8X7pse23MZq6P4fJmMZQZ\r\n1tUI/RbXvAPQ8661h/rq2WNPf/GV8jXBB/C9yzsy/ekCJtx3aPENXVAJJogC\r\n/9fC+xTvzduGPPpbG3pQSV8pIb7OK8Z/70CgsoOqAu1Br3ekHYlGqnHLkB/1\r\nhjCqsB722U817t5jvvc2KwszC3zz9Q9Vyvp/MEYIvdC24/MYvlLGbK96TPr4\r\ntBumHniScb45La0YKcbXooU2VFpasJagnD6SJZ1lj7VbNgKZ2tsWURFnb/B7\r\nv/tWDslyzEEwTmHBf0GDW8sQ8SAJfI/ASMEGh7PUxPcTapvsSDYWBua9YtlC\r\nqnYjSjrJ8Q6BSoP17H8hyLDNkcuDLmEUiji8mvgThJL5enhwuSOp56qfaM3b\r\ngtnnk1+/MhYrxBDHGie5iOkDFsSEc+x71mUXeW9kJFWmCzzEiXxE4IRe5ky4\r\nqTfuCfHNWEiBlf3IzcOgStyh/xL431jcAqwAEjO7CAbtwFKnmqai1oJDTqS0\r\nwXuPl/sB/vS3ShkVauj/menTTreWwzrvQNR0Ozz4foUYjqhwzfICQMKvIK8s\r\nRidC4z1jZJnYtA5MVD7o83KiKRrnWsfiXtVMsY0m+ylli2v6cHQtGrT8wg2a\r\nIVwto94bkGLmUolqXFz991SSFNv61iTR274=\r\n=YE8x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b2617d6e38340b172058223879ec91964f9e5749","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.3","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220605_1654413297558_0.2706747836015475","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220606":{"name":"typescript","version":"4.8.0-dev.20220606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220606","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b352a9d949835eeefc0a6e00bb8938d68d4eacde","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220606.tgz","fileCount":188,"integrity":"sha512-51kwMaA0PjNQbVecA2dFXesmFff80WseziNC1cTcL7s930ApGJMCDbM5K5tzKX9o5Bf3j56KiLo3tJmg87uZJw==","signatures":[{"sig":"MEYCIQC8SG5j+lEMZQ8mZBY3y8bgUAEe3k9ohOtOMpDQw4XZTwIhAPxn3ieNTNteftGe+6pt711dQLlZjK2niALhQcvX2Cib","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66245965,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJinamUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZxQ//WZMHe25xk1IqUSSNhDE8Rixl7KCppBR4IujaNCH1Nzyez25J\r\nU0Wl+FpDcwnH/EHH5khbCtp6q3oH4xpqw+uJUhQ9NNPsemKgJS+VRvWkUNTQ\r\nhSRKdyoZf6dVV/tiwmZjpUdacMeZCb1Dm5K3MiFyl/VCSwUVn7EmV+v4IyQf\r\nN48/Hk27T6oh9re3KGAsH+moQSlhc6FM5EyMQay0KNAcAP9yiyM80mMRKwJa\r\nzzQi+CH3HCgDt4L4apfpTyJN8eS/4K72YQhvh/wX12uOoifNOLYUrzAdbIm+\r\ndMrR6A8DlAjQDAYL3X99qVuFnvy0L8C3NJO1xn5S8xHM23/WP/bj+44kZRnD\r\nDmbwr/lckXDjoLJavnitkcQDd7G/wnVjXj3E/m6NI6waAan9XLstqMG2+bW0\r\nYGgOPu/9ahkPHMGG0RSaiF6NZOD0ixDXptZBSQTBTBUM936HxkXLAqiqHE1W\r\n6PvReXTktiNQEDA7P5L+bZcMtVn4BCAPKaatj2ZAeqWbn9MJsGvperLXDPcZ\r\n9tobONoB+0PseJAy1oVer0gZUDXB786aVnIDIjjB65rXKVVfq8zXIeYX8i7x\r\n8H9msbtoFCVITbTAjYA+4eCQD8oEUbO7kZIxoA7bn7vu6ZBZmJVh3fwwBFao\r\nba4whIm2p6lgeB1+jBYJm6WbGl2jJ6H1Lc8=\r\n=YqxJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3a8c6307473a5350284699fbf0adc32a6b169a39","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"6.14.17","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"14.19.3","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220606_1654499731729_0.48046803798781657","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220608":{"name":"typescript","version":"4.8.0-dev.20220608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220608","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6da2ea3c79307b1dfc1cb3692b142cc13f974a98","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220608.tgz","fileCount":187,"integrity":"sha512-cayjhBae7omJ5MYxt4fO2PNW7kjYNCRqOOQbafxuzP0SWpqznzPROuNQqiBK1KJfgnRxBWeyqGBP52mdZDYZVw==","signatures":[{"sig":"MEYCIQCKt7Ff1Pon/D8xp0f1+IwO6RIALhkjiOZsc0L2d4gyjQIhALNKV9iWE1qK5Crbx4VwJhuA3GQgB5+dE+itr8/Ff9Jy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66254551,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJioE0WACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp8hA/9HYqDs52ICf0hBUR+4GaVIiVoFmMaSj6GaCJxApIAWKBd6T72\r\ntzyn9qY6tKdbyF20byVeEHPzqp2tmh+9TR6JzOXHgd4yyCiA1nwKwbHuholY\r\ntJnXdW9s+5ossedvk1owcb4iAqfrkuRcM1r48eW6y1y7UYrASkAIqFl0GBPy\r\n3h7p2CSp55GkBCA/XN7YflatxuKaI612HAJy8HE9Xvg6rRCLzv4XcsMXHkU2\r\nK+uSqYC0yCxbah+N5eWTE2+2ykYlGV2HK+KODMJOTp8DB9c1FVpOS5nUZWjs\r\nuhHPCjKzfaoPycVcSYZit5zt1YuGOqIbaVNp7occoMFs0oQUw+ZTomDRcR5+\r\n9Kg5bWb528Dao+qDqAekJ0d0Th5SLiW1OemmFFQCpEJqtB/qQFduZQjnpqn5\r\nWs1c/kivPnvXtR+aDkz1/SSO7MoVpHnUn0Dc/WGFFjvPujBUCJx44W3ohCi3\r\nDt8v8OyVpMMK9NiTVlT4zxA0Vwiju5+KRHGB9YVggMFUEoV10ZWSJBtK9rsh\r\n06cq7ufUX/ideNErOKaTv/sWSJsOrkdvniVHvq0bCiMSRy7pNna1GCTpIIEr\r\nJ2wCFzxXgPT0DFSAfrXeOYrbhAzuwZQuUQIr4nDwTelAeKPoZdYl7976EX+N\r\naIx3mWFYTfMR3mGNgXYkLti2jGfBIT5F+9A=\r\n=4wHw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7bff2dd28b8d70bb6ab51cf48be917aab155dde8","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.5.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220608_1654672661640_0.7227637932434523","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220609":{"name":"typescript","version":"4.8.0-dev.20220609","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220609","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"36cd6c441680ffa620c30c05729a358a9004f8d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220609.tgz","fileCount":187,"integrity":"sha512-SQ2Af67zhoMs70GNEMBXqzMR/8WNi4Emy2qyk3GexcV81XkzFpL34523nSTw4PHhMeweDBQWJnY7UHxqVLv+cw==","signatures":[{"sig":"MEUCIQCcPibH0wW9EmzRWDt8rJEiwzNnxb/pa2alEI+CnQ6yLgIgHcM79Q0gMahVlmtAj1bxlzKy1Q8qejeq/9YEjTlyq+0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66420798,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJioZ5VACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrj9w/8DHs9FSy/LoaZaHzUr93lLY34vSZ1tYBM8R2T7u5kMl1lILxH\r\nmeyOSw5bPJV507tLdDqXq1kEKdvbD/dr5meHnkgyDSR7/u26G7tTy0buuhGp\r\nJ8tepqn0fQ5nxtzjMa0xGjkAPyNSkIZ3uaOfW5SNPaVcyl4HN03Bszb9jZgZ\r\nhjduSO1TiXc8hnnDBcX3nntRm208q7xw2rYSZlo8xBo1UB89ZCMObjL9TPTX\r\ngX/9RxGke8dJ+tgAxN5vlLXqsjbdoOf9F3/TCO4DSCKgPiI+iV5V2bO5R0ha\r\nK3tJdf83ahFXAvM9+0XifC3XT2gj3YVN+TpTSH4e31JSR2f2T2NWYJCWcPw1\r\nOtVQ8XurfQcAoIwTYdAyVoorhxqqaXXLCP87i9NxQSATLO5/DLOxebeTYlw8\r\nvKjPa49hEByonPWXGaVTxY0VTIMnyaIFYuUTIsKXiIsJWDndjZ/N6lMjc2ve\r\nQv+KQt2myw73gJaH3NW+iClJxcSABxNZ7E0eqXYciULu5reVzVDXuLQo/q3E\r\nn2LpcIC9cq6MFNKG1gehUCIpalwgCYhBRQ8cKODS+2gOYE1fBBEvNRDlcFtR\r\nh7jSXDWR3AiO3oXtpAbR3LxPfDvm8ZzrpOVepN0zjrWaFqsNjdsShTbubLyv\r\n8kddF3EgMEawzyKWmmG4bqnYp1klY0EpAJk=\r\n=G8CF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"71106a63013dc0f5d7c517598c6e30587f21ef32","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.5.5","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220609_1654758996514_0.7864827252036135","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220610":{"name":"typescript","version":"4.8.0-dev.20220610","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220610","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"59faebd5e31d1499ef334d59b323d742f20a51b8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220610.tgz","fileCount":187,"integrity":"sha512-zhvQUC/2fEAlppPvHUPQ6W+6rVUjZRFcFeQaw1Ul5dZ60mXBdUD8v/REESYvCp6wjo/gYjHpBI0dhTBH1B45NA==","signatures":[{"sig":"MEUCIQD9f5KyyNN7Ez6i1OjH5u7ybAcVV8FVkYsMNi7o6oflYgIgf7HEchqNJSFMyEjx2d6KFlOkC36XrfAaeBzrfwlQDgY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66880969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiou+tACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo1wA/+PXsRkLNkO1SCTgqUswyYyffjaDMZSqwicvG8Isw6aABETN7x\r\n/Mxhc4MXJX7ulRWon4mq0SF7GQbSHhDMzitYAvBjt7cXmdncIKkLaUV6q1f0\r\n6xuRj2DEFVPnhPfc5A0zc0rKPsjnIVaU7O7Ys/2r2EIbxsXohr9YREJnxZUy\r\n6BOPDY++MSfNxRYCop0rnfMMB1fOK5QJsA/WyTiF2ghivKVeuQyQJBC01GOd\r\njBh7O6DDMCjHqimf2G6POTGA2DwOs7TurL+ztgjXSVP/tR7Y61/oYSOze24Q\r\nRopJmhRaBufJCN6Bju4r5j4wCaRia0Jlwy0+E3QhtianplYoAwW+QgdWB0ap\r\nOUutzHWYs85FaH5Chx2/C1ZZnm+0bwCW2DjwO0eD6vkWCnoRTVHGEugr75NM\r\nFKJ7LQRGKo157oi/90A6EpSgRpHdU0g4pE3+Y7RR0q3C8aNI8nqJOI+nHcWx\r\nIGUnK0ogHIG7i/rpL7I8GU8fyFQQAWaaDnVWuALyaD6iNqY54f1RMj4IO0Aa\r\nwMm9+ePFHNi4W2dGsMTffgz+qoyOIb1zjdLMAeYu1PSPaNn/g4VkAnFO9UCp\r\ndK9imvjEDO2u+PSJ4YGIP7P1oPH6YnsL6c/zuAwtaXDQcFDXD5ptZRQjP6Gb\r\n27Y462+qDtccsHlUIL1LTI1AvMyBjNiro4M=\r\n=rj6M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b3a79dbe04139fdcd09bb77cbf7698fcecc1c6f6","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220610_1654845357252_0.7321963687654858","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220611":{"name":"typescript","version":"4.8.0-dev.20220611","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220611","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e7462827f27a4dff24c78e4ed5072a44db2ed184","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220611.tgz","fileCount":187,"integrity":"sha512-0bNRrjn6mPDbsv4NZf5KnUFYQjVW02p3Ti+uPzEcf6YhJ4gJcratznilePB6UhG/Ylkwe0y6nenVBSvHqK8Unw==","signatures":[{"sig":"MEUCIFlfXQg2mZJW1omdOgrHck/jDJjkZZW3ZH8Pvf+GQw1JAiEAtyw5cmniD/ddGijdVn7jUVK2AOrfKTlqdXWLhFEVT7g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66887906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipEE8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqm0w/8C0dioAxRo73a8y1QbVeKqntO0tk3SluQcAvVZs/jsxo85/dO\r\nLJw0NA4tiqyHD2S6/wdnPYZ9SySPHZftMsS45lLf6B4Ad3RS8uyk0CmazGT9\r\np87tqaInv5MY53KIP4v758z6EuURO2WHbOPJRzG13E5ZwY+gEGxsqI3Eu366\r\n7dCpPUtH2h+qDSEJV7uH8ojSvCT9VnUfFmlKPlfoFLJvG7RK6o4EmBOwhbi+\r\n87czMi5Ccvngxg8uXAQdBs3vZY81nf8MatzVronD4Z36TlBoCfQc/M61n8jj\r\ngR+VRTfEvljwCOAhqea41fB3QhQz75TSpd6lHbDU41DySIi14XAmjadWJ8tK\r\nEkzXCTCCbXiGCiEnbEOz31/3e1OOs7XeB0fFDmIMKmyZwFwN3XIvio/dFGXM\r\nEEqQ8JE7PLHRvT0sHw17Bx9vqB/BuS37zFFWZUl0OFFNc/LOVcn4IZ2rdemz\r\n637QXNX3ukvLfO/EJlZLps+sHUqk27MQ/YKO1b361qfkqksLbsf2cwPyC7+T\r\nT7VmdGKeKpDyS/TyUL1cf3do4lc7LKLMyPN1cnND3SYfd++2Bw+Yz4YJZ9tb\r\n4cIdbQDRfk8nMi63rsyIuhfeaBIVEsxRuzrjtQALT7iTICEuTom11PP5JiFK\r\neLhaTMyP7ed0TE/C1rnpuZauCZ7BR+XdUzY=\r\n=+E/l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f732a42bdfacf01cfa9b6f4cfccc76d4531ab7d0","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220611_1654931772112_0.8560830129889434","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220612":{"name":"typescript","version":"4.8.0-dev.20220612","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220612","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"936da90716e69e49c1b899f6e790063e8ebf6b84","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220612.tgz","fileCount":187,"integrity":"sha512-WCXQCSRGloxUcvsFFKlx/HNzsUuW6BaNaMQ5TwWRx6Q44mpOxmg7H5Yq7bzqgZcAEomRFh/9raVfvWxIBDRkmw==","signatures":[{"sig":"MEQCIH1de2GN6wS84LZux/k4afaN4spsH6s8vkHPq0GZC81PAiAeen9zC6doYFZMuCb8oUmGcBuGZYaYq7m9bfW9BfrmRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66893537,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipZKGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqUlA//f4ThdThZ1zIWb8elvuzQ9e9lAJD9aVIFAugbkrFiXZgSqnh/\r\nT7WY0PyznjUfuKi9Rks/V/hotLOL5b98pUpT+2UKuAfXIP6JOQhyNYIiFQac\r\nToOXx+vVfa2uUjdrzKGIEuYEHnVn///5lMvos/tbT3qCDFhl35JtexqRiS2b\r\nqQyStTKFoAkgNTnPGZIBsLepztts0JZsGcLY/bHrqLJvgs23jxKTVZ8bP3vN\r\nqOdzEaT1vwwA7/8p19BZFT0eyH+AOppRqIg4AG4yspe/JcOcwauPZwJxod8Z\r\nz2+u9VOfXW/S6DG1X3oLl2C69445nKvhFfjJmALcS9qbqJUVQ4634B+ErCjh\r\nnJKf1klN0NxA3mdiTtn+Hvveh9+WGuAiLv4eGXmlneNUhdkEJ2CNuqlaLCeS\r\nP8pSX2wFDn5Zzo/6Cr8sGXeQiHo20QRJY5oLHnqNAWyVdyWpgbjNdDYHHijd\r\nnOmYl9xxfZ5TSF2x9OoQ0PuwPePGo3ltjhVJY0sl8agsxgSTfJp9ydvDSS6E\r\nuRtlYpWGLfjL/WwLO0GaqCeZIHdGr5Njh060HWrwBM9RhQqnfRIwsr/gQasM\r\nbjspey+FnrnvkXZpPAkBiw3+n008yduaYtfYpEc9j89pGWp0AEgZ+Psq0lf3\r\nCXsvXd/RtZ6jwLr0TTwB60VmsGHMLzyib4A=\r\n=WETK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2ecde2718722d6643773d43390aa57c3e3199365","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220612_1655018118315_0.8846939872895403","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220613":{"name":"typescript","version":"4.8.0-dev.20220613","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220613","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1a499b6cdc072c2a04f93b82555c9665fb9b4272","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220613.tgz","fileCount":187,"integrity":"sha512-ta8iz+W6b2pCdB+6FDq1rCPoxgEWE/8jxqm0T1Mbxj8HeW19qb2Q+z/3hmKj1z1I7iczOmr0hbPzL4mC0OIndw==","signatures":[{"sig":"MEUCIQCQ5foTFhIWYF9QapfcQlsZvk3N+kjBvt03vM89WIGG/QIgJyRgEkLzyTq52QgOamMC7TNFLRKeKaca5R0CsL3HPxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66893537,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipuQFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpHmA/+InGucW9Z75e6eW6fgkY0Suv74TRgNR85atEX49vmphm36Cz5\r\nIbw1CM50eT/rHOphAlIRE+BkhKbU5Z2mM4evary8tHlC8oTjUJvAjBtAzBeN\r\npiBRTGY94ByFu0EIc9uqZsprsnA21heMBOM0yPgi2nCkYtlSY7AJ5RIF+vBS\r\nl/tue1Lgo8VUXQAK6ZZCk0/XHxwQw+zcEBsWVaxRLgATUc0Fs9AULw9iGuRL\r\n91RmuR/NB2JMzTTe8DxR/8duEVWs/t9B7a/Ma0VFzFpE4DF6Uk1Wc+GEjwL+\r\nw+JJ5gXHX9bazEv8wv+fhFlnP0bC6twG4gQByq4Zqezani7RZqUc55gKFjeh\r\nu1oQMtovbDUwn1dS3g3bJymw9QNrjU3qcLjcd40zMpO1/Xo5/lyQHVXPfobT\r\nMKKyHbe0LJqDKAK0hPStsDRX4Hz7SgLAJ49FnZPUZmPzgRTJOTvl4nbnATBx\r\n4Qbs1Qdr7r8QMqodl3D0PyysjitQgi6Hrd3NITUKEmb7iZ7nu28pjbSrYEbi\r\nH6HVoCNUpRlrZlkL4+ezaFQStLz8R8gDUiWGBQeFGE5+TgGCSS1KuxaYSLkg\r\nH2WbKs31V/Kn3vh75btiSVxC3CEFwmX/MBIljSunRBOrYxRPM13VMaiRGSil\r\nQXtXI5xKBePOyhKABwzy22xOu+gVRmLeK9E=\r\n=Y+In\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2ecde2718722d6643773d43390aa57c3e3199365","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220613_1655104516590_0.8220366377461703","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220614":{"name":"typescript","version":"4.8.0-dev.20220614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220614","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5b3f65db9667b054667f891d79cebb0e2993c162","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220614.tgz","fileCount":187,"integrity":"sha512-pZVLT8Li6ZCYmyv6F+xEJ+nZ947uRE7el5OloggrPZdhjDJpBBBn/CK5YCgnXcmZFgwO6WMbco1GwfsR23CsxA==","signatures":[{"sig":"MEQCIH+DNm8ZwB3oKQfHneTrB8LZ7K8U2kgIAD7pKRja4gZiAiBQJS4q6v914WRzHeGQMbdtCvQskKRM/abbzPVZZoyedw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66894088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqDWGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmolWQ/+KajVrNilS14GSD6tGM86Lfwsjp0fFp8JcUMksu3eFZZ+ICa8\r\nuqMtv85dqCgsAqY/X/FpY9/CBjiPihQ0VmMnXI4yeZSVHaJP+Eg5oTxX390b\r\n2PeKVECOV5fhku5RotT8VmCFnAVCGMEOetlNqWCa7FHJbNEhZNcNj0eESyCP\r\n+k+52Nm/rnZ87QOF+mMzska76AzVN2ksoSpJwN9xyeaN5xhSfgM5l7wdg9az\r\nc2LtWM3irw0lBB4Fbm5W4imrBOX+IG7MIKhAVAoIDURn14dmCBvEozF1KsP4\r\nWHKrDj4x6ytRkPKJ6BI+bu3T+oJYdEIjK4bHL0vScVyCgRCVhxg69XH9qwDu\r\nh7ZDCzI8qW3s15DCsgOHu/dIfo4xhlfoMfDIRJ45JNQgQcv1t8WPnwjaLtmb\r\nnvxKzclLgLXnWsSOzks4zuRUIwrzDdjjKF69XvHR2MhXQIjKC+h3y/Dr+Y/F\r\nNU2fXxKagoapAoo4P4o2ztHxkhd/6lTUL5t+jIGt/zCk5oUqCq4LzSoC/OXC\r\nZOUg4klcAQCGzeWoYWPHsOodiBgzQJskwrtUr9kVDKkGr1mhWkNm+g6+voX3\r\ngnIuIU4gBpetG/IbI6e1kuuuK+OnGEdcFLiP9mZqiG9iKOd/YFahYtbSnZtN\r\ngeMGKdlw1ftOQUinTjiuHfwLzjS/NuMD9wM=\r\n=nCma\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4c1e8f2281e6cdfa1160339792660cca1e4ba4b7","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220614_1655190918082_0.6221793525856831","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220615":{"name":"typescript","version":"4.8.0-dev.20220615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220615","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9dd1fede6e445ed1f7a16c13e335a426e3e62c0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220615.tgz","fileCount":188,"integrity":"sha512-Is/gGrlFdQdT4GA/FEz4tMnDy78lNVxCxtZule9Xv5LRSwLgbgLwJQBMqpLWXd/KJO6u66F2EFmfXU1g3MCVZA==","signatures":[{"sig":"MEUCIB7iBIpfQWCVrxNijyNxwCrCcPFVuWnArOQMGgN6icGmAiEA/vUMrYJbw8l+nchkPgKWjAsZtGBdaAteQ5rSzWf2PJQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66952795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqYc1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmolehAAl1yP7eZAQCw/5zdmI0eWhjdnr5vhlOngDVtslAfuJaEtMSaw\r\nLgUrL+SxwhgyyAVFX/+Ig0HkUVXHHQB3OsJzAgwr+tzGsrQ4Q+qeuHxAyb36\r\nSR/t+7nO1oB6AC52Op8qBJlSUzDVGN0ynZJKPAywDb146rOKUzpAcn0TlsoQ\r\nKWw2y9Uh6kx8yuAW2D1pVS1rPi1hQwlfhb0wkA0bGx/aVM26bj7RH4fH47iO\r\noIsZHKGyVWdtt1S5D5Lgjetddhz3UzBuDIfuDOEiNZ8eodoL+9iogjIrsiy4\r\nCmOTjGvL0kqCtCuW0gjsx5z2UESPHNfZAPQvyFGZsy9zWeADBMWxlLc2uzNn\r\n3Sboa9zr/aOvo7BRjV6eym9+kbkFgmNwS8iFTAqK9lC5PisoOnimrupYcY9c\r\nioQNGzb6IC2q5shcBkMY9ktZo8DFsI5lhcOkgD+GPgTblmcMv2lzu1X+BhWn\r\nqSsnQBrVtCpwmPIjGsetHLsCvNYLgYp3SSxkdsMoocU8u812+rOpd6kA9oWp\r\n/9SbeGoTNEocPVAq4gkJu1ibVPFqjNS7CZzFu2mzzv7RAbB31CQuQyeozqmI\r\nNSkIfQFzqgISNBe6pYGgU+2a+aEVjND2fAV3XWaFJ34XbutzqEnD5TqDakxx\r\n5hv7fMzMlS7k4hEbSt8jcydYwlHjovDSzlI=\r\n=mj1n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"89d05f7131b233c4482aaba5c15ad289f26173b4","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220615_1655277365161_0.27580182923102026","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220616":{"name":"typescript","version":"4.8.0-dev.20220616","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220616","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"36546961ba78a431a7c2c1c237cd276eb7d8baa0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220616.tgz","fileCount":188,"integrity":"sha512-h2wzWHPPOsv1ppCSxN7CcKYni+aTGdNbWdOg8CXIvOchMVIHzfa8TeKkEH5hugVZCJkKslY6hhcuQ2qCwuXBJA==","signatures":[{"sig":"MEUCIHXC9lDeyDy6ucU2wS0GNuxDnj/8EA7G5cJO3BlvvbPZAiEA63skVPln1Sw1Gq2a6Tpay+4G9McBXI42iDmzcBEXpUM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66977772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqtnlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrPLxAAoANhg/m+zpU9weww3BQAn65WLCICYVs74db0tf2PFFkDS8JB\r\n7/f73Z3SsmIHP45iVJ2EZB0ju4zDGf0zG6ePiHczX8wTOU5uDq51mcF84VUQ\r\nvY+24zivVHU+ex53LTQENx5XpTMnm+IHYDIIRuoDmtr22r4zE+QpJt+8ylCV\r\nheJjRqhSbq7EQ9/Rh82WcRogELzjISbCS3hdyC0VIPsYxh0JHKU/j+SR+y1b\r\ndTaeQszm2GZwaC3duiwe9yOl/7wfAHoX2kjdWt/5GAMds+Lohy38EZo59x59\r\n9Xp2dJNaG9V4NFve9Fsg0B2dGq8nVdsYFbeZ6ZyB8JijIxDaJZMYsagMZmA2\r\nsk6dmAJcMmyM541Z+mvvr7zOoUmmv8TgbAzht8gze3IKOgOufsZ2yZ7xqB+E\r\nhUSUP7V+1ZEMZli1VcJayQeFUbeCfk5+fv+8YspljlN3WNmI+s9jDDJ8r/8z\r\nzL4W4EWz6wTmnfqsETFQCpQDFmX2T5xBb9dfj2kNcFgKRaojhqI/Xdd3U020\r\nyUiwoDwDDbfcLgW2LHcnUbLEFXRWBxgT/Bv0NvIi0gUzwvkGx/imI1IJTanW\r\nxsXVrgQ2mZao5w62b5eiElAe6mSYh6tJyOSivDUwJjsDfdicXq/JGMIZkykF\r\nFpV+AflMhAfd4PgCvYHSHqK8qoUB5tQSewc=\r\n=B6u9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"44d6b512812991ec4f094db848c1e12cd08d8797","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220616_1655364069018_0.7137473718574643","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220617":{"name":"typescript","version":"4.8.0-dev.20220617","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220617","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4bf1f6d37065546bdb3e77f0084ccae6c7c2268d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220617.tgz","fileCount":188,"integrity":"sha512-wVck+bYkw1T7uOZ5448lp00u9+8GPpNVLX6AXV7uMPgvWqw0exrIZ8BEpGmrt+buhkCKfZeiTOX1OF/sS/EAJw==","signatures":[{"sig":"MEUCIQCvMLvq0rb3CYOmqeXJomX+Vp9gDBiGGD9UAytqsJwlXQIgATZHRdthhMVyy/dLipPoaHXCHrzwFbTH+v9N75lftxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67016197,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirCsXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrmQ/+J6CmuXZlgJJ5pis2+Ju5LqTqhBC2Z7JXc7bzse9mrVaujTJt\r\nI9YqkfTLG14RfDaVBwc1B9XYa9nHNjV7fa35aKMBuNtVaT/fm1t3LpoEPial\r\n87KSJiNTGy9shElq/LCmaEzhqc5TqZtLfzaRz8CAR6NC4dAEtFtcebsf+vKu\r\n8PxejBW40q1iLgasuxJlRnVuodenFSmyh9hGlx1BASBOhrZjqqvWw+EQLvYl\r\nqC1mEVCjlx1edyLsXbqA+JuBz6BbpVbniK0sm4NcIAWuB/SfVDwQ6PazKrpq\r\nN1E3402XI+1ok+OTsRlzgssLn6lhN9iRzenY2rsr8Od8kkOofg11uHUnuLcb\r\nv7I658fLRkKBWOnjOeDSuSH/j/I92Giujm3vsx02i0y4tsCN+HQORsbUjE/h\r\nIoLa7jZohigu9N8KtUvkdodpkeQuo6S/pyTAEbY9ZfEZW7SuvgYdi73lpf3d\r\nKy6DeIF8fVvglb/aRTL/vfNN5Xee78TzkYH9ZbcRAgOeDvXfpYoztx3THcyV\r\n42uApQaKuJJKDSf8kTGBMEKuc1J8axq1HcKSq+BPCmNNRVOdOS5qU4qfr+C9\r\nZefvKTSOWK8V4JchYBvTVReFxPch+RkqjjxGjamigRpGbYcAn0YAmYWck3c1\r\nW9vXnob7W/+JouCOpDIRuX1BT8mz+ouyrVs=\r\n=mCYu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5c4caafc2a2d0fceb03fce80fb14d3ee4407d918","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.6","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220617_1655450390379_0.9981888670403842","host":"s3://npm-registry-packages"}},"4.7.4":{"name":"typescript","version":"4.7.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.7.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1a88596d1cf47d59507a1bcdfb5b9dfe4d488235","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.7.4.tgz","fileCount":186,"integrity":"sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==","signatures":[{"sig":"MEYCIQDwrHngzxWXFJcnSCsAIeSnbziHrCnMiOlCf/sdlNdu9QIhAKtxXcBzKJebG7EKg6JyI4nrlGgCnWOo6054Qcimx/LZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67155758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirMYwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr8qg//c48SEzrfl46AQt0clZasNrLb3N4CN/Fg2U07aBErHgWv+RJB\r\n6vpabBfC3cTvbzcMAYa/REEsJATaMmT6My1+GeyW0IGlZRVRmJClJcQywH8I\r\nLEgYygietCjsfQDmT+pyrl3ruAmcJxTDYdmFOA9ZgvwcJW549iC1webyRKIl\r\nMbQo+uFogdlmuVdrNPtqLMbp94mtVkcq2XKNSE10Pz+/ClS0NONpw33onDO7\r\nSwyoxU1+2n97Bvd/Cl7Wpc4DUFed8Fo9wr/Pt7YA9q0Ymge4FGt4cWAj8/9h\r\nc6hFgNxW8d0+22VeXTKIjMiQHHSi7uNyQ4JuLkC9f1I6fJRwykRMkrIJMT17\r\njfOnwEZ0Ew7E1yD6p6ZS6MwlMC9k2WyZ1oUvnv9RSLEzH2Q3wEuc2eH1o9Vb\r\nApgvwLO1zQufoQAlVMIoCbmz/yQJUahVidSJaKOrEuGIITWUSDjsifJiHIqv\r\nOybJ6YKSPrPSaMrhRL/HoiEBWEvt6bNdvXOkuEiEuoH/Rh3vmA4l65pPGjGX\r\nRutxUQKWdy+5+c1gY4nRP89BmgL6x90/j8VQ9ee+lOdPhqo8rGUbEDAPGUkn\r\nIJpmefl2VOUEbvHnjmHhv3/7BQEmnPGUJyC5iQRd6yavLRIqg+hHfEh8c/UH\r\noL3YkteKl2BJ5ap83Gz3NdYoF8a/svukrS4=\r\n=anvK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-C0WQT0gezHuw6AdY1M2jxUO83Rjf0HP7Sk1DtXj6j1EwkQNZrHAg2XPWlq62oqEhYvONq5pkC2Y9oPljWToLmQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","devDependencies":{"q":"latest","ms":"^2.1.3","del":"5.1.0","chai":"latest","diff":"^4.0.2","glob":"latest","gulp":"^4.0.0","prex":"^0.4.3","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"7.12.1","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.19","@types/q":"latest","fs-extra":"^9.0.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.1","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.0","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.3.4","@types/gulp-concat":"latest","@types/gulp-rename":"0.0.33","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"30.7.6","eslint-plugin-import":"2.22.1","azure-devops-node-api":"^11.0.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"0.0.32","vinyl-sourcemaps-apply":"latest","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^4.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^4.28.0","@typescript-eslint/experimental-utils":"^4.28.0","eslint-formatter-autolinkable-stylish":"1.1.4"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.7.4_1655490096311_0.592276919618699","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220618":{"name":"typescript","version":"4.8.0-dev.20220618","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220618","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ca51726dbc1d2e84bfabc7aad95a769011295b49","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220618.tgz","fileCount":188,"integrity":"sha512-FccCyU3NLXJW2R1in5vwiXxW3kruXHri1wYHEElm0YucmihwMM+NQnCPskYVvxYYml6fnJ3Vas3yANklkbeF9g==","signatures":[{"sig":"MEYCIQCvDXE27p7KMPQrV6ewlzkxVC/hKDLaW7VATU1aPOJLMwIhANoyW9wD7E2yGM+E72yJWaAzI6UXNHGult8t5vkZGzsj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67060886,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirXxEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoaJg/9G4m9tNOYfDVW77TJhGjMCx9PXI4lHgZ1YPM7NPVYZpxWRAru\r\ngqs2qBdbHOkOqp6pKNp8Hm1Qa6z/+L3OP8SIf2YBNzGOAxsQuMmO3JaJkXxw\r\nh1UO6uViFQTARN/SaRD1YlE0HdU8b0cTYka1wJvv2OcJMYR2G6EY4YS2nIIS\r\n6T4sJ/qVtq4TI3qnWTliB3bMqcTQqMxR8kcGutCEhnqSX1eq58MarT8uIJZB\r\n3l5f57vD7u5wwCSlwKtVaVUjyrQqDGy5F8N0qy1weHpm69Fwlr6PdrPti/lI\r\nPvsqRp9MVToF7pio8ytVeUXw4ln456H4JOwpusii26dSiTc0bLogsc5c6CcH\r\n0dJmoiKWpY3uKW0EvHJgNyIrvHD3xJ4KaRuVOfU65WLbsom8Hh3d7Tfny9ia\r\nIy27oUtmRc6lC9W88MOh/44hpPtJWGKjU/I/fsWCzzeMjX3zSmTQi/OTrNdH\r\nWQIWkj8fVVNESp0SfrQ2+q9upE1UfHU6TohKdykB6HPVfAoGzdyzyZsC6V25\r\nshXvM1j7rCm0YiZnvU37oiDGg7lpcM/pKZaumH7ceuxzKSc0Nn/BfgTG49Zf\r\ngbEx4BczkPMz/SAHWEqOXGMPzUB79VDQr+3uSR+sxGSQU/WsU5kBaHVtOvwa\r\nCkWzoF/i7F9XwOY7VIKjCAbEpjNaWZmMK20=\r\n=HQ+x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d7e58c8ea915035508664505b6c698ea0170d919","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220618_1655536708420_0.16476169300479437","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220619":{"name":"typescript","version":"4.8.0-dev.20220619","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220619","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1905d1bc2777da18cf1101d2ee7d838a96e0a9bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220619.tgz","fileCount":188,"integrity":"sha512-NpFWRlw7zUpvTq5vbrcfHAeZw3ul2FZhT3xkmx1r22zft1Rc6q7ZYIFeD8jcgbQVJ/Awh6L/2LcK2KtNGd1dUw==","signatures":[{"sig":"MEQCIBZEW2G4UHYAWAhfxFTiFD5LCYx+zm7vo2ks8eMluswIAiADooPR8Pl41PPJ+hcdSMg95CgZnqgdcYeRfXQfWjnjiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67061654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJirs3GACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrY5RAAmJzKvupVybjdyUtzYh+rrVacxNuAt8bZq/yBahHaW2J2Y4Rw\r\nN6RGu33gTtSF7BWxI7u/zUqRi1aFAtlr1zBsTZf9jsnkapjdosZ8VIDuIsUz\r\npIUpnl4fM5vmkl+JnPj8wCqCcvDNH7yPse2vRwNfUaqWPtLIPM48Mwn+pLBr\r\n84GsN2juVKoKrqPNBBnzE8EniPxVXNN7VGwIkBooqznFyaQR/CJHjhrI7mEd\r\nZEHMVD15vpB2ytBUxDDEbfbqkEmGUwFWQ5OzzzwyhHtHHwTsiMPb3MOEWXiw\r\nIWs5xJlgII48GAW9A+BBS5POcoDWOSAApVEjfS8ORmnGfnbl5hDoqIwYrIxI\r\nDRwCLd36KK16+7DqkO9KDq+Z/45zoTR1YAObqq0orreh2yY5LuNSCbFcesBz\r\n7teRZ5V1TKo1hNu58pDpin+7i2JLOWEC6odAz0kNIFHh4hgEop+PMt66fxDI\r\nEg/BUgEJtD/VufZeEg1aPUCTWd3wSfQ7/1SN4lsIabsRHEw4gN+mXA+Pmoxe\r\nbqdUZkuxxPluskjUTrQEAeNRASl6lFQ746Ww3/oFwtXGoyfPkic9URbnHH0u\r\nvG5s/e1aAxhpqGXKfUshWjAPbOarx8sdyu29/byy2levXxP4b+H0akdRCRzH\r\n7H5G9BU1Fb2jG+SDS8TqYUXdhgeDoaLUA88=\r\n=nAQ4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"730e6117fdc05b0f53ad7c83b973c0fcf0af7290","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220619_1655623109624_0.5339633500949343","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220620":{"name":"typescript","version":"4.8.0-dev.20220620","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220620","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c4f7ff5f514e952df73df91109ccad0d0cb1be91","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220620.tgz","fileCount":188,"integrity":"sha512-3a6YK7LRqhqssP2EvmBTue7TAFuSdmPP0tO9OJchbl3JJ1AyZhouFp64VDH2Z/u9ZhA19RrMhATzK091NciZ1w==","signatures":[{"sig":"MEYCIQDTBVFvvglzRLhRr+LgDJtcN8mLhTaE7u6V8u0zyEgXiwIhAJMFshfdTuUR6N5BaWyZZ00TCA5m0tUN0Lv09upiu60N","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67066806,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisCBXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqNbg//a/tGe0T72TjZuLdaf1+hOmUTArVpBOiNFRZMljl4s1TE3LYb\r\njx8J7HOttPsnMUJEzVrCJrKyG9Yyc5h6pmi/dVSPCKiBSn12KTl/1/Z+9KUS\r\nqDlA/ELj0VvFVucm2VfPLQrIKqgJXqpSPf7CH+qvmKmBLfhZR9jU5ZWAYf3I\r\nMOCGksht/IkcRuKGNS50aJGzqLNe7rmHhglzqtSEKbewnGysSLSwY7nqjYVG\r\nPwjtzL8IVehQdaHxD1L5kUsdEGMGqqMGwaedJ3zk5A6dBw0Tgxwo6whfPMZx\r\n0Awpghxq2qZfMuw3v3mAdb8gywiTr0214ORfiuUHQybdXdCDmUqILEpJzP6q\r\n06XbV446R4bGugYnCkdjpqD74Fj7AIRQuZOXkRFTCzs6YUKgJA53eA1vGhfU\r\nBGZah39gPUPS419uQSk5dFY1K87bkAGxVsvRdMiVqUhXJ3ij0yjS9zI8MkV8\r\nP/tHI82vn+c0QT5SqNYOmiwSKFpdts7+AVsp/pC+WOWkopwc+VB23udLqtEr\r\nlmOAAm5Fsjj7OB0XwTeWJG9v9wQSzWRV9iGcniq2CFlOJZHvukwOVe9pFtUe\r\nBLrz2AXCixA49LB1xqA1+8TZbnyGkQIXpnDVIBbEvSEGuMLUMfAS66IcQ+dH\r\n/A+JdQ+CJp+/D4t+nUpMJlvboWc4pXJ04Sw=\r\n=QhgM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"96d298c4bcfc5b3ff2333ce066f5e0a5c80fc844","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220620_1655709783239_0.8591858923156648","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220621":{"name":"typescript","version":"4.8.0-dev.20220621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220621","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c33e6777ae7e1402620cb7ad5a8fa2fe2e8f32c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220621.tgz","fileCount":188,"integrity":"sha512-PHGgACdx4MlvHE5Frxbugg55gqiwEO7z514J09qdJfEZrcso2Rd26pteWWefuGVIJVBWJRETfb7/gYv/nwbevQ==","signatures":[{"sig":"MEYCIQDJ1pTYR2WzHCIAudhL3+ouzjdzwjwWElz78qL78KSzhwIhAKU6EvjmWlP0cEmeCFXAB506VOV4ivLi+qJcigr5eBTT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67075832,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisXEvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqFlg/+MZdSX3mhpROdKaaUeqXFUWa9V0TWSqqMMNse+Qbq8WN1n9We\r\n0w+f8tA13Nz1vXPixYAFflaYyo74qKrrPVidq2ukaYfkIluFyLfQBbIKHrjj\r\n7kEyDx0SjUbLSeEI1I9NaIkQA+KtcfEDz9amewVB+3lAuTfEMgVOjVG0inAb\r\n346T0xQ/3GrFG6B7ALrc/YjDlEgAWBA/TbJuL8FiRR+wD2nfzOBybFVp8KI5\r\nyE/hPMug3omqGF3sUsm093ma2OXYMvnKZVa8FfzR1XLFtx7eov+81z5JcfJz\r\nmhAYfYbFMrDQbl4kAw70cVS8H0AJai8RkZPMwh50+V9UBFAmIjZ9zBfdBx/O\r\nV/oY5YeTyesoe7nPhBkBTtmjiqM7su8MTfPRKDllUjJSOWsS2eO1l6lrrsyz\r\nLyq4rhCixyWZPciajQJ8JX/PDjW5pOH56iQf/9CIdSsZWAU5k0jphep5md0h\r\nMdH04EE4IqoIshw9eFX2HZSFg7DTtA/mP0Y1Z9I3sF1STxhdlqcM64sZcIDL\r\nhqK9oCJsH/n2FnYEuDOXx98ye8ZEZ14gJ5vVH3SeMSNMT9qvV898HwAQXY02\r\nXPVRsCRISK5haSGQA9/+JLcnqCFKFPxca7ed/q8wXTh/BSqt6qu4XjLt2yzO\r\nRPh9w4f1IIt/5EtRupopsUsYchlZKXZaexc=\r\n=WImS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4c2770d769b8735a78bc3642fe2a2f538c4a6cce","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220621_1655796015048_0.7439892689630423","host":"s3://npm-registry-packages"}},"4.8.0-beta":{"name":"typescript","version":"4.8.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8f3541ae0934f44426047b382305ad7939469e56","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-beta.tgz","fileCount":188,"integrity":"sha512-Almk3jQ+i+J2/6Nq68M9hr7pYemLJ29pJJ2actTEGQWHSOpfTRDowfWYRZ1cgAXQqcnvygntgD/6odChhNcKlQ==","signatures":[{"sig":"MEQCIEXWN1Z/PaveZWlAfmqN1uiGFKAPQXjwyXY/nfmm3k52AiA7PcbUOzuPVMravvpaoCZDyljRqHHQQlbOVnGPj8UXDw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68317525,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiskeJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpaag//TsO2UoT9wF9JLLE8Stxb68sNAvDL6IJclJUW8ALN1IZrgUiS\r\nuoGqjh0qKNbmtNT6OPlGUo02OKBsBfJKWj766Dd1mpTr2YRk1+o1UMjjbPLm\r\nHigYpVEBIAIi4PEGVMc0pSedC/yLmvhfs+X4uAOQUotpGfWHbOxSaqlEw8S8\r\nE0Z//BdSnJzm7ZVS6ZgMTMO9qMsFa8DfM3LHPLuKUsdCrRQDbN5jXlfDxFht\r\nITlDnABO3sT2uaC2/voSyZ3YFfnyIbgRzvpemAQ4sDOk4NiLvTaxd8QYZ7mJ\r\ngVQJvHsOf3h0bB6feSPXtZNLysBLHnpcMTxpFAHCxD3xDtj/6531+wKZpiYn\r\nUQrCWSW6hrjG/s/MvK0+VS2ggAQ0SUCqEWiRLRSqZrPfqBQtkJHHWTQaClY6\r\nkCbu2jYb8vnsdkg6XgMqE+1iMLeDur4r61KAF0TCn5VIzIWF0RbsdYZAlxll\r\nkpXzfCVPhBDNHzS4KS0U7CUmwh4utmdJqDVtMAqUUVVNtCqhhXGq5s6C8RFd\r\npsxyPpCTJTueEw23dmu0/8L6HckJ4SkqNEnBH6z1MlWkjF+HwvjdRnot/En8\r\nBunvaBwJAAS1c5qETM1x7YTnG6zwSOKwxEF96hPEAKYz+5+R6oCLQ18gSYww\r\nOqXUNjsFLmCRRGO6wpWGb6Fy0zYrbOG3jcY=\r\n=QlLd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","_integrity":"sha512-Almk3jQ+i+J2/6Nq68M9hr7pYemLJ29pJJ2actTEGQWHSOpfTRDowfWYRZ1cgAXQqcnvygntgD/6odChhNcKlQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-beta_1655850889113_0.6505692013115141","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220622":{"name":"typescript","version":"4.8.0-dev.20220622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220622","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"55853a8560eb090089130d25ac813e2d20689d40","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220622.tgz","fileCount":188,"integrity":"sha512-Am95aEDYflhxvYuJglcbr7lwj1tztpwUhzS9SEyo7J5sXtc84mCvEmCxlJ4+2/nWVY61PCVjyPacQaLMHD4efg==","signatures":[{"sig":"MEUCID6CcILLIyfvtxugXOOPmybStiyYKS+OEgGUHoNWmLxTAiEAsAIZZklFuxyZm2GEq5rYQaaJoZqZrdsXT72axQuaA90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67081717,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJissJPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQ0Q/+P14DBaq3QY0pW/Wj4fJ6+jbVioc5JmbulWhNry+b+Yv+g9eO\r\nkBINaquqHL0VSBBF9UMS1xkOVayMWjjvoZpLl+7QK3GAGgW1aaKCfaLj1uq6\r\nkYqWFdzOc1Edzjyvbu/icHTas9XmvXlH8IClabHqac0WMqjWro1gxslP+drz\r\nvRmi8PeNbqBiSEcGlegP2N+6rtLPTmpGEZWgj47e+sbnsJJHqxrtR3aGj6Mp\r\nj/LQDXZJHmObWTLL5sDltD5IQ8cDxA3OEVUQA75nc5Y+vQ+HuUXYhxYD/CqZ\r\nb6XdzJKAwNKNyjRacIHd6O5QdlsMcMhCeCj5DFpjtFCNQThjtTh2uot1pLzL\r\nyqb+dI5WYG30rVkRwckreNUsxA818VcisIQbV+XRw9b+74LP+5ooohGchDBv\r\nNlShyCReqOAFqugXmpDNcND3OASSMYujFOs1dSGtVXZMIGh1y28cTIF6EUjD\r\njNn5d2cAJZ4S6spxPrIbHMCkGf7Jr/KJbRVMw9pX90iB6XFH7qVCLHHBOTlS\r\nWqjeCiIS/TKMhl2Yt9z/dbXOP71OyOcd1x7voGiQFQLwNjv60gtWkm8EmFlI\r\n4RfvFujfaqgS1AtOsIkNj8z6TsvX0aBuwjsA3K2IzRrDAOAg+5pNeAPALQb6\r\naSrlI22iwSUYJU6d3nDp5aZBF9QRjkST1vs=\r\n=Z78G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"71b5bdf9807648cb906cd67d2c63f5983ad14695","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220622_1655882319094_0.4460860715719168","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220623":{"name":"typescript","version":"4.8.0-dev.20220623","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220623","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9cac9304b20565895103c8be37b48448c5808be0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220623.tgz","fileCount":188,"integrity":"sha512-faQ+tFuZke9d/VFLNA/5sV9HzhXujdJ6l8OMA8Cd0O5CRu6MlCNV/zjR7QtmPFouqlF5rDD81NbEdqHwI4Lsxg==","signatures":[{"sig":"MEQCIHFKyCQCzM75rJp3BC1wc25Pryj/YFY3jTuK9UhrMNWmAiBsA8boVdBiu7xBJ3HR83hh4mUfW3b3pcd0vKqKZG2xYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67082037,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitBMSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqeTA//Y5wyu5i6e3K5RYQV9HvyFzQueilxdk1oiy7xmqU3AL3tziu5\r\nWG1tfP02f/wih6yRb2WaTn+bweB3BxXZMAI7t4JhZQxhFeTxTR6Semus2Aoe\r\nKsY/nigzcHTbhR7taRk047YKvfSVn3fExqhxYYvNl0GBThFfG3pTlpAd6Ny8\r\nZx0QFyyIZvRx4XAHm9y9pkODOKHPNzC8QdbXSzj5RzvlF9w4/kKuyYAaAyUH\r\nOGwPNgw+of6FS9th6ZC9/EPkkJ121zun3L8unopFvvx6CWrlVf7qGpS/9Xdr\r\nAJroWJB2zOhVOJh3r/HU+WGHQvkCPH0DyYVZzi3p8C0UpnXfOTQ7M06QLWdj\r\nbz1aQthIUsE/uYgLtkn/n0+ZvJNTyclnAcyBO9WQMiOObiJdd+vIMekIsm12\r\nU/rEEhNMwzXqx+EhzfeKD2c+bgSEvW35EB2OUFWBGt/hwRxlxjJ+Hmj+4IH9\r\n7/Ak8P6AQRKHZeN8smK8V4d6cdGW4I9LWeGl2CI2kwv2mFYBt5bjvvhrdnkp\r\n6aTbpENFyoh/yDdLEMdDwjE8rLUPmsqVJp6BBD4pAdsjFeS82vjTaBAOqs5s\r\nXkclBFhebRebDsc41G2Z7Hq+LPtOiVI9WjAkFEBNHie+iUXQOXZejV+KvmMf\r\nRo6wBb2rgEHh724fkuXOugVOC11W4T6KLN0=\r\n=q23k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b24b6a1125321fb62d53dd544a6c59f03a6eac07","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220623_1655968529916_0.9418936008813754","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220624":{"name":"typescript","version":"4.8.0-dev.20220624","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220624","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1daeb86d2617f50a2cb6a1f160f5e0ff53b09d65","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220624.tgz","fileCount":188,"integrity":"sha512-z6IpmLOARlQz6Ul/7T9vOoljQnlSV11CfU/OTL8KYRntYuFuIcwpspKfkxiuNrWXSTdX/yjno3tBVYTqls+d/A==","signatures":[{"sig":"MEYCIQC8Lps7uLY6NzA1h6zQwUEZTmd6ioMr7kIjpivhasPa+AIhAOaJXayZimZQ24SJc1N3E2MQRqFAfY6vNrBFVnnvAlC6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67082037,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitWSDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdeQ//QWVMleB3sqZNjuyDg3MKsisEbAscXCWNucXIH7PVT/ozlAxA\r\nVayc9qTP88SfKfLIsbw2DXaMZMPkTeCWHrF22NYW7DjAt73nZ81xhrPRm16B\r\nU/myVXfmYiDhda5cFmvfji+AiSkCFXMkiWiIUCh3FPCmfTdJ6jYwXtB8kp2e\r\nMikSlx3szr674Fv7CS27jcL6U0C1KTTXwICseavvXKx95zN3+WHGBU01c+GO\r\nKtLloYu1vTSq7Depe7AJQFcrBtetpsa1fpj46Zjz5A4/qmpGbnZefODrFhdR\r\na8EBspHJGDFAC9u28smAs57nXVlGjqijBCMGOltmRfJ3IDEeI6wZB6BsjAWc\r\nRQFefpLLUdAcZvQxbFs04ep/EQ7EN6jxKJr/zVBWd/vHI7Lj2VdX7UiUHhX6\r\n3lTeRCNbqxR9gSINz0cYjP0VhO8Tc5Qos0RRC0SyORs9zOzPrb1kk0c8tmHa\r\n0pg0IY9qW1LIxXUpEVtITqVayCPOTDts7hogCyN8SKiKdV1WT2PdFuP+VGnC\r\nK5lOESuvreB5l/7A5hXdpBZ2Q0rHdRtTS5fRi3tOlAzML8GWNgr3Rg9jiGKS\r\n8vuqdrLdrdoOtNQZoQw7ZIwBOkh5JG6lV5l/0pw7/2s84MS8thWk1dniubIF\r\ncu6th/5Kjn7h9FnsKgCN1EN+l91g0gKq20c=\r\n=F5qz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b24b6a1125321fb62d53dd544a6c59f03a6eac07","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220624_1656054915303_0.250960001894595","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220625":{"name":"typescript","version":"4.8.0-dev.20220625","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220625","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"41c9ad430c5927a491761d672e56d0bf32ce6a07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220625.tgz","fileCount":188,"integrity":"sha512-GB3wv+88hC+LDVfVAeB/tv1qjwLutrwnP6cNL+uThgTZ7mnUmJ1+bhZU8k1RiCsyDgb8U1h/5SqiQkR+5sC+Ag==","signatures":[{"sig":"MEUCIDE9J05V6bbF7KCcEzN+Jr1YwqccNRap5TVqB5jg+N+jAiEAq3ZPYMT99Nf1LVQ9upa2KHDu1a06JHfKVghb2eC5oqM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67093740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitrX5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp8BxAAkbE45+gEPjJTeGRs2AnxFgoF7lVqHw6MGlMiPqVn/vwmCuwa\r\nRk0j8auSohc8wf7sCISp/IqRVDPIoAMmAwU+qpyocYo0yJR6+Lzr/nCXvoIQ\r\n+LnUGrGdpLKxokXeHLtySCpqzToe0L0qquBRutnEpBRAu82DjzchWz/+9jGf\r\nmw2tHJqRoPoFv+sfQ+ULI4xErU0ftyoHg78DiUzpXnApzj8RIQFqrrNWFraF\r\nuaC3GacCsNupYU/YE7SXLB2XdO/upRvrhOj89kXwR5thXtSuGsbefb1r1wmP\r\nqMkW+sSJkaj+O8bzbYnYwNgzdXjxfTyMCcF6NEFbU4v7N+3oslBNrLpmHrQW\r\nU+DCKBG1/NwgXVxMchwYRldn1BfR8IsqWfknTOg+glfAkzrFNt24HZP47U3v\r\nmmpSCE1z60Ryg9bJBJ5Up1u3kMDabMDrfIzZMUfoJWQo9ru2AeakaNCbaHuy\r\nelctbC8agymcnpkAZtvv53mfErZCW66hIYyaucups80uH/k692d7EU6UMkLX\r\nye/PFCukhZ8qVuRFoBImI8Zzskiya64NazHMKJZiSUj/bFBYXzcHc6s9Tqs0\r\nvxrnJq3OvDSiiIWJUBBA9DRhOJFJNPu73Iou/xmOsjERnhSNfCYMJVCprNV6\r\n9ttGbq85uT7qRcIJTO9xKgXmPo0xkxlfNxI=\r\n=bxbL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"569cdf1b074dd7462c53102e0f69bfc9863a12d7","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220625_1656141304886_0.6258672037297544","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220626":{"name":"typescript","version":"4.8.0-dev.20220626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220626","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d5644e321b298df1e40c1f5dec42f41e7f49f320","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220626.tgz","fileCount":188,"integrity":"sha512-VZIjYK79iDpdGCURSffPw0s8a6gNxFYRYQsB6m8TgjqqwHFG1+LJbqV9+dZKAG1cOLqALWrdEpCYDBdr1k4P/A==","signatures":[{"sig":"MEYCIQDMXHLJr3rRIGbGREOW78LU432w6FdFB9mGq0X5N5+JkwIhAIOm1AXKt3raOPZpyk9Pqop9TiIqA47XDq2lO+R5mS7B","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67093740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuAjHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmruMRAAgmTENs9Yr1m25Gn5rJuSgQZ1Sx+sJ4M4uHRdB+pknxifqFgn\r\nzl3Ac3jBMOa03DeC7moU55ncQ3lNOFm6HbRcyexP8CmeMpJT9kiEZu+OZWPK\r\nZRIGC7s3UwmLXCXQcC4//67HtG4KyMo343YQpclNKj3FeW7uWTKp3WXXoJWf\r\nONBYZCG6EMK0Q/tPjH7HVruP1AY9qVwHd/uiM7BtBZ8hXdSS/SlP4yCu3Ktx\r\nbV1C31ks17PzNAry9J1Enjct4RwiGBvJni6yZPwkAHw4qP7Fccecmdwz6O9X\r\nf7vKZ+vvNGeDhveDPi7Vs0jMRUytMz43Ouya2fuf94zRrClSEC3CNGPEZ81S\r\nLJaR/UFLm6r4+d1x2Dxp+CIoUsUgVlJ1oIOIKVsIB5jX8X0TyabIF7mShwMg\r\ncnB3s5LX7q4t78wYzU50Jj25q2+xRucsZZ1NpBMByo3/vF/OAFamHPsiEsPC\r\noXxdD0BvlIyxG4aOCvL9Dyf3pCy4vneEyQF0cOxoCgXzBoQtJkbB2k2kPAPN\r\nv8G3xpIiVxz4AuhKVl1l2qSnjrAhmzs83/vN2HFfbUDty6TvQSzim+/CHEyS\r\nFVfjyLlwb8cvkZvqMztUVP94+m3UQd9TkHAeIqFTUXyDw43/kdLLLOwFLp2y\r\nkuqGZMZ9tJ7CqhzWiqhK58jG1xv6b30665M=\r\n=TGN1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4899116b9a947adabb64069fb79bced5d09d8bba","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220626_1656228038590_0.44582074884948053","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220627":{"name":"typescript","version":"4.8.0-dev.20220627","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220627","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1da1801f77be2e94ba6174558c17b76b101c564f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220627.tgz","fileCount":188,"integrity":"sha512-AotGcCE4LR1khwUAONhErpEdikkPmmkibtbhakf8A6mfzTe7VxsUF8CVLbE4ZJlGkafl0TsWFi7mxvrv47Dq2w==","signatures":[{"sig":"MEUCIGm9Qx7Ry5WK8P42/El5inQWDCicEmUukxUDteAnJ7hiAiEAnDePkmek2PMwym/Q6Qpp0voVUFi9aeDMH4ucleR5cHA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67093740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuVkLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoWag//bZzNUzjbIiR8A3iVSAaNJt0DqFZoJdzkSipNq/D2kptA0s4S\r\nnwkU6Pn4wi1RqfNWlb9DfObRRPNGzmFG7Lphpcs66RXCFQn9sHhhbb97XqG9\r\nDy9CwsQWGBOY+ZvOcyUoHncIwu8tTXRfOVTduzaAVScY/dNrUz7FptmvNWPM\r\nluUL0cOVkqkCSfrWwJ6eMAuRDJSJqUGch0J0ZsODsKhtATOOZ70eI5iBhozx\r\n5xOJSvyM64kXynF1/dL1sXIXOLCyDPE3uzPS5kPDYL3r/5H6EwM5TbLAU6or\r\nS+Wi3+h3kNSzstNz88zv4MC3J16TWFQj3s2Zz16izeJE6vpA8vmhGYqru20I\r\nGSp7sMSp3QvwXTpzO0SxX1tpVpU7et8MtHBeut+Y+G9E84N01dKv0alo88cy\r\nRNGlKeYX+EP2SZELB4OoO6AgSWeqh6DqgtbwMKpwHl+5MkkfMkq5Ui004T+u\r\nde9U5ey0RqdiOTjS+alWATQ+xjX6exznLJhUXIrJ9Q5v1FK7xh+gw7dfwtLw\r\nt3et5bOUU5IeuaOGglb03TTuvjtsVsuMfA7T1c+Wpre4alTbURnnaGO+tQlh\r\nBB4mN14CJc+RE30VRqsLbLtLXtQqUvcmr37yeZHosgEeBuUFADRbEHA7pxU7\r\nhtZHNU6iDZgXOtOz79n1eSjPqb0Ghc/InbA=\r\n=Aehf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4899116b9a947adabb64069fb79bced5d09d8bba","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220627_1656314123075_0.11252825364564045","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220628":{"name":"typescript","version":"4.8.0-dev.20220628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220628","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8cbabf786f7e97b6da9d2bfd7e5839b96ef701b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220628.tgz","fileCount":188,"integrity":"sha512-89n1Fp/JQev/bPPuVferlfw0VguLxr0uFergLfPbhs+6Hlu3M5rLwplGLHL+JZ+0+BsTyWg779TmaMcqa5FB5Q==","signatures":[{"sig":"MEYCIQCgp41FQtH0BeaMhaRFDNdtLscOKg0UnluhL2QLIVQveQIhAKfVnKoUd8jqTrkXqbi9AOLD5mybafleK+fIEI7Oh4K0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67109333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiuqrgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpqOg/+P934PCZcOaPZ0Z5gfUacMfOBjJlvEELVF7NP3VT4Ji80ZetQ\r\nSJASFrXYx1YrRTaaycgbOaNW0Uk4k8ByRh+6EMcJrNoVnXONteay11BI2jif\r\nxAvaGyvzdvegKzUVmedVsSc3ABpbqY/vqWhGjftsx6d82iQyjVbhmDA3Vy1/\r\nGVzJj18qKvbZ51PePKSSxJHJ+irijgrkIycLhb1Lqr0ESB26VvwF8N4OLFMf\r\n89qDr2t/wKd7/rlkY5QNOdteupD6AcNGHNpEdVQZu0nXIVtr+Hl13p8TbZtY\r\nnRHpOZAqRI3SxB6nqv/piZtzLWA6M6thuId0RrKYV8Rk96HZJoNRhy8kNB4a\r\npV3MY5eDtzVaBdh6d29M+RVz7p2GR+y2XVMV7yQTUmyJG0+mVC/M0ZqgncAo\r\n9JI/rptTS8hamz+5unC0kD1xbA9uZKyqDbO8KkZHTBdnmDJpYnPQfUkoqFvP\r\nDuEXOkpjeODVuSGlw74Mt8F2Xl3/FZUQols6skTbiRXSaRyAXjN1hGrqjeEw\r\nydD8tbRLYipLn/v+KJQLq+ScDC464yL6rRnj8RYmHmNS3YSei+auhCVrnQZu\r\n15MWYRLgT4ctAwcF1joHLT+0/5NZKGJ9Fi0h0WXt6BPxMADzjDmido1szdba\r\nJqrcc6gZWbws+7q038hFDgmz+LicpSklwrQ=\r\n=aW9i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7e91485bec9e24c0793083ff44d23124695b0729","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220628_1656400608011_0.318751559861703","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220629":{"name":"typescript","version":"4.8.0-dev.20220629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220629","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9d719936f77a811d6859051f327c7868700ab250","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220629.tgz","fileCount":188,"integrity":"sha512-QEp1M6iqlYpQXFF2f9ucXMkXbYcAoXcG0ws0IG8bWd7mjPGf8R5iVCbQVSm1dzV/GoOy0PsvfNe5/uL6D9TSPA==","signatures":[{"sig":"MEQCIHhZo3zpYjmnxzisM9JtDlMgTgaQFGO5s7XCG1GBBSZCAiAkfUvmvxHr9CCGTPZxuHQS/GRuHWMLrKEhWyN76zso3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67110155,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiu/woACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqIqA/+JAAUYAQUWoe7AlHJsZdvlAoNidzkbN1XLpr71SySy5jvqbc0\r\nE7lpsdvsvYyU4crYHLAPW3g/Ldk34LoL7ovQZ8B/MSPOz7nH9JGeePHfd6g+\r\nBb3F6qKSKQSDKe28aGN3fg7RLKy3yObNPmJU8DjrpE3Qt/2y97QY5AyEuuiS\r\neslaE4AM4lgCPd8l+PEamXZA0i1OrXDO/bDQOz5qYC87RSakiteqjiIs7QNB\r\nR8irOwA3CmSSwG/IB+pwSahultA7y28BXfvoe+O1NxgGIATX0X72E03Ax6Zy\r\ngf62McPAFQO70kjje40Lih2pydllyZa1HPnSxOXv6XUSyVkbnh8hULmtA2qF\r\nYWszzjCfAsvryy0ZzN5MTx9pFGIou1BdO/ULRJUu2lSlN/Hp1xuy1Dku4mOL\r\nCxv0/H7jQar8Scc3XBRuOONN8ClA+tYmL9LnjEJRGPxPz51KP4vBetXiZJfW\r\nU+xgHhLBpaAj9EBUDSpIb167yxw9V9BC/W5ZeDDBhpa/ZrkGDTC0x/rygHle\r\nqVFruZUapUmfqQ35WDDvB6Whmr4y6NKZb7UoDJ7sGiNMnNuUGeLi2+sxjn3h\r\niOLBjye5lISqHeTxWJU/5/9lSGj8VyY2HIlOxYxoQLr57DqUbv8zFyjor64j\r\nJEnPa1fTXM2DaVgV3CPP9jrLrphajop+4rw=\r\n=0fQ7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"63d0574321dd54ee8a274c44da3cbb51686c19d2","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220629_1656486951896_0.06509024861992696","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220630":{"name":"typescript","version":"4.8.0-dev.20220630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220630","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7ed7c5c95d76f8236271d864fbbc93115ae0d436","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220630.tgz","fileCount":188,"integrity":"sha512-wyFZIoUdTqDrKU3XfDx+pylAEIhlmpbsbicFXuvggpKeSWiPeUrMiSRqeXBnAjXiD6kn2Anmw+c3eyX3A2WdUw==","signatures":[{"sig":"MEYCIQDVnFeJGd8lCvktpepEmQQIMlfj9Zk1uyWSfwuzz/97xAIhAMTc1ntKGVtLXcWPOxXwC+UvoWHMgB8uYawzs1MDDPJy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67118947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivU6LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoBzg/+NIdTaenugiAJK6rcqnJPZOwmz6rsDxqSvpxS8pffcCXM/GA5\r\nKVBk+OpWiWpoLP05PlFolD5mKMOOhHliIcRbyvlc9r4dkaF6zilyzlKeeUuI\r\nxGyhTmkQx266jJBohfDSFQGz017wbZOCjtgydZiE1URzJVNfWrBQ/kyH/7YZ\r\n3q8rnZv6jFJENDVgsf2JE6FnDZRfAtXRVMufyYF0lccRaXZQI4PaoZKd6878\r\nKgl2cHqc4zI4fmAnNs++NGsBROfG+7pZh5Vz9Ak0Bx1HvLNlcyQxIyexBuuC\r\n63SmjHSfyPCYtlY1GtHQvyit/hDBcpEpMz/Q4pxWPPKp1zP76aECgJGi9xcB\r\n3rlyTZtp6qQAw6hWxDftGKfp03bz+1SwO98b2gG3WtM9gr3gECX1ePWiA2as\r\nR0Q7ERzufWou7gFk9oiYhHf+sZtIx0yCn/+avNxWmyd3/QyqBTJVJDsW2nvv\r\np6sUsqPz8txW+wnWSLWkdkm20dGQvY+tIjlD+9HpGEoz4KTpBzjqft1RSNt3\r\nxegyTH78zc5W4fe5rtLlgcjOjGfUYWSw+3sdBuoNn/WSkIOfGD9bjQwyCnGu\r\n2K0g1W9KKIU6x7qmigu7Jm3hkWNqt6Q2Awc5waVXU58d+nqCqYElXZAGfzy8\r\nL/4VXrurc3pgrUiYa4tcWeQ7BuwVvQiSZCY=\r\n=9q5x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"93f2d2b9a1b2f8861b49d76bb5e58f6e9f2b56ee","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220630_1656573579333_0.6726938817996011","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220701":{"name":"typescript","version":"4.8.0-dev.20220701","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220701","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d62ebacccd1a8a00d877c42db135f828a99bf2d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220701.tgz","fileCount":188,"integrity":"sha512-nPs71QQeYHtxH98HFGRSLsWE8XHUFfghDUv8boDUVUmtv7hEtjqZrYsFci4sDV0kiP16AmdTub2tFcpzGK0GiQ==","signatures":[{"sig":"MEQCIFvPVagnkYjIoUmKSmNK/p+MOD+F6Uc3ATqIQY0d9PzHAiB1g/C1NJFmLrSf3VwkkFsuzwURNnA1T5FScB/d77+XKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67140457,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJivp+NACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpQiA//V1pctHDlEFxpheCUUm+qaNrhet0qx9rlSQQYF2TTF6IDcZlU\r\nn8WsaYXzJ4KHNxqlN9WCgyn41yS1llHGK5Jk/VWDZR3Ia4SAlhvUFRuuq8Ba\r\nABD71kofihUAxBYv4jJ5Z1CdKFgqF/BQNbChbVKm4foGgnQ447h0Ijh6UEQJ\r\nvHlK91zOuSUQEzkNTR5ok5cIHcrswh/Ka4JJ0aj8ZfW9Y5uiF9604FQ5fpki\r\n8jJPMAWDXnWbSpeWcP4DunbagFrx1zBolpgsr1bohaEqFneKKVUy+nti3wpQ\r\nInSRCALQBn+Y/onNvV+G1euXXTWK4OU0l1R0a5ATHQzqoDvCcOERpLpt0LAg\r\nzrlN6/QbxnFHosfKS8aOnRWYpAyVYtTmVjFYc9MnLUCjp89J7RSH+TvfBs8i\r\nWmAU9q0qCgMw3nLwrGT3foV7jkOc2ZM2qaeTKSNDbqWjsIyGoOUKqPIGHYE8\r\npqZbV3M3GZa5nQLe2Mg5MIuiedwXfKCA5rxSd8pHzGL1sj97w/Mb41rnJyOf\r\ncTNk0y3w4+fjAS4MJNA1UoQJMJZIJ7TNH8KjEh/yqOr+acKuSWfSTB6CNMhd\r\n0GafG5J+nFaaa/UNYrWYDTQkZuCxswO6WrNRo/h6/Ws+kmCH9vK7gF1qDKqc\r\nQ4yBf+t3qfOa+xOmNtSXfWbsQa0UaJg0E8A=\r\n=kZhi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ad4ded80e1d58f0bf36ac16bea71bc10d9f09895","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220701_1656659852808_0.8832587769639286","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220703":{"name":"typescript","version":"4.8.0-dev.20220703","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220703","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e6f7a69ae1c110adac0e33c9ebf9bc19e407df5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220703.tgz","fileCount":188,"integrity":"sha512-VIBSO7YG1j/GKMwsLSPZnj+rHPu1NA9+kkcxNBWGkq7gSYGc6rT9dB0Yr0k+8bfrm+2Ejvij5HCZm/A2Y/Adrw==","signatures":[{"sig":"MEUCIQDin2bFEjmI1/NdZipOKNQd0/V9tDcZR+iQWLyeiC+kGQIgXAdE1Kus3oHv5Cj67DZlOHkevyF1Tsc0wVo/LWz3lvQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67143445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiwUJxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmquwBAAh7y9bgv10oG08+2TM9uQWUokVtocbdUd7x84Ps80/nDhN+k5\r\njA7CTFC0GLBFPH5fx4zSqAm69kQR6pA2a6XZ5JCVBL+65U1dbqmiIx5xpUUc\r\nvCXEmc6zLMw6eshzksHVwXZTM4sLRy2WR1NlvyEDJXQhC/3TK2b6Cf8r4PgT\r\nlI02uj8uCiPC7xlc9REcCIMdSy0SLYvW1c3BYPnI+gV0I4Ru8En3DYlRko3U\r\nG9n0DwUMxNTJhRhau7mgKZP7o4hGBrbv0aD12sEno8oEm9Sd3DrnudAqNlyD\r\ndrNcNCgGwVMOqr/WOtnbYc7QNTB1SAF/l4/8v8SYakgcKszXd2NxoJJlNKec\r\ntEoDN31SKut0ufYAqJHlr3cnPXw3HSh6eQv8hBn1ni3dKtr3Ipuym8zUJSKq\r\nJKqMofuMbOySz2FtH1UNIouD5oap0znwhiIIs7VYNp5utL84B+RnfoH0rVUs\r\njg3spGdOBHrqZXvXeu7olYR5ND5DZPLU/M3Ou4aawxjRlQrrIWlAHW0yt7J8\r\ny+Xv2QfhbnSjtnOZoc9g1KdPehANS7zhSYKT0efcV6GlnBBUtTheh5dVdfw9\r\na6JRcdtQ0XKMpybnO2nECtTG07GABcG1VhOeCi/xj/YLJRLJQUnwuaiboGIh\r\nML5AzCDHl4Iw21tOBQxu2WExObF1jYePkJk=\r\n=UbsS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5d65c4dc26334ec7518d2472a9b3b69dac9ff2b5","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220703_1656832624902_0.025168406743353744","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220704":{"name":"typescript","version":"4.8.0-dev.20220704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220704","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cd8e930a3fc6d92e6151a6246495b4984ad25837","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220704.tgz","fileCount":188,"integrity":"sha512-XE3YiCNpi7gHeoJ9UKkqRlEiJipxloSmV8TBHmHMU3sl65KbATTZAn45kVEsfFdKLVnxselUhX2iMR5PUCqCrw==","signatures":[{"sig":"MEUCIQDnJnp7CeFCzpoFz02bbzOfSNhguwwQCJ3iB6rsS58ECQIgfOnsweA6IS+wO8hmMlYDs5xxy+j9U7vOOpd+6pQF8Fs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67143445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiwpPKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrVtg//STDd071x3g2BYCfmMJ1b12WyUaRtkN/6MOwEEuLUFiFTcKii\r\nWKJus+3UPgNoiF8XvFACw08LzeuH4IXogV9HqnoZmwyxN4R2w2uXuE5Z0qSa\r\nxb8HWLN8VM9VkoECuPSlhtipyTRD48q/wuPcLsX3b0jhFNSEuVbp+Tb/1k2L\r\nWp8WiMty/18L1VjPlFnobYKHxHhHN5HmYQPLvot/cy5b+kDlbYse8c3EN6dc\r\nXVXtL/wUv1J2FxjLw6T66BdOULJBL0qgx2aEQxOaP8gxo4kjoUEdwSkVaD8x\r\npqUbokoaYL/EOs4Ve9SKGOZptvjjqhSxhxixWQjlEazYR1i72547wRFeE0fR\r\n4Gd8fua5dTzaGSYCapY0qXtNUacCZT6VcjYOFVt+lXzOnztlb14PLbrpqiK8\r\n3vQHMl6Z7GhM1BRE22fNg2KJ/+MEcwtM3/jbw0PUEiFfYbme0EoNftPrJ39O\r\nxQM+NNIrQAdnc0ZMDb+hNaMoNhN6QXKjcTeH14mVYPLtG9fFLNbHAhC9SWi9\r\n3fqnBqjtI61d8Ti5nMFzbQIZOuIV3Ar10Ur2quVECMaFRuL1LuKVaz/dmMwa\r\nStZgUJ88x9pSRvZQdCkVnkv7Y7imIYZfwnBPRH8dPt9hOeekQfXEN5ghhxV2\r\ncds7/lQza0MR+vmKj+Mo/zi0JqP0/N1eKF8=\r\n=Bjf0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2613158d75d907507b489e6958bd9f6e14691242","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220704_1656918985547_0.6945102041632087","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220705":{"name":"typescript","version":"4.8.0-dev.20220705","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220705","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e3979b2cd8964fc118cb6d6ab0f0cc05720562ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220705.tgz","fileCount":188,"integrity":"sha512-sRnXrV4EzqJhcVnlve3h6S99jIT7cF40ECs+qm0hMMy9r2aZiZdIN7gU30oZeYSexUPXYoybp6L5FxK7ndxd2A==","signatures":[{"sig":"MEUCIQCOlJd95X8VaOqlHZMQv8uL9wiNBPLH2V1wCFpd/ba6kQIgUFMsZel7eMVQB4X5Mtae27WMQLifSKDv2TcXnWUQx/0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67143445,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiw+ZyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrIXA//VI3AU/NQiGUo5jjwqjNdyFfXffA3VAGuPo4eoHypIM1tpn83\r\nQtXzbTSWzusiOEv4Y+Dcoq5dyReCWleLIQeoFWw1LgzkuPHGrgxt8v3BoH+D\r\nOTlddRrlpJLUxQbMHMJFRaHwvvKFzJ2Ld+6rUqNd+5aRhPFqoamhjN4PujHh\r\nSVnKFynOfMa66JF19LiL/l7G5O/awizKgCWApXZ7Y8Jo6nbrc1kdpic++oSd\r\nPVpPxv0HtdEd2MkNL7sheGdNuqCJlLylTAwpZm4ZPC3ezA+0JuA3Ku2UCiob\r\nUpVvvuGU/W61CbCABTbUEglyrQpA176P5hknAYVDCayMVty+wlTa/BH7Dna1\r\neZcfbjfFcySAWBQjyv2uvqZa0PBVirXnqTTxJEXbjSuIKprL34LvAT/+eSdT\r\nci4jBTY4J2ZZoOwt1OtFSkQZEuFKdGdLNliE4+LA1yuCZ8M0Z9ieBYAgh2lc\r\n950YLyEJiTmuQqxrucDDu1bWoo16v9mvWZ61XOb1P9/XH0iL9HoyJbI46iXJ\r\n+asYH0XXyNCYnv0GNQpIJpOBV3/GTkggkaxvRqZyvatRG2jhqmtcz1qAtxps\r\nunr3CeG7UuAennEgNuGm0qg74eQ+04CdQLhD+Ujp2+YhNMmQt4zh/GkzuOc6\r\nYR2lCkBazSOoJvvBs6W9LXyaHij3AE3wpNE=\r\n=wDMO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3dbe62e3f0db8eebd71a0d0b248d8e2d8ab51f7f","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220705_1657005681664_0.46891285639878477","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220706":{"name":"typescript","version":"4.8.0-dev.20220706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220706","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5f2c703258f08468eac5d1147a8604954681a6b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220706.tgz","fileCount":188,"integrity":"sha512-kQGVsx25I0KFyzMwrZTm+umjHRDA31SUH4WBtJfCaSmr67CH0vKu8XSaPCl84zb39cAnfHpI4S8qLvkgDaAmqQ==","signatures":[{"sig":"MEQCIDG9GmFmqnClXp1Zt/ueh3TiyoHohRAEoMf4Eyi3lbggAiBoUQqg6fhAOWzV5cSnEZ4rti8ajO8LYS5mlhXmpo1oZQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67154940,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixTbUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqqTA/7BETZG2KzSA2H2KmE1ygbd+H1SrJOv9FulfQ3spOdsaRjcUlJ\r\nvwGgzs2Akkf19A9C1pZSk8XBB0ueMJyc3IC4LAhIEcdVvxM1jEvAUrjm1S/6\r\n82XZlwREHVrL0q0jg1jS+Eu1TvTWij3yEeA+4ZudkRklYwgG1YZm9rzi9tpY\r\n2LEadaIAamhLtz0NFi4hXTIj6F0gzfbQ+aJ7Vk7/LmtDL/ggUGDITN9isygh\r\nkqrMw1vLnb+pJ8jRWeRoxLsPfO4JktA+mtiK6hjyy+m8TSE3xxcwYI7r3T7M\r\nTyeb8NnNYr8TYjVzuq9cYEr6V+bqNnbphXUEBduDXndYAMvp4S/h2TdhRpd5\r\nX76+Gda72SHy3ReUQxENErNoFHZ+3B6GzBlB9F/Pcn2xcsWaekaD12zQzM9H\r\nGqT4LvLi8ZWKllqI71xRACdZ5E+N5PtqndD4oC4TAqmxP/hJ3HAyS3APeO36\r\nIRrmdr02G68N8Ts+qV6X5mRg6DTUujUQ8JQdi/cofExuT5rslIELO8KOtHA4\r\nJkJcQlvDbA4icZbhJFuKTnUG0XPRo8cGy8SOP6Po8Smaqs7AyIH1jiASE70c\r\n/yhTptVkGuklrhVwuOPSkIHQ+3CACRxK8OQNVGwe3maHhUZCy4I1KiAoX6tW\r\nzA+chazkN9h5ILXqylLG0hqi1i5Uo7Vvb3w=\r\n=QVjE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e75b25a44430ddac74e5e7b14be0a20591938cd0","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220706_1657091796166_0.31009834399681613","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220707":{"name":"typescript","version":"4.8.0-dev.20220707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220707","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"acdbeff7a457f7c1b560141015f0bf64eab6e2f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220707.tgz","fileCount":188,"integrity":"sha512-ggDE0KOavm87SczAWwUjZaJ/JAHWWoRYXpaINMLoh5tPY8rqYnJSIdn9iPrQEk/5+FZKIq66Kb/5ZH5MysJPZw==","signatures":[{"sig":"MEUCIHKhdPUIb99CI3/mc5b/HndO9k7dYek+PWcX670O7WsiAiEAjKN+2U6mlHhAgjVJNQZaHd2i18CqRqPFetkA6MJMf3k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67170714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixofjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo5Mw/+PufMtZ9R45Gst7F4Z2DDrtCXAG4x9l758jkhHE++Lkh/jdkP\r\nrFBKVMGeK7mJoLPWxfWJVxAeil3j/y50AKgAqgkz9uTEVjWAZZDQcgkdUayX\r\nbX+enuX4Ib5Zv5GNGI9DSAalG1w1EiNNq47p0dcolz3uCenEnxV+T7vZLMEP\r\nfstkvsEWgTKLUv1olEaUxG9bobwDE0tjNmufOHO/TSxv0dTakNI2r29AoqlH\r\nKfcBLqM68LD1WT64xZkBVXKJuAvDRU9ThGdz7dxZ7AuEJdUr2stcfNmafZAw\r\n3g991Obu1kExR0xG1KA5XaX+G5YFRg/lMvnl7d/xq7KQOur4sA5S3P0LowuI\r\ncxgGAIUZAs5hWRaH3pfAhJpO+yDc4TOtoGrrdqfB/+q0OOgANV2XPbsKHeze\r\n615QQS6aGzrv6AMZutQKN7nxOUFBlT5T/Oxx2mKay9AbE/V/37G0VN2k4eTE\r\nTmLwXnPlNo3nX4vcvazeycQSWuCihGZWJhfLAQI6x4qmU0WVsu27J9L83Upy\r\nk0sMkpxmald/g9wBWZRBE033ehWYA6VCQB5EbqUKp6lFbwWFvq1nRL4myRhu\r\nw8Az4rKresXbpoy8dt4AH0n7OYlvqm1bcTdf6K0OFo36YMPp+zvItZ+5cAZ9\r\n4h+FMGrRUINJ1b5wjvV1NWanfoZRItAtIjU=\r\n=hxVB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"59238dbf90f7fb002357851940ced2ae42800e69","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220707_1657178082611_0.9715487802368667","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220708":{"name":"typescript","version":"4.8.0-dev.20220708","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220708","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0615a1b7a0602c567e627206b0bca04d2dd0a8ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220708.tgz","fileCount":188,"integrity":"sha512-WhR07QdUE4/ZDlPaKv7UJ2gFOuTQbFTiwNtB3JbvWMEXAa7ueaYJBlMLlmLcOGcRFTpyiPW1MI32MvLQbMVTtw==","signatures":[{"sig":"MEUCIQDlIR1oA0mEBo3tctVnLsEiSqTwzdww9mgyvWz3u53/sQIgFVHnwgu02Z0wwRD9xQNFDo0g6ZRyZSFQBCUhCBq2swE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67190918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJix9n2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpjwg/9EMoAFHsQuvxwDC80IqvefW86kTuFP4lgsPlL96gaLny0+tCE\r\nI5uNio45zZrDa6/yv7TK0cma2C6zCWLl7meDYK+uVy2KdVMAiA8Y5YWkFKZV\r\nhZ8daH2nzlCMWu0pru39WimHSfnXH+iQLK4HuGLOo/Rvl+f3pzxyUVyiTrbH\r\ntEdReQYRwrzYODEBaNqMQXdaDBOADprMJNn3GdS3zqwuuemD5tz450O6JNg7\r\n2K9ORFV/1Djut59lIpw1349wIJwp0Sj+HNF478d7hiSkqmRnQgJi4orF/4ds\r\nR0QtpXKPqPylcOSIfXYsMV7/cW+mpWso2KoJOqmG1oPxruqk6+Q1FZlvrUkc\r\nm5UtAip3oDHSDVd2ZkIlry5OKqMRWY7eu1uyre/LDzUgZM6HSAdwluoYQuix\r\nk5vpdt7YQVot6ESSdHNJ0fVFJNYRMRmt3X9+7MWZfpg876svJTjJa6qa88WS\r\nbehwRKfTG485Q8Is3z06DkvBXKzQAQv0fOA36wT9GO8cOHkt0AeNWT/DqV4q\r\nlsBaiGD92r4mfExRsxTxBPvotwFJWabdNhkdwsJbo8SB7YcaxlDFXWC23FMu\r\nirHOc48M8hyt7sqwNIg4NXK6fc7yDzmfbEGZVtIH4DhwxchXDJXMSxImGPLt\r\nXpttC7p51sUuFkdR2gZyTcM6nQa66QK2isc=\r\n=rU9U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"28dc248e5c500c7be9a8c3a7341d303e026b023f","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220708_1657264630035_0.5747152592254585","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220709":{"name":"typescript","version":"4.8.0-dev.20220709","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220709","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6ba2904bc5cb4be125ed8a9214ccc9242b5825f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220709.tgz","fileCount":188,"integrity":"sha512-SCga3Bj+6fGfJ8LkUxXtM/NbvH8CU/Yhz125UOjS6nVVQm3MzkfgnaqcYl0bRQimg7YVb5vixqhkOOjH1p4vGQ==","signatures":[{"sig":"MEQCIBAvdraMAc05AA8c/ORCsWN0KLbxNQYq1XGPX//t0BixAiBvVe2N0NgSsNTCstwTx5rnMuOnBSlcjVA6eXVEVFSe0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67190918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiySs+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpyVA//REs6Wr7jpD5TRqYbRwuiF+EmL8nUw6aOj93pkQvQB7TCShWX\r\n/1vG/o0+kaZ1x5ZMs15Za43pBzdGdfsCQ5FkvAcE4FyVwZ4x7I2dGZcmGjn5\r\nfAR0m+K5ZA8/Z0YQUKTWOW8v72OeqklvmpsKPrQ+2JQOHc1e3BEGACxYWKSg\r\n7QUi3l74rdB32x2QPrLeOnz0qlveP6nHB6PMM16JYYAJc1J+s1vL7Own9th/\r\nuc+m3UUaUP3XcmzC0HCi0lDKNuYX4bmNWes89M2FndhoAJ0AMs4wXgupGNAk\r\nYnx1xzOsjtU0u+Ptb82WijSz4UhYhfpXOqwRGkSYSzdb20Os2DYHNBI7LHf0\r\nn7qMF/X81t5kvhN51ew2Hhuv4TZ9iQoqF7/J6sizvUlRGcmRS9rkuNS1V11C\r\nhm4MzGQu12ig9E7xIWnS8Yyl0se/vUNyH7qcJ6fMHGXnj0ofzryIFKfDavp0\r\n/56iXLVr7ytDjOE6VHXRb0Qd5C7kKLj+bx6oD0ly3qvW2MvlxEXHHsjPkkr8\r\n59uEftcX/YU/aDc6/n59+cwxOo1YGBwWjD/VokW79J1m5kfLljUXKLM3cyiA\r\n3huMLgno/BlxlZRnkertDrehU+Tx+o6tI0DRRPy4Xw7tbO+RSXJG3a2u02UJ\r\nafhsOhEl6VjxJH6O9Jc6hSVmpNWlYGc72F8=\r\n=JSlJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"162224763681465b417274383317ca9a0a573835","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220709_1657350974298_0.6854804196215236","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220710":{"name":"typescript","version":"4.8.0-dev.20220710","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220710","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"95aa48fd51be051b0e05fa76455967b4facf4b11","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220710.tgz","fileCount":188,"integrity":"sha512-xkF5hMScAHfQYySXwCgrDO8SFZyREaS46YmLy4LbIBdncSoKebfhH2y9W395z9vdIuSz/q1hJUt6qgqXHC4qMw==","signatures":[{"sig":"MEQCICH+vPrDR5y7zDt4kYpHm99imTGRETSXNeAV3+bR88AGAiA0xJW6atQasXvlRCUHak7yXoDXw6qtWbfuFKgUsa5srQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67190918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiynyYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrg8xAAnmT5u4eZVVIYSGV53rQxjisepUlGfq/y+nHF864AKC1Hn5z0\r\nmtEDie10WM4YNBWCNqh2HhJqoTxx3tDE715ndW1OO+jlm5vW+ykTYTAeEp2q\r\nQcQ6c6yvKayOGVmZ5fBgnU345bgW2SDJwPskJeXY4PYNAXqL09wPiIPFR1NH\r\nqAl87hbpLWcaUyQa9sfjI+jQLRgG7NOW2EloICxh3BvKNN5r24voIA5YDssS\r\nRpOv4Hq/5NkCkO9I5M5lxzE/uoCwlD/A/OCpP0TY3Yv2h3dqtjiAhYDWlOUV\r\nuVjbpCT5f0TstXaylEpYI7LO+Pr01iUnD3JENxaMGrWxV0aLSS5lIru/P5mS\r\n/RNLf8fDMDWGHHjvzbNP3Tp5ogFg8M/BGnMe6s4qNghgjYqv5hDxhe9oDU7W\r\nMlPj/ue9RFosaZcRpda/DB5cPPDubYcKh81mm9vjJvdw8W+8Jmkvv7hytvyi\r\n2fUHBbNevbhpbcP6I0+I3V23uRT68icVwAag4mAII2X7DwQ87ThSYnLxZ+oP\r\nafGEYF7Gw02M/ppLnb2kXfQx79U+tZr55wmDbWeRbulf+fo/Z1qB60SRCIkI\r\nx9WuFn5Xe73++2Nmy8ktofSOXuYmLValQsa1nYiVQhjkfLIliVpjjlzJ3Gxo\r\nzcenaZFVVz/lrnAxhizjCOvzche/v7C/Zsg=\r\n=Z791\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"162224763681465b417274383317ca9a0a573835","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220710_1657437336044_0.7091159342198983","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220711":{"name":"typescript","version":"4.8.0-dev.20220711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220711","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3d4f68161716cb6cb1ea42fd0c6cc4b842f150b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220711.tgz","fileCount":188,"integrity":"sha512-Nz1HlAkzZJ/OYZxqDEdoNV9GMq61xUss3JjveQqtdTiwhouLMa6D69C5K+P/fZD/hfrkMf/iqaF7xqVtX5KvPg==","signatures":[{"sig":"MEUCIGDoAYt1SvZVWr7MvWMt5/2hXFe7hPS2Dca/g9z/RQSyAiEA+ps2F0wadg3Ur2gTcGwOJi/6IMHhBE0Tz1xrGWtyviw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67190918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiy89kACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrIeA//erhUCUEyO2IycTToMltRUAztZGXdaFYut+CWsP7phQnU2Mxd\r\ncTtitF2D9bjzCDOucRl5lYPXIhHu5vuzPMB9WMj6keWR/ZhSB7cb3bHkBCob\r\nFkz4C93IIlHgAn+cpdlcoUTK6+w956WLfmEfbBPcUqyzpLmIOv1uj3xJ6qGE\r\nSVtmGgtXIeuRpJptiOXRgCZfeaFUm/txP178s3hXnp9CXOq7SXMs++jBokx1\r\nTZ8WB2o5lPVA/97J+YTSikgM5bsAOZtWTILDVaK8fcU2wzFhjvsuaDuSVxXG\r\n91ino4mXnBjEo+KlmwQK+Kx2AA6Y5w4rkS5WYGG6/AUdi2JBpr27WkzUw6yf\r\nPcnLwMbHSyllwPYemrHnJq1aZcgeZNGmpaE5SSxS9588ZxzTRklAsa2c4Xer\r\nYkjZkEiX5yEJ4zkIHO2cD2TO05qlE8bXXWo5U5lK9fJSvWsQAVw996nHbOR6\r\nOcba6G/Fcu6BC59hS29FbYSBJM8Zs9m64d7p3o1NdjoSo/CD5lVKhC1/U+u0\r\nVs2P08VoUMDNlzp5ChVGZHHIu7gTDBdmUc9aBo/QRmN9noKzQW87zpUAcwyg\r\ndpXXn4DAybEromrA7tS8Fqqh0RhqZeVP+9XT3KILf0izi4I5I4nAlzXKFyEo\r\nh9NRazHg+Oy+DMMQv+v7KR2Eu20+Irj7gRQ=\r\n=IAWY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"162224763681465b417274383317ca9a0a573835","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220711_1657524068419_0.9551651928123754","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220712":{"name":"typescript","version":"4.8.0-dev.20220712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220712","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2f9e3db318cbcc3817fc918cf880ab828df4c1b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220712.tgz","fileCount":188,"integrity":"sha512-hYkF1Ja0C5ILf3+GZdvQLNxmSB1qUc60xrtKqKMvBzRHlew3CD/ZdDP+0J8rRzo33HxDP9kWL7d8SGrfx4QP1Q==","signatures":[{"sig":"MEQCIGovOBcpvRzYnAOenbh/NNDpJhwOsyxpIbb44xrLHmZ2AiAYzpnYHB6xdJ4Whn1/1uEB4qIqKnQG85tR48V3iMHT4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67191962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJizR/CACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmocNQ//bmeqWQ5ZKdudagQICeIxH7Q0AmIi+pSVBQWl474rmh/jmAaw\r\nAjhd8KTcnVYBlGMwC9jH8MthGXK/5wQ5iu8HzFD7uxQGkgrpJirJid7Xala2\r\nfxnb18ZDor+U20DOZiVmzgpHcxpP15KlZcrt2aQrbIAdDb00ZkJpPg8I/nul\r\n6RWMkv/srG7ERSfaW8s9IX7Yi+M0NATCSTkZH1Dsl0iXIWUcCTLUPh50SmHU\r\n7IpBTToQso/LXD7gI2kR22vVV+mMKPiaiKHTzBALW7sVBdEyJ4pyQSe3VAMI\r\npsyyAvw6S346EfLTxDBQvDiLelYfUlzvqV8n/XjaMhLRY9azKqhQNw+L5GPc\r\n5WfSyYPtGa+Wdt0MDYjLh+VjBeI/uTQK4+1utPOJ5I13KgnifxXpJ/i7Q3hY\r\nX3xkTGtY84KmXGkyq+kBpQRoHBLHloboN7wOtkToEQoqzz03BulLH5RMTr4d\r\nyEQSyMgc9yo1R8TllICZrUXulfy4Qh2qnuX3sZfp+1BgKXQOEAAaYmq1kD9r\r\nMA/qnqGqZWNigY9zfu9+WkIBiJL7cWnBt7LeRQNOz9WxYqUVz55onbLSbd1R\r\nnC7ZAJnMimivOWx87LDVHQSMcwuiRtUjgE2K0Wm1TPXR/IbzY3w0BPSPb0qF\r\nDR6Uy3GXkZAWln4rcrmgMyxJQAuug6ZQdqA=\r\n=PxoS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"12600813e2f6a8ec028755000156b0c16e93fcd2","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.15.1","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220712_1657610178332_0.051485757263558085","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220713":{"name":"typescript","version":"4.8.0-dev.20220713","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220713","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9c665d165f5ca3557f577abe72696c2d1d4c642c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220713.tgz","fileCount":188,"integrity":"sha512-bgvBy+eVzJfxLvylV2rp4wK8+UO38/LJXjKZ95F0pOQZU/9BfGEaXmTk0Ar2gsTmq7ewzZ6iTeIbQuumR4jZLA==","signatures":[{"sig":"MEYCIQDCdOyP6c6mUl1dNH3lSADe3iBdzpwVb6J/2vwIZcaFowIhAJD6i2uj94JGu+JwJdUU7yURI1wVK4qmgGF33YxLF84C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67197278,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiznG3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr6qA//TLBNHaokp7dJ4cWPMpVD8Jt5Yuv9FwiCru0rST4lIC5sZ3gt\r\nTYX3CRsfNxBOKupWv579/xmDx4BH4tjKUpBVg9AVNzghYc9nbSW0dh5TfO71\r\n227v/LTuKjJ1/Be6LTyPuO76kqN4+PKfnhJYth2QYPMt6J9wO6kf8VYXz6qP\r\nGEy//G/PQHERf5ZdmnVTdgHjgxXFE56quE9ozNvwd84g1vV1l7yje8OxCmaq\r\nzLVQ84swPGjgd4KBReaX5u5LBqXf3//lLdIlkUZAGd92Lyl+/cljgh3m6pNM\r\nieoXhRwdFyPBJ1Wib12VOmTDk/zvPVm705/HohR7esmIqzusCNVfxP9JRK6Q\r\nnvv+Nj/mARmyCc3WpJwiCb8+oqLHU9WpFZULtN5XQBlrxR7+X7rZs+WKrCGi\r\nbsryRv+sOJ7E5kLuX2KpIHBeUzDrOFNB2Id60DeRqery78XNpIZ98i3lY/OU\r\nMQFGDDyVywpJud9UJte6PCJwPP3AhN76xC6+ElXNl+/FKQIHzAp75/D4FPJS\r\nLmNDzH18uLv3II3Tphs6gCY67JVbG76WcnjTrD7E5C7Y+RBfEFIRH6KaYGPo\r\nEbqE3WdZV/VHbEE6iebo4xWGQx4uIkJtQIqjhMwd5RSSGueeb3R9qLmOrmEJ\r\nDZw89BEoI5WvcgsToP7jaOjPbulezv0j2kU=\r\n=Vgyx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6aad28f174900141d051e62f4e7336964e19f3a9","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220713_1657696694796_0.8106816626357001","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220714":{"name":"typescript","version":"4.8.0-dev.20220714","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220714","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9c1be002c44c3566e789aa404b2f94b0b96468cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220714.tgz","fileCount":188,"integrity":"sha512-wKK9FMpdvwI68PZiQdNTNmX4rpVXJBDOG9aylV9O6nJUO5YX8yv3bQNcyLc5tbI7J3+u7AU48LVY9SF9lYwy5g==","signatures":[{"sig":"MEUCIQDOihVDTwfjfBI69zgsY6sU0EZjHTW0c/THqgwl0Bk0AAIgWVRi3v7182xH5Q+Tl8ZqVMqtUkOlrJdQKXZc4B0UTwE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67199732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiz8QGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoS7Q/+IHeioUmZ++dCcuCxfySpVvUqqn3tQmzuhp7Y9kCk920yhBBP\r\n7szaOt5lgOdP9KK4qQ6B2wo9uFIAcwA3ZRkhdUkrivhGifRxOFBsH+1Qw2n/\r\nEwZGoRCqKFQlxxY8A9o+gLkF8Q55E6DA0bVtmadFBrK4cWXw9aCKTBJ2rq4+\r\nk8InbNwfa69pT/XJMBlD0hkEeMbpYjfxiAM0VZo10t+4T5IHPTzYYAGiizNn\r\nfCEmXkgmJOAroivmb00Rs5zyAIoMq2EluBqMzcKLgr6xi/ZMDRYQwQcg5LoK\r\n/d63kwHtzzrfaceuHUHpdqjvbP+By8IdXJB4uDjJOMha8W2EN+MKZ4SZvOer\r\nApCERdZjDyIG0zOhL19W5UkR9hgvKwIOm6jBIGq8J3Csnh0Ss0PKPs0Lljat\r\n3nMSqRCcTYSqoDv77LYjZy9iIht1zTt8QT+Ont61qHkQoUmW4Sapy0c4hvWi\r\nL37PIG/ub9uP5jXEWhfdY3SL/8M0ffyuBQH4MZm89qUjBMYljENamcHAUt4+\r\nx4daCLwpfPK57U+xW3WDI3UBdTSMF+ceDVYytWHjhjjaupEFEdRuApcrAvCn\r\niJkYgumm+aa1u1XwCT+S9/fW9/sBrqbD5Se3/LVQeAfpa5jtjSIoi759L5DZ\r\n/XsHUOz7xIZiQLUj+FJ8W2CbMskxpXJRR7k=\r\n=KR6x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bb913f83400c49727a3f666e5f8d07fea3b54c2a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220714_1657783301558_0.6111590532983937","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220715":{"name":"typescript","version":"4.8.0-dev.20220715","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220715","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ca22078ef2aefa57bf68f284bba5ba06c1eb4fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220715.tgz","fileCount":188,"integrity":"sha512-N2t+SrXdUM14ZwEM2jxxLqq9nSurmXjxOY/1TSoJlp2oHjHr42cBdThZ3X1kFpBj7oXAyDM9q0yrNtzg67Vhlg==","signatures":[{"sig":"MEUCIQCDb8/q1cM1gNqkpG/HhKj2TB2xqedkwa9KHm/99fzoAAIgCBuOjR4GRfZUM0aJLv39v/n1RstkuAgxdsMJ6OB1DDQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67191152,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0RQYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpnghAAofKLM1m2dAU/WmUGESt0Z4JkboSZTNrmqdu7to89aD1H4tXK\r\naljlYaDeek34+sVAHutc5szDj9VJfu65Y9P9OdsZX0Ysn5C066z7/va7rdhh\r\nrpOmagWfa7kgZWANZuqzAHtAEvr2jl2QVaJ9FlMiAsSEB82PerKef50a+ebp\r\nLZcZWEfleJVEvo3LLiEMQ3aeCeLzjEWmjsvWT1GWUPovm1klsc1uPxbcWiSU\r\n084b/5yWJH29t0MNVOtuqOKz9fr3a065lB0ag9r49mwV8X0/rpDXDvzIXDzy\r\nfRNeo1UAKkAxHb7Ns1Pis43Q0b9/pNUkCoLqrJyWpXJLnOKhdxWq+jkMdJ00\r\nOZ4U8fmpYiAE6mIoPg78BdeHTFGIpFfcI8M+Y4CC0Bjp/+D/Or8PoC7OHCAZ\r\nkfIaqbocO/3329h+qkdG4g4BLZTzDfNiKtXvX39kjpRDLmz62kSlEvZ2JNls\r\nCfyKHzjTGyeYIIvROVjvh3qgcrk1oDo4cvFVzimO8fa37zWvyL6wxfImGIfo\r\nnuzcinE0HiPDyFfNmS1P5MVfNk6qER4tw/9UsLOp+zrL7segtHh8cQ6r9AXQ\r\nl3FdxF5qukpTSms+3scoEDpDgcUyD9m4/2ZzPqic2cmtCJrTzJIjJFjTaYW/\r\napdEyJEyL4O4RRJJ9CZAaETF89npjdMeIW0=\r\n=3zXR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4f29633934c5ba1944ee9beb4422f1f7f4ea37c0","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220715_1657869335686_0.7986775188964588","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220716":{"name":"typescript","version":"4.8.0-dev.20220716","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220716","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d656a9059c6d18e9967f2fb416899bb3dc74df7e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220716.tgz","fileCount":188,"integrity":"sha512-QveOpAVFRuMswqQcWa9dAboKXt6YW/Zg5NDOMrw3RoG/WvWlPZZaDEAT5tm/MDdbWJcYD8Hyf9yROjcE2o7OJw==","signatures":[{"sig":"MEYCIQDQTgP8BqW8HMHp0w5kpLTUxHvkYx//iGR2djIYvChrCgIhALvW8u/Sr2je+3n8+eh8qc156p/fFiKWkbr1F7bhgMUP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67196395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi0mcEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrXoQ/8DNi3oHFxq1mPvi8Rzhfsz1XKFAaiQcjzNEEBQBDQq+Ov2Nnq\r\nqWu5DguFuE3pFzC3QrU+i0wkO6L2W0SEh4gSEjTMjO0ZInn9aSpPZpWZ2bvC\r\nHE1Bwtgq6BmiJ2C2wNm4pmPcqGLgxlcmcZFAP9/9zHF4jFJUKHqSJtVuGySW\r\ncWCDNvcWDmPAIZ3WsCvp0p3b+37A06Klino2xHhhFXked7copuGPYhxXF14m\r\nIa3nYF60/m9YhjLzCGPjPQra2UWk1UToIVw3kWuTuYLt5oHpQ+lTUOKI+Oo7\r\nrkn4v+iu0zrU/6QgPMUG4azsOt2FwEKpuP3fZJAD8s/hceg4ayBztpzSpSnf\r\nfPzEecW597FlL5tXU654ic35euvRe1g8F0JgRPXUGSbaULQ3Ojt2aEoSD7sx\r\nCmCKO37j3lS7c1zGN6EnXpW4lhxQulDiWOfhzhtBaOm5OYeKSrpCkfxJR2TI\r\nmlOUYmwyrXDXGNLTF9WK/8jxoMIQrVkKF/ra5afiFaKnoiPoyv4swEiYQe5K\r\nq4zPe5sv6n3bSbdDDkVz3n6MCnUxVmrTu80LyhbEItAgVRbn2pPdZWmX+GXJ\r\nnRziMi3QD2X9lzRjOSppTskVUrn+rKzgmcxTsAkCiiQQf39yVOyMqw7Qi1uh\r\nLtfzJI7mqDJIe9J/tWhR7VCBy2f3cAtuKfs=\r\n=UO9/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"481357a4c83206591091b9b88016e208e3959fce","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220716_1657956099720_0.5505450961685363","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220717":{"name":"typescript","version":"4.8.0-dev.20220717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220717","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"841706c36f354e76bbd48a5c89bedc9d653d5753","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220717.tgz","fileCount":188,"integrity":"sha512-bo+gO8FV250ldGt8AjVHhAwbkSg10X4p7A5yb66/Muq7MQwktPhCy6kduHfgGyfdUmrbKvO4Yq5yTADnsmy/5w==","signatures":[{"sig":"MEQCID4s4McgFOJv7fdTTTuK2PvgZINH7/AXiZBaftxzYwYzAiBWumFd1dWbwebF3mUuUhO3HywXYo+VzIqosg+M7cLVOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67196395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi07cvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmruSg//Z5zS5TVyl3BoN8ssseBpj/r/BRT151KoX9I8LpBzHOMdS6pB\r\nHpHRBuzdLCZXE86KRKdJe1RcyWwNAd4CTMPhIm2ZX8cKNxOkQWKbqzex4EpP\r\nVxQqShs3YZ5ANu4j3LwkiTMrcbtQB3cP7UpebESlLkIpvD1R2pNrCZc9h8BG\r\nOI95mAgEskWCG5jwp8k+AOnrLz3TI69fih2+4MRgAJS/FmXsdTazb3+USBJ+\r\nqtpd5eKu8F+TEaP1JDxF3l2w1vNmpkLJM1XnI4vrlzrVKuf2CxY4Bx7SRaO8\r\nxzPFw+FpwtBIeKEq/temscN5vuAxUDhhHMh0ZF+K2l2ZlrIB6xX+8Fa8Capn\r\nkRPXMyUu+l3nqLaouL42y3ahqsgDwbCpiKbCewGPP5WnalkUsI1yN7/nD3IN\r\nU/PxiTTqQ6eyLJyTic8Unv1vridxqANHaJSb2c+gxj9men+v1W6jkFFDzTbM\r\nB/WoF4aXWzp1CMDsUj2KzFMWTRcBnUb7SogGqrCjIAw4o9SDRtfg3N62Vq4I\r\n4QRs41o4llm/tIWpRzVzwe5v0gQXHYGS99mYMcBOH3Q6qVi7Rz6Niy9Yo12V\r\nAJ3Yv/zJqLP44BEpk8de5Y/XNT7a0DmRgEC07Nb5gBRmE00+ozX6d8V0PXD8\r\nw+yABCo1j05r1N+GTo00xsHXysUwQZJGS5A=\r\n=Fl6N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"481357a4c83206591091b9b88016e208e3959fce","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220717_1658042159397_0.5144025737502909","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220718":{"name":"typescript","version":"4.8.0-dev.20220718","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220718","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"361858e13b396f81e15af913c7888e33a074a062","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220718.tgz","fileCount":188,"integrity":"sha512-B2TGSCNm1UToV38TnZVxcprJJSmakj3DG0ASbRO3MMl19ezUwMzf7oEM7dRYde2wR6cCrNXC6wpZME1vJYPK3g==","signatures":[{"sig":"MEUCIQCaD8eKFJFgB9Ui3w3npCh/agRTUCQ595B4SHpaQIG1EQIgY8qJBEa4KXovQF9g8BHUks0uDkI1jhUVq471E4hnSHA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67196395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi1QitACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq+3w/9HnqOrwhxWpISxh4N0h4a3qBLMae3Jr2lLpzo7nos8SyKqHzd\r\naTD1ohpW7YtkoOqZs1QVbsP/cpRfjCTKTbsv+xkyG5c0NdIh84etMBdfYt8Y\r\nUfe9NfH1y0SGi7dShSSXygnTIZusuOlOj06ahwQjVS+WKA8zhMK1LpAHwfRy\r\n9GOUm9q/Ndv0BVWPCN0TSWXbtoqEkJ8vzzyntQ6/1OaPczql9MMcqCYZFIZE\r\nFlxfAV8DpHOX21e83RMR8v1Rgro2z0fpIXvoHkeMfRAQCMzulKWLtzi2PDcC\r\nlGmh3dRuRTBYph2uQ0Z0ECfdVDqeGg1vRWXpH8pGfr0SXh3kl3XW+01FXjCU\r\nuZJ2iRhCW4EXTk5THJDWX0MV1tCppdsIa1J8OEUcS7sRgMn0MegyYFlzVd2V\r\no7zmblhknXX+kA/US1qH1O35lz/25xDg6Hn7/Zhvn/MQiH6/UYv1ZoO3J7eb\r\nxXC5FEhbNEyo0QnhnWQlkXQ1cQBSeGmNRm4Voy5UaHtnKNCxxblv/XFW+DGy\r\nclSPKKR3x+HpdhOrS+a8J2LVO5RxbiJD/mU7F2umu/E9IZHu/TTJtf1OgvsI\r\nfQTAJsCPyLBelA/i5TyzSVEmPhasDXvkwjerKz0kDz7vyRyt7htMj71ggjAX\r\nGOJcb0Pkg4dl9ZeNpa0W9ihGhxfloKkA1To=\r\n=BGsF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"aa2b2352e1d506bf26b6423b74c61e45a63b4ea5","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220718_1658128556407_0.4144812540344136","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220719":{"name":"typescript","version":"4.8.0-dev.20220719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220719","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5481fe69ef18473d0da5ed23512d5754a2f998ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220719.tgz","fileCount":188,"integrity":"sha512-IAZp6IDszN9iZi7R5LOqR5j0Ffy737RVQF7IefH1hNtFE+HiTjfsEYtWD2M0X/2feOCESZEKaa+GmuOVFuFhUQ==","signatures":[{"sig":"MEUCIQC0gXDkpEjUpAh+axacPka5s10G3uLQ0B0HVxfb6ZHJhQIgEogJAsHyyr9qO/ZAvAEVHDzQ5mwFbf4d4apLD38XXwg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67198805,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi1loJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrjGQ//QDBKTsoiAyatczNXhLshSxkD3QKlyW3T6SgIyYRamv9Z/QAt\r\n+c8kiTrKZLydjcueo6snEsRPB69YBCXU0xeL17AtKnBrt3F6GLQcd5mTlvb7\r\naU1cg8KkUyk95XW5UB3zP9nSsCZGkSBb1v52Su7RpLw2btQnRhonppqXG941\r\nEE9rKl2qydLw648rn+8/pyMpIYOPH0f5XiAqO9freytVN+aoJ+md2c24DOBw\r\nUdEBoJ0qTH/UWWcNs4TLpX4UCQD1q6uio9pU21h3ZXTt5uxARnwLmKFcV3n/\r\nPacutqoSOhlPjkrCRb5B2V4K2fkqEC9KAriQteX+i+bnGPK2o65zSrZMyyOg\r\n0fmyES7a2dwTywDIpFtCyOaRcl+86roItvUc3XUMbAb0RWMeS+K9fLj1Y1DB\r\n+ILsCi0mjDKKEdrxF7G60uGx4OLMH7zM5YOVpUDk1eYnFycTfu1ptx9KpcBI\r\nOiDBy72jaxrbEgm9il9u+K5IFCVh5t/WRFZyL5piQ5Jtkf3hdScbJ4xdNIS9\r\nfHbi4YPjQs1eBwlJ2/tJAKtP7igNR1AKAFRHoNRNKzEifAcBaoIYr7KBeII8\r\nfNrLeeaA96S9eSrciwEhNbhGYgxIbM/ovM2o0fB/1gCZzt60blUtE59WE4LX\r\nuDK9LmUxKqQ4/TNQz2qwYx40eBKlyNAUBX8=\r\n=c9du\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"298b3a432ca099330108ed7bb18293ae79693672","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220719_1658214921175_0.24873647086476658","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220720":{"name":"typescript","version":"4.8.0-dev.20220720","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220720","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3c5d43b565c7184bc113b32c67ffd1169aaf9ca4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220720.tgz","fileCount":188,"integrity":"sha512-P2hOKzT3tkfEBDVHQYCA1yQ/1JA6cNEiEuyEavCW7obrlUExBzozuYJpXlp+m63eUxvKzOBHo8WgBD4jycvScw==","signatures":[{"sig":"MEQCIFzPhNfUrwACthRDXuRGYV+82dQaxtGfBHqqw4gpWXNfAiBmEj0v7CNDCdZ3MvuCLkCxYqpZK3smU46+AKy6FlpzUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67205947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi16xlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpXrA//bAgoRPqPyVzChAPq0VQOkjf9lcywG7v9FBvMMllas5bAluJK\r\n9Fc0KvYogXl2sak2apAy2jAYZ37za6BZTtRMKQtxugkoQBltDzzSvqhj76J6\r\n1J16sz/NMwwjMSE/SIK00R1FfkZ+M8j77P2NuCtCMOWN+utyVIlUpI5+iod+\r\n6XL7q0dFs4pG1NN3l9A9jAb/dH8edIy9FOczn8mrwDH2xRsWA/ilR7OjJii5\r\nCdHeScn/iSFOybLH0T0TYzElhsfXoyQmM9qQRTpsxWxeQqwdQTkZYUNATus2\r\ncJwse6sKHFGdxuyLS6cT4ncWPV++6uQ2v+ke1ni5yi6lutnd29d+jgJo6zdg\r\nqaNNGPWvhTHf9oyjUx4KTZQXMj6Yj6IHkug9s2J2aF2UPAqNx0ZP64ZbMd9L\r\n+ylceQRGv4A6W05SpkINVtTTGt46j/Hd2FgDhF2b0Q1GSL8M5M2YN3kPfiMI\r\nC7Z+SRHOL989cv38c7iZR/SyT4Z8idas6qDW2qmWgwhfN5nz4lB7IL0PqhTj\r\n+/PBkYGc+ah2C+lNYpqXPJF1ic4vyQsipgHjqaZ+jR1eeU6ZamDNOtuxDLoO\r\nFhBnhRqSEg9Y30vKJ05h4UKoBeKdYrVSHXPjQzSri0QZ37IDNxbC25ze3jz0\r\nlLPWJOZ+fh0z6NA0+MaLPTK2bLGyCYK2CQM=\r\n=bfbj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2644fb0b5cacdcdf905e7cfbae37f2781b6ab3a4","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220720_1658301541070_0.042529243484013435","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220721":{"name":"typescript","version":"4.8.0-dev.20220721","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220721","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5f3d6f8378d987f5445352f1ba2242c7ea42dfbe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220721.tgz","fileCount":188,"integrity":"sha512-Fj63XtbG9v6ATuu3VEpXuTGsYoiZpdpROiXt9FxAk/pdpKsjjNGEuhAq36Vm4WncG0EoakXXbwm9eaZTt8vcbQ==","signatures":[{"sig":"MEUCIQDHMdiHoieCM2tYeHJ3RMWolaE6Yish1hZCkSOfDrctEwIgbflzCXAkA4XOlnEAjuK51lPG/CgAIkgYO2t5IFB0NxY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67206315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2P0XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqSVA/5AYOu55pwEKVp+xEWXluWmjGuty2v82ZvtlLhl7IHuEgTvHZP\r\nQbtvSyEYSY3N84O8mj/s3Iaa2AyH679KzZOK+9h3R0VmaZdiMq+RBHBqvN8x\r\nvMm1HE1Okwj/9NTfR4k3MQgZilGpvc7yF9Y8+09yF+Wo3K8j/FGw26XJ5R8J\r\nQfYCpn5H1mz0Vd2qEbEzBIkv+LbFeI3rY1WbIPgkBhazTWJo8+yl+9xJAAyj\r\nqH57+VMUFdaWIjowjLUuNz1es2O99+JyItN4cnNCxCn1W7UYRWxUYiNlWC+O\r\n3zUq6ygF0UjMPdzDSlqP1j6mNkmrxwVQz2mJdPqg4/bSyiGjI9ZOfQhQ7QIP\r\nzDdOwnlXvu1usesehDWFwBXI8FEMl+hFRjwt2jndXk3aBRwovjWJM88H12gY\r\nCgSC+42D0rwGGjnV8krcysxS/Jd0kOwGrA6wglz/74jgrLhxexjEFEMkF1TY\r\nNb6QZPlY95oestRisXuvUsG5v/MpNpgj83fu+OYSDZUdYQwcbxkPhUxwW44x\r\n4Spjb9Cqp4U3sspioQGNam+vhTAliyVV6I1Abf+xpa57ZIm/8Wks+wN6MAs7\r\nBxwCQkD75jDJtJ6uePExiIX5WfXvNvOCcuY5YuphaVSQtgat1SgPMSZUpr/E\r\nIqM895TNrL9ETgibn+06FjSkZBBLLOsK1d8=\r\n=Y5f9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5d2e62a810d25db3a9745059ddc0e2ca468eb34c","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220721_1658387735288_0.5708034655851388","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220722":{"name":"typescript","version":"4.8.0-dev.20220722","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220722","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"158318b254c65e6597a4a8828da04d4ad4519fd8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220722.tgz","fileCount":188,"integrity":"sha512-/mI+R57LcsW11qm7tGLtRlmTJpVmAhNmEtGbwUcBc1nCCSvJ0TRnUT+Iu/fyY39/AjOfx4u8DIdxUMZb2oH4YQ==","signatures":[{"sig":"MEUCIQCy0p00pBICVbgnQLf5Mutue3DQmZhPeLzvqCYtI1Pa6AIgdGwoNnc6TpP+3ahorR2veM9gwNGD2Aa8N7eS9k40Hhs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67207507,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi2k8GACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpDkA//bfyQmM3eYO1BbohINK/Y2fkt0xA/axj0fDAbRM4ls9bpnAJ8\r\nczJJdmiO3kxMbxK/VxiC5uvLfGqZsw2RDt/Re4f01AbrFhQd7dNjcyf561IZ\r\n24oW5mILOq/o7XLkYFF6PXVNMQTqp6znXtMENFSgLXI8PTAw0b+CLetF8MBA\r\nGzCN3P6B3s2raei3EGI+zZWM+l/m2InlpIGXy+14T1XJZRG10Lmjq4rt0p17\r\nOAUhqnrUbZIVMF4pfqDxt3kj305xjxs4l5OLwYEunblYaqiQypwTy9cxA09K\r\n7L17UErEsYl9fTqM/ohJujewnLLInhbbCtGolIq6pwBMNsauNDmXzX1XWLpk\r\nPmP6gSfqt51KKPjQw1w7xi2QxG2FxTEBYXPT/mpLBNNNepC2EiwcLak0iGfL\r\nODCeRCGn7EUrlwHvkeAXRAgU7qKjwwwc7SZo4TGWFwEuXuCQ6hc7T+1pDsUd\r\n1OqT02kuhB6AtvaggF/2pZjfKKTxlzgHJAuhfBIHbVQKs08Q4V+O0Q+UoNeW\r\nmgMZ74SVgZtr1nD9bAxI3n+YExB8f62vCkK1oabvh5XzPJZzyy7BWWm5QhxP\r\nIrCZUo+ILlNjfsoFBpefStsNlKoFljjbq4X+9G8EI0WOzIbSKia+UjKL85ZH\r\ntAchNCk5b20ovr99NIw6vAnjg6JHDMkxkag=\r\n=eLKI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7b764164ede080afff02ec731dfea72b3f4f73f3","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220722_1658474245908_0.42293653104233164","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220723":{"name":"typescript","version":"4.8.0-dev.20220723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220723","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1a8b56a05521cee737af1088083af023deb3b46b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220723.tgz","fileCount":188,"integrity":"sha512-1akRPAGXS9Fqimr8ronXEUM6nrEsMmwvs9k0i+G9SwbD46HoPBrzdGzrTuxkKcoIiau8/KmB5cP3ZA7tHOrwAg==","signatures":[{"sig":"MEUCIBFv4A1SMgzT0BJpi6HZnG3Wz/Lob2kFRcYdQ8+Ev3T5AiEA4m9w0Pbln5o8dGFGTeq5YFQXCOxkto5USjLrRMxPsJg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67221295,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi26CiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJ1A//VRkON/Ygg0FH6mgPkWTFEGZZt5uQo9rZxFqPRS+UKEGcYTlE\r\nLSux3HgzjJ8JemsRyb3pd2w8MkXKph9uDMyRi+KLicONQA8m5ZHRYLUHmPM0\r\nmSAU9bEKz0rYkYvgMsA9sIg05520xM7qYJAgfY37llG7F2DVzhW9JG7bFBLC\r\nDlXsSwvlN4gI8Cw5v5dQN8XVKHeP8tW3oxewuybOYwnxmxobsp+Z3USuphX4\r\n6ZfRSHjjiG6aVu3ET+79Py19N8Z6EPW5tbpzOfKzpc5EZGBcblzCOKUycC4I\r\nixUcdWXVj/ldCmM1DPjedsC7aqL8LHMVbqHyiz91tqBjutMFkGb4oKP66w8Z\r\ns5loLQA2wGc58vmQlg07s3434HwvMl7kdzap2hTarBdJezMYZl8mepCGE4CT\r\nyUteF+F87lGkWUFsTiz9ZZk5DjTMm5c3JiJZqtuHUKltQzK2UIIGY1qiWW5y\r\nED2Z3Rly3iV1J4459eUL4KDtjRm/r5JAIW4Do73TTJeSfOxF5MwzVMLxC+Wj\r\nq7AXWsg789122pi0bctH3cHlCTCykxWHh96zKFuD9PoKPAdb+NwcQg/iyWiz\r\n4VdPa53Yo4t6fCJgIQTVUBztC/SQAwWtlA9nNoM0kvEK0HMbSjNSZ3ToH+AW\r\nv7/t0XZ9FrHIiYCuhJ2rjLC7luoDVcgCX98=\r\n=oKf4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"966e732ed45210ba8e56ca69aeed23c5ceb97429","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220723_1658560673908_0.6808685183411805","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220724":{"name":"typescript","version":"4.8.0-dev.20220724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220724","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8246a3f8f3ac7499e8f1ece15330d85cc61811e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220724.tgz","fileCount":188,"integrity":"sha512-EMuHZ5c4rsg+iErlrfX1VLUv40hQ4eRkT6KkXQ6IpO7xsVxOjkVRpCTJS68Lz3LZPFveZzRKWW0pWZiuQK2VQg==","signatures":[{"sig":"MEUCICWohme4UJgdlRNmO6T4Ua53Fn8ZWLEhYo3konErLvRFAiEAlnD9jGpWDdLSZgzKHy42p20D3QXYQ1otplDs0XZGTjE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67221295,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3PNkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrj5w/+Oc5I3QLs8nqs94rRtwPwUynxek1iP7rvQ/F8AFvBKOCdpzB/\r\ntNuJUAriEGOyE0qMu8vK044wU9gkokMDuaQqUTCElIc8TurvnO99LR/52Kfc\r\nfJ6o6zZctHD14HECUJtSJFgopqh8ljOj3egLU9hRmhYrLvHwxc98rDfZRQZR\r\n5Yh/Qd6vLj0JySZuEVGIk6hLswHuhfA8OFkn5qmC4fG9k7+dvw2O8ekVDQ3u\r\nVoiuXhOg2HgDAFQN9cQU0NQ1WM9zbUrdT+WTqOkcm1aCEkQg4/81VsPhDl8Y\r\n8upbNA/6UPR6caYznPbkHqO54Lk4AZzE1bq8qnM9aw6aLCj4p+6wMlPu8v0F\r\nzt9k9ze8riRdDzSyNSwWgX2YAsj2XBSYghi3bQZPhshugCGhv02y0G7AaTHg\r\ntnFT2Y8TNSNQS4swdTMWHJ2QfA0q1s5cF3XO3jZUmUbDSdWQt7/ItA8H9jtJ\r\nbLLk2hMh5BcqJxXed/avFzrsnsSAXshsrgl/nvLxsy/Vykspg2MkDhwst7Xh\r\nWadb6ROf3qZQH2h7KPS6gnXQTxWCLlCLmTzJPEN3XsC2gC61Lrd5cnOqcSUb\r\nHhchJcKnRH9JRCHIOxq6S/AV8WJpJ0uTVZwKExGhtVR8LrpdL4liT5hyhTIP\r\nSd5uqDerzzs9na7XUJHaTOaLQtlYYgRPgcQ=\r\n=WmLh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"966e732ed45210ba8e56ca69aeed23c5ceb97429","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220724_1658647395716_0.34162166420002915","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220725":{"name":"typescript","version":"4.8.0-dev.20220725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220725","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f2622748390d9bc902035c9ea87b11a3c518f3cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220725.tgz","fileCount":188,"integrity":"sha512-FSpIv4aahmuygcFmwWV1iWs5mK15cwFrQIz/EKHQCvZBjWh8u42FUqqL8PPmcnRhXfXCR/N123hhFYD2krMEsg==","signatures":[{"sig":"MEUCIGsTofvokoSUlUnd7bmathgXzxX6s0OrdPtGVs8pbZzEAiEAtx3M6t0A759xfOFvYSVyOjSdcUlOw9pRVOkyAZJNdMw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67227491,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3kQyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrjLQ/6A1p2fuCSo2S4MoufEG1uHpHrCtx1hP1EPgwdf8Jb5krpqzoC\r\nmw4OxUT1stMCxBrG1s0of5T+0m6+SQkAan134qIIj9n+PgPx+fMNSrxmWPKI\r\n4St4CHSIl4OzCpLLBaxTFTRbWnCb4JeuA5RYzxQtKvDFplR41bx3r1wrU9p4\r\nymbLGPTaEG2arm6H89k5l07bU2bhoH2qB21tS/jtpdHppc5l27Yg2zA/FMzx\r\nWjQAGfXb+EqZvKKQk8DlJkGKFYZjHYFsUL+UlnhAC1yCs3VXYF9EWTn33v4g\r\nRNZSGzwL6nXq1Gq5BcJit4yTdIJbbGXNabq336at0D8mLgCl7/Ur8UvyAW5k\r\nuwyDNG7k19jZnRtXNaK7j5hbFp7fwLJXZ9fKdd1eZ2SeAddCGdKkQx/S3CmX\r\n0tp7ACHlRvPy7PgIkdeliSG9/e/IrV5U18U8ATpw2mGe+w9U+iG35cT+xzxP\r\nYBLJTlkLkNi1RFEW9ujAwJuZ0TbCohYjHWHLq22qiW31w0iXV4CXdLQJdeDy\r\nMtHkcK+VJX4cF52mhnFvGm58IgDQKeX98Dw4bGJKwSPGrY7HWiN8bMweFPZp\r\nkBn2pp0SO0eQAhkKDrK3yT3o9iC/6dj29AkrQhzRvIpaDuor9G2bo+4RSZb5\r\n0bzW6O5d6SE4eB4aehbsQXysyJJZAB9DmKc=\r\n=sNGv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a179e910dd818262571b46313a7918aacf67978a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220725_1658733618050_0.9652525998307617","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220726":{"name":"typescript","version":"4.8.0-dev.20220726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220726","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fa71807c492244bad23369584e2718ef0d5e4b8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220726.tgz","fileCount":188,"integrity":"sha512-StnBLpPVZZlNZuJE6wLZEY+REkAGh2WUmJ7D670jNyXHo/TA+0zJxJ3g/farsYAuS2S5Vt3LiwbTBeo6ebXcHg==","signatures":[{"sig":"MEYCIQCwMY86HPYM344xFhmg/Ke6/8IU0W4XqIqdbZQYJfT/wgIhAJtVAb7XXKXiRYZciOKaVvMKGGHDptOpgg5sCLhsHuh5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67227689,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi35XJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmph2g/6ArHbBntEQs/jKjdPC7hzq/XaBILxd4JnLXye5UO7o6/yD/8V\r\n91q02zkqYe8qxV/YWe+PUbBvYa6YQCXlW79/eSkcwLwheGunlRxOzFdiKKSD\r\nZ2hmt4+mbJsfy+HZuF2E3ooC1To+TN8vx6cKu8jkgZwuinSNKUe7X7Tqy/TY\r\nBRLVjXaeCQv7DB952301CpYExJYCftBmZ0kuQc6uqt4pz0QztkBUKnay2MxZ\r\nO3I+AIJas/aVqi6ZJCR7r063PE89v52+XuudmsYrtlmRSuIhNaZnEnk6wmu3\r\nFW+6xFXEgmbfOJzYAV6dGSHroKQ+uBauIXB+m5hqE0tAhbbEY/NtGvZUE9o+\r\nk1QDvV8xxBpjVWigSBsR9LpdBhoLVBlCFj290cNBlxqMY/0bY+RVV0ou2Z9E\r\nTc996kHSD8+/IWA//fHbGsSHrOvel8IR093rVXKubfcc2H0LLl3CdaPjmyUh\r\nZk5lUM6Eg637EgMpFmMswvdIgQv+IkAIgWBGuAyZlc2xPSwugNVqZuRjH568\r\n/Au1WGifMphhwo999k6xKGOp2x+GEKfO8OJbfHBL/w1s49pGE6kmw7WjzpPP\r\nRiZw/UpZT/nwwZiBfieTPeenHhVsnXVKspI2v7hbtFu/IMt0xp/vO8pOFNfq\r\npwbR4dezzSQYSXUSJ3Xi2AcLaxrZvpTd/mg=\r\n=xMyX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b5b02eefc86c9fbc037c18fcd9ece61ad1fddfc2","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220726_1658820041272_0.3922988566998653","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220727":{"name":"typescript","version":"4.8.0-dev.20220727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220727","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"77e0f58bb837d828068ff3b44b2b1e11da3d6829","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220727.tgz","fileCount":188,"integrity":"sha512-uGcc2dPwT0QpWpWPgTp9ko6wJM3T/GDHqfsOi1O41GeiEzUujqKkwppbTxW5L/yFzIdtmyJbKrO8GaKyUMUdFg==","signatures":[{"sig":"MEUCIHJBAaChljzlCLTSc1wCWoc1gVROEZDhSBhmgtEIDaoyAiEA59qocz7dz3gKSgNCFLeWwMr8yRa9M4HlbJylfhE6i1g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67262812,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4OYIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmry1BAAniwH/DYBEIWn9arM5gCw9jIyqVVUKiSArYBUy+mrubG/sboQ\r\ny8rC6tIdv4gudDRZOSWQKM6JE+uinMmj5V+vFj+xZBNj2rLLCFdyWy6/7fD5\r\n3L4XEUwmyc81I18LCZ4/Uf2M9S4y7MbaCLkpNc99zIFzQ1BtGD6RnTKUauPu\r\ngYDOuuAp6sUV6n8oucrVbMa4JOwmH48KQ81AibId4MlsOAzCXLQPgwQuoSgg\r\n9QH9BxvCtqWQofcF2OluxM7j28tvGYFW3MeYLQm8NhlGlVnmK+BmTLC89Tb4\r\njfknX+LhNabH18eo9j8ENzWDvJKGexKRJ12z+h6lNJFJ5DVMazsKj3FmzIQV\r\nVbpREZxJ5QfmwENSvV4KMB/oZvc6BgjWmw93729Uvaz5kpRlFZ1Uga58vwx2\r\nUnMEgCtoiT/kf3SS3xjN4jApz5gACN61CYcur5RyylezVvs3mm79/k/YZhhS\r\nQJ2SmBFklZsPZRXOHZwFffO3ZLsXyOPXPLVEFQl+BmnqB0Lh/BPIMnY46QqK\r\nLStsh2D+2czxM3KdEg5A0MuXrrkdDVcyGt9Ktyj+jJ2bxdMMWHIoAlyRQJ2Q\r\nRDnUmY8ut+UfCTC9SUNCZiX7rFYif8LUETzhmgLhjDEdP1pbTYYlv2VnWTA8\r\nZD8GsKMEK6PJx6Fd9wo2tEvgrXPOJu2Td5c=\r\n=42LQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"node":"14.15.5"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a4507c9225a8c0746924acc5b544a28626ba2ff9","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@6.14.15","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220727_1658906119992_0.7516034167388455","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220728":{"name":"typescript","version":"4.8.0-dev.20220728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220728","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3262da5e233df40e4b0d32e9f27eb9cf0584a62f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220728.tgz","fileCount":188,"integrity":"sha512-SVQVE8nBQbL7lG1F2sBrir7H5zOiiC0JbpeyToKxb6bQFn06U/G+7XMuy+BLNNt+nN+IaxIH8KmU5PjOMNvDkA==","signatures":[{"sig":"MEUCIQCz955hohiKReRf0gn42uBcoVJyluyReEqWJi2Kf+Hb+QIgU70O74hM70bfFzwZqlJhBQ/FQCLiLZmpHk+Y43ie8MU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67266176,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi4jfbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqGeBAAhjCi/hbkONBvdHc8SVrlcNCVI/aNSbWuQIY42sylILK9VKL7\r\ntSxlATrIJc+fnfgLfZ18YnNIj3P6CWCMU81+oNkOVP7dldpJSyAPXRNMFvts\r\nGrARzIXyAEAf19t7HM/pkdgOgmPAocj44xpisbVa+yg054R473Sbi2NaRYkc\r\nDQXLWOXeVBiG+Z4EleZ2v+imfgy+T3Nk0/Vai/1P39ESQVkCanTyaSVUjPIi\r\n2HUgw71Jes3b2BuQV4zAa3LKiU2zJx1bW1NoWSDKjo8n2ry/Cc/8x73OzTGY\r\nvILiW/Jgt38gE4opHy+WYK393yCg5v++Dwi2phsUWBVhweVltveUIrlQl26w\r\ny7Em+x3zrK1ZV4QWcTzRC+R/5S9cCf6aU0hJkYNvHAmzJau9JDiZR4SyUl06\r\nbfEZ/x1ztXF73P+Bt++TGMWEbMMY3HQeK/GyFCeP335rc/7VzdfcJKhXxOEO\r\nmfpr5B6QFnuk5c2o6BfuQMtEcrPEibd117KHlH9bjYbhxXubJVd5GbiFB8Bn\r\nIzem70VawL6lYXRCBIae4WSJ+Mv04hyyvTs5PPhKl+2Ww1kaeAzUbwAe/sZr\r\nuZ7jLtJqwBShB3QlHALbiEUwv6HVX4OjpT6UNpuADulV1yNygnJgkSzpm8PJ\r\ntkzCiXkm8Mn+IuEHyMSK4AzqARu3Ab4rRj8=\r\n=wWh4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c9586f39e93d25f9d9072a05b7e12da51dbafe75","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220728_1658992602708_0.6124766927469742","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220729":{"name":"typescript","version":"4.8.0-dev.20220729","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220729","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20acc26f4435bb63d0d93c22c513eea23bc6725e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220729.tgz","fileCount":188,"integrity":"sha512-z+G8JjBcEA+D7iGniz0xhHU1oArnTKkYHiq/RuF32b1tz8zevpNbnAAIB7DyX1u0USY0XnDNbQIjWlbgdbb16w==","signatures":[{"sig":"MEYCIQCLMySfYzs5SSeoIf9DRDA4LxcUEbQPSxDXx2nsdEA53gIhAIlSxIsYXlULxHlb6MGg+ZaI5LlwndeXszNl7VbwwkR8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67278058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi44jnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqzJA//aAVI30ygxY0ToitukGjLeJNfbOy8XhgVthN5i7Mwy2cla1n0\r\nbyrd72I2UUzDhA24333SJCI4simt39lvhtx7cmJ/616VmgtdYpp6AgZahETE\r\nq+48+T4jjL2HWwaMA339ZtBcgP7NPNytROlODrlSh/PItr38RZ0V/hkj+G1+\r\nzfsMQFtGcxiW9qsrdy5ZCpBkp3KVl1DPPoeufhyZ2gCsW32ZAM8nOsBrkWa7\r\nbZfubewcKmVbij826hHRHFn3Xmc2okfxz6JZrvADnti4Wy55CIGechQWKxa7\r\nVMPZT9L5X+Zici1B5F49n943UogvA8P+mo4qP9TO5+/BbiBjvltDRVAGE9NZ\r\np2lcEkGc8Nm8mM7hxHiQUPRbZ6YCN3yYkUlk4pHB1gh0D5lz1Ya82U6w+XB+\r\nZGYCPwQGqgO9GG3VACkc5NiFaHjrtWc+eE3lERaDuG2EZvlmDuKjf1l6zl0B\r\n8NtcB7QwMebp6dzcqEHVDZx/guZCeh7yu865F5zTUw4k3FtZRRb1iLxLb2yv\r\n4ExS67f5LMkGtsLwvmB7vHMWLxWZ5oWzTVKqTMM94cmZ3ZTQZJHuL3VC0RB7\r\nyOt9/Rn0gmCy6JTrtkjPCOwXXZIOowWjfOu2yAl+8E9E9yhIvqTXPqiNMC2K\r\ndKmJH+7ToouVwWiFhTRWRyrl5tRR08eso+g=\r\n=DZ0x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cc450cf820f682f19b4a3213e6bc1cea475a5337","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220729_1659078886773_0.06808767407195004","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220730":{"name":"typescript","version":"4.8.0-dev.20220730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220730","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c4feaf2706b3b25c3705119b2c627a9c7eeb4606","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220730.tgz","fileCount":188,"integrity":"sha512-cqBOl/1ho639SW4/ckhavdj5P6FVMnb6Uq/1mBvPabqvulMtX7VrUBay57lXS5ZBjUqQuz9zdUMkFOUuzRFgjw==","signatures":[{"sig":"MEUCIQCGf/4cDNkrBHRTb4uGyWZQRYJBqiHyHSUtqmJOgjTaSwIgQH1ZpOrj5lFkCWsOC9vGVNYJOK+UITGDnWEfbTq39WI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67296406,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5NwDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWbhAAj18b3XDwcXqJ4D80ihlm/20gd4Q3q7e09kPiLdLeqkmcoD2S\r\nRUUQkqF9SIlKu0e5Imt5ranmJeYUkoYMAXo4srAS4zyYdmX3OJtP7n6Jw0lF\r\nCT+t7B0ci43XErUMCH+3/ygLdB8dSIewILglZ8b/0qXih6qtXBNDRKE607AI\r\ndPahthqCvD3k2zhWLT902qVCiISogKmDXl/TfpISX4vNXMejB531isoVU2fS\r\nhaWGvgHN0IpnmIQ5lj8F05YnXuaV4stNRwUoInnRzf+gMOfY4d3HpbgQv/d8\r\nBCa1M1HRhXVz+hC+PNrVqTlmoW4gmYsa6nCL0T6g8VYkoezQLFLjGJcmhvDe\r\nYyZmIzbHHrh6RWXV6AYiubOlF/Th5PXVN9plgX+UAkeib7bgPD6kFwcMJHBK\r\nxFK64gnS9wl/DpWf3N2p2VkYqV9MEnZwe1h70lpn8UNvuKU73Zam1/n3V1jh\r\njipIEcJXczE2I5uCMnCgUDaA+7l/yiCim7R8qZFJxd8pI61WErguuQq1cgAB\r\nG2604lf8fATIrGs2WWZ8Ttpejwol6pcRUjedp1m/884xk0a7/fWhxIr6NQLs\r\nno9oZdZK2XwqQQFKwmkE+PGXieUvadthk0XLf7w+Np/l80JexS18Fnc+52cg\r\npq6X6aljGw7vUEL2iM/ELJkSomUpOw8JN6w=\r\n=2+Fm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e56942b7a987908713ef9c1839ead7cc4acf5321","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220730_1659165698677_0.283315942975503","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220731":{"name":"typescript","version":"4.8.0-dev.20220731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220731","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"29869757aaea29c3c1505539e6ba4a6388d47ab9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220731.tgz","fileCount":188,"integrity":"sha512-RMnAFXQvFPMG1nOvMfnO0z1FvxKvH001GmBY14fXmX0DftaJvh4Huw8z/VWQF4IhWRSQr1tYo1+jwM2z6M/tZQ==","signatures":[{"sig":"MEUCIQCKVA6gppStUTgzXiuaFZ+5Ry4McxyvcrMvY+MiypyuxgIgWAiXC0IziiY6Xuvih3qXjQNC0GBVmCbEJ/as+nxuN1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67297466,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5iwzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqhKRAAmuoKXQWTe0sCUeyjfICRW/DHrrTS5IPsqUkuFWPmctXeKaFK\r\nBQvz1fGQzwNbNP7HAKaJxkiFq130YRdOg5rSvRZyJ3aO8x533JiSinfDdYbJ\r\nZ/1UgiUnGaiCUOXkfOKztlvmb2UG+O8TEdJJA3QGBLXXFj/tJun17q+KD04u\r\nqakO4tf/gWPfY44A0gDGTnai6unI1614I3JFnysQg9JzEAlO5tIMTVvIKSVt\r\nvI9Z38DcBfuEU+EWvsRNl1sNndugFrUdCimo4jbXkdIpc+hQF8zd7J0WHGz8\r\nDr678n2k6dG7cmV3FnQTvAyZtKBuvlLuGBitvleC1zg8c5qvXtOxKyf+TGiV\r\nZNxYQ1DjFtLGypuUIGhSTC4M1P9uJBgzsmDj2a5r0vrpDOqnPdEzDZaAMlMl\r\nNlAtSO+QEQ52V4O6bzxUA4XCdK6CSx8nFCHHMrlthX4wflzoLfAFf2zTQPo2\r\n6MjKnBhRyYnQqlGIsaUBaPoibz1NCKIlrYfbo4Pxbg5oSkSvbJYA0i4h/4DX\r\n1ROEw+k1s3lvXyXmbR/XlT1AyQeWwvYcSIkVFI6cO2zsoKtmJqMZsLP5a7Oj\r\nmcY+upVnrguD8fpqzQeOTBUUSHloaqDK7/bUnt6dMHesIX9XONgJU5rCeL7w\r\nJ0+5mdfdYH6PweBwa16Ch1H6Qo9FEVGS0Bc=\r\n=lmQ1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4f8c74033ec3bd71732d2bed57771bbe083c02ed","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220731_1659251762695_0.37741675050264245","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220801":{"name":"typescript","version":"4.8.0-dev.20220801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220801","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"547ae7fea513fde4058f6715afa673b388e73129","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220801.tgz","fileCount":188,"integrity":"sha512-idPY4geCSbS6npeHcr4m4nITkxz0/w4LmLSAao0UGvaWoHGFfkThJZhCXWFAx9TxQV1zZUWgXmngJBjfTm3otw==","signatures":[{"sig":"MEQCIHR4ZlIzI23hOLtvXUejrGYv/6Jascf0zZnWYnCONJ0yAiB5DqkcT4WBoo4vVBcsRVW27NDTtzu/EpqdEk40rytHoQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67298143,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi539BACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKOQ/9Ebc//yanzACi5WM79rjcaTXK9zeYaDAbZgDnzgZXQuFByi54\r\nXQBRWJJ16PrZhdsFcho2GcMG9kiq1s+XIiPFniaV2azaHySMZXq5t2x5Uf+h\r\nM6MMKAAF0RQ86pZo8pLslLPEnqpiTSNucqdTSmSN61Yhp54HoPC5W6rPEbS1\r\ncQkn0DnC9LvaOvMD6N4Djj1YxXIKLsd+JTR9jaEUdoo4dBMKWuKKRn3atuFZ\r\nr3KnN4jY9bEl5OuB0/EjEhg5A1EgPDcdZP2mcJaBa1acCpfTZCVJ8W48fkTc\r\nGPLF09oHZbvZj9VX1xj2RV/HPvIep2dvTM73jbRkY9kGFsndGUml5+hatpZC\r\nfgxU/VZRuuZbF03X5SJl5T47+w39QcR8V62FxO4SXv3TES+uXytSEvlPsbPc\r\nEfG1EmQgq2KlKvXpHKn3uP1R+fLwuD2wYLUXvEqBINizQm4rXvM60dgWe6/4\r\nY1Dile5I/g2+Dkl91EdkmkufvF2UOMwDcG43ijgukCHbfT5zCQfRD5wvwRdi\r\nv/e8dbXKqT83Kla5GjKHf/9aF3VKvXG02k5VGAipKFHrq/a1/ZmC3Dzn04qu\r\nHppUt70VMeKsmNlQmv1dFcUQN8mGPZ6Ckh8bxWnHHaDH7pEdB4ecIVpud710\r\nDjKRJjN9yJSrltOQ36BCnzhpEB84X2Gld5U=\r\n=HeJd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e1ceb2eb81bcc0768d0df501589551e3236ded96","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220801_1659338560887_0.9411033528288022","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220802":{"name":"typescript","version":"4.8.0-dev.20220802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220802","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"171e7409c441f57ae159d2a799f52f60f6e85fb7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220802.tgz","fileCount":188,"integrity":"sha512-xMw8U8T1pIm07TgNJnK88EvkcsbWiyefGwLh6JsK0HD5wb00Oqw7pjHOhvyB2YHiUw4mKJQkiRUoPvQ55ZcZOQ==","signatures":[{"sig":"MEYCIQDNbj1dHpVA748vf6gf6wq09/nl+xP4qDh5GgVrWUiQ1AIhAJICilFeQ0got3t4lZkh8knuzvzD4KFvPnrOdlMY+/4a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67371722,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6M82ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrB8Q/+NkE6JvwEtjk0NyvN/kmJa6We4IkDpJW1H8Pkupi1zsUBvSb4\r\nwS2lxqRZIkEqruJNY2ojzc/YUHVxfS/KxA9jpl5BkUsVO1y6zyQgrlw3/66X\r\nRE7+03RmB37sQWD2Q27KHrU9awZPiKkuntp1EaTiKv+1iivphN4yc4tcwD1O\r\nrl1qFKhAUFph+BMU0QhvoAJcs2V/0jc+lrqFljbWnyoYE1KA2cjj8vKbtmwn\r\n391zcCHS2NMcmZCzzGfExNpwUnfvTEC5TvSJX//WN1oIr4xWWZgPeEtfz1mQ\r\nCvS3SMx2EBC88FDox6qTRbTyNgPXYdRVf2L1e10cY3LxtKXxUd4pvv+IIZTv\r\n4bRg1v9S1zW2m/env6PYcwcoPJtB0FmZ1ZDAY2ajY0bL+/zDbwsYaim9ufJE\r\noxzxNe+qSquZo/cMYhSMo37pPQ85JyrLAM2u20FKmM+kgy9oaCbI/P2+q6ue\r\nSC1S9YaROjUJpgs0gcuQRMmQ5O8zvqqXEGjvH3GMeLhjtXbeghPX2Ujv8m4S\r\nTGClDEk/Li+V7aAuTOcEbfK+s6/lakVb1NP5eHtxIEpOQ3e9/ltRCTm+7jRW\r\ndeq05JXe8ONzUwpxUNJ20HrurkTbprrCHtPTJl+A3dcSVWoQAI4Ym8Sgj/eF\r\nJ61oyQJTYBQ+6DXL/czLM7cvKm+cOm2AVSk=\r\n=bfk9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8493ea16aa7fd774dd29d971e09f1477557cccfe","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220802_1659424566428_0.9053957484834971","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220803":{"name":"typescript","version":"4.8.0-dev.20220803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220803","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"25a31f43a74df9240dc1568dc25f6d13ea8d193c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220803.tgz","fileCount":188,"integrity":"sha512-kSQ2BkI4A0i81bjz+X+ibWVlC/DiImiNzJkz8tOj3U3hSgtgBTWw0a2YnVVHvyVdw7R59qDjE/sjX/3p8zY7xg==","signatures":[{"sig":"MEYCIQC9wk5HFkq7x3pqzkh07xBttv1peXJVa5Yg+Ptv8owFfAIhAPefb2mwtc81R48qnqohYRFkMzU0KPw1GOfrOkObdlUF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67371144,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi6iC0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq/rQ//dvA3VhOMKBUYkVEu1z3kNpOzOAsp9ov4DKmyW/rjX5UMRDBA\r\nZbRA9Y1xaFlGvWAt94BrHlffo37d4SerPSoPzi/Q6yZPy1foTi7bEK9AUdvZ\r\nmAjf1CAPtMxmEEpBG1u8QIiCKHc6sp82KcB5MfmGT5C6IlNz6fAwcZUgLi8S\r\n2iTdvaE5GdWDUEr+HDuz8z70E0ZJ1dwniTzVVor/vZcFXslCAF95ort/G2p9\r\nZ3zaV2UlRvSUukt40QKfEWK4Ccf492c8RzBO2F0c1kCY/kcVuhI4RgWG3dCR\r\nVRJDvI5Ry2z029ZTQJ6DzYKLR5GqpNf4GyVIAb41/WK4vLNuO9yeMqmq5bwd\r\nU0gqDUlroauI+V3sXmGVP8zx9yS3UHKTgMDR2GGDxFzWCJZx1shhtt7a4QDc\r\nNSatDvdKz8PzyGciSawcf8jCBDNGdWkBD4d+tlbOlShBvySdl73xMPbZNhhv\r\nPHXTWR1RC+W7K/EH2YXxMO+Fw4ZKhf/bm4Kj/aYAJQz2v7o8szdYWjxvh9Fz\r\ncNUdB3J1xjVX0KNLzoqi+9e6ILF5pcxP2IdavAEW0x1CfdHQRVnrrAWFRJDh\r\nbc2aVN7TwdYfUOz+k+1fJadmtxcQYhszb6re5vaEyplp8XfnpeN2hd0wKinF\r\nCfV7iEqu8gQt/VetfsqG8K3apKX9fkBemgo=\r\n=NcVE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"867512cc9730fe0731d626511863b4396ba87d4d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220803_1659510963508_0.5819101296368772","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220804":{"name":"typescript","version":"4.8.0-dev.20220804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220804","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0db1a45ccb71ce1c298750d8a60bd9383d3d5ddb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220804.tgz","fileCount":188,"integrity":"sha512-N5tKzl5WE31E6YHL3nlYls2zCxkCfax3gb3zKKcrRJXEzfPRFodE0xzkIgGJIshTLQnF/uwiN2Nc8TG50aE9Hg==","signatures":[{"sig":"MEUCIEyXuZHARnzVSF/1caZ7iSaNy2Jnzc2dLm9bWloI1TmhAiEApkFXN03caOyBwyn8x2fjsmkEnl0Ly9lUJ9TzKuu4IKE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67445590,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi63MGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpOtg//X+h40iW11XPJ/USANAFfKiYa+HmrF7GTQFSSmX5E9VYXxR5l\r\n29zGIlbgdB14h7xQBfvu2zAin4n278sxCGpOrw1PXUrE6oy53sGrg2knMKXF\r\n0CGlJITsbBXBafzHPh3j3iAmD2lZsn/UJQ+dZQe8+U3EaUmlpnEDsaPikANj\r\nZxBxqRnbARERLokKf2QyGS5Z6uBjhMJqJFU1BVlu8shJeeC+I249Ka3OlxVm\r\nnThPYdGbdPcjqPL/Q9fXBugk/4+5lKMjNCGqvznugaOEAM4JrX9zroaVMOZw\r\njwWOi8tElNzA1ug7hbvK6QH6cLDKaI2PFAW4SSV9fJDf0zDOrTNhcSzo47r+\r\nYwQtsR+TpY0W5E7a1PIFGvlL5UB099u7ZmizUDP07Dhg1mhBOW+DiaGW/mTT\r\nqjb+6uxohvnz3k78n2/tYA4lkTlWTY2KbtOU3X89Iqsrhi1fy5fSd+Zffdao\r\nsIH6UK2XKCXpzAvu7gJyE0SvLFFYs7ZbcIsfJYTsRSD20B46ccNQvMioWtEb\r\nfCKGTJYE7e5lFTgDAbAyYmsC116my0i6WlJVLnGA2/EGDEP4nU91squoqb3k\r\n9wDV0PVGaRcbYlbGZb7gqCNUslYTRsR+Rh2Ml6DWL8sVgfAEAdJMcMTg8y7P\r\nXWerg1w9wZLjJKmVKs99p7wyVw51kK9bsOI=\r\n=/h8X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9499b6eb8ecc556776831400bd0e10fd263e0038","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220804_1659597573783_0.7004649914331404","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220805":{"name":"typescript","version":"4.8.0-dev.20220805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220805","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f395b90cec265907c4bd1e07b0a7100d1aae5a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220805.tgz","fileCount":188,"integrity":"sha512-br4hTSU5UU+VnCdEDXgv4jeQduwNxNiYv30KW4cXU7W3fCxB8/UDd2OCqciN8H5pF//Lzo0clJBFHXbhrLx3eA==","signatures":[{"sig":"MEUCIC8oa6W8PzMBlKKwbtMawpiSSfTbnd+dYl0hfEXHetT9AiEA+QUk77swrBGPQ8KhQnWYNYLKd2lbEwosR/zcGAnc1ic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67486268,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7MOPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKUxAAnQMwIjCn1clb9OCFAkXexwpl6eqNK/3t0Y/0eOOq5slRMUtE\r\nGUtFp0288DmYZNlf0+cOOOxUF2aRKd/ni7cQzXqaiAvIIZBCDalg9LdG6+0Z\r\nChix6DvkllXoa3CMcwURctGbIy6d7vNHez+lpZ6rM0Jqd11xxtcbUdjvO9C7\r\n0gJs3W2uizS55tVs9yhBYQxpbk8XotA4XMNHY4NQYAYZkRFiBTDlS1/zCtBN\r\nSuxu8BKJ7qD3Urk7jYfVBcAzYFNovkGMLbmUjJqPgV9cjZBvkToKT73jDyos\r\nLMAk7wDa8FKnUDcx/w6p7zEIHND31SayJHNcBmWi3Y3PsC0Lp3TScfhweMJm\r\nPIo/PF9d9WI75TznFPI01mdoGBU8njhdtqrT7goFZjyaTKHedEuss30AvMUL\r\nUaMw0idlX+6JH2gdK2O3otVoEWaBr8odfRE+6MBOVAIFGkqZKO0+LtEtyb0Z\r\nSEaSSvlXYoDicVMk/SrHx8W5cQ2aly/u4zMxy3z38DCXozAeO/FNz+yeVc0i\r\nR+paOql3f/6gr/rMblowXMy6aAtJ2jF+ZHs9kZ06odXt1a18Ar5Nl1YK/S1Y\r\nTyPViozgeQfLsoYsR1X4nUK4Su00wKt+ff9sNp+sKahFPvesO31VjIm2+IM7\r\nk1AU0vBnegZAN64PKBcCcIpPtZzyNIXjgPw=\r\n=/+f+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5c1abd300d39e81f6a5eed9a6eb66a3cff45ea46","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220805_1659683727041_0.8133466091561761","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220806":{"name":"typescript","version":"4.8.0-dev.20220806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220806","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"56aa600a120a64d6ff3c81cfec1f0fb4072ed0d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220806.tgz","fileCount":188,"integrity":"sha512-2056Nd/YIT7diqjcGhk4ACI4Z8avTsJP59tKFp4vpopZhvkUmbTxk2TB6r1En1FnurMUCmzaMXa/rcO1VDDp8Q==","signatures":[{"sig":"MEUCIHNZ71ft2DLShY00+BoURrzKMaq4iim/wMVavApnS2m4AiEA4CTNueSINvjadYrwDYJ3koJsdHJ5vSULKGYQW+eHdRQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67490470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi7hVPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqT2w/+KgZfgryb6odOqpybZtB0aMiccGzvxFlvLb5bCEKjYHY2qLMV\r\nJLXM/k6LQY1+PoKMs3gjy/Bx7UnfFm7u7dC2yTI4lRsVHmijtd+a7Qg/c6WL\r\nLPTx4gdYCoU4vHJqQFBkVKrzKadwWOHQLLr4DaV2b+0e5bzxXHdzPZvntkga\r\nQcVohckZxLBdaAlpRdhDpQg5/0kAMgN8o61/vm+g2mmj64Xy9RY+T8wNUcv/\r\nTjOFdoYuaVWMHoP1MR0Yjg8iw4YfhXiHvQBmuH+ijGyQfpREdGKrTcZqN31f\r\n7OwNOoFfsFVVSHOholM0du/mHaLqSwWo0pzTmwwjqoQK79SmrWPUhtg/Gy1s\r\n/lX+KDDEA3AbZm8ktwHVcs6SUW5betdBNy8yzV6a3o7LtEcjEaR2avJCBqD4\r\nobTamVFGf49IlhqdLRUpIhVABkYHGO4qI3rDghacakH+VL41GYhv539BrJ16\r\nnT/ktBGz/ELC6A5sIh8AKfpvoDo/TOFDpYoQe0VYOByGcru4ZWCQpWPUIQUN\r\n+1rT9UdWw+fOgVhgd54cSYoFDjqKKAJV7mKkNQ9avxQenQ9CZi1Z9mTZiA0v\r\n1ry34sJuT7fYHyyROVdT/XGZsvwEnkEUG/OEwEg2vOgtaEuLwlsq6Xy8aiPU\r\nqxdJcM0WwK25VAonO9Lz/Sjl5pu0BEP8pOI=\r\n=a+il\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"96fe0396a48aa5ae0eed42c5c16b7b4d807acf9d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220806_1659770190857_0.7654246455441167","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220807":{"name":"typescript","version":"4.8.0-dev.20220807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220807","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8827558040e0a80197ec19f0e653d619d93c358f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220807.tgz","fileCount":188,"integrity":"sha512-IKavUdg6DoklEaP1ikTPRa4i+BgFgWqt0IqttrDGADpSoqwvMlVFo8A24996T58PZI/GGKT5j3og/dLPo/oIPg==","signatures":[{"sig":"MEUCIFFdTtuTH6JWf00V0D6ByBMg1jSWVG5qCKzfn2WhSB8PAiEAjzTmlP5Xm6O84AKarm8a6P8t+AWuzGZlnlQm6rKgl1Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67490470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi72aiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpaPA//SnOvePFB6Qqh+5KRiUIm+zONBAMq0erGLxl4r5PfRVrSMDrd\r\nBBA06NBx/xYosSVGNMRe1RaXcL6NvpNMastR88v+HOYf6GMjP8I1ryHrA9d3\r\nkI35UcUkZP9HcIOSaFbYsLEGDDonTMW9Ii9Tdk0SeC1iRzay3MKS7bClHgxx\r\nb9QkO2HHjZzpN07Muvu85dbm1UB6HbsBMCxLwVmWM31+PlHW21aVFhbBz6E9\r\nxUZ2CNNhM2cLsP/Xl1Cm72T+HXHtMB+EJkMh+gleXql2x/TUMVFDcspIy3fq\r\nE/uMnkNxpR2ArOXZXRNT9MYmOcB66pdkUFbF+1Pj1XqMEa0/NFHSO0shKX5T\r\no23b8KpmsLfwYeYTSfu6ePnNqL9cLb5fObmW7kGYBG2322UHyUITKN6KpT4P\r\nVi2sLj1xaDlKL3PbKqyggcfxabxsFopuVlsaAFrhGAz5wEoXMRCXGpDo0fdU\r\nLberYiig8qILWZHvHzfybmcgzzfZgZy067DGVXOrPT4iCd5rOISmzWDOFUMF\r\nKDh8jysccfd6ZdnffSU0wNxpy42vq2+3jbXdLuKH82pZgCrLpzaM6r6CQQhV\r\nHKe3sWHUWlBtr7j8TK+703G2q3h8bdE2ZRUVvaWfq0HGUU6wOVtren4nlvhC\r\nQ+guLzwLnNwAUTVOGkH9DhqBnidwfMxmrJE=\r\n=YmQD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7e4259121b8a65c67574f32224c29b199436f9fe","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220807_1659856546014_0.33581819533520507","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220808":{"name":"typescript","version":"4.8.0-dev.20220808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220808","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cff17ca0c513c5069311e855a9c5c751065042ba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220808.tgz","fileCount":188,"integrity":"sha512-afg7R/XsBD3mkS0orQD4Vy3dxHEijC0uqp46+i51lf5yfvvQRuhLQDY2F/OMOxD0U1ZwP3pliGs2U4UrqNHJ6g==","signatures":[{"sig":"MEUCIQD30K45XZXstVuP36vwlNqt1awBajJuuKiHE9MIpHV7+AIgYogNlsIcaxx0warKf7bWdbjRxue2+8Io8QmszaHm5iI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67504782,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8Lh+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqjuQ//Xut2hDBOW5r9KFafpN76DPfu9WYEvRoDHJ+Xo6Iz44GJzXE/\r\n4khytdyd+i05hr8It3ENiZBjFWXDmadZ9FcrmG8/51wlBcbzDPNHLadHiMHD\r\nteXIFUSDP7re1rjuBWpkxXTIrQQCs/HQyjfihbJpRbiNjH8hpae0mOgCPWYN\r\nCPS4QvSHztlrU2kOSeMY59mJLAZL5KhT3bCRGsqo9rXc0hbk2DpH5RkHbp/I\r\nb+PGAbCqF2hJDPdEqGP4AkgY0pTHwH3d+IBMpNUWg9n+SQT3flAM3bY1OGPZ\r\n0tegwHAkmIWvqujnp2RwElXz+r+ZlpQEPdhjl44n1pQtZjyCOSXsUuuJDWf4\r\nwh2H7VW0orKdv44wjJC5cppPdN89mWx/2FOtsPPZuh8oe5HJg1fVyJvfO5p/\r\nTCYaYudym09/GJAiwwP9kxocV5BXMBwu9rg8yB9PcHrVN5b3w06gOcSluKyb\r\nFP4gNl2OTp5V1jtS26/msXgIdFQ1B5/X9Y1OHjYj72HrXSaGhz2nsfHFIiyB\r\nflHHjpGNiWEuNtuO5fSTvZuXL4BmEZWqp71Bv2Cr14d+t0U3v+qIPagklq8h\r\nro4C+XOP8ZCAkWv0kTR54O3QxE3AdiLvyQDeKsESH8FqZJbV15vTRyExAwg7\r\nqDs1nJBrfTZaMJOo6bmhpiOVPSBqwSr+pQ4=\r\n=Qs+n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4a98087e25595ebd5469278c76880a60a5c0302d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220808_1659943038118_0.6827448098393287","host":"s3://npm-registry-packages"}},"4.8.0-dev.20220809":{"name":"typescript","version":"4.8.0-dev.20220809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.0-dev.20220809","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cdc14320dc055e46c4b3785d540d193679c3178b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.0-dev.20220809.tgz","fileCount":188,"integrity":"sha512-MfDvCrf/GqKM/GwLuhs2ykgauNUg2TCR5YzIDj+b2scDwRE9XCRcgQAWh29omMmGFIAhP91QXKt+aXV0hchkxw==","signatures":[{"sig":"MEYCIQCmOXyB94ZJgudcOA/AZsZRSqww6UqEWZDttTvOrzu7QQIhAOli5kbeqreiH5r7gTt19QN88lP22xeweFBqPy/8iR3H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67514599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8gsbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpqgg//SUIvkD8eI48liWsm1qj6/+WANrKtLostjyzwm94T8j0Wcb9H\r\nmIJu5qrFihItO+pJbnbOVT0UTMmJctthP9sKZ+uo0RDO0DG7nmjcs7FGjN9c\r\n297eUXQEdRXtpzUt6lfrLuHS0EQqqnU/1lS1rub19z35k8vd+gWN62lFW6JC\r\nIacjRkPGp7X/lLxLwqmkZUKjXTBtYz7JHtEW2uhOEBtHIYg9HTB+Joo08jvj\r\nj9/wz2gg1EkYXsz1sNVsZLGDvatUsUsR7sWd4AkYC+bhmLnnKs/05OhGq3is\r\njiDSI3LFSqTN77f83dYcHrZy1C1thUOah3umhTGvugvQ28wPyh5/N+odWd51\r\nabl/z+FVWBOxL6RXYEGAfKybj0eZvJq7hmClviI2pBVL+yUwAWVYc8VX2q7/\r\ni6s0n+uNRQz4D2VsA9EzRCHPzh5CiCUBdaaWdif3htl8uZUZy7oNhPHdvRom\r\nlIhMB+dpGZ+xqE4/qAiOSH/8MpXka+AVq9oIS/+1g2+hKAEY8rSjz9WvsJkL\r\nyhRyIT1BVJhXDvLC+GSc/aHdUoSYQfT/URUK0LGyioNaR5kFqw+aWnI6Kd0X\r\niJuKyBAEJApmFCs1K/zzunsca8VBTP5pkfUFtzNpr2wseQYuc27RJVQX3Hvk\r\nE/3/Jd6DXn7xyshd48ous1VyhCwHZeoQPwQ=\r\n=oHtx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6d163dc736f59aeacc94b21ec2e432a730396704","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.0-dev.20220809_1660029722891_0.13001274706018195","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220811":{"name":"typescript","version":"4.9.0-dev.20220811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220811","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0288fb9a8779d31a72761faa889068a69020825e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220811.tgz","fileCount":188,"integrity":"sha512-lkZioCre43Re1dP8vyGO1T/opJ6F28pGHb3L96NOuziyPDhcHkSluRc7YQ17qrSHPaL0eyEyXXgvYJ+lNoO7yQ==","signatures":[{"sig":"MEUCIQCjuIBZZvlYoPdRbQrBQCo0WLPsoSdTZPIea3RAjG+6wwIgDaYgvxtVFvTU6RWXW7yoQzHRb2hsyfcTaljqdcnIlsE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67533062,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9Kx8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmql1A/+Pd+j79E45K75KXJJ5UGvQsiDgil8BRT7KUrxM3lySn3H5vQN\r\nWjomqVF5RGmpZRB2hWONKijUv2r8yb4ELw9MwbS6sZbrxQC87mTTJe7F9HJS\r\nb4WfD+mwJ9D8BC7T3LWHjS6/shTb+8dKICFKT9SLJNZDEKRLx8HtRqChEIpU\r\nXvFruTRICWnpxulzj3YyHYJ7u1OTWzFRFfld4H4PYeOKoE3ddPdgWf9+z7MB\r\nMuOHm59ADUctu2I8+oxzwzeZJAWH/+MYpLomqqSNwmwnos6e/3bZxoMTGYST\r\ndzDTCgWEyceQjz3SdGQhuXMV2atxugQZQHn4393o0BP579bvVxLEym8zBgdS\r\n1KvM7C3c4yJldmDWnp+l0+A2+mubj259jGoAHyMYyhyQT9cc/ArWCrx2h577\r\nAxp/3HItXlmVDMGoCOvG1KnojVMeHIduFknnx8H0uGtcAruN6xtRzVMerYc2\r\nmK7hv3QIPVsEseFIP83O/35eP+ntciYA85iirOoKGE3aKZIU2XFbU57Fsihf\r\nQ+suGFb0GRETl6AqE3W9ehq3AgZNU9A1i0d0WlFeRBGoK0c1P3PWw5KgOuGo\r\nEHCcJDkr++XGc8y8mHNyjrnH0YG3CaxtQTQXBLvrdr/6OoHu31z2CNzinwS1\r\nPvBOIPBM0VhCUc9cujCSh4Ol5PwmMZZq8V0=\r\n=wUnl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9189e42b1c8b1a91906a245a24697da5e0c11a08","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220811_1660202108505_0.3914402162257524","host":"s3://npm-registry-packages"}},"4.8.1-rc":{"name":"typescript","version":"4.8.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2baff2b14b916f06a97effbfcf59e46bab93e48a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.1-rc.tgz","fileCount":188,"integrity":"sha512-ZoXadPUeEe1XOZe6CHG/QHZ6IFeRjrfzkpraRi9HOpGH0UOG/WaUrKvtSwDFigG8GuDA4zsDQHEZyqhmlCIyEw==","signatures":[{"sig":"MEQCIGpdAAq1vpHLU3fOShK0g63va4zGLZcjUdXVCRfYGdFuAiB4OPlkNECQ4tZsuYpdYMFj512KM/vBMEF5Hxqobf0pmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68752771,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9UuvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqUUA/5AZGGJez3HoeUCuMLxprRNclgr6YKMg1zJmgWgZsUytvfhOM6\r\nITAu+QpRbM4z1j9oMar+bxv7x8n18efvEoP2LOo4xzqdZgqvbeVu1ZVAEfzv\r\n6CEJQ5hql/vkatfXgsxXO5rZ3M7xWBhzKrmYNr1qwet9NdvgeUjAKfj6CAbr\r\nkqjayrSrcJgu7yOLRRqZbPgMo13toOFCp0rC79O1kj5NuiK11EAKudeJq0c/\r\n+PBunjHbKuKQliCdO8eqFBpJ9TmdEl7ia4QREH0LQi+kiI1JrQRQW4/1eHcs\r\nqx9kK9lAtXMAye6r1TZw01NuBlooRrQyBYjk6Igw+p6ZaMEQE8T+Gde7ATIX\r\nHd/0qz2sONJp1cZeRekcypvYQM2I0G745fkPeS90s2/6FluHYJ2jAfSys+gr\r\nguKosoTPlvNx6roFx6mdb8UXkW/eMxOm/2cyCE+tkVhkouobS7/3JuHwVSFi\r\nLfVxUHOib9zi+BrlIoMDM5qm1fQ/Ums1TLxTKh6ySviYyOTlmKTn9m4ARTdU\r\nnSIsXCJ37G3Lfwaq+ffllYT+2z/gwXifBDJbXDOeu5ysB1OBRlW7qyka1Sq9\r\n182V157GsKne1jUreCcusO6qywC2oAaeW0QoUpPs//eVHFxUgKDgX6omtnQl\r\nL30oAQuIvep/Z45vJRX61+wMX63/033rE1c=\r\n=G4CP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-ZoXadPUeEe1XOZe6CHG/QHZ6IFeRjrfzkpraRi9HOpGH0UOG/WaUrKvtSwDFigG8GuDA4zsDQHEZyqhmlCIyEw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.1-rc_1660242861871_0.423967972795126","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220812":{"name":"typescript","version":"4.9.0-dev.20220812","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220812","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cb0c84ce97786c3696f1961a810bb44af0f2f4af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220812.tgz","fileCount":188,"integrity":"sha512-Rx+XQMKra4nR6w4+EiFoips3VCOWAlVKiWUbTpaFOAGb74h1pxWbxXmqpDOe/g3KSKMdYmN4dr7umrglumNAdw==","signatures":[{"sig":"MEQCIB4QHRIr6Zs9QPiGOFrMhYckskdxFa/+ZuhIQF20rwCsAiB5xOg4vIpgpErZqA7Yb9F+vov57EpF0HoXkWKX9XxhQQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67560516,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9f5EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsZRAAjVTBTCQL9cf2aZ6etLHibk9xpPE3rtHEK29YH8esumRAJQYc\r\neJMZVeTtpifBBBxc25cpGAa5/KHWc2sOrcQRajmeYJSE308RpSia6weOCCAa\r\nedHDCRj7XTSPQuSQcra45OvTFoffSOMSFLVXrQAVhOrqoFxwAmGce9j2msWS\r\ni7WMuhkWN+/TeVY5SFYWOj2DcNCR6LHasBxHlNDiqxoYfMIp35jAEmnIk1mo\r\ncBDTugqlKIT6sBjreIvENIQ7YvVeUwtczCqfuMiHlceU3NqkK+FA4a1YemuT\r\nKbO6DEfdpJDQXZwiJ32ZRUP+4MuEeZYVxAwP9Fk9i8H1nd5nEbdsZg6RpvP4\r\nngBosC5t+ER7kjoW+8cFi1MS9oEYtQHXJNlDeRTINN0R+3ZxBzvVGtf3UJv6\r\nqZVvJi1cCZ9mUs6jkATcG511k+rQvBJg9y6omYmdpWI5lv+hNWrtbE9lPjSr\r\njyPMPGTIZ/KffxGfHXjXMeSe8PCy6snk7AdD4LlZtFWFR7H7FGY2SqgxpXFR\r\nRrlgUJsfiNU9DpGUOKW7B9re5fu1vh3fWVX0gmqAzSyQeUI1bmEyksUAusUN\r\nQdr9ywZzNMrpsjU6fcCfMsbiz6UdcdoymF/yPiEYN8RZ5w/fWRd591OM6ucr\r\nL6kTkrUub9KVkZGEE3ldDlFgCzHexoHbEWQ=\r\n=pSSR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8783da8726a5c40e4daea4a4c8a9344a6c34f435","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220812_1660288579968_0.44804986485276643","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220813":{"name":"typescript","version":"4.9.0-dev.20220813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220813","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e51a29d776e901369eb15944606bb7f5caa39f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220813.tgz","fileCount":188,"integrity":"sha512-MmLVLv/1L3eOso3PBCPVuYWhnKnBouvO+tBC6Xla27Rl2DulNzC09uPxFHofzAC+Yf5cD/6Lirs0Zi8Iw9KCpQ==","signatures":[{"sig":"MEUCICxlCof3UMLSSzyHHRstdQImeSo2yEqL0FttEuofJK6YAiEA62x9i8TkE+ZrYwsHw35l0VSxpK/85JVC/UHPNh+MBdg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67553152,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9098ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoIxA//RsvuY49SK1bbhWmf61zgt01otxkzhPtxJU4kKxCoFE0Z+qF7\r\n3guny3EG2Wdspv9xnyDvgf1fZlZm8PzW5W5u/H57Ylf1AAfxNbs5R7UJFzXB\r\ndkGNguhcY0qMHnygbCUCY784Dm9LvLwwd4fTTRd95eCUrS/b5NRPNkwpHnBN\r\nBe6yLX7DcfRhzWvdvH0yMDHpFx3dGhms+iKx1QgOcZL8IF1wqrOlRcR/r4/9\r\nsEsvVUu2MSNOLGls9XzCasXSEfZ9JvX1MC2d2uE0KZ8WStRM9snggowtOEeT\r\nNKLZAiX2ZnREo7SGNEpr8iOwax8/+XAgl+2Ekx3poW787oFarfEILKk6XHz2\r\n8W33r2itKbiEr8YLgGtjuCueM6ZXQ2IXwsj9XFwiTumxcupNp37soVVC1oQh\r\nvkEEUU9N4BoxmHZCDhvlWV3CMo4UU5xYqAM9XnFHuYfX1BnDuWjIJxr/XorX\r\nQ7IJaAjPpIz9nNbzCXG8csLO0BIfOkEPAI5rpTJEJTgo1QbkyuPFx5oh3Vxc\r\n0PY7xu7L3S1mVFkmDrNlnj0wgxcWeMY0eqcEX8tedaNbsvlfZBykZWTZOAjQ\r\nQkbTbsWKLh2tYBsnRbAuJ2GtzlYA91CvUwZqWZ3ITlZh6n4KlPGfdUjFJS2l\r\nMT5KNhiwrLIzV2oeIbcN024wxkS276zgo/g=\r\n=5HIp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"adf26ffa4b00bda9b35b048b4f1083836451463e","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220813_1660374907924_0.8262713690166421","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220814":{"name":"typescript","version":"4.9.0-dev.20220814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220814","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"44f51903db21c2fc6cd3c354d7f6ad16851fb9a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220814.tgz","fileCount":188,"integrity":"sha512-FZgm8bv3+ie0jeisP8VTLLRn280Pl+B0dfJPVcv6ASrUxWGJ0FtUpR4/3dkePpnlh+WBMPW02w6SamSXUO66tw==","signatures":[{"sig":"MEYCIQDIkxPnDa2D1Rjb9L4fvzyzb8mBHxWOkWdaFTQ51GMJlAIhAPcka1ISw90BmSNAtaD8U1F3l1D8r9xsNC0SBKvaUDe2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67555003,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+KEqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoq7Q/+JQ5/L9tEt7OsDsonlKpp1bzwAmQ9hldfqxXvAp5lye1NOmOJ\r\n439VNL134wYqr4tAwH6IDau+naRP0+nHcV/kLAITWvEXK9O1MXz3rkvv0P9M\r\nGJRKS8VQ5oEgArUjuAQVder3HwbbNvl7YXEFeq3bi25mFFmaTEk9jps1bp9P\r\nboLlDtfR5Y1JTXqQEoJnhZ9ptlSxvsozXnfG+KB+xN3D9r6oIaVEvuJ0bOdq\r\n5i7XHyl9p5JsC3cY6K3lHvghm0wDNSML2SLWcJgPViiTINO23IO6CxCJmb+m\r\nkyb+kawXk39209vbbGbxQxb0s/RygM+3iV/aJjtep7C4B07S4RM61szkkc6p\r\nq0A9Ws15PZaWEqRjtOHg1vU4JYauE7BziFfEY6F/0cMxIfD4Gh0Ygghfx01s\r\nP/t9Bz0/x9EQMSSgQD3CFho6/iLF4/SAMv2a8GwnoBuhEQ2qBq+fyyKfjxzh\r\n0Ou1qOqnPEX5OtMqIRZHXH0KA0oXf884GFoNjuxd6evnpRTRWmtE5ivlcsgc\r\nHdT5Y7AjFvAhBLr12kVsZqM+7HlbUn1WVvJmO1H90mrAG1vSYo4sBxV25PBI\r\ngJaiqGnAgMYM7XwRvFVxEGoZGlpWgYFKd6Ap7QMA9CfPj08tJyL25mCv7i7f\r\nCrRV4aGIilEbdvYcu/KNlVNm0z5vjktCY34=\r\n=i5pe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"656d6a57d2a84e34eaa56343c0f7a75b4afca1a0","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220814_1660461354036_0.2387422764501692","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220815":{"name":"typescript","version":"4.9.0-dev.20220815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220815","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b88618b53763f82cdfa2b56703835c6d81658d9e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220815.tgz","fileCount":188,"integrity":"sha512-C4D85FWbZEZhbvGglzsQbIj6S5kIwCVA4X63nDBcBZd8qL47l4LBAG8akqPsQfKEqRVrHvNoRAVI4E5jv8aBqw==","signatures":[{"sig":"MEYCIQCm8y9hzxpfpcZ/wIUZMJEks+8MPcrRmis9yG4iNwXEWgIhAI9XUNERIT/fAXpbFg+tSuK3ddq63pe86pQkz8HPKgOG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67555354,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi+fJxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6lA//X4AFMAmCrez5gQZ9uQAmhCyt+iTaAWsXl5VBENuwIJK/uosG\r\npIYY8YWtBF5eZl4Szw3GTd/BiSzZbj/Krx/cMAdm76IgQt0IxBpaPze+CbXl\r\nwrfa44rM+fNgkp823w43nE8/D1hWgNny69nMrIqHNMMQyJWlgo9Jz1KcgZt+\r\n8i5W7Z/i2UBvD6CbWN0ayixPqRo2S/KZWdnuLBbvbi6dWl7Bg89Zfaetkv5x\r\ncNthIppbuKVIAylGie/BPlo7cNVrg4/6ZwnpUdkAHxiDfKfJUpEtiDNNOwfW\r\nBPd8AIMV30Gx5dfZFpYufEeSRCmuZeuBkTme4zGOq/gH+sxDkKLW/Qrda3nO\r\nahIdRSq6atnSeSZ8WoYsZ2UpG89kuwc5HffWEac1MSVokEGRhxlRJs5FPHo3\r\nQML+Ywm9NC5wfjMEfyqnqCZ6nEEzbOZV1t5CKIR0ATHY4GZv51GMXvV74HUV\r\nrnrrQSJ0lK/t3t1m7ofT90TeTXrqSgF66u6RjUne6ATWMbHa9+DSnTEl1zQO\r\nVedz87dkiO7JNfih3oo/9Vtf73XMXltPlpK8SWa4TJkUSYFrLmT5RBcRMJtU\r\ngEPFWWX3iI1ruO2QaU+Ack4fS4n7HJJS+wyqs3ywECkaSlyCgfiW+1153cJ1\r\nxufyx1VeZvb5gKkXmOq7U/B3VgiYlZ/XlWk=\r\n=EhgY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"03b12a6a45ca0dc043896160fd81060a980352d9","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220815_1660547696806_0.538345029212802","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220816":{"name":"typescript","version":"4.9.0-dev.20220816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220816","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"698b2f4d251aac5d20f67e85bbba60ae0655e017","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220816.tgz","fileCount":188,"integrity":"sha512-jNu5zDQoA3R0z7pQLGIfpeI3Z5L4M0hdDCGhIAp0wlUrAIyo6fdOD2Vx4Cpv/Y4W55RzQB709KKqh4dDbnIssg==","signatures":[{"sig":"MEYCIQCmGOO2CznnWojnsweIQjoFBwFpHytfiOzgn4McZOulSQIhAJHwwTtAl+8KS/h1+8RVZfVZcF+gHtjErULp9KAovnjc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67565034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi++XMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2XA/9FhkTPcvzoBDuOOIwuSJEAqUi6IBDFPoItQ/10AqtVnQJSqj2\r\nCvKfy1xnw/rXwtJdz49oVa0d6pHIzFX+MGe8vwBcHHyPi+9+a4s2ro0234RI\r\n84jq8V4+pMXo1oLbo2Gle45HbU3lLaPE5R6LG6lKAb1R1rUcNcRXqWLsfug7\r\nOrvnp2YmjVEf1u9SbMCRx9gl5mWadIxucMufRViKnxSq6J8fRMT6DzhIHK3s\r\nSv51wxY7j3a6qXf3G+50efs9Lkwyz+5suW37+uBbSQEKAXEgEdMYZZzUI3ms\r\n7aAfZr7bzWW3sOQ+lGCcuP02X7WWdFUTjToC4U59lmD9HXcSA9juU7OKEKZo\r\n92EpPzmj1c6WQwyI6BTy3Wt6nBrKlfZ6/8l6CtRvNa9ZXiVO37I/KF8A6KsI\r\n9ki8GZ9CeC9leNdEOdCBglY0ZIFg6UPwV/32Lb/mjkl7mcnMcEqgiAvTbMlM\r\nQj1Bm/Ljndt//C5EObqFWDTbKDuCFr4PKYOhGaykpOWdnCaD62cw9z9+F/ZT\r\nnC0AFtKUlEGMXzBs9/L5EmnXIwI7UDVvI2JjvNrkXJMR2OEPZIGd0VkWD8qa\r\nVPKPQ9I6EZcSQDFNRFg3pJSRe8D8cz2Uca7C5qh2ci/wuyzt48DiqfOm4k2a\r\n6Z0lacFG7WEusdEXUDLzSaAR7HrraehNE9w=\r\n=l6+7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3b80ddca212959ae5dcf2f48704be627283c6468","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220816_1660675532326_0.3266737106587385","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220817":{"name":"typescript","version":"4.9.0-dev.20220817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220817","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"35b529726f6cea423065c9ef4a5378e5f0996c91","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220817.tgz","fileCount":188,"integrity":"sha512-Au+zM0t9oKRq6WF9Ev1WfgGfV7eB+EinOigiR5dTR9DFd0gPZhClNQkQCqwW+qbwJ4hSGKkhZ43wxJYpsroVlA==","signatures":[{"sig":"MEUCIGhBYHX54tg/RFuTlR2YeYEH6xDrKYhFzkev7bxgn2juAiEAxFR9WNmVKgYOi+8EpFyix/6vZ7GFTNCUAwaLtw8AtGo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67565034,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/JZNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqjFA//Qxpz1OAEAVKF6ff4ka1f1YX+9y9akMJbxl9KhEyOaIAlc0AR\r\nxUcUYgm3F+0HHyHeawEvXEP9yLeh+qgfUT2uV/jcqtvnNcXb637cPMJZyNgL\r\nZkhTqrQkn/neo8Tq17irHZ0eGKiaqcq2mMOMMQW4Fq3EzgSQ6SGAHGvur5RM\r\nuy0f1SUfSfNWIdJrFmBoyqE+K55skS+r+tMs4P77LaTs3Ttn0Cdw94+LkX3h\r\nYv/Vp9xU6Nudotp4huuAv+JDecLpDSsRfmAzVRBNP34u1buRW89CPKIJehsQ\r\nQAe07uQXRrPU3Wh18NQVc7Q3JkjuQX4hAxDZfkGCI+Mxzj5ZIIo39BrlKUxb\r\n+tV96pLbXwZ9g/g6X6x2UsfhPM6XkTPXMKD03yUv6C4tNjeFFGfYc22qVXmv\r\nl1loJ97gwk9mvkit3VIP8exwyy9KijEVLYykhwXUsQc1fr/CyV4fJUVmR/zk\r\n4Rkkhuf/br8rjW7O5/RYcR15wFDG+jLr/aPIErHBeVrQozQSKxJPZvd3Qt/L\r\nNo4xmVLAiF7eSRw1YZYrox/yRpfyLbOSgEwaLCRmvxMzfrRo7mDYZKrZ0kqe\r\ncduLXEds8NQRFc/eRA2iyAosgI7INomiLKt0K1k/0yfcjEJMRgeQEqJ5TlrE\r\npF89YN7dtdSrpNvraCwNAucFGfOa3tc2mt0=\r\n=KKgB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"745da27309c3c7c71f93fb3fc712c20d9e89a46d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220817_1660720716679_0.6589310691529622","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220818":{"name":"typescript","version":"4.9.0-dev.20220818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220818","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a5da3a1ef5043ff7a1e2b0cbed7a8bb1f41c42bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220818.tgz","fileCount":188,"integrity":"sha512-ZZjfmlQjCCLcaeq44pbWI72eNdOzLraKJfPGRu8P7D1zuiiYz9aU/UQX85TVCCWpZ4Yfwz3SRu6Ejw0EK+224A==","signatures":[{"sig":"MEUCIF99lfMLMf8pc2M3dgSLi87P+EoAn3dIHpQvFZ+LLMKgAiEA5er3Al4zPsb5dFP3ZeFRYdi1MSGa6rAOJS35Koas9/k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67565074,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/ecuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmobOQ/5AW+ao1W3V1B/JScV6tZC1GoYe9vuLPlkXQryIlWX1gwMGsVV\r\nQmrtvPD30KA29eEcuHZ109SDTlcJUwPDdGAc/+OzIc8jjnokyFffGadCEsed\r\neAccivowSwwT+B1XeOcLrqR2JFhqKQBn8ml5eugrZSlH+4v2R//xp0mj6RGV\r\nnkTFIFg7TVpQTlO84Y165EDGTPfC8G+XWFEMqUQhq26LxyeSB3dj/pJlZdZj\r\nuoYhbwrBQAm8+FH3br9PeCuTH/Pl8V5FNH0DqFTWXTbjtao45jTLUI84jcvj\r\nB8y437DLnj2AuZMeUW92YtrZV+ODC/vWMWO9qO92M8fmcatMApNasAq+0trR\r\nVVitxXmrC/nyvyUg+02bSZQVxHStlPWUJ93TtqrZ7C/S8hFYVw0q182T2Uks\r\nqzaZRho3pFQXJf81yXAVYrBir1loicn7EIKPSXTHZU5srbYWO0qZg/xx+TWK\r\nT4MSmCFQnwCHaQ2gvMwsxR6AHSZTEemNchbBRRhn02fGcEENNMHSLs5kwlXU\r\nSSkds3f4a0TcaBUW0CbYHWm2eS5wS9fi3cAp5L4fFPDAqPjs10awRCzJdMiJ\r\nvYkXzc6HIoZ/iyimXxdEwzvfWnVdlBs4X4Dba7eEnWwLbW3EiXC3O5OxGjLX\r\ncBXfoTZQaK1rw9KHKlsN3PJN558ssfaZddg=\r\n=Db/0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"66d8b959412d48e4ae827429cbcc5f1b8ec52027","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220818_1660806958431_0.2331090928751205","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220819":{"name":"typescript","version":"4.9.0-dev.20220819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220819","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5a8582d5fe8e6ce4f996b5d5b22571201f6ca676","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220819.tgz","fileCount":189,"integrity":"sha512-MFHRQ1r0ZqHeJVsG3Zwz3rlPoJMyvpHfZ6AEwO0zxUamMB5PMmrNnJIj6LlV2p3dVFKgPZrxgLu+kRpvYzGT7A==","signatures":[{"sig":"MEQCICn0iyF359gD44r0i9ozSvRn1EmQ6dIqNO9S6lWu/0sMAiAMwKn2uxPZ2VnLhTnmPYfJ3q0P6tMD1S7a4bf9Y0BUtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67957324,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi/ziEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrB/w/9H2DWjVJmxE4J+vfS9XOzfFv5XqBBP8jM8XaHramaWGoKgjNc\r\n9kfInXYgMiivAGH1apqfO2vaasWd8SUpiMc+uH46ao7iuiNKb+azvfKgaB6o\r\nSh+l2X/4fig2Sc77iPRM8w9FqDdcJCVVEkz+F69pDAYxFy/SzRLX9mRax6vt\r\nJd35egkH+FAHWU0j+CGsPQ7TnEb/kZ24fZqqIHwjfuO5MBbheI20RQTGGB0b\r\n4iTfg6Sx36D2/TADyjk38IOCtyogrWUVznC6lRP4WDHdeWFZC4qN8QmpDeLc\r\n3aK0A1JQbr36GO8dN1oCsRRFXsoleCEqmyD1tAJxFxTwV5Z0WCnYaMcqcl84\r\n8UhI4tGv7ySVB4vZa2cHPaDvBstHrAdAUZ25BWT8AcDKb/BCHCnxuZmOHo3r\r\n+hmU2e7bOyaYWIN2dCGgDBz7drMInBFcNnCjhSxpfA8FCqiEJAarhyCqUlYP\r\nkT/pvg2l5ueyH69LXpiNyMtIwcKWrwt9p3sTstIcCrUNOLgevTQpBQD8sKhr\r\nN0dM10WCqYglbOzxvr3aGOjv6nt2LrnuA5IMuU7f2PgiymlpcwAPol71/y0v\r\ntSln8vPVxiBQgNDC5ydBu6fN72XX3hFrFABzSKJRXvsTZxSS7ttXzMyB7M1T\r\nXXtTMhXd3ohRb/4r0Uxky/zK19stID9DkjY=\r\n=qlJ+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"cb63d461dd8bdc985c17b69dc0f786069176bdc1","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220819_1660893315592_0.017011472364047098","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220820":{"name":"typescript","version":"4.9.0-dev.20220820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220820","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"24bacca27727f163abaee1e774faf05f33b33291","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220820.tgz","fileCount":189,"integrity":"sha512-2BZrCbymSKqBj9IaoF6EXkVpfwLko1fceDKpKxhkcomTjzKMSyuvy7mHl6DyxgwBbGkESYnOHIUz84Tnf/iL2A==","signatures":[{"sig":"MEYCIQCzS5wviViMFWqOmGxMmjUxYJeAK7XBhpql67Pr134KHAIhANh1bwImG+g+/idjzn+gsq1/qg9pfqwa3FUnePruIE77","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67965541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjAIp3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpzSw//crv/8JQiNoPJcAbiogFPt5czttK7FwKepr7EuJ2rLswsQ1me\r\nryCMC66pCQLk4wVbe1gxYdCsJhyVGX2YjqVyEeeQHEhUtBQ1Hezte8UBGfHa\r\nBmzH22j8vTMh/CppNWMhmPAuA9wY6z6Q0DL88rfcoVT1hCQ+u4APErTnWYYb\r\nuPpOteG1ehDu/Yfd37mHVvodQ3XS4jfOi6/+UFoqfk/xwE6OPS/ajGrX0Buh\r\nJ2CVdsU9R0X4ZHvAnYHZ2Slh39Ge/BjhaCbvle5G1qz7aqvCWdBbpHs3S+Lq\r\nreCd67/KR7Af6E5QS9ek1Q33X14XsMw+oR4x6BvgXry4YwBgkS7BxBlvtHot\r\nUguakSbby7Ixs9LiNcLic798lZjC5AuxsIoJjo3p8QYrKND955tKgRgt8KTR\r\nSCKUvV8gEzDoKGiKA2WapEbJPGmEgR4McnRJH1HVmf4YzO9PsrlAXda+21l7\r\nU/2IIggx1peivCLVnd3gc0sQoJ/on+SsXZHQnKCXBkzFiYxI4iYTd7JxUOUE\r\n8AMBB5dEvdWj6lrFuKlOrrnH/0ycPDdzuRmAfAVCvDQoTiN89YLcuurUMgfP\r\nPzJjVwkSTgeVbQOiHxXr80fnmyAHEe4iNdEQK5tsjsv4rAV6AFzBt2CXu35O\r\n0sV9l7bzsoehjVojZg1cppjbzm43AtxzNeI=\r\n=nPQE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"50041bdc7d8f18d863a319df34a16b20355c0fc1","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.7.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220820_1660979831259_0.20117236607967803","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220821":{"name":"typescript","version":"4.9.0-dev.20220821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220821","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ee78d8a5b525be9949a701cac06ca82734716744","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220821.tgz","fileCount":189,"integrity":"sha512-fbyWCHTzhcKE54GF2lajI5h7GrdLUkCEgzqQOT1cf+IPqVwcM9Bk1/d+NjJKrMoroOPztYvEat0b8pxn3+/XJw==","signatures":[{"sig":"MEQCICKV0Pb1FZIztgMI6Ut/plEh/WiMFrMKiBPtxOTPvm/EAiAyxmHCbhivx2govXJfOvC8AxvwRfjjwyS14ItHyPRqjA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67965541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjAdt5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmowwg//Z7rGnyOJxMpI7h0SMVxiVvaohce6WiiaxLxUwe9/CDRmJT18\r\nl1GCqWOaak4dK9wdBag3aLe3gTsfZLxIAQ8s0asngMIqr7XqjqUZAmkbQmiJ\r\nJKBqItnMDdALdCrQbuiMsi62t6b35uxRcb7NiEzPB99x+uGzuK13joeqTsnL\r\nDopdq72zQpYQ8bxSRbxdF5a8XBIur9zHB6gn7KHXn3WpyT/W8qnsodWfEkLF\r\nV+JR0CHWsN3HVCsT2ZZHedzYZU+oYkCxSfqvJnXqYhvdKNQPbCy6aZrdWP8K\r\nEj/dv+lu9Qe1vGrbZwpA0jIsSz6wfr5CdSESs3gE3PukSssHDgduidW76EO/\r\n0F92ZFnKeBZAbTCPEelwesR5jgUc0CPsUSKP/qKpsXaySSDFhNTNxI97Rx94\r\nwAEN6OiWbjC/XgzC8sIsihFQ7yu5UC+ChyAt4xmrQnt6bppyDMuLK2pP/PE1\r\nWgms/sAI5TMfrSa/O6swq9rPEdcHns5vKaqtnbwgzhI2kOfnVCTTXSDYyN/g\r\nMMff6BxBFB9p/hL7+Gq3golC6AKciVOUfK/a1i7tJTvoJLYJeFLRpaaHz3cF\r\nlprLMmv7JePs/aUf5DFjNcu/1rQtZ9E7Fm/NvN8niHNVhQuEejjLvC2yUNs8\r\n2m9FtPlRZy8rU3gg+lU2oNDGPYMuC6TyhB0=\r\n=/YPe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7cab3459d20b34b2f7357b51783703d257b1ce49","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.7.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220821_1661066105139_0.8548946760145997","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220822":{"name":"typescript","version":"4.9.0-dev.20220822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220822","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d6a5557e11ed87cdc844fb457e32a44980925e44","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220822.tgz","fileCount":189,"integrity":"sha512-AOwv5P9FEACID+BXIvdWuP/ZroTJ0YaB6Cl3vP865CP2PC8E3HXuqZwNtbY0ikfCzgSiArprv+rnAAH+6Gkpxw==","signatures":[{"sig":"MEYCIQCLRUBZNbgo4kmfqzUDaIKL0YRwjZuvxm2475jCWZKwQQIhAM/wAZv3YappgvK5LVjGmS77/3sFg37mZyWtObKo6x3L","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68026433,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjAy0lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpvoBAAng/JghxBXef8VHeTC1GtfNKix/qDpu8fQi95phu3IqlMzlo6\r\nCXsRUpx/l9KivLXwklApVCV1dyzuRTg8hIUFXGOyYMuHvLD8DSCGiSGwULpk\r\nJ//+3A+gjY15ns0n/s/2A2swth5M7B8lvO0MbWpcveqDMAdFBYQejt8j0Wmm\r\nCiDiX3Xofr72aMLhXVXnfIXCyQxUBzjUTo93p7mAXvDOnbkEmEIt2fxUOgSP\r\nH7XawJV5JkpALNYE8ctWmnKYPFxcOUQwkrjUJlHoVPC5nBSgHZMjHpHUnkYX\r\nsaBUzg6wA4PVdhgBNy7jpacqa9kZau82QpVLMfbQpbMkDz0t2J3baRCmItKo\r\nMC16LPcsoK9GeH9TRordqKDGFtzxDJqkFtpEdTpO91hGnP2dZ8395/Dr+EdV\r\nvYCBK6U3oKw+b7v/iXR1xh+ofK9TsVpkydpksDopnhtHzArfozx4v3QhsdZN\r\nMdo/rUnaxg2MJdQMHemMUGJEtoV3vm6VOpJsQ5DIeJ9k9ST8MmFUr0RQOzjh\r\n5/kUhhbslrYKFuv1xyaxER/PfVq5uCx1g/sam9rs6zjDjFEEYdM4jlRgykKW\r\n+3BIOzma7AKsRh43mGvzwgKFCwsqagrrxdHCuWO2i5iGOtq+vq2ckGmD7j+G\r\nV2/72pRaJBXC3axSirtAdaXWD2JFFXaPXeA=\r\n=1f8z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3f7ff15b5f04e45caf13de5b514b471f6fac2216","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.11.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.7.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220822_1661152548716_0.4103570749834058","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220823":{"name":"typescript","version":"4.9.0-dev.20220823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220823","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4910a1d9d6d549a781e9a473bfab037b80305319","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220823.tgz","fileCount":188,"integrity":"sha512-8LTaS3Uev9r3Mj6CzXIpr1KQdFD+98bM1Y/tuXUpKGoPWnplMoralGsxflIMa5l6O8P0NPqioDJDsxWeHsxA5A==","signatures":[{"sig":"MEQCICZ6aHO12e/tb93nDZipNTCasz7ow77qSaQy7qaxmdR3AiAOFPy9du1GKcSniEgAvwKjees39dMr1hi71u0tTML35Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67704832,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBH8bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmonqQ//cBILXv0KHKIPPYK/9AR3WkUESD/9PFzOIbXfgUbxjKCUp2L3\r\nQ6/HRIL5vbV+BdmwUmM2IOJ8oXUHMYGLMZuiEyTajS2uSKNFsuS7dTSGvve0\r\ncbDZ9LhSlP6JeUxYOdeCeIUACW624j6s755dah/bTOG/h/Htzze0ARwEtmj0\r\ndb0m71SnwuO6kv+P7wWHNeHK+grnrhEnV2osx9TDdwzb1V13G6IA9wtoYWmE\r\nSTKUfLUPzS5gnqNNqRqMwucHLT4Yh7lC9TFIqH3Mk3BfYa1nWr8Xc8/D6l4v\r\nKj6FVGB635BX/22Rwh8thbULMssuWE+CpZreI7eoaLeb9wfhZGOnYca/6mtG\r\n+J0yVGynoE6NbON4N5wZR00jVQqa1ZtfB9s4LDjZmFjiNEUBggxJZbEVinaW\r\nqJkSGE8WCfkK4V7ip7lK1hk96N7o3MM8f3NXKdTdiCwaOiR5in+zd0t53OJX\r\n7umhcKMXVzXPofQGqWz19ouA5EBOY4KmvCN6LEGH7JiOvFtDhxe3bAxeihWs\r\ngZdwwWwO5OgPjIJxRq0YI2Q4MbJQRCPkoxIvBI3QSjx3HOP5KG7tvzlbd6Hn\r\nd4/xadOB1/2yfoK4iD246Zc0XVWVv7ANUTtK8caqQABXYqWA3eJ9A+g/7fMT\r\nY9Q54DC/6Ea5IsCIiQU80ZmKdVPO7PhuWws=\r\n=W81A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f88117dd2475c981f4a6edd8f28e79413aa85e74","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.7.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220823_1661239067202_0.9310074166049533","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220824":{"name":"typescript","version":"4.9.0-dev.20220824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220824","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ffa21c0005e36d6f2a4398eee5c3c9208bad41e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220824.tgz","fileCount":187,"integrity":"sha512-NsplEHXMgy5v81L3fXRgvitWTjUgIwxZylKWI5Nex06xASPKrhuJOnP0ucEpDpIvDofVoUV6W8N8DzPql58H2A==","signatures":[{"sig":"MEUCIQC1FFixMSaDWaCtUHVlte4evyHyNgaR/KcmL/aLim8iHgIgRaccLx1LL3BsYUtUg/0sFIuquOv77s1U11gf67YT4wI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67704061,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBdF/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo1fQ//a2I/ewoWiZA++s0cXBwA1ozxxn6BYZiJIjVSLKMOFQwmk3Cq\r\n/i5HTrjcihaJXTWDuUUlFVqUl+4P3w6avJq9qDtLw+JuiUoLJICjRjxgN5gq\r\neL7AzQp0tSCsW5A2n2KbSHnzCMlD6M1bhsgLSS5smpEqKCLX2tjgDgqBmPrN\r\nw6KqFjLnC4i6qDKO8YzrJJX2m1L/E5ciC8vEg8pgV4YLBJBNypuknmw1lQCW\r\nZLKrtbPjILVBJEjXfbZxZ/YWMNV0ImO86hFmQqZnBAtU7mpfILSVp2xJOEKE\r\n83YJgCcHnC/wcAVBYqfvLbN2sM6QtYu7IfirbHmBSjvTmKYUZvyfkFt+wjEb\r\nvPpAqtv6UNxOjFRFvFLXjTjPhTJfbvBJ2KKlpwIokSDaUMwFXgd6VaBofXwB\r\nsW/n9qRE19bGak+xDmATKM+dO+Q3edxN5IMEKdsnmr8TqHtp3lPdlFT0hgSu\r\nNRX2jucdUFRcFIsnyAq9//Ssx8yAORCxWiv1mKzM05SGITn3ZMiCNbmUNoju\r\nqvicfSc06EAsIxnKLjExE47WK4l7JDrK4PqWRMBDY0Y2qRNDTQiLpjW4Ljpv\r\nHlca9ukd99MRIYs965bbzRhu+38JJjpz5bG7y1ZehDvQPDfC1XHP+X81rcDE\r\n4ShD1ovdhTjpTvsAnH+TK8UtX5QDDLnQYwM=\r\n=/RMU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1d4fbbb529d183b1e6988447e6744cfa7750b9f6","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.7.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220824_1661325695089_0.1685793303615415","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220825":{"name":"typescript","version":"4.9.0-dev.20220825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220825","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ba3a74c3f3ba9d3dd9a80a5d785549f85018c05","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220825.tgz","fileCount":187,"integrity":"sha512-X6bFdJycFPfp4CC8RqOZkCQauNIayamosrtovm6UlCjez9AKMQ1TQJiwReDybks9TGHR3LegEIvLIMWj+uiHYg==","signatures":[{"sig":"MEQCIBfJu8il2R+0UcMS+A6UiwYRDWpInIjanjz6ExMCOJk2AiBWIjlTfm64CyrgAQBKROvyDH+19AJqkvNvGfYhHks/ZQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":67713385,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjByKWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrqzw/5ANZglOKL1V85570a0rplr/Hn1nDJIWcY6HjqjgNzZT4v0Tgb\r\nFEJb65eHWYlN7UFATDNvDJZQWYRcWAVMw2PyChGnm8M7pgRa6axvkJSkByA7\r\n7wi6yPViCYcAqPk2zIwopELzyujU4/F+Ah7vPjkGYWKp0pagn6R6EepOkQAO\r\nf+9ZTUV3jRTrHKKt5J9jf962TEi+0EJy0Hl4aAQGrjUatLd61XOa3+se2+Xp\r\nW3RK+3ygsEMTI7+k8bmntR0Sb4g7QjK1PBPluW/HfjOaZIhzzdHMLrRTeDdL\r\njvWK752BfJvQBeo9MDDnDAs8wWONsPvs+af1umEZwI7Rq5iqZqtSe0VEeGBV\r\nBTZOMV3ObfyubJgpo3NFdOHt84DVMAR1nYTL8iIoAsq4yNr429/tUO9U6sOc\r\no+8O5Rz72ps+whfqWuROH6O6lQkUtftBPfFQX7am5Fkud/QGHjkAHKE/D2/z\r\nLYJnsL+0wNS7qtcXjZ4F30xFVg74nP9U0OAFysa4/z4IBIyMHPymtFiFBfdb\r\nkRptA/8ZuKHdhriSSWDJXaX6MxRaHtrpkWj8HhPpak+CHl8Usiy3F4eH0cvh\r\nO8yDeKi5k3ZzMvOaD0j/KDixdLa8UYH0aIOIVvDGiQ5tlYgN+PAxc4tZQ5Xr\r\n7zuqyzSOWi35RDSC4VnTy2WG8m+CZCilpcw=\r\n=khC9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c4eb37c8a0d5915d64e3992a91a34724aab19fe6","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.7.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220825_1661411990321_0.1006818204752622","host":"s3://npm-registry-packages"}},"4.8.2":{"name":"typescript","version":"4.8.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e3b33d5ccfb5914e4eeab6699cf208adee3fd790","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.2.tgz","fileCount":188,"integrity":"sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==","signatures":[{"sig":"MEQCIE8OZIsp3fuNH2RsoCLodAbZWF5uGCS9u9t4gLBU0wyfAiAavPwWwzgWj9XGP7/9ptbX0/Ti7rBEAg5za9w0jh1TqQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68746176,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCAAvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqw8Q/+IWdfwYlZ/8e5i6xQhl9ozCRr0dd7xJJPGq4JZ5m4IHFAxI4F\r\n2QFxkwGhVBNJ2cidtYgqo8wOUM3uZz/MjMK6ZKpTGYESJnqbYwGFaA4v1iXe\r\nuVIt/YGj3+7aeMKyUIj/dS7UPlGZGROhUorLMJvXk3uYJFi9IKdvouljk/MR\r\nyEqN9JGxNeEyS1Q+6vivNVThqKeXf8BIyyDgntL3i+o5vdnx+WN1R6IyLH+j\r\n2/QJZASOgU4suE/V2Rx2luKmoSjrZrPXfzEOtB9eBnf8XCqtFdY7oP6EdmX5\r\nVK010OgjY6+5m1lPyVY4b5wM1r8sGBIG4Obm0zQd1LgQZEWfBm5scDFbwISD\r\nt9mjoGP2Lm+oz1EkNXYlo3/jUhq3CpPOwtGBxzd+ITQhGSI9e3XyUEGM+1PD\r\nGZrerfMrlFKKt1ndn8l5FdbEaO+zCasvK//s5Hywm8732DW4D8+Tcsv2XEFp\r\n/yvEQY95vD0gJyxsXx/ZZih8GCAMh9JSpien0AE+4dwyT/PwcwNIpqd7nFX8\r\n/BdDFdYft8Srs7JZXddl5q+nlRJ06lfu7EAEqLFlNbmlDdM3g5lrXRpZvz4/\r\nfdjmC/c+FEZfZyE3wZ753CBxrc1+gq7pbE9FiCypr6G+G+SYxzpneqs6J/ia\r\nT3z9D3duw34JFTjiZAcM9DwhEuXr+aA0bI4=\r\n=ZKdn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-C0I1UsrrDHo2fYI5oaCGbSejwX4ch+9Y5jTQELvovfmFkK3HHSZJB8MSJcWLmCUBzQBchCrZ9rMRV6GuNrvGtw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.2_1661468718886_0.5982708723384946","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220827":{"name":"typescript","version":"4.9.0-dev.20220827","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220827","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1d424f8baa030516c3ba5a0e04276b4f5362ebd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220827.tgz","fileCount":108,"integrity":"sha512-Of9SP0wOOfWGO01cCtTO8YB+KAr+D7I056X/Ne9ZuQtVNUZJ6YT97JM2+IUDtzYgHKpK3WNdTi9XZHDc3mSvLg==","signatures":[{"sig":"MEQCIDcJzgJe6wdSAFssBuNIKNwkiFxXjqiij5u1q1g1/YodAiATAUG9NyoUjRJpie987OK5g51KH9NmJ+RubeepEHxMhw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66323151,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCcR5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoXRhAApKUQosxh7KGwDnBOE3v0bzFVCtM0lDGrqWE0xNfwKADiMUP2\r\nvQhEKT1yqPxWvxTVHhD67q6RXmIFHC0Il9FPbM4Ov1NQDGNEPY5leOVhoPnG\r\nS+W3wLxmbgklPE/nMWgBsrDQWNQnHYMYeDiM61SqHX9lS1Ijix/1LgRtDg5V\r\nzRmazXeIQorEN/uvNZpsPfODYD46TNMwz42rRvnPHRKBkbHAmNcvJW/Gfvj8\r\n+3Hm1Skw+Mv1M1UjSv5TEk8XOskoy9Yl3U3MgId2l8mv6UqMAm7VJxvceI3e\r\nltIUakqSqEZyQGATZ8Rx3fgc0aCUmTD0QBm+Qty6CVZIyk7gF/LMriJ+iOqH\r\nVk1W7+VuMSOT97GcIQ/2IixSW5W6y+Igff23CDZIjqiVGhigBODedL9gjKVD\r\nj1MIN6OU/ygHyU+i2c9o7KEb86RoAndxxUi+FZzbZMtw7WO/yMih5Vj2CBm5\r\nyyPLWLsxgxbTG8iRMmj3i8Zng7DI+5MJjZt7hK8aoyDvFTyXlfQvf/in9osX\r\noWsyQgotauvO8jiw0B34hqIGblORQIv1OrGVSloYDvyyQYZHX3tqmcwxU9f+\r\nWNLUsJPzbeaOoTOXU6r7RvfzZjSPepNZpOu005VVp2cs/3yEhbSIiqI1s1si\r\noVuh0+Skbu2Jho528+NJXhikINz5b2IA86A=\r\n=FswO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8778c1ded3a1955dce1063d72caf4523bec37c90","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220827_1661584505273_0.6755304662283592","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220828":{"name":"typescript","version":"4.9.0-dev.20220828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220828","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7203fc1d9be4582df9a22f97f1560bcba07e9fea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220828.tgz","fileCount":108,"integrity":"sha512-XM4H+zuGTaVi+ZLpLZ6jNTTlE4t1keC6g2e4x3JztjzIHEN/RfV2NncqflIkWD39Fh7qqCckFboFqVcG7M+QuA==","signatures":[{"sig":"MEUCIEvP1Zk1fXdksuSgdwonTexCPHmpSD0cMiNCQVFb5UrpAiEA4K076hjQrzD7TIEeZt7hHUPbP26VauQoWnNEOTFv4eA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66324315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjCxaNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoRMA/9FGdQ2mapsQbTR1BSaT6MfBjsFYmYRST6OHO+55kbJkiECT3h\r\ngGM3M3uobQwq9YcjyEgEvFtQiBv2JQ3rWB5ZzpAHKHAC9h9k6rRhp31H7IQg\r\n+kebCTU8yZupyKvKNT4BFzfxl5dqTiwUe+VeQXKDh5pauL2VY9Z1/gYzc0wK\r\nt05u/+z3Gs0LDujipb6lVUrSdeqGrems+Kc+y/erUZ5pQcL/fNB/EKRT1OeC\r\nLOP2bAW9ai3UHRChTj+z2bDVUKJ7PA39bcmw5lZ6tMUwBMBvv3/448cT+IvY\r\nkoCrXKpmE7+26FE6qZbZ54LiUKelK65eKz9UrqGTK15dMQJBAOLMNNzxfGWd\r\n2T3tvvCmUZrNdV5o6Egn/QFABKATLIh3otfwxUqP0B1Bvj3vhGtSnci9E0xE\r\nagG2CTvfs2wByDT0QlHLOnqKXNsnwoz4Ij03pe1C0WhviDW2AIESrkG6SpO8\r\nxJdVaqB/+APFJWutRaaax/D0HwTVgCI5aJoZSQ28xYpu3kHNcINS2Iwiw46n\r\ngFUj7+xjXOgzIHe+feCvXGg+deq7fh2DWVTooVi3X3DX8k18lzWWbjGVtefD\r\nP/+Hk/ki3kKem/8CIcWLxAjUVyAiJenF08xeTFUaSw9QjpcjYPWy66o4l/i7\r\nLXG8LFckr+gLjnKMRwbH0iGl5DHM9VggoYQ=\r\n=Huj+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6faa291b453987192d996517b4376b14980b25c4","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220828_1661671052869_0.9828045611891205","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220829":{"name":"typescript","version":"4.9.0-dev.20220829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220829","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c188b963f9bf81466090f25beb82b98590f7897","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220829.tgz","fileCount":108,"integrity":"sha512-JPUwN18SBzfknl8eLExxWrNo8H98PrZMQdNTXRFYlQFv6qg56e3H/gaJn8Bmo2xz6L1vADwzbMHIp4PAWjskQw==","signatures":[{"sig":"MEQCICg+4gYOYxH7bW2bmWNCJw9n8AMKCUeyapF5zA6n6My3AiAzJVFfkk3jSgoM1/VfDo/xswy/mlvATP6wYkr7MzijiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66328420,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDGkBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp1xw//eZPvJJhFJXxTwAPsgv9tPr7COotXVy8IhVkLSatIlc2+3bhT\r\n1HPrYmevD/Yy/700DAkTSV5OH7tsdB9TTD74jbFgKmE8Hk5gwBnwQTLtbciQ\r\nx3Ggh0gCp5EXOX7Oo79F+1n2n3U9hXRM9woQaYWNCFUABJz3STD8UBUXeEUb\r\ni4PAV03HXhgvPyFN1nh1SqT9vKARWny2WF8e/4/StQkWNaiabX2C5uHGf+5B\r\ngpofSehII8zK4ms3DkM0I33t/ugyLHtEoXCpzsXIE/fG1QFUaUa0TCfLBsXf\r\nwfor1G6M8pu4NigKAU81mLgdCj6nqMMS8WgBnkf0gUFk7H3dm3dNxtxbk/If\r\nwlHebMExYWxqIVonTpyxa76A3smF1VkQkJSOmM/CWuirTxPPeEpFz8+pBodZ\r\nmvMJpsK4VNx0FTLhGTvwSjenJf92akdX7/aXKf3kvbHhGLUTdK/Eg6e8NAAN\r\npyifEGbDwdPreoZqk5/onI87Tgz54MYphdnhWqpvW0+JlNoSQG5ePmgDWWQ7\r\n8qsmKpH9hHXZ2UD+QjLXidTR88LwU4yzHopIRaRfj7HMkKKHHiN+9jE4zizE\r\noHue1OBTIX48bcT3MQYx1r/v/2IwH6i/5MJgPij6EFuyENNxGt4sFe66uY3n\r\nYvyX4Xa2LuV3iIGSVv6wihtNkdf5pMquQcw=\r\n=H5dR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"29cbfe9a2504cfae30bae938bdb2be6081ccc5c8","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220829_1661757697229_0.33276153986204227","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220830":{"name":"typescript","version":"4.9.0-dev.20220830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220830","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"254c9068b7186708e09d9069d7c0ee3ae4e0d00f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220830.tgz","fileCount":108,"integrity":"sha512-DVMaPFszCw9wFZcTYcFiksny0rUttUJpIvtwCD3ynKYepnX1OCTHwLwsAGtETxi6AuutJ5pSRn2LoAILjzYwvw==","signatures":[{"sig":"MEQCIFDErfsTRUcWL5AZKBcYDigyj8beYQ1HEjX+8ktd4w0iAiAe6tKh/lBnyfpdWIXcYW+WeZoIYLPKYXvNz2OftOwVeQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66329337,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDbvxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpMhg//cz+dPsybq/gtoiAMu7G0W0TxKjMGztlQ3PJAjxqsn51tPSth\r\nepJfZ4h1p6N9Nx7aN6Hy7dP0xgkhhsZa2f3TK0s1FrotXbU2IuA0OQfj9Rbb\r\nCWAFugPfApJghamUaCcidF87g/cLtats7xl/jYLIldpN4ehU8SOiZGQ+Kd+0\r\nQ1emCfkXdxebGxNg8doQ2CC9MMA8WQPfqoh5RKJS2LgPGB/bWcsBrBHinnl3\r\ny7pFr6MckVom2Bv1JjxbRk8DHsTHrF6TikEHKCw65Bt4HoJ8hqO2huXaAvaQ\r\nw+bDERNvVDJ4X276xBnWdDOQaE17KS3VzQvSu0NkL8cZk6P/YZvYizta04Bx\r\nWZm8s7l3ltRqdXm7slcKqPF2RcpBATOrweAubFhamPzvMQYZDkvjRPUYvFlO\r\nzIzXQRaHplGW/TWxn9kLpRiJ6V8//irsci6yXacDpvfk4hMcOYrInRiggJoJ\r\nSv0+bUDSrURA5Y1hZuC2ln6ZveTO0UC8qduJnduBnAK9hG0l6z+pxcRGnamT\r\nTJ65jAi4KNH0nUMsixz1QFHqC0/1A6N3oy+jns5OisK+VI8/UpHf/AlmRwCC\r\nys/W6Z3dZgN+Y4JGXAVxY5kRe8E4Eum0EAfFD4YGa10xeW84B+Kc1X68hHc8\r\n/5OuA4yKcxsCd+3dma62aF9573Wf+EyZttU=\r\n=NfUb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8b482b513d87c6fcda8ece18b99f8a01cff5c605","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220830_1661844464846_0.1756763682881981","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220831":{"name":"typescript","version":"4.9.0-dev.20220831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220831","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cef22c36e17fec691cc60dca35de8c2d97f09e61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220831.tgz","fileCount":108,"integrity":"sha512-FXVLQI/P9R7uT/I0ODGrIPmV9uDlQXufoe+RUcvZOvTtLzk2Kd1H9rr+e3l6hiSho6ikrnvews2LWF5AulwO/w==","signatures":[{"sig":"MEUCIGmF1pnIBmP8Cz66jEw3kBQNJI4Ntivf+QwnzBFZFLKjAiEA0fFOuXA2ZrxvMuX7n/703H0zveJkX261lkXLwE+51kg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66327524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjDw2EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFohAAi0x5vQIrU/YFmSbW02/lwWefHLpSqvF3eG/XuJ8/YbCGYGGJ\r\nU67WnW/wZ4hqn/3EF2SLcTnLmFiW9ssWKDnu0LjtcnL4Sit7xZxmn1eDiOz2\r\nmQAHgObDjau4madWm9CY+CbLbOgeAAqpG1QejYcoubU7iLHMn6mAIMFw+ftb\r\nfdoD5wJRRDuwuxA05fW4RKAUnr09pWYsMv1CdMAk2B+22FF2i2MIZd8AMNa4\r\nzXObzOz/3MXqYpDXGcMnDp+x3C+Zve7MSl3ofIlQPLCBekn6vM/xrHbVxSb6\r\nMvU4/+yxIu/Iy692GScLYbXzcmTbUCN0aVy752Y7Zd6Boo7Bz0E858sBHRfT\r\nnP4qTc1wLNCY0D0p6Qi6NMm/Af2q72PccLpDQ34xEgWY0SaZuWnjo9zEMuHH\r\n311k2BDQIvyehbWWB5e3F5lHzcJBQm9M0F/PqMatVNC1qiTr9cLJZhH5mltu\r\nrVs5X9hMX0P1y7unuy4atW3+v71so2vExvsRs1h3GrkpXO0PQOUzRKO20fAJ\r\nspkOC0WfTCv8/m2crm0zmC3Z+CHHUYH/hnBGXJBhJR2ANEJ6kSZh4Ov2FjtI\r\nOI52/sn69CFQ1mglRtGD8hUh/J9BRAffKPj41Y4zqx0DhFHwUlB5rZAgek6R\r\nZOovZKLdc/BBsF684yX/pgXJciVI7AZysTg=\r\n=s8oH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"19defbfe576f3f2da32b5372274e4664b66ec00d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220831_1661930883824_0.326676221071732","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220901":{"name":"typescript","version":"4.9.0-dev.20220901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220901","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e4ed53417defbfb6ce4fa782dfe89e1ee1722f27","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220901.tgz","fileCount":108,"integrity":"sha512-6nVAA+LnuU09b62zRKm0XRiLUv6h62UDfgVulk9kmBjZmc35qlh3p3bA4LulqJ/euCG3bzCksyhL0ZeOw/bO/A==","signatures":[{"sig":"MEUCIDoMVy8mhv9t0t9GulqVKMn1rABKdoVT8YE2pz3Gt7TPAiEA8AaleshQFhNkWbUSCqTHoF82GETHV/tvFTd99l7md5Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66330626,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEFxmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoSRw/+ND+a9Wox1WqDBItBSL1/wxrwVkEWqo9otCTPuQOY4kQ/Qmdr\r\nPfscjUuGeoNtSN/0n9FLKNpXfThYBpsF2iBs/99U54572RNtuvcY1YeCTKAC\r\ndg1e7ds3uD6dyyiSBluz4jNlasFgPYdDepSIIA/CNisUhh/Vo1XmuLyB+Udu\r\nJ50ImwL8/70lXt4SToOgh6BN0a/lJTm4YkAt5Yiq4RcDyF9OimEUiScJ44kU\r\nnHOBVMbaLKz1omEN06/ZsEEBaZq2+96oOuzXK1VAqKgGy7krn0A2g7LopVqH\r\nRSwAnOW9Jt5Ha2JTnAIiEnUG745VnSP0nWv9Xjh45Y6ta6YzkzHZv2QZqQOc\r\nLCNhypJ5zfK4RHtip09af72AVha6EZuvNuTFkdZE7YKaDmZax9Z9YeNTDnkm\r\nC2nN06lYS5XTNDzcqJgW+vRwlBA1yS3IltlKuIJr19L9kDNDCi9+aYOQcId2\r\n2y6aifuITujuO+ePmgi+CbPmszZrR7tJZZfdkim6vhOCpGxX2fsoiXFxl6rc\r\nEQxf/JvHyvqE1rVPweX39HrCMpZvGQ84uTedrStPxn//AGArOGPm3MPmPXt/\r\nrNlhP7Jg+BuoYMHYqLjZfTzHrh6zmGOk1VOwqDwZsgVDaTHwSKxQqDKaOVgF\r\n8bNqCSLIC0AF8mwDjrOBWtU7e7bAlLla6Vs=\r\n=PFfK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"dcade7732c142abba88eecae78c115fa37b95e01","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220901_1662016613839_0.08316642712186995","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220902":{"name":"typescript","version":"4.9.0-dev.20220902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220902","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"523a1287a71753ea80b04f5a51dc98c852850af5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220902.tgz","fileCount":108,"integrity":"sha512-K1iMNFhcRuYtQxDQD2JHECQ0x24OzwOD09TBFuRsIhnxzOG6XUU01tkKcCYgb//DkNDD6Jy+MpHf8SxzvPCnIA==","signatures":[{"sig":"MEUCIDj+xD30tUu7mnEq+WmaqZpucFx0O9mAAiB2Z964TAM3AiEAiH4fU454QzVwg3+/3H9SIDcZzeKswru/uNmwbQ580BM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66334205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEa/oACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr2ow//dnZ3yVcuMtII8W+bsBHjK/oi3O7O0Gd/cJVL3cAyRvgZhHdf\r\nqmnlANzPEH2PerOow3ARrJxRMnRXa2dCU2un9nPwYuQoz0mE/msw4iBk1m1K\r\n9+seBsRm50olrpyms1VNiZHl8GSGrroGkaxonBbSnn8lA95bbqEfAA27xeiv\r\nTXbjL+zOW67ub04KYFN5+33YW20QnAlJeGsv4HTg/VaqffGuPpNY8dkg52ei\r\nUkrx6Iv8+cX+50haEehx/FGEyJ0aq2qIdVbPDC9oAlr7EAB5oFJWt8SByOLW\r\nwGUSgmGkpJwcAztinN9BggApnak+qMi+UrqUm9dKsLkQka5SkAvWbbcwcTHM\r\nJGrvArbzAC3+VMhieY3JE1XEsPevH8gOIEKTLIy5/GkNAJSZgJ4F5cjt9eIS\r\nRB7rZJocBIj+8FulhPbtNe46/eAhvBEXS+daOucEpjBwgpKBfvv7HBraCi/2\r\nrG511kdOah1cCFH6wrsyE/EHsYzY9RAdJMqYTCkOerqu/hfWW83ei6md74m4\r\nrk1vM7oQRRY+XG5hlRYivaufmR8epYRrdYzW+KPcbp4RKRG8jHEHfd9ElKnI\r\nBVGoOARThsPmm2ulrcj5R3BT1pqIN8VVXAugins3zqsuvA0xm/jce8tJh0Tu\r\nv3daL34jSG70d9rKsG3/EogSK3Ik57Ay1Ho=\r\n=nwM/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"549e61d0af1ba885be29d69f341e7d3a00686071","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220902_1662103528293_0.2692679696852185","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220903":{"name":"typescript","version":"4.9.0-dev.20220903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220903","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f17b3fd738004b670c6de9864098b447e172c42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220903.tgz","fileCount":108,"integrity":"sha512-R962bVA9UN1HGLGvB50ha1J5mAs+BZ5gW4tz2LRCaOYzpJUYmiomEySOwCYjbt6DtjK2p+BmnnVF6iBT+FKSAA==","signatures":[{"sig":"MEUCIQDQQTM324X7/AoS2vPW5hkBnpwFoFuEW5e0n+qkFsX2DwIgYYhluTOx574KJzsmEOBozNp/xnrRLqx+8no/BZXzi6U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66329616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEv8bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/ug/+Mel7ThMhx6RaN5E0IexEr40lqtEF/gGfPu2V6bwyCFmuDKLg\r\nVkxIiFjBtr6iyvqSmbF6Y7mZMJBa9lDiQmSwQgxyLZg8Sgsx6fqwlSBng7MV\r\ng3oyDrLnLFCPWahNZNOnxnwPJKSBftBuSooqo/tmiX/9hN+sxlLxJPAXfEab\r\nqz4AvPHOV3V31nO1iVzmMHa/1iUe22ayRmvrq+xCZIKsg6GDFjeODELVBvs/\r\nUPT59C9XGYcuz/X4byUdY8En/ldaHOGkDghGrNdnineWdchWwmbfin9xnrpX\r\nrR6VCIE1qWDe+JpF4PFLU0KvZTH4baPtcaGLzH83LTPayJV/39dcMyZ8Ne4m\r\nns45To52PWb/sYTsNvIREYNg9ZNbF/A4uUvah3xHAJjiSFHJCm5RORPqEA6g\r\nDnMTuT+5m8Y3iVGP2z2PPVVLYqhBvLP3ZQbdenqeJte4j5SvRXQeb99oZ8Jb\r\n0ppS3dOaL9WTCDV8CRBUKkTSmDMICGyKZtDblEbpEora0IKyXgA8ONR0byyE\r\nvFVYos4gRjpqVXl5hoe0rQCRwu9r0BCGF8bGw4QdPWJ8LGG+1svmnaEiKU/d\r\n2W6VHhVVvDmKPyLHX4ZhlPrY9tfx0iRSgjZPRJ/BWj1elZ5XuG/gt+3TS885\r\nJoJCwib48dQF9lsgszvgATBATQMmFPAebTk=\r\n=F9OC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7910c509c4545517489d6264571bb6c05248fb4a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220903_1662189338619_0.7550523474303228","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220904":{"name":"typescript","version":"4.9.0-dev.20220904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220904","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92f3d1cd217455067753d7c31dd23d97b2c2d111","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220904.tgz","fileCount":108,"integrity":"sha512-zUWjUShDSE1RGYlcSbiHF/VgqEl9mGMw07z6qhsRjtYLyRftM65b4WPk/EziV/TwN3uf8kAJcoyIxuDrxlt8tg==","signatures":[{"sig":"MEYCIQC1UuAchyjYbBQ9jDs7UY5ZFYqOlmmTHzip6hKqF82cOwIhAPRu6BOiK4TBwFRB9WYaGpi1n0snTzZiYf0/KqvEm2Ra","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66329616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjFFCnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpt8w/9GCZoO+q8eG3rI4zEKNlvEbHNCvGk3jzeyCnCzJLYA0sO7TsK\r\nO0CPjuecY/0UEDXiN+D218lZdNw8VB0SgXV2vjMymbuh1Pz4No14X6a+CfeQ\r\nPxCXARODbXeuDUChPiJQLqNXnAwZ0ZkG1VWqSbLd263vPBGeJaeDWDVOGot8\r\nkzGuGHNmJ9UK/EAphEt+5Chjv1NWPUYD88/pKMqIj4syy7vwT4PXFRHgO0ql\r\nWmw+x6St4wbaTdNDwL5XVxsYtBA9WmS5ChOpgWx7x/kS+AdZqvPLbPlYxwlF\r\naajbRGTS8fT1nHerJtof2pauUHv4SPwz6siuNOiVCQy1PIjkjppsKH2mi3WW\r\nVXhpcIYlPaVwiI1S6Te7spzWNgNF8Iwpw10wDi4bueP4vhUZSkMdNf92mbZo\r\ntcCT5gIGBhnyWN0ab+ke604y9gxD0IUQOW9CRaKSPOITnRS/WkKFLKYEe7Dp\r\nfma20x+RTRWekMrmG9N6e9+pptTU/qBGEWvi+bpMSjItd/3LUKMc7oYrjSpo\r\nrTgp6l5sgr6fDXujCvDHuEmiGmQzYFOEiIZgYPUCF+FZ1Iu5InhemlmltZtY\r\nggm7n5D67aPOOWvXfdEug6pJOUnKHCYtBd4DaohvyQk8e5d+JFndjl8sqXnP\r\n2FR2OXD7DuXYEsMDQGyVpzw50uS9BylSF7k=\r\n=MG8l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7910c509c4545517489d6264571bb6c05248fb4a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220904_1662275750889_0.6216068654573037","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220905":{"name":"typescript","version":"4.9.0-dev.20220905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220905","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"95cc02d6f19260592eff0492051c319abe4c7baf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220905.tgz","fileCount":108,"integrity":"sha512-Y3m8ommI+wTpwdh1vNdp5a2AvvD7UYkUfuUJkB+DrM/7z4XMTCEVcZXjiH5OwICNHy9k9N6ZeaTTokpcNj4kVg==","signatures":[{"sig":"MEYCIQCAqODq3Fk23aolQp/TvygQaT+5HDG+N+I1oWT3hh4j0gIhANgZOlw83ZGbVRsLP7d5YYijs0F1rH3C92Xhr+HvP2Fz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66329616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjFaUIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr2yA/9G4n8OU9sM8f3nCQ3OtqU99/DKKEmQanEq5ME3ED3rwzIAcEb\r\nIXCHQAZcSBMjJygYYDd9aux1WllNlZAFqUsazX9l52yk0l+xpzxAEf+pMFLl\r\nqnmh/KI4GY0r9RIF8Zun8Zo/b/nvUkXLu/fUoHNOt7/9MsW3H0vlMj5K1gFM\r\nJJxsY1H7LNg6Ug5rFh1eNNSaa4IDCS3EIOlSOgmVmAimpa/NGbgAEeRNTZSA\r\nO8KxZmG91KTrG6/YAQ4S6NOaA9oja8Skmdb7UG3n3DgqyeARHSJtns2KQncv\r\novXfFoPFR8NxxmXALP2DoZ/RsBybDv99QYIY4TPsxBZS7TQV+yFuvOdwJ9Mo\r\nlebzb3uaEDk7UCQly7E6NtRk2y1qx7f0rQOdbFBE723gMQ4ctT9RKWc1xA+H\r\nISZY1kN0U8FnaIuCp8wYCQefuw9YQ44fIHHWBCBwcBnCqrYAZU//OvCLHqWE\r\nc+loksUPmsRoOuiCOWlb79RckFOT4sbvxehIrZfn7nWSqyiRe/d6YP8d0sJA\r\nYsbG2iHtWDSS3JZWPjNEu2/hbBZXaFwLBErx9v27ER4/WBuOBuhABi0dEUba\r\noM/3yZndptwH66zV5GNVVIsS4BAgFaHqbkmmOYGy55iI8CTfJm3iBh7Dc6Nh\r\nP4OgF/3vEi9dHJlCB5j6vh2Cc67A+2Tuds4=\r\n=dA9k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7910c509c4545517489d6264571bb6c05248fb4a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220905_1662362887787_0.7654269380726852","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220907":{"name":"typescript","version":"4.9.0-dev.20220907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220907","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bf59fe29dd9803b045cdaa941730c4ce36d6fdea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220907.tgz","fileCount":108,"integrity":"sha512-wRH/8rol9ktq6cQ6NxT7fsaa7bcVBSl7KcE27AGfzlbvq6c1/KlOOXywzhtsCHFtNLPBucsirHBZxFx3gdfpBg==","signatures":[{"sig":"MEUCIQDeKPRadSUmVpl26QsFSryYad8UXlKSFJYdR31iYEIWEwIgB1LZvcdGvYIhHR3EGWv2cRthCDLQTNMVWEj7q+KdPCs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66330312,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGEg0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZSg//XMTZNlQaIFUjfEbzhXWbc+logtgX8F0IZY4wTFsKCsrEe12C\r\nxrlM3y8JuT8TARs+sP6xvxmoZj+in+Xk9SKQN06BzagfK0qh/u67JVYVPe0N\r\nGBucEEOIUFOzmI1gz8Z9eff8gQzbaYXzx+AD8uvZj/548uJRa3pPlX3dZkTk\r\nLv2F5Yg1OYB80Ol0HlbR4aTWd1nNicoeB6evBcg2aJuO98rFuVhri0+K0nlR\r\nJdmFNa2Uv7zoBllgYLDzN5C8Fb6aWS/TmpJQRcB5c3KXLFiPnLu5dWMw6lQZ\r\n1r6+0Ri6QI7NLng2LF46VVyJDu04YLC02saruGHY3Rf9oRKI2DRrp8bDsjmU\r\nr3Ot8AKeeKysygUT/dDf7mj0EI6V/7ZywaVNrb2bgx7G4gNoaFGClOcnndLS\r\n1gB4eUZbDg6xraNi2zfdH69aHdVjKrzUC4sMxjfDOUg2603L2C/ezuRBdP1d\r\n5LP+7dVp6ML+Cp5bU/e5rWaeXVYjeTsdVhN/SOh/Pk8x/LBO5GO2AX6gm7+d\r\nncj/fZ46mCny8Or68fbPm8XDMIpKbpgyv5utrAEidPm0zXHKZzmLGVeY7vmX\r\nOpdLMn1MXfZ0tlRHFWXhN6LXbU+dNqKCkZD/gtahybJ/+HG0KMVOpE4Hp5JZ\r\nwXZuMYRPsUMixHM4LAiK/GnW/1+qySQWh1o=\r\n=5ecH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b58721fe15a9d58aa9c2b53b6e6fdb7966f56d2c","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220907_1662535731908_0.5284464864271099","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220908":{"name":"typescript","version":"4.9.0-dev.20220908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220908","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b803956e8b35033fa791e86a6c30c874af2fa7cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220908.tgz","fileCount":108,"integrity":"sha512-Z9NXScMcNmiTv94f0G5PzGn4/Hk31hZySa87XP05BQpYYD5NlaDzQh4POK+z5/5GhNtT56Z+JKbqK9DJxZuA+g==","signatures":[{"sig":"MEUCIBUHlkPPui2ZiocEnD5StZ8FDU1750MtjRBJp3uCv90TAiEAnca/bNwh1mDBs5crds2lgkHOG9Gx1cL05n4NhwQJ1Fg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66331864,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGZjAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpSARAAnUvUvWI6AwA7ilmOdV4+HfR9/YpeME2TBBO6swfjO+6ii3aO\r\nSVT6vVdzP4A2+MARvqDkfc52fpzQYm7t6G0V7aT3ZLcNohg5wlkJo6akccgw\r\nKZb6X1whawvolIWGxuCzxqZdHysPN1s6j6klvgZscq4kbBlPW+4lPC9dEeKg\r\nCoWK2rgnyTZ0WV5f4/KLYvwQ6r0K+pDhCv3Nky0auVkeJUVXN5dfzGVOlGvr\r\n94iXPdQ8HBt1LCVzD7wTXlSTYWuV336BLoI2Ooo2so+FRWW8jQsXauPwlf+N\r\npW9tMjV+kNIWcPU3V1kRRpnIzcP+t1XIOC5ZLTKBwl3yLSghbBrvQHBEPLgO\r\nNO4kvm+V5KNsD1gHW8zoTdGc6f23K8snE/BFrzImJS/jOKG6KPmIuEfVc9xM\r\nMPSO7dNN96G7Bq7edC9Q5UaxbRiCWQZSooN/u+VaJ9+U3tjDQksUyVkm1FSl\r\nvz8IFMxSrBGvfI2my0qDD+yVTAcSLRCeDYELRxLpQ6+hloUDHnxQ0bYS9SFh\r\nexR45Ol52+eSkdGtWfpMin9HAhpKHgL+ksGMvb9wPz4Lq+/m5E5SokyE+KM3\r\ni/dSQTj+ph3BTNr9GDf8tg6z4beYspwoYwlnr9ZrmJ6PXHjltIYdXkVyWO+c\r\ndkFMRzuCdCnrfUX2nlFDnGnclwlbdlylowo=\r\n=LsGY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"be4e9bac8ff66174d4e856dae06f69aa4ef7e479","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.2","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220908_1662621887724_0.08582951389631366","host":"s3://npm-registry-packages"}},"4.8.3":{"name":"typescript","version":"4.8.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d59344522c4bc464a65a730ac695007fdb66dd88","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.3.tgz","fileCount":188,"integrity":"sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==","signatures":[{"sig":"MEUCIADwevMtzUcanOsAHHr4Ysu5ASBEUZYbH0OSopSDC5xdAiEAz4roMp5M1l30UFsW4XhdNluqOvffMDLY6wquUUp+H+I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68756315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGiL/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQNQ/+NBkPRwAGcHpVDhNBIo7ijjQMCTRQV61qIRGHUEJspBE8zL8a\r\nvfMRF7mZrv4evC4958HZ6MPspgzzwfvUqvLpjc6DMHZKoXJRakOaBi7HrXcT\r\nl01ZKNrTl8AqQv337SxLsuQiOgtSbwo5MpRrwFer7j0wCXKbh4yVC6IuA8Iu\r\nIu3vN5wn9kDtd+u8XlZ1BOCyeRyJoUiHeLl9/PpIKdKNo20gbjo782fUsb0M\r\nvpnF5KXhfjU6waP1m2tJWMMm1L0XHrLtTkMR+THvrTaT2CyY578vlrTEu3E7\r\nxSxqGqpzdnKPJg4TbswNO/5qNc4DdduKt6f0q4IjQr+bmh942XluUyHN8k6R\r\nTmDuyiA4M1SXNpVZTIiPkFF8cId4jtajlA7E3+mF7Lm2CtcD1D/TIFkTf2dS\r\nufstlrwAfwpzkmgHuJYTs5L+pOZmqNG7Nmfr7rTYqtE14VTDSdrvjywsqGT2\r\nm6RPJx1nV5E4/weijoXsBy6peDPAWfD/pgzBxLOosNNioDIZm5/8OJpV3GZy\r\no/lVWGfed80RBdB2ahDRXKHTcqsYUKpUNb3BjDijiLeqp0YLkyCVHnJuU73W\r\nJ1tZAfOOzySwvDjia0ej2UjwCtA4ZStd0ERa37s7xOf+Cgpio1+W06/h/+1I\r\nsukUwpXbHlnc5bG0adI3zVt9KteoZv/WXLY=\r\n=IHsj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-goMHfm00nWPa8UvR/CPSvykqf6dVV8x/dp0c5mFTMTIu0u0FlGWRioyy7Nn0PGAdHxpJZnuO/ut+PpQ8UiHAig==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.3_1662657278907_0.8162088743995983","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220909":{"name":"typescript","version":"4.9.0-dev.20220909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220909","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf90bff737ac177e6c4a86b04184a5ab91b93ac0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220909.tgz","fileCount":108,"integrity":"sha512-SC8F8fq2cOklfv72ROBl+qxx6HqRCTbMnj3pQp1rTUeTMLWOBym0a8YAcy7/nu/R+U7wuReUeFhZxhcItvfDCA==","signatures":[{"sig":"MEYCIQC+AdzKQiJBAwT39XCTX+qft5d1btLbQc9UJSF7gYm5BAIhAPSs+AF6a/1yxRjhfAnOByPpQOXGKtuoHsZizY7+ROL3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66332820,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGuosACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCSw//TA0MGerkWaw+a/JbNM1E5oVH79zJC70kZ4sy59bHY2jvryQR\r\nli7DIik1VDpWYELZMWhdptXFlFRZ4pVoobj5iUMjVFgMac1vCV/+GRravTMJ\r\n+FofC9fCWY2LBtEN876uG3ZCxb+w4VIAfYyC+HCCnP1Ay1GR1Fz9niiS6Wq0\r\n1rX+6TVn3K+0MfQFEO0YvjWzQxGB6DSuBqSf9WoLOXbKLcF3PuRygY3Werzz\r\nfpQBQcg0dcNNbl2KpqB4SH1gXN8P2AkegNwxnbNN1Z+BcPEN5clFzTDDV4Ic\r\neXnXnm4oxy1rvGMx+3ZLFvscVIMTCR4bZjpV4KYQScz4gndPO/hee8EcYhDC\r\n5thv/AakO5jCSUfaVGKh8nBpeckGxedbix4sSsQb0V98qhnVAQnU3n9XaZTw\r\nLeLzWuq2+BFGflXspIon3lGZg1OEFjnWEbgt3WqJ4JBGuVhWrTSX53T9mdMd\r\nAl1lcVucMy04g+bugioyL9On4ItWfGFXMDIS5V173CzA0BzBiqZkVa/Y9xKE\r\n71v50LF7qKidwu40DnLRDSap3UVS3XH9m98V5spbnzv3D5HTs295mqbEf7lp\r\nNDf57o2pLYflrf58K0EleeQ99Yiuq2iQ+bJMPFhje9LJB1wXN5fRFFsweLXL\r\nADuuBnrg7wC4RjhFb1rYOahBngSdGcF9nCg=\r\n=BXZA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1a1c27167536e005a4d241ef84c43c0c0ca0aaf9","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220909_1662708268326_0.04809160663270662","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220910":{"name":"typescript","version":"4.9.0-dev.20220910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220910","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"57bb04fd015ee0edae90bec5c2b82a71e753bff0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220910.tgz","fileCount":108,"integrity":"sha512-LSrOW2zntPLpYZYwwbez8/kIPv3srQWJqErrtoSzJW3oYgHKF88xjChPGWQfOhwuyeJSxwnEK9knqmrBEOv04A==","signatures":[{"sig":"MEYCIQD9RNRjd8GKjWL5rTgUDzw2TrngFIhodtEdxxL7AjPEVAIhAOK2zfra3FiQ8jvcjLRuO+r6na3UiNKVS0bbFboiHq0D","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66335906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjHDq4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr05A//fxnVGoquaKkkneslVJQkn7aazs+5FnwS8/yqjxokd9vYZddT\r\nE29Dth9cqC1m4do3HGBAkWgs7jjVyK8V8Q3PdsrvkRxPE91akzjYHvF9Y2fL\r\n32EXyJlwGQPIjxvzvi2XflXbsk0HZtLLWeaow3TQ/4wDxZ8jufP5d0+ayW2I\r\nZiqnudx0knhP9vHpt63Hp5w5IS1xwlHy5u6ZluS/dmB1Cot1opMtW5wSznXm\r\nbWIDb9UDwQsfjguxS/eFeLC2X9N/lplfvdtjJaeJd0MARK6P6vEAJ0XFwNIo\r\nekJIHUn7AnxhTEFf0jFU6DM3B10SOUN4HO0e+414ZTdEzx2R7ccPRlz30hgP\r\nY9IynT3V9HKBpXzwtqUbzGwjJPNx23c8/+85jz/+TiYaLTAbkdfmUMixoHSa\r\nFiI0HxSyJN+ltoGriki8xtRWXHfs3GMp9q/aSuBdV2YXLK2PreFy8mnQ2aIj\r\nvqXcID3p5fRotdfjiypxk/k0+svPskxdCyJWLnPNcnkAwJLPYjqiE2HWp6DC\r\nomNAdOgSHWu3b0QF24CaR84w044KIByTG5LVoYwOemayjtOOrpH+vPP44unw\r\nL29QCqSZrehMi47QbsRM9pOtrlAD/YZJ9hEyL1xDcHhHBltBoXBI0tHWRdCg\r\nwDKVwvtFKaFoapxuZ4HioedJ+lij//HUS4g=\r\n=0aCr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"12ab0fea9f45c48ea644c8273bedde235c8bcc61","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220910_1662794424113_0.6197189101949412","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220911":{"name":"typescript","version":"4.9.0-dev.20220911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220911","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"11750feb77f151d6a1a21b780879851a351b0a9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220911.tgz","fileCount":108,"integrity":"sha512-hKvd93pD0Ooz3zvSnXw7ub0a60MF1+ROJe70UchUlTMfFPB80awNJr+Vq1Jkv3Y2jgwjbgOdtXQjn23Sr5Dy4A==","signatures":[{"sig":"MEYCIQDG/0gCr9MI49IBpZ3PIJtMdycSpxROngQ8v65BjzTPfwIhAJ8ewHbzH+qwntZGtrwldmsyQJUdk66bI/uOuvrkhM0R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66335906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjHYydACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmry6BAAnwvAwS5FCHwB8BiU6hV1XApD6yPr2Qdi5g6UxfsEe2oshsjr\r\nHHWkVKV5tHO16nryme080SiooA3EvXfWR3Jz9YfuyvVEuUyb40r776GQNc8D\r\nXvm727NltjinnoKb17dJczNBP9iN5AXYckUZTdENhr3GVenfBNWMp1QWd0sa\r\nlUrpG5bv4mcH2eO84KvuPttniUp2/ZCnxdg96riiL9eSt9VUpM5JFYlgcJIO\r\nUw1IjrTnsg8TMbRGbv7+QgMkTyT/kIu+JIP2YGCTjdEu3hfsw8E4AzZZYo/O\r\nEJMfO3DsWuNqniZBmOW46Bi3d2ZGeir2jmf7WuNz98e/kfKKyVQkR9vbdECz\r\nI2mfScfokefQ2Dx2YywTSqxajcjBMuRptZ1b6WFFLo48L35CKTutz23KvU77\r\nyLEoaJdUuj0hoUePV9cHOb0PfDyaK8Brh+OD9WJSU/Cg1wuVExXPRSvBNUxz\r\nVPeHKE+dHpBLWTEz9YBrxzD2PQ5B3fATLBttgaQ/JgvNk/2QmdiDHb/4s2P0\r\nMdce4BMYXt2UXR5m2qdU5hBbpqIaKhEVZ6yqYUtjuEGwG8iknvnlxAFoxB1+\r\nfinan6Tz9lMsyB/W0fOw9+qE5D6BgwTyRrt4/+M9WgF5qk+W+17koBYa/lJ9\r\nMESITISVKUPZahj1je4ZSCMtcQtMFVIPKNg=\r\n=T2Xr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"12ab0fea9f45c48ea644c8273bedde235c8bcc61","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220911_1662880925157_0.3826821089895256","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220912":{"name":"typescript","version":"4.9.0-dev.20220912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220912","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e9516a0514137d8d015923dc96354c0cb8ad83ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220912.tgz","fileCount":108,"integrity":"sha512-B1WnNBtZgqkG48/Z1v4VQWxZSjJl+iJdgafU/8mLFOZyinS5Jejz04TucADMOTufHaIc4USMcYALrAg03Twg1A==","signatures":[{"sig":"MEYCIQDSOTzGNeh2GcdLNBORXBnt+J3jrRZ2gI2L3YGefA48lgIhAP+T2X5a9iWoznxTgsThsVNvtUq9Syz86HM+4SEjnsi1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66335906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjHuBEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpmNw//VhsyF60yj8YmsvZj3TiyH8vETGX54TfwtghK6dwWMZH8Bs49\r\nZre/BIRIXiAiN65xjaiDhMcaCfatdaE8hC5/DjTnGz80BTvk0LX+age8q1cJ\r\nwftLolQnQhqdoomLUCxCZSTZNPzJeqjO0tu4MXflerA+YaKKkCjJ6l6m+pZ4\r\nb8WWcSzSXC5j54zmlHgsJkSq2pCYF4lfGYZiBM7YPwDmtAZA6/dD9ay5UpTJ\r\nfZwuuegeV5HygYfsVeZYZ46n0D3G6kxRhGAB+dPZ7al/z1M1PVNBD/4s5EbG\r\nsLjassbxhzuyT+osnGG8OfRQ0E5m+3NC1Bxr83y2jctA15xwu8kslOp7iIOa\r\n6c/5UVI4MxNXfuw6Le2XOkwW0reNEqujQ164FAFpY+Ns+tNR9A2VjbNMUSzd\r\ndL+J7lYR9WmMpDlbApEFQ9yL9VLJBaw0CSXeMiEr7w/t5l3VG+dr9MftHepm\r\nSCDbW3y66G+aSTGdPXpvT99gpxqwWpDTJo/HHVD57hV8nk0N4UOsxwayB5pA\r\nFiBLg9bLOvPHm70mEhbVx8Gqx/aawbX8/nNs0Jd17CUgFr4EnMnZhoK81nk3\r\n+25kIPTUV+iIRXunjU9nwrk3tIulXUOrmlKeFu1xdEXIa08LmlomI3erbo8v\r\nsEbvPfM9Y3IwOWIcHstQamRowPp3/cXuEKQ=\r\n=B8Eu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"77374732df82c9d5c1319677dc595868bbc648b5","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220912_1662967876086_0.9639981709096888","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220913":{"name":"typescript","version":"4.9.0-dev.20220913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220913","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c18b59ef997e5eaeed05e1557c6c573349bcfd3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220913.tgz","fileCount":108,"integrity":"sha512-v/DpPFVU1aThfbgdqGaTFD97b+aDqHqkAnQGb6VVsuxiO4/84aIzXp/Xsc7P6sz7+7RiWJqogy2O3Qg3DtD/Fg==","signatures":[{"sig":"MEYCIQCIwcihhyI03J/6mRHAp3ZRTuJITJ35qRKj7ZXG0VzpZwIhAJe2Ml7vmtEJ40AJG62ve8qOjeiG7XuwgGh7srK4D86O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66540201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIDFuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoCdw/9G4K/H7aJxUfvX8nz8YWulfVb7aB5fzPZQ7hIRfQukTRoPn22\r\nICYcFuhsaWMvSWWy16jd47Gj82GaiSqN1cmu1MpB1wicq2wNASjLc4inLVWT\r\nRSzCODvPaHJsDOURm3/LauvIz4k/wpAsMTL3QaxnZ6cBtubgnc9GIauHViG6\r\n2ivyzpLvKkt7HkdUfBJ6Wi5BhNiUgjv3rkENzZXtNcXjFAggouDojiDSOaIK\r\nGwRV5Nnow0z3DWXz+2inryaSeDQdrKIRRGELMSmXdS5uaSZoctpHtnZ+ycoj\r\nQpdhKNN7dyZCIld4qgiOqMqASKD1MvQlAuXMSOHY8bGl39kFDhQMyG9UiuBD\r\nbYRv6hvliYuCX/w1ile3ruupt8HFz+Ujwab0aDHIgY6xe9vaENrZs2ov/VPT\r\n3aOzJxs6CHJZIUdnnwHhm3bp/ixvKtcIMQ/9LceNv6CmEyzQIUzOv2T11nDk\r\nmJN5+uaBNnY19/SUDAcJRtICavzGU7O+k5SUWgemtZOSpcHKEIXGvA3nETgG\r\nBEXw0bhj9MJmm+Xj+Fvg1RwWNn4l5XsZ7VBhlhXrTQ/8cFf/18X46R8bfS8T\r\nIl30q7ymAgJw0TEI/C6I+pukRkxXxewxLD5lo6inSGpWKsdQmPVehjxR1rgd\r\nPFORU1APt5SXZY9B28zDZRw3uqz4yCNKsos=\r\n=Kitq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e37ea53715a725dd13699dc1be5190c6ebd0d8f8","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220913_1663054189952_0.23330330630653084","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220914":{"name":"typescript","version":"4.9.0-dev.20220914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220914","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"16b3253d784cb0739dba362cc55adeebd9c8fd50","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220914.tgz","fileCount":108,"integrity":"sha512-U1GcTQISGDyNlwr/OUTQVKFGMjL5eYrzT4nTptRn6lcaiRwO0+zmdHD3FMf6ZdiV5wZMMU706GH08EgiBufIqw==","signatures":[{"sig":"MEQCIECMm6Cf7smlffOuaeawYVh3C7XNwbUTtSFeoCu9iF4CAiBY2hTWsOjzobrwhkAxJ3qH3DCDMJm1jpDmyd1Tanl2Pg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66540969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIYIrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpshw//W2a9MjhdHmFfbzZtWCDYPWHmgr44k5uBio2unwJCtxPzDkxO\r\nWMln7Fj7MwqlaLiR1R1RBKiKw+d19C6dzTiwQ0jz2S1m5pFVuqbzuQOnJRHa\r\n6hRYQubkIaSl6J1jCK2YlynpQ7Ze2pOw56OYA4D1pr6a6NpZlNYu/NHbCHDR\r\n/PIgLM2o0+x+2fQVd7N/gQYPM+yYVKjSSPezGuCEM3XdTTNBEQBg/CTHmwl6\r\njskuuKs184I/l81Z71qt/ry54labAMcQmjk4YNupvdlPrq833Brj5COxXiSY\r\nM72uNOiX6Z001+PCnS8CKiqenTPgsZPtGn4NBMv8bizWAD4Se+B9J447pxjU\r\nDrgVpMnlQWYRU7K0Rcz4I1OVYlEE1ctB+q/7XUqmQl8exyrCdrGVWkCDqmY4\r\nzZ52XnOCewB2AXR4H+LKE/E+/7qmobHVlPN/AINB0dZEOg5iErid39uA9tti\r\nZd8mSuJVd4I2b41jMNP4xxOGjhhBYSXBIMW1cqqFVVcx5EYccmRHJz6+6m6+\r\nG8g3x+HiMkX509PN6qbb/KwopDtf6bhY8jmPR0S2tE8EceNxhcNDq0hlxKtg\r\npfif8IJt2wdYLjzGonZ4PjAO0eePrdr1WpzLSBwWg7j29TNP9AcOq7oqU+/b\r\npEUtaUzkF9VvpEjhz989KB0TbtF0lj59dRA=\r\n=lQsN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"618fb2d8b92357d564ddb8596296ecaba5468002","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220914_1663140395092_0.5597201242372727","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220915":{"name":"typescript","version":"4.9.0-dev.20220915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220915","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"11735996e4b74402273792d7d0642c90af41ef92","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220915.tgz","fileCount":108,"integrity":"sha512-LF91yAKWayNiea7oza0gyHyPEVIkorxhbjWV6k/nDtseepQxGM8MZVjKGFleko0Ve4Fha8vQhnxRPkF8NftIHA==","signatures":[{"sig":"MEUCIHi16ZTcN+xnBuAUBTNqVqxcfRgJdAtA8n8a2+7TcXvFAiEAoKgS5RBvxGIPe28M1kriV/9+GBBFgkDQTLIr3XctE0g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66546464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjItNPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqHOhAAl+kdCfcza/s3vcOE/lCyUB+iFyXuKzEQwtdIlpn5CtkqtlkK\r\niZI/DioIAxPhDSkzW1tfbksDNaQQC6zClIDu3/7bJacR77Yp2DCoRBkp5j3y\r\nwwA1X5QIuSoPZqSVqy10BswQWTXB3sSCliJ6xIh2lkGnnxuieHxnEt98d1F7\r\n9RpziCgYK3BkfzNwwo5tcEwRtK9IK6WrBMkdGFk02NxKpn8Fo/wWBVV4rmfW\r\n55wD3qO6g0DDc6xQZJhN+12XpfjYUa8TdoRD7lvPxm+3O6xceFd777TqjaeR\r\nib1Qss+aF/kT4NYDaYsEuKN75kQgE9RBD+dAo/Kboctpg3xkNTDaZFK3ghjt\r\nVBEEJPSktFX9QVlssdd+gqa7c2Y1zgLlkcpBFFjGLe97KCC0QaV7WJbASnmA\r\nOO6vrwEzgl9mPePeFdRJ4nEwNapH9onHSw1g6H1IlhdsuCj7UMOVWzgsLdA3\r\nL20lolIjmfTdkcdu/mW+zswzZZ997RD8ly0LkQG2NJW9deco5kBICZCjimQ6\r\n7lAtbTuMzaUhAgVxxG4zRvOP2J0SziI3P7b2ImFgWQijAf6AX5lpq5omBuOc\r\nEEs4pjH252FpcmveXjP+cLl2y86o89hGMSe0QNjFbnTbJ7hgelTzt8g1i3ce\r\nvKgygmpQ1LYeNMdwonryPHjUs8sNxIoQSGM=\r\n=rFrR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"49cfa1db17b593191601736a11cbf165d42510a0","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220915_1663226702978_0.0060044357716562136","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220916":{"name":"typescript","version":"4.9.0-dev.20220916","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220916","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9cf0a7e64385f9ee9c841bbd1ba9b0bfd113301b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220916.tgz","fileCount":108,"integrity":"sha512-UuHLjqwsPLARYlNFwXEblQsiPFPRbZEx8dbitbfbx5l++DCAL2/HZdZ3VMWAS84KRFCwUxpYXdD0EvBU5S79KQ==","signatures":[{"sig":"MEYCIQDMNL7aFBIrDXF5eq0OkLFTzuvZfkeBWVzzADn6NAyZcwIhAORxp8cpakWEi17WZhU5+aWCMUURqkNjN+hnjVsj4cj1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66559838,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJCWfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqWGw//caRiNWyuWdpfthrpAhF7x1ehlUZWTyriJRL1hQF8o3VCs/Ou\r\n3m9O/gN97KJ0cG8ooZMLXFskiu4wiUgmB1Y1Ou2Q/2C3v/Pi/pIaNOtvhQgq\r\n3gyZPqSjUX8b4pypjo3+kJTha77siKZAXNuXiL9qxTCzQCnyzy1dEHtjJiEm\r\nRp8TVcRYNC0DBD0L2TfDg+LGksIvMDXK6iNzm5Q2kT0AzODinCaeXxZM5CVP\r\n4+qCE+StRN37oFmyiRCemX1vfXDSwQ4pBiDH60bFth82JzRe1l2p/91KUF1A\r\nq15IJJUlkM27s1zYjOKaxnOqtuAyctyVWeL87gbJ1jpm+Wme4nEH2ZyjWwPw\r\n7vgXgbTwqUVVrc2i6UysKEYll9hMa0+fNV2HAYxMxss8q+C1XLhYogx05nv+\r\nLDFJQa8iDkjPiIkwr8DSZz5nqHcLFitW/+xR4L2SoUUFcu1R72hbM8XVfP7u\r\nGZBqwBr6so40dgyP2S4PJR088yySE0jhuqg/DXTe1CMQoHCykkpIl/NWKol/\r\nL5UM2ozm/Nw/EduKCbCYev5TVJQdhdAZLkMQAbfERLzcUzloEu0BU2ny6sgB\r\n8hIZHS3+kHJA7CJ/H36luXAzKllBAzUk1M59kCZdzfBm+0vG2kfzcJRBGyGw\r\nx2LBQHDJOyrDO1Q3vEf4HwxTER1/B1M9EFc=\r\n=P3ba\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7e51306d30b72ce474054c3f3047f57d90dca41a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220916_1663313311365_0.7785195038815071","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220917":{"name":"typescript","version":"4.9.0-dev.20220917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220917","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8cdce5c3b7c3c7ca834bd589066f38206075380d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220917.tgz","fileCount":108,"integrity":"sha512-lWQcM2WDtYbIm7s//TgM84bRnGpuHqMVGX7Gl97qNs1QdBojiS7lzYVgLVMopBWvQc1KKAmBr6LZXhO2AfZ8Vw==","signatures":[{"sig":"MEUCIGc/PhOuyKgq7m33kCdXHaPcv8Fen142gJi9UqVt9mg8AiEA6E2+s47QMGxvy4QEjLc8JayezTB/7y/kBKC8EG87JDE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66560250,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJXQTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpo1xAAjLPAMucfzxG+AqrYmlQFBpE8NK/RRl6vYVnys9F9vrj8yV3T\r\n/z0QNzU9KtVvWSHM3wUPNSImOYHHz0RI8vOtZKy9Wi9JO8XlH3Vh+mU0r4nD\r\nr0R11QXh8BGVjgc6IwBm5/Mbf04TYEjflZuDWkk4K3989+UlEh8caFaByFxN\r\nNFB9SS5EuYVrbtsUbSDUK6Zj2h4HBZe8a5COka3p4a3zT85DF5fFHVWbF93e\r\n/11lp5871iWP5sWlzfTGf57Vda8MhJnhOkqVhtzEre084e1hTDqwTyOWcTUi\r\nuOPTRQyErRW5M+6h7KcSctW3skNoprAHximSMKws/aLeY6IHKIZdb9yfmMWR\r\nkMl/pKTdfH6P/aOfrZa391k15lgnQg8A5vzb0uiZojJQMHuTh30AmbYvQPmN\r\np1adtEv8QdjzQu4MhUt6CRI6pJ7dp2CRjntJQfxYkDRDDDtbVWNXS74p1gU0\r\nj0884q3OjCHATU6HRk0Q9zLHDxKZ81dBuYFOXY3zv14q+qfNKYbFiJMtaCp7\r\nYrrAR1WeIAJxI/7E2AYGzHCK15jy3rpTOxRvjsTyxbafm+iMyGa5XtVhMzgE\r\nLQ3r9LNSErzwRcyt/HDnbn49jhff7KnTqLphGacjCpJdBsug03xUjAo9nabP\r\nJV+eehkp0+kGT/nYURAn506LgKnVgkRiGVU=\r\n=n0mz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"08af0b6bf0041fef52ca8c1b69d6d4a3db439196","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220917_1663398930958_0.1504854875323638","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220918":{"name":"typescript","version":"4.9.0-dev.20220918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220918","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f6adbe7eb7f25d7cceda375d40cac1ca718a490","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220918.tgz","fileCount":108,"integrity":"sha512-ZaAeBYbVpmM9j0d35AlKqqM4Z2aVSEdjEF9U3barRlWUZ0kJQHjTOaLRIckqwiks8rxa0viyXGt/A8bCgkk8yQ==","signatures":[{"sig":"MEQCIFUoSbSxtQiXs9YgOJk9MkEs69sgN0VYEzRf9X02zf4aAiAqD5jH0L2h+9Vmw1aPTY8daVl2UYN43VL1vhenoBVGHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66561180,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJsWyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoSJQ/9FWe98xor00LTMNzTlrrqsVAazujUyfLSPjx6qi2MFx072eEV\r\nyuLshdJ9fKNd1dAqdytFy10wBqeHzn3HIDa0W00Hk7QVofGdsJv1XIgBKaY7\r\n7N3rjbsMCiiecYNXDQcLOxuScBdW6q32PG49j0RRtsnXdisf18cHaGDLj15d\r\nLU9njNYsaNhaMLOtF88VsTfrUSc/+U8RzbFIyAyf4wMWfe02RlJVLDHvDRxR\r\naUPJ3TAcAw0n8PREAsLNJexhHGbVshjmyERM4CqeHCivtnLNcK29JiiIeFmg\r\n7PMKmx17yei4e7lIjgoRTXtQmEuSZlwRS1pvefRwYw4jE5+c3mkk0W0+9wJX\r\nCXdsnGhEseJrA1vKRQ+yEYHSwJNAEOSaJphOgacMSxL+GkCJZt2ui4ckJdoR\r\nqwLAYfKDRdl2VNSCyNtafBtUwwreEYARa7V6mT+R3kT2stFaM9MdSRG57uSV\r\nUi28GPgfdk1TGuXF8DLD6fYk1FTdcOemH3GIqSTcLXosNJ109m7AMLDa+OOw\r\nk3H6vwxXy8OQXUOyIyKXEB0mWQbScBAJCvq3KyRY8asmN8GM+5sfYBMX4xEv\r\n3W3Ln/Bntt8f9FkYUAEnwhOstDQnabqhF2yy5nQbLMhDMm10XcOD3NXW7kXn\r\nJnGe18j0mzgOjfy/yl8R/VuMtpWwfvxPLEA=\r\n=b27A\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a8e13f7340c5229426072d443fa511bba82a0054","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220918_1663485361950_0.4592929223159812","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220919":{"name":"typescript","version":"4.9.0-dev.20220919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220919","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1542f12910d31f05c6409762b6d50de71c8717a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220919.tgz","fileCount":108,"integrity":"sha512-W+bcsHdefNwUVjTzmimk/I3GuYjC8ubm1RKBI097N6iEBwoc/vPMAoCArc24Zc2cbuFc01TKO75240wCXNYAkA==","signatures":[{"sig":"MEYCIQDGUefKeoQc48k3DQraVYAUnnl5uPvdlfzKDRqeoR5hbAIhANSf/9bcYe1kYHaWXMBmv3MbQmogUSsWOc+hpWA60VZX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66574175,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKBt5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpWABAAmIs5F3hGqSBPlJ81v11sVvrjhTtv43YjWOce6XolbRl+91GT\r\nTdQ3gnixafD9R+tRw39+8slWbPBjK1An5UI7TkFQgb7irTvWsrS9u0sDnNa8\r\nmsKxL3SLgx0JyPcOPGKxroFMEKQvTD4qFlcdDCKTlwe9qxkrOic1f7IgQapE\r\npPgbAt9NvkDlSbTxkDojU5WAXX9D9JZqmT8wyRZyt1eQYz1/k/Xh6TaNJnAd\r\nL8Gk7s8NZIpoi1Xj7MEWx9AP3vfYkNe6xjj7uINhRhGF+5IBu4aUb+vud35v\r\noon0/IdGeSl3DCmHaKUA5DiB9A/CRW4IXr3HDkMt8pRvLw4f+7g4mlCMT7t/\r\nQz6uTP93L8dhSQFC8HFS5gPXCIfA/xLG/JpR8Mq4OJmqxE3mYa3VqzVtoi5q\r\nxRnjRm8YSbN8oY2g7M32M4xoV6C+ECydhtGYOMHnH6LJ8dsR2mMblp67pgU6\r\nblSUguG2DIizjuMFNnglXkm/6bxhJf3/jMA22QGccthFfO6x7FkuMrvb6LWW\r\nUinJJ7aLTpZlNoCyxxWHoahs4LDZGOebT70IdM5SxwZHCch3brUEUL4MQwIp\r\nYKs5R0yEiBrAwmfFgQotQzHC2OMzBbaEQRqU5c5gzwGllq3rBiZRTKToet9e\r\nkaXkuytnF6tSn+hE79Hqb7cPciPfC0SEr+8=\r\n=AEnO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"48a8e8953a1e609970dc85e08f99ac499bfe8356","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220919_1663572857237_0.3377057438458677","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220920":{"name":"typescript","version":"4.9.0-dev.20220920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220920","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f88e201fd0f22438cfe183cc50cf565ce5985524","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220920.tgz","fileCount":108,"integrity":"sha512-vpkbCShHXW+Y0eWB8gHb9vmjDI+3ELVYY7aLZIFdO/IP1+Oa0TrZ39UXX7V8/ShrnoleQOc+ZaTNOs+JR54+qQ==","signatures":[{"sig":"MEQCIF1B5IZz/q7S4bbSba+p5p4yuKbJRh0j1tSkkLHnabjXAiA2O5g866XHrpW/EFy/p2AaTtmUGHHSDKlB7avCiC5wuA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66578272,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKWp1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmql+xAAoGDcL4Xa4QzbV6jK+kEWYMNrLSo53t7escBeBeE0J+Fy/PKC\r\n4dAkKljfchCgz9jUGnFYXPZNAOXk+/wsTfyFZiPkAqY3MoVMsyr50IHKsutz\r\npR7xSwJZzfG64z4jdjZQC+YkcOxCodk52G+KfH37j5wLMOwDxHG0/NRX7I3V\r\nU6Ja5O2+3YTOMA76cQ3mgkmknq7yzXowywbWe+R9afFu2+FFAfcPKaXhdupH\r\nFSTQDBSl6WU8NY3r8Dtovce2NsUYEBYxUBTz6CUCoA23K9TC5d7Va/oDMGHs\r\nRpfYJXgkAzOtVE4ivIO1A/o1leJFM3hK1Ko9Jj3HrxUjU2CPGOlA1uPjAa9J\r\nGhB5zncjC2FfDjHXYF/yan0t/bMWMd07wFcQIDnJZkU5TD4ayj8sCSlPuHxy\r\nY5oj/cqhY407XOAoaAwxA+K7YVpP4ASKy8EceV4H60OABGyqI2XCDHGclLqN\r\nZvBoGwKUpnA5NUhi6Hz37hgQS4BUlKmzEmA/So7B3VshhR3/IJM0jsoXiUlk\r\ncVh4hzvyn6Z3KMHAgfyGtYVzxXO6ImanEtXZI1fxuC7q7QhMiswZcnFO4nCX\r\nDkYllVLMFRFBz2aHFQQQwqY+k8pVfu1Oe4KEadJ7FkqoxRc0BzbomzPpJ4Gt\r\n1/MeoQsHVg8v8MjwQWB9FO9xHwJ+IT6/Zak=\r\n=EaD4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"812ebcf6e3aebfa72b976a6ae4d65929759a2867","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220920_1663658612871_0.26647920427019667","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220921":{"name":"typescript","version":"4.9.0-dev.20220921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220921","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ad0a24dcc94a29ee8d3845ad025ced94fe732d82","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220921.tgz","fileCount":108,"integrity":"sha512-0WdiNgM0YfgPURswuah1JJfnDwa6e7Ki0DJcfAEruw17mACMCJw2F7vK/4jLcd1uIl4La3ZIPnA7dOyM7y5Skg==","signatures":[{"sig":"MEUCIApqvNmrugqQyzG5Mod17y2PzM85oijIvR1KkXzfTk1EAiEAgDZeMzfFQYA4YnheqyrKpQuP11ciMb/YBLwNAbbxTIE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66641505,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjKr5eACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo2Fw//XQl6UN8u/pWOedor6CfkVhjoEXiFGJXzsjYui+sAlgI8rDhZ\r\nTyt7aLSW73m+oD8odXUYhIoWemF3Mr7BvQjmqfH4iXYyB75lawgFjlKrNjnO\r\n1CUJQTc1Go5kCcGlTKRv1S6Od9rciPKNzxjwIeosULzN4C4arm/zul3RILnu\r\nLUFu32eoF02q1/rOV5RLvvTfINg4iidoublg+IMpN3NJHRfirhgl6Ir+IPTR\r\n1d+HyGr9B3biJIYj6sIr+HE1MW2k2/uCNtb0z0HzyFiahuB97b0IDBseT4Zr\r\nLG9cR5HRsJuDOQHLqxqlTv5BHr3HbjTMQ8nexlE+nuLQPixALDoC2OofkKLa\r\nLHu+1RL6dYqAU1bYXK9oVoylGMmgDXq3WW+SKOUTzbJoLUdOgNRgOOqXY1Bu\r\nWuQQPvN9Hhfd2gchPUpBl4p3FIkgNmJo8ygdkAoemI4FvfkEif20rFN5J1ji\r\nkA2Jwm289U6OAJcNhtuUQdo7FZ6lWhc6UwILC7j72f8tdiaqbtjyWO0SnztG\r\nAa/09u387zp+yglRCE35dxC5nccLXfB3OO+q5AnIi4TsVlc4OlFgAtE17qT1\r\nh67MZqOozFHyDNl22oYjLiY9qUO8bFx62mORKtOJeaj5s8nFrXVyaq67v74W\r\n+R8ljqdY0d/5tYiUB3pKwZhpvKcwnPhPZoI=\r\n=Exsw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e383db692eb44561333c1bbe353788b337aebc99","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220921_1663745629765_0.9833393195169147","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220922":{"name":"typescript","version":"4.9.0-dev.20220922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220922","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e305e759d1c14e152bcedc7a9eb7dfe3d5e35436","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220922.tgz","fileCount":108,"integrity":"sha512-ELbWdlXaMl1//2wr2U09JIcPFFyifR8PEzVUGvQInfWVjRMalJJD28DRjp0yc4ZVdDcmQATO/pSQG0rRkr1z6A==","signatures":[{"sig":"MEUCIQCpCajfeXxYdS1uYBW7q1JY4yDaYl+jkgAgCMS8rFs71AIgOcr6WwvdvafD3eQVDM7yeouS8N2hbZrJ+FDYblNjIf4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66650179,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLA3ZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoYcRAAoPxe2hORAY62TqQ+2t3JM8u2svGmSVlheZM1nmcF2anbzd5c\r\nV/Klq6l1AtE46ggBoZFxZD7uehE/es5vue4lxvAAvHqf3TiyFnd8xKd4ZIys\r\nGjeFAdP8uiwUcpjqzoiz/kSr20IUYL0TdNinibHatFjuJhj626Kn8Ht+kv40\r\n5rLgG7PsJPtU1fnSMN3CIRe8cBh3c5FevKokwgXsp8eT2O7b8hETI+DVHVuR\r\nw+5gsro6GLyCCmWBbggXV94fNF/DDAPUu8tIv/KabZsfKGCQOWztFhvkOdl4\r\nfS9jTm58AmiHlGrzbLoU5C9PUEKh5URuHqdZBaGljyz6WqBpfjFXxK9ycgIt\r\nA1JHEF8D7VcWEbor5NB2g7QRdF9FfiBE1w55LFE5Kuck3ht1D/5FSuxesGXH\r\nyyQgzciDTAhMlm2CiWRxPneT3Sbt5Drs5y1xjEq4jPUPiWZojf8ZA0dfkEKf\r\nBAKHof/nieteylRHxuT5eeOqJZJ+DQgVzU1j9QUjkhe4aXwPezwOGQrMEYZq\r\noMk1I+gonjIPpSraJWibf8nCrrYmcm/qMolHi24oSskPi4mPMwGL3OEIcCOt\r\n3+VJvh4KyyhMxq1ZndhytTkD+D+xJUKDXoeLJV9IrMUp9ZvZ2s5iW/OuIwuv\r\nwKaMMs8J8eFDfGn4EkDNs6H7WDgE71LjZBQ=\r\n=qqpD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a9ecc675d636c3bbca697bc4881b019e8645a7a6","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220922_1663831512983_0.2819749232988493","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220923":{"name":"typescript","version":"4.9.0-dev.20220923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220923","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aa61bd7ba4c2ddac8abe7326f7a1377ca70e422a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220923.tgz","fileCount":108,"integrity":"sha512-BaTN9dPBZugYsJFXtoEFz85E7WsalhCrJT3IcrGj+d3LVrwVCOqiFxY/uNfhWkvJ4apXqjQrgiXiYxtPL/TKSw==","signatures":[{"sig":"MEQCIHHzw8m8MrgUgoSwTjp35RCQoRIHflIlg5FNx8cvRDmcAiBJn0IFxmj+5DH2Jx+LLQ+AWpNbGJJof1YN4ysK8dj3Qw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66654660,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLV9ZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoi5Q/9HnIzyItq2jKW4VxjLvWbbprDq2XZxwb5Fe/PftIfEqJ4z5Tk\r\nRMmByEMXyfjm/UbZ4zSeeA4xNfY3Axmf2smv+C4DXMGT/TZ5tmMzFuFdNpir\r\nrDXew7S5lURgbZx/+c8voiO/cES14wcYqZ2e3wVisDrXV8Jjbguxwd00sMm3\r\n3N6UZI+i/kLYsQL5CDLf7VNXkoI+QQUHVdRho/6k7zC6ZDHQ2dzPEjTF3bWn\r\nnv0qBpem5QP9Tsxc4KQB9IjGJW3rBDBsn+2eEblx0J/3Mc8AiFGvMU4yrD6d\r\nj7567oP9MNX0+QQuLfVCAur5+pgSuproT/iCz33UYukJIRCSmjUe5L9OzRNQ\r\nH5mWI5Jvm6K+L+6QOsoWP2Qe+pH201XJpJDV4J8GTK4ECnXsnXc1LpNUm1pe\r\nfxNhSl2DxWSH23hHgrlu+4VuarK2Q45/l0DVSPhJ+KWIK9COTmjtdz6+7dsB\r\naxsfXohfi5Wdcp6rEnwYFF14+vc+D9JtG3w87EZ3acUe9Toun1Bz4RbM7SLC\r\nyIY0w2oyIVaO8ggmfHP2izBH1bPVRxz/fh3uMK1FjQtPdBdNK8s0vOw06kjd\r\ngPWoXz+VWjz0nqZqWjuPm2AxeMxVSN5LSG4tuLHy7MFjGCgoWutHDgjZoYPS\r\nBu+4qrsyYjJN7ZBtyWwinjULdcKtfrgrs8I=\r\n=OV/+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"675302730b8ca525d47c910bf2d3174bd3b66a1b","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220923_1663917913444_0.06457870799664422","host":"s3://npm-registry-packages"}},"4.9.0-beta":{"name":"typescript","version":"4.9.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7273e836df5716711e8f70e606f94ded49c209c8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-beta.tgz","fileCount":5,"integrity":"sha512-xHjk9/ya9yZWWUQrAA8T1jXPxqcFbVgWLcbSlX3mFOqHeIeVqz1DLgj/dYSTTkFTlcnxltrghR5JUDhNIQ86sg==","signatures":[{"sig":"MEUCIAL818eyAIuJyHFAmfZKrbOe3TOvpOPugs/Ptkt9hRmXAiEAo5cvQiNSwuT/XcsMd+TWjyj74WySw2SH4l6yvG0qCEo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16412,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLg1OACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmri4w/+OE3HkvGZNv+eD+MMQKCMec+7e3+SG93sb07nuB/ZA6z+jOOj\r\ntTU1eYsBQG2XvN6ploBp0UMfLJ7BiAhmAa3lg7pImEMCeWvIUP6NdXy/AO+I\r\ndbX+aoNpRDjQdvIJT9Q36+p6TwHyTxDOusH/Jmvq/tMDtVG2f8R/dYMAyS92\r\nNecfBPnFkzvlUi2cR6dcTrwALQdMgtB3b47HDv2T8elCAg7VA4Sdp4Dz170A\r\nVbo7yAazEHXvFs1gGKfJyaCR4hIF1fajkEwluhUFIpehBXgk71fBoVoa21fa\r\niMHlvETOSB6zjwhHkvMlAC262zOXOBZouHZs+Sz3rRjCmwwtT7qfxd1VRwoK\r\nRnHqelTobevawl48pDm6SAm3//y87S030muySHgLtiGkBT9Y7ElV8eGKAHHk\r\nsZexrfJfOim9NgTEAXC9I7gCUKibwATrXAcnuIF3PxVLcj02JWERIvmTdAuC\r\n8pUxdog31vaeaUKV0EshxDcDUfvcVERh4XETFN+om0vTX+IsVID6cgPrwcHb\r\nbNSgiVsgnTwWyqCLvw/lCRGrYFuBhUdvj1oNGMNJOB4A6pxD56Tog5oT5RK9\r\nLSfAc3vItkcOxknsNDoxAiWApYE1YR+5FE1HaE7qpnZIANRARxMhLhNSD9HV\r\nlRbQwXx9TrcYQzQxsl2K1LhuekATkIqUDcg=\r\n=mIU0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-xHjk9/ya9yZWWUQrAA8T1jXPxqcFbVgWLcbSlX3mFOqHeIeVqz1DLgj/dYSTTkFTlcnxltrghR5JUDhNIQ86sg==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-beta_1663962446393_0.6219662106330954","host":"s3://npm-registry-packages"}},"4.9.1-beta":{"name":"typescript","version":"4.9.1-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.1-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b5fe1b26f2fe3aeb14790927b25372bebf351c67","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.1-beta.tgz","fileCount":108,"integrity":"sha512-D4c0t1+sMOS5Hy8DQsGFfEYUuKzolXhf+7e/N0Td5etBPflEYzVwWLBrbVgHpLpLC53OJQCtxk31+NWO2SBPaA==","signatures":[{"sig":"MEQCIHSfC6iMfX9KrsMUAyeWItIxcL7GK4Fj44H9IwvP9qXeAiBm50Nw5DtR6kolcc3OvAJxRwxUKAFSQGf3xFkVdug+/A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66654590,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLj5MACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmruUw/+JfFtNMc3PpjDKyYPP+zAnzixaf0lyBF/+TIb0pvEna/3CYdA\r\nmTKpHZ3XKIitaBPe20s1pc7tTYV1sBAOnLENkceVx4EJyuabYri/4f3PlwZN\r\nf8lTY/SdWbgP3bhermRqccVw6inx1npu3ptNWiajc1DeNyU/czy4fIARdkex\r\nYzcYHn+u6488OSRDBbiRFeLRzSclvd/OrpNhjDdzpabDJK7yCMPiWdurjvfW\r\n5A+rnFIa1KOnCUMPxF1VY/jySMmTMuvo5aw+JQ8e6T5KW6clnwrjH2FSvRRz\r\np4eoIemXB88v+sRpUsH3lLXayH8//HLPMUfwC1LpwLgYcK3ZFqo74AeOjkc7\r\nCslRd+HGf2kBOKAigCty3SPS+6gT7n2Kpw9tAyMp31C0X5x4CcnO071wa0eO\r\n9vI70iUJ9E506vn7Coe4WpFEIeydAsTtYgjVd3ppW0oPIHQE3n+x4WiB8hvk\r\nwrf2VNlTS8A2P6nG6YYuVRBrwEh/bbwdrn/3rM/uZjpa+sK5OC61izHKt2p0\r\n3eBxWKxZW8LUOpA/m2uwH8r3fVgvXuSj8jkGtgc7GD/LiJSOH4azlX0wxyHr\r\ngIqT5NokQdzL94KQN6cWaLrKtSoYClaNlq3V27ByoB6+FXB/VyTCo6ANWVzx\r\ndhULO01MgdllEqxg3rA4xMkqxlHfXPbULNc=\r\n=Qs5D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-D4c0t1+sMOS5Hy8DQsGFfEYUuKzolXhf+7e/N0Td5etBPflEYzVwWLBrbVgHpLpLC53OJQCtxk31+NWO2SBPaA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/async":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.1-beta_1663974987604_0.3247907828910339","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220924":{"name":"typescript","version":"4.9.0-dev.20220924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220924","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fc361aed3830240df11ab95bfdd2db88137d97a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220924.tgz","fileCount":108,"integrity":"sha512-s7VYYZby5bpb5kApyp0uDvC+/W/dJ73J3q6KM6MYekV3T2pnXBHH2ncaGSJPIBV14u16jfYN4qqYNqQdd1BhgA==","signatures":[{"sig":"MEYCIQCqeygjIMXJ7Xtjlqhw6XQFcEgmPEL+Et3V8tMSvGGU/QIhAKn/+m+QXvbnLUfhhBp6HS5Er/cjQjLe3DtRXWQcZgA7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66654846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjLrANACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqeeBAAi2VI2FlOkAwtmtI/6gRLGuHH4u6PECFR3j6WBIerQOPzwWQy\r\n2mv99ikwvLssg5sScnioCT6WfKMwMm4lUcPDuq8OMArhNyV5CMS5nZtVjdAy\r\nOzZr7Zjj9sfVgiEnWSzPL4OIShkDnizf7owpOxi0ukTjX5d529hboClhYY9D\r\nbYasr/ZiBpVxGiwOQgw3l7RHUnlK4nFj4yyHWbu00eOVpYKlSvil1su2I1Jz\r\nidsnmzpJxHE4/0s080ng0Uvistdss1aFGl+nq6SZTwR0CFMqFQ6/fIlGoPpF\r\n06XjL62A+wVatIp9txGcwOGTnkrS5HTzf52HFpDwBKahUh7Y0Q2pmjTKXzY0\r\nUGaYoDa58J1EV3ri+XTTjtXIRgCXLThzn6+U4QtRvAAo8l13xd3sJSik8R3B\r\nenWWzsJjdEZEBB6AN01Mn2boQL49saRWiruDP7N2Ff9w14X3leQpachzmiON\r\ntoXjhC/IvJIk5zm/5AWulzAZ+JYBxfvfYerD6Cwubysd/u26pSWdECUS4i73\r\n74CgOLsUBZ4UJ92chs2PlRmvRP2yIQTuHrKJFo9yE13g9LODyLLSG/GzIZp/\r\ndW4discgGxYuaPXNNmXwiqJm+6V1063UcX6p7p8gsjNDgLmeVWvEw8LyTeRB\r\nvMvDLe8h7nZiE8pZMBc9VtU2FpWT6318esc=\r\n=T8aZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2a91107f7548eeb5e32673e76277d27264ea88e2","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220924_1664004109520_0.508139839961181","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220925":{"name":"typescript","version":"4.9.0-dev.20220925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220925","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"122dbb4113e10797d11944b698f9f1b61989bddd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220925.tgz","fileCount":108,"integrity":"sha512-BP64uQUzo4GtCwE/1wGfSAn7EyPs1JxjvbkJdfEsj9KGizzUN99u8VrWFOxnqA4PzWFIA/KzE4PQHXkRPfoeRg==","signatures":[{"sig":"MEUCIQDJ2rrj2EwmzRDERFhi3CbYBr+bA6GdJHWyierHDVhlAQIgBAOWQAn8A9cbXYK1jclXRNFjahCksk3Cp+KiloAZn7A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66654846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjMAAUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3iBAAlyAADfTCZF3/cpvWRdHaT9kFXrnurYvPcJ6aEcesBsLjedZ2\r\nkeJRDxfzHfVg6lhJ8pVP4H4BQJjcD0lZdwJLqO0mt0FPQ9Uecm6m/fKaxZxX\r\nV00j9dkwejN/A+2ceSTGm89ojs80GyXKKNXWWq5mW36K4Z9W+ze1Saeh0KzH\r\nWtv5MufLAwMF06Uvs9NVukGkbzmmd9IKWYjj9RcxtYXHWH7oXamhN/3uBoT6\r\nHAPsSzTj7LdpI8+TKW0DpPyDPvz62dg0BE3Gz4PyrPOct1Ne9z2XM4PFz73q\r\nBEr1ChNQ8wedK6JnIp2ieHCjSCgi9HxwqorFaFCbnS6vO3bAJItQrI5kh2Wo\r\nWHVETwqYolGjlT2kbX6uDF+qtK44bdui+tg2cCQupr31o5jPV5BS9MPYOkKi\r\nitGXJU5AoqpLMlTIlqzMI3ZD5l9WA5zm4cUVFsCtY11cM6EmZvMgSqv1sQEn\r\nWt8CjflaTeOyBwSuXhl50kOTGbRIhtcskBxvEqGeFsLLVNJTOfbuosOZ/vcT\r\nol8hldbyLQ5Af5y2GsbafIMzDAo4cKpXX9uXE7vqU2LUif1TGiY5O1O9wYga\r\nkpkzR5N92EsHPMkIHgGF/X+LyboCA45ssCJMZz4Vd8tVJuuhaSAXH6soEcY9\r\nA2MUft4frbczTKLSN29iBr0/0kDz54yv57g=\r\n=WGBO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c100c6488db0482dcc1455290f456dece91cac0a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220925_1664090132000_0.4435037669823878","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220926":{"name":"typescript","version":"4.9.0-dev.20220926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220926","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ca7dbb02834690e2f86c41bba7e24bc4cdc542c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220926.tgz","fileCount":108,"integrity":"sha512-qVaJcyFDfhnHB8Yi1jVMwsgO5+cy6J/Z8tjgsyy7GIREvoGXNsuD5dRcYYB46sLjFN/ieUzlmIw3WVxYMc/nPw==","signatures":[{"sig":"MEYCIQDu71cbxYn/WvwLPt572gdnnF7GBdumS29MOC7cZq0wFwIhAKEwE+Y+ihVihXtEAFSuzsCok3b9db48ANf4FxGDj0Se","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66654846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjMVQeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq20BAAjYXW4Od7xGcLbStq1t+DnlUQKRnx/izhWyoXnKiQSjeHzggi\r\nv2bxfGnNoAkG6yrBiIgG/jjC8/2oWMjZkAcKskCtCrbnt8piTjqTbFiqa4Rg\r\n4xtFCY+3FzRDTHqq8n5jIoTnlGIMBv3XnFUxIiK9tkpB9uyzo69d4nNtK8f7\r\nwwv80KS9mkTVz9sB0aKsHbUtzpslUk0y7RRmhmCH/Bls8Pv1tbySiUp68E+6\r\nWJwpTFJAlYEpqYcKRZLmQ0HS3HZscUxoxezsm957BFcU6OHm8fQRzqGJM+B/\r\nKJAa0782xlXRDFmXSQD+PivH7syFvEAdRpx0+qAOKvN8/h6hK56oQ/8GSDw9\r\nZkAIbGvTmZHbBGGNwzrvtXtCrUxca++XBM9qI49ku7QdEpRt6PkrnxTZ4Oj0\r\nf+N50wnnH2OXWhRnD15MdpFEvRe+PfKX/uhYXon6roemdET1e9EoOGAWXCCL\r\naVJrKd1M/ti+AOx0sXE2YIOmbaSDn39N7I+DbeJCXS1qjvNGBAmFpM565IDM\r\ny33q3MJM1KjSRhTMq7luUnZrIUcxR144TMh3tCMtMSvdHz++TQBhkRbW4I9r\r\ndjojgN8V/G/1HSEL/wJPfavEmxdKmMgkPoI9lztIQ3CL6NwplzK9LlPKbjk8\r\nQgi86iqCHnEB2CjbncjnMRw9IHGAt13UPHA=\r\n=ac5b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5a10f46c0028790120cb85c826efa4248707a964","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220926_1664177181883_0.2992332431250999","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220927":{"name":"typescript","version":"4.9.0-dev.20220927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220927","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f29f6fa5e4ac37cc8ec386604f097459cd0906bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220927.tgz","fileCount":108,"integrity":"sha512-MXTYXCsE60y6eXtLu2aAgeV0LD/e5HCBPPRETcH+UMPoVusk9RjJNzj1/9gkNRryIoqeeL3w2AlxYHbiHPtQog==","signatures":[{"sig":"MEUCIQDBksOIabTSrEbn3boc1R42YV2pqbNqHVuGIy/xQH7diQIgHCLuto3NwJVq+yXdZB2aOY7AWEqLWW+6a06YN2Exil8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66660638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjMqYZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2VQ/+Mt4qb5qOI6mm3eSHTFw+SVM2nmPlD/CV+P4Vo4Bm1zUgyiHB\r\nsWkuI+MWvHRXHkOY1ZIEwAu5oP5+dTEcKsrrVAFvpI54ZJaclsSTdw36j8JP\r\nPDVJ7XS0gNBCnwLP4Ni6/2u12rOdcKEXBW1drjDEOJlGejPzfDSuSMU2VY2I\r\niLLstEQgt5R3qQnJmKBWHQ/oA76+y5pfaFeDqvOXdU86hC8MHPrKXA0NQbLn\r\ncP+jzr74kuv2GjPYsqFi5RoOskb71/xBnCEd6KYHXDxOQDmbBaxHGaKPHdEM\r\n8T3r4rDMx9Fipw5K2V1uYoYwtcL9UKeF/mIU/jzR+UIPvYgkfTOgacwf9VHn\r\nO8lXhyYCzRCfbNqZQ5QH9TrjymKENTgg3dmlka8op1xoSMylTh2EoWyHMwkY\r\n8IVIUBZKTx86trlFKnbh+bNZTspeTJOs9Sa5hL6DrYhv7EZJqVq7RQb1+X/U\r\nLNiPUujTPJ0G1hgVR6yYDSWaPH5SAmxEt3tKU0QVVibO+LZyFx7UbmpMDRfT\r\npFMZz0mEEElJfgInll3Nf7gWfDGZAXjIWYju3qdYOYOpLqcaVByDvhgyd2P2\r\ntn8rp9+uTuoGU3+dsRe9TYEKg8b0Ek6OC4/M8lh+JzG0hP3WYW0N8KUOgj1A\r\nzwgK3w49I32e5mX2ud5Gcnt+NxJ20ucbIvI=\r\n=jQIV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"63791f52d4e7a3bf461b974e94abd8cbb6b546c5","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220927_1664263705445_0.09536791781317966","host":"s3://npm-registry-packages"}},"4.8.4":{"name":"typescript","version":"4.8.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.8.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c464abca159669597be5f96b8943500b238e60e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.8.4.tgz","fileCount":188,"integrity":"sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==","signatures":[{"sig":"MEUCIQCL4D17c70Qi5uIwvCQ26HJZGQXgV+Ik0aRXB3j6H6pkAIgZ2lxz6TjSpG5za+aw/8E/1yZnrf47eeoHaTI/3xNOeI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68761436,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjM1XuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmonvQ/+LFo+0M0t28yZefEkdr/JebQbgUv6bub76AykqnwmnZQrmdge\r\nQdwHX9neupALEmqJM/T50xZ0tPRzh59L6tis27FjF70dTGe+zWZlufzx+ixN\r\n42uQ/IvIpVFmUV/dlizPeAW6slwbKa+ehhxkqdJ8wFRMqcTdeEDBtwLhmEBo\r\nMhCzTO+QmBuZdsRCksocR/1vqACoO6GITH3oMvaogZGBU1uzKeEPUskdvcep\r\nb99xtoDrix9toPd7voCtPpnMd+QL9ekxJ4z8IVdSdTdyfM8BgZgyRszjH2Ef\r\nr8e0qodlOqCT2E85b/hLtOB++s9GcAWG+qKX6qmmS/NT9JibPGtKvvDcTY3j\r\nET8l/FlOrSEQ+UxHLtxDGkUkdpaBn5d7s0wxyRGt0MvG5aUXvQkT0rbVJej9\r\nEMGqCdMs1+DC6wWd29iCL0xoJX9a5OqyvY+pCmaRseoNeHQ6+kPZnQMz4gnn\r\n3PX5wh7baBDvJppQrf79Bc8VigwmTGUznHmV/fNB9DbL7KIFYq8IBvlYPDcI\r\nFwpwZ9Dbi6jVosyfAL2HFC8tRoet37Biju63M89t2wMfGOfXz6Sxv5OGd/ve\r\npj/CjPmzcaWacYVh4AZL0/EXA0pyT03SUEzlA5krODvG9rvOR2lJvZiM2vvt\r\noP6msz7GTaXQsFxDqY4q/K0kQh+bsStguO8=\r\n=lqIP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","lint:ci":"gulp lint --ci","prepare":"gulp build-eslint-rules","pretest":"gulp tests","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","lint:scripts":"gulp lint-scripts","lint:compiler":"gulp lint-compiler","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-QCh+85mCy+h0IGff8r5XWzOVSbBO+KfeYrMQh7NJ58QujwcE22u+NUSmUxqF+un70P9GXKxa2HCNiTTMJknyjQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","devDependencies":{"q":"latest","ms":"^2.1.3","del":"6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","prex":"^0.4.7","async":"latest","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","eslint":"8.17.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","@types/q":"latest","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.5.5","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/minimatch":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","convert-source-map":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"39.3.2","eslint-plugin-import":"2.26.0","azure-devops-node-api":"^11.1.1","eslint-plugin-no-null":"1.0.2","@types/gulp-sourcemaps":"latest","vinyl-sourcemaps-apply":"latest","@typescript-eslint/utils":"^5.28.0","@types/convert-source-map":"latest","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.28.0","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.28.0","eslint-formatter-autolinkable-stylish":"1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.8.4_1664308717510_0.8807083896145806","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220928":{"name":"typescript","version":"4.9.0-dev.20220928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220928","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"147d41e1d05cde1bb4c63b2a24ff3a87a51dfb2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220928.tgz","fileCount":108,"integrity":"sha512-6hidLWDJy4HwPovwzGe0tGhTosozmSRNmu4BXuzaWSS1Qt39XiWvND8KYhOl/C27BnMw4DlTSzUh/LDTpqNklg==","signatures":[{"sig":"MEUCIH2MwQ+5ZIqm8Dn+s9E6WJjX++I/HLmLh3y7Na2BhkDKAiEApVXd1VoV6aiap4NK9rHvWgT0A4LQf2LyXCirs/fVNo0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66668477,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjM/aLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq7Sw//StJvFPU3qClom2+jkvYIwHRBvqxwaH/ZHnM5S7vyS85DqFcb\r\nhAYm05Krh4Nt9OQsKGeSeFPpNJhor0PsA+bHT3omMIlPn/igAax2w1b0x0xO\r\nWG7qO686CBZa44aXSiqMSYqBq/otSjmDP2r/Kjh4LQV7nbdcNwjJEzMR2/EU\r\nG0uoRKfgcnfioQRgME1gAbkmgeSSJITA4nBevTpBfzyEtD4OI7syNz2mD9RC\r\nibZpGrw1Y4sdgviOc9NSToU+Lyjg8rd0fQ6/iqA+vj1bGo9VDA2NJpFLPp1E\r\ngeOnaqRwdFoYOlSb3T0F1mQN329ce3VOolDsc250sR9R7m8LKxkS134KEQe+\r\ncc9XqQzHeaJrpmK6Rtz18nc3THOoOAPyEOQBFPFvhvltEovDl4cz/k/sekk4\r\nQn/wH7ZhxrFoDT+ajx0xUEteVrsFPAAUDmsW07KZbIWBtMwgJG8NrgVngMNZ\r\nL3xu6s8ONF0dIeXnhCEDkjlkpWcq33LEIZn8TszPiHps/a6LjAgaHuldAQsc\r\n6spRXHfavToShO2BRpbh7Ut9LjpU10D6GZ8iWbOkbYH5j4Eq4edpbcEI6deR\r\nNQbPRUae4Jo9jUkJZX+4RKF11OoDMtxGNejmKs5+lTFnxfQVXkxN94iizLzu\r\nv/e24a3si5VluY8iHzgHpgx02j/Xp6aFdqY=\r\n=b3/e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0ac12bbe7a410238ca992a42f41816a97f6906f4","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220928_1664349835252_0.9140545543474552","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220929":{"name":"typescript","version":"4.9.0-dev.20220929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220929","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"332e5725233ddb40668bc649969a44cd2c08ff60","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220929.tgz","fileCount":108,"integrity":"sha512-D4q6Fx3w/u1eZH22OgSEn2WZReEEUNXtEUWwpKi9sxvS6db58EHUAnUSz/uFD/RSlyPpgUNM5Wg/Rb4oqUiMvw==","signatures":[{"sig":"MEYCIQDf5fSseUxTXmPjJQma54/tnJJXR1mKSXlnDSeBw3sRxAIhAKL0umikkqLHpx7/dp+TzgdwybcUo9ruY6IZpiPt4xrE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66676276,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNUiCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKwRAAo4m3jKljkWFfB+lqptS0elT3As88Oaa//8gDq8g5pXqgiDSk\r\nsXoMQ9bMXY4oLYaOpV5K3nKxhY1fETQlylu9xi/Q2vKZjzznoh9zTCMOTvns\r\nA7ACQ6dg5wE5i2cS03fvoi8Wy+pkhWOHErBwdxnufEGkrRQ5UwmoUw19Opmf\r\nCxM9r2uvfKiA4FdY5Hrw6w4K0FyQL3yN5Xh3AuxBA9bUD5TZhC/UmIJX/cl6\r\n4Zxa1gYwTT26ACrDeQDD4XucnahUyCOo7Pzpn8aaYqBvyAxI4Llf51XEd/ci\r\nucjkQUfwHHB8FG150p1Wiwtz8b+7MsNOu6l2DNUBq2FUA1egnFDBqiWszoii\r\nPe64O/AkTUUYM0UAC3GTYYS1EB++27oLNgnkG2+5nMPVkuL6a9KoBLs/LtJX\r\nQeo7uiSZJUmH+tE5glnlyVmxiSMhMAGr5F308YKhuSXVWLgfuuFCm0dj8e7k\r\n30kCmAAGmwE0cnulcsq3dMiAE12fiDX0InW85dyREf31mImJC4N3FMtRKQnm\r\nDIfA3BjjU7intZrwA8kgxlMPEINIQlawXkgHSWhrefQ3YbbFNoqfPfC996Al\r\nkz4icjQqqnWeefcxrYEWni94RU3uqR3sUwVp1paoywfl1WSeVJ1uHBoL2XjK\r\nkbN6+K6ZqAZWdqkEUVTfBeasek1CnqNcvFY=\r\n=EEIW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9a83f2551ded0d88a0ba0ec9af260f83eb3568cd","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.3","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220929_1664436354173_0.16478322262500966","host":"s3://npm-registry-packages"}},"4.9.0-dev.20220930":{"name":"typescript","version":"4.9.0-dev.20220930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20220930","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d43608184540fd195b058f9633e9198bee8d806a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20220930.tgz","fileCount":108,"integrity":"sha512-rYlFj6/BJohmUALnr/M54Ch1YJ5xgaTZvGKvKbk2KI0wnwJMr62dKv9DD9YUUGwd0VPVPXj4QsTOY1nWk21zVw==","signatures":[{"sig":"MEUCIQD/QJaV8k3GOe//e6p0s5xHN+zKE/c0XzTKZkUFOAawGQIgMyssYczdVV4sqT273R6UtSavsfDoPeRMW7RElVNkmd4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66709110,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjNpppACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoWURAAgyq8N8uJHVHLfzPfHgU33kuwI7KwOvkoB4mGBaS0eM2LsFXP\r\nZEmgmifbu51kmI39QT3fIbe0+u/JplPWFVTLqL+RrMHMZcY1UcHMJtkIlWTw\r\npCkmQNTB4SZJy67xtiws2O+2LZIsQ7FRqOAI7CMHWtO0uCpucv0F+ca6j/JI\r\nxArCsD2d6+pM7GDJN75CqU9b7UqfPyknww4OMDLDWqfNno/3Y1AN2QgPa3te\r\nfRgXJEXYW2bSWSn8c4hkEEu1MzvqkuVIyJ4GkZ4wRwNM3QVmSNWa9K7/6osj\r\nEb4cQZ2DGZHhI8ev6KQdEDTmJpmm9W0DPF/1UbFxFo3dqPTrjnB2Qhhbpe0a\r\nHb42qEleC5XYl+Favh16lzB9xu42h2IX1831kV78A1Fb1RqnPMAczhOBQkRB\r\n8MrBovWv72fOgC8bIp9QSV55j2/ox6+RSAv/ioxdDhrp16AyroFX2P9uQiH1\r\nERhUjpBq7XVJHoSsCWbnKhJ8vYIETfJZD4XHVQ6WVtE6+F2lQ1/cNNOrrR3U\r\n9AmMTpjKd+0oG8HlccVQ/OfSLxcrVyvNDC+Fknqz2RX2sOrqYhzaKlmbPtQg\r\n/1/aSSfb+XXHptvYmZUFOwJDyPlb9M4FklUBExQlL0J5g02nD/IzQ/2Kag0T\r\niDnLB3yEZiGN1AUSJRDhYcjuWxrco2j0XqI=\r\n=tm0b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"58bae8db69b275a3efa57b14b486778c55185552","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20220930_1664522857009_0.16652515172293447","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221001":{"name":"typescript","version":"4.9.0-dev.20221001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221001","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db83a292f9e38c736857c8c97e0cd8f70919edb8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221001.tgz","fileCount":108,"integrity":"sha512-FpEHIJz2YHKbWgSmEsR6sZaFSEf+f3r89oGl8L+Elfin97XC/gPZllSUkUrc2N53SiMb0RS/U/QXbimMAXSJCQ==","signatures":[{"sig":"MEUCIDZkfPzcLwEo8JNruNPiOKMcoS4riOsHv+oZr4cI182eAiEAjd70pb+H3j2jViQa3bXwAJobRsF83EKcd0ortRQ2As8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66713688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjN+tTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQUxAAhEMpQnoRc3H+O0LgxnzBh2iG4eqMMvWomFdseEMJxocJl6ls\r\nY5u7KVq1mZiKHIAt61WVBUBBShMegJZNXEu5EksY10qI/V9VjVAIgXbNLwju\r\nWy0Qf1GRjVkL0e25CMXwqTWLp9vkWsFLmbWGySPU3a+ZFukfsnNIImkApmWE\r\n+5kuK+5FlMMBaH7EsEHV+aDng9rnORNQRh6qwfbxa0rOSAcxe9I+am6KmEJs\r\nzZfAu7VyLdiqDqmFzZpKGdplSCGMI6dQTrMs2mxaOqyOFGGkk8fqoSBDW35s\r\n0RWX7CxxEHW2JPbKSL4/O/XAh5G+tE7SPaiz9nKm3r//LgcLSxwnPG9ukHwv\r\nh36gh/kpjfVR4fBnxTOyG2XTUusPDk2/tzHsZM6/hvh6bTdrb7NWgfoukuxv\r\nD1eu+DamVHw/bfj6DRchDjstn1ep8MGfM0ccPPJv0Zi1kTbs5r7ko1gWbLmQ\r\njkilEt68mmtM5NOnGpnSRWpx831kWMRvZokDXfgJHOuDH1DKImJRQiPHN4bZ\r\nqeMmRsku4IRPnsotF5gQbuiLw1dyCGnvhsJWctUNJq6tweq9Fpho9zk7n9at\r\nrYfzEdaKHU/rsAk69yP1tLfi+jMSEJCjkL8qzNrTTgO90OXXVtebjiKecFeI\r\n7QBZQprXNn8S0Puhvp7cFC0x/I21Xegkm/A=\r\n=Pixx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8a1b85880f89c9cff606c5844e8883e5f483c7db","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221001_1664609107076_0.05969008478280924","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221002":{"name":"typescript","version":"4.9.0-dev.20221002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221002","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"565656e7287d28503adde73ead85087cf944384d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221002.tgz","fileCount":108,"integrity":"sha512-WX8aiDOo1NqR6/xssEOmMeFQAWuaRFQJsxFadQhAmctWXzQG0Z2WU9UEAa7heI9wjraOiJaLUTM1Ti8+WwJb/w==","signatures":[{"sig":"MEUCIGk4tv7lK2Se/ATyyeeAFzG4UuM9y05SWhzdicXkr6HVAiEAxf8aBVWpj/BggPrEiumTYyjfL+ShcDj9tFrTGpStHas=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66713688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjOTtgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmokbg//RMqvXBdb9MNkfhC5hbvnmwTuQzfu3Dkc6rTV2BfMZcfN2uZw\r\nPkqrq/ECIN5Ybri9GfoYVK1rlgroCjB6iFiXmj+1PFTwiL7HoWgdyvplC6B3\r\n/Ngb+/1W7uhCLpMt2EBxmqWYyZwdphkpwYs4sX2rDKz2I/+ajUsbXk92qfPp\r\n3Tzq5+r9j3yW12nc4kRL/6hvIDE0l/b1Mo+8z2UXZGIwHPdUcNoeficLt3qU\r\nsWdJYbnPrXDGsPsU6jZu6Abl9w45iWRdVo3518u4bfaodPh5ktNv3/umpyLz\r\nQIV7jhD5UA/hvETCB1vdHxxBZopesVOTxswvcgnCnLloCwt40OGKXHo7xK4f\r\njfol8mL0Vo0AZIHSsFJGSYvArXvdOX+Y0qwVdNGhnotJwpbw5vJMYIVxKM+d\r\ndJGje1NRtyZvjP1rqR6WEaF/dUuK4y6fufgXnthkR06YCnekjieyTrpGkXBx\r\n4y8oX2RhzB3L7dhrPQMCc/jg926yrScgKOJPLYsloL7aSjWcidxOQEUFdCei\r\n3W2qkQDd/+vQP+bo4l172WYygRDj1VgoNdxPbMM7SzOxhjIoDNeyjTq5RhGi\r\nVBzZWimIYLcx8O+mIwSzjveZpbvntaQj4IUooM6NUT712I6WBB9MvEWwF5AI\r\nnYaDz9lNl7T8g463Lvm/KoAC76OQzJnR42A=\r\n=PTdD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8a1b85880f89c9cff606c5844e8883e5f483c7db","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221002_1664695136591_0.5466719883539994","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221003":{"name":"typescript","version":"4.9.0-dev.20221003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221003","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e934a2cae7a522bea3b47ac946fc018fa25f151c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221003.tgz","fileCount":108,"integrity":"sha512-VnpykPljJAPfKMPEKYFPLIXAltuE/+H8e4MFqZ/DJugrGW6JDVphIr+kbVL061cKJKDB+vJs7QuNQXqkea0AUA==","signatures":[{"sig":"MEUCIQDJrE3M876d69fTAqLvzTUyU4JwRpnLHn8pQwUnxW2zsgIgdGM3sv+Po6uI44Syyi9dfARBpWxSOAmGevtgsIe4Ryg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66713688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjOo2BACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmouLg/9GNsBm57ihIR7ZZAjqMksMvBQu+pE5Nx+H6NQpt5b4653kBWs\r\n9saDKdkGKUvNjqlNX3s6RbB6yU6WkjA9lkk0PJSlUWGgVoepzgAt1w5K8w3a\r\n8qBWvwHew686pCoujAlT9nULuzfKmPBMgmoXCXOQRv0aFaqSGPWKCVzDIlC0\r\nFgx2ii+hs+ZoovDi9YK2ixrjQFckI1pRvHv2CfEEPZk21SVz9lungc3EMT9w\r\nk39X+QyfsdzNNoxuFAnlvLlYmjOiOrqwxC0SJp1ggEMT+Kv2EIqJ4MjuiqFL\r\nVJ/B8zzz5fz4VO6Mj1SUmq8BYk//2FPc+Y7W3qJpfJQu2PSGtPwGN+284hds\r\n8pw+rt2GWtHuSIGW4F5I8KR1ImcdycYWnx4PoDpXAN739WyJhs8SdHxG9mo5\r\ns8qT8figBT7wRFxkH92IHVynIYoRaRNlSEZC7+W/YP7a9ujsEZwQtFKwAn5r\r\nWgi7feqpKYOTQ0gLr2aR66EzRhiNptouYY9snkfbs5ouxjrNPSW4msNNK0sD\r\nTXTLh8j2vntp9LlTqC6r4pz2peok5xEYelQMGqlCIvRZsrwQJzZRNKz3TfQz\r\n86kdx0mekU0hvmSEDjPcgkUnURgoeg0y11B0U69nEvfdB6cz3akiJ7N6CoYF\r\nHE7L1WHTUJ8DLy8rdNQOT2wn/XDKexlEC/8=\r\n=ZCUT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5cd49f6cbcd2effe9d425dee3a39cb49209bb656","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221003_1664781696754_0.20424972404403707","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221004":{"name":"typescript","version":"4.9.0-dev.20221004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221004","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"200be2dad090e4c28b82d94f4618346ad16b0f11","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221004.tgz","fileCount":108,"integrity":"sha512-FPgB6PfD+nQ4Sv164FSNZU4LVHZ9gbVVzvYY+mJmji6ORRi9MsX3od1Upjx5V5Qm9BCr2LeI18UK+RBkbMR9sg==","signatures":[{"sig":"MEUCIQDA5Dk2M1cLrZs+EyXRTFtW4qY+zGNY1R8730Q6iKliGAIgVphVsnQdQl65TAXA14OzkWrE23JL/FQ77XfUTwOI5rg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66714901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjO9+lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsOA/+OlRsf37omyUSfLjfEMKwG37g4B3Uug1ObGgtxrlxRP/6jbdC\r\nnubOhpw1JAHL8XrBfK4iTOWadkYMQxS9dYdr506mOsgpqHYZz2jpAXpNsUYw\r\nDpcj5h4EY2d9uwbTI69WlF4bYVRxiOyT2ospPPHgjVQ/lkso1Pc5MEW+QGRT\r\nrOpXvnax/6D5+AvE3p26e4owP/NWTa8SM9QP2jHTolJTlNQ5boJ2VcRkyyjL\r\nQYdo/qm4WGSmJaikFEIgwcLckDSfO+Gubp9HgOmYpGkbZccDyVjkLuuu1+9g\r\noaE2KnaRtsTZWns5gH1KHMO7Ps012YdYqpgYa9eJ80vXioKO58RNtsfGxVW9\r\ncOPKAI7rbK5zYaAmL2TKwjTlLxCmm3y9vFcB2penDP2Wq1oxcFIOkJIILFI7\r\nmo974OS3n5ILqnHHm1OKJNj5BRejiLy46L3PT5RkaUhgjA9v7iQFwoXd7gRF\r\np2UqXmLVx9R40z9SsHkh4VNdnD28DLOZy8Pdv06b34wSQeE9v+J2eaawnuvN\r\n2xyA/xwC9MyQeNxrlhxAG2LvU4idW2xLpRpWSrtGeXU42lNwJRobeEQYF7HM\r\n9TwOJQH7YDfURJjUZgNK+fauKFreo1VzXRbhgzyveZmj0d91d/Fq50RlA+ko\r\nZq6qXptDI5cWlr/tV0YSpSiOhRUxcBg8XpE=\r\n=Koyx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4635a5cef9aefa9aa847ef7ce2e6767ddf4f54c2","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221004_1664868260652_0.3346832185947919","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221005":{"name":"typescript","version":"4.9.0-dev.20221005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221005","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ebfb29da9c5b054736ba1e00b3d6aaad49e0228e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221005.tgz","fileCount":108,"integrity":"sha512-uKa1ioEqENveT1YE90O1PoX27pdr+wWvKOcpGJaDNninks4m2Ygjj5ZcHb+AKuqdc1b8A39EvSZDWSxXky9F2Q==","signatures":[{"sig":"MEQCIBFmcuQpCLcT1/hBXnWIRYhY1xPmI+LFT1QSCYYa1ZrHAiAOZX0BSvNDUMvANm8kMTOWw+1u1vpPbg/p8M9g4Ogz/g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66713199,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPTEOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpBBRAApJ8NOwGscQYk8s9PXTPF3C6BSLTlTBqgi3VaJeMej/VmAX2f\r\nBl2HFF6e+eZkzEzLbylnqoQpMH0PLhP+PeKBOrMASyGfGDr0hLoADaY9r/n4\r\nNh4JOCK/ycXn4WsoqT391ykfIZHNhDkulbeB4+fWQy3Qz6XWOC18IsRZvkGE\r\np47EmYKyCVdpsIt/8utd42NBi60SVeZRxBUkf2nI6Fyf43RHwOJP4+PkmlQT\r\nFGXaKIt1mS7E6sDw0ZxlwKu/5Rqmc5xR9QjR2JtD/uMkOvh5ZZI0scEwZF4M\r\nfkfmHKm2DVkRGpoROTKWFr2LMEO4lnC+mZKKXAJMoz9H66YHfxiV/BSa+hZJ\r\nPNaPU2XeeCM512GWIQDm2UVgRTU5GtqqOxjN75T0S4GWe2g63qUJSa+tCPf4\r\nUv+PHdgVfrnPc7DMGsG3chcZ6Yo4QHkQGx3lp6EDHGGiNfkOarN1ICUYvU2g\r\nZDI0puDACZk5+1Km+gAXz3ma28P4EYLntc5bFbmyTvxiBiXYxgXFSGjTvB4s\r\nmH8U/vM9iwN74PYlATHELUkXQfsNgntdMmHwcz1HF32ctEN289i/lfPD1P7i\r\ntww68bmPJXu4O6/8xpxlarz03rSiJu9oNGhn708TvhA2WRWJmzJKaIoQPMQu\r\ntqh3Hdq3mjVebKxU+RTIm1UzvHudjAZNgF0=\r\n=E2Wy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b0795e9c94757a8ee78077d160cde8819a9801ea","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221005_1664954637623_0.8590043562295095","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221006":{"name":"typescript","version":"4.9.0-dev.20221006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221006","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8469fe0ece3955679acb185b21b4b768b8360b53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221006.tgz","fileCount":108,"integrity":"sha512-zX0hqlG7LdZd5eQFyMswcMYUNKnJAOghCwOkeIZcleEUwNIMnRiKeYx6NHBW7lE7k1SBlsCpiTC6vqRHrjv2Sg==","signatures":[{"sig":"MEQCIBa5IHktISYwYS7ztrkw5QZYZGzDNKqxpksqY2cDmAmyAiBUAlLuL/yT8qug9zlNsI9W8IC1ecFfApABfUEldGDA2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66713181,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPoFjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoDdBAAlQk8YLDV30uOCZ2Z2xj/Bt/5lK4ntP/BpHlsvATRXXbap38b\r\n4yzk2swoftj7BFBOyaeYGKXEmvfX2apRq1/vxASwPjMWPqQU3GjrEjBoDMpL\r\ndO0JM1h8ceSrnsj2pDQO8KMavHWHGIJwrSwSC9SyAa+XkUR7SBKubYmWayPp\r\n73ZnZ9QJdcSROZckhQkRiiY3d4oLYiHtLBModIvoZyjTsJsu3iWNDqqR26iG\r\nxs9fqPFVaMGcgpizo7H+ZabV1Z2cw3q4b5SWXPr0flbDVvxYf3JH3yasOnL7\r\n91Pf6TGEDy+Wu3aMKGMu/C+FZVGpaYszKBZT8Z+IsP8UVFzOO9uZzAnLTiWu\r\ngi1UlNkw+yRJSwlRrxSBx4WWza2P20Xyc5bHkGZc9RJEtj8BbvmETqOLtdy4\r\nEoBcP5tCO0W7SnqcSIs2QniMa7H5sVHVM5KaTExUByy3VM+Ag2aAxrl/oqEj\r\nbNZLOGdnVWAeoSeK32ZS7Dm5F+tGd3UKapOvGUE6WSHxkH+m9y+X1mLVocC5\r\nyFl7aeIzujVFaqHqG9cDH6RVtGd8gL0Bv3MlvKzbPtXSEsOZk1qPW+pw3FrY\r\nP5ScPYqJETsbbQPBW3HaedMEZX5aEwJGgaLVUUVUt3jbNPADXJFiySHJ00uI\r\nRJS1RT3N0VWWgbQ7j3ktl32HXicQlIwzANQ=\r\n=cyJN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c18791ccf165672df3b55f5bdd4a8655f33be26c","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221006_1665040738751_0.38883915022587856","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221007":{"name":"typescript","version":"4.9.0-dev.20221007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221007","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9225050fed5614e536584f5c36fd61e72be6b266","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221007.tgz","fileCount":108,"integrity":"sha512-WUWBISjoFrMbCYj2tTqFiivW3dDNRLHIXEAKj26BoGYjbperB4jSCyrpTo45FNYcpRM3viCU4Tie8FruXAYZRg==","signatures":[{"sig":"MEUCIET+dY24Z/rKCyeHUQe63Mfzz2SEfSKoeoPoL5wtlp5/AiEAwjVSZVWnOycn+Z67s/NR6MjDiiV3iYlld+qiZRRpBmw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66713136,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjP9NbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrHDA//QHRTXlt5MmWnCYFjca4YU3hAcKfEUbTX2NxVEELnmmvzkCZL\r\nX0ckRFx4djH9VgA38qVfrzv5sNOf8dLd67S/EwJuGd1vn/zWXZLQHdxiDJOz\r\nms3zWBTv74qe7JIziaYQcg18dLuc6PYzGMpiIZrYunLjANnRmOjTU+FzVHKJ\r\n2D7/ik56sxgYpuwcybwhGaEyZcPanXQqXZLPy+vI6nHlK2UmYZuzrA4aiXmA\r\nc5SyHIX05bm/emSQqdf5sWlKxsHJ+mBx5IRI0jJbXDfidCnG/7Re/AnmaXK1\r\n5G7Ymj5fbm+z15oVFZU1wRVwECWUsP6RQsf7wEn1A6W46phhILCPn0ONKZwS\r\nCNEElGxE4s1jwTipsRuSHBxmy9fpdN1VvuMZA0sP4kKkgNPiwd0+qjja3/4L\r\nXIeAagBAPPUteusP/Oy0BWQrh0pcWv9p9F175B3wMfHlFplqnod8aUEPxre9\r\nWEd8MVND6XYy3J35nkm91LnNsSDoXAGuMKBTAASlincEXcNZomOKeA0cx6jy\r\nCz5lJgHjFb+OedH+HMCtbHnt/3pTQJZUUTE2ZczY0h5wojCkkUMydilPUepf\r\nmDXcLuhJn6+8HcIrVYl8ayFtnmbGLrkSl9Z0x1sr8qOpTZTQWI2fDMYgXXNP\r\nwZHOQNPMgxCzy7jtKOB6f/s1V8+cR8JQPoE=\r\n=fco5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"42b1049aee8c655631cb4f0065de86ec1023d20a","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.js","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^2.6.7","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/gulp-newer":"latest","@types/node-fetch":"^2.6.2","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221007_1665127259313_0.32933514353883164","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221011":{"name":"typescript","version":"4.9.0-dev.20221011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221011","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c0ccbb7cfc1d8928fec987b7fc490cd664869e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221011.tgz","fileCount":108,"integrity":"sha512-ONzbj3hrlLtfCGhDV7zP9FHoVgYo7+zRvphDqNNoqg2B3uqnxw57Ql/zPThRfepFmISdd/P03owzxeBUE48xqA==","signatures":[{"sig":"MEQCIBZiaGjQ9TXRAgcSBbgY3IM6vJVHopW7xVBd7aJH2jwrAiAh/HlNadVnS6+26NHlJWH/hGg9Tn6oaVLDo8TRH+32kQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66720664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRRrXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmochw/+LEh8cjkfGoBloAE0YQe+VeSRD4w0mt91RIWR2AYOWlYQxOmN\r\nCX9ljAZtZFuhWr5eCoWNDPH7dDJ2Pvvg0IWhQKabS6ZHmcsPc21NhBEGkigd\r\nxtVPoqCZvVfdQA4yaNiMEWZgjQEkOXMw6L6hnmc1tmklCWsVsvXKsxQx0FF3\r\nJ/p1UG+TQqhYV+fXmej4fotjYcVUMwsdzw0S74lGskeIexOtTFAZUh8HuL9O\r\nmWa3VxizZv7aQkYwS6njhd3fxoCkE/acJpxmQg9be1MeOmxrugWhBfeyGicI\r\nttDZT9ptYVLUVVnNjmB2424GNV752cDZLYKUa6cbJ/e+vkAMIHWYdlATdYvM\r\nFFo5jL6p45cYCrweiTL38r+KPcl/zRslydLNk1fPtOPZzHUa0MUk/+lVOR0k\r\nJFVXVnD3E+1otz7Ch5vdP/Xmhal9Lrg2JFhsZFFEnKU2e2LRndhsfevOqKCk\r\ndgjFdeM4lqX47BQhrphDXNuQDGasn/TC3yzLqZTOfnDN1YrFoJKxcaxlzwel\r\nqN098jO5kCEqLAL11uv1ZMB8PLoI4QRFKarXzcih/ajLXOK19gjxXqpSfUsS\r\nq3n6WLnDGzuNx8HYCvNC1q1VoN+lzH23W83ZmaKe2G90dL1lxfzvaVjJjU6d\r\ndgDDoALgcmoaxlMKjszxxRUwSjcG/s3I4Bw=\r\n=U5DM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e14a2298c5add93816c6f487bcfc5ac72e3a4c59","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221011_1665473238862_0.9629799822757805","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221012":{"name":"typescript","version":"4.9.0-dev.20221012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221012","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4ca796d8f166e2d04463c20763049365182e0544","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221012.tgz","fileCount":108,"integrity":"sha512-EqJR8s/4zlC8nKMNB3ImSY/lv0bKnEJ2H4UPHzDC306qKgIRexh2Q/446811kG++20Q4TiFhV7LjLSBtgA3OrA==","signatures":[{"sig":"MEQCIFcg5hVb/T2BBaUcw6nCfZNLoG5mXEVQITR/2/yZJhm/AiASPHnx6Grp7cSWolo48zvaUF9KEY4P8aHCj/sUBeIyeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66721212,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjRmsNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmraqw//Xhe8xIlA7aC4tyz12gh3oLJDRp19NTzsyIJVes5JpPKIsL1A\r\n5V6aii/Ay4FXQvuW3iYyiDqrNOhIeRrbDXcPDIyNpLXN9HXbfKuQspi6XON4\r\npoR6mBXVR1MZMZdOg/0qKzdR0yuK3qVBJLjlwkZxgrakeUD/H8i5dHOY3Fma\r\nWhmFs5A0FaiFgJxnzGcibgPIqIJ/gKdREAqjdWlEQ9R5/stW31ePsevJnao4\r\nmw9s9zt1mJOXQOTcW1XXe8AcsYk6o7nncsyBYV7l6RYv53dx0nxe0iRojK/t\r\nf0qhskCd4jXSEk5kNwCknpHUyvhZz8GdS7dmgBx2exkgjhlmhhOtFJh0J+Cr\r\n0ET2J/JecNa7ggvrhngViPG4zCpzdAxoEGKHgUlCovbXgpi//260j68MZuDm\r\nxZSdRrvUJ8YaWk3Bpsgs6ZSsnVk0Epm/wIUAQogsrHOO4m0D3PoqE7zn1Kgo\r\nNKaYS1sITSpBzjs0H8P5GbJiM24OCbN/ifShivZ3Ue+/dDR8ymUPz9kADOma\r\nHi5QW5AEzHLDVotw6fUU0eT+5m725+St+zlnB+NOtPlTlDrQoqgGuD+keXex\r\nnYFlaA1JHZYb7zmJkbZbEWnrggeV3i4L+wjy6qQl0u+yVDBSw1FfATSi2afV\r\noX4Nl7hFFUnCC9zw6tQ9TIIMsojDAHtme0o=\r\n=oTG3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"503604c884bd0557c851b11b699ef98cdb65b93b","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221012_1665559308634_0.8898607750592407","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221013":{"name":"typescript","version":"4.9.0-dev.20221013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221013","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"033572cb516aade1aea3849d25b394ffd7431d1c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221013.tgz","fileCount":108,"integrity":"sha512-4Bo+yrQ+bCi8y2jB4oUajM4uxhluhGgTV0gESr/H8tvpOUqM0kT9swHxlc5fTXnzJFxQi8dbUg5rIfIQXakW2g==","signatures":[{"sig":"MEQCIAuPlRAW+x4Lk2TMxHsX47mwbG1Mh4qBMDm+uM24NZtnAiBOydAOt6+aD5V45U2kl8E8Dr9tG4iIGmJNSHKZZA3cEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66723417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjR77XACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr0Rw/7B2jj3eZWZf+qBeR1pc5c9JqqrTnQE2bdlJqVilvILbdpU3IR\r\nFmXjBM4IahAM3XGZlulzOSW8lsvXF+eP+IZ+bihPS44L5aS3ZctfZnsXwSpV\r\nqN95suu8TO+dlWwzut9rEPePb4JoBFXrJNznp8QFbpBRNMRNVtZUQw7HVF68\r\nol6gMUTWQ2BgE6fqbeOr+zo9l0jUl4uIJhP+45rMOy+qSUat3DG/Wrzt0RNS\r\nh77+rBypdezlAaqmwXd5mLRuT6opDFGaI1RvUspObZ/aELMekw1MXsxjsm4G\r\nIJiqmjD7vgAjhXH3PoD+izrOt7jighNMAGs3qICKMShFrEO9bi7QkaWnDQdg\r\n1zml6mP3M3EqnEVVe0D2xlX3Jea5UfC4UzmDq/GYBjiQMjQIHAMgTl82bCme\r\n+Zg/tkkIOPAGUL47OeIqZDBEW61m11aMCfV6sSXgbxJV1DDk1gv46IasUH1W\r\n22Zf/QET987ZjQ3W5PZm/tu0NbvrZIkBOfZuZFgAhILhmt7FA333ht/ZI76F\r\nO6+tRORQ3dTQ71b61CZWNq+proJd0mtu2DOhN/FWYZR+Tl6PYVSS+nNCyXCT\r\nwQXPRMYA2vazysbiixiywN4IlZwrMNpG5WtStL1agktvGTN+b0tn/Y0ntRmK\r\n245uZBUpyCFm3XQTdPab6ILL1EllGywJjJE=\r\n=BtJ0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9f49f9ccb05a7bb56b8ca84b8036a3ad4e0e7c2b","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221013_1665646294683_0.5678891115744444","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221014":{"name":"typescript","version":"4.9.0-dev.20221014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221014","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"65460a02667bdb4af45c8031e1a2426787eda470","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221014.tgz","fileCount":108,"integrity":"sha512-ebA2VEN581QQgXuSKufDTHjNmafCqBIoWOLxUlhRu27+5iQLR4ExhVoIRQFn03KnHzTzIbbJ3OOy407F3kzc6A==","signatures":[{"sig":"MEUCIFqzFPlV61QYYWxay4KpLmsFQxeFwvehCyzTv926y93SAiEArKB+p7/pKDWkwlIOIvW/ZDkzrw/Gt+fS7bpkllKvCGw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66752192,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSQ6/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoZPBAAnKnb5ZmwxkNTCAgsqpmBavBDEDJ3Figyg5QaOMySB7oq1kxP\r\n+M5ZQVLKrD9NXEqw7umCHYgM9JLRMRVZ7mjSNEl0GxxZBV7SM/PRt+3NuuOO\r\nGh+f6BA66eIMO+wFZFNmwBGuiwdT2s5Z6GHUwjZAm+5+mTm7/9TVOVuHrqjO\r\n1tMid6BDQJWajhm8/Ch11jQLpvSCxxMMoJwl4343BUe4dGiBDeY8iURz5tKX\r\nVtIPd1YSBqv1iUahjzEsKcmA5JG+QfPIn9orLxS8De+VIbhhWwLxoC8+mW1c\r\noeInOHu7oUwav/mfFT3KU9nON+6Z3hfJGXD3/NDT7kib9+QmOBL25k69QHHG\r\nuGLhOov6QxgnccE+7JqyBkFnz4Ga1VFnjzpf0qhUU7Cyvk6+qFUy4gs37Lfx\r\nrfkkx4mv54podi9Fck49E/MkRbSqHuu0RiYmbIpFNYw1MxlHBj4y48N6khiD\r\nrEOB09cZ0VT6eTjPDcgNmxUK6fNBIpvROQzWVrU0NyTHqnPgtEDaW8CmfXmc\r\n3aL1OeW3GGH/EAZZnwiD4/wACjXJ+RnauPJjkVwKrCejDh4rwICOjxteSAG9\r\nOJ2pIPZDsF60MHY8A6E4l05iRWS9gD3W2WRM4vza1ynSJfTYfauUMnB7CCN4\r\nXMsDPpGaZS35ogJSQM9IJhAYSaOQthKuLcU=\r\n=RMuF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"83c5581588f660247bd9648bafe67b49de060a55","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221014_1665732286898_0.858203597649978","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221015":{"name":"typescript","version":"4.9.0-dev.20221015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221015","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d61402e6bd972f7ef73eadfb3b8a615ded205db4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221015.tgz","fileCount":108,"integrity":"sha512-CJw9wzN1gwniENgUrZ1gC9UlokqzltzFx+ecQ3Rptvsu9ygbIB5EFgigaerLyXxOLO66zUxw0ZEqormrjqzAvw==","signatures":[{"sig":"MEYCIQDs/BAlOq/C6VZrYWgOOQbJnRAfE2X4lcgHGaDb53P2VAIhALM7TprMgAd1je5fpgZ4JaQR4bEA/D+xsWWjkUSdpmLJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66766028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSl/4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpcxRAAgM0sIIog7PuaLtJneGtPQDrSlYR22qfEw/Tut9tH8cg9cRcS\r\nkideuLkXUljWqFA6Ceen6y835pr2PP5F0g4v2LdMz9N3DUcaZAAeUoS5FjzO\r\nDuiMJ1fcD2x4ICTUKeCjNlU1Us9y1xCur8SnSLSo3DOXjdcWL41/KX0m7qlH\r\nG8XgIEf+qAZMqCAFzxroiYCWHih9LH8/+oD5TRZYLaHfKqgR9awB+m3movNu\r\nmy8pc2UZokct8rmVHpSOqko6fE6yEXaHoMVt6aTxGTQ0O4u28KPjaup9gxwU\r\nAQPqnlGEdn4NKtBccpyxGrRb/rqmAvM//GTdIshAzAQRFjEmxgBYvW77KKA8\r\ndTjJsOh8MW0GohzLkUolvPQxiy34G6i2zfjqv/Z4C34MvOb1i8hJJ8HrAfYk\r\nyZE4Libl0GHfZUN/EZuYHPGqzfQSw3NUOyl3XlLM4S/3nuCHotb6eXauRGjB\r\nrvxJGiAxLLMq3IuscE4G95K8w5Sp8VerwwSiSQLCrLkku9v3H5DcIVMLz4xZ\r\nU95PhaFdja1X6ncf1DRx/GuPfAcF9rKbvvvFHbN9KDLI9jZhmaW5EXrOxtlR\r\nejSDohHEUz5zSIhOT3ZTQd52Q/DlbSxoHAmMm7ZvTHObqLimmRLdw/V/MT0P\r\nw9tBKJt2AD8nlPWDJYocjAFXninZykm+y28=\r\n=VkF4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"673475e1c5e582f2fd0bf8d89e33c7708607c8d8","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221015_1665818616305_0.250736948522464","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221016":{"name":"typescript","version":"4.9.0-dev.20221016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221016","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7031bf4264324ce7b68c9a4484a076b58cf70f45","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221016.tgz","fileCount":108,"integrity":"sha512-5ewJzFqYCUKUku9SdWIURLJW3PlkthY8C+HDu7kfWggpUJj3Ei7XrvMa32tMdl4a4H7k90m0xHRyoiCAH7wO2A==","signatures":[{"sig":"MEUCIQCI65HwYwDu3ik+JrnevQFE2WclPLdPx2ebwKRTJMaeWgIgFUzP6lrO7g3rpYDlSHmvJ9hDjRmKQR7zyUgCufHRHj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66766028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjS7ApACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoVyg/9H5nrOKEnce7y/ZBS8Lvi0DkVVVs6Ndyxrj/r7p2fcFEsHRzH\r\nAseE9oGGFzk03rvfPRLmcPE2EgHjpNzqN9JRqtkx5919cAXD2lRwzJ726knO\r\nmEIC3bORK8fIbMDZs+uFXMXNZITkACk3B9vkccqHt5HltOg9jBjgp4jdUyU9\r\nDhAK/qSHw8NPUvoQ9zikhI2MgvQCutG5sZEB5c2g9dAh4Zm5qnUuVWeEU3Vx\r\nVNwxnOiPQWu35ktvHNCMMYPA+DvwdLzqOrHk+GtCXZoumLfpF3ZkKiekZR7S\r\nMvUj7fJ8oUYnonazbsrcdRrspF/aYtfYIdIbweWuAKAjsjbJ4aLDKyKJnqnP\r\n9n/kDvj8MCq1gZRMNZuWoSeVCBmw5y9+m/qrsEBl4+Lts0qz3S/Jieb2pOO7\r\nu/7q2sjZXP6FQBjNeZGcdiXnZmiCFn/hCtgTQUq8WNFbsg0ACFX/qtWuQ7Ev\r\nFVAIV6Sw/DWRL/MFEjd2ajz19q+7lQ8zpZRvWNiHZI516pFZxF24utng8Wuc\r\njIFib+Y18/U/Dt3tuVO7SLCSS098cL9YdAI9HVhJ7y9k3o24FJ6FR2gSrYSP\r\nSn/oi9Gink8XhA7idh79cfTun24gz6+tscYRHbyt+gpzhw/YiG5TNm2Q3BDv\r\n+kZMS0yNabCAyrNUMf9LxuqmObFTvMgcYFU=\r\n=mkE9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"13c9b05384544262363f3fd8b942b36aeb84fc61","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221016_1665904680546_0.4196886901393715","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221017":{"name":"typescript","version":"4.9.0-dev.20221017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221017","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"893378fee50d23730bd03d3c6c87e8cb491ee7d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221017.tgz","fileCount":108,"integrity":"sha512-Aae7UmEtGS1U+pAvYpx8a466hlcXBX3moIdQ93lEAwriqrjidTeEP4JZ7UblTJWYZAlLu9g6LKfSe9X+6XR6GA==","signatures":[{"sig":"MEQCIEphEXCfdVvFgfP7S/CIpd4vcb8/rlqrlrivws3JVetqAiAZ66Hmn6HBbdAJtpaeyV6B+setklwIgr4QWMj3WANtGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66770550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTQThACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZ2Q/8C687fDb1TDg1Q1XsA+8SakT1DE15O429FnU5miEDYoMjySd2\r\nycrFUunABzzDCrK3wMP7HrdqZ075r+zSOM//cAb6W42+jeizMTx2jtMtiTWQ\r\n5TqmzgEVSTVhJoUxiuqv6HgW3mhStem6RQ4CKhVeOAFfpznqAeCCpYwxF1Z3\r\nSpKw07BfowwZQP6xFadNAe49M/Ak9NJGwGT4SLFKaUlWYyc0KCbbPCE1oScO\r\nLIo7MpifaBc2WLdhKyk4ybk1jywNcf9FmUTk1I2dNDMwomXsIbKq/TKrMoPJ\r\nOgy1HBS8QuujYvl6wToBBpPfK3z8top+quReNKkdT79v/KCO36CQgVXn02Um\r\nVkHCKw6hMcbjMO71qE/GUBitdrnem2QW5EdiJwp+0D9yeGR2GfutGaVXsnE0\r\niQ49KK+q8smCQqA32JhO1UNeIeziv5h3ZqQ7j4wNN8DZy7ulbGydc0p6h4V5\r\nIBzSJipUBOa7vxBL86EBYzY67LGV6VeHBXji1HgNbaIvDfCwUqFbSfEgunro\r\nwzVMFyZsFcLNosq6cnp+CMgNqyw5+5MnZGM68ViaiYZDalvZi4pQLoF/akRs\r\nKpJEA8ROJKuu1VNE1FdFT7QScHt62Uh4B26guEtzca1ns+RcXgu04rlgE383\r\n4mtb6ofxPpZ0MCskOgqxM9Enrhyqu/Mtz2c=\r\n=7lFl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"98c19cbbbe83c2ae3c89a4e08317a4b9ccbcb206","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221017_1665991904820_0.24591938178573236","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221018":{"name":"typescript","version":"4.9.0-dev.20221018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221018","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"503a9482cd38dfb3a1f5d868b1d4169b9fd5dcd4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221018.tgz","fileCount":108,"integrity":"sha512-jHigCAzVp9JXy+t9J854z8ooZTtc1luK25iKKFF48w/AfRfTbypn8HkOGWDmb7x7RuAcZxo1zYcYDk4OaUFKjw==","signatures":[{"sig":"MEYCIQCHUOjc3l5NbXM8yh00/wGayNB55z/e8H+yweF9Oem9JgIhAJp/lfONMCREpBk5a9FDEabbIkREnDKX5QEoK64jN94a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66769775,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjTlXzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBGxAApFiNI2a3quI3drNqB0eG5lHvK8Xy1XJyN+vNBoCQYp5MtbeK\r\ndaiID0kP40znD4rtaVwBjyl1jwlbyUbSPCctKiZ1H+JEbXYNuTe8nlQ+MWiL\r\njBtd9ir/pnLWPcg91ldt/azyl6gYbxUQcKnQyo1brg4PLSlaHTPNvMe5U/b8\r\nLYe68GpEXloCYg1EcnxLholV45YEMmKCctaCrmRORoStcUklQxx6u8ll3uCm\r\nltBdfClzBt/a9f2bgE9M2X+xtSrq1e1xL7pWbjVCCcfhvg8vZc6hLGTQCEjX\r\nC+MGWWg/sTLupXwu6ysR80IepCBVPpDYFfgeAI4MOBx6rXb0nrnRHAICblAA\r\ng2CUfHBYCgcLk3a0yWy1m1ILyTuR7rIDPHO3tf7jB/TJHYb64HGRWvAVB84H\r\nnWw7euPVW5wN78IBQUJnpjeFfLoAwPAEW3hDxqGlh5oMyPh5zyNYJgYWpvxf\r\nHM+bH/nL5j4oIaCkvobcqrQM3gVKI8PpONJEIwVQKsi3KMXU8CYhNrHCD50d\r\nBEkZFi5ejTKFYUsh4qv+Kfz+T1aXebDytlYVbQl5enH1cirBeLe0P7j3Mwk4\r\nFiltFyXmzTA4mavGIzW6irwN+vRQEAO6LWBL/6DGmieqeMR9pgugTahTn1ax\r\n/pTQTwRTVOUoRzreyPn1Mm+CtPZtjWteneA=\r\n=5Nhr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4c9afe8812fcdb4658472ccbced4a5cd4bae70ea","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221018_1666078194747_0.9055452772890693","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221019":{"name":"typescript","version":"4.9.0-dev.20221019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221019","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ffede96ff063b7a41b6833a381326fbe40dd112f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221019.tgz","fileCount":108,"integrity":"sha512-FgRBDKHZQAbayBvRcfFpjtmztLCobGom2k5W5nFqCXDb/XKYn0oG/8s6O9le3lGIt3+1FC7FYMmqvR5qRW50AA==","signatures":[{"sig":"MEQCIBPTF1/VBlACdJjx5CNpPaGB3yUn+v9FV+rLeMRjg7tOAiA/dDMOltQRGi4umypK+z2o906tlBfxXeTplKZXhIpY3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66768534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjT6fvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp5Bw/+I6yGrGkAF98/7UNDm0/8Dl5prqTZThrfWsWLkoybiLL3WPo1\r\nWFt6E29VN/Ai0IJyjpOkQ1Wr01RNp4YOJyIalVK6Iy6skXbzPbu3O1kBTrcj\r\ng73oDB2g+mc8QLh6rjEKhsvT/c0vCu7RSYuNE923LNWIa3jXT7Hk2wzhTxaz\r\ngG7Tsk7DDirVphR/TOCzztjQQcehmZqmphXXqRbRYt0dz8GbasmEaKHhpGyU\r\ng3QdsCqIf3vYkvOp6ARtX5cG1heSdOg4o5Ennc9twjSxWfenMm84yfG7SbA/\r\nPazKYu9jtcJYrnYzYBQI4saw0eimq6gxyQlAMpr5koo916lO7uY9Vj3x590d\r\nbweKVkbFTrwfJIvkZtfqcCPVa1uixbUH0sK5rZnECFT5FLO93a3mcSbe+6VC\r\n26C7POY7hK8bCRJaAMkKQzunApWpOFNyso/j1U+7ijADIguD/HBX+kiWUP7N\r\n8E2s2t4etFg3NeBo5U+njS0YPdP4DwkxMbOMPg1dfM8K5OgtKEpLzQMpswKX\r\nItP0jPVgjkfFX5KLh2qp/CoxTlCYJY7jsAWQ2S16fZEOgNLMdT9SZmdVURGX\r\n/rVEVZendHFTqqKp25tSjjm1tMgpInb8AvK68qD7FyUsAGA1j4S+vCdrMXt/\r\nSSVTTdGlihFJsdSOMRjqN2QU3J9D8dafKpo=\r\n=j5VZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5ef2634f3df138323383c7f2e5a05163a924ee86","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.15.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221019_1666164718667_0.8587896199308696","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221020":{"name":"typescript","version":"4.9.0-dev.20221020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221020","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f359aac275ff79bf1e5a99c5272f32a7f6d323a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221020.tgz","fileCount":108,"integrity":"sha512-m2FnohhzIqj1gqqbkPw1pv/294cE9hGaYLZS7Zt3rpUP36Nr3w/C+LZU2eUuId+DAe7ZWVUrMUAfLvmtr165cw==","signatures":[{"sig":"MEQCIFuAiWBLX+tO7LRXQ84EHpyqtEOibn5Vi7uSsGW60dH3AiAXSkpFYc+693XeFKlglm4RWBzbrGhQ+qAwJTJQ06r6+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66769834,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjUPciACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpgGxAAoGyC8W/VGXrU/2XDpSNazkwdKEnwXHYs6DRfxMk9uulwpzf3\r\nYgDwfliIP0y6U2n2wjUuZ9jVAdFgCOnbHFhZsPfNE6y5dBSU6xNHvhQhv5PP\r\nk67n/LQJPelQ7w0qM8yJ2y+EVz5gCrHPzo8WGQFpq5UXUxFlvkXPQd1lKPhz\r\nvqOin81y0zyMhFkpITPgbO1BJShGCkjZKZQvJnv0ZzOLteyEUnEAVvKCD8UV\r\nW3u5ZTBfr0uCijeaVKddWG12XYgu/T5eVyhbJYsYMLvv77al72KFTfWE4fmg\r\nir3pZtyi6Ep1gjdz2eWI2PhvKQxjuofs9NDs41E7qYCgqGEpLzf9KIQZIoQg\r\nbsz5lnZBjGCyr9dpEbdbqBknOgVHLReyZziMS4IP56xwaY7K7NYIi705pBDs\r\nKTZFdI9bVFQudG3mdQ1xphKSAt4DpM4CxWkfQUiw6N4k5XRiOWMLOJQQPLHf\r\n/EMLteh6XP+jw8IjXsCyjGpSynFoCcw/pZm6K3qYMdFddeelvzzL/xy1LJ3J\r\ntkQO8Rbiykv+Jynv7eEY1YuAG3zAtBVaawe5NbmIQaOfxXwQsqIwSMLyF1Tt\r\nFOnGf+0x1w+oZEzbNKZq0TOQYsbevgB9OEJIHF6QldMKprv/pSfZLnSCOr6H\r\nrv5X+JvWWHVU12R+YDAnTputXfmzcfwgfko=\r\n=r0nn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3f28fa12dfecb8dfd66ce4684bf26f64e1f092f1","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221020_1666250529976_0.38224650127922266","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221021":{"name":"typescript","version":"4.9.0-dev.20221021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221021","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8cf9565b6f098c062abbfb25f41d5844c405ea94","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221021.tgz","fileCount":108,"integrity":"sha512-mtZjgf8EniRs+UtP08fC7kqPgjskImiUXAi19X4eSUfn0HHRBXx0cKnE+mjjNKkQ5R1zC5/hXYWhXheXn+WR1A==","signatures":[{"sig":"MEYCIQCBgwd93RfSUkh/10p0pqKW+ePF29q5wVCHXDtdTndX1QIhANl43C/zReQ0BkiEtz33P1jVqimaQyFR/iycXzGnDFie","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66776429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjUkjxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq16g/9Fm/sNdev5cm/AF3J63K49dp5QdOmBWhV8RhzvtWki718cxF7\r\nJc7GQ+7ge/n6fCkElKKnWh9c3SYX8hP1aK3TUsyQr5wFIZXpfOYdG4nS93q+\r\nU2rifWH79EgFvRqJLHrqm5+2y/Z8IoY7dxykt/dWA/Gm8wzQ3En81Er06afQ\r\nsbsFfydjdbEFTYY5ugkzZ/6BqGiCSLJdjc1998sdD0aiCMuUkVqO8zM4LizV\r\npjrfY7e0bCBfuLyboqIKVFAZzkcLdCK8HCfsxWyqM8UAi2291hAHerWxrN9i\r\nK3Wq20+Dd42S/3ayTSsXCrIa2JycsB4k/2Q4kSl3BJLJ8gIT01mC9hZGTOwI\r\n5mw6aw6VLjEVGYBFdp3O7WWGJnEXb7lesCcFMl5J3FdhOow2GJBUSAF3ILd7\r\nZ+rDFgTOClRl7Y7u4DIfVp32Xvheqg5r+dcEiGaTclDf+lK6dcNFrAwxlKGW\r\nplaJoxJKrihe3nHFdofLDcD43pdRoIhOnh1DcqrO6TxehkNWpK9dJhz4UePK\r\nz4I34KvHs5q/3Z5l00QaFAA56ALtXIrEvO74HJzHecUgFEEC570BHcIm5d33\r\nOqfpP5wEV5nIpezJlbnbUBoohQIwnTgHopxA5B8lkXhi9mrXzsnXGQrES7Ec\r\nrNubUL1s+BNVw+Evul0POkgeebt4FYAzOZA=\r\n=wGj2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eed05112180e0d94f78aa02d676d49468f15dc31","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221021_1666337009164_0.8527418290510949","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221022":{"name":"typescript","version":"4.9.0-dev.20221022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221022","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d774a019bb8b6fd5da8a5a99e5f07b9bd8bc9c0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221022.tgz","fileCount":108,"integrity":"sha512-3r1rtzEMIoNO4Ob1fDkcuahKv+bXelYIkwNtEqhNJlK08Z4WdXSnkLJIHf1Zfsa4OgvHyO59XLbsCOwUgL+b0A==","signatures":[{"sig":"MEUCIDMveqlhQ6h+JwzFjw3tGLsabtiRePSwDt68A+Cjt1gSAiEA8iLCNPCIM9xVviWYvAOuTlQgF5VIlDOC/piCtkjKN18=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66803420,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjU5lqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3kg//Y/FJyrmYDLo0Dummz8lKs1eVGM7LQEXbCaAY2n5rKIZCJeEI\r\nF8ZFAjYZ7vwVLP2JOSZutT1sqqZhUKLmZwM1hwdY6xnq2MimIK9zIwqvzfQc\r\nEysIlNR9roHI7i4XSIkxOtrrYMT4z/07MyRMZuwvyq5xd6elcj9kc2Y5/N5P\r\nwCEuGJzrNloMDIE5M+qPZisO3GwuSsxNS5ZjOAejvGKs4lpy25861FR0wA3M\r\nbd6uQNVoIc9N1cOYSQAh3QjiRSjG9CXZTwID+rtrB2kqDhXBCbwC7n44laNf\r\n9HpouiwcsYbTWokp49TiqsszJaykcXVjxWTYRaw+9R0t3RtD8c05itq6S1JW\r\nq5Nh5t5AG9fEKyHBg49u8fWhfOlTgyl5u1FKoGpZCho9FI4cSwl9Rgwi5BmV\r\n2cRVPCOu2OBTpcSauatFAYLkXHq4SKYpxyNW03WZD/GcLNeW9N8xChp4jYSC\r\nQBBfGPcVvv3Ea9+WWFqj9foofqtxNiyDdLn3DO8/8uG5qVhKvT3V4YiwIwEa\r\nEHy69QoSwpnA1WA6UJWWvAM7HLeG1QoAkP6LhJh66sr/FBwhnqJ0gUCs4d7M\r\nw4/NixWjupW7AAGAYp84/wu4zrGSPH7l//MUA5FkaI889x/4zHZWMg+qIcJk\r\nNorf7DToNjCkotwFNn3apmgvY7S+QLbvKfk=\r\n=rUI0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"61c26096e3373719ece686b84c698423890e9a5f","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221022_1666423145948_0.7557898752665793","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221023":{"name":"typescript","version":"4.9.0-dev.20221023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221023","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"458667396a5eea66d7c7d97086d190c8cdbd71e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221023.tgz","fileCount":108,"integrity":"sha512-0IgcLgUKkKd7tOeds82vfTixqEHyFszPHgze9DIABba1rDusFf83fD8Lb1MP/1Fw9fj13F97m5APVcfmHV4wsQ==","signatures":[{"sig":"MEYCIQDv7rEJYZDxfl3zhEjGVPOTrc4ERp1KBTBEOw2LKTK7PAIhAPyA0YiDo12Oec8zNvHCiAy2VSokZzSX/46JNP2sSgBX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66803336,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVOrwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq1WQ//VAyzHKn/lnEguI6JMpZYVeksJsGi21qqKJho98lxEq8q9NoY\r\nFu+nY2MA397gkaagGFcckapvt6GebQIdn1Hp9xPdfBN+qvw43YWdcLM6jWMa\r\nAUPRJWh8nxHk9z2qdDvlwaXxwwba0Laotrohx3WsxAeki1UsVkQ28443N7Zd\r\nvWjGvVpo9oJwU0butiriYDingEu/UZ9lXPqIr2xjJlgaZF8i4/v1B8oiEkH0\r\n9BJQr/Hev6xAt5XqX6V4TJvwQUt8t3/wFE9vBsl285FeXcKoBzSnJzgTyYys\r\n2CXtoZfOQeqEgZZD8X2XXhiFr509zZ3YsCtoEvN9WbIpxR5rYrgU8xBlnQAF\r\nMPu3nNN9GktgGk0QWW7+YVdX190jZPdSqS2lo/PZWUX9Xnxn5BsBEThKu/LD\r\nHBPZitViRTkHfml/rzOwckmXTmTLZXAHlYMrTr2Zj8sO9pdq4dC4SOZFwaxW\r\nzoXsOHVznFjovs+HWWN0m3LHf3mbeWTSfxFy9rE6BAMxkjTPrg6c+hDczuVM\r\n7OFoBZjTrEwec8xZYibcW5cPJfQmOyUOOk2djrWOlKiKBuobwzOKVd20W9B3\r\nUe+j509Gr63VBmtAvmcY9uHLVEqdMLunWekj5r+onX9t5JIuZBAW96jX+Uep\r\nOIn0/UCoAnFetpqakkR9agjzSZdOFDj2qUE=\r\n=oLer\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2cc4c16a26672a7ba6c97ba16309fcf334db7cae","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221023_1666509550597_0.15150542921026156","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221024":{"name":"typescript","version":"4.9.0-dev.20221024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221024","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"755cadeb41f5c45cca851031ab600b0db4a745e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221024.tgz","fileCount":108,"integrity":"sha512-emPfkqIHzCqpQeKpZ7FF7SwFvGcG2B6+sWGIW1xthggJbJGdqgBWAok5XTIoyS4G1GITQTOcXJLHpI/czVoinQ==","signatures":[{"sig":"MEUCIQCw/VpFIYOUoxTlCrDQOAwFf1mRX1Rim9zKfLPxzNuvLAIgRaWHsdcmEVHUmG5iXozffk/uZJttid9zzZLqQgULCVA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66803336,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVj/EACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWtQ/9HhJdBM4f6oljZzyhiexFoqJvkBy71VX4tVQbdMaqDIcrjm1m\r\neVWPh7GKv4llRGNihtxxq9RewQYRanjubEuTZawGmpcPLAlRYt58oB3s8Akp\r\nX+UTMnBq8TmmbrXro9LyzE1OXaTjScTnD9O1kgFedFKMacn/wt8RPYQ3y+/B\r\n92Vg1FO2XLpFwVI7KBBVRjQZGZS1yDywiAnn5Jul9cEZA+g0I5GlSwmr1uYE\r\n3dr303mVvAo5LvhKDMMZyLUmNudutWdqetH5YHQP2I3NY/hioOoyTFMQ4kF1\r\ncHwh3ExEr/yIcgYJ3w7sRYMyl8Q4BIlJZkBy/YTbKaZsqwF00c19494FqxR7\r\nVYT+WptOqgvSiyOrR8OVWEuezBQZsaTVENTQ03h/jpjrn/es5OvO7fRlR8Ww\r\n/+HHlAoMsXLaVnpUcHoAGrekFG0FqZZcoe7XyCeQopEYezK17Eh7c+HZ9w1/\r\nNwWe8DTxkkCbKf/WC6jwK+t40KkoPyQ1cR9xoBci/10exaW8n4o9y8pprXrY\r\nl1gHLzqf3vG17/j5FjB67eghTHXLdT01lOZTqH5M7cBeO5/x7YFGNGgN9Utt\r\n+fnT7Z2hJrLHL34Wxb2NgxS/WYAsgLHcbTqBWzQTKdXqqHsrypBxk1DaU4Q9\r\nmiLisLVb069jA94Zxmk/x+MFt2l+raEXZhs=\r\n=3Yc2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6af270dee09d62516f6dc02ec102a745ffebc037","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221024_1666596804231_0.41181635566794594","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221025":{"name":"typescript","version":"4.9.0-dev.20221025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221025","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"424a3838af7a238883a9f49b5ebf1809a38548ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221025.tgz","fileCount":108,"integrity":"sha512-3TZlt+3jGBjPRVFcNX6BmlajqwNExRm4rhG4llSH5WSMX/eQ54PSueTJ5UhLn9+6/byL31/WRmJJ/7W0j+gCtQ==","signatures":[{"sig":"MEYCIQChGfANXd8TM/mFoa96TTBaRSG8JmfDJrCTH7fsx6TrjAIhAIMpG8nvlslNihGaFyQI8nJxOD197LymvpaiVaK+swXB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66804413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjV5EOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrb9w//TUIiQ/vBr9lIJWnnj1aFvwEHh5BwVrjqdRkke1yU+9Ju2EZh\r\nIADvLPOTLbt9US1CLUVN+Y9JWx7gy39/7lJP/YN6krnFUL2O2P78dJb9zTX4\r\n8gxrs8vK6Ha0TeJAjcnQAvsy3Dvtgb8I0Yq6V8CZNB0VOtyvPorebudLeDfU\r\n1ud2jYfqletD4acYQb6CkHlOI4cgQIHJtiBigxy3+NyVHT5uvOTtvfZUnWyn\r\ndbt1IIcgAMoZ9j0JQ9z4qdDaHJsJEpfb/ZikrK6qvI4kiXWh1a0fUT2VxRhx\r\nJv4+1eq65ftFWMFQVMKtFvylNKOvOgLs1QnKUExnBbDg2YD+akNyLN9aZHEc\r\nxYI2jn3TeaZRuRzMnkeyAxuYT3CK3O5HRGwptAPlOdr7u+Qd7pImLWfv3w2C\r\nDyE4fcR2ChjVVX16pigsH0/jcQM5Xr/yRDAPtd5hUgP2dmvdylbyajpkHBIH\r\nJuLY5A0N0t/EHQ5B4sh7uJvG3zEBZHQSBg1vJmd0VE5ALUk256+MAZLK+Htu\r\n85YOeATkVOPYH+Z6BwOfI5cxvSbvx9tzYceZqqZaW+/LKux2+frCI6CtE7Aa\r\ndT7ypRr+gu58YEfZEcQBog2/S7HCDb8eIUt8Us89zpGKhLLgx0mHD9bkJpyM\r\nQdcZrZKO/N2LxapQKCULvZhceh3a/kL4obs=\r\n=B1Vv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8bee69acf410d4986cb0cc102b949e2d133d5380","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221025_1666683150508_0.6247357957712962","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221026":{"name":"typescript","version":"4.9.0-dev.20221026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221026","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dcd622a4e36349f7764525676d1f940ffa362480","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221026.tgz","fileCount":108,"integrity":"sha512-Iy2S0JPIKVsT5vHeRdKPTTz8VHBp7kC12Ur430Fba4a7kEh6Caa09pZGzaB0+erx2gGNn/82JDiAEN+yVeRo5Q==","signatures":[{"sig":"MEUCIQCxj0/qd9tuyozk10Y9WMgh0qlzbydU86eZz/L9HxWaLwIgY8gGp/JhymHN2EaR78+3cgn2E9+ghDHT4S3PsNpUpbg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66822367,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjWOBNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrCxRAAgK06+WPTzSbqKJ+1R4ek1Ma1gCgJskSqI5iL4L9TwaE/VS/H\r\n+mW8Jj1t85Z7hyZom6KsZ79SQGZSWty8kpC8kbH9qI238GkJx/vFM6RQ/i3e\r\nPQfw/+YicUls5kjMVAEPlYxDI2pVJV8+Xd1+H5lNXbXyHwbHkDtBx0CDEgC7\r\n2s2YoAfatYBYYEZZH8CKmgzoB1stGErsEJvczjB2cyCVKkDG0VYjlUI7Sp2f\r\nioD1yH7ySHpDbe2NFub/2m/IQR5Hy7fgKJ9fhmrlYkNu/eD4zmlo9zEyugi5\r\nZLDDBVBbqWPoOy1sGHnXcjfb4LhZei6bpvyyTp3yMvV5Zb45ZqSO++XJL9SQ\r\nF6+j5t7kWuzBlwoYlriEpo7tGHQHmCRSard/iEpQtGlkFe49mItBkeBTKYSQ\r\nWxTSljahTuQu9xxGuPkwhAIWuO+L838CaEDRNr+l7lSoylb6vWvnnoSwpjq/\r\nMIAmNBQ2VUWKhkNCmNy4JAc5K0nESAcK3njIaMJzib5MDsjGxtQ8mORf2zcm\r\nrDUwC8J7WaAShTC9yCkzl3OFaUOVYRFtaQ1vA8oMzEDn2a7vkTNxLuAl0Yi2\r\nmfmruv1BvB9Y71RExFU6+ZzBodFotucoTceZqSqYgUf2GmXsOfc9PMVJldFO\r\nx6hpE/JRWRgCERMmRS/fVMoy733zpuKsTek=\r\n=iTLa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"16faf45682173ea437a50330feb4785578923d7f","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221026_1666768973066_0.6997528768627868","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221027":{"name":"typescript","version":"4.9.0-dev.20221027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221027","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"97cbab81a500e15e19b82994d0eddf7b4bb08e7e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221027.tgz","fileCount":108,"integrity":"sha512-CIkuppg1AjXN2O+njxomS97BHqIMH+NqXXD661ViFdVvesx9YLsNjiATUlfIkeVtVyG0PGpzES8lmzIhoSaniA==","signatures":[{"sig":"MEYCIQDJblpfCvG9QQBtbNx0/rO3J0eYUoU7krutroXn6wLn0wIhAL/gGAA14IFKbKV09I9NzE9ieaQwddrWYm34DQAzkWxX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66822415,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjWjAdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpk5Q//XgX/6IMmUNh5DzU4zjp2fcqSHAKZcr9NkE7mSCW2gYVlOqYp\r\n4cNh086HdALIR7bqvNE3QuzDIL4KVKqH/2VrMTIqwcTN6rW+h1w5lf6fSAyK\r\nA9cMpAcqZp+W158egvUARJvhmtnDnNNx3XW+Xp9Ka8nR/9Gbgk1l3HgjOxWj\r\nJuqDXTBICClYsrFYOe8pd/lyoafEAXYWfSGSSMgl+hpul/f/LtLRUnMfvB+K\r\nGiCnl15Nd8W6xiZDbtl4tI5O4TMNhibzOgiK8syYPqb+tuNPZZPBksRtDyxc\r\nrTwjuftKUpeMzVsQ+/H+0cKkDExqVBrQ5y9VjLVjhyT+Mpl9VfyOEtzlTRqx\r\nueUoYebsHN9IRekzumXSteL0aigZ+Zwm3AoNidyRYCXDG5H5zh/n4IPL/Ac6\r\nWwyyCgONiiaVQBS1yEPKhT1TzxKRO3v75tUWvLlOGm3146e1bxMO7JdGkEdv\r\nubTuDA21WfKEyRdaZz7fZHiFx6E/ZkQkZcqmvmeV043K+gbaX0HWsOdCofct\r\nzn+DINsBLOHMLkEKww9pwyvM5Mzo4aC4I1htV6XyxZoNayDrrGZIzHby4fJE\r\nLIKlwHQfxcUOGoB3TKK3z/wEaNWXYsGtSmo878f2DC/8PJdpBwUzhE+0vW3Y\r\n5ug/VgOpdQqRspCTaxdvVnqzX6RrjIZ+VM0=\r\n=ugyM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d8aad262006ad2d2c91aa7a0e4449b4b83c57f7b","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221027_1666854941539_0.28314929998855654","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221028":{"name":"typescript","version":"4.9.0-dev.20221028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221028","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2b91c5c67e6684d3d754d78546987d2ff8a496c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221028.tgz","fileCount":108,"integrity":"sha512-JIdw2x8nITGBxIOtEs49PcKt/M1ghKPRsiWXfiEzD+GfwE/2pLCt6Z+jrww8OXGNZU+yh0oGWUvUz/qr0O0eUg==","signatures":[{"sig":"MEQCICR1cKuCCV1Cnc1Q0D5JEom4nTtVAzKGgDwR5URHxsZgAiAlnCGj4ECy5e+LeScPL1T7jvaV+OTbVJgYSVq2+pQorw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66827203,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjW4KpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpRsRAAgblQ/pXBSDxrssvL0fDNGcQ6Ri9Fiobnzl21Y4wcD7fzkcuG\r\nEzMJQo6zaWSh6U+hlKQdLa83TWTUyYT+6eGIN40LMhwkkiHAh0LdayYB2cHO\r\n1WE1Y0NLj4X/buzYB5wHbcQeBG1ZaNf49hItjFOYmCEYi4voNq2IK9HebtL1\r\nBG/uvGPVVU5m0ZPKc3MzBwBeGp6dYuKFJxC1rQjzpWlsDXz7jmmMKjO9Yr/w\r\n+Ae+dxrVHKHPjNSJNFGFHCvxlTM8dNS2ujZ22DBBmFxaipRO9D5QNPww1M2C\r\n0Nqg0aIg8E5pu1HkKgfwrMQ99Faqsaeh6+OroPU0LLIBvgSeYOYdFOebeH1U\r\nUa2EeVplhecRnG4VP9kr8gIAZ4fVDOlw/YewKQULUXcJmZd8KYVBvcpfuGqz\r\n7aBWM5s2WDXfZbYoEPGCbH+GmwExbXLQLHCWSANU4wAJfX194jqwyoPur80B\r\nUmU1gGWcQyA13YWcpzwGDfULIWpbS1sZz7shjw0v0YIoLpXQ/Dlr1+Fn0Fwl\r\nmTeb69vMMdFOrpgYBSomt+2/ONdgio5YA6S6iCXJURxRAsckRQDyvrD1u/xJ\r\n4uyzROFuOYei4J3HHG89p2ClaMO4zLsTe1q0LIEezc4fLkHFwHRY41IbEdYu\r\nE+cLUZaBkLrRjoL6DZiZMDJiAc8To6TsaKs=\r\n=W0zK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3d2b4017eb6b9a2b94bc673291e56ae95e8beddd","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221028_1666941608563_0.8673886455514992","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221029":{"name":"typescript","version":"4.9.0-dev.20221029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221029","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a3f3993b27726f89c9fb63c8dbc3fc44c293d12d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221029.tgz","fileCount":108,"integrity":"sha512-tCPIArpnzPbA/58hKI1LFxHZGcYxy7edhDXlMbRNkncyWhKggX4GaNjpK+aGs21Ut3Dvg+CMKl5bZN/DDzqXRg==","signatures":[{"sig":"MEUCIGWExgY49/a7bmE/aic/fVA+Ab6WF4IaX8nnsi9RYOLqAiEAmP5Ezq8fwUdm4jw8ysJKfpLBAxOiNNidaCU5un9Rhtk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66839478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjXNMBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoyWw/+NoEGotSCMrT+NDh4ZHaUWhaJmElP55Fye5zP6Su0bmpRcaKJ\r\n8utLdu88d4G3BPAG2KEcGQ3HdvAin5V4aSwluwOwbt/pPDi2TeZcLPIe8pHU\r\nF2eFs2ULnSuJo2ZADVKEkv3CFPad8WSOx4RpIInteat9UrzKbJ08gQd9dFRn\r\nTTdQjo4uvc6TvdZdD/Ye5Tne/lwfkB41PLTcjVLv7+LtpjwoEES8iCobvr4B\r\n7EGtueJ9a4uiGZDsMRDJvRCmVTuvjG3IBdrdHULlm7U22EGAyDkm912z2C/j\r\nr09+1Lxj0IuDPFrlP6YfIwOWnLCHf2PcrUQ2kt6dcSDwF/hDi4Df0Y9TXGTa\r\n+zELL0DGyMNh+sQQIFGlEPlx6szAnlyxkdfCME61Kj44q+jfBe7nVc77d4e2\r\negADhHSUtQwqtdwCcQNQW3+XMT4vxRRy228tpAcBP1HD1ISonC6rkTits3GZ\r\nhix2DTYrWTHyYmnpaYFWLZpjFdQGY2Aqv8Bf69OnX4WtyrPbX0cWbBLBz+Q6\r\nxd9pa2xxwLwP1oLgI0yEgwfMXqmH+7CdmXkZR0tK/ufsR1ucTdn96uy+n1II\r\nAJskeLfevfinWK5cn8pl9xCFZ/AbVW3e0ZEhiv+/pj/XDQbSHi5uq3e1CVuA\r\neRn6rKJ4uSQLwbFPjcQ5LgGDg0+S8k/E7eQ=\r\n=bZ0K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8d40dc15d1b9945837e7860320fdccfe27c40cad","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221029_1667027712548_0.16216301592427707","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221030":{"name":"typescript","version":"4.9.0-dev.20221030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221030","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bc200e626df8de6c35091b5a30095fae52bd6e4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221030.tgz","fileCount":108,"integrity":"sha512-XG8DSF/qMB33CJJ8Vh6xpGRrGX0DLSVj8lHkVacXraX18XqF8aojL+Gateei6ghL2o1E2rJpAd06wnZjEF/RpA==","signatures":[{"sig":"MEQCIDEugTgp3cm+SeO/TUGV7TSvg/rLT88oASCKIxLdWxb1AiBk0CqLoaQnRt78dMkH5+BdiKJgxBSo7k01UC1S3yd4xA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66839478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjXiS8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq7wA//bV7tuGT7IG4tYYQ6ZE1PXOUVLZN0zc8I6/uj4/glfAJTC3rP\r\ntGJepbuDz7ZxpBUiY23C566AuKzjXZCX94ngykq34fYi8RJHoNT9CxIvgFag\r\npxNkDH8YZSj7ntXrFrYCak2pvoOsdCOcdi3XxclvTqFr6sKBuwddq9/DjAuB\r\nCbiURCBOq8R+VGXmUnmHluv8wBAEUPVZpNatq4K+h8XxDTxqdADL6g4ZJxU8\r\nPWGts9gScm9EnfXHVC/yW4pF7hXxQGwInvPVGlqDWqz85Hoh6NfI5Ss8wjvA\r\n1ZQZmMBHw7fcpmx8lEYdi4MSs20h0Xwm3hpIkMf8OCVMQzgKyB7Cd2wvX4cL\r\nAGkSqyLoIdryaQ7Z4Nfz5iaIhefrgkxP7H654pXlCEA5KVWMXz1BTfmenZN0\r\nHDiWPsLBwgzQ0e4wxNUy5eJDIdr4WwM7aSh3KZ0IYSYt/oeU9C796wqeH4dP\r\nBWID2LyeYUU9+vVrG3tBR9ow2BwrvYPyLyuAQ4sBFHcYrwLOHoXXSatiNLRc\r\nDUteJrX/Jvs0n5RSF7viQXsxlSHavRHMarTPgzX3+6pNMH/QLurWvta6wcon\r\nPamvA7umwILakN1nOsQS2bpmYCSZBR4n15l0ooxXeWgdGQ08Gf5Zl3DNK6zW\r\nHVTsxGXDnJb2NsA8azGz9l3zpmT9SBgzea8=\r\n=zHYZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e5cd686defb1a4cbdb36bd012357ba5bed28f371","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221030_1667114171970_0.3125945560039267","host":"s3://npm-registry-packages"}},"4.9.0-dev.20221031":{"name":"typescript","version":"4.9.0-dev.20221031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.0-dev.20221031","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bf032089b6337a96a9de6de4fcce074a305ee14d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.0-dev.20221031.tgz","fileCount":108,"integrity":"sha512-jCNHTa9twe5d/5Pfob2BhOLwHS6kxMcGyc3fIWDGGkEdkyYYbiXD2czz1U6jVOB+9QaVxVNUQuDfN42H5DGZZg==","signatures":[{"sig":"MEQCIB1TNDMiWztzprT/9RoO8qtdHejq9DH7FlOMewnXXdQ0AiAdpGLJq2fK0aSOvWXydHJmIHicyGBr2FzaU9/Sro3Xvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66839478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjX3YwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZ9Q//Rrddf16+nogFQmMS9ApamlK6p+4QZv2TR2VQF4fxYyIJpmVi\r\nmq4KBAgNPjGbYiFgCL6kuQ+p5HNu+rHdxCWiFT52hilHjG/KppCeHUEWnGKk\r\ncPG0sq/NXpFkoeSwKTiTl9A25UndJP9HzcOmMlvACxjIjxni7cMcO5VK3mqG\r\nwm3z5XxKx7jDXnKGN6AibCpaj0EbXeHkUjWi3ukhcOdGhbSLljTMh0IwJJgC\r\nKEXk3uO05iLRn4i1VhxeHjEqfxaStNRAiDgCHlUgsLXnFNOXlFpZBzm2C+dx\r\nQ6smQ2CkGUmJPyK1sy8ZrvZNY6yKt3DeIs+w2gg0NrVT0VqsVW5uEmdH66/n\r\nJOs/HUzU6qY+Mcka+tLg6IyEeZQ4dBuEKsP1MsTM2Suls6c7khityNe/TAWX\r\nfnzjZ4xVjeqlodG7gzWdgiJDMvcj02CwObLtyWyazOqpuyNgGw81xugYjFGM\r\nsoKNzZ+l4HH+6ivqtgQ8KnAsspk0TJwUdtqHjbG49ofDX5Zxlq9wUoD2Hb9b\r\nOhOF/6onXQswFBZ/2GnrW+AkFHgB+qbwnrHHfur+mip0FZI7h70iCn/aE73a\r\nXy7E2ueyWygpHCw1TW0HRCMsaq4FxRRQgsB6zydNKq7Eatsg9HKSdlwktdVo\r\n0RMg6QH6SiZlTSXVF44OGRlzllo1NEPN4NM=\r\n=2w2p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e50bb07bc140a950f477031bb1d8042001672df8","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.0-dev.20221031_1667200559916_0.39551820523407755","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221101":{"name":"typescript","version":"5.0.0-dev.20221101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2ed789e7969584175d08f87c84d7aeb3443be6ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221101.tgz","fileCount":108,"integrity":"sha512-toPkTrYmviWyzo9Vj/fEG0iWkVTo6wB5HHaZu8eV070sOA8yON5vKKsROt0AyeveDhSfzPX8MXEc5oiNeDCGeA==","signatures":[{"sig":"MEUCIQDbeRbCGndUZpEA8AELs7Im9j/McuMJY7ITyDzqVGMKXgIgbpIIc3fnZyTZfIyRWjI6DutvZPnlQvTyBuyuoxRVsO8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66848879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYMfAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpl7A//YV3JdIG2j90k1PUVEfGpPyvKImAm09yzP1Hg+Zh9yZP/iyfm\r\n2yIKe5b6ybFkoPbKWck8yQRXxeuo4ylNsMeHcQrLKEfPCJlvtq7Ol6xwlxin\r\nV3bu14yYFOoqR31j98H4GY8k2FmPg5PKnJdZhteu3UVilExNTDGA9YAn9wxg\r\nx6KlDEuyek2ELYjZhiMgE+RqaUPuOflhWuXQyEe0NwboxRSushDDV1OqbI2U\r\nBnYDIIOzL8vTshdQZoK3gy94j3vrhw0WqCjkN/msS55ywYpcj3ldxvbwF77L\r\nLtfLIxBkX4R3KXXBNrRu0rtvy5bwgS27g5ZFXtxwj3gH7KQ8rstfOAMnpKlV\r\nsVUHG+z2O6M8x4mkB0aoW1a86h3cdESYBm04z+5paIWzBkLlIK85O5XcL95S\r\nvpsJHKJAbUF16JOHLk2sP1x6K6x64FJ+rHP1t3gbP+gp5VPqyLcBoKB6OsqQ\r\nTILodyHDxC+0SGsT0ii0N/b+jUJZWZvS677qrsAgCD+SWRL+buQMu9aKjTL5\r\nnrbDtK/D3G2YHADOYToA3TMr9FaA/nYH/e/XIr+ks+7aHp2FpJP6zGMEu+CA\r\ng1Fc/5nCNHh4X8lf3r7z5FuQATahRNQN57qVDTPuiCSJXWgb8GOj0XrsYMrj\r\n8t7VOwmsiHr5AdfYCDv39S7JR4wI9tZBFuQ=\r\n=lh28\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8efa88f180eed88b197c509134d60a6313e8f1fd","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221101_1667286976209_0.9699619483345956","host":"s3://npm-registry-packages"}},"4.9.2-rc":{"name":"typescript","version":"4.9.2-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.2-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3525dbeb8458a8c98ce7d60724e4a9380d7b46e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.2-rc.tgz","fileCount":108,"integrity":"sha512-Ly9UUxJBfiiFjfegI1gsW9FI8Xhw1cuwRMBJ4wdYg+UXZR4VnZvD1OnBDj/iQ2U+tWbWEjYqJ5xx1Cwr4Vsa4w==","signatures":[{"sig":"MEQCIAhxkerBPmlUgpetK+hoju7Dh9FqqBydkO4qWgE5dq42AiBgWuX+mcFqK7hCctVZbUdMDCyDvhg1BsW7Q0JIBEOSvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66842582,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYYyrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq50xAAgAeU/GcOPPXgF+fdCjP0IL5Ig3DSEOZOiG282kW1qt8Q34rk\r\nuPsW+JvKfOkAKuOWEj6tbX4uPNSnLE6237dcfMH4PCV3ZRz+0NdaygcFSf0L\r\ncfJpjBygywnyVYAN9xMS58TELH3D6C1za1/e5f2jzVu+XWv+FeQRIlDv1Qfl\r\nPtgpJ9C8y0p2k0bh8IMj2VMzo/zZnSyYi2QXeMZ708Q+arS3RVsO/VeUJAvY\r\nQ6E/I/jzY0B7u8tbJMeTpcnmtsOfl30meJxi+GaQdKJ8KnmMBCgMUVgnxesm\r\nnUP9MJPrJFbUADkqmg0b+qW+KXWDl8VzfP/GVqxxdlC5WwEa8SF8chc1O7L/\r\nMbW2tgfp5pOVTrS6OpjP52H64eMMT8ebZisTqDq66+se5YWUedYMGOgEMX0z\r\nPIkeDEDy63KhPWglq1C1ZY1xaIJYYp2FBU9DeUbN1vYXOjJ3zK3loXiXdmU2\r\nMlUauRTQmc3z26ZLzGBc+W4HQeUIghDjsxCcItAwkdIb1bdgBftnhSlG/WIQ\r\nZOQ1Gzyzds04tlX96YYV584NvBbkS3j4PTn3nph7GyGW3P2M/taeF4+o8Grg\r\n1xi4HXN3htBlmV9Grdyp0zTjUevezKa4+RLFt+9mPj43MKbpe+hn6/iIjHRN\r\n+4qKRS5+19+bWT6hZPnCihTTZmcx7ggBo2k=\r\n=fqX/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-Ly9UUxJBfiiFjfegI1gsW9FI8Xhw1cuwRMBJ4wdYg+UXZR4VnZvD1OnBDj/iQ2U+tWbWEjYqJ5xx1Cwr4Vsa4w==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.2-rc_1667337387154_0.7544297339664774","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221102":{"name":"typescript","version":"5.0.0-dev.20221102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"49c95302dede0c854b8706fb2224ab78308cfc8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221102.tgz","fileCount":108,"integrity":"sha512-/zsVWPD4QVasQaOQAhaV7TkveFM6Wx4ql9LxnM7NNFb56FpD4tlIjUT/EZLA2tiz472D6zGQf6uuzhjS9mQ4EQ==","signatures":[{"sig":"MEQCIDfWw5ULSmJg6x5FVc3jovqqQKbAubfJCb/IlgNM6ximAiBYMzFo5JQkxCFCAcvvYzfLYJ5TAJAsRkWE/Z0kUnArsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66848879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYhkwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqohw/9GUeXm25ntUN/FMbk4X+N/5THV8dYA5oEKt4/6VrTBS61OKRu\r\necgd8cKicZyXokF8I29LgIQpDpD/nG1eVm8TEg+ksn3kb5MCnoTwF/2th36v\r\nS2B4O015Szq1wCptNIAQPGwFgYijZ87QbXkIF6xoHY/tK7KylrYquK5WjiDo\r\nHpRaJ3oyaPxazApV3Lv7js1xbOJ3M4oDwGyJpwH+Mx+8sqdtSLyvKnoT3tXm\r\n+SuofyhZxCm3Wi+Tpb6RZC837oOVZkZLO6VB0Az6D9YoRlVI6jCJ3cDrluKr\r\nPtvPiLcrALzZXHEUETBz4EIgoikTRvw34fWyU5B1qfr5uA1HlyhuriB/aFlX\r\naZMWv5+7tvoIxR5KlbdDLQfHDs4mhyQSrV9LmyNY4TEhdEi8n+pGLaxuQtB8\r\nwqrzNSJbbx3SzrzbAy+cXxMLgC3xNgJGeYsofpLdTJyGgJgyqZeFH/p/i+hJ\r\niANrWGZL6U1DJuSkag0ACRzw59Q3MsKH+57uubCoPIAjWQz9r3zoHIqS3hQ8\r\nPTvY2Hw/zxYjIUTgHJTS7gWdRMF6OfWu2qN8QWu8PN6maHVAi4s4IIhhlGo2\r\nY/dFmkkE8I+Ev/ct0D15iha1NV/Y5th8mVJQhEGQ8BXH94oJvZTrhuwt3Eru\r\ndRuiNtxNi5T0FqSGIKzm899l1fJG9Uap4RI=\r\n=Z4fQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c1e9afd5428fd04c1555bac065e5a4d21d49dc7d","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221102_1667373360488_0.34731028799618713","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221103":{"name":"typescript","version":"5.0.0-dev.20221103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"673cc041603bb7faed88f41ca5e9481c678f33d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221103.tgz","fileCount":108,"integrity":"sha512-hfqcsmiJ+5ktli1OAkwu4PyDDJ3kWW3tiUofd2t1uxwmni3ZT3Mrv1m2dZFg9VNDKqHrkt49izB3tAtD2bsyGw==","signatures":[{"sig":"MEQCIFfbpCa+9Gajc+MxSsZI64iv5lXUNfs1Mo8JSjo6+d5IAiAqOR9dYoBdpHp8//e6w7jJ6RNSw+9Kp3RtH5K+SG/JMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66851604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjY2owACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJRQ/+LnQtBae1kRY3TH4rzBwKgoQJ/YvGynDPQkNcBaHRMavszTuH\r\n3V7Va6YQC4/fLwIcS2IjB49PgCSituSdmnN5OK6w7n8bksm96VGokBSJGAyl\r\nkTJrgg3FjS2cPFXA3bBhP9nS5wcMRgWRmtatNsPpWLgcxtq5yAFnAjjUWh9S\r\nIF15jNXxLtpz7nvIKtwR7g+qLNDFIog7UpeKtFrZXgHMKa2ElzqxdLVe6Puw\r\nevo/h/hiIzQr3yCrx3AxupNR3lYSIS31kgBpJMJQjKdit//2DiXH0Cub12NQ\r\nM0uzq9jRT7lZTJYLvKKrDk1ogrkyaCaqZ6IrRqv5JGS4LkRcvRi3VEUHc6pT\r\nHW6QLxFPe3ZnvT/A1DS0EfneO7nbcJ8AFZkq4Z+2YhURUhdjKMA0fCNhdIE0\r\n7C66C1G3R5yp/CCPwLzDS1DI9u5Wj0ji0sRGcB1mNRY1KgBy89xsqDPVq10q\r\nyukPCdzaWkP5BIulonhnXT1dYh6i5wo7s4rEyzLBVA2bSuwW1jFDfiyniWQ5\r\nxykTjr8RNAUgqe+mrjmAprh8OTqFN8zvELt/RivvPeca237dMradzPc8joC0\r\nE76Zb3VY0rkHWjWFaXJQG5lt8fZY7l/iVmjGM9GL6p2JP0SPaTfh/CQgG3V4\r\n6d/5L644qrqRXBb+Prdhtlto5MiQPrSCQhA=\r\n=GQmL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5a40875fc4e0de3f8e98c749d54ef9142ef07eac","scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"es5-ext":"0.10.53"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221103_1667459632331_0.00204130160485394","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221108":{"name":"typescript","version":"5.0.0-dev.20221108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"52cecdf226b983a33eadb2e6c9a8c040f7a7349f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221108.tgz","fileCount":101,"integrity":"sha512-np7hLTLHztenzHetS6xnYYo/P+VcjgUYWkblyl8jCeKgrC7fHJt1QlcjL83uC7YQiHLz5o9zgMZKtZbQBHPzkg==","signatures":[{"sig":"MEYCIQC1h75GY5cOy9kvpA+WSpRCmRrmQpMA/o2Vnp8tJLjTqAIhAKIB7OCVo8gySwSoxldki1+j77G+p1KAAhn+GHgEs+yD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37397831,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjagFmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqH3Q//b403srghnXd5FWr31jIQ8nw2tmFWybL8xlpVhFT6TI6qVSUv\r\ngbB7S1W3EXyWhv2nFUdAgBUzNypT5Sn9xTwjMi/nJ/vaSrMoU6qdD8cvQTiF\r\no9SNjQ9VB6JTIleODZZGqemukEk2i/4qKwzfEwerLioEZ+j2Ic0kkxWYaKEo\r\nSjmYu3GBXjEjmxXlFcq4TQj9fgM/QKpdzMJPsDFVaDiL/9+JQ2100v/Oj6Yw\r\nvJggLmND/VjUrYTeNASdxnXa20Inu+u1GBAVP7Bc05y5q33Yohxt6c7isic+\r\n7zlvulLTto5B8GN/9nnnpoWhXsCGkiQQpCaGuBZvnM4C/6E6NR2Wj/5JgviF\r\nqO5gcEEGtoVau6uU4j+KxJXfrZQ/2p0YNQqtnLXfjY9h4KPZY0c9NX3x8XXm\r\npI3sta4WmtVPvoma+9+/6fjAPhTqXfYgpQ+J1R0M4jBf8maDCbj6T4ojgldZ\r\n2awd/D5iky7VTyEEpL/sUzRZMdlK4+UryAUNW0Kqizr0JiASVmP/1ho4U59c\r\nHkj56qABkmpo+wM5Tix8HgSy/XpLqyEwkK8VGoC67yEQq4lc246/og0F0fEn\r\nWfWL7SQ5joavAIEb0IxT5mZX36bl19J14/29SO1k/M211WAkS5QxpCZN0OEv\r\nhG7QMb7RiR3G5tuEbErqF770s/jSFh6a+C4=\r\n=3zoZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"437b2690ed87b277520919ddc76375de13278100","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221108_1667891558464_0.3593330388185001","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221109":{"name":"typescript","version":"5.0.0-dev.20221109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221109","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f51a0731a129bbab08c12b776c8b7ff42c6e98b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221109.tgz","fileCount":101,"integrity":"sha512-DAVRpl2535lb8CL7WjpHAb0dnhsbsTUVLQW5jBxS4RyRYA5Tq17kDGYQTvT0JryOwp6PksgjDdUKG2B9ElU5wg==","signatures":[{"sig":"MEUCIB+MqvphVvST3VfzNimrPkj2pmnSRoA3R10+lwlo4TSLAiEAueGWgQTNH/NX0RGp0mTBgGo49Et9+ECiCyE2mByX4n8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37397663,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJja1QWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogBQ/+M5eQRXkYxF9iDrMmwICpUdEmKYfGpWVGd9MsRqLreYtjoHvY\r\n60vtOIlHymUd0Zef6RoIeXeWLwjO2WjGs3NF3r75G+O0kS1DdA/9lYicFhon\r\nlfnwQmAqmyu8zbOEHrC8Pcvdh+0h21mtCLhd6UMfciswXvZQcyJHbbkReO0j\r\njRxkE01/1c8ju322fq/B0eX4s36+E4CpO2+saIZjfT6KXV7irOVxEoyX4Ior\r\n0ZiJQw3g4iT1tfi+rJU1KJdIqMvq1MRf+eO2mi3DjITxRTuNp92b9lgvLtkS\r\nMgTbgbt3L9Y1KHYt4nd1+xTYNslrNSgSqikeAZflSSPX7QUmDhY49uJ6Wih1\r\nkuxqRrd2YZMHpIyVZx7JieKPnvRtGYMb2BsPXaUNJDm5UwLsnVFEeu8Lc5R6\r\nFE9FlBucFUCchLMQysnz1HIxJIWfFiz7o6852oo3R0W/nun6ixPKSzUFhkdh\r\nPBsYkAmTRfccivcuGPMOUjyJkFfMKNnYFlIJqQbddtoo4ecH9IeeGjJnq6vC\r\nzxNeQcFBH75oAFftoWJ+xdVxktr/u7dbyHxp2ekwG+8D6pmupCNq2qgMk7gF\r\nBXVDdOhmfjlbr8F/k6D5K3l6d6p2yJCO4i+MxYFXZcqkM+JxM5G80EP+C4h/\r\nVvbanQNBnD7BnnjbUxtNB+GRLPnfKiEZ4YI=\r\n=tx6n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0993c017bace34cbcbf8a19b830b22db95676ca4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221109_1667978261830_0.18553895358270545","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221110":{"name":"typescript","version":"5.0.0-dev.20221110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221110","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5cb1cc21811b10c2647a7006206c43056ec8e866","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221110.tgz","fileCount":101,"integrity":"sha512-2ErQCfMJ/il4ipW6NRIqJdQvJ84k8nafDIXGCpjaedCdnF/ejRmtHAhPuS5m54AKhRz/uc31LxzKpcSOxVuJHQ==","signatures":[{"sig":"MEUCIQDBHZLPDSVqUk0NwgXG79VULUbR5DBrvDgCiyPiJp+/IAIgUavYcM0d9KZjylLCWG3s77P5/nmOTZHerndVzXtiWoU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37416066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjbKQ3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo0LQ/8DjEJaH3zDhUfBqHeHIHHECp0cHHQ+y0Uu9kMhFTBPpw5JHgn\r\n7kgKIHCxWT1faxM5OyCvv3xVQvYs4ijtAxTBXFl7KrG72JkgDcT5hqYjXIoH\r\ndnfvkukymDbEnKh6YR7wHvnucMWwOyn2aZpb/lwHHXdFauaJeINQcBv5dodg\r\nTqrYkEV2lO1FjoA4QCrIbzRwmkPM3qXCXzo2fjI+krESaXKbGYLxDd448U9o\r\n70RlGN48m6lwg3+MglrugRPJtSFQwirsCn1y+unWXkvU2UP26PNsbvNyJnDj\r\nl3ZPNx7NHoi5AjBDVeKPUOcmbwVKkEksDd+icoio1ghbpE1p17dcUdNQsJQK\r\nL77GXOrXatQ8/bMdnAWffT8U/awNucCOLvJVdrcURuqvqSLBEshJNa+aTF1b\r\n64TKUilo54dWbDmCHHrqLOyfPioZv0vm40QBKGSKCbQzwjAX2LC+zr8BE9+p\r\nifmpNP4xcKFWsYSdmByJVheufI95NlxgUzcKbfEWM5fy+xeip4zzBYPjP5l3\r\nPD6FV2ihmuvwm4GksPD774vyxaIm5LUi/xGLe85eF3/dS8emwEWAWh9DwAuD\r\n+uN3h4qz/2R8LUfOuRGzpGlW5oFRkcMPGul+fFQH9ZAb+oZke9idcqsJq39w\r\n+Tkz87X6UCETKMgZ897hge+IY1i3FRefZJs=\r\n=/P2Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9eb8bd6c5bcecb962a1caa0b0f129ab3f77a9924","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221110_1668064310909_0.5048012693015052","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221111":{"name":"typescript","version":"5.0.0-dev.20221111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8df2557b7a6cff9febee5933fd1555caeef4096a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221111.tgz","fileCount":101,"integrity":"sha512-evI3lSsN2TlgovDfF6k/SUNySv9kWlaD7O1SrYfS271DaqVfgfL6LYOFEOeM0tfSHiJhAWFeMtvyhYqmD4CL/g==","signatures":[{"sig":"MEUCIE57LVIwbQ346pBZHF9Zks9ieP49USd2FVBCiKmfkL3xAiEA05oYHRSWQ1cNIWiVjSsx0HiyvCf1tXgJ33obp5hq+A0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37767590,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjbfYfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3FA//XujuxZ76xTR99f7mwxRANtOhi3Ulm1HC7tjWrH6oyS6LogjW\r\ns0GIe1fjic/Ea4ZTmUO/mbGQDRWKp8YpKqBUZTY8E3kdbGPyzPbthHae5DH6\r\nMel6+X2Wd4KCfRrExxnKZcGxgQkLvgsdbMzcTYmXWEytJZp4fqmREJBqqDqQ\r\ntdJ00Hw6RWfPxXerwsayjzursmirV+Dt00raVAFRDbkbjeGKHAICsI9epSrA\r\nuoFKM3PhQBE9IS+ze0plsIXCaxedtmJxmhR/POj1u2FxaY6HEqYul4q/Rwxr\r\n92VT3Zsd4Tv0JIrkO8VA/b1zxlE69LE7YrmU9BON6m8rUkmRYMOOryE8IkLg\r\ngibQuX40qGriQh4q36SUVmXxw0IXBWo3+T7BWAwuIT0vBSw6eVf7H5L8C9GG\r\nuXf7uHMEaaUUl2VSnpDg+c4px1lNXoDHmCzSvDoELcIUho/FotTkLdBozuwO\r\n/tTn/47wgC3RyX5xtYsOjIQy73ED7WJOU6seig/3jFds3vt9iqjDpDmiFO4k\r\nC5vBkDga+iKijwvl97/HP2uJpuOoAwodsOLFORR5aj6AvHxn/luOi97Zn43B\r\nhIvRWolZfUfbXzblhf7U5gA74KTGQbCRMj+oTRk+Shf8CZXuFnzzeeMvF60S\r\nzKknIIUjiEVc7P2UYLjyACaJfqsOTYL6Ong=\r\n=KRtb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"2d5e37272dcc3f4ce1a0df11f95b8242a15fdf93","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221111_1668150815575_0.1456878240150008","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221112":{"name":"typescript","version":"5.0.0-dev.20221112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"47d41f99d24ed0b92a041b8b583bba9dfd1f1d07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221112.tgz","fileCount":101,"integrity":"sha512-e9WQ7Cad8PmFur7JlMCG8fbJ8r3IDBgqjUCnzfJ1Ee7UIl6emQJsJpYDCi4i9WLmSg1/Rn6q4Gj/G0sM8iZWww==","signatures":[{"sig":"MEYCIQCTZjzJ9Zs7SH2zLzGP48zTdsqmBmqhQaHff5qkfp261QIhAJ19JzuzJBD7+RBF249SnP6QFC+sHfMQIk5lhVFfcpxa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37767590,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjb0d3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr3MA/+Ms6m62hNwtbqfAdR8AQCPzvDDm1HrYoYCQ4/IF9usqEDIlky\r\nYnmlG4P7p85AmkSKvA1x79y8rt3EO9/uoySihvnafBS+l6w361jt1zUT5kog\r\n7tqZZLWLooybQyDeIzAMhg8+ma51HIUb2x0KoiWY6O1HMYAS8KDbOhB/HapU\r\njwYAVqb3/TyxjCmY9aJwQHw+ffOO3nlTADN4b3hIROuNRMjABOtCa323gAcc\r\nL4Uh7OKyc3U9O7U+NPM+vA6QnoOdjj6v9rMlpfaJt1LPPfc7spUW4cFLoQcH\r\nE00aYfgI81R0IdKnuwVGaH4LLDsoPlMiV/Ghwgn5xRPwcVAc+FfVbi8V4j8p\r\nLI6ljnE06e6N4V63aV+cYPJyBn0OvAYB+FLU9jH6jXU8pFg7Qunwp7OokJFz\r\nw85RXFQXOisdcDuVlQz5+awEy6tJP/rcbRfB4LBp+jghQ4Y/5lK389fGsm4e\r\nCPIDAW25b1VXi1uZjlSQYWXOYaS2wRV/lbDCau2LGekgt8zlpV9LMBzvJuLj\r\ngYulAhVy1TKaZ7Fo2Z+KXaCbRopBLKDCqdcPtCG+UelHBuKU6e64bBGHn06m\r\nJYEt0qLuSZWzMfmxKvGoV6D8wJEtjpOHYR5mJDp9aac25KSfESrcZfhJe2kl\r\nGStuCXnn0E5SAMxKZcryip7NIrTwFlMkjlg=\r\n=weQM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b553affd5cd58df10dae461091efb97b9a829aea","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221112_1668237175285_0.5983112549508225","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221113":{"name":"typescript","version":"5.0.0-dev.20221113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"41a5248259b4a6da08e4af21638bcb22c36985c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221113.tgz","fileCount":101,"integrity":"sha512-iNVo0p5OwpkxLl3hzf7zLw5fjcQnrFIgHwPh2BZgZOofcaFNxj42SOhR/OoZMYSbqkkRFrOi1gzVcsgw6ehDFg==","signatures":[{"sig":"MEQCIEd1KXZ4jfT+1oV3wkdo5H253CixgxUH3olzKtvelPBgAiBC9lrSZWYeZRW1RKqP2kl4hal87ikbFQCZ53XaIsyKbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37767590,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcJjzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogaA/+PUhMRyW8+GgD96rK2NJD/EHQ2UI7jNgmMN84rMPedagt/4ac\r\nLmI31LaQYfJUYq8jFlpu4VSF/aiCZXGgg4UDZ5GyI1THDSHoes9nbhkHSCEf\r\niH6sk61VOasONvGkShDxYV05Jjw9lLytELs0HNCk7bZoqszWjYYh8dq4JvBF\r\nV/QVT9PivTnL9kSnPktwBTyh3ohYfjUs5p+0fz2+nHkcmurI/LC/8DCzVGen\r\n4+5fZtwx9EEJExA7GDGCPZx/K/j46Xl9PcUaePxrm43v4zdOui3OwgoxuBvT\r\nT/2aGe5p0H6+IA0LFknBZ2lxOeOrWGN2zdXsDC2JXwT5y2k3ndAbhDQ86WpB\r\nE8UQBMIUBK4yDUwhbXt9F9ll0+fYcQJFVpZR4NEqsjNplU6YkqEXIvLfWs58\r\n0WmI/wziSjopdeShJ4z6wHfEohLXN8k5Mho8tupgFWQtWJo6zjYxl7K3r6cQ\r\nXzW9Hk58nR/egGX2AFe48RF9Gk/Q0PUvX01jLsrpQm2CVupK8F3/If2+6bom\r\nwWjlFvP/T0i1o2qCgjuyNRXXFTwR+1FJ/x/0q/r4L9yKfmZyzcr/0Miz76Mc\r\nPl8UooSBw7+y0oYllYsMPnSxZDFm61rAg2HnwayG0xvg5xEYkXpsd3QDkGPX\r\n9Rh4bhQjTy3GQ37ErFNjAYyqBm+8K8lPlgY=\r\n=I98Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b553affd5cd58df10dae461091efb97b9a829aea","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221113_1668323571169_0.45635474573581813","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221114":{"name":"typescript","version":"5.0.0-dev.20221114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c3e0117bd7b7f3c24e0cfd0cf0f2a2266b242ba9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221114.tgz","fileCount":101,"integrity":"sha512-lMcxw0oxEhQR0HIZyxhmCiwFqXfPQGtakbc+792/hmPP/pyICuaUUIKyY/7Cl6QPGTplHcGjDPEVbVE46gPVrA==","signatures":[{"sig":"MEUCIQCUlGp5ieo/ni9H2EopTmH8qlRmgsBizHiPIAl+2xyPEAIgauh1ZmzMQy4zuNyAXAm2fM5odAu9LX8mm6vgLANBDS4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37767590,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcepVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpF4A//Z8m7z6JdG3UOjW6Fo0umtcPIRQ2RLrlwkhDnWdaUJXzYjfcv\r\n/s0gT+ulLnZlxDPmeQYhqN7lBxlSPPtRttauSUtAoSF2IKqiIiV3buA3HCEO\r\nDys/yFlfddCg3F7MYkl9Uy9nBa+xQ36fxvatD232qZSM2ehC6CpoqSPFddZs\r\nRwpRkVUSt0Vz+2PeXukJ9pgjq58NnPzqZyr3sknbLSQciIz9KGmyG2ZEwDth\r\nD27zbq0HRMKuBTX3jBYRwXb5ECgv3lDlw8lORhODFpKr4lY/ErR2+ipDooau\r\nMM+lVt1XOMI79gGGPAEgiTDaE8iPI+Jyl/WOqqQn31R5hcC466sur6uBZRtn\r\n/F6LFiScLLn/7qGGSUwgDU5X8ZdmWNj2gmIXw+MNGVo4WO6sXk3ScBoT8wKz\r\nK3FE6JB0ay2Z2GCTHiw5cnrORjdT7jDD6iF0YCehJ1Vf8GEssuOlJLCAn0/4\r\n5pHTF2q95JhPTRlWh9BcxaDiS0m94o/8OgCV9YDMH2PVc3GTsJUx8M2W8YAp\r\n+1NwyEk799PVITBg4LqXnvYLTnaod8hc1QcZTUQFCyxqJlnzYEpEzuaKL9xQ\r\nxn+87EJL/48A0S+hzssPALOJkwoAN3VJD1tXnHix7/iVopdkA7tsRiyJDl6/\r\npnhQNspbQW/dKqobzgYYmlSttw0opN9Bf6E=\r\n=cJSm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b553affd5cd58df10dae461091efb97b9a829aea","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221114_1668409940875_0.4691142824672361","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221115":{"name":"typescript","version":"5.0.0-dev.20221115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1c9ccbdb4e7d82761a19584186e8c72a8acf6833","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221115.tgz","fileCount":101,"integrity":"sha512-h2MaHsq3nKjUZF9t/UCwOmitFUC9cFE1bNKHHHvQcoRUoVfriTvvg82RedkT6ixtrqC7RRhYcEJd7S23YioNkw==","signatures":[{"sig":"MEQCIEUZkTlj64kLtUglU5O4pwAm7boRpKP4N79n33YkOzibAiAcqzYrv3RzSgxilw6tYSoWSvTLMVNprd9ZMfc3/0LrYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37767778,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjczuwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqb/g//SvtGGn3RVHFQK8LLd5Sk3C0/N2uWEUSGfDFlx9JyM3dNV0wW\r\nJrv2rTrz7DJmt9EW9Bbay2fDOudKwdjPb5c1p45P74jsE49vyU+9xcYqcNLk\r\nWmAxcH9yHxbogs5RA+0VSVkXA92XKQ9AlP0ez82DEbUUrDMiMp9j1Dbxh6qy\r\nUdBa61uPwu25YuGx4cIzoSH1VTKUTfrD98Ee4pEBhzgrGeIoFfqSRin3HbNK\r\n5nKFkBqKweoFegc4gOLseghtO9sx06bPfVYfF8+reYDRlzcvZwFgpR+PzW0R\r\nZWrECNLCk57jVQYQQ4+25mWGxFl57E0qgs3zcD3uL3ROmYFJ8YUDxZ/c5Q6h\r\ngKuHy5tH/rbT5BVIWQU1R318OxY5fy9Z9n4XotNMTHKPPk513I+XKri3f0Ug\r\ng7AcT/tbo0uGATXDtOYJr8Xu3f3mPOdgMFawnJos4biqX9K1YVTbDmBIe1bG\r\nGG/O8hdkBael1V5S/T8M5bGudGIYh0S45DsUA1r8ZuiYr6eZIJxvbR3agGBf\r\nGM20x0wv6NNWuFU7ewl6g0/8cWizWm+GzSNEgwFP7m0XxMmn1bB2l5ahoRZl\r\niBt5b3ShcTSdPkbtxBWEFhoCCE/3MA9HAZIYBs+F0vAKfCkj1BDFIvV+QL8c\r\n/HHRTQRcG3ASl7yUM3iHCHhismFS9+p5IAA=\r\n=l19o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"343191217575c20e2ee7845927d5ca23981cc663","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221115_1668496304372_0.5748369187933091","host":"s3://npm-registry-packages"}},"4.9.3":{"name":"typescript","version":"4.9.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3aea307c1746b8c384435d8ac36b8a2e580d85db","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.3.tgz","fileCount":108,"integrity":"sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==","signatures":[{"sig":"MEUCIDoIKEVtG8K0o8HMyey/W8biBpBhA49cM3zAIQbe9SHRAiEApO0Stivny5Wj03ifFHueyxlYvaqMR7Z25vq1W87LXqY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66842561,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjc+AEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpHcQ/+IBCUM4WIWu5uUeXJcrU7BkNSa/BkbHU0H7HbPQRIEhJVGax+\r\n+hvu0FtcRV1l14ZvqUUyQBXb1X/QF1XH2Qqn+439waARU0Z4QW0SS5obvLvD\r\n2gRuLIr0wbXTaY5OHPkk28COO62l0k1vTdCqJ71xb1JyYE0JtD+2kH9ph0fi\r\nd+Xor1fsMhROohEQ42t4quG3sWMVT2CAgqBry35ePg2Hck2eQwRrTL/Yjwv6\r\nLa+kMRaoAky06TGDPD4HHxfWzCRy4YRmSzm67n/VJYZLO/ROJ44H306A73ya\r\nEb9h14fAcHZ/Cagl2l5WNYYs80XM6hZqZ2vcZ08jCl9usv0ttoWSj1NjZU9w\r\n/TJUMykQKQWIwrBEO38gHy1BezlhvR6oAMUPywZ2269h4PZ/J3e0z0xC1KrF\r\ncIVZ7ODZcPfhu//4ewXKftX8m7+WH5VPwW3xJ3Cs+l/fe4cAXtch4sWhanls\r\nExG6XgA57h3SQQt/0ZiSh26VzNni3fsOXEV3eNHq2hgCaNrKIECP38+zpw2V\r\nOrk2jdsLoZQULMP+J+zjUUAs5usnV7cFDt4fKwY3f1pBuY9W2ZL7cxFW6B8P\r\nCdfJ+N6J4LcU7uDNuBo1q+aQoGdfh6+U1XTOln8Q+ATRQUR9uEkISVQDzUsG\r\nN9kaCCqXr91ze/jYgAOe8EP97gS9jIwcCBM=\r\n=dOs5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-CIfGzTelbKNEnLpLdGFgdyKhG23CKdKgQPOBc+OUNrkJ2vr+KSzsSV5kq5iWhEQbok+quxgGzrAtGWCyU7tHnA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.3_1668538371798_0.7610602747758648","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221116":{"name":"typescript","version":"5.0.0-dev.20221116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221116","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"30827ed04b5601446dd47f6bc60302eeabb7e278","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221116.tgz","fileCount":101,"integrity":"sha512-zLbvvDaFHHwquRZH6P42X5JOjP+BAYZvebvA+IuNjaaj8A8XKWYJbaoZ9qg/PL2E85oAsOTjuZOsp4Mk1ZSWKA==","signatures":[{"sig":"MEQCICDWhHNw+hq3Dy2PrKc9MdhgtTzUXP9e6x/KBIoLA/fIAiAQSdGOiQnWnQ+Djb4QkC8khBPmUmKDruMGFCxxGu4Sug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37750455,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdI4OACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmozkRAAif6jaV1qoEMbtC9K5996J0cnrLKFkkkU9uZ2v6+56jLFtpt9\r\nvNNujRQgxBZFWArOv6q34U3r5+WiAVLehpEr8dMGwdjlimdsHC3duLxaq0gM\r\nJLcad8KgzTAZV8MxAIorJiVqgG6AgydMkhJc301KEWz3UIxiazP9CMpHxRR9\r\n/LDmrdj0kZq4yq8zO0w7Oy6v0fxPmAFbSb1okabVvtw9D0HAqbGnAWg+ExN3\r\nqyFDa32DeNPe9wTG+k/m5ywHt6XEKFNVqzfA8y9bS/oj6NQXeTljeyae1TsX\r\nIeq2hNvhnAhZwpTKlbEWihLcLhE+m6T8DO9DkBz6z85s23SfcZJtNyCrJ2DW\r\nkI1STSGmwe0doj7a50+SIrEkg7t9o0M+OTbCazbl5XwSTLStrUT9F4oCmR+Y\r\njGaehCMQkYL/HHLhVt7lHJF45YtfqMGJHcgd1TEAA7W3yogfWuU0YSEB68X4\r\nzRRQIG745fnluRtXrXOwp0vjFHtkR5HkMC3YSSwYZZhuZI3WQNfKQV3wMy/o\r\npdjWC9OALVgzOcD+LmpBqhjy2MNaG/1mTBjyom3+dSFdUQ1Di7K4/Xpyvaib\r\noC2CLWaFPTAmuwANxsvHalH6hmaVw1b1c/S5qMSszfgUVSWgDQq+XZLAZPCy\r\nAWyY+NoDs3raqZ1lyH1Ep4hwItELqVcv74c=\r\n=qHuR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e99c93592701c08f96090c7d4278129b56bc73c6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221116_1668582925934_0.42074445794597515","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221117":{"name":"typescript","version":"5.0.0-dev.20221117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221117","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92c94909fd3b9c942f14966a7b209c44095cbe6d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221117.tgz","fileCount":101,"integrity":"sha512-ey3t3RLhzH/bqAbH9oC0G6oV2B0tr8uWPkf5pjdxuQJq7l1EzToizBl7zSZAnY4q21iXyGSTGCgUqhYva+wu5Q==","signatures":[{"sig":"MEYCIQDrtmFPA4Tsx32ofAPYWTPovV6P047TjtEtFEvwITi91AIhAJM00ZT+EkYzRchfiDw2x2NMK3OyZPS8B258Ague+A51","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37752243,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdd7HACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp5lhAAifM6T7PlWjTtr39olfgQmvXuHhtn5RNsyNXcz8WICObJ6rAF\r\nOG392fl01O89XqqcfXiBAl1EvQVYusjXBOpShfsN59Z1BYj75CNxHCwwNQML\r\nh7o8uTepblJhcHl75k53eJOiqph9Dajcdxh7HzdWt70fWisRTpQ4VBn3LujA\r\ntRqRVyy+M6r4f1yIZGeVJR5cIL6bSrOAqDq6JAF3U16Wb3+Dl36nNfbeVYjF\r\npKLMm/5YX/EfY8yYhN3C3t8piiEsjHMOJQVYrY9yQocnEJtiRQl0d731yn7+\r\nBh5Lm7rjV1vLdxN1yVhrEf7JHQM7Wkuy6ODuWVHSVdeERHaP7FtVE4xtZWHY\r\nhaTiJvFu2Yi3PE9TU2qAguzr5fZRdNnXH6Twx+uN8VVbPCZMmAGlFXnRlUR5\r\nDezDq0MuRVKW3eAWppg0j0khVaVFLWQCdU2075RA/+4sXn/3TXPqszA6zbek\r\nCDDdSwfpjhCBQFaZxFivjSBjEu/14uHUC9Q8UjoXsmGrU/x79A3lv+CqmAXi\r\n8gybffboWB8QQZWNaz+X023ddIRO16FDcCydq9ePGhQOaglH1wQPvXFbM01L\r\nio9ZZYO5Ae8NQb8S195MxsybfJ/szH92VNFpNC8KCg4gsSViPQv0emwKGk0S\r\nLoK3PQCpa060U7CvBNWOlDKvPNwGEKZ7R/A=\r\n=Crt8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7b85cd6b72b4013764e443930c7e3da28a8bb064","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221117_1668669127271_0.7867767035144202","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221118":{"name":"typescript","version":"5.0.0-dev.20221118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221118","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c26007743441ff15e681a822810a125a3f418992","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221118.tgz","fileCount":101,"integrity":"sha512-qhm49ypT99QpVWeUNjsgriRvjnWHoeETIX/Xtk8AlyLDAxEJVkr0/QAurza7emkFpyOzzGt2VOIpNPOx1gCXRA==","signatures":[{"sig":"MEUCIQCGwZSx8ROPHh9F33IflYKeQPRMEShJp3Ypx0u6fv2z7QIgQqJ2LuLLB4X0y7jtOYxA/QVuEpysyw+GA7ZQ2VqGNnE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37754597,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjdzAaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/Pw/9GEJ+O5JvviHPeop9ZcWfPiLUFR51f9F5OuJ7H0gTvyCOQyW4\r\nBlIWIFc9yMrOm9OkisKQZgjdc43ttSsXjOrAK4oTyRB7CFpE7dsvSqU+TdAC\r\nkjzJCDqXT0YOVonL4rqg7OcbiytZhF5NnJTxK1XGvSx4ChD8FievgQsFssme\r\nEE9hj2qWuO8ZTigMu09J9574NMREIQ10cix2flF/+fgCaSgo3WqdS4vJz+Sa\r\njXJqRLcrcFoV44Gf6TeNe1O2JDGl902tyi02iFMAXpfpH8K/U4/Qx5NOhUq+\r\n8Mwvn4doH1sRxQqN/3psb24PrcBrjq6OrQP4w8TSmZhfoSEFZsZWiP76uQqn\r\ndECm9swzCStVX3IUoqqgvA4SSLTcghjOphXoRjPxjvb013OhaYIqDgnZD/Us\r\nThP9WNnESqUN1DM50IY3vVwS1O9Xufqkh5i/TsmGCHUNOtF8YxxQQAQYf67Y\r\nzkcvqdgI8fZwbIO3EDTWUSau1S7lp2s4WDI9+xCWBNyqnfjmEa5fVUyJ0TEw\r\n4ih1BODN05keLoQKNqrsHyQZ9sFdTtbN97x12VgbkcI5aespHkTPaut7bMcB\r\npNQjCclM2g3mylXOTuLopub7RJd0ovthIjRNN3tO4mdCsDz8oTrqGAocqXSu\r\n7wT4rWkhgUog/XrBpJ5DoqYpDn/F6m+ZEdI=\r\n=Aehf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"89d9af2ab908d00a942073c21c0657a119ddfe66","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221118_1668755482661_0.6078001348714719","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221119":{"name":"typescript","version":"5.0.0-dev.20221119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ceb6b92c5dd62db3a2d5e059ed8a509d4802eea5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221119.tgz","fileCount":101,"integrity":"sha512-+vlP1KeOVgvevCjfmYdrABX6x28GP5oqHUiDjVVoz4suQp2oDGi81HwLjPJ7Xw/mo/L7IcpWrEn0uqRwK7DcwA==","signatures":[{"sig":"MEUCIAuPQB3yeVBEHrI5sxMdlzT9Ywcl6QA4ukrcGl3k9wdYAiEA8PFVXkEvdLIGlrDA4qhKpEEZ8xjWjnWs76SQEkZGx88=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37754769,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjeIK1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmohng//XACe79ogTmev/HOZb+SgQiTd7nprndcSS0l8Oi3SJm/CyoCr\r\nGmDWK7SQPdCuwV6N3aL+3MgF1X5Y9AGn3gxpsPRZRf/0b06YcWt26pMGguD7\r\nM4IlsK1es9De2vajL1SlUhx799dFVHvysrKUKiDpDN09iMvfsxbAg/lh8KPm\r\nW7IslbZUXDIHkGFa72wmSeF8xDRlMnV++odNB6qlDwXZwHs3CA5yJAX4fHcR\r\nWSepZWHFMleVdZTBMS2pI3D5v2BfYfld5q1lLrD6+nf2YRPerw5lq6rzHZpU\r\nAA/fabVqPaYM1M945i6Kh/iinXXAfZ4WCIEA5vrDBlswxgXkU7dYExx4b2Wo\r\nmAbMDhGJXfbNOrY18VG2bNVPo9e0jUhzw1p8EsVD8cdFLkMIeWp3CzeaLlgO\r\ncxhsSf3O7fAUsT0yRt/EoaMKkAVbeRYlW5tvEdZ7GED/EjxrKHq/etMomtaO\r\n4dRyBXWRwbmQesGu4LOqEcP+BjekrYT6VmklrfU+3WwECSpvTbTNx+cD3z2G\r\nIhgKz3S3lDpl8ZEwH7z/UgRnS0mXURl3K7eZVjvkWJvwBUVYvFxm+PVyYfDI\r\nBCZeilbhO7lerAG1sOhRrQk1Js/HvLE4n5uZjRnXRGPrKbHAgGagaHxNEMKh\r\n7EIOwpVubIcbBTBIZ7qR11c9cL+f2Xz5gHY=\r\n=VVh7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d8aced98d9f68d5f036edba18075ac453432a4a2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221119_1668842165657_0.8192815627508654","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221120":{"name":"typescript","version":"5.0.0-dev.20221120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"86476facbc035615a074a0e508f72b7fbf968a5c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221120.tgz","fileCount":101,"integrity":"sha512-PT+BOoN7PdEB/vx6+yqaaVQBSthUBj//MO347xvI1UGpXKR5xPHL0PcXDOZNZDKv61i1hCyRpvWYYDRxC8pT2g==","signatures":[{"sig":"MEYCIQDApGXVJRvW44AMt99Dt0nMIS+NqpwUn798LIYV4FuTzwIhAPlJZlRt/ARlwjSwjQCI7/Z0tckq49VqeBALfhWvWhNR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjedPjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrEGQ/+LjQkM5C3KIdqKiFxG8tQ/U5Y+wohoXUoo+WCTsRXSQvkv/VC\r\nem8ndGrt7e0yZ1/KoGUEXVISGFGiMlnCEIUDZXdqv5xk0kAJYi+dDd9ow1sR\r\nSROPFGCgNJ8rcL0tddxRKE8DOJrUlAhxq8BXR5CtJ5x44uqTiaNFiy+PUife\r\nD6YivDro3pPfUa2CTNTEAFwk1Xohfn19aocwe+X+TIMJur1MTqMZaV8LDx5Q\r\nTvQoNhQ0cIyXWNCFFVjHTuUxFd/JC1++CfV0MrbNfFi3jPhGBOfA/04V+qq+\r\nhtlWaH+8hY+qWIkVyAaPSqMbwpEqW+glvIaFCymp3pJbqauRD3GoRalLY2cA\r\n2897WVmB/S3dZq+uR2xuR/6AfwQncYNBn3Tn0JM9Nr3LYeAlzDZR5yMZCCmy\r\nTZveICjH9b/4JW5Q7jyT2LbDgYvafEgLIxCRFNB8TA+hJ+OUcj1tDc+BjYrl\r\nZj5gno/B3zVDxCU1d5YW2qquzKqiR8UYsCuqknGFrvEYjaI/61etNrTb7qav\r\n9QnqJzs5dBM7V85n5FOWrEPF7u4OHjvR2znofAAFV0zlS61YE05eU9ytym0a\r\n9fajjWfz+ereYCQIVBbg82l26IqtdDUzWE9NoL+gCBUp2yRAJNcl9F4C8Yyw\r\nzHkdmwbsYLCWBM3ZoLlVZCaUIohbTxqGAxM=\r\n=TlQY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"df7f5fc94ec621055790d75416802df5814f4473","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221120_1668928483742_0.47552881901629784","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221121":{"name":"typescript","version":"5.0.0-dev.20221121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f9ad6445c22b58ec4c8e5d11baf0e2a11eda4799","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221121.tgz","fileCount":101,"integrity":"sha512-p7Nubpa0zmn90Uyacwy26poAIoMmYhEvFxXWs9Kb4INjfQQhQ1svVoXL1R2nQjD9a8W/H9F8BhETzS09ztLMog==","signatures":[{"sig":"MEQCID45L2/DjJVOiyN1nrW0H5u+hEUEkIaCt4EvGBDGcDcFAiAoOEeyYqVxOFM3e7DQtWyY/Pbul0KolGSXekipzwlGVQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756643,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjeyTXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrE1A//V7J8Knl9mmIT1XbjTIoztaeZlr4rEwji2FuemUdN9Hrlu5YZ\r\nqGWjq6b119yNtzCZohD2dMqRZINZ+tjr9lamSzB3EOuaDxn3zHC1Q0puDoxV\r\nm/T1v/H0SzPwW21iU/htOkW7x2nfquZZEo5vaANgjwdxIHKB0Nzjvjo/ecdw\r\ndfqW9DVXY01WYacLkI6G1MIri4LJtt2+5AIWRF8cotwEzxhhvZVwWk9GvavP\r\nemEk7CDIpIaJTjsorQh0iVb2IvkOdqyiW1yeVLAjoojmrwLfOH/PZW2gjuX0\r\n26NtTWXpDfQj1YQAYZ/GUJ4FPy8zzXOfN4/653Euw74Zcpb0zl5/aBhRSDSp\r\nc9jc3kcey5FBIFMYgdCcgxkrTu6t5c0ZjvXOAhTgysH+PvqMTpZdlLWzo9QU\r\nfWnj/fEATcGTMyti8puTd8w9ErekUSBbwANPn+G659SqlmInniooDvXLNJ06\r\nSce1Exz1Ihd+blBzEpxTidrptns0qdHwQkiZA37+C68RDoFWMcBIegvqFJNp\r\n9zzyiaO0LeMzx3qJ/DM49X698tFsL65AbBlKALI0zAzh63XGQd0X9EYRRitf\r\nbhHYIucRr5tmbj+Ue///R/pk6YuVjhF/1KDcftBMu8IPvxt5r2fLjzZhtCTV\r\nPvE6de0NBuk9Ran2cAclZxhFmonqGuQMzJk=\r\n=snCe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"12d7e4bdbf98a877d27df6e8b072d663c839c0b8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221121_1669014743206_0.9448229588063022","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221122":{"name":"typescript","version":"5.0.0-dev.20221122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"04e9ac5c108b21ea1077f6154ac63ddf834385ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221122.tgz","fileCount":101,"integrity":"sha512-/QYsPv6nbBSWrKXPObtChCHpACYlPvREUopuRBqi+ULfhoxwsRqlSjzyDareF1BVAojPcJJrdgGBv+s/1RLwoA==","signatures":[{"sig":"MEYCIQDZJVhqK4TkYZA4KuMbmHDNni35FnZW6XARztlYmi8OkgIhAOLB3C6GJa2YGemyGWBh4KTZ/NigITdJ9h7Sb5vHf5gc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfHdkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDqA//UU0RNfhAV55jeN7zUqAfu8XFW3LAOxZFMd5m7R+xiZFXclN1\r\nA7GLkcxxFFFdf4I3KQRnozVD46mn9ekYvcFyGAbWODaMi56+fzzVduAJfwWo\r\nu1WXHBBFyCSgaZcMMOpRWzD8PbxWn4I+H56lgMZ2jYUBitDzKoE9C3GtQfJc\r\nJ0dDf3kLkow819y+LlUf/OIoMQyBvTSDGrrm9xMGpKOIgah9mZryYdBoypoz\r\nvxVPpba0P4/zpRoMNuyVJlKQtR2/8SizGgt6vnAUp3+MvO/2jdQbyABJ+Mx2\r\nULD0+cNX3ilG30mU5nptw+twEbr+MftV3vAmjvEV8ngVAIgq3+uOs5G/tLQ1\r\nBpaTEhqfjTzlR/WvtdKtjaG9pLsJDogwmqbWPdFsVotPCTxSRQIrtIkHB2dx\r\n84F06le0luv/x6Rwj/r3+Vno2HcDMxjxKOUEQ7ZefcJ4JqaW7qRzQ4sCpEjS\r\nzSEwIjpF/abSo8WQeMD1PEORR07QvJyd2ubhZsv3g6Di3pyqWb214TCHjtmF\r\nZzGwfXfUtlXI8CbsfJth8CbjoxazyxaoxIFRc7uykTgMA7C5PZ8B/uchAPRW\r\naysoWmiZ3wjXI8Jzw+kNB/eUUQDRYWYGtqyAde0RwD5b3r8knY2ulbtjf3FL\r\n241Bjeuxaowr4puYHGGp1iLhNZjilqxgzuU=\r\n=kpeE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"842e733efbbb05c5ed21aa8ce293431aa3eb0968","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221122_1669101412514_0.9754240171311468","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221123":{"name":"typescript","version":"5.0.0-dev.20221123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e12018e80970cb29f702372abd92ac91e694e0e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221123.tgz","fileCount":101,"integrity":"sha512-DckWW291XJ5FxCCqBohnQpiR31wNsib9JAOHKRC/+RswvHLeMoU43ocSEkEsCq+chu07nYp9RuJB3VPUiiPulA==","signatures":[{"sig":"MEYCIQD0oKl0M7ssfEjN524FG25TTZj9KnTuUy8TzCJI5D5DUwIhAImlPZ1RkDc1mUEtppcJBGvkw9xSgZs50T9FfV2ckPS9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfcgGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr3GRAAhfP27+bxidPs+vDri5blHCPgDHCw8jkmbotPXRoI75+gaNtC\r\nBotZnw8XA3MHaGUKch5rRpHkM/a2SNcV6QSKdb5dF8Xnt82LPcxatbMbPGqL\r\nPyvHd9o7Tyyg9CMty8k497JQUDFI+2Bubx2JV40szuaWYUUgmkFvSQ1j5Pmu\r\n/FvDLY6w/XhsHCs2LZNegC2/6F1pGjiS+Y+JCcCZjbc1AQxI4X2qxpEnC6Vv\r\nCOGxV5VRytSObj0YXtUNLYsaz9nTI/YQq0tjISOfLzEUsIDBbjjgjrF2ehdm\r\nNp0s4JsTKjBnpNQk+fqeDzZL7xYo3pPRnjfyqQt2c73cEp148MA3Xnan9fvM\r\n2xTFe6jw06L3e56U7OYyNhT9xDghIXsv2OVgNNpUAQ7ySQj8zUtwW08jlHG3\r\nZqYQPkg6t5u98B684cAg0rWLpDS2U5Scb4GnRP1mCGcOp5LpmHMAI3fWhQtK\r\nIOj87m5IxSxGmODZvVzXYPO/VKvmSi3THFTLIgjUvMIhHzA7r+4P7w17lFAB\r\nmGgzKfvy8lqzfa5HQl9kBbuN8br4LEtcGgZeb/mMTiA9zvbi8WJHbGsLvfwb\r\nU8LzMu2DLSjF+H28NbMp+/hCZpnn9MoABs9+z6IDT/xwTlZW5C/bMLJigoiu\r\nQOFRUaaHKxIZKbPVlJKHY6DVt86f0FPHB3I=\r\n=6aec\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c1427c90b6fa92834eba50b07568932535215bfb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221123_1669187590676_0.4552440917686513","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221124":{"name":"typescript","version":"5.0.0-dev.20221124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221124","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a9b2017c641e971b106b8c47150e6b2f7f0d1c46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221124.tgz","fileCount":101,"integrity":"sha512-MqUnvfbG2DzsEh41MsPMjYSFpRkQrjgJ3ZcIFRymDjL81UwbO/mbTfRVnowIzO/Z4zDumyhnWYh1F+SCE3pBNQ==","signatures":[{"sig":"MEYCIQC9KQ6YJOTDghmffmBdWT3FSDsrrR8a5GN6pjWr196TmgIhAOLUebgGJbeMKstSoydm9Ze4BIRCdTrVsxQDBpmc8i3C","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfxnAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpf4A//dPHUbJ+w4qDIyVD2VRnoyucRmLsjjPCUp6Llu5MrgC5nwXF3\r\nb5+sor6DRZvr1fwUfo1GaG7QMxCeJIhidEYtBT6ePsIIE/kT+klQCBLn9uf0\r\nYZAnPbC5gZ3lGNl5P32oQsm99p/9CZS0hx62PTLsKFT74r8zuBFkcom1NfYV\r\nRKz92DvT+StDYYkiz9LojYeNn2QAFp2mqD37A2DQinkhU0yfD0vh0+WcYNEs\r\nD3+Q1GNnrX1IG2Kr9HaO5w3KvxaKG4Lbt1kUZDdsHlxPVZHRNBSjAagvIkXb\r\nCfEg1qEjUS+P32G+pGdNThQBiwGnNoS+Glssws5hke6A7QUk8oCve3C22ZG2\r\nvVdg/wUiuCzP5cVnsLIJtkxRBtlbE9o1q0oGvWRJfn7+DS5L5mMtav/D9Vqv\r\nkPXXKFAjMcVXCAigTE+DSgYIk3lYLkpbvoHjdIqoI+GT/Zve3ELOHiLMRTev\r\nd4gxEwCQQS8lWfWNPCkEfUKOOl3B3McRvaxu7+ztzOWhIw5HIzaZR5r/8dWF\r\nBr6EyROyYRDk5IIFdKu29+hF80FLxBJ3nIF70M8nFXRn/3PxgPp80SiPIABB\r\n/34cWsrONHSYfQWBgYYdz3/IuGrrIdjIGXXKUkt8//xZFiECPmRGzWUF7EXh\r\nGgWNo0BL1mlVZ4nkqAPQfmOSXbKPOzzt6mI=\r\n=Q1Rq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f6628a4573cd37c26912f78de3d08cd1dbf687a5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221124_1669274048174_0.8458041771189895","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221125":{"name":"typescript","version":"5.0.0-dev.20221125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"05d8eb01d2cd17b8a78a167d890c02a0e149a210","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221125.tgz","fileCount":101,"integrity":"sha512-5X4Uz1KiBZSF4QobfLgXNawzNROtx6Sibp4hkz1AYMUERoxwoVN3IbWnyyGe0dsiZsI7IFmwJMZurh2pxSE0SQ==","signatures":[{"sig":"MEYCIQCEfJfYnRhzuQPXKL0j+teVxokgf2IFnRroYD34vLJ5awIhALAGFCXYdxHbMQyYwgcb+D5RithiG5zHba4UqnB8ibE7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjgGrPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrmxAAgMoRPzwEcKVV1Or13KC09+XE8og7pr+mVnUh9ejFERqeM3wZ\r\njEYmVTio1DwrtU4oKKCBtU447WMqsRWYpcFJE0pLwDOt2s6T1HwlkZ0ZuwGC\r\nHPVMz7bV1ioWJbVybTNPQi2xpXvagPDSx5mOBqXUotChL+ngf5p8QTZxKlmM\r\nwuegFttjc8zlgubqTvzKnrQvJvz8xOE8XWKDOH4T6GAhhqZvxfmjAYerQmF9\r\n4akIWZrZB9HdnahuV6IFXvRpx2PLW8MrP47odUqsHcau6D3C5KOfJSyiStFC\r\nxclFZvd2N0UmGiZxL3yZxj4q+1bfLgqlDEUtG8f7kdpOfDHSpZpJEtTNUwt5\r\nvYzeDjFipVLpchiq8vweXp6Ny+8vS8s+jmsWXsWK9w+Yu4scqbeZr3G9Er4G\r\n+ybGgizK8ufzic9abWQNy47hSO12+x+zKxg8U9S5a7Mznd4SWxLS0f2DsVQZ\r\nc0L+10sYfMvuw5NBJMl5E5d6zzB+nGF8HvBTLsLbs8VILdJbqb41c6RB9uq8\r\nXYUZSKIOkttugLyZ5CGtPrfDDjLrk0WyLrikNx7UJzYBH5rXw6mVqshLdU5d\r\nq5Iat+2OK/Pi5vGhcHxfzfdRRuhmsvM6FB0yhfMKguws6A/erRYZLnqd6rYZ\r\nbOyQqiK5mL3x1Z+EkyrP+lZfchIQGDEXlXc=\r\n=vfRX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f6628a4573cd37c26912f78de3d08cd1dbf687a5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221125_1669360335302_0.7665546942940595","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221126":{"name":"typescript","version":"5.0.0-dev.20221126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e063740d80ff870e215af0c1bab51fcff0ae1189","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221126.tgz","fileCount":101,"integrity":"sha512-vllGmb6yLPdTOCPoqEDHV1/UnFdOBBwOQB2qX3CSzUCRz978t4FX4naMnPS4KMUJykqsRTTtgM+Rs85e5yDKaw==","signatures":[{"sig":"MEYCIQDTjnOnPwBPVOQ1Pw9L+f4gvB0gRQwXEvtsEq36C6CfrwIhAInHJ0sGWO55lYY7twbsNyQQd0lW/iWk5I0ThpneOBlk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjgbwxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnrxAAnpHWBizjchDF1e3Y7uHDGQNURI5U+u4itgGkTPdhhptYKD/9\r\nSlpnK/XX1ceZqYLS2wCjFi8p/KEpvsHbZ/4qRfBr+ZyyE5ENH7liRvPDRODA\r\nZwiNBeUgvtmfGSKk2dbDDb34xRhfntuOmJYWyA6SC8zP6R0y9manHa/rsjPP\r\nKdnVHcUAg9vJk9eZodhPzVOQ8X4+jlelloCGH6Wc6m4MbvOJKgd2Yt+rI6yT\r\nE3D88dZrq6Rt4JLM3Q7E1KoOsCFFu/SrL2Gu2X2PCYoJVBhQqyHzKsDSyP3X\r\n3aTPwkF3UdF6hP/jHIJxv7H4JQFwQAbx49e0F4iPs2lRgOL4xKdoM4wPrpGM\r\nzC93HkP0oKvzim4R+2FTHMybhk12dIyqS787nNmikwCcCGgpKQjoEZL/W9f7\r\n4ts/LGjTEaTJ4YZ4Fx/48ToazOTxCpjFWdEB9oVTLUPso/3Y9b6ym18UZkp8\r\nDVrxfb6Ye+ZNtDlbPDZIgAFFDAzXr41XCB4y1YNGEjBrS1Zz2EDhVDxsTqnO\r\ncA9SovBi8X3ZUWenzyBLbQc3h7qIr6b6QVo4POGnhbBJQXygti6gAp8vUcnk\r\nda9pJvyLoqUdrkfFN/hZZqZ2m/IiM6TX4O5VqI3zWf1fscqrAgBYqbZtrSXC\r\nX1Qf8v3bA/pygZ8Lg43q2Q/7740vFU/46k8=\r\n=M7tK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f6628a4573cd37c26912f78de3d08cd1dbf687a5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221126_1669446705278_0.41491286012286466","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221127":{"name":"typescript","version":"5.0.0-dev.20221127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221127","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cc23654d88bb5ec6eb9da531343d2db447502aeb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221127.tgz","fileCount":101,"integrity":"sha512-BiiOmTz96U8xt8azvXiHbSKCA+XAY2Ke5p+hpvGHWk2NSrOguWMzK5vwqdNQ7J6jH76yBwbQkEqqvafY8rH9BQ==","signatures":[{"sig":"MEUCIQDIeXVF2q8zauah54iFktz2EBIWTk0GrF6Hzz+TmPEPDAIgNGeHVfduFaVdYN07Ec/DfXqjfiBO7KFTLrW6aC0F59k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjgw8LACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/Ww//V0W7hFsuw0bVI1W1Fo9QpJydv/xckutuQk0ztkwow0OfTu81\r\ntSWuVfvAfdb/gZw8VYcq2+v0yGnN1Xxt+IehOi3rrZVvkBYcORWsM3LQJSYK\r\nQLoVskI5QgrpzECyD99LrlZA/Wbv0hM61ez13UkjoKGm8AA7d1oH8tlt8BRn\r\n6FWokFOAhQTzgrtRVSCMOGY826/+IdmHswgfaYxeuqdceHm9OOHgb7rbABGC\r\n3FdrrDzv3cniKi76n5VU2oayKfwwiGwluoz8z9e0/GP0ih/ae0E6HfGdwwO/\r\naUzeDx1EBrXlcm+sJxOyFqIqoWbYbdLQCw2mrkdKgYZF4ts88IRUOWDc1C/S\r\nd667C6ZPumdafJYP6xh6vjE5nw8Ld78TlIancK0Xq89HBfv1VSqfybX3g0CO\r\njjT+a47p+YTfk4evEzJP68/vjbO7ggW8BQ+8cgyzVx7/r2/Czej355vpOy/L\r\nEIQGv2x1idd9raJpPmw20C/jLQua2kMRYwcz8QR3V5Yg0qdXZRIP4AWsh7ir\r\nhoaGVQbiOc1DDLPFXBJQK0LG6tvdcNBf+h72plL0fcy35lYTkWMPsrD7CbIZ\r\nlm2fu7rRSovXlL+R+B9BkQXEQ2mWW7Hu120qQXWDdjK2F75O4iv64ozB7swB\r\nqztfqwLW81EfADrdE9sr3ErDhlxkmp/eBzs=\r\n=pIs4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f6628a4573cd37c26912f78de3d08cd1dbf687a5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221127_1669533451613_0.09665515983365869","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221128":{"name":"typescript","version":"5.0.0-dev.20221128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221128","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c42cfe49dc7ea504ba778d66fca0dbe681bd432a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221128.tgz","fileCount":101,"integrity":"sha512-cNV/osEHGNKTyjj/Ivi8s8x7MPkh0Kd/t53QjyXfM3jO3cC2jhL6kor57ziWqvyfl6paWjdNUVO/jxGsQOyfug==","signatures":[{"sig":"MEUCIQDYlflj0uXiDhnEiM1XjannleIIXEyt7RVtdajvFpIfzAIgT3rwnRsWQwh2zIkhL0ql8eAt/7FDJba0png31iz/0sU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37756800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhF/iACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9cQ//XJhkOnyJNKhVuXaVOCBG/7CyWL94e7TxqA2IowdchP9RC6sC\r\nKN8C3Xq6T8Yo6vYOlqa7MQfkSXnn+t1YCEOh/Fz9w26lAL4bDRswTMDbkbT+\r\nEUQdyrYf6ofcTD0clqG1mtA/2a4N5yjD82lvCcVD+ow2fEJofU7qrEAI0WCU\r\nXq9H/7Qfbj8H7M8VTELEwQMImKg2zdJVkyf/DfzxKzfrJNgJg811JkVP7O8/\r\nFSkKmEQiRKid3RnAKvKbJ0yyU+btMuhFf5Ams3LqVDpTG8kVKRDWDjsyaU+U\r\nn9cfzetwQmrK8ZVoBgeZeKI0YZ4tfuFkB8dCaZfB51Smtx3nBEthkp9P2DrK\r\nT1y+kInOmoutHwh1g6xYGv/NTz94/XnlxiMa7VP48WtwObnEwyJsuqEn3B41\r\n8bgLbZeBX5cJXcg7bRJPiDobihCQkzKJyCzPkbulMGVFjsPDDeSlhEeLJQtr\r\nGtHkS4OgHAvwnQZmFu/rw/rCV8rT1FCy7O78ELPw15XuDkX0Sgk/ovbsCfEx\r\nwMv+9qEuuqjC9nl5B6w7QtPL1t27ezA0BO1grlmW25faixIN+JwFMUhKlQ+k\r\n8alVceO2mSMENjU+YPpfLx7P6o9t9cC98sjnwzh/gPzViQfoIRUZIMPXS9xv\r\nMxtvmSVja5yehi5Cb49P2k5Tixu5ouT8On4=\r\n=EHmG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0c60da92883eb13e891773bd6815138192496c1e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221128_1669619682345_0.8198146571138811","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221129":{"name":"typescript","version":"5.0.0-dev.20221129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221129","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b5da6ad5f70dc2d9beb6aa9aafb64d9fd3f4e843","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221129.tgz","fileCount":101,"integrity":"sha512-KYJlVn//fGz46EMIXlq2dri8ivw/Nc312RKbTLilThGolVUTTvaunJBViCZTE3JhVBZLlE0KYp0j19uklQVXVw==","signatures":[{"sig":"MEUCIQCKh2YhI33vOMeVcU2kPW2HsAsI+hShQd50gYZv11LSJAIgSvreKY6esZ5p/2pdon6Thdz0hGVrMISNjBZjvnL2v9U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37759461,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhbDvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqS1g//X6mafhcb6fjz3XmUjJgr9JH8wUbiJfSNVtIpfAvtrh1jJTWY\r\n8KEerb89o5x9q1g4wra3wHCMf2b7LKeZnDi7keXxbDcwT9mAcezvooQlGzQI\r\nchdlAlqfU9QXPWcHp2lWDk4mgXfgL0IJy+SJzXjztCILlGDaGK8KwyKCEhTT\r\nbMoQBaRWfhcPCjQS1Z29p5OdckIpKzuwwxWJNEVR+MUF/LXnPwdHqyGKq6jr\r\nj2SiaZi8A25/fGHGZgiOch6sTHpbbgd+3M/MMWNVT1kaOWE4fk4oThtdu+eB\r\ntgJ3QcEa4BxnZaFfhgFDZgWsMv60S0sR07jGbk6EHlJ6rPYmEO+Ffn3JZ1dN\r\nlkA48DVQmygSN2AurI3YLPTYkkN2gh7htCwwvPRzo/TrfQCc4VGMzwBcnQPR\r\nOLnKSvWYY7DEvfFJuF3K13TA9JPeFIJXYyHWeRReAFLphCt74qmhlH0PpjZg\r\nNB9RWcdojzg/CuiKPuDKCnI2QhBDsI/tH5bOHIOmwuHkpGyF9C8LCFUYvW40\r\nwczlz+mjcDMaVNOW8T0Vgm62NM94TUaFSmyxcxq6QGwJM6Rd+mZtmbwhLCO9\r\np2f467RiQDNH1EJ0nlwPI9nm3sUznYLutSdTm2IpEZIPszcETyBZzzZxqnjq\r\nssYQr0Rd9yvySguB7ef/Zgp9WncrJk7JE90=\r\n=reaz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c460e7e8929d79877015c53aedd52590c902e27e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221129_1669705966968_0.038877547822679936","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221130":{"name":"typescript","version":"5.0.0-dev.20221130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"53d9791dccedaf9e2fbb52f4072527c2be858666","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221130.tgz","fileCount":101,"integrity":"sha512-exBY4QPpf0oLOfRYPHqlDivq8r1hfn3kREaytBEN0eA+Lwc3ycvvDkY92zqWlpvORmi2HDrkPIj2R/mw6eQzcg==","signatures":[{"sig":"MEUCICc7Jqaz0i6t8G3xRqAeOqdAnlmz7crsSPxUPJYICXTJAiEAghVWWFXt9i7sBBN3hVvGF2FXulp65cfmLTaCFX8MRTs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37763492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhwJEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrLw//c+ykYRdH0bMTodV/zg8HP2FpKTLlZodmL2Vh98poz1Ja8pXA\r\nFYc+dgXo7fKLfqb+gIuU2Taz6mqL3re3LtrJ9sEdENhVcZ7q0Zm+6IpLN2Kr\r\nS2D9pFvxXbK93YeGh4UYvBvlpveP1meiWax7zLY8Lq4bkFV+UY3NdL0sadsD\r\nb6Gg1DeV1/Zjw5VPJPe0Th0HKEL9pv5UXVs9lX5a1/QGCPPxn0LykONu0C81\r\nmTaX+/s/puNOoQe31+NELHJm/Esi9E7HqScnQxB9LLB5YRALZcRYyM0hgjbW\r\ndBZyvjJxOYSTLume4j0U3UvCACdCD8jg48oqkb0q7fxAJqSs3RTkIGrFuwoV\r\nqNtwe25Gy/Y3i/ZmoaLEjX3rA6nmqGbujLgAST6LMboXd2tvPGq+QAl/AW78\r\nvyA1kH1kKAQwkCPzasMaK/Mc3M4D1fsSvkVZN+2lneayAEJszh1cPzMBhyz/\r\nXFO3uZcdSnAmqw8hGpjj6Q9MsO2RZCVtsJvwkqN435HxfjMzUmUl3m8anJxC\r\nszUhHCdzPzoGdZ5Avbo46+jjSI5ngnsbZGVvBN+74tEaJOKh0JQhWetivxTR\r\nx7m2rFSjOQnhM7RkZCDIO1Za/LJH/EjqPEEIaLckOkb78ogWdFFLIP4DYpPE\r\nLKmxh8B5fjpmgkPmsC0jVUxWoPC+we8xjPU=\r\n=9jfd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"86019fa470a1344cd9bb6879b04fed357bae2562","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221130_1669792324653_0.795322077463468","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221201":{"name":"typescript","version":"5.0.0-dev.20221201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2d9cf51176cbe0b3f495247c5e5510fba53c1c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221201.tgz","fileCount":101,"integrity":"sha512-0GunPFtrZITqx11PJQThb8MdXJwjk88mhOgNBXeme1d9i0mJzymceJysDpwu6sfajognk2yiN86P82xAvbJ0Lw==","signatures":[{"sig":"MEYCIQDU1ZMKpmJ/fwG8jiRuRAU3Q+c0tAn8MdOFlJbo/AhZcQIhAOo+WyHJkvmOABWzeUBtLD/eVaWen/iu21HYKiyKq9Af","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37763954,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiFP3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpuIQ//WMyKEjUAtjzdvia2Iv3jYWj9fw02hled4Beaxmi2ro+bheNK\r\n8Kn2uWCyQYvgxsPYxco60JXFX9sSMggcekuHmUxGeDMBgmAtEN2B5CcFk4WE\r\n136eMtLFK+gkKpNphYXCD7IAB8kOXTZ3yUodb56WenJurw/obvN9lCcKlcFM\r\n1IX4bl+Ditu96sw0di44u7kREL1OnANovqO74XljjI+WiBHDe+36aYq0cSgO\r\noyaoJsChZ3Q21QLUeJM99CSRfaQF3y416NARrPBv7kFyLvSA2YFMYIf6zfdk\r\n6IuhHLJWHtjdEmqNsumklSk6IdwpESOgsiCUCvfu6z1JLoQOIHv+Y15iJzZU\r\nM3ez2X4FaEJOyEgc6uFrDbqfJTTMg4ho2kgDO8i1os+uekOnEwpAamozjA1O\r\nFbXk4yGQz9Cqv7+KMu8AwZN0cquRP8/aVh49PZI6Vr8wcnKSgqaTmbrk2Gfy\r\ndD211HDFRcny5y1zHOx5x4wRsmgOfCnbdG/us3yYi1G13Kw7Xfg6VmD6DJai\r\n9I1Gutka3JXBOXYXDK8xdPdaOdD0Tg+2TdeJe8hQjxmt3lfcbPF6wJPGxIae\r\nq5H3g2uiqimn2LTujsJPzXYIja9cnA7g0DxW2agqtTJh6WsoVRah9Thki2mC\r\nw7OO2kFDBFJie7A8grBEBgTALZ8Ml0/P854=\r\n=x9hj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"70d5cb28275d35e45a0f84aa981b45e6fb059160","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221201_1669878774752_0.40915316001987123","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221202":{"name":"typescript","version":"5.0.0-dev.20221202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"63335cc6e55e86381ef413bd5bdc01535e23c8c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221202.tgz","fileCount":101,"integrity":"sha512-HuvktBN/shznXMoHbebznvAGTuWSGOqyqIddiXcgn0SV7e004lIuLZXRqEdoqlX87nFZp/pkicSsN+y5vuNPNQ==","signatures":[{"sig":"MEQCICq0Wsx0elNmodXEnKUc+1NaVWZy2DJ5dUcabSUf9NfyAiBYChOzWPjBL4FlH0wmdIpJZWU6DiLvoAqha+dge9ePlQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37792074,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiaVNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpyHA/7B9VLSCcQ8CyAARoyYRB88mQIuJ3aE4bog+VHuOpGPDUQSIXi\r\nL/wOO0yXfv+caald3mgafu4mAPuqg4Y5K5xyg2J8rEZS2cB8igFyAmyOr+W7\r\n5EuNuZUDlAL8seSrsg5Rmgt07tXmTx1AaELddgWm6oTWnqHrRkgiVPXeXcug\r\nHt5xCmS3VLX+71yEy6vnTKoeUQH8HpQIFaqUOK362vD7VrpYERmnC6mMXvPK\r\n/pjYOMjaHn8dKhWmyspj7SKDvK8mGXCemUSFPE7JIkaHvJdFLetEwNC3hfhx\r\ngxe96jxXlF98VSj+F7YsnPv468mJ5VIFOW9fWSrcggduHxdtxfV0MXVFbKUw\r\nku+sCsvg/6bZqPyOrQvmJ2Z0Z2B5p+mU7Uu+E+It0l9rIZl3PSDp7H1VTt4A\r\nKQphlto3ZCl4HAHKFYEIeysIG5IIZyBKC61f/1PJ0yfOXOMzWNz+/++J0SVB\r\nC8BIknkGLj9o5uQRdrToeYVq/6Q8HVsCbcNun3TEFDQJnraXs9KoTEygs9Hy\r\n+s8sbflC29GbdXsIchTZE6aqJJeQfa8QXAuIsgE5VcGtCXM0KjuZMPMU5PQw\r\n9k0RGuUh5XzIAySDMUAV8OshRXVQ8H4bY8hlsJ83QcaY9QBD2CVehobgmq8I\r\nNeQXwaDa9I67dhMtpb2ay3e4KEMB2rHopIo=\r\n=aTOX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"6a3c9ea125c13ff2e5631bd8ef68d5df8bc8ab8d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221202_1669965132953_0.5079872624449286","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221203":{"name":"typescript","version":"5.0.0-dev.20221203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8e9cba37400ca79db95128828bcb53cb375a017e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221203.tgz","fileCount":101,"integrity":"sha512-lwlqU8978mcZAJu8teMWYEgpHe6eMW4CzmOjVVJHbweSG3cIXHR7bOv/TceCMqx73AXJSgb8ppTQA/T5npN/ZQ==","signatures":[{"sig":"MEUCIQCTCFcXiTiTENQqrOfwfzEuaxYLo30Pzi8fd3Lc8pTYdgIgeML79s9oMIysJz2Rf/har0ofIE5TZa7erDGKxOfc9ck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37792074,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjivf7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpFgRAAmo3QGOo2yLvF3DkJwFHAmEg1604aM8NltBkF++VdRJAfyOU7\r\niY4XJU2H5g877DQ/RIfDdaL9RVAz/xc6y4YQzr+Hwmv6qhiMpcB9lIytK28f\r\nqXCsHFjUtZ99kc1SrR5LH/awlWeCcMtXEEGJwHnRx2O4R3AkeITxHQXkCnsz\r\n49xqRFLuogLhDFeEfWrV9u9KsdOEKMUzg9rZrkcr7qgI7lKf+CDAbh2IMqkZ\r\nsbEkxyni85zVya+3SU6zf7/zgDIbCsjugVIgu5Nmf2YRPFIipwCTPTIvRrfT\r\nYTNmIL2D+E54q2P3jGyM+reg04zc6vi5LYSW87WtWqldiJDu8dlkeA0ey5Xn\r\nlRwL/OEoX/RMz5IJEZpgx0PWmKo4V0zCuQMyHsSdn1bH3cdu/dzqWhK08+tz\r\nJkeQNYiKRTh8El5owVinex9VtS8HLVD1juPq4aDkjPHXv+9j0nvMV/RvUvPa\r\nynGMIL0/ei1aaLZeg9x0nZoIAGLsr9CR+5bu9Re5z5xiEf41jji08n6Jetsf\r\nOBmtIE9FuSz8peCOZyvOhSHMyq1oQ0OKiMeY+0Bzy2UVT9GPYZMZOCsiwqeT\r\n101h+G6aw36jRcxaS6DAiF7aYc+GIiPxo1ivc+XmTNSLJbYyaeUzg+IlVaDI\r\n9EhBpkR8VBMyIBelXeI9k1eEKXBDI22Wcvw=\r\n=eltJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d4cf24c10753e409b9ab9923faf7c69b328a92c0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221203_1670051835205_0.3198555147386237","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221204":{"name":"typescript","version":"5.0.0-dev.20221204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a5b2dfd021032c4a872d8668d42dfc8af766c94c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221204.tgz","fileCount":101,"integrity":"sha512-6luaUPpnzzwTjG+UrdMsftnvyxkj2nhPR/LrZlZInnuMNuNyhz3TVH7SpxampW990Xw6usgYdhpf/cWBO1MOQw==","signatures":[{"sig":"MEUCIG2T47PpTv8PyPgFr7yutHjEfwM67f9l+DRTukHPtJtlAiEA42kAfLOl13AJrECXeCn0HRfeOPF2ZceMp1zDT4BLbSE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37792074,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjEldACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrazg/+Pdpxqzc9f6jk+VW6GjJ0DOHqEsw28OLpubdi1kZx7/EuQfSM\r\nRBfZ+EUpUPA6Aa5KZid85zrYBSb46BrKtVly8rf7zhL2WXrgU+TWjUewXJVi\r\nT/PEDEnfEcpFymvZJaOma3mWHpR++hiohV6lHDXfVxs+qNaTgCKTbJo4AAM0\r\ngN+/ijt8HeY7nC0YOCj/oEodgHKqaKQHtDwvAhhm3InqZXMExtQSGw8Yghag\r\nljSfi5XvlRGtLfk/lgeBPna5b4w4ZH9X4JBgbrpShgONrC5/TH7WfEjvTS89\r\nvGQoqIQAAUv8lWgxv0ZN7LP8eYcXxN5ZtYftqoE+Z2rtHcPxAf61ciVP8Rda\r\noLcZZOHjxojp8Ly/X+px2XsiNd+jKj1CB5igAo8DV/kmyjMrB5/R6qOeCbHZ\r\nAsYttc7ltst9/TDY2wbUVZ0ZYc4KVttpSpP4eRA7pH9tUupWLV85H8z6o6ki\r\naN5W0n/CwV/GLdpx7bCXsstBjYx9eES6TkJ8OMzxUZetNypYGnIqR21fzCP1\r\nu+qtV3/0oQm+uTIyDIASMlIxxMO5+8J8fdQb1dT4JPsTygXAHCSTN9tGo7Jc\r\nxeeaGwJgbxb2lHwt0yzKA5KT4zIaih9dNm2GiW+EWswY1B4lkrSflIlVXix4\r\nG7StSSPJIYuh3IwvocGuHzExyQM7kQEdwXM=\r\n=v+Fj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a7c07ff0dab6608e352ad86ed0502a5e9d82a95a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221204_1670138204579_0.7085755133907343","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221205":{"name":"typescript","version":"5.0.0-dev.20221205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1b01e13bd10d4e440b315a2a573ce674c29b3b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221205.tgz","fileCount":101,"integrity":"sha512-afHkcfhaQqUk+Hjn+lUKtMqMttizIy5K2r75cz8l7/K+m0k6Yx9IoHRC5v8cjxB77ub2COdbr+0xsNodB7q6dg==","signatures":[{"sig":"MEQCIEdbbwZY9hNrY8ts7lQv/q1apuwB55FZ/bAQ5gX/6Oq0AiBHdDVsXHqssw86oME8w1o7CXVjGk7/jw2TJrfcF1thFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37792074,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjZn3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpilw/8CB4RSA4SYgI2+X4MRCfGomGsfJq20hU13FYoYr9/sBMMUd5l\r\nv2/htl6X/WTlXAz4Y7gnLVwSOcCsmeJCD+FVx37Z8LW7WE3dcBhGAJGCSYA2\r\n4AB8df2zWFUXgfD7jWE0kxJS+TJ3NYa23klqCmXw403XJByMkETv6+DUdjYD\r\nd69hL8i8dTSW6NpYOPTiJAi3Rm80Bc6pXnp9wrcdpwbz5aJo/VEU3b6HB+Ea\r\n/L+v0Col//cW5AXMP4fmhTrmikFQwF1N/rTgf3ax69YWWmvZHVaZjJn8EbtU\r\n+JiRou1Qdyfs7Dy8RZHnprAqhPSEq1dEYWR4izscRbAuE59AkzKWFm+mgeJH\r\nmrd3dLoKBEP3PjcLqR3kJLbkocp5kZPXdScAkFvqVP1gRi7ICsajszeRNYcF\r\nxT+ZQYMQbfpjvmIwTQQCKqFt/4iRxaImB9AM/dqV0tjcUwjCiHwDNpVWx/cM\r\nUlmI5urEOXBEfHu9I/DaBDoTgpZH3W25Cd7q+CAq2FhvQrqTCetZwwUgkG+2\r\nBJeJRYHoBCLOyepjuAxEPgDq7UpLIRGedm2zr7C7/cabNInlsDBSz3ktSQ64\r\n+KEhcJXFoix/F+jmXqv+BA5Lz1Pv7jhcxdkw+x09GKRMGnf6/YwLFfLdcxIj\r\nndqLA+k/EpSs/AhvahIqYpTqEfg0O18CFgg=\r\n=0Y5F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"048029edc210bc9554119a1a0cb75f0486bcafc0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221205_1670224375386_0.8524218735162452","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221206":{"name":"typescript","version":"5.0.0-dev.20221206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5b5f690b575cf8afb48a2dedef4db957781692bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221206.tgz","fileCount":101,"integrity":"sha512-Yl7kEx5CxhDafU4SgjeLmlUZ7kbxKZBXlvnQQlfRLHtXSRyy4BsTx6h6loHDnCWkmRwpcyPJ88uquATOUGfLwQ==","signatures":[{"sig":"MEUCIQC8zwHytTCwsjw6hbgey2B/+DKzxzGWs5GvtPCAFvZmtAIgdYKn8/1NoSqcqBgcT1bHgQsI50lDJuJ/rRVctiv6b+c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37822358,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjuwNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqfdA//WOCWLHpNrNDRQHCxA+msqZRJ1bZrxB7eS3lYgbCHO7a5tsot\r\n9n4YQ8qECa3FzW9I0tT8lEN+Ic7VZ32XLaAL781R3jHZ4dV7rLxk+qT2SOkt\r\ndonnGiUOrGT6glCf7bM3YvWruO7HL5dOF4tEs/GuJrPKEV2X+H+os01qgNyY\r\n4EK7T2nIwinJExfxrkGrYxZiyNk/iRkAs4zwvut90Qz5ITr6a4HBkMkb1fGB\r\n/QY77S4vftN1HBn5ji1H106kPgKI8wga/d9WsDoQJdz1Z52N6xI6Vg0ri4hG\r\nGvuu8PsYocRiePpFtMK2lQ47u2ui0JNY3R9UE71/IBDGZdd2iX69D7YHYF74\r\n6OxcFp+NizWCrEWUAiFxjN3icc1MHQbRupadEguvTlkZ19iLlqKRThFhh/qx\r\ndJp98tn9VZ53dXUq/Wz6eT+0R6NDr6G3rmvWA6BhO7VHKAVleRD4MEXGg/sV\r\nVNQbltpsJ5aMLdJJeaHs71UFztmGxZkj+bgdKdAmuyZmy58afRAREDKYLXHR\r\nRdcs3tMHgRXPsYkvhB6Ee+asPhhvw2CNAwkV7za8UxwmtbZ0RS8HhV8oq8QQ\r\n8yVAuNS9NWzd14y3zOcPQyK2tYYUAHTQu7tZR3NDJTrAtDidMMhH3OB5/TYa\r\ndaVr1EwUrgJfq7zxYmQjry1evRot52iDDUk=\r\n=tzlW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c124d0e2604bac1a428c24b98a1dd6508d860812","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221206_1670310925111_0.6316900280784914","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221207":{"name":"typescript","version":"5.0.0-dev.20221207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7945a13f892531cd1b005b006f6374d116ec2c7e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221207.tgz","fileCount":101,"integrity":"sha512-xPWWjASgLapa35nseHVRmQK6L0k3E1hb8OcN3I7XZHqYGUxk3n+RcncQSb4gGVromTEy7OHaoNSWLrkDO0+T1Q==","signatures":[{"sig":"MEUCIQDnq7PcnNhw3+yAsTlP72YH50kLmpd4IfDGUMSp7ATkggIgBO8tf7nwLyKfR3Cn4msOtiLbJgk06sc+mDSv2bTJHHQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37562748,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkDzKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2Tg//fCnZnQYalsvHKgzL9CZ2UIeIRWKsI7HL1qgxiLZfg3oDzUhG\r\nzcvPDEiMoXSM3VDQ1at7xYCRPShS846bi0zrdqbVVTQi/UHqGiJELSSXFaKZ\r\njPRkh3Oio1Fz1KIU+UIWRxxJse3ETkIFdnGjNJAdwFc/nPylL6sOYtvy0lm+\r\nmd8z14gAVOEx9GGKIKbHo5Z/+0vJ/cLaR+Zyu+R7fUHlTrxuM2YoeXELHZQw\r\nvWyWtaSPyt1Td06uPW3visjVSv2dtShrGVKJmAOxM2Cst33OeVuL/jvzQObU\r\nnnlVQNQy0RKmtxIazTG7zTkynDft7F9zmTmhaiP/NJ0whQrlAHS/6YlmQv5u\r\n0Sf3nCiDh1gWeBQwvULgJQlS0SIazvp2sctf/ieUFFbNu4BOZCChE8Chk4dB\r\nM/rGef+NhNUtUgZRcfLsAqssk6XeskTeVDsNy0AsAso2HKy74TcPsk1oyMLU\r\nUn8ZpaYDjmpFUYtw50aAXmMV8bGut3399JHzi7kG59Wj4LA5rU/y6+hRnsDi\r\naFUvr2R2P0vruiiTjIXcAEvLxpaqi55YnO6XJtJbX/E3Z7+jEtu+Nev9toej\r\nVjGk0lRAohd2CQ2BS7leNzcl5FwxJcsn4bEmEvIGhMBjIGb7pbQBESsPaMjn\r\nsh52+BNR7EQvO6li9QcAyTxfMGpsg8FJ3K0=\r\n=Hj3F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"832a6e45a7ccfaefa7d3ef7d52734f775bbf5450","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.15.13","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221207_1670397130064_0.7540448664199495","host":"s3://npm-registry-packages"}},"4.9.4":{"name":"typescript","version":"4.9.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a2a3d2756c079abda241d75f149df9d561091e78","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.4.tgz","fileCount":108,"integrity":"sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==","signatures":[{"sig":"MEQCIEaDt+QJnq26YUm4lgwi9FdWpTl7uID4f+qU7YuXfNYJAiA8Kae8DyMMVzkKmW8Qfi9gYpXDHB1bjqgDSQXD20YxOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66846856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkSdwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq0Yg//SDaX1rYWAI6wfIJMDksWxHj0wjB1fs/nvt9iKTI7sAFubVQx\r\nuQs+Ji1/3EtxLUeHCK44Oo4V9jcOuutQGJHwAw3sAU9ZZ3ebsQQ4C/UW4KIx\r\nIH/hm7m3UbGS2POSZNXpEGP++d3uFCitqMHIJ/q9hNY0uuRPCEOddiEz39aQ\r\nwzwDy2gisn3zLdEhwReRRmBJ+mbj5UHLgos1TJxVCV8qPEdpDVgP02GUv3PW\r\nyHGzVJTz6veBvezOiiDkYW/C8B11X4PRgwIko0KFksTxZADdUuUGQdbHhhdW\r\nT3hjHcWwO/UfF0Z74OkXhrC15IGsBRP8hv7vF95liNCasdCtvRoF8nHqv0Jf\r\nDasixb/AB3/n2/UHXnYFxEhFFSi+/7Fdc5aoQt0UpRQgsO7RRkbwJDZheYOA\r\nxGJJYgnjCnjQ33+1NMGbEV+x26OSqoR5bHSviJqm0TL99dFvYJioBKf0c4jI\r\nuvr6+L7V1RU2JQzqSyKK1sTQoC4uGSABHbTii7MWXQRYmXRfS4hetaQTDBD2\r\n4gwyUS88D1Wz+Yv2oNHYdgwz9+q9z5S6YID/al2KRYhlpOwefQg+X8mbfZ/H\r\niBATwjSduAm3kaUB2pTGNxrBkLHEDK5lFtUtEQSFR+TahRmdoNCSr/DL/FBd\r\n3nY5CAW1xMQqf5uhLNxynm6y/iIcAoOW1Ew=\r\n=l0Nu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-Uz+dTXYzxXXbsFpM86Wh3dKCxrQqUcVMxwU54orwlJjOpO3ao8L7j5lH+dWfTwgCwIuM9GQ2kvVotzYJMXTBZg==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.4_1670457200044_0.19366069307075295","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221208":{"name":"typescript","version":"5.0.0-dev.20221208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c950a8ebe5b819e9e2d5b431bac88af6df1a73f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221208.tgz","fileCount":101,"integrity":"sha512-X9uK69qwF9KNf5i+SDMKAtS66MmUL+tbwbrtpyEplnWWdfErtw6ZRegxdgaTOAC7pFMALQuR/PCvkL6O78VbKg==","signatures":[{"sig":"MEQCIDH0uxePLNpBkdKKKbGEf3LKIImh3VlSJW3UrffYf6U/AiAb15Zk5GumsZW5quIGkKh2WGg6HscBjcGa9NHsj/CN8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37559465,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkY9DACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBlg//WRyL5TYDSQG1v2w85Y0/m+B76O0qzFj1g3WOCkPlax9fu+DJ\r\n8nsKU5zeLCt5uclLoohlX6LoqP+dHpmDD2HP0F6PnDQsL4ZFRUyaW6pUmsnK\r\nDnae8dB24RuOoPYzgIZvLF+Ehx2Kn3lB5aBSiXkFFbktTbl7VDzuRAqbTsEv\r\n4b6bfMDIO0YGFraT9bI1FRiKbDFBpub/lZj1twr5GxIwpQ6hTtxmx8HdqNo/\r\n7UEnPf2d6JdIspmgHpXyQEzvOscDL5Q2K2mFFPa2wHTpRElZqRf0x2BKe9qn\r\nEjKFfUu2eOcP/zddXbNpyYl6SgS0sLKpeCFQiqZc6xnn7EsaHDtZ4DB3ghSd\r\nAx1rUBYyg2DSBjrszktCqQjH5ltABBF4wKnmTVydKVguMunIty/rc3ICgL7E\r\n0hybVHNlefs303llkuEbMkc7viOM6Bmqgq7Ue5kPsUfJQvvYNmrAlj9/XiCv\r\n4ot5rTCNmdLcEIt27rT/5zKjq7Brlu9xaSDQbV45xKOxSyS0oWWt00IHKzAC\r\nb7CzJM6A225/7GxXecwESN1E7eLEc1wbIRWFAZR3HinNsXdRlWhIW5bpwvYN\r\nmAeQDyowLt6ulzcttS52Vd+yGnFoWevZSPkbaGnUo2QLQt6akxwd1WCTk56u\r\nvEuKn5t/wB4KT5Z4yyzqLvXU7kaet4CWgms=\r\n=Sx8w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"52203dbc46dc3b440a6ea467fa23b3df95aab473","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221208_1670483779052_0.007981489372671735","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221209":{"name":"typescript","version":"5.0.0-dev.20221209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b709025c3d4b1f02cdd6bf171a328dc35c9608fb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221209.tgz","fileCount":101,"integrity":"sha512-1FzCXMc5vFSoL9j9R5GsMEHlDk03EyC+33UMCQvVW1La4suWPvNCqKA5EQBw6zbfE9fQPawKOcWlhOJ6uhRp4g==","signatures":[{"sig":"MEYCIQC5XSW5tqcJ7iGpbY5vq1oRGdbctXbHrRvc5kzuLy2/GwIhAIobO2GmlXaLclxnjhpTbvpOfbL9PtdTyReYlN5jFJRN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37561968,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjkt/BACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqZlRAApDBNLKw0u4py7Wg8lI1q8Uf/Jfy8ChQE3IrRY4zH9hwMBsDN\r\nM2ujuhLNKD4TQV+n4va5isSBRBJzGXTDDWSZ9yQP6mNILIneS5Zd2X9LXIOE\r\n9sNS2M0Sl3TiSZB6Q0mPV3XEBpry287tbPhzwQAFCpwomQrYdnrBsakZ0tCp\r\nXq7wi3ru6IFGiClJfdur9l0wVOAuhVbDwSBimEiWpL+5wcq/rZAB7Lg5jOV6\r\n1t8IlhZb5iIttQQQhuL8AvtUmXzlIyf2EoBlOuQbPC8yQvrEn+5HdkifDZmQ\r\nJ5f2R9dQ3ILhASXPjv7weuAgvotWlRcwxlfikMV8VKzGDuGI0fQbTANP0I28\r\nytrSlrB+/WPHaaRj0XKVHp1MSaCkREvo6zqufWjo27j5Xk2gcSFPwDhKD8sC\r\nEGt8bnGRHketxRf/qZ63npV1wfAEXbTo8H86OB6yiy4BBtHti+z5zYlkaE3p\r\nZzGRMyzI6YE6xlpiYjlDt0ksAWw2qSW/NVIRfTeAw/9gOVDClWtm4Y13WuFV\r\n8qT0yK3FTGVUJEMa+a55LNVi4hRfE1VxWzwkAZV7hyTbnoFDffodVGYhWqTL\r\n+uWvo6KxgwDRIjVES+b4RCCcJ6qcmr/HDRO0r5aQM1R8M6aN6ZuKcIWKIQT4\r\npaY8xZgPa4Zw+7pWFJm52yPbAx9D5iCwUh8=\r\n=fecJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"212d3864ef08a78454b2a12f7e1f11789917440e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221209_1670569921077_0.9666270401566319","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221210":{"name":"typescript","version":"5.0.0-dev.20221210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2dd9409cfcfd239ee5d6a418e48a7ffb638c3eb9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221210.tgz","fileCount":101,"integrity":"sha512-j+HrsNSe+sCqEJdqKT7NZi6MdeOUutCYd+oxzMpkoWFK87h6yqRs1suxK/ueic0Oou7zZMeT0XD3eqFiY8VLQw==","signatures":[{"sig":"MEYCIQC6Vna0uSSod2c4VWIsg8dD/Tg6ePtQYONBNHCyGvihcAIhAPxKxuSHZw555DhFqQuj5j8hRos9gSK+jmYo3iBSAxOn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37563082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjlDGEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWNQ/+KIms/NK8kkd//sXNm5MauMF+d+4/6TUftDNikfG3M2k0XBVk\r\nRVtTk3wfW6hDJp2tgYXSp8YT0VfRHZqbtrJ+weuuu6bgOCpWKhymxFpR8EBF\r\nXKLEf2IXqv69vVMguR3yTDyltlnkmV7OOqRMy5jmz1VnvJQG46zFbkLjZObL\r\nW5nN4wgMtZhd00hsMZIdTGc+RGrzOxuhFI+MYmGxlBYCvltXfi2eXf8eIGpy\r\nzKxkB4d5ddelhdb4nWkPuBruJYnWiq+Sd8uq4j+6lrCq9uLPj4BFwLWAFaAB\r\nEKi517Un83XGa6K0Ez6UiW9ykH776jYLYMYSeEM5/dEk0Hoxrtli32X9eKFa\r\nY/OBqypmTEDr3VfylsoWuqnOiFhE0Jg0K0NW7+ayDzcRxOjVIWgR3b/vHuQ3\r\nfKmkiLty/Vomf0HtkaWWvWdWar2bmsVmc53PiQVkfPIHCCfEMsyLGERAyxRB\r\nbTaqIpRlSigvI7rH+k5sIF41aun6i46ubghu63H6VBN7kPRj6Zoer+zQDmYN\r\nytxfHshdeNsOTTVJR4MO+tc7ih8Zl3VmbG0KSaWkIRmRA5vNUIIQwsAXO5DG\r\nSdFtOwntjxIHvLEHI2BLTL1qLNiYuBdM9jogEftisDv1BdUub6418Mi+TxRh\r\n4wqwXcdprFM2SexS1cM782y4hI4kYQioWuo=\r\n=1HAL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d45527a21575bdc0f2f1baf320fdd37081f60776","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221210_1670656388029_0.8131939058033877","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221211":{"name":"typescript","version":"5.0.0-dev.20221211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db982b309a691be44a118c62f772a7517da17bdc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221211.tgz","fileCount":101,"integrity":"sha512-rRvbBc/FPV76zteUuKFLruOTbbD5OdE5TJINOCXB4kKWpo5nVlXaX3YQLPExPbmPf5TRiYsrKpn7LaTPIVxiOQ==","signatures":[{"sig":"MEQCIFJ14DmU8LvHFch4mxtzXO4nHcVv4Jh4d2hzBFmHPho1AiATL/FwfPBnNbPh7PSeZ+Xco2RkhNU43RcIKtZmOJHj4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37563082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjlYLfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtBRAApBlTS9rDJlIGDX7HVCjSqSleFKAi3d37w9kk1JFfXJDYg4Sj\r\nkW+5HnmxkslRm6LcRkKS6KuAbzEUdk0vsGlaHRlztMGtrcB7wIJTZ0N1cnH2\r\nL/Boba59Thwn6IPpebN03XCujx1RNVNtfaTGE22ZHnYi+7v2Nhj13kZzKuqT\r\n1NMQhyBK/YJAvIp7x0/ysLBTxHlPGJwA5ea78BsqZCg/yuuHQQipSnbwzoz+\r\nfsJvxLBCKW2BkPVDjr1Da4ZMuqoyUryT/UBpkqrTUEnJOf4Qvw99mslK5d9M\r\nAi6VpwHBC2pS32PiWpVFEnCIkSuDXrtxc97uAT7MPfMp1mPvSsnDzwt5x90B\r\naffG4ePanm6KkNAaNrvXkgX40LHOSD2/KMol/BwnjpnFrZRHxt+2NR9p3Ffi\r\n4MIq8wq3P95oCGZZ0qKO8BO9JKdcyBTWZfWXmFv9S5vvOnPkeazT1lwN+bC0\r\nX0OCFtbhLJ5hk+sv+CHsb59v4sDCPiLYw4YOQjevZQHzhE+Zy4y175bbDpKU\r\nDE6oCIX/VYwnDbVbxVmAGdRpRm5WL1kd1t6l8rMzyOBVWs97WFrPNwyNHEm/\r\nDFsZ210oKTthjZVoULX5mc6k88R0PW6tRRV47AamXhCwWZEZn/m8dED5tw3R\r\npzUnq63g9KRI68ipaxgpgItLjRVZAyhrnQs=\r\n=6gmm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"3be1a67f82021582c011d458fb0b12ab72df39b1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221211_1670742751463_0.6066356144376575","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221212":{"name":"typescript","version":"5.0.0-dev.20221212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221212","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bdc0fca3a3c408209131daafa6c1cbf480f25fc1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221212.tgz","fileCount":101,"integrity":"sha512-bnSpGyeM4wf0n7H5Tv4oWf3dPiEpUh2bBLbrLkJ9LsCQVdedHQwC52H3gtWEPT/yt4XCiDtfqjZTGHXxEtDn7A==","signatures":[{"sig":"MEYCIQD5rsst+x3ee6pU9Xef4lWTUuPyhl1IWHWGWgjnrcVxxwIhAIJLhwrsKDl6uDw/79ZLohpi3LtPj2XvvGkfijB8P3vK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37563082,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjltUqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoQpBAAm34tIWzdGwHzY8dSK6+UlCDcYk5i+UPjWIxNBo4TsN3xiy7c\r\niwySc5yHUJq6JPR81VNOP+vgWTgiLx7w72lSsJp1bpEiIDCcXo0DCOua/mhs\r\nl97j44hc+KiX+sD+Nybm7k2e5QRSoyuhmaJA45H58lI5maAvEfxBycqFejEr\r\n6KNyzUpd1FSyYIRNfc4xZ07FMHiqb2MWWmsLk7L2X34FwQmNx5KwChGNgmxX\r\nVh9apVgqt8ptG/lDrND99VSqmsmy+cuZNIQjwBaYn6abnMTbzFLWbS2vDq7w\r\nJMEM+Kpfz91OKz3k/ww2wzqPowpWg0n7NbswZvxU00rUGrz2NoavHCiwxqUA\r\nlGpx3vO55MyR/HJfkKthtFWxUdZsraexfTJ0mgZoWkTXvv8OeV8WTIxj+zYf\r\n8n7an3oznMuCzW7bqL18MGpOU3xAyeefvQACOjsNBm43V04yvAQbHx5wcWBE\r\nLO0rwQdR2lmbDNTIgkcwT8hp/Lj2Rkv5+gDq82J5XyzGRfa4ZStI5jm5/znQ\r\nw5zfhsK9+Uqfg05pzEPOepNw610vYnOMxP52E7jPrHeNnoGuwKWFlrynII/r\r\nEbc2aemYu1aNe43jRCLKGMEmyG0uI2AFeKVHD7AeTaqALujGIL+XzD+eS2lE\r\n+K2MKvOG+wIYpcPH3LDLEpC6PfhNlX9Xdsc=\r\n=l+hZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f1288c33a1594046dcb4bad2ecdda80a1b035bb7","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221212_1670829353802_0.6770449773941605","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221213":{"name":"typescript","version":"5.0.0-dev.20221213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221213","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"83bbfd47edf21262945ce9c9d4bb0161fffbd1ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221213.tgz","fileCount":101,"integrity":"sha512-CONCSaeW3yqMVDra8geo9H+hDek37C1z/b05gWtzTJP4vVQ+exSRJmPNqhvuGyEs5En8wcjH/iXVGYQymJC4aQ==","signatures":[{"sig":"MEYCIQCZBJT6/WsT0HpeujOWnz30Yctx4bkNSeCwIM4mee3X9wIhALiQ/gPldg3NWkaEscxmqLVLe4V3AqrR+XLngC9XpNQH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37575577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmCbKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmovbw//VGI7RddruP9KJyyr6e3ZPF3O5V/paFOMypCw0DNahmmS2ONr\r\nQUR12HwTFrreT6H2GQTTq8IpwPruegNQHW3niYdBFxtkWeYPhynIggx+Kk4T\r\njBQGLwA8duyRAigSrf881xB6if3DeYLDi7gjqSjI8lPznVih4Iz/Dhbwh4cc\r\nBIDxOK1YOGsohwvOqPDWr7C8lUmD2cEfcUFSwzq22/v2RtMNDmCNNuT7SLzs\r\nRNnsLLhSyfLcAZ1yemaDgY8Z5/0UCa6jY7vwB8Dyjv6pLKoa6CzddhZjxJxi\r\npvu5MI99BlUfBSgtSPBEPfqjWHfjCr2cH+FbXZPN5nAlgIeWdy/j0FDG1Dw7\r\nHhl2jj9H3/srMCYWmPt0Ajo75IEkvmFGC/ar+8Yjt7gn2rTabEnbXPcXjzqk\r\n5F6h0R7cMhL9hMmnLp2JwiCCSjpw5qRuDRamxCcagMscRtHw9v0n+24MYBT1\r\ng7Kq3COpmie9OB/0P5lNxOGiWnDfbG9+DGg18tZvfAxRdXHLcnWh1I2v71j9\r\nJM+u2DXNs0zPyBkAwtYz7dXwgDQZ7TCh115I3Rmzac8Lo/icdvG1VaLXbtZu\r\nxSbnFlSoi+tHniSjfQme+R9ybQQAPdadTyfFvuH7NHdtSUOLDjNZ81mLhMah\r\nBbNXNBHMpDnCtitZ/3C8qaeyyWiR0MzVaB0=\r\n=iiwe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"41fa4d7eddfb9691d7f8dcea8741552d5c09c4bf","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221213_1670915785861_0.35682105071359316","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221214":{"name":"typescript","version":"5.0.0-dev.20221214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221214","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"848b3bf9406a764a2d2105bcee0ecb7089189263","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221214.tgz","fileCount":101,"integrity":"sha512-sg2HlS57Zxo1AbNpq+lUY9yHR3qA8DmP2nS8KBkvGO86PXCYtWYxkPhbwV8KtAlU50GNmj20fEVJK7kxvZdXfw==","signatures":[{"sig":"MEUCIDiz4AtL5TW0/KISl3qro0eRHI3fkM74oQ6zQyFSk0SLAiEAyVVyFKzoYIXul8wJxdAAPrnf/UKRn74MilpFwpD3iaQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37843773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmXc/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmogtBAAlMkFy6jpu2ds+kxIeGy6NYz+6CSjPPky0wdPU0cCWMd5vLjt\r\nTlFeT3uSRcfvPMgMiDviC95UTW1JJ6K7Ha04PnJ+glN3hQnluVVOaxA3A9YM\r\nioGelWGal7E9WXPVT3ROptWpLHYEh7U4yi9WhttqqlwXQJV2qy97MEq/0WAK\r\nSozzDExIw6P987MyQ8sDPNglxCmLnSGZAhTufkIQ3eKpYJleri90V3znhVoW\r\naCG+cEr4k6SYpH6gBYpGBhy+Wah2K9qm16rxlC4m7N06gRBHtfKqGXmcuxK7\r\nHw7GhGNTsI6Yj+OydNAODmfymgR0m/sPGOwhfQLjsYjQnVUQ0bZuar12XnTf\r\n+QX1qjCKTsEF5L44XeY311J04BbWHbTnc5dMZcIbLMu9ERwwbo+gVCiaUjl2\r\n84DuYTotdWVV1xx6Zm6l/p+4PlfzDjWmi5Us+BlAsVs6WLOJ+97QLpZih5FW\r\nBITDERLbUy7DeMi1aIDtLyFSE0kvd3NnVkPgQKQiGmucbWgWcQrSUuJwNv6x\r\nI5yZQ8YS1+A/ZzMU/SmKb6BA3YxvIWjFv/PvBOP7paB0PS3FxgGwLrKZJ9/7\r\nFKAnDM+ZUqea/DpAqriYyJD/Dit9zTQcF3P0d0DYAbK7w09wk3ylrloJ+m6s\r\nRZmoMv2DAeprozrYVzbok5+6wwWGXfgZOyM=\r\n=pDkD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eb9252ed9e53cd5f2732f14552a01920c4ec9401","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221214_1671001918705_0.47151248778130506","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221215":{"name":"typescript","version":"5.0.0-dev.20221215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1ea76ae0cf912259c8ed023607d2af4c34928fbe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221215.tgz","fileCount":101,"integrity":"sha512-c4J+NP7IxANpf/vw1dGIbXNzewcl6PEjRo8MR/DXHZJgNIZZBmtgq0AcR27+jnUZsXhuXIVjmNPTxcNNJpnPqw==","signatures":[{"sig":"MEUCIQDhWxTZND5ZgLO1jwvxNfD8FivMivi2P4xxirCs+Po7JwIgVlWycr6eVzxKJkkzt3s7//mfWPR66WHCaB0SohUZyrU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37845845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjmslQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp/6RAAjLBl4lM/42ltWXXk1fUHl3QNOzvW83YJiuREY2HFXdvRNkPl\r\n2MW2w8wWFnAHsxrKVDvDW8FiW34Ycz5givfYEcHIQQ5uGGOu3ldQy847WNs9\r\nTu8kWI7LvMzxpL867MZLaXXx9xfAQha87Qrc2OM/q01DV3+ygoxaJLN5j2Ev\r\nevXFvjgaWnmy5nFVy2ZenFmG2g+FmrpC9LiYaM+BhJPj8y5h9l/WWd/0ReRd\r\nxs0hpCEbeX+cUliFPnP+CUO3CJK4jzcpu3N0LV8L8Fz6RvVsYcC5XZrqMhrH\r\nxChYD9uhH2yqE8d7lle3LFKAV0Vik7zd9GHBgT9sCj/da0y/5MFHd4zx2eDg\r\n3HyzMXNebBx1ywfsqYVFknJzjVOyoDGIMofhl/AtTwx1zgoDu1KSqP2oYg/r\r\nDN+onC7e/MS3TXWuex3HpBcoXrxR8BAZrPNFhB6tBUXF4rDO5SXcDQbLjemd\r\nB32S04MpJUQhcsR97GTOnTUCI0DaBDTKrfTND7OZppzeJ2yIp5R7ODOrJYkD\r\naYjKn+Dmbq/oHwySwsVMSgvmUu6fu+5zBrgm0e7NbKo+na0Pup/Ax0qIrhDr\r\nDzdeCAUvoBhhtI488oMRkzyRlgwQec/PPJt0nE5BZ5cL+g18i7f+KKLFQ4uT\r\nFjNp2CkEPpKocLFHieGggX+Tbf5u1A1Y11s=\r\n=FugE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"b9aa8a4096898951b32ab8fb91c879c5cbd81f03","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221215_1671088464430_0.24135776150563393","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221216":{"name":"typescript","version":"5.0.0-dev.20221216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a7a0402dc10ecc69d093e64f1120cbb8b42ee826","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221216.tgz","fileCount":101,"integrity":"sha512-69mskYxo8qKjwdtzRxpbZrueutt4BTbbTUlZvcl8Lu5pM42ZJ7GuJw6ZLb6GVUx6T8/dk46erSFT3O4SNCi7LA==","signatures":[{"sig":"MEYCIQCkQSOB7+dyN2ZUqELZ2gDcapceezClTUM8qVyEzHnbEAIhALw4P3Rjx6kKNGB0aUC9Rf0AndqRLEWTEFiT/vv01amm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37864743,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjnBpZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqE+Q/7BxEhQQcbxIGh9tIi+20al72iX7uV4Z6XlQmBRxcK17gLxMp4\r\nWjw0XFTfqDkgc/l6GGFvDhRrEPuSMbeIEvZrrLUkTfcrDpwsM5OL6TZj0HAO\r\n7h38EncmQC5XbqoQYdG42lysRjKAfjtb5iJL6JQcNAjewZkSOzwyCxi/ANja\r\nJjawOOw4Daw4QcyoOHOLX9L3dLzoio0K/g6U4l7LQprbv4rGWYcaOqS61oBt\r\nG21Ua9DGkMWwEZbYs1d3ZnCROi5DiW7eFNiNrznIPi2yXoYEIKO9rpxnJvjg\r\nGTeVxtPd/79ivDRyI6n3FS8N36SXB9AwWtjO3cyRPPixEqB2nvKHGN1pDo3u\r\nZLEMUFuqIRKMClhFesnTlYR5sTFQ4NHyGnMyW94u/+Pq9klC2IC8FrwWw6tQ\r\nFhVEll6tQZp2kQBaNE6k7mh1WKW48btV+QUT7F4do9o7eFJ53jUnDphOw+JT\r\nEpi9/oY7cPhA475yBJuybzaJyAHl/PDrqd43gAs+duqLReVQKSifKAKagDFx\r\n+WtujfbJ79J3ccPYsjuGPWILCAjlIiMh2jX/e3nTrDCAm6eX6b7gPBgDzWsj\r\n9xXdF2/g0Lzkgc227nHKgi5PbTpZmz255HDnV4nxym7Py9s9xCUXZpqTgoEO\r\n1NG9t3p2cx6icuq6vP5NgU39f3WBnC40rdI=\r\n=QqZX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ff919e3b76c096547a4a33d7632102382eb025cd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221216_1671174744924_0.4664043017147488","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221217":{"name":"typescript","version":"5.0.0-dev.20221217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221217","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f3f42df4697dabe87a1da1ff02714e44c514bb78","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221217.tgz","fileCount":101,"integrity":"sha512-HydEtykZ5AXPb9uo+a92AFa3c6dU2+d2E7lIdMwc2otYLW0CbxPCYAoJBW7pWxxOOu7pv0Ll54wQg7/J+rf2mQ==","signatures":[{"sig":"MEUCIDAptWYz6oU0AATkKSBXRXOBp3njpz8vy7f3n/Xzs92gAiEA0CQ/h2EqrtJ3TJpvtigwM7Azh6ukTyhqYdvj78wBTvI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37873853,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjnWvlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoIkBAAiNuUnF0mxA8At23NpGXRt0HOXnWufTWBj1r+WKLbjyc8Zbsp\r\n/HqUB8jHx2BcHYSx1FCnkcX7yr2hI5RvH0utzgtrZr81/TnNV6NbJKIvCpdM\r\nvALdNd8wMBY2hu7SsTIChHbUzwX94DTyfvcQK4tRfD3zsiEgBROAbD/A8taC\r\ntONS+UX2i/2z+DT0tm7MgAGyDBcpYDaLYj/fUfoKJYSvW5jpAlsCzs5fjm/r\r\nibH1r727qJFZOqGnJJDSh4PB6lryn224L8uf9CqfAr1Dc7lFTzYGDdiZ+dX8\r\ng6i4wyvXuKvHYqYVerZ7lUyD9x6QBH3sq8oW6slKl3EUpVazBqhHlia3j0nG\r\n2Kh/WyuQcvJDiU0/gyM8xGtfX8EVQ3HmVZhRjIaqeLHhQXdlXZyuS/etTjxN\r\nNbn9bS7kUgtzq7xZweWOKqQPoaxSZfmrf+ZzMshE+/JTqTw8TZZ/06GkOrAU\r\nOB8fWGYesHzggJgZd6P3BG9ppctiuEHZDPhrpiIP/mcRQgZfpBcY28qRXsff\r\nJk4IcOvjqSgaEcuwfty7vqH5UtyySxtvZ8P0/AM8e6QVTL6pKBwfm34UKgu8\r\nBgBrqefSrtvhju36ePZ4na1PEyUpAhou/3CaXrUADCTO1NY2HTCyY4C7xzvv\r\n4l1jx+PuBe/4whvlKRwhF+c9D531zOZql9E=\r\n=awTX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4932c8788b9a0737d54a17a1d7c613b8f4daa6c2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221217_1671261157293_0.8277265760636918","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221218":{"name":"typescript","version":"5.0.0-dev.20221218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b03583da1b675c1990b63f898f4e26f5ab6c3b0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221218.tgz","fileCount":101,"integrity":"sha512-H9OjIoDzurBIgB+Gq/9aAudpSKtfaN+dRCwWc/Ugg8B6/p5VA5KFlnwm2sLjOyTzApusKKUJUpV+u/hXEfxaOA==","signatures":[{"sig":"MEQCIAMljp4So03bBK+5ki/60SuMaff7LSELpA7eZgw7uNZHAiBMRmc0mFZt5VuaGxRURYWDyyWNJmtIy36MdDolpEpOiw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37873825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjnr0QACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp94hAApDukmFGTR+/UNx+hv/15395cehxlQAgOsrAFt+wnSTUid170\r\nPSRd4R/J0T2IkOJUQkvBJ7aIZzpzB4OY1YpUBwRuy0e/G7Dbd/AKO88tAUP2\r\nknl15cJ1JwGRmOnHhqy7MXSfc1cZG9iJCaM6R63pU/aGef2MTsZG13G7FrQI\r\n7tuKqhmIPMBEWKfbaSNJoFv2tNn8GsNT0nxDhxQpUGty96CBjzTBf6FRnJnR\r\njXHEL9hxo3E/gyX0n9sDDey8mvYbvlMTIGfpNFsGfVYVgLTlwCCJcDBYZIIE\r\nPF2XW3g9vbkjvNrP9Q97GQOEvR8ISNctcpW8LDpeY20BopEnZCzijk2gOAbj\r\ntubg3z4tfCkSTDAn08BoKfYihaGolzNc+7B9nuOo3jlYeP31BFFazgRCumdL\r\nRZDvTnaEn7c2KlLixrEm4zOmqtl+7nvkWijebSLLqpuKO/0qdz2D9u1oQbHp\r\nJ1O/8zRn496zlslQNm179bxdwdvS8tms/hP50W9+gl3GCgr84B9n2msdvISD\r\nPmiaU9t+5v0z7CchQ///02Js0v4/ms8AoF+6pLwnv4r0UcUEJpAz2f5yEjA8\r\nYzjy5wYyHuHfaCbQOeIAufR2pDUrJT2f5m2S38fDLKeLxgcWJNrD0qtyC7um\r\npsfhgyYRarvKoM7AXNGnp+m/m2GXvWCqBMc=\r\n=RWLe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"70ee780785fa24d5e3c9f1a82474280bc6e8e92c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221218_1671347471684_0.22050953637230775","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221219":{"name":"typescript","version":"5.0.0-dev.20221219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c31058e979a2e2aa0ec47ef7c9045bd53729467","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221219.tgz","fileCount":101,"integrity":"sha512-/ZglDGQtpeVudCAVJuEdM8K8vUCA1yPMpsk3y08/ZXn6dxk/D1hy59FEI25/EHqsACElN++9CoKzkJS1wBTiRw==","signatures":[{"sig":"MEUCIA/0vEDRFImCsq6LA+drt9PglajD2ZHSuPR0OCgJ+e8FAiEAmp8mpw9D4G0juLjkCC+yd/JjVjJkbhYR04peqy4/Zp4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37873825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjoA6qACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOcg//ew5VcNARweZ3HcD0sM3E6RBqCg2vM5EYK7neQsLkD3ECZ01u\r\n1sg1wY02hPOh58mZ7TtVGQf+myeRousOibwfk7GDoKvKUbPmbO4RkJn0drlh\r\nmI68uLQq+mie0w8QiSlBxBWRWN5xNDET2GpmktJwgtsbCPGoIifWl3Zr75iw\r\n1cFtKtojkPQAlMLfFW4UAMTGmTkMC4kpzzS+iOXNZaPhnh+Y3dnUhyaVxU8W\r\ndNWapUySgirAPusVcAV8+FE0NGZOXDtW+5BTg1pOM3AqiMlyZKCEeBEL6i0x\r\nEsPe7rgl5deyIXfyCovGTkS3+nKr+eKsVGVwptOCvdnwgNz870+zbmndBpZR\r\nYB3IYDbDWSqXd97fR31WNiHpdguJt33GYjOlYJHlyYbFlXrk6z+Q17Eit0r0\r\n9vBritRhAxhugx0hvTO9SYwJprm3UCTTA4ezKzlDlaGvSXa+Yq7CDbkN8kl0\r\nxA75uc9qgDoKkgGnXhevnlXqwSjMyVjJ6P+1jtNKDoAt6PcMuU4+shCTYRrj\r\nxvbyri9ike2njosxo2hQOOzbGZuLwpRFctYKoYC9b2o/m55r6iqbpt9ATU3Y\r\nPmOv9uTaDku/KrkgdjMme/naLORC1IOEtfbMtpLa9B2Vwia21Z4fqoUSLBb9\r\nvZ5z/Wmh2xAMA2392bVNIAAQtR1Z1x0IQRM=\r\n=KLTC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"70ee780785fa24d5e3c9f1a82474280bc6e8e92c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221219_1671433898429_0.29356588280103435","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221220":{"name":"typescript","version":"5.0.0-dev.20221220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"39e0a806bc37791211fa60a37255839b2443fc53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221220.tgz","fileCount":101,"integrity":"sha512-B074yB3K1oONVp/C4v0OGDPqnp6RIvvBEDhFb+C+n5e1clP2TR0FNevkQ9qAmtIAOK5lNQseaFSm4ElzdTf0Bg==","signatures":[{"sig":"MEUCIQDck1ijYt6gkp/T5gRUntHyST9agJr8bKL1sggCeQKC3gIgDG/fgCBc9hOL0zcIVs8vltzvkA9K3oa6cRFnyb1ktbI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37878718,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjoWDZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmplNA/+JW6tZwsi0FbJXeGne4aBfViy1S1QfI9f/zcxrrA55K/vumds\r\nQ6nkPfLTCbk/GY7y9yLuf3B9C53TPX9ZV0U5TF7Sc7sm4EDxbypw1DIPC82I\r\ntH5XfOZP3InkP9OKZKBE4Hd9dtTGKjSgUWeLno7d8DEw8eldLk00GjiAJaqt\r\nKnoWBwJRHndmqbGgpqiBKg8EgTtb0O2PgQoi/2g9yH69nBsTHfhMMm4Hb1oY\r\n6tuwNyIpklJgwKiKDmalkQF96Y8NJ3w4FiQWzgZqVqpwuIcevZ/mjWVjbmLZ\r\nrE6PHva2KxIFDBABa/VaUjXfh/JPcjo0IqIBe54qP4FKZeVqqILFz5iir2cf\r\n22tCnPZvifxQnVtRFrMK8GXVGuNZH3mJOYVdDDmsEshqI86xtFiwW3TsTYPm\r\nMez9L6vImTjbVDm7oWtdVdGVhiHHllIlyC+9RVNE2mfeZL3bV6Kf2x8fifG2\r\nom4y++5NsgL+6d/qor54M9ZwVjbaZVllWwgLXtu7L3qYIDigX1+J+XXe7jim\r\ndQnpsh7Px5gT2oXTj8IAKU3sHZUj2jvZuFVko/CBOvDhSNIoMQ5hm1C8diCs\r\n5fwiSnStDGGX5wWSzhSOnOYrUGLL+TCOXg6izpECa6o0kXmmiRxtmpSRv7dH\r\nqTCTTEvqL119bqE0Sue1K6OMRsVoPJGsvD8=\r\n=N5hT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5d8ef4bdcb8bdbd4307c74a07b01e3bdf6e04b6a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221220_1671520472586_0.8580491500190341","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221221":{"name":"typescript","version":"5.0.0-dev.20221221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"811edd89a428bfa0b268a6368e63f52d2884cb02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221221.tgz","fileCount":101,"integrity":"sha512-QpKFAtn9fFixtDNPVmOYlpmSGh1N/YP5vJq5xX5yVUiPOUrsAsEQFJxqBkGiiKrZAI132fVyM32GrhUXorp2gQ==","signatures":[{"sig":"MEUCIC1C5RJveODZReKhzc6T7PoRU5sXt5n3cnSbtq1xUnVhAiEAs7t5hcDb8Vxvt0+gAzuHj1Le7+cQwMlls2I2OSMrh/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37882766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjorJLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoXQw//dYOwmaZUkGmxrNIgbrkbzUp8l3tswe0V8Kg3iY92BErIEuRV\r\nUWy69Mvr9SfSiyxTTRbv/HOeBKzXu1auGigtjf7UtuuUbucD79lMlFw6POjO\r\nCXDsFCcuFtjJ2z6zCHjDmnc3PgtsMiM3dskZCq0L0WpwdDkOBhB8DwSKRMYb\r\nTllQIqQ25plpO6C9PUd38WIqkL+o5yIbNXG9XIHw95irzL8Vf6FzNMhlzhkY\r\nwgbThpIoq4rIzxCsZYGJRavJhJVJNzikC8l8UaXG13W7xuHL8L17GEfYUugf\r\ni7KS7rjU004IZKPte6/3T/knnZHVzuvm+u9+GErN3v3bF9iuNeVAKKqVIwkZ\r\n0wuHoEVEwEqd7U3GaOaI9xLnowrnIp3C6vO1lD6bm/7wfZvyXnS58cHMQ0WN\r\nvdZn8zILEZFElDRXvZnV6gL+7f5/7UVqfFM6LVriuKkUtqsQ4MsdHMaYFTzB\r\nuJHoWGXL9kHZQCsFJyUcHri1vBLlPLXbs+tHP/BStFk2SiAo8s15q6ZkeNJm\r\ncaLg3w7R9DvXsZ47Vfa5NM5FHOvex/+YXVW6Rsd1eAGsLc4I4Zr4wK1cKXTq\r\naa6eXHUBhSdFka0a2rvXLZtvdr41BozOdu8SO+fPf3dXyXrJV/opRYIA2FR3\r\nZVxD6kJtxILz3DAYYDZTr8a4F787qfT04jY=\r\n=Ved4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"54a554d8af2657630307cbfa8a3e4f3946e36507","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221221_1671606859675_0.3804759910241968","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221222":{"name":"typescript","version":"5.0.0-dev.20221222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"adf7a6bad3f1dee080506fea16e741a0b4418514","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221222.tgz","fileCount":101,"integrity":"sha512-9YjbBpzM8BrO3WcbFEE63qQtipPlBP+WFmQDpI/j1W1DInACLJESbWsVAeYBC6PUvIBMzKIVO33cJUUv2l/pmw==","signatures":[{"sig":"MEYCIQCGo+skaaJhZ1Af1yI5Dhwsc3wPwSqbQvd2AdUomFhA8QIhAJxMp00XGXd12x1IuuO3nR7qYTT0o7i4MKAwSDVO8H6E","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37882766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjpANCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr86g/+KtBY0xmXMeq/Vj8wxxNwhYKGY+wDA38lB3xxpTu60aIVh3Km\r\nPwOpzZjklAPj3MZ8y4VGFj34idVeRDc0Z+vY9TTTxQlIB4r/p53AS1PSo0Z7\r\nPs40W+f1vkZ/k1ddf72xmNORigJtnjevEREnpOfU2d45DtvqwCDooiD3o+88\r\nBSmOOtDPk3Lf3fLThbBnI8B0+D8zgdBm4aF+b8UJsy38Kcs6iEEHECLjcBee\r\n3c3lxU1mVQW8iIP6nPVgUEtI1rTfXaXmQCc/xR1KB3dfplFkHtvBMeVQFifO\r\ngQjhwveg7MtCIgbrkJWVjLc/qlClAg1LjUwk4t8cc2hU5KwpWswu4BIvazUw\r\na0wdzWMdsnWBYa4aaIQwMsqQY/nBME477k2+kUiRMbSM8c8+4k68TBINo0Kx\r\nKCdNJEZRhtOwTn4yqUvDs0lC922B9WncpC5BwpT1fYJ/DlcmA26BA9kmVa7+\r\nXhQ57yfs7yaHqcyEqqXN4XsnsoWKsvWhGNvTHWAIl6KMqbhrUW0hwITSYaOa\r\nI3IgBeuQL0jjQJr8ElMIQkVJFCgY7HtdFHkpfaGniil/DSzWbAVK0P9ZqGcT\r\nPSbPgLFOGUOFzq17anRj73R+j4Mf7osNpUuYgtUJt1Zs4e7idhWi4X/4OkPm\r\nPq3Nd0VFanDrzpc9FPq7Afw9hgN2Y/zm/kQ=\r\n=3PEV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"54a554d8af2657630307cbfa8a3e4f3946e36507","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221222_1671693121024_0.5610256408611682","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221223":{"name":"typescript","version":"5.0.0-dev.20221223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bfb59163a2eac3bd03327fba29fd831c4740340b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221223.tgz","fileCount":101,"integrity":"sha512-wdv6oGuCZ1Uhp0VWufyM2PmVOhUNtg8VAT3NeAsYT8m4D0ZEe1+oZXnJaPmv8icwmKFrzTF7eKaX543gC5by5g==","signatures":[{"sig":"MEQCIDtktnXROGJJGZjS12JZD6DbfP/2Adkv6gi+XUFuK+CzAiA0WomshIGF4azzDQNSp1RzMQtlSXa6uWRhR2UUb4AwmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37883566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjpVW+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoLug/+J21Z/s2cCYJE0/DVE3awhDp+GMlXqJEPmHpwtqAHmdelrLB2\r\n4XTbE/vOE7caSrMDn6jefXdSO9+r4MoU+m08lbVrCLBFqjeWlhQUwHNLxRzj\r\njiuJfMwyxT0LNBjF/6S/hsH7uQp3wrzRlC0mHznd9BocMgm/crxMBOocF0CP\r\ngLV/PNrvm8QBdXVglqKueF/08eOVh9Nz6lDyCYp4OSK225Esy6+ATuWLCouU\r\nIejCTMI+vRdgsunkm6X9q0rKuvOksktvP6Kck/3aDLLQgew94fGFcw8DFlWE\r\nbRd9WfH9AmvmAf2eyLWJTbD86amx2pruMKL2eHjBHapxQfeNvvxBv1zXUdRj\r\nFwk+gVuVXdzmgW09/W1X2jeNxx6TSd8/5yo3lC2eN6vg3iXI8qfYR6EplYNN\r\nV4VOR3dZvpgL5ijAdAdZBxLeCoJrXtRnhz4a+z3//kWn+2s90Ggkj00snzGg\r\nK5HNRGGh9531g+6bJTOvfbeeLouLQ7zxM8iYOF4mK+DRfZhjXl6EQ5CFVFYg\r\na26OAEblbugXo+F795zmI5VGLO9Vjdkq9WCBIrHLB4kHq06fJObpAPY4wHHs\r\nAWcjgH41HAWuioHXgOYm12isAJfUF812QnrTDr6abNhTS15+wlwUqhFris4I\r\nP7Py3yyfVkCrSb4EnRzu4sFdGxG0y9JMC9s=\r\n=swT2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"acf854b636e0b8e5a12c3f9951d4edfa0fa73bcd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221223_1671779774410_0.10426248839641072","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221224":{"name":"typescript","version":"5.0.0-dev.20221224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"55b7b0d59f7eec36f55de021904ea7df63e8e50b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221224.tgz","fileCount":101,"integrity":"sha512-yclncCjJ2couUTwRGHg3sLW23WD6jio63IifPtpQBfHiv+JKouRfrjZK5Mq2JUBAAuTh3r5Qov73YlIjCHQ4XA==","signatures":[{"sig":"MEQCIFjnKuc1xwnYuUYj02i9eqdrvZzuiSqPZSEZEanHUz9eAiBL4t249QaSNj/SmgBzNcp6FeYkQdn7rzpnY1zImxcgAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37883566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjpqYTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoRFw/9EzJJeQT60dGJSkt+/wxKdM1egy83Lb0WBwV8qOJSBvMnfvAF\r\nm/veJA4EEnsQcVruca0/Gl3Gpq129GkIa47bhSTfTVFNwXksT8LS78Qnnrd+\r\nBuVzD9QPnFc37qQzhjH9bYJ29TXE28RnYyDCPRhcSlZHassm4dOFuOKj4VkX\r\nAK5Rnof0jahELDDN/0CzDmGSafQAfekFjHSvR+gtTwAvD1viFN9lcX6cnyRC\r\ngKYi9ETQAH2Ft+YW23oSGTucJfLXhZcJ7tXZzY0gUCZj/YtEk/Yd6qvR4F+C\r\nii6Pd3CB6KFzSJOfuiEpyNHjwIOxKYS61rnKlKDTZsffjtrVTP4SucOxk+iN\r\nyhwlQ5FbmVeG1l1ntg5mii41EqghY5vG+64sw0CwQbyD2DF7imCf0HJ00H7Y\r\nt6OQtaDn2b3yPRDvpnKuEjNnmSVHJ0ke+CIvQtLwOaIgLd0lYlW5RR0zABiT\r\n4NeHY3FPuaV6WmWm3Tkd1Io+9YqbD1MbpLTDSKaWxA5zkqo24uir6I/s/IoB\r\napCwxr5jDdghbXkZ4hbfW7+YKD45FWkkcrfuw101lWNXlXwH2icQ4gvDUUSV\r\n915l77JB27CDql0O3U/TXdiNkW4W97Rip1dcHCoInbymp5x8ajfQHYR8/fsv\r\nvzh99OocaG8iubVEUNkDMQw8xi9+cBxLhYg=\r\n=+ibB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"acf854b636e0b8e5a12c3f9951d4edfa0fa73bcd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221224_1671865875436_0.818250145454559","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221225":{"name":"typescript","version":"5.0.0-dev.20221225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a3357d1bf1ed93d358f27d7be65f575e576ba1e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221225.tgz","fileCount":101,"integrity":"sha512-qA0i0nGnjLmLQZ6g6dL9B7u2Vs+aZiaR/HGS8LIdE3ypTXAJCk2qwozV+FF4eR0rwqpK3cpB7d3kSPHHRYti8w==","signatures":[{"sig":"MEQCIFTHIQsnE6w/pVCRXlMd1fdvAdBqFEsjF8xGYINk1H09AiBjCZE99gxbhT528IEl+Rqh+bxKwr2TyShvk6B73hm5QQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37883566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjp/i0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqb9Q//eiTT7JVxsJXeTLPmfO3v+5Ndxut1xA644E54H2uPLGgIGwW3\r\nf+f9GZNfgiX8gVEl6/oPVLJawN2bAk6nZ2JVsucntGXJ2nJ15qQi0r9/eHET\r\nCV+rwRX2z4KAZcOpoRC8Jxt7M0if7kDr1AKfhfEhBiqWAi0Bv0uT9msuZ1KG\r\nd0FuwgvWq5iu9Oc01W7j5cvyuV4WGgO6b9WC/Xtr8HFz6KolyVAEKO0yCq4c\r\n6+PwBL9bnS76LZJ8HlXjZd7AL4WTNvme914xdFLuPn3reeVswftUhSdE4uxm\r\nNboJXQavNg464OlGUMnNLRtL1jL1Jb6fgijTcZ5AYkQrDnSP09sbSqRM9vhi\r\niCCWdYQuLQoLR32CtAqVDFJh0J4kOz3pYdUEKHCSJqlogBoAvIntlE7WqTeL\r\nkGD2ESbBluF3QV6bU7HnEKKi99FK7cDTwdHNYqvGzkD2XKRDZRyfRF1abcIW\r\nzN3Gz2NEwq0+XwHGW3DoJVqxqrQt0wscfesNiaPX/GItLE4V908K7weV2QT1\r\nC1+gK7sUZq7xPkjnjKNZWAQHqn5rv+vQVm1662IrnYytyaZOHyGveJprX8lM\r\nTIJiDzwiL5jJpmN9AG51lopFG6+onCiXctRHpB/sldq9K3f2yBSejePE047D\r\n/onaqkAsbCz/fYc6cMeFmEuuGvVj0IIafs4=\r\n=jaFE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"acf854b636e0b8e5a12c3f9951d4edfa0fa73bcd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221225_1671952564626_0.8144968960892167","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221226":{"name":"typescript","version":"5.0.0-dev.20221226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6298b16fd82a72ae92084947cc6d0a2c804ee565","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221226.tgz","fileCount":101,"integrity":"sha512-InxD6NrcHRNrl1T3aakg3iHHqEUhbGIcHlbZzCJfK3sqQsVJMYCBxgASWEdgr8F0FiEK3wd9CQMYNdxS+Dmwdw==","signatures":[{"sig":"MEUCIQDciN0zBaqqcFOPWnQxJ2Xm5PC/8QLZAioqvprsYnAFfgIgJDzDa2RHSEIejiVSjiC8NE+HY32/2exRPdoBpD3iNWs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37883566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqUlAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpqxBAAnHiE1rEgAtPeyz+nqWAiMfFXFBAxKOv37FJc704qZ5n6pzyg\r\nzkiUwJgXZ4yBUCHtK+mOMcmGIIuFKSS29f1suDvfJ5Sy415WLm5scZX/cNeu\r\nk4IWyUfJ4yBtc0/WQovGhyUCw6e87uM4Uu7R++mObiKM3RGzl05P8vgy3qzB\r\n93IEYW2NS0Xp2l/KPJRXtiYPt0p2uTt8fxzZzFHuByHRFQRr9GkzKVHolaV5\r\n0jtl8nFrA1SX5j7j+1H6oUpdCorAjxmoeXKQwAMVHYPRPkFMZXLrASGUNQ2n\r\nDhy5ztQe/evb1BWvs+zwS1t53haFeDmi7AiRR5qOGQwX1OcDLZU1c6VKhKf+\r\nl580b5Pum/a4uL1PmsKuaM1P4bGJPKmNsOmzuwNLlUMfAE875gr9BDvoULe1\r\nfNELzGCOfGudOr7wiJXM2PEgJxHyJcDU+I8EKul9xT4dBw9jYIkjXmGDJoPp\r\nsp4bpyrRfOYs+WLvg4xVka+uJGo+6MBuV8tzMHbhLgP2YPftrqoMLLP/881R\r\nF2T0v+LiCRh7iH6IWsJ6p0jJsMPXq7sdWNxaGJgJXciESwKiI8YW5FZvX9+Z\r\nRgDNc59G/ThEbfZsNBI1gS2OHFYeDO/SRPxCwk17SvN5V6POtnm5s2w2tk/v\r\nQrtNyicV5Oaj+uBWS6eN2UoGapGVgAdbLXU=\r\n=kTGr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"acf854b636e0b8e5a12c3f9951d4edfa0fa73bcd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221226_1672038720174_0.6318338412815274","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221227":{"name":"typescript","version":"5.0.0-dev.20221227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0ab01505bbce5a5e5113141c8b941b9d7992c3c8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221227.tgz","fileCount":101,"integrity":"sha512-IQyCPrF9bhLYPi3IePtuEYbcjqJ/cgOzzYMshLK40IFXgoit9SmONnBLhEvacw6YKUGsZJuOd8tdrfPw4us7Hw==","signatures":[{"sig":"MEUCIQCN3QybYptgA61CSr9vLtzIiIgN05e6tpipr9YdRxVWaAIgXn1roc57XVsJw3bcOKprmawtFNVgcpKByZw2+eW7pt8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37883566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqpqhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmokKg/7BwlrjXk2gJ5J75+25pWT8LpvmAVR/XEjGNHENTGMk4552UPC\r\nCuyBLyADOoZZyWlf6OXpq7YSr6GDOcsgDssMFaqiqKG946Ccgo0IUXsGDoMw\r\nzS3NhsyKgsnrFw2qHRq2K+gI7dJmcgtu85LGGgYIcWnvF3FG41IlZmqj0Zso\r\nUU1ryRMMouN6VKmBFUMSwXAE1RZbVdHaqAIEWEYmFK/n+WcXpQlK8Y2ak2j6\r\ncaELKCvEGSdKVl+YOTbBPalIchdBP3vx5kLjJOfvyhwoyx4xuJ6N+JAKDfqm\r\nbX/sCKe47WvQqv7XoNx5s+huVrJJ+rYhyJjZGQGnJZ3+JSzGsDR4dBp5Iz1u\r\nNxBG4ASW7uBMRf+B0KY7PStyRpKWWCvOR7m+JCdeYoCj5EM7IuTpIABEB+Gl\r\ndILbOM5yp5H4NekWY+GMs95OvT5ioEYFucVx674VMeLbfKqehbS8ZX+cP7kn\r\nRTG1BitQdZz17a43Y4m2r/YwUmIli5XzKgljnQIDCoihejLnv2R+/jhJ09p8\r\naAtISw3ObggFq4Cv7llqPRaliNFWjVkZuNPRgKHYLU8t5KNSmD2RWL5YjMML\r\nqMjwUmQCZje96xQb6knM/fpYLNtwd0HsKKVZaTeIY+3N1vaxq2OmB3zVNE+T\r\nsYhznl3g1qS6Ji0eUSvgdeTPJtaEpg5WWgM=\r\n=46e3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"68df4befd68c0325861bd5b87c6e4d251ffd5a41","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221227_1672125089385_0.29773516748523665","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221228":{"name":"typescript","version":"5.0.0-dev.20221228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c6137e0d931ba3ad34de3cd1ad6bba4571153dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221228.tgz","fileCount":101,"integrity":"sha512-nc16EIa1VhICqnkXBfkoN81XmVkU650+iM8G19fvXkNyv6cJqOOE5ibldRFvCHznsseLn5GZGP73WBCaa6ZAlA==","signatures":[{"sig":"MEQCID+8aht6UCk53/HuKHHQxVYJ2uINCguzlTGO8SO+06gvAiBS40vwB1D8kT7DmX5sGN5eB4pAjXn4l5HhC2nlXcQ1tQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37883566,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjq+xQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqV5RAAgPoCQjH9Y51s9aClgFsg2t9mGkeAsM9HKexlODdpZ040y/4j\r\nk/uU8J2Gg/i49gFxkaa48CRR+UAEDc8000MD0ScSQDNgceK/nDClVJgzyR52\r\nptZ2Mt48H6lizSWOnQp6YITEMV3wFWLi/jDS2XYjZpdgzPjb4lpNu9l4GBFa\r\nrQRUkkYE5KBRIGtShH5TIVGqcWgRNg5c0dqg3Ew5dTlPW0LflbR4rYe0H3D2\r\nX/qT3R2QiOosoe1CgvMJUCeD2j2tmpLSC6uZC3Cl0+ghrsmalmQOFTONhFNi\r\n0K9d5wDR8oKveA+NYoU3b9tRz4Em8dFXndgVExN/W5YQXSl6Cea3IRBXNjbs\r\nck+Jyw9fHWBFkLFi8Q1meiQ1x9sy28vnEbSCOuBDKVanmGdwxDx8w9/Zcsg/\r\nplhQBKTHVApEq7+QlHbWLAaU3Nohy5c2cOH/YXaPOjdv9NTn8B4BXMa7zgIh\r\nQTFSlqckURutK6gGqHsNXQPow64XWQ4mFZoGJbLGgCLGUx/8ts2u5+Dljisc\r\nH0ovihWBus9W2toMeAgTKiNsii1i2lbJpWzvwSkxsiD8oWkXLcE8jpjPcIub\r\nhj9fthY8b9Tcm+ZZnIL16QFQV45AgfouYRmTLc2gywMht6mcXZmM3XGlE9Rn\r\nNZK31+zhHFvfB/GUipvDpkv8Bxjokzx6ZE0=\r\n=kwbm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"df6881725ce6d7f559e496af7236f0571d067942","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221228_1672211536313_0.03573957089010893","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221229":{"name":"typescript","version":"5.0.0-dev.20221229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221229","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2c6a4b0a3bb4d36648130fe6af8835ab642e1ff6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221229.tgz","fileCount":101,"integrity":"sha512-LpxWw2BJ32Pl9R7TLln2+WVkiSLvCsXplYjEgkrizlq7jGbaOuy+d5eLyFsjPqNoaUBKkUvB9dKtbG61XMIA3A==","signatures":[{"sig":"MEUCIHSyORp0lBck9IHrx7UTZkvUt9mtROKmA5s1j0NDukOOAiEA51XX9vgfKpuBqaN3NjmTAaCasbzBVHqTkoZ3Lw/8Z6k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37884158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjrT63ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp09w/+MCTndUnO6nZpoSC6lJCoWGP0Z5BMj7fuwd0kiO7Bu5sWue9a\r\ntc2umVfFzM6LYSwGRez8jw8D7IwJvMSaGARPaimaWzyqB/hql+QDrrsP95Dq\r\nmUEt6Vgc7bm1xnsCoDW8Ca2hNSjbqCRdUpYtP+j7RH9ZPQ6eBibxttxqhQM1\r\nYKPrC33dS3ktpAGER9iEwdz896dP/11Tdcta9LbzIYyheF7ChiKV5hfze+Sd\r\n2BsD7XH2iec62WtWU44efzFB3drRJWnYQ7fy/wkMrcQfNwhpUnLyiiSIzIEL\r\nqj9gR/QF6wyTKk4iQHE+ML8NHrN8+PXPd6rZnWsejaYTe0KwqhBSalzx3i3N\r\nv02PPdPpJqSY6rfdlC4OgztRHV04TLNUECzeZg21Qd4iBRVrG3THptcqay3G\r\n2qA6oboozldyzOR2rxbWPyI3r0vN8a53V4NB+Z5ddcSr6W5d2PLGfWMKI1C5\r\nghszBK2nGZHlTXV6bJJkkqg9+FdOmGh33dyoGgayQeO+DJVqXwae+63bfReD\r\nUu/kPSCSk22aKGCCOHqjL+J8xPCOUmHyOkvkW4IRzBI+dvHxYLVDYEkiyWrh\r\nzg1Kq0WMHk5qerkJhBfFEHYgL4dEIe4M5/KKDfE1x5rC3Ap2mmN7D/T+1KiA\r\nSjFAG2ea9N0Lt/90HNmnJHN68cKDY198jd0=\r\n=V7oX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c7f49bceed878d751701f018d066fffc5926e3b0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221229_1672298167506_0.44070676872932135","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221230":{"name":"typescript","version":"5.0.0-dev.20221230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221230","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b52361c67bd66a431d94ea02f20c0da541f5364a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221230.tgz","fileCount":101,"integrity":"sha512-6Qsxtt4f0FmoruK7IadYRoisOOp14oPKIuNYKp4eYwWtSo/R9vpiDQtQuZ5fs20tUVfMvxAvN7/BYwTMXPfsxA==","signatures":[{"sig":"MEQCIAn0/aagLvXDWfC45O3rNCu/64BzadXzkSWlN+kYXPWFAiB6QiGeKEj7kOl1Hm3y4gR0wXcbU7o9peqlKWjv+juprg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37892810,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjro85ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqdUA//W1w8bl2RPbDM25N5QuUtsSI8r9k9jo6I6Z/pTvMuy1me1GHJ\r\nx+lAQdRpHbkdPTaEYeiLsm8pmcTLlDuFFGgTU9YDfF07TEoU1GZcKX2CAPap\r\ndlAe2THGRU82nJ8VulVX2ke09duFFhYPLKBay6Xuo0+NgpLL6y+JWSgwXE/5\r\nNESsDOF4e9r498YhozelOYbp1SjqJAGETFLdqyP/SHcTrGQTNu/PdnEcJwyY\r\nbwgT778ScTgC+Hrox9gx4kOfYz3leBB/WXkORg/81sYWL90MAqf5f9yrSMsR\r\nMJcYAKs0FJns1ph6CwziTN+9UIoW6werfTeNgSnl//BLCcRL07+G+88SmSgg\r\nahitcYb13uKXlRfzRg/FfqGml8QILqkfx3HixqEOs4/qZCiHe7ge7b5ECsBO\r\nWROBKd9kB/WliTHOt3M1goVlEBSjfmBmj7lRvylCCWduQJ9/WN0634UwDp/7\r\n6pxhDjfzB4V53rKzR6qQozCH3WrdSVPc+4txOYyHj745GiTJyka5T9lMfWal\r\nG/0EyqWZKskKZsAiCpzztUQIlkNW89to+ejhcSluAr6mWJjPOTVpWEIGMWOf\r\nJQUjfDxq8toPAdK4155DfgXxyYahiNxdn8b09rXuCC3y02u3hT2dpMCB2VZn\r\nAINwI1fIAmDCarALI9m2MbpulsKDixa6l0Q=\r\n=dX6K\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"44152bc22edcf05d45faa06eae8aea2d81433ae4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221230_1672384313447_0.009889390318557512","host":"s3://npm-registry-packages"}},"5.0.0-dev.20221231":{"name":"typescript","version":"5.0.0-dev.20221231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20221231","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2641639b432a5389844e000d0b2375cb821e9c87","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20221231.tgz","fileCount":101,"integrity":"sha512-gDHK0N4pWgDhuLGYX8PN2YjPVgcuWxAUECecsVMHleLJrgwjGk2GGhm6j6Pdr8pQaW1J9ley54k2bHUm1H87tA==","signatures":[{"sig":"MEUCIHPPCdXQhaRTQL7Fx/4D0P13yGEOa5NCvXUcWzlfPKZpAiEAsE9wNUOjpsIKCshby0PV0IZe92dPs6qb6GRUyU5Eyy4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37892575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjr+HWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq+vg//U+ZgCRUFQvz0WHbDfN01rtMyOWqzSttN6ofz5RCfLAtQ8NnL\r\nqz6oaIkd4Zzn/+PLIkgRO6cywsEVeMFxRSm34JPwFY54t1XQEsfZ/w3jnz7p\r\nKRto7ZSFmsvmvpXzS3QZ774tlYgusCLStdtmj3vxGGUH0kWtO10n6NQfCTJj\r\n2Bheqr1MIT1UyYQHLQqzfr2p6wtAXi89sQ7sf/3rPrFb5OkAx1FQo5jPTlZe\r\n0q8J69P18DxzRx1RLDYkCbrMpUSurUOp0wAtSDQa2QJ7MY+Bau/9cH82bqAY\r\nW3ja1NXxzqMoWsd/q/sjk4hXkDy/xkQH8XHeDESWk3bEtJn0sWpBV4jkee1v\r\nwUQhOTocLsPEDFL3rKHGQ4R0lltHxa0bwIsYfbPCwq+ruYNHy7jzFhgofqzo\r\nAbl3qwIs4oOq57tSas7bG+gG0eHCzyENo9W5oj+Ib9KcmhvFMihVwFHc/8mx\r\niAchQuYIlVXIhLZkL96sEcg7MCmme2zL3p1HKTLOvO9ePw+aIZqTtH2OqNtE\r\nQzt68blZoVtIBaxciKsqQry09AcnG978vlqDGAvAhUeyTMYTshArOya8Ctku\r\n0RzEK0c+CEEA2NFJP/RcsrXQfa30N/llJxEG17y3NUHoQETk5rKSiZOcCQsd\r\nGKUSMbkZzXevoG9S+49CXWhD+WO4SG+zC1c=\r\n=IpbE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"747172e6493cb2c70e77c21ed4eb87592dd9bcdb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20221231_1672470998359_0.7492096796143008","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230101":{"name":"typescript","version":"5.0.0-dev.20230101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"adeac192f86443f5f3415b86b0fae11b4b4ed191","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230101.tgz","fileCount":101,"integrity":"sha512-TTcv7DOi7BC0ZQGAXqAtVgTRpnFgBcZTa5u/GpFBdzAOpADzGEP4kuilnneNhocC42gqDt5To1hsRCrWVbiUjA==","signatures":[{"sig":"MEUCIAUFlz8DEIu1yn4UY15qeTFL/y5lITq6SjvYWQctb2B4AiEA8ZJ1OEUhB8PCYWU4EsgrSZSZYWXYqid9ev4sKszgKkQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37892575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjsTJeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoeNxAAiKdABChdpzH8TZXkramVnByHhCEK/JsXQx4qx1kEfWQecI7x\r\ngQIyWoSeB2q5CDZX9EZslnIs7TObPQ2eklQMl7lHXPxTe9WGykEi3rtozPH3\r\n+LJSgCTd74/2uwY431iCd5ZO8Z0BdJGrmVXJSfMfd4Tsq/WV863JhlBzVqwj\r\nMbHRzsnaxdmgUFVsBlbfaqgiQIZHTRqjsXRZ8rZgpf4PoUhOK87UinOgO5n/\r\nfBqElFa4hJBuPTT1tEJqtewmFTDtcLUL1JabC/f7sxsZU76nPnM4q6i/y5qi\r\nENe9To2mKbToS1CTEBrL6VU7IPF7GI7bA69517Z34Xg9tRR4XlwoOmlAh4SL\r\nGUmwsnGSLGcjx6iB3vXWfAgWmcEfpspYLKzDxbGcoPMaEYO6YwG+pEzqtXpS\r\nBJUXfG8OQvzWJmJsx0EN3+3til9dRy84Zn86/eoQ3k8mfsH4BwvJ1DSSjncj\r\nhA6+OF6sbPQqKwABaCn70njaKdlwae5lpWLQj+5FGNUF1JvTQYQXr44iubZ8\r\n8KVyVox0ol850GXUzbeOU4ewBnwHdZj69b/SZlLWxX2J2/Z7eCoflmESd2Ua\r\nMbqJiVLmEE+ixbL4nfIuRH9BMXUk/lsiHj4T2JLGaDgkJXBXu1l0Qaam3aL2\r\nuvs8/sGp28LuHj2maQ7cGzyniV1I1xtoKH0=\r\n=6Bgz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"747172e6493cb2c70e77c21ed4eb87592dd9bcdb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230101_1672557150186_0.445828999652369","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230102":{"name":"typescript","version":"5.0.0-dev.20230102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"22e0c413ec5f4bb87ad712a887d50e2d8efc9d1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230102.tgz","fileCount":101,"integrity":"sha512-jsLkew+bv4/oXHPOywoUp9BG/lu8tQ441OOniPWcvsmACp6fXlF4VaLLEaG3KmuTKg+0FB4lVhv2ZN3aZkV/5Q==","signatures":[{"sig":"MEQCIBtbelXtHrAlUqDaJHO1lDm3FH9ROVxXH2+FU8siABpGAiBviIcJEIprmizVqDXOFCIqX63WstTlQJNd5isGwNaEBQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37892575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjsoOqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpWnw//SjzZENaFwTserVWnbBgQK4zy3aknGvy3Cx1TJrkPcbtCROvH\r\nOSkyCPFoSK3PeZMtvqFngqtTPKykWJl6AUjxNYKCCY85XFQ8Lu0ot3V86ocQ\r\nrjhDHvwczSodj2GPc/SD5ZCTcQRJlkfDvmcxomi98auW/PjGBh7ec1FNQbU4\r\n7g8ZmrsgGskftIkej+TAlMwyl761gdyBYQg0QhFIv1zUL2nlhjojiCs7xlV3\r\nuBIRw5KdA9Bqx748W885RCSpy/EZcXRZ/HokeyISC4e6ESpg7/nIT5BAiyaC\r\nFBm5hJZdJVPZQRHLlLWIdA3WuzRxoKe/rH8h4WfpyvQM4FZZ4eer70tsRZ2v\r\n1LQc7/8XSz8FcOPxtT6Z+yU6uZ7vsRpm7+c1EZg2fYRoCYnJj5dqL/BeOXAS\r\nfo03b0ckwvF38ZlMMIo1T5r6rfnSNPemcwIn78wEqVBoNsK4gpQxUHWFGYgd\r\nxcUIuJWfe1AmIzucVhANuw7DOA9Vofo1a7PSh3UwJfs7mWuVQf0KwgPMzzbs\r\naFu6wf2LT6IVhk2LgoMI2l+Dj8wKjkOnHRir6G+59EU4gkI6jDfNicocve+4\r\ncN/yBKMULRyY0/iphSO6NqaDbXf8ekQlFQ9CqWkfYMVRMRT8w3fVtHEFnHZ9\r\nX6dzh+gsYifXB/v2hPs4yah7fIL3jINlRvY=\r\n=dEEm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"eb3d6faa5695d08359cf9463e298d66f0e2a04ca","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230102_1672643498079_0.3427333886112356","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230103":{"name":"typescript","version":"5.0.0-dev.20230103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fbaeee45cc11b85f7ba25110eacb3814538c3a84","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230103.tgz","fileCount":101,"integrity":"sha512-vHf8Y8+op6MsFIDgvNmZhAIAUGVmzFzYCUBysMS6hlxlhSWIh1h5AXAW7WKs4GYr325jwTF/L72NKUYZHSD6Mw==","signatures":[{"sig":"MEYCIQD5E+YjDT18QNeUoPrtDRUzaC3twBptEr5c7NZCEDNbeQIhAM9ic/q/lOv9ItbsoZ1H5nIHGK+lT1qC759Ak1jgDZP8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37892575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjs9XBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKxw//QxOOwoEF0xT3+DaxmPPg1MUmf/7BnoMcWv7zAb7TUOrX19E8\r\ns7W5iExf9N6rv1LLGHi5ElfYdhHdnJAcMnUBPFuGcggCSD0USSe8R0QaDCh0\r\nhaes63guTzjfO9h48+8yiZvwYNPO9G5+/F2+g8BrduZVLS8heEIt24z9Duq2\r\nV9lPvr8ILPT3pqDekWnzT06P3o/E39JTgo7BJFA8kDMKA4MF2fdxCX71AlG/\r\nFuuWFCi3yVN86hpCFm8ZBGc+mg0mGfu78oeexXgHOdyh5+xsgOG3VZwLVx1L\r\nWiEa8xkIiiRfsce+V/5xtz7NZbHW/1nhiEYF3Em7mVIN9XqHmaocFv6pji78\r\nPyp9hSykNvU8Eh5pO1XSLwJwcAYGQck4U+7+k8SVyd5yzmgqDSEf6ei8I3L6\r\nRGxpxbX4Zq1Dx5KVyX0oBIAxY4W++6inNKLuRbjAo9Nk5VKoeRWYjnreCzbL\r\nHByI6WUuFPN3nvnq8y0sp9yuapmPfK/ySvk8LObyZomRpaOnTxb+I95Z3235\r\n/d43f0VeVfDi0df3PagKEGWza9vxVi8frJTCzlmulT5iiHxa3oxMKwH9k3TG\r\nb0MOg7Z4V0ZTqka8xKBZDXXDjRtL5LLgjOQoFUkTlZcaa7UOir/xMnpqF/5s\r\npppFc7HjkW7q6TozrEYGQynHZH6wXyW1P4o=\r\n=ncmv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1a943d7b682203aeed8fc8e063d0c7b253d0d5dc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230103_1672730049488_0.6197010175069397","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230104":{"name":"typescript","version":"5.0.0-dev.20230104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230104","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"96d1e916e0604bb11a9f2a8f9e7dc101d48f2be8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230104.tgz","fileCount":102,"integrity":"sha512-1W+qcvZu8Spq1fi/ajNcSobXt2ZBPDqyt6qwoNGaMgX1X82ZYmlh50oJfJVf44DNVwXNAsRfyKJ3UkXVf4OYsw==","signatures":[{"sig":"MEUCIG2Y2bTElkBUcJ46DvVNKBt7F7Vh+4ZzJ6sMj8YARmcgAiEAkFaQoBPbcHKRHtfZyHfF2AOU0PorUWWi2iBa444uq/0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37903182,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjtSdUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvPA//Ykuw86xXkcir81B7N0FL5I6ghYxjRVL1wKC1+AYb7q3cnRta\r\n2GXEhOE7tJTrxz5VqJc1fy3BN6OjqXKpz/bVQLn8Z8tUku8bANgiJa8Eba1l\r\n+47Ls7fooOYe1JMDiWOwR6P6PJA1OF3qbaVRkYy8GM58/0nPqWuTgc/GeT+6\r\nPckphjo0UFuWM+OJNdorFHOS/wGGf36IVbs+/URFtYJjzmU3UBuch10NE1ug\r\nMmEbvtbRWjgMPgWRgk28J7YyFnjZ/GeGvTRjDSJRgU185JIJXpUdX5GmIrlp\r\nKjTCMo+xU9WTcgTZVUAV0L0HkjNS9HdXzR2rdepkj5K7YgdFfcfjxboKT1XI\r\n8NG2kftDaILoSsomofovJP5QR+wp1bbefEfuaRe8W1voXzWA4NqflnVzKYpz\r\nYhTEyRSBiLt4m1tuovdAQAG8MLA1PCSyTq8Mv7pqWYgN/7cZlw2PodSbMJfe\r\nm39LuaNhw2jg5Q88Oy72Z8YaPZ9FKCEtUz6Qa34RfzRVInISGC5K7SY2UmfM\r\nU4IuJ3JmyOSDKIj/WtwgpH6yg77PrnjKlOqpHiSnGhGkYQolQiCB1rhcrUhu\r\nAw4gMpN1UKqrIf3BgSFrGkQWkl1HdzKnh/kZm2xKNetgjW8qtojomLC/lbCe\r\nyLT5CwHNM5YkIpuYdRP5lzOGBmyXkB76H3g=\r\n=juWK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f43cd0accac3e5033820fd27035731ed88f54938","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230104_1672816468427_0.8857124160730492","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230105":{"name":"typescript","version":"5.0.0-dev.20230105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230105","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"613401c5531be2741f550fcc6bc0a139d26e1cf2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230105.tgz","fileCount":102,"integrity":"sha512-wwgNyth3zqm+E1ruDyjYT9vDRVw3xoYZYX/AylGc5TK9MvtJVvMcRHqe+FNhDAK7iTzJFUTZ0Dqkj6fBaiHy+A==","signatures":[{"sig":"MEYCIQC7sEiJcKSHD4HPmamoRAyqYvZA6G+dJthpcUjK2WDDpwIhAN6Zcn07J+VcdZ8rXQoRyeuWYFcWc+uuGcAMVVg7XiCf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38849237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjtnj0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqjhQ/+Me7zpu/xKSJ2wydi7llAvc8PVKHbx7T34xOMxBA1KIiu7hZZ\r\nTUFKaJIY9x2pjyFSOnVxLc7RuhC6yoHABs1xBUZuSA2ycCjmnzLrlCNsHxOA\r\njGJELAEbmv/fKmOx14noaErcjLPA9R5loRFBZ22a8OAYUx4vOP8Hpeyu4h0i\r\nPuOwyEAi3JCB+hrhVVzrcecMkONT+5H/Ood6kB/qWOQHTSb+GONzOXwBQQO7\r\nYrRVHDnmuewUZlOHInunFaRCqYnGoOP7+BF0ITp0atz2DBXlUFBbvmCTwj51\r\nF4JrFsWEovaE+wX6Ivye7Nzl5mRs6TnFVe6vaGgBunmdzxoqqxEJOEBW4WZK\r\ngDCz0JbC0rclnLzhkJ/krSwBH65EuxJ+blAsx6D+m33ikpXlWHR9/XT4aYR7\r\nDE5gmjRW8OASDtxF+1RtAntQDwJOIwK/eNk9Ss1FZ66fR0gTmUxMOqhC1WgH\r\ncTc++6wCjqtVbinfvnHArzTwwdCYUVBkiDxc6fMBeB7xS9BxMyLEel6YDNrN\r\neW4FKJ7//72/sCzptHhKSuXG7YoDTYG5veKpmrQtQCLJybSsKcDeKGC02+Dq\r\nKdUqRsZfyMttPwZs+75hFxP+DXr971f4OlymFy7/9ohvrernu1ad83HUmMCI\r\nZ0+QoDRfU7EnVJzZDlg0MI1JXOTN2Ymp+zk=\r\n=c0NO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bae715fca278b6ba9241ae4af61c886b3d264576","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230105_1672902899979_0.8507079654389762","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230106":{"name":"typescript","version":"5.0.0-dev.20230106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230106","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8329254a0e88cad3f664b2b8cb2df52f5ea7f79c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230106.tgz","fileCount":102,"integrity":"sha512-l5MlIodeUoKfl4WO8vnF4x90a6SgOPBiSXeaeVlEdCLuw0XcrBbRHYU6x1FErNqBS4rky+2cj/GX5TA97FJBlQ==","signatures":[{"sig":"MEQCIFv0kO2Krqdy+oEgUk0BfKKNYmnmLpUeSUTDf5MzpAW9AiAq9bAIN1Tl/mPPK4wfg+nEWzywwXXP2bbO/rNXtuoVdw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38848155,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjt8nDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq6PBAAg2/FyakEvXqqryUe7NPxUZKyzMObSq87y3IbttsG9rKACk/G\r\nblrLf/v+tRNZcpYpI5SWkXolY4bmF0RlfHYF1x6MgNNdlHVtKHnol0r1OgJD\r\nfOdEC2Tf+DZNBTfUK6TcG+Z3N3pdBsaHFktNvajjaE7qhr+v9h40glG6j0Md\r\nyxRrjGwo6KMVnt5NIyBAuXLOW7rYhu/ugCQWrzG0EbRjXv8ib9TAH++uh7oq\r\nTdtcc7qx+O/O1ZTtQ9bKvBiRPVW4OiHCky3coPSMRZOIfk3kdNp7jlX2M4qf\r\nPWcmA3nxIdi5h2rtfXknqBY2J1XHVKpaofH8OeMw/rTgbnk2i7I87JIQ+VFg\r\n1M7IyidBcpx/zAO6eeVIEnybUEfWg51kDJWRhx8M08BIfry5ov2egcZF/vRx\r\n/2qHeCj9eELHsFJX2BQUxKoSGfNvSBa/c/Xd0BbT+GztKzatoCD7s6bLruyz\r\nvbte7A49Wg6Oy5Rv4fMEte/sdgrnOfsgCqimukug7ZoQb+V+PsgHNNw0qM+1\r\naNpB5FurUg/q3lXw7ZV3bLvXVoWtjwKCZw+IpI+1dEL5o0/qR6zNlpNGJyET\r\n5Ugf7M80JXsVCD0FOyMgy5HrL0t57pDS7cB+M2aLFSP/B9nGA7+kiZyNbeXn\r\nsu7eB0cxroxp3lws/oyg/R6ktTRngM/DP9Q=\r\n=eysq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4b52d3a61a05a7c2b3d03a8e1c801560232f3194","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230106_1672989123392_0.6760069372937325","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230107":{"name":"typescript","version":"5.0.0-dev.20230107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230107","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1e47c9561059838695e552e91569317d5ea76ee4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230107.tgz","fileCount":102,"integrity":"sha512-Bg1/HtMdU9VBLbnCe02c4tcWEJtgifqJCIFIiKUs0xhtey3mujyZepT0MQ8lUPxMxAGSLIQm+nPNJrj4gJSK5A==","signatures":[{"sig":"MEUCICkDWt1kbpp2e4x8YS73mp4zis35dWi/asVkjHNWXLgjAiEArQO5+/WMdIadrHRIdIgH8KTYmFAaEuHX6DkT1h2J7HA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38860654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjuRtwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrUVw//Xko2QKWtxt+ApgyVFDl3Hj2uFS9WvNjiRutHJx9jFxgK5Z4p\r\n8wDuLaAdEGqJE8oQpdUk8COOpxJVtELEjrlidw/boDxDOjdfi7XMskitLJLS\r\njL6Z2g8xnT/E4/S6fEgVVePyVQZFlNVMmD1qsbFlt4cWG+57qm3AVEq42in7\r\nnCbo+efa3iYv7ZOnPTLxtXrdAtrqB+LCufUjEw+fev3DBBX9SlwsdX0EXbhN\r\nZkESmlHuXkLHByCCItyyAB4GWq+8gNbKo+DQw+DPAildrMGLMSPYMqf1+mJa\r\ngg1qbG/0hJFEyVE6djGeCPiALhVWqhnyi7LIri9w3OR1Fu2J0gxeWeXuxbDk\r\n/PUHSGFty8gXtiXJRDF1662ogOy5TaWZuTcP5T77qc/VlqB2Duj6SBoiBVsY\r\n4cEwDRZIyOqGzCAGzzlI+B/gwEK0BdWmZok4j+TTAi4QXbFD4Al75LRFT/Ls\r\njZUe07N+LjqsARJMhGIy8OeEF+HaAJPn9hPctHs+x2OozpWGrK6oGoixlPGk\r\nWKlgzs2eeCe8oMW3RYF7NIdn1u/bdUCOMb5ocv+0Af45QHWtmAgMbCSZbegG\r\nZy3No++Kzvj+7Bk9zJOpE4VpboW9uAvBHnra7f9oDbnQ4ZZ9M/KcnNDGTi2N\r\nHsjMHikKi6gxiW1Of2xtQRgcOJpoiUVWUTw=\r\n=I0nU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"12718ad88e0edbf59e7ca401e3db8ae6a05f4c2a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230107_1673075568119_0.2950737685049867","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230108":{"name":"typescript","version":"5.0.0-dev.20230108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"947e25d09ce10ae6ce470bfc3e43aa13482e145c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230108.tgz","fileCount":102,"integrity":"sha512-EOiaxgDM6nJZU8my+0yElA+spPP/V3nEG+XBgIUdVL1+1xcD1p7JO2S9MvxnENK4a4J33rBrIUSvHhJcJ8kgqg==","signatures":[{"sig":"MEUCIEcdzMpfIfpwCH+aQE6/tHZq1vIaHWGrfKKIillP5ny/AiEA1FRSH55z0rinudL3MSZoTTDHdQqSjl82sTgWShDCJl0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38860654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjum1cACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmor8hAAmp+zbymT+Vnt0kyVtSFJVrhXHf6g3jkVPc0HXDwBhrdwsH2h\r\nxxWHrtkvbTQCDl0cY/pxqG8k1mz7Gqb6Sp7IzBqA7jKjuMTWwwfcqLgzJ6rj\r\ngKIf2IjLcFAR1D5cvPDL83AzKsl63nZd1CfYM2HZbzzVa2fyt0EERifHWZZK\r\ngfxxBjWkrCzLQs29vcfHq8q15CEB1oBrf+bI13kjvM8IB+/loYMPWWFnFJgO\r\nHUKbC74TeHWYc3GYrvOi4d5/T2kJgHsKZ3oah343j0ngzLLuEKO2BjB8hV1V\r\ndmi4LZpTzzMSygtYm8g6iiV1DCb76GB7WxJ+DGLUPu+eMtwjSOZOYTaQG6E5\r\nswD7JNCL0Wjdm7k0aY+LelNbisIMKKd61+qqJMIz8zkH4+u+sanvK96mOz8I\r\nN3SqSZMUKmVK4iuY7G24wsSWE/vHLs9s0Ss9ZLIbW5WaURowye3mk9Kduxkq\r\nrHl+L1rAkpX3EOyWEmt+8ryAIr2igEKT+ui7iCoicNwhGq05NKnP0QKnXGZu\r\n1SD7iiK5kt21RUCYPUZA5NJ9oZ794AySK0BTqG04jyNV0EziAhsWxkGpwGUL\r\nad0xo43qVCWGIX8x9fRfnSfLmobUbSD94GFJT4FckGS09cEiWlZP9EHhoW3e\r\nEQNEcq5dD+ZNvzz4mjhI/GL80aWWK9lIMfs=\r\n=BhHI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"83e8de85ce4635b0a8e247d6ab66d541366a5cbf","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230108_1673162076529_0.12922139068754568","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230109":{"name":"typescript","version":"5.0.0-dev.20230109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230109","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"318e60a058a81329bc3e332d279cd3b117101aa1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230109.tgz","fileCount":102,"integrity":"sha512-tS4gkJVPBUVHIc8+LtfSv3TuaJR/mpvJ9XpLTKSRlPJlhM3rCizt5jCBZLsmNdyuT5LnfsKpswMYtEGUHMdGQA==","signatures":[{"sig":"MEQCID1vGnOukdDeXsnpLNfQkOD+z58Ewbe4mZy+dpzgJ3HuAiAoa9R5jFqiszXtCFqpqJc9k3TYck28/KmQ9ip9rGoRmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38860654,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJju75cACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5OhAAi8Kou7eqfpfImaKAxaTRvs/djj1Y61rtYxINj3H1bTDl5YcZ\r\nYqChl09wQ5eyZvcqC0/8gSq87DOYmDwiadWOdpWkGnps9vZBFSfV21ptJAXL\r\nZ3y4cfv4Z1I0pozXEGcdanIzQlGhbp/JSA+1oY5WJLcrhEKDWJK/lKAtuo1q\r\n+JKCf5cbmyTNQ1ZcO0oXm450iEJyVyLH5womLKDWQvbEaiGE+S5xqGV9ieLJ\r\nlb/K08C48202lJNPPVTPJhF88+gdZUQHz0rJRQXes7qifqCmSDQCW7NYczUs\r\nAPS9b1syvX7EQsvFLZyeMB/dkQX7R4d8uSWCcM8TubgGc1LOHKQ1Ms4k9ji1\r\neAfFTEqM61r6ZkaGP7m0acI1H5bVq7DpN5UPixjbGbePYb/yusWv9Zu9CU/b\r\nY+wF9x2VfcHtLm1elvQKn4xOu2+9mbQfYE0XkzfePuCBRjcOOUH8RDL4gxXR\r\nWFW1CYvxYsvT5pImzkdlMDqO/swADGE8cp+uoby6I64M+GWZIkkw59X9ZGML\r\nWe52inV/xyW0AFYo1ox5k/oL2JmI98NgEIQUMyn577E43BfgYt9ljrY84pha\r\ndkmhCy4qo8ysGp5HBWDGHJrGnwecHGtSmY2Fg+Xe7Mr8T/tCqQBw4y4VUKC5\r\ntcBWd/wEXbMCOWEUP02NMEqp/LUm9WMeIIg=\r\n=/bNp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"fdb5dc56b03b2ea66b6a1f2464e31eb73fe3a999","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230109_1673248347941_0.503375832752166","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230110":{"name":"typescript","version":"5.0.0-dev.20230110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230110","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d8b1ff2dcfff25a147d3892144d15adc97d39f7d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230110.tgz","fileCount":102,"integrity":"sha512-0GvdJbYkEHxWSL2XPS/kivYbGZIGmgICZ/xXoY11zv1RRehhH9781v+RpsHI4qsGqxmzOI5VL+o/Y+t7sbwWVA==","signatures":[{"sig":"MEYCIQCJYqw4sx+cH82/IPx6ai0stmUm9UdtGgR0/vMuTYXUkwIhAP3/uuhUwiiJyJXrbIcN5LHxV12vnYStqaQw4RHY8tZV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38877202,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjvRBnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4TQ//TpZHYskVRQdw3ltq4TM3ijr+lZHsGOAvFWnskLPaBSvEuTNJ\r\ntljWCgWLcQi9SXX15FA9793qp2PHYm/yBfmMWsaRi+37udkXX6dv9/4lRAPn\r\ny+8brHKmZZEG2+UwdnH0JeJKx3vsT5MJYXLB6H1j6Q8ymSAZpwIk3xd2kMFR\r\nhLYaG6NxBXi7dqTsg1Yr6rgImx5ojgj5WKtAOM0wUc0Le4RYl5J8Y0zgw6XN\r\niF9fGqqu6hQ2krCvPuNfnInNhQVgVnQSNUbURI1+Bon9Bf8nSjRy+fvkomu5\r\nU4nxkbTP4/RUywEmNTFQhOSGREmc51TmCFELyr3wfr8ZEUzh8h98CCX7FG1q\r\n1sovbUr3hKmrl9x9zDImfhkeRkPO1i/u6SwwSurWW5zmiztxSK1kGCZRpSjk\r\n1vMfjNFfEr9ma9XYhVFSRhQiyPEZYswUZaJXPDrQfDYxquiRUMy475NkSU8c\r\nfqSeqGxFzV2ZFSJwdf/haBTvB6DsHsOgbHY4uoUuVFqZENG2T2kAvKqn61FD\r\njV36bi8YPCZgaIK1PRKpzTACPy7KR2jvo16nBvdAESY8VaN/0c8HfhV7/oBl\r\nVwbgLhb/mTL9H88TNcvrF1kHt/x1+YdKpO4dBinBzK91hL51sbn03rHCiSKn\r\nvum/ysHkEgRnf4qahTcyk/UK4Zrp+mPtbEs=\r\n=ERE3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"280e3ac85eae437a11ea248027eb914ce7387d0c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230110_1673334886787_0.33820608306092037","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230111":{"name":"typescript","version":"5.0.0-dev.20230111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fda95281bfecd1e0f988975595ed988170cc3738","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230111.tgz","fileCount":102,"integrity":"sha512-bsALKGRiteaVcio2QQo/8MBxaHAEirJ3tQiYym29Uh6/z/fi4LlBawrvnyGKI4WqI2Q+lchIgr2p2jKeF846bg==","signatures":[{"sig":"MEYCIQDc/+SFu+FeXZmVstwY6RV0JlQvHsiNfBkXWNyVi5EEdgIhAPgKzB08VY7bpoMgGSnrlOupf02qHVJAupdxuvZhqd5Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38887441,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjvmFhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpoA/+MIKBige4gRvFgM3L42T/h2ShnVLMFt/YXYlWklZtaP1P8pC6\r\n9L0/ClPF/0kf3SCPzUpvaMDX6SUEpuYXyUtXmTQS1DTte6jm+N4VeU3vJ1nR\r\nOjxtCKs/6j8ZTBJJivLRBnmAP9F7enw3mlNs50qb3ZvgHibu/a7Hsrxcq5br\r\nu0wnjh+PZQHGJbOflUXTBzqqH0uZdmn3SlTJtJCtqTk6b+zW9wP7AwPoWxDA\r\nrnlmni0S+RfyesIdfrA8R9UXPjdTlw0WZnmU4ciE+5NueR3krE7DCRrcqhY9\r\nx5u4+4qC9uBUXzMy69xRoCRujOEhXhLMh6+tW5Q+uBXJJaNwdZfS3/6E2oXj\r\nr0y8epiKwpRtKT2cM7Ig7+dXxmuQNv+7+5Nt8RfeUGqTW+qV5D6FlVtbHWWb\r\nCPrQsl1Gs1iBOrH8A7WF+o1ANtVCdETBh40zsoVuY4yjrYPQ1EnUiNpbwF9p\r\nKx4egDjAERtCnYHOo6zvYNwJLHpd65+2LaV3sVtw2wKZjXAD4eMM5IsexQKy\r\nwUDipCSfcG9rrgtRiBGrYSRah6NPgvjnonpgUSGoO4WvA/nwMxdMcZXDZ5xj\r\nYA6mNh5KKOGlZHsDGP7zMVGvqjCiic/kX+uwoz88kGZfAgB7CoIC9rvG1QQp\r\n7jqWqCRS8yZDt21Xx4YlX/SCkcCvK3o8wfE=\r\n=6Wby\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a05b7ec01fc9f1a8001e4556b56a151246b75f2c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230111_1673421152987_0.9966728918967462","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230112":{"name":"typescript","version":"5.0.0-dev.20230112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1625b7f774b9efebc07f816a8413444ec70c8e63","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230112.tgz","fileCount":102,"integrity":"sha512-cO+lTlZiNKqZIkjDOZWjh4WtFz8Jba/Ut4nvjcguXGgHoEnHD3+LSmgJjotPcWxALJZyvpd4EuAd5D3H9XF8Ig==","signatures":[{"sig":"MEQCIDzk9E1iyL9sm8SXmOVx9qc3lafzJxyvHAwrLIGL7KpmAiBOwAhTtsoONjXnsNp1BvHvUdGcuzdJs5URUIHRqkaU3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38898857,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjv7PhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrwUw//bd44OQTrTlVW64JuLqQllLdTPy9ozmYU3sOAmRtTrLrzsBqS\r\niCzvV0fbsvASKJ8EqWVFCA1JXP2HCDKmH9Qtbjw46r7jDIi39tdqfKXJ5I5m\r\nO1vc4nms7rpwnptYC+NpoZqqA0xgsE2IT+e60dhrZRaaNfg2+9duFS4vbxv4\r\nvOWem94El91wJ/9WpEL5n0dWSxKWWgvxoaE0L0PATkXWLAuSlflUo3UxEdmi\r\nfYi2uweTwTaXM5S6SACFsGk77MuIJd0Qb7XmxekSacs+JMu83hqVp+Mtb5Gv\r\nRcg6yECOcPFi2YSJJxnASx4kpq46gFSOHbmooLg37LsXQDnYk23QUa5DTu45\r\nnTGUkB9qlp+l4hY9VRr2paRpYHxmhTkB7AolClJ+hPDzHHaZLU1rotiLg5Cj\r\nNbMUtV9dbTSEDN8B/Q9z2WW8s4AbsuVfVcv5sY5yGHV9hsQgq2dRAjPmxd+c\r\nHpRyEoPXUBtraStkjdOA1vu35/0RZ5s0AJ0MaibY+goQPhCNUNJ1tKhajLok\r\n9vj3wZAyyXF8ebrAQ3iutOlZ/iukgh6A2j70HkBC00LmvzrP/4kV3sk8EOaH\r\nQfbS70PzZEiCZIAbi24iFL9qmWRv2PUiFPgPoulACMLJZmCLEjJYsGEDlGlW\r\nx5B5EHsyBGFmg5uUzEPbgDompSqRgti1gwk=\r\n=0SO0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5b4a8d4134bbb8947abdb0f916568b2e1ff6b2c0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.18.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230112_1673507809366_0.06229034883778395","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230113":{"name":"typescript","version":"5.0.0-dev.20230113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"369e4c1298771333bc692329ff13b1e8a7271505","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230113.tgz","fileCount":102,"integrity":"sha512-C8A/oe/tShuoeJTLhzznzTJyowVu17XwbjMsLSSRZnkHo6QHQdxW1xVtoS92lMzU/8bzpr1uqH3K/6hoXPb6+w==","signatures":[{"sig":"MEUCIQCb8L4ZmMbpLPgp39o2r3kHZ49WkQKYq6caPd+lvvtECAIgCrkwmIEr9DbW2tKzl0Bdy6jD1RiRmv64P2e411FqHnk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38923119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwQTYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo5oxAAiJtYkO9tkcJRfiC0Pmz8qmTLs++L7JRp5z70O+LfHpfzjvKg\r\naTMwfXnG2eied4kKRF8NFjVDyajK+KDVxoYVFG3i1bFQvNPgWve4rDteZ0xz\r\nHfbRsFdBOIBq8fNpUSMpEnupm36xN2M2lt4KLloLmSxeaTVgPJ34ydRGFwwY\r\nxaTUXJN7eJLtJcI6ir9Q+CyR04rSzt+7IOcz4JtRTXR6MNYDjQxIMv5bONDH\r\nfUHQVy8rQzzp7R5fm0RiyLsM8oUfmYMloaajH2UE5iDDJS+B8ViP02VJpVc/\r\nluHF8wZmbd7akjX74tvP3o2jMgl7orIZlypGmUpePnycxX/qlo07geqwt6C5\r\nD8YsSfNGj5T8SoZgIcxyJ30c7xAM6ZrhdtHGUM4SmZrG4ayUBjVjwAJOPH5j\r\n86radr7MRI8B6gn/C2Pa6KLheFuE/goXmkBRSahq7hQDAUlbqeJq85dwcpU8\r\n6bxcXIfIF5Ig8m0+PcI65axfvgeaHKS4HwFtS6vuta+bAmoGKvdJ9P6Mshuw\r\n6jd+uZKMNpWOAytYu1K87LMGUldxPQVHGlAotwV4Wn5iBm/+qmP7GjF/krIH\r\nrzmCZ74Wvs8CXJQnHU30qvpzpDbb3ZKWwsQzLMmSGLj/BCV3h4TFxJBSkc/4\r\n1MiyHL4L6ldFH5hyjEEaucnSiJbSVAxXeQg=\r\n=fBIT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef58695fbcdac632f035a971d99df739f937916d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230113_1673594071792_0.03637422951938096","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230114":{"name":"typescript","version":"5.0.0-dev.20230114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"30dc4fd4a99c311a468dc3cb85565d192adb551e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230114.tgz","fileCount":105,"integrity":"sha512-aAhXBDMLsJwK9lJnYAyjvPX/hKeutIJMirRmYjoM04Rb/CXOzURH9oYz4gqMkFSpjNK/OoEQ+n4D5M8qChZJ1w==","signatures":[{"sig":"MEQCIC7eExxWBqFOwmYBw8JQbjxRzMSBM5b1GWrt29N1TJPvAiA2vtbuCCUHthJpeH8+lgTorit75EWMJmwWlaMyXxlLig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38947792,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjwlWnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrk+xAAhOoRWrW5baG1hK2KAJBjzNp+9uRq6Cj3xgclw5y8PKM9XU01\r\ntEnaqnIH95k5AloC+nLycfowncbFrbqaKDuiy/P/ImWQh3BqM1Rxe6BMr8YL\r\nP3SSvGEOQTgfAUJJ11lFX79arVCznhIiFoimw0Q6zi2wZIAbfG5qfqbC4i/D\r\nFpK2kuKTWe2ONKR6BhqIArUBLC/d/b6awClmS46yeNU7o5HcBb1jHmrCDeby\r\n4petooJPfDLpnD3dOn+jRgnfRGWk/2Nt05JtdCd3+sxDiSEPlB0QdBBrgGlW\r\n1KyL3m1aMkxLvFpSzBWAF4VrY4ia6o603QBsCaqSNTcQGBHXzfeY7cOmR+Ct\r\ny/Ulo93264EL+mA7d43E0JF6o07V2TDzMKyxcrk0skm0Ixdpkr64/hbzEGvt\r\n0WXOyzJOR5dJIA5kYAGPZTTR8Q9JhEyniBLEZRQwL27TdagSUcP/7oIyFFr2\r\nK0Trt6PkMCCldWnUvflIQfFvWn3h2Zk4ks8PMOvmEUmoyUwaaP2DIJgd4kVg\r\n5fyRb0zJV23w0q8jlqrY12k77FbIIh/xKLZC94ltpoT4FWa3jyVczI9+tFaS\r\nxvp2yr8fGHafdnThriz42ziN1WemwBPT+PMz4uNRfn+zsFYLgp2egXlKdKVK\r\nmIrovGo5WLZwvOZpPbweQ2umGv4Ld4gNE7M=\r\n=A2dz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"8586c995b57747bcc9abdfed901bea776644b5fb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230114_1673680294877_0.5786197614936635","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230115":{"name":"typescript","version":"5.0.0-dev.20230115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f1e86817a9316748a735059e4a30952c21a2a06c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230115.tgz","fileCount":105,"integrity":"sha512-nwKvgk3rIDN9pa4fuI5vdpvR9LcLnFsLV/1HE4I5LTULB/DsN6MMeE1UF69L2RKCsv0PFYx4GXCWOsZUt/Jx9w==","signatures":[{"sig":"MEUCIQC5DfR89CYre0nQ+I6RvzB57Zc3eA2ulVEfNxaUhOpKjAIgM0XCsmaF+Mt+yAgj4n0EaQwX3moSr0teolsD8sPeDKk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38947792,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjw6cwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpjSxAAjq24wBFXWdDsZymzKRcs9+eHH/ssKWc8/djadyviid5meSnA\r\neM4NiayJWkRs7tid5+LQeSPob0Os2Z2RVx6FTMyKQPhaZscs9yF2a/0cKduI\r\ns8rxV1RD35+4OTUWNkgGgKjkJj4Ct1a1xh5I/egshPE6mMdMl8XsiiJg6nTv\r\nzGQEPNCqqp0vHEl7+0MHhWvjyX9iE0pFzrVw2pEWUHtV7bFPMmdGbidvuGZd\r\n5I7x8xHe/4Of+IDS748bBPKHuMb+DxrGCFqI6t+RU80VfRHZc3QvMacjAkES\r\nWD8rksxj7ZAO8wQIHVfmrTR1YwQbbs+2AKGs5iN40Rfu7r5LpvBI9s1N57MF\r\nXTMMF4oZPWO+wb1M2HrB7Y23+zvmlK3Mpzk6/Kd+UBsgsFEUOTdoJvTadtL0\r\nu/AZTOnEeB7GJ9YFDAcgb9qdMpXB19fdtTUy/k/YsC16C4XrB3jHhAa23PSv\r\npiIOneXjrxlYFfCF9Bvg942f0VhCFJu7iEFCJBZKMUZulQiDID4d8+Xo4whC\r\nLtVUaM9sUOCjnYLMc6S8fxjFAfGprMcKZKZf/RP/zLTWMPtRyWb+CK5XUGeH\r\n7tyBcdvOnviXGNiPT2uZRKoJBG0Ev0B5Nxmtl/MUm2pwmltnTOlZrxllDueF\r\nt0FFFrSgsX0bOuulJjVAM0+K4tg77hNKNX8=\r\n=m+1/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4ba756fdc847115bc1ff5032ed06e9bed60f16b2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230115_1673766703759_0.5255290935430699","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230116":{"name":"typescript","version":"5.0.0-dev.20230116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230116","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7eb84b0b54f7c0a54dba03349ad84421d74a0f76","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230116.tgz","fileCount":105,"integrity":"sha512-J6UMkVT1XI6VtmmL316wTW6DNk5OiMit402bFx6PGr6Ag4QgUmMiS2rOPj0TZHJCT5/8dzuPQzd7pZUtLxuW6A==","signatures":[{"sig":"MEUCIGtnE3cUSsHfnNd1QO1+RmZT6Y3nIjxwvRiPL7c7SAbmAiEAlbgHGI8zTu8/ez88DDZ8nP9Uv0O8j0kNjtHs2YnXymQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38947792,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxPjfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqemA//Y1U0G0B3niSwcMTJn3ekSiP68kOgPRpKtU9u4zqo+le/bdT2\r\n4yHpIj/sPgSgrpxpHATFZ+onZSuV3G1ddLXjGWV2W0SSAdx8+P7KkAtDESEd\r\nCF5Q9L4sYoP91WE50WWUICPsopzj3OHswB0sEWAns2pqTGMkH5d7llgOh0It\r\nmXStzxY39vriILB3zBz8lt7VL72BaAG0Fw1d1SMpElQ/ckm0lj/7oEjGxu+T\r\n6bs395q0pTXYOP7JmdFSTRlfI7h76VX4VDiVoKCYlOjzUMNDUqMuqJ13TgvL\r\n3r6FXMqxlQU4M4bjpa/A3SxqsUIuB4N+MNge0FXszJ+ocjOZ3yovD9VfccJm\r\nB8qJEXJhg/59Aczvt0jt0HkpTACUTGRJvQMM4PuzG99m5l37MX23VYSODdo5\r\no8VlRRYQW1GvmdF+DmCqhM/rFsNU16E4TofLazqUkqx3JtQWEnjewozqUPnh\r\nH5UQguyj2Wk1/BPpJtAjjaHkbiKooE0by7Gg174qfUExOYqWyOYnWo11Fn7J\r\nlGpWGt/86Y7O8Y0Y16KYvtrhhcbFHEE8n5vQoNQoDxKUCMjCxubkBtfl8jyu\r\nRXINZBlFpX+EWV/QFqZYpik8/zEOAv6cheH9mWSYW8JY+BJDnObub7eSxyNK\r\na2jWU773PS6p+cSR+pU0T8the7FgfSaEw3w=\r\n=57VA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4ba756fdc847115bc1ff5032ed06e9bed60f16b2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230116_1673853151184_0.7915489922116175","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230117":{"name":"typescript","version":"5.0.0-dev.20230117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230117","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e7748dd2e5b2306d28cb879372c1b12253fd111e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230117.tgz","fileCount":105,"integrity":"sha512-t4oWIiyz6CecNWyma3JrWhQttymyjEjU22fblThjweyNJHzgScOrKO6TYWZmJT4vbi486mTLLu5ologS69czow==","signatures":[{"sig":"MEQCIHkArelcioOk+3honkzZ0N0aECaSHeQxkfOAZFnjJDmLAiArLvD04x3s/OGbFJjXSrhYztP3at++sgOzOiczcfg0pQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38948708,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxkopACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoBmg/+PKmIZaoT/FeolsHNGHx27duoFoyYVv/gZmNsTTu62Z0d9mWj\r\n5nI1pHpp5xfw8m9DUxt2YYM4hxGf84x8gbw7PjrMv341iuyI7uGLGng8xvBb\r\nWEettpk5jjuJve3DZsVH6eGBVokIu+TV0xZcN1iCZF+7atcQPhJX60Dy0Ty4\r\nv/THlnQ3zfoxYivf9/QbrsDZDDdjuZIDddjsXF6/hCK/5eev15Neta2CieQo\r\nS6OcldfbkcdI8S9nAWCPtWTDu67iXbKV1NqFW60kZmLaUKhpPUUVKiP/W543\r\nIMn+GId0i0iAhB0XeOV9tt7AKQ8ObGvIzXVGdGKC5+aucadrVeD3P/BX886P\r\nUFt1klRHi2zEhlCWJkQ7K6xZBNew/39PH9X/kch29WyR8A60SZ+If9rclctD\r\nimLMeQmU8AEoUE8W2fVrkItPfzuZe5YudStywPxIXiPf4tNnVMfAtiAphWbx\r\n6o3RJG0gwdMeflrZXBeF7pKLoh0j2re2VmYki+3dsL/psR+Ek5sXXmwhvcvB\r\naaMGsDWYAjemOa+Dh2kCVLfS8EIcVntGqS3TmKaxTwYCxv1pToYUeYcNbwKD\r\nCEPY7b6ALxjcSeL9CbelOoImmDLbXzaWOQfTL6v0fYE2FXtC1sl0+RMrftna\r\nozFl4QGLj3ILX/C7mlifhY0ttUKkeABFTYg=\r\n=517j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"243d8de66df935164ba621441853806c77cf2b56","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230117_1673939497040_0.6946793145386785","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230118":{"name":"typescript","version":"5.0.0-dev.20230118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230118","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"de7624407eace6937a3ab7537c88f3b125c85bf3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230118.tgz","fileCount":105,"integrity":"sha512-mLhr9b2PSXo21+f210MSRD3EOdsrOg9NTWghkJNDaY0K7iWVK8E5FsflAsRzi+Rn/CsO7tH3pyl0LeGwVX25Cg==","signatures":[{"sig":"MEUCIEsZaJcOoPK1Ug3yDZcTnuZNDyQcUM9tkARyMjCcvYN9AiEA1lWi+sg3kLTDB3RsAIyThx9OYVWpjo8cBouTOWA11Ao=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39023877,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjx5vqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrcbhAAl5zzqzfmOciTeT5QxosQKIN1b14xm+Hf7WHFg2yA3O6SjG/N\r\nAIAN1oXrqJ+birgeiXC+ayutp/8+XWLwFOCskPXQTQdzbjDhvOUJu6tlN9Iz\r\nyg57TunQos66F1Dd1FHFBCvWQPlSurRSf793FMReR1ckKiZJt1mC4h3X++lT\r\nXKAP97NRlaB6rVoWE4fL+XhpwqXpr6RdH4ANRQ1lf1FGlpJVgrRNOqfQ67p1\r\n/OgD3gl3I0jO+CFqNAe3enYPNdzvhqB+U1exRMVdTGA1XF7gWammiT7I878g\r\nQlc0gXxWtHS9yTzLqCYjp0NE1RrVvsXeXjV5877ZwoGv0kVvA5B2je4y9Poe\r\nyIssLqa0vpDKb2AH2/y/289HrLReCD1NkIjloiu6PeT2I0OgHxNMfsl6O4Se\r\nlhuUH/Td80i/rHwAfGmDCxPkRJdqLzSYMymHrixGSimzJa4uSTfceOc6ChKW\r\nWJjsRg7YZohVIpDSGqxYsr9zsSZxtKQgXXrbW5DEsmy9xqzZZ/ppDazj14yE\r\nuVhJ+yI2OJyBNJgIpKLPlgRLZ55cbQwt/RfahRf39jwqNkEmcrIpc224/TK4\r\npS21kV3n4c55DUuMuM639/0otxOoIwLVySpC/VEPUW7IGYcRtU/KS1JNiekJ\r\nHbAxt5xXcPqeCkzI2JkVn2h640zOgHhmgd4=\r\n=tdOz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"10c7c45205d45bdbb4b164d4bb050cba6e7e6756","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.16.5","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230118_1674025962001_0.7408663109246922","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230119":{"name":"typescript","version":"5.0.0-dev.20230119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ac8f1e96ada922dbb40b04fe939a64e81b71e4db","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230119.tgz","fileCount":105,"integrity":"sha512-mKWeVo6QT8+OaLFGay06+BBF1pc4crMnIHNKdX+KoE258e//x32ftH+ZW1OAvYAPTa2huYw5C0rfDfDHwlN1IA==","signatures":[{"sig":"MEQCIAwzpjfC5hjx54VqpMU3xbGveTtAdzEOnsRELT6eFCsfAiBYTbn091Lixj5TvV6bHXO8evMFSQEXAY2nb00hxUU86g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39023209,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjyO1DACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq55w//WPG1UQXkryNc1sGyA9YbqM7nM0SqX/j663Pd1Tdne272Og4h\r\nk/IGzmFj7XUHtjtSonJq/pVUaHH9tdBly94f9KgN/K57EGS9HmtyZvRp+rDV\r\n+2br3rrWk8YQAHJM9Oy/bl6nitXfG9a7xDl0yapDpEGcs9W0YBd4Z3MtVJ6+\r\nmZLz24kpiZ1lOKn3p6f4GGhveIDembIa5eJlUpDmgmWIec7x2mtNuWW00vjv\r\nwd2xCn2RbScC91KenmNAR9Qb3peEHVxjhbG++vaHyVMsDwmQJsg6+5ct1rhO\r\nmmZoFhSq+KPqovoZm6kmAml1SDJjaPPUGAYg9br5OM4d2MwYlgdGgBueOj1m\r\n7WgS0HTBqijPWZ+OHJzWp0kq/AnFjlL4MgETexc/0++Lvkl9tybbR7CTRJpA\r\nsvzZ0OvFN2rmNvReA3SZDC544MuJ9mYdAOLMycA4VpiJ4vuvHDd7Z/9w1W+P\r\nY1vcWvdIfzJx4du3yn++xEvDrei4B+FSgqdQQaq5EVbjlJcEOSQ/9OVaC7eX\r\no4RQTaB7dmLIFZJFHzJtvCXjxEx28gesVmO+M4/eXll4g8otbqODCHqVNgwz\r\n82a8y+dW3pQuKMeSw1P5Pfue6sHVOE7jqVvXmV+aksbo8kkpPSH6L6cdKsfS\r\nfT7CzIzdHcQluFrJ1OfRtKxnX+A7zyRtEvs=\r\n=9XSA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"38b8f59ff6df024f83e47a3d1b4370f0672b5195","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230119_1674112323511_0.047089839533792865","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230120":{"name":"typescript","version":"5.0.0-dev.20230120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b8872448cfb88296c7dc530dc4a60e138230c75","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230120.tgz","fileCount":107,"integrity":"sha512-vgmInMYmRogavAvGVDd+gnrckZJPFbfBp2l7ubTRtZ4CDw9YeUu3121tclQy+0FlmzvhfPUvbJ/ZWEqjQTKGbw==","signatures":[{"sig":"MEUCIFRs9ve7kcvTCmLlHxBOXmrM2mhnayuyQkNo6ggNoiu+AiEA+TsXQAFpvFPji8tmGeVDNqw7gEEO33cgEZbRq8MPuVk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39661384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjyj7jACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5lQ//cvXQMSpIh4RwrHXhxXRmYmXLvSreOEUBK8HZhL/7MZBcZGRH\r\nK8RXj2rDPWMiZG10U/8FGE0P2+Y9XRni15izTslf3eNk8m04A+o/aDXLoidq\r\nbkzbR39BKNkgd1v0zHqpLu1LC4MjdNhuf9rHNrUekbiIrvlt8Ykxmm5J5Hfl\r\ncj14eRwG4l7L8d6uA4Ue/tlCvoH+lKwUT0K6jazc3P+o8BaDVCVX9yEDC7BH\r\n+xe9bLi7UbtWdeoALr8wiMHcnNYiW/zOQojAfNnFljjdHSnbG68mCAl2Vzt3\r\n215kgSx2WCdpRaxCpZ7jegzhESlzte4IHQpR4pHDMonJwoHpJNWEH2xsSvxv\r\n3jFsfUvFGnMJ2ve84oN618xKEWHpIs2wrfazta97DRxpsZfMDoQK/7386mOJ\r\nZiUB32HZOA45xXljnt/lX8PsZt48JGKoBcc672sq3DDsinxpfbPVWzu+zGuf\r\nVSy8m0IDqGxReiPS0AIM5NqxQN3bj9NJEFAfUEwCRk+SnJokzexreK6iGXid\r\n3Z3vCXz2YDRYY22dkQBVSxKqilQB1O4Fs7uW4SVFqtPNgP6SotinjTRdwWQ2\r\nmpCtvamFRYsVP/8qtaKv2FH0duluybGYYkDumDVK91TojtgnAQmuNeqGzNXV\r\nNc9TqELgiC9IjCCVeE3gXH1j8uVa01JohR4=\r\n=Evw3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"83069ef10d5b9c8686f0a821955dd3fd7b6119a0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230120_1674198755219_0.5604567562750362","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230121":{"name":"typescript","version":"5.0.0-dev.20230121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d9f74c201bc06ab896c3607c814a91d4b515aef8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230121.tgz","fileCount":107,"integrity":"sha512-AsGkpoEtz1Be/9Vf4sbv+RLEzQz8YouoWcgnjENM78aVxO6IH1GPeLa4qBjCrVAqOi1zNIdrhVJsb81noKALPQ==","signatures":[{"sig":"MEUCIA2EjYX8RE7ONA8k2KIVc6sfoCgyXWf1W1vLPFWz4QG8AiEAyBlIhj1XilofcCQ4Dl38Qj+XI93BWphpb0DAZ+wKCVo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39070712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjy5DcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqrAw/8CBmiC2ceJtCbxNlz4awY53i/67RwbYZyAwUUSm7XO6FDWEJN\r\neDmo5jSrvqW6FtXrn3Ka5cPA578atIVYQh8tGN9qBEsCqq5VUnJ79AOE9vvD\r\nXk26FPD5RWi/gDZcXoo6Y+X6GaofhfZuFoRzE8hF0Bf7ZQuJw4I/MZ7vbh+f\r\nQfjeWwJO1AaLkf5Vn/IlSzxjiY0rYQvxW9zGSVeumg5k1X73iRkan+Aw1yri\r\neqj8dCGHhtqqDM3GQuZucq6sMqAeixgiho5jl2KpcRuu4ztROaPa4nFYcx0E\r\n/TS4Ptq0IzZ6ihEENVgeyvcHAMpJgexE3zLlxyHTWQliUYCrGZsG5xna+P6I\r\ng40PVfnIxi3BDSk+Gua6Yy4Afw+jTVhPtOQGu2/2XMu5j8qUG70HUrN4IfMa\r\nco7OnJ+x9CU4BA2lgb2FVMy8vSX+mmjB+WA8Peo+zEbx/2LUBjg8Wvdc8Vmb\r\nzRaGh4tigtILxQrj1tAp9N0UX9rHyGgxSmo6ubpEfQA6K5S0cF/h4+orPn3C\r\nKf6zf6sFu76g6IQNL2rVzd/ouUumEP/syGn7kayU/NAX0gE1tUnROSPt4phC\r\ncmzhXW7F5KiTTPVbEN76D8cRIK4EN6x9/4QuXz4t9Vmui33agnM5b9cUNudM\r\n3Gm11TodhsdfYxxqhG+dyDaVCvAQ/SNnRKI=\r\n=3Aaw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"670bc4202ea711abe47edfc2311d187986e26064","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230121_1674285276647_0.21799826444696402","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230122":{"name":"typescript","version":"5.0.0-dev.20230122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"89615095ce0f6ea53c3aa153048937f6a2244979","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230122.tgz","fileCount":107,"integrity":"sha512-JX2ZSUHeu/f78wGCZMNA7GSubWsJMnDUs13hNAoavo3r7nf3JylHuvM7/Kwj2pTXC0UAKajXClrFmrWGTPkB6g==","signatures":[{"sig":"MEQCIH0DfM4+6TXbAr6ydFwiLOpOGTrnOYULfrwCzEzlQahcAiAfW598CLyGJ8kJoItO34wnYX9SUsNQf2RpWsuIr/OYeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39070712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzOMtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp4QRAAhVnloVtQNX9p+WvzBPzgpxBXDzSgMjCZULBjnd95e/DFY9f6\r\nRMZICA5/ubL+zfMe/s/uEOfwxoR396+f4pd1vinkH2kD4KlTNkQZBAZVLuU6\r\n39yCz33zge856iWgMHE/enkBDPl7kVaDU7UeB5+31JLojNInqoN4Rih6/FfN\r\n6ZItQnGzWz4VbppoCZze7DOlZchzhQzSLwfGrclw8IpIsPhfpD+S4Q2Nh8Gj\r\nG4lMa+lEElZv4xlbMoMJomhdZ0PE0/j1ykv0xmmHWQ/cq8b7Tzk9/IuuEOEJ\r\n1BHJKYEB8Htzr6NJbYJXPvw97yPz2zVDC9wRJsOtEooBlAZac50SEU5UJCSH\r\nLqfueaT+6KkBwxD+8YKBVH5pA1R2wtBPblME40Y7EQPQsDjKVRq6Do6163UD\r\nCwUFgDpwSYio9U/q+SFzOXrMLxPcnsvltZYDCNZQZk6TLet8jhC7mF3vn8Te\r\n8XEFjSY2oiYiz5zGaaBxJafku9naQdz9NONzGAzPate2f7yX8w8maEep/wOs\r\nbElfCqBKgT2dh+gSxEtkGXGuLYDOSB4t1YW8bSMZtbQASYqSiOV2M1GGThr9\r\nQ5C7Yrw7f8kOQoq/fGbhrBuxzEFFLyMD9bRbgnYQ30bEmZQvZtWKKN4gc9ew\r\nJwBJfdC56H7sHSwJYZSqmsDDAvXapZ79ltA=\r\n=ViNr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"31b4ec503c85dfe9f82dad7c2e1801211bb5a9fc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230122_1674371885396_0.3982807338300063","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230123":{"name":"typescript","version":"5.0.0-dev.20230123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fba513ac2c835a9f059711a5059f90a687fa8046","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230123.tgz","fileCount":107,"integrity":"sha512-edLR1yM+/2DAL3tZNDtoXLoe2ks7VOYxLUafJMswhWrvpzN4YDNy76zpYORpufCNBn32V5aYA48P0Wkk4U4Ugg==","signatures":[{"sig":"MEUCID2FJNgyppZ5iEO1vGcUIEo3YaaQxQuFLRLjLeAMyl0LAiEA0v9KsrWWbAIgDCRtYI0wZ6ICkq8XYEdwWypeNjGCfoQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39071183,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjzjNNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKgQ/+MBENYBhuWdpDM7wMSmx9b4lNhauAr0ZlxKDj6xU8KhcD3uSA\r\nWlpbTH32LU/oo9H+Olh8cy7kAxmnF2oIXa+9iFK8mz5LMVQPqSDF6nCjDjVh\r\nQIxeIiDjDuXM5n57BMt4roYeoS3X5Q0TXuz+Xdx9zf0UwJVbpjbURcPwgx8M\r\nGGoD6BWo1VGjaLAoJvIdSFgtHvVhxZBrJDWS2yzKe/f90AcNJwTfOpHtwyhl\r\nGXkCPiPCL2EAz0Bs1ngySU51SC8MzC7OmJUk52qcFPDXfq3a2B0yerEDlq+7\r\nKDzlgBo9H25NUGJ6Ais+5ozEmexRmIz4X7jRipyFNAd8o++940kRn+mYkhYB\r\n3IfQVGCY6uWww4aXvnctIGoLgOTX8kGBvVA//hjmZfi5e922mG6WyqL2p4Ie\r\n9kLItVZmnCTUQMUkVphi/Rve4E5hoFzVBDxmHP9U2YhTotv7LzUrnIdNNp1/\r\nQ7yMG6x4BRcxogwpcgnUWH4N2aq6w5ifTokAHIPsjuOv0d5uCczPk13pRyIC\r\nLu4zwR2YCU5kXTVaF1ONTyAwAeTMa2l49u+ys+xCIzlXrabLMr0gvPBq5oKS\r\nC/jtQSqeGxOB4Uu9qzwEKFrK2ESgHSBIXg+NP5iEEe5QhYH/EnnDbm2kIthC\r\nbzgZTcPwwCSroL84BtY2QYgQTEUigd/SQTI=\r\n=vpm/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"700452d015f717b8d2f350ccc0d6fede2fc755bf","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230123_1674457933349_0.5626481294507024","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230125":{"name":"typescript","version":"5.0.0-dev.20230125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"60747ba8ef0eee356e8e381ecff079411c6ecabd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230125.tgz","fileCount":107,"integrity":"sha512-kHrF4poiSyzYGP59MI290EvpCXZ0OiNNBL+8Qzs4eNbwVggKOXWVk/+lHK327KSV4FmJW9s9HJ4yWs3NaoqeEg==","signatures":[{"sig":"MEYCIQCKiwzoNrZp4NeZZWHcX/EFSbDpdIZmLLeY1ePo8EGiwQIhAMWZK9N2T8Wuvb5OSwbVHrscsAvfzIzAujjKLse2tSs6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39071847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj0NbxACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr7kg//e2ZdrqkDprA4jEF3byFdIZAAbs5hsMz3IJNN0wscNdkF7n7d\r\nFJINNc8eSlpDIVxhppoxthMoShq2vKT3g226o9TkI468daNQmKbt8YrFFB6I\r\nj5OzSakVac/HLFPr7+/d0lRdL/5/qpfp///blAhVaOiMZSG8O6ec0p81Qlde\r\nptSUo7uNA5Hwcw7qaCQCcpv0Zv/M7KY4eKtC9F3aeaNsgiQqQf2IGlXn3RWn\r\ndQqAGLpRTqjfiviFxqvyCXDjCpb5BHzIcJjOXN8pAC+MOscmJV0p4r+uPe6U\r\n98FzhiBZo2TX5AVK/hgrb2j9WZMX4Q/fFEm9a/e7RxNOk0OgywgMfv4RlT4M\r\nCXXKgNIjNC81TKczqyzhIX1TgeFQEv8+Lx3XM5Bx32u09uiVf7U0jR0LieN7\r\nduj6stdAB2KiNxmTDyfF+mh1oREWRTjfbQBb5I9Hqj+UFeX5vOZrC5mWYfyN\r\nZwQnwjAJTyKE+DEV0/GAbLeUWsmD6v9NatH8LHH88bjO+tLJtpl6RGCnOyQx\r\n/CLp2SO9Fqu5OA5Rzp6ey4x1twCEDvczNGb2IUclb+lmTEhDzHsJPwK2Vgsm\r\n8iwo96jJ18y+gyenm0xG2dCluORGW1ReTUAWC/3sdMT5MzEtHeTdNmU9TgiN\r\nksWHUyeeFo7LjC1KRhUSvqai2hKQL3sMhc8=\r\n=sO84\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7f64af23230d3682b852279ceba4891e5cc88077","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230125_1674630896982_0.27382533325841996","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230126":{"name":"typescript","version":"5.0.0-dev.20230126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1c62fbbcf5b646d0c25899e45d56ef364b170220","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230126.tgz","fileCount":107,"integrity":"sha512-inqLVNefZCox67OMjphOv8ZNP7zQwLs5cILhgP6HszeJE4cASpJBDkGT7NWtypelkLnmUhqKNTrNu8xzYcHoOw==","signatures":[{"sig":"MEQCICT4AMK13GGbqAAQGugMjof7DfgsAUxePxWHx1JIKNpvAiBpxZTCjqGjFPAgA24JY4TaKXwPsQnAhNn9l3pUktkQWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39280936,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj0iiWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvBA/+Lo/wpwDso9ATNHbMhotNO0fP1JpJkZ80nsVMepVWbkqy4Tei\r\nGbrHRlFJX7duNjZMEwVxcOZtvJfoGWBeTuRM45GxhXVb5RYBuuCr994+uFXq\r\n5ffvuj2F/JDNzFSZ1KPoHqofeQiw/u27+bo3l6TXNUjFSP7GU7IBShn3gww4\r\nFxsDSgf3Ht+X+pFQudIHhgL3WxNQDlsjUHfFrQFduqNmbxrJybxo/XPEGNGV\r\nemDzAUl3BNPo44J/zwFK0fSvpwL/0uUbIy4rV1y+SCE5bMsK1JtUNwXgRZrT\r\nmZeiEieVgXI5Uyj7JIuUt4khzOIXVzRSedkuFIhGmT0jmazTews3piXSBR3a\r\nMl5FsIYnnVATk3ZvG82rOsqb/h994Z92HiFjyDH9NjTuP02GjZ5gIQsiKm/u\r\npnT4wFpt05PSM+Hpr9puEMyBD4VrB0uQ95mjBZE6xw6pIZpelQQu6+G8qlY7\r\nMTdlG8a2QbN+AAKFaBEklbHvkS51VpWq+zRhZOg05e13jC4cntzQsuzTW55+\r\nv4KNnBjWllRfjG8fn9rDsjmDAGpQHHSl/rTeHwl/ysnLoQcDtvT75zloyHam\r\n43Jx3I4I9UZsB8yhxNrWukewcqzYCilWwc3KrFvpMP6hr3b4iiki0QF6O5WR\r\nNL8PwW7ksrhl3+oVMdKBeIDd/wvOWL2QyQY=\r\n=3gdw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"0141d1d5f26fdc8947dc2aaa8a0a977466f9be56","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230126_1674717334162_0.012304413693596805","host":"s3://npm-registry-packages"}},"5.0.0-beta":{"name":"typescript","version":"5.0.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"791fa95411d6ff64ee77d677ed1e6f32a2eaabaf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-beta.tgz","fileCount":107,"integrity":"sha512-+SSabbSXG5mtF+QGdV9uXXt9Saq1cSyI6hSG7znhaLoquleJpnmfkwSxFngK9c2fWWi1W/263TuzXQOsIcdjjA==","signatures":[{"sig":"MEUCIQCilH2kp1uFDOaWi7qLvoWUfcbsd+jhsCXrdRrmwzkBWAIgAqAGhqLfyyjNo+L6mPRFs+CY1peyRw4sE61FuUbbYRQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39280889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj0uYqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEUA/9FRDZha7xyxMhXbJXabFda3XFaapuzdJ2wmFTrFF0XpOTRy0x\r\nbvul1Y7yzaA4y4KQwICRe3+awH1dFV6yuADodbJJWY1TeXGuhy3Yj/+65GXT\r\nOzLYBddxuK0NWJzf8mbrzmVJqk03wjTW73Mh0+WLn4BgQCeCALOkPeXW5c99\r\n81SQPborBon6mvi5CzQTdhzYb1nP+dMQsLkdFkcwNmIZTJh4UN2HNl+cDq6B\r\n43sXwL0jZ/b/g/lsi2ze35Q9jWwhPoQOKLqiWYV9r54XKHfPBxEGTfBAz2nO\r\nKLyS3gqw6ivV4pncl8ZaiwupGsURSzmTSXp1x4GoQ+OOGKPgvUqDfHKdp7AI\r\nfE4w5O8kBFjdaCgMA6wEAUp88g6LSS/hMeODZCWgZc2o/1qRcG4FjIqKlf88\r\nVAp9/sGbWw0BsP0ikrumDuNOjoe9yqPDSFVJCajRe5abHMT7fLH1/Senywqk\r\nzuIOjbgL6E4HlmXCT5l50jt282hwL1NpUgUuXmv+vOKDLv2vbdP6jKpA9Mu7\r\nrDi4DM78Ayi1d/704lfvcvuNWfyDvD0zDt8NLXD8oPEZNDH+vj5FvrzVKzwW\r\nKl4DFHZtDc0n9LRIc7wfxte+QVLrGLC8FWpyPqrgx1OV4PHSK6fWXGGNUT2M\r\njsqgwlL10gSXejpVpOnjH4h6zUsIBTNn/gk=\r\n=IBnQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-+SSabbSXG5mtF+QGdV9uXXt9Saq1cSyI6hSG7znhaLoquleJpnmfkwSxFngK9c2fWWi1W/263TuzXQOsIcdjjA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-beta_1674765866160_0.5967974919717571","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230127":{"name":"typescript","version":"5.0.0-dev.20230127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230127","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"29001661cbaf56979d99d1ede45de41cb87b4bdf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230127.tgz","fileCount":107,"integrity":"sha512-mVeF//rAsCF0l67BcluXdtGqTnSQNJwwxQvqcfdwNuRn9P0GN1tGqk0ta956LXBCLHl4wnd8g5BK7ON/+ZMHAw==","signatures":[{"sig":"MEQCIFibE22q+8p/9HsX5Z+pAKSrA1xU9vjoddosGHo/cWomAiAYeWUxtYcNkMnLochkkT9Zadlw4UKKe5pVMgfCXzI+rA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39089601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj03nrACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqi+A/+K2z3nlBuzfB99GW1sEXICxpD8EubWZ4+bRvve5FdVqx1ta/i\r\nCTIoD4LcXc86scR9IRvMdgyjcuzG9CKkLqywjl3wQw588SzTFVWVgspkm/i7\r\nmTHOx8uUEtNptk7F08kUf3pOWywrdUb7oE30PlY35TJvkoMof/ngbuxTqwRO\r\n1pECDl/8a247LnS+PTVrXIMWyhyC813ERGprA8GRi06MF5Cnb6OT8yjmwRye\r\nXwSJaainb536RBkeUwjMDQY/fWXmfiKKwt1wfxQbQn4LLchi78QG8Z9WfGYN\r\nLlGQRXV7ChpI7mUpevwPEkSEWbow445jdRPaW5biVmROvgLLUDUyhbTqs6J8\r\nQEIC4Vb40mN8thO4EnSxp3g25wCnedNGvBDrZnNZDA1eYhTuzH0CVy5ts/Ki\r\nYdSsWdsnvRn4iMfNCss3aPEBIoCpajr9+FkznV99p+45tuDdQpOf4VyfdQS1\r\n4Xe0zO3xisIKjzZrAHwBapX60+m4XCbVwoHThqQF5pVQRtzUxSte+HteSlF6\r\nRsKBDH21dWAned+J7bndHTavTwnIiD5/FwqsqPX6M/JzTzUcQhkpgt17INt9\r\nBAEpH7nASo4RD/EgK6U8SSm7vV1haJNmgSAXvxoVPRggyE6r49UMI83RCCAb\r\nwoAiB9cYWcg81l9QE756v6IWuW0SYaIdnt0=\r\n=A1lD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"737a9312cb9131821b3c49d7ae48f852ed34320b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230127_1674803690962_0.06549637112271167","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230128":{"name":"typescript","version":"5.0.0-dev.20230128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230128","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bbaf57fc1a889f126c7fabfe73b171d0c1737a65","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230128.tgz","fileCount":107,"integrity":"sha512-oos2fAiWy4+bCwSKXn56TsFz0vasZJ0uQR5FxXDUmi9y4+TDxUUZXpIVv3E6RKFz4ee0ndvMOwTjpnb2WE2gpw==","signatures":[{"sig":"MEYCIQDSrK5bPKu26qX2y0aUcV+1t+zKOgW0TxY2ebZ6iiVGMgIhANOgtu8mWUC+CPz5MDTM+gTlXfyQ6Ljv5g4Di9OGFxve","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39089781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1MvAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo/Gw/+LG2fHc+uxNJl1aRANLo+I+NN5osIyNslFtPKAhURDhMLFAAe\r\niz6tna/nAaIfQu9Cf0DrCiw4EqEA++XIgDlGJfy9NyLtwKugab+H5tlmd+th\r\n0ZlvnPZBWGeQbE7pUn1C3chSpAWkBB8S3rv8p56wlmFqH+aGzZFNrKYu5grQ\r\ngitLTUn2Xzf419Hs61PIUALDikoiZtBaOWrmv6aWMRn9HsM3a5MdCH79VKgl\r\n63W6skubAVfJxD+V/ShaXTN6DRzH4bg4If0iOevNg/cGOrF0BrddLPe7amvc\r\ncrxLKqomDA3y4/uRrCZyw7zv3JDei6AMJk46uVFaODfCeBGm9sTlYoJpzgVJ\r\nDxvrq4EgKQp99U6a0f0V2N4t1g/W6O/7eQAVIVGk+mjQe3P6f8PaIzhjR8d7\r\noxVAS54T7H/QT8AbpD4tpgMceId/tPLNniEJmuTVsKdU5wuj6j56FckSNx2R\r\n9XU4YeOpmxkMLaK0mjM+a7QD/HyzX0DfyPqNJADYXn/e3xjXo3WNmlY7QOHI\r\nhUm6HHDcAxRZR6ERWng2Wj4szYl/bxDY0UBDqYebYmmTrcnE58XN+3QL894N\r\niPy75EsgyXc4cpY3Vauh87zts/JgovzASdYU3jHD6bQXIt8vCNlMM0H7FxyV\r\nfNm+24IbskyLqK4tjDyd/dK7q5dIam3abtU=\r\n=Jvbx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7d1cc88a8cbdf8aa847a7f2a7d4bfeb89c8dde15","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230128_1674890175753_0.8660101331713925","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230129":{"name":"typescript","version":"5.0.0-dev.20230129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230129","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"de37bbd919b9140a1bff707a1d4a73ca3e4893a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230129.tgz","fileCount":107,"integrity":"sha512-RXkuG13JCg/g2OYnaLg7HiYfwpUzE7auAPSV2OcaW5VhJn1rESec8GbojVaxNoaQra4eANBVyMXx4SbJYYC2Yg==","signatures":[{"sig":"MEUCIQD50EV0Hmd0GmwfVAro63nNdqsn8j9X+2kE0RozNU4lygIgYxCMRFxWKxRq1VwotzVy5HRwqkmanJhTDBJsMtvzIug=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39089781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1h1HACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrkBA//VVi1E8mFmvjeQUZni/0dgOyhaQzu7toF3SoVWxQV81hZv6BN\r\nXEIRo2TFnv6Q7c6FCGi6zKshMZ2PjkdcXFZ+wdfxJigV2ZpaAMoVifVUOZU/\r\nnfQb3a7zOFl9alM1u23DVwMOgqMTwCVZS+HVBfDdodM1gOrYlckHLCJyRhmQ\r\ng3Q14BxLbxsXGYn370n2jfdR3f4LnTc7TFAkLDZUV6sNpPPVRhwMqBviz4hu\r\nPxPG3z/BCy2wvE8NesqRFurMfOR0GhYmOqxqDGt8xhwbDTKaX+ZxkBFGxXZR\r\nsxPcUvvnZnq2Bk0rUps3OMTkz6dEAeAw0Eqq+bXgARmptc6ADgCbz0RkpQ3o\r\nMmQ+HGjnQwSWmkp770B0oG82w3uvYkXRh9RSHQ3RWTCaD8ACY3zM7k8r6vMw\r\n6m5yohXqY+ZEVpfbNzGdL8iPA8euzp0fRQ6k1yHF0vEAsMlCYcf9D8StmeLN\r\nrZn3e8FoVl73dO49Pd0inxG5sFYTj4crUY/4KdwnSslzVwrsCDaaAJFRS+Kr\r\n25nlsolYV8bBDvVAAvoDSDg7q0r59gZXA4GTKF3feVOGLHoaxq3blo2CRRNT\r\nooM4mOf6mQy/+jUsupF+XK1pWemZ2VVrDGBQwtEa5OM/m7/8G+QnvrtnaeTT\r\ngr8BkrWR5G4jMwsw/FBFre55DSZnTCRB2TM=\r\n=DKuq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ac24daad6d073cc70b626da64ab4dd2c1fe89a65","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230129_1674976583180_0.6751684718248356","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230130":{"name":"typescript","version":"5.0.0-dev.20230130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6eb64e2ba0d565139e58d423bcd18f5b4e1a58fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230130.tgz","fileCount":107,"integrity":"sha512-4zmbh58Vt3HDAD0AvHr1ccmAkKKODriYMNajcSzUylVgXCXrNGTJOReMp54GBs67KfQFaLOpVZlLrlD2FKn9Kg==","signatures":[{"sig":"MEQCIAq15XaLvJXtV+sk/KZb2Sa1FQAWhUCGa+aPUvdJCYREAiBAGSMPDz4QG+3XrQX6EniOtFTCQGL05pWweXNUsJU67w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39089681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj122zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJ/g/+Njx5li41OENb9VM41nRH2J3gojh5zDqbspNzHU6htDGJ+Cbl\r\nLFdOcBHzdJOneRAP76TpHWjjIKS45Ph7wlgEKhjXyD4L2EMbcEQ5b7U9e7bR\r\ndmpijsCRTHsMScf4CYxDoyCtJFvyZIX66YMx4zva/+m36O0oV6PZL6nWnSz8\r\nwOx2TAAuwymqPEXFydEZ1JNikjnK9Nc7aZnFCp9EZSzRrShGleRzeU19tOhl\r\nN67jtP6dvQij8Bh38mbxIobwo4awMeLCYfihVcMep9Y8/K8Q7ghQOXTVxP9s\r\nqXKcIS+NXoFAKxXRm3DOHv7z9jKUqcbEmhi40rYrSSybo8wkNrGRPCW53P8C\r\nOYnXcRwdSCFAMhJMXZB1HQXRtDEreGHXtE8WQ9lXlnjznoVkmJCjfjAso4RP\r\ndxAt0+vkakpj76yq4+UftZwq53s6DZ4rMSOWDzvHZrryFDWxFJG7e4Qx50eS\r\nzY/OebDaNIXqRWxkxWxLx/um0Ad+A/L4Pwku7xD78U0wRLU+7xLuqvgRlPr0\r\nAByGWi4r86lOUmNtDF3OxagLoAyI/0nPdoeeVR8NFsH44+8qncclm5MLVTRi\r\ntbJEc+A1bYDvUiLy45TtaiEnT7Jx/EmBzi+KzRRWXPa05Pf4DfkaqDtTJlYm\r\nQljPKQgd8EQOSlm137l4PptRWbK/QaRSHa8=\r\n=1rq0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"39a9ac84fdf307e7b36bbb889d2faba74b46126d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230130_1675062707401_0.572579065964155","host":"s3://npm-registry-packages"}},"4.9.5":{"name":"typescript","version":"4.9.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@4.9.5","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"095979f9bcc0d09da324d58d03ce8f8374cbe65a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-4.9.5.tgz","fileCount":108,"integrity":"sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==","signatures":[{"sig":"MEYCIQDiiET+wlKCjl7ZqmPfWj2ENtJmCyJdORuidCF5jYtN9AIhANiB7vbXWqZyx59iHygxGylX52UQPzkJUo7aV3TwrNaM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":66849652,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj2DEhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCZBAAgqvrggNEQ1ZXBD8MHkGU/IvOWohue81LnYS3a0ZcNhOs+nK2\r\nAEEbGc6zpIbe15cOhBsB/xCP/DUEgEYsLg+rW9nxNUqxb4D3suCwW+wTbSIo\r\n2TjTKGjWOg7KPqpKOhB0LJ6uxKAV1kZJicYKfIai1Ia+i8wWv+evEWHve+0T\r\nluA5LQDvivLKe/oTAE8N19B8MtzVbzVHLbJqIOConRIGL1SZfq44cqmDMaZo\r\n3RbzPi8Cr9okSflgZMbp4uWVARy/+TBgArEUFa5ZCDJE2MlQPYHzxyjhab9u\r\n9DYRwECvM+iUaeBNArAioAtqslzMoWWhtF7EXs6+z6xRhKl7ucD0zG+In9l8\r\nNLnwv5jhbp4Yt4yWoZDSNjGmFylaLNcGqIWngVUURExw2W3U4EwPpPjfNK7Q\r\nG12KOhIGaDzCTkij7AP1ZMdLPlTnrRg0dd9+HIRmXxmriw0jjYuxKpVTNH5r\r\nPlZJ4IV5egiVOCAQlwwMJKfcHrte6pQBNObXdb/bA7SuVebLKcGwSRqW4WtM\r\n2lS2P0iNOA1Cv32B63jWpPLrwYba5q8pSQtox414bmODo8v6Sr50qpDpPweB\r\nY5X52SinX4GV8xCYEduF4Dv+ZNYWExT79Uy9klKp3YNUYxDrKDyXblBjGm3K\r\nCnDwYAPkF75GeUV3ff80shB3tm5n/USXz5E=\r\n=4C7B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.15.0","node":"14.20.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"gulp","lint":"gulp lint","test":"gulp runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"gulp clean","start":"node lib/tsc","build:tests":"gulp tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"gulp local","test:eslint-rules":"gulp run-eslint-rules-tests"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"es5-ext":"0.10.53"},"_integrity":"sha512-1FXk9E2Hm+QzZQ7z+McJiHL4NW1F2EzMu9Nq9i3zAaGqibafqYwCVU6WyWAuyQRRzOlxou8xZSyXLEN8oKj24g==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.15.0","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","gulp":"^4.0.2","chalk":"^4.1.2","mocha":"latest","vinyl":"latest","which":"^2.0.2","eslint":"^8.22.0","merge2":"latest","mkdirp":"latest","xml2js":"^0.4.23","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","fancy-log":"latest","gulp-newer":"latest","node-fetch":"^3.2.10","typescript":"^4.8.4","@types/chai":"latest","@types/glob":"latest","@types/gulp":"^4.0.9","@types/node":"latest","gulp-concat":"latest","gulp-insert":"latest","gulp-rename":"latest","@types/mocha":"latest","@types/which":"^2.0.1","@octokit/rest":"latest","@types/merge2":"latest","@types/mkdirp":"latest","@types/xml2js":"^0.4.11","@types/fs-extra":"^9.0.13","@types/minimist":"latest","gulp-sourcemaps":"latest","@types/fancy-log":"^2.0.0","@types/gulp-newer":"latest","@types/gulp-concat":"latest","@types/gulp-rename":"latest","source-map-support":"latest","eslint-plugin-jsdoc":"^39.3.6","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@types/gulp-sourcemaps":"latest","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_4.9.5_1675112736831_0.02357688727512386","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230131":{"name":"typescript","version":"5.0.0-dev.20230131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230131","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"920b8e5b9a25100fee18a45b0f77a3d12d9b8d0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230131.tgz","fileCount":107,"integrity":"sha512-A1VAxSLhrW5D7zq7nLkE36JAfDL72gJrN8p5Y6zvvndkOGtfgJp3//M0iqCRfLe0l8noJb8cRI+kdpgSuC1giw==","signatures":[{"sig":"MEUCIQC6tfSN84mTQlglC2uOCotq1hWppSU6EEDDoexYTCD/dgIgOrsE+r9+rHbOKDrfcOP75R+kX5rmtbPls5TNt0XMolg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39089389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj2L8yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmollw/8DfPXcXHOXrmCrAy34WovoLRkb8yozKPvxQJy9M77UB0PA8XO\r\nfDWG+GKg+0bggVhJWW16BNHJ+sapcnLHKZR/2WJ5mHqXmsVK/sXIl0JA/uHq\r\nOgOHDEctmvZtGtTMPJLixBA43laTwn/m8vINJjZOy0aZMA0ae4MgKBwZASlg\r\nWOleCRLWkvYwOpy+7Halra7zgkLxVgX8Rh4418bPeFbOSii/IzYlQd0mn6g4\r\nUEurBwa0HE7xDtPqhBt8MJRZMILlHiXMmc3raInSvKJ9u8WnZaChJAS4QLl2\r\nXagP54BVa1slNU4+DhWmhbkeC6sTjIA5xGz8Dc8ef+MVjem9GXgTyjLvzpsK\r\ndgVAyRIZ2LKl1/zQ/xR8jqGEv9CET+3TkWmWqXl+uSP77r780UAcf31ex3bg\r\nVrQB+RmYJMnw4FXHy0ADgOVpoqSaSEku+iiYCszasiPUAeG60rAsHakjYW1c\r\n1poUDTdooMiFMeK6BNar1Rs8E3Apw2fGgQtIz97zkiRL+O5TJC2dLJ7+zYRT\r\nHrvHFMhv5ryt4jcDxyrI1Zgx87t1vtUuaMI/a8uJRg11yejh4fr4XoEnnpfu\r\nn3M7jg7lRgWfIQFOmW9oeu+AwzXb8qbUzvYvU5+KVUE9SkqkV1IxVMLedQbk\r\nCNikmxeHjPSyiytj+OXohV+v+B3VV7I0o74=\r\n=+6BU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7f41c9045494f40efde5c4740e73dbf9ad38f929","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230131_1675149106172_0.24614734276129902","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230201":{"name":"typescript","version":"5.0.0-dev.20230201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"045b8f21b0be91b2c4e38f26b6736e388b7e23e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230201.tgz","fileCount":107,"integrity":"sha512-pm0yhjZLWOXF1eWp07qymk04I6IM8CUFAKgwFpilOqrD0y3ZDpi997Ah7I4vrRoH3YQzT1fCyuUUYOBZwZ0C1Q==","signatures":[{"sig":"MEYCIQCzoghyQ+jwJZM66ML6ETjS7mUJbLTxTNouJ8nbPZJWgwIhANsQ1qcob22ASdLnmR20ZyiOl6BFbBWCcF2OQoDPa0f4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39094927,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj2hC8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp0LQ/+Nbkw3VvCeXF6+WgAC3fUsznAVj+G2HsLKuPduzoZ7YP2b3uY\r\nJFMvdVDC0+0bU9AXDfbwjdWjq+2ncWetWhr/3RwoQFD4selN9Mykm9vPOwR9\r\nYkWxxpB9f0ZrRFzG0P17LZrQwVtrYfizDBvEBaYGXk5ilZJ9GV9PeFpjDxVp\r\nCppQH1wtLs44gvcsseJuFbv1WgaUEtDrgl+AZ7D8TPnV7iBWDaBqjk44LlIW\r\n6FMUalXgux84WplMcM2F+/FAFrw+DgZZLFZQWCEukU26KiUKYhAP5zejv01M\r\ntW40XeREZn0gxY+5SmPBW0Ach+mFAJIRE6+eQs1p6KxpC85nuAk7vVbK7RXe\r\nGFsnOqEGke9QI/EIwm7NrqFs3v06ioyUPn2SacpPGRkmLhM3Lu/5pJXTSggK\r\nsenUgSg9Org1pFihdSFQaEmJ3q4wBo0os8it+b6yIdXkEflSdOeUm206Dxwu\r\nzyoJYXPfo+vPJQSRhwwFrhhPr9JWso6JnOgqH0hXUQUVPpO3xSM0AQrdogdo\r\nS4bVfBkgpmSI8Lb1iKfNZiVwsxTiiEsPq1I1VebyIy33lnXo8FnxTMzZ9RGk\r\n8MgPSGUYVXxiFsR+8lHt8S0TY2buRkeqmUhFrlmn3Gi/pjCCMN87Qtvqk9Q0\r\nk/QDMan52xQqMwEmeFscPhqL4ZIc8YneA1Y=\r\n=1W3g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"26eced32ed464c2d31cd6007918224ec0df64c18","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230201_1675235516161_0.40408304339016254","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230202":{"name":"typescript","version":"5.0.0-dev.20230202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b06fee7bc69cd1bfa96c51b04059c54590dd6edf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230202.tgz","fileCount":107,"integrity":"sha512-uGAdYMTTn/t+7Gi8qRR5lMGQxa0bKByvbiEc5Dr4d/y4rSqKxO26bFu4SV1fUpzkZ91+O8Cnryj3+VOiR+Yuzw==","signatures":[{"sig":"MEUCIEwr2cjrecA58JCq068Egr3KQ2NbbhYNVniUJF19mYyRAiEAp1kmL5xYY1Gkk91H+u56H6bRVJn9IkY2oYNpimEXgQQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39097612,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj22IuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqyzRAAgz7j3IrEY9GA6I1+hH7b2aeX0m+oazk9QXLGnpQOHK9dMV8P\r\n83MoZc0tT9ebk0gJ2Oa9BhMPjBbRKvKPzw3GZkereYkGNJPpg/mi4wAdvmn4\r\nVwSxnpXQRQ6fFpQumkEyWABgbp6cBgfxCDffUDz1PlKJKrVdwEVzBBybTbeP\r\nvQ61xKIhmJghUMQvArwRM0JUTwOgLJ9IE0yrlEQUlAo3ml+yC1MRvs84bXZ+\r\nudznU8u7swLVMZrdBNxCgb+E5WtLOcpQbW+Rl3QdyH9JVAS3QLuldBJ7D3R5\r\nSfPcheriuT61LusSgBAdENxDm6UuLeARww79+oDNfM28xKq8erG6YFTkC3ZI\r\nKO0whPkcJ2krOQ2YCY8Gi7eOZR25qpDgeJk5jo1lYTIDcrlBhrRT9qAGMhw2\r\n3A+/H8qNR3JtMZf1mBuRqCsCi8t+TNW+yOSJZ0Dg221Eu/Hr616n4FI0BB9i\r\nntwfV08ouB1XRxI2QXvOEzpMA+KgyHbNilBt2Ol3htQfMo6LOTdKq9TlQuic\r\nPRhmleaQKYnCP/v3vlQ+FP5Du3q8fjIZlKyqe0+H02D7r+KgJFvmX7qrLCzp\r\neBJOMNrDCfNEuruNBzlENKuug+KOeAs3lQxKsR+ny+aRfgXWHGsuqVPo8cGv\r\n8Aiskn5LpZDQVK5mzKl07dhXsgYLJft8OxI=\r\n=WGjC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9ee33156f53214b1dcf3ab809e7a20016922c627","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230202_1675321902402_0.4958576796390928","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230203":{"name":"typescript","version":"5.0.0-dev.20230203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"87e51b2079ea170e5af5242754cd70bacff7ab73","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230203.tgz","fileCount":107,"integrity":"sha512-B+UiFUnk+joGpmluibAIauIFWHdmhisuC9GB3BZVNqvOYMPCtg/HokU1P5cxsw/07TesqdWkjAWQqW5kJrm2qA==","signatures":[{"sig":"MEQCIBQd1AW4Ek2i8rmJlkKAETS9t1pr7TrmogEM6MzWBJ1dAiBcpdWXVzYPSzy2cmjqcVk4h0awb7AOg7er9dEiLRqd1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39108956,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj3LTUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpYXQ/+Lprs3G75kgNaAbzF21J3ZXqbMTJNJbTZ4kv/8y9tRzXCVeHX\r\nvkorTYITjRDOpsZhvb9mIOzy1sbkyAtQDssWnwf2H/CNMJO7mVV4x6NsMwzL\r\nC83HI/C0aCM4hYV88JOm83V2cxT+h4SBUPejSbODll0pwWNbC2ZDY5UzhnZQ\r\nWUHR1cVd/NlRYIb1dgq+dy++y+dFfzixj52bvlssTzNQQJ0lDmYbUFRR15Z3\r\nMAUzH6d1q0kT9ZPjjBKB0XPMOP9P65anbvAJSXn2T/NpLuLhVsTaBu6oDMTI\r\noGiYwy4Mv6gPu5fwndjMOokBI/W8GQnX6RfncpkGViaaMgwFPT1M4qAYZaS3\r\ndeoINDiCNC3INK/gEX2VR0Peg3sbuZOd0Sh8TNTCkcdFnMTzB66G0hNZJ0bP\r\ncza/IU41TKAYhgkwNH4CpLkNStxrOoOFQnc7KVNH6ZGTGVvxZ18lylcdrkX0\r\nDAcPSfZv2yuBEgXzG7RY579Qn3U7RHGtD2X8V2cxiWkstO3I3VH8SxPwp7OP\r\n28tPwifYQBJ0TJHEjiacvGemiTH1gWgoO6cOErDzxT/VwLhEX6VHMqapLicu\r\nOnUY5MjqcoW+DhkgUuaX5NEsp1zVVXllsZQfIyV+6e5blKDlGQaftmlSIrJB\r\nmhjX24Uu8g5gxLjiR8z5QyhLgyr0vJOdhh8=\r\n=5l6j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"bbfb9ac14fda34eba34fcdd41f6dee3ea9e08563","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230203_1675408595018_0.6160297123362308","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230204":{"name":"typescript","version":"5.0.0-dev.20230204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ed40e18638c4d6e539f37361b0d49d39fe040650","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230204.tgz","fileCount":107,"integrity":"sha512-+7FKfJ6M6n0mveLqxFzi6z1ZJfqUX5QDJFBJqS0r1WP76v32AwGoZRBaYalyd7l8ph4k5qXoMmDCexrF/sVnyQ==","signatures":[{"sig":"MEYCIQDkgFPK+A8+5R4Kiw+N+ghRxMZcDkO+RMBPKVMmLV5b4wIhAM+uOoa0TYuPG4lHkObwby+m+O5wkrsyIDS0lmD1/Oh/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39108602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj3gVvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqV3g//VljNSngkUdXiaO5RfPfjwHoqdbAKvggWKfV7brNjFVBtDRtm\r\nADfXyoxqjR51xJCPw+9InQqc7YATwKDJC2BWDFQ+mvGXH8T7Px0YJvc4uSXJ\r\nPT7bsr52O6PEmvnZFQsv6jUuhEdpMQhUz5LmXpePGNGet6/rCZXKgCPwhqLk\r\nkLABxCSARMxqRWm7PHv0mk3V1NwzKvCyILK3d6yJIXdiGiTapMABzrSULzvd\r\n+iqSDVap9MWrEQEeoq8H0frlwuIzvxwiGwV0qCPzoba5KY/OTiq6GwEycWRS\r\nTTxRqkl5X8kDmHU9FpB8GM0+3OOEQ1dRahZj6lZArRr+GHOTZBBWfaXNjR42\r\nLQbJgTSKwXKqDDIpV19qbLDdq9Y75+IoYJbDbBnF6LRQ/KmJhtL12yDJxwLc\r\nhJRA1Rhcut6cwptBIlRWMLHWoyuXCugDIUXqttier62SHE2uSZz4rPeqh86X\r\n46IBdwESVaqYUvWHvLvgYhrYGhmxtUY6GdOCYh31ljCGBs2hN+qFo/VTdDuu\r\n7tpSDaI9xPFmEyjzwV4u0rE6KIUGgx8I+/+C3vhdl2kR3qr3gOuv8Y2oDE94\r\nkZ6lxhFC6CBO7s+6p1FsOZYvE4Qm2keCMmvDQK6NdRBJe343hYd3vNbtSfJy\r\nf1fsu6849mC6MdEwjJSHte8MU/1rQw4Q65w=\r\n=wIHY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"00eb22030f92a0acf15ec7af3a0881c829aa54b0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230204_1675494766736_0.06785155823049971","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230205":{"name":"typescript","version":"5.0.0-dev.20230205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c919d7e7e8e973509c225474b4576efbdfbb341","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230205.tgz","fileCount":107,"integrity":"sha512-2JheM588BM/CnAyWEw96WYKV1f0o+dBuh1iOgBdt7BmlYA2YkOe4SvzDWE/Zo3LULAh9TD9TLMtep7qC9LPJhQ==","signatures":[{"sig":"MEQCIDFGqma5ij7UTtBvj4xZbUq6P1D15RFwGujwFgGzENaaAiA1hRvsHwCjUKVZ4oHcISO8rcElkTyGqpqVXg32qKWofw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39108602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj31baACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoXSRAAhFDto57wlCwqr/8zaJvTgnw4A/d2mwqBGkzMgW8KwhEL8jMZ\r\n6XrGbRhLgu8b1rrsp5335pW5po6aJTCTDxVFFIC17wEQKKacBLu86jCXFNXy\r\n9deJL4/l6stzoses4zzcbZilnhN49rIzvJHHkD9ZGqoIqr7XNp0ln3n2W90a\r\n59SSTdxuoE3WRYkEHP1v1OUHPoQT9uIfsVe82RSxx+FUv0B46C5JFBspfb4V\r\nD7Ws9RsVwATgcI0pHCYiHfWhNpPfFHeIFfqqQVfrULLbbDRA70JyBRkTpHi6\r\nnKkFjVYOJVvYUPmul91Xj3J3LieY1gaJ7Iyob7fI0YneAbYucbVJf2i3fZR6\r\nqlof85cuL6zQgLpJR5j15UQqLz+bTZ9iyVUXTxwvkZyIs1vAX1MGjDb/Diqh\r\nfPFk00+aAeQSTWuDgHcVmhlsUxyK5wg/oVnCVEu3Mm6gwhvlzZjAZEpvh51W\r\nnDfqIaWgYPSjGbMUaY/becVqjeVmjeRKFq3sQbWqTlbMWh+D80bX+hIF+EL6\r\ncoLj/9KIY/h3qa3MAkQAR7Yhvl9W51kMNT5P7+VKu9lf97Vocu0pKlyvmet4\r\nBeyGIUPL05c1wLzFObrLo0PwErXSP+mSHWgz27ahzI1f4586HB4SpBR85vY8\r\nKAbXjQqE/AByH0Cqa5fkCc3QV2GV8GLXmUI=\r\n=Fb/M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1ed0a5ac4b49971e4698d5388f7760cbaa0615ac","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230205_1675581145709_0.694312357068559","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230206":{"name":"typescript","version":"5.0.0-dev.20230206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"04bb2d393eadfa32a9131270b26c2dd024643d91","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230206.tgz","fileCount":107,"integrity":"sha512-pEoZbri8HyvEk/DV1ivC2V5z/Fv5Pd/riw6llt3yfx+/JMMTmbDQraCCq2JQgxgvtGYQrU2861MnrPNjI3815A==","signatures":[{"sig":"MEYCIQDKBDPBalZhsGaYjthjunswaMxcHJSk5fNxT3uCdnHgBwIhAMjc9KNNEL0WPTXE3Jv7i5lGeTH/U0DHL18Yamupqm+R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39108602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4KguACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoBvRAAo6eOZbhlyyO8pOpRfN4hdZCcNiyQpsacCiz+mlJ6c/RZxbiM\r\nmbqY7o1MaN6g9v2SKIYmMKahXoFYM9+d98RFeOEIv5GWArvFEnDwY2jwfdzb\r\nkXF6SFfnxwOPeCfwIb31l3AZzFHJ69P7v9PpzlaoCEbStK92F5gYkms2o8SR\r\nDSMrIh6Ppr6vfG/IRc0VfKkErSVnUROR0iG2+WQA6y5pQuHtARPg/GvlBBus\r\nNsT5qu46HBwB2u+Iqi2/qSv5Zy8K3lJiaJmqyecS6MkGiWMlvcMGVDzvWE4Z\r\nv9/9rbIkorCWvtf8qVJuJlSh9sNgSG6rhaSD18PawVNJMIxVfpKq3cR997pz\r\ntoWSowWj57myfCDIIRqYOtAAOtrAP4jQ0y38/2Tn12X6jEE6CTtUkCxr9OVu\r\nyeuLy3beTGCkv99ilmQdtfSMKSjDhhm01o9085N3AhCdDqIXB899ZDHHaBD6\r\nBHMA1BaiVA+BZAfu4dPRx9uzGtLH2q+UzNmKcMaxXZddqJWORGNx8DW0KSPE\r\nM9CL/v1E2GgEFfAfEbplf5JuAt2Z4FjagOGQsGx9e0wUWVYwd52sdV+O1/Rz\r\nACRmFv2x4LiEnsnrCOipyRq3EKzunhNSzAf1ClykGi05MoqvrUMtp+cLH4Jk\r\n1GDH7U+HFe6QUeIyLvNA8VdewKdo+dNiXn0=\r\n=5WwI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1ed0a5ac4b49971e4698d5388f7760cbaa0615ac","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230206_1675667502496_0.15731574905003454","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230207":{"name":"typescript","version":"5.0.0-dev.20230207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0e5d65b29d23006e46e917c1ac9d7800c5c708c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230207.tgz","fileCount":107,"integrity":"sha512-MBas9Ly9cx5yODCQZFKjteVtRa8//VshqSThNpX8D3XxPQEG+yBhtizEUPwrc2kLx33xnr7qGABEifZeepuKwg==","signatures":[{"sig":"MEQCIGTw1Et//8kJoC4Gvg0EIKmISCycc/CY5H/Cj1LuIFpAAiAnjNojPMfnm10Ny/DIGiUGnIwExTDZLFMpj/WTHhpjTw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39098350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj4fnnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp21Q//UU9hA7VjXAF3LjPZgbd5jqHr1wcc0eLrJhIXAH6DM5A3p3SG\r\n39iAMyKvcj/JzkcvlOL0p8tkLKoJ4JFOKXCSSfmEMmqPaa6CCnMxv0axbz1T\r\n8CvBBQHcnCq0BDnZF03r0O1cIwWktGVFcSZ9GAz7M8eCJqCcP95ocp/QYhKQ\r\nq1M5iReYL3BeBS3FnZb8+MhoFX/vyb1pe3n2YnGU8ukPhqPrjkbFvbj4BOCA\r\niv0wG3bd4qWt4KLF0NZ7XfyQkdY4qddhRTCjFcpI6qaSNshiU+vxVK7/C0fr\r\nxKeT0EiFW2+JLJZwNoS2H9HAQXDsjrdkK/A1zOQnOM1qhmKzUIxLBwJG3/6q\r\ncwRd4tjb7Ycxq+jSugQAlg1i/sute10TxdHbQYsQEAo7cPSfL5PkCDA/Kbs4\r\nfQDk2Xgg0am+I+Mf1Y2HyyjXC5+G6tLUyiydWmBFAmXit3oG/OwiBxdT/8xn\r\niC87udI0h+uvTzMenGJyzooVVoxJ+gmKhNLXXY9F/Q6oEJpDXjMsUYN2PlHO\r\nxok6OT8KaylRD/NUWfNF5fV97tRHHjC5NNfgkZ7Zs+kP1rtyvJAkj2A74jQI\r\nlgLzDnn6s6XxTnPgYzF/JKPCFcrok9Iza2SE3xDyEx6FI2HucK6Ils3Du3rY\r\nnXUptvC1US7M3nRrXgTfPKKMGlT3NPLqcsQ=\r\n=U/el\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"a89f4168bdf26505da27c144aa4bb904c60fa00b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230207_1675753958759_0.33586763333728054","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230208":{"name":"typescript","version":"5.0.0-dev.20230208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7372f6af7180c0e6c876f9fc555209db33849b1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230208.tgz","fileCount":107,"integrity":"sha512-FkUy5kJ7XmLYxej9g9Lq4FMw3P6YjKuesa+1YoLvz2lHZuRuf91VxLsj9DWtknGCmjOVvyu+eefaeVknGTiI/Q==","signatures":[{"sig":"MEQCIHsIRlFacpLIJ1ghetB3dkKPDOtGOTOnblMU017POkn4AiB2q4NdLy24fIWr6ThjMzg75zDEwDU0OgoVvBA5ap0V9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39098350,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj40t5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrCng//Wrn8EgK6rT1GbJmE/Kvs5/T0SUux/fCj5kDpWwzNyp4D2GiT\r\n79MiHl5z2qIZGa0I9dr2YWIFx/DVOEcjg8gXWC6UD/E4P6Rq/0qyk97XmFpo\r\nPeIYLEnnXSfjXTSW01ZYbnz3cR8iHGRw4Ej30e2I8W9CrmhtZ5w4AHbJuAhN\r\n4JNz9GgD5rZIykF0w7XnxP5M13lN9gpeDpUwC0Pjrqr9TnYjZe51vzKrzKr9\r\nvYHUF2iyyzLDRe3hYKXIcfg69ext8y6VLpbOwHyMojNQMd2yJj26AIP9L5cq\r\n8L3Fc0gDdhyeJL/Bx/CmBwPh30ZCX2ToRf4cIsvjtmaAX10KYiwMBvwD/LCG\r\nytEHHXZmfh4DFSbk69ryP06Dw8p/bywTDRD3niVT1ia6G+99coHcvVmauPM3\r\nuf29U6OK19ZGJWnq2kyDH1nWVTzQ8cl/baV3vwxRrOJ2kS0e1odkj/lFK4UF\r\ndvLUEoVsI7Dc2wuM/GIGmNwSs9bBcgidWESK7GbKvjI9P4eiYX+/Ee16Pkkq\r\nQEbvAPaEx5OXU2NA7e+aESOaCG1CG2ViXq3/DUl8YV5yPyspQeGdZ0WLxVGB\r\nQKSjPxEYUHdySywfwm6f+MhwK3E2jsqN5WjZl05oEFtai3kVP8ouM8Ghqc7r\r\nY4MdV1kRUTbeAb7IDaT7CvBrcbR0ZzRr+7w=\r\n=v5ZW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"963f9130149de997c331b2280480777dbef40b6e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230208_1675840376674_0.5128978147059646","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230209":{"name":"typescript","version":"5.0.0-dev.20230209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d7c763483e62f745f0bfa1610ffab76fbdce83ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230209.tgz","fileCount":107,"integrity":"sha512-EKEs7zC40JV4BTgxULx8oDWSya4r2FeqSVpwuK7ZRu4OBErBo8n59wBAR6r+NBbkxG8JzxMOE2+fazbu/nLi9A==","signatures":[{"sig":"MEUCIQDDVd/qPjSwu4PQll1xcLZn7qurXJ/Av/BDROLuLtTjJQIgYlU6sYqIVOhxiTm/3mfPUyvOtGCRkyCddqsQP32+obA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39099178,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5J2yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpqIQ/+MRv4I2+sGzuRakGh9F+DfmOui9Zi3iepJe56c1g9kWBncqfF\r\nz2oY6vQwBEq0wvR9WCL4tUz5LsJIMhHnNHqiQY14BD5m3UKBl0/wzzAOd36P\r\n+RTCexffQmQM/+UvIBIoPhkLBSaIJUjOpBCH7fKNVsTzv+JZ8HGZytZtpdVU\r\n3mbMqg+2/d/Wyc4nXvt6CSXzsm6RAqCT/96x4hh3b41CNf1lNvoCCNPiaur4\r\n20CBO0Ul02cgXtSR1ZUFtv39aLODvsMnuLdF5Fl2J56eJ0aI64vRviDpkbPu\r\nfib30S9Zs1Hgp3jhSTZAwUCaeNNsz/gV/1IRLj/KDTAX7m489cy/ncP0l1x9\r\ngAVoEcox5JvvQXSVy56VaCd4kuJeFctkhQkIRuLMa0NJpBl8dIyQpJaT+Lf3\r\nr9HaLRlNalaicGdTmkedfbXGWvbQpJrCvkSm8XtoW+pbSMeq9lw5Oso//Qgn\r\nV3acLKn+VNzxM2TnpGywPl2U4RB8aiGpW7oi26lLyUUGSODtLvWI5bS9CyFX\r\npragyUNNPZnI5CyTdnvOS0s506VJ38lfdk/u7OUikvrXSfobTHlA7v1j7+bn\r\nFW+vL9WLXd8BCh1epTuZuAUo+EctpV2HHmphgFy/ROnyBgG+aV8FVN89Ls0u\r\nYKUAe25jPcsHviBpxSTubizL5TY1/e8JTMQ=\r\n=saxb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1c822c42a4d527c2f97a27cf1d5cfe2e5558e280","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230209_1675926962519_0.3432558071054601","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230210":{"name":"typescript","version":"5.0.0-dev.20230210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"da79945a825d79c391c3fb8c9d619cd14b92312e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230210.tgz","fileCount":107,"integrity":"sha512-FjXPw8PFeIuT1cxouvP4LRu8J1G+FsWVEGwlJ9GcVywRNDfD3Hh6flQFUympS+3QnAIiG/+CHs9ZS2EQIT733g==","signatures":[{"sig":"MEYCIQCh9d9hdYfkWWRoQWYeicVZavWFahm0ioOQSdTm/2pHvQIhAJXHuYxGCgpvwy+TH1Wn6BE4jQ9Sgewy0XgWPafHqo1s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39137330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5e4/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZFA//YSARTFEZJ/mxA04HZjMDPPn5T3Q/okyBVGYaZXm4qsLp2kXs\r\nksXPHhnLMKM7em49g8qlP30KaJtlh5XAL+ddrMbPRoQJp4kFYdUv8ohpCgFz\r\nLVRU4X2KyMRVGDWorw22o4wGrx74tV/DdHW1ef1uRCfNDjbbrDm1vxHiE6nb\r\nyvNteAuJSFZzIUTgqUhf1zWvC0lcAgbYxjaK0WsgvvDSDus4OobDP/WXs2Qa\r\nowBBMgFld3xknXazjCTZhD4kwrwIo/rhwNT1x6UjxzSB8RWzjEWyRiLs/0/x\r\nVHkFlr6gKone1x6H+hJFbrRHMQ2RwCrDLmjVWs3psoviRfJfUU7JA31oA+TY\r\niZhHVKTqzlpRo76PfvS4JdHcagf0h7VHHEDs/jd7IPneEvHzstA8C0PDsjrp\r\nGB7PhjPLSqrZQW2/ASD9+jOgazREjDO036ZT/6x4Q02uSbQ5CVnE261IUFn6\r\n6H2+loMeuLgs9ifLi1aEAc3xKSE3UegVHV+duVElwuiR7k+puUbGYFutK7cZ\r\nnvDjnKzT+tn79o+JERlWQPpIKwO4s091mGTzLFyfL3lr6f0hpgVhZPykon3+\r\nUq2twI93eYZC3ggSfADrLlCF13vyCtyQi/py+Op5CF8L3HXaBvp8xqwPKtQC\r\nERKBo1Z9cWxwNGnyd9T6GNi7kxeqn5fOK+Q=\r\n=oUJr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"1c9ce4fc2e8ab12c07b0d8d87e4b0e5f16d86203","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230210_1676013119261_0.0961781234622292","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230211":{"name":"typescript","version":"5.0.0-dev.20230211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e9d92afe1e17a5b9dcd6bf768f3e5618fe1cc5d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230211.tgz","fileCount":107,"integrity":"sha512-lktTzLNrF3I6Jf2Z/1svXE8WsgROh2SOMXZMxLbvYOUMImkMeEMZs3As39XvRTkxyoaW5PZIDEPWlSRlPttOBw==","signatures":[{"sig":"MEYCIQDiE7bbSB+QPKz7Mq7Hxl5CoHOX4HfLlsUa4XgNa/EysQIhAKeQvwTCjuhhS12hJWYQNLnJQ0IM0BXTQ3aJbGP9+WVV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39140247,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj5z/wACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3/A/+P9PfngBpYT0+lZQfq/Mz4XQ9d6bf0FedY6luimsCvlSRSRkc\r\n8ovKJoLobE3Bly6+q9DXYprKeC/PCp+Ix1OT5C3cX2awrqo6p3CyhNzM9eaO\r\nwo7s04jaxxm7xyxsa2L9rNFE4q/9WBJ1j8d4DO0IpP4L3fb6w467TMTnwFN4\r\ntrI3UN4hpVUYwwwI2mLnKK5rWNkPScBQTWLmpgV+Bo1BTuvegPOzQVRakt2R\r\nEmASDiljVf/E+NxCL8r6u/K7AKHpNUejjaRqyHV8WhF2Bx9LUBdBPZF0yieF\r\nZL3bxx8U2yTeC12bSVENzo+bZnOAeyV8TpREFp2yZwNxS/P/rZC1sKbRmsZN\r\nLdZjFoPoiJ0aREicw99DSa4RlaliMyy7nSmUNAWpwm0+A+Q2ZkfYY5icVqui\r\nZ3h0HlaiVeRyDGhYnIri74xKGLeUYG57MmEox6U7/TN2RsqNUZukyE/mKOtf\r\n+yoIlI0WRmIb72gOdXhxqOSOLMo7BOqhTuKWZA87gLxOF3ftPAY3Z7Ugu1rP\r\n9UTNGHEwtPaJbz4t14X8udB/OchWIEE+hS+8gTnQkc1nKCbRYmhBRH0hBmgr\r\nKDtVPJnXjXivTHz86oay2zS8Cf+958IT6abpJC7HWIUdoXOUmRLFkGwtNmQO\r\npgzhZYnfWm+B8ImMReJWsxkzCaO2wEFXgOY=\r\n=UrqD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ed15865eb065006da26a233d07c7899103b67c08","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230211_1676099568455_0.03822522213319024","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230212":{"name":"typescript","version":"5.0.0-dev.20230212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230212","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2e0f1230c1ba9e03bd59544e9283fb865ad7ab3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230212.tgz","fileCount":107,"integrity":"sha512-efEcegARgRwbXNd6AqZXsitNHVZMEGFxiYFi/OBbWvoI0d/ynmUfSbkBYRZ7L5iSFEbSwIt/Git9go43vefUCQ==","signatures":[{"sig":"MEQCIDQCbhXHf4g6ADTdWogqC/vx/BE7oUR78maTqszz5ZYqAiAum/iSNDrhRfOm+2cjk63LtpH529sR5MedlRvZ5Wb0OQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39140247,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6JEeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrvcRAAkDqfQ7nsAX03IAEDwIffDT/EqLqIMD3Nmd2qM8drWlUBwi0v\r\nWcfVVFl3uHh+rtnhjSb700d3JCNPQ29TiU/k6lXHjMfoHMgTi87uOr59GP80\r\nQ+qkO880EkDg3UbcyZSG4l5suGVbOJG2XvfFlldHOyCvpqQnDIbBDTmYNVhC\r\n6+VNVs4J+Xkl+eh5CUv9urpwu5ZFXD4IWqbgCgZIlMQ9QChuxWI6fDvI1hiz\r\nqZwM4lTDEod8djJ5HFLS+01trRyIM42lO9Ly7BGwRxl0zeQsj/quAa+ZlOx6\r\ntGmYgXvbblxtbodSrls+mDoOmutuOqtXaaDe/hQKAHNQ8hl0lEVoWwbzIcKq\r\n5Qmlu4CfZWAAod/Oj/5qT87NC8bdlcgXOU5BBQtSJIqQKhf7Q0IP9P5nBX5E\r\nQvowxtnN+TGBfMgKbONoFrw0ReoMMzdfF1V4g2sFho31JIFNRR2GX2PyERAl\r\nRCabdDpV+Q+cZmovOPT2G3q1WmNXnhxzc6zGkOS59Q32sNmL4W2/jUlln20m\r\nWqeI5rfu+28+FTXApCdDYXCkjrRHHq1KXuxy+DFn3oLT6TYJQZ6egZGAcEG7\r\nyS9XwfxtDgGRpJZQ2JRMgImEKZcVEGkb9JUe8FbGp0pcAKo/lx6FNT4gOP5l\r\ntgqOQiJ+2mqS82bfVOAJTLWluW91InnDu5w=\r\n=WvX7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ed15865eb065006da26a233d07c7899103b67c08","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230212_1676185886165_0.4505605950666991","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230213":{"name":"typescript","version":"5.0.0-dev.20230213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230213","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ada5ebeb16c671029699a2a82fb42484a6ab51ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230213.tgz","fileCount":107,"integrity":"sha512-6winpoAguZ2b0juVOseKRELa6eIx8st5j42fHikEhzBb2NcuG7tSGMAjIo748WNXVija2L8T5D7vyaDGYftaDQ==","signatures":[{"sig":"MEUCIQCNnY9g+/QiAmeuH/sbffeLySYFyPTuz5nRSPvF4U1d7AIgDM20mC1fNrssuoPZMTzGJunRq0ZzeLs8du3KHTTkxgo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39140247,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6eK7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4WA//XNzETILD+XxBmql+YvG3rvTS1Ll90q9ue3HGkGC7TYVandTt\r\n4YI03ZK87fqigo8XCfUwdTLaeICafcD5gIM5+p585XjlnLJzP7dsFs/KndSb\r\n+GkauXQeba8d6NAYr5JbbuNrVH841hquIYD0GBfdpayxPCFx+OQtyLUCbNX9\r\nK/sbnl/FEI/nyfzdNO3kLUjAtijqeQQUavpYhZiQyok+7REccr4+T6/D9FMK\r\nUBbcRS9WZueBA/vhHaH3RhHAqlk4jBxUA4w8td8hKAPTaVASX03u89QD8cD+\r\nHF+Gla63zjfJLsSged9v8/qbVaZrYIkhoM5dMCf8oBF41Z5DZyoJXH5yaNia\r\nQVnLUZnqcBiY6jJpnlLY63fpnOKjCpSq2zgeiaK2CJvlE3wxYCBftyJsuNpA\r\npFvyop8TqrL8fMGhl2oBB/hzMKHpiX+KGJnPYyS8MylLB/CUyy/w+bAyjRqM\r\n/t1NmJCJbAAN3/19Pz8xCsfhyGyy0shfAiFC28kf999j2ESIx5S3yF8FoiW3\r\nNYtms31y/qrAZCuygXyAIqIbe/oe7hIudqkdYzsvP6k58Fg2hExv+BVxG9eB\r\nAINCZz3lcjZro2WeKK2tM31O0DB7wSDmf+fGPwzKLYilcX9BF5qPRRPJRNNh\r\nf90TMv24HJ0qEBq5pPVHif1jr9zCWgZRqSE=\r\n=7Td4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"098e18ebc1d31bb0523c735355e815817091116a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230213_1676272315589_0.3509352666703811","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230214":{"name":"typescript","version":"5.0.0-dev.20230214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230214","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aacb93d36e8fd3d8a25af035f046310011abd237","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230214.tgz","fileCount":107,"integrity":"sha512-CpXBmHZVBTjAslhkSqAaiR4zZgr5G46QvfKB51L4+alGm5F2Jqbdhy6+cIFzU3AiN1D/iEmA88E19N0/e5bttQ==","signatures":[{"sig":"MEUCIQDJ6WZxa4bX2tc78OQA1bNuw80TAd1KcsnkWJqsAELsIwIgcp6GPEqPClEEAkW8fLdJgTZspeHRdDyxFmdyasa+ob8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39144087,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6zQ/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrO9g//SH9Idt6GeyWtsKjUdiNQe2qe3SMGdkCpIbWPzw6TQX4MT0fl\r\nIBJIQEPzpzMe9XsLXLn341iMwKb2ySkbBeHixDeQcQSFZV3lfmxJ03tyG5v/\r\n7NOMOTBOXjVhVbh9RRC7cgFtvwKiVHH5LlF7pCR9kE6MH/5exiwhiNiwH3tk\r\nwUFxRnCV7qDtwA3y4IY3x3IHtA0bYR81LIgFRtfbTTM8LHbGEIHa5hf1SvP8\r\nulPqPHS9FkLLTOAvQJz4qszdImP+vDYIvjxo/e7F5AS5Danmh6VP6WqYIiza\r\nWt9nvrkwmW0DbXop4uWZ1l5oDQofRdb+vUm+rTJrtqOhokJnydCQNbXX7cOx\r\nO/5A8eBUGBr8Iu1teM0eHRnsWF1WsGGJPzbYDkBBtcMfIrnx51TVxJDHuNcE\r\ntGvBfxhqam/HjkcRrGa8hGZIcjh0abm27GSeMVEAeqoWHscQ0kBmA45ffGJL\r\nxS7KuTeEbBtryTbv4jTQYEtop4cV3pQU44xVTA1jDWfO5GCH4izHfv5gxqP+\r\no4bjuw6bNVC9Z/y1RTf/XRRB6glgrNlY1cQNBaiqNIOY3yN5rV8ks+g69AMd\r\niW4EG/tC6ZhF1tGGFCjDjPjTJ1b5uVRSGTp2Usc9ae+VcvxiUFVbKnwsBZtp\r\nSGLUod7AVpQ5O2m2lo9BiBlYCl0XI2blVr4=\r\n=w44f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"9c40be1b4210160d60fbad6f71ba652e24495796","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230214_1676358718772_0.940224848736797","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230215":{"name":"typescript","version":"5.0.0-dev.20230215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dd07b5d766e625052d92cdcc50703e33ecfdcd53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230215.tgz","fileCount":107,"integrity":"sha512-rbuBEuyaLltNQkRsBCxysSHGGEaizuGaVEMO+8bBmTXQRSzITTl1WOg2UFXr9p0pwz8l0KJtOem8MggaGz1/XA==","signatures":[{"sig":"MEYCIQCvmLlG1+/KmzDGTcj3pdJWtP5kDBGIfNozthjDvA+SoQIhAL/KdamYw0+SObTGZi/gniWVmuwOgJSZ7x2bPzaqZd4q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39152869,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7IZPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/Eg/+J/APJOJwKPntKIneE5VOQkfoONStasYaecHvVPTAHhz/MpK4\r\noXslHJfnTt8QaAk2N7P56ojvDNlGJ/H0qzBeRIjIHD/hoz/vQOdQLvRBhHOX\r\nQTu+wdTckkAR0dXdDo2Xj6tS0lb/nID5xAepXaN4LepzD6P8aCBM6q3nukGf\r\ntKJI7deGUnRO+o+mDzjk/SjxQrdNF4n6hsoKZl2fqVCGP7ztrdBBggaEIQUv\r\nWf2xFzoOkxdKoImJDbox6Vhmj0QOXAAc8ZNCfovwwyN620lrs72DSA9CPaEf\r\n2/ajtahffwVDTs/7Yj0VDaeF8g1XulZ+1LNn6WlTOL2QRFQCdK3B5O5nALq3\r\nbo7K+sC6FrrUNH2pFu+PAJVz/pY8d4dq9LB9mPMXlRull1Qc7JXJPu9laprZ\r\nISYtp2TXBiW5zJhTi5woIuVSYpBdCrxoZWUXUTdDhZs6gJuaPlg8EY+qdNTB\r\ngksLSBxbWmpHmwMj06TBlMzMw/vdDw5MJXnPyzWkb1axaUKpu0AwultaqPW9\r\n+0EgNo+nwDcZJ3mSrQPmGJguM52ArlLryrZvR6Y1mi8WWXu0+fZR3hXxIgNq\r\nkQa7NFtpmjF3xl1TNR7i3iNptDyVETRgmOqYxhzBqxwaOTO7U9JOLAfa2obq\r\nZlDC1tTIzEQ7ymrVXQdfSXsq+z71rZinFe4=\r\n=qrU/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d8e81bbf6e6614bab7a0c5fba1e88a173943d22d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230215_1676445263471_0.9503690682283352","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230216":{"name":"typescript","version":"5.0.0-dev.20230216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b5d31b45fc685a1678eadafa136b273161de9d4c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230216.tgz","fileCount":107,"integrity":"sha512-yeZZGWiNc5pbGg4J/bgN7vq2Lrs4YTNzhG5dv8owIe1PyYX4tMDla8NnXipy9h4Cmw6+DQA8FG9XZbymgmzSbA==","signatures":[{"sig":"MEUCIQCELR0+5B6w3j1kdKD7Zjg3EInx5L98K+qltHU25ho9UAIgHvR3okN++0h3LRHJkd5IZ+TFg2x4vNb9Gq0OqDKll7E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39152547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7dd3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpi7g/+KKWKsUtfsH70f+NM/ZdxmPKAP05jVImdTngTDP7NQtH1NZrv\r\noRlmD4pqoaRvziQ1ClH/xo6LPTh71NAjCROdMUhPAVQB76rL1xSg/jpcNh3p\r\nzfs8D4hBcn7dqJ84jBMt57dTAR3uME+1e7MMyJhpa0JbLc7D/rD4tH9FzlGs\r\nO41PbriXXascffh9qzL5sTpCgAteq1iu26/7wTd5I1C/XumK6oe2xHsOQ4mw\r\nZ6Jkx9wM4YyiSIkjds0gxRfE+bMQuaUDs3FGnewfg9aWgYkGjorsklahaW89\r\nkXM5hIwG7HTy/SPNSf4OVbO1YRdj/IJhnuaUHQfC/5ZURC+3Sg+jn9P2kc8f\r\nrBjkIDOouUV10HeAsJCv30/6RTsxt5pZQnr0P0Ov/RTe3cdDpA/LsE9XXcTC\r\nqWgWkkCNbHtXDEW30gIe+Jgn5NOxjZOwOBEBxyoABOV27p0KMR7TznsWEwoG\r\n4ySbwqO/595JPsriw/kW+BT4FDDdVcc+dezBZU3uFFYa9Z1+3O8ghSg+cCGu\r\ncvsCG8fgNY1gzWfI6rAOyCrlQiBArrUq46SDEWSilL4ER3V6LU0NaIBiTbDY\r\nP9N0W5fWR1J6wWYExUyRLFKbNuxWialZoO7vnpZ3fBbGOooNAZRLDs6lz4fb\r\nrATTcqiQXKZY/6EwzR93GX06yXXegeoBZKk=\r\n=tthL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"588dd82afe1dd7049f0915c9c45e6f4557bcbdc3","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230216_1676531575051_0.08231486740726912","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230217":{"name":"typescript","version":"5.0.0-dev.20230217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230217","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f1d377949a9c31f98601c227cc293c9d6090613","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230217.tgz","fileCount":107,"integrity":"sha512-F2xLgv5OjVcSJ5vYATLrSS4NgrzbMV9Kxpk5AIB0chl1UMXI7iywCgNa+wGH81OrtNhoLX+iyynL4xn8B5bwvQ==","signatures":[{"sig":"MEQCIGzddUopeU302A7WN4fCnT/ay6+LcW99hV8O1aER2pS8AiBGPBgjsMBJV0wblSeprLV7sQ1NGxxP6csfuvzuBoTxTg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39170220,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj7yj3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrIrQ//YJcrOND8aflKJBjGPljcx/zlI4Y5SwLELiQ9w6pAgbtLMWNn\r\nPsFSS0fVh0f2u4kC9+JWcZbn04mo5p4I4IZ/9j9m7e4hrVmCjg6uh3IXb2br\r\nTtgt5BjAiehDgLUsm+60cFSjSKth36waVCwB88bhbVpA0AjXumhrKd6l/cu0\r\ns60Iy7fOzgK7vD8Eb6s2hRHqOrruLFvCNuCmjduX05sO1Sk9O9YonhPGFJ5m\r\nVwPmLqZEIDSC+DkLWDAAxIniokesgRQe4do3Sgl6KEiwv+V6704QRgovlejY\r\nQ6hq873PtL5irRazPal2ZLfyTv5aU3lu4Sn+KpUzvBNEEwOM3R1M3SFVw+Zq\r\nFyckg3rw1zO8yxfWJlsCRFmyNh15/AcLPtKUdYJzwhFw8xBLsLi7OghV+L04\r\nCeO2mWxxWfcgEKUXqZFsz8zfFS/a+bVJ8hBoobMeFfc4ApqNoupkHBrrKo8V\r\nCnx5sZe/wbTMNVb+7BgGYKL0nZ3cqNnH5Af3XIBFRJauSL0LnABFtaKJ0fnC\r\nJVEF1IHCPWz1CnRnBJMd3vz2wmVCY53U3yqZJcoalI4iy/S8IglcNEU69WWC\r\nIFBcOqbF0I1eAVxo0caKR8HBDqnsm4cFNCruOxv8qYSNHCTVEdHjlBz5qV7n\r\nKDk2W3wIDvaTCF1NfRIai6yNIO1hqRPL1VA=\r\n=Kh4Q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ddfec78f55bfedd690708c429f803346555e31c4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"16.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230217_1676617975026_0.45884387753027234","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230218":{"name":"typescript","version":"5.0.0-dev.20230218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aec5613468b3ed38cfff25700ab7a2bf38cb42fb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230218.tgz","fileCount":107,"integrity":"sha512-SCUCUbzAQ9Nvl+V4qBLh1z6cWYDt6uM8gywhmrQrYdpbrZss3L8MBhZy1CfZFe6K1ApsbW0cBT8HVoTC0/WkEg==","signatures":[{"sig":"MEYCIQDaT1SODwyWewWCh6IecDGr20PPqJeX6MSqeKzpyIiGOQIhAN4hlfeQh341yj6qL80MgeV8xE8/m0Bz84dG5pGA2dIW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39183753,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj8HsHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtGA//aKZYaTR11LtklgxIe5aZXN8dJRWpGhPHMOhrnXwCpXQpPqEk\r\nPKavv2g8aRE1fQK67cp1LAfql+7SdbNJkqAsSr++ogXDkY6uqxAgZbqcORUR\r\n1ch0NYtOyl1NOETDIcuXe2l/vDCaEHkvhOIYKzFfhQMxTzPDbeSLtwgqe9zV\r\n9EWjPOs0YLo4xyZtdT7Z27FxX6jY3COXxf2x+Ptfdbl+GxvFKnc3GcwpNet9\r\nW8urU1OhX+PoCc3JfiGI+34OXJHlpDp5m9JoI/jjSfV9JtVOQGH43sfKvIo5\r\nCXtJNCbhYQTEVuvo2ATuLiVeHiGj4CAvF9npASV6/uDyWrrkJ7zwnxcbmzx/\r\nqkNFNNSiBMiH798gclyIdVfkjxWea9AK5OIKqb22VsdKVP2LdRCwUud7EUTN\r\njO1d9fd+U7WlJNNlGHCbjJRCBZCQm/pebNdDswB0g4C0YEyR7JwrCW0CxAdF\r\njoOASeq5/0oSljCNaIOcahYXdzU47rPjIxNP1MNETpcDjnmML9+f2Ug9vJ8o\r\nNp0DnU6PWlWRAuYju6V011LHNJxmmnbn94WY+6q6feE13ihZZ73mTwx0+TVL\r\nIacKwd5MjBWS4dq81qnjEPkSPhGrf+Qt/7BXLo7/HDYW67ZkdEY01EMbwPdY\r\nU3wviX0vbA+3DUVPvRQ3Vg7RtmjZbWApCCU=\r\n=p/D3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d87d0adcd30ac285393bf3bfbbb4d94d50c4f3c9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230218_1676704518446_0.8658003550810269","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230219":{"name":"typescript","version":"5.0.0-dev.20230219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"981462cd32475f552945c5bf06101e966e350d6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230219.tgz","fileCount":107,"integrity":"sha512-CjlwGu0BGvavGAPs7/2sng1K0EYubaZc3irzGboNBs83OI2+ij4QixjS8+nXcoR4H3uumDnyd7Vo/LoIgdSa7Q==","signatures":[{"sig":"MEYCIQDqMWZs3DNKBs3kiXw/MfGUGec2BQynPEAt3nuiVE1GyQIhANNXuhllBkeul9x3KHqe80G67i5UVPsiV1hMRV9+nsDj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39186973,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj8czRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDWg/7BNroTyL5/8gvxLxrTrwBzVfk2uJNxjO9rKEs3tZaUI0PkOc/\r\nLy+XP+Hr5qJNYxrwonA6qRQPguxBCq+/2PKDw/2rDDt3GN4so2jZqRuT6oyk\r\nwYZVjVEv9Fpu0Mq6jmYfkTkX3VT7w1tBzYDDL6hyLflmQ5tqoKWNr46YRPQy\r\nVXzThJ7IqAyx2Zkv+iXtBi5+1IyXeSUmUJ7VccnZQIMFAwyF1Fv78kP1KqYb\r\ntsuXC+rDGX7Fn8kcIFUnvMaTBF+hAb+KFuj9qymJD/DmAhaaV2BMONjEP2Tb\r\nq6TUY551W/6qyu9/u0+2vU9qt4vUIcwKoniQ8ap4vvTefvXCedC2/c82SPBd\r\nzaYbJAith2CUDF3pQQp3Zf7X3IXuaA9541KvGlaNQorWnkkwiJud2RuyJldY\r\nqo2bjBGN9Kfx2i1T6fI5/oRLehdJR9nWosuTWJAtBelkHaZ0DEDweXrkivEQ\r\ne6V/n3ZEkL9fjAk3NNGHxGgsvzNj4KBOk85Apv/jK9tGQslwrOzbX8tTsmm+\r\nyBQfLS7Rv1sDMlBDggLVaUUCIqCrHMNVKtWvabAjsREKpPe8LJa6tAg/XZJP\r\nnusF8fBJDS2GHMcwGcX2iHnkDlX9VC1ji9KJzZmJh2xx/au4xSFzvUa/OuWk\r\nNZS4JQMI2Vv0c0Spt4AQ4OjvE9FcQFzKgr8=\r\n=pBZQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"5c92af1dccda6495e35ca4b6ab4eafb1c0cdbf28","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230219_1676790993212_0.6150934880198156","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230220":{"name":"typescript","version":"5.0.0-dev.20230220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"212b1d36ae6bc60454e58889e388005543c4214a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230220.tgz","fileCount":107,"integrity":"sha512-Mz8+qrRqafbke4GCbwkWfbQ7oVUOvySQyt6kv0qoxl1fGKsIMqG/WB+w3zrjeUM9koD8/Tybpi9AGmlz665tEA==","signatures":[{"sig":"MEUCIHLdZoK0U15Ri5MRoXor6VgpAFFuhF43rT3fZrJ42Ua8AiEAllIxj6b2WbhILj+JTc8lN4Bcx8ejvTEs0Th14n/Dv/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39186973,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj8x0fACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpxEg/+OUxyNcfLVWh3mOsFlxq7Qcwthm2bttEhCtM8MEEH08sX+TpI\r\nR1pBmVYGCMCF9zLAQmSao2It56DqrZ0CJeVAkA0b8ql6Hsec8oxLO0H09SxD\r\nNBS6LZiJsrijHIiof3JCUlRFB3tYcxsdh8jNJyhI1OJUz0kQXX5vj1T7t3Ea\r\n9aOT+5gKqDhOEBpaWMgAMpSJuOCvU4WTz2Da6Egf4umZUcdIXzO/CggAQq2o\r\n4SbkOHP2nRIHMbGlN2deOSa+07Sq+DsYN1EQyosPT7sexWg7bojQuV7/d6mR\r\nbk1m2M/WRjJPgd0u2ZHs6hVwQNYh9IhzQ4KmP6C/D/KF/tW9qksa3p2RqKef\r\nWiwHf0OeMFo6zFD3UkUzng74NGQlaalar9yTJWJbB+goilbjIb3AyDef4FSz\r\nJoRUKJPypA0XjPlcyBAArcBiyIAzNF3nkebjL1wZAFmcV/n+P12ck6/zsTZg\r\nd2eVz0GAXgzhLECijzNZ61ltGttRIAEArPOcT4uIgmtrW9aTEZ2i2eo2kwJY\r\nAK9nKUS3FlSbodEkyXTowxk+Xar43y3x8sS3zfT/NgWyrqRTxqOBNwJAElWd\r\nKjQGCCq9AOYjEyl//ov41I+d/P1U3BH/Ev0iuIp//NT4E5sLE72SIYHADfYL\r\nbpief71KMZpA6syTWQJuSZoiKwmRskW4T1c=\r\n=IlbN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"c6fb2e10dcdf4839924a4288dae1cfd93b3c1c57","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230220_1676877087570_0.10928934330125784","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230221":{"name":"typescript","version":"5.0.0-dev.20230221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d41de7b7cb344825c2af128de1e3999e0a9ddd20","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230221.tgz","fileCount":107,"integrity":"sha512-TTJYk85WjNwNT5MLuV/ILfcU155hzv3416BA3H/TF1HUkErOrXtPTBdub64IeZtAe+QzuJQXjno791ckQHZDEg==","signatures":[{"sig":"MEQCIFa3CrvH9pDAHJUU4yfNs8MpNyNWb2er6d+M59Byc9WpAiAUx3xz3d21I0/LGIuMBkbr3gMmakw3fQZ4Xv2LpAiGXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39186973,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9G6pACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo+mxAAiAEc72267OrL+Q/A8ui9YSGyqo2P78l4x6OnwisznmqtEsZE\r\nO36r9+xDw5h2rZtDiOXkktV0mLWX4uhA1SzDHEA8XZAqik7ft2OL7imExQKF\r\nu6Kh+dnDqiX3ux8rf7UPNZZ4UN+23euOEb8bY34SbOz08/7C/uGleqQarj6Y\r\nValyH+1N1xS+15AWIvyRWNPjqVkfF7KdHrw6UXnHPGSddz8hgc+lnjVLrljm\r\nChIPH/fUcu5pJaZP8gsOzXr8Ibxctooqlna5fMioq9Gcvhd1W5XsbEeLGwU7\r\nz6WDKRUmOwUBhIMfPiqTrnjcBnAQDLqm3CQKZb+ddfGzGNeWDmtmLqSgMwMq\r\ndHPU8Cx+nnKehx8Pg8COdzFLvC2ICrWCX8gGVyXid02WXLFAH8CAgsPwOyfJ\r\nL4zXR4PIdoKifQLHsk0U3LLE6SY6t8/5eVw4LlAH52cbWkMVttFfCLv199DH\r\naEOio5j6QjMYwgf3CiegK5pm0I9v9SLePYwDL2MsbO80xFkSJTDcjUkG4M1e\r\nAK+S7cUd6cWBfH+DHUp1EGbIhQZRO9sTnyiXuksh0k7gOAqGGJXaPwcKfleZ\r\n79bot1GgX9H7JH7qiRmlIJRvgs32A7L1wirPkE0lo0/1/x+Kj4jpApvfhuOF\r\nUDmIzI7s6xSXkf+pea9DCnNz/bQ/KkezXUk=\r\n=4DJu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f0d1eee9b194d1fc36b64dee5eecc4e4f5d6ac9b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230221_1676963497446_0.7877333233056971","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230222":{"name":"typescript","version":"5.0.0-dev.20230222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"58809d36b989d244ef037ae5f869f0fc233a952c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230222.tgz","fileCount":107,"integrity":"sha512-OCNanAIcGf3Uy1aBvLbPNe524MnDEZChefbzgo9gvEZPYNG7Zma1C6dXuOBSCapLgbLHksOTyoPwixKTbDkZPQ==","signatures":[{"sig":"MEUCIQC7qYpF5Qbd0FvMw1f3skI6rbL6Uc7XJT6l5Lp6xYL5aAIgZdxMmf4p7rFz+8fiIPaBXqEMgJah2N/GQ1gKkcisk5Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39184123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9cC/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpWEQ//XXZMm5qOvpP5n23zHSnArImSUhMEnSltW8PAxfeEupi92Xc4\r\nuuw8FNuiYUmenZxcYN+hM+LMf9KapE2LEF9cxbiERNL2da6hVDxeEdL3bx00\r\nWu9iEjViQ+mxmE059nyFcXnQh7bU1/CwpF18BDLiAMKhiZNSWTYtV5ExaTHZ\r\nRyZpJxVI30bzhzQWzzIaf2Mtw/MfFQTNlLPCzE0Qc7t3k/t/qyHsF9XIHaMg\r\nW1TJn4nEq7AF/JHl8NF5aRn6dOfg8qKGZxJ0YlqysRKaHHq4e1ZGbH4U2AdK\r\nHLBbAWS94CaIbgAOTIW23CqUh5E1oVa7tE7hhGaxJ+bkET10s+SttSRAAaJv\r\nNcf24jgyRLmGk2r6+6+DZXdPI68NUte8XRyzvD2AP6/JyvDRiSZlhC9xmNMH\r\nsMoTLZC+TQ5ZKf0PYO4y0OBBFe/cayZtViR66+sqORi9HrUbDIr7neQV0DYn\r\njsMPAraiBGpBAG7lJuQoQdpKDVrgq48IA7GFBtAP72Jt1PLHaGnEway5ccBb\r\nsU09G8MjedZcs0A+nFtWzxAGry0ypOau7+gIYaeHafLPyMSyxoMLosNQwOvy\r\nDTGfIEOJVmjnsG3D3h5qx3+KOfLOQhClB9ADLNazG6uBeY82ZUq4awF5HJav\r\nrvchjW3/C9tRQg8eSjd8JXOjH6j16mASNxg=\r\n=TtzD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"ef79b42b57bdd2ef4924331f701d5376f79405e8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230222_1677050046718_0.6608361989352192","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230223":{"name":"typescript","version":"5.0.0-dev.20230223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f3a2491b5adfa8b878899216694793dba684382","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230223.tgz","fileCount":107,"integrity":"sha512-dUsdRdWs5mX+5uhIGuE1IEkfTzM5vY9qfVxIbRB3vxVINGEI8mS9/f3gs5xenafNblfMX8wUVvQ7y2x6Syk0tA==","signatures":[{"sig":"MEYCIQDuIIMR/JtPOniRSpaOllUUR4JPETawGuRUxj6D9bhqBgIhAMvGQqpqZnCdJqHwiggy/eXiZDyT2MPzv5AXZiq+CCwf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39184738,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9xGZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqQFRAAngzjsdE9PkqGDmQn+1xlhR4DJS8puPPJKF+0i/gnBLqABs6P\r\nDK6bwCIpq8dAYctKgKjFp572k/SgVWo3qeWcG4FtJTHbwFiQX3g6ofgHEmgA\r\n+EooIQEdnrny4nxGijd6ZYh7FKUK7fReFcWqL4b46wps9qKEw5uCWw751N3Z\r\nUCLlyiu1uyRRVrCZ+jzEIQ7pq8zKpT6pLkKHaTT2U8meBplqJEzPkRze2k8O\r\nWLkdOKAYPQQ2ba+Tc6mS/mi5sj/fRKt3nGc+8zBcqTAd/TdcO42cC3Rcr7y5\r\n4luDa78vDKHAhcfwCb2fDeDEoZ04o5YlQ00MrfziLDKCV2BiBMvObWsvUXjT\r\nRARgLQdfu4xlEVCSygsrFwFAbZBu7MHikOIbE0sR27BwKveb6CdIip85Mk+C\r\nNFNIYeQiJPtO3H3/tJLKfDoYyc7OccZLo4RyfIIfcKCEX6OrMnOhYREJYI0t\r\n9RNvljAkOTuPJ75H8TOruspMT50IbOy0FxpY+7uRs3ENrJ/Sc5LMg70MBxP9\r\nFbrhQH1Gfxtk8sGiGV7ZWG0hIWGY5ctMUznRjnByQyrP+1QFwSezGCmyoeW6\r\nUeLj5dlmwT3Fb7KzqAJrYrTccsiSDR5ix31H9bNdNx6uypEVI1q7xd7tODPs\r\n50S7hkVjkaesCtZpKO5GJCXjFifuhJRbdhI=\r\n=f8CC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"f2df10fc837095dae4c2393139367ad91b22692e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230223_1677136281285_0.8250827640350098","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230224":{"name":"typescript","version":"5.0.0-dev.20230224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"801908424fafe3f5728320348ad0dc966960fd69","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230224.tgz","fileCount":107,"integrity":"sha512-ntlbPkFF0PM1+lmvLenUGwo+3EJPq5QAvAsw+6HA6KTOHpF3IcmYE57rcgpL54NLXhqz84RNTtcmb4dttBuBsA==","signatures":[{"sig":"MEUCICW2W3tfCB2cIfJpMVNdQz899zx1cSJdL8/rUJa/7HZnAiEAu0ovdkVX8VEZDD45aDJOdBEqxnSTeDZ0TrF0AmPFL5c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39185451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+GMdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrdoRAAmNZbdFhSyrWpKkIM66Tkh0vMsuu6GSh3FHiG+ulY3uL4faxj\r\nWGecnGIgbzgjUB972tl04z1J7g/AHutMLR0a6irEfvw12vz7id2JJpPH7wWv\r\nEDYTO+WsCvGDz1zZvnDb6pXLE9+FwnIjNic/DZJERnIUXB/zgI4qJTjsci7a\r\n293ilN5JzaQWN+jP97EEAwdyt0szd54Sci9k656BWtMqDNZI6q/sEh/zxM1c\r\nIFgvYwL/cHkAmlncmMkwsFRKfjhNgvVBKoMUkatmxiZZHumWvv1XWpx7e7bI\r\niB3FxKcPlqjcmz7qv4V6g6jrSDPcSmSmlcKHe4hVhHsrwHciMhHaAVoSBd5D\r\n6W9ri3hMt2KJs49NzOPBOJhaualBOnysO+dOmPQkYxkiA13BSnvbHCHPI83k\r\n9ROUpwOFT317oCRYWnPt1eJU5kbESe5hWMV0lUoekuzvQ0eYgPF4rsBH+F2a\r\n6UQJA9I1Z7TV3S+FrrMpeP/2BUOTvlxaVtszMc2peZcxABSO8GqW/MJaB9WN\r\n9cEXb+Y62aG44LbW1SjTCszIpF66KnRrVsMNjBLyZOlOWSy1hRFfxeqi4clP\r\n3NS7xVubwHApcnKHd8npmxtoCgvJNnic8zvUDthsLfhxAmoAl02pqFYBZCc2\r\neWTkrqVp60cugMg2Lsn8U8xuCfFwBOLdcrA=\r\n=/ZIH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4416d548cb5b1393b23fe8883fd448134802e864","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230224_1677222685582_0.6321200343895543","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230225":{"name":"typescript","version":"5.0.0-dev.20230225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8de64311a9a364b21da4149f0febbeb52ca4d6a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230225.tgz","fileCount":107,"integrity":"sha512-xBismrPov/ES1ndEwkoW8loPQu03DbQTTCXkTiejsKeNTP2E0mxQ0EwcTeEb2UTx4E4SmhdPUDwSJNQ3cjPSKA==","signatures":[{"sig":"MEUCIG4NlPsclrfEnZWFUUUlZb3aeJFAI636Ky3+Th9by+0OAiEA+U4o14vb0fALIBhQQqqr73kwQyK+fZ5rgwmUJK5PAQ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39187395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+bTTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrT4A/9HaO3ZyHGkDeNxHCRIot0AmVTJD7wTMFea/zz4HKPUsSzpnGt\r\no1bWfsNvhc+vtDOdzbN4hTKEH7Ef0ZDn4Sd+IOeUTPGh9VjDHcc5TWOJIKB/\r\nKtM0Qx3Tokr956mPjQGkorFo3AMyXjJ1wqqsnwHgM/Yen2NU4ho5tt/2dZZW\r\nKdm42cnKG1XHOZbMeJTamWYsP1eRIL4MC95SXX0UBi8ADXF7xLISaMEW6bPN\r\nyaPhVaJcGEUndQAncDwJd8M3ALLj7ZwFBCc0df0zc/mSFVq9qLIGsw8somH5\r\nSkLA8tXeM2RJZNMA4RGKIiizFJwjgPt22TvI/B+Gqxn5g9VRJkSvXYr7qjRH\r\ngC3PqhbleVxvk1wfAjyONYWHttA8EMC9abMqzFqGqjV3Z5qHuVFXNLxpFxzg\r\nBCCgJI2B+8Cm49i48YI05aD2XVb7UZySdWDzFpAgxBWfbHg2CDPZOEowJMbW\r\nJ5V91VBYqTa+9Q+fA7GKbKzxgLa4c5bETgIlSsNpnVbXoEElT0N1C1/Fjwcd\r\nXnsjT3xP6SDmaisYB2E2G9M8UYlTWIGU0MxODUeaT35tneu1f4jaI0pPSuEE\r\nnYDUaI5K3LdatOsysaizXQZIb5j1Z/CKntgBnUvvrKkV63bGv3UPPCC54SBt\r\n5/FL6HiLN4w85FZabwCw5La7jf87frjuT4s=\r\n=QO1g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"e9868e96e87996df46a13b4323866acc639e71ce","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230225_1677309139297_0.8087813226990128","host":"s3://npm-registry-packages"}},"5.0.0-dev.20230226":{"name":"typescript","version":"5.0.0-dev.20230226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.0-dev.20230226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"39a3f67ee47b3f8eed21a4b4ca110c510dbe7430","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.0-dev.20230226.tgz","fileCount":107,"integrity":"sha512-JThVuZ1oAbEqUEN2xvLcO++QpyUcH6Ru6ppL6Q0PStHGjRmSoeJZgOgEdM34jVKv8f1lDpUXQK1cZ1zxbrZaSA==","signatures":[{"sig":"MEYCIQC8s09dKlWa8iwXZok22uQa1ZIrwDl/WHtA40g3pHWp1QIhAPyJPqhsRsm4wBpeSzX5FF4AQNd6UH1fTa0tuam+diuN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39187395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+wY7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr9qw//aJs7Y22i+5/cxrtAl5LTyE3hPr+uIb3sJ39EyjTZ2abxjtsP\r\n5FUN0E6jC04X8Ouup20DfBkTRwjFNOMSgSttPBE/TZHLuwpi3X9QnqaMLc15\r\njLUkwaEPyHE5WNhsn3CF7oSxtD6mC9/BQpEZ/vpMYrnsA7gVpw8gp5i1fVHo\r\nJjJU4RCwtd9BpycwYnvaDSCX1R6/3O8NcBGohyUqXnW0wi9PnFyFsSixqE2z\r\nlAB6llBpVvtzlRNX4uFTKa/mzdB05gxHPxuqLUB5goN1J+9ziwEWh/W4xVX1\r\nIkyxO5GrM+euXO5eXMaZH7GT/Tz1j+giD8nMbCxxPnI2clRAs/UBLvMkGtr3\r\nZkZCR8z1C/S5lqsAnOs6pUZLlboFDlkJBO7JAKXDP+wFcRdgpM8AhPQZmPrT\r\nJyzHH99oHFe6T4e+TWywMt16l/XGmSuXRrX6qd16yRjgMUNrQfwClfSI4npy\r\n/GPhgCUe7wvA3FaK18cSFWkJzrPsAKxSevJ17aIHZV1Y64XsV3sE5pfTKSHp\r\nsr2w3uVu7eTt3eyc4Qq77ci/b6JdBdxeEmQaX7LI15B154K9JvfD9dCqdIy1\r\nVn04V880aExY3dV1Q1tK5y8V9mXSo+yh12bl1oxgFsRS2r7hQC5Sk9YWSI/v\r\n59Um5MUeH71EzDRABLyabv1F8jAWwaR0pWU=\r\n=ss7+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"20d4479b24700cbd8bcbe4019dc4b30ea1565ae4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.0-dev.20230226_1677395515228_0.04698951493037429","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230227":{"name":"typescript","version":"5.1.0-dev.20230227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e4b7b39e1b1a15bdb4935c82fc4ea9967d26c7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230227.tgz","fileCount":107,"integrity":"sha512-nPxrgb/3C40X3eXsCPUpiVEgQltswKoAh3Zwm7tDIVE4ldDr3flXq63odqyWUuOZFc/+NCFdm80RpTB0nz2M8w==","signatures":[{"sig":"MEYCIQDkrRTrNR0qQu9UwST+tRxTFfiXcgW6ca1CNztGH6hIdAIhALQBakOQEpTBiQYN395K9Uj0OGM04GmbRAXrhET6YgNK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39187239,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/FfKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpQfQ/+MCZgcIhuh+qZmuNmM9wG1XmMXzqf7VEF5wT2gOcmwrAv6W8y\r\n0nvoO8+8IF6N70bu+FQpd1SwYbZ1BoGl0MyagsAx1Jfzxhj6j1XFvfwgqXo9\r\nTgoeHMqirLGMiEWo4IcTuB1s8WXvRV3QXj+krXQYzNtm+gKch1sR/UC5/m/7\r\nO/lDflpIExoWp5/PhH858KMs6WavcUhXpohAjhLzamyKOI+SWBRDmbp1XRsT\r\n0NT3Qmd/CJ/YPLbSSFGVLJ7AmABHUxvC80zHSw3c0ZD4l8TYE4kErxE32uso\r\nAwdQSu4fLH/dyGks1jTklE0+/ShkqMbSKIT0r00ru20T7QkouVFE8lgFKaRw\r\nAvDS9aqE//6GlOvKJ7t77tsFSv7AYZAGV+PAPjDx7odb9E5VdvLXvFjhvrfG\r\nXuFwP1BSbsxnArow1uLyEsgac3jFFtZpphhvFLaoIx7nrbRZ/ROvtE8EZBVz\r\nBjiixxpSIfojz4Jqtc0jQ8cInvgoVsY5uxweK5+pB+1ZboG+Y0PGQQXt/xQ5\r\nDsKc8W9afq/Ht5Jds+eWXfVjpQICR0CW+Rf2HWvKZKZ1Ymuwpt/EHOM/U1o1\r\nOhkcDfFvOaqCVfmpj84kWZ6b7zS4eRzi8Du6v77x1noVdPpT/k0tzOsT7QTm\r\nVnlWECUPESTp4V0hlpFju3XeJSIStF40de0=\r\n=zwsS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"835fff8106e0cdf2e53028cd0e2c9759b426ebb4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230227_1677481930139_0.6188589723134494","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230301":{"name":"typescript","version":"5.1.0-dev.20230301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230301","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3250b647dfd19942326bf904211350cdbbfdfe79","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230301.tgz","fileCount":107,"integrity":"sha512-aJ0PIgQ00zlf9npD2tri7MWDAooMoh3iIn4v0hAMSRCSKqJjTzt7fVopvdtbvWPKripipxeXnX5mhkBZcGrEKQ==","signatures":[{"sig":"MEUCIQDj2Ex2GiyhyFkc0s+KNLtELLbBv64TWjmp5E3TD+h0FAIgGtm+ZFA46xOw4xIN1pEgjPSRa6HQ8egumGhMV8LBguA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39188403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/vrkACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpASg/+Ib/B38Ed0nM8tMd7k8087Y9h5WuteKuZkPhWkmcpj8JFZEgB\r\nSukRUc3xhzcP7W2b75O4ACmBw/6nPBGMyOEWGXGizO2nbozibTaxqnPrgu6v\r\nQjgUDM/Kca/oj3vsurq4WsH7EoU7pvJqyglVXA1w7MXULvrC5C+j56HtO+Gb\r\nHhN0lDi6lKHMGBlx3xlSWggd3tG331czlCkIbGTugeze+UzqR4d1p1V7FHWT\r\nQ0vu+lMJv4Y5BtRu9EPOBYbMsbykBVn+db/B7UnyksKDwIYdeTEzTNsP2FQl\r\nU3LFiNEYSwIQU1zWMaNlmK7MSltDI58Tm5sLMyzt8GyWiL7pidO69TJt+BRW\r\nG0KK8LlAbuPOzxs2xlHBXGDrmysdyloSEQh6DcGzPjZtKPYZaOVvPRaDJb3L\r\n473PMiH1disuXoOaNU0eA9gPbe7XKvdPdocbhqEMunlNhuMdgC6InT2dq66/\r\n7tE+g5pwcPRo8MnKgib4nz+gItqaSO8SjO4GosULG7Nk1QcKpt34f/Z40VpC\r\nnXy+8Z9akZifeQfNova5tmJWSTvof2JLesCE+pQh8sHKOPDIzf7UybCUGL+j\r\n1cbg+I7v1WMh3L56h8Q2ZVW6i5EMn4GzFgK/ZkHKISrcgQtSHpsWgdS6WqZh\r\n/wmoki2Jeck5QAz0rfMrua50+shdmgUBkuA=\r\n=z2jC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"941b30c975e6a58fbe535bbe9319412942b028f5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230301_1677654755762_0.38045669950839245","host":"s3://npm-registry-packages"}},"5.0.1-rc":{"name":"typescript","version":"5.0.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f2ccabbdb9646b43b5e006dc6f7b0eaf9a222c8b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.1-rc.tgz","fileCount":107,"integrity":"sha512-zh75jY8gPo/y7fpmlTVN2bb2MigoLx4hGk+Cla9pY6lgSTvzJrmQQrRt5S80VTsEt6biWPZJgLK2nm6f0Ya+mA==","signatures":[{"sig":"MEYCIQCT7QskwCVNsYTIOEwPnutIt8xh9rvzwREx/jpkvmfbngIhANuIyduQZc8Tf2EkjImyZcaqmtCe0sOASTQeHPpv5aDq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39187336,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/8NTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoiKA//R78hwpAa346CwkrvXwPIPEmHYABWqQZy3femXcrGYGCNKDTT\r\nIUY37hvKCNBdp+uVLdM+yj/I+LV84dvdSrBMe2/SpQumiYR7B4oFR6LqPFb+\r\nfxUqinv3B7K3wF6JvZjgqqmTbVXmM+1xMLdKOVeziCpyZlCYhcK+RAm0+Y1P\r\ncz4S5WI44fHT0qaOnXFXCX0475KWfx83H/xge84aJVNkI2CboclQd0uyJccb\r\n2vGhWDJ5H4bF1bGIfLpbDZOelo9ZfJghBib9wXMCFfqT4jMi8if8wijfHpy4\r\nRotmSQ9JTD2NDOwnN10JRrzwveyuGGuB9mFHF+zYGqBlneq4mimNfGv2qTMh\r\nl6mhbATRbJM8GzKzmEUfqKUS9G4qta2QUuZk6UkM9INFjh57Qk/Izg7XyNK3\r\npMD9QZ0YMrMz3ooGW8LWxWp96jP5mq4D/DM4N40QcHapifyqrlVetKwtvdMF\r\nfmfXnjw3WqdeFPdTKwoPWimBynpzsYmvhuFiU1Sn6JExVSc6u9UvnPW6P2DH\r\nBhd9Sb95WjwOMben4AoylNVpD/DymLWVeuLTsSJjeEEgIec7wIO4DZw38Vg3\r\nP3rB+et99Ts0+QlwsOuiHL/ulX8jyHSExGrMTEJ6cvVCN9SNIINH5Cryed8F\r\nWXHaT+u8mm55WRS43Sp7X2O7JkdPJm274aM=\r\n=t33n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-zh75jY8gPo/y7fpmlTVN2bb2MigoLx4hGk+Cla9pY6lgSTvzJrmQQrRt5S80VTsEt6biWPZJgLK2nm6f0Ya+mA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"latest","diff":"^5.1.0","glob":"latest","chalk":"^4.1.2","mocha":"latest","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"latest","@types/ms":"latest","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"latest","@types/glob":"latest","@types/node":"latest","@types/mocha":"latest","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"latest","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"latest","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"latest","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"latest","@types/microsoft__typescript-etw":"latest","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.1-rc_1677706066727_0.38651065446811117","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230302":{"name":"typescript","version":"5.1.0-dev.20230302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230302","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf65ea1a67c69e11a50c9bdd93b36529d6ac9dd9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230302.tgz","fileCount":107,"integrity":"sha512-zyc2TZ4vL1jj9NZ3LKoaqE1zTu/G6NeMwVfSA1tVpxQfT7fwiKtkJcecOAsdESok9KaFNTm/sy80/25/Umx32A==","signatures":[{"sig":"MEUCIB8vxTKFGNP6qDMBdUlse1rGcHC8PEGjY3Guh+TR52MaAiEAzW8+IBINCAxvydfdsAGX5lQtNddv3lEjYqI/+voP+1g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39223901,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkAEzuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOUA/9EHJlQWVin3P5E+70HqIb1p44+2PRtQZ3doD/hhQo0ETNLanL\r\nfgoH2ait/LvwNtWkafekZcPcQKrEz13BYHyufKk4vNc3kuTdgeKbv61a5VbW\r\nBpQxRbgtMHMWGJm4l+3efTfkokD/+xB+BQZ3YdKqkujTiday5CelFjxkCD9G\r\nRshumO/aDWH/e3xVpI14CYBcCJE2jvDRq+cVjKKQLR28li3d1sj8lNoT/AiU\r\nwIKewlIrYgi/PJnNxTtqwEzZ1zKSymFzJINPGZd2+FHOpZE2OP6ZTpx7U/QI\r\njA0hkbppz4p/pI3yYT5llvNI3CkyDT5eDgBIjf3gelXJe1Eu6HdEe+xo9b+E\r\nN+538H8F1zgqZapMg93mHcSoP+lvhrTvfFPQ/UotXTUPKLAHZtJfS2Bm+0LJ\r\nXNNm8D5zJL0QMFrjaDItzZiqx0U4QdcUWf1hrgmBei2jHPEikNMstouffuIB\r\nPecM7bdIUemwYhf84H09YowpWo23AZbh2wZMIe0MMAwnU7ZjgFqHLsV+0ak6\r\nHLeBvGRadLF3PfEiKxjyoDWw3wyAlPApArau8VyHdnqS37VTcNUNjVl1QQ8w\r\nZL5i4cG3GjjFHsJZYIBDS7ory/aJ/V4AlB2hUOaJB7tiOoAIv7AdLO06vcqS\r\no50APohrXptzeist7MK+kJww/Qb7iNv8C0E=\r\n=E1NK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"7bee9c55b1b90a7711c8a635dfc6de102ab069fe","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.3.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230302_1677741294433_0.5086888125790381","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230303":{"name":"typescript","version":"5.1.0-dev.20230303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230303","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9dff8f4863e98ac9d44c81f23fb58980ad7fd4e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230303.tgz","fileCount":107,"integrity":"sha512-aDocbsouqGny1M8Kjxn8svqDUy5xoINdPpuh4t0UDoitl6nsHZ61suF1HLfMj9P/A1Bl6Tpjq6GTaRtrElq4aQ==","signatures":[{"sig":"MEUCIDxAz9BlSMm2Wl0gaEb07/8+xeyVpH0QaHRgQF+oubOnAiEA/2sq78njbryW/hgbhUMS1XO5Ce8GI8twemq1BAltuxY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39219444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkAZ2/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrqng/+NoUY27TI97otzw+tu8XLxhoY8xf9sPrOgsqkmdgRkG9OdnaY\r\nxN8Nw3EF35plzcnFZuHNCsTSS0+OjKFhZgEoWtuCM2k4aesN5GxIx1TLg+i6\r\n+F7up+PphAcWMm4ECBEEQv7iv4KSwRfh7UD2EKjwaXQGT6/EVQSVYVgw6Z1x\r\nIOK0bObHmgFxrMU4zZhpGU+j5KsaeA33jn+wJaX3582e0KPmsNEeFBqeYF1f\r\n3zLVXJhtJjLArvmH5+LR4cWN3U5o6eTxlu+4eFAL8RlQ7EYA2pEbaJLLVVqJ\r\nP6AksC/TEFqV2ZGF2WEB3VxFQPhkuTQqwLKZjonGw0gr+hM7MDg7nXEM+CpQ\r\nQQ1WpSxA8ISlZUZ+Ff6Q0KRxzOszdCODl9qqoj5Cqvg6htCX8oMItatdKWEa\r\nRcHMzXRqswN8G/AhMwXzpcL0AqhjbQvA2VRR8VtrwuSkKitrPvgg42kt+p4F\r\nhcSX7d3aek2UwHo6hpITiofIHlQNwAOGjiPwNIAMLIY5jl7yOlL8sB76muRA\r\nDAR9i4p0tLQtkKNhxz/kg3/TT0koolvtIuWKawPq0zVRap2TmjUPjDqflkex\r\nOM1c4/GlT2ZwmswZeU9vpRVzb/GGpQzM4XR7QMNf2Sa4tUWhTAgjxEHZO9Cc\r\nw/HY3vYkTsAjxhduNnAboKscityE93yUgDE=\r\n=uc4e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"4b6fb95f040c5c81743e19a56df8fa99bf3d139f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230303_1677827518638_0.8443289439378636","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230304":{"name":"typescript","version":"5.1.0-dev.20230304","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230304","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cb6c657376023941f3db5e61ca996011457f4739","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230304.tgz","fileCount":107,"integrity":"sha512-xlAokfeIebNEQz3vFDsudeiyMFS+7IdjFFv2NZ+MAIASEq2kqCJWQxTtU32SLY5L8A7K3aePNq2DWCYulY4iBg==","signatures":[{"sig":"MEYCIQD65L74GWlIXreGFqRooMl/wURb5wcj3SJh+6rW3RfkcAIhALGDfalXIHkKaxKvyCSGUlWrAZ2xaPaXEko2HLsji4+6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39222706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkAu98ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpXaA/+P039gagw/mkiTN+sIz3j0Acp03Ri8Ebt0uO/FDEXxiIWC6+O\r\nhuYDXKErkOwcysqgBtFmxxNdPj9goaZdCp4bN+2J8Lbz5rBbFKKo0Rx7FygG\r\ni/X07deWRLv/PPl/Ld3FgLN6fqweV4CF/73SROgJDCUMV8qro34aoLstLfwB\r\nnia/a1RLmSBgnbY41GWwYtpNTBQFUPL6v9UOigOLLjDcCL2tuuuQAOYLUGd3\r\nVk+JBkIg8IBijGcK13n43eFo25eCT5XdMrXPtll4FrkOwOtw7YMVLC14A3AC\r\nTMoi6tjRRdnMncRD4Jj0bxFRC5B5+d0Gtc0I7QeLltyiSUnoZ1J9MrEFA2Bw\r\npncGhrco7WnLbc83/XRvpnUM2m9deC5JlzwjpAnIbmxzSfySWU/3GnTt8/V5\r\nyKE0y3zWIsR5z0UYWLjGOhbBUDy5uL5RGA3Wx3hW9lz9JSbWr6oMa/Fhy6kT\r\nc0PAkysVIe2sh4VxmBtz1hooaA7i/KmM+VQagA7XSrf0hYQ2/37AsFUfmTkp\r\nzSc+wsH2/MjGeHfZSw6Yt28viK6GkIvx89D1qGAUcuSPOS57lmkAg6Q2SWfn\r\nCBpBbbqa7WATV5kB+xL7v3cQ9bqLIsV6Yj8pc7dvxg0zAyIr1UesyO8qDd6v\r\n3yt4ncYCVeg77um0kE3EHTnBiLYcif2pT08=\r\n=NPtP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"43cc362cef72e5fa1372f59736a9c4b55d85def0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230304_1677913980257_0.5710627875531848","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230305":{"name":"typescript","version":"5.1.0-dev.20230305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230305","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"425d89c48a4807515e6d74c4e023cf594deda2de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230305.tgz","fileCount":107,"integrity":"sha512-iOW2dkTfPzIqkNaYZ0Lj9ucgvOkvCfxw44a4sdan2dI8wdbZLNhj3yfVMHG+GU4e1pxXwAAUAIY2Nh2uFAp0zw==","signatures":[{"sig":"MEQCIG8rvlEQPvpCxJS/0TxYV5AavwwKMdcDjQOS6IZ/GDRhAiBXJFfIdEOQto014MPlFpSbPjyej2YqAVkxXBRhQB/KWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39222706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkBEDqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpplw/+JvWiKhGD8si2GcrwJYRKP6e5xsM1Uxr4r+AFunQkjxTa4Dw0\r\nRTPoWqmuohp+dBsVFDqpml/B1hBqM+HZXE6SdbJCvSQv/n+ItiddvwRWT6i7\r\nZlTX4+tcMFgcs0rMK3c0G5JixEfzj8QfTG2ItvyyEkS0dCmrDWtZyJsxoEXE\r\nbEjQpJdI2PLeqQ9hKOSKZ2yA4VJwPuyRzxeVRtfvmoICBLPsXl4sO52WCS+d\r\nWv8Gden9rKnzR858zRF8VNth5antywmGQgikQh51PXDczPN4L5pcNr5lOurv\r\nlJrda7+WFX57j17JfEjKr63eP4F+eUmrqlW/14j/HktDDe06sSYdBfmEst4u\r\nQ0UcX6VsvAnNXDCyGc5xjymmkemaUKpi2NQBQ3POnJ5COllyJ5fNTgYcX2uu\r\n54BCyXe7mk+RWB0Ai708npdbjcAmDtgPjb0pNbg4IoGgbgOKD4dRHN4MMErG\r\nKZueAob7T/m3lvsVE/RgDOrz6+Uo+iiak92xBoSP74mIKJEdNZ3heewEvVkn\r\nsmKUznwyKM77wKMJRmfnOntEYta3Hpa5CxY8b5QfY5X2JbIfuyMTCzNWM6pa\r\nhg+Jn7eLMa6w0dQXCVKSy7dij+DWlETzIBWRWETaBKxeid8BtpgNbto1QDQj\r\nZyiPJG+TzZV1riNP87w2ktjzuzcnLisNqb0=\r\n=JSIs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"43cc362cef72e5fa1372f59736a9c4b55d85def0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230305_1678000361797_0.7878466492702492","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230306":{"name":"typescript","version":"5.1.0-dev.20230306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230306","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93df93e11c275ae1da45922677eaee88d5b805dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230306.tgz","fileCount":107,"integrity":"sha512-CqMT7nhnVNKfaT1giN+UjFUSqN2gBI17K8JoT+I1LgPU/G9oYypuG+91pz8Kjk/GW/BG685khZ0YfFrADj+KPQ==","signatures":[{"sig":"MEQCIGzDOWGedXW8CrED0bRwNH7co5/GqJGAX5CvNC1b2k+CAiAfI9MNWcs6GGMc/EO0RD6Im/GO5pIUAS+FDwfG1U/kZw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39222706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkBZJIACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrtxQ//b6xHL3tQQXoTOAYmtyVVyOfj+P3N4vDSNsf3XqoVZy9teYAd\r\nwssdITcRvEeIjwhTq5TQmlTv4ZbCyguW8UIaGMZa2OZmP95j/BzshpeSKNN+\r\nSsoyxCPfmrK6SgfHzifwsmH4mFZ8jREJOL3yHCplGR8dWpkcIlGM0OxxWcRO\r\nQDRGTIBcl45sN7HX5fPf+sODaUDOb435aCAa3/ZqXxlt6R+nt4q1CMi+fMXK\r\nDiU871np5Y8NWWuE2i/m8i6mfEES2DkiQ9neIijEJTKIwcnxcG888itnRvLO\r\nmIE92yszylqgqNDoHnqG0P6SEgVgMNC5RFIp5IvagSIrBB2b8ioRy7Usxhvm\r\nboeGBO1L6Cdqrw2IVorld+aIyqpryB4vDmL85UPO8/zgiMjW3vOAwco4Wemh\r\nZbjn7G3YqYiFe58UFo6GBoB5giWes5NTIwmAi5ZhM+anDUKWLrXqRC/RwWoQ\r\nMgIysOC8xh3bRyd9/oRpLswuemIcn+g5YeReTVlpEBdR9bWaGbe/8eTLFq+a\r\nU95s8UNOatz5tZxVrMbw3O1FRFPaMIgMAV63w6xXCSrVNrErZlnmtJU5A6aA\r\nvs90hSr62BIoOB4/NAfOF7FiYdcTKatCqsAIyiVSauVlX/OTybmwDUfWMV6N\r\nWahP+xLsw+Mve2+j5KrluftmTLRFJvmkKmc=\r\n=2CUn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"43cc362cef72e5fa1372f59736a9c4b55d85def0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230306_1678086728376_0.13963858188889455","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230307":{"name":"typescript","version":"5.1.0-dev.20230307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230307","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"64cde6497b61b894af9b9a0547ee273f11bd34ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230307.tgz","fileCount":107,"integrity":"sha512-QoA4rJ5koT+JJk69FBwAF4vx446c5xPWlvgMrlz0E0SaGDpveCbK8DTpRmdxrZR4oVQ0VxMag1BGtZPtQtU+Jg==","signatures":[{"sig":"MEUCIGQQErOmytmPa+tv1UOAcvchpPBA2oL3UicvwlzgY8B7AiEAvbikqvDGwlFVJruL6JLhxozIYKetTG95q9dKCfiUsTA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39079694,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkBuPPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq8dg/6A9TIhTiUySIBwEkgd8VAEaYJvEh5ySVM/QQXQrd6aCS0BP3X\r\n+tuIjEM4cBHtyS1EYnOxM/Nz8TdBPgqu3ztVnGgebudYvZdI0/pUFLVHldPp\r\nWNaCxCtvUsdQj12hL9FK5nac9Vbd1YuVmCuXRW6hCo8IoJYauhfpbW3rViRk\r\np9ZsakTJfOOTCUYEtMWOxLFr8USmvA+T047DiSpUvsMoQliYYzQ60s/f4tfB\r\nhpk9XA8CMtWFolTEflF+DAxAbKzRbMJS70ruqekkiP5GnRtD2PDG59KiomjX\r\n0ABV67MkDDpjlZ5n8lppFhHK/HaWzGNqHH6qEed7e0gjNmLywyUHEk96l+Y/\r\niGTPuQOjJObT8UWYtEbwJcO+NE7bRfVfLAb0UUpKJW3QMeEuUILXQ85Bsxl7\r\nc+HfK6vuXcwkqNYVt6O1PxpbQqazk3Lt5QIw+mmfIwBFeBQEl+uMqbkZ0tNB\r\nnDID3EHjQpp7OWAuu9Ei9RtWWm99iEJGMdgjVi8JxjA+sZkGTUGoseY/H3SQ\r\ng/XRrEWnwkO++SbOol9xfq6kKOfROX3J/Y055U7lkZ2WqqTUb1DELZiY2P89\r\n9JAdgCneK8mFKiEU8eeuKSOveKIrAfmGotvxLqL3MaX0hJs+iERxo08wV9+y\r\nm6uQ7Oi4nghY5GIKLhce8bGC9YF0nNbfd7Y=\r\n=mxvO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"df1ddb79642212c7ef9f2f6ec03ac95e610d4280","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230307_1678173135052_0.9112261871867162","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230308":{"name":"typescript","version":"5.1.0-dev.20230308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230308","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1089c6db95b37142b052698a7e9b0b16d45163d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230308.tgz","fileCount":106,"integrity":"sha512-CSITPpBYNdPYujl36d9VhNNCLE+isuwm/ArFbYgPsWsLniLCcfBl+NcaOkVqyjV0XEjP+uN1yywiglCkEzed1w==","signatures":[{"sig":"MEUCID38x9ExMAZiXQEy7JNhE60EZSnZjtCrx7BZlz9dZbINAiEAvmmbo9cNEU8Nm0mryAobVebPCNROxw+xq3jISj3iiEk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39106888,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkCDULACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrxkBAAoKrwYuay0EIedLgqrJnEKt1W02PygY4sGA4Ze7EekOeEpFhH\r\nqnCNAmHpsUWTgJzBkSDM1SCv3d/WF8bQZEB2Gy10LJ9gj1+RdjCXUpna2AXN\r\nkvmVCfyDIEQZ8tEQ/SUoecXXDz9ZQa3SNQvrAjEVFHZmMu3jWclSrlhMXjDA\r\ntFfgEfdt+bkZqyEcEOk1UO3gWD6Z4QtupWfS9yfY7gzjkIW0Nr86eMKu++U3\r\n2SnPxfO0gYeyLGug+1FUe/8WKSEr9CV2RYQP4q1wVxdPES2d4JzD7P8EZd5R\r\n4q57iumAatsjcZxKezKf8v5cN2Yn1pL6pdH0p5jnU8mmiIJfoDStyhQ7sLxJ\r\nXx7pX4DTBLK6ZXOy+9899bDQ14yG2DYpTRb6cvLFn3DeXt2oTjBWLi9vSPbE\r\nq7SZtHU5y06sboji3IXabYtilw4E/pxCVdNuQBS76rmfTQiBPrCI1PKMrdSM\r\nQDCv1vUemy1PeRqnr6t5cXYm3dDdo24FDzmigItF3zmKLoY+2asDu+SwshNg\r\nu2Z/V81bpjs5Qgf9PUFx3hbRc5PT8MAFF2eN6OJGxaeXcsyrasWwKHhBXgGH\r\nS6albyroc/CqYkjkfF1wzeNe6kWpVfmoUSyrh92LXh9nG2uzrvpnRAhvNeax\r\n6GJBBMDLqJGSdNM68z5IXfZqyT9LAAvK98s=\r\n=kwz7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"746a6feb2e7ba6987b6c72db538dd498b35cd461","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230308_1678259466945_0.00889935291793087","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230309":{"name":"typescript","version":"5.1.0-dev.20230309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230309","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7b1b6bd18888330f74f78caf751c7ebb83a7f168","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230309.tgz","fileCount":106,"integrity":"sha512-pCqgzbHDsuACtq0v+pjNY6Zf7cdWZstY38Jq7FfD1HqAeEGnFKhrZgSRh7kS/QE5UOctGAqbp1ynTGdVI7s4Mw==","signatures":[{"sig":"MEYCIQCNcCGevDkNKNEE5KfXrwxrfL8ylB4f6Qk9Ph4XSVcovgIhAJ8EkFoQvX58COz1QgxOAJoHI5oUlIWB2xg2Mc0sfY7S","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39107552,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkCYbCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoVeg//TjmvItNcAVDceY94rx/BfNdTRcpDw+wn7KQ9RiDCwQMkD6fw\r\n/O0YvM23EY5yb9Y8e15p9eI2lX3jNLDv0cwLRlp1HyLQqBQM3C7gt9cdSY+g\r\ntqBcB5AFg5cMWJ/MxXhaXQPyD7GRYxZw7MGv+xgosxymlHUCSdaTTbJyTl9x\r\nXI62ktT7NCDBvnPSJKntK/TPwuCfZJ+mhUEnzkpfHBZGyl0vv2I55Y1Jojqh\r\n4EHFNPLqoWec/iG42PnfLm9OJPV1gPAKzJbklM2cF5Y2p/1efurQtJS+K+OS\r\ngahbixVg3iTAf57p6SIEEMOuk6AmInTK/KJh2YKVoWKyeq7Zoh6oAtRvAjyl\r\nIIjtivSpQlo30ZrHFO/s079VRr9G3750NH1xkmSBJZ9acgm1/fzJKBDWJ3EZ\r\n1WU3PQylsFhJwHW+GGJCx1w0AL1d9Ia90vSYVlqS2zDRdvbb+5yiNbf/LESO\r\ncLQbhLucxoGaE+65YL4PYUoliBYolNHLdtydcezZzF/F1trT4d4WrHC0XzqS\r\n7e4Q4TKNsMBs7s/j5WzjCtPiUvlQ2BHBPxzGqLjpaWb+Mj4J4noSFRX7S1WR\r\nQFuHvfIdXvg7xLfA5n5Xcs8y7mkrDv2FLaL9qQNqTeSOzRouPz+riISCPWiP\r\negl05rwxs+kPRop1/ri/FR3X43t8AezmQHg=\r\n=5AAn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=4.2.0"},"gitHead":"d681520a14edf78560de2b098d6d68783e2fdd8d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230309_1678345921639_0.5659283722205151","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230310":{"name":"typescript","version":"5.1.0-dev.20230310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230310","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8d106128af09c2d098c74b4614a0625e61f46c22","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230310.tgz","fileCount":106,"integrity":"sha512-k1UQtwPDMigLne5sft4o1xhm83S/oZvZmaNyJB9/iuxnZ6Blpje3GFeFC5qEYH04cXmjLnHg4s0He1ACrS25DA==","signatures":[{"sig":"MEUCIEpFo/ZkV/1aiFfAMAd+Mr+BHHPDvo0tXkFb4ABn9T45AiEAqKLU6PT1KD+PQiZP7BK4yCqMYHDSq5+ZlIfHk4cdvg8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39147134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkCthMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoCfhAAkWmZ+IPSgxBnFsqTZyp/R4rzq0/OrnKbFuS6bnZJZZ5lGSze\r\nkDpNxrHYX6B3ohq+6WbTFV89CNAg5NiwbMjb3M3xDjCCmQ+wwNVPf23VZ2nW\r\nCVUvXPZFg63nyKUeIK1kknFLMk7oswdZqm5U2d8ecsnYSx0NP1npC2zK7uEF\r\npHAsjBlhqEp3nVttIMHpGo4EgUZ9Uvw9C+8BRQGu138pt6vWLTPZqZ0Aj6Tw\r\nGePdpKKbneo1yudeQp8yuUH67L9/j560uhcLyFo9hXI9NUqGAVLggWtWOr/g\r\nLUazhNhJbdk2Ooo0FXJghk/pIIzdfkTff7BM/bnd7TUfZ7vhnjW8/23Z25ys\r\neYedrGUyXoIptwgaObmMLPhj9nB4ZOK3YqarYk7XIxnorPoa9wozm0PRAVDi\r\nHYFdS8U5bievZ5/f8c90UEU5N6pF7N/g2H34g/vz5mWUbdXn4nvZVA5re3hn\r\n57gBP87tVsRgSko1r78Orc9i0xBW5epMM5Jt8oAXeC51PWYUCpIj7h68zNAO\r\nZmDvhTojMHKpro/d7HeRlok7nFzxQre+LqGFYzp+lyDCiaCqNlcx2vQtRgEM\r\n9RRvCoMMDyZ0UuFRTHEL+w0Nt6VSG0+yy/YmPLqiKDiGTTJRoBI12rqDLi0W\r\nIZd/1DEQ+MlGatuzGXLjNjJ8Y7UOFwCo+dM=\r\n=Koyw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"a8ffab2f30074b8135c978851e8bf8146dfd3239","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230310_1678432332265_0.08604907104988424","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230311":{"name":"typescript","version":"5.1.0-dev.20230311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230311","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bd7409ce9abdfaf7bb97af184507630f2c20ace2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230311.tgz","fileCount":106,"integrity":"sha512-7Zzaa07PsRUBI03Ch30o2+9RZQe8tL5fVN+UdtWr//SzJGA+gi0Y1m4ZvInY7A+IQl6KlxAl/jFI8dGS/3Horg==","signatures":[{"sig":"MEQCIHmQAWxxgwDLcEltDwGrgbCGdHRQ6aTAMTPiw5wbpo0qAiA1Vc/rYTYR5D7IjgCKy/SoyB22Nl1ZHq5EIze3+Rw84g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39149099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDCmBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBWw//WlofLx5B5J8USWLcQbhh4C4WT0m8lNuPt8LWkR5zdoQ0V6w7\r\nlrkDlzk1mHrtA549NNn1lY0YPLUz4MlnAeMmoV1qifxmVAXrdU2Ssu79rowT\r\n6GJtmHmpwfsM3N+p6/54ChUersRxiueyvregPCOPs4WZF+Q6ThT1di+5XF4Y\r\njbFIOD6C4wy6VAxweEfvyAsR1RkI6ETMDSKV9ZLsmILz0VyxqqJ4TFYjwFHw\r\n640/MSv1nR9RBelEBiJaAFNlGe77qjw7Ot+g0abCGHSAcWARUF86HIxIDdZ6\r\nADkDe7y9XkaC4eGDKJZoZtgU0NECpeurDUkmdHFM6r+FYm8aSNOSgIA+oa1K\r\nRUDU0qgMb75V94rhX/rtErSNEGrjeS0x9L6I2fALevigP2jMdd/NKn90LqpR\r\nmgyBDIOtO47jKkUFCsD4IhSZjGUDuu5NX2DRlH1GByoG5jjDzILRtqSdw3sP\r\nUzz0NNo5r/4upk3iSLfPx1sG/tjYonyiRYw6wPwmObe5X3khV49mlfArMM2I\r\ngmBi70evdn8kxBDVJcn1vqk2p9uc5mi98ljNf56nU2CD3+FLfmTwuNa6E8ko\r\nWh/b2nxiagcReJY9vT1QmHnYqPqxRRtl5wzScGdvOCAySKdo4p+rST10/EjJ\r\n6pHFw3ynU3yiu+Iu6Bq9y5ESS5IAI6UM3lg=\r\n=TTtx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"041b0db8f4dd69a20a08ca5ec9cfb166dff46adb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230311_1678518657164_0.904650459426176","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230312":{"name":"typescript","version":"5.1.0-dev.20230312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230312","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"838b0fd1eea2452f5c801db6e3df339130693c5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230312.tgz","fileCount":106,"integrity":"sha512-BgRjQo+gKHSDuo3JJpCydBfDqFbOxmDNmuTl7H/A3TZWdNiWuOHI4tgI9w6QRrvJ9CplHe5EQE2+2dqGXqxTvA==","signatures":[{"sig":"MEUCIQDdYcYAg7ANeOeXnoge6cHfLrgykz9a21zuTpGiLf7epwIgEBBr6q9wipXbn0ri8OipIICh4VAeWOBJ/W/9mjfXBhk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39149099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDXuYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoNjBAAivJBHn0QX3VIHIrUbfL6Y54f1DaZ/xjd3NHswFYnURGZU/a7\r\nszkEbSPIaehmG/VpVOmAseDhtZqb1ii2wdu/L71LmRZWavlwoKnEbflacDjA\r\nqZMHh/vmTDuBgzNCov+gy/J4v265mWCy7mdIrrNAy+VEKyf9P43Si9mTak/K\r\n8LZFflgE8qgsBCp7lNNZu9mdOOrqFeNvfMwxbG3n+2PZQC/cCbCVLYYLkCWM\r\nrPT9sSgzXYL926wFNUdR2OdwD3RVL55G6WlQPprAkalAddwCNxL4pFOUmNlH\r\nbD+QRID7KL8uDzCQpOQxvK7buis3rBbKtcafouJSgaCVL7pwnGLAprGhnj4f\r\ndrVJ99fjrt2j+7vzi6v+2WKYyLmvflbWl8mHkmIUXK5J87uv4L/tNlCndnco\r\nkX/jk5m41+TVhahtjagZKnjgu4qpMdnUMLWBAh/aXn/+AMnBMIrEnlSHyjAd\r\nFBzvgMxBtzWwPVee0ovFSp3gmjprzNbJ9aCI5soL0vgnmal9GWPucY2HD9Jk\r\nnUkb2XhjjVB9pShfsNoPADukHgMW+LeKdLLO6Os5mprbiESMcZ+NUDs25m+e\r\n8Ym4L3ms7gxEapz4iwUEq/2JUDAz7QAF0La6cdZoQY5ghwVKRPZtMVUBWLlO\r\nJtDsuhSv0ZR87VgeZMs+6oEZNOWBxrbYG7o=\r\n=g1bP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"32d2253e37e8a02a385a859c2d0b721c7674a045","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230312_1678605207670_0.41942216386677367","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230313":{"name":"typescript","version":"5.1.0-dev.20230313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230313","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"393282026171897a71398b9f4b2a7a527729fd5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230313.tgz","fileCount":106,"integrity":"sha512-vveGdy/uNUyKJ/JbXsJTSP8Z8gfCRsiXdHBMbvJ2XzuzHsDQC3mR+ZPvIGrXoTWMn5XNbyJ8ufYuqGiCGTi6tg==","signatures":[{"sig":"MEUCIETHGGrL1AAsS40j514Pr3soTpYFiLEK6Lm/PbFlePwEAiEAhtspLV6tbGAUnOgxLEq18/FqArQfFntA297CD2DJ5NU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39149099,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDsy1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmoq2Q/9EMn5UWxFXgt0VGxV2BVc9UK3IumnaGDuoN3vZCxqmTJ0GfCH\r\ne9144Ujd00Qxjov9d/l/uaDQJFGod1DXmGnm+kybdPgiYEycE4lWpdDM2ul6\r\neSeYHwGV1rIZC+RfJhbieW+ptoVRRkdIGl3YTYa1fkLcUqYlQMhJVfzI7vlJ\r\nJqOw5JLHj6i0C3bJgh0CTeSVhjo/vzUTnIg4LTh0rdRpKZ61uwiNL43RAgka\r\nBVHPBIo9icJOu/uxI5+U/J2OOZaZ3ad7qf4W85oihcyvSMpD8FIko1mrJHuA\r\nPdAPsjrM9BPRs0C8y0Liy1BRQIxDwC3uSvJOpWLj/WP5YKW0c/bR1M5Crp+v\r\ngUTexzJohHpU5QQtC/PQoidftHzdpvSTeW4GLKLtBqujEd+WWuS5Pa0C68Zu\r\naXIaJRle5oq24dXMt0bDiyfnAZpRo1ZYDswcH+4ByT/m81MaFrNa7EiENFaR\r\nc+C2Nu1ewl9/UlL4BkONxwSxrJdM9YZuM638zJ/IhrQgKZCPju+w7wiL35GJ\r\nd9A+ZJvnso21jJ4PtJZFoa/gfsw/BqsS3Tj0x3SZwenBUDtalZ6jf8s02wj3\r\nxGcuL066Pj6PtKOqkg0Ihw8r/ZzOc+HD5lCeo2pjZ0EJGakfKV/E7/H7+pOD\r\nAOxZIxE1CKcAzVVrBjDI8D5750r+8IBGBRI=\r\n=WosR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"ac60ca7f786addfadd32d71fe7ad41d5b1405422","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230313_1678691509413_0.05264166410529647","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230315":{"name":"typescript","version":"5.1.0-dev.20230315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230315","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dfdfa15b4bf6298740e319deb414b8d715baa7a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230315.tgz","fileCount":106,"integrity":"sha512-lHUjpyLQRGRdkxHROCqNyAeoq8ytzxFqAY2nCOTiI/sSygZsAsTyUS521ldoNcjym/DiR+rmaNG6mpt29enm9g==","signatures":[{"sig":"MEQCIBugarClNhzLMCnqyaDKP/nLZk7hyqfI4yS2FHR8HHJLAiBupZFeGd0PGOKuAEFXsZHX1zxkI/M1oPvNnJ3K99kRLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39153602,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkEW//ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKRRAAoFuhyZJXNo47IR7zUTlRi9tZ/QWSyNChqXlVHv6Jfdxgyhra\r\nSu68kPbDjzT8gdbqHn2jiv23LrcPAahlUHTcsieTL0HN5imi30pgXg9UPwNi\r\nrhNbnJ+XoPQ98tM8AcTuoRGTsbP/ZNS3FJNVm5rYNYH5MQFGrTqvM2ODG3Pq\r\n6MtWX43wG9A3VGf80Yi3yBhBbRM9IDD+OSnNpTla5a+2s4RrArgEyWKmCY2N\r\nw/xIwmlm4SaWX+R5B+RnFT0kK+V9A1xRZ8zzJjMyII4lsflfmqZ1EASDBzst\r\nnLlx5fag4VzxO3AXAk/2KGFKKJG4WAYCKUu2kT8PjL2hg4jR4nWIWgyGT8Ld\r\ns069AgDmO+oa9TvT2d87COCBA7e4TQtq7LCZTN6wQGrPqUF953a+g79dwIfZ\r\nDI6+NnA97+272md6Sxuv2QV+/T9SNtwBVPLK54UKUNNFny7wDGTG0m7bYud2\r\nqInp8caU9JOTkbiyiEmuG7ZoQpjaon3cnye/IReHwjjgB7zAR18SAnvSA3wc\r\ns4LOJqg4q3DS7qkSKULzgUQPCGVYJ+j5t73s7XPGyN3khAV/vffRPDJPtPx0\r\np2C929BsEaOYtGBqHrJwHh4udptQ8BoMVrRRJ7eCBCnhBJXA1V/449SpfHmG\r\nfdKczPCySiQCV70o6jY1xFXHtioXwqO08ec=\r\n=B1s6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"9ccf47fec5c1c87061956ac6e1446677654a4d4b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.14.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.1-rc","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230315_1678864382789_0.07053207536383566","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230316":{"name":"typescript","version":"5.1.0-dev.20230316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230316","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d57f1bde040419beaacf92ecb8adc5e29ecabdd5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230316.tgz","fileCount":106,"integrity":"sha512-XQP4u67mBfrcRRfdyT3yvOAlCYlC0fERQOt9wwinZVALcj0BNO+7d7U1SVxzbb6RhXGEQ+xUgSIXxKXuHBZ0xw==","signatures":[{"sig":"MEUCIEpBxVoHGlJafoiYN5gyY/PZqe78biILZtvwilCHItOwAiEAm5xgk73PBFt7KoK7xIo6YKthyHTPDtC5PXMkeNauAvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39160657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkEsFKACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo4FA/9HPjyFdD0rvo8yGpDqzeIaPO5tZkKnFVxIP5K8sOangy1Nds2\r\njcIfE6ZW9D6YC7WENGmGn3DJuyBd85nRT/yqxdbEmeVk1LLXL7GFLbmm9xMG\r\nZDgrFwnV6slw9M8542tvAabFYbljcCY8vg6NPRdKfRhKcl70XLz/Y0zIMjhr\r\nrNhKI8kxuBVxb3wz1QBygJvuZFbqZJXGajjci4+c2O6Z2u+f3x+38sokuM7D\r\nKrnk+eU03Xt9UrZFkvpGNI2cPlDYtVZ7GEQfwyGmsj1A/WpCQym+1ezGTPSa\r\nfqxCAO8qXAm4MZ9MLPLOjClLmUdXhlbwWEg/eaD2lCSlOHff1sONLy/2kjRm\r\njKdGC+tNuoUqyzVYAziMiLlajOkm6KSMe6Cy1Zyt8YTyISPIlKYW/MEpyCjl\r\n82f6IkyL2/BEb722tonXgUWftCuk0tCE+gBdG8m2bZ6gzVz0TJR4GqCIxcgE\r\nTHUfTDvrfLZ44a26JaNIOgOMQh5qlPjDrrZvVe9CZigBV5Lhsp3piufgAvL7\r\n8Cd/ndIS6q3eEtYPJzarLW07VRZ32vwsaseJshqhu8fc20MBNlfws35PpAji\r\nFJBKfj0IKNBl4rcQV6iLFEd4tnpbAYY6uaD6l8txrSR0HxCof/cAii0wVH36\r\n7cmIRHGJNTbQomwjjyH+6owhWG2Y3ekWn/0=\r\n=5YVa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"7f292bf2a19aa14ed69a55e646111af9533d8f1c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.1-rc","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230316_1678950729815_0.5533990493906547","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"typescript","version":"5.0.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"891e1a90c5189d8506af64b9ef929fca99ba1ee5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.2.tgz","fileCount":107,"integrity":"sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==","signatures":[{"sig":"MEUCIQCiJE46kraSaAo8fOPlb8dxa3uWGdMM1wp3Ff1X8nqVxQIgVkKeTY86vg59W0Qvk6h0PPmEKV+JCFi9FkEPh3rziV4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39199670,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE0auACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUog/7B2x171TaGZDBrvJ/iO7reVqo6aur7PsS9EfVShZj6qeOkKxZ\r\n5Obq1nqYeBCgxB0FeqKxBkfwtXcxzy8I/v6JSvTtiJPkrclhZOLCBhzbtKE5\r\n133kEY2cwA0HW9/fq1/p1Nnil2LguaxQ6wuNS3P4RSYFoBm/w62jChTXgewm\r\nDWYAK31+37hZG9UAZ2aQqUYb5t87j30Kfmz+hDwckGdw0zwXLk1ajZBGkGD4\r\nETR1puSiRRDb6jTy9yNCM8HY7y7xdJtm00xJtCYSlyaeYXfxj2N2ncU/9JjX\r\nDVphbFU3U81my/2mpQPxij/JZ5kxt4hOeytoqmRZFB6Eleqi2j0NIm9FrGV8\r\nCOEKbFVm56WWWyleWPim4v4dtibev6oW7+14T1zba3GLAElIM+OMr2/pgJRP\r\nP6WMdV8aU9jT/b/aUyWpU6jrRY501S1keg3z0e5AB5+woOyEwta4pXxQakl2\r\nrv+1u2BXNLfkIjHCu26/boyCJf1MFjnh+0lMOPLJPNT1Kxud+Q8IJP+8l219\r\nWsA/9BIYSsZvRAEgb6ZWZeEvn28U/yIONsFo9aZyQ/IF/h4WMkPiJpL9RT+v\r\nk5vsG2Wkgl5Tz7FoGHzsyfrJ2BuXlrsN6UlDUyFYU18LIQyTFkIyGQhNvpaU\r\nyzvzRRX444FnUY6ouCwZDNPGBPXoisbFksY=\r\n=kRNA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-wVORMBGO/FAs/++blGNeAVdbNKtIh1rbBL2EyQ1+J9lClJ93KiiKe8PmFIVdXhHcyv44SL9oglmfeSsndo0jRw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.2_1678984878071_0.26064800286576784","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230317":{"name":"typescript","version":"5.1.0-dev.20230317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230317","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f078a000c907db5bf538dc5b59e3f4661ca3ac37","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230317.tgz","fileCount":106,"integrity":"sha512-lR/iU0NE0ddDmcntdkm4Ta/yJ80pxxUh/srjKRy77TUGlSB6AhhuGzBF2Xn6G6odXqwvh7hy5EuqqsoMdNC5XA==","signatures":[{"sig":"MEQCIH5REuhPPkXbhcd16JAr4izUudUywYRO3Z9pKy59aFnYAiB+NDr5smTjlpscbmilPDhApAzpyreWd1aaA3V/Wl2qbw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39162719,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFBLoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmodYA/9EII/8M78w7yIlzZb4Pzh4XYmWttqbzU3Fx6hKSVRgevg4ayX\r\nnbVrVhr/xw7QqY+R9drow6kwi53yGL+I3H+dRKonfrGMxAMbTu6VG+SukWMo\r\nHfYbwuclVREma+WFatdjGYvOdevLvqbyxIlwko1CnfjC7wzFv4hjNCzD45Uo\r\nuFs00MQD032z245BqPOMz/eRJJaI0pTi4WNTeaLKK8X1L4AUQ7H80SdBFPpN\r\nAkmH9mmXfJw5NS5WxGYfQ1hC016JL8XEy+n91wiki2HhmBrn9b6hyky62Dle\r\nhMXD59R9WERnhdLce3PmpA/W/D9Nas/A1lKcvw/mSnuDXBQZmQogMAcf/ILy\r\n50r7b5/FHkj1cDI+KHG1TyfWXSeyw0aUkGHbVbgXnvuUgSxa+8xyEq6kmQJI\r\neOPwMoU2m34SqMZEjOM3hsbUZ1DnpQiROfLyTmF7aOWNaBpJz3c+kez0mzdM\r\n38na5BW9HQ2zZVrghBy8xyxip2upGKWQGnjTwF6DQs1VKTQ7p5kDmzbJcTZA\r\nzmgLRwXtDqEOeWi6NX74y8fFi/Oz77dL0WeWC3sT/kPwKqi1mj7rVikccnzD\r\nUhaB/UGm1Eld5RMeQlhO2Yqrqd/FmQCWuTY/2t4nexHWoCA3tiOXAsBfqgpF\r\n1eCA0xfUJCoVM8ZwNmnsAkdVrps53MYxJcE=\r\n=EqqS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"ba42ad36467506f81a4f77d536354c4cb90c32d9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230317_1679037159998_0.20365411598699978","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230318":{"name":"typescript","version":"5.1.0-dev.20230318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230318","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"868e6a4a5eccc0561afa752a4bddf064d0dc3ee6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230318.tgz","fileCount":106,"integrity":"sha512-9nKzv5Re8xR7NXlaoJUgKJRIuUhaiFxgwmeA+8oEBqGHmz6SxnfsILC/fx6tPC7oSXJqJsBdGMhZtSTGWB+83w==","signatures":[{"sig":"MEYCIQChZIliMrq59TwMbqPalH5GknARDTmh5gFNoi6c8WNqkAIhAOl7ongsJrCM8S6FyaM23dI/Ok2Qju41Pac6x6w5l79W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39175571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFWSTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmql3A/8ClxdT4zornrlSk5lIN0oL9yFVdajeosw2p/wqr9piBE3QvE2\r\noQSG4r8WfJh0F2pFO6nk6uhn1w2EJwqmQ5fA7gIdK2vOSmN7SsbEssAH9Ynx\r\ngVYn5Rhp0+dyYMREx4Nw6mhfaF44J2sqKkURqNkLBk9THQ2M2v8xOVsuB7UZ\r\ndtn3C7PKOgPKbrA4DrycV1xEcv0DCWnPoCVb2pvpG4wHMR6i/HXPjmJPWJ4+\r\n1qRlee3Zg4JK/hKAiC3kX8V3nx+PxibuIvTa7l5nJnPUvu0KcmVSN7judiGd\r\nlXWlSyTdZ28e07hn1ek5kI0zQ/UQ8L5i7XK6VrsQ4ZgW+G85sr7HCSuEkg4i\r\nRfGX0VJn4NaYez+f30GsrG/Ozz3dkZtq5GH4wYN1D2qyR/rpCU73rxNG3BwD\r\nYndDCkk3euCP2lE5M5F2JlbRLrGdp/lS+qTOGTLQcYuLeTCJvrBTwVztB93v\r\nKBtvEvxynCaQXwaScQo1kNrtHaIIJNY57DfW4/bq6W7/x9YJonMIuoITJvTf\r\n7SplW8g162fTqu9unHU5zJjT1qJrMppGkgx3dylMhnLFpNzylqUiwV5xD8cs\r\nQo3fJyIbBpahK8ARcbm/vCA+27pFbFIGA2lAnKH0pAdUPCTGtqKUvYFQp7Pt\r\nHw/7UuU3zNBLfViZqvcz48cPiMpBR229GRM=\r\n=e6mg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"905a0b4e693e8cc13a726ad650b908fee4f75408","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230318_1679123602594_0.8091983692817994","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230319":{"name":"typescript","version":"5.1.0-dev.20230319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230319","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3be37bbe236b4a6e97c5ba6c04b8552033f0efe3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230319.tgz","fileCount":106,"integrity":"sha512-FXvEX/Gu32p9d9mrGi4dElMwScMYxDANO7pAFZclzWTrvLHLWttoL4va+9fWngqqNLa0sKa3pray7nEQ4mqU+g==","signatures":[{"sig":"MEYCIQDQp1R6KUVeB+xj+7yGwty3mP51SfOwgHGL4Q/cuDESVgIhALz+ygSAu9Z2go3wYt3olAJ2vYbretSevgC4wq59dvrc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39175571,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkFrW9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpPbBAAm2b9/AgdWnLBlZ/AVMgTHVUa/tAUZRg5cj4JXHjVAqSSfVH6\r\nZ9wEhX+iTvXnGDG9+HqQrcFQpszq98DyofBcSF6gx3PLVPqk8p0L+zJ9is0Y\r\nf+RH6IxXvAOuIfllC2zUWo2BeWkkUMJA6jHEIq3tmnPYuBB+JFuiEkShljk/\r\ntcCo34drGA8k/d3SVBL6YVQ7h6fdHV9SIAQ4ikLMGITatL1jkt0veQlV9GFH\r\ntEKB1V2D3TWe/e1FoTDhaREQrA+WDRvUCn5Gx90X5dwJcIlabpYJBmRJTCwS\r\nZO4ntV2ar1h/f3CEqvdgeaqhlLv1eYB536PM4xxB0dxTU5WnxNtf3PXVxOFY\r\n1S/NBCBny1V4xiQfNTEw6qqymtdp/JUuQM6kTBuF1MtpiZ12JJXEGxz/QpYc\r\nLikswtmKPXuNz1E3CYgzOJFewWiIoVOEJGzWgy5YOO4pVSBokkDXZwFEtCqw\r\nNx45GcLv6iZTvmzM3c+tWfVXvTp5yBCnC+yNnMXo9h6l2tAd6bTIQ7fIjeWC\r\nerXddZfp/A2cqIfTQMM6mfniAyo5I+Ak1DJbB3cQ3R+mWFxfExziFV7FMm+L\r\nZOMQXr1suicx1c/llPpscR74nDPL1k9oyHI9QLrftL6HaXTzstHZVaXacZu7\r\nemyPlzHng4OLd63hmnBS7ptNMagmxcoa75U=\r\n=Pxi5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"905a0b4e693e8cc13a726ad650b908fee4f75408","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230319_1679209917150_0.8035811939296138","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230320":{"name":"typescript","version":"5.1.0-dev.20230320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230320","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c14ac418e154d6dc6f1875afb06cf166e981a772","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230320.tgz","fileCount":106,"integrity":"sha512-UWob7IhN/k84vqndbUwXaUNuLfzpgaD3wYm2FAKCUjXE0sMn5rf0Z+A8N2glIfqQBnBObLzIitWepn3TRF9Sjg==","signatures":[{"sig":"MEQCIANRguCLI1GhedJFWbHH94r+gTMkKlzTcOzf81x1pa5sAiASfZrQaU2iOoWdtw0Eh7zIv357ZI55D5Z8RAJ54kvDmw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39182913,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGAdBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqLyA/9F0X/r2bKmaPKlDTiMKilE4z7FQRxuPpWZFcAQdMyoMnz1ccx\r\nSL8yQ3XtjsvG6l9I/38yE0ObvAwL3MWb8kipTrP+AegVI5bh3U16XOhLz4IY\r\nEM+mwjkmbQqnCl+FzLExMsNYMEslFTVseOkANdcJREatKUlbhuTLmskx1dh+\r\nRbmVcrzX7hpQpownklcFJHde7x7gMZzm03rIay4VlIrvywzTQhV9xiflGTlS\r\nTyaRyFYlh1kDDxdmbGDPOVB7+PWqgtAxj2aMwVy2UIfCsG9J6pC35NTMy1pF\r\nNWJ/DmyYI2LY2Ldbobp4MJLgroDADLE8QunSS+Padnhpy+xhGHU1hCF8U/eW\r\nhWY8TsRVoxYhjdcUurL7YH63VfzgorzZUbUwURhDHnTlQ+emryQytob2JWb1\r\nKej2UXzB9lrTT/3z6DQJ/JAAPhboskM2acbIRbUACsPzXEG3QNcKh0y9pHfy\r\nC6JgNmsTbqQuGI4tZWCCT4LJJOiUucHTnEevnPoLE8Ha9i/LCndZUX35REx8\r\nKGR2pzkSYX3iJYf+IwkChq4pweF/yTrNNb8crx82NqoqLKpjGf+UlcQq1nZs\r\nHnjuFI8DDUjkeqn9zrPM6UHnOTYUejyiApVt2zvFQv0jc7pLXklpd6YbpzgN\r\njromz4iVpppd/DFallzzqRudY7WXbc3IECU=\r\n=embQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"86f811440484f6a91e3d2a5ddaeb05eed8bf95cc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230320_1679296320761_0.8029356063907718","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230321":{"name":"typescript","version":"5.1.0-dev.20230321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230321","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d9d206960e8629af71503a2d1e737666a19b641d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230321.tgz","fileCount":106,"integrity":"sha512-GFq3xvjbJImoKgCDJEiB7Bsa1wQdu/9tlb8Qj475ydSraETbCLzy+Ao3cqQ+KWBM6Mqo+0b1rrpe2Gj0DZz2+w==","signatures":[{"sig":"MEYCIQD7CJ06O7UieUIfYskrNS8uBxLq5itqFDdAmV6NAGZiYgIhAMYY+Aw7QUlhPl96p25AGa6kGj6KRUGEXNCOgXVspqkS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39168995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGVjvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpnyhAAioQV8QUdO8ys70qVHgODydBmNegXc7IIyVlYUuZeKB12qWmn\r\nzPhw7Ewu+igVzpDLMIOJ6OqERcqJrECct1VZyZ/ry8timoC1+mLiUV9Y2xav\r\nEUa6JdhXWCxt4AxbogwOIR/QAxncLKfL2B0FX2Q2oVE/M8nA8jDcsgna3DNX\r\nLvbCQo2scEgWHW8GpmbfIja2lmWly41M1Mlk737AtI3vB/ABROgTP1hi9+k9\r\ng9a4qTaDMZu6x5dQ98X9PRLqZ8DMWxMTSeBMcyaE+R73382K6gC2iXa/7H1a\r\nDmz2vv/OVnDM+qvdbk6DDQkv2ZvKISjgbxYGi5wVbicj2TAOKSJMc6S+5K3d\r\nIrvpXSTq9B5Sw6ghAWlPqN7AgDuLX1mhTpEfbNMhAUqW2X/IU5KgGAA/pHWd\r\ntiRfIMY775XuMbB4zVCLunfYFr//aWD1XyQt5J+nt5MFgtDOFzHdSqyPpDXR\r\neXmiCO1Oq2/d46CpngLbeFrNTgaCrrAeH2BBVmZJ/z3v1OfOcQ4DGbiHnBGU\r\nkmbLP+aN8dutmwEfCezi+is6k9YfqolY5Dvbd/5OEcOQ/XbKChDjAREDVNJn\r\nYetCVvm4oppm6F8mqSJsAuzAdlz8MoCIrNLLVSGWSFkhgJZqyOe2PVnVWyJk\r\nLHnzA8tZgj93VuzCBl0DnEKQEU94d403bWE=\r\n=RR7W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"f218a562bfb417ecec263fc96d7a7a71abf96268","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230321_1679382766756_0.5978323614104286","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230322":{"name":"typescript","version":"5.1.0-dev.20230322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230322","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"19c21cf16ddbcaebcdd37c8fc3c199af2d5a9cea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230322.tgz","fileCount":106,"integrity":"sha512-sRsSUZOCpLClaHzhRo1ZsoEnQe6+1FMEQzBzgtxC8f9rklwY5H4TcyKoa9wRpYvvJ34Farr8nEU/Uz+hnruyLw==","signatures":[{"sig":"MEUCIEUj59Rz5YWgye9Vbg3oXGSRyCCXX4iA5CLSfqTouTcdAiEAmSQ9sT+/tIgJdsFBcaeeLM6wqyMCJTaLMOKeCo5TWCM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39179753,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGqrdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq10RAAn++WyP7Nid1Rkt7H5twUJdt/dehc3VG7ZwjLhUkcM2kLi8Zl\r\nLm3udsPgj20zcKewqvPuXmqcILY2mRI2pExr9jySch01DKMdivsVDdaZlSKk\r\nvwJ3X0kdvL+JJM893vi3DiULxXMN5ZHCfGUVz3s3vt6WwJ4FmnWmkI68vxt8\r\n+ixSzRycWSobQ9sVnuuXeV0Q6+dOyTp0Eee+YRm77L9vpHIsH54JuJoYTAqm\r\n4WBcjZBYmulk4c82ml8tLja9pVhKziC+Js8sEvgFHHvFT32o1d7UoAyW+KCI\r\nL4W9QdnG5UvpDOMyLpD3a/w8Uj0/bdfxrxEE36iohgsAQiFdFqb8aRe5asih\r\nDn0MImBTJokr9sFGNANzSqodkmbvgYBI6kogaNuy2bM2XRN0e7eiOm8Jo6xD\r\n7RJTT7AE00MlGfIboi8PEiX64yGA0NOm3BWf0PJX9s0HLTOfxp0HVDiaw8Mn\r\nsnbO+Q+r4w1UmEykHTXwLQmt4tPmAn6+GxzLAQMuTyp+iltI/MEvAUhb9d6r\r\nsoj6MuaHNRLOcXHNCwAOzyjhVc3vPba/I4iGUOcOwxPhk4l6ums4jok2biF5\r\nUs3/Tp9+pB1uUGrPng1JvjdDxcjMbhUZiyeWmX4JLNlSE6gE4JjIjd/SYAf9\r\nuSirL/zUYeNyNYyq2jcnUqGX6LrMXu4tEY4=\r\n=aUTF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"1df5717b120cddd325deab8b0f2b2c3eecaf2b01","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230322_1679469276910_0.5558239642087555","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230323":{"name":"typescript","version":"5.1.0-dev.20230323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230323","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3b16613b6ca95a3fdd712ef183da63f8a8ed4cab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230323.tgz","fileCount":106,"integrity":"sha512-C/U2MNu/RkpNWJLPqo0q6ZimJLwBaQkd9ktJOjLDyV6/d/HgVfvVI15ga0UH4yj4bKRY0B8Yoth8pyn6jP+IUg==","signatures":[{"sig":"MEUCIQC7i8qTs2Dy4DJe8zZfm9Jtl9RuGV/chLWsYMyAeCAVEwIgIe3WSURW4RniMbxr4suCgxqJRbLNPPE5Fxi5FsbID2o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39180261,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkG/vUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrQ7xAAhHx6bioo/r8+043smWZ55NT3aX3BPHCWab/6F16GBBdbj46R\r\nXxeZudLYehuID5k/tXZEpbyFhbr3vaG0+88I1YchVevgHrKCib3QjylFYhCK\r\nrt5Vd0h9NNVMRJeuWpMMekgZNRZO979eMVRTW3lKMqYOT7Ys266sgd/LY1XF\r\nkgxuoH8EJ+9YZ4XvP9RyIcyRuI6YuKn/to6LaQ0VNOEy6gy+PdOMZI+3f8Qo\r\njijFo90C2CqUnaajE0mTemMZ/AtXtMp387/ZivbJHh2ycdE5GH0n7Fp11zhN\r\n2L0dG3Z42ekFbIdRGCWJgGAlUTvaL/rnKlOECDmLk6omZ29EjiUlULAzMzqJ\r\nAaperz8L9esmF6J7BArk6jhSrUcRawqGQwJ3miaaXU4JTrnP8AwzJJy6872q\r\nOlrJuccMSAaWw9I6uqU6d0e/KncCEofkeaDM7rBXH9q1Vk0KRGpnoIb8tQWR\r\noj/Zl/K2FtVrH+ivq324PKhgJyK3JQ1zALERn/u4kp/CUXCJGwjjEi6HgI9V\r\nO5C+vG6W/JUMtv86KjqQ4W+osBtOn2rflys7hD1nXsTgKJEEDpsV19CABIKr\r\nYLz5ulTzToMWx8l++Gf49UFX+gdPUDChfzwQz8WoVH6q2e9z/i9ctyLAQZg5\r\nhR2Xcr6iI2rjlN67xDJdNhrn/QOcR4FQokg=\r\n=trPF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"7009c76d00218195c905bb0231033e92cc87fbcd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230323_1679555540479_0.1406258766016557","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230324":{"name":"typescript","version":"5.1.0-dev.20230324","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230324","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"02093796a9569676cfaea7ffa8861c03b21a30d2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230324.tgz","fileCount":106,"integrity":"sha512-DX3mRbGCw2aN4wvFExQaynoBxgDu+X3BzGRdhJFGo+ey78c5Y57EguGA0sDwdGCBDgPb7XO3Rrnq9mjOZbMdTw==","signatures":[{"sig":"MEYCIQC5zgUbMLiyfiRBiNRX+W3MvI2TWZQYz2oo3dAGtJMJTAIhAPo2fkD67wo7OhKdkhM9C2OY2MsltwKjjfdDq5OXqX1K","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39193326,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkHU0/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo8WA//b4QhNBFzZWD3gdqmhS6O1KIB/0ZOzXT2kKQJsY1mANuWpSLK\r\nHGiMfFaxVIVhxj0c1l/RrbODMhX8t63lEF1cIIW33LIOb/3FiB9k1xID0UO3\r\nszuBaSrWW5Iqylq6Kjb7yIw8Xp+9jfqjlVl6b83rIjN4gnUA1vI8moWfiXCQ\r\n5UxHaaU+XRxpxeQop3AAj6zvNzsU+Lzla6DCdC6Moh8gyoZqg25sO84BbICB\r\nsvxNy6qxfE9btPN8zi5wkPRYauEopNDiUKDpKlzyehq/qcTwa+YTuqg8l7ny\r\nj7vzrxD1CJd8SwZoCm6LgUpYPMULx+SeMWe/fxlSzKQWB3cEkP/nPzJDiEeL\r\nlISm8hU3zCvU3mgJNGHzmQb+EX5A1k1r2rFaoqR2OzTtAzo1d/hWUudvj/Cw\r\nBrWrGho3j26KiEbDxSKs0dzbUlIaR+2LNgJGW01o97Tteizm/QliKbZrTFuW\r\nzx4hJJ5ZFckRKSPMncmloVz47QuwtA0W/gi0IL/9/XaVOBdlGyS+SjByUkny\r\niTJH1f8j9/o4nPfiZa9n6X+Ouhu3+cJCsC4Xws6o1R/UnzWOeM220QpGzNW9\r\naAQEcAhDCvLVkZ2kk/9xMHqL3x1Z5GGzQvzsdjl7+BrcGYjgYyFh/JEc31/y\r\nEAJLLxM2NYxnpZacb3lJn16y9urxeEBrzSE=\r\n=zaKr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"24373d80eca53cb2c973c09d2e3e78db1c24ee4d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230324_1679641919457_0.7642293068717219","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230325":{"name":"typescript","version":"5.1.0-dev.20230325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230325","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2fad46e45ca837b15702d470e92ebd6bf7fa332","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230325.tgz","fileCount":106,"integrity":"sha512-otn43qvKTFH2qjwObbWFzu6FJ2RxNTZMs3waYs8Sga+0OFSVvKzmtu/FG21pgjJRZXpg9Y7Z811LQ9g5twXYiQ==","signatures":[{"sig":"MEYCIQDfb3gr2dlyZfVaS5j0QFXSTlEHkwdNxCk0++jO5D/ztwIhAOUlq2p4tDl+UGqG1iqo9PVrED4/BxxaCh5Vx9HrTgqi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39201942,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkHp7mACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoAkw//fzAkkrwnGiBJX6Q8YQIEtV5zm1lDEm5s7TH8HDAcxjLfasRi\r\n5zc+rFIne5vj5N/Ikyyq/BCYR72J2/NOjWwQcRuUemmzE+tcA8Yy5mzMYr+z\r\nVHFAQ/z/PZk3bcZvz7COaCMk0TEBaqzQKchG70dFIV9m4Zn60OuQEgd4R+cz\r\n3cV8F6zspDsLAufKU0eI9FiBMOwUo4NapnZnKHQ6rV82eqE7qt+JsAl5jIYR\r\n9kDu75ZAlUUKrGhbTiKGgGYdwE7Cj0vYcMIW0A6jNtZdgmtakLbJrD+LChNV\r\nlIPdhBYRLeIZhcpsXwoORD4b77HL3H7vVtNj07nTInWKUCdIbrp2q6Qow4j/\r\niTNfP0wFulhWb6g9zAoWcFK/iPMiODUj5by2V5XQ8TcnFjf8HGRBAnRp3du3\r\nb6rSnLGycFd++5IJ6RMzg6fMA7sl+TjCin8RV6lVUizBjkKS71xnWeINqAtg\r\nk6au8WcLrxSMfgPkP+AsG+fxIBGqwOoHocriCYJ8fxvYubukBJP0i0JqRqhm\r\naM2S5Bu7UCnoqpEi1vnd1ABUZiVnbx7AtLAggUP996OSg814EFXMaXosXbjy\r\nS3F2GXRvS09ZOAEVbtJ75dNXvXDnIOU7C9AOLvAcC9iiAnoIByZOxly/q6sA\r\nNxwCfpHbxt8ZGNFcTADFY3IyUtBFuQAvr3E=\r\n=2Snq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"a7a0a673db4f3df28687230c239f8aa2d87f176d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230325_1679728358369_0.5188671563600684","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230326":{"name":"typescript","version":"5.1.0-dev.20230326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230326","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3a9a8410301baeef7519ebd4cd8ada992b13bcbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230326.tgz","fileCount":106,"integrity":"sha512-qyVhH6ncazjP48EMUqy8i9K85BTSbGKdXVFab0+7Srvu9UXjn2Qq3X/eHAV6vVVAXNYHR94OXdqtkD8DhkzEcw==","signatures":[{"sig":"MEQCIGSWOaMy0Qxrdn8cTXnlGc1FIImIjvoFVaED0oraR4E3AiAr0kLwC06XGH1xrTdM+qdvlMQjGk1MUf9z7ofGiadQ0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39201942,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkH/C+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoYixAApF2nBGPOBiqfqqopQGfpitQKTVuaE5TKO50Gr7QzXQCfYHTA\r\nJr21lsF2PduytvPOtCTiytbTprIic/T1r0Lk9gVE/KlTjCEaSDuCd9u3W6VQ\r\npGNFjTSaZ2UJOc6klXUB3SQkagqYsmVvq77p9eJ3fFPUb6X8MT/abvDpntiz\r\nF4b/e6lWDk7f03+QHVi4yDauPGS4D6d6JlypfQdZKkJo+70oIfqy/BHux0CH\r\nqqi2Mc4uecRG5MwX313upmT+nRAWh6aZz/8Yi3iUqmNtFoL/PnWh/yD4hM3I\r\nVwApueYKl/QBahlhsrU39GQg5gO1olMj3F1VPiw8xbiKrDmjUMI+zcDSluha\r\nm1z9tVpNUB6WxuT7/GB1CsN97APHwZ78+LD/CQzgrKUkQYEEoq5mHyRiD0qg\r\nqSaP/Gimixr9WHy50HWhCwpI7QQu0N9TsdHBkuub+q9BzYeSY7J5i+JADj38\r\ndEWC3Y4q9rDeATMNA4TuUfHwdYVoSndPIey/hfJdS6mq8EkT2fnAOWuqxM4p\r\nS0iAIMVxH0OryAhX/pWuPZ96T5h3Qn2yYqZf6R5r/uEi2t25+tfXaI/pdtma\r\nDhr6HNFN8yiS61x797P6sG8iWEd1QpyUlKYPKge8qSeodpaBVl4QR9yEYZtP\r\na7isAduU46IF+qzgntz8rlYSULlqUMY5d7E=\r\n=dMfA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"f64f40d20511d2d2a9eb4fcc1ad6750977be2d40","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230326_1679814845581_0.05098818396952276","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230327":{"name":"typescript","version":"5.1.0-dev.20230327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230327","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"73da3fbe4481c8e9d95c04e3c0c11832d2429fd8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230327.tgz","fileCount":106,"integrity":"sha512-tzeS6vmUF8qC4zFdvos88Oer1oNVrg0CVlIaxfI//pDrq8rur4nIUTLRWRlEMCeLQporHhD+z9sESoSr5GL+lw==","signatures":[{"sig":"MEYCIQDt/iCDzz+rEBsX6kAQvTjyUBQOf5xRXKI0jMd1fbi6FwIhAPleuENWbVk9brOAM45YhRM5tkNZILmKXWs3czLnQXoo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39201942,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkIUG8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmppsw//Seyr42CT9zn8VswmTVS2RLfJrm1abcb+ciL8oYxpjXR2ar4U\r\ntUGkpLV+ez6yjHJWCkVIB0EFsvhV4DOISL6s9wVCzL5swvo36W+hDgBkeBy3\r\nNirywC/OhqAkKkQcByZpGBDgBU5gSzBmPDRUs2tKPOHUcegzxBaBAocT9jcx\r\n4ODaJzhgdm+hCBO51FfdUKOVT6rayrq87jIwrhmGrvJ43M3EDWfeNMD0n0Rf\r\nHV+BqcToVqQVpZqS+cwpIkqeduk931ueO47tCp9k6aeTTa7jKoTJnsKT0TGJ\r\nImrqrX/kdZoqTHbZDjLDFP6SVIjHU9Umjvxgy4mlLmmlFVNU66LS34g7LWJT\r\nVuaA6CXYurwjbMEQCpYu8rjloN8U+Anz1bZu5pKEoeMNF2/YhHIUoBK9GzqO\r\nOWUgqIbHiUwADcWE3IpJ1SZeq+ra6h1dRH49HmV1imiubSMj5oiulA+ZTO4f\r\nT8v/jlJuV7krU4qaNhrpDCazrOtOyPbHaySqXQDpE8TdjouV1AYSDKyI7k9y\r\nr0MR4AcGDJuSp4Nn9+bL0xxW/6UJe0zY0EtSs+k9vHOg7vaA0+OZGOuLxbZ+\r\nqdhjybbHM/KDiF0Hhm3hiOUMT9SjALcgULMqW1XPeq8HzH40RTZvEqxJrUY9\r\nfb54OnUS2twBzL02rQP0CSdlytDOkMB7f+o=\r\n=pFvI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"f64f40d20511d2d2a9eb4fcc1ad6750977be2d40","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230327_1679901116459_0.6999019412727085","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230328":{"name":"typescript","version":"5.1.0-dev.20230328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230328","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00e4f9d9ac4c7c7b17add10949a7b950ddf3f6d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230328.tgz","fileCount":106,"integrity":"sha512-pylwLhhCSsZX72UUJTSD+5DKoEUUKsqQg6w4bLdRVbYVXDCxPLExUayWWCaRSmx9WJjf00YwMA2MXS2z2t5+2g==","signatures":[{"sig":"MEMCIBZ2AM/WRc6tmbJQu07WODjseCO8q9AqjXE4gHC7PBfHAh9m/YFK6ng5FBYE8+cVRiS8HmEUXnMqdBEwzJb7GTYv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39204337,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkIpN1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqnfg//bbIl0K3s2RVDBllq9pc5QGYXDVAb5RG9M90G0ZGzbQ7c+su7\r\ngFBXMF/yPDZ+FEoe+HiTTN5wFn0p6uIFP5wzObBBuDKpM3t3JUtB0eGcR6Kj\r\nGdRvJLWzjWMkx5twZPgXUmznLI6sKP5nVw5u6Cqbm12ZAkDsNHre3FY2xpPk\r\nSs2FOq9zw9WSVMDIG4tqbieeutLqeZTGsD3rmbORAaSOuLcpNZ9+aO9gP43I\r\nvn/6/k2e5jctkYzx0lmyIj2yK4vPqPhJj91nbfW6rP7PMQI50uoFGxq6fkNk\r\na29zXOeYlYjbd4lZUEGit7ubm9Q34XgKe4qAhHo1tByWkSWtnv0kRDncWyQs\r\nD53MpC9GN2hPjNQ76fz0svjOSx76nO/npI+PAjqg6Ij6pc3LT2Kj/ubsmcie\r\nf0kv/KclUgEv+BVL0Vy2LAte+dG0CKIZ6/5+9FjUjv3i07F2ctPnJgEOYyjo\r\n3U/CXarSWBNY0nGLUGyRGV5219eKwKsQkZlM1wjrPkxZJ3P/dnRILE9xI/Ob\r\n/jdArsUgozS9pTz4SFtsYZ6k4Zn8kXrKSsSm6Yu8LPzqSI7qdxIQbCkRaaeq\r\nsLXXhvCN5IuC4igohp/AdrL5LuwApD+HgtG54jTdEaAkgl/CJriBsCNpx+Ov\r\nqhYlBFa3C7qj8jchKqjMtty+nWiljYm5sXc=\r\n=EjHl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"647c587e46418063a1b13bdd6b4758ff90a75198","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230328_1679987573525_0.6046757832445431","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230329":{"name":"typescript","version":"5.1.0-dev.20230329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230329","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"443c6228ac1c2743274b700e9d476703e988e6e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230329.tgz","fileCount":106,"integrity":"sha512-X8tsIMYvdc0uI4lkvJ6cUblH2ut06J4fkDDuIi5oDlpugnPGxB0iHm7i3nQPgSic7XGxUpp5SzUXD7G4PmhGJQ==","signatures":[{"sig":"MEYCIQCnrWiie2c9qfdMSqbqisb8m69KrKASPAIUbqm7waANewIhAPoE3vxZev2OvuIDvBGb9WB5qeWGTkNhl6s7ueYF1rrq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39209575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkI+XEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpXRA//XnYWX4+jh6sS5wPKzBNIoHEGVxScuk4nQjJLzLbvdszetYig\r\nVOqE7VWaIsG9ais16Aq0FkUG5Ae5GAFWUTaTWj5d1bzd2RjD1fR5j5OqMsDo\r\nd1Ifs306dPeY07vjCyrQ0RoETwZO8NGNYixFMtcdhjCOoENVrfjjVTrW0rPb\r\ndNfXEsa/k0Q83ugWAyczI8+vJeu2gjQFfMgx69n+VlJQqEz275lY9cDGQ//w\r\nW6BeRs1wswv5YSRon0BKdQiwsQTODsrkyURVxwJVciSkHpgLmoK6hu75bgEK\r\nKNyHnrPS8sXn7CXhbiAPZudOrSxFiosf9xgJx4WTPszOoCz+undaPnEnSb+O\r\ns3qWOsCraREVbP+XzamCsPQyKYAYkDUpgivt2HysrLYpm6vtE0nV4F2uaEYt\r\nBXl8IbpVBMQab3fIt8X9PA+w/Iaj6ubz7IlXgSh4TbTuTNqcht+nF6HCN4dJ\r\nDfoRP6f+zPuZLOia/sU+xP6gd2iKGcTOiZGbXuSbyOWBHhjujpwGCUZ19ktl\r\nFkwj6ppDKZybLrYK23Ln0vuPtz2I/ad5fZpBlApzIt+AYvpBI4OJoz6IkCKT\r\n7W5cED2vdeCIrcSKgEUdwLhAytDs0rleRzTJV2RYaHAHBCoTBBW0IOJwOJec\r\n7KgH/G99j6t6xIH+pr2wiUGM8J0wm37NoQo=\r\n=eKam\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"4d4d5f2845c6f5153b1d1ba44dca0d92578871fb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230329_1680074180374_0.9232634769242205","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230330":{"name":"typescript","version":"5.1.0-dev.20230330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230330","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"42158d9dd6ea029f506282501c4baa6c74b4090f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230330.tgz","fileCount":106,"integrity":"sha512-OT0b7AxGqaS5WQjXO7973G9L43d/v7Qnxf+Tt4rWTpk/S06KmvrjnQajzkk2IN/QdKknJLuRLT5HwzbACzSY8Q==","signatures":[{"sig":"MEUCIH+jrHLE9mp3DJdJnWG4sNJ4l6uw0gYZT47+zd7uqRHLAiEA5cy/KEpE1j70l/Wldi8CVlf1Hrqj1og3nxfa9eVNhzo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39210458,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJTZWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/Rw/+PHmXZH4bwzyyviCRmKi38TGxWJ3oZaUWvVbOh6vjSm7lXJ4N\r\nsOzJyjmBquc/MyO48vNaasgQ/EQ+g3KIBy806LD8kEKRA9H6FwfhZ2OBqUuZ\r\nsCVDh6v0Ycm124lZCwBBycbdwSa8hz/G2XQ8oJv80RyBTXgSRP4IVFjNuVEC\r\n1ED3SxLBm+F8KlCbQTrshKzXINJFI7FF94uyLcZ8lfMj+zeCADpQalNVOo9Z\r\nrcxJUnJ4lqO1PhsaNwzWmi0n5k9qKEdpk2C0lEURz900AWK+KGkaqNyFvK2K\r\nST6zmh7y1gnDEAmmv0Jhc1m0TDi8gfnfpdn8D7NZ/EhdalbDYCQWZolSD4Vv\r\nzSxxfaPDCrgUJHh3GMBvPGrgUmqTO2VWrL5qe9ncjaU087lAFD0+MariK1uN\r\nDq4cBsWZAfYKY0bUh5XROUS43RiJKMX408KCIOZbxwlNSUeU4o1lDR8n6jyw\r\n0mwS/sm//3rwxNqSMU8W/KGYPQCFB8GgvOigguTAJLvOhwq38DzNCsufR/QK\r\nHbeJWpNF57KYaUb7sTRYjvdzAhv3ZZf3J1N0rIn7DDyOBZO1Ek8Z3yrJPTS7\r\n74kht7p4XQ3QdaUXI/HejKec1wQSdFI+rHpWrkkx8az/wbTGeB73Ca+MLqM1\r\nclsDQvzXXwFij4q71DrsFWWphVfvmRVJye4=\r\n=kCmW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"7bde5efe9431f6b7029a612b71a90896a07444b5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230330_1680160341676_0.13180873234510204","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"typescript","version":"5.0.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fe976f0c826a88d0a382007681cbb2da44afdedf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.3.tgz","fileCount":107,"integrity":"sha512-xv8mOEDnigb/tN9PSMTwSEqAnUvkoXMQlicOb0IUVDBSQCgBSaAAROUZYy2IcUy5qU6XajK5jjjO7TMWqBTKZA==","signatures":[{"sig":"MEUCIQDmT8bjRosjZjk+UEX/f7teG8fvg9ssFM4aQ2Obr2fcvAIgHBdbronyWF7dQgiQi1dZOaQrw8uTn9EIK0fUwz/LUXs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39202362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJfZuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYqw//SpUiibQroxSbxo/MPTEAX9JRVPntsIr72POYUWdbLdhaemlf\r\nRIL56wQuHKeWX8jxjbv4y/GuemZZ6HUv5YNxBfKMJA1JBREsTsFz9TKTt2n+\r\nO8aUF4Ej3IJ3SWDPkxUzk5PF1dvHfJhHlKHIRjIInbTPWaidGFwxpBKG2+xy\r\nNdwhZM32Aoq+6XhFtbdZ5c26BrVqo8BF8Ql+CuN5pXkjP6lkPpJvMTijwDxF\r\nFiOGHhRFB7rI3/3JSrXX/lwyBiHDRSQPkArTV0CX8+APspKAQkg/xAfaB5L4\r\nm4/KbMse74tqkySiQBVSxiS515qCDeTbsj+LV9t+e0K7bR37vSSOvL3EWrBm\r\nYXWWC3sWzE7ove49EzZlWZyKkTvk1pgeFDv7w0tmajTGPHZk2E8+AqhVe+r1\r\nnexxdvPnjJVg6DRfES+ge0DbL+1aiwN33eIpagl1/TK7iGoBSJ2HFG0iHFEB\r\nd47ciUcF/rONQtpLyVMRIGQT3IBlx+gCmYtr6gVmC1ktxe1huNtXdVGuaGIQ\r\nwvahlk01SoMn8Nwh+y2EGo/pB/+HmI5r+S7DZ8SWMSuERAFrB4Aiy5Y6FOTe\r\n2Kg0bFzm58cDOXAMa3U1k4rpLaWAGGS7CUuAmmNWZCK7Ba37TM+AZkXiUUb6\r\n1ejcooUQ1b9qZQhPPskek8AbzRWrk0KhcJw=\r\n=Jtl/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-xv8mOEDnigb/tN9PSMTwSEqAnUvkoXMQlicOb0IUVDBSQCgBSaAAROUZYy2IcUy5qU6XajK5jjjO7TMWqBTKZA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.3_1680209517869_0.047058812313354625","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230331":{"name":"typescript","version":"5.1.0-dev.20230331","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230331","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"81793be0b17057a5fd308a8fdd834790a483f5c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230331.tgz","fileCount":106,"integrity":"sha512-PLypvuK09nEU9B7OTAx/4oG8foaYoeDTCBYlypMo5bF4L4MN54uLTy6dUwHdnw0QkTl6gjFKZQ4f/dUSZV/NFw==","signatures":[{"sig":"MEYCIQCTK/o5wUP7PRh08LNjLMsmfxym7gWEIyvQzaFa/zHTXwIhAKYjVPQ9yTAXxe1K/WBXCpYFyf4PKn7Jky7sByUWGfHF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39210097,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJoklACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmprAw//Tk8osFdnKS/xxRudVNydCXOebu98j3K//x57PvvkXveeWKW3\r\nenne0iYQmLu7LupBtWW8wj4qaNVd9tKK1LrhqFGAvRZEHwyi2pUUrv9aSRXv\r\nvKITUj3t9J928N8IoCypXzNxulEAsyr1g5DfCsybV2+QQzSD6FHzAoqlAqag\r\noE10LYPzf2rCQVymDUYvq+hhO/7G2zNk7hHo3WSCsAAyqvxS+TzZ1N2e7dgX\r\n0TDmMExvoM9oadcJnC084yOkF+JFxHI20X1zREBYe2k5mZgMjFgaKedvmP3X\r\nmm54rVwwIdnUJx9vwZdsU2z7J0njXvdrfAfLaKaTLd3IUDNh32uu31VaqiIP\r\nWjMCwnDfgRlydJYbO3E3WSowh9rcBJLYBWjp+6Q1+j57CuTKYsIoXDsH08y0\r\nRWBTyh05Tc91ANYjzI5UEFWFoCN4HiI5OIfdsJvW4sCKX23f1yalikv/5028\r\nABs3Gjsb8pmZ9gSyLHfyX/lRavot/dDjN6giZFGTUfcvjRjxInmyj8rM2V19\r\nFY9oYVCWqzZBPzYjRIjUv9v+JWD+0p3DhQiCgUQWScsHVSQRrt4/RZYe9eA3\r\nbigw5L/bXyaj2R9tAUR2nam5qJK484jB1uvF0KkVTyjgmmwWFbcSpcfzkk1Y\r\n3sDccUbcJ32o9GNFBDOOWJpaDp7xxZ7qaws=\r\n=Nloj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"13c374a868c926f6a907666a5599992c1351b773","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230331_1680247077165_0.15440097538917108","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230401":{"name":"typescript","version":"5.1.0-dev.20230401","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230401","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7b4ac44cc2e3788bfae70fe8e2afd0fa2fa7319e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230401.tgz","fileCount":106,"integrity":"sha512-8rkgjswK/GejHMcnHvn9hGZHollSLEx4LSoVdSe9kZygAfxqwf1KymVtWF4Gs3AyQiKTX9oDALvgjsgC9V/U8w==","signatures":[{"sig":"MEQCIBnY5e3mOJXFF5cqbIjGt0Yc90Ga07d6uHMSHX918rzNAiAcP7jSCZZLKRHaTiAxdIN2m39hYFiHAIdsVZlk1wyYwQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39215122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkJ9koACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpKDhAAkwBb+TyOjQjYdfgnkzwoQFkzVLlq45G2q0uBmg4UkloYXDpy\r\ntX3EBA9kNQ5wXd3sMAefyoKyuA3WtVzNSC/B3Mhw5gVDh4IMTtT69Rw+2lWV\r\n5AyZLnwBSpL2NDOrMmJzVKVvkRcN0cLRgffqtT0u+nuEECr6onjp+WzVJoPf\r\nIqzViLPkgpt2pYagCaNqcrht++WXKXkKTyhgTASr1COjGg5pJMXUPm2LNjP4\r\nUG02Rl5APSOs5krsi+ubxTiS8aRNHxZGzTNfm58muDqrLYL1WvEThlOZHGDe\r\nE0dspWWOg5cfhPKz7qsbA1qp3Hl0oHPk7vG32qcxqvVWy0IagbIj0KFD0o4V\r\nSyZotdB1R781zNt7NVl3A4klEzUBZkNLZKlNjmJAn0sj08vMIhGQrb+0GV1C\r\nOMPhJWOPO2+t+BVg9BWOXexSTnLFZCMNRu8Lvc9+MoYWcM3yMiTKyIemF5I5\r\nqdjjhsNDsntaF9ro6XpUMwwAueqVX0BWvUDneHfVYxr+M2XB+ePjRXsX97gg\r\nRJmrwAhgqIjRFbj3wUc8hStLtVKZ2QpvHwpnxq/rfm40ZreZ1EGE7nYXFaaZ\r\nnmF26WEbhLHehOCz+FBkkc9l/tnkK8NOYHvqyg0olU5NR/nA9nj+dPoda7VU\r\n43BvKFJkO3eAeswoFWOayP3STFmQUxKv4j4=\r\n=oxp1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"27d3454f07cb41a24275d7f1de07621b8217f739","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230401_1680333095614_0.930546808350746","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230402":{"name":"typescript","version":"5.1.0-dev.20230402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230402","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"16b098c94cb05fd7232e1f09583b25c42f83b84f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230402.tgz","fileCount":106,"integrity":"sha512-YivJhKi6iTmS5qfkSuv/p1NYZtlQLexIHIF25kXxYkpjcs6jEtbLEctviQYTrzGVMq+R0QCTRW5EQtp+NLwtnA==","signatures":[{"sig":"MEUCIQCoaI7o8msAtr6xAjg7lqNd8UqnsKal0F/sDs2+xqyOKwIgP1bojznlu6T6Y8f9VIe2tx0l130Mzs1utq3sO+QCXds=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39214568,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKSrSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrk/w/+P2+y73oxSPaL88oYwlbzvjKo6tF+Ee1ZyG5JFiEqvFKIVRXY\r\na3zpa5nY4Z0ngvidoXUrsVP+855SAYNOZR3F9bhSSd38TZxnXp0mk4KsCIdg\r\nT0l5XKDuE7EwNr5SL0A15c9APN3gr/rssFNMF8YvJBndHbS7HQaYXzM/BFsC\r\nZVpEzGGx0oFuc8HUSrXGrLbeLXOo4d9g3KwZ/Qv1JDMHvOr4ULDB1O8ncrp9\r\nnXE1xQlB91kPk1WkTka0iTl5BZ4xZPmYtipx9KCWGPk6z6IhFJ3/CKMC9gBA\r\nAdR2HHoz64V26sjkFYniFAC/yUMtCruSTtp1sXeIPrVyjJmeOjACGwzUBY/6\r\nf9tOc16nsz4tXKw79GaehcWrnURL0rba27TkZvN3ODw9rZlIoPZOVDrAnqD/\r\nwEHiyvlzYkIXIfbsNej+bFiV3nXRW+2BBNXvLj4uel7b4V71jq5ZpCKxfGpx\r\nZShkbZ5KVDNqTA7nR4GodW9Lec3ZgVC5LzPkQhKj7QvkoHgRk5vQcyN9NRJK\r\nSXY4LChRyj0jkMp6kt+9X7gF/XM68y84x8CeoAhfMD+vKr5WUboSgw7M027q\r\nssBwLIcKijs30Ojg56y76RCGs/q6SgKxEyI3MpZ2SUmuxgUttPoJSB/p9D4g\r\npbn5jShIVblgCfziRMCgTqSrEGdLSsbg6LU=\r\n=Sp9E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"21db2ae9a2cb8ba88f9b10ac11d3bbd928bde3b1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230402_1680419537748_0.4498781389699904","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230403":{"name":"typescript","version":"5.1.0-dev.20230403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230403","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"250a26801ebf0c6e7f920afea45da6142b28beb0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230403.tgz","fileCount":106,"integrity":"sha512-13wAf5PQCHJI5dJ945XBEp+63KzXWkazC4glwfzp1ODLQYVWUnHA6trbCpsMIQfvmiaNmzqRmpSrIqaWppST4g==","signatures":[{"sig":"MEUCIFTwDzZ+O950tDNU8kH8OsRj6PvBfWQWpwv0/bZfLY/9AiEA14OQZVFPvt6W0tKkfiUrc6c2XiW2Oe7HniPzOAqAiJs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39214568,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKnxCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrzGg/+OmdBiOC16oK4J2TKjV9E0SycCVK1Lubf2wfnoNFrJBAPJ5Em\r\ndvqF/tntdLNSp/wtjl1hZaRm1N+O/X4GQLkSVWQn4orms7dTp7VR4naNCozM\r\n3HnNJePTyVu8spkQ9dcqOHEYg2chZMksO7CoGti/X0HH+FILF+2a8RehxiZR\r\naBSxDQVDkE/QM3mWU+WoM4TFI82OvMLNEYWNNFt+tmtMUPFJxmiZ2iAcZeSh\r\nhLgInjhMpDsRZVGAobNTtr9tz3zl+1h327YJxn+XNHSan/VEmT5MWGvV8Wnn\r\nVELRcENTjHCeSr3HFUgTbBFxXAjX2DiO4K+v+6eDDVAIwyaqOyI98RizRr40\r\ntv387Hwji2LRdmY11u65E/yIfGARx4LJ6XuyFTV6zuRpy0CeqTJYGMQG4+pS\r\nYQyNYlFgTP2ABXzken6i9c4yyDG1iQ6ZHFlxrBowwtvcNBl/CffBXHBH0B2z\r\nG4WPFH289M8CcpEQaaybgLjlVQ8RA42emACdnSqsNxX4bvf7wEhKlbCHURoT\r\nhYqadmdPcOszBknv+qpFA0On7N/4Q53m/w3h4SV9upXftNPC+V5YPkmSUNqF\r\nlnVCPSOkrcaQb4zIoOuYaNFSir92HbxGSnnG55ucWJ2sWyXOs+uej0KdrkxW\r\nUq+Z25/4Uz46xAUSt90t1ZGk30vpLah2kcg=\r\n=dOtP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"21db2ae9a2cb8ba88f9b10ac11d3bbd928bde3b1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230403_1680505922321_0.15381450766331883","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230404":{"name":"typescript","version":"5.1.0-dev.20230404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230404","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8044739267d17e5d9d8963785b74b52005d5a448","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230404.tgz","fileCount":106,"integrity":"sha512-jnBojDBCCoAxsmxh8bjH7FHFBsGVOFOcPwfGhZ9zPnh2/uORifLcsKRHD3DI2dM+6Y9wISlh+cb23R2BQR09xg==","signatures":[{"sig":"MEQCIAwsS9XHcIgKAURboh7Yt3tL+uMWJiu1GfupRhr4x0TPAiAaSOjF1/ek7YLpddWciJuK4XKR6E4M+aCcII5hfHi7+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39824101,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkK85yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmon9A//Wm6AKtIeIvobfJv5gjJZQnohvHYKTRX3kAIgNsodFDi81Jai\r\nUxYA2Pb2KHtxkxjIXal1FZq2usPSANszCWmG8/yHENSZtAOVxOd96lp4tQsM\r\njLD4bymTi2Cm9eFrQ7HdxTVJERMDibR0ez0xA22NS3uEDtXTC2LZkztfpJGx\r\nhah5UfdqSv2jqyew35jwBofIkjywuvnv+y+NErbvbbbIRMoGebTEjudYg/FI\r\nHM+imJgZkTOaLYwVe0SvTha1Fyvo6xlfwrpv21Mwp+6vEIS/wDZ+YIemIvBx\r\n7oidcDrA9CKp69l1DUFl9n+D6JyLwgIiB1C0SJgCuXa2WAP4KEOg6ZkcXBpz\r\nKRBgmgOtDC3wgS1YnOcmqmEC+L+634QX3I+YB9v2ZUNKQRqcBwbRrZHJehA8\r\naOUL7V4bJmAvrRbOU8E7OXCMTcGRhC6PsSwYFvsIvnuBwKlrTtDEmWM57VzU\r\nlW32DRdpshOaxg8i8tdXExQpS8OmKr4H6kKqFA9I4krGeV8m6gCHJq/02l9Z\r\nDW+pO9J3U9BRSm9MrR8kY785vmLOFgChGu/ozgFzm+uBMYG8kPJlZ/S7IYvf\r\niIGuYU0GzFmD97J1AWzSR+TdR5h/MNdBJnKK6vuWChLx4VVlgCBGcztjyWJM\r\nkY9SNSJW6p6KEIdWrOtYv0oS85iQmZrshZg=\r\n=Q9Tb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"a280cafbf85df16bcd2f7258f26fdb85615b3c41","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230404_1680592498516_0.2380812223791151","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230405":{"name":"typescript","version":"5.1.0-dev.20230405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230405","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bcaff68c2e2ca446902a1206ae6f73561b432645","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230405.tgz","fileCount":106,"integrity":"sha512-4unWRVmR6URHndao/lK2XCSabqveeczgOSGNNQbfZW7Hu4b+YND5DlpVQOL/Yaz9olB1FgeZidZwYnTQbOXc6w==","signatures":[{"sig":"MEYCIQDNpa2nThMN96aTgoH9WGFroftO64rerzfdD5Labt4OOAIhALB0icGOuasIF6CR9A0ZktTlBIfHqOoO2wA4geBG/zJN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39852296,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkLSAHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmojIA//YpOolUMsEsE1zYFKlkNLxQoR5RGIFUyAfmZ6KNB7sBIRbUFF\r\nLnm/x/s/b/ai94yAXfwQQpZC5Lw1AwBmoiwv2EoP1pig4Hz4D9e9ep4zm4Um\r\nGyTgw7kGPtthCsO9PxFi+Sc9CNaupuLqxn1Qj0y80jWq+ttHTYT8ifisWlm2\r\nlbTrexEcZQHZFC0tgQRygtSNqf2DjCN8ZS9a3Fy+dN3m6c7JDK5RUyTLHWo2\r\nHFvppD4vqLDHgL5b0j4y3Utk/CLqtblmPlkZNB4KDGw0vyMxp6pKlJIDNUbC\r\nvDuyo+m726yGKpjpDft8xJgElSUCvIRI0tVQ7KCigCdO4uKZV3oPNZFBDcfb\r\nI6YSb9X3WWH+DVFHuvsLFYFjK82EnezscyzmItgV7IJCnt5SprR9nDnwb3Uf\r\nUyFypLaZe8KwUaF9Z8kQjArrSyls2l2wYoiruA0xlY8YWYNu6LEk7owEPBgo\r\naQiCC81VlPJ7Eaf9mNKn5ComNbV5dq6xd2+4w97qcCyJa8vV55GZHjgPJYIQ\r\n0Agzk8HECmDxQY8pURrmtQz2Cqx8BObgL3amtCW7TLVRiqVKYkUNTvahLjMs\r\nNsWRnk2ArxjwLUeGJQMwerQdORY6560T+wNlZlPVY5q3MQDRWYI5THXbl4Fx\r\n+h2G/52EWdHJnyNL+dC04ud2xucsBgfgNJo=\r\n=dioz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"e83d61398ea0e4231e882121dd6c6bcfe4fdc9e4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230405_1680678918736_0.8197654612176317","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230406":{"name":"typescript","version":"5.1.0-dev.20230406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230406","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8543f33721e4ab4efaaad3be6028c0a9d828a528","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230406.tgz","fileCount":106,"integrity":"sha512-FYnJSNhyGIzc9fCHcPTS/YyboOKfchGpKhrDIcNCqvODooe7BNOWGx6sjMu8xTav8E0905iuPa6TOueq/C6gxg==","signatures":[{"sig":"MEUCIQCITCrWqqN05bEkytUnLL+A2swBk6EwzmLc3zfWNB1PUQIgQTGtS95Pny7UGjS/kIvl4lGM19iUX6P/sWIpFsFYG98=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39852884,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkLnGOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrrxA//b3TKgDF7gierJ1VeWV7MBVFOZhbXCUJ8cj4284grvSY3qnUw\r\nrYRetBKraj1Hf6xxkTG4VgxvknyV3vaOGIZ1gzyxJWC/Sxdio6NAxGFtxcqK\r\nlwF0BcSJbY6qnIhr1nU9fF2kuQ4yJicMOO+cIaeVzuFFdb/DG/WzmA0kz5dK\r\nW66W86KSH7+IPuI+yZWfr892Dta6an4sdzCM4C9l7WOiamDi0vYJ60IhTYAJ\r\nIs6JiWbUnfeWsW4bB047iy+PZ1I2Z6HXD3CU/ncCll5+70GPP1VCPjiu2o5a\r\nV48mLC1jhD3A1TB/8oEooOaI5LSPkxQraiCyhZlCE9EfT5L9BCq3pU4jmZjl\r\nED063kxw9/g0tuazp8kHgm9ywM43poYE//xrTMZQ2So3JfNv+9sc23EFfQWz\r\nkx+jvlItxIr44IincPBJLZfXwzgp0yVdR20RzIBMhlpA8ZqcKd7g4M25M9Yb\r\nlnkI5b9ikDMm5bTqhGKzmX1cYvLsfK3bhqbhl7500XEt06xtsYd2gOMitIHB\r\nW8KmW8JkLU7DBTddpTGHrNk6PdcyYleflr6iJ7g3uiKTDjDeWOZpFRzra1IJ\r\nj16Gh1d43XypzqTt09vRgQ9jR3kPc0oceQCMO+2+fFSWsNFMo4Iwg4LasrfE\r\nOEGpPIrR/cw3v3LP5eEh1F+VHx6H8p5y3Bk=\r\n=/nyu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"68d8be4f1d89d94a543d93fcedad17f3e4ef297b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230406_1680765326098_0.17324278948405092","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230407":{"name":"typescript","version":"5.1.0-dev.20230407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230407","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"974cf6097ce69df00ee80b1b958fa4aa698d66fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230407.tgz","fileCount":106,"integrity":"sha512-UoqoOW9TWlQcxKiOcDSY2N+m6YgY0jBSqDY5NC6xUMHPifb9bVe5dJI+O6cv/JFJQEqX/183+Z2dhA2l/heuBw==","signatures":[{"sig":"MEUCICQRC9BYT/ID6Tj5SmHmZA7NY3+xcdpARp+QSXl5xLzLAiEAqFboagOumaYItqxSGcvIk5uQbr6h+muZ2oRITdNOjF4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39855593,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkL8JcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmolzg//dQPguNo0q3BFNdOerkQ3V97sbteoe3t4t+fO0yoxOcwv76pD\r\naHo2I3yuRHiIBjZm0NueFDS1L8qSrSLjqkzoPN1FkQWrxQ5nCU1ScbGWr4l0\r\n5cPM3gkuLu+NFgmD354DNd/37EVfJjsNDTiyGEwI0VrpcqB2JpxXVB5rJJyl\r\nKWPQuC4w5Kr+LV6gTB7IMcDwGkjpPq/UTuJmCQqZi37dGZc8Y0Evwcns9DV5\r\nFaK2fDdv4BUQSxmmlxKqxSK7ORITmxCNM0WI1OJGAGEIYpHdSvWJu8DVL+js\r\nB4XUXS+RVUmZ8Ws66Mo/Ot0IVDosDTIbPHYB5V39NPTEeTaB8Q8nIOof9n5d\r\nJ7iLNJmMYhFbb/WShNGv1bxcKOxN2WL8OqPGpjKJp2LjSrgtCQEPP9FY4D4c\r\n6J9t9SsyJR2yNnBn77Cdty/hfL3h1pc2xC6FXayf05/BJVYi9OASNpO63rJa\r\nYhXlDZ3GV34G5brXT9ikda4NftrtNxAll9ISFs+lqIJTFWddyeFPJTpC4/ul\r\nx4s6m9uwAvkaAHy81iNYFPcRkncvdip5zZjryYgx9Om5MsiRq7k+ZAZJCED/\r\nM5UlCem0m/aYZ7LzEK5QnklHjZW33q9GM/PAnNs4c1DvXuwxfpPHVQhRld/d\r\ng/wjlpCPIa5Tf0fK8NH3k0D4P2tl5WfeyGw=\r\n=Gv5u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"85f20246a4a2b424f7d92b463c20886ddf7488f9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230407_1680851548431_0.6451605550471631","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"typescript","version":"5.0.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.0.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b217fd20119bd61a94d4011274e0ab369058da3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.0.4.tgz","fileCount":107,"integrity":"sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==","signatures":[{"sig":"MEQCIExyK84mHVb8FU1ZCFZFc8zIrF+zCoIkSORAEOGTLcu9AiAtz3TpnnFq4GiMIMzVkZZk/POGsfPmSVl1ciL7Tnq1Pw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39203145,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMFhZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqagRAAlnKX1yECZbM6IgOa+rF6OqCyg6wcjlIwAY6enELiWJmj8WdF\r\ndzDRJEg47BggE4BfEEc/OcU19xtO//CNLvpc25OaMFQ5/NMnKLTV6/XACIY4\r\njCfky1W69/89qrzBzESy+7eU0vZfdDqOl0gablpU1ui4J1MDjWk6ZwHmApxV\r\nBYt1e4fpnL0qC8AWipwn5AmIo3ZQBoraWsA/gWu54t/Q31KwRnqHE+7hpV3p\r\nxTklUcvySYV0d1ztvwkHpqIqclVO0sVPpLCdATSGLhZj8G0jlXKJIM8XYvWR\r\n0tjb2F+bbwtec+mqECowNgeNHv38U0f4DcIvqCCAv4j2EV4pDvi/m5PNMYM2\r\n4+0T47lKtLRxDSn7HFihat91dg3Oz1FGlRtPuUZ5HmNRUjpkOtaT2yCY100B\r\n7pGN1ejz9HdseEcMPpbjb4lp5By4no8sdnEj16oHzek8E8Bg5kqAHMg44ryh\r\ncwKit8X4UsX4vvrIOI2NswQXpMjAZjh9Ic/jwgXIhRaqziv5IyViLFdXLeJW\r\nkcB/hVyVBlYYjj9eFnUx5WriR5ln9saM0mYuOKhK1HH1xy+GIXVRiDL/nt3e\r\nA4Oot6HKBHksriUA2gOMvVxk1YwOuSEDpgqrBq0k2Ty1X5gDmjs2yp07ygM2\r\npaZZy1hjLvERVxvYQSHTFjGGAlUcxhmD7gs=\r\n=sCWK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-cW9T5W9xY37cc+jfEnaUvX91foxtHkza3Nw3wkoF4sSlKn0MONdkdEndig/qPBWXNkmplh3NzayQzCiHM4/hqw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"5.0.0-dev.20230112","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^11.2.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.0.4_1680889945183_0.2610226963114304","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230408":{"name":"typescript","version":"5.1.0-dev.20230408","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230408","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ec322ee40547b070fd271d96e1e06b49fd1bce9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230408.tgz","fileCount":106,"integrity":"sha512-pgfENwWjHj86I2RQRJ2UW6OzdhiIoKsyTFgHFh3hdj1MWgDZxThOKWPDPZiqimekdrJN9gsPZeoRbMzyyHC8fQ==","signatures":[{"sig":"MEYCIQC1Dwly8QtMtJThaLBcWgSPvZmwYfeFUQ544MrZ84pvuwIhALNosMREBUnMQV5q7Ru60UnGAupuKI8O6b3/o0xQFLwH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39913867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMRRsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpyTw//X4NKoQ5TB2ByPWozEq0VFC+DTzPwnfk03rX919u6mDWL9/G8\r\naso49+G9N4DmztlUZdAY75pftew4pyED62b5QV70NiuFjkP+gRCSJXJzYwFk\r\neJ6H3hpn2AWpA3ZgMw6dUTYg9vp86X/RG4Z7Rbz656c9raOqgSQrtNR0r/4l\r\nlFqg0WikJtJ2F8aSCBLmMfxTZnNFjLFvqQVBYk6YdOuAf47oXGRL0yzhdTr9\r\n4M8z+TNhj4bDY7eY7q5Dr6GFLRxrPV6I+YO7mliZsv5tbgkVQPQ65El7XVuQ\r\nuUXAOVzuphR6uyglr0XLJ6IfXDwq42ieopBW7N219RzdyHD0tPdwEuFaT+BU\r\n/bcxITnBjp4V923oy2HV+Ih/B7DGYw6GUorS93XwBQlGtecj3a/QtHjOAm3O\r\nNJ3N1IBPb51TErjqZLt3Ika/u+jKKxodlSGxL/cLSz15MLAYlnakrfmOJ2mb\r\nP9T5GHnHr/x4zoLDzaaciRulQp0LPZCPnlJ7kzrNN67bZOh/jLtzFmcaJ0GQ\r\nogqOp0L+a2Lc1ucguBjkMBx3aLd3WuA9u1akNOnzmxcOvmFjTPGh7fX7I/OK\r\nCvAhZk9J6tlhBVwWHYoyY3STLBEOBrXhV4Wz5HjrNTIbWdZ4+WD6tthf3Z00\r\nSIYjeZx34DofFNByve4YqsOK0VRPjy1lwCY=\r\n=eblX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"c61abc9d830c3bc767b42a50e7b8adbba4bf13f0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230408_1680938092387_0.20309527110148062","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230409":{"name":"typescript","version":"5.1.0-dev.20230409","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230409","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f920a861f8a30d4c021ecd12d60e378478f8e01","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230409.tgz","fileCount":106,"integrity":"sha512-97xdCsU+nUtaHW7mFi7x6KfRz4ragV0WGI/Z5uoW0pelxP1l6NYM/0VJ3Gs2X8fer09TDflGF/oL8k4YR9eroQ==","signatures":[{"sig":"MEYCIQC3xREBfdLHWZyqdteYCJ5M4psCKRFl0OkAn9M2xxGP1QIhAMysJ0eJNMLvgmO8Q1MOglXU8PW2mrzcOEtJIzy2jnWY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39913867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMmdNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr/xw//XK0pvz7hpC1MWxdMZZoctKUPRuwoevXKJ4yrThRLpbcVt5lx\r\n+i4yYGa0ZHh/hIdRsHS5YqL0Hpc7K9DjeCwpvCKx/A7vkZI3UPPKRXDGRSF4\r\nAiGjkfcZqef+GnYd/8+4EgQSyGArlZXbI5ird/e2m2c5iDqhGI7My2riUFVd\r\nQmWYhgFzL1AUwr8jh/iN6kLtgBC+JLZK3oCPsGU6IMs+NbyRoJZmRiBMbtv1\r\n13m5JCT2tw7fJUtWU0RS8+z7foP1O45492d9roG9Cn4DO5FEwsE4/5Iru6T1\r\nnrWcETow3Rid99ceAJKLddxYuqwlyawQQ6PHIrqgLtUtuNssQCfyIBd2BX71\r\ntwQEowkI39R/EGhT+SL2nxIX4FvbweKJOhNDCR+0cLfqkG08pACAFymiKcb5\r\nFk8bYyDb9gTeKX+JfPSmrZfv1fvQAAYmrUEz10R1EDc3DGsGbABdrZISE2xk\r\nvaIxmnKDUX2BYnLt9+ATl2xXZRzTafJRtFtobzPjvTVv2ZM7ZhhwzGSDlnNv\r\n/2KfdLy0UkFSaUSQX1nqIaqXmzuYJ2HcTJ5Vi+qU3r2D3oTb7DMStEynPCrO\r\nHkWNFsg5f8K79c92ysLyJ9N+YFYKIZJtkC6tTdE7vz3DFMewXbQgwU95YCgh\r\nZkaE8p20nuXtwTylkfL9LeT4M4niBkv+zO4=\r\n=Wn6s\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"c61abc9d830c3bc767b42a50e7b8adbba4bf13f0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230409_1681024845037_0.5912590745695747","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230410":{"name":"typescript","version":"5.1.0-dev.20230410","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230410","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f5ccbb6629c3eb817914c6c2ffed75e5c100ad11","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230410.tgz","fileCount":106,"integrity":"sha512-7aQS6nNYt3XVJic6FBmnxasor6MZFwi5Odj0Z0UtHode4ID21KgCjFgJcdtiWrmSIZ/PLfrp6QiE179hwbB5tQ==","signatures":[{"sig":"MEUCIQDjnUDBAdyt+rHPhq/PYuFV8je7GUJjFsg5ttRL02rI/QIga0X3dGvqCUFMzlueQTBcNBbAEtd3xYohlFpRsz67AR4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39913867,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkM7b3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFaBAAl+LFqCSYV3ngmSjas1Z1b2xGyKldxuneCbc2nAzyBo4psXrZ\r\nzpS5c7h3ZbiVORAeZRfLK7FDG1jyirqb/jkLlncPqz0p+n5KVXuOT/OQIgY3\r\nRqlWQOpkxvzYbDAXIm5MVjaFFSJ+nnSZTRs2Bawi1cVD0nGF9zelHO/8S5Ha\r\nriR3WoASjD/eiQXSD+N/Ym8WYvSVuyJKzN1kRKJgj6yymtYLIg1xpOFqHLQk\r\nEQSlc3kJQuIHVqfK5WJ8Uz1h1v9RE8F8kvUUrs53W8W6YbAwBsl8MkDyJYdA\r\nZDLFPar6+E1Z8OHuwlePEUNhGn0Cud0sCij92ei/VaSzydynkNLYwNaAG5A0\r\n1JCzXud7bXlrsl43WbBDnDZeknuzEye2f245RYXGq16+9XHFvkBAK/9KO1Z9\r\nXBfqlkrVlt/IkNCYPPuPK+tn7sxV9+6qqmrSEGn+WpQ50nxI9safpWH6J2CB\r\n0Qwif9sMBlo9ppgoLamU0WZ+m5rkJmfKF570m9FqaaMhRzixRg2XiGIRQvlg\r\nkODmUfMrG/zSVajrCmikuksU0BBZgWmEracVabt7RXqJ9Ci+OVLi25bwHyH1\r\nbgQnep6iT6nE5+0922E4Mr2/p4bsic2gp4U89WPoYfRmSG9OkgHYjN1+0VvY\r\nZKRWE3dfRrjPfhH3XdvIrFiKMnhwBk7BKIk=\r\n=sp77\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"0f724c04308e20d93d397e82b11f82ad6f810c44","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230410_1681110775175_0.9160993930088219","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230411":{"name":"typescript","version":"5.1.0-dev.20230411","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230411","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"28ee14d54d82594647763172a804379e872fa6ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230411.tgz","fileCount":106,"integrity":"sha512-3yO7RzC4rZID1/u1alMwKKAhp/kyDkFiR+73vsvK5z99GYRVbUJIy9f3w2pGNZI3K7YI5Hv1bN2XWkPgZhB2CA==","signatures":[{"sig":"MEUCIQDAriLkDjSTQx6g3flfxfWPZ73mEagl/s8guDvXC4U9oAIgN02d85WKFpZXlIWtAb2Rn71i3yjo6tMiOLLXIXHjw0M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39918694,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNQhzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmojChAAnRDFBSxpkPgHkqIBUB1sk938bLONnaQ/RTyoTs3MIbIfO7Mo\r\n+MXAnDEcv8jJ4TT8tY0jGCyhGV34XvNjHUQJnUTbsslkM+11GbjN2ag36Ro6\r\nqxyxvyV+nKChQA2y76Z+uMgKb4yhczNanAV4Q13CuHI4fLyOfYDB/31VcpKj\r\nmBZlIQdWOuI5uDMdnGsFc3GMcZkdeqsAQyP1UXm7caWAWWClHvzTQp59SYsq\r\nXyiS35UyNxqdynDfgT2OD1VfX9zOR5pohdbxQ0bu/iBbJFDl1FW6SXUHAE2e\r\neofBd/leaT5BHIpUmHtNdV/9TBnFrU+4wCRMOTqMGUrZrEEyt8wqciSQtGDl\r\nNGcI76YN49OrVq4qh4dyu3Jn8Hn1i4VkL8TO/f/ASC5G5ELsPjPIGjn7962+\r\nRfQfmPw3sBf1BBMmB4Km5gdskzwTosFYovzE2hU7GbOo/hyTBjYIgagTG0D2\r\n4uclhs+6jUv1TQ1k1G7uaJXGVabOy2peJUcB6Gh5va0OCI7oJWFNrHIMTeOh\r\nikA0XGfCRExP9XSeTwmJsAStjHajfnZqgQwYXYocHMAnZQ8F+eIk2YAXIodf\r\n0Q5yfWBfkcYXZvyE0QmGdu9zMEA7tQbKXa0hq4WzSWdSx8rgZqscaXUyPekE\r\n3YhPNdNxtoaOedVdJqgZIlytXuri4tdXeiw=\r\n=fwy/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"89a6482d60ed3d59b2b697ca29a6cf662ebbe20c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230411_1681197170934_0.7246005904532968","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230412":{"name":"typescript","version":"5.1.0-dev.20230412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230412","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e9bda9cea51b4488f2d8b5f0855ca84da0d6d736","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230412.tgz","fileCount":106,"integrity":"sha512-O7UY8wd8wEa6pd6CpVFbS9u+DArm73B4rRz8dwm6SDORvEF7rbuNzJ6GTTnBvGavlVkWT5/cYstySs5uhj0vPg==","signatures":[{"sig":"MEUCIAibytTAKFCutyQHBle40HUUAOOqFgUIhUbWUYbwhLLOAiEAg4odP66xi3AQUCwmDzk8TWFlY4CuxJ0I3D6xyJpn//8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39920310,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNlnuACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5+A//QyqYHFmtachoF/GdaCzACn28XE1fiG7UGO/KL/foFZS8ckPd\r\ntlo9HZum+WrPzkfZB42l8tK2WsEoBN9ogVj8Uzn/ZBGepF6+ZEFzlBaxUZki\r\nLkRQYT9SoknbHtA+QXiTTobooT1JOKloPILI01s1i7t7GdHo+S7VER79rOOp\r\nDhkyNlhV/ayzggbDQguLoqEf/JnqFiBXFfam8sJFOd6+c/fn34H39sek93Uc\r\nY3FQ0Qn4duYItJeURvZZrPOlq/8471Xsd9i1IW96BjV4W7ctx9kSZXUnvw1e\r\nq/bQ5SXSEPrR99okk47+4cCovGR9d5F3FB5QGCzag+/D0rvidyRbwTXN0Ssy\r\niRz5vCDKOX2vlID/qvqeAcvunE+RYzwH7JUt+WS6rW3WZV8tCO9ihxGR1bHN\r\nGO/nVUW9gbecRScAA7OtJQNbhitso/gopKEHfKC4lZCrtU0Uve3EoQJIKRQ7\r\nf/Jvrm8deIqmKp3wUw14e8TBFp0cTf0uC4DufYL91dMGFOmrZc4sDdX/e+Ot\r\nZDFWx6182bZyv6EZTxc0TXR8IXkQiTnhSL1nMB3QLFMjLd2IT8YTGbt2QYkB\r\nAvNrorEFsyJ/3LfvQGmlbGM3ULTfxxTcwRNTgTZT7HfmPVXIOf8QRKLBmLoB\r\nJkOk3KXSUM0J4uiP6FhlFQuBKoqZK9Q1Ei4=\r\n=vCQX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"2db688e36ff57ee1d4f730e124ac340379eae4f0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230412_1681283566067_0.5616836671145937","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230413":{"name":"typescript","version":"5.1.0-dev.20230413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230413","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2214e31198801ecf9b2849f4962ba5d9682e0466","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230413.tgz","fileCount":106,"integrity":"sha512-+FsnRiizPqZGzW9HVveiTiotGSso+FhN3eT/l5Hh+sRIKH7b40N7gB4Di0l0ZUw/Q0WGdjn6UPCRVV2yxy1qXw==","signatures":[{"sig":"MEUCIQCgdkVK+W2YIFKbyKVRUq0W85/9gdSBvHUlgSxilM8x7AIgTboIDlHwHt1kAUJbQLM+teXCymhzNHoGEIrcGhhf9J4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39919700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkN6v8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmow2A//W3vv1Pv+cMTBiCCLatwaueVcme/Aj4c1WCSnLlnoR3oHaSDv\r\ne8yCpvd+NrwqYPFkphG+BNWkQbtrRdCm0L4h4/uG3hBFeSFO6Ii+6IZF/vJ2\r\nu7CH07Y8my+7qxaKv66Kp89c02Zk/l8RcVvB3ozfp/cfJWtrHeyZcr1Y7D/Q\r\n2pkUFuYL3qMmmraSWd0OREY50VM0mqS8YkDP8U2qumEUTTFl2i0w5OaVZXG5\r\nQ2JxghQrq7VF1gBi5zHgJOdWNu9peIrCvNeQvNaC8MVp6n42mizwPDCHZ7vy\r\nfc7fNdUL7jIy4yvcMc5RDYe0bqz/XnQRZwcFOvYqizF2Y68bNxAsWDRVr+m7\r\nAJnRx0ygfhUGGFHPTQg8WBqq65W/akiM/4/gvuhAW7LarvBfD1X5gtKfItXY\r\nmpSSRKCKP5GLHjyV/8Ansjv7HoPRiOtx4MQUUGBnpAIT/ZIi/Z+he54Owonv\r\nwq2UOrc7NRxIMe5P0CGkcN5WfOOiQzVin/0wAqTO2/F6LCG5i/KN5ZnywX6x\r\ngKWUlk2I1VlWoBCM4ukplcW/tBuFQfyQTMrKpSqxnYRjmNjrK0sBKLuAIAKA\r\nqr4KE9+/Y33M93GYH1UaQ0W1c9XD9ZLrVZqI5E0avizVexdSFvneVU47yWka\r\n72tmmFbuSaex7fea48A+XepT7ukNPYd1rH8=\r\n=5/RC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"33ab6fd0d5eceb7715000398382b60d64dde1c67","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230413_1681370108402_0.8688354210819005","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230414":{"name":"typescript","version":"5.1.0-dev.20230414","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230414","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"44ea3a103e6ba8e03df91773398520f1cc55eafe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230414.tgz","fileCount":106,"integrity":"sha512-Rpd/wloN/Coy34PDLmFIQ8jleaTSqBlZZszwFjJVjKDpiLQt+5/UgedPoax42GHt5+9qCXrvDQZ3JA7bi4qH5g==","signatures":[{"sig":"MEYCIQDLwOyixBdk8UslL/lKa+hoZTtjje55/JK/Wrq0BO0i7AIhANz0V5xTgd7wD27P0Q+wqWC+sJHshih1Gx7pAl5JCB75","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39920242,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOPztACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoKdg//bmAFMh90aWcRz9v2857pVJwc7o3b8C6rDuRoPJQHhpbIFZSd\r\nmWiWWq7optMvkMvH4w9kVQgR6hb3Y4Q5AmcxnKZ/bUjOOu/tcV3uKwCTPvsK\r\nLN8ClXv8tb+NRFj+ldS7Qynt8BOSPlWgsbr7l+xr/o8KdGaLDy1G3R60dlpm\r\nkqC1bzaTZLTY80NgL53J0QzVqBgWGevhZ+Lmz4X8FEq2O2vN5zpMU6C3L7AS\r\nTn4siNidme0cTEgKyzPy695hJreyBb+7RxHB+MH/LOWCgDEClwa3YUcVudaG\r\nWsllMk9Hs5XNEYyLJ2HnqgO3gSRxr/1umRJlUsdg+V0bYbyrumfmYGi7+iuG\r\n51wrCaFs+XRotSRBSXRhwpzMSgLW9Xeo1w1RLFpFkWzPuxlbzQk8/Da4g5uJ\r\n5TLK5eQDhXt8VbegMOgzukBBsAODBMQF2a+RnEA8sN22FRAquvtSsKYpEMUw\r\n3RI2uwjqIFqT7wG3htlHToFdTuX2HgngF+80uAlUoc+m9wpUojnXD6rMGXn3\r\nv2Gg5PexPljc9ema+MTbnoZWoJB1psLi5X+9zAd7XarlB6/BpMqb+48S8J52\r\nzLG1PnAt7/QcyucCK4fAlhx7KSMiB0ib4asxUze9l10qT/oTJH7oqYpWgDn4\r\nVXwzH4DM7KzXAU3Ixr8eSqAeg4nyjZzZ99k=\r\n=Ti0l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=12.20"},"gitHead":"3445e58815bae0c1c3752e9d364b56f548fa5634","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230414_1681456365343_0.5690604995743596","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230415":{"name":"typescript","version":"5.1.0-dev.20230415","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230415","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c8af4210a03ac8f67585481456023a098cd3492b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230415.tgz","fileCount":106,"integrity":"sha512-YZh1oFbd4auqDxLtuxuC41IVTBJNiqnbQVkjR5Z/hWBJZkHj5GRiBa+0F5lW6LdVzdE326Q530h/p7NsbN50+A==","signatures":[{"sig":"MEUCIB9HgI0KbAbqEA7hvhdeG5+06+8Q9kTQ//0CZ5EGbE7EAiEAlvCQY4xIVJgYXweFHxT5AEYrENbreiJWDKWemKSnKj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39917289,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOk5bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqVNA/+JaTRtmrQoklX9wJfD8Wqkzp5EZjR9b5a2dJcolPBu8ztkQfD\r\niTjHm6OExHWIdaOl4x2+KAzIDf0rEzDXZKzQsblSpG54gvszF0ImJ18Yw3xE\r\np3+A3rtsvDhAUXzO8b3Am3MinsZZQVGjMq4O32kQhEnd2zPA9j16NT/UBUbA\r\nUOrvAGfoX6jKBNgVTNRE/Sabm1EtlM8RHOKuNGTYhWX5Ekx+8YdMtePH3Uja\r\nrhaW6Q6R4YIVrEGzztNaEWj4ZbHK/OKoJJsHTEuEYBp3MNsqkGZF8Ls/BvCN\r\nRQOHTrbpmgBAeKuu4eetNE3gbFxcOJMOMGQInuWTzbj6Dl5oSWV/AOJj6BNq\r\ngBhHqKKSmtPF+H/TqLk5j16XMox5vZ8jQUOvjcVAHUx/akoMKbNxjjoDpkcZ\r\nUM2ucPzd+fV5THNyj7ojx1FGRaN8BBE42BxxEXJX0sZ/RShOU0yfuCQJaaT8\r\nLys84F0iFsBrMMqAUsmqoMnjfZf8CEyzgmGI+jv/TAXZfAxFOIPc8Ey7Da4v\r\nHuiRRgsrJ8CnkGVIDt91kwIS/Ds1IMnGFZ18zcV4MaVtPwZ9pbK3J6q/3/e0\r\nTjdqXP6wFlbO1I4+5UE0g6+ZSAeCObMUZeXNVVACsCaqNDxFLHAvbNl0jg9G\r\nMqOW53Q5MW2OF4s56G+qFxb5+oz8eG81l5E=\r\n=r81y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"bdcf8abb0c280cd0e41a2bc1f9c5f806b05ae424","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230415_1681542746948_0.8937469745176789","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230416":{"name":"typescript","version":"5.1.0-dev.20230416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230416","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20d4b5021523e7d79fb00df4163399ea0ef778c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230416.tgz","fileCount":106,"integrity":"sha512-LdNpnAyqzCIcx7R5/cZDGlsxGTL4j+omGMhMYVCVaroMOFZBnMtzUJSlMIO9yHBjN5ENSVJ2+Pq57GwmSPiZFA==","signatures":[{"sig":"MEYCIQDh4NhQGVpHrcSBX5kGYNJ3A3eQJXUeLhyPA4JAxqnMVgIhAK/uyZfLpk0wK+D1mP3878uYhO5Z6ru7vaDOhFutZTbf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39917289,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkO5/gACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoU0g/9EsHE/aGiz8BDWSSnSmI/U/P/qOBZqfGNrYfXbflcOq7q4ClQ\r\nDKS6WeYootdVLTyUieg8xgxvXO4jUx1huH0mB9VF9bNtbDouNRSYBeYxi0eP\r\nTTCDev4d0LNRaCp6I6pzzupfjYYFg/d8THNLJ25tTEOll3AhsaVOFn50ykUi\r\nTSs90qbndTV/6Qvm1QsPJKIjKajiHMkxqhq+BbSATzgI/SAokrmnYOIVrLm3\r\najIxyVs5btDTZLthY6TEpDYnWBaMsYrzbTtLIds3sD4NSvXD+AC05LTJEm9I\r\nupemI7fPYkcqTQLQRJS1PDwal1qeQ1+KTA7R/rNrx0bBZkl2epZQqxcXJM/K\r\nyp4bRcuxJIzk5GRTQxbLOUGXvX0ZEK/GBzl40cuDTcC6jnLw/DxPbfEoomG/\r\nQRey34FJMkoE9iq6mPD3PzpV+KkxeX7iiLU6ezWRqFVqhqUBBSnCChCsJ+gW\r\nsNx+LObIhKRS8Junp8hWyZ0tpusIfKk76AHcjcZ4KMT6W9SlvRO8O3jsFoWS\r\n9AbispcqiPLyXwSU0gBIbAAw610Z5w5NjNduOBSXCkLuM3gaPf9v4GwrbzP2\r\nv+0lm8mS8zic9fQuhcUl6eZHZdbs7aLR5sp0BcUIwVKoZ1Zxh0NIFCgh+a0G\r\nEpijCtlJkAz1c8sIQNi3/XToRnlFHtpIQr4=\r\n=Dcnn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"bdcf8abb0c280cd0e41a2bc1f9c5f806b05ae424","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230416_1681629152131_0.2566615565243482","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230417":{"name":"typescript","version":"5.1.0-dev.20230417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230417","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3c6acdd4e49858bc10f7bdf535e768513ebc55e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230417.tgz","fileCount":106,"integrity":"sha512-bEjKfPjxAgvrUViweybCkB++3y9qyF4hCBeXOf998QQDJpLAcaQWmub4IoPZ5yTvrkuGuNzFpy46tytA4p1fbA==","signatures":[{"sig":"MEUCIDL+FSLBAu7aBYl8BycJ+0CrA59qFtayZKtBgRGunZ6fAiEArwwbUHOeBPjHP7aLszhdzypujxFvrdqe6I0cUE2PsnU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39924531,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPPF9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr5jA//R5dA6E4cUfDaRGzPlpF+Us6UoI/hmKItCxRtxnMmHJejvgtf\r\nQWQGudyZ99KsRt3ofFhi7C6CXUEpEsisSTYgTnNR98QODzhb6F3+sqj2smN7\r\n8DG9268YI25ZtMDKTAv1LF5HGcqkFWVI286zFwSrJCtWUdR6ZKQCKJgldUqE\r\nV/6qz11PU9QxI4pHNfa1hFUJe5T5ssx/ZvCNVP9ORt/5k7eZM5M1WGFiZxRU\r\nmA9Qc5EBPp5Bu9n9u4Tq5h0alie1Lq3TrZw+M+VC5H55FgBYyKlNdve9iWhj\r\nJRxI/dx4Rnv6Vh90e/55ToQCfWyw0vhzfCpxgcH9OJ0bNA33MbEJrhtAS+7p\r\nsnDWJ5GfFZTmVb5OHjZ4KtsMBb16tWmXNeR/Oeezzhj7qzw4XUfVW5UevHxK\r\n3hpdJ24z3lWZwjGsp/MNPiH4TVNqjPuUBptk0/0IWb6v9uxqesx/dbpVWW9/\r\neSTreiXmTjRmrKfPTMzGyNDDj2GebsbsfpMGRnuLQXRU9zSqgaF7z7QFzxzO\r\nXhFcpOwjKNJJaHimiiYufGN49/NPAvBBUPsGJvc9hRtr3qkF2fUDb6h0TWs7\r\nj0Qq+zbeVoUQawkDMN3RHM9wlmhf+RbEeVmQQofLPT2SjccDM4lywYF/ySid\r\n6IMJCU6cPs4qBOcFFZwNCP4rZCChO1ZvGn4=\r\n=dO8Y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"430c5be783928c71e1b16ef267fad26d2998d7ab","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230417_1681715581418_0.06301490394994613","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230418":{"name":"typescript","version":"5.1.0-dev.20230418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230418","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7ccb67d97c7de1391348ef576a42a69b48da8517","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230418.tgz","fileCount":106,"integrity":"sha512-BfA/KV0xddF8ZCAQZxZ0FoS8p+nWKXVaa5fctXW6WNGfcYF04cXlLB6F6uf3uCVbd0iad4YdHchz3KR0722QLg==","signatures":[{"sig":"MEUCIDDihhYVmQzpl4d1ll01IDlYtO97uuuyqi9dZ95IoB3LAiEA/ody77ZZFfH8ENYGD92Kue6PZjw2NmoTupCbiiLZLQE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39926481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPkO5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqEqBAAjVG0kFL8kxmJsPSJ6WEX9S5G0ItphXQVSpnL6355st0bb6G+\r\nP0Iso+cfwPTV1pFY5MgCphH/xSrGBmIQ5KkQ0b8JWdIIYO4NFTRQdEtCZgYN\r\nLFv54NbqT/YxWLubJDr4CC6Av1ijCT5i9HR3l455851ojIH0S02iWEywHtub\r\n3h3T/SZipExYdN4syYyLBIuh5kVuEEi/v34bqkOT5ADxvlKd/YAmYF2Q6cTw\r\nh4ibspJbcyEU0pAGfm2honAynS81scZ9Hy7wXndvOCuRjFqnwBT28ALwNg+V\r\nOrW38tRa+nXDJPlMWlpsnkIybnp5tYCjMsGF+Vp0pg07Z4Gqvj9C1hBTPCa8\r\nsC2+hfSa1g2G/33S/ZgA1f30Wd30MYK4OtoafzIVOVfUicbNmsk6LOE3P/j2\r\nnOXJ+62hEe+gWjyJ/D8jQHvBm6ahD6YBOnnCj59cjUGjo7DnMOk3g4mPgnbE\r\n3zqYJKQWs89Wz9Kuo1Dmje+RSJXlDgVOB0cncda62aQx/9xCkbvS+SRnr4+r\r\nyrWl5XvKQLgOMsHa/S1kwSjZQWZdlx0VTefWxtZY44nE1K91bzW7uaHDgsht\r\nMMqPnDll8oElHZP3seA7/aQDS7QQ5T2BxIUZN3Q9xtOxzDGv6nwKECmjNu6F\r\nUU0/Evx/EU3a6UJ0vLYoToBq6zJq+4zFBcM=\r\n=1knX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3d3b2c724eb7adb8afbd44d2e3ad48fa8b0e8a84","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230418_1681802168914_0.3550931098813148","host":"s3://npm-registry-packages"}},"5.1.0-beta":{"name":"typescript","version":"5.1.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f2a436a238e29e63b60d689d2775bac84786f584","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-beta.tgz","fileCount":106,"integrity":"sha512-NT+wDYZu95yUj1K9fbHz6v2gl3m56MNZs6tbKdMJq7pN0l+oQn0g6Z0IV3fHcEQDA9LxZgs3BrWMdMsvJZixdg==","signatures":[{"sig":"MEYCIQDlesNuIDaaIqpGCGjdNoYLR8tEMPr3zfsNPk4JuOVSswIhANN14KuQi/euakuTmhstt7n5V0/ElHfsGZ87jSTseTD1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39924340,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkPxaqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoTww//cHeA1HJNCjf/j+GuuIpRFvNLWksiEHj1f5L8erziEu4Jl+63\r\nJkuRQ+UKlGSDD2MGiFNxnlJYoO8xc20v9BXhybRlFEwXwzID4yC7Dv7vH51M\r\ncgsO/Z5+bQbaVDh4ssgIC/kwvMZ75H9P5boDgiXlI6rTUH56Wk4tbsnLWeuB\r\nmX+14VpAkMcr1m4gI7XdLJN+TdXlfNWNj2Tm86MP/1kFip2L2rfvkmzUkfsQ\r\nCeAC84EMtjNMJyvVnq3TYWfqXtNbpAT9vXGYCsCM5M/mVeJs/z9UgTbXEc51\r\niFVj0YXdWI5BpRmfrP6ZlVCp3+BZlZ81m8SXvMBi+QmsBSVIOcJbRt84kmLw\r\naH8VkF/z/RwiM1mnFdU2nMUofwUeA45KEhg8sG7S6jcJhEEPiFs/twJMwT6+\r\nXv2GY7G9ot847OTuP8nUpqPdGAsDZufIdOgx4SF80dJApXDWJtXZRmbl5An9\r\nLFOP9OCSsSY43LzxzZrOpnPooiqPRvAYcGFOZwmrLVLVM5dfCFb130xzLcaH\r\nBUrhfOlOASiu37W/1pjHsw4tt8Ggr9bHNJU06BbZeexbaP1cCv3WixUEO9ct\r\n1ooTlkC0m9unOhXwdpmywRf1kINJuclaHDVb+FQBFNqsJ0yPZ/j4RzrjDfg5\r\n4dmyOhqnx9YEw5AwgK5hLmD+o/2265hv6+8=\r\n=krIx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-NT+wDYZu95yUj1K9fbHz6v2gl3m56MNZs6tbKdMJq7pN0l+oQn0g6Z0IV3fHcEQDA9LxZgs3BrWMdMsvJZixdg==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-beta_1681856169659_0.0775438051725339","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230419":{"name":"typescript","version":"5.1.0-dev.20230419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230419","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"343118b96605711a9f94d9c43a3dec23bcdd6dbd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230419.tgz","fileCount":106,"integrity":"sha512-J8QfDyJDC/8fpA7fzlVBx4zSR+dGVd6afEpu6nEtplA98lcW3NHA7v9KcQ0AJ8SZGoCDLIl+8BVfiI/CkFS2fg==","signatures":[{"sig":"MEQCIHF70GO7QOy2H/vQMxd+AWdJigrahkuiEh1mc0eqznETAiBFxvt1JHDZZHCgfKSenT+dq/DUOzXnNoWkDsnvze9MNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39932012,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkP5VfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrzvQ/+MHtMIxV6biDtIOTopdcVEhz21JAQyhSrcczBapo4IdjHuj9e\r\nXWYBeNxp3boCH7VH5/6Ilhy+9uaWkMy8Hn3oNgJ2hot3FzA0H7EEPmYf0Tnt\r\nUE/0Vuk2BgzPIoRYb3lz9uohwRSK9HRiYoPIn4HkSoqlWiqxYnYcD3fu2WTR\r\nEsmf4B6VAzdiF0Z9RlhQW2nMnJMQhYQiQE2Ll8ADGGV2EHrSuKGVj8OjEf7E\r\nPjTKgekdMCjRNIcLHisFnkUl7z9GWxquCf+uXEw+ANwOUslN6J+ybDI9Azg4\r\nJ1O2c/PsHotDSNbn1lB7nOjQjZiMOPW4Qem52TIY+yfDxBVfVzIZOry52row\r\nSmku+HxVMe9ZQwyddw/x5ouw9ZlQSoDhmcK/PJxTdSoiYS81p75+mMJ5j4Zw\r\n8AfXZCwpltzYyXNQnDuewsOhiWVj2uSMiqufpOmvH0raLMUkvaFTaCv77L03\r\nLCsDpmJzrlo+AHuM/RnwlLJQnoSWAL3INqaiIsd1omMMnwJl7sdPYEBEnYqq\r\n3Vm73lOx2p+bksBxNEeORziuD3hjQfDO5RvtN5Q/WeN2gFvLUl5Mi1V7qN64\r\nUNpoDpq2CbHnDhOOoLjT+ZN5/yPqkQg7LjLjn/bEHS9B52pXXu7hpWjA/buv\r\nQt0500HX+VUoqsy1uL4g7Lgwftiyh+Xt894=\r\n=ZQ3v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d346d57162d74d1919b4fc1510b856fdcd7dbed2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230419_1681888607004_0.6474720347416587","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230420":{"name":"typescript","version":"5.1.0-dev.20230420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230420","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c84d9d886022335924230db5e79fe97a93f5399","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230420.tgz","fileCount":106,"integrity":"sha512-ytvKM7THT08QHjFP6v8kF3RtJWMQ/wWeQTIbe3kveVDcmstVrS5IZ47c9Y9GIYI2WaFVVjNu2YNLwSwIt82Fzg==","signatures":[{"sig":"MEYCIQDNGeyAH+U2vi750oXuOiOjoWWPQHYmRXVIzV8QbzxtTQIhALAIpKzj/SFxRc6LmX2S1hYbwzSezgkVPGmRUdM01xpc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39934504,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQOa1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr4ag/8CcmJQjKA0DY6mJlCe6k+OOy2CE8VCKTXGS7/8+LB50FONLhV\r\n5zyB71D3XUxhHpByIYehnUUowOpzM3Jvr6G5CIUgJzA2DSdWav2LxIxyJIHD\r\n9xvHLmIXxUZwSKnfvy1JIMNEGPDn87M6ny0shTRAm17Wy32rIOw2BjShTklC\r\nv8ASaKBPWNr/V30hrR/3FD669+WYq5A3qTjSnEH+gSX8wlFrRj5Sp0HdHi5t\r\nURyrJCf3tnXKh9bzJi3H4ox3lCOm7fRzqFCWSuQUYVGQyyvXzpAfUH+DSwau\r\nwMZBbi/VGLycCOdOyeVtxwJxXwrfm5XMns6R1zWIxyW3asQS/SbEIAdUa9ZA\r\n//v9oiLoNsbSyhig3a/5lH6CDf+hoCeWo6D1JH/DUuGQrGaQk/GmHc9B7ZAz\r\nPYTjSXgWzDtck+2+1boTkPXqphN0TIRstCtm9jK20ow54X7jfT6eClanrh6w\r\nJyrUZ11M5cUGLwrDItZpOoCkNMCba0y8D8aZ7ij8sCRfqGzVVOHIngD4Dfby\r\nofAF90dUR4eZIWl+mnXpkNa/pZGmxzioCkgV07wpmN+1B2t4e4vXst2xKgDi\r\n6Mn+Hka42JdQ9k7LWHC/vSn9Q8PYvT1MIg7wqjU5m1s9cchDwBnl9KhIMCrV\r\n2oS63vBsumB0JTMeuwaoTR2/JFbcHq/s9Xg=\r\n=yPJW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"484994735758d34da8e8259d1371c20f8de26a4f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230420_1681974965012_0.47232186069537807","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230421":{"name":"typescript","version":"5.1.0-dev.20230421","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230421","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9f43f0b5ddb80ff67b61eb32c035ca9c98285637","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230421.tgz","fileCount":106,"integrity":"sha512-/1iQqWMPGKPeLDDo7yRXIf7b1pisezXm0gvVI9t4UrtD6j3itaV/WzB7CNWJjhi4oElPFjkY1KzDOqqsTZD+TQ==","signatures":[{"sig":"MEYCIQCduFOX1zBpx12CI7Bpcvo13bk0hJLuDH8GRZ9WKDRisgIhANM0SWYFRswVQYpQN6P+NFOrb3XGaFlkJ1HSVuZOQlgL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39975730,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQjdvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWphAAknOMz1ha7KgkJUkxuw8JsbLw/Gj8kmzHn+gU/1XYQ+GuwDnY\r\nq3GhzGx3ESVgQY432MYikhkReXkNrCct5sYc4GCkDo9TA9WYvA4RFSI06tay\r\ndIYQnSyKHANDx17EhGHd6oF+Cr0mCOYOr9ZnQN29L6/YBE7VsMDofpyXzees\r\nncak1ySCpln/ApOHkJiut77qhMZJDA2zChiDlCSgnwYtH2gPSpfA4BWl3SVy\r\nUMFh0SnulwoPXCglKqXJH5eMx5cK5i9AlPHRg4DWu50qjUfUYS0iiFKMb8Pu\r\nP5F+/bY+2quaMXLAmk9uhdrx+ZVJwigqcP7L7S8Qn+/tItytpDp2ij6fwJhr\r\nkL2MzFF4cMYvc3tg50oehZ5ODlaoCpp8dCjtXLudt/fz2Hb+OSCYP1nF+aRR\r\namwp7AM4OOmk/UjCo3cgb2cPrBGiEOXGN+glTAg3JwoPw++gHW+KXNnPjU2Q\r\nZUI1vtnYANg5lRvYU+g4OC/TnE5vzg+IZ3jY1vJcrl9ZgWelVY3A1jUjJEu+\r\nUiLft2HIVP4+F+51eN/Tx4OpUMVBujoQNG2quiyS3T+Y/gHDiEQ4YBE+Fq75\r\nAwsTe/1zhB8iH21Bi11zwNF/8L1Ej06TNvbm8mOEFmns5zZTTjAuhSxE5Y1+\r\nYgXgAdOOsnbDYPEzjwHO79VGew+D+VdhKYs=\r\n=Bhvp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"09b1c55f83a4171d2f440b04f2cf9e9cb4e7adab","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230421_1682061167080_0.9511248289223799","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230422":{"name":"typescript","version":"5.1.0-dev.20230422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230422","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf3af40de0fdfbb76869e47b6438e0d12ba72efc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230422.tgz","fileCount":106,"integrity":"sha512-3pQCIFhapbpICodEvGKtTBNNnshj77dMDKYeqnjJSZXM2CZ4tWX0eAxDLdzrRG2tXHcqrTFXG3hFaYeYEOvVJw==","signatures":[{"sig":"MEUCIGPJ7YtOps7zy26f/+GxR7S9D0BhdsVbP1+K+Ld33DLLAiEAjATZC+1DEVYaTFT7ZEY5Fwbwk/Bn+qUobUiEET0dt0s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40006561,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQ4lDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpz1g//TiZTpAu2tRkXKR5L9VlEfPDoxHwqTNLZDW3uBAenmYymHKmP\r\n+oDkolHGF0s0YX93DspA0wjKb0y480NtJ3Zyw4zKPxleFX/ezHn6U46Ure0i\r\nrNFzl3PfJD6gSneash80yvEjeKhQK+VglP7GzC29Rjt5LPSecs/xd6eHJuqE\r\n1gWe/BNCusp2VJsXshTYQIbGgMV0GgZTH1l5biVuwAdCu+Y5TuwNKEx1R4tL\r\nxMk61KrV10VSDQRbRTYkdIC7Nq9/RrTWXLzh4+3IjoZUBadXb7xPiBun3+dg\r\nkyUAvCqapZaDSNeoJ3lwVoGtRwfBekgZNcfJ8PHUJI7A6w2JFhSzzzhFDRtu\r\n7C7DYxPSMiWn1S8PRxUJYp1z3RlJjMj0Rj8Zslz2WE1T3QOPhLawSF0NkIKm\r\nkroQ3DsiFDaeJ9Kg/NH0dde2lNpR7RTtx07hND7tgA8DBxi7EZ3SxS/83Uxi\r\n6xmYScU5M343L1X7vKm0hX5uOeX5oc+5dyCDlNaQO0ErcGSeUqyF4a9w6YKf\r\nOvXWAnDWblDtLVh2ewULTqmwJLI4MFY9PQuLz5jmprKvY77LyBefATnaOvgw\r\ngIB5NVfSt8LGYIlzWiJMoxFcZTOnBTl/uEOsCh9NsYpdnp36oPb32bCeBZim\r\nOxCAqWqxr+gSlyGKXDHDx7AeCboaMKw8yo8=\r\n=C220\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c56778871252c2f50058891c89c6d3253265fe36","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230422_1682147651442_0.056550462303674776","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230423":{"name":"typescript","version":"5.1.0-dev.20230423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230423","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3967db4b02f14f7cdfab31373cefaf61b84532e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230423.tgz","fileCount":106,"integrity":"sha512-WfMjpk8/hc0HGzFMGZcef08plCo/XirSMUlT6r6FfTLw0wIwrdcGDqHkYVaOV/F0EKirZNGpwYEJ30iIausB7g==","signatures":[{"sig":"MEUCIH9BxHU4dscOatupj1fB2hHpzF1KkAnjm8l9iHx8bJh0AiEAp/B7sP9uI+M3lvceV/qMaTxOS0JuQEvosJnuUhTPDw4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40006561,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRNo8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrugBAAiiL9MenEq5Oev5ghA/nG3bDOjJjG0zfHc//iGUPZnXhDVLu6\r\nZqnGTCQsQetKOFoM90nxJ/MH1yZGXCar1XMPDuRz1WnzN+mCf1Gk5BQRfCMn\r\nR2YOhcXc7j546N2Az28mn5KqSOVY2wCxyNgNIbUag1pADzrwWDhtRjQNBwGm\r\nyt3VMHYMGt+M2535yimFQGo/uRWdqOmAEWMhseq48sdekxu8HnzkdjkRHTOf\r\nxF9qMpHNSZUClQfMv7MlECGj7xcnKzdT6yGz6pCJfU/I2X7ey+ZlmjRhQqzF\r\nGY5zchWNTcJkvc7ZsTxS2VL982XFVKRMp5O/muVc7wuF7fJk0vATC3JAUFvA\r\nz23eBwQlq8Uc+5Lqtde1Z1oZRGUlH44sbG2ZLUfltuutqtAzqWIDkjLu4EMN\r\naHmtohGxrY2Ou3l5PkZ5MW1gFwEvZzGlVpuh1JSVbUQp2G3XEOBRUY0kjp8R\r\n3wmIVBM9NunixFntbCxhzCHOHbSj5phTxj5/pC4lwxopueZHjqUsh53H4IrW\r\n/VGv4HxkbGN9Y26wNKBI8joMxBAkJuvkzaq9zc3zbETpEhbCUUsW3Yb9CZoe\r\nVMEMwjVX//jsh129eJ0VBFiR7i/Jt92Ba975gmWqHbf8lmzjRdfaMqow2QHs\r\n0w155ZfXXNyvt2HEF4Y/J65a2g+mo8VYYD0=\r\n=UEoF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8749fb5c0a4a0e3407eb099322c85b850cc642aa","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230423_1682233915968_0.07834493517160879","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230424":{"name":"typescript","version":"5.1.0-dev.20230424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230424","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6b560143787fd346682077dbbad5e1135a476870","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230424.tgz","fileCount":106,"integrity":"sha512-yhQpzzjyLCyXORVY8AgJYaWpm235ZzG/boelYvgloE7v+kCucAdegsBf7duLJzXc/8+wABR2diYMbjPpd5c3Ww==","signatures":[{"sig":"MEUCIQCtv7Sb3MNkL/UcjE3AhRedQCZ+CAbjR9UfuT9yosH3gQIgVrZNV573c8Zrw7opWH3v0Avw8capZsPssmgn4SB0/aI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40006561,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRiv5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrupxAAn1najLjPax3vQvqghM/YUuDLrEbE7+QnXbHPILTbo+xcSs87\r\nGwTQRhnq2ldfpYX0FDUlOsPTB4NhOxIlsCNNvEqVQk29SXlGLfPozLysP9Kn\r\naGzJDFcRy1EOAfVgcHrokmFx6Ris1DTY/NWJoxZZ0nJ+MhopI9uWq4npoB+L\r\nV8Jznb6rFZB3dWrbQP58G9wt3Zgq+cVn5SeajJgHT9bHKj+QO7jQlazO6Ayp\r\nEUyFcxXLVNsxcBMQRBnRalQu5UgtOVRRfyGyTq1ngb34BNB7dL5YTX4ZU8io\r\nRsFbOgi0ofmQwR2/wSBVLjuxLOC4Ilh6DLfM24VXdwRfwTkoJGu656X9knBt\r\ngql2471kqZG5RuBkhOuR+nB+kimVTQNYC7Q5oPaSfWgjwnqtLoYucDKdQvgs\r\nZvtTC0E8Hw86f6zx7FuGxz6Ixy0Hr+h7ji9fa0A2pUmOU4XT5eRASSLlR9YI\r\nHfWKSKXUnVMDiRVIwnLgwmmAhpNf6X0fAIunFLoFZ8vwwqfXBE72SAAob/QK\r\nz64512GsPDJt+NAgP3HDhh1Cd29+fB8FLH45a7P/reBHFmOW8m6wdRuU8vdP\r\nFeCU+12gsa/vLy0Tjraga9caS+zwKev/j5tHqtte4wyeYwn2pgZlkGnnDbqj\r\nSzTiGxnsSfRQ9D9ik4NwvFSpjjSPVaQ8MOw=\r\n=Juin\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8749fb5c0a4a0e3407eb099322c85b850cc642aa","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230424_1682320377178_0.3950850167360218","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230425":{"name":"typescript","version":"5.1.0-dev.20230425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230425","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d0861b190df29c126744c762d6cf8c7cb131a72d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230425.tgz","fileCount":106,"integrity":"sha512-r1wbkllVmbfrGl2JE5sGmMg50hrD7P9MiAuaq2v6CgUN3qPKDeHVS3V/OOFA0LRUknZMPP8WUpgZpckmQhnyNQ==","signatures":[{"sig":"MEUCIAOiJJfV4QT/yKdpiPx2uQS7XcgDvnMNZtgOUc5/57BwAiEAi65R7fxnHJPuQOBCU5fxP5EGogd18asNfZG95yE2iyQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40011136,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkR32GACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqqVw//Rp4p/A9OYX75TK7Z66KGzb/Lr2dm2oRLEzn+G7/p+Du5OaL1\r\nrMrfqS6MG2joXc9ud984J3iEUJ9svgIcaYLW5wRMdT0COo/dahTCa0B1vUXu\r\nkzAMurs1gTGIza/JJq6Ar0YaLM7o0iOxVEwr3T2i87Jg2lgkbkpO47e1A0pl\r\nKt8AizoEUUh9g1WJXPJIQaKze3b984sVI3dKXG8rd8Fb8A3IG+sTdNVfKA6J\r\nLy1c6isl4bWpvLbU8ar3RYdKzcpmAjz32vYsb1i4TTHP//CLcg38l6agDWb0\r\nBSh6DTn+aWmd+dCZC5Htu9/81cwJUe8nisLc9e9k+X7WuN5FbLXBrfVh1Ny5\r\nZGwTes44N2QBAPfthirsq+KgYG+lnlEnA0GFYXQ1hcStW8wOJlWGZq0IjaBy\r\nweRBpqUHfz4gVfD41itNa3c9uAEbU9VQOUDvIqqqBj12JtxZQT88jFpdcBVC\r\n0BVtvNSXpds/xJAAzQJfopr64Y3SBcICzqzGZ7K11lQtXLIONHfT5/Yt9C5s\r\niBrPeg6dgWcp1zBHNVMVcOC6Mt9BSy/FdqSvCvYWq76QwwmhsmZw1WjO+yuu\r\n2o2ftmS9739cgBW8uZcN1oIvgvP68amgyVpZ7jvNot/rb8m8vyl63YL3twjt\r\nKtdWDSYH87UOMzP0CebrH9IAhFi7lnDCikw=\r\n=OqtI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2234d07de60878c5ef9286c3fcaf6f92a20ffd4a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230425_1682406789939_0.02409453968522457","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230426":{"name":"typescript","version":"5.1.0-dev.20230426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230426","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e8e56971d97ecbf3549efc412d8a43615c19fe5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230426.tgz","fileCount":106,"integrity":"sha512-zQ4BsUQeM5CFScIVsyY0XOMCn/VYav7z5CT6nlOSqI/CJ3DVn86JWE/DwkK44c39RyKCmtwB9hz+BWcb7bem/g==","signatures":[{"sig":"MEUCIQD0jORiKW2pCS3hD1bNfu2Miq/SZzp14UwIpsu1tkiLJQIgeYiOJ23nKgpZW8AjX43u9P+Cgm+/20HhzpTHddl6sG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40013595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkSNAVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq5pw/+MBh+lLzYJfSSk0SnFy5UQh3ouJqszn1RobfWKtzV0ifsgvek\r\noIHWCuVORO7qzuEvH1JcE6iXEPLMxLOLJ3D2Rbg/VdkeuJHPut6T24IxI7XO\r\noU1dkbwJ8uIR/1cWYfuoBD4/kkN27IBbKm0P/uSgl3EoCqs3MDXjZnmgZPgw\r\nZYRgd0qMr922yo7y2QyQPmo8euIFH/1R83PwHKGmjnVicxVt4ETcftYQAXn9\r\nkWGd5sPI/RPfsrlx02YpY04UuqdX7VXG35GtP4d788AGjlDYiFVojbgzjAkC\r\nYQ5B9APGP1ARs8woxxAn96aUm8MwPf8NXhucKgC89mielDdch053fLMaEkJU\r\nZ3aQnbx/dItzuHceE7qg4fQOuiOknqveZf7fcGrm39S7WmSrxAdGAu9Np0do\r\nBhPsY/mBEG5LrO0yM6m4APbvWiQSoN8ZhXyZSwdamgeMvSPx9W/grpMeocdX\r\nWn2Ch36v2UFQxlNxFY0yDhgAamgVmRYeX24XNsfdePbJhI54vzIvacc9NPUC\r\nkWe9bK3McD6gxD20l6ubD33vkOH1GdGSmdCumSpMsNrZNM4nYPbKp6BFyVLb\r\no5iqJHMWUsCcdoO+LghRftyH3aoBVou7oejxwsZcM71G9bbo8+qxuKlkdi81\r\nAa9FE519qGjV98uDBsf1GAc1k2twRSPpBEk=\r\n=5X+L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"eb014a26522dd809ae4d0e85634a62eabda2755a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230426_1682493461347_0.9362998430123386","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230427":{"name":"typescript","version":"5.1.0-dev.20230427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230427","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0847cf49c27ccc665a9be25d340632ab2e40b26a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230427.tgz","fileCount":106,"integrity":"sha512-MIGWuB7N/ijl3XM+Pryw92oOoPDAW/m4/nlvFv5x+GW0oH0oqezEmM+8yUy5FUrc7VavyLy5Csg81FWAc0iCzg==","signatures":[{"sig":"MEYCIQCTnJawQfPHuyD4o8LnFkBQfx6iOJPBD3GFPhwtJt3NywIhALDVq7YKO4wPFbATzAFxCebyH7+EOiwV6L9cut/I4mSR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40008557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkSiGqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJaA//Q3BcQc2NrnYtMAmWcO/BLGXDl+0ExLpAyl2EBv88VQi3lygV\r\nyKLGrNlRbNlfaeBdzC1dlACSFanPCPf+lE+fvU4P2GZyobF+pzqv+8DZ+dOL\r\nHeyvi2Q9pJnq2yZpdw/UiXnFasV+4PusJ2bZPWfQbSREQs/f8hGdRxEOM4bB\r\nzYekQI53PaU/hP4/DFQrPUJFzfZeveZlhQPXmMVEAJQSGqlHoLfFySyv/XkT\r\nbeAcoEUkw2owXvC5tMaWtNhx9fvicXMgkJIsY4AVQCs/SGD/y9fOSJO2henK\r\nyc7Pi9yN4vk5eoSjk88znC06t3RCWudCUT7KYeavOg0tumdUcVD7IoUYj99z\r\n7/pm92cux5veP/P9jkO+/pBEphocKcDrsBXrKiSvvS2vw+O61gS77jm5S1+q\r\nLhF4Uxz28EtMruS5PUuk+bXL+mjcfDLs2sPTldt6HfaHUf7rMrSu4pxqdZZy\r\nODP6M8RWE6hCSUAS0iBHkVwq7dPQLRfEQC7TtiD3WjmGcLzgsRWxMydzcgM6\r\nf/4liDwPGugofpvLs1KaC6XrJ1wZstMkWp53YEPMSHhX87FrykgwtuVZbKk8\r\n/ylakNOja64DHeGG2MWVC18zGcPHMG+WqeF4CCOwD1ftkXelqjIzgGvcAx7A\r\n6v0Cmc5cdSLhdyPQSld2O3hyr7tqR8jnV5s=\r\n=LkWC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"157753520520fd0936bff280de30af56e15f94ee","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230427_1682579882300_0.23399324459047866","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230428":{"name":"typescript","version":"5.1.0-dev.20230428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230428","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fa8ee981d81acce2fd916a1a9e9daa2929f0f797","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230428.tgz","fileCount":106,"integrity":"sha512-Z4EBOQZOfz/5XOQrvEbzqtBBVIm5/Ha2hQ6AgDECgfkBq6zZbQSItUgvxP1a5TeyZk3Wcw7/uJUvyhvlJESc7g==","signatures":[{"sig":"MEYCIQDoNhZtdYZudhlitIqgHspRtO9fIUP3Mr3xV9FQTGtcCQIhALTBN7KnHs6s87ar/MqTSc1SA3D0u+k4H5ifGryd33ty","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40043567,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkS3NJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoOsg/+M+l/gGBCEXxn1UJoBF+CYMkv8BAPeUzVSd7HCDNy4kmk8Pk3\r\n7oZ06NJcfQKie2zGEA9jl7p274Q/9+n8rxvJVW5GyxrUQW54QP8O0inxuD/8\r\nNdmjOTj0opYuO0MtYm28QkHGlarVpuuh2t5mjLqA3bnvj2ZkP+C+HsGY1HnC\r\nm1CIGKkLLMianvzGCuFv0VqgSM9go6rMcTQreILPF+M2FWcZbROswbVWVJCE\r\nzTHyS2wvgsQj4OWQqWdEOEpxJpXbPsV1NYFvgy9jD1RgvIjkzuiko8gj+Vzs\r\n5TF0kRJmUvhTo7aGNyRE77h462qMV4QgqdinFA8Wu/LawXn3ACNunoDv+Xcu\r\n+q44EMgdlkE/qr+G618flDPXQtQbWmb6E+0qZPFTjQlArSc5QEZ8lCpntmzR\r\nZjNyiFqTUVmdaic+DVzcAbwxpE3glFuHeMb9vpBww7LZ50dClOLYzPDyak6X\r\nUSZzpAiuAHk9E1V3qwLDcKJa5JcAhQGw648NbW3BNv5FMSzyjpTd++MleM5H\r\n4DVR9yyaBMwjugaXUPhuV5YSpenjVx+PfBMJt+qXijwgqVhqdkVLBXy39ARO\r\n/6H3kIvXJyahUaSDNBOBrpFLHtBJjBEeJj5CpXSSTMMMnth97DYZ7KajaSbn\r\n0lc1/VQPDKPTip7lJ7r2blVU82hAEFCnt/U=\r\n=UMto\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9a52f943ef2b8136e988954c20920a892e5fa992","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230428_1682666313592_0.5582651551285402","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230429":{"name":"typescript","version":"5.1.0-dev.20230429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230429","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"01fe672a9137dc13ee8b9e71018c37b90f6e1de6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230429.tgz","fileCount":106,"integrity":"sha512-uzOWX4dd0B8t25Ps+qdggHp2opfq1weXTtdsJXMXSJBzz48o7iAK0JxVJ5NaOMvSSsrYNvByz0zB3KdfGceWbg==","signatures":[{"sig":"MEQCIDQUsGq8jYrehou+TnBeMu44dszYmD9A8kTEd0B7K3y/AiBgKIAs7EuKN9YyuSisJ68PfwVNGhyr21FXnxsnqO/gQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40046279,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkTMM+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpKIBAAiORYyujCys+NzcfQYaYfcF21Oc625idntfkATKvIwWovciz3\r\nylhq6n86xH9Ao7p+qmv1KtE33LKdTS7IkjxutnZXaEKkwvMBenttf78McJ0B\r\nULrv118QUBEDNoimvQ1vHpGVSQIGHQc+A3l9ZThm+cZB+KuL3HFYJS5LDID+\r\ntsMOzhJDuLJ96txwCueaSL7ZkcfNpYnnoepV/z69/aAILFgowe0JBGQQivNb\r\nZj5XGMe85qhk5cTbRXAvrKm3iAENIX5YYuNoMBOWpdgN9rhB1m/pOCshTMOI\r\nbeNLT5XQwUoQnCer3LZx9hKXIfbkYAVUkRN739WZgAmXaU4uj4wguQs6ilR0\r\nJkE2IgTYEtpRWq4ze2GeVfzaoux5vz6F9i7+D7PFX6+NSRGHVRttJQ7iugNb\r\nQL/kyb1aeWulrGTNxZV0yEqhiEKlr/Px+vMOY7MTbhzZRsIEwyCrTQhbO7KI\r\nUxd9v01nBgESAXe2OOMCxVmnPrMEUtfX8d5xTQ76BU1on1/k1nd4OE99WUFQ\r\na2eXB9+s1nn4XbGaisSa7r/pV66pRnM92ywuPJL8ZZ1gscfXQ/6ayILQNNoc\r\nrPcyyaAATHUXj4vvAXEufFKqklVBaiJurCUlD8YoDRmB/aDppr7fb1erdSnK\r\nyy8n5RM2AkaxRELGNIWGJvvo2Bo+G0LjaQU=\r\n=cDdj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e1cead8e9ebfa7a757323e02e3bd222f5662f740","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230429_1682752318536_0.3224236514285572","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230430":{"name":"typescript","version":"5.1.0-dev.20230430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230430","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"badf7834888fc43f0cfd51f680f7d198435e58c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230430.tgz","fileCount":106,"integrity":"sha512-cHvLCtfAdeoOQtEC1m7ui8Y73iXRWchKy6k5OsIYDZyEaGa2AbhA+bcpsFH+IKJuL4k8ALTYTbwtfJWRI+Uoeg==","signatures":[{"sig":"MEYCIQCdUziBv6N8viMmYToZ6GMkthQOJ4hMukjE9UWuePV4ggIhAL8hvEgu/Gbz//pn7mqNZHuEj3Hkce9jgfunqT4LbvpN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40046279,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkThTPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmob6w/6A1CMyiN9uotKF+7CJMdZyxMipJfQhdjbCA662eutfMlIBv8r\r\nM/aCsLLrio53f4If4R9dCN3RJvPXi2Ojr1H3wUB4mwAMYtvCCnoe4hKUolJL\r\ny2X28OkPPVfDoSzzK1o/fjD1gr9wjHkzrcZ04DYSqnNlFu9Qtl+wxvPRlcU9\r\nxDP0ykPXvu+WL0V92mSIvYoiiq4dc59ohoW2Rbj+Vegwn8y+2P37dDywFy3P\r\n6qnAVkWOYYB4bqSdLwISSU70wivcDZdQoI4OgNfaozo7iyh9zir/QH+Bvqcb\r\nykIFYO2irIor1B9aI48b1fL/2ufMD1efuJNJDqNEVOV8T5+Di71oJZS8n9+X\r\notbDBCmgEFeyoN8UfB3YIhkdR7MKybRpNe8qrTqS5WUXYsK5Nf07wdV3P/UY\r\nS2JJOEQUn5RCoWOsEFIcys7QYU1KLWpaWCIqK671pHAJU3gINv/G1XG6UXdq\r\ncg2HC1PT8a4MRmd+Bt/LACHC0D3m2E4YWMjJPPSA1AlrYRX8heqbr5YAudQn\r\nIKvG6fpQD6TnWEtYJo1hsMyLutA9yGmBA9mxV026YRdm9jlB93hdleB9gzUE\r\nF6X/OiCUdY3lM40UnZQatx7iYKumpqy8K6fxJuNsGZvTBJniou5EXAzVmGE7\r\nQRn1xpqrDX8yngUoyAKLnovbaAh5yNijLhA=\r\n=WAbk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"289bd5ac83cdb4730134d031e6a224473a325a64","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230430_1682838735594_0.8169561007506589","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230501":{"name":"typescript","version":"5.1.0-dev.20230501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230501","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1264e46ef78be3ba3a703b9c41dc512d44e1fbcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230501.tgz","fileCount":106,"integrity":"sha512-do/P7zywbVm6xrjV7Sa7jqgqBfME/FhvtECzxfLpAxyqYY5SFPPWb5NTposRUVKw/0hLOxAoCbvYzNHa22VOMg==","signatures":[{"sig":"MEUCIFYf/Y0ZwdXjkKmshfu3ihp4jRmDQU6M/lYF2OQuTPQyAiEAkjkzxpSdSI/bDJkXTtGirWvS/MwF84vFFsbcCDIYK6Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40046279,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkT2aVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrm7w/+KdfeQNku5RFyEVli3qwC+cxSYqsQCGR6DH1jy+nxBknk3IK4\r\nBsCRHT0KArtYK0mz+bITDNr2m2AmN4/jhVKEc2my3OHEOWetubfM2avL6cuc\r\nPcGTqTRkOo9w40Cg9ssO+lJi6SRQN9x7it31G39p39R2Ilg8QZ6zbkuCvGXz\r\n1pGEuN+CBAf5lBHWo1Yg1RTAqAGylHt4RGj90smFcYu77N6srMg44VbTGfuQ\r\niVfeiMzcGo9T7bb1dqg8vXhH7nlgLGERaU4LmnUvzvo/5t9SvXOOh70mQSlA\r\npPCr4i89oh4CR7n18ZtrluwrNV8jKcJ3c2/mhEsMF6pRY/I9JvW2r/R8t4XC\r\nLj1QIMX3GNPx+pOq2+NhVvzXPG79pxWtkL0E3SjiillLXAGWDphN65GKdp9T\r\nMa7TZQOcJgCboHguoqEqwk7kBy6c3vfZvt73WeIMhhF0E2BXEPbq9j+sma+O\r\nbTUWyUm3mRzQipCaLn8+AoY+vC3YxFAyM0hTPyM4x0sm41ZJsHMB2GmW8v3V\r\nBKLHJChZPTRJvvPN4Kv+ZX/ddhPCi1GxpbyMJmQpEsdJxvyUObQpJS1x+pzB\r\niDXv7fHBtVeyhUywGaA5muDZaLrAi++zbM1ty8+ujQoapiKY+rz/gEqZDRV9\r\nm/8iVvguwWJ7U2Wl9Yd/H+wkq8SnowjOnxY=\r\n=UOjp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"289bd5ac83cdb4730134d031e6a224473a325a64","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230501_1682925204682_0.4931775384927344","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230502":{"name":"typescript","version":"5.1.0-dev.20230502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230502","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1fc61c3fe2c3fc496ea8289f542a02d3db1d65f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230502.tgz","fileCount":106,"integrity":"sha512-xhGigho37UgtjMkTWMKDtIBV6ElFjcMFdzwTPQ0knTCSJ8tq0ENGsQPeTe0E7Db7mgZYWULEZnzs8KZ8IlHHLQ==","signatures":[{"sig":"MEUCIQCLZsbSCrLbT2Nmp2jIOa6uQ/CKNN7wF66cMdRhmxeJyAIgRTbjG0Q1UVTIpUZQL8RgGL9iR1iY+4kN4lGFcYGDqvg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40044007,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkULgHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqqLA/8C8DOpOm/LSi+XCkRciy6Gjz5x02x2TfUIRu1TEdtKdGOUKKF\r\n7xy8qclZGrdh8BEsXnt0nAZpeg94mzs4ucEKAwFoA9Ip4ZiClfkhtnYaaczA\r\neqxmx0k1e4rNiSdrlVIqIc1ahuXtYfR6H2Yotxo2SouFWc0Gg4LJaZBmaKWX\r\nMpoLR7oDr16xpDu0FzxgQH/cCpJpXJFJ1TuaUHl7EHcJngJrEpkNMQ0NP8gk\r\nu8QW+/k78Z9qKFVwMcEx4ZzlihbgB3lndHHwjfNW0i6CjWD8iWtWKu+8UpRh\r\nqDwOPAL8D18OR11ZCJawyvT4ES0ftDLsN3Kduv273NQhZHxSlTfZp1SFeP7N\r\nqhgJSr9laGkAo5yQHC0VAtj2vBvRrU4X+kBvxly3xnxiA9nzey/fjRGpUpVH\r\nRVMXEwq26KVSnuYWsBKnQ3qRqJiYjEixN/YJVD9OsINkbtvbRwxXBw3UgN8N\r\njp2bhvXASC7aoyDV6sWWUwOFOX3+RmAwLNfSxLJxwgwkJKlWkAwRbLUhJflN\r\ncLjQDeOem+LSkO58W6yuY6amsSo3Yiw2Qu8Km5iwCb/LU5qUQdTgK0+hREf2\r\nG9b5A7WlJ9dx9clcJfWxjEl8WShn1HFmYSYdH9/J+qyJB1CkUPMVBzVVNUkM\r\nJSMUpCIR4S/tDkUkOhS9jf2vsd56SHDaQ24=\r\n=Ir6c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cbb8dfe78441b0e07d1f5b961b68815dca45fd97","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230502_1683011591213_0.9365582645360617","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230506":{"name":"typescript","version":"5.1.0-dev.20230506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230506","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"32f973a0db2c0f9d8d2e02281926ed272c3337ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230506.tgz","fileCount":106,"integrity":"sha512-sxjBy7zph+G4ZbPnMpqhYcrV4OTX7FXNe8OuayCnRMkAQiLvdCdrCHXV1n2vU+9MLNoXjEdbiIRGEU3Vhee7ug==","signatures":[{"sig":"MEUCIQDkX3YeIrTp0suXeH+rrdSQUV+zErf+F8D6KdFCstFLPgIgC8F15bOPZTa238QeicdPd4btroUuydJ1tWueD3UG1KE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40060627},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"04d4580f4eedc036b014ef4329cffe9979da3af9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230506_1683357457836_0.8399173289776694","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230507":{"name":"typescript","version":"5.1.0-dev.20230507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230507","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d547cc88e3b4ce3f999496e5077d8a0ad85d758b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230507.tgz","fileCount":106,"integrity":"sha512-tryqqLOHFRM+DepQpQpA+V67gotkUQak5NJdOVhUd2rvGqximHRciL8x+HObVirAT0VxYejccoc4gpvwkXq6cQ==","signatures":[{"sig":"MEYCIQCwjHTLDXkihIanMLM+K0mPG84MAOXvZaZrse9PLqjenQIhAN7vGuL6FCk8K8wBFLTQoq8Nom5FdPEEjUtgMg/BeCUf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40060627},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"04d4580f4eedc036b014ef4329cffe9979da3af9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230507_1683443543585_0.14773838924036675","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230508":{"name":"typescript","version":"5.1.0-dev.20230508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230508","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"610ec5682b481852735754d6326d2de489137186","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230508.tgz","fileCount":106,"integrity":"sha512-87gFJLsUB0IWN6/MUhh0QHS+qnLR5gTGwZr5vU5dYEVPv+VTNv/g2oXLWr5LCEP+hyj+a4LXx8QjCD7x6v+5wg==","signatures":[{"sig":"MEYCIQDj5Edx48DSkt576V0QjXsUgqZzUw9PWGAS+ODu1OqZsgIhAJ+biF3YP4/iXuX25Y86S1AcGd+lGT2rd7YxqeDP03iU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40060627},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"04d4580f4eedc036b014ef4329cffe9979da3af9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230508_1683530316363_0.22744146032420298","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230509":{"name":"typescript","version":"5.1.0-dev.20230509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230509","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20024bfeb6d0c7bfa4026d614d35fea53a40de94","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230509.tgz","fileCount":106,"integrity":"sha512-ZOIqXGpzmqUPr0Mgi5dP1NMTH6AcbKqojL7ChJk1AyE3I0zfce04xH5vpjtNOl4UcGWyZoz1xI7HOvmJhy/yng==","signatures":[{"sig":"MEUCID4xvie7+18ovlAwmHWC79L9/t87xYXEttANrs+EtWuHAiEAtyXqHSQFTxge14O2WmlVZ1txfoR6ZRHWV2YEz0WZXm8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40061077},"main":"./lib/typescript.js","volta":{"npm":"8.19.3","node":"14.21.1"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2291afc187359593f9926195f3b2d683ccd0e675","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.3","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230509_1683616514059_0.8344101701245545","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230510":{"name":"typescript","version":"5.1.0-dev.20230510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230510","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4b42ecd76c179dcf87785f8adf9a9737e53a38b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230510.tgz","fileCount":106,"integrity":"sha512-jtCZp40/FBD7Tlj916Dv7bbr+NJK1ZYXoODwxKNBSuZTGeuijogC3k78zp84rij3uxY+F+HFl30cIpMm5i/iAQ==","signatures":[{"sig":"MEUCIQCvc1iuO2sY6HoS1wlku46gC65552bcQRIF94YSJagyEQIgbiA/xEu/gAMUTEmr4D+GJOgYl/6TwKsP+bFFM05zL8I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40085198},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"53625212d9afbf709e09aa77e667795d55a0a220","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230510_1683702843975_0.6646522051223096","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230511":{"name":"typescript","version":"5.1.0-dev.20230511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230511","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4da5fa260e2fdf6930f21d6191580443ff8e9691","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230511.tgz","fileCount":106,"integrity":"sha512-T/GsNgbl4YWUZwSxCrj9uq2aIj7OC/5EyXqj4exIhRbwZEpjPIflv2TEqm6K5fFQhqKQpFATE8OBvY0Qzu8D1A==","signatures":[{"sig":"MEYCIQDYq+QKRuLiMLzdFWWzhEXeDKs1d8J52V0MkotOPp+wOgIhAP/UhYDDaP1HIAK+WaC2/My9sBN/piRWyb+YAz2IU/5T","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40085198},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d1b040d1bf6d0d3433f607773e7b38005a391293","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230511_1683789157077_0.544039197976951","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230512":{"name":"typescript","version":"5.1.0-dev.20230512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230512","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1815816cf5173aed1178e1487257d4d79e8138ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230512.tgz","fileCount":106,"integrity":"sha512-b0Naij+j/zOXP1SQzlvqlOh60vHqwsGoifrXLOHZ4KSSnbi+0herOKPJ4TTp+tV2K7P/UddA3T67kyt870Y07A==","signatures":[{"sig":"MEUCIQDhzIwyk7AYBCOHREphgh2JDWWAlnPZ4X2cHCBwqQNeTQIgbrf5xhK3BGtcTqKAop0NdY/a8o9JXG+X05TOMwEFDmA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40088249},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"a404f3d7805ff90b5c1eea82580ea914b52da610","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript","@octokit/types":"9.0.0","@octokit/openapi-types":"16.0.0"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230512_1683875580342_0.20749724634717714","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230513":{"name":"typescript","version":"5.1.0-dev.20230513","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230513","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b1deeb31f6ced2decb3d9819f8ff4bfb8907a4ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230513.tgz","fileCount":106,"integrity":"sha512-tHCqXX6guJwGQLfNyt/QcNkudg/kADIk6AmwUMQR8PEAUHrlOx7taJ0BFUEiUYLX6yBmCUs6CezfkRvSZiU9eA==","signatures":[{"sig":"MEQCIB+BPGQy+30s0wC1ehgB9detlsA+eUMcACiY4mYydzieAiAfpGfWuNW8fT9SLV0VvzCQLpnj4WCi/XIXPcpG7Z6QJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40088710},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b4e628765dd68866550e4472df48b6ed3fb84c7d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230513_1683962144580_0.7266428869731594","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230514":{"name":"typescript","version":"5.1.0-dev.20230514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230514","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bbb374bc248d4937c414f562e493de3a6db4d4e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230514.tgz","fileCount":106,"integrity":"sha512-eqrm5MDdWSVKrPKutCwj4N1hVZ8zReTXuuOxC4ufWGtLHPTmJWAm3JfxNYNcfXHhpiCsjVtx79zOYnFWEMObNw==","signatures":[{"sig":"MEUCIQCwadCG91UDq2bq6SdEIBFzhJHQvL1u29clDk6TBj9VIwIgHaCkAgmOKo3+YUYB/yikPfxvGrU4ZBH28rcD/ZHyOL8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40088710},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0aa49c152d37f97e16ad3d166701d0f7166a635e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230514_1684048437703_0.08118817619202146","host":"s3://npm-registry-packages"}},"5.1.0-dev.20230515":{"name":"typescript","version":"5.1.0-dev.20230515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.0-dev.20230515","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf1c5b9542d7bb6f5eeb7878f041705ee6f963be","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.0-dev.20230515.tgz","fileCount":106,"integrity":"sha512-yn0MGsy6U0QAVF+lXW6LPupQmuRsyA0xUJetqw2tDqa+49231BpkhTuY6oEwLsc98tiEzCfIw7hzbLsiwVGFaA==","signatures":[{"sig":"MEYCIQCALmWnH8ja1oAnxaDkQYBisP/NApvN7+GfsS1+TMJeegIhAJkoyyQ8M/JrzkG4WRWvaUgj+5aFwBOQEJ4S7Z0zk2Kc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40088710},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8fae437660ba89353fc7104beae8c6856528e5b6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.0-dev.20230515_1684134796126_0.12077135562057739","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230516":{"name":"typescript","version":"5.2.0-dev.20230516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230516","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9dc4d02c031cdf311ddb6ee646be09d5f13de4c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230516.tgz","fileCount":106,"integrity":"sha512-DGK8md4PQgA6QG9JnvC6LecNnBstc1h6zrg71isrlZTsRFVl3EsID6D2Exrh4ULbxynA61PE13M+uOmLFWOu4w==","signatures":[{"sig":"MEUCICVc3MA/RpaZZFNn9pLvTY1XATvYphaql624TPSJ0asAAiEAzUW+Mj43M3J0IqywuEeQefnbKYgLx5PbbLLYAEDVRhw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40098366},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"58f030072ed41e3428c658a83579bdb880ef6886","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230516_1684221194299_0.6448903666262003","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230517":{"name":"typescript","version":"5.2.0-dev.20230517","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230517","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6927c37887406ff250bc11f4256eb6136cc21475","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230517.tgz","fileCount":106,"integrity":"sha512-mTT3ka5HTeudnNirocnOfr/0d2CEvZExrJpP8YXqAvdwlwjwNPJ4TqHHiL1y9lx3RfsUWu6HSX539ZxngUTqeA==","signatures":[{"sig":"MEUCIQDnBEsxrjoNGC08mgxemoqTnAsxktqFky3qkN9z3dzZ/gIgJfLP6wcQpAb7ppDhNif4e4f+UJwvIF2y8dV9KPLCbZA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40104946},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"dddd0667f012c51582c2ac92c08b8e57f2456587","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230517_1684307532861_0.5962342372112588","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230518":{"name":"typescript","version":"5.2.0-dev.20230518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230518","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0bf70a4334e8942a9ede2a595ae79409d598a79c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230518.tgz","fileCount":106,"integrity":"sha512-lHSI4e0QtTokuq/T1UnAFtdh3S2bzTG1TrR0Z3n6ld6J97SlPwW3FKbtKZiSdUVyOBaL0KbEiEyjy9AzukpS4Q==","signatures":[{"sig":"MEUCIQDdEpPFyvOL4xalrTszHr4yDzAXoQXXglAkjwEt34FEdwIgXnpcTOrDD0urf0mghXdDQK0fAS2rp96ZXVdpDlim+Vs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40117065},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"174599c5542c38ee8f1fc61c9ca6532b68cbb19c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230518_1684394075268_0.9938550029912125","host":"s3://npm-registry-packages"}},"5.1.1-rc":{"name":"typescript","version":"5.1.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7be6e85bb4ad36e07e0125e501eb08ed3a6e3769","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.1-rc.tgz","fileCount":106,"integrity":"sha512-+yHTPe5QCxw5cgN+B81z+k65xTHcwNCRwJN7OGVUe3srPULTZHF7J9QCgrptL7F8mrO7gmsert7XrMksAjutRw==","signatures":[{"sig":"MEYCIQDIi8lwY5ZVtHcHb2HN+13u4k6fJ3wiRPLJqdY13EC38QIhAMxPp9SYa6GJMAc0/cjtIMBLrO8jfjqkW2F8trTxiCuk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40088531},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-+yHTPe5QCxw5cgN+B81z+k65xTHcwNCRwJN7OGVUe3srPULTZHF7J9QCgrptL7F8mrO7gmsert7XrMksAjutRw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.1-rc_1684443278536_0.870898617013804","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230519":{"name":"typescript","version":"5.2.0-dev.20230519","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230519","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7b3fcd9e7a9040a090747c975fab888735a9d761","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230519.tgz","fileCount":106,"integrity":"sha512-3ylSjHrr9oN98tNhwSauXs9bWl4kGiZvIbAKihcGy76HjXrzbKFT6R25f+WT52S1GvAyp3Wz7e4n56ZztPhohA==","signatures":[{"sig":"MEUCIQCn5oTwRSRLLQemcBnRmj7BZ4tu8JGrDNi2R/jixcMYgwIgS8AxlsfSTiiEMzjUuNFS50okDhOk+ULcqOefs3TgV/w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40119259},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ae33099f25a2d575a130f70eac44733a8046cf4e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230519_1684480368623_0.47755877379230594","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230520":{"name":"typescript","version":"5.2.0-dev.20230520","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230520","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"89137ad09e76eade2f642f45dddf788b0527866c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230520.tgz","fileCount":106,"integrity":"sha512-NW7cFujxqf68PzyiXhpvlSoemTKw/9sAYwW4OKtTZ1/LBKUse8L0sRNrt/4tqo4JqSjHsbHNBv6qUfn3ox1Dtw==","signatures":[{"sig":"MEUCIF7ytMZVrmutaO9v/cb74yp4n+/GfEGwKqqqf8oTZ/k4AiEAnRuJrx2sWhiMN8T9i+h5O6bfFxNoY7g+iGJdLP80bxw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40119535},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"04cdffdd2785128bb3c03fa189eb7d3728d1a20b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230520_1684566768313_0.9814148971918859","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230521":{"name":"typescript","version":"5.2.0-dev.20230521","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230521","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"62bfb35285e1dea154827507541a1bd7dc93d950","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230521.tgz","fileCount":106,"integrity":"sha512-FY/YyQs1rvpUaX5PaZ4HZQnzBqlgjNYeQIOCF9208PLZvMsPwiJsZS5wbf5fvdepXkzpQK6ZpjGSJTXa7Gsp3Q==","signatures":[{"sig":"MEUCIHRNsbT6vwzWQet2cDa6/AaPAmLpPuQPpA/veA0kwek5AiEA2x8sO5Oe3qoPX2HPY6Z8k6QFELBgb/+nKO2hfL4PFkE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40120211},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b1ef88c882ca64c7dc6f4ba8b1c578a6a77981e5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230521_1684653186342_0.30824178274851466","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230522":{"name":"typescript","version":"5.2.0-dev.20230522","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230522","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8bd7765fc0044f3a432b420e7b886e0c6c3ec6ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230522.tgz","fileCount":106,"integrity":"sha512-t1ScfqYSrFOFNyHU0goJKPTE5z9FIx1WvjXMAl8JxBXUvAzPCqanT4XEMZq7e3GlgLSBrFpZtuvixbQSxVeaow==","signatures":[{"sig":"MEUCIEHLeeonB8jwGlqYME3b5votmu88BCynk/O15dfIoVyEAiEAo+Ig3m948v0zmD9WxXhBF035S4cMDhZ/oNGRDRCBVk4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40120211},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"996aeb6aaf8d6a04f5b9f29085f062bca98642b2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230522_1684739813599_0.53057339178779","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230523":{"name":"typescript","version":"5.2.0-dev.20230523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230523","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"357fadc408612288b6a21a960f1f9a434577d364","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230523.tgz","fileCount":107,"integrity":"sha512-LrDMumdesS4xcmqzEwLqbg33EtWQeSSXqrydFklXphBiv5+aETXiyUnUStkje8syf4+6j0MQTW0KzijiLS+rew==","signatures":[{"sig":"MEQCIEFQuTseB8ZXsgEqlstwv7ALBCAX5zaF0dJDKx9C+he7AiBiSGuitS363VlH5xAE2e5bC6IqZABWUz1ptFTc2eLAFA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40122774},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2beeb8b93143f75cdf788d05bb3678ce3ff0e2b3","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230523_1684826109180_0.5426939940084223","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230524":{"name":"typescript","version":"5.2.0-dev.20230524","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230524","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c2714b82f5ef8c63328a253692ae0b8c244c86d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230524.tgz","fileCount":107,"integrity":"sha512-1XzSUJCt31jm7jIZ3vBKzK46ZxnmqX2VdVg/dur9AIaz9WmidrABs7F8H8d4onpIV8RYD/L6xW6MXR5EHjl+LA==","signatures":[{"sig":"MEUCIBHb1Lc2UEWqVwva/IW9kOA3QwiMiPoVyP5ciFJT5z2bAiEA3AWQHfw/qAq0VxOD+iFMupC+ijibMFdBuaYl9a6IEGo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40122774},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2beeb8b93143f75cdf788d05bb3678ce3ff0e2b3","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230524_1684912492760_0.4998136970282743","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230526":{"name":"typescript","version":"5.2.0-dev.20230526","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230526","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2aaef08b8a4efe73933535bfd44e46937932d2c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230526.tgz","fileCount":107,"integrity":"sha512-FG5f+kPZixLksvcKtzIgprYSc4vfyeGEAJL046/mU6Ws3BVYmg+SolJO/8/6PDdOXKUHcA1jnXVk1K5soY3ASw==","signatures":[{"sig":"MEUCIEbEvq6eD4/QSX16Rqlq6LQ/B3qnCQOpadzRdPU/sZyYAiEAnBmvSind2uIQ5tvtPEyLsm3tb5pwYo6ncm5/HxVW3KE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40129115},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fb7efcfe06ed68bf31614e43f474732167302728","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230526_1685085266322_0.4490114377821257","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230527":{"name":"typescript","version":"5.2.0-dev.20230527","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230527","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e3dc6c131447e7101408fa50382bdae0190ee391","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230527.tgz","fileCount":107,"integrity":"sha512-ZBBYdXJwgj7iycQMExPdm4dq3FrYs/P0b0gZoxRlfa/LaG+9UkGq2IBVc82BbE84dw+4CM3dorzhAYXLdvbIQg==","signatures":[{"sig":"MEUCIAoLaL3bJkoRnARo1xgKqWDWoxia3p+SQgPzVW9sgU1TAiEAmGzxeRwpXx66aFFb3YLmoIOsoupFmyjlDk1i5+keH7A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40131180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ca0fafd694f13775f7491982a83620b51c2b785d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230527_1685171908363_0.8076762350378421","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230528":{"name":"typescript","version":"5.2.0-dev.20230528","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230528","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d8871f21247a081445a7a296bf2bc79aaed147af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230528.tgz","fileCount":107,"integrity":"sha512-1qpt6XKPtZOooC69qWRXa/buOk+Qhdzro0nRCVHDeFYuTDC7KdB8Eo5dpfViQoaZCsdPcLICoRwkqvNoRz1Sbg==","signatures":[{"sig":"MEUCIBo7qBQRzXNd/KCTZtP9XANK/EF87EIPTAjOldM2EENnAiEAwwA3jXC/Kuz4fVwsoem53HHGpCdHl6qwxneo9MjG1tE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40131180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ca0fafd694f13775f7491982a83620b51c2b785d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230528_1685257982869_0.8608579391857334","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230529":{"name":"typescript","version":"5.2.0-dev.20230529","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230529","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fd1a021b9b9b17569ddf7f168daae1daca4ad1b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230529.tgz","fileCount":107,"integrity":"sha512-iug+FguVJuW5ngiaXR/3eruFIMuQiZfKkIoA2zbORdx0EgqVfaUXy8WjUyI7fhfctkRCZeCalNPlunhhL27dvQ==","signatures":[{"sig":"MEQCIGCHIRZnS/+6p81ToaCSl5bPmbKor0x/M7gTar0R46rbAiBYWTA91Kknt6jIWS9aYEgbkdxsFoFffxbkFJ7+ujXjhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40131180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ca0fafd694f13775f7491982a83620b51c2b785d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230529_1685344377789_0.1301344883839617","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230530":{"name":"typescript","version":"5.2.0-dev.20230530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230530","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4251ade97a9d8a86850c4d5c3c4f3e1cb2ccf52c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230530.tgz","fileCount":107,"integrity":"sha512-bIoMajCZWzLB+pWwncaba/hZc6dRnw7x8T/fenOnP9gYQB/gc4xdm48AXp5SH5I/PvvSeZ/dXkUMtc8s8BiDZw==","signatures":[{"sig":"MEUCIQDjJI6oEpZOXzTIL+OWNdBs/sZY3UvM4LRqb0Wp9Qwo8AIgdTnYyTdOhxc0Ul7U7IDrgL8aE/4i+m4iUN8Dgo+FUtY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40131180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4bf047680045a295e505177c5a66c186a48bccc6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230530_1685430792841_0.5082886173933243","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230531":{"name":"typescript","version":"5.2.0-dev.20230531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230531","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4e094fe60bf04cca1645d722af2aede92b4da614","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230531.tgz","fileCount":107,"integrity":"sha512-srFqtcpU2ZMiHj6PXzT4MHXVgASaQmOk0n6gj0T/zt7IW2o4FdKJCnnf/u7tGisG5m/Wk5qjhT++Vij5Cj+GRA==","signatures":[{"sig":"MEYCIQCaJnCFoWc8IKGm8lZ+PGB5w1yhBucUdfUPMwYERzOVugIhAIcXPvZQgFGp3WNykTXeRybjeZokIWCUBUE5IFQ1CoA1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40131236},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d495200a4ab8d9cdf9a65e6669da4d611252751a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230531_1685517287897_0.10726880557157625","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230601":{"name":"typescript","version":"5.2.0-dev.20230601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230601","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0f68d0cf3ea32680f5df5facdb021c745ee750b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230601.tgz","fileCount":107,"integrity":"sha512-ZAe/C0wi4nXNds7zaN35oe/ju3WhYdyI+lvRy+xfsG9348PLOZgtYKO3v2RX5fSxhT2uZH5Gb5fk/sjCLaI9uw==","signatures":[{"sig":"MEQCICYIb083jhN433f8IlD3tCtAas6f6U5e4jBvA/ck0dpvAiAdplWvA28fc1dozGxgDuA/EllN5mLD94dYBgf8GL3csw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40136656},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4c01b2f9ee6e65ff9a39e836a99b0b4959bce5fb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230601_1685603603364_0.580586829063656","host":"s3://npm-registry-packages"}},"5.1.3":{"name":"typescript","version":"5.1.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8d84219244a6b40b6fb2b33cc1c062f715b9e826","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.3.tgz","fileCount":106,"integrity":"sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==","signatures":[{"sig":"MEYCIQDZQAZ1AUsl3R5V+FO8rcBHGdAoDtsqvkqQtg3vXDCEjgIhAKVhLSwlk0il/lscAv+4/CEg+m9nqbmQvmXTI4Y+amJr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40094197},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-XH627E9vkeqhlZFQuL+UsyAXEnibT0kWR2FWONlr4sTjvxyJYnyefgrkyECLzM5NenmKzRAy2rR/OlYLA1HkZw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.3_1685640595408_0.5715886447674965","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230602":{"name":"typescript","version":"5.2.0-dev.20230602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230602","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"01e2055aa8d8bde4431947c0c048c07c23cc6027","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230602.tgz","fileCount":107,"integrity":"sha512-LenKdxmkwzZRmEKzShAq83TvEuvCGR8pCYBe0VpUTuJ7NMSK4r2yV2GTmJrSqtk8IoJAmc+PfymMQIfwX1JGQQ==","signatures":[{"sig":"MEUCIHPWRdnYnaNzn7aqzD4hKdeAGOIoXM/Y+o4Podc1FgtnAiEA60uvCXZN55wEz3jXMKsBmD9JcgbA4vmT8sxrUBJFSIc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40149679},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5bf1bac6f31c568fbc45be5414c759959d4ce0bf","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230602_1685690111131_0.9289819710167304","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230603":{"name":"typescript","version":"5.2.0-dev.20230603","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230603","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e9e618df48bd1d74296ac264dd816ed43dd96a27","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230603.tgz","fileCount":107,"integrity":"sha512-jxLUGxmI27KgHSMU2bKNbnpq2WOQIJYJvBcOxcgBSxzCnTZTZmeWU/9nPKQCtbHorw+OTe+BxQWjVw21uhPxjQ==","signatures":[{"sig":"MEYCIQDWkSajDOo78T16OT/Ei+2SBLhZ0Ij88fSxKffgVznsoQIhANj2hw6nIlFekUFFCRnUNy5G4iwlgOjgCfnChkuRnXC9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40168369},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cbda2fcce95d7ac82841cee631f07b73be07c0f0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230603_1685776344041_0.4307619230633235","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230604":{"name":"typescript","version":"5.2.0-dev.20230604","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230604","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1713801ff534308db6b7cca3dd1df1102a96841a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230604.tgz","fileCount":107,"integrity":"sha512-S+m9ocHTc37/7/vpvz9n9ClkqteqN3jcwFYAZb3Gc7uFmvBKcjHSU8y+ccAh+d1sOgzu3WPZW8WrbCsGZWmfCw==","signatures":[{"sig":"MEQCIG3HRtPjw0OTylB2xyD3dEaHwwMTjmFFEQZ0ssLcjP1kAiBRQKgG86aY7NOSPvMcjWPH71rQvjzs623eZGRj5u9evw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40168369},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cbda2fcce95d7ac82841cee631f07b73be07c0f0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230604_1685862764210_0.01108057805674112","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230605":{"name":"typescript","version":"5.2.0-dev.20230605","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230605","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"60479c398e828163323a351300c976a1ac911a47","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230605.tgz","fileCount":107,"integrity":"sha512-xMeI7pFrOfxZTt1m4a2txN1E2Qh9IzLT9LNdc0DlEwJJKXjajj5j/nFLwWOUEnaFZBT6v35jlgLogG5HuSxUyA==","signatures":[{"sig":"MEQCICZbk7EHjdyniJPv2WaRKJEp3YdMajJK3LLO/RcEXgrMAiA8NrKSsccV+0NMmxX2D1ea1ha4NoMR7yb8ZX0aYr3wBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40168369},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cbda2fcce95d7ac82841cee631f07b73be07c0f0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230605_1685949179783_0.013388874529825623","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230606":{"name":"typescript","version":"5.2.0-dev.20230606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230606","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f44e8a6440686e163506c4cdccb299eb4af6fcd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230606.tgz","fileCount":107,"integrity":"sha512-aS+7vCKtiKKuzHFWW3sZ0zX1mHqSHESmM+LgOXx2jAMQ8NnHoT+7ixl37t0Z+JWXjOb0umUbgjBepaOLiGTuSQ==","signatures":[{"sig":"MEUCIQDOKWdyminWa+jt1S+byMqWUfaJfriWWePLxOzNGMF0QAIgQjncec8aTd7rit51bJ1ILmD4yEaoRy04EBmGfLubMVk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40175378},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"324e61e4519d010f2dd929b88fe3e9eedcfc5d44","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230606_1686035549600_0.21047335945389722","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230607":{"name":"typescript","version":"5.2.0-dev.20230607","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230607","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a088d220b7f5319b3bf3e5491cee4eabfa8bd7ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230607.tgz","fileCount":107,"integrity":"sha512-7Lgk1sNuuYpMNvHuXIMczqhLbJ99RpX3VgokK+Ir4DgliycYNrNGM/daAO38fHkk8n3lg2rP/6U5I545xTJdKA==","signatures":[{"sig":"MEUCIHA/Us1Ob2JAvksfN48ob1YU0ZAn2J8GwE+Ul/ZC/HnEAiEA+LiA/2yuUAb36iyAO0vjVGY+TK3UEMnZcDLC72CraaA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40183015},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fbd63e9e43dc4e64184b590fa156002a7be6d47e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230607_1686122105505_0.35485520337992993","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230608":{"name":"typescript","version":"5.2.0-dev.20230608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230608","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"744f533eae402370fcde28ca59d6dcdf6ba444d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230608.tgz","fileCount":107,"integrity":"sha512-My8VOVNpHAZ693+NgsvD2JXgXg5eosPJcEDzPcme8tU1vs+C6G6liR15r3qd1qSSNjDghmCe014GjWspVBZ7ag==","signatures":[{"sig":"MEYCIQC01NVtIoFTRftie/ELCB9UR+jwgllj6Fhe6WtwqzSJtQIhAOMiL1WHYirkbzGcUdOtCNlhhWeay7D+O/JsgJwIEBLI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40183015},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"50df25733f3ad42f20a720e8283f1af5d8573510","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230608_1686208341224_0.3861306805206135","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230609":{"name":"typescript","version":"5.2.0-dev.20230609","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230609","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"33898de34ae1a5834f6eba0202c781804e98585b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230609.tgz","fileCount":107,"integrity":"sha512-K2ANmDIAXPbor3BkY3Fg8eQAeZwvXNWtrtP280muI0V2S9WRaw/EYgDC08dectU5OUQJ8AvEqEYnRN9Hg4zeEw==","signatures":[{"sig":"MEUCIBiINmsLdYiWH5lpWUBR0rEB+qq6XNiJYXEIAW2XtYY5AiEA/gccnx5o6AeFPdI+DLGb8zNi/NmiyXAWP5UB6JyPSI0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40183015},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e49a15f6339381213d7785bc3c78e5bb275a3206","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230609_1686294767294_0.4356466543330395","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230610":{"name":"typescript","version":"5.2.0-dev.20230610","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230610","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3867ad92b05a4389aec705bf1fec81da94e23f98","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230610.tgz","fileCount":108,"integrity":"sha512-xeq9aV0oQjWBJAeUfg5MOkBuPvc5iYRgXGFoKPNxPpvum+0ttNDF4azQdfIggbe3TmGE6tInT969gQ/v6EKflQ==","signatures":[{"sig":"MEQCICYQ/W+uyyh8wbiym5WscDqxnHzY2KR3UsNPQmm2UcNHAiATSDzGvScQcOQmrs4MdGmzwRcf3aPKxhVb3MINzRrptw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40185532},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"33eac2825ac548cf804e3d3abbc6a53b320a1de2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230610_1686381379315_0.9509216570843984","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230611":{"name":"typescript","version":"5.2.0-dev.20230611","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230611","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f78d445a79717e1a51a14daa69f476060c6d294d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230611.tgz","fileCount":108,"integrity":"sha512-qbg1yH3XnM3fKxBpXTESv++zWLL5TbS1QfPw6D+GNNemnHo4OXtuhby6pXoaFSCiPILY+/8EqRAJZb/ovVAJRg==","signatures":[{"sig":"MEUCIETy0jWp3OOuV7SfTQVylQ5Em2B7fF8gmidlOZW372bCAiEA+YglApy0F3eS+j/VtudRNXFOyTt1VaLI6CDOcAj7K+c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40185532},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2f34e57ed39ba67b4c4b26bbcb6088cf39aa308a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230611_1686467538576_0.3097298506302302","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230612":{"name":"typescript","version":"5.2.0-dev.20230612","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230612","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"73c4168a266cf3cc70b7e3af3196038bf3eb4033","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230612.tgz","fileCount":108,"integrity":"sha512-f7THkvy028PZE2G7zoA0hnJZJHjE0u/de8+Izzn4C1Oaz13Lm0ll9fSqcnfTw0JlmIc68YqrwC/z0s8IW0E3Cw==","signatures":[{"sig":"MEUCIQC/W8ExKyBHtO+zXY7q5gGV7B4eFOv3eX+i46+Nk9twwAIgZlwrMY1rkMrZX2BtgbPOxcwd52nEDCFtjZomrpfvEPE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40185532},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2f34e57ed39ba67b4c4b26bbcb6088cf39aa308a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230612_1686553993934_0.37415789466232785","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230613":{"name":"typescript","version":"5.2.0-dev.20230613","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230613","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f457671bd62c13e24b5639d66a3c358a74ef2920","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230613.tgz","fileCount":108,"integrity":"sha512-76DHxBtq2NDOqhgigPmAEVdBx2IDUi/RGXUAZIx+H1tcoSb38tdN3pq8U1ZaohCqAGH2Jlv/cWRSvRT27D8cxg==","signatures":[{"sig":"MEUCIQDPNeCiyWFyz8hQ9YczEyjPUBqr8h05pBD1UaFTp8UgSAIgeVFIXF7iGkisY0H9pDqRgVYB5PrM4xZiNG0mp0XArg8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40203145},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2a37eb2e471e01e510849f0dc108b3699ab869db","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230613_1686640528546_0.5021524393328693","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230614":{"name":"typescript","version":"5.2.0-dev.20230614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230614","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"745b845d021b56c1c4ad236b3dade748477e2875","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230614.tgz","fileCount":108,"integrity":"sha512-DKpizlDq/CJKtl6mL4vKuLiqsSNV4iXN1gvQusKnbOo382zJTDDOD21liVymFKCZvM1ffDt6Jk1LUvfSFtg1SA==","signatures":[{"sig":"MEUCIQD+hktDKNqGXFHC0Pzqi+bE503b1OGCUGxa7qnF42OJ8QIgVzG2PmWREfOVB5McvBCT0KU8sn+1e35g9ysIYp29J7c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40206282},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d79ec186d6a4e39f57af6143761d453466a32e0c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230614_1686726787565_0.5133071650255803","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230615":{"name":"typescript","version":"5.2.0-dev.20230615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230615","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b7eb65f6f36ca252f799e029a1e3d74aa45fb20b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230615.tgz","fileCount":108,"integrity":"sha512-SdfFJrVM+chzZhLGs4On2LYaG/1DD2vr5hMCA1OwYUOompO+U6ljnHMQT5DAu8Bx2Ku5ZBBv53QnKK7WBrH2lA==","signatures":[{"sig":"MEUCIQC7n9pz5j79bXHHyemnUe4q5KhMKO8OtVKQBwl9/BkHKAIgJycj22AljtvS+tEAXf0T8RQ+c5ms90Y/AVTxcB2J7P4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40206282},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"972299ae347bd29cfb3be2de1a7f2ee24e0781cd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230615_1686813318916_0.6711834087669304","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230616":{"name":"typescript","version":"5.2.0-dev.20230616","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230616","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"56173fa188e54b022e6854dfe9e8be9961252b29","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230616.tgz","fileCount":108,"integrity":"sha512-pprSaAXEPeobRjBGiyipvM7IXY4wSEHq5RiQS2BnDzYAXpfPi9jF5CRHg8QgWxm1KQlAy0JVLfsQI3rlHjDcEQ==","signatures":[{"sig":"MEUCIQCaIEU07+3tUoWgw3UNEtmdpDPQr+/Q7GcHhfjyS4uDxwIgNuJrYpto5ZGatS/C7PQ5UP9NeUqmiTNApwE4kGtLjg0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40206282},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e1a9290051a3b0cbdfbadc3adbcc155a4641522a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230616_1686899871860_0.5574345511434069","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230617":{"name":"typescript","version":"5.2.0-dev.20230617","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230617","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c14319c78654e4fc6b192e8097a7fa395039de90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230617.tgz","fileCount":108,"integrity":"sha512-+h4AOo0iCEIvT4MHNeTlZD+pmv7CW3/0zz1eZgY6AnatF/jvkBRaHa6ow+xHNHnRE7VJcBYDPdJQTOBqBkjVjw==","signatures":[{"sig":"MEQCIE6q9/KwlTS6FaJ7JAhZFtLi4dYZv47VsuSMic5atQ0aAiBW+rGlMnVz3oD5Kyc4IXW9rNiLTEWeTroJMhPeyDVnuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40207196},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5021dd87ef36e87bae39cbb5a30dabd295410920","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230617_1686986316636_0.7487898432120259","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230618":{"name":"typescript","version":"5.2.0-dev.20230618","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230618","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a36af5915d38d85c677f3120fd5234a09f64e1de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230618.tgz","fileCount":108,"integrity":"sha512-u/mYXRLwUDy5mtjZAipCNDIyt2PmzbePMB6yy9LFhbZz50EMDR3vhp4qEym3KWXVOfqgp1ZOfpndU0TZefE79A==","signatures":[{"sig":"MEUCIQD1+JnBkpUu5VAvlKfsfe2//LQk8S40ZZTaNJjJRyMUpQIgL27CSs2wZRTNOfui5WihquJBGUL17j7zX9I0yrCHHSk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40207196},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5021dd87ef36e87bae39cbb5a30dabd295410920","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230618_1687072621235_0.5106415267346187","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230619":{"name":"typescript","version":"5.2.0-dev.20230619","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230619","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"438e42704a0858bfd8b49bd0dc95590cb982ce9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230619.tgz","fileCount":108,"integrity":"sha512-+6iR9do2a3NY+CIVpjdJk0SyyxzvCS7//OyA/iodB8eCUNcZiS0n/fqMKJy8GUFksbEm0zD1oodbbuXFlh4+TA==","signatures":[{"sig":"MEYCIQDZ4MslohMHTvcx4gVdG3q71NV+3nLZJm2wrMJ1VRcO8QIhALmjaV5IxYly+/+v7EEQ4kQ7+cwypKiio3sfsPTFj5M6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40207196},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5021dd87ef36e87bae39cbb5a30dabd295410920","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230619_1687158777877_0.49052121116378467","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230620":{"name":"typescript","version":"5.2.0-dev.20230620","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230620","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f133a70db9963f725016d1d6daa9ed93c26083ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230620.tgz","fileCount":108,"integrity":"sha512-b+xpXf2CUaS00FbWW5+Kz2oYW27rHb6axYghK9+yR4QInoFy0PBdtkEU7zqm/uGXuULB5EfxbtNGlW9+2vsbSg==","signatures":[{"sig":"MEUCIAn2AmQs461aabuZRUQjCkmFtPekPmO7LCvGSPjaZRQDAiEA8dVcZiT7LFKOiTQo+Dr4tVjHe1N9SBhk3qh8QT5iNEI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40207196},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f415b196fc6355169269d25d7bc214ea76bbec7e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230620_1687245184518_0.9875492076226391","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230621":{"name":"typescript","version":"5.2.0-dev.20230621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230621","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fc61be8c6448dce096aa5df1abda7966d730999d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230621.tgz","fileCount":108,"integrity":"sha512-8iIehsqwx8TrzBcPWAuXZ0Z4wF/+0CmwdbibftaivqXJlD3V4qWr26hn67r/UT/VNm67iO86XN45F8Viivvobw==","signatures":[{"sig":"MEUCIBIr1wybVSUAdAiygHEh6vXHoEJMd6Y+LgaX8nxI+sWnAiEAnrgdFI19Zit74wSf3TYPk++DBl6GzP4SGejjRRs0Dhg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40207578},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"a118f37399bd4632c0ead2a48071cdfbd4c562bb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230621_1687331569411_0.5808360520272187","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230622":{"name":"typescript","version":"5.2.0-dev.20230622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230622","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"830dc3103d64c4dfbb164978ef274a7471e63bff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230622.tgz","fileCount":108,"integrity":"sha512-rVTuiLuyezBKAEAvkvDRvO/tA+nk5DXwnWk3vpKXzDtuv7JJ22iBPkehusg9m5AQ6To+ZJ7+mFJ+mNE6yPr9zQ==","signatures":[{"sig":"MEYCIQDJ1OxMexNPB/JIoROYlwrQBAx6FvF22UgduG3f1JV1PwIhALyy2nlfFNFDmQbZyJ5axuAhZjEDofZKV/THJ0eWRuv3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40226920},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e69a0b0e38b380677adb83ff0d20d8b8c32b2d9d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230622_1687417930845_0.4829444604626165","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230623":{"name":"typescript","version":"5.2.0-dev.20230623","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230623","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e051a098ff9e45b82c21bd8387d618b3bef654f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230623.tgz","fileCount":109,"integrity":"sha512-IduDyLpZBJFdoFuHAXj0QfHwkT6GXtkki03deolpXnPG4R+wiVZGIyyzdS0lfVbFCVejcINPxxBs7ce6E5mp+A==","signatures":[{"sig":"MEYCIQDDS1UnTKT4tNiIM1F0M+aIOjnx7hO8yJR8I9jtSYNeqQIhAPxZA3BhNlfE//QM9rE3iZMiJo9mGTMmvyzcNWCvYbNV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40500512},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f7e4f809acaea6b1b247ed05b2b7873d4546ab9e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230623_1687504391534_0.6412519067145854","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230624":{"name":"typescript","version":"5.2.0-dev.20230624","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230624","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"87d481b2959e6605d9df70ed2c006d60d23b38ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230624.tgz","fileCount":110,"integrity":"sha512-n/E1V9TddYiQdoaPXXt7yWU214+n0pGWk82auTMaAkOAj4HJy+TLtaeNt4QjDhMLiF2yFCjVma8qNgD24X6VxQ==","signatures":[{"sig":"MEUCIQDTOJfHfGWoLq7O5w76l70JeIv2hZFRSR2Seq2kznhkeQIga0nXqYo0ljVch05xx7Hj9o2+f9BIr98oG75peBB2ko0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40515625},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4b0fd40aafa50720163e5699ff7d5a14eaa74118","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230624_1687590786232_0.2641129255599708","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230625":{"name":"typescript","version":"5.2.0-dev.20230625","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230625","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b21124e985edf7e8906211c2bc6a121f82f33478","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230625.tgz","fileCount":110,"integrity":"sha512-WMaChlTzClBshpE4Btm2fnl2W2Rr3LmC5ZrngUCWO78/ZVdJdbctSBWDcrqI8caZLHQmHwcW3GYedZX2OJoaUg==","signatures":[{"sig":"MEUCIEOF9Pg0dhPiajNj7Cr4Zu4BfIQJs7ArOmQl9bgEqnC4AiEA8hN4kvJSy/8HMROD4iRL0ipW6++CZgo4pZgi5Umv/08=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40515625},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"11b1cccb73b618560f0400c2340c696fe293be9d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230625_1687677227330_0.7285373952167933","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230626":{"name":"typescript","version":"5.2.0-dev.20230626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230626","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b28dcc98fc125755cb3736929669699ff7024c45","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230626.tgz","fileCount":110,"integrity":"sha512-MmurzQnoX0UktODKysxRRp8b5ebqqq5ZFZWclebZOZ3yMj1PQG5Ulb3q6m2kG1fyGoc8yuMpMitasVoAUWW2Ug==","signatures":[{"sig":"MEUCIHkFPp4BJCT1ufsJgGZulHppyoOHHyQmf91/FBv7AiOsAiEAn2tbZ4S9C/Svrv4FxF7cNNZhOl/ErwoxGN+9f1VQCuU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40515625},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7dd7caaf7c57839b1bca5306c88c51e8f825a06b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230626_1687763913310_0.027863535360631575","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230627":{"name":"typescript","version":"5.2.0-dev.20230627","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230627","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"372cb8c752d48fc7911490843cc569c822ae6cbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230627.tgz","fileCount":110,"integrity":"sha512-GkS6T3d6XdVr+qIDC95UtKZZEBLVtLO+Wisb09LMEvjJWkcflHUZGgoNFXe3y6bU5+dzygIPUTWOcum8PvhkAw==","signatures":[{"sig":"MEUCIEVJA733JzvJJ+DzJNarb0pFsQxc8Btk4udt0RElh6aMAiEA0PhmCKeKvIhQEC3YmxT3DiwyJ946hB2cJtpBql6OK6s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40525280},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"218d380289aa785b2263d9b8e728503d93f5933b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230627_1687849998760_0.9470111412816948","host":"s3://npm-registry-packages"}},"5.1.5":{"name":"typescript","version":"5.1.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.5","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a3ae755082488b6046fe64345d293ef26af08671","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.5.tgz","fileCount":106,"integrity":"sha512-FOH+WN/DQjUvN6WgW+c4Ml3yi0PH+a/8q+kNIfRehv1wLhWONedw85iu+vQ39Wp49IzTJEsZ2lyLXpBF7mkF1g==","signatures":[{"sig":"MEUCIDrdUKdpqf0URbwYwYAOU7MDvlyMfKPv2plnglXrbshvAiEA+K0ZHkDGZ+IYux4+s3FyCmlV0Zt3ughECelW3qCnkAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40095564},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-FOH+WN/DQjUvN6WgW+c4Ml3yi0PH+a/8q+kNIfRehv1wLhWONedw85iu+vQ39Wp49IzTJEsZ2lyLXpBF7mkF1g==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.5_1687906387947_0.9947911247696395","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230628":{"name":"typescript","version":"5.2.0-dev.20230628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230628","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b73b20cf35af6bc27982bd6159b2028be7afcf10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230628.tgz","fileCount":110,"integrity":"sha512-dWItHqHLu37lksKsUBRDXlnWdI8WVhKQoVRxlv8w2XfbL/jAA6vFeJLtmb6C3pQKm1X0Sl9BFHJgYWdyiN3u9g==","signatures":[{"sig":"MEUCIQDanQOK1sp73VCyya1Vx6D9o+m1iYezSFhfusTIo982zQIgNuEjpEtOHE+xOLOt1y4fxsvbktwBHIY6iDlkxueVOdo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40525336},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6696ecd37e4ca228e9baef28f1f7123746ccb635","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230628_1687936354223_0.2942735793688891","host":"s3://npm-registry-packages"}},"5.1.6":{"name":"typescript","version":"5.1.6","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.1.6","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"02f8ac202b6dad2c0dd5e0913745b47a37998274","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.1.6.tgz","fileCount":106,"integrity":"sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==","signatures":[{"sig":"MEUCIQCT71oPQ0l4qKF/VkLxQM2VmGrIPRA/uNynpB97ThxVYwIgalRn8CeWTGVU7VXbGzbgnaQI3jfX8mCNrldnuYMZptU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40095320},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-zaWCozRZ6DLEWAWFrVDz1H6FVXzUSfTy5FUMWsQlU8Ym5JP9eO4xkTIROFCQvhQf61z6O/G6ugw3SgAnvvm+HA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.17.2","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.1.6_1687993718288_0.5656076000925807","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230629":{"name":"typescript","version":"5.2.0-dev.20230629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230629","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"451ff3cfaa2331f51a3b020440675d6e9978059b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230629.tgz","fileCount":110,"integrity":"sha512-/8eGjHX3BI9Cpb2ghyC3qeWD4PTXx7npbvZuKsphLdvFJkbOrKbvmnYGW+3QKs5rREjTq5/0A4IIlp9yCIit0g==","signatures":[{"sig":"MEUCIC6aqxvRZ+UQ6mgB0u0Nq9uX2p7NPQ7hB7oqntoLYpQOAiEAn6zPiJ0E3BO82+oDJCIkrK6iMnlmCH5LgyntDRxBBzk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40525796},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"dd3e81a6752401f1656e2d02354bf35c3baac3ea","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230629_1688022782665_0.08464959549281081","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230630":{"name":"typescript","version":"5.2.0-dev.20230630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230630","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e0d213087fbb62d815bc8b32df12fb915a46af9d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230630.tgz","fileCount":110,"integrity":"sha512-PpI4tXtyv86eAhapMWrJF5roAxswu022vmSjDRU7NzPqT5+DlBktIlDePOrBo7OUBWNVEiUfsWuoDNbq5Sjj6Q==","signatures":[{"sig":"MEUCIQD46MwBEoM8AwqJgc1IileWMTJZJcefH3CkiDNLmZo6QQIgNPHSjZNL4oO8v7m0Ir0SEti4UdOeLGlXRDGYyIVdagY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40528206},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4d7738ca217aca36e6150c25fbefcb5d5d4eae5c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230630_1688109172648_0.8314462105371774","host":"s3://npm-registry-packages"}},"5.2.0-beta":{"name":"typescript","version":"5.2.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a5cef616353be2f896da1d83a779d1d76a270129","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-beta.tgz","fileCount":110,"integrity":"sha512-z5cq8BXVwaY8cwltw0BiyHRCVXen3QNgIzIcJV4NiLzaWvavxltzFSXd2csO4HoBjlGnuG+/LLbUZ8is3fD6iA==","signatures":[{"sig":"MEQCIFGJ9YDU4VuySTFPd1v62LJebTY6rRbGvdCn8HO14Lb+AiBu2mZhN1CVyVlPlZXhlBHelgr2dj+VcJRsWqjOFDUznA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40525145},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-z5cq8BXVwaY8cwltw0BiyHRCVXen3QNgIzIcJV4NiLzaWvavxltzFSXd2csO4HoBjlGnuG+/LLbUZ8is3fD6iA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.5.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-beta_1688140192799_0.2565581374443189","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230701":{"name":"typescript","version":"5.2.0-dev.20230701","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230701","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"591305ee64b6ca0789c3e37fc60c812f9bd7475f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230701.tgz","fileCount":110,"integrity":"sha512-ay607P1LNDtKi+hN0GEpsxsUa1g/3KGqzo1nvvcTPBvCz7xmxwcdZAdz8nJZh1JJdfu+6jBkAQ6XuKK08zvIUw==","signatures":[{"sig":"MEQCIATIRCh5V43/XOuHup3EsA3Q9DzDwCcB9n7b2DeFVcfAAiBZARXAz+UdR3uNdGcLfSN9S77a6B6RzJt4i4LuWr9z1Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40533854},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"88cb76d314a93937ce8d9543114ccbad993be6d1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230701_1688195631908_0.9972112407643845","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230702":{"name":"typescript","version":"5.2.0-dev.20230702","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230702","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"48ae7428881973ebb57ad85de31f490f5321b1c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230702.tgz","fileCount":110,"integrity":"sha512-ra+/LDcTNHM36hpRkzM7FwiJsb9axqLXesPIDlxp4FIzjVKIEcl7Tjq7sNGJUX6CiL148l32vwfsQtg1afOkWA==","signatures":[{"sig":"MEQCIBK3iz7P5mW6EXG6lPTX1PxdV8jqadAfMCML1fROqKvGAiBEMjKOjq7E+2QX3hFSkUdMbujHTaJcGlqfOLHNFgqVpg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40533854},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"88cb76d314a93937ce8d9543114ccbad993be6d1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230702_1688282155719_0.9366534516167269","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230703":{"name":"typescript","version":"5.2.0-dev.20230703","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230703","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f0b8b31ec2a5f0608d71975a4e32b62cae9a412","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230703.tgz","fileCount":110,"integrity":"sha512-O+fL935EQoj276onbuLMys21Pew2AlvZNDqzkw6TXq/BDGoAeUTsxfLQID9o+tKEciOIxdLaZnMF8WXulVMfow==","signatures":[{"sig":"MEYCIQCvIU5N4F4P0Th6np9GQzepCJVPDIEmgR6yRhxVFMCb7AIhAJkwASaBivwMcg7LlzTqmfJSootcjbEytUm34Nw4dqIP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40533854},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"88cb76d314a93937ce8d9543114ccbad993be6d1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230703_1688368403977_0.6478495105764113","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230704":{"name":"typescript","version":"5.2.0-dev.20230704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230704","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1e372df09af8a1d6d67f6ecb522d5bc06c507ebe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230704.tgz","fileCount":110,"integrity":"sha512-LAjnbCofaVoQt8mhUODn7xG2uHBTxIDPsxJ9iowOKcbOe1GJIpNqyvEvNrkvmf0pIRHiC19f6oGSYrilB9s5ng==","signatures":[{"sig":"MEUCIAJDMjzSKXtLupS7BWOz9LdTCT4T83WjIJje8wgD389FAiEA7arrqhLX+l71kuL+ZSCWkKYVd19pDhp0keR9DHoT7A0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40536345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e89d42d373a570f12510429e13ec45a9eccd9ed0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230704_1688454759781_0.24151916438844423","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230705":{"name":"typescript","version":"5.2.0-dev.20230705","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230705","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a793c11eef3a867de2c31484b4f89c8aaabdd31f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230705.tgz","fileCount":110,"integrity":"sha512-eMgfQ/e5CgYYSaduGhDc2UiY2EzzgrBMfHyagjUP70jj4VDCmLlIp1EftT5AMiLvNc7PYNCeziRFY5fBZhD9uA==","signatures":[{"sig":"MEYCIQD2W8VLR2SIDaIl20n1kC6JLSgyBwseZTU6colz2LKS/QIhANVE8LcjvVN8RCIXktEJ1/pnMmEYoQ3PZ5flD+BXlubW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40536345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e89d42d373a570f12510429e13ec45a9eccd9ed0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230705_1688541228077_0.4880719474556112","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230706":{"name":"typescript","version":"5.2.0-dev.20230706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230706","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8e1e25b0163a269eef06ff0772eceba029edd846","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230706.tgz","fileCount":110,"integrity":"sha512-ma5zu+mBAHLZbR+k61P/LbiAH2+epfZjztEHAEBz/HhvAF2Hp8/r1hqnBA947iwoBwqIi1se4uQXVH8Sggn9uw==","signatures":[{"sig":"MEQCIEegedl1CoMxsFVXCp0sz/XF86Yb1YAI3shwICY7lpKkAiBoDYYKUAzKr7SGnmq0sgXJCmmXGlEOZ1q+vzT6m0ikuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40536345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b1a96a37b5cb5dd18ca72cc09014c1f110089b1b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230706_1688627650179_0.712561586481006","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230707":{"name":"typescript","version":"5.2.0-dev.20230707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230707","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"47abdc402fbcb24c97b37091621258bd41dac01f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230707.tgz","fileCount":110,"integrity":"sha512-uVIbqrU5EP4PAZfnN3VdGJ0B4wkmyzz/GbBfXbBBvp9YUdwvgZK0jM24LEgO8Cjes0sQf6gV16Dc6WiqCKLPGQ==","signatures":[{"sig":"MEUCIEf5MZrf7cfujHz/MkN9pVaRCA+C3UX2UkDpUPyIs5QPAiEAo4MQy+4YMemsUZs6UY6xSrMSoJ1ion5MXt45vBXfEFM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40538176},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e374eba37c002aa8238f00f77a34673a7536f5b1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230707_1688713971151_0.1929425111960219","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230708":{"name":"typescript","version":"5.2.0-dev.20230708","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230708","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cb4c117a2a91094460579e3f0c0fab4d6296b2b8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230708.tgz","fileCount":110,"integrity":"sha512-2qQLKn6o4SCe1BuM4TAYVogdK+od0G2rjw61On6LE0am9aFuPxtGJg2SwVlJxDwVE7p7JdCFquhVTU+enDVRtw==","signatures":[{"sig":"MEQCIFGIGKmGnW1/YU2M33xthX1payofT868gLinZZZsA0gsAiBTxBk/mVI6ecb94GDJxwtBz953Tc9mR5wVXm50mLXRGw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40555371},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9701f55f7217d7bd56d28e73b250444efcefa8dd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230708_1688800378266_0.10243753380725451","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230709":{"name":"typescript","version":"5.2.0-dev.20230709","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230709","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"59ab4b5c4768d16a45d81b367337b156a991e103","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230709.tgz","fileCount":110,"integrity":"sha512-5t8YdsfgmOchjqTAAKmSWAwHwUURpdquE+HzENLRZXpwBHklFoipu/KoC6W7TiVz2/8FcjjFjq8ABDGttwAQ1w==","signatures":[{"sig":"MEQCIBCflE3C9icxKNcdGmL3v0ky3wvQ9tYLGD3PxvQjcXFyAiA5fh9v4dvZxbN02TVhhGO/DdkFpOjCsXn3JBVu75YLhQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40555371},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9701f55f7217d7bd56d28e73b250444efcefa8dd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230709_1688886783312_0.933916796380799","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230710":{"name":"typescript","version":"5.2.0-dev.20230710","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230710","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6e42862d126c2c7b4ce14ce6124396561dd808c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230710.tgz","fileCount":110,"integrity":"sha512-D4u4/pfdrIi94+F+iVzxzuzCk8bE/cbe4jng6Sce2Y1szj/QiBqN43X5lMrIbMR9Kb1G2AdWzYPrcNv/ButJGA==","signatures":[{"sig":"MEUCIHrcBnQC2CYtVLgztfoW8ixV6bQ1pT4xy2Fbp0835z9/AiEAyoia6jzHVSh8GC+f9YzhZcLj2E2whueOQ025VcfuQEE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40555371},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9701f55f7217d7bd56d28e73b250444efcefa8dd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230710_1688973188067_0.9475134810450061","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230711":{"name":"typescript","version":"5.2.0-dev.20230711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230711","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6fbedbdd04ffb4eb6e1fe7ac70485a525d5413c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230711.tgz","fileCount":110,"integrity":"sha512-Pu1roPsNZOmZvIeoPHiwFqO31X+LQYLXjQgADk/wXu4qZ0/ovCuMVA3+3CYnrvsBecjLU9UN0pC4JFUyvfN6lA==","signatures":[{"sig":"MEQCIAqgC4MJ0xXvRqEyED1rySt6Jn2lU/lz6dFEAfrp70aqAiB1f5HzGQe+ozbOo9ttmzaIZbQHKkYZxuBeNanAr2k29A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40557579},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d8585688dd1bc8d82b7b5daab9af83ae1e3de197","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230711_1689059617461_0.9744373659054257","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230712":{"name":"typescript","version":"5.2.0-dev.20230712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230712","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6da271394793fd1c1cba26800f43bb8c25825a87","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230712.tgz","fileCount":110,"integrity":"sha512-F/VND6YrBGr8RvnmpFpTDC5sT0Hh5cuXFWurGEhSBjwXodW+POmfGU0uLn+s/Rl0+Yvffpd2WRrpYC7bSDQS/Q==","signatures":[{"sig":"MEQCIBCfsByfyOt1p9EKUmdEbj3BhaT8DFUJJnMC27GucXN+AiA2LVYXDTw98Xx84eLNnb4s2/aN//io7DYoRIkgasJovQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40557579},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"48c356b452427e6b15a6910dd2c99d668f07f9a6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"latest","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230712_1689146015405_0.10115204593972371","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230713":{"name":"typescript","version":"5.2.0-dev.20230713","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230713","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"44318e5521b8b60d9d835f52bdb80ad76745c4bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230713.tgz","fileCount":110,"integrity":"sha512-A/crla7nXo4d7TVRlV4CUzxW218b2WupUrIMnnGBV1o0SQnckrszm0CUMRAYeKAB9lFIo/B1Gx1cBdvNQYiD4A==","signatures":[{"sig":"MEUCIQDmtg0a8MufwJCRVdIXrw8/nZ7mgo7MLn5KW8sCTNJbwwIgUZuQQdZ2DZe1fyzO29U/boigmMY/YYTZkw8PCFU/jjA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40558648},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5a62c46a2cf682527d2420acf419a5d63eded02d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230713_1689232535645_0.8271083177947007","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230714":{"name":"typescript","version":"5.2.0-dev.20230714","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230714","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"89572ae6baa2b32bb3173c848f1eb3f945e2a18e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230714.tgz","fileCount":110,"integrity":"sha512-BZAU6XIqRwO7gRelEoc6iunX6belf+IGyqA79LQqldafiBahXQKYTeyW8V0/ABk7/FpWWk4qRIDDCy8DKWo4XQ==","signatures":[{"sig":"MEQCIDgInKNXDtTT92shYnEgHKVJ/oO41CWIn+bwWqtxnxMZAiA2Ifu34b+GAIGUI1FuXAkdkgNDJHVJM7ecuYEPk9VDUA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40559328},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8a85b2aafb349c8f952b46513dfbb47d62fc84cb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","eslint-plugin-import":"^2.26.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^5.33.1","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^5.33.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^5.33.1","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230714_1689318772279_0.4116277662145065","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230715":{"name":"typescript","version":"5.2.0-dev.20230715","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230715","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0b2f570ab32c134ef0d3efd081285dddd9db1554","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230715.tgz","fileCount":110,"integrity":"sha512-HGxy4eGjQ+n36knjF2SR2qiHPlOYkNKh/xZrhxlJTP1kznazQBYe/vZySoEntvGGLYuzc+O/H6D+TkcxrjcTUQ==","signatures":[{"sig":"MEUCIQCJpu93Km6/wDFfDMcjrQnz3hTxFwydIQ6DqJ/QvDZVxwIgA+sywnZuDLxd/vm7YqsiKiOVnslJUfnw2+BgaH84oDs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40559282},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"94f03cf0c6eb5cb3a391e817db9c9a7bb9f1de6c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230715_1689405219820_0.618423504988949","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230716":{"name":"typescript","version":"5.2.0-dev.20230716","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230716","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5f7369da8d4e14da4f14cfe2bfed7cce070b348b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230716.tgz","fileCount":110,"integrity":"sha512-xWuxt/VuzWhNj407r1GIpes/1UMBUiyamjNMbfU/acZQHKkVWT+sQkxaCh5WNuHWeNT4RShbOb4YGsPXtZmdTg==","signatures":[{"sig":"MEYCIQCnJMyhy8iJ2xbHdVZOp3JQ2YH+/69ZRxIhg7gq7Au9cgIhAM+QaKcU1doHY3E2B7OQphn1Ekg6YAr8zoRroT6WQeCk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40559282},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"94f03cf0c6eb5cb3a391e817db9c9a7bb9f1de6c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230716_1689491589401_0.29784673269766415","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230717":{"name":"typescript","version":"5.2.0-dev.20230717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230717","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1468ce4983646adc9138de6f07d4c1a617d2783","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230717.tgz","fileCount":110,"integrity":"sha512-T6Jl+oxydjHSfqyak7AeMpeei76VXFdEYdYkFavnQK8cEcw9knjJ8W63cT8IZUBgEIStQcI4zNEuoFUnotysOg==","signatures":[{"sig":"MEUCIQD5bh/PtIobs2PCQqj16UY+exJ5I30cVIWINwlP1ZtY9gIgWH3pP6WCn1LGFwJkrCaEVhztvRkyxvZ+5avJh5Y7ro4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40559282},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"94f03cf0c6eb5cb3a391e817db9c9a7bb9f1de6c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230717_1689577946314_0.43319194895119706","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230718":{"name":"typescript","version":"5.2.0-dev.20230718","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230718","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8c60b2f6807b3f8b2db47980ee6c73dea1f45e42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230718.tgz","fileCount":110,"integrity":"sha512-ED1Vm+2UzdbtKui+0lVswEuAX94fQXeoghXyy/+aTNers8X/WB81r5sFg6nA4e43nVQ2MP/Qsa7/XJRFuHR+Cg==","signatures":[{"sig":"MEQCICpmB6nDbIzh90O9T0Di/jgim7S0bTAqF6d55GblTAMyAiBYNuXdj0KqEsej9FVDBxHWY5xRu/WMBbQjMsWn9WvioA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40559496},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4879087bef68e24ec2f7c98d83d70a88a5cc18c4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230718_1689664667896_0.9574235505218092","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230719":{"name":"typescript","version":"5.2.0-dev.20230719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230719","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5755b1f2bcb8b3c0b64d5ec56a6d2f346bacce9c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230719.tgz","fileCount":110,"integrity":"sha512-GOt7vOkrLjQ7hGNUO+9VyV4nf7/gQz3NM37f6r8RVeXY1Wu+McCi7IO94ZuQWYUYrO+h/WjoTSk8HjhEVhEESQ==","signatures":[{"sig":"MEQCIEnpWFSgoz8sqcEKZlGqMyejU+EvOlmRMs+5JoMS7LojAiBpw0r/CaYZ6kxrN5gMCAXfz0xTNELyPXMrGtJCHa8yZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40561323},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ef0422b40fd0882723adf1aa32c7da122ffa526a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230719_1689750789672_0.6481546828415901","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230720":{"name":"typescript","version":"5.2.0-dev.20230720","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230720","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9eb5d0d5a9b935d8d6b496701cfff09d1e6f1bde","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230720.tgz","fileCount":110,"integrity":"sha512-uZPSzgA2ZfMYqCafPbJ67YLwiVXeo93rT2iackGNerTEFs7wRBr2ENVRBIP33g5xCV0fFqN+e0l4oLvQjCZUKw==","signatures":[{"sig":"MEQCIGhd+M6H+QZQf2hBjmv97V3OQFwyWnZpkVLk5omPKyK0AiBJQvJjv6Bo/s89mkqX6X++moYrNyePWRWzR8OwsA9bMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40563075},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"97ef321fa04b95e00ec0a3ff18d40457dd0e8c67","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230720_1689837183026_0.4299313241898355","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230721":{"name":"typescript","version":"5.2.0-dev.20230721","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230721","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"06d457cc4fc5adb99d9db13f3a1052dfe6c1d2c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230721.tgz","fileCount":110,"integrity":"sha512-xBP6NmF/Sk+4H5OM4eYRqyv2pTFjOyIFjaPaVlxXdgqKrysoyB5HkbtHu7GOP9/v5qGG6bd57CVOB/xFpmjxkA==","signatures":[{"sig":"MEQCIFFp0hlKiLgdfr48iKliCOqcD0+ciFK0V9omEW0AcSsaAiBhQY9LP7a78c+E8y2SRIu50Oj0zxwOx5fqOiy9VW2/Lg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40572180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"61bf78f3c2c8fd4d92e9c56109519edc2e38185f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230721_1689923589390_0.22792325630046695","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230722":{"name":"typescript","version":"5.2.0-dev.20230722","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230722","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae9e2c02402d461e1f8c6898c1fafd395351b257","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230722.tgz","fileCount":110,"integrity":"sha512-4xNgjOKKAWIYxNXlxeEZX+EqD+ve0tugfhkck66/bljxbCknP8fnSdVeiwSZ+q/YvouZEzzuUfFkIlWNnXwhrQ==","signatures":[{"sig":"MEUCIGmJDDJHI24uwIawIJsJW/DuVUt15xfyD/1pwbBtm5YxAiEA/ePGIglKPLK62fLsX9BHrdZXQ6tgpUQ7kncDFeeldm8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40578124},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2ac22c1a0fc2be77ab2982cd15ec88cde98c9b21","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230722_1690010031096_0.07939335488827015","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230723":{"name":"typescript","version":"5.2.0-dev.20230723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230723","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ab341b18b215e985c46b5baf3592b51756554ab6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230723.tgz","fileCount":110,"integrity":"sha512-xC5i1s4sexgxAA4OYatFnu20Un4QfEVMs2nOhGbHZf1iNwt3zoQMeZYD2Z3OFvWFqfnMveROpOwiqaN8RvWPyQ==","signatures":[{"sig":"MEUCIQCHnBhishp9L8lTAPcRH/TFkFT95SyHK4oZJ2VZoMT0UwIgNl4DpVbWrgkAIasmywZLMY9GJ2HOMgo+TJWVmLoaxIo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40578124},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"01b18215eccec4e3b32743ab545bf8c6b570d782","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230723_1690096437805_0.8096019421581113","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230724":{"name":"typescript","version":"5.2.0-dev.20230724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230724","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1957fb44c3c9884c911ab47b883eb29c983f0f7f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230724.tgz","fileCount":110,"integrity":"sha512-imp5MKTFe3BmE+opYLWqglHjPJ3HQtmwcFX0zYKhky/m/ncUpMqnVnjZSoncvTkKGI8s4Ng88LqOEgvLa4brFg==","signatures":[{"sig":"MEUCIQDr2/x7Xzb7Ht0WW/nAMdgEO9eoaH5AqP59nOPWRLrFdwIgSJlNzl41desz0L4zpg2jPIS9FwJCQV1856/6f/VfF4A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40578124},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"01b18215eccec4e3b32743ab545bf8c6b570d782","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230724_1690182791161_0.6572661639264907","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230725":{"name":"typescript","version":"5.2.0-dev.20230725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230725","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d302930a09852406e7cde691acbccbed00f91aec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230725.tgz","fileCount":110,"integrity":"sha512-ckVbPpSTdPA/Fxnrq1/mzO+LgzA64VPjm6YvV/axwZKgxviVHiUy0VvKS5EGBOpgFBwCNuN+ir24KIBGYWQCgQ==","signatures":[{"sig":"MEUCIQDCcW37BYNYm13HHmcnJdmqcC3QyAMT0WLIVnJCBoEpoQIgaLBi3wnefBHoe6tvx4ZLv8BhweV45YivqPbXa5SOEdw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40587661},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b1bec34f20690c6fdf6cc6e3d8cacee1e075f5ae","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.16.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230725_1690269379035_0.21535058080109404","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230726":{"name":"typescript","version":"5.2.0-dev.20230726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230726","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4ca0c0dd2817f041c5521636fd5afbea7a3f1a04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230726.tgz","fileCount":110,"integrity":"sha512-WXVjQVYHgcJwZh0r5TzBl42dzg6ap9VS0+8dm76/i0T/BhLnmC3CIBsLHZ5WQ3l1CqO/W5kSuywX94xVg98otA==","signatures":[{"sig":"MEYCIQDOEhpIRXvKoFTzy5pQPXbdT74MWiSWVlWr5BN+D77sHwIhAMtS7iWYOZrS4r4ezkW7sswvrNqgo4QA6CMTL90NvHtI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40595709},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"04bfd23105086276349ba6f934f04e01cab2b5a7","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230726_1690355762097_0.9536268662392002","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230727":{"name":"typescript","version":"5.2.0-dev.20230727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230727","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b9b151f34200f0a040de5f2a07b28ab947e34ac7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230727.tgz","fileCount":110,"integrity":"sha512-HTNqxwU5roYnvWrrdTxKLREZ+fygKOpf7q2DAhfZntqgyQNxZzZdDypigMS8tNmeQN2X/ohbNzX9PnhHoCCmfw==","signatures":[{"sig":"MEYCIQCPzKEC+MmjJMd51IJcQGEwKpKnCr+1+09HtHGnQaE1MQIhAMDZsIEy+LPKA3y+XQAf3lQ4GcXoWdxLPDroDGBAFgVN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40592485},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c69f4476af93f9e3b3159c3fbcc5d629cda3efd8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230727_1690442194613_0.4741106620540987","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230728":{"name":"typescript","version":"5.2.0-dev.20230728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230728","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f6f52c8e257929900db802e6b7729762844e0463","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230728.tgz","fileCount":110,"integrity":"sha512-pI6gdSexHd/ESfy6Vwmd6bdId1UIYl1fkE8d2o/n/frQCeD6oupH93WTh0syCk3mYMpnx++flvR1X2WHJS1oVg==","signatures":[{"sig":"MEUCIQDbglxEZNJA1oQclIkzd7JuCysT33TbBcGSzZq23liicgIgQ2eOA9MALOdzzbuYWgcy1sh39c9uJ9JAIbqPOLLKRfw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40592485},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"21bb2160c8ac8da4638034d66f8d1871ea2d5e8a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230728_1690528558681_0.8699743496560748","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230729":{"name":"typescript","version":"5.2.0-dev.20230729","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230729","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"af8744ddb074709b62c53ffb1f1b5015c0e69f1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230729.tgz","fileCount":110,"integrity":"sha512-PUbdfeYxptkWvHyvE7umkPHIyiE8GR/ZqZkjVZmPOu4GVHA8Yxdv74dEHl0AP8WvgVtes66Rxc2TdMnHp9LeEw==","signatures":[{"sig":"MEQCID1EM+uX/QU8mbs++L9QHaNZyLaIA3eW0pdu9EBihoJOAiBMIbXJqjS73ePcJNFYPhZuOdGjwuN7LxKG76TlN8VE7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40593772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"250065e55b8f2bb212cb9d19b191cfeb15184ee0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230729_1690614778363_0.9519969347278987","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230730":{"name":"typescript","version":"5.2.0-dev.20230730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230730","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cff28cdba02037eb45f5426a3a959af99b2dea1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230730.tgz","fileCount":110,"integrity":"sha512-Un+AAI0hEctoChFvndwcw3Ygv9FxR/DkfohcAQu9bipcFWkCS2QqOHtFNO2r6mu+BAQ23QwArto2GSLp6I6Y7w==","signatures":[{"sig":"MEUCIQCeFPqWXasUP2/tWRRhrgTux8tKR/r+4PMhRfkX82VL+AIgVO9TYTVmL6Nk2tdNGLJv8B20i6P19uWBKONlxg9lOdE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40593772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"250065e55b8f2bb212cb9d19b191cfeb15184ee0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230730_1690701565065_0.7355938547338807","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230731":{"name":"typescript","version":"5.2.0-dev.20230731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230731","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a72083c07043568ab856dd8ca0d8f3a708c3e3a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230731.tgz","fileCount":110,"integrity":"sha512-RJVLgnDgu67ZrohYy0aBea+5TICfRod36+24zw0bR/KJDQJO9mlIjTC0k+/PKw87fXP5JuUHqepEk15PvFya7A==","signatures":[{"sig":"MEUCIQC9ggmymnA14hKQOCICh5PKwEMzo83aCd9QQGmIsEOONQIgLjWy/vgPNKUX/DpBk/HpvE4y1o0TDbIJtnnFkCVWJLE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40593772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d9e327b3635120fba9593b54d6b20442bc8f40f5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230731_1690787566985_0.34995829560813796","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230801":{"name":"typescript","version":"5.2.0-dev.20230801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230801","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"53872c068db23a817c29f738419d2284ff2bf0c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230801.tgz","fileCount":110,"integrity":"sha512-f8FmzL+1+agawPPUzsd38vTiZD/z+RtGax/3+tzxsBP15O/4lMsliTEXRXF7ESC7a1s/f9HsNNRMne438PPZsw==","signatures":[{"sig":"MEQCIFn2oZ3H3O0aWXKiUh32DOt7wvNqf2kHj/Bp66v7lh4VAiB6eSs7VOsxj6BZ9P1Q1Zoiz8ZTOKjPo06GkCAxHioa5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40594404},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b87e3018226262ea195a56abfb000a80b92c8f8c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230801_1690874098596_0.4921997365581945","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230802":{"name":"typescript","version":"5.2.0-dev.20230802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230802","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ff235fe8e17dae3a110590f5286519345d5926de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230802.tgz","fileCount":110,"integrity":"sha512-rBvAnzaaMhwBAS2UaKejYhaED3VM74/xng/+xcVSst0PbkJBqggj19w/gwJ/4q07oOjKMgwunklsSjwe+iw2ZA==","signatures":[{"sig":"MEQCIBo0jC9b0KwH5DD+KNpoQFgNYM1vUPcDZKhPpVauLN+/AiAf0znXd0rgyXEiHWdpBCtlm4uBxna4ph0sdmR/kJGqKA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40594604},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"defe33afa1f3bc0d7f8dfb14f754172d84a156c9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230802_1690960475673_0.972387260980403","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230803":{"name":"typescript","version":"5.2.0-dev.20230803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230803","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"295441ec60d4b260fa779e08088ab3974f0ff02e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230803.tgz","fileCount":110,"integrity":"sha512-DwCyutWHyT7Il7xpJCxtx4/S5F4qjAo2SE6QDRSLhEUtBFGwGHTHCvuyfm9KNrdwn67jGitdlw4gpbSTVVjoww==","signatures":[{"sig":"MEUCID4cDCbOrX4e9nllkgstGTldtkdqbjE4bU03zWT9RNTiAiEAuJdsNSQuO7y9vSu4iZ4dCs0eW43ansozK5M+dRh5mTA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40596089},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e624827f63e20096e116814a6ebfd7c8f4daed9f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230803_1691046815404_0.7811307417444642","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230804":{"name":"typescript","version":"5.2.0-dev.20230804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230804","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d589f5556c247c4889182d08b7be82fe967ec586","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230804.tgz","fileCount":110,"integrity":"sha512-4g7zcF85Th+zpaMgR7CHzM1MqjJ0Fv3+2PUxzCUMW8tc7aRYGPtQBfnAyN0+yXChZaV6lVejmrh7hle1DMAEcw==","signatures":[{"sig":"MEYCIQCjukp/jujgVNeaczCV0CUoYiNY1s+nYOZ94J2c+CymCQIhAJRMy31HcnPQv5mm5nRCXtI4b8nLVwUMKFY/YOs3Pf24","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40602642},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"83f3abda153f0f567e296a3c75cdca37c7eb065d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230804_1691133464650_0.41878612768445356","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230805":{"name":"typescript","version":"5.2.0-dev.20230805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230805","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"268b16daef756e046afb3cde7909a28805711b4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230805.tgz","fileCount":110,"integrity":"sha512-7WQVs+Bx10F/0wuAO6+4raW6bvWnZ723Hrm6RdTof2L8dO0vsUDdxg0gpoEHL1tJ+Z3llQ8bOdxpliBVevvofQ==","signatures":[{"sig":"MEQCIEMVlR8WY+JMxE3Id0XuyZ1w11jBiKLDjiTH1PvJD2tVAiAz/ZWtY0ptBM1RqDiFVJ2gIWptmHnnG0gYHvANO5DxWw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40607195},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"581fba1f6f85116116a5838e44521b4a99de6bad","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230805_1691219757188_0.9804112843728359","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230806":{"name":"typescript","version":"5.2.0-dev.20230806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230806","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"ncsander@indiana.edu"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c7c283b2f77d8451e8a173df474b32db3ab1525a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230806.tgz","fileCount":110,"integrity":"sha512-YQFa8UzjncWuVozkTh+XxPySrW053wUDWVofVi6fwqipHsGtZzi3SYpXv4H3OpViICbej9bCwEL17lo8WhMq+w==","signatures":[{"sig":"MEUCIQDsWsYhpMa/h+lkShKbMptSJIzACQDGZvPdN6GPN7h/cgIgDDpvUcr+khMehI0oa8SK+j8z6knSwtH2NstOyY+mUQE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40607195},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e36cd5768aa46ed2ce9487cce768222d8ee05a4d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230806_1691306323878_0.06999690545052273","host":"s3://npm-registry-packages"}},"5.2.0-dev.20230807":{"name":"typescript","version":"5.2.0-dev.20230807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.0-dev.20230807","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"652fa8a3fcc46958035d9b911c815299deb9f58e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.0-dev.20230807.tgz","fileCount":110,"integrity":"sha512-sF8sZl3r/mpAdKAxASaWaoU+mNPF3g8OrZ601HraU2l4WEwAf6nO7sq0Bzl+Y3FV7sWjy+gb6kdM1CtLjVne/g==","signatures":[{"sig":"MEUCIQCadAjbwfVhmUWil84SB/riprGhzC0GcweY0EMQ8rIgNAIgEa5f13/0oBuAt2Q79FXQV0xhHWJNc9sTrsjZYiuI2ek=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40607195},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e936eb13d2900f21d79553c32a704307c7ad03dd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.0-dev.20230807_1691392455798_0.163854036084079","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230808":{"name":"typescript","version":"5.3.0-dev.20230808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230808","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fd05941bd8b19b0c42b9de2bb9da8734bfc807d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230808.tgz","fileCount":110,"integrity":"sha512-skwlatDWwjIHttX+Yg1vH1XRyFJWy8m1LxrP+3VEpAso05fW0y61dQbzqDzdtTjPKUDLf5um7IMwWBS6gVx08A==","signatures":[{"sig":"MEUCIQDdqkWibVHlps0xamOzGi7DV1Y4CsX+8LLzAW9MY/JELwIgFQPMIiMMdA5Kinyg0CrMlMSVquGY/tKmWao74eqMJL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40612769},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"358842e45e06fa4aca3e946f311921e7c732bf37","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230808_1691478901819_0.6452540293896698","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230809":{"name":"typescript","version":"5.3.0-dev.20230809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230809","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"09c59d3e855c30ac9ec8f9d41fc62a9231a5b28c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230809.tgz","fileCount":110,"integrity":"sha512-AhrbSEcL6ar5+jdeqwrmrQrvxCX5iK4Zb/YtlCaft0xEr4HOeKWtixh8FRIqugc83bSHqE7noQ0BhLZa9Biazw==","signatures":[{"sig":"MEUCIQCjeWNAfd67MxQJOOuxcKzTeFj8jaD1lvGz5TQkRfK9JgIgIQ1p7NUjx75sNr6bhADnOwoyclz9pLXtoWavpcH0Duo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40613337},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b4cd9d8fdd1a3a9a8324069a7a6f4336538aa688","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230809_1691565243921_0.28192680994863295","host":"s3://npm-registry-packages"}},"5.2.1-rc":{"name":"typescript","version":"5.2.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9cf33ff6bc39ba9e1fa59761124f596ecf5e0c07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.1-rc.tgz","fileCount":110,"integrity":"sha512-gsOdmedQZEWLrYhNqHuzPmcV+4wX7UujzYqszDC5mVMjcN6Nm7lN2eAtndmjWl24aGdAwJqL2ooywkxpaTx8QQ==","signatures":[{"sig":"MEUCIQCjt4U3bm7lMIib2j0iCXrnMjB5lIVD3R3973VG9SVZ1gIgEf/PJIINi0L27yUo4yR1odSFXxgWLZK/MfocifSXAZY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40606992},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-gsOdmedQZEWLrYhNqHuzPmcV+4wX7UujzYqszDC5mVMjcN6Nm7lN2eAtndmjWl24aGdAwJqL2ooywkxpaTx8QQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.6.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.1-rc_1691604151450_0.6919877372386596","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230810":{"name":"typescript","version":"5.3.0-dev.20230810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230810","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6c78f3bf3a3e08705f9cc56074bdeab0d161f86c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230810.tgz","fileCount":110,"integrity":"sha512-cD+0wvHU1AJDHnbOizHt2iJ9nEpJAa7t5WXbu6NaNeX3ZWO0lIt0A5TFgWsD4ZbXPHdxq6Uw6IKvTn8W0arAmA==","signatures":[{"sig":"MEQCIBF5tpiJ0LZIQ7HrP4WiE/eIzoG89On/8IxHEbRXt9+cAiBQPDiHvQ0YiDqNQ51hp8YiyCIg15fRxFn/sQTe1F6t8w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40618727},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cd391b066b49cead0d1b1ec089ab4f4de59a16d1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230810_1691651660382_0.8249008929101245","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230811":{"name":"typescript","version":"5.3.0-dev.20230811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230811","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e4e804b4879d9a667171d3a5b7aefa2c7322e618","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230811.tgz","fileCount":110,"integrity":"sha512-C4bwx7ZpBwX7bKxrrNl+M1j8yNGmwQ5M58X0mT4VYI1+FHqRvb/uJ4F1uJsVJ+X7iy22iXSICR/Vxnpc1gNk7w==","signatures":[{"sig":"MEUCIQDPtfOFkbi+fN8VwxSqJYaFvx/2y97i6miOTtlh38qeLgIgf9OOaNIrPyNFqVazgicghAJGm4y4aXEnyD2TW3LtiLc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40620783},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"28cd1fbd13b8d09259e7a7086aa258c0221c38ac","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230811_1691738328014_0.6475610619660275","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230812":{"name":"typescript","version":"5.3.0-dev.20230812","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230812","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ca77a09c3bf0242e41b2dab5abf1e4d51b1c739","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230812.tgz","fileCount":110,"integrity":"sha512-cTrSh1Jy1zxL8L5evKGfKS0x/veFMlEU1U2nXXDSIoV2nDgwxssUCGk0L1+ktFazAVCYi1LB1jsnv0BqiPFuZQ==","signatures":[{"sig":"MEUCIQCLsvNVBCWDr6UGfRMCK3DT9pH2Wt6IJcSZoTqLnYCswwIgfHkGN/YXr7uBsfu5WXfiKwZ0kZZ6swf4DiEaDq6ZoOI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40621784},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"634d3a1db5c69c1425119a74045790a4d1dc3046","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230812_1691824386102_0.5209011159957364","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230813":{"name":"typescript","version":"5.3.0-dev.20230813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230813","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ee62bacc93e24d8154de299d9e0707d082b0c77a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230813.tgz","fileCount":110,"integrity":"sha512-iv6t8iq84fZpppblT/HA2ukrJbsL2hoJ2HITVhAPFWcfgaJVjLohJa3h4ancR6/MqitjGllwmUWxg+zCcjQ59g==","signatures":[{"sig":"MEYCIQDud7i+89NZenimKwfBVNNRcc5BxxgkxqhE6QqGSfzfEAIhANPcY55HKW8oU4aNqKQFWGld61SwHQCGmzvar1B6+Wz+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40621784},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"634d3a1db5c69c1425119a74045790a4d1dc3046","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230813_1691911064390_0.43294457527705577","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230814":{"name":"typescript","version":"5.3.0-dev.20230814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230814","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cc35a445e0a9044da5ffb275797c6b9a258a96e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230814.tgz","fileCount":110,"integrity":"sha512-ztAo8S7pDTqodkSIPPdh4mL5T7+//1xfOP17O2yFW3dx3u/87MG4qsiZ5HIOoV0L9Kkr/fFw5bqGXHcDT/Nclg==","signatures":[{"sig":"MEYCIQC0vpzj1ALPQqwPoK39oRlgR5q5g6RbTUEUB72kYSs6BAIhAJJy6azVBUZ0/bTeEmAe9VCFRePHBgflryaUJpZNUDER","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40621784},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fd390e78fe329dd2761d59ab1d5f3c5be2091018","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230814_1691997318534_0.3566871697316074","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230815":{"name":"typescript","version":"5.3.0-dev.20230815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230815","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"290cf6828530783e40518bc85e98fecf9ab0e280","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230815.tgz","fileCount":110,"integrity":"sha512-AB4arWte1oMsTpFUSnkhgLOzWRR6SLMtQ4WjDl+I0mDC3nh0UH5SEJtwjSt7lYIg/xylgXduCFEDoM1Vvv3uPg==","signatures":[{"sig":"MEUCIQDnFpfL2+2fQJ45rCCVUtLK6109Qp7aYpXjrYCa6+ULzgIgD/qJO9pJsgCaRo6EcUQV5xqnPc40iPmfzECW4zesnbw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31888942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c5281bf7003abc09164a093ce643ae8ba422c40f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230815_1692083567269_0.3813534465998467","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230816":{"name":"typescript","version":"5.3.0-dev.20230816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230816","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"409982c629164811db1eb62b365ed2e1b526458d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230816.tgz","fileCount":110,"integrity":"sha512-iEOudrx61DsbJn+z2bVX+/FldF7ILAuGwQYO2EvF4F33Q8DUV0KSkiikxUB83VVH8ExkwQHVNdtkr16wd2V71w==","signatures":[{"sig":"MEQCIB1ie4DTsschGJPFEgyHNmO0FKbIaVJoOSQmXIsTeEUpAiBiIJRJZK72kv68MzA3WcgUpQ0MTYMYWr1pYkL9sqk8Mg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31895508},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cac899d44d19a2753e6cae9ebc8bd291fa571c76","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230816_1692170132532_0.85555613686028","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230817":{"name":"typescript","version":"5.3.0-dev.20230817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230817","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7753c1089b32386d6c51dc52a97ae5f66824176c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230817.tgz","fileCount":110,"integrity":"sha512-WbPb4NIGIcx8fQG4JPh54lALvzPUJTcDLCP9xVsrfOMrMAWswPqqekMZ7jVpasCOmYtC9e+oUCpW+jgVVcW7UQ==","signatures":[{"sig":"MEYCIQCc0hsOvm6df82b5+KVPGi6YZi2Cvr1p3nJPVNUqWGpxgIhALyiUGGmlQzxBKLino+7o3bLbx96Hy2TQS5X/NVzKclC","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31896428},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b5557271a51704e0469dd86974335a4775a68ffd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230817_1692256372199_0.7163170179088598","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230818":{"name":"typescript","version":"5.3.0-dev.20230818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230818","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1b2342f15246476f9830ba44c7fe6d42c8a92e93","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230818.tgz","fileCount":110,"integrity":"sha512-inkObfKw5TVieNQdO9vTAAzUIKV6i2bjqpC28j1knVWvcxaBLtNGrPgxGVnhWB/LQ5AjMLvgkCM58kkamkRObQ==","signatures":[{"sig":"MEUCIGxvrU8t2iemNfX5Db/vkajR4Y71+pMk/fLIoBFVUJuwAiEA5lywRdFmgwmgjQKuE8roAJ9YMZ2Y1Y22+YQv6tRgEyM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31896298},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"a0e0104656415b6c6d18c6ba1100ae42157a4f09","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230818_1692342760417_0.5458841417519198","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230819":{"name":"typescript","version":"5.3.0-dev.20230819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230819","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2d9dcc12507c459031f7d2c39bdcd8aa6480a0a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230819.tgz","fileCount":110,"integrity":"sha512-xFI03/rVF4TqfFun9uM1WLqJxM69zGmALg4vOWFGXLW6W126ay+fBUcCm3xoRVNA8ltwzViJq2dXpZKzckShBQ==","signatures":[{"sig":"MEQCIEiiBDujqB6JR77yHW9DR506gomb7x6lXxlXnMqX82ykAiAssbMAdVyTIo6ZGsE3oPBAm4eI6iz8+2z8C03m/REpdw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31896298},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3af710e414834301cf199855a3fbe095c4f31d4b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230819_1692429169514_0.6082655248046323","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230820":{"name":"typescript","version":"5.3.0-dev.20230820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230820","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8887be8ca21ff3248308a2f250be4aa6909a4a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230820.tgz","fileCount":110,"integrity":"sha512-9T+2gAm2cEBpe0K8W7lXEGHHme5Hn44m6CtcxZJlqEpV5nvqkUvj7ANf0XSlJ1anvKzRDireqfKBVUHZGw+vWA==","signatures":[{"sig":"MEYCIQDJVYmJSjkc0bN52I3k0EdtIkb75QXrGjS3CjqOSJ8n5wIhAPEDxRW7U0sv/jYrsRHqkvubIndjApODm0LRi3XYKVpG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31896298},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3af710e414834301cf199855a3fbe095c4f31d4b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230820_1692515606287_0.6729787600861838","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230821":{"name":"typescript","version":"5.3.0-dev.20230821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230821","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92b0b48c8fbb9e97727dc1c98d5810567b91973f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230821.tgz","fileCount":110,"integrity":"sha512-YkxBZgI3iA0uJR9pJLDXQPZ6xdzGUnDyJTtNlJzh00tGFbDh93aI13DioYrZANNCZeWn7Pr3FUT7tRCq3500wA==","signatures":[{"sig":"MEYCIQCkJDX5+kIdbesqsa6vK5sBKwVwtPeRwPDMJqg7OGYObQIhAPhtvxZ+3Mr8mY0lK9Cmo97NvqZoco++uztgUCwOyuB8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31896298},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3af710e414834301cf199855a3fbe095c4f31d4b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230821_1692602213976_0.6850623315475566","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230822":{"name":"typescript","version":"5.3.0-dev.20230822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230822","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7a92cdf72e951a700cb3f53b26a082e807d809c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230822.tgz","fileCount":110,"integrity":"sha512-zVlawDu8ult5+AoXXQck+R+qJn1Gzv5aE1lH9UcStRRE461MjXK7P8DDJuee840m66huRJKMzh+ttgrTUEfWmQ==","signatures":[{"sig":"MEYCIQCCo24yRxR+IRpRUQEQpXWG4d+72CZ98aU5PTY05+OOkQIhAJoZbqdLIMrCrX0JV1woUy9Be+ku91Y82nyQuIr53PWg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31897093},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5439c8111de50fa6ea239f95fc23c76dc868fc07","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230822_1692688560064_0.8593541574636192","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230823":{"name":"typescript","version":"5.3.0-dev.20230823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230823","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ce99562b71b94c095bbc6de01f4f80eb65edd1e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230823.tgz","fileCount":110,"integrity":"sha512-IEFfTl67UgTTJzf+Ma4+0txDKzxzxtjNjyFjTm7c+yP5sff+atKe44mAjhCxX8wGjwRrFuhAUeHz1udmzBZ4ow==","signatures":[{"sig":"MEUCIDminDivFu/PkjlGIAXA+Jw67vlUNZIUnSdHoy03ElhyAiEA8JkSflmaNBlHEwmwed683e/Kx3p5fAO6A+TdhJ4UETU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31900984},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d0684f789b6e8368789c0f9e09f5b5217f59de2b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230823_1692775093475_0.29078357637253305","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230824":{"name":"typescript","version":"5.3.0-dev.20230824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230824","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"14fc65c14c588363c0d290dbbbda8ae0968fd95b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230824.tgz","fileCount":110,"integrity":"sha512-iiUWxGibzrRHEBLDJfVymsvpPKflf3cMrw0oQTMQoguFS2ikNlVlfQWAsYeHqGpRQc77nSQkzsE9rAHNHqvIjw==","signatures":[{"sig":"MEYCIQD+av6KW/gIynKoni9vWZF5OwT5CuYRMrF+AVnEjK7PHAIhALREzpoQF98dbaLLZcqoN+PIA+DKCykBPj10tHa5Gp6k","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31903347},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"769f2daf712c2cf057259ac5321174702ba0d59e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230824_1692861363886_0.8862973527883737","host":"s3://npm-registry-packages"}},"5.2.2":{"name":"typescript","version":"5.2.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.2.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5ebb5e5a5b75f085f22bc3f8460fba308310fa78","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.2.2.tgz","fileCount":110,"integrity":"sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==","signatures":[{"sig":"MEYCIQCX8/gCKQZVr6vH1ElsBg6B20NMOKOcO/Mj28gD9U5ShwIhALezoTGmxvGbL/IxwEv0p3VG3slg3gMmEZiBSsaSgAcR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40607327},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.6.7","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","del":"^6.1.1","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.18.1","chokidar":"^3.5.3","fs-extra":"^9.1.0","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/fs-extra":"^9.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.2.2_1692895094876_0.38131523577097304","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230825":{"name":"typescript","version":"5.3.0-dev.20230825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230825","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"14c56a699ea2d417fb8e28df8b2698b691ce17b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230825.tgz","fileCount":110,"integrity":"sha512-LbxxB17+nHqe7e6oA/240Ha1kOhtrgmLz98Dq3Nbm1sEdkqOnsv3j9XbI0tqd+RWtC/5pgnljHmZRHk/qUeKpQ==","signatures":[{"sig":"MEQCIHtjy/d6xRxMGNnmkRt7onWfPdZphSeyUzLznk317lmyAiBx/AaruDtMKv+EUz/PBbtNC0jLgxvHj9GavXzOYXFfOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31905382},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c3c5abb3a7d960de6e2fb75bc2a74fb90d9109b6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230825_1692947658285_0.3690799021407385","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230826":{"name":"typescript","version":"5.3.0-dev.20230826","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230826","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e987f348563f27d5ffa23f5edfbfbdea478274cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230826.tgz","fileCount":110,"integrity":"sha512-2YR1sKozMZdEIf4OQc3c4r3GQI2zF+Hp6D+Llbc6k0KehkpzFcd9RZkDFLj+/bjt6ftY1u3y7M+Mz8uk4Xr/GA==","signatures":[{"sig":"MEUCIQDRZ2hKVvyX+pIkkSVn7KjjYaAbhyEneBECfx4AoYV/IQIgJuC0geyhxDN0MLvPgmv5Jl0Wnn5CMMYTqGPV19TVt9w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31903606},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"51e7a34c2c1557259599d6039c3e20da05d23abe","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230826_1693033982038_0.16841704837300875","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230827":{"name":"typescript","version":"5.3.0-dev.20230827","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230827","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7950720728e773fb08aaeefa2abc1f5ed885008c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230827.tgz","fileCount":110,"integrity":"sha512-LXoK1ae7+xCSaRWV+/dKMoq6vasSldbtHxKLaPvcWGKv4yQbxxiA5gwz3PWtuaE5JbVk0NrZiWATIoRgr/Yufg==","signatures":[{"sig":"MEUCIQClGkqFr1bwM95IFas6K6/MUVTtzb/iZ4EadXeiN2MDqwIgW4PjEZHpEdx5dBXL5MH2YPS6XtWr2uvByjSSsueq6O4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31904843},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"27a5bdd44602e03764767309ede39e1a10bd474f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230827_1693120554278_0.7414204612223467","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230828":{"name":"typescript","version":"5.3.0-dev.20230828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230828","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"77b37fcd9187a016ac7193d971f29722ff967b38","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230828.tgz","fileCount":110,"integrity":"sha512-uBVHpn+yxJsHMANa01Fn1Ni/3v4HzKcZbbzsbLYxgPKNJTAWQM8FoZWOFh5mrjZmpJcpGtPBcwbeuTUDOCD6QA==","signatures":[{"sig":"MEUCIQDDcFIrToQ+VzVa1IUMmTnqQ3jMFoxW4OesiRq9T/ciEwIgcv1w1CIGV2vKU4ZO0F8FGk8378MEO6Q5NdRK/H50tww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31904843},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"11b2313a120081b06ec98e3f1dc26dffc0e64efc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230828_1693206839139_0.5590184632993045","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230829":{"name":"typescript","version":"5.3.0-dev.20230829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230829","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"992aa41b87a374b8612e85072af5216957b5c5e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230829.tgz","fileCount":110,"integrity":"sha512-2bsH+jTfOtehS2ZMI6RteCCRFk2QTUUY3BijvnyS0+o0CB/xWJDu7+WRbpt/XEZgOcoTLf9evRm/tyGSlPyNgA==","signatures":[{"sig":"MEYCIQDZR8Pbpqt6nQ/QboIZX5epBiZKTe+RcUw5wwMdmjFyrQIhALFb70ECq7BkcBDNJ+VHggHLgy5zn7N1Dy5zhyyKXsLZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31898561},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7c417bfd1d14326575a2f08f8b6013a8c10d9f9e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230829_1693293538228_0.7839922581498591","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230830":{"name":"typescript","version":"5.3.0-dev.20230830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230830","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d2c397c3c01250f8af9e20ceb1078fa834837ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230830.tgz","fileCount":110,"integrity":"sha512-Blg+ZXlQ4QmC958EKLuEPr82sxizVZhc70X6mWFQjru8pOgBz1j6rTM7KGQhFdb6/HsdT5BSV+BcUMVO6m7v2w==","signatures":[{"sig":"MEYCIQDU2fF8hoycqnxKNgWrSoTzxkq5vWYStB9z10YdXmACRwIhAIpV1bnVo6QgefBpeowdbhmxJJOh4udjURxWo8O73mL8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31899087},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"08e0eb74e6eb1acac26221363c1b1fffe5102d47","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230830_1693379569041_0.5345871827734219","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230831":{"name":"typescript","version":"5.3.0-dev.20230831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230831","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1df60990d26d18bff9bd0b4aaf38decb2017788f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230831.tgz","fileCount":110,"integrity":"sha512-rF6KQ0q/AuevKbtHjFEZ7dXRGv0t6bIcmo2K1ypmwZmnqwcxcvDfHxBjQM0u3v//5rpHiqasPTC8nB7SMEwvOA==","signatures":[{"sig":"MEUCIQCxIhSpQNfy32ZAGzpimjknN8T83QQnHM6xVSeOSjSKPwIgHHG5Q4ZOcLV66wHn8t7Bk9Tyi0CBuSRL1T92ac1904g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31901296},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"45e5a45d87fd28cc6d5d752daf40f4961b9fa745","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230831_1693466070453_0.44213597706522223","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230901":{"name":"typescript","version":"5.3.0-dev.20230901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230901","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"968556d52d22e1a37f8fcaf99b7f2699870ebee1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230901.tgz","fileCount":110,"integrity":"sha512-WF0nADzGdbBjQf948j5pSOko6uf7ax2KO1FqrPiX3RsQ99901TdBERuL5ivUu08KKOWV/+JyzUclUWIke5IwCw==","signatures":[{"sig":"MEQCIDay8FkxWTHmM8rlhGhx5CRgrrOlwlZlOh1WLt6o6PQfAiB2zCnhF+x798URdPadRtwPny9y0p9x4ROWsQ5HLSA5GA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31901296},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"512d6328e17c07a51fe07f58c332c0f51478447b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230901_1693552415491_0.794785858519498","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230902":{"name":"typescript","version":"5.3.0-dev.20230902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230902","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c27fe5baf87059ce3aee6fa69c4e4295c4aa7bf2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230902.tgz","fileCount":110,"integrity":"sha512-Ip28siJUrn+uiMBdppvNJrsuVs7yVJY4t//Vtn91JTaGvtqgrqYP14pxyL93HHfnXsKlPHyQLG6hC8oYLDEN6g==","signatures":[{"sig":"MEYCIQD0hnMcqNNerOOm/xaa3SIBawGwfz5aAgj6Ci6phqm8IgIhAKyFOxDJ6C5PJB94D4mS/cZOIDepXXLeo5Vi790953cu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31901469},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e36394115dea14540689fb1809b6230dc98efe0b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230902_1693638789736_0.3810903928733804","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230903":{"name":"typescript","version":"5.3.0-dev.20230903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230903","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"418860c2efe9f85bc9474d9b00db0cf95f14aaac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230903.tgz","fileCount":110,"integrity":"sha512-E6LOaE+pWeqBPUkvCjVrcgUgk/TrbWcAyL+YbEX1fM7MKdgq71dIqihS8eubBZx5y1oiTgmf6A7xyb+ySHCeaw==","signatures":[{"sig":"MEUCIDF+Z6r8p8mKB1/kMgDB9K7JcWP6NGTuriHuEEh7TgAuAiEAgg4l1mq8WXPZfcNnZuxO3VLukUQr24GMS/m7m2JPlt8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31901469},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5d04803196899fab535103a5114bc9bf8d04dbd9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230903_1693725213548_0.6237498939969561","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230904":{"name":"typescript","version":"5.3.0-dev.20230904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230904","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2931b1a2867b0e7ae2ecdc7d9c0c5845f2b6c59","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230904.tgz","fileCount":110,"integrity":"sha512-07NPNxXTmtOd0G5DnbDHee7Yh7VT6R8HzBiBkzx/PsyDIiD2/a14pbmex5xiDRvoLyUNJvNG1S6p48f+Qk0FMQ==","signatures":[{"sig":"MEYCIQCVJiK7O6/Na+sywB6PlCJP9wfLjGUgjxWgqISL/rqgmgIhAJws8Gp/dC3j3Oyub1G7HdroU1Vhz/VcLtqkAiUFhK+u","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31901469},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5d04803196899fab535103a5114bc9bf8d04dbd9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230904_1693811606820_0.961200716891573","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230905":{"name":"typescript","version":"5.3.0-dev.20230905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230905","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b88de602ef4afcc3a80a9c38023df82b7529e42a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230905.tgz","fileCount":110,"integrity":"sha512-Nl9MoKWN0YYlCvQnw850L4ZgqdmqwVGCi9cAoQDw4PsqRGaWAi9HKizS9xu0q4qgKKsEKetWCZHT8dBtJTGaMg==","signatures":[{"sig":"MEQCIAWIQ6wz5dPbfXm0bnOlgmN1G3V3Z8BgaNtlD68D7iG7AiB8IxTUnEFiyM/yPIPjZzjpNgxo8gIITgR7f4ElrfuV+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31901469},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3f17500cbf0adcdae388a6d161002ab73971f3bf","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230905_1693906450356_0.2122095531114303","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230906":{"name":"typescript","version":"5.3.0-dev.20230906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230906","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21e0cbf91be7f6002e49bab80611a9ff930135dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230906.tgz","fileCount":110,"integrity":"sha512-7dCmQgfQ4i38daoPCCert+rM6gLxBpxRdjncJkHkJV4CWvNZsRX+RVTusojkqGAtW9vqB0+/8iDH6CZ0PDxghg==","signatures":[{"sig":"MEUCIQC+zCSjlVwzDwIQjj7BsN5BG5kpEz474/QA7KclYIFpfAIgBtrNfBcsB+riXdeoetSfmop0475paztSzKMcwPi/J6Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31901469},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6d520282878f87d381d5ce8cf465f1e16a54e797","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230906_1693984408330_0.6438109862718355","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230907":{"name":"typescript","version":"5.3.0-dev.20230907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230907","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"286e19386f65eadbea4629f31c396882eb03406e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230907.tgz","fileCount":110,"integrity":"sha512-8yegC0GyY5ug9184BxLq8fLDt08+g8jRfut0QSraLFoT13c39Z6fVoviDEeqJgbnIGVxzAEiNQLUslpKYCyUsg==","signatures":[{"sig":"MEYCIQDfIp3huEYk31ERk7q5cDmRZafYbHL2dQClp5TzrKe/GgIhAJciB4dHvxOB5AlsiBG/ZWkEvhhpfnn1IjWWjGx9vIKH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31901001},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6cc605fcfe66118eafb50b2fdbd386da7e419795","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230907_1694070804863_0.6858159156867754","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230908":{"name":"typescript","version":"5.3.0-dev.20230908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230908","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e77ed4afb4c07ed6da07cb5760eaaf3f28821e1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230908.tgz","fileCount":110,"integrity":"sha512-s4fpER8j1Pj58FmFZUmODUx/D9dBwpPf+gb+/lKV6hsXKPPSsFQ4cktq+feqi98Om9RtjyCC+tmndlfmruObBw==","signatures":[{"sig":"MEYCIQDaAeZj6SnAZl+0lzrsnBWq4K+0LAWzzXqtP9SQ9HBGHwIhAK28gUJWj2z1aCNHnX3wDIw73frkVjbXxk+V453/V0yP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31903055},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"eb374c28d6810e317b0c353d9b1330b0595458f4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230908_1694157183548_0.5725738382049597","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230909":{"name":"typescript","version":"5.3.0-dev.20230909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230909","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ff4e569a487a9383cd28ce363516b5d3f79cfe36","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230909.tgz","fileCount":110,"integrity":"sha512-ffKXKy+qxRJKN8oTwTudtS+D33f6/Xp2lVUmPn22ZihrLX2vsZoyr/JenjyjSmbQdgdx/w6yWLyA3Iw9F6PrRw==","signatures":[{"sig":"MEYCIQCSHAYqQf7hWlOGhEhO8ind5YQYa07ZPPXJXpDfeiYZcAIhAO/WBqQJDnXdV+pBSQu0olYPGnJpfvcBs40OGn7cIxQL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31905509},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fdb2531c0b188937c057786c276f7b12e89ab48e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230909_1694243639123_0.9739863173016114","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230910":{"name":"typescript","version":"5.3.0-dev.20230910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230910","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"76bcbfaef1768838b6ca567a0d01c30a2e313847","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230910.tgz","fileCount":110,"integrity":"sha512-ig1saY778M8pNhr99DhhgHKbFTCZCsRt95xv/ToPRevn4vttmcbs/Q/tSyBJSdPlkfQ5wO/XWU1kMI081iAmmw==","signatures":[{"sig":"MEYCIQDox2qVEF4NbDi+BzSlTnul5OkY1QIcdikiMgeWJBLZTAIhALRbn9/ooWiThTu4pIRE35rArh7cYsVvDS44FtNul74H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31905509},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fdb2531c0b188937c057786c276f7b12e89ab48e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230910_1694329959145_0.6600014440735831","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230911":{"name":"typescript","version":"5.3.0-dev.20230911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230911","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7f60e82ee86e381655ddc63141408eb90b6ca31d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230911.tgz","fileCount":110,"integrity":"sha512-2iI2l7OuGvU668gBje+JQKE8bsf7SH8w8ScwUkENHCcrbaDpXa/Oqfuwq5gdFM7SfVfp5p6c8kHZRMvL+kabJg==","signatures":[{"sig":"MEQCIAO2fHiYtMhh5GOBbPoIBPK/ivfn+7WAACPrtU+6jqNfAiBsVW/yoidpySVYE18smPHtsrK+WkqsEVbY2xWA58uSog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31905509},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fdb2531c0b188937c057786c276f7b12e89ab48e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.40.2","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230911_1694416425097_0.06180197756896311","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230912":{"name":"typescript","version":"5.3.0-dev.20230912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230912","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1b7dd1aae514184f0c816588bf653151ed5a295f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230912.tgz","fileCount":110,"integrity":"sha512-rf3Qmo6TE47cxy9yZqkjfJvt6ClU04leuTCKzklpOpqjGDO9tgTNE1XP1ReVR9tQs+RsXGbi+QudxIRAJQisBQ==","signatures":[{"sig":"MEYCIQCoxQ2qUUl3d1COmP6W3rRtVkzTKOlHYpKUvt82nez3XQIhANYOTFjZFhDX95fJnq4Z7mHFWw/fqntkpAsttcsazZzq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31907413},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d1738cef6fb5f54fbd14dd4dc0b201734c842344","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230912_1694502820389_0.2369049043762672","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230913":{"name":"typescript","version":"5.3.0-dev.20230913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230913","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"555e6030ee3f2051cba5b9e21b877faccae9c374","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230913.tgz","fileCount":110,"integrity":"sha512-+1lrLCj/NdyBbWXK3ifRSzmg0pSg2WLDmzeXf1/vTOb84eV/TCJ1i9eOS4c40T3tzDSAOjP39x9/+unUakbuKA==","signatures":[{"sig":"MEUCIQCo49TicfGHSF7L0nBPxRe3JF3EVGqi4PZzknrckAq2IQIgMw7kwa7SRr7wswkH7pZ1fC5zQdW6rzuQkrDiurbBw9A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31910218},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3ade5022d7f287fdaf61c9e6deed32a3ffb60bc4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230913_1694589240677_0.9782755121999736","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230914":{"name":"typescript","version":"5.3.0-dev.20230914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230914","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5390b75b300ca955be462deb5bced8d138876d17","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230914.tgz","fileCount":110,"integrity":"sha512-fLOsSwW/WYEdqhxDb4iaJ2IkPmxMM6di8p++ey3SlOTaK0sdczIYVl9tlCxkajWOp0UnvBfO6Bxe+g9xxZMypw==","signatures":[{"sig":"MEYCIQDvCKBoH+SwBIrIGaCwSzuOj/wa8LETTWnCUr+vv4s+HQIhALDHGIinZC98ziWgGY6WAl7pgbrsiLZwI68Txotj3bdA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31925633},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"a563de9e4918f6ef614069c0bb9202e9bd303e0b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230914_1694675617302_0.6970643083858046","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230915":{"name":"typescript","version":"5.3.0-dev.20230915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230915","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8f9f92dd1e361a9628c29fe72b3b09bbc2b04911","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230915.tgz","fileCount":110,"integrity":"sha512-GQr8dkpN44ywddczAzV80zSPckUfqUbxmCi2SXJ0SvOMOk7TXMUrcptoHQm7HqFggTUS41AUEr+a8RmyPApw4Q==","signatures":[{"sig":"MEUCIFTzWQNrPvPXpK+87etcEU3yldtYM2qQiHcjjqtExFSqAiEA+JFGDdcnl1UvdB0YbPeM0j/oTWzKRRxUMG7QnQDG80M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31928171},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b3770e78527a379d2345412bbab5acc0bafe0090","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230915_1694762022656_0.9594117274637293","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230916":{"name":"typescript","version":"5.3.0-dev.20230916","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230916","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b5ba3e64a12b558485527593959ae6d671165aa0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230916.tgz","fileCount":110,"integrity":"sha512-X8rf5tDJ3BV2qv7AMPWAKI3+DIt1qzDLI5Ahw27IT1iii/IGNeSBTWYDc4pjD0OgSF30q2wFjNeOJyfeOo0IJQ==","signatures":[{"sig":"MEUCIC6UXkR/9dfOit2Ix83PuqGVmyc56WJg3NbwhAEaxXazAiEA3WgBNfq3/DzgvkuT6n6lspCyGQDqvM5ZgmbwWDVDbRw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31929043},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"89ab23a64941f7da4ca141fb9de89fcfeab7b7e5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230916_1694848703986_0.32097114791050707","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230917":{"name":"typescript","version":"5.3.0-dev.20230917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230917","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b3d5031c985314eb4fb97ca2b7a909a947346059","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230917.tgz","fileCount":110,"integrity":"sha512-njiSKStDPLFKdkoI/o3vZs9/ywPgQlEvV0SgBQDX/9/c4vg+7N//1X9a0m/6PZpN4BHd8NlK/dRptQ5K4q4k+g==","signatures":[{"sig":"MEYCIQDSOcmv1EqR2kkkUH3sKmrF3kgPHBvVax6oTUhggilABgIhAKH1Q4c+reQcx9mKzqfChYF+56ecjWcPn5K11jlgtn1l","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31929043},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"686cb1b63c82e5eee4cd9f8bbdbcf657a4815ff7","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230917_1694934792942_0.90231172246687","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230918":{"name":"typescript","version":"5.3.0-dev.20230918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230918","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ce215c54cf24145fdb5de5245b9a8c12e5987065","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230918.tgz","fileCount":110,"integrity":"sha512-n0gvj+RwjGVYi2fyz/7Bd2lCrh/uRROVyQtgUwXXG2p6tyCUw8UE+7lOdr2dp3hVn6Uo4EliGLfajoWNqhFmuw==","signatures":[{"sig":"MEUCIA/le0YIgeMVDgk6LjPnI3hd/AwcRjO6dxhahCHBXWeBAiEAjBOOgBPzlWV7CHpqVtrFScDQGDAG+uUN0+ULLziDzw4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31929043},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"686cb1b63c82e5eee4cd9f8bbdbcf657a4815ff7","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230918_1695021292292_0.12938293319922","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230919":{"name":"typescript","version":"5.3.0-dev.20230919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230919","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ee93ccb19d16a89b562bcd851d31e20e545b2ed0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230919.tgz","fileCount":110,"integrity":"sha512-FU6DZhzId38aY/dX2gHp7phaYkbNJkCx8G//VVs0nVzZv0qjWGggLkMXoMipphO8Hv0TvZu30Zwdt6nzFIbcBQ==","signatures":[{"sig":"MEQCIC5UeRL4JEr0mjDE7OWgISMRfuzqq3pJotMOjhk/tT/YAiB+Eoth2vMjzRRvUiP0TbAH7Fv1c5hVTQGcbLalF3ibsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31930854},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7d9399e353c1b770ab1b5c859c98e014cd3fda03","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230919_1695107667685_0.9370183575223574","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230920":{"name":"typescript","version":"5.3.0-dev.20230920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230920","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2fa74f5eb2cd68bde91fed2668c483c9e05c7c83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230920.tgz","fileCount":110,"integrity":"sha512-XaiYm7T6bGo+5mbRsmFqujMbNz0BLRCTKXiG7Nuodxz/aB5XJhJ01s/9GOJ/BS2XcxBqMoTbrGf61OdqzYhpxg==","signatures":[{"sig":"MEYCIQCbrODvQRrJmjmn8kOsztRjwerD5lK4mc/5IOrL11FgiQIhAMAvy/1lK6M4aiP7qOYqr2/2JX8DiDGNFVmvSCgCjJ5a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31958115},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2738fbf1e05b9429d03b5956ba0413d92f5b993c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230920_1695194099335_0.14186557232122765","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230921":{"name":"typescript","version":"5.3.0-dev.20230921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230921","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"471132893592478dd2c75d7619b0c5adcb0ad37c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230921.tgz","fileCount":110,"integrity":"sha512-TZnDMkY/mgooSXJv72Zxr71MvXYUKiH05lekDOB9FaScoHLGNDvqw6IrT6qXx/kD6eJFpW2gadIz1eJQeA/URw==","signatures":[{"sig":"MEUCIFAJ8a3/kF0Z1SUSDD9TQYRv1y79zsYXWESarfkLW6IVAiEAoY2celXWdeeXfmje8m2KNTqk6U8qmbpzo5OQJJ2DLo0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31957543},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f3dad2a07d007c40d260f13d6b087a2d5685d12d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230921_1695280832066_0.005571364920153199","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230922":{"name":"typescript","version":"5.3.0-dev.20230922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230922","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93b248bff54dcecb410659badadbedd6caeb5e03","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230922.tgz","fileCount":110,"integrity":"sha512-QmuWGuk9Uk3blOaDo5P9wVLAOw7CfhrHmWoQAD+5UAQeR52S0/W0BjuYgCMGwmxVJJgYK1WCeBdbTi2jLxvoog==","signatures":[{"sig":"MEUCIBaeDZT9lUw247QP3yHw1STqhKO1M28yRW11neE9Vl9aAiEA5ypPyV690JV82DGqBSWbaKq04bin8KZf9y1gmlXUmcU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31965871},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b47022b997301b8788ed44012316ae582697f891","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230922_1695366809741_0.3877511978658663","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230923":{"name":"typescript","version":"5.3.0-dev.20230923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230923","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f1896761de69736d725e5a3e094ca1a8637219ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230923.tgz","fileCount":110,"integrity":"sha512-tGKB6aAp4/hIdxkdfTZ1Fz/WgX35AsHANB5BN58HPoOiE4H8BPRZc6mWksdiu3HpEcLbK4hiYrIO4vslbr4iFA==","signatures":[{"sig":"MEUCIQDyLOZM4QjeDdJNzxxFCdSJYY52G4/oqzI4FHKfPgXZewIgU38qzJ/UipZ+CIf+H+ghCnfQBwriUnqziAWi5kb8KQc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31988709},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"956a3630283f9e53ad53adca6c68487192c8701b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230923_1695453525219_0.06526278869411328","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230924":{"name":"typescript","version":"5.3.0-dev.20230924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230924","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"364b2d6cab2a609d955bc62d7cff019a410ca5bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230924.tgz","fileCount":110,"integrity":"sha512-eoURpy2KdMkio8jVtNbZp5BOuoOJV1FEQyaWK8gqq+8EzVoBKWyt50tDsblDeSIcstigCWujQGhVhOPu5bkDbg==","signatures":[{"sig":"MEQCIBqLUDgrGaQGya220uOos/f3H+E4/m1M8SyzbGLI9zGLAiAf1KRQ9zuzjZErVIPM2UYRTm9cnnD5xqRdPGiA8LlouQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31988711},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"97147915ab667a52e31ac743843786cbc9049559","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230924_1695539592334_0.7543594164783447","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230925":{"name":"typescript","version":"5.3.0-dev.20230925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230925","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"35f37d32e500779722bb63956d7af5119813177f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230925.tgz","fileCount":110,"integrity":"sha512-Q8U1zNAGD0BSaVuaHmjhYB8sM5VyTcp0y6IM4Q3v40uLX3MysM5yLl6qSxzA3PTzXmQmahLy+08aM3cZA0hR5A==","signatures":[{"sig":"MEUCIQDyrSuyQd2pq4KYlUUqpakGB79gCvckUnkyEu1poVIi6QIgPtFWFnO/GG1lay1Yqj1R9ADR7SUsUIftLdIldIDSzAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31988711},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"55d8bed85c11672b2b6f9ee3e6e1d384bef6f4da","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230925_1695626086341_0.1602378100799029","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230926":{"name":"typescript","version":"5.3.0-dev.20230926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230926","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cd27f32d6fdfdd4e4f7aabcbd7cc1086e75f07d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230926.tgz","fileCount":110,"integrity":"sha512-Di7UazUfEeXHROiWH/D24zvK848YbcJAvO3CKEoQK4d3WSNxkbqWW5ipmr8SF6srpZ1achwisBGUI1HFbttRZQ==","signatures":[{"sig":"MEUCIQCqGiCFyr3g0t86nEZlYvfqQhZ+J+oT4KD9QgXZIIQDcgIgP2psij+Utc2aXjt4/gafl8oVuNY8LKw6jKnTxcArvUE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31990351},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b12af0fa2bbd4b015e59adcfb49988cea7f919a1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230926_1695712471356_0.2297491829717926","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230927":{"name":"typescript","version":"5.3.0-dev.20230927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230927","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"339a6ccc58a5ae6b0606be2ae8bcc1bcf88270d2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230927.tgz","fileCount":110,"integrity":"sha512-FHoT/nbOZjlXfK1yYTtCVT6yOp7Y9Vab/8Do4KiEGl3jI6rxPD7d1ssB/5vlH4ZXZ//0DW96vsvp/OUyjxCqgA==","signatures":[{"sig":"MEYCIQCHq+CVJ4omuZYXxTQv7WN42s1MTnOzJi7Rb6zHUiAF6gIhAItYuWwhrV4KLBTuVaHNmHb7VcAuCY7ehTkF/9p09nHt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32002736},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"836576d4012213eda03eb852b6cd55e4e98a200b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230927_1695798859479_0.6513569351116713","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230928":{"name":"typescript","version":"5.3.0-dev.20230928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230928","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6fc17ac2d0771b9fe2ec278e3b4076d64f7c33ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230928.tgz","fileCount":110,"integrity":"sha512-s1YWephleBssMVVMHux7sjeC3hREYXcsXg1srPToovO5p9QrDzkulpKmGx3Q7fJz1z2jcptYzrMRlPO7udDMzQ==","signatures":[{"sig":"MEYCIQDmz0jPh2z8KITJY7AIHURFKFOA2zG5ajwXWNr4EHf6PQIhANIENBrsLnwFCxDJ6U/DnPnlloLWBkGVo9pKZFpc/DxX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32002736},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"284cd452450128439b2aaf50a5ac1d92c7fc07d1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230928_1695885279222_0.22242085642972498","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230929":{"name":"typescript","version":"5.3.0-dev.20230929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230929","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"22a7b506df027a597e35636acd50a623dad115ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230929.tgz","fileCount":110,"integrity":"sha512-PI76o79R5fqKK17Khk6QYvlC5W5JnKMms7ojq4MhQ0P0jmCsiUrDLRRwJ9Cs5GhMVGoA5Qb87U//Xpztc0ICsw==","signatures":[{"sig":"MEQCIAqFq3LgbNWUY2Ypiyv2+uvX6g6Dm3WsrT9MyCDohYtGAiBXXHsozEoWxlOckDAaTXkyHyAJRaIO2kMjGCPX3oNtrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31930296},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b0db525798fda109c1c05ef530cb8949ab544677","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230929_1695971615777_0.3115702298628953","host":"s3://npm-registry-packages"}},"5.3.0-dev.20230930":{"name":"typescript","version":"5.3.0-dev.20230930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20230930","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"51782bc9533fc429e25b8563584c2b75ff5e1f33","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20230930.tgz","fileCount":110,"integrity":"sha512-CwEDMMDZAwFEDszTujUIezut2DWmif6C5MTxe1mcduD4dtp73+Pa3Y7d/RuPpePiupRHRZZQW80jSTtLSo4Ukg==","signatures":[{"sig":"MEQCIEKCJ2mR9LX7YxTdmuH7P7ry9TQ11xeTWWy7L08vjSNfAiANHnflmCOqxeB9tZ0c20BMBDCajF9Sn0DDVbc3SlMzqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31948830},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"695226ea5ac64195e4ab0180cd38f06010157ec0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20230930_1696058048551_0.5193238038618972","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231001":{"name":"typescript","version":"5.3.0-dev.20231001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231001","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2bb2106ffedbc79ae62a281d9e8a02a53a001afc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231001.tgz","fileCount":110,"integrity":"sha512-7S/qroNRzCMGI7Q+V8014H488zvGMdcWxjg888I/ysgC3qmF54kdIYZ6eG5nifm9xg8PxtsdvLoyaahM86VGMg==","signatures":[{"sig":"MEQCIEI964UsXp9OLzccdCHdcpRYUf5vP2QlsPxixVdi+qzFAiAwv7K+3hTCoxJ4eFVLhfLxW4vfDKKteNwqQOOE93ZnJQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31948830},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5c3045bc4f0d7b9a3e0d43cbf091ced99db8953c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231001_1696144510495_0.9523654693861594","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231002":{"name":"typescript","version":"5.3.0-dev.20231002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231002","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75a727afbb3a1a1b56306fb106d3799b6638759e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231002.tgz","fileCount":110,"integrity":"sha512-TQXM13rrDgID8W4Ok4KDQAqwLUjLcAXL+NKv0zJiIEQfa0bOM0yoRiSgvcjaCJ4lZT4bScrq3vHspVM2x8rkOQ==","signatures":[{"sig":"MEUCIQCsT/JVY0uTKxKmWuaMiDiGEQgdMFbWe2cZmxn2jKmGmwIgC/R60UHIsQULgEB3r0bVHWaNIOkBAflXfr2isIxNuy8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31948830},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5c3045bc4f0d7b9a3e0d43cbf091ced99db8953c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231002_1696230839977_0.6839151847575498","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231003":{"name":"typescript","version":"5.3.0-dev.20231003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231003","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f10d59245a339d25571527d708553e7e87ca5012","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231003.tgz","fileCount":110,"integrity":"sha512-OyUdPjo1wNYs+PVDr9ARcEPs0aOqdxterOFzQzWK6DR4tsadKPbrOx8JgTOvSUwhkNOxBOEh7BonqV2uNsTxvA==","signatures":[{"sig":"MEUCIBZwfXcXeSwvwZKk8Wk6YRRllhVNvOW5TDmvYz5KQJZoAiEA4tGOpt/Eg2bcM1A7lMBIQGGTXuGV/41JgjrlcQnr4B0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31949143},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3116b89afea96c48db0384b4accb6adb47895b9f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231003_1696317295677_0.6257272805791603","host":"s3://npm-registry-packages"}},"5.3.0-beta":{"name":"typescript","version":"5.3.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20c29bff9ba381a2120a5705bd87a0c8a2104b54","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-beta.tgz","fileCount":110,"integrity":"sha512-SiTeC1C8wAS6v2SD05iyfojeuIkUZIbb8suZz0d4BR+RErwpG+05iolat+VjM9hqXSrjb3xutEBzh4X3NJ7Jgw==","signatures":[{"sig":"MEUCIQD7tGefbmhYe5pQCz0BegyjWIEEc2RyEsWZE8VW31a1NAIgVEKiAneypMZBgPCsghjTg4SA7cuNzlfoWFl1khXFfmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31948664},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-SiTeC1C8wAS6v2SD05iyfojeuIkUZIbb8suZz0d4BR+RErwpG+05iolat+VjM9hqXSrjb3xutEBzh4X3NJ7Jgw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-beta_1696352409139_0.09447184827815236","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231004":{"name":"typescript","version":"5.3.0-dev.20231004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231004","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d35b20c8a2dbfee5c6baa2a51a47374949b25d5c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231004.tgz","fileCount":110,"integrity":"sha512-deMSPmvpUJCz9hHInrVQeHJoYCI1tFP7qeUEKh6WouazlvGnLMbyyAHyKNfOBDjU2die9qfjwqtch3DF2aV4vQ==","signatures":[{"sig":"MEUCIB375jnlgkBuQVtYljJW8GX9/p+iMPSAOderZmRpPQ3rAiEAkwFoZOhj3NHhkQZWwrW8NIujgqJBXyIIuwE680O3s+Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31949742},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"375216469400fab44cbcec99e7d14eb8f96fd059","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231004_1696403598000_0.3142503460219712","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231005":{"name":"typescript","version":"5.3.0-dev.20231005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231005","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"266e2dd5671506b9297b845907d00e852f9bf9c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231005.tgz","fileCount":110,"integrity":"sha512-Twm3wBauTO94CSWbjXFMpsHsbaOUVssreq6pUo4wr8YsaIp0jim8EeCa9LfawFetQ+P4PODMmiM+uBhhWRVX0Q==","signatures":[{"sig":"MEQCIHxzdPLMlhpvkxXaUiLRK9MzirMeL5njIaKRtp09KXpoAiBlDfsHcvFecEQMs19PrmUu6F/umOc1tJHSXhVurkvCSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31950036},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e9f68cb2969751ce2a6df8b5ee9bbfb08afb41e1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231005_1696490128297_0.39934337000144593","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231006":{"name":"typescript","version":"5.3.0-dev.20231006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231006","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1393642b53739708cba5f3f08f557609645017ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231006.tgz","fileCount":110,"integrity":"sha512-jD5wAzdZhl5Emk89dTMb7EqlUmO+n+U/uldQsSMxYh1HQG9J5Ti63B6em7Ob7DgoT7pvbqFUBn3X7UxaBba1Tg==","signatures":[{"sig":"MEQCICTr6wFwGNyhIDGLVIsGV5jYIz7Sn74gNEtzAUf8PBogAiAZGDgij0u9vpaigaWqVS20q6rwJ3LAL+tRtMfiQ+CsiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31954586},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2e58032f067fbe0d6efbdc970b54b6d72c349aa8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231006_1696576733725_0.11285200488479341","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231007":{"name":"typescript","version":"5.3.0-dev.20231007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231007","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c77a50058bfdb502365d70a11b7ae231447bf6d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231007.tgz","fileCount":110,"integrity":"sha512-yNeHmU15JtC5TgUuiCaywQqtVJ6Q1T6mNwDg5N1ObnctoaqBrZ0FGy37NP0Y/UnJUhZxgcYrIb1gcial4fUiyA==","signatures":[{"sig":"MEUCIQCJk8J3d9C2Vdf3sbblqYCRABtTmVZuEoMMDMb17TUhQAIgESq3OzY5gs4ieB2U/lC/3GJ8PNJVsGMkTy8R7ibTOaw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31957868},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d1a2e7e730cb8ebd44662ece6b263e2d4d885da2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231007_1696662874024_0.7544700410345122","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231008":{"name":"typescript","version":"5.3.0-dev.20231008","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231008","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7b11c6fa1acf5f574e30388ed2ae61b9a99dc5f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231008.tgz","fileCount":110,"integrity":"sha512-yIhJnBiRy/xd23P14x7UA5p/41U1WFoZ0PohzZoAuyVNH2DlhtLxng9CI1zVYo6amjknPb4t4apAcImtPkyXYQ==","signatures":[{"sig":"MEYCIQCHlh7FMzk/FL5RmQqPlhuEmjSs6MhTr5KTxkloLY3XrgIhAM/ehkNnZHlqrqFhkY1rk5Xp0HpoDK5PwPc+JJLu+msU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31957868},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"61a96b1641abe24c4adc3633eb936df89eb991f2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231008_1696749258866_0.31006203643975594","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231009":{"name":"typescript","version":"5.3.0-dev.20231009","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231009","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d6bd4c40e714966c5fe105aebd8d0f0eb2166c8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231009.tgz","fileCount":110,"integrity":"sha512-0JwLa29peN3wK/3uUMHTr9bzLwJ7BIloeN3JTyHj0aeyoowNMJXjpVMSTu8geVzfP4RPL9vM/7iyVPrPBmLBaQ==","signatures":[{"sig":"MEQCIF+s8GGh1+cR51LyGRjb4sZp3jhhxv4rlro3kN5Bin3wAiAfKYZ9CMpCbK7YOJRHuGgEOtbfZSuNANhhD9ELJgLlqg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31957868},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"61a96b1641abe24c4adc3633eb936df89eb991f2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231009_1696835793309_0.4011334098453323","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231010":{"name":"typescript","version":"5.3.0-dev.20231010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231010","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d28db907495bca9f658b96335619afee081665c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231010.tgz","fileCount":110,"integrity":"sha512-oSO2cE/D2+ju7rRavL4A/j6tP/s3Y4W7lDK81PaW3MEi1HpeXbRLObHcxA7Y9s2QuES/1P/81i/YKdB0kssg6w==","signatures":[{"sig":"MEUCIQCguJAhEYF0pieSVUWp8VvYfuSibqKocyTKxFfpdZLAEgIgFw9U1pHKmTCh5/fX1dWAM+apZfV3ekmuDsHpn170XFQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31963498},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"08d6df0813e9a2227afb26721e1f64ef0a402f6e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231010_1696922004790_0.27506741326228723","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231011":{"name":"typescript","version":"5.3.0-dev.20231011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231011","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2792592bf6ff28eefee88e6bef509a029ac68c8e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231011.tgz","fileCount":110,"integrity":"sha512-qpyUI7J37X3Xj7/bPWSNPUvmJ8yDGVnkQ8665xD4+LVWKUX7vwO7n2E1CUuQzeQIF4y369iPaz1d396rTW5LfA==","signatures":[{"sig":"MEQCICHjGZxZeVHxZmezr66AmknEmx4elOz00EUDtfLosWXoAiBZtwm4HF4jA4FshHOkCcHvxL9sWYtJdmRMSfCqYceWNA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31970297},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5a97ce8281e2b4dce298c280b0e67ce049681d01","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231011_1697008469216_0.13999882518892082","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231012":{"name":"typescript","version":"5.3.0-dev.20231012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231012","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2b8f4507d18d2578ede798ec54fb19b8295b0bc1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231012.tgz","fileCount":110,"integrity":"sha512-k/m+QK/2eVsPMAao4I28Cv2Y9WzUKFVhRqvFGZ3CIXc0lrMkw/1pSA+8tp7IMw1ecxoa1myFql1tmCUrMKCbzA==","signatures":[{"sig":"MEUCIQDQC89oMf+NBeZKBSWN8rHnUYvKOO4EyJCBqbsfjz/t4AIgM4HaiRfyUojUwYBbqDDBY9xZSZYIUmgiIhOYy2tcwXQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31970229},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"a8546cec3da7ff578ecf7a4ea1cd523e1a1ef54a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231012_1697095149924_0.15361156422821587","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231013":{"name":"typescript","version":"5.3.0-dev.20231013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231013","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"50d0146db569f467dea65f1a03ddb9d3beb577fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231013.tgz","fileCount":110,"integrity":"sha512-ZhuwwWpJ9Hec2JJaS0yOJOjkLDu6lm/PXjniirFFcFBArD5HA3K8P31XxPmwonBhk7oznUbhdIDu8LEYha9Kxw==","signatures":[{"sig":"MEYCIQC1zzZw3cnhfW02u6usSNjAu7T0gOTIo86jRTonTuI2xAIhALD144W0dmjf4WcvYI7kiZFSeH1VLXtBPvtx2fQM4l2x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31969852},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b4787652d281188da1d61fe9cc3a17589f20c9fc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231013_1697181814838_0.03202033081557132","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231014":{"name":"typescript","version":"5.3.0-dev.20231014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231014","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2d53a2d08b5ce960309993e08614d31e2c618279","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231014.tgz","fileCount":110,"integrity":"sha512-GdNly6XgR/4j8jLzjrs4OWRLomjRlBo/0oWtG1WA25VVHKWO6cd0CbfLNuII7LATW/KEvMBJg2sgpZosKejr9g==","signatures":[{"sig":"MEQCIEksncFFf97Ks67m2ioWTlgWC4T7YpJ2i29040VZkCb/AiAc0dpYk3nP8fPVKuJ96100/A2muxio6Z1ctP+vUBX4VA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31969677},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8d30552c65b9455e280374f329c2cd04c97208f9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231014_1697267589703_0.5994104355129823","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231015":{"name":"typescript","version":"5.3.0-dev.20231015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231015","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bcb3b1bf5b900aa68ad57185eab69537f9df643e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231015.tgz","fileCount":110,"integrity":"sha512-JAygGSVZ9qp1MlY8UH49GiUIM+R7P7QUu23/IymTR1fgnWypMnR354jHIJSr8bD2uDQfVsEV/SezM9PZshwEyQ==","signatures":[{"sig":"MEYCIQCsJyS02M6VknRfLbsNmLN/B3jo+SIJg311ycx8d6EnlAIhAODOMbqa2q7Ol1EVxmVLT3gwwyvYjVugufjqpsY14EsR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31969677},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e38944d8b8b5f6039e18b36574720ce337a5be1b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231015_1697354286624_0.7328690842453887","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231016":{"name":"typescript","version":"5.3.0-dev.20231016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231016","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f3349e8931ca047b2183fe8a34a7c65cf210f7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231016.tgz","fileCount":110,"integrity":"sha512-1NaopFFSKTDFUHEkuN7xJfPMwXZFd1g+wKuMu2eh3rDHN7lhQMGDU08D2CnlLYK2xfNjgeb5qAWXQAdMbRLn3A==","signatures":[{"sig":"MEYCIQC4XoKO+JbU0JYy19KFJjITDb9q6afti/tP4eo9x1qudAIhAJ1zj1YIoaDwiT03QBlGE5ZjV3u+TzQluJ+DO8My7DJ8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31969677},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e38944d8b8b5f6039e18b36574720ce337a5be1b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231016_1697440498981_0.2680072148561854","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231017":{"name":"typescript","version":"5.3.0-dev.20231017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231017","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f28f04bf21877bf4a04919657f78fce44a04ce7f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231017.tgz","fileCount":110,"integrity":"sha512-Gb9CxdHEnJBcghPIdgmYT+j30pAGX44Uvwc22Z9WoWMollP+5jf6VqUdmiF+PXjarjFWuo6HbQAnWoH9zWQwdQ==","signatures":[{"sig":"MEUCIQCwGo0Pq9pk/eE7FRQLCgqSQQ4Y2oOimu1+rrvtHO68DAIgTkIxG5n9xhslvHGQG4Wx/MO9Lvm/4xdh4hZXTNVzxXk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31969344},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"1f759b86ed89c520d871cd8230b6f5a46344b1e2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231017_1697526855168_0.8594212685266416","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231018":{"name":"typescript","version":"5.3.0-dev.20231018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231018","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dac802766153f690c6b6b90e19a239ba7821ae17","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231018.tgz","fileCount":110,"integrity":"sha512-qBPaVi+ntB9Ys4T3uP1ZYCtxFWIV/1ieooBDhFEd8nw4IqAoB/Us7XobF3xb756bnX8cS/zIt9fgukde4MG4bA==","signatures":[{"sig":"MEYCIQDem8ARornUCWTmiFwifdnkdesUuXBQi+IvX/v07f1XiQIhAI30aQfJ8zzr1A6HxH9WjpNlEh5v4kX79iutmaCsfI/D","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31969344},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"413179867f6262dfca87f285e8bf6991ef393289","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231018_1697613236696_0.8997208086774706","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231019":{"name":"typescript","version":"5.3.0-dev.20231019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231019","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9b176c7808828233742b6f7548aba7920e77e549","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231019.tgz","fileCount":110,"integrity":"sha512-fdexB8vj46ZSMsAg6g5aSNjThPegwT73WYwNM1DLmEnt0+fKPmmyft3LzfUR1CMHtcQNic5hl+0FeNTv7l232Q==","signatures":[{"sig":"MEUCIAObVra+hFWrKGkiAHPiaAgwBULuoEfJ6NyXe65b0ixBAiEAwyTnGNOLmpoQ45gDxLdUhBuqEcRudrgzGEDkED0FNoY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31970870},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3c221fc086be52b19801f6e8d82596d04607ede6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231019_1697699699909_0.5512832335278239","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231020":{"name":"typescript","version":"5.3.0-dev.20231020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231020","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3eddddcca501eb28d8fe91b55b46f5deb2c51d04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231020.tgz","fileCount":110,"integrity":"sha512-7C4VN/XIuL4MDSf06bSrCHUL4bZq8RMt58jZ5DdwoGZmBlnPE2YEm1gxygeUws72yvvlJJzU3BL89RMQjg7R9Q==","signatures":[{"sig":"MEYCIQCJj7UofsRSsc94xeEg8DwBd5OqfhB4+z2HVYZOBMMrCgIhAKsifAStwKaka93v8hffdFC8tESHY4Hpx25/FGsqrMh9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31971462},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6424e181d4d7460913e730249a078b176fc8aaf0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231020_1697786269750_0.15561866103912836","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231021":{"name":"typescript","version":"5.3.0-dev.20231021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231021","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"27640433afa0408c78dfa2500da071f9b503b54c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231021.tgz","fileCount":110,"integrity":"sha512-Q9le8GTluHWR1d6lo8anl5+ImJrZ9KApSpM4yEkDIMVcKueCC6q+Wz/kDL6FXPcO8odWHhDQD4vImed7KDp9Fw==","signatures":[{"sig":"MEQCIFADn/tzYnJvlRaEgRnmwQNN0LYTinUr48oCm3BrwR3XAiBG6IIBKvH2mnGfK0UQMHgGcA3kNFliwxnF1BKxynDmYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31972182},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8af8f3c4d1e5cc6654916de9f42e9ba370513157","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231021_1697872659334_0.11377774310917776","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231022":{"name":"typescript","version":"5.3.0-dev.20231022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231022","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c65c1b680ec4a2436307f5c0cfc57011c5e00290","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231022.tgz","fileCount":110,"integrity":"sha512-g8ICZidqxW5HGoyFFTyMvbHd4EbZlTSXILKT71uyPagM4asj/3JRaOw0A+xgHSf4PrLHAGAbJ7P/JgtbgZNgcw==","signatures":[{"sig":"MEYCIQDUQiCXuRyECbNrKUpgE2fkU48ok05aZ4phOmf4FRSGHQIhAMIy//CW4hbJbO/zq6ojJfkhkx8K7gYQzks8g33d99vZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31972182},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8af8f3c4d1e5cc6654916de9f42e9ba370513157","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231022_1697958881010_0.3531817694061856","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231023":{"name":"typescript","version":"5.3.0-dev.20231023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231023","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3a7ccbef270cbe4ee8b535198bfa2cd50847085c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231023.tgz","fileCount":110,"integrity":"sha512-epSBdrSFF5apIzARZXsSC0BlNVGy7UO7FL1UJIKNDUIZuzlHVDFoAx1wAmV+dNn9AyIUY8LSion0D6QoIx5Dzw==","signatures":[{"sig":"MEUCIQCRGVg8P3Vjv+vxkEE3QOjfe1mgRApH60qzCdnmRlosFAIgfcDZKLVkCmQXkx1vvk4smYa/9o/XiR/e41718hfaDIg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31972182},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8af8f3c4d1e5cc6654916de9f42e9ba370513157","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231023_1698045322660_0.21700240393904346","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231024":{"name":"typescript","version":"5.3.0-dev.20231024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231024","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bce855027e69fd004e5e083c54875ca90dc064d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231024.tgz","fileCount":110,"integrity":"sha512-g+l6xRJNUswhIYSkjTqICwdZofhieh3P7wLP+Zp1tPgF/EBDKDtG+JvMd/WchTd0GY00Tg3u41dbaySqDA9thw==","signatures":[{"sig":"MEUCIFWhg8DK+jD7yd1nkku/LT6x0se/xM9gFgNE3NqA33xSAiEAhjv3sckM7CuYz6RvEqeH25zUvSZmVj+IN/HgxAiZtB4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31996260},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7f482f9e47110ba40eaafe6b097c6780192a8e0b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231024_1698131656257_0.6797314710743125","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231025":{"name":"typescript","version":"5.3.0-dev.20231025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231025","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fd3712fe4a396d6744fd0ac5043f6bf9e1b1b039","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231025.tgz","fileCount":110,"integrity":"sha512-DW0GNkWzKHnI9lcYCVIw5SO5nzlaZ9iHAdcN7zCxt/OJsKg7s33xRtEa5nmPTIC5qvKzLLZboWWBJ+KRD9cKFw==","signatures":[{"sig":"MEUCIQCb6ZyNPWLk7357oir3eYgWVH7CWYP+b/RLh4VEcVcYdQIgSjVLWgr7YXFBSEI3fKxYhcpnRX3IZpdLATRVkPTJUmo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32555833},"main":"./lib/typescript.js","type":"commonjs","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"781cc19b3242e44e750b6bcfef62267cf3ddecca","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231025_1698218173718_0.3650189830971884","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231026":{"name":"typescript","version":"5.3.0-dev.20231026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231026","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ce743dbfd1c2ef141974629c30d35791d323af0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231026.tgz","fileCount":110,"integrity":"sha512-TPCRnvIO1nKy3PLJwVyXwZJAQ3silk51ktcvvk1NzYoPtS9p3xX7LNodMA6DDDndhbeMkjMlxb/PmPur2Z+zUQ==","signatures":[{"sig":"MEUCIHRyr7v//PU3NufVbX9Pugj7sTIqMA+68Ee81JSohxKFAiEA7JsExKo92dFB++9CcImEzyYyqeU/K9LQF9SSKQI4SZ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32565415},"main":"./lib/typescript.js","type":"commonjs","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"aa9b6953441b53f8b14072c047f0519b611150c4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231026_1698304637423_0.4061511241904292","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231027":{"name":"typescript","version":"5.3.0-dev.20231027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231027","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2120b611f2cbb1983d230b85825d54af2b22290f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231027.tgz","fileCount":110,"integrity":"sha512-YFAOvfXqPu/aZg27Xc6/Ftvbm5YmjgGEsVocBYbh3iZWRoYTcN3kF29ZZIdgRhoqSIN89+W29p4bBChsfVor2g==","signatures":[{"sig":"MEQCIFcTDPoNLsRy5q8NiCsOtTfnjOngdvkpeNdvOeFn/0AIAiBrvkeEyvx4EhTcNW1NfLWunTjZBN3MKbo2EUsIuOOkAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32572929},"main":"./lib/typescript.js","type":"commonjs","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"85c2577285154657f99f32db6231cb3f9815fe51","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231027_1698390881847_0.2589305185486801","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231028":{"name":"typescript","version":"5.3.0-dev.20231028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231028","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4748ea4b41add07ca705d6105c214970c1bdb549","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231028.tgz","fileCount":110,"integrity":"sha512-zRGbgR24bwAC/7r5GhbUE2uBPa/PT+LxH4y5A7vVbjKXEfZbkvh/nPwjw1hi6CY1sGOhN3eU21APeNuwvhZfEQ==","signatures":[{"sig":"MEYCIQDZwRIJKlXg1yuQ9b77RfyYyQz6UiwPVVc7jhD6haCDggIhAPvLapW+tsR8EHpp4LRFW5rj6w9iSkDBDogWtX8Xa6GG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32020000},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3e3f0cb03340d56366f3b16bfe345e57cb9e79ce","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.41.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231028_1698477440146_0.7643641622145492","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231029":{"name":"typescript","version":"5.3.0-dev.20231029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231029","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fed76a75956f9a6f8781f38546960d95219547ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231029.tgz","fileCount":110,"integrity":"sha512-LKzbVRvhVhrfazgcr4V3dl/GuD/MasY4kDKn0lpB0vf1O1/iP5ERyerlEsvPYyeZG3f4GX3edFNpSsvu1shHSw==","signatures":[{"sig":"MEUCIA+zogiGyAgboXDfZiODvUzGh/QmGbLnnb8yfH/D1+W0AiEA3A+q1idCoUCWs0pgemQlY1bGWbxOWrmmCipVXqbJVnc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32020000},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f0374ce2a9c465e27a15b7fa4a347e2bd9079450","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231029_1698563700970_0.6451839558594668","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231030":{"name":"typescript","version":"5.3.0-dev.20231030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231030","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"679edb7a1fc0411bb741b8b02fe03e48204e1749","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231030.tgz","fileCount":110,"integrity":"sha512-azWrF0lAiu8cBHNr6yq3RDkU/DtQScvT48ea3Ngq6oXJ/GPO0n96wCFSRQA5UbZlVVf3fAAqsUfvOdohRbrPVg==","signatures":[{"sig":"MEUCIQDQin//YcIs242NEfGw4bSLeSuu7bC7AClOed9/0cIr9wIgGisWXV58QnbKcLQX6oCP+RfItqmGwuL0Af194K4gfEM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32020000},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f0374ce2a9c465e27a15b7fa4a347e2bd9079450","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231030_1698650038334_0.2198803803721474","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231031":{"name":"typescript","version":"5.3.0-dev.20231031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231031","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2c4d1c38938d74fae00ff8f3eb0cb2d56addd8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231031.tgz","fileCount":110,"integrity":"sha512-+w6szmOFr7GSWj/eNFgHdYqubMux9B5ao5LFoGdn712gbDYMpLwqLNkPLpJHD9chl/2wc/W96iSfALkZs7sVXQ==","signatures":[{"sig":"MEQCIAVzBioByaVo1qSPh5m6UmeZpvJ47qXVdxUzrobGjo0fAiAMf5Hj9T9VUF4DSVM9q7xnap301JpQxvM9GZ1hbGnA2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32022270},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"42d0e5100fcec4a50ca581a9198468b953aee587","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231031_1698736633878_0.38144282808869256","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231101":{"name":"typescript","version":"5.3.0-dev.20231101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"911f63c9428f517584bae41fd9ccae31b9a2d371","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231101.tgz","fileCount":110,"integrity":"sha512-yt5zz7L+TBfzeJhMA/tAEO1YU8J2DWsFN3LbeMslNPXL3S0lR3yvePdl6fXCk7QFjnfaRtXH0noNdWg2imHWXg==","signatures":[{"sig":"MEQCIGMWFQJCFg4AM9v78SAfEtEPpu/J5eVIwzj7BemMq9v6AiAUDh7vWFAbVwuH6IZlLnyU+qTnCNd2entI+W7vWTCvWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32021372},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"73bc0eba5fd35c3a31cc9a4e6d28d3e89564ce6f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231101_1698823042003_0.9501840290603503","host":"s3://npm-registry-packages"}},"5.3.0-dev.20231102":{"name":"typescript","version":"5.3.0-dev.20231102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.0-dev.20231102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2baa0540e57ce8a4fbf283b17c194b6ea2ffc412","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.0-dev.20231102.tgz","fileCount":110,"integrity":"sha512-M1maLdHyAvE+y4w27IBplkqekR5Lzf2B7XualvF3lXJUC2165swvSmpThFdfHcXxP/+/SYmLI9z2CVvN7pEK+g==","signatures":[{"sig":"MEQCIARPZ/bj6tOwYHeehx2gVlyJt1KeOAFDii5kDcyKZIQjAiA1I3G3/KJ+37tPnIKnVJetzO5y0zDZMtaot+OJQR/jFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32021372},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"73bc0eba5fd35c3a31cc9a4e6d28d3e89564ce6f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.0-dev.20231102_1698909526654_0.595688556555763","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231103":{"name":"typescript","version":"5.4.0-dev.20231103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5135fb3747521823248e636cabc328b4b157c503","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231103.tgz","fileCount":110,"integrity":"sha512-XOrpoRg1DWN7ei3AFomL+UrpRBseaODTiWWRfZd6AVeT7ODLjQZ+CDUxK6Aj2XPvEthIOaqijvwIxZe6vlNwlQ==","signatures":[{"sig":"MEUCIQDfMjfOPWZInwg5tYlfAh92WfMTwy81baZkkqg0qYhMYgIgIZQ0X9XFjTxLISCjfT3QXLpKpB8lBYWcjOsGmshygiE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32033364},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e6d0f722e005a4ed8c2775f524c082277e3c6ef1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231103_1698995615176_0.9812399170940995","host":"s3://npm-registry-packages"}},"5.3.1-rc":{"name":"typescript","version":"5.3.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c307d4b69ea0c1c2cd17d4dd7700d30f7197f829","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.1-rc.tgz","fileCount":110,"integrity":"sha512-NVq/AufFc6KVjmVPcuVwdCkhTQlTcMEyRYJPvaGhPvj+X80MYUF+90qf0//uvINPb2ULg9m91/gbdIOhN2cZqA==","signatures":[{"sig":"MEQCIErcGst9GmnrSYwey9nBeS8zqCSZBrcL0XtpK2PbZeZbAiB0WNA/shsV2Cxv+lkoM3OkmZoCuQ1j0henQyq2/XzFPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32021196},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-NVq/AufFc6KVjmVPcuVwdCkhTQlTcMEyRYJPvaGhPvj+X80MYUF+90qf0//uvINPb2ULg9m91/gbdIOhN2cZqA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.1-rc_1699033073181_0.16647444479391105","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231104":{"name":"typescript","version":"5.4.0-dev.20231104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231104","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8039d52c0dfda5e2e3ed975c30b3f1fce8f96c55","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231104.tgz","fileCount":111,"integrity":"sha512-D+2hisYDB+vxSVJaZQYh+/jhBtJMsMbCPFshfsGbyp/OeHtkMyYtJ7+/EeclHcuUVui6IjRfKZ0lhvTEck278w==","signatures":[{"sig":"MEUCIQDKtiiQeweq80AyJIqxbAV3sLVotZlztg+yoe9QoIGA8QIgUbeBaXnLB6T7DR3evSayTb8bxUcPNzNXHgwx/JP4h28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32058493},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d2fdf851cc630d812b7b336a43cc1f363ba25083","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231104_1699082117323_0.9594561344345844","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231105":{"name":"typescript","version":"5.4.0-dev.20231105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231105","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a416d439f7f8d488f141a311759ba8e92915b54f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231105.tgz","fileCount":111,"integrity":"sha512-TN7QRSjarOvoxvHuZdVmofCnXJYklxsiZ1tyJKiKkghPWXwrkQ68R3NN3vhtS8B+jIeZoETKssmfbmhCl8rwxQ==","signatures":[{"sig":"MEUCIQCZ7QG9lMQzhufXz7OAySb8BpdsrFaGb231/q1lDNp+qAIgLfwxMmJRg7JS8hfv4LCdhVZ0wSHYjj+0Yo4W3Y844zA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32058493},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b1ab082c80e4fddc3cfd6d28e66eceb52066f2be","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231105_1699168615115_0.2345451519343842","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231106":{"name":"typescript","version":"5.4.0-dev.20231106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231106","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2f18d69554ee22325fce7309f45c1e6b37f68ea1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231106.tgz","fileCount":111,"integrity":"sha512-Uxjjt7meOHOSXpQJkiObTPUXfQKqSkdcMQOV+ZAjo3U1w/D/1Qah5Pdg0x/jt/fIA6laCNWLogS+QiaT5HOohw==","signatures":[{"sig":"MEYCIQC6OTE9Oej27iED9/SA0c4i4s+O+6JCGMPYfQyoxtME2gIhAJpsm2OrhZ29QJA54jV9p7WNfRRxZuLvW0+bUb9vDuoE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32058493},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b1ab082c80e4fddc3cfd6d28e66eceb52066f2be","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231106_1699255078824_0.30052836371519764","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231107":{"name":"typescript","version":"5.4.0-dev.20231107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231107","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0adf8a770e56a85ed42d7d493cb55c2253042a34","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231107.tgz","fileCount":111,"integrity":"sha512-4bQlfsyFjzZMo1bSLEkFJEcvuQ64pgE0S/BpdWu16lYsQOfJZtntZIyWdED3h+e96IMtVgrC6sxzfPZhj4J/dw==","signatures":[{"sig":"MEQCIFE0ZiH69aEnl2aoiBVDe42sSXYovTEyO0+X4HhKZDqeAiAsY3tpTLQaFLq387DWzmudqoUlTSBr5rLAPoB2qz7e4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32062194},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"27556f5d3bc4cd3797efe31d32f45775e2a1ca75","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231107_1699341233988_0.7147566910151839","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231108":{"name":"typescript","version":"5.4.0-dev.20231108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d6c05b1ad5a447d4135fa7e87a9fd3b0645774b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231108.tgz","fileCount":111,"integrity":"sha512-/DNtrqpbir9XaRxE6qwjhB94pCZzw/9R/PhB8309frJBEBGZ5qSDqstl7YYbhWbqs+zWpCCbwBjWDGlz8wn8GA==","signatures":[{"sig":"MEQCIBbc8Q+ECoZGFy2M/JYQ7sQ3/XOuShR2EQbfuvhWypJ9AiAmFArxMpTvjuBcIqi6fqV3cMwINOthwRptyPs3HnoUfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32065881},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"50f48840a32e3b8e2498967a09e7119203f5131b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231108_1699427385777_0.29199884106760376","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231109":{"name":"typescript","version":"5.4.0-dev.20231109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231109","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5247b10133676132577d462ec0306dec353c2a90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231109.tgz","fileCount":111,"integrity":"sha512-wX5CSyZbJ0xsgAe0Fyefs8eqEe7o7mp7Nv5EHydBYFpJI/FWZFc4rSF2mGNNZ/1D7JMQgwjCAkZd/2TTF3m/Uw==","signatures":[{"sig":"MEUCIBlVmpoHTHA5l3yzeUttwb/sKBkzzDr6PqLSB7Z+kIAbAiEAtisWOLQgQsfKsGorJyBRgLAUOHjo/wfvLRlA9Q7UH48=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32066609},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8e1fb5789abcd93592d8e437df8f7261295613fc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231109_1699513784919_0.04505292553035933","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231110":{"name":"typescript","version":"5.4.0-dev.20231110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231110","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9041b4872901df411ad84d36118b44d46152b8ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231110.tgz","fileCount":111,"integrity":"sha512-qjv4JVUYWbRy3e9lERotuHaowzq4ozFnip00m+8m4cPjCSZfPIf4svC9V20hrQMZSSTldDvf7O66CmAiZo1HNA==","signatures":[{"sig":"MEUCIQDP9f/OR1Hs5kH3LEjzCm8zp1FJkBzt+LUZgHHpSpA46gIgeX8J3vdKLXJRtV8MBdPAUagG6rpDhKddStVhlOPU/SU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32068934},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"80ab111685e3e0c10d8d13cdd18d8dffa8328895","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231110_1699600188022_0.20107352080585428","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231111":{"name":"typescript","version":"5.4.0-dev.20231111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3317689150db75a46330fa202533f75f5db51200","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231111.tgz","fileCount":111,"integrity":"sha512-/ebfj4mLRvOEfuewrM6DrZOxBXosLKqFVUU6NPZuOiy0XtMDt0KRfaLhLLZXEoyNNyQd9P6bmZTnNYeTs9hlyA==","signatures":[{"sig":"MEUCIHcCUQueRB6RoMw5IXe0vCT+K8mYN49umYv7+YzFf9V2AiEAnWrhbwVEXP7vGp3NJPi8Lmj1kTmSANyv8fvUQkn8/lg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32069874},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ca7a3af5e607a6c8589f5f600d6c4960a8bc07d4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231111_1699686581372_0.27424269798758716","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231112":{"name":"typescript","version":"5.4.0-dev.20231112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"be39b23eec8f22e2057ccc8459b94c21be8fb789","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231112.tgz","fileCount":111,"integrity":"sha512-K7RH4eFyxJG7LkKWU0m7WdQrNRNz8yVkt2zW2tT2zfiUzIN2jbh2JLuztSqCsfqMNU5KduO7NvKaKK4QIvGY/Q==","signatures":[{"sig":"MEYCIQDv99OkMxTwIHet7ESgZFElMokwStL66dfGlP1riY/ePAIhAPF6ViyuPYe3rMOAIhAoSj1JdPb0nCbWYl6le5e1pNQU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32069874},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ca7a3af5e607a6c8589f5f600d6c4960a8bc07d4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231112_1699773489866_0.64254723563967","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231113":{"name":"typescript","version":"5.4.0-dev.20231113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3fdd680b75f10464b9dae4a53974201575d1e506","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231113.tgz","fileCount":111,"integrity":"sha512-5K165L/tImARYZDKwwT2ER9qKt0n56E8jxldXfAVpq8qNqX5o2SvpoPrzCi+eddkHJHl1gPf26xiE+7R6//1Gg==","signatures":[{"sig":"MEUCIQDp/hduy/PEytBu9GYeZaAeHLmssSgWmCDCcds7p3gdoAIgDcn3gWNyZee66N1+kOa0At2h/F8UbeaxR36XI0mwRFk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32069874},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6e9ac5b617d4e69daded6440da8d393990feea96","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231113_1699859648368_0.45803659378303907","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231114":{"name":"typescript","version":"5.4.0-dev.20231114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8371de6d968a6da7ce3156997fee9b064d67cdfb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231114.tgz","fileCount":111,"integrity":"sha512-z7rH8Vy4KWJyzNUaFt1HMzwYNRUmy2HMN98eufjvqbhmS3WPoQF89/UgonRmYf1vAP/69z0PytuV9hBMHNkaDg==","signatures":[{"sig":"MEUCIQDSvvp/SEp3huMywCGkdrn7If3LBI1UVknPnSO5ecZlCAIgJrfuO2EMGWzi17arDeo/Bpxb9irIqimHuWm9AK9wnJQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32071378},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b970fa4ae510c0e108670e497df967a05645a6a7","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231114_1699945793817_0.11817589704452502","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231115":{"name":"typescript","version":"5.4.0-dev.20231115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0ab7c5cfc6380c6507ba44096bf4dfd1c66930a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231115.tgz","fileCount":111,"integrity":"sha512-a+TtR81g52/m9nDePLWP1sa8gXhU+6Zgad4vMfUrMWX+dHdDmrfHx/vqEbLQotyUSNGRYcZWu97o8XxSRci/aQ==","signatures":[{"sig":"MEQCIFfDJldTjuLsUw/VGzAX2v93ocBUajYolTM+2aHOmL4kAiAvwQtFZNs12LbWazBsvCXDgTN+UYNNvK9lMJ0baHz0ag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32081720},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e170bc59d4ba0d335ce86f66296bec71c5018317","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231115_1700032184611_0.015702356149513097","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231116":{"name":"typescript","version":"5.4.0-dev.20231116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231116","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"540e12c5cd5bea457adf2c19edb0fa396fb757c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231116.tgz","fileCount":111,"integrity":"sha512-arT/MwHnosyqo1MQ2xN9VzwvWo1jxrhUpa1iQX1yZACfBRJb1dQ1D2MU/Ijotjr6eXw8BZ3RFdj9X/9O56iOgw==","signatures":[{"sig":"MEUCIGBLK/FTRbus93fd6ccZJFFXX+l/KTinwTvBt0SJHMtQAiEAlKJyE0jw96PVwNLAKY0iYVBBSYPgoVEOV/6M42RjhRo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32087490},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"32b618c2d8f42948e7d6fa2e9b264079e30b5349","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231116_1700118601996_0.45951556771359536","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231117":{"name":"typescript","version":"5.4.0-dev.20231117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231117","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a7e6f0b38755678da22a7ccccdc3fe98102d2824","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231117.tgz","fileCount":111,"integrity":"sha512-qJs5vq279esPS+UX+NlDaSB8aDc9NiC1VLo6cHGrEVMUV8e9WTMic5T92KgDsExf239vViwmKNvtSMGf90aDOA==","signatures":[{"sig":"MEUCIBl6U2DQvRoqY5ajytrxPPJv6mGU6mcpDomgnIER//58AiEAjzn13AK2tqASLpAEzJKCyEMGmp2p6s3ejN3ydpSDpT8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32088155},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"196dcf8a95de386886aea5aafc34c7b4d07aeecb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231117_1700204985843_0.12836245493677745","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231118":{"name":"typescript","version":"5.4.0-dev.20231118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231118","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f0316f78fd737358a2ce0414419bb7c35ad2853b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231118.tgz","fileCount":111,"integrity":"sha512-ZrQd4CI6YXINmXfnDSNG26zo+qAAh3UXig2GREmT9wOqmxceVHE7wbeP4PU3IBIpea8P22WEcB/cP33yPsxjsA==","signatures":[{"sig":"MEUCIDVCdefwNicR6+u025OIO3WXWsdrISkUjnPEpp1I1qFvAiEA0hp8akG34lTVh3gf3Zy4RD9ur6t+5VlNbPn1kSzZiRE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32090189},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"bb13ec01f28a3a112bf69218ee7c687b52ea87d3","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231118_1700291381419_0.5891503331967394","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231119":{"name":"typescript","version":"5.4.0-dev.20231119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"951881ccf86088e3c6726f16b1f85a54370a9f5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231119.tgz","fileCount":111,"integrity":"sha512-a8JGI0ifhQ0VM9dJhSWWZnSKQu6Bgm16G32BHDOIhEuLcn0uWcfA2ZHeazTiqYEAzja+zsN+Y4f8yliGW0K3+A==","signatures":[{"sig":"MEQCIEvWKylEbEBs+2YR63t/z6kB1hsEEe7OY8Zin5AM9B44AiB6kd9RrMNGavIbyEwb3fFUoMvq1zdgPmSiguRat4Pk8g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32090189},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b4aefd2758b2d74b1d6747ffa4369224537a6212","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231119_1700377791565_0.012865397047375104","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231120":{"name":"typescript","version":"5.4.0-dev.20231120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b6c59314c431a92bd21cfc17616be6c76a481f82","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231120.tgz","fileCount":111,"integrity":"sha512-MG4Zg5HXb8bnvGdZrMeLBekqbCjHjaMPewXh3wVrNgTF+toQ4BrdhXnYiqMU0pLLxcsxRSMPB5MzB7YHgr67Cg==","signatures":[{"sig":"MEYCIQDbSnnSQzCqSM4ElKmWnecI1xw3/qWKDxkZ6l+RL5lHogIhANPDIkDb6XI0NlTNJKgsCfU7J4Gihmf1UMOkVXqOKhkh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32088941},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c10edfbc8dd840c7e5d25b0e2ede2697ef4ac4b6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231120_1700464195961_0.022887127230798443","host":"s3://npm-registry-packages"}},"5.3.2":{"name":"typescript","version":"5.3.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00d1c7c1c46928c5845c1ee8d0cc2791031d4c43","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.2.tgz","fileCount":110,"integrity":"sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==","signatures":[{"sig":"MEUCIQDNTDaf8tH6UNz4Mh2UkfTdlFwzV9Pc5TYUCsf0Wr9QWwIgLBzPf2QahzxjjPd/zJyVd6imfngl34QtVVjMmA+YT4s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32019541},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.2_1700501759611_0.4794737503509674","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231121":{"name":"typescript","version":"5.4.0-dev.20231121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"333b9c9c36297140770cb0a65c8ec8a3ba66bf73","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231121.tgz","fileCount":111,"integrity":"sha512-/JUU1WLbuTBKfivcYHR+gvBAjMdhj1r2+flrnh8z7wdy2MDQgxRzSlfktNsbaqoYsOVolVDAPAoHpxVIvJlEgA==","signatures":[{"sig":"MEUCIBZfFmabwNsSRl2FoGJZYqxhFiIsX47QX+QEXY0JHoGCAiEAxko0vlnimzkGcz5QbVAl6FWAft9BZ39B49GwZHQBjfs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32106879},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c266e47794fbd187425989448670238576523d4e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231121_1700550601256_0.5806541130459821","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231122":{"name":"typescript","version":"5.4.0-dev.20231122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f094c70daad17145e5480c5917c7ee698c95770c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231122.tgz","fileCount":111,"integrity":"sha512-jEdb2OJDseS3Vi8dg4ARi3ZDqwopyxJP9qsIFawXzTrVSfcIj4WGbBvDx4MIJuwFqGhkJ4G2cJESi3+eN0Rydw==","signatures":[{"sig":"MEYCIQD4FKmXNfR+Ou1eFCewh7xlWuuwEtd4ulf3g7myOoYqywIhALAhwksCfKorgThV7Jm1BgPabmFhXHfu+7TXml8U6Tlh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32106962},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b9ae79192cc04c4231c76157fa35d566fad0026e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231122_1700636991251_0.4468429890781007","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231123":{"name":"typescript","version":"5.4.0-dev.20231123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d11e62ed47d03c2abd289c3da140a0292860e099","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231123.tgz","fileCount":111,"integrity":"sha512-1GVUhgKMReyH9AycWDCzAWFgL/0lhNajKlU37LYZjAzVsIDks8eW8kv9NEkXMk5HrN1Nb+7cO+QqZDC20u3lvQ==","signatures":[{"sig":"MEQCIBmAEzOVYsp/54yHfsqz4xTnC28YoE1JwiJeuiXHmUm1AiBQ3Lr1uuF+5q1Sdhg872OqhE9xsTmR8Q3yV5tW8oZp6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32107139},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d4fbc9b57d9aa7d02faac9b1e9bb7b37c687f6e9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231123_1700723385653_0.02096046740230051","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231124":{"name":"typescript","version":"5.4.0-dev.20231124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231124","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"462b98de9a72bac6a7dca35aa573fb131a58f6eb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231124.tgz","fileCount":111,"integrity":"sha512-XGgnXNUfccFaEWyWZ0i/JuPNbHzutjS/vKgpz5TpEjmwFYwyQMSr06Nicv0HJBw/8WQ7m8EoKbyyXN8wdWmoVg==","signatures":[{"sig":"MEQCIGlS3SPcUx0ilBFmTBmMaTwlnarTHELHJ36981THnI0cAiBPloeAeBO4xaBF77COFt4MU//VLzeuWqWnU01NFdxbxw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32107139},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d4fbc9b57d9aa7d02faac9b1e9bb7b37c687f6e9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231124_1700809777794_0.5148454661391237","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231125":{"name":"typescript","version":"5.4.0-dev.20231125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1aa53728f6202bb297e50bc2688f6640fb19c0a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231125.tgz","fileCount":111,"integrity":"sha512-2ZIQF3cO+9zrPkCvxnE01/aGEjc+mhr1p5YMc8uwsZob01BVeOs7rTvQSj4Hfh5z+Z2iUUT/ZA4538IInrSzmw==","signatures":[{"sig":"MEYCIQDIW4HKOM375VQPZPxAI9Nq7ZlDGFy0ZBEPzUhnhveMnwIhAJJswbMLcwNyxU5wXgCmYqG9QOaOsbpr2ZSLEGS5v9eM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32107139},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d4fbc9b57d9aa7d02faac9b1e9bb7b37c687f6e9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231125_1700896190034_0.7184315294119954","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231126":{"name":"typescript","version":"5.4.0-dev.20231126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"23d49e837ae43c9db3be3739832aa393633939a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231126.tgz","fileCount":111,"integrity":"sha512-H10NDH9sKzdLCICwIO+hhk+La5Kfs4/+Qit1tWjd7Xw7h/42y0Ulqhc6Wm+n8XO5PEkgZeOEY8EUBd/evOhLig==","signatures":[{"sig":"MEUCIQCWarxAnsSHT5yTqcgsFtCwUL3VMoREpWhQFJOFZLJ04AIgTx42fr//v2sJrghMpONTFfKx70MMO1PSRSP034MGyVY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32107139},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d4fbc9b57d9aa7d02faac9b1e9bb7b37c687f6e9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231126_1700982584648_0.8195339410145106","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231127":{"name":"typescript","version":"5.4.0-dev.20231127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231127","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"944c1e3be13da87c83ccde78d691823c8c30241d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231127.tgz","fileCount":111,"integrity":"sha512-uMH221WFT99TGfR5vMcI1AaoMc9CnpzMFps1zxzLkdweS+IKrF6SlMK0y5fYztaf0BdNOHcdpyyET9cEoJy8+w==","signatures":[{"sig":"MEUCIQCuMtUrUx1y6QjvASnnMPh2JiI0yDpwsHEHuEtYAbj8TwIgTyWlnTnUA+f7om5d+gqGpIvHdLIcE4LWARcgdKJKLMk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32107139},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d4fbc9b57d9aa7d02faac9b1e9bb7b37c687f6e9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231127_1701068995514_0.06550340233516572","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231128":{"name":"typescript","version":"5.4.0-dev.20231128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231128","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75f9f65ef22730d348385cf24f7787543ec763f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231128.tgz","fileCount":111,"integrity":"sha512-9qkF438icXJz8XXZ38mDJfUTTAvVZptHGBEkwqB2QaO8p6cQuiYvghMHk5o2bZFHS5VcrAwYtpEuekd1iSTmBQ==","signatures":[{"sig":"MEYCIQCgKeZ4e8VObp/yT2w/8zd8HiNfpm5UfyfZ25PYVSflnQIhAJHilWMMRD76VwE11bWdGaSMg4l8nYt14aV1ZZn30Eku","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32113629},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b6121e400cf8636760aa8a7da6b7fac14e2e70c7","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231128_1701155389225_0.3454935228380338","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231129":{"name":"typescript","version":"5.4.0-dev.20231129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231129","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f49f569996539f844461672499fa1cebb2ee0415","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231129.tgz","fileCount":111,"integrity":"sha512-ff8qrYy50SbFp5yGxTKA4xnG/lyUm73GPKWNMYvigDEcwHbOq0ArkvGaHn4EIk6ina1ggsrLVIbBtyhhy2szVA==","signatures":[{"sig":"MEUCIA3BZWhDikqEffJpILwVA/iWeQl1h2XHgq/ensg52VXpAiEA1Nct1zguPzbRwOJEWeWiOXcfYF7FDH7Hs5c09LBIpCI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32118876},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2869579b2cad770ae20617e4148741c2ce35ffdc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231129_1701241782134_0.1904768607304943","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231130":{"name":"typescript","version":"5.4.0-dev.20231130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b1284f94f399aa8884096c943b5d04cdf0734a1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231130.tgz","fileCount":112,"integrity":"sha512-YDc4V66/MiOKq3LZh7onu6+VNKqQZrvzQEKAbWCjSmlVeK8TYEPYlbTmYFJvKbqDHwrxGBayl3egTG/IzyxZMQ==","signatures":[{"sig":"MEUCIAnWBgJsU9CSGwV46B6y2CjoA4wRi/czwYVNwDDdlGbiAiEAxl4r5jNFdDZ7NporZBTQDTJH1bfFA+OHAA4MMGE+3YA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32126635},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7216ee0bb821b4b565d54c52dcbf788a3fdf7062","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231130_1701328182859_0.606663429276556","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231201":{"name":"typescript","version":"5.4.0-dev.20231201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8566bfe283a7715be1e1e17f87a78060fea55e24","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231201.tgz","fileCount":112,"integrity":"sha512-v1fwNXyXtvYekwCVTJ/8ZmOdeAiL+AOeECmka/AWWGOvm6TRaWgW9DKrBNmKcKrurYEvYo/X+l6iM902esGS1Q==","signatures":[{"sig":"MEUCIEYI1BiG65vG7WDWit1NLpZJV9hjtwFSCtPBwDN1+sd5AiEAhJhWYfL0RFPk2QQmhlmBJx1nUyq1PKXI1PlGp0B1kzo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32142194},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5bc66177388247d3e270653f94d82a8dabd56d69","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231201_1701414619563_0.9237303110317878","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231202":{"name":"typescript","version":"5.4.0-dev.20231202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3b16b3eb3ef7b8146d1d49f886aa23b6fcfaf6f3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231202.tgz","fileCount":112,"integrity":"sha512-w3ix0KsujvG01+R8cjjU3ePsea5xM9+tLtVlYSNAh3UXgz7otOQ90jwUEq6xvGfu43aQn3cg2UoKFOXUpXvsQA==","signatures":[{"sig":"MEYCIQDyRgPq3r12++TWBVvSRsCvSYrEnJNf7KtSb+5DWSE9oQIhAIOK9caY9ZBeuov8tfyjewufRn6uoNnfZOCrSus2uepA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32143696},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"670815f768afb613ff2651b16dc4258aeb33a036","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231202_1701500980327_0.2931138037571519","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231203":{"name":"typescript","version":"5.4.0-dev.20231203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"929073ecd235bddb3b351ed6f18cf25d2ebb3069","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231203.tgz","fileCount":112,"integrity":"sha512-6Y/R8j4ZKcCbddjtRncKgCKz5RbqfQe04TIfYnUbPq2CKhJVGP6Bvmkm2GVI9lpTZR64c3wvY28k+exT/jBVdQ==","signatures":[{"sig":"MEUCIG8J6IZZ243CJW2yjNYgLFG3YzmbIFgpn1FHNLmEbOzFAiEAkDGP/3VJ0JlXpTAJCAhnsZ6YkYNIKNMo2984ifuJllU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32143696},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"670815f768afb613ff2651b16dc4258aeb33a036","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231203_1701587384571_0.149265159027697","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231204":{"name":"typescript","version":"5.4.0-dev.20231204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"49a2812260cb2d844039ad533ef0fb3260c83f8b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231204.tgz","fileCount":112,"integrity":"sha512-dU/o7cZDKWQcVda27Ht/d38BKIdswGgGI6S//+nmeFhU0LZ7gA5ldCORN0dtOFEwFR98d2TlonmMeNCcyVkqnQ==","signatures":[{"sig":"MEYCIQCuCa2NbxRddkTEphmp/SEPrPC4cNA918Sfj30VKDHTowIhANnGaCyQ2X6Ay5yDOxg1YhoA0DCsoYlBV2PuU9yBr5DZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32143696},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ef6ac03df4db7a61034908ffe08ba0ff5a1601ba","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231204_1701673789323_0.7355045832406513","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231205":{"name":"typescript","version":"5.4.0-dev.20231205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a985528f2b1c50aa3c3246d0c543177612d37d10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231205.tgz","fileCount":112,"integrity":"sha512-jeYaYMtVCDclulasTrZlhlF9k/Xu88FCpff6+BP3YVNbWefdRy/3nmmrAFVC/TqGSrLhhjSRHBn6bw49b9Jxdw==","signatures":[{"sig":"MEQCIGHFCtVJPObZjK6liME5edXq9Ot4/UiaCfRywAOeNqaOAiAJlFzeP3yQ9roVj9yJHv3AZJLTYS1nQeAqEUYc4zb+PA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32146322},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6c0687e493e23bfd054bf9ae1fc37a7cb75229ad","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231205_1701760191111_0.7335184610482315","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231206":{"name":"typescript","version":"5.4.0-dev.20231206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"222631e1241de9e833ed2dbd8bc0853c3f43250a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231206.tgz","fileCount":112,"integrity":"sha512-bKJ5+3jwj4qTzNg7C97rCVLgyyYuzjYh/Pf0zlpOyyq9vpI3TVLO09d1gQ8jS5M+BSLONojTijei0KHmFoBezw==","signatures":[{"sig":"MEUCIQD+AvoA5EyKUlwHsqZaMjaekYN2cdsAfHTCjZI/Lh/PPAIgCB6ajvktHaif7zlTUhvmx+vOmrnFjImVI94JUd2beJ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32148316},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"1d7c0c977abcb076d6f491ed091834baff6d41f8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231206_1701846575070_0.6124646823093054","host":"s3://npm-registry-packages"}},"5.3.3":{"name":"typescript","version":"5.3.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.3.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b3ce6ba258e72e6305ba66f5c9b452aaee3ffe37","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.3.3.tgz","fileCount":110,"integrity":"sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==","signatures":[{"sig":"MEQCIGEdHvAWFLrGP8pj/vZeJ4i4DNS7hny3Npz8fxuVAlCYAiBMEdEcTbC6GxsdJd0PBeIqrW+hQBAFvc1cLIOSTSnOlA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32019190},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-pXWcraxM0uxAS+tN0AG/BF2TyqmHO014Z070UsJ+pFvYuRSq8KH8DmWpnbXe0pEPDHXZV3FcAbJkijJ5oNEnWw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"9.8.1","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.0.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.3.3_1701889670698_0.08959954917293489","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231207":{"name":"typescript","version":"5.4.0-dev.20231207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a4b22bb6f47251d2000c0a7cebedd6d6be1bf4ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231207.tgz","fileCount":112,"integrity":"sha512-9OsUooJnRMwemgmnZVwLewnl3XzbEj61obef4BbooBr9w9L7i0ILMDYHAwQnYsxx/LLpw1+mvbDl30jO48mReA==","signatures":[{"sig":"MEUCIDCJO6y54HCwycNDu4QwEQKpxPBgDU7c/QLJmThLs21lAiEAyrCgT8WeVDAKFohdCrtiz1Vpfxjmbb3Trr8Q/ztwrjk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32147837},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"20c0f4052681cdbdba3357a50822915b6ef4c3d6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231207_1701932989768_0.4311028354496198","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231208":{"name":"typescript","version":"5.4.0-dev.20231208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21011cf66d560aa5c98c94680f4b9689a05d1446","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231208.tgz","fileCount":112,"integrity":"sha512-arQCsD9Kez3MGAncZci4JS+IfC/tXTKlnCdavEWUtpkfvqy+bWBr/iV76aNI/qrWhsdPyJ20PkkjwP7/p6cvwA==","signatures":[{"sig":"MEYCIQDAKX+NgpDHwE8EZC5igiEq4M+6B9tEcnu/CfKBntgSUgIhALx1Z/cGDDwSnwApiP2/c/3irGF28cMXFjD1Q6ciymEz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32150625},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e3d234cfc8653d14e907ae84f918d5bd18546619","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.18.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"^5.3.2","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231208_1702019379563_0.029000953405249774","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231209":{"name":"typescript","version":"5.4.0-dev.20231209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2a6f6312d9a7fbf7a9c59a889dade73d70ac226a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231209.tgz","fileCount":112,"integrity":"sha512-LQBEFmUX8De80ImtwSgY3Hne/Zvwo8V9kojtg/AyQDXqm1waBgH6LRx4Y58d06RDDZT5HOQBGdAWZl0q1FGifw==","signatures":[{"sig":"MEYCIQC2hM3KE3Gs2TwmMB1KO3DTu0W483ru/0ikouZMfZyTVQIhAM7wKyFfQ4Zb2biSMnPV3AyFi9uVIr0ZynYRmU1D8olJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32176638},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"14da4889691e310d479327072b05544f3c1ec555","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231209_1702105785518_0.8835939593145719","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231210":{"name":"typescript","version":"5.4.0-dev.20231210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cbef79375685bcf57a4f0e9714811940091610b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231210.tgz","fileCount":112,"integrity":"sha512-bvcnD6rhU4q0TAh4FEs0ja7xaSSguJLzzXhqx8xeG+OUQwrXcE2GbXO1gMu0z5FK/zGYxnJlkMFvEMSdzRlH8Q==","signatures":[{"sig":"MEYCIQCpROU/f3mxxf+ByDlejlAZ/MtnWv0iYB3HSao9/fclEwIhAMc4qK2N4m5ZOdSH2TaRF+0z2Ks9+03JQ6WoUn6f7TdW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32176638},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"369e161e4c37c5f166c64973e7f1217c2298d7dd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231210_1702192190035_0.6328784447906177","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231211":{"name":"typescript","version":"5.4.0-dev.20231211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"563b3312c6e518def94a98ce136e2e0fa62a4e56","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231211.tgz","fileCount":112,"integrity":"sha512-QbX1BYW7kMO+l74HzSfmOSGl66t/DmtqnNRcaUTeowtc/SX/v7WCV3jpuaHgAIS0eDKorcRoRizmWrxlvBOeUQ==","signatures":[{"sig":"MEUCIBLbMnVbOuiFvCcD9zpTQEciuI2ytpzsluKRAdSLuXMTAiEAgNkaofs7Fpg9jmqTSg0MVfvnl+8G2E7jb/0zC/I3GE4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32176638},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"769453003cd19b78196193cc68e1b7e0e23b21cb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","start":"node lib/tsc","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231211_1702278587515_0.7356363747519976","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231212":{"name":"typescript","version":"5.4.0-dev.20231212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231212","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"849fe9d4e370ae9c9319512fca45db5a1e499e0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231212.tgz","fileCount":112,"integrity":"sha512-h3fO+IfEsmtTuje/ZBrinHekd9rob7fO0QJFxedSXrd8vy/aJeyqjv4PNZpW2peM/jxNaexpp1wC6eTjfrtEwg==","signatures":[{"sig":"MEYCIQCMungLQNbJVhs0wyKaMj4HOPWLt1m2R3gTWlToagHuGQIhAK/zag2MnQ1P1s3ZGcIRJ39O+dWpw5u0vuNZrB4SB+t1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32179685},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"efc9c065a2caa52c5bebd08d730eed508075a78a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231212_1702364983711_0.10841160027591723","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231213":{"name":"typescript","version":"5.4.0-dev.20231213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231213","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f224d92c62cfc1d184d7d3a45003a915fcf0173","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231213.tgz","fileCount":112,"integrity":"sha512-Djk7lYdNtrxX60s6h4kvV27+K6qjqJIWvhQEIGqI++nN0Abq4imuBPTd27DzhOQnGjUH3lD9lYAfiHvb+jATxQ==","signatures":[{"sig":"MEQCIEg5sTHOeh76PacSahNlGkQB5Ftxx6FUfKPQi7yvXoXZAiBbjC0k7qd0fufI97n3Ngay4zKd+JDCSm3luuJeMgv4Lw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32179685},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"efc9c065a2caa52c5bebd08d730eed508075a78a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231213_1702451389755_0.7023812062195836","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231214":{"name":"typescript","version":"5.4.0-dev.20231214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231214","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8ff49a37c0dc122a04730a84ff540b7ef8ce343","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231214.tgz","fileCount":112,"integrity":"sha512-kza7DF4odrht7PR6eNM+/DM9KUJJtla1nmAzF/jnEoCZje3qnui6t3CC0sSbqKZMDi7gN8C0vZGFe3/yuwMo9Q==","signatures":[{"sig":"MEUCIBpmjmtUSs5FJsYxqM2tbuQC6AkG6zzYHqti5CN7mQm0AiEA3CMdnY8bXiXIoskZ801NGENWtlRIEAG3y/uMf+gG9os=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32206860},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2c7162143bbbf567ccecc64105010699fa7a2128","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231214_1702537801689_0.19578362426330354","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231215":{"name":"typescript","version":"5.4.0-dev.20231215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"72a6471f80522cf48c6cad094b678a16447de5a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231215.tgz","fileCount":112,"integrity":"sha512-kY+7B63ic8x7DXxCFIunxjLI3KRDa8siiKi5Qw0aFDTm2ahjNG59eRIWBH1S69bcaqs09qWtq03ddJfcm1t5Nw==","signatures":[{"sig":"MEUCIEDCfT7pAKYUvIj5iYYimtYjS1W3cTBtiqSKsru21tPxAiEAoU4gMf1mcPxdSTTwQO3uri4GzgPsHssAACB59aF7In4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32206860},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2c7162143bbbf567ccecc64105010699fa7a2128","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231215_1702624192872_0.23900350602099385","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231216":{"name":"typescript","version":"5.4.0-dev.20231216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5dbbc18000b8b868605299fa69507b9a7873db42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231216.tgz","fileCount":112,"integrity":"sha512-N38i9y3t+zXZuhzVuU7Czkfb1gGhsp4qCrOFxjJrTywFYFx8BlE2ugpYCbS59Sb7e42RpHxKjTGrPOBpOnouXQ==","signatures":[{"sig":"MEYCIQCNTObgNQ217duoauRh6z/PpNT2FDbxc8ZVGJFpMJcoTQIhAPzvdeUDK0EAcqwXkA7Jd2ePKwXuheGGa3Bz13WJiGT6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32212825},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4d5ba0316a43ea31c41c50e4d62756659ddffbaa","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231216_1702710588038_0.4258543439964777","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231217":{"name":"typescript","version":"5.4.0-dev.20231217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231217","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7b774444c14ae6ede3149753ca9f9301f91200e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231217.tgz","fileCount":112,"integrity":"sha512-LfTSjpGkhz5vojqrbHPD0UyPplTewag9lJpWP0U4hfeOXi62DN1CBp/us35zPVmD49iznxiIgTW9rNMbEiJYtw==","signatures":[{"sig":"MEUCIEXl7DMSpdNXYNoGTHrp+/JKyW6rVXelBntyCNxvrnB7AiEA6gib4r/3EDYWAk83sU66Y46AnDd9ipVC2+0VygfqNjQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32212825},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4d5ba0316a43ea31c41c50e4d62756659ddffbaa","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231217_1702796984401_0.177311134038034","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231218":{"name":"typescript","version":"5.4.0-dev.20231218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a3d8b835f5765d37832fbcbd350df6bc96d34020","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231218.tgz","fileCount":112,"integrity":"sha512-huxh8lRM0KCQBEOrTZEGb/B/3FE7XQzoGuNnaRG3kpJoj4xZ+TuJNCIJYDSXHvd5754pfOLxz51Jhkvc/ZCr3w==","signatures":[{"sig":"MEQCICDTQPt1som6zKSiPJdZzt67VOfLIYtnUVUQ71HahN6+AiBcsqWeXvKMON63eHF+j/OfFsLwaRH2G0dVpP5aO9enyw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32212825},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"bd952a7a83ce04b3541b952238b6c0e4316b7d5d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231218_1702883392887_0.9308778998440961","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231219":{"name":"typescript","version":"5.4.0-dev.20231219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf382386261e5efc89b65b4d6ced684e26c3c559","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231219.tgz","fileCount":112,"integrity":"sha512-pWOp0d2qj5T4llRnhb3BVkx2jN2yglMVTc96xs9dRY4I64EG/uFfyO3aoHm/1H0LAPmilJsJGDtXASxGM+GIVg==","signatures":[{"sig":"MEQCIH+kpW+a/ZoWzQNEg1xpcacLrlMUWIv7Ki49378DGGoMAiAsJiyu46XSlZXPD7RLZHavuaMX4UmfkySa8d9TZDEytA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32213014},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"63babdf7dacebcca2673a9e2b8d5dd2d7dcc6017","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231219_1702969787809_0.5379807827181822","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231220":{"name":"typescript","version":"5.4.0-dev.20231220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"233b3600359b6c26640a76d6925baaf87ece6306","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231220.tgz","fileCount":112,"integrity":"sha512-gO+86xJ5TnxXTrU2jXZewS9x95rKXCGpDuYUmdKC8rVfEchLrcH2LASQUXguQ2yinln8lrCttDZfO4d6gpuE4g==","signatures":[{"sig":"MEUCIHN5/gZW5sLmUSdebnGa26noMRPJwoYZwe9xn8IXjfU+AiEAsXnCFvhhFmm87pFBRW6O4xExgt4jaCp3xUW8dclNVfU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32213014},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"63babdf7dacebcca2673a9e2b8d5dd2d7dcc6017","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231220_1703056173989_0.7577594270301982","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231221":{"name":"typescript","version":"5.4.0-dev.20231221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7464c612124597325426b44b6ce695476e45339d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231221.tgz","fileCount":112,"integrity":"sha512-vsu9WExlMAmSoA/elxcmBTyRDyf9REJCKV2DowCmSpp+oqv+oq0yku8490q1r2YBC7o9DP+u/q58J5sjqaAD+g==","signatures":[{"sig":"MEUCIHBNK8I1qP26O1Sl4YKtRnIAZAAkxRKvUB5fY/C062vDAiEA/l7RASZ45QSxbFe90UzBKnIb27RdenDBVC+E7tgMVdI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32221341},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"93e6b9da0c4cb164ca90a5a1b07415e81e97f2b1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231221_1703142609710_0.711425997788365","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231222":{"name":"typescript","version":"5.4.0-dev.20231222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1262e74f7ae1066e6a323f9b5616dc85f8e0d924","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231222.tgz","fileCount":112,"integrity":"sha512-SK3Hak67HL8l08jLRYOFF0cXL0ODM/tvA6w2+HOOYKijxGOmpc0xWz7zvOi6RLihS9BGgBG6Hk1zD/bN4qR4Qg==","signatures":[{"sig":"MEUCIQDiNrPm5cE8fn+T1/QUsg06vW+CGp9hOphXNK4mZz2S2gIgH3pu5JP8UF4crM6yll4laCDWWDBvgVZa3w354R57HcM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fbcdb8cf4fbbbea0111a9adeb9d0d2983c088b7c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231222_1703228991816_0.1441564744220012","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231223":{"name":"typescript","version":"5.4.0-dev.20231223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0170dc94178fa945ba6d9813d61d2060ccfbb9f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231223.tgz","fileCount":112,"integrity":"sha512-KiQgKjVULApZ0PuXCMOuPNNO3Ty4amfJPjGpbcQoh9YlU2qmYgmyyIT7I7zMHkjCtn8R8DkrvM0Eue0fP9hzjw==","signatures":[{"sig":"MEUCIB+J+IydSbIaVg7TBimfOVFUIj83w/RZzQvn5O3W840qAiEA44Fi6DP0hDZePdRLAsB7HLNRFenMgTq/k8rlcMRyru4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fbcdb8cf4fbbbea0111a9adeb9d0d2983c088b7c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231223_1703315389878_0.6772612504933697","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231224":{"name":"typescript","version":"5.4.0-dev.20231224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92bdc3844e2480bacd20dcc4bd04360c7069b995","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231224.tgz","fileCount":112,"integrity":"sha512-FbcuMRM2iUkY4cxHsHAGWm40kQ2fwkqmLNciqrzfBMEnuLN88t3iTEJhOAxJjVOl8LY58odFb0crTILOB/VtCw==","signatures":[{"sig":"MEYCIQCF+3zqRWQtjT7Od/HvoYHeX8nbO6VKWGQYQLI2aI6cvwIhALbGG7IaoOoNvSbDxo08Pqbdh5LMVlUg9gsErcGHx5xg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fbcdb8cf4fbbbea0111a9adeb9d0d2983c088b7c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231224_1703401779509_0.13814638813416735","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231225":{"name":"typescript","version":"5.4.0-dev.20231225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0fbb7b820c811803f1dbf18173c3d3ac10f09435","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231225.tgz","fileCount":112,"integrity":"sha512-5cTYQI4FrVz8ceeX+EsAzZLscTzKvwIRdyAkNQncqraQJqHToyL/r3Nt6oPtZxedrYqOzOXTTLdY8cdsHzDCcQ==","signatures":[{"sig":"MEYCIQDIczep4bfPBRO5p6CxstYeOhXTDlqkX6YJynOjT3yhoAIhANiTlfgaQQtWFSOzydlVjLhG2Fv760iXLx4lG7TMUqru","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fbcdb8cf4fbbbea0111a9adeb9d0d2983c088b7c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231225_1703488184773_0.23308966809641962","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231226":{"name":"typescript","version":"5.4.0-dev.20231226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fd91b294b23f206271ca32c83c466a8023e19d05","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231226.tgz","fileCount":112,"integrity":"sha512-UHOgBgQgky4SUZ2Z0tFVgzulKJSJBUkAtcBggBJ3swOUyIwn3PJBvZxHLtK94lszCq/FCR9ozErD+UABxmXyYQ==","signatures":[{"sig":"MEUCIQC2RdzCCQh1ja2+9bIbkBRlImXOPmbxKHpDPygIIwx7lgIgN//3w1PYLMZqiOp8RviNYsLkCSOFHkbTyykJcEA5ZUM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d027e9619fb8ca964df3885a536a67b5f813738b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231226_1703574604960_0.3611161083303569","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231227":{"name":"typescript","version":"5.4.0-dev.20231227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cfbef8e3b9d4391a62e14a72e65c500c5df12e53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231227.tgz","fileCount":112,"integrity":"sha512-lUTwqlRFd+OYg6urfqgdDBiEs4rUyejfaNeLLE9x77VYwHGPNS+Hg6/UQiXTpHuQIk+aMjxZkBJDDuGbD+SEdA==","signatures":[{"sig":"MEQCIFAsE9fu8/r54PiZZvkoQlltPdV8ywVwXPu8/theqkMUAiA6/oFVxAo+95GULJ1c2VUrtzmXzYKxRcXIh7xsP/j7BA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d027e9619fb8ca964df3885a536a67b5f813738b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231227_1703661001314_0.501999084595415","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231228":{"name":"typescript","version":"5.4.0-dev.20231228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2f6dd1281bda0f7ba67944651e4ed501bd70ef06","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231228.tgz","fileCount":112,"integrity":"sha512-LRdJTPnj+MTmEI+AYsKHdpxa2FhmBP8NbEDu0sQC8pYOggvnbg0W5idoFkJz5Y4TXLRPRbAgqemoJOCuwxLaBQ==","signatures":[{"sig":"MEUCIQDFVU3U3hAdT3sxdWPwfkRqgwENpKxk89tEogVPjzmL1wIgIIvt0fL8Oh5mCo4ZjIkudn5u28NYtKTey2TUCSFlChA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d027e9619fb8ca964df3885a536a67b5f813738b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231228_1703747396006_0.37991220312192064","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231229":{"name":"typescript","version":"5.4.0-dev.20231229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231229","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"235ab24e925c13f1dfbe513ab2cbdda64e55491d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231229.tgz","fileCount":112,"integrity":"sha512-XFSQ1IdxXaQOAwS8Jz6uSrms9jVnbwLdqnmiaBIW+xJQL/09S4cp5h+0PhawoxcBAK+gtffIIS5/qU2oioAjgA==","signatures":[{"sig":"MEUCIBSsBYu3G9byxOIYpc6AX/i2h7lLm8tsqZ1Ys7cuRhdOAiEAl60gRwKoAOtwXgTJWtnZcfs1xR1exSiUOMPtRipg58Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d027e9619fb8ca964df3885a536a67b5f813738b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231229_1703833788683_0.311258452108123","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231230":{"name":"typescript","version":"5.4.0-dev.20231230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231230","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b68fa2e3549e6940a8d0407064f71c23bd765ada","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231230.tgz","fileCount":112,"integrity":"sha512-H0/vWwH9SqG9CgKGESiHv+JimN/MjQAmfZDzmnPp8kIjQiwvyaScmIMYqkOkB6nPTblagwfZ+PrTMaZPboIC3A==","signatures":[{"sig":"MEQCIGdXb48JyI3mcHCdOjanUpI8RgXvdGvPTHg8s3035qf2AiAQwgSmNjLd+pKW7PUMYvv3mTEArQ4KRTptCAYGB1RCYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f2e9ebd1b7e6f8e11ab23631f7b2df4346708535","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231230_1703920182998_0.31019483624312616","host":"s3://npm-registry-packages"}},"5.4.0-dev.20231231":{"name":"typescript","version":"5.4.0-dev.20231231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20231231","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"95b64f1cb2ca3ac2b9e2cfd1d7938f8c682ce24f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20231231.tgz","fileCount":112,"integrity":"sha512-WxVNmN4TzBXYvjI1CNGvee4IiipnTvbWTra3Is1ysh/eNQaaB0YLqKKYo0O5nrj0g8gqtwmU/H5fSGOLZDzZYg==","signatures":[{"sig":"MEUCIGiw1n3PAtjrClh/jPXpzrGyk5jJFiNe1qex14vIvmweAiEAvwVJGAZcHIAJFXvBrpx+oNaUgtNLdpvATM2g6HADxGo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f2e9ebd1b7e6f8e11ab23631f7b2df4346708535","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20231231_1704006593253_0.5470753628884086","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240101":{"name":"typescript","version":"5.4.0-dev.20240101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"45b775ae4e95e38b00ff9e01b9c58a4fa6269c49","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240101.tgz","fileCount":112,"integrity":"sha512-fIfemSahB5H/1Lc+kv3AEaI1UZc2SDtl0Qjk+SkfKRxyS2EdujUWJp62PzPeVflfCxyhpAuAF2M+WIR1Fo/ByA==","signatures":[{"sig":"MEQCICYSWllp9lAd6oXD9AO2SahNDnF0JQroygWcGi4W3B3bAiBY38Wp4BBBbjr8hHX0kuhNt4kntKVSr32OGgdGE5xhcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f2e9ebd1b7e6f8e11ab23631f7b2df4346708535","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240101_1704092996898_0.9298868519027612","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240102":{"name":"typescript","version":"5.4.0-dev.20240102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d02a4e91a45c345cbed4e14be3092f9bda619e2a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240102.tgz","fileCount":112,"integrity":"sha512-2S5NVWoqMlgWUJJCAKS0RG5/XggxCWLPysu/McRM0XS1M3eeekddKMMw0h/xFZV+Afnrc4XgN4KCWV/l6DTxVQ==","signatures":[{"sig":"MEQCIE3yTIt0cSak2UQkZ4NwzU7wntqNAqXAW/4WjzxDLTzDAiBrSA3oO/xejbTT38LQC1SdEJ38QybB4ara44HzFWYp0A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32240370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b999336b35178ff9f8521e41fb4a7bce0c6d5bcc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240102_1704179392740_0.4259771589526882","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240103":{"name":"typescript","version":"5.4.0-dev.20240103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ef837d78874beb941b1b013e47d8aec4715d33a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240103.tgz","fileCount":114,"integrity":"sha512-IFvuh/xXux/lVcb1wkEmQJ9jgP0R4VBsZwAt0pA/uPJ6ZRiD96vrHR2CBJuG/SbBFX6kFmqq+639KEyptik95g==","signatures":[{"sig":"MEYCIQDVNln4mY3VTvu9NOxOgfI2u2GchC840pD7joYDTrN8IgIhAPXlclAGdNH+vOU9HpcRKil4B/TVKNBu0S7infBqE5+6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32245827},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"be20dbbbbb295b477660a9dee3e8a234b491b5fc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240103_1704265795427_0.14157349892073845","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240104":{"name":"typescript","version":"5.4.0-dev.20240104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240104","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ee76b4e4b6ac7078682dd6c577f2c180cf86ca06","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240104.tgz","fileCount":114,"integrity":"sha512-LzRhnPKgq/AfRqBiHjP9n5Ntd0nOs/Uxr2TMvF6Lx9NgdHUDi7oUWoMoV7s3M6o628OsC2AqNC3Y1Q9i6GX3lA==","signatures":[{"sig":"MEUCIF1w62i+ysTXxa7RnRVpMTDATqRyZFkpQfrh1dFeimKEAiEAujRPG7PN6zBFRaS6Eys/J/B5E0/zQgvlqZXozhdxhu8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32248863},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0ea57f6ca19c23e0bc690bd2706f6b6e11a97e02","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240104_1704352188990_0.5926206146523296","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240105":{"name":"typescript","version":"5.4.0-dev.20240105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240105","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"22f3d867766189c893f98653cca3fb5aa06e6c07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240105.tgz","fileCount":114,"integrity":"sha512-EShumrhMWO0vjg0BpYtIOOWicTRcWnku+fJfLxnjo4P4h3/Zkz9jkmAbtWqb1c6SPNNrL1zGgVNX38dYZlMinQ==","signatures":[{"sig":"MEQCIBmfQoT8JCCsR87bu2A1OWPmar5/KXyzES0IifV6HElEAiBegXZGuWEqEd3asSku+SVCxLh/javUG/T7kvcFF/+uGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32249035},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e44142048305d42ec4fc753457aa561f8e247e4f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240105_1704438605147_0.24751227430715428","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240106":{"name":"typescript","version":"5.4.0-dev.20240106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240106","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a704846f0bdb9aefce78cfbb3067b9a923795d3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240106.tgz","fileCount":114,"integrity":"sha512-6QrXfZ24bd5drgl7W3lNn+l/uvh8BkS9cwDf2AIlgASAEJZhrh/fEbNm0mCvUJV95/x5o5kjs6fEp4wBeX7SMQ==","signatures":[{"sig":"MEQCIEwcp18QxUYeg26FSkLy32pTVzGQkmzEe22PhxWBojl0AiATyCbkokvZdhjjDUfEtgFpZuCxCoR2y0boinOBXlEinw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32261921},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"01a51d2d017dd50d487835282b7e4a2a4f7300ab","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240106_1704524984504_0.4486423186827013","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240107":{"name":"typescript","version":"5.4.0-dev.20240107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240107","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d9eb429ef43752c546f4be4fa19289cd256c1b10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240107.tgz","fileCount":114,"integrity":"sha512-6EfwZFaO82JLhOUsgQ3+c4lHuYS4WAQ6xBC767qWwJGf7BKYYeSFUkSptSkNhWOdeCEhdooudx22mkU8LphAPg==","signatures":[{"sig":"MEUCIQDFiJW1qAC0F/IlgvMJiqN4UD9lwsYdXgMyEmv1MchyrwIgfPgipeozF+8uKFh8CTfax6WZ14q9xXrFdOIibm4bc2k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32261921},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"01a51d2d017dd50d487835282b7e4a2a4f7300ab","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240107_1704611379615_0.5204218994065726","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240108":{"name":"typescript","version":"5.4.0-dev.20240108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2b5d1a1aa0e7fc91f739cc190f4cc73944463af6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240108.tgz","fileCount":114,"integrity":"sha512-flXeU+FYwW3mL6zcOz1lNX0juSolUIeIRs4nO8j77jB+N/3lrqWNOSz05dzRC4eYJcjFIIOvv5y9u8MQ5nTtzg==","signatures":[{"sig":"MEUCIAWopr+BOXNGelBl3cs0jdeCa0ua6ftyoMyAyTjw38FmAiEApuplmS0etSOj8XAMafpV3jgNoHBBo/gXTmJgzoWi2lM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32261921},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"01a51d2d017dd50d487835282b7e4a2a4f7300ab","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.42.3","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240108_1704697795141_0.42483185909425725","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240109":{"name":"typescript","version":"5.4.0-dev.20240109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240109","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6b305b6110aad99548f9532e27cfb30f5c5a96d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240109.tgz","fileCount":114,"integrity":"sha512-pKDkvh+RizbUm4BEmfvmG74qycZsHw4oFB6jY9D+oKoxPzoZr/edCTks/t50kvU2RdiDn0UKSzZB4YVzrC9WTQ==","signatures":[{"sig":"MEUCIQDnaa+dzlhtEoYilp54galTqyL30/pZ8yQzCJeABb/0vAIgSFbMWjVxjkV4hf1E4zQFnDEL0jqrSXTOhxIuYBF/ZbI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32269892},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f57e5104a3e21e82cafb818b531c8ec54ec0baa0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240109_1704784206242_0.36686858060812555","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240110":{"name":"typescript","version":"5.4.0-dev.20240110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240110","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9b0318e05e3717660ace3edd150d4000252573ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240110.tgz","fileCount":114,"integrity":"sha512-OEtXRprxdta9A5qLObqsgCrFjAWxGuTj8T4W+GBWqDhxIT//BevP5MROHX8Zi18RlvTZSu5G76xJaQT1CK1YpQ==","signatures":[{"sig":"MEYCIQD8GCtG7U9IKfhc2JQTHwn0lQdaKaxjpYBQI7+rpruargIhANfF8n3Eg5PepPpRL60yePo74HsVDLlQQ/IP7k+20JH0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32283550},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"81793210e6337ad8d20f2b7e44e9489687c2d29c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240110_1704870593735_0.37258742543312096","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240111":{"name":"typescript","version":"5.4.0-dev.20240111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"96a994ecbb1720d15c3a09d3659497009c97049e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240111.tgz","fileCount":114,"integrity":"sha512-97UgxVdlXJau9HbNNYghxWHaauDT+50ioh3mepeOfOec6Eq2Hsc4ivTg+N4o4sfVF4MNBJ7rYrejqDvhhrE6aw==","signatures":[{"sig":"MEUCIAVvCIWYfloopAcaKb8f9xeaznvXJuCa6aKFeMMHGZIUAiEAg76eZ79OBykmlCpA/sDoCHH6hCklLnC4fdkbh8cG7NU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32293499},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7398b8ed2e8d9643d75a7e0fddec8b2044eceeb5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240111_1704956995111_0.8158122607343317","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240112":{"name":"typescript","version":"5.4.0-dev.20240112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a21824127ef985a1cb95349361ab6ea77d635888","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240112.tgz","fileCount":116,"integrity":"sha512-jpdPO53r47ZiTebHw2O9jKp1ItTtwPe9kc62LGCZHEexROJn1MXChI7l/UmRtItOhOKwe2ZXOBlNMQh4YTMhIg==","signatures":[{"sig":"MEUCICOTtCROUgBaOgIIzsaWyu4uU5mamf1MeC2FN6YZ5/mPAiEAze8+wTafmyhLd8YdtYcEyz1b75KKNxCD6UVza9+e+gs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32301867},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7f3e34b02203c3cf5d9fa14370f47d7dce4cac06","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240112_1705043381856_0.18808305528737845","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240113":{"name":"typescript","version":"5.4.0-dev.20240113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4f418f292c9a9c2a89c51fdad5f9682e3da35e5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240113.tgz","fileCount":116,"integrity":"sha512-/MDy8Fsix3dhZz3wmKvi59Juz49d6eGM/11ljWEf7YxRWHT+4sGUI73/6lHiwHeXxw5IrHotE2kSBEq/6cFonA==","signatures":[{"sig":"MEUCIQDmz8A/6ACGT4AuwcedpzeXwKXipiwJAin+bTnuYquNfQIgAQOSaUd6RHN2XqrCfxOnW0790Y4IhFh5pFfi4PljXoM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32284700},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"23faef92703556567ddbcb9afb893f4ba638fc20","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240113_1705129762629_0.5727747097550966","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240114":{"name":"typescript","version":"5.4.0-dev.20240114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"39bccc459b46379e443e82abc1604bc4605b1939","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240114.tgz","fileCount":116,"integrity":"sha512-pd52BJdzc2yBS3VQme+n74BQCEFOi2Haj6TBvqn0cp81D3gCfM+sEctWUA+LcP2qfh/D/PfQ30NBLDCJfCAERw==","signatures":[{"sig":"MEQCIBOYwPIMMO8wn/OZbTt8sKIj86yg2eXAc2odX4lcpM9mAiBui+MV96nTmuoToSPNcLqxp1T2ghFHupyhhHHgP2rX2w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32284700},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"23faef92703556567ddbcb9afb893f4ba638fc20","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240114_1705216194963_0.5247667314639552","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240115":{"name":"typescript","version":"5.4.0-dev.20240115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"91db38a7786b84f8288c2bbf8115e1ca05608049","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240115.tgz","fileCount":116,"integrity":"sha512-p3nYa7pku8FHvfLDyiDcplZbKXEQTcZqtvXN6JTBu/u5cNLinBzOiKA3cVfHcgudzCUMtU5ke94dpwFNr+U3qw==","signatures":[{"sig":"MEYCIQDMcKRLvl/YGQsr/byywe7hzn4l6AN1zJXg7zZxFeU+lgIhAM5RQIeuep6KsJMDWrZj/Fa55maCcM5UC8lZHUSzOfPM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32284700},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cf33fd0cde22905effce371bb02484a9f2009023","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240115_1705302570336_0.9737095854886135","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240116":{"name":"typescript","version":"5.4.0-dev.20240116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240116","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1c71c8416dcbce028875c547b3ac19303e4a0959","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240116.tgz","fileCount":116,"integrity":"sha512-AmpljLROK1uKDoHklWmj9tnKCWrvMrkBLAPsBxlW1TKBuyuxGpixeF0+kSwHN92/tafwpMQCIDjORPENrwifzw==","signatures":[{"sig":"MEYCIQDjkZ3/6m7HmbPzeIgYpPkla3zqCCL9tCtiwWOnzl3ytQIhAOwHUD/fzxKfp90EnrgLvNmKOM1EQ9tZ17kbRSM9RR6l","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32284700},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cf33fd0cde22905effce371bb02484a9f2009023","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240116_1705388967146_0.06337790287421652","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240117":{"name":"typescript","version":"5.4.0-dev.20240117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240117","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"127f198c76f89f964141f9d29fb22414824ae9bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240117.tgz","fileCount":116,"integrity":"sha512-Ur4g3jvhZbV2NzF66R3fbCY5ejasRHkTudu4zamw9OnEx44VHiFVvimXazZR5ldUIXDbeDTveEPYf+h/M8/HFQ==","signatures":[{"sig":"MEUCIQD22ekTIbKI9KBUWwZ/rZvtCVtzUkgOke4bxyuXeWMf7gIgCoRqZY4y3APN0UqBCxrZnugAPgejbgz92aoXzSCxNh4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32313595},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"744f77a5fae957ecfd557930bd7524c7e9d8a6a1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240117_1705475377433_0.589459431569221","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240118":{"name":"typescript","version":"5.4.0-dev.20240118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240118","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f2645a6e4f5c2288d1fe56d2e7f5645990923ba0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240118.tgz","fileCount":116,"integrity":"sha512-TkIGY1JFa2/uWOcKuIuHroLZrOO6JDWSDCzVNDhgcKx8aSquBr7Ih9//PSsLZ0YkxkNOvvLySGxACPhUjweTEg==","signatures":[{"sig":"MEUCIQDSD7OY6hc8yVog+NA7iR6V8whNIXWTX6P8bpJX6KoWmwIgbH3EHDoOih+ggwH1ytFtzsh2r5EalQjn+HeFSHgmMik=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32313610},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6add96fd18d126d1505de5d96f0df6a86e5f2c21","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240118_1705561795862_0.17650531606279385","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240119":{"name":"typescript","version":"5.4.0-dev.20240119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93e2bf67e5be79210532be2ce78cf5946da04db3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240119.tgz","fileCount":116,"integrity":"sha512-I+Uge2+WNFs91q42WVrqTwxmq3NQwQlrL0MLora9zXhizbsKIGApE7LGcEJIbG+0yk6gpDilGaDH1pU4VUAKzw==","signatures":[{"sig":"MEYCIQDiQGJ/4pzRcgETmXnyK4xDT6GBFSzLLPHR+eHFgkVi2wIhAMaaBNiL9QUpqU/P0udAQw2Up5A+EY0MZXtlb8kIEEta","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32314004},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"55153b027490cea949d50747b4b4637029120777","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^7.14.0","ms":"^2.1.3","chai":"^4.3.7","diff":"^5.1.0","glob":"^8.1.0","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.5.0","which":"^2.0.2","dprint":"^0.45.0","eslint":"^8.22.0","hereby":"^1.6.4","esbuild":"^0.19.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.31","node-fetch":"^3.2.10","playwright":"^1.38.0","typescript":"5.4.0-dev.20231206","@types/chai":"^4.3.4","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.1","@types/which":"^2.0.1","jsonc-parser":"^3.2.0","@octokit/rest":"^19.0.13","@types/minimist":"^1.2.2","fast-xml-parser":"^4.0.11","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^1.0.0","azure-devops-node-api":"^12.0.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.0.0","@types/source-map-support":"^0.5.6","@typescript-eslint/parser":"^6.0.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.1","@typescript-eslint/eslint-plugin":"^6.0.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.2.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240119_1705648185246_0.9640931122643066","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240120":{"name":"typescript","version":"5.4.0-dev.20240120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8ea9fa7ef5e2ddbac687272ac7f9c4ef77954521","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240120.tgz","fileCount":116,"integrity":"sha512-fHbDnLnKZmZlU/m3fhS41GM/JIXAASrMUKLYhh4AGKauOpMgIlvikSEq0gWGkjjs/7NS69V698Mx4QErKfL9wA==","signatures":[{"sig":"MEYCIQCAu7xnHdJkrU4NnhfFDJ6emXIhyS8NiVI27lwZ5xppXwIhAJFV5R1S4n3jbkyAT3zh0AgvA9jIzgVYacG+LA6lM3O4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32343858},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cea0b61320ee69ae863cc9d7bf873113eb420e3b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240120_1705734553739_0.5015503542197242","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240121":{"name":"typescript","version":"5.4.0-dev.20240121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c13b42e77f1c63f50d925379d539691ace69c4f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240121.tgz","fileCount":116,"integrity":"sha512-mRsxgYHpW6gRWM72xK9BqjCOiAAady4aJJg3JjQW1/ZkIlT+AGgJobFJYDHvQ2eexz7uaGA3zVftM4UNC5KkRw==","signatures":[{"sig":"MEYCIQDGYioxnRbMCvydjlZgs/BhSQ4xkQH9bibzTHueSjxXzAIhAL6OR7TSGtXLw875Err/2hTn2MwLI0VzofSY5PJKRJkk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32343858},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cea0b61320ee69ae863cc9d7bf873113eb420e3b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240121_1705820971190_0.500135449457183","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240122":{"name":"typescript","version":"5.4.0-dev.20240122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"87049df18060af0153f466194ad37c3be86b91cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240122.tgz","fileCount":116,"integrity":"sha512-AlqDACgFZ2OGGSqJcWcQQOkbiznU+fXn2vhdcZttnOe5qr1E1oXf1lcHXEz3wTmEouLQwN6fVp2/76/JOsf9rQ==","signatures":[{"sig":"MEUCIQCH1QU6DyfalVnjiKc02WN2WOxTvKnlmlRT8glUtv4J1QIgb6c6C4ZU6VgL4z/OsuIRFAUqTwhcD+AP49hL4HVyB2Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32343858},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"64d2eeea7b9c7f1a79edf42cb99f302535136a2e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240122_1705907363417_0.3414935256589202","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240123":{"name":"typescript","version":"5.4.0-dev.20240123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1cdd85d92c472465798730efba2e0c8de90daaf3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240123.tgz","fileCount":116,"integrity":"sha512-CXf3I7gkmbVHhSuQdZn+/Xe+k3yBtYR8BwrYLOT44eUKuWH9lEuOzcR4zQcJP54dxekMIQPXxvCX3/VIG8zSKA==","signatures":[{"sig":"MEUCIGDwDZ4EOcP6jP3OjPjAutrlfun2/CRHHvVpZ6THiQ4GAiEAwmSFBlksYY5lLl1We4iCSIhaZSBV9FORdRoVHBDYmeM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32343858},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"966242c6a1d531780557f693ea52a94fb28b1afe","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240123_1705993784525_0.1839351702948837","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240124":{"name":"typescript","version":"5.4.0-dev.20240124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240124","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"76f7cf309d8186b62c186b3664bc72f7418e45b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240124.tgz","fileCount":116,"integrity":"sha512-OAWV1z3s7OoZR1tKuVK8UokiDmv5J8EEjKJu7BtU7veEXBA9cLGQ6LEw4Jt83BidP8lWytDetVuOxmF/VtLQPg==","signatures":[{"sig":"MEYCIQDVQsCn8UtAVv0n8TbJ0kqt91xzZouqdkk8Srq/VxUKFAIhAOw8wwkZMEDOqJOIEQ+bPNH6ku9y4UP0UmsGB8bI2h0d","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32344289},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5043c503887c515e9e1fd77ddf2f877f89a16cf0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240124_1706080169570_0.3607794168452845","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240125":{"name":"typescript","version":"5.4.0-dev.20240125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f14a061a8bcf2a03d94bc0fe2b04715c822d171c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240125.tgz","fileCount":116,"integrity":"sha512-/3h02nH68UOVG1hUqdAKxwHtV9JcTrxiODJCzWqJEkFmKWdVDnZ1NuGWl0KsgpXgdC4bYbEf5fIe3Or6lg91tA==","signatures":[{"sig":"MEQCIAVxi3PwD5q0B9id8wCpCurbuMGcOTylsGeBojp4MgIxAiB10NF9GLHxV+lvHY9dex91tnRejOQq+Q63mFLrsWlKuA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32344288},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b7f691d9f13be987e445c7878a40190ca5808691","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240125_1706166569203_0.21289244864625112","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240126":{"name":"typescript","version":"5.4.0-dev.20240126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f296a0a7eec4aa253f39010b57d232d92c2205b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240126.tgz","fileCount":116,"integrity":"sha512-rIWKkTB3e9TP5bXwW7NeixjfITOrZwFe7JvJbCPZsF3FFq1AASVkovR4fkBZBN+KKyPLZES4tPZRev2IOUB5Vg==","signatures":[{"sig":"MEQCIHXeHO/G0p/HVy5K+H7U1RCd+G1tYvAR3iJ7w0QFyQlUAiBtYHuh7GutPHEVwg1F8AMnDwhnH49qTRM3PU84rBRxcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32344288},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"1a421a75c32aeb43d089087e0a8565c765bfa777","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240126_1706252962510_0.9010983977179596","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240127":{"name":"typescript","version":"5.4.0-dev.20240127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240127","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6837dd2491f21d29443e5b71a4cbb23123afdc63","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240127.tgz","fileCount":116,"integrity":"sha512-coslE2k7bNdtY/r3dJ8vYqoUzoGrmM6G3F8mSSgmPbNyFot1xivp+PggWlUL3dVZwToF9VNgfqh1aU9O2hGUEQ==","signatures":[{"sig":"MEQCIHFjbepZps5mOBDXBJl/pEnUKz54slnuaK3Sm29QQvecAiBDm778Z0MJbYDPVPTaSluEa/TaEss/I/eGFSoIg9VE5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32344288},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ddf923e62574df7b3af217eba1398442226a83d2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240127_1706339360313_0.9203183084290523","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240128":{"name":"typescript","version":"5.4.0-dev.20240128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240128","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d3b4204a4f2ec66eae72d4d969307858c014b24d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240128.tgz","fileCount":116,"integrity":"sha512-SfSvvhZKrpjP/LSfkjpg/VUFMXElCXEtU7SzfHoPph8e3PBlbjZlQdLczkEr95M7wj8V/iiXWyqAoPuQ6nuI4A==","signatures":[{"sig":"MEQCIDV/izWDpr4ZnEDoUhhWessfjAo8tBxXxFPOk4B+DtkkAiAY6GJWMP7g817oeOE7VaZDpN6fd/dXI+s44Uii8HS0zA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32344288},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"dad9f17c773f97426f90539dd75a6a5100d342d0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240128_1706425770665_0.920438724089037","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240129":{"name":"typescript","version":"5.4.0-dev.20240129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240129","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"40bc305d1c3a7d84186008a3f83472759bf08a6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240129.tgz","fileCount":116,"integrity":"sha512-MCwiuPLBvW2mJYE2/BIwY4xLsLMC+Ov69PFEavtpb5NdGTFcfPoqa++2co9E4GXU7lBjqjDncBs86qjmvcHtDQ==","signatures":[{"sig":"MEQCIEq4UM4BJcVH9u/PsfgtwGtymbpAvbsxF7Ro9xsUcTStAiBjS9gy9sRpyJVrJid364+ARfJzOWwTP6fxFx7cp9RWZw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32345411},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5d08694c06b96637462390539ea7af8490524e58","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240129_1706512179001_0.9707623541672468","host":"s3://npm-registry-packages"}},"5.4.0-beta":{"name":"typescript","version":"5.4.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1bdc20b0930652459175acd8878a80d3fa11cd25","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-beta.tgz","fileCount":116,"integrity":"sha512-KgekV5JS7TQ7Bb8eO64QGxdM7MSBUUXOXq28OWX23d2MA8SiVtNYoo4s33tCTEGV8+6AGBRD2+KiXNNnexRRYw==","signatures":[{"sig":"MEYCIQCo5S8XbNYjNsbFpZLueCQbeI5ZAbII4oEFDgw0SKp2VwIhAObWs4R8m+MnW300pGWR+YGwAVxbxml9GXos3sE3LNJ9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32345245},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-KgekV5JS7TQ7Bb8eO64QGxdM7MSBUUXOXq28OWX23d2MA8SiVtNYoo4s33tCTEGV8+6AGBRD2+KiXNNnexRRYw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.2.3","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.19.11","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-beta_1706549593464_0.525980526430601","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240130":{"name":"typescript","version":"5.4.0-dev.20240130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6716a8f43a0bf9feb21a850f73eb34443d9017dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240130.tgz","fileCount":116,"integrity":"sha512-LelY/DlG9yPe807IRs7ZYvKp0eGgk4ehYr/9RvQsZg31E7sF3oYz0r44fsvnqxFWCsM11CWOrmY1r+MD5CDMfQ==","signatures":[{"sig":"MEYCIQDLlNgHEuzxin8tpnQzbDVP8MhIfJAY+6Ix2QTI1soh7QIhAPiPb1EpZqS8ElscWwKFJokT8oMslmET0StyU1lDUNki","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32345292},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8c34b56cde00b5479fb2c85f94fa8be83e28b06a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240130_1706598581039_0.36005184827408043","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240131":{"name":"typescript","version":"5.4.0-dev.20240131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240131","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"574555c9ca3ebe4c4ea576ba1e16bcf318241f11","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240131.tgz","fileCount":116,"integrity":"sha512-kuk92IV6W1+z4qpldJXK3ZZFZUrR/qmVFnoLg7weNvy45TJr48FsKJCQmXsrOlfo1wJJr50A257e9ljMj6wTvw==","signatures":[{"sig":"MEUCIGTVGh0I/d9Q1w+hekkvsceik6Jox3bYbeK2+25HNNIhAiEAsLCpXutAeF3BctstjLmpeHBOaz95qAIN3wTCcXXlgS8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32347463},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"104b0a6495cd6903a455f8438d9cdda20adeafff","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240131_1706684970989_0.7116230986531897","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240201":{"name":"typescript","version":"5.4.0-dev.20240201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a82081a69d96dfbb1e4fd9bc51f0b8369e34ba42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240201.tgz","fileCount":116,"integrity":"sha512-KyjAVgMfyIHhjbaYTeTElvoEKM4teDYYATdzsdcxvogVcaDuH0I0JbiwFUe6bIU5FnWxlbxc7rfGyh7aNwpnow==","signatures":[{"sig":"MEUCIAnlE9sj5g5ivnuyrg7vvdAyN+Q60Ome9MI5Oh+7WH7iAiEAj9uFHiPh3UyjOfepzQilzYUOk4bkVv6v0m1kIwl4UQw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32351385},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f1c841b8257725f81c03a19bc55a56e4f2ea47c6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240201_1706771377226_0.170831082906449","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240202":{"name":"typescript","version":"5.4.0-dev.20240202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d265575e15aacf62c11804d9d96ab0488d5bbf9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240202.tgz","fileCount":116,"integrity":"sha512-z7JmYSrDsCg9yCfckUT1KAFc6QbUzSYOArsclCqLUJVMxmCIC1pqHOe01DN1qQ2yz8Loj693uU8mH88jQ/BT8A==","signatures":[{"sig":"MEQCIDy50oR8Ajou1SS48GEd1C589O9Sdo5jIb1Cz5xpgwM7AiBnrQKRSlLJEXmxi54g9ypzGAFbPoZotZI0mWlzDOJ5dg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32354333},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"593af47fa122a8017b956580856faa0e87aab4b6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240202_1706857809779_0.097404084807035","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240203":{"name":"typescript","version":"5.4.0-dev.20240203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8d1d62231daeb7bd9d29a4a0864afb2653134b66","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240203.tgz","fileCount":116,"integrity":"sha512-vUKjdnYb/qy4JDKURjUhNosnAVY5KLMwVSojfu7Xd3owzS2bzxd2lxRScNLNfb13ytwKLqWBQ6ZxFT/3Kxx1zQ==","signatures":[{"sig":"MEUCIQCsVawFgNovxE+CUVM1nH9uY+dWctRgnTevBbfKALpuMgIgVr8DcY2H61s5Gt349bn1KF7QkBUzLaq8lBuQ0A8D2vk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32351686},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"61200368bb440ba8a40641be87c44d875ca31f69","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240203_1706944171057_0.95131442371417","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240204":{"name":"typescript","version":"5.4.0-dev.20240204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9186edd5cc6aa17a5a7acb965f18293693d148cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240204.tgz","fileCount":116,"integrity":"sha512-Lkl32xcNKwZorSm0tQ2ap3nFZaIQKDDwlZJnlDR0lDrVkpvlDULFcSdncSTyGHh3p77+2mLIYoxfj2qeKpwBsA==","signatures":[{"sig":"MEUCIQDvF3m15+jTdDS15mYk/LPT9ATECF9DrW+vo8/78aMlBQIgHppEmqZXfW+prNdxe0IT8hQsWOq+eu9w4bCH+81xlxI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32351686},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6f1ad5ad8bec5671f7e951a3524b62d82ec4be68","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240204_1707030587686_0.8453651514883342","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240205":{"name":"typescript","version":"5.4.0-dev.20240205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fce86576386b25ce899cbcec92e3d36cc68ad8aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240205.tgz","fileCount":116,"integrity":"sha512-waxaX9QSNlTxyhaeS398h73fWzOr0DOq2rV6ZQSDywcabZjxeiCv18hYDIZXRk4dT0Q0DxhbNAL/THzjKjtDlQ==","signatures":[{"sig":"MEQCIFbcpH4DLOcsRArpVHWvMaUi3ZTmdBdZNuhLB5cyR89uAiA5kkyVrOtJpAn9+IV2jwiN3HFJO9FLjRlS7IZXw/LEBA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32351686},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6f1ad5ad8bec5671f7e951a3524b62d82ec4be68","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240205_1707117013994_0.32752616361607867","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240206":{"name":"typescript","version":"5.4.0-dev.20240206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75755acb115e1176958d511d11eb018694e74987","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240206.tgz","fileCount":116,"integrity":"sha512-8P1XYxDbG/AyGE5tB8+JpeiQfS5ye1BTvIVDZaHhoK9nJuCn4nkB0L66lvfwYB+46hA4rLo3vE3WkIToSYtqQA==","signatures":[{"sig":"MEYCIQD3RvD7ggUS3/QXl6tjYD87TZTHe5RH/vcokxfek71NqgIhALZZjEotCWjBdKLoj7t6VD12c+crlhAlf45ImK/vMXsn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32352642},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"763b5ebfd4bbf2531f46bc086b87a378119cb293","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240206_1707203393158_0.8928871812501533","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240207":{"name":"typescript","version":"5.4.0-dev.20240207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"901fe5a3f62b28edd511bc15ad325a973f7cc66d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240207.tgz","fileCount":116,"integrity":"sha512-BD7gF4QnjiTzOPqstgkgBxANkltT6VsZS6gFjXf7haPWTgrcebvCNQr1yGazb0o18RVtNXeHs6lDbXKqhJhiQQ==","signatures":[{"sig":"MEQCIApKTh69KINis4gb3UziJOkhr/oOcqTXhgUlIWDK5X6pAiAG/H2j4Dtr8vFrJ9Sp5aFsjTtFGPXdFBfZFJUD/c35+Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32352642},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c790dc1dc7ff67e619a5a60fc109b7548f171322","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240207_1707289796860_0.7686248914828349","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240208":{"name":"typescript","version":"5.4.0-dev.20240208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"38a8e92a77a5d65539d283c36f25b1a76e01c41c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240208.tgz","fileCount":116,"integrity":"sha512-mZzIKm6ytXrGFZWu8Ttzk5aY7pIGD+5MPq32ByuGTv0oCafoi1HqdH229UUFiivIsIW/L2/vGE3kHs/sVL0UNA==","signatures":[{"sig":"MEUCIHJTxeY1habFfqbjJ4U711oLfDoD5vLp8b31TJRDvzjIAiEApBreHXZj2nQkEV1B7ZqeKHfAblEkt6atiuK7aQS8rk8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32356953},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"10a3872de4c8ed8f68633d29066862b292851df9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240208_1707376250426_0.6443153116151992","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240209":{"name":"typescript","version":"5.4.0-dev.20240209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"536d80a9f7ccb8d31e5b909622ab7811c380810a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240209.tgz","fileCount":116,"integrity":"sha512-qhstJB8bOkf9hDabhxluOD3J94iUqsQZtTcia/T8ymwqh2ziTXx9z9OQg3sxJOcUEVVxwAxKybCiwLM2HxwPwg==","signatures":[{"sig":"MEUCIGowUWb5PnUlBjq2+bsvQ80wBeX8ycfGp0Ef7+cAbmgxAiEAhGo2hGwRU3Zi+pLAuJVp9L5oEwml0UC1Tfq9eQXtvxc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32356819},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c5db0ac0ef57d75ef277a4af6b473e5637d95ca0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240209_1707462588413_0.9980576570121766","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240210":{"name":"typescript","version":"5.4.0-dev.20240210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"49879f43e95b3058e37760dbaed0e661c7c6fdaa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240210.tgz","fileCount":116,"integrity":"sha512-2Gzli3tdbcXsjTYrQXJhqtevbqmk6soSQYu/n2x05Psj4YeFIcP/zGICTZx5UNF+la7n6+tVoj7dZNr0TQK6jg==","signatures":[{"sig":"MEYCIQCXuN+Dxiu42AFrRspXVW6zv6M8vA8SMI1+RdN40dmZ+AIhAJ0eK2lZvtKvQniMTMFGD1MDf9iEgYHBxjGLnkows+az","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32356819},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"25a708cf633c6c8a66c86ca9e664c31bd8d145d0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240210_1707548987320_0.3698344250311416","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240211":{"name":"typescript","version":"5.4.0-dev.20240211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2e0b896e5ac36f2286de0c6a3ee09d2ab79412e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240211.tgz","fileCount":116,"integrity":"sha512-2EEMVld7E3UHff+5pBQJ01ic3Wjzf/1555yu2KZ4mOaVpkBat6YDOidLnlngeQUeoBUv182Wp2ozye0H2RNzaQ==","signatures":[{"sig":"MEYCIQDOhPe2yGpBXLyDVfE7X7eG3OIwX388ae7Fm4j/0akl4gIhALTQpficvVJhbuuN7Fw6HDZzVc6BTAwNaV8GIkTSwLb/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32356819},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0d94c344fa184eec3577bf27db951d36ce94ea6a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240211_1707635400099_0.5249455037834105","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240212":{"name":"typescript","version":"5.4.0-dev.20240212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240212","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ec1fbbc86902409910fb2778477406265c749e07","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240212.tgz","fileCount":116,"integrity":"sha512-I9h51QaFIfbGuQnf8TvdUSQpBUMADbRPVUS6Gd8kzHpFYwEjKxgmZbVdyOrtlk1TFbIhc7EqzebDCOcGgNyBcQ==","signatures":[{"sig":"MEYCIQDDhTOKl6YOOppSeATWoUtzYO1rw/B++4xB3xW5ZMdAAQIhAKYzUCcN8OYGZhsq+lmPw/dZ0mTTxXCus9AuTPGd/RhB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32356819},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ae27e55b027c66bf5b80f596da866f8485ac491d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240212_1707721782984_0.7712374127946764","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240213":{"name":"typescript","version":"5.4.0-dev.20240213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240213","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"887490a3a99986d55d52b8601c51edf2d8634540","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240213.tgz","fileCount":116,"integrity":"sha512-nukKZr0iBKxjWgEm1N2/oS+XTNI6LlBOi9tRrjbInv0sYS52mlSuDv5f1jAtjHSVhi5mk4jsYJ4DvypJXylP/w==","signatures":[{"sig":"MEUCIQCpLh41i3oJcMHBXfBCCbqgEthBdzvhBn1sn9xsxd5yJgIgbvjnTY2zFi6x1Sh9m2S5aaeB2CEe+BlgyplKBs1+GwM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32357575},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2a0edf7949ad8427e3ef233a4c549ecbe32953e1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240213_1707808190489_0.968933131064398","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240214":{"name":"typescript","version":"5.4.0-dev.20240214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240214","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7412fc712e698c6c3bd36d2d336d75eb7ef2c614","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240214.tgz","fileCount":116,"integrity":"sha512-JXOvFnlY/tw/adrzpfOUIrdf8PeIsfW7ljice9bP7dK/dBo/F0VcHr98QA5KtPG1ECsYi2Sl/d9AnucpUCgAaw==","signatures":[{"sig":"MEUCIFKWiarKgnKst91XZJSWkUrB0gQ+H2644IVYOwoejN6zAiEA8qvNoHdIIPVPwW83/KaZ1T1jOptJeCS5ioa3mGZlo6c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32357063},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"db3d54ffbc0a805fbdd5104c5a5137d7ca84420a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240214_1707894603184_0.6939846273618786","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240215":{"name":"typescript","version":"5.4.0-dev.20240215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"68015a58c64dd0cb92f5f74fa5ee294ab8a11ae1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240215.tgz","fileCount":116,"integrity":"sha512-XC4/5bqzYJYPwH1EaVY3E7gtieevPWkKc1oBcHdiZytptFaqms77yIiiXmCpZsl+ydrcxCijAVzBXLWxujaksw==","signatures":[{"sig":"MEYCIQDsbZY9HSn9XYi2tTb/MSZ9F63SvmkVNaE9QvcSIt0bFgIhAIHWKqBuioghV1Y1x5lQDyDZhcF4hkRkUNrGDZzC9ha2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32357063},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"67542c4c1f125e458ba69fb317b74122324502fa","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240215_1707980982911_0.9477644264786134","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240216":{"name":"typescript","version":"5.4.0-dev.20240216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c8b421e73196f6c870b77e18257e81d5d603e1d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240216.tgz","fileCount":116,"integrity":"sha512-7BzXktZ/k5MKVGH9g7dErlRV5WLo1D+Zpae6cW3aL2/gyvG2uWkz54vLy3ICKo5j+Qtu/j1mTitMIiE24n1HLg==","signatures":[{"sig":"MEQCIH0uULRIdRoemeFhY80VQLM0/XDDVBRRglopkPogkZfqAiA2+HPGxQt2iGQB699V/lXBDxg4sZUJaLYax/UX4Q+kRA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32358525},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c4de2afcc289d42b7bef3df30911e120e8bd6d39","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240216_1708067386011_0.8825902557136933","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240217":{"name":"typescript","version":"5.4.0-dev.20240217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240217","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b6275a3a14946399a7f0e020a1d849c1f6553e75","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240217.tgz","fileCount":116,"integrity":"sha512-GRzxhALjSGwP7M8C4HBUos+SdVdOK+mh5ZrFLZqHpIik/qWqXwkLQzUpxGIUlXZEUcuRb2vVYwSbKppNmHQmbw==","signatures":[{"sig":"MEUCIQD4b4fBUcTVjTEKhO73XvOlXy1EQQYPn4WfQyhIDoLI5gIgXArE8DDSsJ4g47ZMGOq003P7BoJQAzMYe9yZ50zyrtc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32357591},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"86a16636cac9599c8752f8588f4b9518860b47ff","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240217_1708153777547_0.9548059123422383","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240218":{"name":"typescript","version":"5.4.0-dev.20240218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a08475210a720b3a9e816f44f1b968c7a9ef943f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240218.tgz","fileCount":116,"integrity":"sha512-8/ZdxUXugwsy/C1JBJBbYY/JJbt0ug4kkJQLmUfzwr4h39bRYXP/K9naP6u9nAPFWUPPEj7YWk+gDz8qg8HcsQ==","signatures":[{"sig":"MEUCIG39VYxacXsLf1nGXvsbDAAFJuRrtjREPFaHn6K3xgEHAiEAmRo3DYjbABCEqSwNnBhkhLUAyL+0lVAZmyfIE8z7HL4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32357591},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"86a16636cac9599c8752f8588f4b9518860b47ff","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240218_1708240189758_0.007807597454343895","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240219":{"name":"typescript","version":"5.4.0-dev.20240219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d12d5997a40ecc9f41e91526ebb867969f337636","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240219.tgz","fileCount":116,"integrity":"sha512-8axQCpRgDdLJRq7TMsX6U4zYXmHY5akkaGMjiQPro76rLIHMhmI7llfnpuV5wAFAtu1vARTTwccmWy4h5qjEDA==","signatures":[{"sig":"MEUCIFoqWDcAXROKhRQiP8c3d22RFQTmTMRy2ZS+kxoEDuukAiEAuTu4TaUosRzU2DJXTi+wAW3yCKbUfpaz4UkWM9YPtVI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32358983},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d04e3489b0d8e6bc9a8a9396a633632a5a467328","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240219_1708326595873_0.06527085656511877","host":"s3://npm-registry-packages"}},"5.4.0-dev.20240220":{"name":"typescript","version":"5.4.0-dev.20240220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.0-dev.20240220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eace77e5b4fd613d17dd0e49d2aa924b2d9a3c89","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.0-dev.20240220.tgz","fileCount":116,"integrity":"sha512-mUiEcRGUeqXn0/xKi0K01LrBOJ4D1zbn5oVpvofeuo/QUTS/y4+r46h34STyDGMc2KnMYJcWUt2XMalady2J1A==","signatures":[{"sig":"MEQCIAbjUANTWNZ3V042SBC4JmSVgmNrsJ5t6aVG5J3v4euzAiAEBpKxTR3uHE1Q/0GNMa+Th7TUsgfAcKcPAhQYM1sy0Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32358983},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"363abe8408ed2de0f3d7625c165e854e8284d18c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.0-dev.20240220_1708412991428_0.9457254872214207","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240221":{"name":"typescript","version":"5.5.0-dev.20240221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"13ef0c4cb7a620881530b1753658689bf24c7522","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240221.tgz","fileCount":116,"integrity":"sha512-zAZKYmbJjrjtMiLRDk2y6cDrzziF/ahV0u2ISZ/ZyInDBy/XFIC4R9baJphn6iC004KhdSEKGwy9s+HheBwUlA==","signatures":[{"sig":"MEUCIQCDP2LLS9ORgEuIEjrAADu1uHEw6Giyr0XVMKnH0LnFzAIgQpWa6oPoTNbNSPaWX6JdMGwwAW10BjovgUgDKs8DMus=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32360082},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"35a88398013c3dac4a94fa43e43f5023b1339f40","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240221_1708499400542_0.12045356024187459","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240222":{"name":"typescript","version":"5.5.0-dev.20240222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"143e6e3ca3af0932aab3720acaaab8b90bbfdf3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240222.tgz","fileCount":116,"integrity":"sha512-wTT3hD6G2Nx+KZEDA8HvHbCsnLqtr+ye+OfVEtFARqUKtLcZVnHJhGk99OYhuPUhkAv9UgwAUQREBcyZupPhYg==","signatures":[{"sig":"MEQCIBb0W+sd2gZofyWk6Ht+mXwCQHV5CFMCElU3KQ2vYulbAiAu9wbC4bXMwb8WF50zi7qs0ERjwx8tLOIxsWyKjcoW4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32360204},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"78bc536cd44aa42f9c944ab3708dcddd8a7e34a4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240222_1708585795108_0.43053757150645033","host":"s3://npm-registry-packages"}},"5.4.1-rc":{"name":"typescript","version":"5.4.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1ecdd897df1d9ef5bd1f844bad64691ecc23314d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.1-rc.tgz","fileCount":116,"integrity":"sha512-gInURzaO0bbfzfQAc3mfcHxh8qev+No4QOFUZHajo9vBgOLaljELJ3wuzyoGo/zHIzMSezdhtrsRdqL6E9SvNA==","signatures":[{"sig":"MEUCIQCQq2S7sgEEjK4MRTi6sp4lvsqJTSwUZBTOj1m74vgxXgIgVZHHLi9XHyC2Gk3d5zsGZAGsKgC5LkO9lfqZYbUkYWE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32358807},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-gInURzaO0bbfzfQAc3mfcHxh8qev+No4QOFUZHajo9vBgOLaljELJ3wuzyoGo/zHIzMSezdhtrsRdqL6E9SvNA==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.2.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.1-rc_1708626498385_0.13962766535057813","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240223":{"name":"typescript","version":"5.5.0-dev.20240223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d918f0c65680d6d85f99b37fafba6942bb4311b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240223.tgz","fileCount":116,"integrity":"sha512-5YqrvRjoUfyzQzxctN5Nan2HoGMhM76E6WCiZmAOSYXsQRU7G3NInX7oSHlEfxYK+9hwhuHdIqj8J9lS5j5mpw==","signatures":[{"sig":"MEUCIA1gVzV+ng0IMKlOHITnoEMzEm0D92JL8UdIaEq6cwkEAiEAjwafAwoOPFAwmM7xEResq9unUu1Y0dE5ohotMeI83og=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32360310},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"16a36a71f13893bb0d99be45b9b0b3f53fa56a91","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240223_1708672189251_0.165990427490462","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240224":{"name":"typescript","version":"5.5.0-dev.20240224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3e20340f6b5faafbe28462d38a179c38aedcce0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240224.tgz","fileCount":116,"integrity":"sha512-mOiRt5RHvvap+xlmjpkYjr22olnof2cj2TUc98uAAY2fmkxcQrsa5kjPIiT/PUoOYda3XhDvvnWL6h+z6Y4oqA==","signatures":[{"sig":"MEUCIEvERrMzeVuDwwVG0YPNCgX6j1A6zvdSVGdINKhIy+TrAiEAxWh/XfDJ1svfN4yHX5kp3Xp99/QsPPGdykHpJfyzeqM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32360310},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"1162564a681111d23893554a17d235973bb68126","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240224_1708758596496_0.5273795116521176","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240225":{"name":"typescript","version":"5.5.0-dev.20240225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9923a147e92b22cde3636271acd24e880e38eb6a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240225.tgz","fileCount":116,"integrity":"sha512-0Zcu9sgcrxHNKb2BiBo0wbMquDvFR7QT7yySgRtb5DlkdgzuVS+xQUL5stK48NHLb7GhHNqqVhJ3zDHgoT8SbQ==","signatures":[{"sig":"MEQCIH49RJoxj1i1AsQtK+9+JXMnqZ1LTI0dLHAJvF+Ld8E9AiBFJosA8iP9dgLnasX6keOsXKi6YJ+vpj548D1vWtCbVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32360310},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8f531ff3ba221344a93a63312326f9decfdcf458","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240225_1708844997301_0.2962828139296254","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240226":{"name":"typescript","version":"5.5.0-dev.20240226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b571688666f07e4d7db4c9863f3ee1401e161a7a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240226.tgz","fileCount":116,"integrity":"sha512-mLY9/pjzSCr7JLkMKHS3KQUKX+LPO9WWjiR+mRcWKcskSdMBZ0j1TPhk/zUyuBklOf3YX4orkvamNiZWZEK0CQ==","signatures":[{"sig":"MEUCIFVhd0kak0JDcMSvRfW7Vne8NN/zzWdcNMlgdDJg/qTVAiEAnLFyQjFJ0VfgdxvIU7HCBLVuBCvR+VquGq86ySYYRbE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32360310},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8f531ff3ba221344a93a63312326f9decfdcf458","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240226_1708931388849_0.14676855007186318","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240227":{"name":"typescript","version":"5.5.0-dev.20240227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae8a02186ac1c76628d530c4a6954d2fc9620b69","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240227.tgz","fileCount":116,"integrity":"sha512-cPljzopUqWPey1Yh7KAE78JSTjoOZUqm8csCGLiu+Hl12xZxGUZFLQRS74IwoDvM+lzoOBwnM528UbYITO9ouA==","signatures":[{"sig":"MEUCIQDeUVR7YYAhKPpmEb1aBQTHmBD7Ptsm5ruuWfv5i82h9QIgMCRPt6oFFi79Ru2rtD5R+wVHAZ5zfcm1w78kDBk2Dr4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32360510},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"a77370342dcdbd9273fe1716390d90a9b0d88fcc","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240227_1709017827861_0.3946311588891116","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240228":{"name":"typescript","version":"5.5.0-dev.20240228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d29a3365e38041c92485db0146e2f53d160ae4b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240228.tgz","fileCount":116,"integrity":"sha512-bdFIn0U4p7+PrnESpBPXDc6jRXynawwVQssEw2Pd2o/Mud34LwGgqHXOgIY5EEmZFPjzT3osXB7VKQP1cdHi3g==","signatures":[{"sig":"MEUCIHWr9n/okUisjRvkUDuR0sJY1rKQ4t/UwQ1AgP1kLND1AiEAmjk7JytV+h05jbH0DRat9ms/Ng3rAM5QXjbCEtGPKZA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32312442},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"df8d755c1d76eaf0a8f1c1046a46061b53315718","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240228_1709104209762_0.22455078947074703","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240229":{"name":"typescript","version":"5.5.0-dev.20240229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240229","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"22f020ac7e5c5bb7fc4b98a8bcf7ba6562709fbf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240229.tgz","fileCount":116,"integrity":"sha512-kxMV/9mfAvW78+JvwKsVFk/J+1zFKML+RKzz1S1ZoLxlQ8eu+75VvEo1pUlbQ1E0kF6lIFOK9fMPBt6HMrA51Q==","signatures":[{"sig":"MEUCIQC/f11+XhZ4JjHpepZvdpoHDI9nEwkHkeeJA6ki/ZB+vQIgFAMgiv/Q8sIV9uiKVCunSfS8QosufTjuKCbI5HqCHu4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32138490},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"2d70b57df4b64a3daef252abb014562e6ccc8f3c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240229_1709190589590_0.005059967995683312","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240301":{"name":"typescript","version":"5.5.0-dev.20240301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240301","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"587925bb23fab32ffb3ea9646bd1e3d4e0b29712","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240301.tgz","fileCount":116,"integrity":"sha512-2d5wSd1gEdj2cI/d6PTglOGPgIszrnI20znF3EyerbO3TNe33q+XVN5LNxVAkllrINCw9dITdfyvbJuA/F5itg==","signatures":[{"sig":"MEYCIQCZOHi1xVLgG2/rOXQQQRqz2tsTDJW3tEuY4Tgcuf2b9QIhALY8HE/oSYyxPFbTq8aVtt8rJVjf/Bhone9isT8lPvGs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32137907},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3964aa183eb66e3e853ffbe26be1125b5d22e5fd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240301_1709276978420_0.22303103914056455","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240302":{"name":"typescript","version":"5.5.0-dev.20240302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240302","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bc7f8f4e6f4fcd2c90013f4f8284155ae305939e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240302.tgz","fileCount":117,"integrity":"sha512-Cbr0okulu+L25e+Hg7miQGjy1iPM2jm1BkdFBYdf+JK7eCw8HF19Ud22FuZ15Nmcfxz9SU384MNQFFhwy+adrw==","signatures":[{"sig":"MEUCIFZIluDfLsSo4vwcGrzf8Mf+Sw9/8dEMNknEyyNYR3UAAiEA0boAr2S5FxihzSbORd5FPkCXudh1SSC0gbojGiTcTXo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32141947},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0d78152bd7947694cd3e3d8422e338bf03499096","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240302_1709363377283_0.3655942990944627","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240303":{"name":"typescript","version":"5.5.0-dev.20240303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240303","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bb9d732128585370999052e63c474ebd7b1e8904","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240303.tgz","fileCount":117,"integrity":"sha512-CArlmRujLMr+lZw5jO+0yp94n8PswoXkD10bgEBn45GCY6CSdzMJFJy3UneQWik+cB3aq0hZ8iHWEtjY93ALNg==","signatures":[{"sig":"MEYCIQDF5wR2UpbxxFhErh6pqKj7VnstJ7dvmY5tS9VIW230kgIhAMVCT1gXqX1XFQefK3UkWQ2ZUsGloMLN5iYWLXS77z0d","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32141947},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"1d6d962d3132a901f5fb48be4a389c45faf5a74e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240303_1709449770784_0.9573877674472684","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240304":{"name":"typescript","version":"5.5.0-dev.20240304","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240304","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7a8cfedc320a774874bf975ecc76b2a390c5c2ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240304.tgz","fileCount":117,"integrity":"sha512-nu7H0CgsNe6Q9dJLsRRKB4E7KNBHuhJVJtC6vwC0GNnunJLGh8ZGtEZzcFx+feNnpAC/TWLs/H5EAea1wruBUg==","signatures":[{"sig":"MEYCIQC+AU+EvnOytAb2QK3SleBiyY2K9t68hdH+8K/r07igQAIhAMCHzsRSjEaoA+C3/3XHnE3FjAr0N18RQAHJnnkNbmPc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32141947},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"1d6d962d3132a901f5fb48be4a389c45faf5a74e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240304_1709537241076_0.4092948169075812","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240305":{"name":"typescript","version":"5.5.0-dev.20240305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240305","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2aab19f2dc0350ea2b74b1c4bc3b80bd54dd71cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240305.tgz","fileCount":117,"integrity":"sha512-ERkltjdukpttYHdXPg6cQAeuQrK1BIZ/QnNXLljBx5r90B+8lZ7pZ1qCL/XHHsUEi0lkVLpf9LPfwEYxie3qcA==","signatures":[{"sig":"MEYCIQCgEDxviN5z3EVkoU8zCYfiEaeUTgpFXyh0AqTioGnx7wIhALBzc3AySgcpEtaV7l6M9jkTjGsilTNodAyfllDYgo+n","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31596396},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"353ccb7688351ae33ccf6e0acb913aa30621eaf4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240305_1709622583278_0.3332264437024226","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240306":{"name":"typescript","version":"5.5.0-dev.20240306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240306","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"230552a7143ec53c507e3497454387eea341fcc2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240306.tgz","fileCount":117,"integrity":"sha512-8fi3+9qaHf/GQh7oo4X0HDxiWBwzRdGfgyXQlA/qUQ5NBBSbt3LCJFs2nlRBEd9pFBN5RD9Gfzyr0c3b+Ev9+A==","signatures":[{"sig":"MEYCIQC0A/Fsa+jby0J9CZnqUhTnhJvvmAP6uDuzAjMUNyW9TAIhALI3u3PxUTE3SiepNd5u7RenNtLAJexy6FsQPtv2PfHM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31596396},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"353ccb7688351ae33ccf6e0acb913aa30621eaf4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240306_1709708993194_0.6861318590965655","host":"s3://npm-registry-packages"}},"5.4.2":{"name":"typescript","version":"5.4.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0ae9cebcfae970718474fe0da2c090cad6577372","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.2.tgz","fileCount":116,"integrity":"sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==","signatures":[{"sig":"MEYCIQD9KDUDhr8jnQRPbwQksfYoUTKpR2JpjVq139G47ki/NgIhALAR2LE5NSsYrI7rpBAJTrD9+qdl6iNpHapCu4EtHSP6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32358792},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-+2/g0Fds1ERlP6JsakQQDXjZdZMM+rqpamFZJEKh4kwTIn3iDkgKtby0CeNd5ATNZ4Ry1ax15TMx0W2V+miizQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.2.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.2_1709748898504_0.4369726060704444","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240307":{"name":"typescript","version":"5.5.0-dev.20240307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240307","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dcd10b4a4d5a274f40cdfa91c75ae7a940ade469","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240307.tgz","fileCount":117,"integrity":"sha512-9QgBAVHg1keeajSXIqq1ngFy3yTA0um5YWoLNVSfPtIwqqYoVqRjmh4oJKJL4YM15C2HY8IXL/UEUBIjXm/tjg==","signatures":[{"sig":"MEQCIHvuNkj1l9q43mS3u5zVtyXmTMKFRFfVlIFHymfDO7LmAiA4FNtk8yqsri7OX8SqXcTNiJG36V1EDBBXkF1rGg0KOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31598772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"881f449a8a10839db5d535c3a407621d53c78666","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240307_1709795387107_0.5527349740559773","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240308":{"name":"typescript","version":"5.5.0-dev.20240308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240308","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f26398ff159ce430b05adbc77ba184da45ab7f73","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240308.tgz","fileCount":117,"integrity":"sha512-HskK9uC+zmt8wS0GYh2EoP2u2nSJELnbD3mjl1VwPlnjxqwyHkAIV+dO9bnIWA0t/KL9Q7hDUzIIYQ15QlJFtg==","signatures":[{"sig":"MEQCIDwAPKKFzaTnbJxDFi3EWF2Q7IzQ97yr5+58X0QMFZXeAiBOadb1/KGVGB2gsG50Y0yvzc8/p9inWMBWHle/Rt5KCQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31600122},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ddc417bf3c05c86dfa939601700c018acc18ce14","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240308_1709881801306_0.6437323708295577","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240309":{"name":"typescript","version":"5.5.0-dev.20240309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240309","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"71f8ce4dccbd207ae403195f4d873588633e7a5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240309.tgz","fileCount":117,"integrity":"sha512-5iYI0onxTBI64bT7U5AzRRUlN1rpBZqkEX5IByWg97YSkgzN7EiRzzRoHC1dOYb19pThxBee6gpkqib8aL9UpQ==","signatures":[{"sig":"MEUCIF4Tof5HHEL76mlPXyrbCTlx4Coi3s4aIinYoiu6szixAiEAj03c8yttcToWAqIegBoklk9cOVgB2njv90ZAEx9rMEA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31600608},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0a975626ecdffe557ba9be0c47c8ff63b5fce90f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240309_1709968195600_0.5296603519940619","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240310":{"name":"typescript","version":"5.5.0-dev.20240310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240310","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"358ea39f5a12ad45c404316c8687229ca3a36911","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240310.tgz","fileCount":117,"integrity":"sha512-5cC3ym7BKW/xa0duhXDdO/k3IP+1P6ZlJlZDtsyCJDIf/oX+J63a44EFvrMrpg6GH47JehqPHqJ6eaIlcyQE1Q==","signatures":[{"sig":"MEUCIQDjaLkz2uFNHF3Efy5UYH+LsmuOOZxwhiuBl+xAPLld8QIgOMzdvdGDPvmQ9dOQDsQdxKFA9+thAetBL2SqUyVdhf4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31600608},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"506fa2f18daad0feb145ec1e64dc407ce2a94552","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240310_1710054586206_0.4233845112953758","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240311":{"name":"typescript","version":"5.5.0-dev.20240311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240311","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"98eb4774ff5dc21d821e8b0c60e06ad0c0c7e693","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240311.tgz","fileCount":117,"integrity":"sha512-Cdp0eYgn/19lkcrq7WCqQxmnvCqvuJrd/jGhm1HyPMSYVTGzjxVP0NfXr2A4YVS12IAipt1uO4zgAJeLlYG2JA==","signatures":[{"sig":"MEUCIEhGI739PDZQ9rs+3twpIxQAHZ27CDSLW8K+W0VcM5jHAiEAy1TxWGk7Z4PjyqokkKlmTH6+kLtQuC8x5thqm4NEOFs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31600608},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3fca8c842a42bb43ba5a86dcce1b7fb0eae6c7a4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240311_1710140999588_0.6900159687185168","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240312":{"name":"typescript","version":"5.5.0-dev.20240312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240312","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6164816ce937d23391cf87865f25baf8e5b5057c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240312.tgz","fileCount":117,"integrity":"sha512-CEPqB9IvrkCgyoFCmsmQH4AXsXM+KX32FQvmVk8LYecfoNsow5+nW5ZwI8MiQUoGNZ78uTINFwyM1M6G/aNSrA==","signatures":[{"sig":"MEYCIQCmsXFaxFua65HNxbGTfNgLI+6t+ECXisSP7vYgo4DHSAIhANl3zgT6RT9HYvDRfAzgbCwtvVw8hojEuEYgt6XmF+RO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31614661},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9bdfa441c687316b51c8f4329fc6c0535a8f1bca","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240312_1710227426022_0.8511366248199232","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240313":{"name":"typescript","version":"5.5.0-dev.20240313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240313","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"85188512e63c98366d29b61752fd03fddd2b0c2f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240313.tgz","fileCount":117,"integrity":"sha512-6fXTCRKCmprlwHuUHH92w6Ll7na8PtjPCCUmUTHa2yl2lJZBtWNw4P/JmV0PuNMaByRWVX6ai008B7TYBKp3QA==","signatures":[{"sig":"MEQCICJ4LsIVlFEQ+ajwEUHE7nIHtW3whiBHp3Ir/kpTRM3fAiBdI8PAYBSV8kAKIyQxy7bpKhtj+nZjXNLO8MoevIbAFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31622726},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c1f0f7cb58b12232d5e9de3e7560376e8a70ce56","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240313_1710313788200_0.12476572247914919","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240314":{"name":"typescript","version":"5.5.0-dev.20240314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240314","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c75938db2cdc677891a880964c4ee8919b1065ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240314.tgz","fileCount":117,"integrity":"sha512-8yyAVbLSgGrydN7CZWeP+GZ5zkEBh45r0LswVPgxNDjBuDx9VuKtp+ws+Ri122iwfy8vGr5b486IjeeVM49Crw==","signatures":[{"sig":"MEUCIDUmYD2B1mtIZx+yBxbcFNuGwVMLDUj3jIMdBMH8vVKaAiEAxtBd7gfhy+W9wxTuEv6si51ZZzr78/0gIfPX9NyMxI0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31634581},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"1c5706092ec649b8adf251b70ed3ea33501c133d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240314_1710400242680_0.4091871991267304","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240315":{"name":"typescript","version":"5.5.0-dev.20240315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240315","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"39bcd0c251bb51790866f33696e470a5ed3725ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240315.tgz","fileCount":117,"integrity":"sha512-unbI1s+RxosUsAsJZMLheuH4p87PMzm77BS2Rh4KNKuPFKEA9qhWbsUMNZ4zu8vCzJOv1KSgISMMBEx8A+ofWg==","signatures":[{"sig":"MEUCIQDTf+hXWIJYt0fYTs6Den4yljJJFP/M2fPayIdJSNyCcwIgSmqaZ2q9K9nSE2HvtDwJa3J0E0dN+OgvAceqrFTdpRM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":31636150},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"60cf79127af5025ebdd239aa47ca136e7a366347","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240315_1710486600701_0.4579938115129929","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240316":{"name":"typescript","version":"5.5.0-dev.20240316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240316","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ed35a0c78acf6a68c5eb3e15fad274435b5fadfa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240316.tgz","fileCount":117,"integrity":"sha512-pA1B+Y6sESEbRysnkS6A4yNqIp0KveaiEKYDke+VDIBFBED2KZ/eH44Cmw877lUjBS5cwXRE20YzEwyMbAlITQ==","signatures":[{"sig":"MEYCIQDYa+E47zO8TLx1QCGFFrXMm4puckGRKU68dvY2UeWALAIhALbrHa9O1bpheTZ8ofRXtzeBTE4AmXBGQljNEN12xk2P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21345807},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9866640f92a374f83615ef9d9ed6ff5202a6dbb2","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240316_1710572986770_0.45574504771238367","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240317":{"name":"typescript","version":"5.5.0-dev.20240317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240317","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"04e3d6c2621c2959892f8419f0c0804609167f06","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240317.tgz","fileCount":117,"integrity":"sha512-Wb4imX86z4WRFl49ZD1e4wxCXnyhwGpk5rIeoUpPrgPnzkrxmsaS6ZaoMNujsIdD50bayg+GKJzh7xYmiMnfcw==","signatures":[{"sig":"MEYCIQDgmi0kSd+wuucwWHw4/TXUg7m4IWMhWPJIrpH9T38powIhANVRhSNa6yfbnHz6t/WwYrdsike+FDtD8BANkITN2j6A","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21345807},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"eed3234acb8fa12034d5591a800d0cc0f9798d5c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240317_1710659396433_0.6240868742898682","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240318":{"name":"typescript","version":"5.5.0-dev.20240318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240318","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2fc9454fed98e8952ba524dee0cde991a752afe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240318.tgz","fileCount":117,"integrity":"sha512-NLUk3mN8h9UWmeFns5dhiRIIZffmDePNOMPwwr36tYoJikteOGLNCOOcCP2Yvc+cOzl/mkBOUaEngUBGYRJBGw==","signatures":[{"sig":"MEYCIQCuqYNzBMTa1sRuEJsssb9n+izuSmfAghb9+TgAOK6BBAIhAOUyDwV+iOMcA+YXlGCw6U8rMyeYlHzey5pT9G024K8a","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21345807},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"eed3234acb8fa12034d5591a800d0cc0f9798d5c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240318_1710745803084_0.3983228543586732","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240319":{"name":"typescript","version":"5.5.0-dev.20240319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240319","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6b594a547176b9ebd8378e37e40a373a98037d71","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240319.tgz","fileCount":118,"integrity":"sha512-mgOHxQ2m53mqe3Yc8tMFTNgDUntaM/hbDXt0aGm1topYDi9pVGCTkhUfNbiZT4X6De3Aa3trcpoc8FM1muzcUg==","signatures":[{"sig":"MEUCIQC8iNpLI8o885WZPZ0A2LWd6RwtZ7tQgB1R1W6CK7gzrQIgJSWvY8BquNKreuobTAZpJQJlALkt/vZ+IXaa/HCyD5M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21355160},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"a9460c8c9367b042a6061000e53681afb2019b83","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240319_1710832199495_0.3905721675234861","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240320":{"name":"typescript","version":"5.5.0-dev.20240320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240320","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f0b47eca0b35a5d8f1e19217cdd8ab1a432bd745","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240320.tgz","fileCount":119,"integrity":"sha512-f6O4RIs1q/POZywDLiRJ6+2rmyW+S3Aua7QYVwdSf06SiQv//zptr78enmBWkNI70FPCMNM20X/cVgKiHR8ryQ==","signatures":[{"sig":"MEYCIQD5CTXYk16yCfrZR6n2IsyCqMMhUC5j8lvj4K8U71/aBgIhAIlBvhUxBlV4AWKciCNSzr+JdN17psLg35++iv8xkAU8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21356465},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"309fd3db81955ef7a4dd55a80e333b2b767717a7","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240320_1710918594289_0.7319949300023465","host":"s3://npm-registry-packages"}},"5.4.3":{"name":"typescript","version":"5.4.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c6fedd4c87bee01cd7a528a30145521f8e0feff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.3.tgz","fileCount":116,"integrity":"sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==","signatures":[{"sig":"MEYCIQCrng3z/Y+1iIzCDbpmDeXU8LdtARZhAZTDvy2EfLyP+QIhAIe5XZqjRo/+M/BW5tSDruBpV22/73dsKyUVgI3Gc+IL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32358516},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.2.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.3_1710963057303_0.013818591136137925","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240321":{"name":"typescript","version":"5.5.0-dev.20240321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240321","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e3369090a700a87fbe07ac6499b860485a3d2fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240321.tgz","fileCount":119,"integrity":"sha512-QEUqMB18VAUQBHtHlq8BfjxGZzFkavH5fhZn+I97N67mDZTa86n1S8kiRKmrbxVwPAdvn3DYtJzcGq5OvdWkmQ==","signatures":[{"sig":"MEYCIQDsXriOErmwjkQQmOIakrRWc5SWwu8tZCrjrGn2+VavrgIhAMAHEAKwKsetYfTDSnWidejLVdCt9m3LmK2KOJtiIItD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21338286},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"dc113f8170bc9408961e4e89f1ffadf3dff5a41b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.2","@types/chai":"^4.3.12","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.5","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.4.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.1.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.1.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.1.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240321_1711004997266_0.5525697028448457","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240322":{"name":"typescript","version":"5.5.0-dev.20240322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240322","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2318ec29a8971394749b7e7b9b37533877681855","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240322.tgz","fileCount":119,"integrity":"sha512-z05wAbLJ5lx9QKlbZFaV+B6T8Y/9AvVb4ma+glJ0JL0lp+QeAZuWSDoBALphG6fwkvfjaCYWb5t37VcUOPTR/w==","signatures":[{"sig":"MEYCIQCHca6KU+dI3GEOOSMpfO6I45k/vuY0OPDZzEhs+uEHswIhAL1/x8AXlke0gCVb/8tB3hQWLH4knUN3FmhwwmRwkCs2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21338290},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b75261df74b01dbcb1be1499d66ec3b5647ff40e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240322_1711091397774_0.24135314986786893","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240323":{"name":"typescript","version":"5.5.0-dev.20240323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240323","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c6916ad6fdb5971f87ebb3a5d34d91ae75f0def3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240323.tgz","fileCount":119,"integrity":"sha512-FD1ido8fG+7+540B3/WeTAKq6Nr4QLO0IBrZc+jBUj4pEqwG15o/XE+GKv+dDryLvgtchSHXZWserTik0Vkq4w==","signatures":[{"sig":"MEUCIAjssgMYSVqQHUyeWGRbX0n05YIHCNI0TUp/rYfp8d1+AiEAifflMs8B8jmQk2JpTblq4PzsQOnL3aX1GIsxEm5FMys=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21337410},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3c637400da679883f720894e16c5625b9668f932","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240323_1711177859081_0.6151030311631251","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240324":{"name":"typescript","version":"5.5.0-dev.20240324","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240324","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a0eb9b003e1cf3f66c857e05cfbee8c1f9666237","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240324.tgz","fileCount":119,"integrity":"sha512-U3uIH1GEaD9zBFzYICNRbm+eDTzrOY7qOgyjFKL9IZbK1j1upzvmaLvOiqKC+v4cgFm0fG2zVlTxn1hmKCrZdA==","signatures":[{"sig":"MEUCIEvxeU/0RVAK8glGx2Veb3CPkEzrE13JfczwgGNNUgaoAiEAiZLvHJVLYIHFz7a9s/w/m4lIGSkuzh8La2SwBMIwK10=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21337410},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3c637400da679883f720894e16c5625b9668f932","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240324_1711264193912_0.483914913479367","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240325":{"name":"typescript","version":"5.5.0-dev.20240325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240325","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e2eb7513bc1e9ee1c23291b77fc406e6252804d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240325.tgz","fileCount":119,"integrity":"sha512-3kSBj+PWimbJvH3s/sQiIU7zBIOWAEpHdD3lykIykePugc1qXNIK8d5/WJJNpzH4q2n6gY8pz8lLoe/HanVGnA==","signatures":[{"sig":"MEQCIFbkXsH9UXjhf60Now8MHr2na/qnFwP4x3ndu0PbdiAQAiBGZWf/bscYj7rvVmn7hU4Ag/Iyb7pHwaPAWZOqXPIw2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21337410},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3c637400da679883f720894e16c5625b9668f932","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240325_1711350603660_0.8781099894401136","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240326":{"name":"typescript","version":"5.5.0-dev.20240326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240326","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75ceca3bc48d55822422a3255ad6b22028cf6cab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240326.tgz","fileCount":119,"integrity":"sha512-SxtRpcyojeAqYONbjjN85fZh06WkdLhJiBwsfn6Ud2BUMYFIdjKMOeDyBXPKCmBArP3Ax+PZ0hq1Y2vli76zHg==","signatures":[{"sig":"MEUCIFfYh28QGHy/kf7al8fLa+k1q/21iKnm4mH8xGlk5IXaAiEAvNWocBL2uZRncWYuesyyhUWmkRWemr9RslL+59riVrA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21338580},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"088f25a8bfe466ffafd7675731a06f07009b447d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240326_1711436997215_0.12879511317479242","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240327":{"name":"typescript","version":"5.5.0-dev.20240327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240327","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bd5aa22496947a32eef83f2339b04c51cccaebaf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240327.tgz","fileCount":119,"integrity":"sha512-8nAu1p3cwPDGwuJ2XyLonUMdWYtHIyFRi/3qA0FYNmArajdxYW15fh9szcDlLF1nPz/3kM7sbT1q8K7GLTPvxA==","signatures":[{"sig":"MEUCIG0RjV07xkscads3BVE3ygAV/VcDP3pmmfOjUZPxzZAaAiEAzujJfUB2HQ0rsJLmp53tw2buYBMB8lUE9iB+1x75+FQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21355070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6d0cc1beda9a83bbd5926c6f4998ca93f5e777a3","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240327_1711523390829_0.6253580549704938","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240328":{"name":"typescript","version":"5.5.0-dev.20240328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240328","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7220748b50beb5284d404cccd37e4b7e8e6d8fd2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240328.tgz","fileCount":119,"integrity":"sha512-psmUop0GPegCmqZqysToBqpX/pKW/0YGwVc/Ma0kDOkruXO40euXu2GL5UM6KbL+nnyHiMtWiTmVQ+7To9s9yQ==","signatures":[{"sig":"MEYCIQCr7M5AZXaxFF5XUB6heUTGBuVdlS4mLOCW1dpP8xYkcAIhAKOKZbnJFYw8PklinkxNwHnIquNZ5b7C1wKRivwXPcKR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21364924},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ebd05701827f60cf3657a740c53ee24c0b6413b9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240328_1711609791207_0.5945709445399829","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240329":{"name":"typescript","version":"5.5.0-dev.20240329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240329","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"88f97713822c730cf2d281964536abfaba06afc0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240329.tgz","fileCount":119,"integrity":"sha512-T1vHxyzRt1MeCLzQdY8JYOM1K9XRs4YgTOzMjlw8m5K19P9264rc22CyvUB9lA0vBIcMSDjObfh+/GVHMOXhkg==","signatures":[{"sig":"MEUCIQD4ize0vff+Hl+iWd89v+ZDnrNjuLxBrmM2C/CC6/QcjwIgEb2S7V9BYB3Ear1qTSGwK3XXb53tT++M2kIxN102fzw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21365569},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"075ebb492827ea2fa1a6229ed764d280ee5ac6f0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240329_1711696191065_0.3348849313386384","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240330":{"name":"typescript","version":"5.5.0-dev.20240330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240330","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"46db634d9128b763b608376ddbc61626836cadd5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240330.tgz","fileCount":119,"integrity":"sha512-N8P34nHmNVcIbh3AsZ3W3rl9TCcvO3R5mHu4HzF1WtL4sUZPy+huGhENKMmwgYS1sxw2l2ts66hQdZmv+jHZxw==","signatures":[{"sig":"MEUCIQDCzr2FbeE9zeDj4y9u9qk+YS+U028gSyt4wWd8jF/OJgIgS1oYr4PlsyNV7pVUMOVLE8GOLiJkZlhaKW3ttbkOr3s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21365658},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"32dfb3752f4645a627b4293f99a91fcf7da66c88","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240330_1711782724505_0.3631908237438144","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240331":{"name":"typescript","version":"5.5.0-dev.20240331","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240331","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b898fa3febddb513f6e1cc3f2e3bf7542b23a92f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240331.tgz","fileCount":119,"integrity":"sha512-StCr+/vp6ratgAvX0z51Xz8wKQ5RzUb05sSKXVf4SbZFDPzI5yzxemIhwggAIw9ip0ZxK0kAJl6SBFQLKs8MBw==","signatures":[{"sig":"MEYCIQCEkEnQeGHb+qti4Fuu2g4+y8uVpbM8jtu88/CktUHlfQIhAMguMweiM/si9aJoqU+FuPtdlqO7HsRMfzpLrrW7HVEL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21365658},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"32dfb3752f4645a627b4293f99a91fcf7da66c88","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240331_1711869119617_0.820717500344585","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240401":{"name":"typescript","version":"5.5.0-dev.20240401","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240401","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2a38039c786a64eda2e801f1ff8a2562cd9f8a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240401.tgz","fileCount":119,"integrity":"sha512-YeImidiTV9afClWslA8QLyJTTU6PQ5oWyeBSS04yjoVelrK2kpPPtJdnGLooOdzfFRgtZhGIxRIffDen8X93vw==","signatures":[{"sig":"MEYCIQCN6y6yqGTHDD1rQRlUTe9QCIWG5rXV4EuDu9ZCxgv3JgIhAJmr1VQ9/01FFF10MFlcHKv/ejUPS/L3pcuIGvMhLIPy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21365658},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"32dfb3752f4645a627b4293f99a91fcf7da66c88","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240401_1711955514001_0.523305983302913","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240402":{"name":"typescript","version":"5.5.0-dev.20240402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240402","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ab9e8073036793f4b648c1fc38d2b989092bb601","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240402.tgz","fileCount":119,"integrity":"sha512-Dg6kiTZGVvuj9hqDzrqqUwZ3ruAcF1E7e9tSM53pP1XvZhPd4ZHLBF2rdbzjT2wIJOYL9Vl8OkAcL7dCJBB4Fg==","signatures":[{"sig":"MEUCIQDyHC89T+ayzTBlwYNug2LQHanfVbxfKfY68Do6PUGpKwIgMUZh0N67UIjnBaaa4VRd9ySybJEZrWHBU3gKnFblnZ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21370434},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"824cd6eb314bdcb8b7bde158025c82ebc014db0a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-plugin-simple-import-sort":"^12.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240402_1712041940749_0.959885988129991","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240404":{"name":"typescript","version":"5.5.0-dev.20240404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240404","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4047a68369753dbec926e3fe2db939ca3bc06168","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240404.tgz","fileCount":119,"integrity":"sha512-Knb9Yx0JJHc0mmqXLEPPKNSwOvPQrtYZEDLQY7Wns7LckkQl82AZ+OGTPG/ofwqx2QeDCHCtKjutZPy1UEiwKA==","signatures":[{"sig":"MEYCIQCKpm0HR4yKByPIH2TLsC1Ip1xDlUVkst/kt9ncmnTveAIhANhTLUduHc8nkyRrAtafNjw7e/VvceX0xdUE+JOT1XHD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21377114},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4a5f0f2b78d36afee184ec52419559a390cf17bd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240404_1712214715914_0.1901078309423958","host":"s3://npm-registry-packages"}},"5.4.4":{"name":"typescript","version":"5.4.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eb2471e7b0a5f1377523700a21669dce30c2d952","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.4.tgz","fileCount":116,"integrity":"sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==","signatures":[{"sig":"MEUCIQCP595+cNdS7eqvp3DbRRNw7Jjv3NP5l2wz69eofz/l9gIgAVkrD/XaA2SRZ22pEsHtM4XLMe+HWJAwhAbVQgkYUrk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32367184},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-dGE2Vv8cpVvw28v8HCPqyb08EzbBURxDpuhJvTrusShUfGnhHBafDsLdS1EhhxyL6BJQE+2cT3dDPAv+MQ6oLw==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.2.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.4_1712253615215_0.2567790480972334","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240405":{"name":"typescript","version":"5.5.0-dev.20240405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240405","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c5bfb97765ca699e57fafcb6b1ec7d728f96c37a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240405.tgz","fileCount":119,"integrity":"sha512-gMeTgpfC2KDhKDbOu7niDwLmSA+Jgbl5lGunCrVnmvoxh3FbTRjAzZ1IRrqB+cph3wWLeCdy8bxQoff1uHLXMg==","signatures":[{"sig":"MEUCIA79gaIEZbXewpbAKyuFc0AbJEXfDApVMMIvLj4VWu6UAiEA+3L9+OP0uatIlG9GBE5JqGUHZNF3dziibNm5k49lm6M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21431651},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4bfb4e6450f46dd2efe6ab9224ae21fe6461129b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.19.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240405_1712301080566_0.06932201144215155","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240408":{"name":"typescript","version":"5.5.0-dev.20240408","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240408","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"337832c87cf0db5a11f9efcff9c789a982ea77c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240408.tgz","fileCount":119,"integrity":"sha512-WCqFA68PbE0+khOu6x2LPxePy0tKdWuNO2m2K4A/L+OPqua1Qmck9OXUQ/5nUd4B/8UlBuhkhuulQbr2LHO9vA==","signatures":[{"sig":"MEUCIFK7OR/yuVlrJXW9+4iK+bQxw8VBiut5nZpkInX0ocYqAiEAoFfnsjSLmQVwL1tCU8W/FulpNtE6dUyytcWl4+z36g0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21432368},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"10b5059a9501000747e447cefb752c69108b594c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240408_1712560268813_0.9369188092410261","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240409":{"name":"typescript","version":"5.5.0-dev.20240409","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240409","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a6587e641a71a53f28a1cef1237926de0a5c8b4c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240409.tgz","fileCount":119,"integrity":"sha512-nQUzu2O0eRlESMnU/Xd9a2CD7MAvKPI1bCLB4Iu5aNA+cUymUnBAq8P3xaWipea0a3zRabE1UqwwxswMKp3X8g==","signatures":[{"sig":"MEQCIEwcbhSzthSsCgaOv7cGVagnQ8qCgcXYs/2xfBdEGAFAAiBR0iQiTX2kX7NcDaBGCVtXBvvti7K0BEeGDqBpakgBfg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21437321},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7a4cbfa7ea8c6b7a09a84d04bd7e45c815e8e0d1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240409_1712646686312_0.3609806064504255","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240410":{"name":"typescript","version":"5.5.0-dev.20240410","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240410","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3efef9780eeb5cf1d6ee3d069d69c41f95a6d369","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240410.tgz","fileCount":119,"integrity":"sha512-OvGiFb8iPBHHqR8RuhIeCM+j2W1TtPbTZLuesCEi4gulAxzkOP2B3jDPTWmcOmxvUeJN5pNzlKoi/reRn1BZww==","signatures":[{"sig":"MEYCIQDOJExjX3vTaoxWPI4yu6pu2kT1M4BtEJcRtEbUp7OnLgIhAJ09DWANg/WVDC+5/WbNkhXyEf64uWcL4ia8BUIiIaAG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21452903},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b6351c61363f7ed11f160f1b54183a905335bcea","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240410_1712733088674_0.5897351694192206","host":"s3://npm-registry-packages"}},"5.4.5":{"name":"typescript","version":"5.4.5","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.4.5","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.4.5.tgz","fileCount":116,"integrity":"sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==","signatures":[{"sig":"MEUCIQC/EuYEcwumIh3BWR4qQd2ePcVqj994eiB0Nr62t4tU7wIga9Vr8kSDkXAsFoDBGj074mtGYD8EAyykePA9Hppu2z4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32367480},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.1.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.2.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.56.0","hereby":"^1.8.9","esbuild":"^0.20.0","chokidar":"^3.5.3","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.41.0","typescript":"5.4.0-dev.20240119","@types/chai":"^4.3.11","@types/glob":"^8.1.0","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.0","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.3","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^3.1.0","azure-devops-node-api":"^12.3.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^6.19.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^6.19.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^6.19.0","eslint-plugin-simple-import-sort":"^10.0.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.4.5_1712759119125_0.23101014482257587","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240411":{"name":"typescript","version":"5.5.0-dev.20240411","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240411","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6720f5c5a8294a5aaced64b98c55c83c510bee85","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240411.tgz","fileCount":119,"integrity":"sha512-6MgPdKI7M05MarqCNIN0Shk4TwuEOFDsXIMOaEsvsRfoq32zZ3+fAuzB/y+nhs+Q2yGtEO8Or/NIdWU6t+B75g==","signatures":[{"sig":"MEQCIHso+SXVD3/9S9L5kNdxcolNDjbNPglRsTeD3bRo7wEDAiBua4fZTQSEuTvt6AeAyjAjC0zDVfh6uiJYywa1/O2RmQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21453635},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"806d7340472082e5ff6d844ecdb70a4b5165e8c5","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240411_1712819514590_0.4789308908440506","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240412":{"name":"typescript","version":"5.5.0-dev.20240412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240412","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f57487cfaa4fdf63447799fb361b94eab2b9c61d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240412.tgz","fileCount":119,"integrity":"sha512-DfE8jAzZf9/FHHo0CMnIL6uFZ6Q1bJ4PCtpBd9Ytbfi0pRREKVJofJEHFbRXADT6Kq1twB4iiqvdc/rGbiBq7g==","signatures":[{"sig":"MEUCIQCh5Y+75frIShVXiT+GfHtD31erZOi/tvWJGd7R3lZGIgIgKHgUI8gHJYSKtVurgTnv19lnawg4czPyEpuiw5POrws=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21455567},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"551a600e84a8be35b25a758119f86731463d6a53","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240412_1712905905010_0.5392795115785907","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240413":{"name":"typescript","version":"5.5.0-dev.20240413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240413","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8ac200526279fc8210f017e5ff544b46ea7549a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240413.tgz","fileCount":119,"integrity":"sha512-9Xha/54eUa9rMSYHTmP37pxf7NoWEWR/URl9TjZy2Fd7931boHHrE7k0QrtXFs2uXaIyC9v7I/Se8pGsQ7V14A==","signatures":[{"sig":"MEYCIQD68qEJPNNmoCJaP5l64KATMlCU2Nn9uYu9qWYawNKRnAIhAM/RgzlPYZOXBj8HM0q0vHA5hHNnqi4PvqFRzKBt1g1J","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21491734},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8bcff81aa2e4882df9873702fb95769bf8a443a0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240413_1712992291201_0.5949084911956224","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240414":{"name":"typescript","version":"5.5.0-dev.20240414","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240414","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d7aa4bef15a776d98334d9d4fc8abafdcdec218e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240414.tgz","fileCount":119,"integrity":"sha512-VEXaVJweoalMohUIdPBNAI0OzBuzR6caL8w3XW+R8jewwxn6iD9t2zAO1DkqYmYDDYlu2kp8L61Vk9SDsvv4Hw==","signatures":[{"sig":"MEYCIQD6pUXe6IfQf+SkZtWDQZAovVmKbKXjuQfh122kPb3teQIhAMEaU6Ls7K7rRrTFK5sUR+QwFNcUAnFb41t0XlEgJyqY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21491734},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"8bcff81aa2e4882df9873702fb95769bf8a443a0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240414_1713080976877_0.9731004313888718","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240415":{"name":"typescript","version":"5.5.0-dev.20240415","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240415","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7f80d7b0bd18f0dddf4aeafb5157aca5543d4471","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240415.tgz","fileCount":119,"integrity":"sha512-2FlWR0afPLL3qaO+AcMp6rWmV6nrLoRhwDYAgGn7/Kw1/K8hcW83bZnn+gzGNWfXozx/EdJuG0KfN7V/RGysjg==","signatures":[{"sig":"MEUCIARr7HHFA8h4VRXmcBX8gMZCrleJTlqrl2PFrH2Y0TRTAiEAkyqoCarYJdzdP5lgF/GD1BTE2MmBJiu38WYRigLSTHM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21491734},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9d8f812a83df0045d5e2e7757017c050986c800a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240415_1713165103670_0.9103407890913802","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240416":{"name":"typescript","version":"5.5.0-dev.20240416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240416","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a2e03b3db4fb51b6147b577b5d1ee2283f1df5d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240416.tgz","fileCount":119,"integrity":"sha512-hCCgs0+M5vvB2c/G6ft9IBNjbsjd/VL7+pSJMxGJcDjWP/FI+1n6qSLL3hNduxkfbzFh4jL75tbSqJp/Ac0V1Q==","signatures":[{"sig":"MEUCIQCaFMKDym64vYwWKPiMBQ6mBc2cLy0jeuIr5DkijUri1AIgKlYDb2Ox6CphylVtgVQnP56gfXfUrFqG2pma/18x7H8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21491781},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ce213148ec562296ac7da215ca179043632c119c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240416_1713251503213_0.5805064605263912","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240417":{"name":"typescript","version":"5.5.0-dev.20240417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240417","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2558a2442be5b8541ce8168c53fb5ef4ee3c4995","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240417.tgz","fileCount":119,"integrity":"sha512-BjMYWxzDLRaNlnnMC/NHf0uUIZEnw5VLe7q0h7hEi5Q4H1XoIDdjBjk6stBS2nj6R/HrsdEqhWdPz6+DLx+sRw==","signatures":[{"sig":"MEUCICz8eN/zeFmtQjIG7aAypDqDdEMTI9Pp/tzZhqbPptPMAiEA5AlT+9+rQ5wOzejWJX7A4SiJZp9NHHLdBFCkV+7X0IM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21505291},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cbae6cf9f4f98cb97dd2eedfc3d0faa5c523759a","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240417_1713337921538_0.19982532523514407","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240418":{"name":"typescript","version":"5.5.0-dev.20240418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240418","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7bbbe9f5ae6db7523958089cb4ace891f85b3b2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240418.tgz","fileCount":119,"integrity":"sha512-IXEx+ooOpKOrkqhof52VRFWPeoNe9kMKrn34AV1DNc+tG94+PxwrZr4F5i+Ed6I8poNJYxecl9Sl9xBRuJhPnA==","signatures":[{"sig":"MEYCIQCyVBsmvxOMF79exqH3ueDD7CNaEqNGpYvwtQOSvO4zGwIhAMcD3IFsATX8MaRNY5FtuGgfjz2R6byknDWJmHRotoEH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21504126},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"72f413cea0fa8b98948f9608bb7a113070c7733f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","eslint-plugin-no-null":"^1.0.2","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240418_1713424298524_0.7772885255549156","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240419":{"name":"typescript","version":"5.5.0-dev.20240419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240419","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75c1070ad6829a5d5ad16ac930e7bcbb77b50511","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240419.tgz","fileCount":119,"integrity":"sha512-8ypxI/j8ctX5QljMci0V6iljmCDnSmardVThnbxKC8p3eRc83c2Ip6K4MmGO5yHgeEyz9rpusbM2iY/6lDZBdw==","signatures":[{"sig":"MEUCIQDIIZ95YhxT0hRTIRUwm7SbpfJtb4fj/OP6LTi7/pp1WAIgNFulzWl33tTgFBzEqSwPOPOVAci9YHWn5NU0EJx31hQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21511584},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"48870169dcc4b6626ddc9691cf72303e8a83e6f1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240419_1713510686189_0.3441719296202721","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240420":{"name":"typescript","version":"5.5.0-dev.20240420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240420","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"30ffce215a8a537503d862188fec043eb8955f62","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240420.tgz","fileCount":120,"integrity":"sha512-Zc++5htXHmanVoBIvJiyHGt8oMYH5UmfziSqGrDEMl68Rkk031KoS1PhO8917eO34UOVlCvFFaKRNUr3yVuP9A==","signatures":[{"sig":"MEYCIQCb/XJrh9rd4/Lu+1i4DM/M5VYjiqd+49YNG7fotoDbiQIhAOeqTq91L8DzXB3nZDO5Ai9IvIK11dZKfMsg8ppQ9aaQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21720562},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"21b5c9624c0765e6baea1f21a26531aac4824a41","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240420_1713597089896_0.7634333844571841","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240421":{"name":"typescript","version":"5.5.0-dev.20240421","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240421","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a857061a97aedddf61379a482999ff8fbe744132","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240421.tgz","fileCount":120,"integrity":"sha512-Ks/yCwVDuHv8bRYDMSVGQl8bpBsa9zg1rLNVGKYikd+YzsjCDFCU1pDqlDw6RFdF4XlMXYDb3O47nBc9NO4cQg==","signatures":[{"sig":"MEQCH2C7eHLvaQ3ukRyLGc4SbcT53010/yC1rCj7iHl2t6kCIQDtp16We2fYq0WEzSdr7SpiniSIl8PwAx4Mr382YgpRtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21720562},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"21b5c9624c0765e6baea1f21a26531aac4824a41","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240421_1713683484265_0.08072013695639368","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240422":{"name":"typescript","version":"5.5.0-dev.20240422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240422","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf05ccca929fde90b6ff6923edff6322862547d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240422.tgz","fileCount":120,"integrity":"sha512-GKfP7cqp5Rq/z6xNYZ6u6XfS4I0K3h8tw3MRKkttEkLyEWBxYS141wOr1WBcUYfvB1F5Luo/cTd7iZnySH3bIg==","signatures":[{"sig":"MEYCIQDlLD4P94jDa3s5HHu+Q1Ciuy0MzSHt5pdcA6WZ3EP6FgIhAJkiL3kuCoEBmpaAqhMLu/+s9P+XJkIBabkQUfBN6EGT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21720562},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"21b5c9624c0765e6baea1f21a26531aac4824a41","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240422_1713769885322_0.9086212115213481","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240423":{"name":"typescript","version":"5.5.0-dev.20240423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240423","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eace2402fc7e4428b3b1e1a97d34518401dd35dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240423.tgz","fileCount":120,"integrity":"sha512-4/ZRU+Mu0ckZV71Bb5ikMBYPAVD6zqGoNQ7ETFezcOIiv3dUxAwWVicdPKZLqokV7NRbtDLuSj+tyVZJN/jEzw==","signatures":[{"sig":"MEQCIG1YD4KEMZhd8mE4AGOT78mMSCiqdTwtpFcYJsaNcEPdAiAsjyftFFWi10SCpZjd1eLEzesg7JvqVgA83AU1hg91xQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21720562},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4900c7f0a8eeafdc72046a91cbe8f46eed62e0d6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240423_1713856310910_0.04818300786321328","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240424":{"name":"typescript","version":"5.5.0-dev.20240424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240424","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"42ea13292d0055946d2627b73db37b59b16f060b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240424.tgz","fileCount":120,"integrity":"sha512-gX3baGVamMRrQTd2nNBh+GC5/5Dhx08BnatGKOURQ8Dx29K/JjOToj+VrIFUKE76CzmT/pHQKz++l7NDTSBBOQ==","signatures":[{"sig":"MEYCIQC50MNLP7rc0/Dy5PEMQoJq8HzjhKmWpIX/nFBJqh52BAIhAKMQa76KTI+ULCl3Ja6t9m1AwWGFkrc0VcVMQaSw+biA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21722356},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0b71b81d7d053a3acd379ff49550b3c67f9ce3cd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240424_1713942697305_0.731022364409099","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240425":{"name":"typescript","version":"5.5.0-dev.20240425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240425","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b1957b2b2ed1f7078256a0eb973996041dc7c310","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240425.tgz","fileCount":120,"integrity":"sha512-7Ori11gLEXAm1+iEaoATNgb/VOA5AAL3Q+kUaSColBS12aMGZRMjBcN1K/dJlmOjeViCkvAf+nlyG5ChaCWt5Q==","signatures":[{"sig":"MEUCICrzBn0A7wW/gXGH2zz0NMh9Tf4/GqJj7mer29zn2t1aAiEArfhbTeIS4VGiss2Arw5Lc1vBnuvZq4j3fDLgBsYVCyc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21728403},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9504b7576a6489a3d5149db451b6ec8f772d67d4","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240425_1714029094497_0.6774543309777568","host":"s3://npm-registry-packages"}},"5.5.0-beta":{"name":"typescript","version":"5.5.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae6a2e3aa277f74478f1743e8771676cddfcdbec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-beta.tgz","fileCount":120,"integrity":"sha512-FRg3e/aQg3olEG3ff8YjHOERsO4IM0m4qGrsE4UMvILaq4TdDZ6gQX4+2Rq9SjTpfSe/ebwiHcsjm/7FfWWQ6Q==","signatures":[{"sig":"MEQCIFmIKT6aCFMr6Kx50nuAaWzeLqssVY11gRNgD+Qspz7WAiBftZNj5q7mmdWckid2OTtC2wH3vrkWgErzUToxO1EyGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21728425},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b574864abc989d0f8b15367baea1058819e126ba","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-FRg3e/aQg3olEG3ff8YjHOERsO4IM0m4qGrsE4UMvILaq4TdDZ6gQX4+2Rq9SjTpfSe/ebwiHcsjm/7FfWWQ6Q==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.5.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-beta_1714071799257_0.9680742872964747","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240426":{"name":"typescript","version":"5.5.0-dev.20240426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240426","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e9ba7d0b3cdaa54021faca61d1bc399e4766c93b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240426.tgz","fileCount":120,"integrity":"sha512-96cu+y3DrjSNhNSgB3t3nRiesCwBVjZpbjJ6DcQoCgt0crXXPrOMmJQH/E8TZ41U4JzaULD+cB1Z2owh5HANew==","signatures":[{"sig":"MEUCIQDGvs4YOmb/4hrYk5can/f9Fs2vhSosLmPgtYRyevM3CgIgSyFRgEolmNVbo63FoQF4PkufvijyTJXIr/W6bNP8foQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21722074},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"04963ee796dc3716e5c18a28a5950f4ca8b900e1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240426_1714115482936_0.2642101128884464","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240427":{"name":"typescript","version":"5.5.0-dev.20240427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240427","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"09958be59d0a93c6191036ee6cb6ffb091bfdba0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240427.tgz","fileCount":120,"integrity":"sha512-vm3WnPi2ZVIJib+bLBXzoakaw/1F4X+C+Uycboz2B6k4y0LS1JflVySjUfNthvjFRqtDbKFOzXdyCXkuGbytWg==","signatures":[{"sig":"MEQCIGt/BqCpcnwl29t1hHspr0sSBCpMRfe81qTCq7h0tTsYAiB9swclkI77kKr9HBiKeXekY1e6hJiNR/8tc9VG+HWRMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21728923},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ebcb09d71a0838b4b9be974f9ef1e80fce8888af","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240427_1714201899573_0.9727781876084582","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240428":{"name":"typescript","version":"5.5.0-dev.20240428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240428","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d40edc89e41dd118ba4cfb82788223b7f3e7b063","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240428.tgz","fileCount":120,"integrity":"sha512-CJeSji05UX6V7wZYqDivyYE2aUTjmWun7iGp8n0cQnM773e9ZboeYt6Wx14OBIhVzbwf2ot1Y5jUwTw80hStTg==","signatures":[{"sig":"MEQCIDnyK+tcIMgu5zQSuhKZsxaq4tdSz2dGOOrG959XaGrZAiBOssjJzA+Be5PCA9vuAkZtzWiotBGiJBRdlQcBbASStA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21728923},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ebcb09d71a0838b4b9be974f9ef1e80fce8888af","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240428_1714288300741_0.21376760162385433","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240429":{"name":"typescript","version":"5.5.0-dev.20240429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240429","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fbffe306b1fa006901ea4d3d1061e3b7a8cb29db","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240429.tgz","fileCount":120,"integrity":"sha512-oaeASmILG5rODErsKfCtOv1mDllgxW7wilw05mHMgm1pzye6YKMsvd0nEHuVdzwql06viXRA3vumjLvtXERngQ==","signatures":[{"sig":"MEYCIQDIPghgmkaXvLDKKmdHUHj5MgaxJcEDBaC6wvuF8t4nwAIhAOyS2SjMP3qst8JiYDTt31byY3R5NWPaR1PAtssQihNl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21728923},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3358157469d805df1deec01d26269c5d9d6b23ae","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240429_1714374720774_0.48111114372235275","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240430":{"name":"typescript","version":"5.5.0-dev.20240430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240430","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2ca12cdba2888d271662dc7991b7b2edbb6628f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240430.tgz","fileCount":120,"integrity":"sha512-HDHiMzAPPZucY1VLkXpTF9qrxwqXv0h/SEDnZs59DPOPKlGlAn4c0o+1t45+kOvD2PhfzFpwHymQnmWBlNFAJA==","signatures":[{"sig":"MEYCIQDL9vpooam5XutFq/Uro4vpqXbj7LRaKjFhXCwFn3/ytgIhAKejPM+jsFWqQOnd6auwhxFPL2JEEeX7vGSmNQ0zmWhz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21733954},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"dc316afea4907087fcbac28a0fad95273926715e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240430_1714461161049_0.5307810320315991","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240501":{"name":"typescript","version":"5.5.0-dev.20240501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240501","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"07c6a1218a28aaef0cd6448ad29e156c8fca517b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240501.tgz","fileCount":120,"integrity":"sha512-ry5YMM62bkOOYR6VO0R7oN0neikzkMQIx86y3i3NDrywalpn75kIWPkEPocIcNISml8q92v9j3V0aQ+Ejr9TcA==","signatures":[{"sig":"MEUCIQD042av6IHorN0LTgK/WNoUlCEGiMhT6xBJswfQfcyDbQIgVNLcC6mAKtQY5leF9Z68FnraHbYCWG9FQnY9RT3MQDg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21773006},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"33b156147b78486ebebd83ce3de90a635d737bbb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240501_1714547511051_0.47671804415779473","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240502":{"name":"typescript","version":"5.5.0-dev.20240502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240502","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c5c87e7c1b1b07d61c476ec5ba26da2b472e961","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240502.tgz","fileCount":120,"integrity":"sha512-k2os5k45m5icuXipmT6PBBA2byI+V9WhDS5StUQbU1m9NYvivVPurukxM7otJSRfYPMgpLerkvsRM/bLAykaxg==","signatures":[{"sig":"MEQCIEWxhsAPGWGK87Qr2Hoj/RHVpVjvglVg4TWA+1+yavuvAiAL6N1lVF/mbV02/CSp/W06+rv9TPw3pYxjb+O/snio5w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21774403},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"7a38980a7e04bee0e273163f26c91d5c99f28298","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240502_1714633906536_0.04075185726438901","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240503":{"name":"typescript","version":"5.5.0-dev.20240503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240503","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a7da908b5e5d61dafba0c81fc29ae82132725f73","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240503.tgz","fileCount":120,"integrity":"sha512-tOdPPinGIa3zx6xEhbvrNseqE+4ODzcDBLl9cFAnSsOrbjlXaQVMdDRXR2T8pS4GR4mc0aoU5XX+sP61ynHgAQ==","signatures":[{"sig":"MEYCIQCMU5MiBilo21YVR3mc7ljpXz+WkjCDqnv4ZRxEcJoq3wIhAO0mQar8CO61NW/vDmuJPzBUliY9yw7Fwb7nF5i5Iw48","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21775430},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"3a74ec4e992eacba932c302fded9a636a6c00875","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240503_1714720337515_0.1415156995455329","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240504":{"name":"typescript","version":"5.5.0-dev.20240504","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240504","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5eaf4fd6910c980595957b6678e4c08c8dcd4a66","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240504.tgz","fileCount":120,"integrity":"sha512-DCn87xYYzHMmF56NZpjUNpZO5GujB3Xr2JdJh1AP8U2FcUM40h0ZWqFXbqF+qukJ7B8LG5HIRIaNfl8+z/c8vw==","signatures":[{"sig":"MEUCIQCA7pYx2+Q7kX8vLrlDQ9u0Giot2fmSEnUxNSxzYsUOxAIgF/MrDwJjl4YycGsasm+q2z0E7tRoJxa5yDO7DKncZGw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21775540},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e154d47851797a58dc32e8d1049ae1e68a210023","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240504_1714806744079_0.6670395939888019","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240505":{"name":"typescript","version":"5.5.0-dev.20240505","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240505","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b260abb922031d45be2e14d6178c7350626a1397","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240505.tgz","fileCount":120,"integrity":"sha512-pS7FxfKdWwZcCywfyjwwVAIV/Tb6YBAcVv63WJFhSf7RclqKUTwkGbvtii/VvHtfaW50/1LdYvHU0z+Xs3xTiQ==","signatures":[{"sig":"MEUCIAvBX/byqdfmXGewk5R0FAVlGaJVLxpFlRweO3cETYtuAiEAjceljhQ9lQeUYe4JoMES5xWKklW6Nzm3Hm2k3RFXs/s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21775540},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e154d47851797a58dc32e8d1049ae1e68a210023","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240505_1714893119641_0.4919887903095541","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240506":{"name":"typescript","version":"5.5.0-dev.20240506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240506","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d46aac8be07432092e3bd7e7fb7aae93b21d738a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240506.tgz","fileCount":120,"integrity":"sha512-0lnovJfyTASSjJvryIfT3sYDXAv1n2R0vujhtdXQiAxA+PRpCOTk7UqslELD6wl7t3s9hH5UI/+p5aPeSpmbYw==","signatures":[{"sig":"MEUCIBvSopCsMJxIhtWeOWwQafOPj+Gmme9g5moDgotRowUVAiEAwdiUWRhKYB0RX7xCrCnvTk5QSPEc7G3EqLdqt8/qTIc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21775540},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e154d47851797a58dc32e8d1049ae1e68a210023","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240506_1714979542708_0.5482928305257833","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240507":{"name":"typescript","version":"5.5.0-dev.20240507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240507","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6374b9116c656f4d7bb5b28905f236a37ab68d10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240507.tgz","fileCount":120,"integrity":"sha512-5LtqwNqq8gx+AD5pTThWksRzORSFBNdUGmndlPmQ/fa34MY/1vsE5A/sFM6JD29X8uFiATeIJQepsO+l+tRJ0A==","signatures":[{"sig":"MEQCIHP1T2fxhDhiyN3lu1AQE337Tq79X4MfuCx5u7NLEyzNAiAyuqUJpoHlRsUXZbax1fxpIyPD9D8gD3U9CwCYv2PlLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21783785},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"16beff101ae1dae0600820ebf22632ac8a40cfc8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.10","chalk":"^4.1.2","mocha":"^10.3.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.0","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.20.2","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.42.1","typescript":"^5.4.3","@types/chai":"^4.3.14","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.1","azure-devops-node-api":"^12.5.0","@typescript-eslint/utils":"^7.3.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.3.1","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.3.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240507_1715065933185_0.2682494117677583","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240508":{"name":"typescript","version":"5.5.0-dev.20240508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240508","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9a245ceeac3d134b46503ea796a42aea5f78d113","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240508.tgz","fileCount":120,"integrity":"sha512-5hkQ+5UaeQFyG4Z4UiupCIQo2pcUZ+e8OZlIxeiljeqei989RyA99QnF+hS0pxZpxvOt/yJCTN9zIdT2m/O1WA==","signatures":[{"sig":"MEUCIQDcCQxcWmhBbkV23EW5pLOtEWDLrGQPHJD4sa/bm2igXgIgdnR6T33DczW0/mx7oEIe8C+Znt0RZ6e/BR0I4UyOybs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21763091},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b9c71c3fc39f7cbafa82f8aa6f1d3b8a86e27ede","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240508_1715152324547_0.8191359093352153","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240509":{"name":"typescript","version":"5.5.0-dev.20240509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240509","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e0a60877a24b56800e3bf44c03f33b9315c87c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240509.tgz","fileCount":120,"integrity":"sha512-r/zZRQGt3udzXP4ZaxPUs7r+NgrzW94LRfqa0XrFe0IXANWaewB/amTIL8O/zZ9qRv4QN34kr4td6HJsSbG9eA==","signatures":[{"sig":"MEQCIGMs2ac10LW/532cQGW3Deyufgwz5/+Qp0PgEtpkX5hAAiBbq9a9JU7ifsRChfu3NDAOSfKVUjP7rxOUteqkkg13Jw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21771222},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"be8fb98cf106d2f9421038dbfc9de9352f3ba4b1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240509_1715238754739_0.6258075665249336","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240510":{"name":"typescript","version":"5.5.0-dev.20240510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240510","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fa0cd4638794a59a563d0ca5bc83684395697108","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240510.tgz","fileCount":120,"integrity":"sha512-3gFPNJ5OUK03t5wwejsRTnUPIuZMCu2feY3b3TvQd98IVIJWQmiOUdEBWQaCpwXTtgHS6veyVSbCIDvh0HQwYg==","signatures":[{"sig":"MEQCIG9R1lgFKBBXAM70HRh55K6zZFMbfdLcJCXchhWaQvVAAiAyU7XOT7OCfNl9ve6hjnUmgL0MEERIOPT/+x4GY9Gl3A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21785883},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9f9682c0a0339401037dd67ba5dafc24f2c297aa","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240510_1715325144814_0.15230531104962974","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240511":{"name":"typescript","version":"5.5.0-dev.20240511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240511","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"59140171b93325e0143d05ab17c708d030b64ea0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240511.tgz","fileCount":120,"integrity":"sha512-HnoXTTVxfe1mVRdcrnw+747CMVQyF4RzrDeDkSKc+e99TE6OqEBXcrorAwwPqvlVFfgSiD34O6XkIcFBH0WJFw==","signatures":[{"sig":"MEQCIFAccP4cU9N+W/GEoKCAFLPuNSSIbAjM5O22PmkR6H8JAiBbAtevxIICM1D93H1bV/PSOS6kdR5/wfjnnW8IERi7IQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21792649},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0b37062eb07d1666245a02471b7d0e80c5d5aa5d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240511_1715411527026_0.03253163856347041","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240512":{"name":"typescript","version":"5.5.0-dev.20240512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240512","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0125f77789f1f9cc0d1f3111523cf19ca9713e9a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240512.tgz","fileCount":120,"integrity":"sha512-qaBthiey39OUkoC0p3r83WKUG4KEvgTJg968MxJ548G6lYhpsFhp1Qryxrf32BonZwzfVi46Ltb9maSHVceLMg==","signatures":[{"sig":"MEUCIQCbeCAHaJAvPuAjCJ48lCUkCcQaE2tQfUos79oxXXvazgIgKT/HXBwlkl/ZJtzHxE1eKPFyDR1c/RbOGQarQmUa2yo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21792649},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0b37062eb07d1666245a02471b7d0e80c5d5aa5d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240512_1715497929258_0.5131525900097731","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240513":{"name":"typescript","version":"5.5.0-dev.20240513","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240513","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b20a2bcd93c0fae65dc7f25a99ac964eb85505e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240513.tgz","fileCount":120,"integrity":"sha512-EaabRW/mNcpehitpeUkoIg8mNRGl5twGUzHJEJE9qTMlvVzoctff/XFZGKrxu9PUUcYluaMQTBNdNuqOZMqvTw==","signatures":[{"sig":"MEQCIGkpS5lhDm2/oxMg8KHML57WFaGq5XA7CdifI1TOX0EJAiBVgKvXyBuVU/KA/QLitiWqDbPkCne5FKS+RQ7/ON0g8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21792649},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"0b37062eb07d1666245a02471b7d0e80c5d5aa5d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240513_1715584321921_0.8499381183817698","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240514":{"name":"typescript","version":"5.5.0-dev.20240514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240514","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e5af4601760955c53fe5eb42298419862f01a262","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240514.tgz","fileCount":120,"integrity":"sha512-NccALPZlTF/kDNV2Q071Or2T5CcoAHodWjsKseA4LZKfdqufQzebaQlPuZatC8AgHY2cnQJBcKMCHNFWW9ubpA==","signatures":[{"sig":"MEQCIGMhNkMrceObY4nP438ENGzKuZ/wqmap61D/uM6x4WhGAiAD/W248WVjoAMogmhxQXPFXFlcbTpiJkFmGWMc6N/LNw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21795984},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"e51cbc8764da1f7df05c3504e15f9fda98dc91b6","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240514_1715670740248_0.7304880745284708","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240515":{"name":"typescript","version":"5.5.0-dev.20240515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240515","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0380d92f94b833f250c4655c82c0f110799e7e9a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240515.tgz","fileCount":120,"integrity":"sha512-l2Rtvs3xAcEVgF5wOML5AASB79iMHrw9RGXEMY/oeV11IwP0nxOtB1Q5fLvmdPkbsP0PKeTfvd46sOWRATqAiA==","signatures":[{"sig":"MEYCIQDlPFjPvoiDzxUoPYpkP5oD6vKD658czOUnwK4HkVULLwIhAJ6gZ7E/efNt8oI1Uzk5dYvGO11+A3aAtlO2W3bvsKOc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21802489},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"4ece0a381be3d925b12b9a1626583578b8735805","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.12.2","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240515_1715757155850_0.32969835406155523","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240516":{"name":"typescript","version":"5.5.0-dev.20240516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240516","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e5940497118abc58398851bbc0d09a6f91b107cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240516.tgz","fileCount":120,"integrity":"sha512-MNzi4B6WADePeOrxzfVArpyIW0P3ihAqAU4+l2GiBRbz3M+oIUEJCiLE/o5VMLoUAyPu9mCSshsMcsbpPu9wzQ==","signatures":[{"sig":"MEUCIB95gL9fy9nweILUrFR/18yPgGl9qLM4VmlPwMeGkNHcAiEA7neQf9X6G4qV8fgBsG5EY9MCUfO1qxlHGInvnl84wW0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21802777},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5c21b7fd93cc60b05d560f931fb8bb26d7972f76","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240516_1715843550752_0.6104821819790489","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240517":{"name":"typescript","version":"5.5.0-dev.20240517","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240517","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f21caef963af4257ba6f2c71caec539f72f7883","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240517.tgz","fileCount":120,"integrity":"sha512-xpneJT+1seecSblhCb/6RarVhdJzwhEWl0iY26aJxOvtHUiI2tFOajGJALNTy++pwG69iEOeQAR9ax7cKwT9IQ==","signatures":[{"sig":"MEUCIQDmbYb1mN1QpfhlkZWFnp6MhtCAUr9pO977Qa6HH7q+eQIgSeEslWwGXos+awhr8n30wWRBgPcBKAaq1XdYxZY56Sk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21806166},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"79a851426c514a12a75b342e8dd2460ee6615f73","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240517_1715929914896_0.013300692985710016","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240518":{"name":"typescript","version":"5.5.0-dev.20240518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240518","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"950e469483b16e7f1a65517f699c6bca5f98a1ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240518.tgz","fileCount":120,"integrity":"sha512-em3QI0xBSMKY7x1UuXS14NG0HHPgiuXZ7LcV2pBO1OCPwSLkBS3x1phVzrmTMVO6v+6PnI7yIZsgBqr5tjnWnQ==","signatures":[{"sig":"MEUCIQDQLiuaR1DwukV2i7EO20wrU5mMltL9U0h8tsxl74uzSAIgWISM/io7MqghHdWDUPWWhiBLnEx51w2A0VmVL+8q49Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21806166},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"79a851426c514a12a75b342e8dd2460ee6615f73","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240518_1716016283757_0.7353197591190861","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240519":{"name":"typescript","version":"5.5.0-dev.20240519","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240519","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"654eee89c410c3380d74d86d47d05d7c22db175d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240519.tgz","fileCount":120,"integrity":"sha512-WCk836BrP8utieqEbEyKVh/4OkykqhDWO/NsjCp9g9Jm2YyK4yYI7MBOHvcDYZmo4x7e0i9/eLnu4Fcuzv/utw==","signatures":[{"sig":"MEUCICryOXQTfYkjHZBKL4uGCqL2tNgqiFFDnAmh3sVQfMcTAiEAhZwmU4Og1rEfpSDadyXBQ5IVJRmjP5q1kx+EXSVxxi4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21806166},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"79a851426c514a12a75b342e8dd2460ee6615f73","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240519_1716102704974_0.16066067765251235","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240520":{"name":"typescript","version":"5.5.0-dev.20240520","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240520","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"df6b1c599e71da06f40c994e6fa9c4c8a5e034c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240520.tgz","fileCount":120,"integrity":"sha512-9/N20cpApbCDGTYQ/iNsBV57Kzcu8sxEtsPs6tbup1/vKY76ZbrvruRVCed1NhHbqgIvsDIBvByJBKATA/4lgw==","signatures":[{"sig":"MEQCIEfehBuQsaJXlULR1Oru3oEQxpE4TmcOv9lBDhAaml38AiApKIxYGDx4ZqQdweOQtoYFCPRfbCztQjAZLK6IiceraA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21806166},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"79a851426c514a12a75b342e8dd2460ee6615f73","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240520_1716189109856_0.9727686829679596","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240521":{"name":"typescript","version":"5.5.0-dev.20240521","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240521","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a53f71ad2f5e4c4401a56c35993474b77813364c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240521.tgz","fileCount":120,"integrity":"sha512-52WLKX9mbRmStK1lb30KM78dSo5ssgQT8WQERYiv8JihXir4HUgwlgTz4crExojzpsGjFGFJROL/bZrhXUiOEQ==","signatures":[{"sig":"MEUCIFiIMeQL+fJz5IKpUDTa3RPcXex78ab+Za7ega8rjA+kAiEAom3bMgkgQ1XgmKUmLUaq6c7/hAO/btrOQQqVwju1Ccs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21809057},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ba78807aa10e062e2fa2cd24f89109b4aff38c59","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240521_1716275528529_0.33451205409026263","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240522":{"name":"typescript","version":"5.5.0-dev.20240522","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240522","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c6166165ee081d8ab81ba08494a09ace7be1a17","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240522.tgz","fileCount":120,"integrity":"sha512-Lckk1709+mAFXxFVbO+QnpXo5TRSZsYcq0a96OTfcgP7eLOa0ZjX6/4lnS/8DODWBlQCPa0EvkegzWIwLZqC3w==","signatures":[{"sig":"MEYCIQD5CLMuybUU22D//oDl+jLxgVe0xVdgufUZJ4AnxwbyKgIhANgp53bsd+hg7YpRensVOOsmnX8qC43AUVNcINMqcj3w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21814516},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"9370347f5b6bc72902c8d71ac80d20738849dabd","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@esfx/canceltoken":"^1.0.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240522_1716361960817_0.48733026683629466","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240523":{"name":"typescript","version":"5.5.0-dev.20240523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240523","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1ad5c838946cfb885d584780ed4f4fd36b4b29e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240523.tgz","fileCount":120,"integrity":"sha512-YOB70i/IXEmSACEQ87NIPif84AGq4mjufwmoAp4HCOpgTjq6KFZe51OtNGvZbi+kMwlmQiKSrKlkfRGMndmsRA==","signatures":[{"sig":"MEQCIAEKRqgU/k/o04/7yj+z8sUrpMSXm8+S+s2FSlJ/ni5eAiA7MgtycgvOGkBN8lw9O0eR+yCxjTvUjnlHUbDEWt8eKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21823772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ddf43cd0e0091057254b1fcfcaf880140dfb7ea1","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.90.5","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240523_1716448331604_0.08983662702127715","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240524":{"name":"typescript","version":"5.5.0-dev.20240524","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240524","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"991effac3818437c1eccfb951b7e16f676b9da42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240524.tgz","fileCount":120,"integrity":"sha512-x37/rBPLFB451GxMIKP4oVm18+iMs34VzcbyoqDLHX8+TfGZdiTEIfZOi2p6nWJTV6jmd8qyIc6KnAR9tHWxsw==","signatures":[{"sig":"MEYCIQCwP1jWWpEqwGe5W7K/32dTNXiGNvUytUBaGr8jmeP0NgIhAL6euxgod5CIQugTX4QQni8CvZ6VNB/Ec8iGRkkC6s7H","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21829577},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"cffc425ad75bd7b1298abb78ce09337d08cc94b9","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.90.5","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240524_1716534790234_0.6749537440686084","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240525":{"name":"typescript","version":"5.5.0-dev.20240525","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240525","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f26c905b73d3fbfc8e2df0c059c08d89b8254a98","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240525.tgz","fileCount":120,"integrity":"sha512-2Sf4a221Bf8unaxwurXf2QJKl4aXSnMHGl1h80eytV4Snelo84Pl14FE8WPvZCmWPWy8ZbT8m5jO/8rriR3f9Q==","signatures":[{"sig":"MEUCIHi7RuAgkJrTcXa/FAMO2yTFQh5yoffHoinbMs36hxZlAiEAsy7k4zfPBbc8NvUKSZpXWjXv6l6jrbkDE+stohw7zEw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21834951},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"af3a61fe4487a92d59f9479aa4249d897b91af14","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.90.5","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240525_1716621093439_0.3347316868092536","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240526":{"name":"typescript","version":"5.5.0-dev.20240526","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240526","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b77648a40f29bf258d63dde40d72a34c170e9644","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240526.tgz","fileCount":120,"integrity":"sha512-hOt42ztvt2eLUXk4XY0aoF8xh8Yc0zR7zjDquRy3HFVFI2b5ItRTPbfmg4gYqqITwHzjSoiDA1JG8zTZnyYNUQ==","signatures":[{"sig":"MEQCIE3xh+76GlOWjgu2OF+48Jd7TlHnq7o+EH+uEFNNuvqyAiB1kOzG6tIgfSawVOrOMFvVWzYZ5Ux+bCexCZ0nNPchcA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21834951},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"af3a61fe4487a92d59f9479aa4249d897b91af14","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.90.5","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240526_1716707528665_0.04896546751388686","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240527":{"name":"typescript","version":"5.5.0-dev.20240527","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240527","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c565ce415e764daef10eb955e9247638bc197011","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240527.tgz","fileCount":120,"integrity":"sha512-v/CrVgSolgsHvUo7FgaaqYlxX9ZGr0ma12mUnjPYZ6Wimhj95iYrhdEbN2mVPBODRDyvF10/o22eTVBXZPMiqg==","signatures":[{"sig":"MEUCID0CWZazuYr0a3C7z0eC6V3nD2OLo41jz/V0Or5ajrbOAiEAoAijN2CxuU0Ts1Gx9RavYFlkaFgOtMeU6GkkvwIWDko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21834951},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"af3a61fe4487a92d59f9479aa4249d897b91af14","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.90.5","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240527_1716793937619_0.4201399807711499","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240528":{"name":"typescript","version":"5.5.0-dev.20240528","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240528","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00904fc715fa9f24f0e9bf4ce898f4064603dd2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240528.tgz","fileCount":120,"integrity":"sha512-lF9CgEwbCTMnq59hkXeSQOzUmqSxkhlTk5DuPKenvpyEVd7r1uH8q8EAgPaKhp5SO5m764uWJvE4MpvyXDKuJw==","signatures":[{"sig":"MEUCIQDt6WQ3a9ux3YiUCoKOeWBS4OhUzaa4mmQIafS7h3Y4uAIgBdhoh4aGbJ+bAFpJAywaiB2oIyARipfV42QQH3sqLms=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21834951},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"af3a61fe4487a92d59f9479aa4249d897b91af14","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.90.5","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240528_1716880349033_0.4469468544683466","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240529":{"name":"typescript","version":"5.5.0-dev.20240529","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240529","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4114477a867c50190135cd2d2752a37a0e3b8a66","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240529.tgz","fileCount":120,"integrity":"sha512-34CFeA0HRSumpIVAIjPrDgHMSEvsoPkzoIQjQnxlXvSsVpU9fsD/f4Ot4VJmRyxnYV0igAAZBYONrQ82olWbag==","signatures":[{"sig":"MEUCIGQ2bWmus4XtOvPkm5CPTjGoE46dKu8mvMBOr3JF/eQ6AiEAjeSIujhAUL4IO3uhmPspbjUPCekALS20UhkFMsGdC5Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21835605},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"fa58c615a43d0c2c9ed60ef4ff4783da91c0ce32","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.3.12","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.45.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.1","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.0","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.3.6","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.90.5","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.8.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.8.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.8.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240529_1717003644191_0.035882198881837635","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240530":{"name":"typescript","version":"5.5.0-dev.20240530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240530","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"90a13ecaabb535086e036e910b8d0fa703bd579b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240530.tgz","fileCount":120,"integrity":"sha512-r/4r/a9tbtPRHfif0An0GLycB70C3ci3m9fhpgiv6Ekyl7mxYc4w8aX/R+vQ4OJlmPosJJUCjUbljH11g6C56g==","signatures":[{"sig":"MEUCICzdceolW9dYgeyn0spQ0pvZQcTdyDf0OP/PtlzN59BBAiEA1eiXF15zSB8QqeJ7fJ2q9yIjSpSkaJnAWgwOTzPiq5E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21842629},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5df3a107c0e8626479dc3310a0b3da63bf55ed9d","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240530_1717053136947_0.7579814015959088","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240531":{"name":"typescript","version":"5.5.0-dev.20240531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240531","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0cf281373a0a40019ad6c7225597e0dcae526cd8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240531.tgz","fileCount":120,"integrity":"sha512-OzmPvUfcE/QfBFZGl+a976k3SCEo26/eGhDEOSz/gGUTWCOqoLjdBFgtQx9OJRKLBMJd+oI59BdRC/cbtDa11g==","signatures":[{"sig":"MEQCIHgt48IBA/uP5Ogo0cXcfs1nTVI0EwPwosJPMhxFeTnqAiAXo+Tn8nvg9Yd3mFOritokpZpXzTpJJJz/2Hs95RzwuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21867388},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"22eaccba2a58ff790e0833b89b1c4eb6675127a0","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240531_1717139601885_0.2660763014599754","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240601":{"name":"typescript","version":"5.5.0-dev.20240601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240601","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f5f62280f540c4673eb89a801ba4c6b431de55a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240601.tgz","fileCount":120,"integrity":"sha512-JdOf4SBFb/i7lh8CiIsRk1SOEA2uwr/2qoYjmPWiLP6L4ttAJd0Chb0PbGAItbRy9Cf55iej67T2l9D0NCmE6w==","signatures":[{"sig":"MEUCIQChjh15cJC9FMsJswt1HbfVvW0JyL2C0p8ap2z6BsbhkgIgRdpO2LvjCwd3y6xtqBhr61oQ5q3DeNVoM0Gc86dJVks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21874360},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ef514af2675389d38c793d6cc1945486c367e6fa","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240601_1717225998086_0.12735116111558442","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240602":{"name":"typescript","version":"5.5.0-dev.20240602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240602","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7699e7a191be9fc8cd41b042f64cab45503e812a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240602.tgz","fileCount":120,"integrity":"sha512-R5PnpSfGGNylti0nmjM7R3zjr+9osr8M0tUItQDcc960/qa9gDTgA8F4f64IZeT9e7IoJklxXjyAdBjVpI909A==","signatures":[{"sig":"MEUCIANa+CjFxAoUR6uWU1JLDsZlPOEVul1XhLvKCw63qHwAAiEA4U4KNl9EMk/v4Z/fxszPoq6NICB3+8Xb+1qjGpKNTHA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21874360},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ef514af2675389d38c793d6cc1945486c367e6fa","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240602_1717312381607_0.716898860102219","host":"s3://npm-registry-packages"}},"5.5.0-dev.20240603":{"name":"typescript","version":"5.5.0-dev.20240603","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.0-dev.20240603","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a1b7311df5039a8abbaaa2213c21cac6ec547490","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.0-dev.20240603.tgz","fileCount":120,"integrity":"sha512-gdm3Sh1A+Pjj9ZlfBEJY3o2rs3tvpcSbu3vYqcCijMe09BePQBtZlsuShuPn+zCnP+qBLxdKjFiw5v1tkna3tA==","signatures":[{"sig":"MEUCIQC+foOgrlW4C6CvdqGw2HRC1OPWFqUWc8LXjZWYXJ6fmwIgNTToB0Qsz/Vbr8EhtIq+0txgA1UBA7Q1hRqfqihxzQs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21874360},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"5a4134470128a062a8297f404dfb3321f8f55798","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.0-dev.20240603_1717398792704_0.5842542579799519","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240604":{"name":"typescript","version":"5.6.0-dev.20240604","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240604","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fbd76239289315304a05cf03a425e75085cbbec1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240604.tgz","fileCount":120,"integrity":"sha512-uwpkMy5U51ERVvVtQmDZwjYllREGrqP35JcdR5yWIoZ7ZE2I1oDsDs3mtLiiiccyHspCZ54Z741ibuP3NbACtg==","signatures":[{"sig":"MEUCIF9KyogBqgh0qKLJwwgG9/QLdkyNaKvYy0pWDVag7oSjAiEAhsI+YNFpMXibtRCF7mRtJ4I1dugtv3JF6ZEmyRgAA4I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21881074},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"506f3e26c3c8af7e4de38996656c947050e68567","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240604_1717485196148_0.9311021213065578","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240605":{"name":"typescript","version":"5.6.0-dev.20240605","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240605","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"da0175383eb38829771b81ac62cf3c028fd3c0e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240605.tgz","fileCount":120,"integrity":"sha512-T6LUM8t7yOOvOZSJ1CX+yG6u2ijKRPzhICi3GMv5hA4wWQz/fd54zkZLABkSH67DAHIJUFDtDAEt98Hnd30RJg==","signatures":[{"sig":"MEYCIQDAhhTCsoWJLrQLEgIudySlZjcJuwTb9j6nAkPnSdGl2QIhAOZPoTkaAw2jumqdJ2fR8akYqO4B1IpaK4TAlxsKkRnB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21898323},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f5238c328e553df2c0af868173dfd3789d77205f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240605_1717571566664_0.2236407216823415","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240606":{"name":"typescript","version":"5.6.0-dev.20240606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240606","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2305c0fafb700558f9053173d623493a7874cbf2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240606.tgz","fileCount":120,"integrity":"sha512-q7dle76No7lsX4VV/pRjSFZOlCqaOwJaVW0AS9PWKr9rLsxTHPuUC9EmGiiERQnODfh/c2gN+wiNK525JOtemw==","signatures":[{"sig":"MEYCIQCR4EREAB1khdzBR8PH3CBdLbg1LLcYWr0rqHJL80825QIhAOqZBbpzd8eQ0E4IONR2tJQ/TdLRoYpWlxr1OxTORH11","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21899465},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"b9d96df61f01375da6504f37a31151cfdce0645c","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240606_1717658011443_0.7029960785995069","host":"s3://npm-registry-packages"}},"5.5.1-rc":{"name":"typescript","version":"5.5.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4be420f1ecb5e66c52a7cb11444f06f02294c977","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.1-rc.tgz","fileCount":120,"integrity":"sha512-7cbqBhh2QH0RaI7AD0ElJ2Ww/iRdW1w2wH/S2dv6EbdNQQlv39fx+V5VOepxLgfUvRkU5D5pxzgPuvHSAQOdpQ==","signatures":[{"sig":"MEQCIC/pEWgZcsZfB4bZkHmsCk9hZDBXd68KuNFAZubnpH71AiAbZCGT683ccK58nCzswsWWnTn4AcyK/zJQWi3jQGkEHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21876194},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f7bf3b22310485b1235754236ead4c242e96ccec","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-7cbqBhh2QH0RaI7AD0ElJ2Ww/iRdW1w2wH/S2dv6EbdNQQlv39fx+V5VOepxLgfUvRkU5D5pxzgPuvHSAQOdpQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.1-rc_1717692442985_0.9858812370549916","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240607":{"name":"typescript","version":"5.6.0-dev.20240607","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240607","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c2c8d51ca89eeca524cb4914d6540ea76da753fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240607.tgz","fileCount":120,"integrity":"sha512-yy+XEQJEu/S3zEkTYTPv/sq3WIh2IIa19WD6+JAZxV+ndNZaalF84Tw742YJXnZEU37SYpgfFVhWCKi0E9Kmtw==","signatures":[{"sig":"MEQCIB3fba60TBv0WqSzcLgmIKfBm1uZ1W6SzlckqY/rJZ+EAiBjfLcPU/tYUsNPr/q1Jr60fFjegsnCaqHHMF9BvNx4+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21899180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d8086f14b6b97c0df34a0cc2f56d4b5926a0c299","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240607_1717744381871_0.226395491623548","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240608":{"name":"typescript","version":"5.6.0-dev.20240608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240608","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b10aed96e08688f694d1206b1d24cb940e11466","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240608.tgz","fileCount":120,"integrity":"sha512-6/A+e5am8S9wXo877O6OGZo+IbLWKfx/g/qlDNs+3QD3JPjHTM4eDXWue1uTPYuhAgXs7GoFagsSPRaRC3NWtw==","signatures":[{"sig":"MEQCIBQysmymVm719waw940yQm4tiyNcKezKto6b6N01llN2AiBb4n35sje2ivzhz5OmBfKMWS77w/6d1TdHCIUZZxcioA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21899180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d8086f14b6b97c0df34a0cc2f56d4b5926a0c299","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240608_1717830766588_0.9207743238457049","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240609":{"name":"typescript","version":"5.6.0-dev.20240609","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240609","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"778e9c1c1247850ed29c8b05d30f2bf441b8ae02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240609.tgz","fileCount":120,"integrity":"sha512-VCYrsV2e6rmJM/eNpesiO22l0o4SlBLN2ohLTJC8octWq8uX1tsQlyg3OVn9U7X+Sdgnizwj4xhctVzOPkO0Lg==","signatures":[{"sig":"MEUCIB+9WlUNanbUfG4pAFm1/lD1YI+pV+77ygiRaLjkWdtNAiEAumkmBQxiKTMtRhnlokAeF/hVthkSkZJU0t4vfU1L7EM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21899180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d8086f14b6b97c0df34a0cc2f56d4b5926a0c299","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240609_1717917183234_0.9046255123263764","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240610":{"name":"typescript","version":"5.6.0-dev.20240610","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240610","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ac92ddf0d3a84b410a76284e8241b2cf63dd64e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240610.tgz","fileCount":120,"integrity":"sha512-YlcBmkI7yH/aQuG6QecaKSxJkRkWNNSMsveWtsZhR0BhoI5YwrVZrjp0gj2zi0e+BUZ8q2j3T0n7OgWBZuRwJQ==","signatures":[{"sig":"MEQCIBl5lDKf3dzm7D5kZUJL9rQArH1hQch0qo82nlcCuLKFAiB8Dj+YaaSYL07jxOjO5lntAMcYLLgRArRhb7IpCMnv4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21899180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d8086f14b6b97c0df34a0cc2f56d4b5926a0c299","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240610_1718003582536_0.760795204386808","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240611":{"name":"typescript","version":"5.6.0-dev.20240611","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240611","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2af5a9262b9b88796bc6a5dc790d0273db6ffcb8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240611.tgz","fileCount":120,"integrity":"sha512-++hW2N7TUgGGnZpBmMth4rllhssaj9MPUO5KBRr0qrVZcTlwHJrweKfMZP4X6g/0PiCssvXuEgBxhE6fuVZm7g==","signatures":[{"sig":"MEUCIQCU+tzqzSEFlHluQ2sYI4jX/89iBvye4/iwvuIJGWrU8AIgdVSTPf8RYvc8SqLfwSOZMHaADt7PMwLDjOboTzOUPZg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21899180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d8086f14b6b97c0df34a0cc2f56d4b5926a0c299","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240611_1718089991295_0.011019204316785602","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240612":{"name":"typescript","version":"5.6.0-dev.20240612","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240612","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"186d320d9ff7b1877c2e990be3b2a84b63c9b540","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240612.tgz","fileCount":120,"integrity":"sha512-C5WDxLlEMZhdyZBkhZkysctw9uOpGnua48Zrq0FxJLx6+tFrNkanXn4Zhatjg1vbKjzk19FYggX4Gc6Wgz5flg==","signatures":[{"sig":"MEYCIQCYWYrrUGr4lrnHHp7+oHIUxnokc9oLNMQvx4vNDlpOTwIhAK9uILaQPzuJv9ZABbjeWbHNN9mby9WRpE1d15GYY5KH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21899180},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"d8086f14b6b97c0df34a0cc2f56d4b5926a0c299","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240612_1718176362732_0.49933707213570155","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240613":{"name":"typescript","version":"5.6.0-dev.20240613","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240613","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"83fc56941b84aa9f5be2b667f16b7cc1d91aa7c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240613.tgz","fileCount":120,"integrity":"sha512-X5TncElQQlWPSobnuwbFBirMcTRLrtE1creiCFs9SBBGjJneZj6yggl0zJ6vLqbI5uzcos8XYjQ0CHRfjySS5A==","signatures":[{"sig":"MEUCIQD/4CMV7eMZau6pYcQ22ef2t1bqa6LRVkeeX8rQJ4kVGwIge0rMkf1QbQnz6harMBh3bmJwJpibU9d3oFG71rK7JPg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21900832},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"6f06eb1b27a6495b209e8be79036f3b2ea92cd0b","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240613_1718262803810_0.5105487148332319","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240614":{"name":"typescript","version":"5.6.0-dev.20240614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240614","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2050e587c491a9075bbb7d66687c8613ce7ad7d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240614.tgz","fileCount":120,"integrity":"sha512-ZyRthucrT5pvqNRBtPTNixd1dnpzyf0WIK6WoTkLRIzMiI0IWM+jjI5DfNuokEx+7C8pXQDF+Zi8HPYg5ZLS+A==","signatures":[{"sig":"MEUCIGpSD65WsmXSb5OBceSpbNKDxH/18VKZ1rO2pZSxysQqAiEAsaKHAYpOEIoi0vcWwgYZsUW8BSFRqPN8mEYSVSXLYeY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21892142},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56289733a4fdbc0b2b7e9a338332acd1bcc86072","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240614_1718349167224_0.23602895231167054","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240615":{"name":"typescript","version":"5.6.0-dev.20240615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240615","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"56ec8e7777828a34328001fe57bbd47f86774f24","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240615.tgz","fileCount":120,"integrity":"sha512-6HZ/dl6ElmuSd61Tbv7mbqSewEabvpOSIc3O2CTxHHkmuEEXhVz01sEP9OKprvsQa9Pb0vWf1JBIS9PJDzVimw==","signatures":[{"sig":"MEYCIQDvxed/Mcfee5iBocifDF6GuUSvMSyE0KJyjkuuq5uNTgIhAJEUSlVBmAkFv+anujS9YPZMk/boP+7gFwaTGyJ6sPyL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21892743},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b1c52c53cc6c8cf35b19accfc3e29916489c821e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240615_1718435556609_0.5317657300340071","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240616":{"name":"typescript","version":"5.6.0-dev.20240616","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240616","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f5ab90446a34cfeee5e1269704b9a051c9700b37","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240616.tgz","fileCount":120,"integrity":"sha512-7CywZuTQgssUSgzYC+AhzI70soi4b8SnEzuKhJENRY+NPgGXd8HL6hZhduIE+b60/rcoBXyi/ghgKmpj0qtnCw==","signatures":[{"sig":"MEUCIFa8ko0FZo//RmD0R37k4Lt2KAst2/e4MmlNsdwIPuwNAiEAjFT0rNtMyslB76rpdwHZePQRvNsuYoC9ekdUNBzeNfo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21892743},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b1c52c53cc6c8cf35b19accfc3e29916489c821e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240616_1718521955537_0.9236253948870208","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240617":{"name":"typescript","version":"5.6.0-dev.20240617","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240617","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3fd6f41c268821300256a1bf92a0cdfe05b3a5ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240617.tgz","fileCount":120,"integrity":"sha512-B8Hf6pYt4Qj+kIFMRyIn/Eec0MTH3CN0jMMv1yNhzIs6iNS86cTRCnf1xgnjoY5mv2imyzAQA5e7DAY7B7PUCg==","signatures":[{"sig":"MEQCIGDtettXaBV3oQh2BqzQ1w015mFQ91ByCEjI5jH4PDJNAiApJD2ih6+/q+HD9MZzM76Ateeupkh1hJ+d1u/BH92aeA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21892743},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b1c52c53cc6c8cf35b19accfc3e29916489c821e","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240617_1718608372638_0.08630194078528453","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240618":{"name":"typescript","version":"5.6.0-dev.20240618","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240618","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5ce1d67e5c9e36585349916a85a3f3d8cc806168","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240618.tgz","fileCount":120,"integrity":"sha512-nUnATyFjcoenJB7S5oPGea2s0dd8MVl+2NisBLm7E+zpXkX0KSLy8Y7aFNSQ+r1Hs/MrKfSlV4O8yiQpCuOqrQ==","signatures":[{"sig":"MEUCIQDdY7SNf3Y/vB1OrU9fqgPdd1PuDwsF9PG+hEb0mod/mAIgY/GYcXre3E453gZrK4npr93z9KvxrWtF4S7rknmWTiU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21893666},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"fb88f027b015d95816e91f6b4f0e67dc57fa7a9f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240618_1718694811068_0.49926453813655014","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240619":{"name":"typescript","version":"5.6.0-dev.20240619","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240619","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4bd33b6285a12ddb3823f1c49e2958abe3d82174","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240619.tgz","fileCount":120,"integrity":"sha512-sm/XGC2JAkC4NyslRNZhIyHOTEEcl3sY2bzaJ4mi1iz/wAH5nzOblREvminnB5lleWZhWxJiA+IgM0VBMdMmfA==","signatures":[{"sig":"MEUCIFWAmQw9ewLwSMw4CRMZ/CSsGb2BKRYHtc9rbLZMSmymAiEA5xtD168dALoHV9Z/ea7hBRZ1W+AaxsdB9ka7ZHDMzfA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21892146},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c38569655bb151ec351c27032fbd3ef43b8856ba","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240619_1718781181494_0.14581467775450507","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240620":{"name":"typescript","version":"5.6.0-dev.20240620","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240620","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bc8233dc115ae5ee247b22b9c59e1fc49e559d10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240620.tgz","fileCount":120,"integrity":"sha512-9ZJectAScwy9A0iOaJO+7WZo73nci6vjsLpHWxDomvxPT5N6Uq3gvSn+MIGdRPX818oBkpq7xZ8MFcVXdAUQGw==","signatures":[{"sig":"MEQCIB/KpHe+/qThXxNiXLxKkb8v4tDDHtrs/v2qHdqcOCuiAiBt8FCkp53i7+1BG4LBf6G4Q1Ilus4tNRdL6SbEk4rZLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21892202},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"aa249c094b9b96c86025e964469ed4c803190cca","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240620_1718867591401_0.031671476990782876","host":"s3://npm-registry-packages"}},"5.5.2":{"name":"typescript","version":"5.5.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.2","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c26f023cb0054e657ce04f72583ea2d85f8d0507","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.2.tgz","fileCount":120,"integrity":"sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==","signatures":[{"sig":"MEQCIFm5mbRCLej0gSqje2uZIyaK6gAm3RpT9nO8uipzW3BxAiBVPyM/79YAcq/6+kW6orETbx7DHaVJqeLLBR7pcXoLOg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21861502},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"ce2e60e4ea15a65992e54a9e8877d16be9d42abb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-NcRtPEOsPFFWjobJEtfihkLCZCXZt/os3zf8nTxjVH3RvTSxjrCamJpbExGvYOF+tFHc3pA65qpdwPbzjohhew==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.2_1718905023547_0.31777983299828505","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240621":{"name":"typescript","version":"5.6.0-dev.20240621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240621","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3071745346c6abe8670d343570df087d4c7f017c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240621.tgz","fileCount":120,"integrity":"sha512-1JHiBIcEY9qrX/0coAIUIdH0XdDUuwIJ7VZGZ1CbksCWq2bztyvRX7YIcGvTkN/kFGEcrmyFIUEouq+pnLvQPw==","signatures":[{"sig":"MEUCIEROspl6p/A5NzjkaroALavaE7MJvUFhx4e0WE5l0Z5sAiEAj/1ewZ8BG2KGCkDkkiG5Qea5pG//Fqv96XE0+baveWI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21894264},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"327bd0990f2ce3a7062f4c9bf0b8027cc44b2f4f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240621_1718954047182_0.6918424534263807","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240622":{"name":"typescript","version":"5.6.0-dev.20240622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240622","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b5f941fb35f61459a9e729c9ca12a3c3cc375f14","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240622.tgz","fileCount":120,"integrity":"sha512-neHnfoZcTorI72VCYHqjwwFRdtpWiUswWxONvtNW/r0vye7VZujzi20SG+1tJz7HyjPPtir5tSt3RN6nQ16osg==","signatures":[{"sig":"MEUCIHF1V+30PPIJpcVzwQjE42t+8CwZw+arLLsBzSoep7KvAiEAs0u9uC0b+aXPZo8vRL2r0FqH7CjxQeX6nvPl4H8PlHM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21894370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5d70bf894efe9014d24d4ba439807311e5b33fb8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240622_1719040415452_0.9754176331029749","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240623":{"name":"typescript","version":"5.6.0-dev.20240623","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240623","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"841360b866c35c0bf10476527d7c358d882b7465","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240623.tgz","fileCount":120,"integrity":"sha512-g9nRTnzICZMqhhULQsQC/Teb2Kbrd9Ad/sklK65F7Q1MNAF57X2t5y9u7GI1nCyiQLhGrmJqnxXETwDOBtjADQ==","signatures":[{"sig":"MEYCIQDeMFN0TVKlckse8OGk24+mXg7boGFCVNbtYZ0B/f1l7wIhAP2qF+8SgLLZQkN17kiaH9sLREKQyUIW28OIcqfhD3tn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21894370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5d70bf894efe9014d24d4ba439807311e5b33fb8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240623_1719126784003_0.8506512424283634","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240624":{"name":"typescript","version":"5.6.0-dev.20240624","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240624","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"49c2c79b96b1774a58a06175cffd8b7ab6abb9ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240624.tgz","fileCount":120,"integrity":"sha512-PPs1oU5IrlyMBmGLUdD8FpXSqE0O6XXVy1mGMBwVg+38QKe7JF6Ao/T4mlRJQgijMpv+Gn3wILodf0/6oH0cDA==","signatures":[{"sig":"MEYCIQC3Ro7rKGnDUfEvGEnuiaPH3M4o+BoQq5hTayJif07ADwIhAOHlA4AAE+txABM5AIWcsdTg930CIr6xTIcoCIUEYpLg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21894370},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5d70bf894efe9014d24d4ba439807311e5b33fb8","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240624_1719213171154_0.8000050228559137","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240625":{"name":"typescript","version":"5.6.0-dev.20240625","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240625","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5af212a230bcb26df3d888afe08f5da271aa9f70","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240625.tgz","fileCount":120,"integrity":"sha512-oFZTblDS6JxI4fqkiSKhm8uGXjZQ/aTqOiVTkNtttRoKySMDPdchADEl0+AclDFRJt92BGw6NQG5Q5PGs6dDxg==","signatures":[{"sig":"MEQCIC6Oee2pu4IgtBBUW4CggP1VZv85JeAxSi+r1hFkFykpAiBjz5L2felNLZ8ybiMPZ9nlWGuALnrWL1wSkF62yJRr3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21895543},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6c01f6c584b01caf58f2e860fe954591e8591166","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240625_1719299568225_0.4533966553486444","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240626":{"name":"typescript","version":"5.6.0-dev.20240626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240626","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1ec6397a6ca9b96d9c49d95bd22cde03166dca7e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240626.tgz","fileCount":120,"integrity":"sha512-OUmoaUrtJEMGnxr8luc4sBdJFMFl1rZHdG0h7lOT1J62RBkYiD/LfQJKaH7GcywgMA+oaONUb75kIHi3s8czkg==","signatures":[{"sig":"MEUCIQCWsZqDE+lJmgGMn69JYxwwk+6GfALcVR0FGLuBfFj85gIgGhGsrCEovT8PdY8Q3+S1mOMRJbC+Zhxq/YbwQG0DhDk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21897253},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ef339af12801c1f88ff4e01d4d4e602addfcca98","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.4","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.13.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.13.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.13.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240626_1719385997636_0.6943410077370684","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240627":{"name":"typescript","version":"5.6.0-dev.20240627","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240627","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f50baa35716a28c15273b2656dcc7f456a7b3d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240627.tgz","fileCount":120,"integrity":"sha512-fP6zd/pZ8baYlr3jR1sdhUxcuRrbL4kAEpGD4sx9Gr/eBvxKbs5mQqWTKICgxwbtKOXJ4KdrEoJkbx8+3PaZpg==","signatures":[{"sig":"MEUCIFrbzusiDZ/HiwgJ12KuiOtf7dLzm3Jhf8k2SYSy9xM/AiEAucm6PNIYE6jve8tjxlMKUfVcXFrBj8vC7HbDe1Cld8c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21895485},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"fe0bdc8cdeb4aeb2f914a6f093c72b99b9f5635f","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.14.1","mocha-fivemat-progress-reporter":"^0.1.0","@typescript-eslint/eslint-plugin":"^7.14.1","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240627_1719472372609_0.6846980056166965","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240628":{"name":"typescript","version":"5.6.0-dev.20240628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240628","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"daee2175a51f71a3c5ec0f71ff885ca0b25162c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240628.tgz","fileCount":120,"integrity":"sha512-XT57Gllario2IUjypenMgUbdHrNGtD52J13FyZckIC+h4ic13TllkJmoypbUr0HIYQ9IUB3SLq6/SaSBD4DoyQ==","signatures":[{"sig":"MEUCIQD+wKmO/dSre9adXAVKI0a1xWp1Q9ap90nSl0K4mRMhTgIgOTY8em4Hnid0Sn74BwTodbxsbOx/xnxfsCQMnuuK7OY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21871806},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9a23924d55367a3de89368f187318954fe40c439","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240628_1719558779588_0.7945879666873688","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240629":{"name":"typescript","version":"5.6.0-dev.20240629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240629","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"74ad5a05341af44a8622df573a718721f73e9df9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240629.tgz","fileCount":120,"integrity":"sha512-DVoEWccO+qZrfMdy38YxomX9UGUkdMM+hbwIxI4rM3ZEGSQTpLn2kEULCsm6IKkfwkBcDjmCeYUO3mbvAVNnEA==","signatures":[{"sig":"MEQCIDsgILUITGnkK4IwFshraDg7+5mGnEt9l75INuVAgSxUAiBTrw3CpjQdSFfW2RrPs2zltJX8kSLCbrRUi/Fnva17tg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21880098},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cb98634f4915bbf7468d33a380a54a372fb94e26","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240629_1719645179553_0.5618655926264147","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240630":{"name":"typescript","version":"5.6.0-dev.20240630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240630","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bc60c43b32c471774ebcaa57b6de660a8c251c02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240630.tgz","fileCount":120,"integrity":"sha512-AZ+Ec8/v9wH+iGZ2P0tmrEQxVtAasvQb7ezcxVKFlg+MwY0iylQVjBt/gKp8ppCpxJMkEPX52rFbC3Zdc9tEBw==","signatures":[{"sig":"MEYCIQDANinjyS/0WIj45bJDSFQmjmkGPzqDlEo64SXfb58w+QIhAKzRUshkyR7faH9/paajw/Oq0D5pt4edjkOgEKz99Itf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21880098},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cb98634f4915bbf7468d33a380a54a372fb94e26","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240630_1719731580612_0.8947047029884554","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240701":{"name":"typescript","version":"5.6.0-dev.20240701","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240701","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fee76140e3b1c4d37014ffee38c79ba245be938e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240701.tgz","fileCount":120,"integrity":"sha512-x8jIDJiBfgaT4/vpz3FwNKa2dYQsLZXKWsaCeyQWrXzkbKyirrGdVuOr3nbz0bcvteZNJ2BCZPDlAiwsX/pENw==","signatures":[{"sig":"MEYCIQDRkM1vZ8ay0ALRZMn3nnCWyeTpk9aKN43OrTOVumjuSQIhAKEgbwk2sryjGYde7X/xVjcx9xspiwY2ij+jC/bgP7E2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21880098},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cb98634f4915bbf7468d33a380a54a372fb94e26","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.5","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240701_1719817986274_0.17935172168546165","host":"s3://npm-registry-packages"}},"5.5.3":{"name":"typescript","version":"5.5.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.3","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1b0a3c394190838a0b168e771b0ad56a0af0faa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.3.tgz","fileCount":120,"integrity":"sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==","signatures":[{"sig":"MEUCIQCju8ckbvKBqu0HHXJN2cDS5D19NGKLefJZET+0MojkMgIgdoGwugtitPoe5gvdAbqlFjqZTB5mtr77e2cTVLlZakY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21861616},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"f0e992167440686f948965e5441a918b34251886","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-/hreyEujaB0w76zKo6717l3L0o/qEUtRgdvUBvlkhoWeOVMjMuHNHk0BRBzikzuGDqNmPQbg5ifMEqsHLiIUcQ==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.3_1719859350120_0.5078832820599868","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240702":{"name":"typescript","version":"5.6.0-dev.20240702","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240702","homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7cc7d517bdecff718710a92594cc5acf7ebe1047","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240702.tgz","fileCount":120,"integrity":"sha512-hbRazJD/2++Y7fBv6NZtCyoMfoVYmuDlGs+jqdWicZfXP6Fp8q9FDFnuvYpKNq1fXwBrGIUXEZlXssvXIWy/FQ==","signatures":[{"sig":"MEUCIQDJ0WGRKwphiWhrBmVFdkvUwme8ckE4DpArRc6WAxFTzwIgNoxMeL9WLfkYaH6PpYd8vLjWcBbOgn0bfKvcrx0Yl20=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21881397},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7bd7dfc007999f6ed2ab0491821d9d136b6293d4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240702_1719904398295_0.6229359228540801","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240703":{"name":"typescript","version":"5.6.0-dev.20240703","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240703","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4b1fad9790ff4827a9210c6943b3039b53a739da","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240703.tgz","fileCount":120,"integrity":"sha512-AAOGWtykhMpxB4l+5CwojT2aBVAszalz9guzYaZMavmKHWxm3HciR+cIcKqDgR22hR7fPBJHtOti7uFCo4mt4A==","signatures":[{"sig":"MEUCIANdwsb36KbuYTJ1usyQAgsNitswrrB4SmO/+T4TvH//AiEAugSHdbm30wEskMlupntw+vgZmtxy1doSidS4kj2OVH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21881397},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7bd7dfc007999f6ed2ab0491821d9d136b6293d4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240703_1719990812232_0.7954237120558256","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240704":{"name":"typescript","version":"5.6.0-dev.20240704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240704","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0353b1d32c5df73b6eb2d0024b573610fa1ca75c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240704.tgz","fileCount":120,"integrity":"sha512-dQ7dYp9FShLdziOgRehsozaKrvgCjR0/LTtrGAUq3Ec/gx0Tf38wmd/lGyNREOqfNMJkQCbVBMMCATXdj0aa9g==","signatures":[{"sig":"MEUCIDkkJGRbPLmEr0md7JlzR4YCXu5evSfefRYbAovHHf/UAiEA4D1dGXeForpZFO0uHNSWcanEIUKofmZ5FzujeX4pmlw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21882935},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c3efeb9d1b7414319d006cb6a6aa770051c70fad","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240704_1720077200491_0.5627295660744103","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240705":{"name":"typescript","version":"5.6.0-dev.20240705","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240705","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ed36b36611136af840fe90d5f82289ff2d8e693b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240705.tgz","fileCount":120,"integrity":"sha512-Z1GBiSYZqdb2B4kkFvX6sDIFZzCGD7+RtHI2/ci9IIZA1CPS6qzbiB/D2RmPupSCXpQ8FRqax1RU0tlD/n70oA==","signatures":[{"sig":"MEUCIAMbhRqzZtrtg2PrOM/45ENDHnmEGbfTdURvBSLZESZVAiEA/R6AwESplv7g3lEPYMgajYZMDGstKn9GOhYYEWOjiWM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21883255},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3163fe7e3898c1f48cd9bc097b96e3426cd2a453","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240705_1720163589591_0.4564324920126801","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240706":{"name":"typescript","version":"5.6.0-dev.20240706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240706","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9f73ae0350ddc3a49356514a490580be93632b72","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240706.tgz","fileCount":120,"integrity":"sha512-4I4aRNO+G6/iXtD1oFKll65gKS0P/8r15nRM32TOTOCShYji8azBDCXYh27GG+IfAudWzaAcMkC1NkVwYSxWnw==","signatures":[{"sig":"MEQCIF2jr8ils2SO56GpJ+KEkqre317ZCezOtCsUAC17lKQvAiAoAu9EAa9xTd8sVFnwGkYEZGMO7L6/wQhOBzuYZHCeNw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21883255},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3163fe7e3898c1f48cd9bc097b96e3426cd2a453","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240706_1720249979953_0.7963559877880233","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240707":{"name":"typescript","version":"5.6.0-dev.20240707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240707","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5a2dce442983d6c11c27763bf66a194e6a6fcada","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240707.tgz","fileCount":120,"integrity":"sha512-okqrnjZHfPQ1B/dW2eCbwCZlD/8S7bBcyu5cry+VoQD+sAU/XO8f1DwxQaGD3CG1wI33NEdRCYTEgB7Dbu7Qkg==","signatures":[{"sig":"MEUCIQCi8qum0clopN9HW0tKYd9Xrm6+3K7FPRTtX2E15GCymQIgfIbCqKceZkrVfOHKhBLEpGpFyZpLfcJ7NnMHBLHGRMU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21883255},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3163fe7e3898c1f48cd9bc097b96e3426cd2a453","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240707_1720336414800_0.29009846301866915","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240708":{"name":"typescript","version":"5.6.0-dev.20240708","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240708","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0508635b6e236f9ec63643d3b3f34ed15f81e3c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240708.tgz","fileCount":120,"integrity":"sha512-znYUhYs3kjemvesSDNvtU17+eUiQnX4RNegVbFdWQ54mXzYrg+0nI2isOO/RQCeGHFuO1M6uR/2/bC+mcDnAVQ==","signatures":[{"sig":"MEYCIQD0vZ65QA/OZNLUZAIk7+zKE0H09fI31dHn7MLWOWcv+wIhAINXVAy4JRPuLBKKbUV/C1JNZZhjFxAwu2Z+Ntqx7X8Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21883255},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3163fe7e3898c1f48cd9bc097b96e3426cd2a453","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.23.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240708_1720422848246_0.29930423158878283","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240709":{"name":"typescript","version":"5.6.0-dev.20240709","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240709","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5bfe61e1d6f259615cbae0ddcb68ddc7316ab2d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240709.tgz","fileCount":120,"integrity":"sha512-YNN8Gh/5qODspi9crUXshwnnzwaGhZ+kZYQAVDW4mPXTGRVOhIl0LVB9cOGsBH2igmuLSOIZlY3fOhZLVIdbqQ==","signatures":[{"sig":"MEYCIQD/NakEGsvKh0/Zn4E3tq+uze/p4bCxVpVj1uv2EnWFpQIhAIeRM6Q4FD83LTJW3FJfEMQLj8L1lxPWG4Pv6WGujUj3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21883978},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a6fb4dc103a57516450149d765e240e64a3a26b0","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240709_1720509201660_0.023428680220358267","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240710":{"name":"typescript","version":"5.6.0-dev.20240710","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240710","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"57705b8014ac8b4c82cf5ba0b8a11aebbea9f916","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240710.tgz","fileCount":120,"integrity":"sha512-W4KoPsKX2+oLR5QD9KEqqF//lhrVlqibMkq2lUhioMBETQjQvaGABvtTLtUoszswbVYmxqTipH+d4QL10ZXXkQ==","signatures":[{"sig":"MEYCIQCOSy34tPWPP5Nvd7ZvsD53vJTyw8soIdk5BOPU4IwbVQIhAJKx9AGpNCNc0Td3IkMSEqx3EmjvcAkCs9Vp3pMPLsJf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21884444},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a6a0f4ad58fc0d1a66c4a844dbeb53a855c13ab5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240710_1720595579666_0.4675490667360154","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240711":{"name":"typescript","version":"5.6.0-dev.20240711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240711","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2190141012fd1f3a535c13c7d4ba258c13ab4d74","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240711.tgz","fileCount":120,"integrity":"sha512-7P96lBbF9T4qBB2IseUQBz/IakXa9a0zLOywLmWTZQB6EFbRnRMlwa7103Q44mwI8tfvdXRmed3ICuxHxSNUwA==","signatures":[{"sig":"MEUCIQCroF9dn/FSqQZe994LsquEil4Vd6UnQfT05Oxfxdq3bAIgEAv6zdQ5/+jVhb4u+O55UfN2SKtMpPdBhfwVSmcrvVw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21886427},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e450c463c610136ee86392f90025e03071334def","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240711_1720681975019_0.17608877683476698","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240712":{"name":"typescript","version":"5.6.0-dev.20240712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240712","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"85ccc65418bc2f0e31a4eec4ac6f1aa013e4e649","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240712.tgz","fileCount":120,"integrity":"sha512-8Iu/vFdWrjtqSm31Dcp4rFgybCNdjMJVZFoWF6PlzEYE6M6eiA+TeKGgygspCbnErrBRjHgWrEMdP3LavHtQ+w==","signatures":[{"sig":"MEUCIQCVIypai77gAqb+pCB6E/DnulgHBORv50KYOO2JUPuqXAIgR7ri9MaVWgzR1HFFVDPnh2yBb63Oe7ACsbdi1s7uFYk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21887009},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"46410044add2e9f53cea58e445de18dcda53443f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240712_1720768370638_0.8851995831650148","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240713":{"name":"typescript","version":"5.6.0-dev.20240713","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240713","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d1380cb032f3cea2bbd0caa58f77016bbc0bcad8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240713.tgz","fileCount":120,"integrity":"sha512-J+4LjdEKAKO95oQ2Ff870vHVxa57ZMVSbfpyL0L5daYrnu48lQiMsXNDiG9IPT2RWF221Qt+LGxjug74XbeseQ==","signatures":[{"sig":"MEUCICJpVBRoUxYiIOP9yzOaHAbWyHtfkbCvFVFIPsmioxtEAiEArMBVtBj8RbTWLZoecWJCO5VqPzVdkWGRUZoCIJyDMKc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21883933},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6d3be985c82bead3b41348de76efec8110c677c5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240713_1720854771105_0.04045270761713615","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240714":{"name":"typescript","version":"5.6.0-dev.20240714","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240714","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b538eb2a48f226a23d497926d5f37e13a6247395","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240714.tgz","fileCount":120,"integrity":"sha512-Y7U2NlVOP63n3EV8bSwrxdyM2yHRQnX/TXNRZYjrQQJ5PfGOEgNVQV9fYEBfCLCHAaSU8cCdYFuxlOke8Wwabw==","signatures":[{"sig":"MEUCIQCJmOPWnW/htoxxSFJLKR7u9Hpk9C5xzorBqf2N9a/gvAIgUq450T1ejnslPY5eVpOWMYFrdCtKwQFBwR6Fy9x1Cas=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21883933},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6d3be985c82bead3b41348de76efec8110c677c5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240714_1720941179733_0.4606386103517268","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240715":{"name":"typescript","version":"5.6.0-dev.20240715","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240715","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"18b9e994f99916b90917943d5de8e78f781d1d70","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240715.tgz","fileCount":120,"integrity":"sha512-CLF8WFoqLgHgxQqjklkEOw3gT99Y2YNU4+TfkJurX5bfejAUYpb2jBjiYOn5Rq9HCew6ceZlRaG7Q++6/fBvVA==","signatures":[{"sig":"MEYCIQC42pMGDfdMEYvrPLtmuqv3f7PPZnV2QkQTi0c9/lNFAAIhAKVU/jKAI905nhCejbuf0sQ+l9NCwiYx0pP/V+wfzn/R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21883933},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6d3be985c82bead3b41348de76efec8110c677c5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240715_1721027582325_0.9905979687212401","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240716":{"name":"typescript","version":"5.6.0-dev.20240716","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240716","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"22458905df1b14a1e88ec1f78fa75cb3ec067da9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240716.tgz","fileCount":120,"integrity":"sha512-2ggzBwkH7PNY9/nztA6f7Wid7lSP+ayfJqAzNfZcLHvDFQCuvaeE2B6G1dxUEJQtaQa60f/aJYLwh4tZaHZAig==","signatures":[{"sig":"MEYCIQC8+OUBkpWHphguHyALWSjgehk371NRM+wcp1Q9vNdA2QIhAKjqbft8iYuPVJXwpbz8nfZFEOgFnSH2XwnZYkLQs+fZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21885420},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ec446b6f19b44ed3db2d787b59d9c99a5b710283","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240716_1721113960396_0.5722626848681129","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240717":{"name":"typescript","version":"5.6.0-dev.20240717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240717","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"641633bb05f3bd783fa248b0c95f3a7e4fb8e458","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240717.tgz","fileCount":120,"integrity":"sha512-W2qNu1NDYC0GopCV4ZR0pr7hdSlG59txBbYYJaMBFLxZAdmQBUa7lIQsClSzHGPlIZZADKcP9jSoAYDbIrihRA==","signatures":[{"sig":"MEUCIAbxy143RhzXMSV9tBYw3iUPbm1EDf+m4QCwBS9QQizaAiEAvrJtzwC243vn8pj1U7UBuYC6v+7G2jAUorNHHbdnSDI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21885472},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f37482cd16118409284e015409deaf14b416b4a0","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.2","knip":"^5.25.1","chalk":"^4.1.2","mocha":"^10.5.2","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.46.3","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.22.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.0","typescript":"^5.5.2","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.0","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.14.1","@dprint/typescript":"0.91.1","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.14.1","@types/source-map-support":"^0.5.10","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240717_1721200356032_0.2363100582033264","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240718":{"name":"typescript","version":"5.6.0-dev.20240718","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240718","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bbf791d842e6ac47046e6222239202c04ac21e5e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240718.tgz","fileCount":120,"integrity":"sha512-ucS1XFGhQjvY/YIYRt6GQMu3My4pffT3H+xEMq8b/RhFLClcR93IMeBKe1e77RQ7gHiS+4W6LXTCUpbmQnpWSw==","signatures":[{"sig":"MEQCIFV5koFHoJF2sqAdCBfJ1byK8NBmozETQ7uWMru1KGVoAiA1eawBXoUWf/529IIXJadNZx5YVCAxnECm6Dc8+930SQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21908545},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"14eca92fd77b101454c03181f084a8ecb9be8b76","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.6.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.2","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.16.1","@dprint/typescript":"0.91.3","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.16.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240718_1721286785859_0.7061621118022903","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240719":{"name":"typescript","version":"5.6.0-dev.20240719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240719","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1bee8182303b6f4cdfb7a0b97d721aeea5ef7fc9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240719.tgz","fileCount":120,"integrity":"sha512-gwHt3fdLbe+LLgZJnPaGZ7v9MHTkjrqjf4NpxznO0SmFVSu7cEd8IwEsePtmQQZAX3FtPdgfwDmeNktid848Hw==","signatures":[{"sig":"MEQCIFM2AFzK2YDXytd5cZcVBgFnFyfdsYEoPAM1nzxCU76JAiBPzthCKeB+KF3FAIlnjSxC8nLSRiqNVz4uB9cZ6gi5oQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21885821},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f8a7913c1e67cc7262c49b144a90b9d577a16fef","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.6.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.2","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.16.1","@dprint/typescript":"0.91.3","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.16.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240719_1721373183224_0.9910438559230732","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240720":{"name":"typescript","version":"5.6.0-dev.20240720","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240720","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7a53fce109b11590c0be73757e28766cb2736aa0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240720.tgz","fileCount":121,"integrity":"sha512-Ge3ruIOs9B3a2ePioDbn5kGuR+ImXQiPceXKaKXt/Ak8yQxtaOzcC+KkrjKBhaKdT95bDeHMAZZ1hnlvnX7XVw==","signatures":[{"sig":"MEUCIQC6qtGgu+Yf6NnkbJOOe9dB54OYQ/MNtigFwhGvyjSK4QIgJE0YNQVLmE5n0W2XtI09OJ3t0Y0jgfiL2TXDG9k4qG0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21905869},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"903e82b368c8328dba95b70b21415e7a48339857","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.6.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.2","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.16.1","@dprint/typescript":"0.91.3","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.16.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240720_1721459583000_0.32636553775948296","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240721":{"name":"typescript","version":"5.6.0-dev.20240721","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240721","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5ccad727badcfa6a9f270752c327cf4725382a12","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240721.tgz","fileCount":121,"integrity":"sha512-W6nC7VqNlG2tS+FhLE7yyvjm1WnIu/fWfrDBQy9dLEzQohE4CwEhy6WLTWrsMADLfmLERlnW8PjQEoC63u2zDg==","signatures":[{"sig":"MEYCIQCYedTgKCdXi3AbA/WVz5w4ZPdrLa1lowHbiCEK4B8pkAIhAJ50XHRaWD74czxIv+1BxhPnz4tphuiRt8REHuxu0fnn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21905869},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"903e82b368c8328dba95b70b21415e7a48339857","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.6.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.2","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.16.1","@dprint/typescript":"0.91.3","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.16.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240721_1721546008594_0.9948665920644071","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240722":{"name":"typescript","version":"5.6.0-dev.20240722","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240722","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6723bb9b33cd1ed63e5ec11b7c3dfdbe62dad829","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240722.tgz","fileCount":121,"integrity":"sha512-dWJX1TWXFnumBDkhCUWUruEyaiD6GRBAHM7TzoQuwLC724Q30TOVqMQq9qUOrGFRhEfhXrsancNTwLou7tWP8A==","signatures":[{"sig":"MEYCIQCss3iCm6kt4nDDY3pIiDWpRtAelP9jEUoYIjvEi/qGsQIhAO1kTqNi5f3PwvlBcXjT+CD9mdz7cSI7hncWieeAwdEf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21905869},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5929c963781a3f026a499746c7109a71b2400437","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.6.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.2","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.16.1","@dprint/typescript":"0.91.3","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.16.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240722_1721632380760_0.1197461172243861","host":"s3://npm-registry-packages"}},"5.5.4":{"name":"typescript","version":"5.5.4","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.5.4","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/Microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.5.4.tgz","fileCount":120,"integrity":"sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==","signatures":[{"sig":"MEQCID12hZ/FO5G5FgU5LnKnrL8C7yltijWO48jiqYgy8HNIAiBuEaaZaeHF2w7OpwT5Gt1Yjr6zMQZ/PBVfexYA85UQIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21870234},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false,"@microsoft/typescript-etw":false},"engines":{"node":">=14.17"},"gitHead":"c8a7d589e647e19c94150d9892909f3aa93e48eb","scripts":{"gulp":"hereby","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q==","repository":{"url":"git+https://github.com/Microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^9.1.0","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.1","chalk":"^4.1.2","mocha":"^10.4.0","tslib":"^2.6.2","which":"^3.0.1","dprint":"^0.46.1","eslint":"^8.57.0","hereby":"^1.8.9","esbuild":"^0.21.4","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","node-fetch":"^3.3.2","playwright":"^1.44.1","typescript":"^5.4.5","@types/chai":"^4.3.16","@types/node":"latest","@types/mocha":"^10.0.6","@types/which":"^3.0.3","jsonc-parser":"^3.2.1","@octokit/rest":"^20.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.3.0","@esfx/canceltoken":"^1.0.0","@dprint/typescript":"0.91.0","source-map-support":"^0.5.21","eslint-plugin-local":"^4.2.2","azure-devops-node-api":"^13.0.0","@typescript-eslint/utils":"^7.11.0","@types/source-map-support":"^0.5.10","@typescript-eslint/parser":"^7.11.0","mocha-fivemat-progress-reporter":"^0.1.0","@types/microsoft__typescript-etw":"^0.1.3","@typescript-eslint/eslint-plugin":"^7.11.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.5.4_1721689371596_0.4262229519726741","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240723":{"name":"typescript","version":"5.6.0-dev.20240723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240723","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"de2cbd7a67f356af4122359a44efb6a6805dd823","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240723.tgz","fileCount":121,"integrity":"sha512-IciIh6EUuMxUQ9OvnmBtrkJwuVD9zWhl9smsA+5yYz9Zpodi5qs4qhp4KldiUj86dRGREtT3+10PpUX7RMm02Q==","signatures":[{"sig":"MEUCIQC33M170OToXXvqs7iLm1ItEPFXfj401WAem21NTl6nmgIgGmOC0Zs6pyC1E/8DF2yrdTxI13ogF3urECncgoL90vw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21916021},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b04c8a0edd3a750cf5ae701d82fd164daa594381","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.6.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.2","typescript":"^5.5.3","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.16.1","@dprint/typescript":"0.91.3","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.16.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240723_1721718783941_0.9927880702425791","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240724":{"name":"typescript","version":"5.6.0-dev.20240724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240724","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1a1fb27c7c1eedb02e61e3f051caf2834c58115","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240724.tgz","fileCount":121,"integrity":"sha512-Pt8jpBaxD2KNGsnUGT8nSpmbjXzhcEaAAb5PxHUDl0nSLGgaRN/gd+1LugisY1xvTtWsX3n4ZOSPeB9hfktwrA==","signatures":[{"sig":"MEYCIQC2OUn0lUwPxxEAj3WyRE89ZnJ94iUX+KpTv8qLsLA8jwIhAI1zUHVvTVCnlUBX8FeGV4ho4rAd1I4xmqQcAiVrBYAa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21920727},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3f6f3164d6b8226953490bb43fd1ae5a7aa99fa4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240724_1721805180594_0.1212526672428047","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240725":{"name":"typescript","version":"5.6.0-dev.20240725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240725","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4a576ae2caf76112cf4efda9b9c1489fa8c333e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240725.tgz","fileCount":121,"integrity":"sha512-kgUK4mJogTfm3+NjdYSb7LIerXpAG8lyYSdPHdfGPaJyBRhMJARPENf0TeUxhEOrGRuxHTrIPKdrSOQX5xTsuw==","signatures":[{"sig":"MEUCIDxIreKeBhb0lRR0bAOzRQkO1vgr/h8gJ+Vtb3wwJoxTAiEAubp+wM/SsN48vtvsTa+UCXWuauyAe5MveX4nMwO8p8A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21920084},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7319968e90600102892a79142fb804bcbe384160","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240725_1721891595090_0.9113780032952743","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240726":{"name":"typescript","version":"5.6.0-dev.20240726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240726","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"59709c99324884751fdce85a36a5e1e04fa24906","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240726.tgz","fileCount":121,"integrity":"sha512-/KHI7WR6NxpuU91TJcSU18tTIIzpDzu5SWQBCt2yS09dGF6Hoys85rdggtSXlHybfTZ5ZT9B2sU7DwNaoW04Pw==","signatures":[{"sig":"MEYCIQDsLAAaTsp0GcUs4b0EjDnJ0C4QyYk630piyWbWYaPq6AIhAOTts9jjW0OX8+PufJJDCHli1lgpNE+t+0sQP0y83OTp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21922258},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"12ae799eda74aca6a4051f1ebee4d2d0c8d817a2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240726_1721977982612_0.6177919232440059","host":"s3://npm-registry-packages"}},"5.6.0-beta":{"name":"typescript","version":"5.6.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0e5a341a32ad4454656ff9aea918bd14e1aedf1f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-beta.tgz","fileCount":121,"integrity":"sha512-wqVumY25SwHmCJvZPHqbWfjSyWdAqTTUM+LqaPpFccOnln54EZoPr8Ra7qJV8HMEdFYcDc+S5xro0RyvaHvIvw==","signatures":[{"sig":"MEQCIClU3JO19sRVvFSYVilzTeqiqSCDPk+V1sMGW9LQqKzoAiBQWKwCB8RnsbNn36ZimAICeFKBDQHLBKGqyuvMMLpP7g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21920725},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b4732bdd6199ec353ec0873f334515f391d80d3b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-wqVumY25SwHmCJvZPHqbWfjSyWdAqTTUM+LqaPpFccOnln54EZoPr8Ra7qJV8HMEdFYcDc+S5xro0RyvaHvIvw==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-beta_1722002435826_0.668576403279737","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240727":{"name":"typescript","version":"5.6.0-dev.20240727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240727","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"08f45107c3bbb89b2e336f9aefdd7e66a1743da2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240727.tgz","fileCount":121,"integrity":"sha512-BaXxGXXwxH/D5L2pcTFLz84BUvJN45dfUrlu3a8YNKa7tWa14NJ6epJO3qgjcI8+xGH2jXLcF1R8pdQgm2wlFw==","signatures":[{"sig":"MEQCIEaSLrd1fF0ALKkPRQ/h1L2MHvVWPclw4T4St1aj+PypAiAmZspW9jAxu6/Gf8h0JRv588TrOy4YG8ygrT2Gw7S4Ew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21925091},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9757109cafcb771a35ad9fe09855373cdd82005a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240727_1722064438132_0.8359997296342416","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240728":{"name":"typescript","version":"5.6.0-dev.20240728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240728","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"95624fa0c84bd9af34f8f3e8bbddbe6a3419c37f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240728.tgz","fileCount":121,"integrity":"sha512-dVgfcT0kPaFVh9d6PoD+qOp5gLkeTpvn3k0AO/R5+AlNn5+Co3Ey4shTVD4J4nudUqyibN1SMWYrcrVgQXaE2A==","signatures":[{"sig":"MEUCIDKFZlvc+jsLznCdjTWLJqK5SrU+Nm0O6OVbMkIlU+GoAiEAptoSfKeVlUu/1VbCypsHkTyoBdVw6x47QA/agcVLLp0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21925091},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9757109cafcb771a35ad9fe09855373cdd82005a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240728_1722150778356_0.6387630305703593","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240729":{"name":"typescript","version":"5.6.0-dev.20240729","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240729","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ef2ea4fe3ffc6796843e15edd432d14991c4ffff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240729.tgz","fileCount":121,"integrity":"sha512-gkoeeiVub1uQcqWMcSlQWFJnbDkF1Hm316iUdGatuIo7O8q0Vis7zM1G3orXxjmoxJSWjuq0ENPM8GdYJAVikQ==","signatures":[{"sig":"MEYCIQCf1KtQDq1ZbgnB80t0S8mzCzSETOou6DRJnQ+y+pap3gIhAM/HSPndcdmet5qD/St9L2bL4Pwd6913OZvZbHhKTk0F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21925091},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9757109cafcb771a35ad9fe09855373cdd82005a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240729_1722237214071_0.8812023324354581","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240730":{"name":"typescript","version":"5.6.0-dev.20240730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240730","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"03c83e68a306c6ad9af5973ea1cba5f65dded903","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240730.tgz","fileCount":121,"integrity":"sha512-i0xbpbeqFm+j2FGOU9ghel5U2nK6FP9mKLbdvms41n1mIjh56sGdexxjHNUUCmQr1rHGZtChRhLkxDcHmj72EA==","signatures":[{"sig":"MEQCIB1/WrGC4/A4YCiNCHiOrbFNk7MrJK0bghFMFGvhKXAFAiB9OLq56fulrz6C5I5/BGjnT9VWL9arvjN1WfhdX5ZFww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21927765},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d7ff565b6c3057f844d007d5417ec84d5aafda87","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240730_1722323615666_0.2771962516600692","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240731":{"name":"typescript","version":"5.6.0-dev.20240731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240731","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"350f7e3ed8ea3eba2bf9cabb8ab112345fe9688c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240731.tgz","fileCount":121,"integrity":"sha512-XNueWVxo4buZCEMor0GB/x7ZpzbPzowRNc42fznRinFzGipR+v+Dgelpd6cJvdkN7/TSFASN2M2jQxDeZnk95A==","signatures":[{"sig":"MEUCIQDZ0k159q5DDN2gsFBQiSq6MtJUeUDsO/RqYtAK6lyigQIgKPbuVRE2fD6V4AMBxpC9t2zMjW5JWseeF69HlKG64Fs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22389552},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"34048178a2b340518aa6baa888635788c9283055","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240731_1722409998264_0.37730646015857094","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240801":{"name":"typescript","version":"5.6.0-dev.20240801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240801","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ce67a43dd5e259c161ed1f3812780414d831be03","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240801.tgz","fileCount":121,"integrity":"sha512-UFOUlGsr3D8LwcLN+P0v3iRHVU3cKqrXGWY2NmH6Wb+PGQajz/rhbDblAXhs0oK28XzSy5yugqYIHsSsuZV9ww==","signatures":[{"sig":"MEYCIQCfrcBE1ZJXeFujqOV2ERcKrE9Mac06/JCv3rcuGrWhSgIhAL7gFFWsYEMTHONGdN/BbA4ZidL/T2QOyXjkC3xeXyqE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22389854},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"41b993bebe01c3401269839ffda4ae9a422ebb6b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240801_1722496385532_0.397352423955069","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240802":{"name":"typescript","version":"5.6.0-dev.20240802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240802","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1bc3608d960151ddfa7dafb22852dbebad1d101","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240802.tgz","fileCount":121,"integrity":"sha512-aPQg1SL05JivtUdMmXq3BBa9NqhNbDvOlDPXvCf3K+kZ5jkxDdf2El6BLEkkzxkWOczoxma8l40ppGsC6pF40A==","signatures":[{"sig":"MEYCIQCL5gIk+tjvdo/H5F6gF8L5mkElNhzD3OvQEhzIQIRntgIhAKd5aXuhJA+3lYr2as1Du8djYc622JqA/0VB56yNK5bQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22390694},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8daac14aa4e4ab5b6426bc9f1ac88ff50104981b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.4.1","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.26.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^13.24.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.16","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.17.0","@dprint/typescript":"0.91.4","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.17.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.9.3","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240802_1722582825400_0.5330621890077725","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240803":{"name":"typescript","version":"5.6.0-dev.20240803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240803","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c718c09cc9407547ce49edb735ecd18d4004dd98","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240803.tgz","fileCount":121,"integrity":"sha512-iVzsoMLqRMA/IdjeRAOm3k0nGH/2oBPeDfWYazVPW+vL4MKyhGtQB8UyMc4lZqSNIBNcql41SS6m2As86qYJqw==","signatures":[{"sig":"MEQCIDwGBTSjeHhPMJL6weG/6Yy7EZaDsEGo3erCxGEXPY/gAiAORLV5JEpZ2a3PlfypB2gLzgv73GhD3+GA48nhvYuGOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22389882},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"aafdfe5b3f76f5c41abeec412ce73c86da94c75f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240803_1722669187460_0.6802306413697905","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240804":{"name":"typescript","version":"5.6.0-dev.20240804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240804","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"937a91e7de129b3257bf9896d2d6dea3aaf20c5c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240804.tgz","fileCount":121,"integrity":"sha512-ceiGncJ10hB9IgD3BxGc5e9Ug+4a/JVQKZFQR+ctQGzktWKH/vUZZNwg+PadUipPk/EH4WLFUc7infEUCNOtLQ==","signatures":[{"sig":"MEQCIFzHztX6dhE/SQGvmKbkLNNMjlhL6QEPqk/+O+PNiS9OAiA1ogIBUYZ+tE1jbH/ZrvqoctU4wxZ9UAoO/vHircR7Dw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22389882},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"aafdfe5b3f76f5c41abeec412ce73c86da94c75f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240804_1722755591576_0.20035617239677395","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240805":{"name":"typescript","version":"5.6.0-dev.20240805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240805","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a34529078a24e992a6cf81f5596da8cff654de25","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240805.tgz","fileCount":121,"integrity":"sha512-M+pWeLKA2huCTB2GLE0/0U/ezJh51Wdmm6J3BS1UxieKcnx1Kz2/NivXOnmCZY40gY6ItpMlLjnJIMXprNG9UQ==","signatures":[{"sig":"MEUCIQCDBPoVw0K56XHvS1hq87vViu7Do4ogjlRCMjvrfOT2lgIgUjH4WPWljoq35dcpyzVv7OxmCyPAaopS/TMcftN5RvU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22389882},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"aafdfe5b3f76f5c41abeec412ce73c86da94c75f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240805_1722841981907_0.9454197937309052","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240806":{"name":"typescript","version":"5.6.0-dev.20240806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240806","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f8f4701cb4a8f2ef6c71e314292f5c1b1f3973ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240806.tgz","fileCount":121,"integrity":"sha512-Z1wBRhFTpBIiu3jcsAkMBdefugM+kECHRO22B9Ai6D1CiHZjdvE+QLDThIoPbGFHvsEyR4gP8/0pv93QKPtcJQ==","signatures":[{"sig":"MEQCIElM4paVbJuJ2nBqf7TJ3ZyLG3QCdPmxcMLfiXv+R4mQAiAqr1/SEs+3VS6l2RkHD9m6ahlRN2gRFTkV52OQAJoYfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22393700},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a745d1b20501c1c305ab2c338137318a8cd331a9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240806_1722928398417_0.7735714541680383","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240807":{"name":"typescript","version":"5.6.0-dev.20240807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240807","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2c3eee13cdd8a251607fadd29a7f181758d5191f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240807.tgz","fileCount":121,"integrity":"sha512-+5sI7HI0VR04hysSSG6XUTEXoUf4nZTMc+p7WLpdWmxqYVO/dodTdMbWRw+JeKNPW9tXzJ66jrGvED+hfBmizw==","signatures":[{"sig":"MEUCIANnZXavHpx7dkqXBFue5czwm2OIQxPnwnl4Cf/vvsDxAiEAtwmmNkk1SoqkJ4SGq/DKktOC3Zoi9igIQHRiBuU0FDg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22394455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"99878128f032786bd3ad1295402a04ca7002eeb2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240807_1723014796763_0.5501267959015717","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240808":{"name":"typescript","version":"5.6.0-dev.20240808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240808","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f278698319d34e55d0cc3df72d9907b1141b9e46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240808.tgz","fileCount":121,"integrity":"sha512-Fn1H6AFLEKTJkakCqVOAkqNoGCSXhYi9GKW13/a5WWOMAdCtzBcdcViWbfNgu96DcSB9mVulqpHe6XCVdzWERg==","signatures":[{"sig":"MEQCIFlKkxPw4rAIk+tnO8+lzJU2cwmA7QCu6gvQnQzK9oa5AiAna5/2dGfJPigP2nHPhMkEe4khM9RvbPv6oRRUiPVK4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22394455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"99878128f032786bd3ad1295402a04ca7002eeb2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240808_1723101197381_0.2999379659706993","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240809":{"name":"typescript","version":"5.6.0-dev.20240809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240809","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"46f8f6fc9503933f4d5410b981ec135f5e3c3f66","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240809.tgz","fileCount":121,"integrity":"sha512-FR/CnWCicfrcZapalmc4c9lKRxsR+9RCxIBm+Msx6duXy9Yiu+MifWStLuNYLPXr2uRLdp0ybb9aGFkrXP5UdQ==","signatures":[{"sig":"MEQCIHBw0l647w1mnvSB869cxmOFBuFS4U7NlAoF0xwfPOZVAiAlu4u50saA9VUC+ZrnElCZIpEFqqIWZbRrxEYCH+MS+g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22400057},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1bb1d2a6105a9a05a10409265f35cbe37d89b3e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240809_1723187592722_0.09331401488909741","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240810":{"name":"typescript","version":"5.6.0-dev.20240810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240810","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a2d47f2964d727e5c2ccaf654d136500506c3242","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240810.tgz","fileCount":121,"integrity":"sha512-X1G99j+LKr2crVMNe9WpoKgzRSK3yv32I/HJU+9Fa8WPeHGmHooAkdZSUaY1U9rYRs3m2Ueg4S+GLwy8RpQZKg==","signatures":[{"sig":"MEUCICv5vLuwUAFc5B+0EVLUNKTyGPnEyR3DImgJTWJuNs6zAiEApL0NxoGxtF55hDm2Jo9/Kyd2TD8Y0hFfa9ike3EvzRM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22408070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4b12d82b6bb4c8e2ad7df3219ae7282e360e62f9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240810_1723273996170_0.7294280511874194","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240811":{"name":"typescript","version":"5.6.0-dev.20240811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240811","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"288099c366542edd0da1bb3765ecf2f8c57ea02c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240811.tgz","fileCount":121,"integrity":"sha512-+vAe1vHwzxr6s3eb/nz86lOBvZE0v2DmTPESd7GS6ffUbAt1g2cE/1X+X98czFgov6Dh49LVaftAVoTBCfSMBQ==","signatures":[{"sig":"MEUCIGISf3nZ4FQtLtBbqMFtGDCWo5BqWsrtI8xkv5SpX/2qAiEAoPfHIjKM5aytJPEZ+lq3hA4jf8tmmRhnhydPN3eIjxc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22408070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4b12d82b6bb4c8e2ad7df3219ae7282e360e62f9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240811_1723360400133_0.91153838418388","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240812":{"name":"typescript","version":"5.6.0-dev.20240812","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240812","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5eeb148dbeebc734d1cf014392249215036df72c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240812.tgz","fileCount":121,"integrity":"sha512-TR3m7teVCHUhgqmFTj3TKFevzF4GMWOvesnhjWlBfUn3TRy4Z3xhJ9FzxzeEfupEqNWOagszD1Q0Ym46BtyE2g==","signatures":[{"sig":"MEQCIHpmyVYF231SPrVHNsOrDWX2DlDjNWzTHVDm7wxOfg5rAiALDCklUHIjGyVAaQG0z9nDCsjpIBboO6Yoe9Wh402lXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22408070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4b12d82b6bb4c8e2ad7df3219ae7282e360e62f9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.0","chalk":"^4.1.2","mocha":"^10.7.0","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^8.57.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^8.57.0","node-fetch":"^3.3.2","playwright":"^1.45.3","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^7.18.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.1","@typescript-eslint/utils":"^7.18.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.3.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240812_1723446803450_0.07588595560727707","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240813":{"name":"typescript","version":"5.6.0-dev.20240813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240813","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"14e059865cac05a7a1572efddc12f7325f061f9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240813.tgz","fileCount":121,"integrity":"sha512-McNeLEHipa5j8HBxMoN8geftDXyyMHKiN0fGefa+4KzUTR/ZhDbIskwMhYxB159cFZ/sXfy7mzyPhLWyN5IQ5Q==","signatures":[{"sig":"MEYCIQD6t4pZDcvwll8ZpwxUyTK0ka2ah5KTUxhsJAJ5p0dU+QIhAJUMVYbx238zBRDMazIlR6xj7HvSF3BgeEB9Jbg7tWxT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22408915},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"01a874a8baf6a5fc0c9b47d3902221311671b01c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240813_1723533185387_0.6921867947143032","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240814":{"name":"typescript","version":"5.6.0-dev.20240814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240814","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"55f6eb373301a6fd987e6b70c28bd72f4a73332b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240814.tgz","fileCount":121,"integrity":"sha512-7N6qhxVbJ3E1LdEZ68/WbvZMwlXp9bErVUs2yNA7XaSVDkg+iAYPM24ba0VeGkpR105+e5gaGhAYShD274qBWQ==","signatures":[{"sig":"MEYCIQCK94SniwHevoxi+3gGZd1nu30DLpkHjBQGQMHnS+Pv5wIhANzmaHWcQMmE+w54VtH63GZfaSHAcEuglONiMTQbGf5y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22410653},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"77534875918d98c75006123a910ebf89fd4fb1be","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240814_1723619587770_0.6426655747628733","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240815":{"name":"typescript","version":"5.6.0-dev.20240815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240815","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8406d080fd13cc03e52020038fdea4ca81ffd9c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240815.tgz","fileCount":121,"integrity":"sha512-s/pqeJ9u7rBpafx0JKVmFic5QVh/iuuF095xA8qHImL6pOqIEkkBWQu/fvLVdLEB5W/aOsrVQuxrXrSyykzjyA==","signatures":[{"sig":"MEUCIAoEGMcuo1jLuL22x/BdOLBLfKPFlC+FyWzPG8IUtbhrAiEA6wWoWBqb/5YxQWhJsPQx9475+R+BnkCpNJOosRMpvcg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22414019},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3ed2e8ed34419890228935f0cd59df80e7a10f1f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240815_1723706006331_0.07194970512774157","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240816":{"name":"typescript","version":"5.6.0-dev.20240816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240816","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8379bca47a0cc4d015f729e1bea55935fd86d285","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240816.tgz","fileCount":121,"integrity":"sha512-q6FNh1r9BcrpYEeblr50Kh7l1G+TZkYHt73Cr0VljCILUYBEyJ4kd6C5MB/cLr6EN9vJaud1CKijp2yl8ZlRuw==","signatures":[{"sig":"MEQCIGuvA9S9uhqnWyoFW8p+j4su53w/234bvrbVsvTNkfJiAiBgg2n+7zO2GKBVrDp4E0SIVOlees0JO0+d8Zrus9cAXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22416848},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"52395892e0c4ee8a22b4fa6190bad46d81e66651","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240816_1723792417701_0.7821203886729149","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240817":{"name":"typescript","version":"5.6.0-dev.20240817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240817","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"022268917dbdb994f8dfb260b7c05bf771a21a6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240817.tgz","fileCount":121,"integrity":"sha512-f2FxMVKxw99Z+yWQ2wjstWMNvu5K//IWGHmFvVQtYojPdKQX+Z7tqzz8hgNA6Ev8BMYV6EbSaPWuckaiz7A9dQ==","signatures":[{"sig":"MEUCIHrLJRnUvX8FupfdE3FUwKk8XsiEl2QbrQXKLeGjH+z+AiEA6HC+v/9n3NLHAaT0n93N44V7cKzT9RaG20MaalCm1gw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22423597},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d06fb82d7c79cf26893b50d7787af0fe2ffbe845","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240817_1723878783963_0.10577222070409364","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240818":{"name":"typescript","version":"5.6.0-dev.20240818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240818","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21f262c6f9fe42635e61a9be32b643a0869b1333","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240818.tgz","fileCount":121,"integrity":"sha512-37tFqLMcNttFSQJzA42xR61P+cEh8q4lJ+OyF1emk7M79J4Vzxuz3ZXjTOeNtSekaVVelfcKE4mEubac3yytTg==","signatures":[{"sig":"MEQCIGI+l3r/72DeQ3OIK7cQlYWpCrBgYETcFJ4obxd5uOjHAiAZ3Wf7o6g4yVeMf/8bM8G43SajkOGLkRVigIKos8vgWA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22424341},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2a8865e6ba95c9bdcdb9e2c9c08f10c5f5c75391","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240818_1723965174075_0.9803894695107986","host":"s3://npm-registry-packages"}},"5.6.0-dev.20240819":{"name":"typescript","version":"5.6.0-dev.20240819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.0-dev.20240819","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6caff5ed8cd97cd01b5778833700e182c6fd5540","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.0-dev.20240819.tgz","fileCount":121,"integrity":"sha512-uNOMaNm8jBELjhuXZG5tSS6Pa6O/Wf89hawKkWaZcZvbkgkY2ykvNTNrkCP7QCQTSS3jwEVvd+pRhxJPxUeG4g==","signatures":[{"sig":"MEQCIEQ76nQcDj1fXfscrIkZJ0+7m49xKb47z+8FMpXK3WcVAiBsebetFFBJn36DH74QDk4t7C03gR+VSklGkGqxneu0RQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22424341},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2a8865e6ba95c9bdcdb9e2c9c08f10c5f5c75391","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.0-dev.20240819_1724051580045_0.8041046823582902","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240820":{"name":"typescript","version":"5.7.0-dev.20240820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240820","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dbe59f1177153e26a55c6c05d7982b4f5d3303ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240820.tgz","fileCount":121,"integrity":"sha512-5qaYMUGLvSJ2v7a5i/EtE/UZEL4boEichoP4z50a/bOYX45Lvn+I0RPkV917qdE5cGX+kIVtgmSNUEcng7GWqw==","signatures":[{"sig":"MEUCIQDgGqdOwmSWz2ZDTXr4L1hTxQvVz4sWSv2S2rU+ib5KOQIgRGQbrXeb7SIL0XGP36tv/1VGeuh5iKtsJ2fFuATkR7w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22435465},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2192336dfee6f740b5828c8a4a8226e56626de1d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240820_1724138036563_0.7572108641317303","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240821":{"name":"typescript","version":"5.7.0-dev.20240821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240821","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3c89a3f52ae55648249707dc59014fe4980b1bd3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240821.tgz","fileCount":121,"integrity":"sha512-0Fy9p2k7DxC6OWPSXqJbrzkaxL4R7N+VRaxHnFeWnYSqwLfKQTX2JeARy+MGcSphRP9KKe/DtMGXYdoULHjMHw==","signatures":[{"sig":"MEUCIQD6nl/kPhl0lCCoUhCW9u4gGftCButXEJsbRM30jviTWwIgaFmQI5mjybaWD6qHKXhHdVdi4F2pLEfxy0l/iNR2H3Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22438427},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7f597beb2ea8fc101c5ae1bf0a7d02aa809a685a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240821_1724224391429_0.7497381070767082","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240822":{"name":"typescript","version":"5.7.0-dev.20240822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240822","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f011e449f106abe96f12e81e25d9cc3e80b92f21","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240822.tgz","fileCount":121,"integrity":"sha512-JL60efPDEbshbweVXX18Ic5g+9iVbf2Nc3xh3eBGbLjrt5+x6KZzB3c2d+J5PoqOzPjbFATCT2FQ3W8vEGOXTg==","signatures":[{"sig":"MEYCIQCJstPScYxnuUCbB0iQCTX6T7MCtjzCVgpCZpRN+dbHBAIhAJqjL/E/5eT2Bw1i+oVG6+PxvB06yXbNUnDBmGVP5fIi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22452646},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a5eec2485f8798ece493c00fce1cde4d8f8a8147","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240822_1724310830376_0.2476804276463298","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240823":{"name":"typescript","version":"5.7.0-dev.20240823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240823","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2d46ed00d991e7d745360fe1259bf908bd256189","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240823.tgz","fileCount":121,"integrity":"sha512-RC1ePjOemjV49k7p0C5NwjawdKRFN5Gej5VWOBpgJgzj8VCzldBso00cOIg3VPZOFjSuNEJ5mS7vKoMsn9mmew==","signatures":[{"sig":"MEQCID5Bds1i7i6ETM7ergxCVLtS09X7GwBdtR7SxU6DD+05AiAFzctU4Twdu2HmnoRHVhQl8Ve1htwxCd0kX63GVBL4BQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22452689},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3abe069fd209bad595fdde6db00d03c5c5c1fa90","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240823_1724397222183_0.8484536161455722","host":"s3://npm-registry-packages"}},"5.6.1-rc":{"name":"typescript","version":"5.6.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d5e4d7d8170174fed607b74cc32aba3d77018e02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.1-rc.tgz","fileCount":121,"integrity":"sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==","signatures":[{"sig":"MEUCIQD59EBiZkB9yz2wVyFqmBIMhGxjbb6jcCs36ACifzofQQIgBNbderrV/03gNlNT9cEQsdQ+rSmtAnbxEg7aQWy0bgQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22426274},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6212132b835145b1a8fd49982680ac668caf3ddc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-E3b2+1zEFu84jB0YQi9BORDjz9+jGbwwy1Zi3G0LUNw7a7cePUrHMRNy8aPh53nXpkFGVHSxIZo5vKTfYaFiBQ==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.1-rc_1724429329243_0.4392496882007286","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240824":{"name":"typescript","version":"5.7.0-dev.20240824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240824","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a5066e2add35fe5e77822d62eddcd1418e0a2175","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240824.tgz","fileCount":121,"integrity":"sha512-aLD0C4cCh+o+FpXa74BnC95w0oFvBL/D7tHz03X6MzYtLCmfeI2zu2NMhqPxjPADcm/UUYSO+rTXXyjQVvbVwA==","signatures":[{"sig":"MEQCIEZvbaaKKbVL3N2jaRUVwwKbbs96uEgyOpe9+GicRAGAAiAop0ZjlR2HD4Ui+/WMAMvLO+EA+gFdRdcPWUeDHxjJIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22459293},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a86b5e2b01075db5046521958a3e0b905b4ca667","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240824_1724483604470_0.5354883063803415","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240825":{"name":"typescript","version":"5.7.0-dev.20240825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240825","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a5d743a486b75778f595d85f7d02fc338d2cac14","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240825.tgz","fileCount":121,"integrity":"sha512-Jvp8aTJ4RVnO3WFg89Cc1TN6MHGGWifrVoOyQD3OwKfIYqXqvhD+8iUNHJAOJCgp3FtVY+qtxwuLiH6MQ3XpqQ==","signatures":[{"sig":"MEYCIQDQAd8WIbR/YpMqYeGv9lK3RhKpAhcIs6vaRFm9QssiXwIhAL3B8dCB4eG/4JUhQ0kwyjvn4LNsW7sGeh17HrHIWM1P","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22459293},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a86b5e2b01075db5046521958a3e0b905b4ca667","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240825_1724569995766_0.3986369908705647","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240826":{"name":"typescript","version":"5.7.0-dev.20240826","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240826","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"81141692ffa634350236c866a5646faf5d565063","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240826.tgz","fileCount":121,"integrity":"sha512-TsvYVfLcEGOXj9aWrf72qFTnZ8B+IoDuRQwPDHZMO6Y9QzIjM0iOhydUEKS9HPxpypAcyt1RC6xT9GybzOiLZQ==","signatures":[{"sig":"MEUCIBW5ub4HH1DXVoYGQWfTnmgaY14IalXMgDJ2l1gYtHfDAiEA4UNqauNnki10HZ8oUm+WfQmPlqPEMA4NUmDzxA5A5FA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22459293},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a86b5e2b01075db5046521958a3e0b905b4ca667","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240826_1724656435921_0.800812074003201","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240827":{"name":"typescript","version":"5.7.0-dev.20240827","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240827","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"556be4d7ba683ec7c691aa895d10293934df8b90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240827.tgz","fileCount":121,"integrity":"sha512-qNwNQBg18O4Z5RRGb07O562OpDlAVlytNcKfqcx8JQRJcs3p/KLHXjr0FbUbJ3SKoxA2vaQ3Zt89YLWHuCXzUw==","signatures":[{"sig":"MEYCIQCZ9n5EzfSsp7L7Mo9tFv1cFKuqAZrm7B64cd5z0HPQ2wIhAMdSTi2hDfpIwR69wO0KYoCA5qhsD4xRBnBCfVJ1ChaB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22459639},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"64931f7c3dd0cda1265ab8307acf60aa5d2e060b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240827_1724742796125_0.6722398736165776","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240828":{"name":"typescript","version":"5.7.0-dev.20240828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240828","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"32a4f1fb7d8a01c195a4d5b346ca157565185560","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240828.tgz","fileCount":121,"integrity":"sha512-ErCxPl/V/LAmiULX17il/1qONClDF5dKH3A7ltOVj6Rsj+fSSXYiimnDAZShs7iFfMpo87oWv97hjkX7sG1edg==","signatures":[{"sig":"MEYCIQDGdpm6ZdTviLRWHNGqYWLq8UkKLZgnX4iwlyguPnOpFwIhAPVAo7jqLjszuzNqjEpEXUzgZK5u98jvazCs5BOiGuH7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22459639},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"dc535a7be8f40fde10110b0fc29a106499327118","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240828_1724829217111_0.6296890285526862","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240829":{"name":"typescript","version":"5.7.0-dev.20240829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240829","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"504599e4c39500f39bc8414461706060dd9a33c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240829.tgz","fileCount":121,"integrity":"sha512-F9kcFC/YWjYhecieA4GmXEu8IDrRtfONo3Pw61UZb9aQYDhbrfqpoz5ixfEt6O9rrSFvzdh1i0o1MRY2Bt/BLg==","signatures":[{"sig":"MEYCIQDGU+0LHYSS5s+X0u0JsqpAqEal0DKdTBJtVcMd6rnflQIhAJlTJRq8FIb5G7TArWVbnx9ALwdW7x8VN771Syy96fMY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22468302},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"497316f7e847bc22a009244ba80a45c3bc6fe6b6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240829_1724915604684_0.052658084742130296","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240830":{"name":"typescript","version":"5.7.0-dev.20240830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240830","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db968c5c8a828ce07bb1afa67c49367267ab5f3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240830.tgz","fileCount":121,"integrity":"sha512-9VbtIHvcw8LBJ3lcS+ovk4uraOFXpMGi+b3V9BOykkfszyAschMieLZgAV0YN/yvELk84QrWig1mZV8uBKS+RA==","signatures":[{"sig":"MEYCIQCLPq/gZakKgYepaqWe8Ufzp/s7sUXQChYDROS/Qe5zWAIhAJtnxesihhqe+vmTBYDb8o1Abt7NULKT+jUFDjbwDfAS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22470504},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0e292c441a0e5f27e18803128b7dfb1155ac0f5a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240830_1725001998213_0.40276223119026544","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240831":{"name":"typescript","version":"5.7.0-dev.20240831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240831","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d1e60a2bc69725f54c8f59c0147ecda7c36aa5ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240831.tgz","fileCount":121,"integrity":"sha512-HgT3X89xaN202M8qtCeHPOlTCh43pKZTqFJgu68d9UPZMsWgbR/izfbMGSObmZ/iw2B5NrrTMCotvQVamYMh9A==","signatures":[{"sig":"MEYCIQCQRNx/FIRpQiV/6+pY/EC3FkLHeDAKEz3tR8QdkcY/PAIhAMT7UszlsBifUvJ0lo5XtaeXM4tndGU7XGcBjKIe6Pw+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22500819},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a709f9899c2a544b6de65a0f2623ecbbe1394eab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.5","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.1","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.1","node-fetch":"^3.3.2","playwright":"^1.46.1","typescript":"^5.5.4","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.3.0","@dprint/typescript":"0.91.7","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.3.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.3.0","@typescript-eslint/rule-tester":"^8.3.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240831_1725088372941_0.944955862000292","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240901":{"name":"typescript","version":"5.7.0-dev.20240901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240901","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9acfce421060120c668b3a9d639f26d751c7d927","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240901.tgz","fileCount":121,"integrity":"sha512-Ixq+8fl0lsSFrIDfNi5/57wietIBnDY4Pp7JbPRJGtlGi5W9Sha/nky1ImNWteiOj3op6dMSHX5zrxCA4WlqCw==","signatures":[{"sig":"MEQCIEccKGiIdvlDYkja+780MiWdLuPYzGsSVKAWNNn04BzQAiBCEfWMr7iwIaId11fIqxly5bv/SMonP92beZ6sENlQyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22500819},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a709f9899c2a544b6de65a0f2623ecbbe1394eab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.5","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.1","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.1","node-fetch":"^3.3.2","playwright":"^1.46.1","typescript":"^5.5.4","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.3.0","@dprint/typescript":"0.91.7","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.3.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.3.0","@typescript-eslint/rule-tester":"^8.3.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240901_1725174791933_0.016580563140417226","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240902":{"name":"typescript","version":"5.7.0-dev.20240902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240902","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7972ff7e6b46fe601db5094bc3fa8aa4c2b5e605","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240902.tgz","fileCount":121,"integrity":"sha512-IXcRYw/MfjNJlBlU1pnOWK4oM3MkpUPXy8MVe0I0F4nhv/sRAPBAvCWDAc1687B3rUZ1RUlFUhRbQhypb15IoA==","signatures":[{"sig":"MEUCIQCQs8FaOXhFTjWhNoBoP3RRsMOwCdpVmZ5wKZ0tJoU7iAIgIeijxrWcRkP2iqOor4I6UhgVbniT3c82IhNvaOrkuWM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22500819},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a709f9899c2a544b6de65a0f2623ecbbe1394eab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.5","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.1","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.1","node-fetch":"^3.3.2","playwright":"^1.46.1","typescript":"^5.5.4","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.3.0","@dprint/typescript":"0.91.7","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.3.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.3.0","@typescript-eslint/rule-tester":"^8.3.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240902_1725261230812_0.006783887898066832","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240903":{"name":"typescript","version":"5.7.0-dev.20240903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240903","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"864c2460c823ab33328378124462be8b166d5437","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240903.tgz","fileCount":121,"integrity":"sha512-XTUc5uVwBbLlT0v3FqTx9sDN1MLQnT5mwSC3JefCrcKT6Zv+rPcQE7HLKM9IsrNiM1tiaQvamJTgVH0S+UMH2A==","signatures":[{"sig":"MEYCIQDp1F6UNr88sVpuzVY5s9Adom+5uEGggDWjwoHPdH3J+wIhAKM3VZAFVuW5fSY1MP1KaACQ4EhbWU7i3XDRWKsxCGV9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22500819},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a709f9899c2a544b6de65a0f2623ecbbe1394eab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.5","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.1","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.1","node-fetch":"^3.3.2","playwright":"^1.46.1","typescript":"^5.5.4","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.3.0","@dprint/typescript":"0.91.7","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.3.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.3.0","@typescript-eslint/rule-tester":"^8.3.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240903_1725347592513_0.3805865108681825","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240904":{"name":"typescript","version":"5.7.0-dev.20240904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240904","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20e43f65f4ca7d1135d3d2636ab057f815ce317f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240904.tgz","fileCount":121,"integrity":"sha512-iGi6VWFGOuxPvDfwfK1/8C172NWzC5gtC4G2dxqCQehrr86WTfFkc9aWucynaxZdwQNMqG1Iu83bmXD7CNHCmg==","signatures":[{"sig":"MEUCIGd95Y56oHLAumdcr2OYaD9HsMu3Yl3rTSP6H51BgTEQAiEAy7z+N9GGD59+eA27X8ZrWaT23FoiJzGjQfflbFZ2Cio=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22500794},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"29d92edd1c105b09bc5dbf567e11f34657977d44","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.5","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.1","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.1","node-fetch":"^3.3.2","playwright":"^1.46.1","typescript":"^5.5.4","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.3.0","@dprint/typescript":"0.91.7","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.3.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.3.0","@typescript-eslint/rule-tester":"^8.3.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240904_1725434004273_0.4201492312347823","host":"s3://npm-registry-packages"}},"5.6.2":{"name":"typescript","version":"5.6.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d1de67b6bef77c41823f822df8f0b3bcff60a5a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.2.tgz","fileCount":121,"integrity":"sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==","signatures":[{"sig":"MEUCIQCd3x/g6DEGnDKwz0a9D/+9I1miO3lxVUZ0lo8vOiTbBgIgfJnjhvZnAv0rk7MCMQEt5K8kynppsIpWcKt/MQYTkqA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22438432},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a7e3374f13327483fbe94e32806d65785b0b6cda","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-NW8ByodCSNCwZeghjN3o+JX5OFH0Ojg6sadjEKY4huZ52TqbJTJnDo5+Tw98lSy63NZvi4n+ez5m2u5d4PkZyw==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.2_1725898599923_0.019654876664713772","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240911":{"name":"typescript","version":"5.7.0-dev.20240911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240911","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"63db435202e0194c0f6551782fc86e0a2b5f9aa6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240911.tgz","fileCount":121,"integrity":"sha512-E9DKAXj+1Q7dVatVlWB7p0DRl+l7IEnf/zPPzQwRg3hckx3ADfezFxpuniN7UR1QKAC2Ta5WmcHRWaCXCLPHQg==","signatures":[{"sig":"MEYCIQChB17Pvq4M/zuMV1RWnkPrCay54ZsWjii0Qq4DfPM0SQIhAM9yRaPWQ+tUxsbiqgxWPbSucL5r9KVVp+zQn0wsN+/L","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22510662},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"89e004f632323a276b67649e118e78f39a7dc429","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240911_1726038913311_0.9004951915222779","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240912":{"name":"typescript","version":"5.7.0-dev.20240912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240912","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"18c62679bece831289c7dfc23cb9f170f011eb5d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240912.tgz","fileCount":121,"integrity":"sha512-mDTEqq6tLag5w75BeGd1g9t64z7dlhTl/3x0CP1bG/638MXiBbvCoI5sbkcEY0UoYUxP7EeIi7ZI6HBd9lDPFw==","signatures":[{"sig":"MEUCIENJQPktwMH9ITY2FA3yWbg7em5t1KKz0n4ETyZGtn3wAiEAlpFfBDRdy0lTkcOWRmU2fmR1UzbWUfsYjSjoszmx+gw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22510662},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"89e004f632323a276b67649e118e78f39a7dc429","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240912_1726125357079_0.2570238368789255","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240913":{"name":"typescript","version":"5.7.0-dev.20240913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240913","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e2a0e3be0b9e5e4f80f307174bf75c7ca13f5408","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240913.tgz","fileCount":121,"integrity":"sha512-cnMtLIMpmtz4XXNNvXJ8A8Mi8E1Q74cka3qcGnYVRWPqe9GmUvFI6vfcupvr9IjKBMVjpHgG5SuR5Da0Hv6CJA==","signatures":[{"sig":"MEUCIAPkaEMBdZ7AjYzbicOJuTiWVgdPxdUopr7mpwmPge1uAiEA5KNa/DV1R8mQN+69W9vwTEXpwFhzjQcRsd5oRb9ZKAc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22510662},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"89e004f632323a276b67649e118e78f39a7dc429","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240913_1726211734225_0.21711256619268138","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240914":{"name":"typescript","version":"5.7.0-dev.20240914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240914","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"509164972bac727f30d92c1af1ba5455f02b983b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240914.tgz","fileCount":121,"integrity":"sha512-FFOqgbzyxpBRq2YcKTQTAuurIKiU5A0VoWwDDnSjHPDHDbs3eriLiMIj8BExs2Soz7Wr+HxMJkbAZ0RCgvoIZg==","signatures":[{"sig":"MEUCIFVjONxy5ETYJlbTZ16Qy1AUJ+TL7Nsin4Txu6sSGm4mAiEA+arrLpOETYtnU85BbFMBBq+QKp4t7QEif34hbiY4M0c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22510662},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"89e004f632323a276b67649e118e78f39a7dc429","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240914_1726298135561_0.5712498787027978","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240915":{"name":"typescript","version":"5.7.0-dev.20240915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240915","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aff28833009d26116378bea0ea68d36ae32d6a57","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240915.tgz","fileCount":121,"integrity":"sha512-DpaEZn4KstKaVrFUxGv+zOrJVIFJJaf/lTPedsVRrnhrs/yysIhXlr40nHDNH1TznDWPit6UKYoKp/6/YPvlpQ==","signatures":[{"sig":"MEQCIED92hIPnuQzAEfpOzDGpqh0wB7SjgSHkDJQHnSrleGOAiA2ZoBjo/JuGYkdRlt+XIxHo/RMf8Dw60HKAPgD6i0mYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22510662},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"89e004f632323a276b67649e118e78f39a7dc429","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240915_1726384507650_0.45362117305570226","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240916":{"name":"typescript","version":"5.7.0-dev.20240916","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240916","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"06baa9d7d36f736a0e1d998cd9cf8bfa1a186b4f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240916.tgz","fileCount":121,"integrity":"sha512-PvqtY2wVBTIlHc0+Vs3w3UNntEzSho0uNm56c8D3mFINC/WFcEyOszkwxjSKyqVwEv62zl6xg+p7Ilt3H6yOJA==","signatures":[{"sig":"MEYCIQCI/POlAoCYy0irGC4of+YesVVUH/cSx/SOvsED43wQxQIhALYr7ZtyxwL821+huSJkFURfFh7EdqpvIYAnTS45pCyG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22510397},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"52eaa7b02fdeaa8969f88c7f5c0b252f5f0bd147","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240916_1726470939404_0.682849777428848","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240917":{"name":"typescript","version":"5.7.0-dev.20240917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240917","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bee5cc2615b28aaf54f9e267a07aeac5ad49b3bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240917.tgz","fileCount":121,"integrity":"sha512-LoeyRa9RbB6lMasZvBmepDPrI6KNHURSleqbQ4BL4lxvXbCAQkMgmRzqyjA2DJE0ytuj5OEPFU5k/g3f9GaQKA==","signatures":[{"sig":"MEQCIFDnljOhZRVl/PpDqmQFuIsPPW1/6hdTfpGuYSqwxLZRAiBTsfmQESNZtn7qmxwQ8/jk0lV/Up7ffcAQjlmVVJZFKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22512283},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8230bc66a7eb4b88cfb6cdaa4ea8324808b39a07","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240917_1726557339434_0.6285428777288502","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240918":{"name":"typescript","version":"5.7.0-dev.20240918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240918","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f94e82cc8c8d35c5c258fc11bd54f973a463c996","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240918.tgz","fileCount":121,"integrity":"sha512-+6MNe6JoSuFM5x/Rn79X8ZOUqjCUiElv6y7ZWjekE79nQU7I0UzIlPpkvw/m83Q62tTHGg3tqRIKhj0lCblZIw==","signatures":[{"sig":"MEYCIQDHAAlL0MAQetse+bUh2IAto0axoPdz2vVedLB0EIOnAQIhALpE3tg2DTNuoNZl3RfT+UQRU+WfJSy34qa9rE6sU3cy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22512283},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8230bc66a7eb4b88cfb6cdaa4ea8324808b39a07","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240918_1726643744283_0.17400773448424567","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240919":{"name":"typescript","version":"5.7.0-dev.20240919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240919","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6a77d779655baaf8b9c05f2f2f12699a00711e36","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240919.tgz","fileCount":121,"integrity":"sha512-hzuZjwffJIBTk6C9Wfy3Po9tr4MrlVs3b4/J6nVGGDC4YQLziFZploV6ID4ljdpz2O5N2MNlPWxRxntHcldr+g==","signatures":[{"sig":"MEUCIBReD0Qx4af5Nxi6XF2eRPnZpGTJrMnwsukWUKNu+83zAiEAobfgsXZqrHdkl5FVAo5QjTS3g2hqAta9PC7t8hLInC8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22527685},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"49ad1a3917a0ea57f5ff248159256e12bb1cb705","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240919_1726730158859_0.8710362682705104","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240920":{"name":"typescript","version":"5.7.0-dev.20240920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240920","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6ecaf1e4cd3186ed26b6f9eb445e2fc36d9e8f90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240920.tgz","fileCount":121,"integrity":"sha512-KYknuG23W0kaacmyzU9fiwJ/D+ddDwveCZZAUHwW3okW7SonODu3rlZ5VTtlcdURq44Y27xIygcMG6oB8IU6cg==","signatures":[{"sig":"MEYCIQCa0Gl573A/5HURF739sjilxQvXfNGOqpoMxeZVNjk3ZQIhANaKUHmWx2Zjx1Xa9Mi8s0q60uaEZVo50z3jiTtEyHgY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22527701},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"88809467e8761e71483e2f4948ef411d8e447188","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240920_1726816547660_0.8825062709036464","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240921":{"name":"typescript","version":"5.7.0-dev.20240921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240921","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fa56f5efccd7635e67d27a2f72003810f327942a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240921.tgz","fileCount":121,"integrity":"sha512-yEgRusxZlZAGhnhdpwoPyVFK1XDNZfouwN6IXCUYRmNAhWsJEbtwNCzYxS2kSfmVhhi1HXr8Au8JoV5CmiMR6Q==","signatures":[{"sig":"MEQCIBRb5kybyUaIG4qpZ4qgjaXsW6Q9FcyWq+Y5HM7HgHScAiBADUsQWe3tepc6VDMm2VQSQZ3OBopSJynLh8+i88rxSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22527701},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"88809467e8761e71483e2f4948ef411d8e447188","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240921_1726902937451_0.8561727622146988","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240922":{"name":"typescript","version":"5.7.0-dev.20240922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240922","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d215516f2aeae917bac063521e7bd6df6b7993f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240922.tgz","fileCount":121,"integrity":"sha512-CxRHMKhnV+VKR5u+eevBdC/C0Dm/+eogPhjkJ9vNznQb2xVv14wNRE6XrFwj4uF/zfAQNKEu5+OpM3xsMTIrjw==","signatures":[{"sig":"MEYCIQDcyx/DKka3vaphEczGOfQdQtRMZEJKBgQ/f7wzY6qLlAIhALROhUgf4gj+fyJ0ivtnzqxVxX+g+cBuGTZxy4y1VC6h","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22527701},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"88809467e8761e71483e2f4948ef411d8e447188","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240922_1726989343425_0.7709789590162597","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240923":{"name":"typescript","version":"5.7.0-dev.20240923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240923","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"714c9c89f0aa3cc14753d187c88651f0df2df4f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240923.tgz","fileCount":121,"integrity":"sha512-qRJIe8rRYuFlM6ZGJbdqhSO8Ogo9uIpqCz1/agh6x/phsOXiKU8pfebGSNiXFscUhQNZhSiUFXQ8LC5xUUGFgA==","signatures":[{"sig":"MEUCIH/yZBO07higgzPuM1CQR/m6EheeR4+la9Z9xPlkvVQeAiEAjGFo96YoBKbOP0KbnW39yTr26h8hbtcISilRwpdzk/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22527701},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"88809467e8761e71483e2f4948ef411d8e447188","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240923_1727075745231_0.8313407794696743","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240924":{"name":"typescript","version":"5.7.0-dev.20240924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240924","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bf97ed5c8c7bddcd8d178a9d74913d1e37b21b92","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240924.tgz","fileCount":121,"integrity":"sha512-Ij5R6dGDoRwlwMv0YAF0DSKOp2gGIv0SZNybFpAm05zZ/tktjetR7IrwuurvRlDEz7v91AC3ehs2lF7lJ8F/QA==","signatures":[{"sig":"MEQCIDLXZgezAOSJFVhcpB/C7QeeCKUIV8QSFNVSNbAkC56RAiBea02ZwOrZFRAtgY4iNMWQj/p6bgxQuoU2XO9zq1b2SA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22539561},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"fa0080f4802fd78fb0f01cd0160f299794d7843d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240924_1727162240914_0.4364646083218138","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240925":{"name":"typescript","version":"5.7.0-dev.20240925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240925","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"72554a8ed9f97fa8a9c19e251cf0e29cd5ccd444","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240925.tgz","fileCount":121,"integrity":"sha512-k43Yzt0H2VwIvVJzSKaMUKSnAOWkAitSB+Zioc340LCsh4kSwCbyHCJSAJmAdFH0QuNIL3AuSybTfwOys8tqZw==","signatures":[{"sig":"MEUCIQDZ2lZq/YBNquxRYbc85lstiN801TRqZ11ojCRfxJfVNgIgFBuz/vbO0IYUZDIaicwx16hxb+Yhfosaijjj5koMYl8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22556969},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e962037df334de071b8d3a9c70b13e3a600d1bc9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240925_1727248538517_0.06565843032636476","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240926":{"name":"typescript","version":"5.7.0-dev.20240926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240926","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"83995caf95836b5886bba6d38f420385dd5256ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240926.tgz","fileCount":121,"integrity":"sha512-urjGXo3L23oEcK2thBaZ71DdA6My+NeeTuNIUJfYszrplyk//HIgV1yl40S+eQcya4vwmH14dhDDDH4vl4dlng==","signatures":[{"sig":"MEUCIQDsuIqJlXdfhbbSyfvhckri7I5ynKL/9I+gwj8LKKHVJgIgBmLA9N4eI3fvhghv71avCGcIS5Dzq00QBpD+U9aljy4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22560317},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3ad0f752482f5e846dc35a69572ccb43311826c0","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240926_1727334953773_0.6071757855283373","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240927":{"name":"typescript","version":"5.7.0-dev.20240927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240927","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7885c956292aa42d1d12ab6857f662bdacce690d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240927.tgz","fileCount":124,"integrity":"sha512-IWKZHTHAlS8BglLp8iM4rUHhy0h79B9r9vj6b6zpa8U38ofctFS1fLiKY7okZ3JYeG15kUHuOwsLwOmvc5+e1Q==","signatures":[{"sig":"MEUCIQDoiwnY5lOVMx02FXecJI5B/Ge6q3oNXeTo7lG2siCv1gIga4K3DoVo/FiqL9Zh7DUxZxxFgHJx/zWxQxaRqhZy0Bk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22566778},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"52c59dbcbee274e523ef39e6c8be1bd5e110c2f1","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240927_1727421362471_0.9782608418922352","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240928":{"name":"typescript","version":"5.7.0-dev.20240928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240928","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5b19728239aa0136c447791e57572a4bdb26ec2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240928.tgz","fileCount":129,"integrity":"sha512-wPGV65DiBpB4GVBPC9BOgfGY3JlUu8dFB3NXrdA0i4lcNrGrPywVrQVX/uZnAaY3u7rC3NA7oHBeGZXSTkVUQA==","signatures":[{"sig":"MEUCIDkutfuUAIAFNUtn7IN/iQfyQLEkxCm7+D8qMxoM8PprAiEA6PdtdS0GQd7ESHCACWHeUbsExdPXDppR/TvdKFDUG/A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22664968},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2c23beae0297fe3e57868d02af8c9084b136f78c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240928_1727507744782_0.9734637455703599","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240929":{"name":"typescript","version":"5.7.0-dev.20240929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240929","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"60cdc36d29570e0aed32ec10e3894372b81a6312","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240929.tgz","fileCount":129,"integrity":"sha512-qcghiX+nPjUkCRJW95fqZiemaj+b/2ljt46UliUqjbhbolAX1o1TzavEYuwlv3JHqcBT9WjaPNf8+OyzovyQMw==","signatures":[{"sig":"MEUCIQC9gn1N30s5kj3wwFLbOOuNr3jOY29UfaNwk3+lzCgkdwIgBAtydpEJzgpXSiXjlXGKhfM75PsOVn3r29O/lpk1gtk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22664968},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2c23beae0297fe3e57868d02af8c9084b136f78c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240929_1727594130349_0.37249831285432533","host":"s3://npm-registry-packages"}},"5.7.0-dev.20240930":{"name":"typescript","version":"5.7.0-dev.20240930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20240930","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"faf207c3376e4503b3f3fb6ccafc30f9647f0389","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20240930.tgz","fileCount":129,"integrity":"sha512-mGW96cpbwcYuc264UPqGpKBLNebFFtVEXRLPwSwxVEub9tSyMI+XGFGxsznop7pU8E1ntx4OC4cN1n5MnzO0+Q==","signatures":[{"sig":"MEUCIQDKAVFKv1jtZGtS+/SLN7DMf5ng4QZ2Yhpu4OIfPySYMwIgZsnMIHY86MpiQdSQLjBC6s1Hwq6g0P13VW9ZJ0B1N9I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22664968},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2c23beae0297fe3e57868d02af8c9084b136f78c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.1","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.10.0","hereby":"^1.9.0","esbuild":"^0.23.1","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.10.0","playwright":"^1.47.0","typescript":"^5.6.2","@types/chai":"^4.3.19","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.5.0","@dprint/typescript":"0.91.8","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.5.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.3","@typescript-eslint/type-utils":"^8.5.0","@typescript-eslint/rule-tester":"^8.5.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20240930_1727680571580_0.9144927699506069","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241001":{"name":"typescript","version":"5.7.0-dev.20241001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241001","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c21aed7957be71d240b6b9dc2684d0aa6842689","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241001.tgz","fileCount":129,"integrity":"sha512-E+sQ0WmFXNyLddzyWmBBVwyn4NpBRgVJoiq8lLy25nQBLTKFMPnHmrKq+09uOv35ey3XhMA6y3lVzayuukJRpQ==","signatures":[{"sig":"MEUCID59Qe1DrA7r8GO8Ikw8npY7HeNOkU7WLoTLYrwsiLVTAiEA0K2dmK/rnr2vckmP9OQ4BG9Bt6JzI5nIbSUDcYwJii0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22693255},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ca18009b8bd5cea6a7fbcba3d7e4dd3c4633bc92","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241001_1727766952813_0.5645937609525302","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241002":{"name":"typescript","version":"5.7.0-dev.20241002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241002","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"296d940c60a292b9bdafe99f0696976e43d2ba2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241002.tgz","fileCount":129,"integrity":"sha512-FHahwICnaTEQZYVLpDwZdoy/lgPn30O+XQ5VbNGk1UQojnr60qb2XgoPOfohDBojGtQGL5iilNhThM4gLxaMjQ==","signatures":[{"sig":"MEUCIE/qq3axGqfnBZSC7T+DepGpI9JMQZvVrOUIGnKGa7f7AiEAp5BRri7s5tLDH9RyEA5iwGjFDTL0tR7KMWwCAngek/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22693255},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ca18009b8bd5cea6a7fbcba3d7e4dd3c4633bc92","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241002_1727853337491_0.18233334575812754","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241003":{"name":"typescript","version":"5.7.0-dev.20241003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241003","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6dad8580c2a79211624eb0f8d1205b57128a5c68","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241003.tgz","fileCount":129,"integrity":"sha512-0aj8jZi+P+uw10g2eQRnJmaMooatg2nDyqy0YlTM3A8QtXBulWuNU/vvPOTiLWCNgaz5wvcodjrmCNsOYFeQag==","signatures":[{"sig":"MEYCIQCNEDQfS3fz8MUTqHRruE4psoUr6Br1lCzK0UFtGmo4lQIhAKIAkdRwDMkdbWmbhlLce077nzL4EOrMkoK7q5U332VB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22693255},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ca18009b8bd5cea6a7fbcba3d7e4dd3c4633bc92","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241003_1727939761253_0.17796872515567586","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241004":{"name":"typescript","version":"5.7.0-dev.20241004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241004","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a8baeee39b961e4619b5c50c3e60affe0841961e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241004.tgz","fileCount":129,"integrity":"sha512-u95eIEvZzkHiq7PEViwynbgPSpCdT0u7wzGk15FV1OrznDxPoiB/E8AOtdxicOkQlO35XebHMCJg1vjh4gCMIg==","signatures":[{"sig":"MEQCIHjpdj5EC4YwyGR3CJluX6ZMYUX8sVOa9yKMl/dIsg3lAiBYraS+3UZf3EBGhmwKhGyhFsJIMLUxSMUcx4PhLrWx8Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22693255},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ca18009b8bd5cea6a7fbcba3d7e4dd3c4633bc92","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241004_1728026159556_0.44087535568831604","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241005":{"name":"typescript","version":"5.7.0-dev.20241005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241005","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9a945d532a17ce2790d11e444adad785db111141","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241005.tgz","fileCount":129,"integrity":"sha512-jwUlB3Y1mBo3qAXxvbtv7eF4dATeS65xKT4fC9GThKJB2iY8Ptc+frjidfW2mGbKFR0abI8v5gpn9Z7w6oEmFw==","signatures":[{"sig":"MEUCIQCoZgoeXYulJ9N/GaWZEnUhPVvCMALkYpEiGAPWtgMcgwIgDmezTOPJKUDEL6nDVkIf9f8ITAl9pTmyE9e1W0zZ9P0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22694077},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b845fd2434f255ba35b0bb143a65172c8985e467","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241005_1728112547977_0.2268638204729556","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241006":{"name":"typescript","version":"5.7.0-dev.20241006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241006","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a3868ef1b48290746d00c6b8e98c6d8ff3c547c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241006.tgz","fileCount":129,"integrity":"sha512-XbEUvmjO3pXSwKpsgTKNHLRROzF2K1tSdqiyRPKwJfv84gPU0H6AjRwvaAaYC9D/6+Hpen0bQLLC0uaGePRHTQ==","signatures":[{"sig":"MEQCIH1DCfsUUg52Z1Yz5nT8hnWOYkVSMefvm8VfXtqHLbUXAiBYPu6dxpbh9HEk0POGcNmwBzUnozoF/W9FaKB+bhGRVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22694077},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b845fd2434f255ba35b0bb143a65172c8985e467","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241006_1728198951829_0.19673570665008588","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241007":{"name":"typescript","version":"5.7.0-dev.20241007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241007","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1ae065b5aad85fe743afc80bc8a05401b6a19d0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241007.tgz","fileCount":129,"integrity":"sha512-oIOWWuGS7GI51GWoNlP9O/eKmV1P+lKbIzVzg2i8Ul6n8vWHjQISb8MkPBxDj+alhYG2sl+HxtFHHG/LCgN/hg==","signatures":[{"sig":"MEUCIEqTycknfdzrShLyWOnP9jwWJ8ojoHNP/oqDnpQLruGDAiEAs6odymYbuuEhJ55OuP15xWpIZnduPeLG3s1k1avZ6U0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22694077},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b845fd2434f255ba35b0bb143a65172c8985e467","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241007_1728285364613_0.7214263432140269","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241008":{"name":"typescript","version":"5.7.0-dev.20241008","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241008","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7d74ba39d72fdd2ec55c5195f7de202b04ceb899","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241008.tgz","fileCount":129,"integrity":"sha512-FZzeU/lVGUgdl8+Rl2MChV2+eD0ZciK1LuVeoL8+P8ePsJjduRhGrWGRBHvy5KQOhZpxm0QdjrcnGkGDQEphvQ==","signatures":[{"sig":"MEUCIFL50Ly+tRvjlLKObxwO4deIwaS9hrN/pvTWNsZ6aHY6AiEAklBvYyzd3RP1ZZcHBjw3OkP0DW/cAMmYGqsjkwJQLok=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22694108},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cd6c0a0b6b8659f49344951219c74a516fdec9a2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241008_1728371779766_0.852717842795724","host":"s3://npm-registry-packages"}},"5.6.3":{"name":"typescript","version":"5.6.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.6.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5f3449e31c9d94febb17de03cc081dd56d81db5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.6.3.tgz","fileCount":121,"integrity":"sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==","signatures":[{"sig":"MEUCIQCF5xr1k4dJhTI9Oz5VZu3gSYBjnQJZkIZzmA93W4pEAAIgePj6GmXYVjYpnsqVwcUGFfvUzZwbH6y8wrQ/qDhVUPA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22437312},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d48a5cf89a62a62d6c6ed53ffa18f070d9458b85","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-hjcS1mhfuyi4WW8IWtjP7brDrG2cuDZukyrYrSauoXGNgx0S7zceP07adYkJycEr56BOUTNPzbInooiN3fn1qw==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.27.2","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.6.3","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.9.0","hereby":"^1.9.0","esbuild":"^0.23.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.9.0","node-fetch":"^3.3.2","playwright":"^1.46.0","typescript":"^5.5.4","@types/chai":"^4.3.17","@types/diff":"^5.2.1","@types/node":"latest","@types/mocha":"^10.0.7","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.1.0","@dprint/typescript":"0.91.6","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.0.2","@typescript-eslint/utils":"^8.1.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.10.2","@typescript-eslint/type-utils":"^8.1.0","@typescript-eslint/rule-tester":"^8.1.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.6.3_1728424869427_0.15574912347374292","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241009":{"name":"typescript","version":"5.7.0-dev.20241009","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241009","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2428f73ac401f4581131a0a4290c43f43d0608a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241009.tgz","fileCount":129,"integrity":"sha512-NhJGDOqw0Wef3qCmG1yVVOHfZu365OED2CQvqFRIR1AXSirHf2Z/uGKjACdmrvm97IQpuszvQL15yaXwydCIVg==","signatures":[{"sig":"MEQCIF0iTpYsnzhzOWxapjExyx/pOF2AyRmmXy5x8qqSF02mAiBWwfkQCd47MU0huVQCnpdNbY2YtmwA/RsMdY1WbPon2g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22719053},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a53c37d59aa0c20f566dec7e5498f05afe45dc6b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241009_1728458147096_0.9463943125994347","host":"s3://npm-registry-packages"}},"5.7.0-beta":{"name":"typescript","version":"5.7.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aa00db901d281b09d9456e6a281d8df4a2de77ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-beta.tgz","fileCount":129,"integrity":"sha512-opDlmEnzKdl082N5piLS43lsyugg0aORdv+XnNzMv5yP5VtBWuZhFDxU8lizmhW+PEFa/fZiShYRBxKsrkTDMQ==","signatures":[{"sig":"MEYCIQCJSM8Jvgbfhg3TdEhujgaCt9Jnvsb4C+E7QU4K1Znk2gIhAKCRTTBzdnC9ByxZMpvgIu1aCplgpLypROeiztg1AoB1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22692913},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"69fb689edbbce517a4615be9d356c6c812639849","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-opDlmEnzKdl082N5piLS43lsyugg0aORdv+XnNzMv5yP5VtBWuZhFDxU8lizmhW+PEFa/fZiShYRBxKsrkTDMQ==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-beta_1728499585740_0.8398924179809246","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241010":{"name":"typescript","version":"5.7.0-dev.20241010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241010","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5f949ccc5a3b48e8b85b93bb0076444d6f155ea6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241010.tgz","fileCount":129,"integrity":"sha512-gwxQ3UbMRwrAs1FedvBB+FkkrTVy0cjyxN7MBtpyUsmx2wHl+izVmFLpb6YPJyc/NC8sv9cdN61216rYJJyJcg==","signatures":[{"sig":"MEYCIQDodjUpAsMPrBzjhzvlTwGxLdkpi14IrY8dXfV1HUrlMgIhAKl+e4Pw1xZIAXjxDmojAElIq/U8ihGX6kX7l3Ye4HqT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22719053},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a53c37d59aa0c20f566dec7e5498f05afe45dc6b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241010_1728544526272_0.13260736203157353","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241011":{"name":"typescript","version":"5.7.0-dev.20241011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241011","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6a0134dbb2ab5b81a336ee2c33134b2efa108515","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241011.tgz","fileCount":129,"integrity":"sha512-Me/2UCToH+LYWCR0E/wd1ugAU+PQ/kP+rVt40RyZfOCXL5Lyd0ZfJwndQRM140RGdKhOVhv80BpvN5mpVdA7Cg==","signatures":[{"sig":"MEYCIQCXXvjUlwrLRZAxjS5Gog+eAykXkowcZi4J4QySRCBbGgIhAL3JCTbrbAyT7xHyplqp9H19ME439jpGP3q1OWwgLkAK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22719053},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a53c37d59aa0c20f566dec7e5498f05afe45dc6b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241011_1728630925295_0.3288088026466993","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241012":{"name":"typescript","version":"5.7.0-dev.20241012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241012","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4886bd2c5a7d60ac358906a2f2b2d410cb65e28a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241012.tgz","fileCount":129,"integrity":"sha512-xUN6gQ9zYVFBgF0nO37e2juz5Mjc9qWbxN0D0j2vryVZlAonSNufOR/DCjqKAk5YRICIGbim8BFT4ePSu2bOHg==","signatures":[{"sig":"MEYCIQCNE8Fl5L/IEW6ZacWzPosSDIbro20qiw5oj1z8x1zlnQIhAJjdBG5Fx6WvwaGcYCJ1xiUjgrYo22103DOnJAA/9TvJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22719247},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c003609d59db75974796cec737c98f6c8e603bd6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241012_1728717345392_0.2677810702080621","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241013":{"name":"typescript","version":"5.7.0-dev.20241013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241013","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8ecdfc7eb1e6cb39d8ef69600ea423bfb496b01b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241013.tgz","fileCount":129,"integrity":"sha512-cRj/qZ4vG7KbpT6Y5EYEZBIYrDbvs6y1nFWZ7YGHnddo9klZtvTpkNlJNvbQiQfc1uDV9LEOMxCPXbXIbnVTpQ==","signatures":[{"sig":"MEQCIHeQSUQQPw7pu5aQrkFUamYPvtUgGhGEeRvxDcOwnt8/AiABanmysBiYZdp/drlzZ0ft2GYJfPDVmqFJ8L7OKkYVmA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22719247},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c003609d59db75974796cec737c98f6c8e603bd6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241013_1728803734091_0.7207057575922404","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241014":{"name":"typescript","version":"5.7.0-dev.20241014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241014","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"56856ece68a68d811290dfee73eb49d6bfde02c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241014.tgz","fileCount":129,"integrity":"sha512-PY5H3pSW0SnGEBmG7QD5x/E83NW7degEqsjMZ1FVdwy2yMq/2dol1RvSW6ltRR+d2QH3LdsXbxO+gE+1X1Mepg==","signatures":[{"sig":"MEUCIQCo6uTZVK1yx9qkzJ5VGyfTYJ3buP0GXHBnB3yaw6keDgIgQ/ZW/BErUYtWeiMhZv/aBMRhquJdXA98i3VWHzNXt7I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22719247},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c003609d59db75974796cec737c98f6c8e603bd6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241014_1728890177076_0.1372483927260162","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241015":{"name":"typescript","version":"5.7.0-dev.20241015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241015","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"84817a95b2981685c2966ef0f602ebed66091a53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241015.tgz","fileCount":129,"integrity":"sha512-nBl/xbQGBZrOmLVFbywn5KVStnsVqGsdjU7jVU+wMAp+bpF0iSrF2ts9pUVFyHdP702zINLxfhlnPr66yXB/ew==","signatures":[{"sig":"MEUCIQDjcRnzOhCKfexiNyM6gUpaKyZ8z6+cSKodanBuv0UYOwIgDlHFW8LDARt6W6fN0sdPIXuOkn/g8DUq2hUVrsAolIY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22720181},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"40caf3431986884b3da7a607de22ced5d364d9fc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241015_1728976559134_0.43935884937719627","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241016":{"name":"typescript","version":"5.7.0-dev.20241016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241016","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"675aa208bd8d1a906c4aae7be50e6c755d592a7b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241016.tgz","fileCount":129,"integrity":"sha512-rbZrQidxikK2ilvAFVxwy0DP6137GOlFhUvdW+zoJSDfi/jvUBWlcpSuwHH4ZPrlOTno+ZsJkUMiik2gKXz1zg==","signatures":[{"sig":"MEUCIQD/xkbvjADwQtAbYilnIttKpUV588CqFgNECLGY1/BkfAIgXC7j9bYd0rgp5CupawiPZUXBd+/4WHLc1uMmoivj1Ic=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22721646},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"bd1641f7691909450147cc38cc6f5e55b79e0545","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241016_1729062945448_0.25264355754970924","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241017":{"name":"typescript","version":"5.7.0-dev.20241017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241017","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9e4c7c91cf8829ca1fd8b612d14bb65ad3d4d99d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241017.tgz","fileCount":129,"integrity":"sha512-ZxR14EdfbJK3JjGJ0dm6SjmHbOkJ86QM7k2ARlQzRyzNJV23E2bkdLW24fjVk5UyLyuTtIH9OMgpP++Q0G/Glg==","signatures":[{"sig":"MEYCIQCN+l73nFbd0UaS5A3/OAv8ZoH03WMAf17g+N6jCopbowIhANOjaTyTXLePPADhaUgIXHIeqB0bCaXcRahDJMG4s4fD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22722539},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b8e4ed8aeb0b228f544c5736908c31f136a9f7e3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241017_1729149379526_0.458389090545245","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241018":{"name":"typescript","version":"5.7.0-dev.20241018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241018","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"205967f919bc1542f878f16166c9e7c18c61d735","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241018.tgz","fileCount":129,"integrity":"sha512-ZylqZmpjAl3aHCuQz3x/YwG5sJWqpcP86V1rNDUz8dYLW1YpwenLHLCzkw/uxbM4RX8zLUD1+5RfqMvOOoO8Cg==","signatures":[{"sig":"MEQCIG2mDaQhu5UO3PC6lLIUNeK7JnHcgmbvDd4+Axq5bsASAiBLVxB/hxZ/Ew3qiDvT1CveCv+QNPiRmzLxhz41oRl02w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22724426},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"54732f6e5895aa692309e70a18027ddc316c20df","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241018_1729235736644_0.7308618971560714","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241019":{"name":"typescript","version":"5.7.0-dev.20241019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241019","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b022a3a39230b06f5cc46a2bf53dc401831d6c2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241019.tgz","fileCount":129,"integrity":"sha512-41Baw/FCd4CT4VHobKOcxoSSVm+LzN8gbB6i11DI3ueXlxsE5v5/l2cjgoe20aXyhWOP2B2UCwSfZqNs16AoAQ==","signatures":[{"sig":"MEUCIAiGhK2cHJ4zDEp0JCqee+owArybtgL2eC9mPN1nYE4MAiEA5q8E/7zybRy5cbTFb4ei9INl5glhEOx3ZOELcypc2Z4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22725859},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"df9d16503f6755dd071e4c591b9d21c39d03d95e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241019_1729322147780_0.7031067761561502","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241020":{"name":"typescript","version":"5.7.0-dev.20241020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241020","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2844ec4b07c0c9ef283880eb5a04a71e838335a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241020.tgz","fileCount":129,"integrity":"sha512-Fxz1BGn0aMK86l4qEjTCz0D2dS2V1PL5GMjUPISZlxAKDMfuZgu7pOr+HppOgqa0kFDQf77YQ17xKddHJQGbSg==","signatures":[{"sig":"MEYCIQDPplc+Ne4dhxkwvASxsr1vhEMEhskqBGLw0V3NQ/7P9QIhAOrZZ0iIyQnjd/BHPisUzZkCHESaoDTAfiQG0ghhxVsy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22725859},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"df9d16503f6755dd071e4c591b9d21c39d03d95e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241020_1729408525139_0.8335479177288541","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241021":{"name":"typescript","version":"5.7.0-dev.20241021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241021","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9d8c8851e35428a230d8f007511e3836190039ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241021.tgz","fileCount":129,"integrity":"sha512-nf5PGykGkdF2Palp0anP/jjLiqM7jdLaIyhpq1Y8bhHnClE1JR2eHXrame54dWeaX0ZMc3NF/TD59xtVhZiuMA==","signatures":[{"sig":"MEUCIBUliZlXPZox4Kp48ArP9PjhHXaEOqF1xL1D1itygZnWAiEArYBz9/lpklu1s3vGDcEPPQxlJI/AaZ0poMvzNwg0kxU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22725859},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"df9d16503f6755dd071e4c591b9d21c39d03d95e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241021_1729494910118_0.4059143903865401","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241022":{"name":"typescript","version":"5.7.0-dev.20241022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241022","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4eafebac1f46e84649a7d428914ee90847a2ec2f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241022.tgz","fileCount":129,"integrity":"sha512-Z8PXMDow1rJGCzBQ9FEeNQHBDEGwqSMAlaM00C9qn/DlUH7DC5dS/pNNEcrQBktPbbIwOjR4XuXYOddJUH2klQ==","signatures":[{"sig":"MEQCIGM7jUWb1GlEzt8lcjID3B1o2xQh3YskACV2FlW/lk31AiBSZBM0yY2rHeBOUmva5I7tbDQWp+kiu3Vz8cfCC57GEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22725885},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"aa411acab7ea3bfe40647218c2762290d4647fb3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241022_1729581330889_0.16877204765272213","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241023":{"name":"typescript","version":"5.7.0-dev.20241023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241023","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"83a5ecd5b4f98f1f94ba915bcc858faa765733df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241023.tgz","fileCount":129,"integrity":"sha512-HB6rRd9ySnFMoQUuDasWnBtvOg1P4CFG3nRfs2ZvFbenUkxSzoeeZ0PUwJJ7MKJp5zz7uMTZamGt7zdj0tP9YA==","signatures":[{"sig":"MEQCIF7cbBg4w+h1v8ppI8dFkM21RDH7tD8ght3QXyTM1ft/AiBM9l+pgzLtDsWy0/RRhqSeavhIYE9Iewuw8HkyV4eqKA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22732046},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1679f4481deb02e7858dc8824c79deda76d48fc3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241023_1729667727854_0.7484070396169373","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241024":{"name":"typescript","version":"5.7.0-dev.20241024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241024","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c9da3808cf8742a84cadd2d6cd5bade147ad23ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241024.tgz","fileCount":129,"integrity":"sha512-PffMQ+uB2IVWjH3/OvtOCjfuZZc+dcIP1HtlEPTsaT6T0EZFmqR+urMPNVFbw0KtiyFWzuSquxb7Uz3NlrfHFg==","signatures":[{"sig":"MEUCIQD28xO5Gc2AauJtqNmGsZ8gF4f9FucJhcF6YufnsSpAXgIgdSFqHj7mYpo+bdpJMnr5GGruwGlyb0h008jyf6jPfPE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22732303},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2ac4cb78d6930302eb0a55d07f154a2b0597ae32","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241024_1729754144558_0.6070007621357167","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241025":{"name":"typescript","version":"5.7.0-dev.20241025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241025","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"19e9bc0d69824af6811e6ca41c7052996e59a460","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241025.tgz","fileCount":129,"integrity":"sha512-2Byc/3ywylhhYPpag3uxhRxz6bZSKyS7jBsRkkFFhs0DeH3xlkQu+TElWOvhxtAfPNm7nB74xAqs++a3Iv18cg==","signatures":[{"sig":"MEUCIQCDAtl5AH2TLC/iFCZ+fTX9DqIkUoGW30QsGFt58m2BtAIgR7qQECZYWIl2PlYGMMAvo42n4GdxEl2PPy5cPDdSNLc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22732303},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2ac4cb78d6930302eb0a55d07f154a2b0597ae32","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241025_1729840550372_0.23852477657459747","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241026":{"name":"typescript","version":"5.7.0-dev.20241026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241026","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae63309a917bc606121b09818c61e8dbaaa6744a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241026.tgz","fileCount":129,"integrity":"sha512-oDHOGFrwZ9riZ6mRWJv9CnOQh74qvJa9S4U1M+U8ZxGk8O5QdIfwtm6hkm5d9/OZWoMwhxZD+xwtd0GritYkvw==","signatures":[{"sig":"MEUCIQDce4l8bjNFnHB7CpM+e7+sKy9FmGNDKKSt2HQQfZGARAIgOz+HAfggd8TJL/WFHtBPyRwCkU5vWzIQBv7Ywpymy18=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22732303},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2ac4cb78d6930302eb0a55d07f154a2b0597ae32","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241026_1729926961371_0.9018526961869322","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241027":{"name":"typescript","version":"5.7.0-dev.20241027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241027","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e4f04532c75fa28854de725525a38332eaf3bee8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241027.tgz","fileCount":129,"integrity":"sha512-GLbJxFYLLS4q4PpNlRO8SQVL4pdJsJwetvDDIW06rXk+JbAT2IzOS/I32YNasGOqpMcVd0NxMoGqyado8UfPig==","signatures":[{"sig":"MEUCIGostVw0VCNMUAycfW38hg5hp978It2sxGC+Z5pGxm7WAiEAuvGCd/wdcjNSexySbXWqYbcG2uR6AcLH2UIwvdKIsoc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22732303},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2ac4cb78d6930302eb0a55d07f154a2b0597ae32","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241027_1730013353446_0.673670508548508","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241028":{"name":"typescript","version":"5.7.0-dev.20241028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241028","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dfb10a8e7b3dc7df6292220f0df8cd5b22f95e7b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241028.tgz","fileCount":129,"integrity":"sha512-2bRur4Sn9Y5JQYZjE2Nfy4W/Cf5b8ppVkyNxWludTdPN/xuAR9kk4si+51AWFo+tCJup9qymMafRqTTtdqvKhQ==","signatures":[{"sig":"MEYCIQC9LjTpWQ62+WxFMqjJ8irI1sa/PF1ec6jyxEjdphX8PAIhAIbHHHmiH4kKvu9OVto7JRVQxZwfI8eXExneSBoGS9rT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22732303},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2ac4cb78d6930302eb0a55d07f154a2b0597ae32","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241028_1730099757394_0.1351081289857401","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241029":{"name":"typescript","version":"5.7.0-dev.20241029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241029","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3b55ccc305ae08c79c73cbb969761b64a3c5be7b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241029.tgz","fileCount":129,"integrity":"sha512-3aXt1i2woT3j471mo6wFtEg44jqF8Qnfwh+pUFdPuIEltQ36GmP7JjewpLcO0IwYiVruip1J52P3XK3/R9K33A==","signatures":[{"sig":"MEYCIQDObOIXNQX4s9xQ1iEYZ2SVsR5DtiCONX9KH7OzAYSAtQIhANSbMc+M7xshb3XlVtY0DysEdVvhmKohpClPC0hWIAkE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22732335},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cb44488fcec4348a448434afbf2ebcbf2b423c61","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241029_1730186156549_0.11556444431356949","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241030":{"name":"typescript","version":"5.7.0-dev.20241030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241030","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5bf57ace87c565dd664da0b94100d37bd26b0aed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241030.tgz","fileCount":129,"integrity":"sha512-GTDPhqdtcO+8WOPjYAp33e8dtlZN6pY9Z89aVLH1PsaiA1yaWNPVNCQ1KRCc1BK/jQGJVVBhu0fxWGSLjAE1Dw==","signatures":[{"sig":"MEUCIQCauMMsJWwsfKUiQtahe/uw4NN1hIXD4iEarUG4Euj02QIgOhI4l848P2jcwBPewiXPoGmuny+kJhuSw5PME3AZpNQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22733048},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"21618934bf91855e5800d94d34463f29526811cb","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241030_1730272542632_0.32542383915841655","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241031":{"name":"typescript","version":"5.7.0-dev.20241031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241031","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"776d0511626abd9bff539ae6cecb64851e506a98","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241031.tgz","fileCount":129,"integrity":"sha512-CR0uSMNCzLCXjptJ38ESiEpTMEYJiplIe9jmZLQuTp5nrxwOE2ljMg5z1XyPI+Uss1saZOdpwkPxXU3mDIASEg==","signatures":[{"sig":"MEQCIBfZYiclcX+LnWmYs8EW4669WCEPmpR5dORuKyt0LxyZAiA+e7yz1eaNKf/m3aHdXxfNEW1ljEOSaGq6hDFN5E9AdQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22733092},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"da15ef2841076f40d2b278cdaedc47e45fde32ec","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241031_1730358950675_0.7974662178616412","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241101":{"name":"typescript","version":"5.7.0-dev.20241101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"00b4d39e93424a30f44a4cb09cc8356dd9e5c140","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241101.tgz","fileCount":129,"integrity":"sha512-nwq/uxhhQwhRqmjC7n4OOEf97fp8cXLinCtywgOm4YFzF2ZKchSWxfl8RpkXOFQdE9Bw1yHfySy2wJOm9H8ekw==","signatures":[{"sig":"MEUCIQCdii7UOvhoWKQ0S01PSzTb9u1PawyQKbsox1p+E7HQDQIgMjkCPs1hmQe6C+XDLonml9jRImX9jJ/Mchh1/OxUyBU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22741124},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3e6171833e6d8481626b56a7de09ea03092fadf2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241101_1730445389857_0.12468575081840272","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241102":{"name":"typescript","version":"5.7.0-dev.20241102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ac66bafd20557a00b5d0bb0871f4ab3450343625","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241102.tgz","fileCount":129,"integrity":"sha512-LnGndSZH+ssQTXmJh5R+4lu7a5WXqnOEsSG/VStm45xb10Mgf8R4h/uycBl/PdIfXkSOoAXsmPvZxd66IvD5CQ==","signatures":[{"sig":"MEYCIQCf6XPrQ5TU6vegFgtT62NTp56MHnfWm/KMZ+s4RkEhxAIhANjVhafoXmkAEje6ip43S2d9lwElj6mxRWVYNQaOAsY/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22741279},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11b2930fa2c9f73b0ffb725a9715b8d3c4121bbc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241102_1730531753817_0.31152731947796886","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241103":{"name":"typescript","version":"5.7.0-dev.20241103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8368a9982aa38611dc708012320f3e872ff359cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241103.tgz","fileCount":129,"integrity":"sha512-TQdCL9AO74AAMYkGvsSyNW+eYl5SYwQXBudj7LpNpZcxnNBrMxk+qZqqScRjycbvvWCaE1ykg7dZF7MxeBV5yg==","signatures":[{"sig":"MEUCIFyPe1jaQcKLcQ0PhIsJfOg+rjnYSvIAiyGnpnNTOELUAiEArGur/TVGjUmYbwxgGRwSpR58aqtrmY+Emx4mkYfYGl8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22741327},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0ec4d30a6e2ebbc87292c9829378d4e98de8ef43","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241103_1730618171405_0.36703156462289077","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241104":{"name":"typescript","version":"5.7.0-dev.20241104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241104","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"282904ae7565616020fde56de003443f21123ee9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241104.tgz","fileCount":129,"integrity":"sha512-cz5/yx6iInIMoiEsKTQm/4iZ0PbTMPUtSOUrVc8jvdAg9k5qDiSkq4+TOqZvqKnEMK+5TM1yM983dwABaaeudg==","signatures":[{"sig":"MEUCIC0mxdcGjR18ZJuaHxQC7BlBvtvib/0g+xpFqkKkKHzVAiEAztW71e1nDrXAXmg9TIu9hrY0aTAuo/ysP5shEdWtFPE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22741327},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0ec4d30a6e2ebbc87292c9829378d4e98de8ef43","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241104_1730704536879_0.7816729720868598","host":"s3://npm-registry-packages"}},"5.7.0-dev.20241105":{"name":"typescript","version":"5.7.0-dev.20241105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.0-dev.20241105","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bfa0d39dc37133e467d8bd4bb56b05b0e4e00691","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.0-dev.20241105.tgz","fileCount":129,"integrity":"sha512-vA2PUOj2bV0HJSD6/y+Zs6cJvGpvrAtgfHB4UtK6ABFA5s3rCcs2d+zK5WZfzt0hxgI15RI8UzUFj6A4FE/0YQ==","signatures":[{"sig":"MEYCIQC8r1j+Hi1I9GA8DVI6tq3KiWUzgGDR2uLhkNuDjuMQGwIhAM4eeTx36BdB1RUmtMkAb6z5akdmiT0E4OjgEh7hU4aY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22741529},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c09e2ab4ff1abb69d2b4a9b361dbbde43b0d5667","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.0-dev.20241105_1730790916899_0.3056826205433618","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241106":{"name":"typescript","version":"5.8.0-dev.20241106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241106","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"70bc34b21855d71be0382e1e7e610bf9d7a166b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241106.tgz","fileCount":129,"integrity":"sha512-oFqIoJnR/s4hq5I2MBDdeJThRVyyhRV5eo2EmxllNkSe76ycucq2h4QgWnq0g4Opf4KQjpi1m/jhgMoiwDc8CQ==","signatures":[{"sig":"MEUCICRrR/XiVuaRxAx9L1AgOq1MAnkA/S+Qo7ugKNoOkF8hAiEAvb0wkWFKgMLu32PtkvgCOlGp+/x8pOY2SDE6qxFO0ho=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22773576},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"30979c2651e5b0aa8ab583bbd8161cac3d0ea317","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241106_1730877347612_0.01936064364154344","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241107":{"name":"typescript","version":"5.8.0-dev.20241107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241107","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"08008f4ae05fb22940a390acbcf83aeea4fb922e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241107.tgz","fileCount":129,"integrity":"sha512-AYCebTVMNbwq0Ec2P+mkALuJjg01l/dPtSOqTjovvcqqCrmqvXCgI13z4bb1pf9AuuEm8bnLQhpG9uAdCfIjqg==","signatures":[{"sig":"MEUCIQCE0VoP4UxPYyn7eBFgcEcViojE2SnEm7Up/+9njcSwTwIgArkXUPVo0+p2BuKS8yv6BDHsDYwugQtJGuuu5Cqgh24=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22773646},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"55f1248a2052eebdea6bc0e2eef754df89a44bf7","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.10.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241107_1730963734310_0.5699485622815317","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241108":{"name":"typescript","version":"5.8.0-dev.20241108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d9c434c3d91e43c052eceb417692162e48a4af27","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241108.tgz","fileCount":129,"integrity":"sha512-4QncqXkNRtmod3q92DswLBXVX8Cc+FV2BEH4KZnP8bzqPTjUAZBq/qXl0u7pXEhH+hZOxeDqI3vvn8ry8lMt3Q==","signatures":[{"sig":"MEYCIQDjO9r8wWpbW/LTOnP1Nfz7TZjRjU1wNIUiC8HaWPO7cQIhAMuFbjPlbnMd53rnp14XhvyMSNh9weSJ90tnI2igxxV1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22773646},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"55f1248a2052eebdea6bc0e2eef754df89a44bf7","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.10.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241108_1731050109623_0.6605966856661276","host":"s3://npm-registry-packages"}},"5.7.1-rc":{"name":"typescript","version":"5.7.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1fc978445d309964db88ca2f7f467c1e582dbcc7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.1-rc.tgz","fileCount":129,"integrity":"sha512-d6m+HT78uZtyUbXbUyIvuJ6kXCTSJEfy+2pZSUwt9d6JZ0kOMNDwhIILfV5FnaxMwVa48Yfw4sK0ISC4Qyq5tw==","signatures":[{"sig":"MEQCIFcr0v6mxDGpfQO00Wk/L0Zw15pC3vwVoc+Mz+NgL1yVAiBTPfElyKNYuFXAM7kOooI4/OgcDCNm6VQw+URT8g6aFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22741329},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c1216dea1a504da7b89b5221b925abcd1702d7e4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-d6m+HT78uZtyUbXbUyIvuJ6kXCTSJEfy+2pZSUwt9d6JZ0kOMNDwhIILfV5FnaxMwVa48Yfw4sK0ISC4Qyq5tw==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.4","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.1-rc_1731091823146_0.23905348686112537","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241109":{"name":"typescript","version":"5.8.0-dev.20241109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241109","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"26c3ee77480cadfb304bc8b7353d1d71e89f6872","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241109.tgz","fileCount":129,"integrity":"sha512-WVrVCpfp1yn+u5/LS3qb9qOTbPisjcgevcdvMjOnQj3NC0QNZqycp4bfzCq0+xAZXpn2vL+ez7G6qgnayqPKlg==","signatures":[{"sig":"MEUCID9UQuE8BTNoCw7ailxvsbbznniE9RFZwHxOvkekmHoEAiEA+nCBa2/FKTLodiPOkp2Srqu57TyImRom9Bcos1LjE2E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22774153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ef802b1e4ddaf8d6e61d6005614dd796520448f8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.10.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241109_1731136531833_0.2654419789102529","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241110":{"name":"typescript","version":"5.8.0-dev.20241110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241110","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0bf464a4d3389b3fe8bf8afe30769ca45ae7105b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241110.tgz","fileCount":129,"integrity":"sha512-0OdrDNPQVyHr/LRSAFbGnuI1a+J72vMFrAsEN2ge8MhW9eihGcqodQrkllBqBLt7dqFUexbK2qOxFun1SUFtQA==","signatures":[{"sig":"MEQCIA6EAC3nQoJaBcZbonhHTUT3Tt+ZO0CYl49HFDimx16CAiADgutE1BtUnFhtJtEah/lvvdv48MpFVQgYDeZxB3pFVA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22774153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ef802b1e4ddaf8d6e61d6005614dd796520448f8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.10.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241110_1731222906460_0.9132715764599555","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241111":{"name":"typescript","version":"5.8.0-dev.20241111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8a481638472882e0c0bb6faec641a71b1858c76c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241111.tgz","fileCount":129,"integrity":"sha512-deGbPJipGG/DiJ4nR0NhFuccD2XD6xfUAQCvqMLWxVsM4p9zmhKNMWotkMQEm/l9HjXhnVr0dFJ8u4B9y3y+ZA==","signatures":[{"sig":"MEYCIQCZa5oxlmTUpEGEzfcKBwt9+LU6Bl+wGjDjOs64QaDGCAIhAJlHl9dZtDIXpNODMFSfKl6qjEurnsFIIhAa9f1hW4z8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22774153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ef802b1e4ddaf8d6e61d6005614dd796520448f8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.10.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241111_1731309325281_0.1796611114293014","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241112":{"name":"typescript","version":"5.8.0-dev.20241112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7852a824ebb53175239648f244a77fcffaaf469d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241112.tgz","fileCount":129,"integrity":"sha512-h5Ik9z9sIGe898ya+9bG+XBZQHzSYFY0Q1X9QmsDjcX2xf3jwNnWaUAE0NLVw0Lx+XBRBB2qf7GyfeqDNrzofQ==","signatures":[{"sig":"MEQCIDhZKh+bJjYG81K+RH4Xy+ftBpyMimOX85UFkkTBxbuJAiANmojzXP1qyrUvp3p6MzeVnU7nTnxsK0Jo+k0+9T+2DA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22773901},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b58ac4abf2d58d6309274c22762e2196789476d9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.10.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241112_1731395732633_0.042585695848530225","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241113":{"name":"typescript","version":"5.8.0-dev.20241113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d940ddc2edf73029e7888439bc1b6b1efa31419b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241113.tgz","fileCount":129,"integrity":"sha512-UHZg5oh4kRf5PSlyJapVs80pWwb3qxK4MP07PxOz7KDYRf0vWBBepHbZI6Xmx1syYb9M+plmem9PUT2kM2YlzQ==","signatures":[{"sig":"MEUCIDFaayGrQZJst2TyGl2dvdJY/p2Spl16i+ZMFzsnfGmwAiEAjY70M7yGS0CjQ3RcI4MHAPpXDIs5LDrnKREHdm+5OpA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22773901},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b58ac4abf2d58d6309274c22762e2196789476d9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.10.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241113_1731482109275_0.3053758421233479","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241114":{"name":"typescript","version":"5.8.0-dev.20241114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3765ad130591c423dec3a1c3b70705732738d839","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241114.tgz","fileCount":129,"integrity":"sha512-FCT0wJBcmIXGSTij0CscfHzyI8aOtjnknnrKcSQZ8mzvQ9fQgvpqeIFToCyXkfaHmObw0Lom+J45w7NDh5WIAg==","signatures":[{"sig":"MEUCIQDxtYBHv3pl2bGLilmwSIBJSuJ+HEZjozOdl3bgZ+P/tgIgTsS9T2ER/DtCTTOB/tkjoN+lTgKB+ZPoVXxm4mG8/ok=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772646},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c043944b1434daa67b66573c66850d51c0a16944","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.10.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241114_1731568524840_0.9730271485993163","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241115":{"name":"typescript","version":"5.8.0-dev.20241115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b60fb97a8c1c53717394e55d8175bdc76fdd5680","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241115.tgz","fileCount":129,"integrity":"sha512-2gG4vlFoRzqih4P6nbz0ko5cdHMlSxZxTPJPw/YFQOnTHMRI+yP7MXaQZ8zqNHu0Ql/Y55zORybuYS9lehL6kA==","signatures":[{"sig":"MEQCIAa2PiRyX9LDcOHoftHTcQiybrbdbSel6u/AkM6FV3k7AiACsWHHqxuDqTMCgKIv6vIXczfJvPNm0c9DYiYTPqpIcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772646},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c043944b1434daa67b66573c66850d51c0a16944","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241115_1731654948699_0.3388393757068451","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241116":{"name":"typescript","version":"5.8.0-dev.20241116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241116","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"42a9776844187add6eac4312c517dcde598ea9f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241116.tgz","fileCount":129,"integrity":"sha512-JLN5vNtl3rgeYYsQjLSXda0/Y4NXhntNDWpUTsavNhhT5YTOvJ6mg9bp3dBnY8vON4jVoR+xlf3Im+6FXGnu3Q==","signatures":[{"sig":"MEUCIC1LMq5Resp27MsKiFEll2qP3xHZux1p8nDkJVcguxF2AiEA4kFOdU6eLAEC2vKp9dqZlcgjgoVx2j2/khRHP70fRMA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772486},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b3c67d32020a3015fe068fbcb1dcfb18aedcaad3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241116_1731741329790_0.6999683401054524","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241117":{"name":"typescript","version":"5.8.0-dev.20241117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241117","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"65f443361856084a28a0f8a2c048677a0bb1ec91","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241117.tgz","fileCount":129,"integrity":"sha512-/KXkLUxfT9NG+SJ8kZ0CLNQnY2KJtBgAJRXT9njsOwrkSRpwc+55f+LlSL6DZ+O8jSC51FhsHOwQB/xIOi5/ww==","signatures":[{"sig":"MEUCIQDcwUC1UmxP5tYu6WfNIzRuH+57zo98sG6ryCWkwDXhKAIgBE6ChcZp1m0ESdHKbz4U6jUArDk2vy4jJr2qabF5XhE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772486},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b3c67d32020a3015fe068fbcb1dcfb18aedcaad3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241117_1731827730524_0.6808376985711717","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241118":{"name":"typescript","version":"5.8.0-dev.20241118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241118","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae230b458f31a26ef5ce835707d6f51dd923e679","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241118.tgz","fileCount":129,"integrity":"sha512-44/OIhoFZceBYKy8OBm+sqsniWHHZ3IipN5FLWxdYaoc75CA/yRvURjDu9TColyZdpA47n0yYXWRa5RPjWyrHg==","signatures":[{"sig":"MEUCIHxTmpaBYTIIFzw0sTNIEeGCvCpktJ+Emr4wMBEH/EhfAiEA1/haCHMCEOj6NKQ9WT2IWjygCwcjPj7xIGQd0GDJ0GM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772486},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b3c67d32020a3015fe068fbcb1dcfb18aedcaad3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241118_1731914119864_0.8810197954559682","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241119":{"name":"typescript","version":"5.8.0-dev.20241119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"106f2c7ac2b7ddd6ef23cca3e254224e874337f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241119.tgz","fileCount":129,"integrity":"sha512-qj+yMCPvzsR5XXQ2Xq5k5O1tfzhHx94vxSdGWAuagZQJ2tS8CTuQSXGoCsvaKg2rpSnxtCjPECFifCqFB9t5Dw==","signatures":[{"sig":"MEUCIDY6hMm6G3leWHybYY4x5soFOLSzVES15K4ANpsr1R3kAiEAuRkIvv0g5gpx2uzAyTHbUOA/yAD1XDB0gB76OtesEjg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772486},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b3c67d32020a3015fe068fbcb1dcfb18aedcaad3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241119_1732000535125_0.6790603152060308","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241120":{"name":"typescript","version":"5.8.0-dev.20241120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0ec83f7cfbfb93950bbe5f7b30cda4f58b1e8b10","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241120.tgz","fileCount":129,"integrity":"sha512-S2DqqiwzLm6VZiVYDYKevuShxepDUv9HalPh3B7FdRWP192KziwxaPJUtGafpJUeh32YVcvsFLoT8L737bek4w==","signatures":[{"sig":"MEYCIQCEao73p0fVOBNgCDGe4lyXWp1aAaIA8YG8N8c7886qTQIhANRMU3AT22lrWdQ8tKTp5OmuVCLEiWDhIGb1CZIg5VT+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d85767abfd83880cea17cea70f9913e9c4496dcc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241120_1732086926176_0.7329394518233263","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241121":{"name":"typescript","version":"5.8.0-dev.20241121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a3f38c0359d4f47618e08b342cd3723b5c7f5b9c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241121.tgz","fileCount":129,"integrity":"sha512-6jaGeY7DfhSYIavJI6JeDMQFG5ezytKNOfXDThnyK7UI9MnMc3AxlPyjwJ1fAAAWQl8gf9nL7AvtPrPhGtxoKw==","signatures":[{"sig":"MEUCIHoDFvvo1mAC5CQQkZyofcPqXV/USUZ0rK6RogsdhsfAAiEAopgjoJKVZ5vfncHOvsogVy8OvsaDVT1THMa1q9jBQ/8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d85767abfd83880cea17cea70f9913e9c4496dcc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241121_1732173321291_0.524681245254426","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241122":{"name":"typescript","version":"5.8.0-dev.20241122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f10f2909592779f8cf5a3b28d6a86c36f72716ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241122.tgz","fileCount":129,"integrity":"sha512-7CqLgMl/tulgpSh/EVpI2rqBgrDkJzxJFOv1/zZKZLmwtdLrDHYOEkxscR2a384kdbEwE9vq0aeLFGAtEWHiqw==","signatures":[{"sig":"MEQCIDZvxWUNNMJTcSCF7jXJI9sFSFwStY8hJxJGoQrtFDbiAiBZrPWXd+Nm4GfJlWkG0CRrpbKklW54e3SrrGqbBUfokw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d85767abfd83880cea17cea70f9913e9c4496dcc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241122_1732259750838_0.12358152027519287","host":"s3://npm-registry-packages"}},"5.7.2":{"name":"typescript","version":"5.7.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3169cf8c4c8a828cde53ba9ecb3d2b1d5dd67be6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.2.tgz","fileCount":129,"integrity":"sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==","signatures":[{"sig":"MEUCIHV+RF3anL6TfxFepPEtFJTdrB8P4gIZCoTWk6iknm9tAiEAg6gAZOnsR1FBKJxf9Zc+XQXiP965oTs+ZgwrAv1gLA8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22739967},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d701d908d534e68cfab24b6df15539014ac348a3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-i5t66RHxDvVN40HfDd1PsEThGNnlMCMT3jMUuoh9/0TaqWevNontacunWyN02LA9/fIbEWlcHZcgTKb9QoaLfg==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.5","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.2_1732295769334_0.9264117540391488","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241123":{"name":"typescript","version":"5.8.0-dev.20241123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"590c952afef56e3f2d3be0581404c6ad500b7de8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241123.tgz","fileCount":129,"integrity":"sha512-9+P/Jtdlzl8CkmGg80mFnyjyqVEccRfQZYwvL1rRBctJ2PN3OfeuDq9YFJcv5tRZ3Y59+AuHiADSJpoRUKvVaQ==","signatures":[{"sig":"MEUCIQCI/qD45hr/3uGWHhnfNHy/TGEvs1srlC44R0JoBhs85wIgNYVCb5/K0xgOtKX+SN50rJ1S7OMUfUxy/vvxbnClvhE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d85767abfd83880cea17cea70f9913e9c4496dcc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241123_1732346252235_0.33133048777635765","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241124":{"name":"typescript","version":"5.8.0-dev.20241124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241124","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"468bdfff37499c4caa0b2e0c11ef5f577b3fe5a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241124.tgz","fileCount":129,"integrity":"sha512-Fzhs8HlySpOUTwYE/AkzPN2eCe9xruwgrAGPYCB9StYqOJiro8zxe3rdej0tkqrSBGbSpXaZ9t6Gv/omZv4new==","signatures":[{"sig":"MEQCIAki0TQ7NYEdsPxLrBYMTJXpKaNZPr7wo6/zf0uK9+OGAiBM2eEIBwZhlSD+UNB2Lgeb59yT+QSkvXE1mjxRsXN84A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d85767abfd83880cea17cea70f9913e9c4496dcc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241124_1732432522859_0.6723408875900296","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241125":{"name":"typescript","version":"5.8.0-dev.20241125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7292cbcc9c5a36b1bbf41ab6a370939412b699e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241125.tgz","fileCount":129,"integrity":"sha512-hZERLOYr8LieXCWI1B0nP7c17/OQHWiPAJ0QtpPT5vQ3fSPhWNdHvYQR7sP8JQ0c2hRgQ8ADHD+LdkY5WwdbRw==","signatures":[{"sig":"MEUCIGnvigCFQ13vnmbfplpWpeeNRHg9fRkFHjcX/jmHTtEIAiEA4TF58AxNPT2KE9wwLrWVClodacJjCRvMDknLnMsCsFc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d85767abfd83880cea17cea70f9913e9c4496dcc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241125_1732518925009_0.27414588969360465","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241126":{"name":"typescript","version":"5.8.0-dev.20241126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ff143e23360a1ccf9da82b8692347dba7753a1e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241126.tgz","fileCount":129,"integrity":"sha512-DdPYP/1aTjosrrC6/DW8ED50oXBknS93D7TihD1iMmRuheri/HpW0BubYtq7JpNjsS+4wA+n5IgF66wC+5C3Lw==","signatures":[{"sig":"MEUCIDHlb1kpczAqs/xOKUbx/AwBpiGhgn9Yl3/nqib5v7B0AiEA4DudxJ+5/F/Mfq193uVeogCiPPx5yh4VCC5NWnypY6Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772455},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ee0e08bd96bdde7450337afe141e53018cfc89e4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241126_1732605330813_0.06763509940047197","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241127":{"name":"typescript","version":"5.8.0-dev.20241127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241127","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e0f2381855ac9cc6ccdd1444b84a6330c5b8e924","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241127.tgz","fileCount":129,"integrity":"sha512-TGb4/mmMCY5GOBuEry4xaOcDonyPwnxPc2zaR/8jgA6twK+iGEPsB6EeT+lSSrpOP906WPlFAn3XVQfQm4d7TQ==","signatures":[{"sig":"MEUCIDWqo7rHZF/Ip0K0dHX0OEdyOKdkzy9kcd6RI3Z773B7AiEA15iak6d+IrLcgWJMd2r+w29ZmOcvjOkPhZyXQ7igESA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772831},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9fe6c3661cd89952d9556ecb14ef366b44076064","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241127_1732691732757_0.44809233163414186","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241128":{"name":"typescript","version":"5.8.0-dev.20241128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241128","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"35b5779e01b5704bfcceddb484b57121c4162502","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241128.tgz","fileCount":129,"integrity":"sha512-tBV3lvFeLokgidFDFHvuGjqPpT/Ozl2i+dstK7rh1PCCp3ol5mdsc36NGE5uCakTXh94YHtvdAAs5gAsum6nLQ==","signatures":[{"sig":"MEQCIFh2zjUJUQm+RHlgTJUmAalP/iKjU1BlouwIQ2UTeHofAiATxE8njpU2a3VJZfvmYOVRTuaNLZah/Hsf6WgePI3lUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772886},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b263cc4b2ef12ae013526a3d8808b6716146586a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241128_1732778131254_0.2595546227194585","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241129":{"name":"typescript","version":"5.8.0-dev.20241129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241129","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"374d36360be2e1ed327b58061e5266f82f8ff9bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241129.tgz","fileCount":129,"integrity":"sha512-IuSZV1kgkJ24wRAfBt7rJz2LwhflIrelUrLeQsrRkG1Ej51n04Diou318d9xewwfvkkRIsR+g/hph6P5+Fb5Tw==","signatures":[{"sig":"MEYCIQC0G1x51mp6gZq8BQ3k0SwlZUN6nRPp2KBN5nATLCfj1AIhAM7xeB+8yi5fsFCxnK5cCIo01CNMc4Xj4P++6YXk2PLP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772886},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b263cc4b2ef12ae013526a3d8808b6716146586a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241129_1732864527300_0.7659586248261125","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241130":{"name":"typescript","version":"5.8.0-dev.20241130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b1037763f9e978bffe41bfc7e4382b51dc8b7e04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241130.tgz","fileCount":129,"integrity":"sha512-cJ/17qrj874di4GaOZOxdH7kzhC25jyGXrxBhjUUUCq2HiQAo9nl8R33PKOqIejOA1ljGASS6jyHwWsBOjRwow==","signatures":[{"sig":"MEYCIQDEpoQRgaFczOScFCAeoW1mW68TEjeIcfdRe9510VkjPwIhAOC0/sxKPNfy02yQInPFL0MHUQFiBLaO3hscQsPM3M3x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772886},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b263cc4b2ef12ae013526a3d8808b6716146586a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241130_1732950906459_0.4684262555141947","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241201":{"name":"typescript","version":"5.8.0-dev.20241201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d76d893340b96d2f8e7204b17aeb76650b5e2f23","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241201.tgz","fileCount":129,"integrity":"sha512-c2pVSFoS1eJha1eBBNtuZoMkjQFOT9X+ib53SGU2psP+JCzoJxEXbobq9jwa7vauq45NB92wVPKaKgpqyCTaqQ==","signatures":[{"sig":"MEQCID1mdfI+D4ORJWKGZhEE/ExazGjh5ZaLKnAryIq3WVyZAiBT2xIG2mrwtsS7IIySh9ugibi8NXMtDV+xryyHDMMzqw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772886},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b263cc4b2ef12ae013526a3d8808b6716146586a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241201_1733037323108_0.3845684197542931","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241202":{"name":"typescript","version":"5.8.0-dev.20241202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b88566a39f15101a6d86c9f9f90c36f92f7426f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241202.tgz","fileCount":129,"integrity":"sha512-4b4+FbKk5Wp51uwCztSyh68rdK1rv4afoC/P/g8HOmWmfHIdCgZNxzLS6TvjBU7e8XVzmW3jE/CJl1n59lcIhg==","signatures":[{"sig":"MEQCIB486S5rfv24jfk+gEWbZQdP6ovlMCgAafIvZpU07J32AiBxpSAgZ7bbGmohH/ICUNS7Nxjb3A/IOOq+ffLTKqFA9g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772886},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b263cc4b2ef12ae013526a3d8808b6716146586a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241202_1733123740017_0.6919800970576488","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241203":{"name":"typescript","version":"5.8.0-dev.20241203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fe24a12a114b243832bc205c33dade6809156364","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241203.tgz","fileCount":129,"integrity":"sha512-8zQXG+vcm5ZmaQiE6PWOBBN3/2cIPVZyeGcDINpWUv+st5nTMdkNR5Hh3MyO3ag60xAdVlVIOTvZLUHQZIznwQ==","signatures":[{"sig":"MEUCIQCJ0/RyWKvwuuHKeokYEOWNB6zWyeKGqkc+08xdGmYJRAIgBdXjapm6TmVwMSEv5kxI7JvpxIIo1F3aSZ3qSShNJZY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22772940},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"14c65b311959501b6720ff48b9cb02eecbcee4a7","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241203_1733210171264_0.04723528987208514","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241204":{"name":"typescript","version":"5.8.0-dev.20241204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2c7e294a1c53a33fcd126f67c0ea0ee3ddaad0db","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241204.tgz","fileCount":129,"integrity":"sha512-UK6ysqPu2ZobQlSUBtxyKSUrPQplZgxNeq8TUB3pXmi/OvIcq1Ua5rpQNg07EYgGY2rotPKz7b+L27ZzFRwV/g==","signatures":[{"sig":"MEYCIQDZRd1BUDyeUUOoFxq38BoUL21DgliVjqIBf0+bBbbTVwIhAPpaRW3teuAbN9XXTIIu2u41bJ0+NCnKKlmgZF3bM9ks","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22773082},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6f75783184328087627da983fe30a05fca4f6314","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241204_1733296549930_0.18018736817459113","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241205":{"name":"typescript","version":"5.8.0-dev.20241205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"786c955388d90f91b4bcd9fb231c7d98d65d948d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241205.tgz","fileCount":129,"integrity":"sha512-r+L8y2DCxn0dd+SpTt9vatokMxihxaYVc1JMxHhQnl5WN56g1F3s0Q98DSaFzTs8feUj7NevGlunsjayPxvXoQ==","signatures":[{"sig":"MEUCIQD3xn2ecFJ9Bhcx1hHC9AnrRosfck0Jisr2hC9KJrT/1QIgFusXA4jA83p/lp6/9+yQdZ7HSbWeB/AugI42a7QdCxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22774303},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"12d96878bc51df4b1707b6f92f5094f51513a16d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241205_1733382965033_0.9346607838564369","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241206":{"name":"typescript","version":"5.8.0-dev.20241206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b673984118648da49fbd7febde1bb5c15bc0a253","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241206.tgz","fileCount":129,"integrity":"sha512-0tcNBmbE6ML4usuL2ksFZpxWVrTQT1kIkvIOCzpA29NrG9AlgU0/5SyNlKKiPlkzhSuP97G9E5dPULBYlWE8eA==","signatures":[{"sig":"MEUCIQD2DvOU4z5MyfoJPPCnSO2yFvxQaMzxhjAQrNJWqr++6gIgWz6qjWM0tZ70SErqPEzMUDeX4MKn9AbbbzYdeE61rik=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22774303},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"edd278a10415476afb90f3f0523e132805626e52","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241206_1733469342314_0.16369885614148094","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241207":{"name":"typescript","version":"5.8.0-dev.20241207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b6144fdd5090da5fd9c9b7205bd96b438188dac5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241207.tgz","fileCount":129,"integrity":"sha512-yQ6n2+6pOnqMt7ycrcA5EQXaOxxOkoKirCdQJEF79Hjke53Y+zs9XIwBbA99Hf2CWT7lhAuv2MFifLwTLQQ1BA==","signatures":[{"sig":"MEUCIHqCu6tj64SCbMoPp65wiwpjV738jszZrI5NXuua9l8lAiEArTRXWkEP6RnaBweYq6l+/7WG2mWmDTEsuYi07jqtB1Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22776263},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"421f5c5458d09dad601604e6eff8765283aef14e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241207_1733555738793_0.4402788299717031","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241208":{"name":"typescript","version":"5.8.0-dev.20241208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7f3597a29b06e9c3f40df219075aef52826e3fc3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241208.tgz","fileCount":129,"integrity":"sha512-+NXMMLx4CWTS0Bbt+Rnbl3pda/qMAMN5s1ooD5ntFfsgmUkjMSyKahEqV7r7EeKKYTTWyFN3jD6icjNdZdGMZw==","signatures":[{"sig":"MEQCICviFf4N/nDq2u1HZKPUNo13aF/NQ8WqCGztEhB0O8gsAiB8kLe3e+c1roQ40ECSgFui4oreHB+++OxZVQux2wSLwg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22776263},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"421f5c5458d09dad601604e6eff8765283aef14e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241208_1733642168745_0.9880962241643574","host":"s3://npm-registry-packages"}},"5.8.0-dev.20241209":{"name":"typescript","version":"5.8.0-dev.20241209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3610a6251b04eae3cd4ac92454922a3ffe2db9d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241209.tgz","fileCount":129,"integrity":"sha512-LouJoEV8bwgTD1pmLck1aKNa2s9pE1uTQUHB14EubuRv/G5EY5v3O0+WmeX3c65VIpC8xUoSoc3bPjIsHrjNJQ==","signatures":[{"sig":"MEUCIQD8kwCSMTp5U28DCgd7mXeJsuz/ws3EUURNbC8us1RHHwIgNtc6TfR5CQMSXlFppVCYvLToLVwbSNyCEyzucbKhUhA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22776263},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"421f5c5458d09dad601604e6eff8765283aef14e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241209_1733728520051_0.6321534952212959","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241210":{"name":"typescript","version":"5.8.0-dev.20241210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"618bdda5c296f98579d7632f63ad9f6b23cba75f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241210.tgz","fileCount":129,"integrity":"sha512-KPdRJ6b3MyUfKo+rrJKWnT/n47kfa2B+MR1tyPV3h0FM2Bu5DPHBvto9bdpDXGFYF6kt3TEZdCgEv0Chk/MnCA==","signatures":[{"sig":"MEUCIGf5yT/AVtt5YqNJypuTui/YI+ASpeaIB9bUTgw+fww7AiEAhlc8boQN+jcnwvLG6Tlqgfph+XOpEs2VgSPRxO73QWQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22776671},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3d2b8f33d4ff86ec351ba93a557d37720962c921","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241210_1733814932122_0.16845305904511898","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241211":{"name":"typescript","version":"5.8.0-dev.20241211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f6485c7f5f3c2779d1672785f561c3e14342498f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241211.tgz","fileCount":129,"integrity":"sha512-0Y3jLj2YHE2oulcW2viCZKxvWZpHMqnwuw9umTFCRA1/BNs2bkmh1pDH50lqh+4yQa7ukGLJfV22Bva7nOvm+w==","signatures":[{"sig":"MEQCIDvq1TmcYBp4xwRKvpOSWPrs9nP/ROQByMRuWqxkGOkzAiBqeyD84pjHQoXeHybs4LIYXXAn5LwBv2HUVFH3yJuIew==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22776671},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3d2b8f33d4ff86ec351ba93a557d37720962c921","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241211_1733901320891_0.021353747036848114","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241212":{"name":"typescript","version":"5.8.0-dev.20241212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241212","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"752c36f48afbc792a2ee9a16643e1bb01cf3e8f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241212.tgz","fileCount":129,"integrity":"sha512-DL+rd76Ze4iHIFTT6+f8SNdxkTYnR0cy6e0QRljOfyr2s0TrO2L9pAOB1dJnSizTAjxou7lIRpUWwxVOIyiMWg==","signatures":[{"sig":"MEQCIBFgmuQ7ewhe0ZjgHPCIC0RmRu7Pkkr5j8Ll/EAVwRB5AiAFcRUc6cCT1pMLoD0G+y4vuWGRu2cADCGVZj7teZTAng==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22776671},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6a00bd2422ffa46c13ac8ff81d7b4b1157e60ba7","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241212_1733987740052_0.16510827976283338","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241213":{"name":"typescript","version":"5.8.0-dev.20241213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241213","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4271de08ebe7eccba02857dae45245544e8ebd44","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241213.tgz","fileCount":129,"integrity":"sha512-xhZIH3ZacWq2yulnfGWjDWkfWhG66cdOQUnn6EoJpd3SpP6+PCP3bWqH/wHD26RlHrHBdQLBoT4pHFMyIoyCnA==","signatures":[{"sig":"MEUCIQCE8oy9Ac69nLE3Uoh67kIceX5QFvkgmUczk8MkBCp0JQIgQWnvxvxWyUlgBKjKhSwHI47T/f8CjVm0BeC4kzPZB7w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22781813},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4a18b5cf8d41975c86cde25a0b2229f81e3b08d2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241213_1734074121387_0.22151278821422649","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241214":{"name":"typescript","version":"5.8.0-dev.20241214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241214","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"df22320ef3d4074b42855cf4581c2f6e28e924ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241214.tgz","fileCount":129,"integrity":"sha512-LAoyzKAf6KZbnrIf167r6p5DxwJGIhB+G23Y64pmxMTbOH1gfPJT23ZTyU1hmQwc43pCXGYLNjoYGZYjYyQJxw==","signatures":[{"sig":"MEUCIQCiTpSzrpNJhYaRW0x2fDlSme3E81waawjUZAMT4p9bkgIgOiym3qBVahTRQHrq1KgqovjbXHlIsNxMokWUH+7sBQk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22783870},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f69580f82146bebfb2bee8c7b8666af0e04c7e34","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241214_1734160512243_0.066972596260092","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241215":{"name":"typescript","version":"5.8.0-dev.20241215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7bb26cc7a3e4d316c728a9e0f447b468bb11964d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241215.tgz","fileCount":129,"integrity":"sha512-NBCUoCbNZYPlRb7TiVCx6xEdntU5ElHwJZ4XfEqsU/8YAlPp/w98OJSegWjea8D/T5ZcoZDxy73JE6rzQRYBgw==","signatures":[{"sig":"MEUCIQDrjl9NcP5RL4qqyUYJYy83AF7ae2JxXyFb6A51j19VewIgcb4LQ/TGEejRgoKn1sZYZUEGDDkJbMZO9OZI2Sdc/JU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22783870},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f69580f82146bebfb2bee8c7b8666af0e04c7e34","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241215_1734246931863_0.1356156221452498","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241216":{"name":"typescript","version":"5.8.0-dev.20241216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7b34b1a7814cd2c86069b6272f1bf106f9a67468","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241216.tgz","fileCount":129,"integrity":"sha512-qNAT1xMB511YG1+ayBaUjx/+poPP/vsQlMNIu9h+lK8aIu9HKcuxVr2R2BZHt67dO+JV6vPXyLEeUYFcUG8Oqw==","signatures":[{"sig":"MEQCICnBGJAl6GXMRMtS92kaJnM+UCjQSI4n/joR+WxmtzfaAiAbj3Ibsd/m3bMHjh7tFhI9+T2UH3RRaXx+YJpVgHWxTA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22783870},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f69580f82146bebfb2bee8c7b8666af0e04c7e34","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241216_1734333341946_0.5133983850002919","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241217":{"name":"typescript","version":"5.8.0-dev.20241217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241217","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"07d7e46c927572f7e8a5095a16090477aaff2496","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241217.tgz","fileCount":129,"integrity":"sha512-Q/I+eHfiwN0aWhitenThTT2FcA1lTlUZR1z+6d2WaD/8/wHfdjQjdHynCpYXjAwDkfG8Apf9LdzZ3rLRD3O9iQ==","signatures":[{"sig":"MEYCIQCQG7YYVWGcKhrz6WHGjSEA3AW5HIziMbNg9dy1RQ/xSgIhANYvHZjqYanBUvUJ8SZhgPLMnzC7oN0ZQOeUmK0pMrrV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22783870},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ac2cfccd64d5f4a860b7c24335679da9c04bf525","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241217_1734419743639_0.08327535631799399","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241218":{"name":"typescript","version":"5.8.0-dev.20241218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"64a079b5a8d30e1c6d6e21f23279d5a45f3efd6a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241218.tgz","fileCount":129,"integrity":"sha512-MIBYE1oO/aI9B3oluGzDOqTYMmPhGK1Xwvjk4LOCu+1CeKQMtPF3pLC9n/VcznkI0n6k7MQ4S8a8VJdbOEE96A==","signatures":[{"sig":"MEUCIQDD3WEX7/2wT6o59DngEXyF4eXCUdHRgchWBp4Az/0PSQIgbw9brWpT/NThI3sDKeLSew/Bjf48ETEDUdmkCsTXQ64=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22783947},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"52717acf8722ad153b3ee49cd59b7c95b0f4ee04","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241218_1734506131690_0.42367705568976444","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241219":{"name":"typescript","version":"5.8.0-dev.20241219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f8b6e407ef6ea1f5cacf1459f2564c05cf9dd466","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241219.tgz","fileCount":129,"integrity":"sha512-PTUvyFVjlvuUrbfji2OvYDaTN499msaIy6xkbjllGZyBmvr8N7QdGq7Q8ZwD2BatydUQXBQzSSVIqcn2Px8YFA==","signatures":[{"sig":"MEUCIQDKNOVT7vBU03kNflsBGz33EHOmZ2iBB3sfAnRqlWW5MAIgCoiuxHfmS0+vInycYxUBDIiBOlQ7xnrWGTT+LgxmP6c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784133},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0dda037f9fc53af3623b9e7371a731947a572d40","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241219_1734592564087_0.703688238736865","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241220":{"name":"typescript","version":"5.8.0-dev.20241220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"16e0b7ab3295e7bc44356e3789ceaa5e8a9c0f20","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241220.tgz","fileCount":129,"integrity":"sha512-+Ub5hKcNqrDJ/MWTrMCjy4HZivAggL6MtkgRqu8YaPg/Ghu6CY57SDD0fcTn/AClb3zxDATm+ilNq3fnPrnx7Q==","signatures":[{"sig":"MEUCICm79nXhFqx1MlwNgU0/KmyHOd9y9D/p7azJXIpQz/ljAiEAjOOhYXq2sadgzF0zKW8fx164p7bDYdbHUfLZUAXdnJY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241220_1734678950982_0.9605311467784767","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241221":{"name":"typescript","version":"5.8.0-dev.20241221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"16edbf7631d48a5058843eb6844c0c4aaa104f24","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241221.tgz","fileCount":129,"integrity":"sha512-K1z3tD4Ueb295sqFiI+uQcCpAzJabMJKHLugAh8X5IducThJ9u4ZJEfxfBx5CGoBPJIF89EAl61msuwSlS+MKQ==","signatures":[{"sig":"MEUCIQCJrsh8QyPafCcUEbolpmrCCFGpl9Ud13AyKUVpkXLgHQIgcM6L175ncQntuHnh+LrWS4Mn/0IEpAmh72qIVoaiG70=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241221_1734765334840_0.7718349005968548","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241222":{"name":"typescript","version":"5.8.0-dev.20241222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a01f10d7cddb2cc3b7a46aaf92b5baa754bb1179","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241222.tgz","fileCount":129,"integrity":"sha512-0LmynFBKqPM5ifRv3S5OlGJd9nAiDgQU1Tx3Kt1GbgCxATgeR2c4NiX5x1PqKlIKcB5R4inZcQm9YdUO1P6SXQ==","signatures":[{"sig":"MEUCIBhJ2cMqAAh6wOnxYcS4TkEVsNj5dp+zX/6NC7tv6yWNAiEAzvvz/Fx17CazRYeSpB/HFjMM6vXBue6KPmxPM2QVMCw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241222_1734851731379_0.6843087005481827","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241223":{"name":"typescript","version":"5.8.0-dev.20241223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"85bc46aa2e7dba0b627f4e91dc407f8208136587","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241223.tgz","fileCount":129,"integrity":"sha512-eRWuZYgyh1COHIln8pxvd/qMaQNBW8EcekIbHAgC+HnK9vBCNMbfpWaD7z6yC9shfBmdpZIKNxooznoa/Mfa1A==","signatures":[{"sig":"MEUCIQCav8VBUalzcB/zg5A0o6hrmgtEWrpGjcU+k3WlUAIHBQIgAxpXrXWJkRd057Pt2aKsKfy9jQMejpQzti1p5RvCZ1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241223_1734938145607_0.13233622811041035","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241224":{"name":"typescript","version":"5.8.0-dev.20241224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"14a93ecba1616db0c5bc857cf2756ee8d92d33a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241224.tgz","fileCount":129,"integrity":"sha512-YhptMBbAIXORdaVlzNlAltqox013egasFrljDO1249CWdYX/iWwsLe+EkXi/fUHa9SVhmo9BzGCWOgdq0u1aTw==","signatures":[{"sig":"MEYCIQDYzOhNrlqWDVX6WBAoJVcxcnM/8AoO77P4xH6YrTxUyAIhALl8lh1SANXBPN/oPUjvHY1mmn/VSCuYWx+Q52EWG1iK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241224_1735024550407_0.9402396383109413","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241225":{"name":"typescript","version":"5.8.0-dev.20241225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"82de3e090feb5bc704ac092100ccf2e7d6a2f177","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241225.tgz","fileCount":129,"integrity":"sha512-JRq+l3XKUQYhqK80k3G5r8yZO0H/7FNBEoPyUfQ8x9XXOnpgJbOhN7IuvhRPXFrh5/SMJU2ltIdgtnVfPOsgVQ==","signatures":[{"sig":"MEYCIQCoOVG1pjN7N5wbr6PGitRmF5KBskbaZR4fnw2lPsyXeQIhAP2N7hWQI/j+3JBjPW5i29FA3klTpm2FPPdPLMGZK/ee","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241225_1735110956097_0.5142927710576266","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241226":{"name":"typescript","version":"5.8.0-dev.20241226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c8da564ae7a501ec2783f1ff44d961aba282a34a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241226.tgz","fileCount":129,"integrity":"sha512-iCURPPeEk/3s4iAKjDRXeu43qXtZy+EdsYSKkBIP2txhkLg78It2J9AOjJCfhiUNUIKuzgHC7P0tgtEI7p+xrw==","signatures":[{"sig":"MEUCIBScxkV8/ZB07M9IISsFwzKfOWrJRxOSYsBWa5EndjfPAiEAm0gF/BBkCJ1hoxkeHQlyFralmfbMqNM8rvTgVwUOUKs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241226_1735197368414_0.43520194496328846","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241227":{"name":"typescript","version":"5.8.0-dev.20241227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21e2292a9c58dde7976b401ef783cfccd0f68ff7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241227.tgz","fileCount":129,"integrity":"sha512-bE8kzViIOFzVMwx3NfOAiPgmiX1k7kYPNULBYZW+obKGr/Y+zU7FFOcqYloyipMAWmUOLpzP9z545DJWxOCX8Q==","signatures":[{"sig":"MEUCIQCcmGaYE16pO+PfwBrVxwRYbOZV1g9BhuHDtJYTh7JHdgIgI/dTeU0BL7OkOWWLVeWnEBxP5bbGF12qwZ9VaN2MsBo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241227_1735283745865_0.7142368019443861","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241228":{"name":"typescript","version":"5.8.0-dev.20241228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"77888b412674f7ea1a3b257ec428173ffe240a03","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241228.tgz","fileCount":129,"integrity":"sha512-xHV5U938hkF6gJPKbvKzMmKjx1XUv0ca95mkjXDsL2+AvZ9rsLP42FI06qQzzGNTTG5AChzzGW58dyctUuV5tg==","signatures":[{"sig":"MEUCIDLLrlvmlBCrOa0t0Qs6Mpw4eTald636LHEAHAIJzqO2AiEA59m7eT7F+LL/LhWvOesK97kgIEpFdKgJ//bDkEXkzeQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241228_1735370137567_0.6634114058265925","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241229":{"name":"typescript","version":"5.8.0-dev.20241229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241229","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d16e5ad155edfc258a522473420cb4baf4bed254","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241229.tgz","fileCount":129,"integrity":"sha512-FM/uJa1H8qasChw1XfjuLeVVHdM+wzoGkRApmjsY8wKT6NnESk1T9RgE9FA945uQ538t0qXqP7z9H4eVKKxN8w==","signatures":[{"sig":"MEUCIF50LpuVhGN7lceMvGxAKN7O2yYJL6HrmIc3FcXXKOsCAiEAzhHJQY1ToxGG38lpZLC20EvBP6IbDioc+tsbfggqpV0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241229_1735456710908_0.030353216607056588","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241230":{"name":"typescript","version":"5.8.0-dev.20241230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241230","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2a345d5d5c8e8f519bfd2c0962406e9a687e95fd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241230.tgz","fileCount":129,"integrity":"sha512-cs631S0kQoinvsMJN2vwUNpROxcosWSk5dVr9OSRwpNpyffpA13juQS3bC5hn8UThuFBPobFkrj0p0pW9RxYmg==","signatures":[{"sig":"MEYCIQCzLd9DuITKVuq8lK/Ak62qW/MM0OvPSJyr4+ECNeo+bwIhAJ9Zg4sIy3WCRfhLvfRDLGjktJsqWQ1ppae7kKbDhk3i","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241230_1735542934328_0.8714748882091874","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20241231":{"name":"typescript","version":"5.8.0-dev.20241231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20241231","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"420b51907783bd9e1c3bdb9b784c4771be1d4fcd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20241231.tgz","fileCount":129,"integrity":"sha512-k2jhdgGd17z5DO2KGlHPJRB/hB6UOuufCZmRuXPHE0/7UaRdM3T8yo5RjH/vjUX9siMtmhXe8TfTTxAM+cC29w==","signatures":[{"sig":"MEUCIF5TPVRkBpfr79OVBA6+JYuJupKoix1IWB0C65NKa0plAiEAoXlAL0jsNzzUQ07f+x7O2i2+hbmP8fd4GPCCUJ+xCw8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20241231_1735629341814_0.3703466298947389","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250101":{"name":"typescript","version":"5.8.0-dev.20250101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250101","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e6e62b41bf021f05dda8a64dcae7599e3688f3ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250101.tgz","fileCount":129,"integrity":"sha512-a4tA7bccsnhaKh/I3GXm9GhQFgQ6q4HhmeyIW7FFXm2fPMEkwtf3OCSyM4dG/0Z02RW7nsQ4y+Oqfk6GEg9eBQ==","signatures":[{"sig":"MEYCIQCpG4FDbvZRsc+iT1V/42xShTKko/pru+TuBU6FZL1KsAIhANkumfTn9qM2KLk4KC3MfEa8OCFS29Wkj8iNIHx5n3Nh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250101_1735715741014_0.623391642143772","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250102":{"name":"typescript","version":"5.8.0-dev.20250102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250102","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5294764733f9262e3019c9f13007f69178475f46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250102.tgz","fileCount":129,"integrity":"sha512-mAk1BsxOhBaX9d75V8rdScxbO+rfbNn9QoOAk+iehVVbKT1eKLqEQq1Jrk35UydwE53rz3Fl52mfELgQGJBvOg==","signatures":[{"sig":"MEUCIAcMj9VatPG2z/lHLNFhvu7gtfurCAE5yX2GkmO1geDNAiEAy5ry1zQTAV5kPiHBIPZAnWt7l0+EQQ9SkuROy8wr8fk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22784603},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"56a08250f3516b3f5bc120d6c7ab4450a9a69352","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250102_1735802148440_0.7890928259315682","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250103":{"name":"typescript","version":"5.8.0-dev.20250103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250103","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b886e045facca4366466d7efac23e7b9f697c45d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250103.tgz","fileCount":129,"integrity":"sha512-PT/H6jgiDGZHb+f431Oq8uqRe1IhfFDtgoJK/IB1tevn6s5P7O59oe1uuHZKAVtiLfw55tLgOXcE9nen3VteyA==","signatures":[{"sig":"MEQCIFZwTJc9a5AyKr6AZ9lHH/LXi7JPWGqKC9lp9lfFWNvJAiAprn3jO9smxfT1VB+T7IA2c2glp7FcgRbeadF2XQpuXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22785249},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"21c1a61b49082915f93e3327dad0d73205cf4273","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250103_1735888537384_0.837663758698368","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250104":{"name":"typescript","version":"5.8.0-dev.20250104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250104","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"733942ba8506af7a47f5d696eb98111dda717324","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250104.tgz","fileCount":129,"integrity":"sha512-xFBxTr8+Eew7d2yBN+I9Y51oceO90SKonhzcz+WQoDEIFJ5VPZm/Hb4bGgmUAcKqx/6YwyJC/5kxWfEI5hVmBA==","signatures":[{"sig":"MEUCIHGnm8yus6eOb++Dm+xHyFeFKTkpMGAuBbuOca0Wor7ZAiEA3rUkYC4xehUp5hvp1SyUogl0HQudggiYLCI324s9n54=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22785249},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"21c1a61b49082915f93e3327dad0d73205cf4273","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250104_1735974939974_0.8613868796888076","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250105":{"name":"typescript","version":"5.8.0-dev.20250105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250105","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c1ee8b5c986c21d0443945ccf9d87fca397f05b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250105.tgz","fileCount":129,"integrity":"sha512-5nDHeYu+pnkST/+GkBSldbIqBj64WEOHi86JklwbsSuKHcU3Hhtocho6+kXzTiYYEj+9RhIMpaZnktcHkjdfDQ==","signatures":[{"sig":"MEYCIQC1xg4lgY2zIULKzjc67E5UkdN5lyTjIxBbiQGNvKrIbgIhALK4E6H52G782fFZeWzmKKl943YsR6BXU5W42/FE9p/F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22785249},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"21c1a61b49082915f93e3327dad0d73205cf4273","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250105_1736061350115_0.9859614335014648","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250106":{"name":"typescript","version":"5.8.0-dev.20250106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250106","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4c14170126b0983653b696b9a13005e73e77d82f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250106.tgz","fileCount":129,"integrity":"sha512-o7wnxO5cYLyfc7QIUC5XqIhONzvtHj4pKEF3S1lxXh/3zDnAScSaSUzRKyKIRXuTXDgYuaWKhew4jrBRmVAK1Q==","signatures":[{"sig":"MEQCIGLr+dSJT/NVxNBJMXkSco7OzFF97GxLz5F5PMyQrbfJAiBEJ24RdTsDxwi3RBzU7IIlZCx5tY7mG1ycvm9wkjspCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22785249},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"21c1a61b49082915f93e3327dad0d73205cf4273","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250106_1736147761031_0.3050653098040037","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250107":{"name":"typescript","version":"5.8.0-dev.20250107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250107","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7900846367948e27f1f79190148ad52c7df05305","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250107.tgz","fileCount":129,"integrity":"sha512-5S8fQVAfikyl3niFOaTOxfF281giwdT8CLPe1yaZFvzS1p6Az4sTCZsiap9sX6pQ5Kn+7L6SxhjPjFFT5iCVMw==","signatures":[{"sig":"MEUCIG6YFNorc0j6JUBhDce6OYbRlIBV65sy3swwQI/cyXPcAiEAiaMqyujRXeQrQR8KXK+oCcWpDB9mNc5ftEHFRIj/0sE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22785249},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c0b3ff2da1a5c1480710a81a994659ea706af484","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250107_1736234144524_0.4348055067559673","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250108":{"name":"typescript","version":"5.8.0-dev.20250108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250108","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9841123098b17951ccbeceeeeed17f11dc76446e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250108.tgz","fileCount":129,"integrity":"sha512-EXcRljh+DJ7vqivS8Hu26PXlkFSkWsCwOyxEhR2P7l48WUjnAdw6kaNXDNTmQIgnipMdPACIHdc/DiyVlwtmCA==","signatures":[{"sig":"MEYCIQCNyCzWTSb8b4PqZJ6UEIgANneBdhr6yQdidn8mt/y/5QIhANunNw1B1Z9lXOoMINOwmsaHMn6xMd2T0XN1b3QvHr/Y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22785397},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"717d05cc2d528deb51cf7785bdd71891935d19a8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250108_1736320556004_0.8439111845294966","host":"s3://npm-registry-packages-npm-production"}},"5.7.3":{"name":"typescript","version":"5.7.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.7.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"919b44a7dbb8583a9b856d162be24a54bf80073e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.7.3.tgz","fileCount":129,"integrity":"sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==","signatures":[{"sig":"MEYCIQC1Qe7r498OcQcyUg9MQVdtzsSmr9anOz9aV+MgtaUkrwIhAMPp7gRrqhwWSDynVgNdFJ7nwMsbADObVPxz8xHuqQfO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22742077},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a5e123d9e0690fcea92878ea8a0a382922009fc9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.5","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^10.1.2","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.30.6","chalk":"^4.1.2","mocha":"^10.7.3","tslib":"^2.7.0","which":"^3.0.1","dprint":"^0.47.2","eslint":"^9.11.1","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.9.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.11.1","playwright":"^1.47.2","typescript":"^5.6.2","@types/chai":"^4.3.20","@types/diff":"^5.2.2","@types/node":"latest","@types/mocha":"^10.0.8","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.0","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.8.0","@dprint/typescript":"0.93.0","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.6.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.8.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.0","@typescript-eslint/type-utils":"^8.8.0","@typescript-eslint/rule-tester":"^8.8.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.7.3_1736363134464_0.4767419534137267","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250109":{"name":"typescript","version":"5.8.0-dev.20250109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250109","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"561e252961445cb6029ce8195aace258870465f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250109.tgz","fileCount":129,"integrity":"sha512-p7pWPypjuK2v/76T8q25sTmuG17m53WWranllky9WiG/PUcIJOMXoGfNrRF3r5ufFfi49QM9TipJyfmeKgXRjg==","signatures":[{"sig":"MEUCIQDVKyjyCU+7+q48xWpVYYYOKXXESHXuNoODlxL2nG2XLQIgE1PfY+168/t63OEjkwAv/gqRrsP0t8qgRziUMm95Plw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22785391},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e1cef5fa3a616bd800fa5e23c2312fc9f951e59f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250109_1736407101015_0.39351339560305654","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250110":{"name":"typescript","version":"5.8.0-dev.20250110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250110","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db5f7fd33796ca020dc8720da11c9fdd56f8d40a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250110.tgz","fileCount":129,"integrity":"sha512-+qwHVEvUm4CeQGtZIvlwE8HmRFcBMV4F/8OPKv+mIyGRGx4Chrj2v0VCsReVJwRdjjs6Dat/lPzkJW1E18+eOg==","signatures":[{"sig":"MEQCIGvMme55baIchOTJGq5lZwcsklR9nnhdnw1Sdr3ot+0LAiA0aYO6uWrPC8IJFxqR4Cd1T4egZzoluVtRsZBZfa/Log==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22799925},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cbac1ddfc73ca3b9d8741c1b51b74663a0f24695","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250110_1736493323523_0.908653351482702","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250111":{"name":"typescript","version":"5.8.0-dev.20250111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250111","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e00047fa2e230989f2384d71e94a8922e7c9b5af","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250111.tgz","fileCount":129,"integrity":"sha512-/pvlMCqCJ0kH+joA8XyvE09abZ77HlxTGcOzog57J360qLCfkSL7/pBkRC/sM7owUiTXNZQ3Sq+nTfF39ba6og==","signatures":[{"sig":"MEUCIEEUOrpcKx8jW0tkZe5VAitc4I1vfSSm45Dc9wyCbgulAiEA7dCscIlvYYZNwjS1URxp9XutVUaHys8WWtRGTPoyg7c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22799925},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cbac1ddfc73ca3b9d8741c1b51b74663a0f24695","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250111_1736579715055_0.4187027239510197","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250112":{"name":"typescript","version":"5.8.0-dev.20250112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250112","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7cfbfdd272fc9c2e61951ccf2e56bee901d84e49","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250112.tgz","fileCount":129,"integrity":"sha512-FnjhMHSSzZBHvmxnaX4ynpflLl6pKWDMCJmt9AgSr88DiM9VMXSpATL4E2S5ZDoTcCUXusTios8gNzpTkIL4Hg==","signatures":[{"sig":"MEUCIH33YX0n4rC/QfuOgyjFxe+Akc0Hg6c/czTAyYbZTm2oAiEAqdaEteWStU9BBWTSvHPRDNeSqvmDqasek/ZFXW3cCTE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22799925},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cbac1ddfc73ca3b9d8741c1b51b74663a0f24695","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250112_1736666110711_0.37807120809487027","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250113":{"name":"typescript","version":"5.8.0-dev.20250113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250113","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c85bdabe7739f8d09d5fa95edaefe7500daff8c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250113.tgz","fileCount":129,"integrity":"sha512-P0/9dr0Rwfs+XMXz2OyX9rVUu84x0qKUlTMDytq5GentLY1ebkyOHQSxvVeU/7L3hzrLFvdM4tVnuQJme1Webw==","signatures":[{"sig":"MEUCIQDoNSVszqiwH0L6XQaa3l5gJImqbJhzGOG+lstjwbY+RgIgc2LwRs7yTyf/eICN9KPo9xndt/98cWzu8c6WDsHLfzE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22799925},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cbac1ddfc73ca3b9d8741c1b51b74663a0f24695","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250113_1736752538230_0.5015525393231361","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250114":{"name":"typescript","version":"5.8.0-dev.20250114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250114","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"56dc89f810f2f8f840a42187d212f45a64313f13","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250114.tgz","fileCount":129,"integrity":"sha512-DGtuEPL692JPjTQHFmP810EklYi8ndHgCWt61kRjQfaO25LFpxuB9ZNVs79u15t9JpkeIB6WLKpjY/JiRCzYMw==","signatures":[{"sig":"MEYCIQCdT0RWzMpX5KGIAuSjEVrfVIusy5UZgY1vb3Z4qtp0+wIhAKLvDRJDfj7ISUCHoJX6DEbBQQZrvywIuwQUyeB8zHUZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22799925},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"700ee076e515db2ef49d8cf7e4dc4bf70679575c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250114_1736838927660_0.9605348968262704","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250115":{"name":"typescript","version":"5.8.0-dev.20250115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250115","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2c5681e1fc7db76ea1e3984ea84a3d9c688dd437","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250115.tgz","fileCount":129,"integrity":"sha512-SHJfXbiAiu4xOYnv1pw/sBiXcqmCEbN4q7ueEGD9PypKdFVKdz6pgcVK9pLQ7b+bw8Bjii7YPwD9ofWDL97s5Q==","signatures":[{"sig":"MEQCIDL+xI9UifUCEG5WvAkk9OXUBLc1YjcmTgQ9vd3ciLXfAiByimKQc1AvUhIdKS+tHcvdZdFdVMdEMCy+W+iarTHYuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22799925},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"700ee076e515db2ef49d8cf7e4dc4bf70679575c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250115_1736925314089_0.842981393839207","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250116":{"name":"typescript","version":"5.8.0-dev.20250116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250116","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f74c18efee1a585350fb404d4fcb20b8ad5ca55c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250116.tgz","fileCount":129,"integrity":"sha512-co261sVUo0cZWvSWU8O2sx03ZfSYSqGcjxkxG5UDImcQ1ZCBLCsvrKrSpsdNvz0Q3hhNJY9to3fTTxIUWuvaTg==","signatures":[{"sig":"MEUCIQC0fj/OnXa+gt9OHd5yqt7DfDYowUBI85Kuq5/shdyGcQIgD068hp1NnJOusR2ZqbgHX3TsclrtK+HPfQKIIZwo3Ho=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22799925},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"700ee076e515db2ef49d8cf7e4dc4bf70679575c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250116_1737011725111_0.43142611847016865","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250117":{"name":"typescript","version":"5.8.0-dev.20250117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250117","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"10f52496f5dac0e4cbd9170fcdf4f0bfa83c8826","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250117.tgz","fileCount":129,"integrity":"sha512-uwGQZGYffY5jfnMEReMN9JVCe+R74b5zAEN48y71SyQuXVx4+6jV5nRVcyvhC0dJruKSbFxy0KJkkANMZpDSfw==","signatures":[{"sig":"MEYCIQCStYnqiZkIzeABDHPrGtBR/IHAKsDu1REXuz7T/Tv6jAIhAPmFvqSfL7WUCsyv7wCxYZG85iU4fp0g+ShBcwvqLHJj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22799928},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7901a397214e8c7b39de8954eecc707dce8cb099","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250117_1737098122024_0.4588485872864394","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250118":{"name":"typescript","version":"5.8.0-dev.20250118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250118","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9996f36a5bc80ae5c34157bcee049436126d52fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250118.tgz","fileCount":129,"integrity":"sha512-Km593cXsqPfCDbxjMkHgAf5Avm73+TYBfXNsQ3wjrb+r9SddsPnW4PDYYVV6jWTo9uA7GB86Yyem8VjtljTSog==","signatures":[{"sig":"MEUCIAIVlZYozhsA41LrLKTV8HyMQjM/GSN+5dWKF3iW86L6AiEA9CeFbdAIFVxep0ett8fBi+OK4qtgHdMaCNczaX4q+oU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22800379},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8da951cbb629b648753454872df4e1754982aef1","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250118_1737184522579_0.575992838167666","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250119":{"name":"typescript","version":"5.8.0-dev.20250119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250119","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6098bf6155a0bc3079bad5764396b65d783ced9a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250119.tgz","fileCount":129,"integrity":"sha512-ZEz73dloOQ74lJ22QhVcmjYsHvgz9JOrLO3XvXJDbVqcU7qAYSr0zxOxJSaB7FSCi2T4LnDS3IbfwIdyqXE6JA==","signatures":[{"sig":"MEQCIHu9neefJP0frerN8nLLEWbNsmd9R3RspPO6QxFerq2uAiBfhVC8zH4tzcvafFtWLDvdvHP2oC3vZuFNyPiakwF5Cw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22800379},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8da951cbb629b648753454872df4e1754982aef1","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250119_1737270923068_0.10655803476670167","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250120":{"name":"typescript","version":"5.8.0-dev.20250120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250120","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e30c0df79d6e22ced0682d48fa1b1dc420d285cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250120.tgz","fileCount":129,"integrity":"sha512-hxQOiTq/ZM8CHmOCzmrvPOwRRkaI9Ua16MMOQAym2SVdPkBl5PYaGc3m9Bd27K0UIh9GmxP7dQMc1KpyHRk8FQ==","signatures":[{"sig":"MEQCIDqIk/QjFuyb+2yzrUhvsm69Ic4OT7LMVMg/01DUbddkAiBO+baq9iQzJqiFVU05fBRoIqn/jcO8RcNrvjZN6BF23g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22800379},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8da951cbb629b648753454872df4e1754982aef1","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250120_1737357305481_0.6729091648047576","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250121":{"name":"typescript","version":"5.8.0-dev.20250121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250121","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"569b37c5e5b11cd85f6d79dfc32cfc2a126d3bcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250121.tgz","fileCount":129,"integrity":"sha512-cRbtTDQVu4ZV28kEzT6EgGd1mT75C92i/5pFcQHVqa60S2HhbFbY+4Wpo0ebumER/YMoC63sfTzruaR2Z6kOJw==","signatures":[{"sig":"MEUCIHHXZmy1N5IyuELmiP4knnGaGH5P60mIrZnOWyk/SNM3AiEAmq1d2jpRbXpoVNLALIG3RDm/jcBZjWOaVLIGyRDaAys=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22800379},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8da951cbb629b648753454872df4e1754982aef1","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250121_1737443731454_0.4132060197514691","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250122":{"name":"typescript","version":"5.8.0-dev.20250122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250122","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"020c945d2d3a4687873add3bcde182e08b812588","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250122.tgz","fileCount":130,"integrity":"sha512-Wt+F8vxMslCurbAkQjXc8Fim5sp34W0QEPHaGp+WgfA9OI65F/8HKDg3Vlyj6JhybV7M1LNMtrA0UHLOSU4PKg==","signatures":[{"sig":"MEUCIQCwp5eTK2f8CitqAvgXEnmH3qqeffVYX3Vsn9Uf2xRDCgIgKIVQH6bM54KKO222rYpCZJUYY+rrXwY8yhjFBpiiDFc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22820576},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1c4083f4edc71cb1744a62013732e3c95d05a035","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250122_1737530121226_0.9265669967233932","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250123":{"name":"typescript","version":"5.8.0-dev.20250123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250123","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ff705c58a431fd5943766be94547d657cea20026","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250123.tgz","fileCount":130,"integrity":"sha512-JBWpq7b3i6Y+6wScnTq4nGC+ozHLU9cbW5ZbZaHiJ1EMV+hxMX04MX0984J5T0CXrjgf9xJULXKMWc6tP2AoSQ==","signatures":[{"sig":"MEUCIBx6ranfrTAmzRU/dkOTiPBAaQFCusWWwrEMnfLLRZGnAiEAyTYbzGGyWFCMRrn0oL70p8nBVYUc6xCWHEU4RjwnKlI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22869232},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5e52b28ee6d54f6637990be6d0dda1e974f78345","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250123_1737616504548_0.017275669531588767","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250124":{"name":"typescript","version":"5.8.0-dev.20250124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250124","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c48b514adf70255f0be96dcb7921a7a7fac7435","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250124.tgz","fileCount":130,"integrity":"sha512-QLwmxSR4EPey4SQ554+uTUJrnp0dDhmgVmeYCbx8hiUjKqIqCVcuiQtK73JRvb/8NE4Y/gvhTlkYjD5Qj4zDAw==","signatures":[{"sig":"MEYCIQD/++WS5JcVI/yAWQ2Mn12aNE1beJQARHws+pesFjOBggIhALId/ArpLPiqBAywYPTtbmx5TR+OYv4Pu0vI3Lah765t","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22875061},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"220706eb0320ff46fad8bf80a5e99db624ee7dfb","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250124_1737702915154_0.7742302919058139","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250125":{"name":"typescript","version":"5.8.0-dev.20250125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250125","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f08750b14edf4889f71f83e4c40b6aec08ab64ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250125.tgz","fileCount":130,"integrity":"sha512-fQ+1+H1U6k6Bk8gv902cvVDoAtlU/BBnc4otDrV+7rWsXDzk1w6qTuWHSKi7pz7ZFxqtptIpfE+wlyNR93Ymdw==","signatures":[{"sig":"MEYCIQCa3UZLI4bwgz7S/mx6puAgmqxVCeYtYbMePfNjojyuIQIhAPllD4G+rsG1PL5MzUDmpg4/DVmeau11MT92cO5hVx6X","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22885797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"caf1aee269d1660b4d2a8b555c2d602c97cb28d7","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250125_1737789311873_0.33865280099606676","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250126":{"name":"typescript","version":"5.8.0-dev.20250126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250126","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0a3a111eb8ac213e56fb7ef252998e5a78e0f70e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250126.tgz","fileCount":130,"integrity":"sha512-O6/x8/wq0TtUsgg/pW0Roc5cnWGbE+NMSul1fGjWzjZOpaoZ4Oj2QeNS1VJp3ef0FoU/yI3FmyniWBa3vBleGw==","signatures":[{"sig":"MEUCIAzlRKqwyE+5HGkhQ8IPHlvLspPnByjeH+P1qiU+FF5aAiEAvPG33hQBiC3u+FUsxTKKaXWt0IgmCWrppcC+Mmeiy9Q=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22885797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"caf1aee269d1660b4d2a8b555c2d602c97cb28d7","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250126_1737875705220_0.5626363930604017","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250127":{"name":"typescript","version":"5.8.0-dev.20250127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250127","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db1bd94008a045b44dd2d022bb1c75dffb5ffff8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250127.tgz","fileCount":130,"integrity":"sha512-2U15vRJzZaFB3ONX6hHjSXJ/8VRP0hYLz1osL7DNfyHcacYtE9UfrtEo1HU7PA5ow6JoVgSSlqUDSVeUCzHxLw==","signatures":[{"sig":"MEUCIEm27FkY37Lm0jIbCOiPKOw62u3mTmGZtiWohWgNHmN5AiEA3BEzYXShykTY2Fgknw5x07G7FJmIa60fhqbMm7HlQwM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22885797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"caf1aee269d1660b4d2a8b555c2d602c97cb28d7","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250127_1737962122462_0.8768350899045505","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250128":{"name":"typescript","version":"5.8.0-dev.20250128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250128","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c59b177fa5dbc9a492268f44e857354c59c55c71","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250128.tgz","fileCount":130,"integrity":"sha512-zxnu5BSmL1qbW+jJyVvkdvIHog6eBy84HKlTJQDV97fqrbPKlS5WJVGj/1xKlbBMA9lyqYsp/ijkuJbaq4mt2g==","signatures":[{"sig":"MEUCIHmdSH2GFhlj9CzRawQUN7cQYRjDgDz37Pp2sSqaWYvfAiEA/ru4OsTBDvbpHXcobDg1UqSUH1cNCabtdO4LR1c8A1g=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22885797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"32ebd28578902d5437e541cf185ea2a32742686d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250128_1738048505334_0.02596659450019545","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250129":{"name":"typescript","version":"5.8.0-dev.20250129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250129","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"73473644db6599f8e3caa4a2450e1430d0520230","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250129.tgz","fileCount":130,"integrity":"sha512-02x0dvITiMrpFF7O55RqWGvOgeuv7HOUkUiObmiI0j+MuO7EJq++6wkRGRZW23FxZYB7vV6xlC+UC65nvYvmbQ==","signatures":[{"sig":"MEUCIEHAfuGd0wEpczRjF1ou+tgPo2pBN3PpvK+ocDMDG7DnAiEAzSO0BetLcJTWnimgGRVt+EpKbApD6oUoQfAvS+lb7ok=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22893601},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0652664e6408f7704395fc53fe245e2e77367fe8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250129_1738134923777_0.5642305003678432","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-beta":{"name":"typescript","version":"5.8.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ba16fac5715be6540d01f0a9778f5eab7ae2ec61","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-beta.tgz","fileCount":130,"integrity":"sha512-7VGUiBOGi+BYhiuy3iITIgu6m2wVW2Vb4CW+OJsW6OJS/TgvezKbAN3WBfiSErE8QOLdce0ilm6VANMkzNWW1A==","signatures":[{"sig":"MEUCIQDOfs2y7KoTa8B1kssoR1TeRMCGaGNOMiTuzpZhFYs7igIgRyjkOmiOaA1xmTn4R7rlyHg5FESj3Rd1/NvES/hZmEI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22885739},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"131625cf711510f57d500ef69007b984ded018c6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-7VGUiBOGi+BYhiuy3iITIgu6m2wVW2Vb4CW+OJsW6OJS/TgvezKbAN3WBfiSErE8QOLdce0ilm6VANMkzNWW1A==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.6","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-beta_1738175820078_0.4478602486875607","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250130":{"name":"typescript","version":"5.8.0-dev.20250130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250130","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eede4cf5d813f9845c6ee2b508d2392d544cb76e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250130.tgz","fileCount":130,"integrity":"sha512-qeH56cqOnOE0NO4zUsuuc5kyIQlzOPurHcguomUpSTfUE2He5dABg+fBBUeYIf4MreflM6ArXyj/rIrcHQ5g0g==","signatures":[{"sig":"MEQCIBjOrw+7UHhCXG3Z7zZZgiZsPFUw/mtkZJcQ3M/iZmxhAiBH5ktPjz/qEBy7eUHMtRbLJQXosOEV4+0FGVfFiKVfTw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22893601},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0652664e6408f7704395fc53fe245e2e77367fe8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250130_1738221301072_0.766720626896275","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250131":{"name":"typescript","version":"5.8.0-dev.20250131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250131","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"da81dbe6821f52db8c00af47fb6207bdb81ab82d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250131.tgz","fileCount":130,"integrity":"sha512-q7nLABAsnnq3BdqOdWnRGVhe7Gv3QkditzT6YMfWpKHsZoJ1TVo+C4ZCZHK4fCuu2vHYUwV0zUUsEZZXdnxB2w==","signatures":[{"sig":"MEQCIDkcj2Z33skByNUNPjv5a4WiNRurpyOk6cYQDvFjHzxXAiAbBPASxsyAl66jhRywVC1N81hYaM3fUFDS3ije879Nvg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22895015},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"739d729ecce60771c23723aad932ab35a34df82d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250131_1738307713138_0.6923196295746175","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250201":{"name":"typescript","version":"5.8.0-dev.20250201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250201","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e9d08ad125fc0687ce4a4f4a916a21ca4b4620f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250201.tgz","fileCount":130,"integrity":"sha512-dH6JX5ZdOLme/jasEkBV2/HbhOp5RuYxeMasdzndYrC3HVpSSoU/OEIiBRl1+2zzhRLkAjYknZtbvm6EW+Qadw==","signatures":[{"sig":"MEUCIQDvCLhwnB+RBmlHLkMODpNTaGuRUw2Uo8hgUoX5Zt4h+gIgd4ug5t3FOeVeV2n+aQno566YatiYyMq56WglJYmavk0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22895015},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"739d729ecce60771c23723aad932ab35a34df82d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250201_1738394109715_0.43562296704248626","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250202":{"name":"typescript","version":"5.8.0-dev.20250202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250202","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a35eb60e7a0f23fa14ab62bedb3a4f76797c4fff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250202.tgz","fileCount":130,"integrity":"sha512-7utuv4a7BhkLf+HacefGv1/uM8DAGc1dQ11SuE6WbrRGFrwu/Qk9tV6T621TqtDMP0iYWamsOKMApskxx1bYJA==","signatures":[{"sig":"MEQCIB2d1C/qZ49Wq63q3nPUr2tz2GxruPQ2Cuj7ukX1WnXBAiACR1s2bOUC9UYgNw/1W+rQ3HbyVftGL81VMA8oH82t8A==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22895015},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"739d729ecce60771c23723aad932ab35a34df82d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250202_1738480517168_0.741786848620652","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250203":{"name":"typescript","version":"5.8.0-dev.20250203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250203","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2529d4dc28edd0fa34b87c0615d6aba60c96816","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250203.tgz","fileCount":130,"integrity":"sha512-7uBe1WQtxSnGGcxEqyP9vgCySQbLHmQaRXDjPK8UF32VVjhXBJZmcq1ti4zKy3mldZG59pdo6hQkhJhqZG2Zhw==","signatures":[{"sig":"MEUCIHDYLvp3+ZbGkVsS9VJy56mcdwcYjxaoFucNTem91K+uAiEA14Os9vc3OHJNzmAVxWEGDcBcVhnowHrPqZrFVW0P2eY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22895015},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"739d729ecce60771c23723aad932ab35a34df82d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250203_1738566933911_0.48100269069947044","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250204":{"name":"typescript","version":"5.8.0-dev.20250204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250204","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ec45236fa9179078723bb9eee9d8631ba39607e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250204.tgz","fileCount":130,"integrity":"sha512-v8AzZf6U6QRetLje7DEKQCSZfTNqPgrCw93oFB/Li4lb4nZ/630SU6ytE5Lb7j9Sm4DVr+I1qLFicG1eANIQ4w==","signatures":[{"sig":"MEUCIHah+LxiQgJwE3bqTnPyn5ghi0xEHyBaKxwMwCzZ9IlrAiEAlzGufZwd8OjFMXMpoINjOduhxsfQdTWHX3q6RhvEr38=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22894935},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c50b5e718aa9acc98e7c786dfa43a68506d798fd","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250204_1738653340506_0.19598991579273406","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250205":{"name":"typescript","version":"5.8.0-dev.20250205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250205","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2dba6030c2bf5b258777703036502010afa8f477","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250205.tgz","fileCount":130,"integrity":"sha512-ElowVOyGLZ8RSwHA7UZF8M3n4iT/QaU6jCF9N9z2vT/lTjvM3K2eFliQsmF6Iaz9vOhFVUNfe1Mr8aXnpMXiHA==","signatures":[{"sig":"MEQCIBJDA1V/TG/GyXUk3nJHPh0wkVT3g7ohHiNGwDBLcqTDAiA1Xtgg/ro9rlEOO1xMGU+EFQ2QGemUOoGPw74rdfxOhA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22894909},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"71716a2868c87248af5020e33a84a2178d41a2d6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250205_1738739731389_0.896472455793361","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250206":{"name":"typescript","version":"5.8.0-dev.20250206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250206","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6eadcaf61437bcc9ee8c8e24e328df0b53a3b87f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250206.tgz","fileCount":130,"integrity":"sha512-lnf72PhBy8HHFElX7VbfSwtG86LdWnE+p7h5KjlK459t6WYtW4RL/icVhebS4GM++AmJMGpcZLCyWSrF8NCXHg==","signatures":[{"sig":"MEQCIG1AN1CHJZBFuLNqnr+b1CbkR7aEbu3qluGfw+oMmuk2AiBnT9KKIoClTuaCRCW5E7jVkBmQOsw11hDHMNUByLAAVg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22894909},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"71716a2868c87248af5020e33a84a2178d41a2d6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250206_1738826111853_0.6046706539992184","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250207":{"name":"typescript","version":"5.8.0-dev.20250207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250207","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"90d5edef28c50f8fe7ebc06a7c35836eaf81f752","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250207.tgz","fileCount":130,"integrity":"sha512-bRCO1GkVxTLd/UFJWOg9R1oRiSMidcfpICzuQlDJlHspv6hlcJvvIJP0BvQxrBYpu4dbzqp/Fh8rRYIkEjbSlQ==","signatures":[{"sig":"MEUCIBPAygKZuM2+5zWDdrXmYaKIBSKVzh1FmWgO/8FOK/mFAiEA+icP4UIaPcU4i5ODe0nBWWdPLIaWRlP8i6znfR4qMOw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22894909},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"71716a2868c87248af5020e33a84a2178d41a2d6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250207_1738912507707_0.9547083887270758","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250208":{"name":"typescript","version":"5.8.0-dev.20250208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250208","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6e92cf8cb52f2be83d5c4214bbcc1b381bbd94a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250208.tgz","fileCount":130,"integrity":"sha512-3kdUK1XCtZVQBK3zRY+rZimH2XT8zEZJgNG5s5vPtV47aomFneIX2hh4L4mxBvqLjr/smtnJXOaM7REu64za7g==","signatures":[{"sig":"MEYCIQDhDGn6TAGwmd88CJYqkLi/jsxBuRmjfVM9QpDSNgdhuAIhAMlEOGX+7RqbDjqvVploeGGlbgX6rF/Mn6D3R28tifl1","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22865305},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"34ea32f8ce2771fb3b063f66ec0bc7b0c017d9e4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250208_1738998893351_0.5253402240990317","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250209":{"name":"typescript","version":"5.8.0-dev.20250209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250209","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"747d8067552c0580c6786aed97339e0901ba3e9e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250209.tgz","fileCount":130,"integrity":"sha512-FVdVTxFbTR7jhSRnYcvv46vf+L7byLonnfUbpfzNFUP4/zDze2ovy+cEIHhNv+Nl9x3qE/eko0YKwzhitiOr3g==","signatures":[{"sig":"MEUCIQCm4avWb7xOXBprjMS2jX9Y/F5J/GvOp4KDowQ2Vog6wQIgNgjqd808KnTiYgsaFrbcHDne4vSxJK4WhoobmjPZutw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22865305},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"34ea32f8ce2771fb3b063f66ec0bc7b0c017d9e4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250209_1739085311668_0.9788282011935807","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250210":{"name":"typescript","version":"5.8.0-dev.20250210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250210","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f3d140c1e82e43c847c942378f131ca1ee60eac5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250210.tgz","fileCount":130,"integrity":"sha512-6obwAtYV+jgxdpESDO+wGAyiLKQ6tunIjP4TFHqtcL4u5j15XUG2fSjaRN1W006kxHxFigADy9uDHb50l8UxGA==","signatures":[{"sig":"MEUCICNzUrcMhvVw3eBPb222WL8LZXnK0tN19dlnsVDEHR9KAiEA6YRpG2HjuYRi5OoFgafGK37S90M7LnkfOPb3UkzfvfA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22865305},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"34ea32f8ce2771fb3b063f66ec0bc7b0c017d9e4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250210_1739171719690_0.6981430711324768","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250211":{"name":"typescript","version":"5.8.0-dev.20250211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250211","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"918f39d8a74795191981b6ef7e8ae8290cc986bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250211.tgz","fileCount":130,"integrity":"sha512-hGIlnTvpPLFx/1YksLghDEOJd5Am8RmFGQh9qeJfE1OKDT44jwI4DXxZL53M/K+yakPuT9tQSwY6P75V7DZlSQ==","signatures":[{"sig":"MEUCIFx11AhzrAuUozfQPIe3xpj3V82HEBOCNk78plpxa+J1AiEArRh878UJppU1mG3XrqAlAJe1IKPcuhrobSSfGI0Pxko=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22865791},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"df342b7206cb56b56bb3b3aecbb2ee2d2ff7b217","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250211_1739258150418_0.634703354230453","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250212":{"name":"typescript","version":"5.8.0-dev.20250212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250212","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b36b2f50e96cee77e4ee619769a741977aa4023f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250212.tgz","fileCount":130,"integrity":"sha512-KuSQZsJS5e7rBVbj7QY72K4kievEtZgBYyYYaxp0a3YmBlG5bpbuKJO0ltyRGkFcBgOVw4McWjKeL5+6MqRWOw==","signatures":[{"sig":"MEQCIHhMMwVnviaIPgmaCY3F2WPKbWMFNDRrLgcJoQ2CXi0SAiADmOBfysq8iElyHPsZ1mqGdvQ94mm7bF1+keEAJwGYZg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22865791},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"df342b7206cb56b56bb3b3aecbb2ee2d2ff7b217","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250212_1739344541129_0.7578580700681361","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250213":{"name":"typescript","version":"5.8.0-dev.20250213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250213","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"010f7b2a75b9c0f0ec269f1f3f21ea77e0b33582","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250213.tgz","fileCount":130,"integrity":"sha512-tFl+eJylUfGsHaLWccuGqbCI9b44GQyFNuLjDJ5k9bgE8G30OFMzV6EZAC1faSB8r5pDrR4G/z//hvNYAYq49w==","signatures":[{"sig":"MEUCIEroaIpRur6OTjvctmh5AFD/njPIuYivFMediw4rsccUAiEA6p35dhzLvrPBsDGCCkzIv7TqALTgr4bUKe4sGh5vL70=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22865791},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6af21a4a3df87e1f9d6218de63a3c36bcee870b0","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250213_1739430906100_0.7482516969396789","host":"s3://npm-registry-packages-npm-production"}},"5.8.1-rc":{"name":"typescript","version":"5.8.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"678b7586bf1d7fdec0dbf35708ab7bb39ce13c3d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.1-rc.tgz","fileCount":130,"integrity":"sha512-D8IlSOUk1E08jpFdK81reYkA1a/4XtEdV6MElOGdbu/uOy1RpEDqNO/onWmqUaLkTyeHmmU/QlWvjcM9cqF85g==","signatures":[{"sig":"MEYCIQChFB2CR22NvkH1JoQ2cQdnPghDokXBvTbF5vaIf3PZBwIhALVB9+kfoCeFppdzaahEvq2jPGwIHGL5DuzvJ+nrxBXJ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22865727},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"420ff069f7e1844c0b94f591acbd4aa68846e295","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-D8IlSOUk1E08jpFdK81reYkA1a/4XtEdV6MElOGdbu/uOy1RpEDqNO/onWmqUaLkTyeHmmU/QlWvjcM9cqF85g==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.6","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.1-rc_1739483804486_0.6400326662499483","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250214":{"name":"typescript","version":"5.8.0-dev.20250214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250214","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"29616b4d0948d75fab2bb71a4f8c85a31ce19809","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250214.tgz","fileCount":130,"integrity":"sha512-dCR/Ahs628POGDEAFfYjQrhiq+78IqPqrkq/+rnTzd+YvQKkB8jIbzXaeIwTQ0SJt2gKY8Cu8BbVUa8F3K6ZJw==","signatures":[{"sig":"MEUCIQDGUYJsrM93YFyMxAe/PvbQrr6ZJxwuwoT44s9BZnNzywIgCP8s0qDmjPf8k6cwWtRABrTo28arPgHsRq5gtUAdizI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22865791},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6af21a4a3df87e1f9d6218de63a3c36bcee870b0","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250214_1739517310016_0.5158453806891958","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250215":{"name":"typescript","version":"5.8.0-dev.20250215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250215","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d4caff16afedf6253836c84bb2b40f86f93b30d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250215.tgz","fileCount":130,"integrity":"sha512-pPyocA7eJK+fv1Yx7yXaLSxgjz4wgDsDJEqLSCg+qaiIdgSxZMUVyb4Cm1kklpL+LZ69NF+UJKQxfBihKz0Yyg==","signatures":[{"sig":"MEYCIQDV015lzusbPSH5B6lQ/AU7/w8ZON4aEsU1kZJPrvPshAIhAPRO02IBxTdQTuCGLEK0bLSV2lk5EbOWG2M6P3YASqDJ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22866046},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0f4737e0d55363ac40198b33a80fff0d01c1d8cf","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250215_1739603681962_0.12608782710207667","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250216":{"name":"typescript","version":"5.8.0-dev.20250216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250216","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1c5ccc8cea6d1c3668011fdfe1cba4f1068fd443","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250216.tgz","fileCount":130,"integrity":"sha512-yk0nq9GDx1NVK8gi8NgJULq3NJxkepX/B8ZQtopaLM0cUbjBhZLcXeHUs+LBv8AUUGq9alZGPQuC/W/IG/yoXA==","signatures":[{"sig":"MEYCIQCwEQwmgs/iveX9hju11dRk/5+cl6KOabR7Ivf5+8R4xwIhAJZPxMIW/KmyvMtNLG8Gt21YPqawEisuGhQe9IIucREH","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22866046},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0f4737e0d55363ac40198b33a80fff0d01c1d8cf","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250216_1739690107932_0.16071192793166822","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250217":{"name":"typescript","version":"5.8.0-dev.20250217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250217","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b4d18fe18243d6c39f549ecefe922d3b5997e6e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250217.tgz","fileCount":130,"integrity":"sha512-ucr3Nf7Fmd3nbF7qo+D+SqAqfdSOJCm1AneFjVsjgomUXY3zaCofP5DpY8kJGzynaGRdz5XECeh3ksZOvgJKoA==","signatures":[{"sig":"MEUCIQClKxomHnI5kVyeziM5OiSmwbnK9KpZP8isp1BKbzKdFwIgfbaDyL+RMOlNvjmVClU0ncrEYbsl9+xxCK3/0K2w/LI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22866046},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0f4737e0d55363ac40198b33a80fff0d01c1d8cf","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250217_1739776494844_0.32093634476320343","host":"s3://npm-registry-packages-npm-production"}},"5.8.0-dev.20250218":{"name":"typescript","version":"5.8.0-dev.20250218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.0-dev.20250218","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4fd98cc5524a9ce0d09a557d97905657a909f6fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.0-dev.20250218.tgz","fileCount":130,"integrity":"sha512-ug24uoLMp4xZWUZOYi900L8VM9Tjpvm7+clJYYDY9OYOlveZf7en8ndF/kfZZ7QoODkFC/z6mvDdaD0ePD2fmQ==","signatures":[{"sig":"MEUCIBA2VpW2dvj1fev8HRxBZpQmxf4qQnuTYGRD8N7Ax7apAiEAzKOrO0Q8styQSKvukUVHL0rncfe3Dq6iSzxkhI54QgY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22866046},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0f4737e0d55363ac40198b33a80fff0d01c1d8cf","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.0-dev.20250218_1739862923940_0.7635786402527576","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250219":{"name":"typescript","version":"5.9.0-dev.20250219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250219","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5d1625c8c32d7bb5e61d7befe2f06282daf98bad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250219.tgz","fileCount":130,"integrity":"sha512-BzBFdaj0tnTp9fp9pu1rgi7vt3u7z6EDL3IbjTgkf5GvpXTjWmQkE633De5S3ySeNL6dyZvBeVvLCKXKcOvbQA==","signatures":[{"sig":"MEYCIQCkKJcFFUevK7bEfSM11Gy8rkgSwVneKofCULc/raxvCgIhAJlyZLsOXoAJbbsBwjf24SGkFOnH7IejBf7nP7tb9MwR","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22866092},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"246507f7f90e08a330fc9f63c1b11c2e706d9193","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250219_1739949332607_0.6483891381572253","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250220":{"name":"typescript","version":"5.9.0-dev.20250220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250220","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"99cbb90aef820a7abc05e264f054eb3fd4f6513f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250220.tgz","fileCount":130,"integrity":"sha512-B0DJklYzD1Dk9xavFC0jllU/id2fa7UFDmjjwx/0IufSTqGZatd6q76dtYTc8zzzMw39jliYeIuvSi+bxuGduw==","signatures":[{"sig":"MEUCIQDFCSyHMrFqEYnFuFweDki2lWPdYsQ9ZoraIJer09oPAQIgL3DUTqqkTK1P5jroE6tSr2oQxMCXi4xEuRjf1XXG/Wc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22866360},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3f416e0f527e8967ac2bd490dffe76034db57a26","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250220_1740035726111_0.10103615381646924","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250221":{"name":"typescript","version":"5.9.0-dev.20250221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250221","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e6554e11d0fd5ea5a9e02ad5399c97375d81db67","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250221.tgz","fileCount":130,"integrity":"sha512-UFfThOO8QL+CETwfK5J8aYgM0ZD+yHZet+GMnxuv+S+LIMnRDmTChV3/b7FJ+Gt42uGOhT5z52q1fydXEP4OIA==","signatures":[{"sig":"MEQCIHdJfwAlnWNiQ+7xDIbyzrWJuMBMKXneQqm3+WmFMeJ3AiACIe9WhD8Cy1JdG4PTqd0y7c3+BEj9Eko3hsTD8CXaPw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22867742},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b95187d1ce2368a93a51b31c0cd11f5ba2557627","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250221_1740122113908_0.38507352182549526","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250222":{"name":"typescript","version":"5.9.0-dev.20250222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250222","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b689d2c469978565c5b84890159e3d1e2c94c923","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250222.tgz","fileCount":130,"integrity":"sha512-QFRrClcgYxgWg0nlLmgYKramoI9bJUnMwczb5A5JXPtS2/qSJX6pgVFlvSnwjO/2icwuBpowvkBQ4jUyRIizAQ==","signatures":[{"sig":"MEUCIQCPhIO64A62ygThyDGAigPPlMQIrT79jWc0wAUGXnQSsQIgMpYjqlU9Y3xaj+qDCX4Wz0m1BCOqiH0uaACu41GTVpk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22869386},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1cd8e20f947513cc8c0c7c59e55b2f4524eff316","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250222_1740208472114_0.8064048016563785","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250223":{"name":"typescript","version":"5.9.0-dev.20250223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250223","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"87bf3cc665a7d328c9367ff2144bb1217fc3a200","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250223.tgz","fileCount":130,"integrity":"sha512-mdP8dkgq76KJ81vS10YslgLEIi+ik8ywthW57KpHl8YRGp3VkFQ3iQDN/Wm3v34XLBgLzi36jAGPUscIm9ZWeA==","signatures":[{"sig":"MEQCIQCpCAjyPC9a9loFUTCHWZ3V/B6OdGt1rBpouIC+eMIDNwIfY5uTNbX/f4IUtH8DNvHgPoyNCrowQaOCmdE0XTdj8Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22869386},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1cd8e20f947513cc8c0c7c59e55b2f4524eff316","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250223_1740294899679_0.33483411760095416","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250224":{"name":"typescript","version":"5.9.0-dev.20250224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250224","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b9586092e006e0e754f07f5f7f234046922f6efb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250224.tgz","fileCount":130,"integrity":"sha512-hE9YCxxyOJDBJhEo6w3veHldQw5ry0nhuTzaPU2UZe37YsBIC5kaOVdzeA+IUh4cgYWKe60B1vuC4GN8Q4a0SA==","signatures":[{"sig":"MEQCIEc2V6CqIowm0hnQFNrJ8BPWg0G346cyj/m/oasul3UmAiBFMiBseObIJoTjC9jXa0Ui8U/KmKXEvD3k5+IARqmi6Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22869386},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1cd8e20f947513cc8c0c7c59e55b2f4524eff316","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250224_1740381294533_0.5165329784387367","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250225":{"name":"typescript","version":"5.9.0-dev.20250225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250225","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"36b7e9c80d8f07da33bae83794cb12e8a3b12573","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250225.tgz","fileCount":130,"integrity":"sha512-rOzayxhA6eEpXSqW3kiHMgNC7G3a/bqw2k6ls23L4abPMqrUlGiRB3q0haKfI1Le+8eXjzhP3GwsZCMpEKDDLw==","signatures":[{"sig":"MEQCIFHYTu21PeAw4NoY6mpdXPUUEUI83OQfdvU2m5u0lTbTAiAuOT1iVWZKPH7Qx0lRa/w4BZZluiQhbt69CIZJAbQr8Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22869658},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7507b055dea43e65b9b2ad458ef3ae1a6c706261","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250225_1740467701269_0.28092834365420827","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250226":{"name":"typescript","version":"5.9.0-dev.20250226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250226","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e7515a1ece8f113f7112f425f2148d9bd4296e8d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250226.tgz","fileCount":130,"integrity":"sha512-5mIqZ5ilcOYPZ+EXcOo5hpXJt51N7fPlkjxX5e9hbM+Ao7gd+t+XN5trQk3iWyvBNEPMn7950rAE0Kxl4thnCA==","signatures":[{"sig":"MEUCICSUyrKr5ANDp0oaayJkWPmeTpkd64oMH9HFwMEQA+GmAiEAnvC3dV3R2pl0GmfL2nKCrurxuvPqBUpXWrP17Nt30vc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22870105},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"afc463980f55d634c56dfedc6852f6f46f596621","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250226_1740554120601_0.5685268889668413","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250227":{"name":"typescript","version":"5.9.0-dev.20250227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250227","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ffcd405a81c6608500be31a7032ff99076924034","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250227.tgz","fileCount":130,"integrity":"sha512-lv9IWTed2sumK+b44crXjNlL/jgnTXTrxB5aqNj2igTjqR6MkLrBig0Zw+qMDcVNPUGUhgOHaRC5Eehf07km2Q==","signatures":[{"sig":"MEUCIQCvF4wwtOikuXEhR+KoQBYVNfpvMCr/EAeIUQkC187TAQIgIAujKayn+km2Ql60il+lUu0k/qf9sQ0RuT1+a/lwYg4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22870396},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6121f45347685e9341d2e61730fbdd5a0b5cbf16","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250227_1740640510681_0.48571617991819527","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250228":{"name":"typescript","version":"5.9.0-dev.20250228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250228","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"94ca55bd60d6adaea5ab05181ccac38bcf6b7345","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250228.tgz","fileCount":130,"integrity":"sha512-/paYJcBiXhWWyL0USAnX+/JyULz6Tc++rjhqRjfRRqrgRoJ4Epu19XTUT6XQMQDjvtXspFNe2cL2S3QCBsBFUg==","signatures":[{"sig":"MEUCIQDzH0Rpfqbz7Ij6xT/1CtuJGLdJyibzSL4RWIT5lXiV5wIgF+En3sh6wR9u7erb7ZubAhWyzb3xKZqH4VxAhMncru0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22871122},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"011f7e4ee5a102483f7e3397814bea185f4111a1","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250228_1740726894299_0.10657918925185905","host":"s3://npm-registry-packages-npm-production"}},"5.8.2":{"name":"typescript","version":"5.8.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8170b3702f74b79db2e5a96207c15e65807999e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.2.tgz","fileCount":130,"integrity":"sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==","signatures":[{"sig":"MEUCIQCw81JvzaCxnqSt2mq9DKq5+5o0eozskJYZ/dKAr7rz7gIgQ1FHUeanH/jMo9GhIqqZP7gUEGbQf0vf55pUoxk7TBQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22866019},"main":"./lib/typescript.js","_from":"file:/home/vsts/work/r1/a/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"beb69e4cdd61b1a0fd9ae21ae58bd4bd409d7217","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/home/vsts/work/r1/a/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-aJn6wq13/afZp/jT9QZmwEjDqqvSGp1VT5GVg+f/t6/oVyrgXM6BY1h9BRh/O5p3PlUPAe+WuiEZOmb/49RqoQ==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.7","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.2_1740761528027_0.7272583723864046","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250301":{"name":"typescript","version":"5.9.0-dev.20250301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250301","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8ac4ee0ea13360a6dfd354c25846d9733a833949","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250301.tgz","fileCount":130,"integrity":"sha512-hu43cOKNLgGSav1vmh+HzFyeNusZjouT66gYXuQJXCSKUkNT/tav4KBZPh6yxKJLyMLayXkL1gGfuFR2ZNlTrA==","signatures":[{"sig":"MEYCIQDwgSnSVo/52+b9HDhJAbdEuG2PPi3YWp3r8LRiwDsg8AIhAJXSzmv1wIHp0Uk+Lv8H5rPMvL7RZe/OxWm8iHlZXrf/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22871772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"15392346d05045742e653eab5c87538ff2a3c863","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250301_1740813275729_0.008906902577684006","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250302":{"name":"typescript","version":"5.9.0-dev.20250302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250302","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0fdab18e55e8e7df8cb4c9d9cd60a2439a77c6a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250302.tgz","fileCount":130,"integrity":"sha512-AAQAul2ZrHXxNSdkgHimsaSTMEL9BOmQmHcJfU53Aq5l3P5lT1Wxv/0B00da/E6qw3Kq2KBzhMRQxbaLgG/eCQ==","signatures":[{"sig":"MEQCIDou+ThAhd1vdjjMRVPyHfv/YMXmakN5NDazeGalrVE0AiALsSpDtNb2ob4MssBo3zor7FJl34BYYgON9PDx24Pqvw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22871772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"15392346d05045742e653eab5c87538ff2a3c863","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250302_1740899706102_0.6270103815694976","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250303":{"name":"typescript","version":"5.9.0-dev.20250303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250303","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5b6324a3c97a964c663d959c03aa771c858b1cb1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250303.tgz","fileCount":130,"integrity":"sha512-MdyUv7OLqyxhCbYJDnU8V4sRrcOSNWH4WBqOpJ/JZy+7WOEDp5vNeSgXoUI73+Ib12ffqOfUU3EAy35Pzgd7Vw==","signatures":[{"sig":"MEUCIQDUgBUhfKjpGnbHGb8u04s0Qq/g5jMwHV9zDxJURGLbbwIgZHkk0zCkF3AQ/aW/sp8UFhpTPvHuFYbaL1Z5zfPclbo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22871772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"15392346d05045742e653eab5c87538ff2a3c863","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250303_1740986088711_0.8561563821129212","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250304":{"name":"typescript","version":"5.9.0-dev.20250304","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250304","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"25bd3b534459802af6bbb2b0faa2c0baaa17026f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250304.tgz","fileCount":130,"integrity":"sha512-81dFfRJ7TYCk/SRYomfoZMjMER5rA381MYrONgKzbDfy8Q3fWz9Ln7v9YMGOpPwDuf2KmTHuumvNgK5IVurVLQ==","signatures":[{"sig":"MEUCIQDLU5LdBZhxBEmLH0MekwJQBuZEBQ848BYTippxEfLAWgIgVDeTzdQbWe4cmctdV6dwVKmVqLhZegAXhcEpPcguBkY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22871772},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"47442d958c4d906b75050a27be4570bb6018713e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250304_1741072517841_0.07907184784695076","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250305":{"name":"typescript","version":"5.9.0-dev.20250305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250305","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e5a7b96b0b48404d457f0e1b7ce6c3d4cfe9fc98","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250305.tgz","fileCount":130,"integrity":"sha512-Pk7g7VNEo/UZ2R5GPQIEDNY4U/4OLsTBLO0WdZQhloBdQfKQDUibTEmRgDwtxFR0Jf6v1t2A2aL1sY4cROFDig==","signatures":[{"sig":"MEUCIH3hPOKeSUidK7Yr7njd+BGReB8DodTAR2zzAjELbrW/AiEAsdhOMF5/KWLuxKeo24Ns2/kazqvmQBmH1qUiH5RWHsk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22871836},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c85e626d8e17427a6865521737b45ccbbe9c78ef","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250305_1741158932074_0.3486827070466809","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250306":{"name":"typescript","version":"5.9.0-dev.20250306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250306","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5950f71a9d9aacd956dddff87eff245d4158c061","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250306.tgz","fileCount":130,"integrity":"sha512-cIqgqwNAAF84trmIn8xY2da/YRacNNmD3+fQTtiImJWyu7k6zDDjCd++YdzHsfjw6LeVE1gBPoGT7UJJsXfqWQ==","signatures":[{"sig":"MEQCID/fqD887PQ+He6vSb/4dFZLHxYJnln5RoDSyJr6EVBUAiBjVhJUTap6Srd6huJDVWmCPEWVqDk54U3Nx61iIfbaiA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22871836},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c85e626d8e17427a6865521737b45ccbbe9c78ef","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250306_1741245306906_0.2315823484157351","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250307":{"name":"typescript","version":"5.9.0-dev.20250307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250307","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8529eba58fa6186d91adb68ea05468e9bc71015b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250307.tgz","fileCount":130,"integrity":"sha512-AO/SC3/JP7kYBNQ4rDu5W96MRj0xreokk2VoY+iyEdxXXSAYxfV7Ch+2j+c3HOzaxKA/TbTZ4XYL5XW2HWJF3A==","signatures":[{"sig":"MEUCIQCv9BafI8FWKMrHdxkuwUQrFGSRyieOjgfdGONyvKND+gIgYrE4QghRSkFMXu3c37ZmFG7mupmmiK+BtBsHT/MSAcE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873041},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1efdcd9ff7d6566cf9bf10975b6fc8ffb0b53c9b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250307_1741331702603_0.8158474795442574","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250308":{"name":"typescript","version":"5.9.0-dev.20250308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250308","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c559650f0bfbc026c470bfee68cbfd7399342666","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250308.tgz","fileCount":130,"integrity":"sha512-47Of3W9e6C98Cmq3aUJhQ4mBu2dbSCBOg5/xlhZU7YtVl3YFcu6cbL1hxXuqJtyrD+5QZ3gaMwk1w/c8ZDeveQ==","signatures":[{"sig":"MEQCIAbbP700phm0sO/gyqgTXUpnlgkQzwh5kj42sUVRUJVFAiB9bGG3Sdcn8/Ku3CVAOVenvRzWAHJDBfN9SGNtXOetFQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873041},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1efdcd9ff7d6566cf9bf10975b6fc8ffb0b53c9b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250308_1741418091849_0.019322731246949942","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250309":{"name":"typescript","version":"5.9.0-dev.20250309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250309","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"14e2c9c150e51e1cca1968190601f9979bf6eaae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250309.tgz","fileCount":130,"integrity":"sha512-kq5PZwuZj/tlb1eNn1ukgayXdLazYuMuBpgw6qb7efKkRu5Hn1sS5209BqLg42jFSORWPsS2O2VAGV+sgB/7QA==","signatures":[{"sig":"MEUCIBOd9hJe4xZewncifug+IVRUmPPKhiy/UPK0SMuTgD5cAiEA6RucFQOIe2onze2hmH1baVlbqwPIeYxTSS+S6XIFmMc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873041},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1efdcd9ff7d6566cf9bf10975b6fc8ffb0b53c9b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250309_1741504489840_0.7042459505982182","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250310":{"name":"typescript","version":"5.9.0-dev.20250310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250310","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"619327cf1786754ee2ada52c95075142b1645854","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250310.tgz","fileCount":130,"integrity":"sha512-PCNhGhvQ6DOh4qrSXGEy91feAsxhjexDFs01lU5gac7SOLkTgGpgYu1w2kIS2JsA8FyfTuFG11bCoeZlkrHz4w==","signatures":[{"sig":"MEYCIQCWMmZCbKaacaw9aojQgVVrppgJRO2H5HNYf0Owy2F13wIhAP7DXu5zX8cf7ySLglE7/IvCiowvNlpQ4a0jlPJv+vZm","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873041},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1efdcd9ff7d6566cf9bf10975b6fc8ffb0b53c9b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250310_1741590939171_0.17065281206386196","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250311":{"name":"typescript","version":"5.9.0-dev.20250311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250311","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"49e96fad6d4be69a32e6960936809f210f56d884","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250311.tgz","fileCount":130,"integrity":"sha512-gxqFv4kLjIsJaffFX3JCx2SKvmsgsyYx2F++tcc5GmR/VqY8g0LlmleHflZnqPpAKZ2hICFHEz2CAFd5CQRxuA==","signatures":[{"sig":"MEYCIQCoFqM8PHMcY6mpkHj3Yj/v3LgwVb0RwEawKn13hL7HqAIhAMx+PBeWov2XSiytrWVZGKi+5FVWt969r+LhG4TDe7FR","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873041},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0aac72020ee8414218273f654eb7ce1dc2dd0d6b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250311_1741677354063_0.1076738667672994","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250312":{"name":"typescript","version":"5.9.0-dev.20250312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250312","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d253749dc55544725b1eb0547276837fe27c3032","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250312.tgz","fileCount":130,"integrity":"sha512-Z3zeCByiln/qrcbYTD1CvHK0/AicSIFesDag25uxe9MGPdniO4Q4QG6jDMwOJW4kNlrFXZNmufPhtoar6ZVXfA==","signatures":[{"sig":"MEQCH0cJZTCnMq0+UHNwmi1ePQ8/lyiMe9WpHyR3p/AdJgACIQDc2+4IjRIQA5y99mTgu6K6ARos1lp+48xMPH/SSVt/BA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873041},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0aac72020ee8414218273f654eb7ce1dc2dd0d6b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250312_1741763710323_0.06198302360533847","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250313":{"name":"typescript","version":"5.9.0-dev.20250313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250313","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4d07f1262dfcef7ad0a8b6fb60a2cba08b2a210f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250313.tgz","fileCount":130,"integrity":"sha512-CSJ3yU/30upSGEnuaS+waSGXkPPp73VlwJ1TUerZNv/ySXt/HgN+42IdIrzQCHYiKAZmtic+LIYOavhMA/XJRA==","signatures":[{"sig":"MEQCIBsGSDqrp9VKnSRi/wlC+4xrTi+VVF6Dv1gLKI30v3afAiB5dQOmkEbpZ6nfE3Gny7W7ln3ATIXZ5v/BhPNvNbMMlA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873041},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0aac72020ee8414218273f654eb7ce1dc2dd0d6b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250313_1741850122638_0.24471485369535273","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250314":{"name":"typescript","version":"5.9.0-dev.20250314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250314","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"62c32d09a300e18b6a42053aa4c337c95b8a52a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250314.tgz","fileCount":130,"integrity":"sha512-b9eLo5FjlR0BRMsYIxZYCrtTTUu97N1bh+DpQFCEm5OfRGzUg/Oc09fgct4jA4NF7R5Yg9oxWqVT90uto1TsvA==","signatures":[{"sig":"MEUCIQCCXLip8bGmW1AWLAdTS5UAc/aS/QwAdm6g/9wjedsbZgIgErsXwmNNl/5Wb/YL/HVeQr8Ogisaf55sdWjx+N+8ucY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873041},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0aac72020ee8414218273f654eb7ce1dc2dd0d6b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250314_1741936476396_0.7458875561923561","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250315":{"name":"typescript","version":"5.9.0-dev.20250315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250315","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c40a48ab6ec673dcd8d80d24fac1d8df97a18e42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250315.tgz","fileCount":130,"integrity":"sha512-sSVWMHsHReoq9HHif4xQMoRt2l9z65dssRplQJciY1rgDb1mv/Ql817xf5FC14qHZkbSlLrs30NtEBCdHdRdrA==","signatures":[{"sig":"MEQCIF7Civf5v4tl02f5RQH9H1/drycNMC2TuaXFJ83n0trkAiA2OcbeO0tvU1rx13U0QykkQ0sL7wL7bnA/RgnwBPv6Dw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873781},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a00b324ab2e9a303e8b2d94f3e0b2f3aa4975a5c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250315_1742022892230_0.32533096816157525","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250316":{"name":"typescript","version":"5.9.0-dev.20250316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250316","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"992d8874dac1fe212dc5797c6c423f73aebf0109","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250316.tgz","fileCount":130,"integrity":"sha512-UmfN0N0+BNaF43agcV7pJdXkGofnGu7MDdoB6wANOPJyBjc9t6AUSiM7Ud4yj4ftGhpJwsF5NygXyy2U3kXdFQ==","signatures":[{"sig":"MEYCIQD3hxyKEG4pzGDOYLPSpH4ZJOKzl0TayMzIu+CCYipCswIhAIgs7gkuKhjw50NxC7Lkw8sTPuLNg1RT0KcuWlQ89ETK","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873781},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a00b324ab2e9a303e8b2d94f3e0b2f3aa4975a5c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250316_1742109279817_0.405995800325748","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250317":{"name":"typescript","version":"5.9.0-dev.20250317","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250317","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d47daef2b8a49e7232396072dbdf782a9c70ac1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250317.tgz","fileCount":130,"integrity":"sha512-uJqhFodkdY2AwOyuwbI+o9Ywgyi2OHBhEEUTgtHwFJskUQnUvNXylzMLgQIXn3VqRKS+/oXrq5tD3ZJsYcV2VQ==","signatures":[{"sig":"MEQCHxIkayNy4FOk8j7HtkSul3I9FcMRjSBLtLo1OVaPUYACIQC9YJEPGACJ/WitfWnvbwcHIjbcHN2z8l1SFpmFIG7bsg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873781},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a00b324ab2e9a303e8b2d94f3e0b2f3aa4975a5c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250317_1742195706100_0.7410510988338703","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250318":{"name":"typescript","version":"5.9.0-dev.20250318","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250318","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"77e25bbbbb403da9afeb49e72775fd10b4349fe0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250318.tgz","fileCount":130,"integrity":"sha512-PargTTEKzWpTiNuMV24CBaPCvXjRnpLNwCVVAjQjWBABOazwuYXJ3nXp3VCBavv9IJo2riKWWG7TgLOthATwSQ==","signatures":[{"sig":"MEYCIQD/BJv2FLUq2zrCnAUTRBzP1IxdNdUKPogL/8yTV9UV6QIhAO+lZEbCHDbjzmjP7nQXeTHWCy+2qpRSJDx6KJJKObEy","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874027},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ee3dd7264b23e58bbad86d08a475cac78f330abf","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250318_1742282095283_0.05236136688413984","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250319":{"name":"typescript","version":"5.9.0-dev.20250319","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250319","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ae44dd6f8c40134b067a6a9c7a723ffbbbb6e3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250319.tgz","fileCount":130,"integrity":"sha512-C6kzsa+mmHXyelLcfTYaINXz01XaznLJKoZKKfcwYa4rDEMVwp2cYd5HcDBd44pJkXbbQprSfPvmgjFDoBTnbw==","signatures":[{"sig":"MEQCIA3VD+XhWkzCN1mp0pUu41ZCryRaXXvv+BOQpdxnR2e+AiBP2IvxxSqu6+5K7RF3Hp3B6ZCJv0XiPz93wHB8HenGmw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874027},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ee3dd7264b23e58bbad86d08a475cac78f330abf","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250319_1742368519947_0.3042535938497817","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250320":{"name":"typescript","version":"5.9.0-dev.20250320","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250320","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"57a05bdcb0d29ac8ffe70c387292439b4d9afc54","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250320.tgz","fileCount":130,"integrity":"sha512-QD4yAjr3Fb1+ymsKXzsicjYc+ttKEZc/HgXpcGJWTNrH99S4U344WxW0qCusZG1cfjzgMK9CWdYSfjaGy/DOXQ==","signatures":[{"sig":"MEUCIQCf3QgcHAy5ZBD39VE1ZxtEq1Jv7GVrxBY+ApqJ8MhOugIgYzY0VIIBbTytqPUg8lbV96pdE5STFhesQltgkOQ5mZo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873977},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4dc677b292354f4b9162452b2e00f4d7dd118221","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250320_1742454878394_0.06377385608869668","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250321":{"name":"typescript","version":"5.9.0-dev.20250321","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250321","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4bf3f7fd8feb9097649a4c221de2b6aff19d3246","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250321.tgz","fileCount":130,"integrity":"sha512-5o8rBCh2tJO0TVIvwvRwAEHRD8fGBuMgZFOMRpK04j7is0OHRKxU2xhXDre/72KIYBXHH1bjfWigLhBPfn58hQ==","signatures":[{"sig":"MEYCIQDjtKrVmi2c7oMQfMLmFIduMDizLWVLFll5HV/qoS4qQQIhAOw+YPDVk7PgwHd3MumKkLyeCpvugcVEE7RsAp2BrFJw","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873977},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4dc677b292354f4b9162452b2e00f4d7dd118221","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250321_1742541298412_0.6250366711293023","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250322":{"name":"typescript","version":"5.9.0-dev.20250322","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250322","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9baee28a5512b7fd544e0ba95354d21018f11103","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250322.tgz","fileCount":130,"integrity":"sha512-RjHXD3thtKocraZMuh84ttrdF0H7YlyGLG1BBoBxSWCyX66i30sdys8jHpS7iUdsGdoGO4IRpFJ3OaLoVd7z9w==","signatures":[{"sig":"MEUCIFBi/ak8MYAKIG9wQ6bmnsk4x1/tCz6kmggnmVf8bY7OAiEAhL+MkTDfYkkmFxg5oMO4mn+e3gzuyrwS60EYIHGATDM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873977},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4dc677b292354f4b9162452b2e00f4d7dd118221","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250322_1742627700819_0.676908050754254","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250323":{"name":"typescript","version":"5.9.0-dev.20250323","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250323","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ae658d97a573d723516ffbeb30fc2126dd0dc234","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250323.tgz","fileCount":130,"integrity":"sha512-ILv2CmC3W7Ts7k3T2cfR2qat2er1aguk3rTwr+3X0EE3WUQ2ZX6KggAzr6JFSAasdLSQ7/KKn1skhpuwlm0USQ==","signatures":[{"sig":"MEUCIQD8ii9y0B2xlt72wzkMow+83t5JFKVguB+x6puqx6UycQIgZLlltiLHMpzWLCAGviAnpB9s1ptakpcK9ZT2GKU9DkI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873977},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4dc677b292354f4b9162452b2e00f4d7dd118221","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250323_1742714081441_0.004726821448689522","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250324":{"name":"typescript","version":"5.9.0-dev.20250324","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250324","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9a11779686b159676329e6be641d5914c2ae36c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250324.tgz","fileCount":130,"integrity":"sha512-qehVULhODb1IphPefX/jq0wAXpk6ifAt2lF3mxTsyR3yPDoPkiQdvxw9cURaDjJw6vCijSER6dU8kWmHdWaQnA==","signatures":[{"sig":"MEUCIQDzECAoifgDwi6sptAIf8m6+axjpmvmR9SHppG2j4oVhQIgazMjLLQbuXpBNqQeXWTxJSOU24hOzXxsFiNgoAa8Oh0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873977},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4dc677b292354f4b9162452b2e00f4d7dd118221","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250324_1742800512383_0.701857891766819","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250325":{"name":"typescript","version":"5.9.0-dev.20250325","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250325","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c450f40ebd0fb03823eafa9b9858d327f2f017ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250325.tgz","fileCount":130,"integrity":"sha512-308s+o7xi96jExwQbHWG/IaObqG4QoA1251g/uG0aPTh1DaJ2zxdUdss8gKDs4Il/Ej3Iy2LJiftddSmZunByw==","signatures":[{"sig":"MEYCIQDVrryajS8g6w7xWIk/pJDV4g3wwK6yeDjnsjQfqYBNYAIhAKZS0a2RSgi03TEqhZhK641YF1uN2H8vxjnYKmcbFB3i","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873977},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"19b777260b26aac5707b1efd34202054164d4a9d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250325_1742886959177_0.5249308821713505","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250326":{"name":"typescript","version":"5.9.0-dev.20250326","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250326","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2173fea7121db6979e80fdbc239476c109ab0deb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250326.tgz","fileCount":130,"integrity":"sha512-v95UmcM97b/++aKo6u/0+SgRJP8qjKEHsAQBBXss+A6zEaUM5cZjVzGPpI5veXugK2dJKLWvLEjTT/ATgHMReQ==","signatures":[{"sig":"MEYCIQDgyI5vCF4jZjRV7SvgOIoVbbLksgX4JE6d/QByMcGGeQIhAJL14ZmXHTBy9PnLIRC6qpknmpT3c05VKNkAogGlZGvV","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873995},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"29e6d6689dfb422e4f1395546c1917d07e1f664d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250326_1742973318209_0.6133620285347336","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250327":{"name":"typescript","version":"5.9.0-dev.20250327","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250327","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"54677592697eba3a791d43356fe365d08551df1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250327.tgz","fileCount":130,"integrity":"sha512-mgPk1NuIM28WIA17sk771bQcwoqcS5k1Xyq0LgnWOEBjCjqDNevoVqAlU5pxW4uIgdZfpkk1b/lF577831be5Q==","signatures":[{"sig":"MEUCIBwRsrZlNq1SqKX5Yf8Q1rdXwztYs4yDla/PJn3gHebkAiEA79QnHeaB3YlZZE7MTYxXiCb+xP28SAAQ79dl3KQtDN4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873995},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"29e6d6689dfb422e4f1395546c1917d07e1f664d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250327_1743059719295_0.8139743493109093","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250328":{"name":"typescript","version":"5.9.0-dev.20250328","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250328","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8cc102d7a4462e4b2d68208c1b5b25b29bc5470c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250328.tgz","fileCount":130,"integrity":"sha512-m38Gb1vTDu8LugpOKL4cw7FbjQhZDYf7X2oumF4GvAs7T9O3q0Apv26ckQKuSXTQJAUUCiRfST+QHWXvssdCpQ==","signatures":[{"sig":"MEYCIQDWttwRYXj+JjwDbUxvH7YntP7ZxtTjB6GfapJa/InLvgIhAL6uyyt1PWD3wWLnXmnbxM9vreim3QEs0WihiIZFBpMv","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873995},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"29e6d6689dfb422e4f1395546c1917d07e1f664d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250328_1743146108401_0.795935650427785","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250329":{"name":"typescript","version":"5.9.0-dev.20250329","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250329","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"13ef480578ca521adfbe462bca41b5cf73f36b7a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250329.tgz","fileCount":130,"integrity":"sha512-l/lWiKqKbdKJqlfXmSnDRp37JvuNlgRIO5vHvp4e26OIx3Dk4rfgylozvQ0+n0PxLwgIR+Z71j971gO1IkQulA==","signatures":[{"sig":"MEUCIEhmE++/1BnRDIT+qE3NlembTAdbcvklqb+cNUORsbX9AiEAkdKc9Nue5f1iNX2CsIwBgkAFBl3JwsC3W5+xUOe6hJ8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873995},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"29e6d6689dfb422e4f1395546c1917d07e1f664d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250329_1743232501531_0.5291167176251415","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250330":{"name":"typescript","version":"5.9.0-dev.20250330","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250330","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ce8685a87561527d162811d07b9753dd52fce4ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250330.tgz","fileCount":130,"integrity":"sha512-0fBXnF2l9HbFy7inDnt2SiSq1/toj7eRPV/UygjZW5hBaV85HAfHjUFLBdw1pppxJ7/Xk9nxbU7jksCNy+nBgA==","signatures":[{"sig":"MEYCIQC9rx+D6xEvLhG53v3HO5imNzCoE5A3rNy+lNqHVS+VfwIhAK/p1Q46Vus9gVSs7V9+sC8wyReffQWM1DGA8N/8H6Bv","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873995},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"29e6d6689dfb422e4f1395546c1917d07e1f664d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250330_1743318927837_0.976433485719802","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250331":{"name":"typescript","version":"5.9.0-dev.20250331","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250331","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e3fa5276f856a4b889ab537d08d1b0a8c5f709de","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250331.tgz","fileCount":130,"integrity":"sha512-0wW/4BrQ4HacVwcyQh/60+vAJwIrTasAqYqBdIPgc3EWr9nF/ZXjjCuzE3itlIH/6nXoBNuAyVTt9g9U8kTTWQ==","signatures":[{"sig":"MEYCIQDEVmUfrHacT+N52b5X/QQFUJwZlgD8v4otwQCwSqtWDgIhAKPZrkEVXnl+xJrsxt5sdyMueA50nZ5bsJNAhp6Lk0Vj","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873995},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"29e6d6689dfb422e4f1395546c1917d07e1f664d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250331_1743405303295_0.23645079486071308","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250401":{"name":"typescript","version":"5.9.0-dev.20250401","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250401","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8f5b0c7d489671afd5092d590ed727f54f1635a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250401.tgz","fileCount":130,"integrity":"sha512-i6fAxBVdaSt8rOO3zPmXHXtGdjoBGjvt3YeeMaS8OwcWlQIkJsyE1uyVAA0HiRw1jjIYBq7vObuN5oBzuTbXag==","signatures":[{"sig":"MEUCIQCRtgXU7hnYm+XrNG2kYkCqWiists3BGzmYIqcM5BUeZgIgcAwxG+wVtIxh1hHpTLWn7ddXD82nvZkFHyxrzhQzj6M=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22873995},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7b26d2eba5626e15b9e85e8c3adff1e1c0583c6f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250401_1743491747924_0.8855037539778492","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250402":{"name":"typescript","version":"5.9.0-dev.20250402","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250402","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2fdfbdb3e3bf22048c4a447235b21d8ee76d6349","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250402.tgz","fileCount":130,"integrity":"sha512-Z11KrtCG9oNEC8y2hgrARH5VezKPkdf8Z9k/XQN5t+yKFMJ2LtMMH54nbz8mEdg47sS3M02pxRzWTkvUelVI7A==","signatures":[{"sig":"MEQCIEihBkJkWWA6O9gKnrwGu6i15oSg3bbafOb8pvqeSh+ZAiBugEPY+unuGd3pcSKo1ns6/BZirhhXrklxjefjbXiiUA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874079},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7205eda454ce8ac7313699bd5905ed3f689142bf","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250402_1743578118581_0.06412945002176418","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250403":{"name":"typescript","version":"5.9.0-dev.20250403","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250403","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"22d6c87fc253a713b69d530380756c5f66c18b13","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250403.tgz","fileCount":130,"integrity":"sha512-ycIMhR9vZwSarmdHpPcMejTDRgwVKpXix34p5vv5UeIglzoUzPO/TUmUWW1n9qyyPlJbDrUyhq8A8/FHFn7LSg==","signatures":[{"sig":"MEUCIBCk7bnxa7jsWNlz/15ZegWB4HQQPO7uDqHgufIAcEnCAiEA4H3hMsjUT+bCqZDqQCfEpZBDOIMt7oto0XXmxXd8vDc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ba663f6ac25ec7774b38a3fad04fe8ea016f9420","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250403_1743664533297_0.10746125195884049","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250404":{"name":"typescript","version":"5.9.0-dev.20250404","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250404","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8a8216d67443297144277cd5bd3df28d1bec5e3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250404.tgz","fileCount":130,"integrity":"sha512-GL0YP8pAL3ug0rLp7Sii/ML+kYUkfCU2wxk4O+aV2H3rYfligNa+/SaXzpXfRMaa5wjDnbNUq9mAuhGpMvIUHQ==","signatures":[{"sig":"MEUCIFd503G9nNU7PeS1VV3nhXbScb5JM4C8WDDISpsz8Ii3AiEAhNAQRVJcHRQBYDdqwBCiH4K/bEywf06ho2kKgFelfpE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ba663f6ac25ec7774b38a3fad04fe8ea016f9420","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250404_1743750917114_0.004724492943986913","host":"s3://npm-registry-packages-npm-production"}},"5.8.3":{"name":"typescript","version":"5.8.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.8.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"92f8a3e5e3cf497356f4178c34cd65a7f5e8440e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.8.3.tgz","fileCount":130,"integrity":"sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==","signatures":[{"sig":"MEUCICgNzEJKBTUaaiiKgg7R0IlwNqfaQnF9gNt4o7IXrwwtAiEA2P9N8bFaSXiQTC6Ix7s0XOloYMV4e2030bP/JdXRImo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22867703},"main":"./lib/typescript.js","_from":"file:/mnt/vss/_work/1/tgz/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"68cead182cc24afdc3f1ce7c8ff5853aba14b65a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/mnt/vss/_work/1/tgz/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-p1diW6TqL9L07nNxvRMM7hMMw4c5XOo/1ibL4aAIGmSAt9slTE1Xgw5KWuof2uTOvCg9BY7ZRi+GaF+7sfgPeQ==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^5.2.0","glob":"^10.4.5","knip":"^5.41.0","chalk":"^4.1.2","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.47.6","eslint":"^9.17.0","hereby":"^1.10.0","esbuild":"^0.24.0","globals":"^15.13.0","chokidar":"^3.6.0","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.17.0","playwright":"^1.49.1","typescript":"^5.7.2","@types/chai":"^4.3.20","@types/diff":"^5.2.3","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.0.2","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.18.1","@dprint/typescript":"0.93.3","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.18.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.11.4","@typescript-eslint/type-utils":"^8.18.1","@typescript-eslint/rule-tester":"^8.18.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.8.3_1743812257453_0.7063434327816214","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250405":{"name":"typescript","version":"5.9.0-dev.20250405","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250405","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"36bcc82b9cba365c494b2ec654370c5701dc01b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250405.tgz","fileCount":130,"integrity":"sha512-qIPbfCLoAnTxj6Yg2BNEdsDOlgjyPrW8JRKYnN6L8UVDFYqC/LR2ecveWjv7DukqpiBHddlgf++vPL7bmUahEw==","signatures":[{"sig":"MEUCIQDEQwi1/GC9iL9zCFLyxYZkl3Opq/RaHY/5E22e5aCWIwIgLOzEYNgEfQG31aykzTTRpmOSnbrJdXuKbLZrjEcN+cQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250405_1743837296230_0.6457370158303943","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250406":{"name":"typescript","version":"5.9.0-dev.20250406","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250406","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"daad12cc7b532e9798ae510c9da252fd50332021","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250406.tgz","fileCount":130,"integrity":"sha512-wmbVe2nbuGo6aSmqXngKbLvqHgtT2O0eHphbCCwk0FvFswJOpH+LOtXEwbZiMq7nP83at8OfGOun439uuHelbA==","signatures":[{"sig":"MEYCIQC1E2AddCLbDsRutzyVga9xaDecDHU6H6iV9hNK20QPSAIhAO/OjalrJAB50Gbo9KpsD/gETuquwGjNV0UFuzGiwFNV","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250406_1743923732305_0.2743428659813911","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250407":{"name":"typescript","version":"5.9.0-dev.20250407","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250407","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1dcfbacf1f62ed0a286a81d65c058b71b6bcd043","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250407.tgz","fileCount":130,"integrity":"sha512-JW8/Our6MR+QYS3M134UaLWtEYdVXWzwlbg6rj3fmF9TppADEdaSNiJK90M2wmfSuu5j8Nefk93oSrZF03JkGw==","signatures":[{"sig":"MEYCIQDUfNJniBK5x/v4jTnmuuM+YIxDLDWzpllwtU1oclWv6QIhAPK28XF8ZXBICqhn4gfxSdRq4o4PRWsW6d2/jbm1uQyO","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250407_1744010122670_0.8408380362479244","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250408":{"name":"typescript","version":"5.9.0-dev.20250408","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250408","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"28c8569c0fa512879864c7bf89b60b422e62fb42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250408.tgz","fileCount":130,"integrity":"sha512-QK1VpNa4H4cfVTfixXm/WIdDMXDh1Y25ZUM+R9qM6rhk1oJVEmm7Bkq5fX9FcfVnldyJYWVcar2gfvZHERp+5Q==","signatures":[{"sig":"MEUCIHJRxQq3tE+eBSbVD8jZIfEFqqadPDDiTFAs/r0xmYhoAiEAgkOaMIAsDsogF/SxBGYZPKVFxueuN/ZgJrMifwmHkh8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250408_1744096546539_0.17585062084984937","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250409":{"name":"typescript","version":"5.9.0-dev.20250409","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250409","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93868cbae3234eac7ae3ec1e580f4ff68238ac49","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250409.tgz","fileCount":130,"integrity":"sha512-rjf96E26XcWfYF1XzGFBwolQltBASurqzVhFAArFePt0SaLMHkWFOwBIVzsISKzvHJqpL95HzN7LSbxF8C75VQ==","signatures":[{"sig":"MEUCIQDlVgpqLZsXl0ZcfkRnjevIeMLG4edS53XyysgV+ME/AwIgWrFrIMcg3Oms0PEp2GI0WrQKwMs7eNBH11PCI9iJHwU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250409_1744182920083_0.4929651253117566","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250410":{"name":"typescript","version":"5.9.0-dev.20250410","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250410","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e5b0d9add2ca673ac7aa85c4151ad183f1df9050","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250410.tgz","fileCount":130,"integrity":"sha512-Y8DN+Y4MnIwejLwietJW80cw9/l+Ed33PmECnCGwb1ALiz+FFi4ON11O/4enM356rDV51Ug9nkvDw+AxmDah3g==","signatures":[{"sig":"MEYCIQC9et/avhyZ/n7q0EeJ1j+lTPDJBdMu4UtgY+AwTT/AyQIhAMJi93i7zJM4//BVs+IX/sja9ZnFArxMsp94rLFvKTea","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250410_1744269328619_0.7437171605648809","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250412":{"name":"typescript","version":"5.9.0-dev.20250412","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250412","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"62550f3cfc09a134eec83e7ce967edc79704a043","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250412.tgz","fileCount":130,"integrity":"sha512-E/VUTy6ITQyHP3deMaDa4fKmqIF7xp98/AkNKP9Z6nkYeYJDa5ii7y8dRXZKtjHqIhBVMVmaiwES5ELM7ru6nA==","signatures":[{"sig":"MEQCIEr+A9jqmZi/wg8I9b+N7JwFJBNhiAkvhfQlKVyA2LwVAiBuUX7N5P4v4TmSr3qtZEZ9acpEy8wHxoec3wYMu3Qr7Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250412_1744442149710_0.3094966576474587","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250413":{"name":"typescript","version":"5.9.0-dev.20250413","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250413","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"325d473024bc83e2047c9bcbf870af1cba125325","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250413.tgz","fileCount":130,"integrity":"sha512-1Tn82ztfp9eFLgdPbjtXUrZBnPo6rFwALgcDY6vyNIUMqNS4gos1kOfHcV+wAKSJw/MUBN5OaCIZDARLLHlOXQ==","signatures":[{"sig":"MEYCIQC/dPavJSIMl8Q5zD2fgQzuK5YmQuN81kAjV+XC6na1jAIhAPXlT9840uySTpc4qy95nPjiz/ofzfdj3fVVW1EKt4JA","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250413_1744528515038_0.03495989164827207","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250414":{"name":"typescript","version":"5.9.0-dev.20250414","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250414","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9c65c3e1e8953e1b98e774b4b0e643c1c03ead84","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250414.tgz","fileCount":130,"integrity":"sha512-7Fc7LUzC9HpK2hoeeaoBOaCQxzUqu6xu/yXx5vaaEHOnOmkcJvHznOqUsLU1ntREj9rGnnZFdiEphbQKneVKxg==","signatures":[{"sig":"MEUCIQCoGYLDM6yKZCE2oGpOh6DndWDqc4oDPuBRjYpK7/rqfwIgXOKAFU4ugq1hTGH1CTuE5IS+bHmlHauN/g4WB5TBeCw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"83dc0bb2ed91fe0815ab28dc3ff95fae7425e413","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250414_1744614929983_0.6416854826338667","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250415":{"name":"typescript","version":"5.9.0-dev.20250415","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250415","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1aea260e4bd1d7a50cc0dc8cdd4eb0c7be261ebd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250415.tgz","fileCount":130,"integrity":"sha512-sn5JyyWRXwX04DMDyEmA3dKBgWv8iIN4e3NE/uXswoJR7g/4xUoKZEpJoHOOCgI1u8Hc6dt0Eqw/sNiNiMMFlQ==","signatures":[{"sig":"MEQCIBsqDTg2+7O4+cmboSwYOUCOTdo+MEJU77660jsb+RFzAiADjFtKu7RhKOSHUh9r5zgtxiqTdqzmz62Y2pac08vIiA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22874431},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"eef7c14ef163696d5ea85275ea122e28fb4eeab7","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250415_1744701344894_0.29426876022277426","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250416":{"name":"typescript","version":"5.9.0-dev.20250416","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250416","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bcc4e87e45333b153c3b620c83bd47f7a2f601e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250416.tgz","fileCount":130,"integrity":"sha512-NCJUSWqeGImKoCTOydww1MhHvtNjU5GmhJ5LAhqjvZOYcHJSO0DfYSKb39klxfwZoHS9aNgay9bVIWbfODpCUA==","signatures":[{"sig":"MEYCIQCn93TlC0HsP7RVAuHMtdFreEknHlWkrF98su2XASDptAIhAKC4T9zPJmR373wk6HYCAnixeIY1xvQgJSQOiOiZ0tqm","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"069de743dbd17b47cc2fc58e1d16da5410911284","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250416_1744787732458_0.02135897551795951","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250417":{"name":"typescript","version":"5.9.0-dev.20250417","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250417","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6be817dd48a3297e84416db6d8522fa1d0301e65","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250417.tgz","fileCount":130,"integrity":"sha512-1/Lqu1vRxNv1wOBoUQMu/z8jsFmPGGZSaSuaEWRWJVcQy7Pxoy16Zil3pzhLdw+C6Jx30iq1IcsCn8ZmUfUl+A==","signatures":[{"sig":"MEQCIBSRg06gwdgfQxD3bk/89DDJmTCX1TNxOHwKkm7mCHzwAiBtkwokOVO+d+BhChtCb86HTi1ddXzEigEhWmMXoFSO9Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920221},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6afd0fb73fa18a48021ed54f44a0c51794519bf6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250417_1744874122044_0.23798318474649438","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250418":{"name":"typescript","version":"5.9.0-dev.20250418","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250418","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6302242b10047256e9751e0a5840c2291931d85a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250418.tgz","fileCount":130,"integrity":"sha512-E6sHOUHwNZXATq5rXEV67VWbqEAoLVtWkRf7jSCPtqXxVmURiQhalXGNbwzSwGBQItcOk7TV6Rku2/GO8YajcQ==","signatures":[{"sig":"MEUCIHymDFgxIAWgDqIGTNN1HbYrOowzKOCDbiyAxtdNZ900AiEArinvAigszE6VukvCEeVt+EArpxqYwsGmHE+Ql5IYJ2Y=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920221},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0a1aa6d6ebdfa16b82f4a6aaf282089b1d484e05","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250418_1744960545737_0.5116001515287003","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250419":{"name":"typescript","version":"5.9.0-dev.20250419","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250419","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4734d95764fe32ed930bc34976250bb9b26541b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250419.tgz","fileCount":130,"integrity":"sha512-PYmOoozep0r8PqTRKj8akzw9J92v3jQPqQ0kLQ4umbeUErIG9izEENfvL8ud0IqKeviNv0FxM0/DUQmbODhsKQ==","signatures":[{"sig":"MEUCIQDgQacld5AkAfC6LSRTJz66q2ivTbb0fTlduszYxowWnAIgWN/HUE84ROj/xTnrIRjvBfDW2G6Q1TX2rZKaA92U/DQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920221},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0a1aa6d6ebdfa16b82f4a6aaf282089b1d484e05","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250419_1745046914631_0.4637832641989008","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250420":{"name":"typescript","version":"5.9.0-dev.20250420","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250420","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"76f8278941233ae0b3180d9048c1e8f5edafecb9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250420.tgz","fileCount":130,"integrity":"sha512-ppWgSCFU8kNrq4UMwG25rWc4zi15LI0xi7r6UPE0Alyl5usK/ghKmZHGHnHvm+N0um2VwFkacUbUwKYeAXS2bw==","signatures":[{"sig":"MEQCIDYwPBmBr0HsETUEh4FA72CoWCKN6f10dBymMSTwc8I8AiAHQ4AsBvD7xOkZYTp+mGLl0g3QOpbftyQvE8+73d2mgw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920221},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0a1aa6d6ebdfa16b82f4a6aaf282089b1d484e05","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250420_1745133311399_0.3544302223553999","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250421":{"name":"typescript","version":"5.9.0-dev.20250421","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250421","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f5d4e0572241b5bb42e6b32b0ec333a93ce48ea1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250421.tgz","fileCount":130,"integrity":"sha512-FdSThloQniJuK/XHbAOH0K60ujWlZIylhmHj8RHO+JfuWIBIJgE6Uxj8psM0bxE0vWEa5lhsQHASZhHRg8ZHnw==","signatures":[{"sig":"MEUCIDmSeJMh6qFCXLX1bTJZU3P5q5g/IHHAsml4ve3gZlipAiEA1nRUnL1vveyCz8DPF9tCrDNr4RT3usYNq481sGqzoKI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920221},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0a1aa6d6ebdfa16b82f4a6aaf282089b1d484e05","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250421_1745219696629_0.2587787501513146","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250422":{"name":"typescript","version":"5.9.0-dev.20250422","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250422","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4767b3f09a16cef501c32156a66c5104f79a4e15","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250422.tgz","fileCount":130,"integrity":"sha512-nhqzYEg74esioK1dt0zLZBEdpDv1VXZqX9qWe9qFi3pkYjXr2Rok3MTV0+CEDc7DIL6sKeJ5YBRuePpIsSmmfA==","signatures":[{"sig":"MEUCIEt6XPbgPU6AGGpu1FF2vl+c4Ad4C+EF92LYUlKthCEfAiEA80AfCL8rsJ/Wyp65jqYN0wZ0hXhmUZZhVJGW+EaNaNE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920221},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"62b172b515452b3fe19f4f2da81d4869caedc904","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250422_1745306113527_0.5380643829519149","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250423":{"name":"typescript","version":"5.9.0-dev.20250423","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250423","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8050ca69d2e4765dc75d2d85f3c1cef7b89f8018","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250423.tgz","fileCount":130,"integrity":"sha512-+r3x9N0J/p6S0zh/xyfFhaeS+neYCpmVmUxg0Xm5ZWPU672Bhpx/5r/pMg184u/Onk4LYHbAlChXuqdSdsTYcw==","signatures":[{"sig":"MEYCIQDgUcWZdoB3tlgrzhanv3XWIQ2H9FiVih8TeNEIHpjkwwIhAMv59uNcYDohUeL/qogITMS4AjmsbpmGqxS96yYreUWR","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920221},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"62b172b515452b3fe19f4f2da81d4869caedc904","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250423_1745392532569_0.3070856039928016","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250424":{"name":"typescript","version":"5.9.0-dev.20250424","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250424","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f628d192562931a3e35f30486750f1b1e1fba243","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250424.tgz","fileCount":130,"integrity":"sha512-jO9Ju2gM0ttqxutigFlarB41uOnuB0H1QpXeAJXF4o3tMno6mEDMAe8Pm2bp6S6TqUt3C+J6K5y8EMs1/Bumyg==","signatures":[{"sig":"MEUCIBJbvhcqaZYuNQOpXKsNaKzuzi/8p8IEZ3b0z03UlCiNAiEA7VdAkyeNxaAyrDV4EMR2r64UfhnJJRFh/6IDSnMOjbU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22920221},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"62b172b515452b3fe19f4f2da81d4869caedc904","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250424_1745478934433_0.3370382320731675","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250425":{"name":"typescript","version":"5.9.0-dev.20250425","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250425","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cb2da63af6c90e291a3a5d3f65c96b2c1b6d6db3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250425.tgz","fileCount":130,"integrity":"sha512-gAVbfPKGIswjMjNCQFfydDWgg/GWPnUrTw2iy6ePNDZ/ryEqurjVYTeSKZyslJEgJau1agvTMpMeZAoFCtZJyw==","signatures":[{"sig":"MEUCIEEcaV03svaF4FR/UQor7puS/OWp1ynLKopV8WtrTLvRAiEAmg6ya044JqxrEqc69n7OIQMKDmp2FBmt/wfaDjTLUNw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22922345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11e79327598db412a161616849041487673fadab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250425_1745565320249_0.08055780052764816","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250426":{"name":"typescript","version":"5.9.0-dev.20250426","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250426","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c417e666fb338c8673dfd36aba1a376892797d00","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250426.tgz","fileCount":130,"integrity":"sha512-B7ujea1zydRblEwrt0ilOP0kEQ7/gTDEp2e62cZazPwfeQRbf+xGL+CVDe2UR3iWTgU9PSzoQoi48Tc5E/fpwA==","signatures":[{"sig":"MEUCIQD0PwlcG6UQhUU3frfNlEBWeeLll0fVZLu4AbaID37y5QIgHejb02+ac+CBxiSvoW2H/V/3HfILUOpaMFpGWVdlz+U=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22922345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11e79327598db412a161616849041487673fadab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250426_1745651693303_0.041626752243019816","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250427":{"name":"typescript","version":"5.9.0-dev.20250427","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250427","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"79f4fd0672e9ca1a453ac8909db60da25cc2043f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250427.tgz","fileCount":130,"integrity":"sha512-rD2EPLQ8g8bpBtnveMTgGFAuuEujcrirMAd8ry0v4KKrsJOppsaiLJm4kFPLjHcdMYfQ3LKyitwbB7H+T8A5CA==","signatures":[{"sig":"MEQCIGgz7Hg5nJMgH4TxXbZ6Fpin7lglebLK92gKaPfDPYjgAiA2yTxta17w2tb7AsKksW/Fhwun1W8C3Re8oZ14oeCQlQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22922345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11e79327598db412a161616849041487673fadab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250427_1745738087429_0.8426714057155229","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250428":{"name":"typescript","version":"5.9.0-dev.20250428","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250428","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d83c2bdee80490c61433983a522a55fdd29cdad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250428.tgz","fileCount":130,"integrity":"sha512-/6K3WJlc0zjdAgLJMpU40jIxBIQ4fpAfE3o35EsPBTaqvDh9X6rY+c0NBYpYb/3UG0a2wgSr0yD0sS1l6Km7Fw==","signatures":[{"sig":"MEYCIQDDpwoSNA5nVTc5jtjGuen0OBYS46vYqkSAb60G0PWucgIhAJbxzBRP9nfKHgb4WMIHRS79gjbnQz64djpcF/QdF4wZ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22922345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11e79327598db412a161616849041487673fadab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250428_1745824883261_0.3625695907769917","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250429":{"name":"typescript","version":"5.9.0-dev.20250429","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250429","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"012fbe133e9a4861d069edada8f2b7c085dde31f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250429.tgz","fileCount":130,"integrity":"sha512-PySfZNqDdNVucyOwiH7S10Ou3Ly/ge8u4xMoIxMFLDzYNO5tCLTLWn5JE00/GORSLIPG9mBWX6lvSXlbMH1xNQ==","signatures":[{"sig":"MEUCIQCsLiKzmNc/16Q+Ohii63OjpL0upFfJr1A2hpTRJ2ImBgIgfKH/TV6zC33Y9gVOyJwkNW0fa4XtfTN9gwzoCUj5T90=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22922345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11e79327598db412a161616849041487673fadab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250429_1745910932531_0.3481260743560435","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250430":{"name":"typescript","version":"5.9.0-dev.20250430","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250430","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5f82d3936e24a60763557635c392ceaede4c8202","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250430.tgz","fileCount":130,"integrity":"sha512-XCv8HsA7GgiWPibRv/7GtB9R4MNmR0kgQpWp1B+NtvVd1iCHCu7xsAnI0jSuiX5mzRDV5k04G4j8fZJmlrfyFw==","signatures":[{"sig":"MEMCHz0eCTwi213h+IvKp4BWY5kzt7C6WKuvEuRJcnY4v0YCIGBWG4PWMXCBg4xCPWRI9SQ0SVlOcnsZ51hHyz0pZJ1Y","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22922345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11e79327598db412a161616849041487673fadab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250430_1745997311839_0.943136550836261","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250501":{"name":"typescript","version":"5.9.0-dev.20250501","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250501","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7fb8b7ac23c3eb0d1bf9997dbf9420d5d02b357d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250501.tgz","fileCount":130,"integrity":"sha512-oVdMnDZTyAKb0Bv9Lx5Uiy2XrHWeN6nHwekRxElXs6OJpQK1oPTd2uaL7xVJUD5CiVTlQGQQeCXJQZFrXmrgQw==","signatures":[{"sig":"MEYCIQD6WnUmBm9AiJGcLsT4dVQfEyvf4ah79F0d1Sf/82t55gIhAOWqc76Q6997y0+AAkDU0qbhJ4TzbkW1rc/sDjLDIeXB","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22922345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11e79327598db412a161616849041487673fadab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250501_1746083750498_0.204054478734236","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250502":{"name":"typescript","version":"5.9.0-dev.20250502","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250502","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d513ee8dfc054034b2bde4a89074da78e447a133","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250502.tgz","fileCount":130,"integrity":"sha512-85cXZtCvlmVRrmINLBg29KOEDw+tAd7GSWCTjv4K5he+XboQFzj05Lb7+4Qdml5Ox/nIxm6/0hFLV1XsUDB2hQ==","signatures":[{"sig":"MEQCIDzAckOHUO4/9acyBC1opN34akIf5vc0wxwTtNDkbCysAiAqRv/FqlsVdLi6vOtFga3Y388GZuIVyouz9o0j0nU18Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22922345},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"11e79327598db412a161616849041487673fadab","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250502_1746170117438_0.21990255645111123","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250503":{"name":"typescript","version":"5.9.0-dev.20250503","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250503","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4b3e10a1409e1804c1853ad3eb5408383d228329","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250503.tgz","fileCount":130,"integrity":"sha512-91TijWPubqcACvWr9n8qTZJPioEsP/Jo/X8c6v+JQYwHs9sKOb85CVYo5FinBGc/g7J+yNIv699ysphzaiI0xw==","signatures":[{"sig":"MEYCIQDT86iXsadQSquBr6TQo4qdwvDJQvIiXZnQ92ia3zAlmgIhAPB4E4k8+jUxJr0hCJu+fa4Z/cQfVNAQLyhwKK78yoUh","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22923609},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d88d3a46810bfae0b072beb023a2b09b8026b82c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250503_1746256508914_0.9387866167406296","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250504":{"name":"typescript","version":"5.9.0-dev.20250504","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250504","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f561549a41b50702ee85b6e999cc6f0a8c9295ba","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250504.tgz","fileCount":130,"integrity":"sha512-tdJ5/k+fpLlZbGlvpY9BM54lLu4W7kSG42hKbZokiKM+IahMjv7JgLo3qb/vH0o0khhM9C6e7eES5Yh0Zewx8w==","signatures":[{"sig":"MEYCIQDhR+E8bwngptg0iei6qX7mHgIAplCP1fu51l4zG4g8QQIhAOqQB2AVIZoDNS8i2qVPut1tqHkTsQLCpC/9PvTsIHNt","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22923609},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d88d3a46810bfae0b072beb023a2b09b8026b82c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250504_1746342968984_0.8638864287776253","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250505":{"name":"typescript","version":"5.9.0-dev.20250505","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250505","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2e9de223e4af18a34af79ebd771fce4c0fe7811b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250505.tgz","fileCount":130,"integrity":"sha512-ywPLfyANyEX2J4k545xqwp2opBYw3n1HXTgaloRace5GPp3DFFYt71RG7K5ylusAcIb604MCwMPFw9vLfJQSwg==","signatures":[{"sig":"MEUCIQCMOIRc7evMyilLDxO8Mh3T1eXtOv5w2o5Ma/pO5oPzlAIgWT7VWroO1dfoiizgD/8rjoz7EzvQ4lWGCr7LgLQpM7Y=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22923609},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d88d3a46810bfae0b072beb023a2b09b8026b82c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250505_1746429321878_0.9740129828259769","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250506":{"name":"typescript","version":"5.9.0-dev.20250506","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250506","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9b468cb0ccdad575ebf2bb9b7c1afd8afb986a57","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250506.tgz","fileCount":130,"integrity":"sha512-2wpjav7G3l6HcoMPoA7qI7pehXc0KURvGsvSzjjIuGaJZljFwX302AQbXNiXD360tlWJtjPb0/rBT8KZTUYcFg==","signatures":[{"sig":"MEYCIQCOADZbMYfDw6fpIpwaWSGDm89MsBE29Gk894/cR2nn4AIhAMu7lpQGk6TPzB4Vo6SzN0noW1eR3Hg9vmOPdQ+66gLu","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22923609},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d88d3a46810bfae0b072beb023a2b09b8026b82c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250506_1746515735904_0.05258737583852091","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250507":{"name":"typescript","version":"5.9.0-dev.20250507","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250507","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"338e5770caded7079b22163ed1758846c97d44f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250507.tgz","fileCount":130,"integrity":"sha512-jm5F4zg922R/YMvNrINE6aoLdYdqiVtEuN/yyHf+6CZ2eDG28UpONN2tBnfPfSJr6flibtyd4RID8X3CEdBNqA==","signatures":[{"sig":"MEUCIGG77+mYmLr7X7YTLmPawL5W8s1JwKsIZLS++9NinSMjAiEAraOTkXpmAuooewAbjK8ahG4u+23vJfkAlpHicUD7KTU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22923609},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d88d3a46810bfae0b072beb023a2b09b8026b82c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250507_1746602109848_0.04956456679832044","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250508":{"name":"typescript","version":"5.9.0-dev.20250508","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250508","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eafb385ae4da47a02b92a20a3d92605907a3c3ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250508.tgz","fileCount":130,"integrity":"sha512-vTtyza+uNzjJO/NgvQxsZkopsalnGdtipQo/lz2rdJ4i+wOdWQuOZxGgaUa2Fi8vj/4Xp6chlfpisgOI3mxvOQ==","signatures":[{"sig":"MEQCIG5z0FAn63f/BT/fcwjCaICjnHTJvWSLiofP7vmgW0bMAiB5cNh/wQKUbrKaXLunMoyid4Ljis6kJ642hgl++kuRgQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23013147},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8c62e08448e0ec76203bd519dd39608dbcb31705","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250508_1746688505723_0.7330469875119758","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250509":{"name":"typescript","version":"5.9.0-dev.20250509","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250509","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"63d6c42aa003551d6e93f4816b2ecbc089d6c38d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250509.tgz","fileCount":130,"integrity":"sha512-PPOIOmDBfpOZKdHB4y3BGEQutgH9iWrwepGl9eWnQnccMzkgplMYSChOWM2i3ViRr2dZu86zSQF8lwuHkXy+sQ==","signatures":[{"sig":"MEQCIBxb0EpPPE/lU4Rk4q97Q5YFLjZgOv7dfggkURCynikBAiBkSjwP1HfSfpofBCggBKYpto8PFTyw9/KQm2HvosQ9Sw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23013147},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8c62e08448e0ec76203bd519dd39608dbcb31705","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250509_1746774898947_0.3536054214781368","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250510":{"name":"typescript","version":"5.9.0-dev.20250510","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250510","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"514b661e2f273e7575d0c1f66ac13d07d6ba0218","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250510.tgz","fileCount":130,"integrity":"sha512-mca3N2tPnqgPuZCNTVNGw2vaQNVLtyKbdwkKoZxmImmJkTKTyvUIxdNcwMUUOmk+SANyEzEWsXOQ21W0szkRng==","signatures":[{"sig":"MEYCIQC5d2dpZjvSOYx76iY6gx6lBJZWlmpZ74XcfiTShxjtlQIhAOG6qrGPgALHs7i6KFzJQFxYZCRi7Z6KcEeBhtXIFy4D","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23016432},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7156300cee63147d8ec5c58c80b3fef2ab2aec77","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250510_1746861278073_0.4368970005319557","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250511":{"name":"typescript","version":"5.9.0-dev.20250511","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250511","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d4581f6f5b07057224bf9e5bc0654a73d05736c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250511.tgz","fileCount":130,"integrity":"sha512-Bi2tZAqJ5wzQgj/gUIVSlGaqmejGzAacdX0gBuIvn/DwlydVBeWdbFERk7UynqG4fRdapMaWiHkMxFU8H1IhFw==","signatures":[{"sig":"MEUCIQDg1t31/9Y8jZRBg6dESWfpGR0z/k9BkB4WI8+W1r6TZQIgRIJqKtx2CfakoeY0aVfMNxTre0UI8bktDXp5bJoeG1I=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23016432},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7156300cee63147d8ec5c58c80b3fef2ab2aec77","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250511_1746947673526_0.14039735477662418","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250512":{"name":"typescript","version":"5.9.0-dev.20250512","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250512","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"010ef43fb2abb5ba9c5118d0839cecd1d6a5ec21","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250512.tgz","fileCount":130,"integrity":"sha512-NcgQ6vEdWlMri2/6lThf1Q23ggLulazqxe7stYe05g3UEz7bStZ593yo5FqMTDDo03+GQaHZHh6YnbXgxLdk5w==","signatures":[{"sig":"MEQCIG7P+XhYvPbsdBzbe2AKWnLn36KwRqY28hawuTbVzZ1yAiBnuVXpmelt06tstFncfx32Q4DbByMeA+hZJIuuJQgP3w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23016432},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7156300cee63147d8ec5c58c80b3fef2ab2aec77","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250512_1747034084418_0.7234512522504848","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250513":{"name":"typescript","version":"5.9.0-dev.20250513","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250513","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"86b8412671b6acb6f2bde42abdc43ffc9b4cc259","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250513.tgz","fileCount":130,"integrity":"sha512-lN10znS++T4imSlgVxdj3dUEHyX8MgK4pBUrvWgW04mLQK+QubpW2fcibnBeVOKCBdQUeEuyB8gGrLgyXgz7fA==","signatures":[{"sig":"MEQCIHmkMYIRUbgn/tgVG16/UrEyDeuta4IkfCIYqkeLm1VuAiBCYQGtrh2L6AXzUlXU3NJXr0F2VBvLsp3uaZaOMRev0Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017784},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0fb5e3a8cff7f18a30cdcee2ead37c727674ccc5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250513_1747120485484_0.01121468792042779","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250514":{"name":"typescript","version":"5.9.0-dev.20250514","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250514","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bd8313497cdfa17784120f4b89a898ac49545c53","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250514.tgz","fileCount":130,"integrity":"sha512-2Bhj07DXRUMlAkyaw0/v+hsvGQZw59uwEtiIr32rZwcXmPYlCgRLquIO4bSTdD79yE2fhI9oyOmxtZPLeMer/Q==","signatures":[{"sig":"MEYCIQD7FI8JqMKjV9eeXujE6fFIGl+Mn523wnfEQrQ6dwLaOgIhALg5WeD1n2GmgTIDsz2N9VjJ6VYWU1Tudu0OVsbUQ25w","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017784},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0fb5e3a8cff7f18a30cdcee2ead37c727674ccc5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250514_1747206922135_0.22749594792292105","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250515":{"name":"typescript","version":"5.9.0-dev.20250515","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250515","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c4eac696874545fdb038965fcc55c70d59c1a0b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250515.tgz","fileCount":130,"integrity":"sha512-p2FPm5MM1/d4N2MIQ2odLzkcTTGZ2ml48Rqi4CaNG954UWDfS+u15kjx2O/MOOleSJRKaLN9+ICKqRCZ0XYOTw==","signatures":[{"sig":"MEYCIQDeQNy3txNj/WzJ/+1p6YZRyZnCXOJ04iEYy4mBBgP6agIhAIYGdBk759Int5BHgbUQ3dgogpxz3YCc0u47UXelY2Lt","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017784},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0fb5e3a8cff7f18a30cdcee2ead37c727674ccc5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250515_1747293295832_0.7195514807064034","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250516":{"name":"typescript","version":"5.9.0-dev.20250516","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250516","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5c214aa3f61d26cb707232547eecff13ae883049","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250516.tgz","fileCount":130,"integrity":"sha512-H5tS0q9VCKl6i/AUm30HmVtyqV7mrUrFOX5ymYbjc7BZxlwpXaXRGGZ14j5kcPWlBDNN677wsTboMu1CxdtX/g==","signatures":[{"sig":"MEUCICOGLpfZh+UAwjlc6tOqYzKPcGTg7m50TMFspLh7UK7KAiEAmpOhtKSAs+V1nhzr90vUpdmU2DIkrId4k531BuQxqPI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017598},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"81c951894e93bdc37c6916f18adcd80de76679bc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250516_1747379720142_0.23883050412337758","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250517":{"name":"typescript","version":"5.9.0-dev.20250517","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250517","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d30c13bd1caeff4f906b6384c47df8ac80bd591","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250517.tgz","fileCount":130,"integrity":"sha512-wFpZkUJzeYxuYGUywAkCkMpraEToMKOsAi+Y/WIH4b0DLTKA+0pXYmW17bmAd/Cxe6xrfudm22keeQxOdCi9Kw==","signatures":[{"sig":"MEUCIAqlFWd2MfckRpkxzzqwL/9CDCK0n20CbL7FoZzPttT6AiEAxnQ7RVoJEgFcOrc7HnT4oaKXU+grRqcbzQFxvhuh0lY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017598},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"81c951894e93bdc37c6916f18adcd80de76679bc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250517_1747466087549_0.09602953886474608","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250518":{"name":"typescript","version":"5.9.0-dev.20250518","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250518","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"db3133ff9e12d0c28d8f98489208625dfe8e1f6d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250518.tgz","fileCount":130,"integrity":"sha512-P5dLYqx/0cg+0rSY73eeefpJupEHrlmn57OSKVpYgaewd59MAlq7JWuP3719I9CgM3VIyRN6kSX2w8DEry2V8A==","signatures":[{"sig":"MEQCIEyXiWjyP4VR1tIemYGv/TXdxjR+ymJ5fJrQIAk5aSXcAiBWjH17gaNtVjqQM6ZlpqnkTo1X/UkvJpNtgU6FrCc+Lw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017598},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"81c951894e93bdc37c6916f18adcd80de76679bc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250518_1747552495587_0.7899588104434154","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250519":{"name":"typescript","version":"5.9.0-dev.20250519","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250519","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"546ff858894f720a647a61e5e354669df138cf71","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250519.tgz","fileCount":130,"integrity":"sha512-cD9QL1mE9TWmUaC8hHGQUXS0oRsZI45Sovemi6S8ATHu2yKIxUtrlpXkMPQFD5g92QT7SSbNWuR8k6iMIHC/6A==","signatures":[{"sig":"MEUCIQCpLK1O1fXFHuy+Ov36siLYQBbhXWtUU+zuYkmAWJqOygIgFhOwTbr8fZr6QXq6LgLhwK6GxfT1pE0yNb8+i/d8Jho=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017598},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"81c951894e93bdc37c6916f18adcd80de76679bc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250519_1747638905267_0.09212299024268722","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250520":{"name":"typescript","version":"5.9.0-dev.20250520","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250520","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9dbb024887099f8539816d2e0900d1c9ffd76896","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250520.tgz","fileCount":130,"integrity":"sha512-2xyK59gIyyjHf2/QKcjNXKhLt/Haj9N4D+YPUgDBlzFzuGMH0s8vLU4kkSAlYx4YHKW8pgKRaj3VJzr42XCF3g==","signatures":[{"sig":"MEQCIGCLbmxvwoZcDXAbGiWOiNS9Ag8SmJprEyKNICCEzeSMAiAeDAWHkd4N773IDBmfKvXH9eCAYnZn3m7Ia8jJaIOpyQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017598},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"81c951894e93bdc37c6916f18adcd80de76679bc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250520_1747725293518_0.5898759959704849","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250521":{"name":"typescript","version":"5.9.0-dev.20250521","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250521","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"88cf9860200cbdf92462e0be003c997d4c9fb70a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250521.tgz","fileCount":130,"integrity":"sha512-wxrj9XlTy2D5iqAPWHWKgnXGkHVTgouDmMPhGrxqcX1z5STJKqDCXnebUFKM7xXahfEPtWFIyN7ouyg2G56e7g==","signatures":[{"sig":"MEYCIQCK/vHx10CKN0nBcPNcoU5B82Dt7wgovW9/QK5N4TChkwIhAMNc6iKHmPW5J8yj3pGXpVl9cdVKnDkW4vvWdlOQ6I9B","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017598},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"81c951894e93bdc37c6916f18adcd80de76679bc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250521_1747811695083_0.5057648244802644","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250522":{"name":"typescript","version":"5.9.0-dev.20250522","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250522","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"minestarks","email":"mineyalc@microsoft.com"},{"name":"rbuckton","email":"rbuckton@chronicles.org"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d8da38af616a529b0d5ef5bc5f3607ab157ad322","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250522.tgz","fileCount":130,"integrity":"sha512-5zi45joB4lxgbZokE23gOC139Blh5v/yOBqjO+mXURkJiDsEkfV/JJmTKyMpI8W7wnIx6H7Nyd9zxYOntclNZw==","signatures":[{"sig":"MEYCIQD0mTMOSg8Vw0WXgyVjfBvwq5Yag38/iBkS12ZyLe8w/AIhANySbUMZm2SHtGu0e+ajqjG8KfkrnWFYm4mitmOtatW0","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250522_1747898125795_0.0702188707407887","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250523":{"name":"typescript","version":"5.9.0-dev.20250523","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250523","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ff5f55fd70f945fc5436610ec23b870fdb960843","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250523.tgz","fileCount":130,"integrity":"sha512-igDelnnCrlPHezUmn1QseV7BBn7bITue651a+X+JSKkBDwrvyy5vqd1G6dvM3vrc4PlInB5F6jQDp/23kg9ZEA==","signatures":[{"sig":"MEUCICXKZXitK67xoLD7aUWbeFGGeKQYWIhtApePUk7a2M0NAiEAgygehPp7HYeeapP31HIbOxJAQifiQ1gIm7cQfZnhrMM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250523_1747984490740_0.38919940700759525","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250524":{"name":"typescript","version":"5.9.0-dev.20250524","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250524","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c691e6e27f81bb20ea670eaf1a928eb079e684c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250524.tgz","fileCount":130,"integrity":"sha512-wEMcjkEkxcTfKH+wQ4zB1Ah+OL1/kAF7I2AYJws9O/A4pdookPvsibY6DApqn0bbCTJmY9mVDoilPOU4cSvp7w==","signatures":[{"sig":"MEQCIBv3KqP99Vzq/lEFcfm7YvPvz9PKX/LF4KDzyKOyC+E5AiB0RILiTc+cC7UNsSZtrT534PWcy/pPm+xhYMhkuZynFg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250524_1748070886283_0.7590209645594121","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250525":{"name":"typescript","version":"5.9.0-dev.20250525","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250525","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d4f271cc4b97db636f65a84f105d06ae0e300ddf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250525.tgz","fileCount":130,"integrity":"sha512-C5nvU5aYBSr/sPMlp+P50fu6VY8m+7EmVSlN+XKGLZnJLL0Lu7tfRSsg1clT5gVpXD14WhntVVEGYEJoJNdAGQ==","signatures":[{"sig":"MEUCIH5ZwhbhUpQjZLmrvtzeC8YrYanr4Q0pe+jBZKCmgeBTAiEAqYCQP/L8aEob1aCZpo+XIAojMT4sgjrSnVoguxXmQNM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250525_1748157313376_0.1271971110949135","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250527":{"name":"typescript","version":"5.9.0-dev.20250527","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250527","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eac385f81b5f986acd528ed189b40cdab824436f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250527.tgz","fileCount":130,"integrity":"sha512-CzzHdGXY6Jaius2pfLFpq3nbFwr+JOrU2PoyhYVrvprM6kV2osi5g4Ee7MPQqwcMvPgrPuveoWHvzZLfVZyKOA==","signatures":[{"sig":"MEQCIEmYDSoXNu9XGH4HxwgRojBtx9c9ErAtAAxU1L2fnk4hAiBXSOxRbiTQSHgcQZmk5jr/VmCqa6vyP9rB5VagXNLsAg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250527_1748330094766_0.8023641403308521","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250528":{"name":"typescript","version":"5.9.0-dev.20250528","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250528","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b40fcb2f096f6202b3b2fb1a0c6529ac4885ec6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250528.tgz","fileCount":130,"integrity":"sha512-KfPODG6ctXNp/OlopYV4G5Jn/jf2DBVAiwm7guVjnGSMz5XwR96r2+lc5WceGe5bIAvcpRqcOb1fonqpU1lDtg==","signatures":[{"sig":"MEUCIDUVqJVVADwlUF+ZL6O9Ta+jGC6XTJfRC2yrGX/6p/HyAiEAoZ7iGJo+D9w76qaKOxtV0D9tvf37lKWhoV3mZQXPE7Y=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250528_1748416513352_0.7420615968979429","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250529":{"name":"typescript","version":"5.9.0-dev.20250529","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250529","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"32d85e6610374ca51008259ce1e55a00bf177913","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250529.tgz","fileCount":130,"integrity":"sha512-rMZKxnN0VMKsaD1YlzrKAlOWTP9YIolQfL4yDj5ujxcUupb59UQQo8aRfhmobzuWAMww60jsmwxN6oQ8L78JWQ==","signatures":[{"sig":"MEUCIQCqNT+MaleQLPOucE1QCFSLGw69Lq8yKkOoEXMbB7aQgwIgeRsb5rEfsqh+0lqEIFX9EdvT36j1I/bshHsIt7FgEmc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250529_1748502912259_0.5309775241302348","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250530":{"name":"typescript","version":"5.9.0-dev.20250530","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250530","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ad78eab6410bbd883af0b3fb52c1cf681352e711","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250530.tgz","fileCount":130,"integrity":"sha512-iYWiBkC2nxsgiAHCMOuVe0b0i2ux6lMb8JGr7yu6ybgC/xtx+lVlBXiSPB98WlPWiq4BHnAyNosTV3VaHQ4YDA==","signatures":[{"sig":"MEYCIQCMJV3yAvvjVVWPG+uQg75EWWg8DkRMFfBndAUbCpf0rAIhAIwIkxq7ZuRX7C9QasbOVdV+D/aVdbS/bqNQ8BhEP9jJ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250530_1748589293070_0.0182005029992085","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250531":{"name":"typescript","version":"5.9.0-dev.20250531","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250531","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8cb9ef384fad63b30207337f94b2aaffa6b1f829","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250531.tgz","fileCount":130,"integrity":"sha512-my0nFL3dnyyAIina0fAVRdd0vHwtJURBNLlGpXvQY558cXlK2+MhiUtK912D01WVxstQPyf+FqMTM2UX6JzIrw==","signatures":[{"sig":"MEQCIGZ81flZNWKfBFeIF3SpMWhtM/9tnJ64qcKneyA6Lk9tAiAjPrxL4WkZNZB2x4Uswni5msX1Iuad5GbtTcm3FXer0A==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250531_1748675689413_0.568600428278186","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250601":{"name":"typescript","version":"5.9.0-dev.20250601","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250601","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f2c3505e08363890f9a9a5f7217568b92bd394ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250601.tgz","fileCount":130,"integrity":"sha512-SY5EzBm1LhXSXXcHNp6QTAQqJ3+cE1ocZHiaejNCjNuQ4OjwyQrG+1eD/KHjfvpf9xXbWyTDQqYeUReWownp9Q==","signatures":[{"sig":"MEUCIQD5jA5oLfdryqY5qsCCiu6ZFu4UphV2DiO/NiacJPlb6QIgKJCqi7L0w4f89V3kE5r3jEF30GiUtTPW5jPy+5WTFwM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250601_1748762098147_0.665759782654946","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250602":{"name":"typescript","version":"5.9.0-dev.20250602","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250602","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"70b3fecd9f6575fdead3018d5e4befb082de0384","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250602.tgz","fileCount":130,"integrity":"sha512-sAY1ty68+VK+42Qa0grNaydgqeQLyLJp1dcFGRlAKQFEgzch3mCncaC0Kr9tk4Nks2UTWOteY5/LlaOnbvD6kA==","signatures":[{"sig":"MEUCIQChEIoWugH+b0yEQ9bnlggv6qBDDCxU6ghKBQXakp2xtAIgcZupkkS2JkLKmM9EBmzis1O3wUrAMXcS2DUMeSEe8ho=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250602_1748848496745_0.8927723045121314","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250603":{"name":"typescript","version":"5.9.0-dev.20250603","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250603","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c69b9f94b0a4eaef01ad0b821eae195509ef7b90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250603.tgz","fileCount":130,"integrity":"sha512-RRJ56Yh0Mvfzqa40BEJJLEVclgGLZ6eNrp01Ihmn8qIP1XMjhwtUlq80JPSN36NryiUqn0XAzUp31+T/B9n9Fg==","signatures":[{"sig":"MEYCIQDUOwVfn7JsE/27e3lUtduvkz+vq0w5sR1T7EFevh8ngwIhAIqsXbRe7ULxUh2i9aOVl9Tvvuqb50CG7ZuTbosjScBQ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b504a1eed45e35b5f54694a1e0a09f35d0a5663c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250603_1748934911980_0.5071961619385839","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250604":{"name":"typescript","version":"5.9.0-dev.20250604","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250604","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"467f7de94a6a147cdcb90f63f668826117ad2b4c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250604.tgz","fileCount":130,"integrity":"sha512-a5aTDk5/loTfT1QjiW6KFuqTdGl/wXngRWGX60MdTAq+xzKKZmspKbcRPo2tVMWFK1omYIH3UF/WmN0nsSALlw==","signatures":[{"sig":"MEYCIQDB2ZG5w7rwnWCYx1ZnEcqQvjmg0WzzrzVwZdxFPAp/TgIhAKu3qikihw366sD3aGnQRNytVaG+gTrCPWbnE0gWyHIo","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23017797},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"44d46714c81e0cadf9067cc32b649c63d2a4f436","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250604_1749021317000_0.32544719821529555","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250605":{"name":"typescript","version":"5.9.0-dev.20250605","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250605","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6b31fd4a943c1e57655dceaa2a9975b3ef48be29","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250605.tgz","fileCount":130,"integrity":"sha512-a/s8nsknZ9NxxmcE94ohzaJ/tIrAJ8wAGVZ+LoH+5oPEbCKnQKI74AQM6710wSebu0MvbT57uKWnM1vdmEG3Nw==","signatures":[{"sig":"MEUCIQCsFCoIZL4QW16ld+jLneiHeRLfVbuIEw8uuVnTBs4QewIgSmiBQ1PrD10Y2MEsIqykNWMzNGryir0tQ6jJHiJthXc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23015925},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2b88aebaaae3dc431a56667f7b0dbc42ae329ec6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250605_1749107733116_0.6072183966977682","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250606":{"name":"typescript","version":"5.9.0-dev.20250606","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250606","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1e36a7fb5b023cd1802ad23e0987aed086052940","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250606.tgz","fileCount":130,"integrity":"sha512-JnY9ELdZTJieox3hpAM0JKNIT8HXBW/hzjWIvQFX4YEOqDF8rz5eDu7VHeOFnMr1vSiz4yn6bhR9acfX5Ak4CA==","signatures":[{"sig":"MEYCIQCZItJfd08AZJdQc94QfwzNyRS9ei7c7CBU+cTCpwyzqQIhAJaRU6inKl+zB6r7rpqRSlhKFjwyJQy/ALJB5swCWITb","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23016694},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ac03ba4f021fce5a78bcdde39952879d0a4f35eb","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250606_1749194157392_0.8552371194535118","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250607":{"name":"typescript","version":"5.9.0-dev.20250607","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250607","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0bb6a925df44f032e5a71c681233cc9fd2e74a00","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250607.tgz","fileCount":132,"integrity":"sha512-dUSNs2Bf95yygJlbVPpfmewNZXdE9nzDn01LESpeLfO9sI1WDiS4TfZVoDk41Y5xVLV6Htxyl0WeHDGs+g9hyA==","signatures":[{"sig":"MEQCIAxGhSg4UDZSUuvIg6zz9VQXsEKc2RsQ2UyplNk/QEUaAiBF61jWh7iVAViPy/mXnZxjOWSpoK3IPvjmhb0Pl8yjcw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23034680},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"355b9e0984671f7eea9040f0ac8b68c16361729a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250607_1749280488292_0.6903977131531625","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250608":{"name":"typescript","version":"5.9.0-dev.20250608","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250608","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7ede51ea5f99d94e67f95700e69e501696123c39","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250608.tgz","fileCount":132,"integrity":"sha512-bHhoHdKqMJ84XQiG+qLt1zhQHVGjtonvT+xQjE2ItGF53gPn+Gu+oJNPIkcs722DrIgOmiOoe1HpQ2SsuwyXPQ==","signatures":[{"sig":"MEUCIGNTMgQ9GeWBaJT6PxCBkSlDxS3mzEmqo5Tcs9K5+IcEAiEAoH6t/5xIknm73Jga4G8jsFvTU7VpmIsgxNJRMSldG1E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23034680},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"355b9e0984671f7eea9040f0ac8b68c16361729a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250608_1749366924554_0.9763132725950145","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250609":{"name":"typescript","version":"5.9.0-dev.20250609","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250609","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0fc8eeb36f640c2d5aae3245dbdd926c0cb52cf0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250609.tgz","fileCount":132,"integrity":"sha512-uRfj5CPGwjzIvCROyYrAUVkkbR3roTbDBx+jDRaaHsJ95ugiCKNrMVr2LwOqAemF5UnYJS8pRFRUVnPOX+xISA==","signatures":[{"sig":"MEQCIHBghXtKkkElz0WxjaxemPhsv8V87oEx39ZfCKPcFynHAiBrbIbW7vNenCD+PRkKXxz7Ow2j/tKHpiFuDsWZe75uQA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23034680},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"355b9e0984671f7eea9040f0ac8b68c16361729a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.15.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250609_1749453330997_0.589493712146355","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250610":{"name":"typescript","version":"5.9.0-dev.20250610","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250610","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21cf211970d2183b89a7ed1005fa43c2b655e055","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250610.tgz","fileCount":132,"integrity":"sha512-jvHWZeBl3xNkveo2FMtA6ZHFb8D5CjNVU5qbI/yzpkvUzEFcqwDhKK9FaprSxupsb/V2cdMXsV0u2DMnrsfD9A==","signatures":[{"sig":"MEYCIQDh72W0/KsA8URh3v5x9idVW43C9BQAsfq+jZrA9SjafQIhAM/GJR3AO9rCuAut0ljYcWfHxzFQMFzPfzG2MiVhYhZ2","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23036166},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"12e09f44f68155b2b6aac30dddbfbc25b96c5197","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250610_1749539719356_0.005452562100723535","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250611":{"name":"typescript","version":"5.9.0-dev.20250611","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250611","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f9abd97680840dd1a608c3a343b389841decf8fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250611.tgz","fileCount":132,"integrity":"sha512-CdCxcg/8wRFKomkzrXGmChrv6rf57moU8M1eBlGDjlYqDeFxfhCSO6pmxJxTdPGax132Fgu16VVDOKc8UfoJmQ==","signatures":[{"sig":"MEUCIHa4OQh4p65VGjLKb6L78kgpi+Isg8yQYgFX4qvUBT4SAiEA1RMIQadeyeMg8BCP/j76nmOfIOl17QdTJvQdSBrtOJ4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23036166},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"12e09f44f68155b2b6aac30dddbfbc25b96c5197","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250611_1749626170362_0.8747247144167469","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250612":{"name":"typescript","version":"5.9.0-dev.20250612","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250612","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"036211014a066c7d5007bf957dbdfe5f2376b00e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250612.tgz","fileCount":132,"integrity":"sha512-cZhYUDxc0Pzt9jR6kBzoApPUPDQt4GgLTtR2ejhbJB571tZ8j7vwwYm21MMcYWaX+MPhymsHu5h8QTEmbVHHrw==","signatures":[{"sig":"MEUCIQDTBTiEubBqIL6n7yZtA2TVHn0zrX6FH41c+jDZA1f5QwIgXfDTgcForwJK3QOgqQ6MgHcUzArbxhjKZ8BY5TZq5E8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23056834},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"dd1e258ba56f1b511879372c857fb625de3dec4a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250612_1749712517045_0.025491680009454676","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250613":{"name":"typescript","version":"5.9.0-dev.20250613","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250613","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"34a642febe8f333102a8ba7fa8bc8106ae5d6510","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250613.tgz","fileCount":132,"integrity":"sha512-5bzU//x0svUVjUCMlHRG7IassWFQ7/dofYXqSSbQpQ8a1Kh/GqIsvfc2CQIS+EpYrdoHaNLroxmlsLNsqLXaww==","signatures":[{"sig":"MEQCIDCx6+fk0OFdDQULtltp2iYPL2ZlYPkIbk8Sbhhf3WgCAiALyL0m/s1nBsO2EJrkMYhJgVdUoYGPTDGBAWy6P58h7Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23056834},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"dd1e258ba56f1b511879372c857fb625de3dec4a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250613_1749798907745_0.7735965285120836","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250614":{"name":"typescript","version":"5.9.0-dev.20250614","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250614","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0af3e0e8615cf4cd690777e276ebe7c4d2f35b04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250614.tgz","fileCount":132,"integrity":"sha512-0rMotSsVzHC3dYFzE6XQ2hdHtKVNHoVr8ydEJ0cBpCHEKK2Jn4YhN+SyY3x1xeKViJzhbh54PkiiGcRh+oAA5w==","signatures":[{"sig":"MEUCIQCANsdShY7k8K7AcRm4rHsV9BGIZWUFDAfn7OsHyIGxlwIgPdNC5EQlssDXipHQ02Ys8pNEb3gDqOD0ng8BB55YVg0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23056834},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"dd1e258ba56f1b511879372c857fb625de3dec4a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250614_1749885328934_0.3876393106848828","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250615":{"name":"typescript","version":"5.9.0-dev.20250615","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250615","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4b77d366fa172df94b85cc43909883578f121466","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250615.tgz","fileCount":132,"integrity":"sha512-PR5uQRPK/3pSZhQSZS6/6pL6E9k8YOGNYJLeB1jkxZ7U+O5LV7zWX15BVOuU2c7PcyHmAew53esK+79y+xfv2Q==","signatures":[{"sig":"MEYCIQChejgm7oO5P2n9x8LyDDWjFnm3Q1PPWFAbTvMBhp23ZgIhAIiVIOVjUCRgaY/MA9MiInwEJG0yy+Zg+CGMAPZW72Ot","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23056834},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"dd1e258ba56f1b511879372c857fb625de3dec4a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250615_1749971699891_0.028100526577347962","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250616":{"name":"typescript","version":"5.9.0-dev.20250616","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250616","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4be1cbebcb1489fee3d6228d6cd94803fb8bb1a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250616.tgz","fileCount":132,"integrity":"sha512-TdYn1diKBbeAZIOI2A23QYCVrMdwj4AhDPE9kdenLxqVFVfFB+CADDXUi+4f91RQie1QEw6RcmmL32FXu7jE+Q==","signatures":[{"sig":"MEUCIH+CfwbFnpSuMiS/dhKlxnBRLJlwvrYItyBbdVqFzFHtAiEAwHo43zqCLNQvRn28ZgQzMknT01YJ/z5WIN9UN6eXRvU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23056834},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"dd1e258ba56f1b511879372c857fb625de3dec4a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250616_1750058206941_0.3294075067901918","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250617":{"name":"typescript","version":"5.9.0-dev.20250617","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250617","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"06de02a40e6c93449b990b68979af5f3c2d8fbc6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250617.tgz","fileCount":132,"integrity":"sha512-qDyWesWm3gzLs7IxhSeoKvQqcMzCpsXbORlKPXOxaXFgWzAcVYDvf9mh6NRK3spOcedjnJaVinMZ/YbJoZ2duA==","signatures":[{"sig":"MEUCIQDN5CGQDstW+H0gnt2bd5UXe89dlyNbYOvUpINdn8bXJAIgBUS6IdXoMyKtM1j/bVqT3gADKThyLlXnKMFltrKTxsA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23056834},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"dd1e258ba56f1b511879372c857fb625de3dec4a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250617_1750144570520_0.10407491219151144","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250618":{"name":"typescript","version":"5.9.0-dev.20250618","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250618","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"87fb47ab2c1a6bb48446b4033d2a2fef90920a6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250618.tgz","fileCount":132,"integrity":"sha512-HZlqRlevG0h8fkuhVeR9rCZaPVjE8c39YdLDdLgWX3wGFSM57Ijl69IXH9i/oiSOFg9zlawSLYxNNgPbNVva5Q==","signatures":[{"sig":"MEQCIHqvBevkEp86ye48FFdZyTIJcujKC/dF516etmqM2JWXAiA2JjX058/rgmVzGI8gyG9rN1MYsfuFbuILZUrwG1pj6Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23058053},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f1d2494e91a7ce04feace304d1a3bce36ba8746a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250618_1750230914473_0.28881619981949336","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250619":{"name":"typescript","version":"5.9.0-dev.20250619","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250619","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8a25d3acca5b24d8e1ac1e338b411a04009f9732","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250619.tgz","fileCount":132,"integrity":"sha512-asBVu6JAhSwskw0GI7kzAKOVs7Z+IBWwRjo3M0JjW9C9FWdZanhlsMwWEYS6GX9uova00Sa8hk153DDqnYsZJg==","signatures":[{"sig":"MEUCIQDLo6YRGKfaMM8wRSqE448JepkokhLbYQjflL0F3wVxHwIgRmeN9APmi3vStW1dnfnVv+1MhkYEWajVGgvm2nU/89Y=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23058712},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"479285d0ac293c35a926508d17f0bb5eca7e0303","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250619_1750317346543_0.11160314692545747","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250620":{"name":"typescript","version":"5.9.0-dev.20250620","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250620","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d52c173864aee4837c47b3ef272ce236addc7b91","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250620.tgz","fileCount":132,"integrity":"sha512-vygbmVLyKVVxt2WSESYWm7q90Yw8QnVDng975KCIhvtLUssife6EHslvLchNPiCxGLNDs5XmBJPzcXx/qFbNiw==","signatures":[{"sig":"MEYCIQDNnro7Bd6rl2eolDESWlNNLD0/TNg0LlHWGGaf2GDfrQIhALXkb59Kxg3P8yUvIt+s3czIdctaqF2Ztfo+TsRIbcYu","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23058712},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"479285d0ac293c35a926508d17f0bb5eca7e0303","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250620_1750403726099_0.9132036041571299","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250621":{"name":"typescript","version":"5.9.0-dev.20250621","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250621","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cd3a8731bba7b48652cd2824a01a6004eff84e0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250621.tgz","fileCount":132,"integrity":"sha512-V0LmjpDr8KWwBbse5IrOllZP1+baQakeh0RIpyZvxbRonTk7VhffVyREGAJ+uvSve8xUUAnF6unnsd9I5wVjVg==","signatures":[{"sig":"MEUCIQCdmZWVjR5iZoQYBMVIyjdoAL1b+FR8YzVecBsUuV1GggIgCqSIiOh3u63NXRhXtvOsWUk+v8Tq6uiZUkxDn9PEoGk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23058712},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"479285d0ac293c35a926508d17f0bb5eca7e0303","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250621_1750490130796_0.8007804265678475","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250622":{"name":"typescript","version":"5.9.0-dev.20250622","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250622","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0e8da6929fd9319375592140b1790e25d706967c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250622.tgz","fileCount":132,"integrity":"sha512-mWrXJG6VmD9L3x2SHuCpbXXvNmI1BYb9jE4DRFrL9NjKB1v1tMszPjHfyQNvJRlsPrToezncytZ/8YRS2X4yGg==","signatures":[{"sig":"MEQCIBIYte/6VObSl0rapaYlbg7lb/KKZXkeN0L8BhMNahi3AiB3TfDZ7EyOZ2p0B8IoPgGkuZLtckEWrf6Xq6lecYCWAg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23058712},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"479285d0ac293c35a926508d17f0bb5eca7e0303","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250622_1750576499172_0.13367636634091462","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250623":{"name":"typescript","version":"5.9.0-dev.20250623","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250623","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c85fb54f596adb47efe10996f41c2964c550e6c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250623.tgz","fileCount":132,"integrity":"sha512-GAB5O3HdLieu0gYjeDknnqsbFJxJkKawGJRNrY+1E2Zuzh+fQX2d/VwPXmnY7mU1HQUjka/tCcSc5ZXbSFy1Lw==","signatures":[{"sig":"MEQCICaZRjN23u7ZMh6KyBI6GkBxavZZlaZAsLOlnPmSFCbZAiAQLJy72abvkqOTgYQFejPdO8EPj1gsmnYYQEr+w3MNnQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23058712},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"479285d0ac293c35a926508d17f0bb5eca7e0303","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250623_1750662991990_0.7298769712734972","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250624":{"name":"typescript","version":"5.9.0-dev.20250624","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250624","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"afffe0b4ab0833338e005ad116ffe9405f917a20","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250624.tgz","fileCount":132,"integrity":"sha512-+HBs5I88TpLC3f93I7YG5uLzotT0WyQYz94Z0PRuX6OV16gopRhzvlDqBuLRZcI+8PaloKZuBhRPms4xx219Vw==","signatures":[{"sig":"MEUCIA+34nm74zjHlgesGjT/6v75WFIUlldiAFs+/C05CEH3AiEA7oWOkXYtltG0dgnhaClHYJE1f58a1DmXNpMzfafecZg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23058652},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"78c16795cdee70b9d9f0f248b6dbb6ba50994a59","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250624_1750749339221_0.9268584584527486","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250625":{"name":"typescript","version":"5.9.0-dev.20250625","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250625","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2749dcc48217ee9efdc30cbc335278b6bed56ca4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250625.tgz","fileCount":132,"integrity":"sha512-R8nfDUG0gKBeLX8Fbn4tHv+9zOY13eYLiSh2VShmPuk/U98r73WrS3ioc6TgZT4zfEFkgZKOT9jryqzgE0KX+w==","signatures":[{"sig":"MEQCIDbJLr3j48qchhZWpJ960qPR0YyGpxhpb3bbLs5eHSuOAiAim5kgDfNwbL0uh2brhFlO0Ag3YWX3y5DsvUDQU0we6A==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23059510},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e6a50a78619632bba7af4f23b2e7e4940b9cf788","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250625_1750835767213_0.37025665361651705","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250626":{"name":"typescript","version":"5.9.0-dev.20250626","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250626","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a805b84f2769979c985d0ef94b561383e9734e8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250626.tgz","fileCount":132,"integrity":"sha512-ARBArFl0en7fW2nvwodltEgG06wBzp/sAsyBWl7NLpSQ5ruG7fNqL1mRi9pqa1cWSrWTyK00qkfJ0atLIlhWXA==","signatures":[{"sig":"MEUCIQDUYgtsessvtA9o9tieSGT6EwQ6YWAxJuGrCwRTcALp/gIgHiNmcg9OVl5/bNmAqlgUZRIPzk2lfs/mlb1twNYFvXI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23060004},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"02672d281c26e561708127da1d8d1a6cae45fee2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250626_1750922138117_0.9795960197392262","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250627":{"name":"typescript","version":"5.9.0-dev.20250627","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250627","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c02b46839b1cae3a1edb0997bb7de3e5aa610b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250627.tgz","fileCount":132,"integrity":"sha512-n7wdvVxhuW09BNqXJf5zaEOEPWMdtd3gK6/eMfr8GNi4dC2qIwjEBxwR4QTPdtdNmAdNc2o5zXRKY9+Zyvt74w==","signatures":[{"sig":"MEQCIHBN8aXwrDLxnbBok/RlNaNllUWOosFGOtCFk7LZEU32AiADmXRC/b27/hXyTmx4BD8okeUIhhK0i5Dk0mz4iYK9HA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23060004},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"02672d281c26e561708127da1d8d1a6cae45fee2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250627_1751008514052_0.3692430420423958","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250628":{"name":"typescript","version":"5.9.0-dev.20250628","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250628","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0721245cfcb3fb84719e1653d2e503a4eec06cde","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250628.tgz","fileCount":132,"integrity":"sha512-1lCHR/ZaUfMZJFxqvAy1/1EPenh8DIFPai5+PDLh3NVmq6xdvf+yBtQ/mCP7TMA5k+kmowXHY4UA5aJkpzPD2g==","signatures":[{"sig":"MEQCIBefhKyTV81U/ufUQELLQGHL+z4Idsrix33TFkgtzgbQAiA9GIt18hfNWWWSOpRy26b13vyMM7Fc8oUdrlKMw5zGrA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23060612},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"efeb135c6f5cf2c0bc8c2569687225d40798566d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250628_1751094904377_0.30714817319646603","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250629":{"name":"typescript","version":"5.9.0-dev.20250629","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250629","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"408579dabec8c3beda4b26be20d4248b7ca14115","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250629.tgz","fileCount":132,"integrity":"sha512-GJKLIHDZbZsJe5DxHrrnwNRGDOMYopm5emOF+RbqYfjKDW/IBcITQF5mypVAxROYJ04Oh4DbcM4kiCH5qMfJYA==","signatures":[{"sig":"MEUCIQDNJEXwYof6z2+UVba/jHTzXSPvQFNiACUNeS4CoQ35MgIgD+O/+owIKZeytRzt28V4UZSfWnL0PGABDMtH7HrQ+b0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23060612},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"efeb135c6f5cf2c0bc8c2569687225d40798566d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250629_1751181284350_0.7781602832491157","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250630":{"name":"typescript","version":"5.9.0-dev.20250630","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250630","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f9c21e416230168f4177a978b5ed7e587823c41","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250630.tgz","fileCount":132,"integrity":"sha512-Bjy0Jf/Zzzo+ho6+uRZt3CbhgOCpcvQLJehfDt4jQyaFnTETWeqNefGCy6q/YKyo0u4elifDhfK6xm+cbHCQwA==","signatures":[{"sig":"MEYCIQC5riTxOWhvldske1HKSMX6MWOKKQjayKfFsenC7YS6sgIhAItTtBwGV7JxoLcRzdEMM3PKhpBvvl3GtqnXTghzHI6u","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23060612},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"dfb74889780c1df7d0aeed1b32109142a6a2a09c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250630_1751267762285_0.2788759838243082","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250701":{"name":"typescript","version":"5.9.0-dev.20250701","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250701","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"583c6a4fc15168fa3f787f9e7ba22ed83dfedad6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250701.tgz","fileCount":132,"integrity":"sha512-TtZKNQd38W4wG/b8PnH61MLaf+6RATJyZXL1MRPjqQkpzwGV/sZg10GxYavmKXwHlx+MSJ9zLnFJ/FwNsqjnZQ==","signatures":[{"sig":"MEUCIQCbtQQ50tAzdqke7v+sNbkjlZMgWykkAWm3hkGvy/hbtwIgVAjjlAf7MA2b84FMR+rlA/LcVRN+L1nhuKZkkeMolIg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23068992},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3ba257fface990ec5ec59fa2bb8edd7a721e1013","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250701_1751354169275_0.6317896325537409","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250702":{"name":"typescript","version":"5.9.0-dev.20250702","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250702","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1cdab1d948fd74293150c1b6ee1a29d45b0224cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250702.tgz","fileCount":132,"integrity":"sha512-Qi2JC1TaAuDW62spVXK/hQoqdVQ6VEFgoJYgDwICyWS0Itvas4Sub8rbacMVbXrHveKQ4bWZ9/XlY+2JNkVj5A==","signatures":[{"sig":"MEUCIC0pWvSOjWnQojx44+3TnflbKWxeIJPAhFfDraAzoDsWAiEA2kBqImT4DbyzLrOmgACtXbkI9w4OMX2Lf8/b/qGP+Kc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23617156},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"441655c270069e6c5cc6d989859afa232d5dafcb","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250702_1751440531166_0.17901545460899593","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250703":{"name":"typescript","version":"5.9.0-dev.20250703","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250703","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cafe5b7b23721ed39da608c12a3641bb4ce6704c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250703.tgz","fileCount":132,"integrity":"sha512-ac492CXzUYoECS3nNBMbNJl1sCGdoRq8TRmUCRPrcJjzwcMwtnCxzG/J1klso6DQm1vBrOMouMN5MW0wqvP95w==","signatures":[{"sig":"MEYCIQCFcBxXYq0gwuec56fpMBLiYBP/rO52b0FsGbFxW9rloAIhAPds/HTbDRpF+ZhIc+dipOgABNg1cx92tHBoG5QTRsD2","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23618689},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"833a8d492c728d606454865e8c0fee84842f9f10","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250703_1751526976239_0.6826025921838443","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250704":{"name":"typescript","version":"5.9.0-dev.20250704","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250704","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"84445ff28cd89086153f3adc9184e70b07d24f3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250704.tgz","fileCount":132,"integrity":"sha512-56BbUWejdEQZqyUmJQ5yc8tzznfYZnAcgeVV4BVg5xVDzJxPK/Du0ET+DLcgrKDQr8P0ByG8WdLAPaqFip5SOQ==","signatures":[{"sig":"MEUCIQCibyyo/JJ/ikS2QXu61d4IdIZ70wWY+f7+P20pXKiKaQIgJdr84uxxELaYeTCVN3CelhTqY1zzWgllrYUDhnCGKGE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23618689},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"833a8d492c728d606454865e8c0fee84842f9f10","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250704_1751613366268_0.9969962211536747","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250705":{"name":"typescript","version":"5.9.0-dev.20250705","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250705","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8ced48d10437d33592c45a77655948bb65d9ea57","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250705.tgz","fileCount":132,"integrity":"sha512-oHbf7J1l+BdBh8Ou1Wpam8BcXHPp6OmXLCHF8/OONtQ+kgLYni0+JdakM2tI9SMu2s4UkaOLODCnFM1BrsXkyw==","signatures":[{"sig":"MEUCIED9DXYaEcJaOVyNXw3WCymKnMeiD/zmmHP1I6fWuC4WAiEAlrVpzrw/kuVVEsGiAaVjKHgKHYSiUH4OuKZ7VsDj/IE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23618689},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"833a8d492c728d606454865e8c0fee84842f9f10","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250705_1751699698601_0.32323720201906503","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250706":{"name":"typescript","version":"5.9.0-dev.20250706","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250706","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5da48f74f2e1eb57297e82159a67db25d1eccda7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250706.tgz","fileCount":132,"integrity":"sha512-fXoCkcE9kL5LVu74dK+AbnT8uzSt5dh29VvLd8c4/8zz/grdKunB9dcxRSU9Eongwt3N89hTRuPN74CQFF5VHg==","signatures":[{"sig":"MEUCICyaL7fpKZqEUwQewYQem0eQkqQhckl0Dm+eC1uD28h7AiEA40/rrBgjVFGjhl4h6lK/aFlrcwqhMV7t7bZFbIz+WXw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23618689},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"833a8d492c728d606454865e8c0fee84842f9f10","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250706_1751786091015_0.22276190733553336","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250707":{"name":"typescript","version":"5.9.0-dev.20250707","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250707","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ad3d00a08b7b1cab50262801f2057315338aff0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250707.tgz","fileCount":132,"integrity":"sha512-aLNq2y90Rk+gkNN2ptDQOoA4IeCnpEDoMMkz0o4jZcVC7fEeYAwgJ3Z+c2G9//TCukY8IvXGu0Jbfp2FtvdcFQ==","signatures":[{"sig":"MEYCIQDBQZintgsHj/vmTHDq/E5lOSuoHYCt7kMy0tjDRiQRDQIhALs0Xt6d1Ue+to0c+/o7KJ8q03nOTjwgQt+SL6U9+fC8","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23618689},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"833a8d492c728d606454865e8c0fee84842f9f10","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250707_1751872628136_0.14573178415547638","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250708":{"name":"typescript","version":"5.9.0-dev.20250708","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250708","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f426e8c49e18ae168ef113050c23cf05b60746d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250708.tgz","fileCount":132,"integrity":"sha512-oty0f01wlyzxDAoziMwLVsNimzmHTC7j4RX6nZnX20xCHimdFnjMGdY8RuYqCe2XRU5ITe1wBGYamSeQgSPHbA==","signatures":[{"sig":"MEYCIQCDHTqVo3eR0bQvBa9GJAwIgSdxRYlIO/dgix3MV6pLlgIhAKSdPrhZHbIch567C+Hl76iRoSUDdZvKTHB3qGV1sg8F","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23619218},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"87740bc7fe3d8d2af47d767db081491f40b8a90d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.16.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250708_1751958966490_0.2386694796821187","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-beta":{"name":"typescript","version":"5.9.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-beta","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c99c8eaa4466875425f90f71d0ceb97a75245e7e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-beta.tgz","fileCount":132,"integrity":"sha512-p91qoTdwWKj9YEBYavmGiBn0DF4OBElzw4pW4oPbK4HeCfr/SDz9+yviVWshZXGvGvFCJ3AVQ+J7F1UZXc23QQ==","signatures":[{"sig":"MEUCID6/jneOsFZsP4UjJF4JKpjXaxTfhRkAArk2Rw1pgxCNAiEAt0+0ZsmVrn++XNuU/FzY0ukvCfeWi359MCoRpUKiMhU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23070463},"main":"./lib/typescript.js","_from":"file:/mnt/vss/_work/1/tgz/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ae9e5da45e864a83b2ecbf9e0e0698fd10d26059","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"_resolved":"/mnt/vss/_work/1/tgz/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-p91qoTdwWKj9YEBYavmGiBn0DF4OBElzw4pW4oPbK4HeCfr/SDz9+yviVWshZXGvGvFCJ3AVQ+J7F1UZXc23QQ==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-beta_1751992376507_0.5619780756747461","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250709":{"name":"typescript","version":"5.9.0-dev.20250709","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250709","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b04395372acb4075d50eb8eaeac0d5d1e3e94ceb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250709.tgz","fileCount":132,"integrity":"sha512-jFYbf3oONI4baNkbWyu3NFW0B3srNY6IvKeQLJHiz+DoEVMXIumhAJD2MmGmJoSf+3W/q5X/ZtJBglnedBCknw==","signatures":[{"sig":"MEUCIQCU0jDGTNXEELf9KDOmkTPQlTrFhykIddRns1JTQAnppAIgWvyu8MfFf5zhuvx/7HkB+HA6wnEtuSpkymNKzN72Sxs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620104},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9e20e032effad965567d4a1e1c30d5433b0a3332","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250709_1752045386466_0.9735560888223795","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250710":{"name":"typescript","version":"5.9.0-dev.20250710","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250710","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"46464224e86796e14352977c7a84df6425a6b8d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250710.tgz","fileCount":132,"integrity":"sha512-tgS/wNghN4Gtqu73dRopkClFLuGEiA6w0QnOKqu6bjOJFBKC4xCHGacXzGXxYMhpJeo9WqEdiqJncxxJDkaDcw==","signatures":[{"sig":"MEUCIQDJtyDDqm8KQVNx+NW+xjjLy2hkYN2ZGmvazCE5SXomFgIgOg8m3yF5FhngNrfrViS6sCU3bTTZ3uftaZrsKgAbpro=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620104},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9e20e032effad965567d4a1e1c30d5433b0a3332","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","actor":{"name":"typescript-bot","type":"user","email":"typescript@microsoft.com"},"email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250710_1752131787641_0.48326998465451476","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250711":{"name":"typescript","version":"5.9.0-dev.20250711","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250711","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a9905e3e7ce2df612099138f9f531b9ef9e59264","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250711.tgz","fileCount":132,"integrity":"sha512-HwW+1XkufazY3Aq9DUO6S5UbrsLx4QnsVn/B8PDBlIQWhi/9af23isw7+RI63Y3BadoZzkdUbkX26ojtnGT4Og==","signatures":[{"sig":"MEYCIQCls7hupzBEAMw8wtU9EZqWU5nRK4bO67gHUc3nI/0NyQIhAOlQva5ywkSpVIu3yHG0dgjwDTpsplQ/INGTuwQETb3l","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620268},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"65cb4bd2d52cd882f2c3a503681479eb2ed291ca","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250711_1752218177146_0.7323729523024314","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250712":{"name":"typescript","version":"5.9.0-dev.20250712","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250712","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ddd8e18e028950865c00c2a0f809dc863674d446","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250712.tgz","fileCount":132,"integrity":"sha512-X0LU5E4Od8XKP0H1RuFMIx+JAjP5Ic321mhQ9aZ7zluY7JrOcm5i1km8CSRJ2Laz7xBj+EpCxtNCSHGkSHZAGg==","signatures":[{"sig":"MEUCIQCD+mcgXpTEdxLkLjhTHFu8AVrmtQBypwJ6tKlmAfTRrQIgUWsyW4y2ftNBbPmdWRLj7fJIseyUm/UYq3xZVM/pWWQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620268},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"65cb4bd2d52cd882f2c3a503681479eb2ed291ca","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250712_1752304542110_0.9783117276465216","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250713":{"name":"typescript","version":"5.9.0-dev.20250713","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250713","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fd29c8ec715f71ebbf7b14ae4dd8033f4e9071c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250713.tgz","fileCount":132,"integrity":"sha512-ceM+/ap6h+YQgHmkPiIeTyGYHOUdrlEMbk3Xp6x7KF2+vnrn0Ru25yzP+TrYR+dwOHpg42To5XHshm1+U0iXAw==","signatures":[{"sig":"MEYCIQCt56/QBmm7vInuhrpUUoBpdn2k4RVcpdQCI4QtlrVWugIhAKamVtV2bq1bHT1L3rW9OFIEmQ4o8J44ZQhidPefSJdV","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620268},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"65cb4bd2d52cd882f2c3a503681479eb2ed291ca","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250713_1752390970597_0.3505879856381633","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250714":{"name":"typescript","version":"5.9.0-dev.20250714","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250714","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1e4a7ecaca884a8b80c7f94e5c4c0bc162fc9fff","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250714.tgz","fileCount":132,"integrity":"sha512-bwPEUBqpLyZu/skdNU1zkNggyohtulwmjMzkJKLRZLbMrmgPQuwDeSi4W2qADOI4TA3NMxyYF9gg3HdNTWD8/g==","signatures":[{"sig":"MEUCIQDp7ObPqjSgnjY8EaC5lneVDY7oQ9YXVr6ZhzdNG3e4TwIgaN0OBAQYePR13hZavx7cuN/IJlYBtQz6QWd/aIZH/Po=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620268},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"65cb4bd2d52cd882f2c3a503681479eb2ed291ca","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250714_1752477438277_0.4151569848795744","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250715":{"name":"typescript","version":"5.9.0-dev.20250715","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250715","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"66b8bc700813684de61e59df2ab511131b90cef8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250715.tgz","fileCount":132,"integrity":"sha512-/u7uTrwwct3cXY7lf/nGBFEMcp1ljUVt9PLDrFsuAgdkonzwYf++jthzXTilVOmcai1SIZ90SxqGWB1Feea9vQ==","signatures":[{"sig":"MEYCIQDOrybf5ScsLK40qyPZAtCl/H+KYawfZzvotyMDC22OUQIhAMGzPROPzXDo6395id7veI046QDPHdjmMLfCh7Xhjzee","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620268},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"65cb4bd2d52cd882f2c3a503681479eb2ed291ca","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250715_1752563808590_0.40259011750813367","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250716":{"name":"typescript","version":"5.9.0-dev.20250716","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250716","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7bfe9d924cef110d7a32ae89cd89fb2f36c1028e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250716.tgz","fileCount":132,"integrity":"sha512-wBOPAX99Y5n6c4JF9ZIPy4xrnUDfFmrzOaFoVWGeDAu8cfV3773xfvNMColH3EnaWf8JytB3rgbcLYDE2nhCQw==","signatures":[{"sig":"MEYCIQCw56KcoKAdywbT3CS7ZZQdueMSINA7ZfaxFckipiSM2AIhAOFVpeLdYHQ2qWn4rPmBXIuKEpzpcF+fBXxsNMZtE3tV","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620268},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"65cb4bd2d52cd882f2c3a503681479eb2ed291ca","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250716_1752650285696_0.12208511969293401","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250717":{"name":"typescript","version":"5.9.0-dev.20250717","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250717","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fc22bbda72bb29af70cd99bf0f6458f723ba16a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250717.tgz","fileCount":132,"integrity":"sha512-txdoKMuQg9HgT4dRcGBUrpIXIBMabbBOjVWrS915z/yskIIq7FwGgriVoIlVIVNZP04INeuJw3NEFDnWb1Vzbw==","signatures":[{"sig":"MEYCIQCzqxFpzWM+Xprvg/l7u1LKjnQ7kHAN8AmMWyvg4fj/4wIhAL3QQQ6diysybK+sEzVTLXw46oGFuoekuIhWaWklxFot","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620268},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"65cb4bd2d52cd882f2c3a503681479eb2ed291ca","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250717_1752736636777_0.16085102867353807","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250718":{"name":"typescript","version":"5.9.0-dev.20250718","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250718","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e7002408b7b78c7f0237d6fbc33e3e8a5f93a62a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250718.tgz","fileCount":132,"integrity":"sha512-VsRjgSQKUjHwcQMefT6fTpUUqPCJ689Um+drvdJiS2QdR2si6vn1EpWhaPtNzJr3tgn5EpN/9+KWEUFMankULg==","signatures":[{"sig":"MEYCIQDw5lu2tgy/wVdN3HSaXv/zoRJZW/Lj4KTJRG77ZQktrwIhAP8l4N+Y5Lkv/0zbHvRlATEA+k9lof6+NtD2LbZwS8D7","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620200},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2778e84ed88894156e2c5a17d74a25c73cc96ffe","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250718_1752823070364_0.1790114593505534","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250719":{"name":"typescript","version":"5.9.0-dev.20250719","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250719","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6cabc781cd479c03f354d89a23fb88a1696eb19a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250719.tgz","fileCount":132,"integrity":"sha512-Tv49z/nz9xzEENJFDYfBs3s6ErjQGM+ST7KExwLGcTIkPpUBBr4IkJaP55oSyhU+gsaUncJgiLd7kKCbbQ1izg==","signatures":[{"sig":"MEUCIAFOimHZyKkURl8bjsl5xiyfmjSeo+VefI+GUbAStKESAiEA3nSQ6Bvq3a9HK/Ck74owcLqtEJQ1IF+Y46PkaLRW0zg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620200},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2778e84ed88894156e2c5a17d74a25c73cc96ffe","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250719_1752909350342_0.469390400096108","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250720":{"name":"typescript","version":"5.9.0-dev.20250720","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250720","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1091a97136c2b9c2cddbba9f2457ef9040f88e2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250720.tgz","fileCount":132,"integrity":"sha512-xXeldEudvNO4QQOxwIlbotvoFlN4FJvoKM7MkN58VK+XQEFKYwURqxaDsawyOQKJ8qp1C3ebThC5S7BTlQrcLg==","signatures":[{"sig":"MEQCIFti2saUpTAH74X12HH/svcN68z2mA56VreO66+aeb1QAiB3htItxYsv846xjbl6VwT5jJHLuxVkRDo2eXEJmj6gOA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620200},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2778e84ed88894156e2c5a17d74a25c73cc96ffe","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250720_1752995708100_0.949074832445377","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250721":{"name":"typescript","version":"5.9.0-dev.20250721","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250721","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4764f1684710ef0586e37b817944f832ae7087e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250721.tgz","fileCount":132,"integrity":"sha512-WKfsQb/Q2mwrbjDH7y9DmchMIlPfR9bb0TUQj0cBsHS/PsSc4rAZx8U17mMEcY2Ut3BGWiKWosXhb4Svdevj3w==","signatures":[{"sig":"MEYCIQCYXUU3/XuZhpHSQ3FXHjvKXMLFLqjdW9lgXIGKLQnyZwIhAJegSMivj1mn2aYCBZI57l5J60AjYy9dl4OSMvJFkjhL","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620200},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2778e84ed88894156e2c5a17d74a25c73cc96ffe","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250721_1753082330124_0.12217550096380436","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250722":{"name":"typescript","version":"5.9.0-dev.20250722","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250722","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c8625032bc52351a80e9ec67f4d575454c745fbe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250722.tgz","fileCount":132,"integrity":"sha512-6ZrhtZw1gMpOMXA5A8qzoOrF++iCoifZIJbbUSblrf6a9mHXhUQ9KTiD7S4/8pjPL+2PWm4FfG3bUb710t4ypw==","signatures":[{"sig":"MEUCIQCuGq64vUz8jgTXeyLi7LIG9lB+/Z27KIZYJHBri1eKKAIgUFNkgwbp1mRFl8b8xUGg4TKgiAIQvH8H3GgPibNCl/s=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620200},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f14b5c8a2f0be503ac455054a91573c63f0e5088","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250722_1753168637838_0.3959517396351424","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250723":{"name":"typescript","version":"5.9.0-dev.20250723","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250723","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"78f6ee84e55c9b53278e9199c1a9414bc6d65ed9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250723.tgz","fileCount":132,"integrity":"sha512-cW9lMDuujd4h4Q/gHT7YdIxO3JElYuztGLsV9+kWkZncfifCVjAB3lmqpsiyKtztd//Uqt4ZPZ8SmY+qpoVelg==","signatures":[{"sig":"MEUCIEMJSk8PoV5I6GHfZkzXGMVNQ423GL22LM5KvtjPNeXiAiEA02NgtP3mnh4WrwslcQ2dq+fKsly6yusziaeOdZTrKYc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23620350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"22ef57786f5ca99837c430439bc6003c068fe1d2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250723_1753255013928_0.1657222045635589","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250724":{"name":"typescript","version":"5.9.0-dev.20250724","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250724","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7cd8735b1c33c2bcc18f636245aa7ffbcb660946","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250724.tgz","fileCount":132,"integrity":"sha512-VXgMFQyznCBEVvkoYGKc+OpBmBQq3wvanw6JGS6vVThLa+8YsUNCw4CJRlxJXuDvgls3bNjEvPozFUgRKf7Z/A==","signatures":[{"sig":"MEQCICEeRATcoCJpfkAoxAQ34cERhHh6CYkl8CApN0VGO+ZcAiBv2grzkOcQC8s3NosOh3MzKICoqyQCSxR5YQRv/YFlRw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"be8678315541e814da14316848a9468e8f90ab11","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250724_1753341437244_0.17759619170369545","host":"s3://npm-registry-packages-npm-production"}},"5.9.1-rc":{"name":"typescript","version":"5.9.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.1-rc","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a2e16ff1e02a3c879d182a367a60712999b89305","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.1-rc.tgz","fileCount":132,"integrity":"sha512-pWar+9HGLkLwxu2PX1ItWnWg80r6nZ8qVEyWVRsnlZyZeFkHeR+eCrZ9PcYeVZjdLvcd5p/WgycViI+lsTh2qg==","signatures":[{"sig":"MEUCICY/OLWToDs19sQpL/lZrEDXyS4EaPSkgUHPYmmwV5b0AiEApLvI5o1vdOa3beYJeZX/DmF/VlaCEahTSW5mACuejgk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622878},"main":"./lib/typescript.js","_from":"file:/mnt/vss/_work/1/tgz/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ad825f2bee3362886d642c48cb97c82df82b3ddb","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/mnt/vss/_work/1/tgz/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-pWar+9HGLkLwxu2PX1ItWnWg80r6nZ8qVEyWVRsnlZyZeFkHeR+eCrZ9PcYeVZjdLvcd5p/WgycViI+lsTh2qg==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.1-rc_1753376381239_0.06374941638878284","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250725":{"name":"typescript","version":"5.9.0-dev.20250725","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250725","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ba5a18a65e003bd7c879dc47409b30f577af7cb9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250725.tgz","fileCount":132,"integrity":"sha512-iCfSsyPg1NMRP2ythXNvkljHbmMTppyUUZSnnD4DwGxKEn2GJwz0nBByLOJNbAeYggqo+/zgraMry9U+BZgJMw==","signatures":[{"sig":"MEUCIQC2crO9QJgFj9G+RYetJU5VvbSWHzT6C+DavVdiZKsqEwIgT6SFDVWr43VCkMYmbkG+gghvTwsvjTYgOCWMfyklnHI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"be8678315541e814da14316848a9468e8f90ab11","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250725_1753427828159_0.7218213148520853","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250726":{"name":"typescript","version":"5.9.0-dev.20250726","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250726","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aba82710f72e08845b27100ebdea706b7641c12a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250726.tgz","fileCount":132,"integrity":"sha512-Oxs18dYMuT9VyLH0TDBk7lNYKyY8wVFKBut8bzkCVDEGlRWNO4EFUVQYEaySnJVNWuDL3CAbNJQ84UPqQQw4dQ==","signatures":[{"sig":"MEYCIQCRv/8SMripxMEAoKFMJTI+SWWrdy7LXR5wIK4CUge+VwIhAPv14b82W4dVdUILgL9bgPWbG+6v7P5Nxu+++flfVEfd","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"be8678315541e814da14316848a9468e8f90ab11","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250726_1753514150515_0.9955081908158214","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250727":{"name":"typescript","version":"5.9.0-dev.20250727","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250727","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"243f1dfcc0606ae2e6bfebb869122352c48ba3ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250727.tgz","fileCount":132,"integrity":"sha512-21zEh2hcJuakx3expiuGYHI0lTHO80cU/FtUV89CJxrqPXk61f05X7Dc67HMavs/oAFH/03CICjH+XpMylUbfg==","signatures":[{"sig":"MEUCIB2lNnhYtlDe9ssWANT+rz0xHC7g9sIyH16fp7p+IhgMAiEAzybFadQFTT/UX2CnfQ+JQ0f0UPPSoHrRSfJGblq9mO0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"be8678315541e814da14316848a9468e8f90ab11","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250727_1753600551174_0.01098689975944267","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250728":{"name":"typescript","version":"5.9.0-dev.20250728","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250728","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"72dd10a1b4a751f4e01ac1f22c94ba26d87e7b83","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250728.tgz","fileCount":132,"integrity":"sha512-+fJjHucw7t3WfY6SoCVVaSzJRpCDxu2g81wOEm0mPxyuJjs/4k1VoXIS+7SN/jEBpymlFAzxQJoK1CpIKY9OYQ==","signatures":[{"sig":"MEUCIQCxBt/OAna/Kz04ohJ7YYjtpCOSGIoo/VXRP2jk98s70gIgI5OKtYob3x3w1TKhOUqO6oeZ1eZOnNB8GZ+lWXUG+QQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"be8678315541e814da14316848a9468e8f90ab11","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250728_1753687099455_0.7526073279774972","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250729":{"name":"typescript","version":"5.9.0-dev.20250729","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250729","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cb234225de58a98729e7677fde8531884282ec4f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250729.tgz","fileCount":132,"integrity":"sha512-+tqV9F9lsLD6c/vZ+ZqJim/uVsEPmwmgE+Ib9VFyoR9Ibw0uDWx6rDN4hO5PaL6MJP/8eVJTfags7B4BdbW7Dg==","signatures":[{"sig":"MEQCIBb6EbGhRCSlqiJSU11WBek2B9NOHp/co6VdROtkGkmgAiAuMPsSPlFhA3n1URHLAhaz/PftS1Y/oBrsCKEavVqeVA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"be8678315541e814da14316848a9468e8f90ab11","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250729_1753773479442_0.7987141347630353","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250730":{"name":"typescript","version":"5.9.0-dev.20250730","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250730","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1fb12366542bf02470ff6bd1f70138f76196336","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250730.tgz","fileCount":132,"integrity":"sha512-brbHw/oBNWtx1+RReHe8IeT6fHPAPe0TIyQKyaRR+A3k2LiMKow/3pK6upC8lD51q9ySdFquN3040oWIQBTaBQ==","signatures":[{"sig":"MEUCIAjOObf8gOx0p3MwHjI6Aga3ghM0O/78fWo8hzO5a5njAiEA3WebGBNqk460qzApZzwCxgewoNxII4P/90iaXj+D3Ow=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"be8678315541e814da14316848a9468e8f90ab11","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250730_1753859912530_0.16953293625888244","host":"s3://npm-registry-packages-npm-production"}},"5.9.0-dev.20250731":{"name":"typescript","version":"5.9.0-dev.20250731","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.0-dev.20250731","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ea7e7171cd2237ec68ddc5593213541b6c244ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.0-dev.20250731.tgz","fileCount":132,"integrity":"sha512-N/e6zMPBi2QG+uQfkSOepyYJI6qluIcn0thJKgrMjgtXpUlnKf1uxp67RPzAIllKwTLcK2fwO0Mh52hHPHEbpA==","signatures":[{"sig":"MEYCIQC1ovoklCrzwNQauD5LF3VLkElF3OBtHkoMAhM/EWTfpAIhAKoP9EKwKQDZ986PxZktrCdbx7ZuZmjMazHwE/9ou+qb","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622942},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"be8678315541e814da14316848a9468e8f90ab11","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.0-dev.20250731_1753946258953_0.9640433809921323","host":"s3://npm-registry-packages-npm-production"}},"5.9.2":{"name":"typescript","version":"5.9.2","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.2","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d93450cddec5154a2d5cabe3b8102b83316fb2a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.2.tgz","fileCount":132,"integrity":"sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==","signatures":[{"sig":"MEQCIBtsPj1YAoqGWRd5FeipJP5DWQeOABakzg15i/tN+6H7AiBay9mfRYuiOW/Cdab2vU8CuvLZvt4In8yl8HBP4IeOOQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23622869},"main":"./lib/typescript.js","_from":"file:/mnt/vss/_work/1/tgz/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5be33469d551655d878876faa9e30aa3b49f8ee9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/mnt/vss/_work/1/tgz/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-CWBzXQrc/qOkhidw1OzBTQuYRbfyxDXJMVJ1XNwUHGROVmuaeiEm3OslpZ1RV96d7SKKjZKrSJu3+t/xlw3R9A==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.2_1753984445988_0.23277972208941589","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250801":{"name":"typescript","version":"6.0.0-dev.20250801","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250801","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b8b86db8b953402112cb8f1ae33b82f8e1d808f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250801.tgz","fileCount":132,"integrity":"sha512-b/X5+OCIRwL/sCMYpynN/Lkwx3H8Jnt+ttDIZo5bKWpYK1TTeh76tXoKsrUSex2dn8Sd8qqUf7OHifvdGmeKhg==","signatures":[{"sig":"MEUCIBfHgxf9RK1ldWeK9S7rU81UhHQ9s2bZXzubHJm108XdAiEAk2WqxhBJJZkXVJNKnSS8KX64iQbuopexKqlFdUCJPTI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c6a1812e0cc5e0c878d222fa80bc3225f72c136d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250801_1754032740376_0.17741522829828993","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250802":{"name":"typescript","version":"6.0.0-dev.20250802","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250802","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5953e613a5dad182edb404cc1a6886d73584a5a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250802.tgz","fileCount":132,"integrity":"sha512-+SuAEEhVQ8dHijHWWCwUnDaaWS8t9JmUzKmAcGzKi9Iojwrq8ZCsP+4zwe7ZFfkeKjoc+HrRMH3soKXoMt/pYA==","signatures":[{"sig":"MEYCIQCEcsu86l8p49lfWbG3BzL78VX38riEzFfus/s5BWM9kgIhAOELazxKCSD37NuaG2mZ1D57W/i949OjaXpiRL0pm1N4","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c6a1812e0cc5e0c878d222fa80bc3225f72c136d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250802_1754118933384_0.8333841875122374","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250803":{"name":"typescript","version":"6.0.0-dev.20250803","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250803","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d92df50ce64a1e50b2a41d8893bd1a1c49857bdf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250803.tgz","fileCount":132,"integrity":"sha512-ppdfFspbt/ysZ/RVxn1a/bIrC2JxsdiL4ytaKut8+6B5CzT5JBhrnSoouOgDMXlmca6tJhJcidSETgRnkGzcPw==","signatures":[{"sig":"MEYCIQCDLP2yXgmtwqfLXHKPcVytZe5UXbBZcQS3ZTBZ15W84QIhAI6sDdO25E4Q6d7x+NNojoR+rpZ1h4r47aU9z7rkWG5s","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c6a1812e0cc5e0c878d222fa80bc3225f72c136d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250803_1754205329983_0.9191437526188879","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250804":{"name":"typescript","version":"6.0.0-dev.20250804","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250804","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3a19a4b69cb9f9410911ad99d3be53e670094819","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250804.tgz","fileCount":132,"integrity":"sha512-QP/xA28rbUM9RUY01tyYKdrTej/Wh+RR3qDn5ppGCG4E0mXJhYLWAvX0Sl01ChsR0Yl/DtfE9mL1xjf+XUZmpw==","signatures":[{"sig":"MEUCIQDYXcfpnx3vb7xrA6WXOB+Jol1TdL4VRs1H49a71SW2UgIgNYW2SrUVVbfKnC1uQqhB9ZCFFMLt+BS4BRYm7DFOR40=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c6a1812e0cc5e0c878d222fa80bc3225f72c136d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250804_1754292080105_0.5388140676605429","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250805":{"name":"typescript","version":"6.0.0-dev.20250805","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250805","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fb94018402775b1377190fb381c2b7f853c72e18","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250805.tgz","fileCount":132,"integrity":"sha512-O7Z/O+uwdZomxOooF8MxAqGnmqoLzgw+q++pkytNQMDN60ZrvN8tmR+LggSJPpqZqeSeu5YP4w5sPMkAQ6DDaQ==","signatures":[{"sig":"MEQCICns1ekH0auPGUr8M6FWT1qjW5Tj3FjCtMo+Z17FG6guAiAaetr+grgePfR71BqBnza5DmZqPOm8y7o99V6p3g5W9A==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e3ef7ff50db66b6a2af8090f79d9039356ec0096","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250805_1754378330076_0.39190044845034655","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250806":{"name":"typescript","version":"6.0.0-dev.20250806","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250806","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bb763347d281ec40e9d42cc04f876104d71b5807","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250806.tgz","fileCount":132,"integrity":"sha512-inDvi8ujsZXA/dSgj8QiSjHSi7fYDnkRck9vvnd400VBY5RSzNl6G3zZXjFZTawwYfETOakld5vQ6a36JuNOBQ==","signatures":[{"sig":"MEUCIQCwcHoXW0APzEN6O1h5CKfGDch9Up5tGjgb2dMl+PeBvAIgf9F4PrFqvxf0vhIRP5xUnStnpIgJNz2Nv3sSm2lXQPg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"391616532d6827254a86dc266121fd5d1958ffb9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250806_1754464735257_0.6148789520163556","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250807":{"name":"typescript","version":"6.0.0-dev.20250807","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250807","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a21d6f4240b9ff254475153027a59e45235fce45","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250807.tgz","fileCount":132,"integrity":"sha512-A09kHb34sVUMPTsGVT9H8lSP8BEHrCRLPL3CLcyL6FGafZ0bAOPkDnlOwMk3dp1DVy/b3hKoZenm9jGQ4cu/JA==","signatures":[{"sig":"MEUCIF8/uT4W4ipmcS4eTJhSP9XdyqsXnwC2QsXGoilj4KtuAiEAlgUNE494UBNLP8fYgwDJb6Y0f4a1j2VSkSzunvDy82Q=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"391616532d6827254a86dc266121fd5d1958ffb9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250807_1754551138149_0.44650482243913814","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250808":{"name":"typescript","version":"6.0.0-dev.20250808","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250808","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d02823bf418b10c07528936f48ed06ebabe1dc2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250808.tgz","fileCount":132,"integrity":"sha512-11pFT5CGoCQHAACPhRZj9cfa5sb5gNGbH4D45z1ZIrTE8jsYEHpsP34qPXO+DRo/ImkexI5LXdUry9EjwQZEJw==","signatures":[{"sig":"MEYCIQCIiCa63Y8FtLOHhE5ZAiooxhiYBAOmtRts13lS+uxfcwIhANW9Qp1XKXJQjzEEShptUr8Bex624BB+ldkPlnWBXMKg","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"391616532d6827254a86dc266121fd5d1958ffb9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.17.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250808_1754637512399_0.8180632597287363","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250809":{"name":"typescript","version":"6.0.0-dev.20250809","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250809","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0e9c19eb2faef6ab3a7abca1a75c5ca43bac7354","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250809.tgz","fileCount":132,"integrity":"sha512-Qn4q7eEdZKg6iQAkLS7SDM9ASNlyvaFkP4ze7jTadOvtEA5EQNj+Si8lmAu2FV/zVZAgLrQRcfMj3yCNeMIo3Q==","signatures":[{"sig":"MEQCIAZGGg+AAdsVKPMBcW/YdNUfl9YF/MHi0gO87652hstmAiA5or9LNPg8vM2ggl6ImKVLqBrXw6TGqtz2X56gvp/9RQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"391616532d6827254a86dc266121fd5d1958ffb9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250809_1754723718610_0.5158088378757426","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250810":{"name":"typescript","version":"6.0.0-dev.20250810","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250810","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d048d0b3675ac12f2b2f14c4d299b06beb7e2f36","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250810.tgz","fileCount":132,"integrity":"sha512-AComoDXeQZDb4aD23NHi2w0nv4UR74nVYg4I4EkTcAo7H9Aw5jcqpq1uleLO2p9YylVJap4KPFmvO1o+3C/06Q==","signatures":[{"sig":"MEYCIQDWw4ZDa59ES7M6p84ZZBB9TWHG2MWlpcTxgYhTXCPnCwIhANjIEn38XP5JInRrNsNye4pUEdkXLWpBIEXmOG85YuLD","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"391616532d6827254a86dc266121fd5d1958ffb9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250810_1754810104917_0.4832798326572787","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250811":{"name":"typescript","version":"6.0.0-dev.20250811","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250811","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b535be1648fbcb4316aba4f2f258fb1a25fb489","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250811.tgz","fileCount":132,"integrity":"sha512-KtyfHCZo+t5NHIXctXGn2N5cev7aLGZf4Fw1QH+TsXDAR+k/lhEegTfwSCBrNkip27RpbkUnka3nhhIWLiKjvA==","signatures":[{"sig":"MEYCIQC/gWjUXB2rVg/sS6hl96ks1Jsr+8rCQUt59033Z5wPUAIhAPBLN05cKfFZpdf5mk7TfPFgD2tKrvmoKZtmE9HS5CEu","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623527},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"391616532d6827254a86dc266121fd5d1958ffb9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250811_1754896675616_0.9934843133054698","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250812":{"name":"typescript","version":"6.0.0-dev.20250812","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250812","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7438a21f1acb6bf3f4da497bb2eb8bf70cf88e5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250812.tgz","fileCount":132,"integrity":"sha512-6N5LK+q1e6oEBNW5DvmVv6rgRMxaUpIsLW1fexQXk/iw3DtN3wUXFgq91nGQ7ZtlfeSQf4ZAWve79qih8eY5Sg==","signatures":[{"sig":"MEYCIQD9hRMlvFzZ4Wzb/RjHfU0Kj0JNDTlUg3F6/SgGvMtoJgIhAOmIFWtkpMKTKS0K6QbtVzWbvgndwrf7HLLxpHVoZbRw","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623513},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e39d5775b68800a3f8b57aab4734a770c4383a80","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250812_1754982965874_0.027614475696122298","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250813":{"name":"typescript","version":"6.0.0-dev.20250813","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250813","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f109d6274315bef992e0390d998e649c2a205136","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250813.tgz","fileCount":132,"integrity":"sha512-ScXXFJdplTd9/nmfGW7Srh0TC+9j0sihny3/vfDSrDoH/qVJCGAQbpECo6Q+muRRGNQ6sHD0U/xkUj7lIFlOSA==","signatures":[{"sig":"MEQCIE+ZOnI60uOs2T5C/FEkBfMxGud0G54mDwERhVj5YXExAiBzkG6gZY7678OkYdJI1kH/q4Gv2tXXmtOmqFkrb2VVyQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623513},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e39d5775b68800a3f8b57aab4734a770c4383a80","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250813_1755069390554_0.8129702813648108","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250814":{"name":"typescript","version":"6.0.0-dev.20250814","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250814","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1603e210a013012ff0268ca07d70ab1c2260d16b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250814.tgz","fileCount":132,"integrity":"sha512-qOUcNivJk/oqLBnjhvkUtDMuFjBnG8a3L32cM0qdRfm5x/+OZ6sYwGrfCQcsx+dnd3UW7iOPdOIfDt/Pa1428g==","signatures":[{"sig":"MEQCIEQRNNoYyGUTxk0ainaU7uCKbllF0isXpmaN2WA7wDGSAiAtGn84S9w/sLJtOQpGIOLzS7OZ6tjcNANxP/sRhuE/3A==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623513},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e39d5775b68800a3f8b57aab4734a770c4383a80","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250814_1755155780052_0.486256577198517","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250815":{"name":"typescript","version":"6.0.0-dev.20250815","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250815","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cd03847c1999b68ed13b00e8cd438282b5ea1fc4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250815.tgz","fileCount":132,"integrity":"sha512-pUWzMiOyuu14oNnD+6FYpdZzMBzUyucgmKtCCXR6lE5H+ndo59vxUx8MZaB+QDEfSSobIzAtaLwW/kRzfhV2CA==","signatures":[{"sig":"MEUCIBHtTrv/pQXpYF7gugBXitmeXW7HCInIzx+LRGpWWz0wAiEAnCq62tpWknMHmpAlMqVVoxpY035vRldwTIUKk6VBD9g=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"73c0bc8bc84f398990b4a79d732bbd00ca453cd5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250815_1755242142857_0.07945968021524097","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250816":{"name":"typescript","version":"6.0.0-dev.20250816","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250816","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"88de20d05a6e65bfe312e7d99bd4de904dc77af4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250816.tgz","fileCount":132,"integrity":"sha512-d14EKg5efqKGZG4ZgH3Jkl6Hmg4dDpY7M0oR2RTPnJXOuLu4SC1LON0ZbgOlfz4dTWe/9164HT0YnM6dEDq4Cg==","signatures":[{"sig":"MEUCIHMldZh3gMRY6DN+21X6re0LwwqIU+rf5rdDIesYfsTdAiEA+pv9oJ7UEDz3gJ08zNmUkz786YkbC3gTWHibDS1B4HM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"73c0bc8bc84f398990b4a79d732bbd00ca453cd5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250816_1755328524663_0.17040799069141466","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250817":{"name":"typescript","version":"6.0.0-dev.20250817","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250817","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"11366efef56dd5f2edd7163a24aa93dbf9a31dd4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250817.tgz","fileCount":132,"integrity":"sha512-mSAwRrTq7NuW1lO3VZwInLCx+g/7ONIrN1yJVmpPqqGErhcqxANU1mbmb7WhMlOLNt7DWIpRQSgLIXVuVGgVlQ==","signatures":[{"sig":"MEYCIQCC6KpKqTZZjVngSKZrK2nNYKEXXP4aPTilBhXVV9OIGQIhANup6oZnYtLGGGWwKfYKzbx5LVeYeBHRxJRClUlWo7dI","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"73c0bc8bc84f398990b4a79d732bbd00ca453cd5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250817_1755414906878_0.24382665880967136","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250818":{"name":"typescript","version":"6.0.0-dev.20250818","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250818","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f6266442d7acb961ec1b177169fc449655ab62aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250818.tgz","fileCount":132,"integrity":"sha512-rCP/+hjgKQ54DuxzSrcd34SVw+L6m1tTvN/2fbDfoJu+UWND0K25G4XxElQICbSqh5dC4nXUgWm4SqPTZy2GXg==","signatures":[{"sig":"MEUCICzjYQaFCMaM62239ypFO5g0omh7dvEySgx1zZtvg75vAiEAryR0rSl2P5XFD/tNDmiD/my3GMgnhXlxBQJ7AsCsAPE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"73c0bc8bc84f398990b4a79d732bbd00ca453cd5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250818_1755501439253_0.1956291097093419","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250819":{"name":"typescript","version":"6.0.0-dev.20250819","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250819","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5a610f5d33feb130c78df554c55354d72dff419e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250819.tgz","fileCount":132,"integrity":"sha512-GEasq8VlCMmxmydjEsX8RghmnsEg1mbxYfDGHjqQC6W58Se1bsqk8nD6uJ79GqkspHFB28UMN17+gnPtG/UPNQ==","signatures":[{"sig":"MEUCIF58RvHYUrj1SxKmKqm/T6PTJwgdiD+R+ABVIkfhGAiFAiEAoyErXnILKbzu1lZyTmrWgXIDNnoPmvPpwbwVv8TEMlQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"261630d650c0c961860187bebc86e25c3707c05d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250819_1755587715094_0.452798326170859","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250820":{"name":"typescript","version":"6.0.0-dev.20250820","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250820","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"babb497b0e524001e4b4c9ba586934d53eaa6a04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250820.tgz","fileCount":132,"integrity":"sha512-gj2p0G0UWFA8cAtxQvDv1QYLRh2OyQfjUtbfUidAPdsmi9v4GK16/L+F1MB7rIrwQq+h7irmJSmkGeamUk0sXg==","signatures":[{"sig":"MEQCIHYf7vfWpeKyf9udC2qyN0c8XpKDeUDiNVJPz19InygnAiAWlQohyllFOL59HxIDz/NzrT1Dd76XtOOABJ/9yaxYnw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"261630d650c0c961860187bebc86e25c3707c05d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250820_1755674107738_0.69787503873936","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250821":{"name":"typescript","version":"6.0.0-dev.20250821","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250821","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b07054abc1b347fb8d821bcfeb44fd3fc9a31978","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250821.tgz","fileCount":132,"integrity":"sha512-4B2H967bp4c82zijkiceubORkNKERib0P/IsqUS9INWgP8BlxiMpP0FlQK7jFjHZxAprAl0HMMTNAnKga1s3Yg==","signatures":[{"sig":"MEQCIHQ4j63NLiXjCEXQsGUjou4P3HIcDRMLLZD795rIlc+0AiA1NGXYQ7plFa/NYo6vsjwSnNz4xEN2GDUHYUwQ+JX88g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"261630d650c0c961860187bebc86e25c3707c05d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250821_1755760641398_0.4338589330235707","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250822":{"name":"typescript","version":"6.0.0-dev.20250822","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250822","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d82ad88ce5dab48f75a1275ddf4ba6a9a5040e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250822.tgz","fileCount":132,"integrity":"sha512-omHezTVn6vg+B/eFHkIzUGFvlbbkJdsdmdBohcsw8NMLyKOhKRMinE9aLu8f0EALT4R2YS41xak2KinK74/6Xg==","signatures":[{"sig":"MEUCIQDYaHymBTiHrHoLF3FUuF1TwBijt1aaW0PtaFfad5W4LAIgKBydJtUlueFCkuTXft+4siqVUfVVqDaVweUNOiwtWpY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"261630d650c0c961860187bebc86e25c3707c05d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250822_1755846925998_0.6470675592742423","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250823":{"name":"typescript","version":"6.0.0-dev.20250823","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250823","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b2c001c82fd9ef13e6e380a3d97ecab49cfc6c1d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250823.tgz","fileCount":132,"integrity":"sha512-y6/952MGzGzz4UOf9aMyqp7vo6htalq05iU6d5oId+NDA89mhmOZH4yZODQrsu64NS2ck1EG4oQ31aD1lG54pg==","signatures":[{"sig":"MEUCIQDInAUQBAWJrGJk5ZGQKEJ7k/+dN27rd48zYkwjkgErWQIgDZvdCDlwZFIEKSP2Lbc5Xvxi2ZjTQMjs9Z9zSe2hP0E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623650},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e635bb97f59c892f62c5061cbfeab5af211d743c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250823_1755933294292_0.2106795445493317","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250824":{"name":"typescript","version":"6.0.0-dev.20250824","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250824","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4160ec00c80ffae89099b5060f2e374eabd03f3d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250824.tgz","fileCount":132,"integrity":"sha512-ixfee5eHVWsJeXZ3cC+djclb9ENXMTKUM9n0qeJgDxZ/PdlaU4TlrIQmVYq1sfbRUVG3mEG3Ue2BHvbcviT4Vg==","signatures":[{"sig":"MEYCIQDbp5zDVTYp2NFzVMuCFijHyRK7MhU20TND1dLsjrfSgAIhAPEBUUte/6WP/wvf8Z0Bb5GQH07fRbdKIAeqd4j/TRNV","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623650},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e635bb97f59c892f62c5061cbfeab5af211d743c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250824_1756019724365_0.11935822794067685","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250825":{"name":"typescript","version":"6.0.0-dev.20250825","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250825","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bf666319f2e066dd05e3f421dc2c717e14bae0f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250825.tgz","fileCount":132,"integrity":"sha512-pvFX8/dZF3oRmIswsPQKlLDwZwR1FdLYGgpANAO9mX1sraGOS1NZTDZPBi5plkeQ8tOBPstWRjSLZoou9jUcGA==","signatures":[{"sig":"MEUCIQDrQKUvKztO1wLIQYzMBhP/Jdmml7qqlaN6pCrOsX32hAIgNT5IzEA2G9X6jOmJnHW6J0PWATbpiuNNzn91PuUio+k=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623650},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e635bb97f59c892f62c5061cbfeab5af211d743c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250825_1756106115872_0.6742555266229919","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250827":{"name":"typescript","version":"6.0.0-dev.20250827","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250827","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"da672ef1ba62d490ab825c3de2aaf29da5f724fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250827.tgz","fileCount":132,"integrity":"sha512-TNrtA9r9AMgInuUMAV5hVTQWClBfvG+HWhIanl7ZO8GWSwjzL9mRgauvwzMfXpdwoAR1h+XC5zSj9WbbGGOtxg==","signatures":[{"sig":"MEYCIQDkMplatJnAq1ye472JnnB8bHrYQkgYyw9atdQo6YHrQwIhANvsffQZcbqkDgGcljD/yGadNEUNnjJyrKfPlxW60+xh","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23623650},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3eb7b6a1794a6d2cde7948a3016c57e628b104b9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250827_1756278921353_0.50950687730804","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250828":{"name":"typescript","version":"6.0.0-dev.20250828","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250828","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5e9fcf5b499942fe6ab5e9d3c0014e4b0b23726a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250828.tgz","fileCount":132,"integrity":"sha512-evNAXFI08Dt43B6fEL04etGEX9PhAo8/NuPLAALsw2j4b4fOik/UYeYS3bswcQbQytpkjuvWM6paKkrZ4y5jjw==","signatures":[{"sig":"MEUCIQD8UVV3FVMUiz4GlGPHOFjiUpHoSyxAbYKtMP6lIx1OwgIgV85Ro/QoxBXQ6pFNHIpa0rhiK8J2YwbWNOUukofsRZQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250828_1756365319381_0.8113375191441987","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250829":{"name":"typescript","version":"6.0.0-dev.20250829","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250829","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f51ef102093be4347177e1756c3407f66d9317ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250829.tgz","fileCount":132,"integrity":"sha512-ZFuTlZD1rPkEXcOotbyJ5BmY08keW79T9tP+Qcp/ex8HtEuQgufUQGnMID4DoVELThNPZWPHGpEuNfL7qQO4Lw==","signatures":[{"sig":"MEQCIHVXIl0XVuHEebPV96L+RnpOmGx644uOtljy/AGdPSk9AiBVX0x50uY+MZWGK4kROkavAEaY25acHcDhXOmpePo36Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250829_1756451750063_0.6464572693434045","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250830":{"name":"typescript","version":"6.0.0-dev.20250830","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250830","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fa82bdeb01c8e31029b2edf8c7bde91e9dcadd01","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250830.tgz","fileCount":132,"integrity":"sha512-3JBzqQo0jXMF0hy2KrM3Npdu6FgAu0OWcuWvaDus9Ul16ASk3urX0VZg6XsR3NCvEN49kCEeDw1/zjaZ7HMo9Q==","signatures":[{"sig":"MEYCIQCKIGl7vw5+8HwvUIpiyKVD3K70nODVTNjUx3fFzyvmgAIhANenOzh5irsppRUoimDcjvwzadfCRpEgxZinkkOsGSF0","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250830_1756538121445_0.6152671095996369","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250831":{"name":"typescript","version":"6.0.0-dev.20250831","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250831","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"44875d0c29a058482ad79509aea1c8bb69b53014","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250831.tgz","fileCount":132,"integrity":"sha512-5JHQWBczyZ2C/kNMjlMcPxjFoRH2sbQh2icCpMjMtm5xaT+cfvkNn1wfKr0oKZLoQ/ciAbBmnWR6jtfw73XDJg==","signatures":[{"sig":"MEQCICgbAzZKKojwvEFUoTm6u+tMZXAacHGSFR7q2SjLIBxCAiBlPj6AL8LkhbsKoPRws/6nCmyTrICmLUiutNrsJFJ6Eg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250831_1756624516007_0.5715285492891722","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250901":{"name":"typescript","version":"6.0.0-dev.20250901","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250901","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"38f04fdbf7589d40e2044bc790c17f3ab961e599","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250901.tgz","fileCount":132,"integrity":"sha512-JhA5t1h+FElVgGJPDNi+bHSZk5g/0BCCWrsVQzuRRcxqCor4VpZlQV3r+Lxs9/yscvgk7cKa46FpJVZs0wvaIQ==","signatures":[{"sig":"MEUCIEYmWeM3tvFMQKsrRD5I9/nxKnvvovidy7+vm0Iyp2W8AiEAoGG1ihAYPnUh1280rCdSW2aiI1j99Vm7+v9gHrmDic4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250901_1756710944190_0.7720986436807673","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250902":{"name":"typescript","version":"6.0.0-dev.20250902","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250902","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f51c42e07813f3c91b23d73e7eecc1eafe63173","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250902.tgz","fileCount":132,"integrity":"sha512-neCIbeIOaDHNZO2he/ygmQm5a2MmjHRx2CYoqDRKOBWGypjI5/LdxlaHQpcsGPbnWqa5t2VpNtMLrOOwxqN0ow==","signatures":[{"sig":"MEYCIQCPiCi30SIYntu4Lucc+FiqxdUA+84VjpJQ4ZqC+4Ms5gIhAPKPhq5e9csBzgmisjpuNX7RX116OFqWawjRBQRcT8z+","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.18.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250902_1756797308088_0.8373270932077421","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250903":{"name":"typescript","version":"6.0.0-dev.20250903","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250903","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"01c50750dedfb09b62dd40ba027400cfc04fe871","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250903.tgz","fileCount":132,"integrity":"sha512-+JORvpkdEk66EV3TFpTTlaEq+hg7mivLa73KRr3g3kI+GhNhmdCWOxfwC6jOG+EgagKX6b8TqO5lsCiaEn3IJA==","signatures":[{"sig":"MEUCIQC9oy5kKWC09JPIYMm6xb52vQO/f0dtLD4he5SwcA/LUwIgQ7rV5DHYAwmE0oph2bUi8Bxq79XyyEI/Js+i/OrEX+g=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250903_1756883751079_0.4811610832773585","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250904":{"name":"typescript","version":"6.0.0-dev.20250904","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250904","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"457cf5ad2a53502e17102e6c1a371b887e7b075b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250904.tgz","fileCount":132,"integrity":"sha512-301ifUSj+fMMKRGYMLW8bIRhlpLxnqSwyBCCUlcjcNw6GBr5O3KI9mbnL3VW03cwGtV6+Zjs7hI7nFrTA0sLtQ==","signatures":[{"sig":"MEYCIQCb5Qv95cjJWiT4Rs4/v79zxdlsJcm1bdpUz+kDD6bf4QIhALFdQYWo2GTeLDEqkSI3doUgxrozMfB2+NQvIyT941Gb","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250904_1756970150255_0.7598923009768002","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250905":{"name":"typescript","version":"6.0.0-dev.20250905","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250905","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"71ec3b6261a5ce04ccd7502e002e86759508a4ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250905.tgz","fileCount":132,"integrity":"sha512-3DUoON5ibUBadEPyd3Ot2K0S9c3R33DEguXdVKqfL+4tYKwHa5v3OIBdkqP0KQFRS7gqA+hhwPgdBHxFb0LSgQ==","signatures":[{"sig":"MEQCIAQOhl38ieiYCPZWcdjDZ+NrXGsBLbHLbSiv74vuAt5aAiAwJMxLtvPMF12yGKUTR3L2UJ+gGOPVsCv+eU1L1IxR9g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250905_1757056520298_0.7915086206999897","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250906":{"name":"typescript","version":"6.0.0-dev.20250906","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250906","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e9669636359dc27fe6556efca83775a03ff5b329","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250906.tgz","fileCount":132,"integrity":"sha512-vPHRYB1fuCVcOHCPTUnLXINdCzR31o4V+mXr08apT8bCRswAXgK39Fd2Q6POPHTSiOqGlAn8onB8IfQO8gbKig==","signatures":[{"sig":"MEQCIEFUmQFGct+LVBUA7SCVQ0Et0XOH+rr+1dfasZ00DkyQAiBKP0/QLClbG4pZl2iuj4kr6O7IYSm8MHcjyhazWX+5dQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250906_1757142931553_0.4195762429226475","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250907":{"name":"typescript","version":"6.0.0-dev.20250907","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250907","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"458e958234632ad674afadd38dce88114d1dd58a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250907.tgz","fileCount":132,"integrity":"sha512-Am2ssIJYT4/ne+lsX6eRSrNNObTK6rq1FR4sf5q4qcRByegk0Gmoweo8W+pxb5QOlGsQisnHnT5sHuE0LczB9w==","signatures":[{"sig":"MEUCIDbndYbjfWJEtqQKIjr8/DR6tcUMX8FBYv9iUJMB8hYYAiEAzc8TgrBiq+DTyH2kKrZMEkSs/K+to4WxqYyIK8IuO8c=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250907_1757229299295_0.3038216730187606","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250908":{"name":"typescript","version":"6.0.0-dev.20250908","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250908","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3ce4940404ce9bd71d0cc1ad43999d50f53a758a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250908.tgz","fileCount":132,"integrity":"sha512-EFmaX6IAZOrXsu6ivN9CSY7CrvDRGJ/ilTAhtjNeht4V0UkTbKNiG4PIu//GGWwy6KO8G5nEGB1V9dYcINKhvQ==","signatures":[{"sig":"MEUCIQDARvzlIsHe9yJ6ter4wpfpUWl2jnnTXu3pwKa76T3TawIgSsOi2RbJ/pzWvR7SHfs7rWFOyYX/UKgBuCMtrzeVAbw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625220},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7956c00166df552a1d6da6c2f996b558e5dd94ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250908_1757315732432_0.17914988456678715","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250909":{"name":"typescript","version":"6.0.0-dev.20250909","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250909","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"812af1b8a18e1d3ce4aa3dc3bcbfcab411b87de0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250909.tgz","fileCount":132,"integrity":"sha512-JYYiqjyhu1eC0sj42+rAmwmsgVVXDDlQndB+NOFdsekMdBYdSaCTIgM3H7jt//XKcPfzR97R5TTYjkfQaHUzlw==","signatures":[{"sig":"MEUCIFWQt7bfq5x+wpM0kWO0wBvSwXF9vxrrLGAW1/NqNTkDAiEA+iiQdciAbsmF6NBoEyVD4phrLMsNJNHbFFo/UWOo0LE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23632075},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3f5c77f1f9da46dbfad7614ca6497fddaf03ed3e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250909_1757402154817_0.7563099609848372","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250910":{"name":"typescript","version":"6.0.0-dev.20250910","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250910","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ad7ff6e8c042f2a431065c667b7019020aaf40c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250910.tgz","fileCount":132,"integrity":"sha512-c8xZmVV/0FVlBoiRveyYSSs2jL0AHRZ3m2fUPgpY9ZFh7edYiWlBsZ7zPZIHzdNieuJ5ryYENw4pbRasp2Fo/w==","signatures":[{"sig":"MEYCIQCrX32dzIZeXO4+DoACvgS1MMqBEyW8yzeThqF4TBsI/wIhAM5O1wHWqGRzUmloHtWAY6w6u7mabDXMjXeSuaqLKzS4","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633292},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3320dfdfcf17cdcdbfccb8040ea73cf110d94ba3","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250910_1757488532734_0.40692916186538497","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250911":{"name":"typescript","version":"6.0.0-dev.20250911","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250911","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f8bc1fb49768e6e4dda4905df21b42a556d943fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250911.tgz","fileCount":132,"integrity":"sha512-OgsCutlwVd10tyO7Sw/icN1c/UX4BlzC+9h3w3RYwGIbypRJYFi0wsSezhmUV4HocCFdSqmU0dJ/Ob3JA72icA==","signatures":[{"sig":"MEQCIG1nGnEJ8an6b9g0QlxZtyXMDMFOT0oawJNbU2x3hNVVAiBcEM2AObq1+ADeq1hWShqCYGz7AhFpiNVOHn8VxCZYNA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633276},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cdfc519b999d250252b227993980b2e45b98b46e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250911_1757574874072_0.9386380407210033","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250912":{"name":"typescript","version":"6.0.0-dev.20250912","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250912","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2b7353f589ee38e675eb8f907f7b9ef0d147dc90","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250912.tgz","fileCount":132,"integrity":"sha512-at705jUzCugXNOAVuBDUholnNKpGRs1lsBM0L+k6UVA5C3DQUOGyFSMLnKSXy4rJHdjmSLtMo1oOOXlsfcF6qQ==","signatures":[{"sig":"MEUCIFOyXVY071P/3nz5hHhOmjRyElXchmf8n/Qx1JxA5HsQAiEA/5/Ntg2AQG/fdkljHp3pk4yd6aij52+IycDwtQTmg/s=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633242},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e9bcbe6ef706e0b5a34678964988eb6a9cd86cc6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250912_1757661267563_0.7692940817161422","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250913":{"name":"typescript","version":"6.0.0-dev.20250913","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250913","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b0480039a409d065442064ba8de2efec9143fee4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250913.tgz","fileCount":132,"integrity":"sha512-9PX5K8VXiGO5102WSlrEJB6w5th+c/LvyGvFceSGlUQh4Kzw95qGEZ25vsZcJSHHkGHR8Pdz1op5p8/EkhWWUw==","signatures":[{"sig":"MEQCIDlrSEtPYaa4SudxNL87ei5VI0gEjeCwT7UMonlqw8lTAiBnI3p7r2/G/0bsk9ZLQ4Q7/UKs9apf4MzrHg8Os7H5wQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633242},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e9bcbe6ef706e0b5a34678964988eb6a9cd86cc6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250913_1757747687006_0.2384957368528351","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250914":{"name":"typescript","version":"6.0.0-dev.20250914","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250914","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d62d77f8179a175ab37027dd898d38dc518e8833","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250914.tgz","fileCount":132,"integrity":"sha512-pA36j7D77szpZCzxVZF6lrsV8m08VJ4nxJthEaujzXCfgGgSc/n1E+a4jBgcXMqje7sZPSiQzK/ckdj36dajvg==","signatures":[{"sig":"MEUCIQDqm1C1I79CL9PeTocByp4piXoTvzEhZhAg086x4EqzIgIgalmowEFnv5lKjI8IFEZJBa36nAJ0KHU67LvFxFEAX+0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633242},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e9bcbe6ef706e0b5a34678964988eb6a9cd86cc6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250914_1757834067874_0.09854560223630005","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250915":{"name":"typescript","version":"6.0.0-dev.20250915","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250915","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7e39d45d2e2f51bf9a8054d8062d3c9df7d39930","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250915.tgz","fileCount":132,"integrity":"sha512-CwQsPJqBWQRvwnbDlx9YanqAZPCf2syjyoGGuzFNF5yHjvHL1vJ9MV2UbQ32ViZaA63fHd11xl6+CWoaTorakQ==","signatures":[{"sig":"MEUCIFEACLbdDczHD6hvwidqQBqjizNHr7RX8qFRDzt+DJarAiEA4JDLwJ1D+MQemoAOEzd5cJbC5S97Po+4wlt7wPtL1/s=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633242},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e9bcbe6ef706e0b5a34678964988eb6a9cd86cc6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250915_1757920505133_0.4737987380386479","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250916":{"name":"typescript","version":"6.0.0-dev.20250916","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250916","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aef55cd6ebfa983ef077f229a448095b6fc01a14","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250916.tgz","fileCount":132,"integrity":"sha512-Xfuwn53pwofpt/hGVqLcqkqEN9u7jWpPAagOj2QgGmgOZH4P8pzPpwBB4piRkOqYdmiSg6qOP4xK3L9iNRTF6A==","signatures":[{"sig":"MEUCIDx9Z4EQ9Uy+qiF5CjOWXwlWjXyE7GuWIXDwTpLRTLwqAiEAzQXpBgyS1/wDicVYxY/HAJ2+rVx1yywEgJnRJWgRC48=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633242},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e9bcbe6ef706e0b5a34678964988eb6a9cd86cc6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250916_1758006942318_0.5793481374017331","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250917":{"name":"typescript","version":"6.0.0-dev.20250917","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250917","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aab484e3f88987cfc9873c68747d96dd483c88f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250917.tgz","fileCount":132,"integrity":"sha512-Z2rzVGN5WBboY5ySTadfuJm+pouf2bVSzpMZCDVjuBYZvdvZqt9m80J2gbIPPxqQOcRngk0TYlw07zCKxjlWEg==","signatures":[{"sig":"MEQCIH2Oc+gD57sFA9aSzj7DynuSqXiSyorYJCdGybdWhN02AiAcqTGPTq5WEmRFO515oMz/Ekzui5RTfY5arX70X+P8dA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633242},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e9bcbe6ef706e0b5a34678964988eb6a9cd86cc6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250917_1758093302459_0.35181862265657404","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250918":{"name":"typescript","version":"6.0.0-dev.20250918","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250918","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e3657984f039c24f4ea7499dcb45ba566903e8c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250918.tgz","fileCount":132,"integrity":"sha512-wTqsVOIUmqlrMCSIG296k6JY3nfgHqljn+v+JYTC1r6x6NTEmFbM5LH264Fj2n5Z2UhdHVlGwu7u9WTZwfSi1Q==","signatures":[{"sig":"MEUCIGaIP+tuMV5PzIhi83yXbnfoYNNx3SsDCw/N6Ah5WGW8AiEAzJvDs99s/dWse0pyck8wG7FqyK9cDq5OiUqkYBQ8EfM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633242},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e9bcbe6ef706e0b5a34678964988eb6a9cd86cc6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250918_1758179706783_0.9265719729399962","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250919":{"name":"typescript","version":"6.0.0-dev.20250919","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250919","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"abff394cb9e0529de844d1e5c333b0e15c8054fb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250919.tgz","fileCount":132,"integrity":"sha512-ezX/MNKubGLJBruWMzB6LukakR/UI3pZ/BMH64DYbgRaBjcYKXudrEvOb3AHo5rtDp/JwningkxexoD0EGcEyQ==","signatures":[{"sig":"MEUCIChZXMysM82WS9Sq6r3mXQudIUj/ntjZK7bJzV66QGh5AiEAxziUwNe58rjikXQBMYvQRpLWoOCUe84x3pU0tvPulR8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633242},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e9bcbe6ef706e0b5a34678964988eb6a9cd86cc6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250919_1758266116518_0.6024003410326595","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250920":{"name":"typescript","version":"6.0.0-dev.20250920","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250920","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1fce069dc713a8b1d77134f1ecc8f03f41f6793b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250920.tgz","fileCount":132,"integrity":"sha512-c5xaefVuRe7+E48wF2/Ocms4SM3IfV0sXgxjbZwaEA27aQqUOOhprUzl7Z6efRBAirSE13J4sxttE0Qdx9juGg==","signatures":[{"sig":"MEYCIQCr7ukvx7EGjuFe9a4lgcxMWrc9ys82YnFsU2zdJkJmvAIhAKSE1SB+UfZ0Lst2pyzttZoXz6hJ7aHk0xUNWnC0JuuS","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633236},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"233f392d675ccf7da3cf27d628b503d0a9302332","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250920_1758352475886_0.7134700583753042","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250921":{"name":"typescript","version":"6.0.0-dev.20250921","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250921","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"37444d98a5c3480226a621428bd42408090c5b86","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250921.tgz","fileCount":132,"integrity":"sha512-mLy6MSWM+OovOtmQYFYH4FMjZ4JpeafaqV8t/gU83J2jpIQEsuHxQfq7PEUpZIjvAQ0cShf7sCT+NmBumglldA==","signatures":[{"sig":"MEYCIQC1kzuEg7P2gBsGPYiIYNprWzoRROiWymPUL+Kc06UTlgIhAPBjWeLMfOtYW+H1zp6n4Di64CIGpth7kQs1M+RK4/P7","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633236},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"233f392d675ccf7da3cf27d628b503d0a9302332","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250921_1758438883357_0.7038191390088462","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250922":{"name":"typescript","version":"6.0.0-dev.20250922","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250922","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"22283a7dcefd20a7484fd104c5fe1e063886967e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250922.tgz","fileCount":132,"integrity":"sha512-4jTznRR2W8ak4kgHlxhNEauwCS/O2O2AfS3yC+Y4VxkRDFIruwdcW4+UQflBJrLCFa42lhdAAMGl1td/99KTKg==","signatures":[{"sig":"MEYCIQCFKPU+67oVsWwaUerJBBkFC7rrvTy7GJvVQL28gaHdeQIhAMDgTJTLfoAj7/le06WDOKmiwd+gRHiqobGjdQsPmS9/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23633236},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"233f392d675ccf7da3cf27d628b503d0a9302332","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250922_1758525302247_0.23053317348338354","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250923":{"name":"typescript","version":"6.0.0-dev.20250923","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250923","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e7ec8a4f9078256f83553f7ba115efa4ac2b5d4b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250923.tgz","fileCount":132,"integrity":"sha512-Aiy0yklpKnRJkElhXO/bB2DhosYfL+j4RiUinq6C58ncyDOjuKn5wk6O5rds4n4AOobAqMjLU55H5q7bEyDcMQ==","signatures":[{"sig":"MEYCIQCCMslf6yY67SpCNswsMFOFxr6POXK1nLvOWRemh8gtbAIhAIfgJUgheRODE/VrJSvMmYLmUCkIH3huBLeqEWoH4cKF","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23634134},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"904e7dd97dc8da1352c8e05d70829dff17c73214","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250923_1758611728826_0.7883496578412166","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250924":{"name":"typescript","version":"6.0.0-dev.20250924","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250924","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"714ad19bc8fde317058b6e8f79682a87f924fafa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250924.tgz","fileCount":132,"integrity":"sha512-QvrEXTC2T4iiFMS9P+VCcrwH1I9PnbDBeQB6n8d/7Dnv+lEBcF4hU7T8Y2pBgBYo+JT3L6t74ifscyU8mdv8kw==","signatures":[{"sig":"MEUCIBYxD8FgC0EWygW9FWKT/LgG6mhY1uynpyhmJFWl7rDnAiEAo4TKqjTvabcJuBZ9wslweq+r/PJFEq4awRBFmwnh9/I=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23634134},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"904e7dd97dc8da1352c8e05d70829dff17c73214","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250924_1758698068744_0.11826266052855616","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250925":{"name":"typescript","version":"6.0.0-dev.20250925","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250925","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"523d0782524d66b4a0b8540c0cd573ee1c7c6716","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250925.tgz","fileCount":132,"integrity":"sha512-SALz0olPMB0sqqkOB1GdSZ9d8QtnatXBXGaJ0Dd5x2AqSHCGoK3F2SaMjv6r5zMWLcRQ9F+KmN2lHExOFO9f7Q==","signatures":[{"sig":"MEYCIQDeOQ3kvZnZYygi01xWIMuujmlRw28kJOBejzCZ2pEtdAIhAJdglBHefbcCB0kiNvpcG+AnL4LrW8/8YK6ZWXiVR68k","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23626715},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"96acaa52902feb1320e1d8ec8936b8669cca447d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250925_1758784447532_0.10526630159890549","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250926":{"name":"typescript","version":"6.0.0-dev.20250926","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250926","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f8cc6c25c479f4a71e9a54164d6939a86654dc3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250926.tgz","fileCount":132,"integrity":"sha512-OU7hQJeZTJZj/Kj5F5OlM9W6cy/w74a/55twDDC6lMGbh3CzpHaN1jq/6Jfh855UUMDZsHpNiAmsJ+YWnO5WHA==","signatures":[{"sig":"MEYCIQD716ASKN5+74A6ss2bh1oeOkcBreuOe0wTIeihaNxP+gIhAN8dgHJWwiiivsSNP7ZpN6zmDj6yTtnaEweg8wT7Uc0f","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23626415},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5f183ad73dc1500209619cf52e174c45d73f8617","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250926_1758870798524_0.46000488386559724","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250927":{"name":"typescript","version":"6.0.0-dev.20250927","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250927","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9825c55a9eccaecc4f7e0a985a7d41977be9e29e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250927.tgz","fileCount":132,"integrity":"sha512-MXAH+asdJBBe8/lw6EN+0/CRSmvVDzgL/kbQwjK82Nr2TZrb6p5I6VvaSpDrMybBAja5PIV6Jo1CTo+KlQyGMg==","signatures":[{"sig":"MEQCIFIJDpddIZz9th4vYasRJs/w7eBPnMRMIACd8QqxBZFsAiAUBd612Lhpp3rlxKjEUP5GZvQOkvXlUoEhUHuH00hL4g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23626415},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5f183ad73dc1500209619cf52e174c45d73f8617","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250927_1758957224684_0.2636223928510486","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250928":{"name":"typescript","version":"6.0.0-dev.20250928","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250928","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"587f437c12acdd4ba5ae5a4f2439e8f2cf9cd5fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250928.tgz","fileCount":132,"integrity":"sha512-5SpHL020ug/Rk45lNEfvC7DeRqEe8m58qk17jUT/BrI5yk63qJ7JMQkxpIkjiyKkJmD7muVcUsaSEqxOMxH0qw==","signatures":[{"sig":"MEYCIQCDmiMz8IvT410OMw8m+vJceROBSnpjYvO+p/+xPJn8SgIhAMFq0s/NOtiNawhp6AYsSsyZV64XoBuPPbY5PdG8vcoL","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23626415},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5f183ad73dc1500209619cf52e174c45d73f8617","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250928_1759043648192_0.13482805104881157","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250929":{"name":"typescript","version":"6.0.0-dev.20250929","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250929","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"35d57b2a79b5c559eb495983ffef58d7481ad665","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250929.tgz","fileCount":132,"integrity":"sha512-Wr8yoGTDiv2Bcfrzuh2vMeRQ/pjRdisWmJox1dP0Qc9vSioNWKah4sQN4ClG9MECZSGaNrmXunsNBfqRUG+6SQ==","signatures":[{"sig":"MEQCIFKQMnLldIZ+qh31h3iRVN7/q3kgoRUVcO0JDhk9iz45AiAByBDVdz87ldW6gCZxsyN5dixzQYi3qMy5Si4/rcb4gg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23626166},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1cd5309f7dec081960e992b47f238286537c3f50","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250929_1759130043627_0.7959145070153832","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20250930":{"name":"typescript","version":"6.0.0-dev.20250930","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20250930","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5ae70f14f756735c3c3ae63d5350acfb800beee6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20250930.tgz","fileCount":132,"integrity":"sha512-D6DGscM72+75P5w9jKtkzHnbt7sjHIYHLokcjgEKAUd1YN+dBwKYyIlzn3jQ7xCXU9YJEsKZr/+rXaLzySqbKA==","signatures":[{"sig":"MEUCIQDmQ4o/2ZAgSUwDiyGH9lbCREuW5RkAUWy/qV0HOsteugIgAuHkL4qNnrUKMDbsz1ccuSenSg163NHIt/hheE85M1c=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23626023},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e350126ab989f463aac638555e430dcd55421d0b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20250930_1759216463706_0.2251394522110315","host":"s3://npm-registry-packages-npm-production"}},"5.9.3":{"name":"typescript","version":"5.9.3","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@5.9.3","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5b4f59e15310ab17a216f5d6cf53ee476ede670f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-5.9.3.tgz","fileCount":132,"integrity":"sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==","signatures":[{"sig":"MEYCIQC5ifNi1il+zAZC19ov+Q5oSrhOwlpOpghAaAAXYA0RpAIhAKdcZ6pMNZGuprpke8Zi3OPB1zol9c88KVW+apJNVjTy","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23625066},"main":"./lib/typescript.js","_from":"file:/mnt/vss/_work/1/tgz/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c63de15a992d37f0d6cec03ac7631872838602cb","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/mnt/vss/_work/1/tgz/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.7.0","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"18.20.3","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^7.0.0","glob":"^10.4.5","knip":"^5.44.4","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.0","eslint":"^9.20.1","hereby":"^1.10.0","esbuild":"^0.25.0","globals":"^15.15.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.20.0","picocolors":"^1.1.1","playwright":"^1.50.1","typescript":"^5.7.3","@types/chai":"^4.3.20","@types/diff":"^7.0.1","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^4.5.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.24.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.7.0","azure-devops-node-api":"^14.1.0","@typescript-eslint/utils":"^8.24.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.1","@typescript-eslint/type-utils":"^8.24.1","@typescript-eslint/rule-tester":"^8.24.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_5.9.3_1759267178540_0.2143081415904824","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251001":{"name":"typescript","version":"6.0.0-dev.20251001","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251001","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"df84422a8b2cb4504cc68975881584983de1ec2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251001.tgz","fileCount":132,"integrity":"sha512-FwticMnSAyRGVO2htUy3PKk7Q80NwX+bdysyyxzbx9Bs90efZ/UrXSJp+jdQqzFcrx/0Pf3lQV3IGz+Aoz1xMw==","signatures":[{"sig":"MEUCIBwm9PLCemAgFb/+kP/TpUPS0g0yX8AHBH3XQUDMUOvpAiEAxyS9iu+14Uq8zrciMiMTT2AbUk34t0J8BotKAWvxnl8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23635272},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"968d5deb8b5fd4af3ce85433872bdefc1eb17f10","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251001_1759302881910_0.38258931210900227","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251002":{"name":"typescript","version":"6.0.0-dev.20251002","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251002","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"792d372e2023125cf76015a7d814f7fc6b06ba09","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251002.tgz","fileCount":132,"integrity":"sha512-Js9dMmEF5AeAGSK8Wbb5JvzSwWb0jiwA5BdHp3ko8OC5ssRvzcp5m4OTo/jUY7+mILVfpQZYUHYySGyfUYceAA==","signatures":[{"sig":"MEUCIAmrVRtlzofE0OnD+iXN4MGo2OVqGERFlCb64pxWZwj8AiEA87dVf1HqYqhfMyEP12dIjnnVoTT80YejAsKtFdJqcWI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23635272},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"837e3a1df996b505e1d376fa46166740b7ed5450","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251002_1759389219413_0.3746041948353409","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251003":{"name":"typescript","version":"6.0.0-dev.20251003","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251003","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"535d3c9785b3eaa1f0041a4f64fc8e0e50c9da46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251003.tgz","fileCount":132,"integrity":"sha512-PbP7z6E7AYvUt7aCMWyivnkxULdcWwpIAGHE3EEdLiRSAYkZx9Gxho85pLeuNGFQDrhVjdw0/XRYRNuAvjX4Kw==","signatures":[{"sig":"MEUCIGd6PjHgNnsZ74xU+QUXZWkStTgF1uv53vABe4NSKh0aAiEAu7zlLXkzQg6krQyVYzgGLYokwLW5fKVQSIUUX8O+QXg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23715524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ced90d94b5873a642cb1c64eb62ef06660a489fd","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.19.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251003_1759475653347_0.7259566893113771","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251004":{"name":"typescript","version":"6.0.0-dev.20251004","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251004","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a48d3963906a14e74432f100529fda39aec74eeb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251004.tgz","fileCount":133,"integrity":"sha512-3llKaL8BQl6rUoK7GAwVEjvJm2weUfb9nq1ZEVGJ+6nZ7hH5GcgPp/VWry8w5pFds2NpPr8emzrY7QKS5SAPMg==","signatures":[{"sig":"MEYCIQCmDamqGgr2fYwFwdx/ndiwbt8QsPEyBnz3cPesLVKAdwIhAO46uWARK9cCJLo0BN062k0LMA0NgpMT4nW5EHK7lQEX","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23719688},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d0d675a363bf25d435857766757d97b9ad508909","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251004_1759562047688_0.835394530212928","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251005":{"name":"typescript","version":"6.0.0-dev.20251005","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251005","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"061b922d2d0b5072655a852ea9eee05a6959fa41","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251005.tgz","fileCount":133,"integrity":"sha512-KTz4zIPbhB0vQPLuO/uvoZtajqpfDMCC0i/v+5Nf2NwDFpWBLfn6fLeS15R30Vl1H6U3WHGxbv9FnydT2gUcjA==","signatures":[{"sig":"MEYCIQDQSwg/z23vBL1Im9g31TDM0oN0ls+/ES9xatxfh/u1OgIhAJcHGhZ2fkDC3rUIilwJX2jdBH9JgGn/q9HAcF277j9V","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23719688},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d0d675a363bf25d435857766757d97b9ad508909","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251005_1759648462123_0.5977207640439717","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251006":{"name":"typescript","version":"6.0.0-dev.20251006","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251006","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f8c6b3dc5f7df5fc8fdaefa691f0c6e73ebe4428","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251006.tgz","fileCount":133,"integrity":"sha512-DHt+o3xZV+a3cambN7XN1l0RH9PP3bYhUn2pwWyHqSA7j5HSR4MjTEf2hFGpty3/IZj6zHztEBtq4B6bGRdJgg==","signatures":[{"sig":"MEQCIEsHvARt9VvZ3En3coqDFAoMUeVAj5cPzt83XFN9v6IXAiAORTrZdO7zlYhZyAF62dPRnVLs+AnUrmVEbpYcD8pWig==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23719814},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6ba7d3560fe625e02c819c02cad84d36dfe7ca60","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251006_1759734862834_0.1030150036099331","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251007":{"name":"typescript","version":"6.0.0-dev.20251007","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251007","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"f68b51b13a343f1a108f79bc5c7452b1734aae6d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251007.tgz","fileCount":133,"integrity":"sha512-kMMKTLV882uaJepZV/jbSOYGPdMhaJ43MA1caMbI8YtAXAxXBGj3+9OGv9ASwbTjRlVYiX6fC9LNJGHdTq0vLQ==","signatures":[{"sig":"MEUCIEUTBZXyymhkWnawZmMIAzN8qJ2xi+pdmBf4wsHqw9DzAiEA+ItCGt5WiZlfPNJ+TMKnxbz8V8HaYEi5QT21LAESlEk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23719814},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"fe592f16279e23aed618e503077c890d51a891cd","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251007_1759822157231_0.8737917549252994","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251008":{"name":"typescript","version":"6.0.0-dev.20251008","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251008","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3f6c3de6d457e600986b7e1be62ecf7fe77679d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251008.tgz","fileCount":133,"integrity":"sha512-akqwl9XdobElV/XntkoCZ8w4NuY4zleLjYCO5lBCUaJ9suB7SotGJKuw5MoVZZ9drObDYXCyZL4z0RqQPtEm0A==","signatures":[{"sig":"MEYCIQC5CNFSifv/bOXXF4v5ldtbd99BOS43fjKLSraPwRynNgIhAP8f56pIwgslYPa754kwslFWvcgIobTTHBqXbvUijJx2","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23719814},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"fe592f16279e23aed618e503077c890d51a891cd","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251008_1759907664803_0.9015669933249137","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251009":{"name":"typescript","version":"6.0.0-dev.20251009","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251009","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9e9f768c1f1bf23a89bef0c585663e5d6ee74149","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251009.tgz","fileCount":133,"integrity":"sha512-krib5VNghWUzlMA/nk+cmLCPrbnsRL1oOvPpahGnBb4Qf3nZatATP0t8jDxRl+qQLBu1B0pElpzZjyaf1JGAvA==","signatures":[{"sig":"MEUCIGzd+x8xmtRL18j8dHheNeeqTT5UvqctmIPrajfXixJvAiEAskxN6S7G8vLpy+kiRYD3iryItg7+tJkW6+9UPZDZnuM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23719814},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"91b32ac281c16c117603ec647043d169aa56c3ef","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251009_1759994015924_0.24791368669531866","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251010":{"name":"typescript","version":"6.0.0-dev.20251010","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251010","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"sanders_n","email":"nathan@shively-sanders.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"sheetalkamat","email":"shkamat@microsoft.com"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7fa535dd5d5db5e76e283e215406d855a40ffacf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251010.tgz","fileCount":133,"integrity":"sha512-2uEjrdjyv71qoWw+3TSxo7MAzM3N11ELUA4OiGO/XsLAKN8SPce4TU9h35P9+t4V8mS2PlE5YvXfujkSkHPm1g==","signatures":[{"sig":"MEQCIFOUreoz71U9JwnVQWiTAa+n3gD1cgYmZEmWqamV40bfAiAoMt+/akk2tvUtheBehOWkOmOmIti+JQG/A5nyRsU5wQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"10b2cf52c310c48e8e632fc0c06f1f0084bf4a0c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251010_1760080503632_0.16614282148945603","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251011":{"name":"typescript","version":"6.0.0-dev.20251011","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251011","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"268102d500ae685e41a0e32b493e68ecdc528c1d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251011.tgz","fileCount":133,"integrity":"sha512-K4qBcmtTwrcjwko9jMLONmjCy3FIbF7MdcxPuJWvrfRDjB+nWd3C4QG5CVED9Dv6YtuXqlZvSS6zFTbk2JJnBQ==","signatures":[{"sig":"MEUCIGM6wRX/oVWxQDURchu0mCiaZT5BnXKnp6AAoNsia+ZPAiEA3wQVovGJNzvJC9q0BBgn/TKawxwrjAOpxDKysqSFmQY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"10b2cf52c310c48e8e632fc0c06f1f0084bf4a0c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251011_1760166847053_0.3052571902750574","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251012":{"name":"typescript","version":"6.0.0-dev.20251012","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251012","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c77d7ed9041644166c585b9fe28fd2247ed50742","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251012.tgz","fileCount":133,"integrity":"sha512-fcbvWWREA4AIjII3qEfKBoOgfi5UUG3qZbBq5l+Zbbt+Hh/coG24mSlU0Y8XJ+v8aCmzGWhauLz5EoZvX1yhPQ==","signatures":[{"sig":"MEQCIDZ8xvh2ytSaRlUXC6MZg/GuiaPbI5q6ewdWaPnPQHDnAiAp7y2e90ErqCriNIWeu77KJo9iiUlQM4iw5olCDZNfkw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"10b2cf52c310c48e8e632fc0c06f1f0084bf4a0c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251012_1760253252663_0.2030827841801608","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251013":{"name":"typescript","version":"6.0.0-dev.20251013","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251013","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93a13004f4355c47eebf1b8fcea81dff8afd29ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251013.tgz","fileCount":133,"integrity":"sha512-mdBA5lIWGPwVWwye0xBxpSC0AUzEI9FKe6JrlzqULQWEWLKk5ytqyHNQeZFJ2NnxO+ttJ207A1U4pSQhpupjnQ==","signatures":[{"sig":"MEQCIGEDUA2+384dZ7+wZkM+whsv0sXmgMxfYkauCsgdBgJoAiA3SCwcMeOW1aEJJHUENWS4RvcLEhqynFYbdsZJ/xNX+Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"10b2cf52c310c48e8e632fc0c06f1f0084bf4a0c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251013_1760339692988_0.5007514545746772","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251014":{"name":"typescript","version":"6.0.0-dev.20251014","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251014","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"be3f5abe4a0201d8f440e11aa689aae4c9846127","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251014.tgz","fileCount":133,"integrity":"sha512-ORcADAevm3EtGYR5n1x9kCDYJGMVLLe4sVqFcByuQB/a2VJebS+HwHz+Qd9jQGeA2H4AX8I61S8oFNF2cxEnUg==","signatures":[{"sig":"MEYCIQDwfgTweSzi2Wi8PBAIRiCza0IUCWPPqaHFP59RgYNzSAIhAIWa7a63nDt8Mteao0HMpS2ATyS3EsUkiExCIt3uwjTz","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720524},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0b6a24188686fcdaf6b6e31f53dc9718b693226d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251014_1760426097394_0.06093084594741516","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251015":{"name":"typescript","version":"6.0.0-dev.20251015","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251015","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fd90ee82a8b45cd0d599648507e9e97150b31919","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251015.tgz","fileCount":133,"integrity":"sha512-jsK1+Xef9OdqeNUPymZg5AxCGJoFJpO4V0eQwOh6fYvcmYNpCzv4bnG4VeGldDxTvtTJ+JnLGRt1iHUvNNNhSQ==","signatures":[{"sig":"MEQCIA5BgNEhAlenntNCisroJNoy2VibSyq2LHWFWKpUSroVAiAhTT16z+hrUqsVjTVcWsYHFaFKvXzASlET4hiXi8zyNQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720520},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d3be7e171bf3149fe93c3ce5a85280f1eba3ef8d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251015_1760512479342_0.7770404179234656","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251016":{"name":"typescript","version":"6.0.0-dev.20251016","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251016","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f7125d998e72242ed80335618ee8a962cfb9cc3","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251016.tgz","fileCount":133,"integrity":"sha512-J+NPFklPwcYOagyuzRC5nLrTlVxU/cXOusqxMuWbbQR3k9sfj1PHPjv0qcPtzmiTI0MdKZ/7jVCB2e46nB4TIw==","signatures":[{"sig":"MEQCIHhVnC6O3rHBpGkvJIVVYdtxQs8WrmopB5V1N9IRkbhcAiA5rO0SHI1pWPommbGOa9JL7m8uc66NFZo3pMNUUsn5bQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720520},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d3be7e171bf3149fe93c3ce5a85280f1eba3ef8d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251016_1760598971193_0.30624810442061534","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251017":{"name":"typescript","version":"6.0.0-dev.20251017","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251017","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d660592a65b4a99552a6ae95a30f99e8f87122df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251017.tgz","fileCount":133,"integrity":"sha512-soyESex6lT2ey9PbehWuvUjc1sMdcuPIG/6kfWYi5Opb+V6SNsNgi+/pY31QQt0xBeDuU3N8Kci2GWatOFOzUw==","signatures":[{"sig":"MEUCICqcOZommKNxp2gmex0mGaJtJbujt6rZ6T7XwVy5Pfv8AiEA02SZyI9qNvCN1yGaJM0Ermuxg4cyJQPj29pRe7MAA8I=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720520},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d3be7e171bf3149fe93c3ce5a85280f1eba3ef8d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251017_1760685321786_0.02598253477910495","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251018":{"name":"typescript","version":"6.0.0-dev.20251018","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251018","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1f403239513cf62a187555261e6a5238eee0d943","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251018.tgz","fileCount":133,"integrity":"sha512-lXYchuxch29qP9Dm4N7TSR6hoJl7j6QKCYAFEMRQyC1c5vB+MLdh+F/xet/IFnxaEIOcpRH3tfXNGCvJ4YtEjA==","signatures":[{"sig":"MEQCIGJHc99I62jyvGpc02scWUpLtYx4vDXIKfXiKkVbsHw5AiAhblm6lRNBb0/tqU9qCThdOkXcz4cbdQENDEELDxW6FA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720576},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d8aafb3197ebecd7faf919eaa39e77c5805cbff8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251018_1760771640169_0.8706413778752604","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251019":{"name":"typescript","version":"6.0.0-dev.20251019","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251019","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d469f2ee1d1c32baa4dd3df1aaa110cdb51dcfb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251019.tgz","fileCount":133,"integrity":"sha512-3GflyJCe8QdRUa6SnQoc/z6IidGEG/2ziHpHZeXRbu0pz848rvqumnEfxfM6Zua3nZPghun4fvLgEsVVSeLFJw==","signatures":[{"sig":"MEUCID59G8xRh44bOKy6WhVtcbvOhrMPPkDvCSrCxxmVpSfGAiEAx1HcYNz1KlShr3+GwiaX0DxmDpDarGVzD+IGBgaUTww=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720576},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d8aafb3197ebecd7faf919eaa39e77c5805cbff8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251019_1760858037482_0.8476245185280762","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251020":{"name":"typescript","version":"6.0.0-dev.20251020","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251020","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"66c1f951406bf5b4a8a9b78506d65182dc7fea58","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251020.tgz","fileCount":133,"integrity":"sha512-nffOgcZZ+fqBm5Mx78isLGAANnMqfKyI2A2WqJitf/STrrlhCAqHlsgzn+0C44XOYx/ebugU3z+es41HoF+nxQ==","signatures":[{"sig":"MEUCIQCjYSrm4HgWbxCoYFs1vbtQyzzu9/3FJ6Qxj8GhfrGzJQIgSUX1VXP3uLTAjyXGN1I7jDm7Q3YpPqsbze/a2NYKycE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720576},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d8aafb3197ebecd7faf919eaa39e77c5805cbff8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251020_1760944463792_0.935541577531398","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251021":{"name":"typescript","version":"6.0.0-dev.20251021","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251021","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c19e7741e430a4c88eaa182f1b4f4fe55bb8bb17","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251021.tgz","fileCount":133,"integrity":"sha512-pkWOMsrjZz+hnx+KGhLOn9eWYjLEQDAnVNl6qOLxGt+Xwn/Y/nJBtzzmvaVe4JLHVsQ+W/0yGNqgSxgOCMQBmA==","signatures":[{"sig":"MEQCIBeM1W2akBpQ/DH3jqDawMjozks8UMdZpDSso7esul3hAiA46K36OBSUZsNdUJvL4Y5gC2iNM1FwGSpsCGa22Vs0tQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720908},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"af3a3779de6bc27619c85077e1b4d1de8feddd35","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251021_1761030859992_0.8107934521798408","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251022":{"name":"typescript","version":"6.0.0-dev.20251022","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251022","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"083ba2945b46cde567313a927881355e10f56f8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251022.tgz","fileCount":133,"integrity":"sha512-inuBNdnn+zvG9AdteCgFVGgQhWkUoRpsBE8DQHcjZSf8ISwgDzZLxGUJglgL+m20nk+e6yto0hjWLIuomHAiEw==","signatures":[{"sig":"MEYCIQCwCGxcEfKIFAChezJrrOckfN5gAyaHeOvODNnZ5rjHZwIhALDuWGjFNQec5MGpN48WUJ0+J1Bs2qEms4S5ap5gvkFs","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23720908},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"af3a3779de6bc27619c85077e1b4d1de8feddd35","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251022_1761117301000_0.5596027812113629","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251023":{"name":"typescript","version":"6.0.0-dev.20251023","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251023","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"477adda3dc608ddc162022d996e513b481780225","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251023.tgz","fileCount":133,"integrity":"sha512-46h60oV08FdjoDQTcJ4WSImkCyCK9PD7fXxPx9wvDRbBZ0ncUR4ORJl0VB0a8S8J2qELj+NfbVT1qiAymH7bag==","signatures":[{"sig":"MEUCIQDp3u7wbil/AAC/ymVluSz8Rc2kGw/x3x7HLBfWw3ZmtwIgAcy1wO8kN4fDtHbFZzwavRp9UW+klmUyN4lq3mmaWVw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23721002},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f450c1b80ce6dc7b04e81899db00534018932234","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251023_1761203679026_0.6985897661296736","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251024":{"name":"typescript","version":"6.0.0-dev.20251024","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251024","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"34647e9f0be6dfacc09c421c02859a16f9383e46","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251024.tgz","fileCount":133,"integrity":"sha512-LCvfW9FEmkdnIDeQX+GdDF/N2yvy6UvR5RFUuwFCmpjoBlAXJr84AC2L0f7Fw4pqpPeS5xwwlCRDs26Sdke2DA==","signatures":[{"sig":"MEUCIEozGMyN9F/qO+BmTPduHnovRNixvb14EoQKp0zsxhD0AiEAq7eAGp4yyrcgZylffa+lvGWYX2JUK+aoO7injlSCEug=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23721002},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f450c1b80ce6dc7b04e81899db00534018932234","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251024_1761290081255_0.9799086165258568","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251025":{"name":"typescript","version":"6.0.0-dev.20251025","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251025","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"84236772623bf7df4a272d44cb0fb4375fdf9dbe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251025.tgz","fileCount":133,"integrity":"sha512-DGC49YqYNw+YJLjJVxJvTR/msqaEBEx5HBrkjcPXH2X60EQjVY3+kWKdKcShT4U3AWZsSsYx9/aOZob343XTyQ==","signatures":[{"sig":"MEQCIBrXiDQGL5Tlj7GbQoAU/vbSjYEu9nHAEHT/5f/hDVYUAiAQGTqI7UyOQKk3SPtTtkdmez24+sm1LcCgSUMZB+BU/w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23722233},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"42f6576e83a739d3a5e20e03712252abb6f448dc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251025_1761376453959_0.5211522159589026","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251026":{"name":"typescript","version":"6.0.0-dev.20251026","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251026","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"45f80d8e6058c92030120bea46edd98baa840d47","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251026.tgz","fileCount":133,"integrity":"sha512-EgBm80Rqut42XmBLyutIOP7/PYrXI3AJVhbP9XP60v0B1pGrM422AG116s/bU+/6Al+1zAjaRYj2aZ9RklQn5w==","signatures":[{"sig":"MEUCIQDUtIwdJ049akuvakgwik5CpSEjbU03Q8+q5XGbpirPUQIgS1nQUbL8wzW59Bhqdoo3QF7FiWtRl7nDxGZsyF9IrIk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23722233},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"42f6576e83a739d3a5e20e03712252abb6f448dc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251026_1761462802641_0.328764323109763","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251027":{"name":"typescript","version":"6.0.0-dev.20251027","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251027","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e643fc72ba29fb3ba5ca5fd57db496fbf42a1b81","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251027.tgz","fileCount":133,"integrity":"sha512-rGAY+HgHFOCqrFDxjuCkzLetu5z6GpLt+0EKp/ybP8BXvsSfs+lkWd+C8vKka8l4Hn4eXS/+v3YLEHwyhT2jIg==","signatures":[{"sig":"MEUCIQCZHALIIeV3P7xA4d19/mud2smEsRsz2qFOMRwO6H7hPgIgT2PjuxkgiRx1YDFhRtgJKyyfzV4X045SUfYlsCFyBXo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23722233},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"42f6576e83a739d3a5e20e03712252abb6f448dc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251027_1761549288989_0.07219129276108482","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251028":{"name":"typescript","version":"6.0.0-dev.20251028","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251028","maintainers":[{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7485891c160fb82cb4a1b682035b9c01e44da68e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251028.tgz","fileCount":133,"integrity":"sha512-y2s7oA0J5n6H/Whmzj6mm/CjzaAPtyr7obcgTxYjD6n4KxyIhXiuD8GkBhyA++mr1HdmoWGDVJoCxck0MJMdZA==","signatures":[{"sig":"MEUCIQDvQojpZjmLcd0lb7WxkBaLZyr+hAFN9X0ntFGL2DDyTgIgJBgD8UsZWJhY+mxpQvufFdc5A/2SBSmycXCUBlZ018Q=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23722233},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8ea03f88d039759018673f229addb87f579f326c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"22.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251028_1761635631211_0.7777733998242138","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251029":{"name":"typescript","version":"6.0.0-dev.20251029","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251029","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5d0f811e36cd9ee310482dcb7c5efe54d8fd4bb2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251029.tgz","fileCount":133,"integrity":"sha512-ywLo6fTkA6Qm61lskh26HoD9woHamzKGJHuE1l6HhqkvkKugAftBq8dE5TUdXRpbmzVDZ6CNzxDwLSsGjRf02A==","signatures":[{"sig":"MEQCICVSlYarRWCz5ZtDENJlArGjFjPag5EVb+GxhJ+jeo63AiAgCrbr9N7PfCzd+kWiuGjQiBh+A+z21Wa04TmtDVF1Eg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23722233},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"8ea03f88d039759018673f229addb87f579f326c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251029_1761721899559_0.06246522618771566","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251030":{"name":"typescript","version":"6.0.0-dev.20251030","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251030","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b274bf8d237ef0819b31448430872f77f11f2a62","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251030.tgz","fileCount":133,"integrity":"sha512-TXpqH92ltXHwip+TmH7Bl/wv95xDe5SdCWTvhnWTpNGDRmv2Knx4qqBAriopp83IDay6zezViiNQADzBJxLJ6A==","signatures":[{"sig":"MEQCID/J2dEWMg/0hYsgYr2Cn532T6L3v8AyFTBBbGZUZ620AiAkm9P4V4vnOFKKI+dwhPFL3KksO5RdTVkuOcm58jvOww==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23722065},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2a90a739c1c1e87e3c3d0c93e16f7e5baadf8035","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251030_1761808338345_0.6079096132548145","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251031":{"name":"typescript","version":"6.0.0-dev.20251031","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251031","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93ca74fac5a69d1baa95426df756ac2c30ded18f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251031.tgz","fileCount":133,"integrity":"sha512-gJEMFg3G1A8sTe9zdcp2FxWDA09tpK5dLixOlltCgqvhXtv7a8tXHGJBjGS/k5IE0VaehoB7i+CdWfqo49I3WA==","signatures":[{"sig":"MEYCIQCcvQe4y9OzDNZiKfcm+mj+/fCEaSs2YdApu8+Utio6eAIhAML8G1N4j7s/FsjlprMRpb1HHqnYyYn6fiifp7ZTc13l","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23724874},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ac7825c48476a39aeeb7ea519d416c5d77fc34b8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251031_1761894725778_0.6021516826271569","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251101":{"name":"typescript","version":"6.0.0-dev.20251101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251101","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e86939da84d80a034fe9c90aa60f9aef1ce6817b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251101.tgz","fileCount":133,"integrity":"sha512-7yQlEGqglItGj0CNlMeHBksCgwUPF974EvJ7Vu7LKgTmgkTapWq2l7SrkYgZmJKCih5q8/1Av8/tM+qhfSXXXA==","signatures":[{"sig":"MEQCIA9u7bK3vKJp+v/e3HhS63ZVMqSGTxOyxtPqzdo0OC3UAiAM4Nq3TX3YDnGlhv1vTVJIST8StCSe1kzj9FjLO0CsYA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1654ebfb54facadb3a0468ced0ca779ee323c7e5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251101_1761981106168_0.18803278813061763","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251102":{"name":"typescript","version":"6.0.0-dev.20251102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251102","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c305d60567ed312d4c28d595299d002e3b46d44","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251102.tgz","fileCount":133,"integrity":"sha512-GPehLluBwvaKWGhIF/TL/wzR/aQcK54ZwDLU2mXqDasCPId0wUpPWcjQJT6BtE1BOIkZKn6iX2wyDZ9ViNnDPQ==","signatures":[{"sig":"MEQCIF+JkgqOpvLiEXyET92d+iCy+VrVbW22rZv/Ro7bdwFBAiBoSPdXwl8fHeZpV/24uUzvHthU8jNEW3ix3Kn3CSOQdw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1654ebfb54facadb3a0468ced0ca779ee323c7e5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251102_1762067536580_0.3689607071959593","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251103":{"name":"typescript","version":"6.0.0-dev.20251103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251103","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e8cc8d5f786f561029ef0a628aa95c4a25143290","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251103.tgz","fileCount":133,"integrity":"sha512-G5POBAyhca9Ie2GfRAJ/xNAk+Fxd8YOaa4A1TXHPzibdQR5Vnn//c3K3rLmIxeqMHOsog0i6ym0zJjOTPIsAsw==","signatures":[{"sig":"MEUCIQCmvjyIsOTSs1KxBfB/Ki6ChatJdMwjmB/1quwQ/YTz7QIgHUzcA6JQMeyP8viEg6LgloEX/Igpy/CrBbmEZu3gUh0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1654ebfb54facadb3a0468ced0ca779ee323c7e5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251103_1762153894287_0.13103463426426476","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251104":{"name":"typescript","version":"6.0.0-dev.20251104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251104","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3d4d6a1ecd39033562df13e8de3a727c894c752c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251104.tgz","fileCount":133,"integrity":"sha512-ViaTtnQ9X1HDOPBldae5UXAfOCXzNdIszjWkP3qy9v1EBsWr4KkitTEwr/9QtnzA8YI+ltf8Xoi1KCd4EHVMmg==","signatures":[{"sig":"MEYCIQClHjJKlvCRz7gSscKKCO9fpo9IzXDjMwUtEJ54IeKUuAIhANgywXdQ8Vmvo47Q53A1Impl6qEoPMsOOUbH/WpOCu5W","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6f4fb0145845db22791188c4d38e3a1a0edfd449","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251104_1762240278024_0.7454331888248826","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251105":{"name":"typescript","version":"6.0.0-dev.20251105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251105","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a99628a1c75212164eca52baee112725625528c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251105.tgz","fileCount":133,"integrity":"sha512-1qXzjLkr7/FSYqHvV5GyP/16Y4bJyO4OcboOVBOGcorurTfB2Gf0Vya/3nPVcAunSPBq/VM9hzVPsFX1M9buZg==","signatures":[{"sig":"MEQCICohFG4bAdIa5/06aoWStpWihMDuVJi9QrpyJ4wYHS9SAiAFaNA242ol3Y/brmuvVMfJctdWkKOSFv/CD8/6ZQbSUA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6f4fb0145845db22791188c4d38e3a1a0edfd449","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251105_1762326699730_0.26546610594276054","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251106":{"name":"typescript","version":"6.0.0-dev.20251106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251106","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"62d7f16550df8707475df69998189bf450613b08","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251106.tgz","fileCount":133,"integrity":"sha512-5+HwV8o70G9ot/VDVYQwklYFxN3lk8sfu/NGOMzqxDKThrOhyMZ7DaXd89g7kNCSd8yPJmwzsSMVgfRdtV4I2g==","signatures":[{"sig":"MEYCIQCeIfJ6ftChedaC51uy1zEQbd5CTo5StrYBzzE3acZJ7QIhAOFkOCuY8NUN+4acNXKhwruktc8ooiyqWS/bhJOJtJsA","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6f4fb0145845db22791188c4d38e3a1a0edfd449","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251106_1762413123230_0.5062890751060078","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251107":{"name":"typescript","version":"6.0.0-dev.20251107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251107","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"525c623a8a5651bb5bc756fc8987e83d0e76ee0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251107.tgz","fileCount":133,"integrity":"sha512-nuKEnu0EuFyOiGvGookS8EEntcBKgpDmLVuDko1Oor2+NJZ7NuguE3swHpTYVPRHB9sReL51eeJgv1cvU8YGMw==","signatures":[{"sig":"MEUCIExgHyeQymytdA1NSP/YtMnN84ZmVxeSx8Q3WJdvnx6OAiEAk0EJ26F7EBovePks+hDvg3aBLtpBYF/a2WqgLOIFgCY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6f4fb0145845db22791188c4d38e3a1a0edfd449","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251107_1762499546594_0.17169755462026637","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251108":{"name":"typescript","version":"6.0.0-dev.20251108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251108","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93758fbcbd4d5b53c5e58a834ace7ad8fc959e1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251108.tgz","fileCount":133,"integrity":"sha512-SF1Gz3FnIadsTS/3E34zl0Xojq1uxHgxwoDk8j/D8bzvHjFcNP82ecok7FLhyyvVH1eDCieW0kH7ewmNC+TWAw==","signatures":[{"sig":"MEYCIQDEjkrPitGTwjC/wnDyGAFPMJT6AIbCPXEe5KaCI52Q6AIhAIyBTi79LD9bF86Bh4NdvrfVogJfgkXUYdsWB73vDIpy","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"efca03ffed10dccede4fbc8dd8a624374e5424d9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251108_1762585924575_0.5345826243562617","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251109":{"name":"typescript","version":"6.0.0-dev.20251109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251109","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e1cd2f97ab17c233cbc3f09ffca41500627090b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251109.tgz","fileCount":133,"integrity":"sha512-kRfs6Op05piLPd5Vdpyciv2lDS2UYN0WnKPiyygNwGtzy9Xj8afUIkze0BIer5+7E12ANb0pZkk9e4XMIuq2mg==","signatures":[{"sig":"MEUCIFWDMZCcMo+Si420IrvoGGxgBPzM0sxYH3uaqttYov0jAiEA5FBqlL61q2OkujGxeDfhJP6u4dUJXq0gGI7lY38bZEQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"efca03ffed10dccede4fbc8dd8a624374e5424d9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251109_1762672324379_0.1344258888779466","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251110":{"name":"typescript","version":"6.0.0-dev.20251110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251110","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e35f20a20d19ad81bc5d106680bc93a3315dfc62","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251110.tgz","fileCount":133,"integrity":"sha512-tHG+EJXTSaUCMbTNApOuVE3WmgOmEqUwQiAXnmwsF/sVKhPFHQA0+S1hml0Ro8kpayvD0d9AX5iC2S2s+TIQxQ==","signatures":[{"sig":"MEQCIFBu/xxhTaV/0T9PaBYlcsKnByYSddNjHQjQRffDI3vWAiA5vHFR64+85O3jwgQqTXl1c2WtZm8EFJ2eB6VTCDPMag==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728094},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"efca03ffed10dccede4fbc8dd8a624374e5424d9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251110_1762758713851_0.46443475713346616","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251111":{"name":"typescript","version":"6.0.0-dev.20251111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251111","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4d8bba2645c7cc64e2c58bb386889763cb5a1b3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251111.tgz","fileCount":133,"integrity":"sha512-335S5mZVzEbVf9M3jhodtFDg/85L0LVZo5oNWLs6sUJ/JIpd0HASHJsD2brvWAWN0kFOhVT9LrJ5C9Jq8XsCaA==","signatures":[{"sig":"MEUCIQDR1nWehJV29AohLYBpfOZHi8FinW5EJYnt3wvmLFlonwIgcjSaiIzrTLMQ8kcALm8SW3NxHgBTKEAmtUG6+rvlN0E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728160},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"48244d89f8ccc803fef4a2f0930100de1c77668d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251111_1762845114950_0.48961191888800215","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251112":{"name":"typescript","version":"6.0.0-dev.20251112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251112","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5e52b7993d86490d804dd04e9d9ae92a0e33f992","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251112.tgz","fileCount":133,"integrity":"sha512-t9fwupCY/vxrHyZR+m3BOwvXdnpuq9Yp0I8ZWFneE5PICANlM4Qgfps3prhzhtiFXPMxfBy5+UEFkynOFybIlg==","signatures":[{"sig":"MEQCIDhTYxoiFNvSpJH4ymWl9c7h6pAPU1qFX0VfX6srGRosAiA/qMPtLZ28rsMeFBmNMEDM01ZWqxt5za+0M4obWdeJLQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728435},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4a957b74ea4d716356181644d23f6ad5f10824d6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251112_1762931524757_0.3440227889672556","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251113":{"name":"typescript","version":"6.0.0-dev.20251113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251113","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"480d4f9be33b041c309b33a264f35917513cb414","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251113.tgz","fileCount":133,"integrity":"sha512-z+uimGhCCWMugvUGPrqMRikJpx8weV3zZr7lxvxt8D/IGdmO3w/XDCaKtXCTyFE9zJG6lm2Ci90j2TQtaht39g==","signatures":[{"sig":"MEQCIE27hhcKkM72MuNVaFjwuWPbXiEvYS+0sz9IXN4VxxrKAiA0NCgzmFQFYGmqzxOpKMiYJ9Ci2NeSq1oEJyAWz1j/rg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728435},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0f766a9aa7936079688b29893371e7821400b0df","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251113_1763017892866_0.3835355985282205","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251114":{"name":"typescript","version":"6.0.0-dev.20251114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251114","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"eb8e146ca225c56c1838619d55d4784c588730d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251114.tgz","fileCount":133,"integrity":"sha512-1LMVVuqUh6uIQ4gMX8tN5GS9UXAtEeAZGWwgp3vxwXAwWSDECeDJWATreBVG2uxqbq62xAzma6aqJG6lbFA2Vw==","signatures":[{"sig":"MEQCIApghgwmze53j3KY4yvnIu9uN3QYH2Jy5Tn1YC1KK7wYAiBHhxX/Iq/zfZJwsO7dKF0xeKxo+TkAoS3pWHMh60K3PA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23726868},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"09e31cf04a195475cc6e1b75bfc9fac126a15c84","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251114_1763104277693_0.6629550526921086","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251115":{"name":"typescript","version":"6.0.0-dev.20251115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251115","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"24e57384c5911afce96c01ec24e4617d4a1b3d8e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251115.tgz","fileCount":133,"integrity":"sha512-sn9cmQKx8OvPSQTCyYQsfLNmaziAEPqS7rRh5VMKJdOIYkXiFWVXa5nOZuhB5v0c9OQlYMxhgdYRMXtT61xF/Q==","signatures":[{"sig":"MEUCIQDFy0Offq817xGmudqrJ7uHs8IlhLj0iE3GQ492hVKQSwIgateILK30C2huO65JapjWFON/vjAUPkRK7MuXamkwlAs=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23727070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cc2610fd347127c28609b4fca6fa9d55ee5063c6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251115_1763190684861_0.6219769934149217","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251116":{"name":"typescript","version":"6.0.0-dev.20251116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251116","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6481d8f5709b80b46780e33d73d6dc268031cf9b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251116.tgz","fileCount":133,"integrity":"sha512-WLoUeUgTu5z8kzB40FO8irCyeyPh+X2oA616Ty/CVQpZqTcgLtWbqu8nrKQa0WhgOllPfPBYTThtUI/xrZO7yw==","signatures":[{"sig":"MEUCIBQElzpBpro2vEgaW/NBY3peOcfC2Zv83NIS7WhuO1moAiEAvOEjtsLW0mLWq+QX+ueV5ZOuyQjCd/YqDk5uRoG/Hr0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23727070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cc2610fd347127c28609b4fca6fa9d55ee5063c6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251116_1763277102853_0.5702952480830927","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251117":{"name":"typescript","version":"6.0.0-dev.20251117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251117","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"793bf17855a52bd7a6747fc716fb4d24ccca57d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251117.tgz","fileCount":133,"integrity":"sha512-BJkVdQDGWE8KxtuSLvWLQ/ju+n6FdSM8rq/2B9myrmKXeKa9HRG36MOTMgfZQUWDmPd2f5+U8fhU7xO2+WNa3g==","signatures":[{"sig":"MEUCIQD70+WvyuphpAN+OmRVxO4HJRU8hfOfsXMngNMvziwRewIgFtZOd6q0z3TrpOQYmVbC106dUPQ8HPh+IBivlEFvPaM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23727070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cc2610fd347127c28609b4fca6fa9d55ee5063c6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251117_1763363527115_0.9615153512574097","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251118":{"name":"typescript","version":"6.0.0-dev.20251118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251118","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6a7f4139d27f7430830bbf4ae6b6d3e5c7c5d519","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251118.tgz","fileCount":133,"integrity":"sha512-7tnnUDOyPtgZ1WaJS/e0K07/qysHdhSuAIwxlSwvTgqhzETlZIbGw+0Kw8E9GaJ+OZ4vXq2jSN9azZoKwMPE3A==","signatures":[{"sig":"MEUCIQC/hHLxmrI8e0kKqPfgDUEJVPEF3ws276aTV3SAAvNtSgIgTE9uq6p9rNMnkxAUXVVdrpxnoX0Y4+NH3BwGutIrRW8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23727070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cc2610fd347127c28609b4fca6fa9d55ee5063c6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251118_1763449925187_0.6386736318750139","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251119":{"name":"typescript","version":"6.0.0-dev.20251119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251119","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0b89469276f58969cfee6285de2dddac9431aa03","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251119.tgz","fileCount":133,"integrity":"sha512-bP8dUqiG7IzMxPqKQRc7MSdmKvt/7eUeHgRp0Cbv7ta5x4Q0sV4OSzB/6PrTbLdpXpKVD+Cw4vobCcBPNeejUg==","signatures":[{"sig":"MEUCIQC3HFoUhJDgwn3eU6UIMbfHWV2mDqL3QrCTuS2TIn6SkAIgI34yNCZU3n54KOerNK6z6kPiObOPzuVVqZcCRy+cJq4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23727070},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cc2610fd347127c28609b4fca6fa9d55ee5063c6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.4.5","knip":"^5.62.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.33.0","hereby":"^1.11.0","esbuild":"^0.25.9","globals":"^16.3.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^0.7.34","@eslint/js":"^9.33.0","picocolors":"^1.1.1","playwright":"^1.54.2","typescript":"^5.9.2","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^21.1.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.2.5","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.39.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.39.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.6","@typescript-eslint/type-utils":"^8.39.1","@typescript-eslint/rule-tester":"^8.39.1","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251119_1763536333480_0.11506490291321314","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251120":{"name":"typescript","version":"6.0.0-dev.20251120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251120","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"75126571700ed36a107171355dfbd2c65feeeab9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251120.tgz","fileCount":133,"integrity":"sha512-dkvZw2/09r7JIltGCeubJXLYE7+NapbKj68BtGtm47TiwjyKxTDTG2nWZu8Gpopzi0ub9bNVn0rEgh5CgOlE4w==","signatures":[{"sig":"MEYCIQDxHlJU9sPWx8d/PBwcrGu+XcQLpI1EUR+UbWtREow4VgIhAO8lxJiUozz5KJ90f33sqBnzCLA0hhNexLRwAJb8omtk","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23725555},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"60e99ecee46767e9f37e6f60dd48b71cd45c099a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251120_1763622690794_0.4971395736392219","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251121":{"name":"typescript","version":"6.0.0-dev.20251121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251121","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1db1873a210c456c90b1cf4cdb45c2fef083d169","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251121.tgz","fileCount":133,"integrity":"sha512-TrGhGS4hOAKgwizhMuH/3pbTNNBMCpxRA7ia8Lrv4HRMOAOzI5lWhP5uoKRDmmaF3pUVe90MBYjSieM498zUqQ==","signatures":[{"sig":"MEUCICYiRUQkYCCEkUpsMsIA3PUhh7+IkX/C1UR2jnNbdr+3AiEAvZ5APpjytSJyMWseJsT3zBByW+IojZ9cwwKaigxc30I=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23725555},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"60e99ecee46767e9f37e6f60dd48b71cd45c099a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251121_1763709108542_0.04833777206559575","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251122":{"name":"typescript","version":"6.0.0-dev.20251122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251122","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3033ca8f9bd10d8fa42be8717d97381ac08c7269","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251122.tgz","fileCount":133,"integrity":"sha512-rxy8jtOQQUfnO9pCsyVt6doDWGIz/UMSZow9yMc1Nfi9PeL9uhtqMjVsthO0FxwpOerUc7Mow7wAzAjT4Sfxcw==","signatures":[{"sig":"MEUCIQDXdTm3YfuLhvWmFlzQ7a7F442HDVmaZjW3PdemmLrhzQIgYFkP880EfN+MTG/2obezXhwuKlnNaXmeQyT5+VH3ByQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23726172},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"fbb051f500afe0f248afa07db7dd258f9f755ae0","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251122_1763795508080_0.349007810791623","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251123":{"name":"typescript","version":"6.0.0-dev.20251123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251123","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fb9a677c9a8de51e50caac8badf8b403e19f1802","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251123.tgz","fileCount":133,"integrity":"sha512-Xrj9TOCpFjQesBatVvMgSLGJTanpJtNvOCNyjrIz2ZkJzqbnhj2tHw3NkaWiv4Y2q0qyrLCPuaYxtsylIcpTJw==","signatures":[{"sig":"MEYCIQCf/olMT7dq+q/ie/6C0p/1QEhva95yR2dd39veAB+3UAIhAIHI7Zx3S7yoN1LigqR+y4bQap7b3kBcnwurhX1IKhAU","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23726172},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"fbb051f500afe0f248afa07db7dd258f9f755ae0","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251123_1763881891482_0.5550440294825894","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251124":{"name":"typescript","version":"6.0.0-dev.20251124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251124","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b8e86b8835efa59fd9b18a27c416696cd6c0e6e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251124.tgz","fileCount":133,"integrity":"sha512-3dp4cPGjA35NMKhzreQI41rYQTiLFWUjIoWCBAp/r27Ccf6HLZwniD0f3KSgruR6hhzb+2m5yrEn0RP7IaK1Bg==","signatures":[{"sig":"MEYCIQDhPU9v7VAsq1v28h4n6uDuUxLIKkK5hgtOUIO0qFqtgAIhANMmJkSf8GK4lqOBWaDDosIFrm4wp2AgLNV3Wn4OVC8d","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23726172},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"fbb051f500afe0f248afa07db7dd258f9f755ae0","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251124_1763968309728_0.6961846689324152","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251125":{"name":"typescript","version":"6.0.0-dev.20251125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251125","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"85fe7106dc365f437531ae890e97699cc4c5e27a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251125.tgz","fileCount":133,"integrity":"sha512-9Z3Gc/FwO/swCqfmqvha4UkUVlEkBf1lu0u0ELR4TynnXV1lWHc9iomNPfNLzclcKK6xJS9fOgiNi3p8L5imUw==","signatures":[{"sig":"MEUCIAPLvAG2jlUr2gKWfT8sMJvWxb3hV6mZNe5Mm25Ik4iAAiEAsztsGdk70rAyNeFGCBhuH4TDwEyuWjpQbcmU0XAgVo0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"669c25c091ad4d32298d0f33b0e4e681d46de3ea","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251125_1764054730146_0.8042681057224417","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251126":{"name":"typescript","version":"6.0.0-dev.20251126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251126","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"30196e9e34dfb89b5c967902fdb578c5bf9ba554","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251126.tgz","fileCount":133,"integrity":"sha512-9B5gGo9qwa7Mj8aKFUQEqvd1zF5AbYZShA3qcePcJjVYTEc59Wfjydb67qHw/OWby3PnjQ0hd9miXybQhNToWg==","signatures":[{"sig":"MEQCIH291MFU0Q2OyO/MbjlPj3o8mec1HV6d28FtLCDznBx6AiBy5wFIer6XOma/1NnfrwdJyMHaT71d+RYwVm1GqL86xw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"669c25c091ad4d32298d0f33b0e4e681d46de3ea","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251126_1764141103619_0.33206162683561913","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251127":{"name":"typescript","version":"6.0.0-dev.20251127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251127","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fe5dfe88fb62cd3aeae0d8c6024aeb1120b41bfe","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251127.tgz","fileCount":133,"integrity":"sha512-QTE6/0k3VNTwY1O+a7H83JjFnHe480mET582mPAimE9YApewxJ2PFTJl9L+8mKg/wnp3iKbQSfBoYQ3iswejSw==","signatures":[{"sig":"MEUCIQDHgCLh8Zb1bD8rHCY+HMdMP2ZLku1jsWpNBWtzvNe9qwIgFvsJDhuyRZj7zEaYpgmnESxK+gcog955Q08NUTeWLRg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"669c25c091ad4d32298d0f33b0e4e681d46de3ea","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251127_1764227539626_0.6700509409403796","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251128":{"name":"typescript","version":"6.0.0-dev.20251128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251128","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d1d2e991ab89634d38618d49f7898d19a95e9c4c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251128.tgz","fileCount":133,"integrity":"sha512-TvyvlM0bjzOhHnq6Xu+jor2YnbA+Vdt1qq2cDMN+RkF/bx877OvK68T+IcH6qUOhBCLdTIVN7HS5vsAiTGJTQA==","signatures":[{"sig":"MEYCIQCZplBy8xNyJCxMaLUyt+P5hLsrEB6IOrDiI6btKusd3wIhAJ3gGRldGrrFOz/KVRwWUdDwcmG/NjDJo7DHZ2Lwjevq","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"669c25c091ad4d32298d0f33b0e4e681d46de3ea","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251128_1764313933707_0.29928860534244484","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251129":{"name":"typescript","version":"6.0.0-dev.20251129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251129","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4558560fc37691915355d47f570c91427dfb0672","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251129.tgz","fileCount":133,"integrity":"sha512-PE5h3rCwbjl25D/kZ8oO3QP9lrzIGn5ITivjN4ADMQEzb4KkGhore9qVc2Jms8nssAHQKII+myw2meg4QzW92g==","signatures":[{"sig":"MEYCIQD+WPkSrqOh/dimyj/91NgkjlXOli2USS6LJfiX5xO1RwIhANmMw4MwD4RWINTT+sq/DwffB1A6F5KindB9qG+3k1uX","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"669c25c091ad4d32298d0f33b0e4e681d46de3ea","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251129_1764400312246_0.23629495949944146","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251130":{"name":"typescript","version":"6.0.0-dev.20251130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251130","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2d6778f703bdca3b31fc2289cc91efa891ba976d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251130.tgz","fileCount":133,"integrity":"sha512-KsAcpCYlgZmHwL8h3eqhbFbYidBQR8MeRhfP9yQvhUG4gLb8U1jYjL02dqn2jKp88+pxqpZa5qXggULszSam6g==","signatures":[{"sig":"MEUCIQDtSIxDLa8hZVqFeKVSnpzogAZUtju3EEfqND62KqFcvgIgftMTbbkxidfLDGEQTfpc7At4nH+GTIPWNsSQkLCDXZM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"669c25c091ad4d32298d0f33b0e4e681d46de3ea","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251130_1764486694679_0.4916847118910024","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251201":{"name":"typescript","version":"6.0.0-dev.20251201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251201","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6d9d12077f011311ba6e1a626319ac99a5c8267f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251201.tgz","fileCount":133,"integrity":"sha512-ZW4PYEVveg/O8lbmnkwy1b3NOcvw+GHA0mCFLSAVHLGjLTtfoNfIRduaajqEL4gk25U7UtQ0W8fF26qHKM5BJg==","signatures":[{"sig":"MEYCIQDIb/QOe5YrdQlyb1i1umm4JHseaNR2xSsNsgLg0H8/YQIhAJN9QUqG4XulDb3vYTASlB9luJjandctF9jPzQAjy74k","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"669c25c091ad4d32298d0f33b0e4e681d46de3ea","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251201_1764573216324_0.4959792070344504","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251202":{"name":"typescript","version":"6.0.0-dev.20251202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251202","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b795d1dff6e319de7c5f9fef71833fa38e19c2b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251202.tgz","fileCount":133,"integrity":"sha512-pVxCVR1HPICa9EV9ELXM4+oV+ZfC926vJxccsjRrzYwJHdez6lqRhObTMomN8sFJRhhZnGAgj6oEwgSknzJQ1Q==","signatures":[{"sig":"MEYCIQCamFzQ261D979e8P3gQHQ/jRNR+dp13tkgsx80UG3kYAIhANmg7SGciNR5VWMYiP0l8U5SOlScpsdmuU/vIMVxhJG9","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5026c6675cbbfd493011616639595084f899d513","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251202_1764659576223_0.35364508617329204","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251203":{"name":"typescript","version":"6.0.0-dev.20251203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251203","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4530547c0ac34cffe3e3b5cb857fe390c3069ce7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251203.tgz","fileCount":133,"integrity":"sha512-M6nzxs653j821L3qgZOL9OQutcxogQ5/sgVfWH6RkDaDtmUVZPRVotcP3PrRxfDvhsmyoYwTTxHRAoePKMBCQw==","signatures":[{"sig":"MEUCIA5oWwH9vbUNorwC8735QWhEaqSYfv4j93dTBfEe7+IcAiEAz7cGQYNwPeNta6/tsWPNh8jV4JW8w+n/ttqYAScx4lQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23728804},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5026c6675cbbfd493011616639595084f899d513","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251203_1764745944511_0.01816128490372737","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251204":{"name":"typescript","version":"6.0.0-dev.20251204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251204","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7a94f19efa00aecc9c53a48502508717c0081680","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251204.tgz","fileCount":133,"integrity":"sha512-lIiRrHQkFQME22BNpasnUmMVXm7tYSAzxGwd9v3YP5hfST0Gs0l52ENO+2USOOOHQfZnOwRZGVSILbU3JIJizg==","signatures":[{"sig":"MEYCIQDlAFWzxHXwliP7qN0OD5LIOKMpFUf3FzjR6wy5GI4YNwIhALqu/sy+6kco96R01MWDQ1tS8KEby0OKrLJzv7Fiarn8","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23729621},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"4ef237895d6479bed3e02448a9792ade7308766f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251204_1764832361896_0.7794075359188344","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251205":{"name":"typescript","version":"6.0.0-dev.20251205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251205","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b2fe43ab4b02a613b96d722226864505ca32462","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251205.tgz","fileCount":133,"integrity":"sha512-QB4oEEucTRze6EZJn1DNO/TbHXj41LZsbeaI0sUE6oTri5U7Z7pikQW9sDfk9O/anrfpvUFtbHg0Yn/MiUvdMQ==","signatures":[{"sig":"MEUCIQDZL/4avIMUzDFROQ/4gw60EIYZ4H0fFM7+Ap81JbBLuQIgCTETufJwRQyd99nm5lOec8NAGMWvJUQyy3M4wouV5K8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23738031},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b33d37201e8f0353f69406d9872955dd4ccb9c34","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251205_1764918738806_0.4874539670806344","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251206":{"name":"typescript","version":"6.0.0-dev.20251206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251206","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9f73d2d61d9b0a02cb7cf193f5a09c7dc4c81a3a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251206.tgz","fileCount":133,"integrity":"sha512-oCOhHxurVty3pcM0efpY+NdMZqPPpYXq3sEnwCM2+AFDu2jEOILMkl4OmoNdtU2U5b7GdzAF0k+hFZCK8EVrRA==","signatures":[{"sig":"MEUCIEWzptNozHIqkCfcHhtV/rYASAm5Tuur6P/lb6fClnj7AiEAjVq1aCTc2x2/QCIE6GkIoCq3Vn9NFslLD6ulivBFPp4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23737611},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"38d95c8001300f525fd601dd0ce6d0ff5f12baee","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251206_1765005115090_0.64956747456252","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251207":{"name":"typescript","version":"6.0.0-dev.20251207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251207","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3cccb1d7febf2faf86c61862dca6f5a01c4a4092","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251207.tgz","fileCount":133,"integrity":"sha512-JpPOHJuZQzvJXJ1hRX5IfgNCKxBpkgSWHRmBoHA7faqu3CuaWrjAPG8sXcCKepkh5D4h/pcvS8poMv6ewxa1qw==","signatures":[{"sig":"MEUCIAn9LQNPCTigqn1rQlqs0unXMiZywHU7WyAkUvskp/amAiEAnDCtIHxnO+60XvDMURsRKstR0p7WZ6qoZnKShNxXLMc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23737611},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"38d95c8001300f525fd601dd0ce6d0ff5f12baee","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251207_1765091500200_0.8615525813607292","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251208":{"name":"typescript","version":"6.0.0-dev.20251208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251208","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"13b743c9fc7adb8891b56739300c9aa7d1d228ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251208.tgz","fileCount":133,"integrity":"sha512-6V8RhCNO8WG1sQICzVMf0KX/i946GiL0X/QRiSrHb59JJCLHRECJ6ZBanD8K1V1mg1y317nPrYAfhDZdmVhxag==","signatures":[{"sig":"MEQCIA35O292ph615TzOOrapHRP95XfFxg/3nhldvOGtsb1/AiBZUG8F9Zj3meViQ34f99ksP4TGg+MBDcr4pBuGCQHieQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23737611},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"38d95c8001300f525fd601dd0ce6d0ff5f12baee","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251208_1765178018493_0.18424764493680534","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251209":{"name":"typescript","version":"6.0.0-dev.20251209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251209","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5dac38deb4546bc36623cfc1ff62c354a147e00f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251209.tgz","fileCount":133,"integrity":"sha512-h8VUiGoYJ8hIGCgvAalQVWbOon+qOiYWFE3B8+PRP05GIB+Tax4rLA1GjH4y9Keb+4/jEyKz7J9JcViqhwrjWA==","signatures":[{"sig":"MEUCIQCYDhekzWVbuuR5m+HKwCERFgCAKqSiuZeFqnfdc5MAnQIgKfZeLgLzSts6bQiOe/Shp0Vfb+EqZvL4zZXBeOBMkM4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23738983},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ab142be459f50e7cf1327b6ab1031074cf7d8e5e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251209_1765264370620_0.525979795086251","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251210":{"name":"typescript","version":"6.0.0-dev.20251210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251210","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c3b00ab80013d73c120a7c033826b258309a46cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251210.tgz","fileCount":133,"integrity":"sha512-IrJNDyAX7sgCsT+65JI8ymvq1Zm9bvioxnN8+F/LCtAQOpv3uWKVH7JbtLOEbi8+4W2HOut43A+z/MFn5m8F7A==","signatures":[{"sig":"MEUCIQCXGNpKcXWHnGPU+2tOeE/EAexERpsgqIcsDsUig70p6gIgbs9l0MofbV3QSzvoe1emsk8R+yq51cHVIq62k/sEy3U=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739187},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1da8266179589bbc977ccbd8712614ed5ddd3004","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251210_1765350813015_0.7901859054805869","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251211":{"name":"typescript","version":"6.0.0-dev.20251211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251211","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"93288e4d2bfa46b3806b81b4c9bf9b71be5110b7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251211.tgz","fileCount":133,"integrity":"sha512-d65nxUjT4x5FguGOaAhclGuRMZEmaShi7My4n8EseJkDjvkqwPvevabh+nzArQP2KlPv2aPTQlAEXf/bXZT3tg==","signatures":[{"sig":"MEQCIB8zGVmRsq9NWa7iOPkIeAGUECHjSfbM0h2BK2FcNTIbAiBboucOEXwUNTDBwp0QS7Q/EA/fD42Q/igmBBfkWSM+sg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23741143},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"366da34ae60b458e97c880fedf33298d6842ddd6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251211_1765437199007_0.6186920745816045","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251212":{"name":"typescript","version":"6.0.0-dev.20251212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251212","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cfcbe9f0d9d3962ee5d10b574372cdcb8f47e33e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251212.tgz","fileCount":133,"integrity":"sha512-aAi/ILct8oEUaL+bjPetMS7Q3yB/NJGZDRlJ6mzgfsdgYdzAgJ1qpl+b8o+LzTLjCQ4LzLwwUzwlNZyJFYJvQQ==","signatures":[{"sig":"MEUCIQDLfBthAaf+GWJAiCl08PP8+TDwo9g1kDHeFFJFfvBA+wIgC+QpGEAvxeprFoFQ+Gd+ZVvQ3EXjL/qXT7K236pSXjM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739382},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"16b933fb7bff04371fe9ec8525a8e90afa3174d4","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251212_1765523593413_0.6319265205928404","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251213":{"name":"typescript","version":"6.0.0-dev.20251213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251213","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ad37028f969fb20af40fb8dc52d57d95ce75e906","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251213.tgz","fileCount":133,"integrity":"sha512-uBqzVgXN0Jg5CTq2JzA5ThBu8SFuVbk1bOmahPf1GZUtAPHwC594qOCEa9x/JuiHEu1M4bLMEf/pQf3g574woQ==","signatures":[{"sig":"MEUCIQDm+5kvKpkaCaZcNFsB/34Rmt44VYQIiTiTft9mvH9hbAIgJ+zQ4UTlyFnEKuhl63PzfYWZNB+rum/Qk9kvXFGZUcU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739491},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0a071327153b4c386dfcab19a584e0d6224d1354","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251213_1765609886660_0.7988428700793802","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251214":{"name":"typescript","version":"6.0.0-dev.20251214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251214","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"0f52d84ef54f3b6f6fc3fd4d9b62b1405fb44dc1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251214.tgz","fileCount":133,"integrity":"sha512-iRbVzNpl2XrxZApxKV8ZHayVJp7aQ5Bh5j/z9lUFDRB5ghpH1rACyYLAnK4e33Hy8vOqopTYAbZm6AWz7NUG0A==","signatures":[{"sig":"MEUCIDGYhTtS8tL3WUR2I9UIK6Q5IScXNkVv5h7tuRqJP5xoAiEAvRFcTdQW7YItnN20OvP/aZf9fwq4J7roeZXgETsbsE0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739491},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0a071327153b4c386dfcab19a584e0d6224d1354","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251214_1765696321687_0.29047336470421237","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251215":{"name":"typescript","version":"6.0.0-dev.20251215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251215","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d05494e1b7a6acf7ccfe766aefdacda7e79e19e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251215.tgz","fileCount":133,"integrity":"sha512-RfwmUTrnqqR8Fe5tVmv7M8yyL4S4z8596PpH06SZdLgE5kOAmRpaR+JUK9dWRzikIxBNJlpjiRj4nCVD9MpEqA==","signatures":[{"sig":"MEQCIDQHm7M16zn1lwekcUoCGTYzz6kR0eobNA/NS16do8VbAiARBDhBmmKdJ9360W43Zt9momwUqQPttBwCU4qWF7qiFg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739491},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0a071327153b4c386dfcab19a584e0d6224d1354","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251215_1765782817373_0.022508337326073935","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251216":{"name":"typescript","version":"6.0.0-dev.20251216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251216","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6c5dad7a1d6c733746809bb0d60631aefb86ddef","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251216.tgz","fileCount":133,"integrity":"sha512-ZbByrzuK1+FJfBhWHHjzyjGDiLmpgi5VRJcpTL3CKGWSD9FPTuiPo51wecIshuxCKRWVopRvnRXUB37ucTXFhA==","signatures":[{"sig":"MEQCIGh5y2J5mMkXqLzldqv8IukOq+GCG/zR0UgwufiNe091AiBKpLpVOAyUP8h1L3P3GdtuvT8gYwGkrHzHJY3pDCE8UA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739491},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b78f0899ab6ffe1890f1adff6f5acd82da31f5d8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251216_1765869210387_0.8081292161576752","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251217":{"name":"typescript","version":"6.0.0-dev.20251217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251217","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bf484de50c11e4a4ac23ad9a1c46038ec37085c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251217.tgz","fileCount":133,"integrity":"sha512-UnRbrasJ86baTYM5iydq/NjjNDUgR+MqWbUgfHGjo44gDxvUAHk7y11Z7457tkImr7TOp+NcFnYOyy5s+ZQF2g==","signatures":[{"sig":"MEUCIG/X7oWQthaLIEF/I4pFKGSuM4lIUo1mU4azmnMAXG7VAiEAvTg/1QhLi353GZZdvFJf4ZMHB6Z9qNdRiUDbgJjYFrg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739491},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b78f0899ab6ffe1890f1adff6f5acd82da31f5d8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.11.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251217_1765955562797_0.8636034254834666","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251218":{"name":"typescript","version":"6.0.0-dev.20251218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251218","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c6d7feafc05e30e07fd8dee2ebb8de391ad7b807","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251218.tgz","fileCount":133,"integrity":"sha512-1rsSqwJ5VNB+4dXoQQND3ICVsWalA9ZrdGBMv7osCG92McuNkhn7kRrL5eGx3jWH5+sYH+gx2+0e6pvNNJeloA==","signatures":[{"sig":"MEUCIFwtqn/+dcImjqoFSzsChIe2VND4JWsTtZxCdfUwTHDFAiEA182VQZhtzNsNRaRUbBJ34aOMumPWiJqICJggsyDOWKM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739491},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b78f0899ab6ffe1890f1adff6f5acd82da31f5d8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251218_1766041984547_0.3911591256844418","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251219":{"name":"typescript","version":"6.0.0-dev.20251219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251219","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d3854a790af1508ac54c60de618fbdc23f292e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251219.tgz","fileCount":133,"integrity":"sha512-1T2oKEWiyUPfFnDL9f61hpHOWEytJFT1SRlAHbI3BZnoGuAbpX/JKHfz2xmSpGAizQMyv+Fx2VHGWnDpKMBydg==","signatures":[{"sig":"MEUCIEPBDkAYiRMfPHI/Y2/S5TL1cwbW2U6yQz8VgMSh8TmvAiEAo9IOyfXwCMkLPguc2zc7Ubi4BVubGEzY8wyD10C+q4M=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739491},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b78f0899ab6ffe1890f1adff6f5acd82da31f5d8","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251219_1766128370857_0.15396785338199148","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251220":{"name":"typescript","version":"6.0.0-dev.20251220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251220","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"406db3d06b5bc272ea79318fbb2b866abe342417","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251220.tgz","fileCount":133,"integrity":"sha512-YM5aM38MfhBSVXf7yVFcmuMDvZ3eGd0JvegWz8wxx7R5ex1kQdL9P/A/Ou9GIQqhtDz4PLdX+WuLr5JTEnou/w==","signatures":[{"sig":"MEUCIQCtlnqDVaMG6tBK2jHYR+kGnlguUnVPujM+qIs45sLRDAIgUbeIf0A39u8jHW548ck9AZdG0cv7tsS7Ufz6WI1nL4g=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739537},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2dfdbbabae955186f821925c629a37d8df76bab2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251220_1766214761136_0.7463876824838402","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251221":{"name":"typescript","version":"6.0.0-dev.20251221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251221","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"923c132abe9352216379eef2d0654c34b4ebe613","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251221.tgz","fileCount":133,"integrity":"sha512-3WFsNrk0s3UVTvQrzW3mxGtsLfZMyItV6XZ7iEwv4NifIiXAB5+EYgApD7FD/C9Wlup2jumWsi9iNtw+UqVGAQ==","signatures":[{"sig":"MEUCICWMy1dkhZ8d6R/qH4sFJM0KOgaoXnecZpf9uPIjgvlwAiEAznJJv/hPfbSz2FORTsPvE1DtbGSOaAKphO0IhVnVBKg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739537},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2dfdbbabae955186f821925c629a37d8df76bab2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251221_1766301099811_0.21624495545125644","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251222":{"name":"typescript","version":"6.0.0-dev.20251222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251222","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"dc6218f39c7fee30193205d100ec1c8da991ffb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251222.tgz","fileCount":133,"integrity":"sha512-AL5LJjMNyEZN8eHybIAKer/tNSNI0QYz8L94uWgxGLk005Vt9rwUU/VhXP47I89mVJj8GBcf9p0SSKQ7fAEBEA==","signatures":[{"sig":"MEQCIGsWYtsOTL5owH4TS0oV5e9Wn7896I37BjMIdHYh+N+zAiBDTzaFyuP30+eOAtcVIRRKfCZxNMYlKJKNC6Qq9T7T6w==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739537},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2dfdbbabae955186f821925c629a37d8df76bab2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251222_1766387632384_0.7042647494366829","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251223":{"name":"typescript","version":"6.0.0-dev.20251223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251223","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b0a469445678f133085bb12b702ad22f96d73563","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251223.tgz","fileCount":133,"integrity":"sha512-/mnCnGVmxLd1Rda5kyMYaPSYpg/YkhmqTLJn63iNLXt2VdOg/vXE84F8CZTKeVJFh5rkrfZj6lqKrTEN1+CL9Q==","signatures":[{"sig":"MEUCIG4fsZa7nUoAWxWeVyfmPoO01rArvJquox8bI5ZjfmduAiEAs8r1QrOKH4hyCqLkssH2Df7A79wUL+dMyOhqViL5hl0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739537},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2dfdbbabae955186f821925c629a37d8df76bab2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251223_1766474026882_0.18768335404734016","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251224":{"name":"typescript","version":"6.0.0-dev.20251224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251224","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c12f9bbe681ddf0cdb8d5522d8539bc366e9b8b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251224.tgz","fileCount":133,"integrity":"sha512-sDCiM/djY2WWuQnJFWH+AHnFN21s/5eHn8xeT2pBtvL8nfywCvUBW8EIjy8YTjniGpYqTfkU9xzs/q5qettJ/A==","signatures":[{"sig":"MEUCIQC9XIoisTnH9JFMZOPGDItrAEJpUVW95oZVLRZPu7zP2wIgEcfeL9h4hq0bM0O8UW7F9OAduI+YXs6ZcDQ6fMxB/Lg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739537},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2dfdbbabae955186f821925c629a37d8df76bab2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251224_1766560400604_0.743577685418606","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251225":{"name":"typescript","version":"6.0.0-dev.20251225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251225","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e685b162564111bbba0430c77cee67021e4a3642","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251225.tgz","fileCount":133,"integrity":"sha512-FgbAg+FfDtIL/+uV8L7jgFq/rcKIQLh9Dq+3Pl0eMXUg+xPgGC779FVaoTbljB6QOEiYboojMdCFGpowcptQaA==","signatures":[{"sig":"MEUCIQD3dd0+xEGS3b+Ty18oSLtPDcpFjt4lG+beHQh4h+iLIQIgHHDTV2x9aDRC/YmdK7XkPnjWGFCtCpN59UQvztkqHAg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739537},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2dfdbbabae955186f821925c629a37d8df76bab2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251225_1766646787790_0.8096702595116636","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251226":{"name":"typescript","version":"6.0.0-dev.20251226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251226","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ce720d047349bc9a61321426541992b761cfcc86","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251226.tgz","fileCount":133,"integrity":"sha512-CeiQq+YVgFnuZleRBj9MOr2ltsiFtdifJP+eqVCGh8IoV7q7jkzSVwXaIvXgONAaNJeYDdJ4TxhiNgtUp+MmCg==","signatures":[{"sig":"MEUCICGr1ywyr80kIJ6XcWSnODeJFKerIjIvEjLFG+6pmYsdAiEAwbLBqsMd7/8u+Obede0Y+DLqvKwU1Aem/NbE3k4sKno=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739537},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"2dfdbbabae955186f821925c629a37d8df76bab2","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251226_1766733159589_0.6126084322984764","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251227":{"name":"typescript","version":"6.0.0-dev.20251227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251227","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bde9e0df9638b63c9070414efc445d84ecc4b9f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251227.tgz","fileCount":133,"integrity":"sha512-kksvfMIN1tX9bJAHFF1bF6nUwpC+Ok+Ka/kCfyS6TZdjzszHj4QKTR3prT1B7CTFbl6PSJRSuVinsfF4GvI7SQ==","signatures":[{"sig":"MEQCIFeD6uA+AW9RYlBO8n/Wz4yfpoM2o0xQCc7WCuWPH3V8AiAiPNplA1O7e1+3XHl8gPGlgMxvAhvgqH4ldV8U4jUTVw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739257},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1f5f9f34d325b2c7e3a53179108b0a217e2dae93","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251227_1766819530230_0.3720841508485804","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251228":{"name":"typescript","version":"6.0.0-dev.20251228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251228","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c12e91d6991a056551b3864dc9503648fe22435a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251228.tgz","fileCount":133,"integrity":"sha512-U696V/yiCvfUMjTSq4N85qKDYKoEIexL/0rKM5BbeXi2vKfiEHBqWgYw8iAbrvky/WFIV/uJS7qjjWpPd58wSg==","signatures":[{"sig":"MEQCIFP8fAUN2fOYav1BdfjKqmMgC2jJTCuF0aq+ZVuZWV4BAiAmZQYBBMKMcGTLuSqXbrX5N/pFb6GehDTqVVKDq5pl3g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739257},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"1f5f9f34d325b2c7e3a53179108b0a217e2dae93","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251228_1766905971243_0.1768943657283919","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251229":{"name":"typescript","version":"6.0.0-dev.20251229","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251229","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3621f938500da37a2093bba51c9e4018e2df0642","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251229.tgz","fileCount":133,"integrity":"sha512-3h9Q6IX4dh0spuR4WBkNEctvgkzHUUpf8plnM4AZ3bpWX+AnkgSmh1yHuGwJw8iAEAFGKAIABayWe6NenKQY8g==","signatures":[{"sig":"MEYCIQCgDve8UngU/OXtF27cW+1ueEVdkn5tRVx3jFpPWLivhQIhAJ3ftWcMgBqVrVuLkjUkikbQuUYhDH9sS90rjZZUh6NP","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f3770c9b89ba7969b163c5cea7805d5df23b2086","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251229_1766992490203_0.043108056750764456","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251230":{"name":"typescript","version":"6.0.0-dev.20251230","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251230","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"60ddccf62cb60a5afe113cda6ac700b09a818631","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251230.tgz","fileCount":133,"integrity":"sha512-rfAaJ4UF7l8yg+bD7zFmSGYzNHT7mN1+2KJ7aIOdvJnVNtT4qKG4/q6eL+Jakd/dImPSbANXZ6zZQTkzz7COmA==","signatures":[{"sig":"MEYCIQDcO8YgMF4IeZgp9vah4WurF6jf/SOQF1Uf4uAjmqJbmwIhAJLk42uxVGu7vVmXk6sNZO9YS8L7qb8z62TPJRQ9x5dt","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f3770c9b89ba7969b163c5cea7805d5df23b2086","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251230_1767078788292_0.646253880211402","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20251231":{"name":"typescript","version":"6.0.0-dev.20251231","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20251231","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"96db3d5841cd8b741861044c68f085d04074dd3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20251231.tgz","fileCount":133,"integrity":"sha512-CArSKxBM7uBaqjY4iz8HYaby8evlX4g2XplgMZnWGmAnNw51AoVyxvqp81coVGKX0urUBaGgrWyKqhjRPcxpgg==","signatures":[{"sig":"MEYCIQDOj2vkIc8pf02FKVfBi3wecNuD0gy68mumZZDMuwCSDQIhANu/+jp3wr3IOlifkGRu46qLQX64JmT/SFAhZpbZAfwE","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f3770c9b89ba7969b163c5cea7805d5df23b2086","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20251231_1767165221980_0.27682942808237465","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260101":{"name":"typescript","version":"6.0.0-dev.20260101","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260101","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"754d46cc27c175a1f93fd6a627a30b9885e113b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260101.tgz","fileCount":133,"integrity":"sha512-u2ke0iQBmdfbCuoOyY+hzKfGS3Ysl9nydRfplrjsvxxOEP53YwGlQfjEyK9/csQQaiRvxST9v87JxTMpxl0ECw==","signatures":[{"sig":"MEUCIGGi6mbwlU+6I2WmnECUrthOrcf2o8CaaT5dlgaDmVAAAiEAvFICcMryqcQ11cZBD66j14Sb+KpMOAz+nJM4tSca4CA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f3770c9b89ba7969b163c5cea7805d5df23b2086","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260101_1767251591864_0.23588218145267525","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260102":{"name":"typescript","version":"6.0.0-dev.20260102","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260102","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"aaae59fc465f9f3c5308c2418fb69bb91b32bc8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260102.tgz","fileCount":133,"integrity":"sha512-84PI8xK3qgjraDi1sImRXyVhYMI653Zu5XNFVwCqbEIKU03s7ANAJ1I7KwtAb4lRy6xVBqHEMZuGVugqzZwepQ==","signatures":[{"sig":"MEQCICx5+7yzz2n4aHhwzInVctAn2b1v/9O6xn/58duzMKvoAiAl0QxqTGjOM/OFIHadybLAW2guJVg8TbmQJABNQH+KsQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f3770c9b89ba7969b163c5cea7805d5df23b2086","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260102_1767338008475_0.3033677262295862","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260103":{"name":"typescript","version":"6.0.0-dev.20260103","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260103","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"41e1ecf150934d3498aee0794367e1ee34e391df","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260103.tgz","fileCount":133,"integrity":"sha512-RXrVthaC7nOE2/A9x/SZM6DRiPSSvzlAipv+1p9eAi1tOouIkn9LefHDenVs21JN7coo+2U+Lplxwvqi18+SMw==","signatures":[{"sig":"MEUCIQC05ixLOOqf6Lhw82fOf+FMzvoUBhcZ5OHkJ3Bg+Li+QQIgO9TzB4g+DMwwWBIJPiETa8XtGKRzVj5l9cR1CGqVnYY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f3770c9b89ba7969b163c5cea7805d5df23b2086","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260103_1767424312032_0.7141209214723694","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260104":{"name":"typescript","version":"6.0.0-dev.20260104","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260104","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"222af7b06a4cf7e16a8ec793978577d8436552a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260104.tgz","fileCount":133,"integrity":"sha512-7gbvPUy1Xd7R8tnsfRjCJm/h+h1iFtBSFkiE1LsezkmjJjCucDh8A+5cKvxMunIdIxevtpljZuWFUyY839JAew==","signatures":[{"sig":"MEUCIA6Pg0AbfzG/FimMclFq9FQySRYyN8BSjOuTcGDRqc0tAiEA4NBHBClz6FVX3WDNo/wB2ndUV+4tBoWP/vD+RZLHtKk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f3770c9b89ba7969b163c5cea7805d5df23b2086","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260104_1767510777081_0.44106698636877795","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260105":{"name":"typescript","version":"6.0.0-dev.20260105","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260105","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"37e86cea078f059622c31d1b77ce5dd0b21ecf1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260105.tgz","fileCount":133,"integrity":"sha512-Bli1F5bfzh4WylHg5VWFYQqcESRRafsf1Lq9TGU4zDkoFIdv5g1zGPEfrpDWG1EwlcP6uJilpiSC5PJZQoOz6Q==","signatures":[{"sig":"MEQCIG0/BzkcCtpPdlj0iKNhPa4+S8BL7Zfhl9oTVTZ7gptXAiAFcKxSofDUHPTyFzANtzWThgpd/BIAFYr2Fuqskadavw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f3770c9b89ba7969b163c5cea7805d5df23b2086","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260105_1767597416615_0.5855149121441634","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260106":{"name":"typescript","version":"6.0.0-dev.20260106","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260106","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8f5ffe1427db685510a4748ae9b15013900b6ba0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260106.tgz","fileCount":133,"integrity":"sha512-wT+Iw5EPUVAOa6ze1XO3mAl1IqQ5cYrGfXy1ixSwI/GIFnqKSIwPT42wsv5OZFQp7Lft8gJfiA+ZKRPMtLG2eA==","signatures":[{"sig":"MEUCIQDUjaE5i/VRKH3sdTG0pskTDKvlOCq7SCw+uxr6AifR0gIgYIfCSCDOhtZKvhCm97hA7Q7BEcCS+OHAS9mDL1xVtlY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9d364978d3e8e4de01bb2bec8083b58c1f710232","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260106_1767683709135_0.12831264241619733","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260107":{"name":"typescript","version":"6.0.0-dev.20260107","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260107","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c2e19cce257714474438a5619d37eed6039f6fa9","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260107.tgz","fileCount":133,"integrity":"sha512-87sG7ffZW9IaXImMeT4sVvXqYPV8MQE6n6BP2JKP7wt3GFHyQbbdYNdaJszRh9ME804vlD4Hwbo+kWrKW5aq4Q==","signatures":[{"sig":"MEUCIGfTrBNIds+/tYAed2rrj0k9D56eX0yQMY1eYZSUkDF/AiEA5MLSLSldeMzoostS8FbnhcbkawOP6HHzhAhRrT3NLiw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9d364978d3e8e4de01bb2bec8083b58c1f710232","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260107_1767770077479_0.35185041619260926","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260108":{"name":"typescript","version":"6.0.0-dev.20260108","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260108","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d3629e90f39f1b4dc11052f6b3969a66a9f58638","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260108.tgz","fileCount":133,"integrity":"sha512-mWAHxyi0eVqDwbiSaTUqhR24MdNBWgpEtjBd/GlawwhcsK/7Nsrdc7pKMDz5aMmnSwD+SQA9jtAHCnGPV29Rnw==","signatures":[{"sig":"MEQCIE+ZAIheWzIL6HDD3DzkIUpjkkDwLzqbmcrmEsPRKBb6AiAqzxXR40iyAMI+2jNFKgii2e5uWdqflDlfFFwf7qjRrw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739153},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9d364978d3e8e4de01bb2bec8083b58c1f710232","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260108_1767856398055_0.7026723169490718","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260109":{"name":"typescript","version":"6.0.0-dev.20260109","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260109","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6151d7737405e2652e0cf0f2af79b5a71de66593","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260109.tgz","fileCount":133,"integrity":"sha512-wn8ujRGXLIT7rzpTK82/VGkhooKiRzQV3dOsCMaXsj5q4aHNm18JaP+VIIXpBzEjr6owdoyIAEKsV2rwEWYyoQ==","signatures":[{"sig":"MEUCIQC/HdVxQZi/10ulKNus47EQdi/QlfAoUalZulrI6teRrQIgDvkmmAxXaQjp1uqchM/85NxYPV0DpUsaFSANRP5WWW8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23739275},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"632479f28de03492b9a47849a6808cf5119f1a14","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260109_1767942873031_0.45999316209585883","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260110":{"name":"typescript","version":"6.0.0-dev.20260110","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260110","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"126bef58532985ae31853edf253bc19a3167717c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260110.tgz","fileCount":133,"integrity":"sha512-i1V+tH7F2VLfwGZzuGwNOZTQZGZUH3g2NOdW8d5qo9XALC6LLkgY274MNE/mWdQIpwNFaFie3u++VdxfWGXPcA==","signatures":[{"sig":"MEUCIQDwb5zUyUg2zLfYhMWBqcV3jAkoB/KqNBADgiINK+qRuQIgRKstEfVK1dVafXBrW160QpCBMBT6G5LCSKMauzjrQf8=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23737947},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f5ccf4345d6ac01f47be84db99fde50b98accbb5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260110_1768029149601_0.8992835754452195","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260111":{"name":"typescript","version":"6.0.0-dev.20260111","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260111","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d2834d080d30ea0a734be6966ef1be77e0a4b8c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260111.tgz","fileCount":133,"integrity":"sha512-ZiFgkRSdELnndf0x90GboZQV1FdK4ZxOcXfsBtloaPToZxr4J0j7AyXGezHilHKpenQeGReYYyP9kaKB91zz8Q==","signatures":[{"sig":"MEYCIQCeUu2jF9Kr/SxynJSiTxLBlcyXvoflFhXvPFx+E0FOIgIhAN1ndOvoW2+mtqi0S8k0XzQO/j+dZwVz8eZOoHPQx4ec","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23737947},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f5ccf4345d6ac01f47be84db99fde50b98accbb5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260111_1768115591784_0.12762657037081415","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260112":{"name":"typescript","version":"6.0.0-dev.20260112","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260112","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5a17c542972695cf975b1fbad753ca36a36cfc9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260112.tgz","fileCount":133,"integrity":"sha512-2zxfhRUtvj6VgDvayl9Lc/bpH1Lx/TvnrI9rajmbT3ulhR2Mr6ACxnIfsaGI5JlTXa6Zk/BSFccXTRDT6H61Cw==","signatures":[{"sig":"MEUCIQD9uVYYPEUjhwX3I859QWUQ52u0ifpL3spmYIvIrrgHxwIgDnsr9yms/IINDhQC7kGvFgvYhNeR1FXNUkr6DJkn29E=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23737947},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f5ccf4345d6ac01f47be84db99fde50b98accbb5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260112_1768202164408_0.37811225408905114","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260113":{"name":"typescript","version":"6.0.0-dev.20260113","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260113","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"d96ee56563ee2352fdf68df10b7cb69fbe28ebe8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260113.tgz","fileCount":133,"integrity":"sha512-frXm5LJtstQlM511cGZLCalQjX5YUdUhvNSQAEcI4EuHoflAaqvCa2KIzPKNbyH3KmFPjA3EOs9FphTSKNc4CQ==","signatures":[{"sig":"MEUCIGlP+VHg09cpgSKcw6Wn849/qhYjuKV+XFQ6a99pg4sBAiEAjz7iVgEsp5eKkqIPDmo4Cek/Tspa67f2J5+g1YimsOA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23737947},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"f5ccf4345d6ac01f47be84db99fde50b98accbb5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260113_1768288514018_0.7639262453481042","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260114":{"name":"typescript","version":"6.0.0-dev.20260114","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260114","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"3287ba56acfa7b9703287804e7efe3904b7e4ad0","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260114.tgz","fileCount":133,"integrity":"sha512-ZqwViZ1rbV8YP3lo93PL2IMH9dQ8y2Km8iLgR3H99l84Q5WX/bIPihfwWLzoFbRfMDWe2tCbCKxbpw7dgQR3cg==","signatures":[{"sig":"MEQCIGjP7gGHv/tsvqi0sc1PlcJxvvBMgInRLp2sEI+ZGPlYAiBO3/iyHZtcM+83BN2XPamef02oq4hvptiiBSPDW7CYIA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23738053},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"64d19789443884e88d6af533b091073eaf6c2894","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260114_1768374869992_0.4379911944921018","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260115":{"name":"typescript","version":"6.0.0-dev.20260115","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260115","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7d70e212509b3abebf384cfef07be4557a68f1ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260115.tgz","fileCount":133,"integrity":"sha512-JPdZ1SJJKbob+OR/eXsUud3b5l48g8m6TaeH4OdiJjiHjE8Rxs7Tft5X187durAFrKzyvwoKyAzxj9vZLEusAw==","signatures":[{"sig":"MEUCIQDA/eG4N/5U0vlJNLzxH5SomS9fv2FjaTMcbNFWSpvkxAIgZb8rbVWa32ztKb4jmSW3lH2uBKv5FtjZAUmLH6qq3FE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23738053},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a9f534f271dcc171e35e3aa27313982b930d467d","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260115_1768461262593_0.6792912052500315","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260116":{"name":"typescript","version":"6.0.0-dev.20260116","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260116","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a417daf00e04d87e966566408d0879734d9cf8b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260116.tgz","fileCount":133,"integrity":"sha512-EMr/D0nDNtkqw82wBQ7naNARLgqQmA/FuqrzNuqol5oUYoP+aJksx/pUKi8C9bsUr56y8LZdgptbZCF6BAdm8A==","signatures":[{"sig":"MEQCIH8iJyBxp7BTz+AB4RxFEfJN1wf/1UlnmeYzge7Ebj1SAiAAsYgmCvdg4BXqaCSk3DOrTQJmcL9p1CP+aSnPq3T2Kw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743273},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"a586c340a277e0b99cb999d6b02a2cd95609178f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260116_1768547675530_0.39762927591185027","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260117":{"name":"typescript","version":"6.0.0-dev.20260117","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260117","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7c494a1e4c0a974cad377ccc8e1f6a702478f971","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260117.tgz","fileCount":133,"integrity":"sha512-mFiiaBC2etbR00TdKbAgyMcGz0EtdYXKXsX23SwEhdqZ0jmwkfo3XDnqqEI1iC3YL1e8Mtvd5KFEsEGw2ohCHw==","signatures":[{"sig":"MEUCIQCuMkj7b2FRYlPHnkR7COSRswkN3+gN90H6vFJrV8JZYwIgBooDR2wm7TlOuaC1swsdpeqFfkPBsealV+aLeww4WmQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743273},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7f6a84673def7665a4c4bc2bdfaf7bcc8549b276","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260117_1768633915092_0.48135989640224497","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260118":{"name":"typescript","version":"6.0.0-dev.20260118","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260118","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"97d741426e46087ee21155ac3ada4883d92f0b25","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260118.tgz","fileCount":133,"integrity":"sha512-NxALMXZcJOMCy+/CYjtYGSBL5s5wR4o6zSTzRROBUBobZuBYMbI3rRpjkq5LJPFVBHcXKoUc1FsiLe3ftHGjnw==","signatures":[{"sig":"MEUCIE+boWOQ4OoqSdqq8C6npAsdBnWwp73w4q54+XVJZbhZAiEAtIhKDi5e+H8SNlvconymS0wIh97TCpBgPSKc5xPmKqc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743273},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7f6a84673def7665a4c4bc2bdfaf7bcc8549b276","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260118_1768720292142_0.4661600198231539","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260119":{"name":"typescript","version":"6.0.0-dev.20260119","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260119","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"21252cc141b1f38d6db518bac602a8b12b869ab1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260119.tgz","fileCount":133,"integrity":"sha512-FW7x0F14S3vn+2DsyrEBCjfTko4f9YeSfU1DaPf+4m7h9BGH7jmR7hWCLnYJVLEMNSCS+F5hEt173jQPHIk6PA==","signatures":[{"sig":"MEYCIQChGj8YPeDNGcW+qle8MZaJwoTYR1Ts01cCUfjxqH53oAIhANo5JIrTengEOvc4ASweTAc8IKsAkkZBIyJWaeUgxD9+","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743273},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7f6a84673def7665a4c4bc2bdfaf7bcc8549b276","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260119_1768807042038_0.14726195070024972","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260120":{"name":"typescript","version":"6.0.0-dev.20260120","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260120","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bfee6ea14dafead0363b7bd602be8a230b02a3a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260120.tgz","fileCount":133,"integrity":"sha512-jeEpCSsbJT0o9c1uGO+t65xOH4LF22xmB+gI3vYllPh9x3Cw/vtyQs1WY7MLiccm6mPxcaTaNopw1038/9IKsA==","signatures":[{"sig":"MEYCIQCDZSND9niCx9IJbOBQ06JHBU9aeaNOLZgCbp78EVbUogIhAL76BmIEZsnRUAfZdGq71FqKVKBIT0amF2u5X93Dm5Z4","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743273},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"7f6a84673def7665a4c4bc2bdfaf7bcc8549b276","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260120_1768893382719_0.43961217096347527","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260121":{"name":"typescript","version":"6.0.0-dev.20260121","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260121","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2bd3147a627c91a64af52cc9dfdca7f95d6f26a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260121.tgz","fileCount":133,"integrity":"sha512-rv2oMpqRA/ns4x2AlQbFhnMYtXJkeYKoEMkAzMlBIkRK7X7D0AweHCclJWt+LrmhJLP5K2F1GwEO1qZWPyYs0w==","signatures":[{"sig":"MEYCIQCWngrIS3AYbDLOcEHRO6MCbfhId6TJGU3bUDEtCCyyCAIhAKbELYjYG6ouRd+tKbt9LkHhUHrKaqBmJqpMsW242pL1","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743270},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"e6fac66a7225a1c5976025e6377a2a4b06b3b85a","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260121_1768979764991_0.05364012363460158","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260122":{"name":"typescript","version":"6.0.0-dev.20260122","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260122","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9e5c509689abe9fc4da693e43b46b50169f42011","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260122.tgz","fileCount":133,"integrity":"sha512-WnKEBDTdvo/zvxcMZvpXFNuVPupiMcKOhX51jSdniyaTMNvGvbgOgJklq6hswmV2dKpCVndtTkBCUNOO/klujA==","signatures":[{"sig":"MEYCIQDJcgGNBlF63sv55QEUgD//SSHD0aERF9PTFvsaO2hrkgIhAOD6g/QhPGVGgZ2xajxN63a3CTQxoTJ77axg78qbjV4o","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743270},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d9d9eeafa0a2bb1fd327b3af15edacade7544e5f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.12.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260122_1769066148416_0.9286524375235365","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260123":{"name":"typescript","version":"6.0.0-dev.20260123","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260123","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"95c56d02a7e7659f11f9d44aa15195a8009a7860","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260123.tgz","fileCount":133,"integrity":"sha512-ezIINdsHhLjdxPfsYcrL1A28USN+Bmto4a3THYel1bK9XidsMn+/a6JAbcmeQr/kwgyflhuyvEAWEQZJnzFVRw==","signatures":[{"sig":"MEYCIQDrD6rcweA6GeT5j/AaViYIQ+k626LEJhHmrLag1SIO0gIhAJupW2RyUZ64q7Av2KB4EE0iUQs9Q82y7FdOlV7aPmzh","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743270},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d9d9eeafa0a2bb1fd327b3af15edacade7544e5f","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260123_1769152491291_0.7147554916231824","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260124":{"name":"typescript","version":"6.0.0-dev.20260124","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260124","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cdd2de27f9fce81fd096d6b0b247aaa1629d908d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260124.tgz","fileCount":133,"integrity":"sha512-qmb9C4EK0HH0OfT00228Tw53HVbxsmt0aJA5KZ31uALi8XDkPr8nsw1bJjHos+vthZKiHwb5k545wHc0zDevxg==","signatures":[{"sig":"MEQCIDjCqMfj+STI/moL3BY+QieEJfXfWeR1Fo1EwzeRVltgAiBDcHld6p46v7wgaSnAkZzMoGJ5gigoIKPQZVqKKqZoSg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743420},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b19a9da2a3b8f2a720d314d01258dd2bdc110fef","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260124_1769238758242_0.29232611826981336","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260125":{"name":"typescript","version":"6.0.0-dev.20260125","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260125","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"614a6e2d8e2f08621ec21431c6d0d29db18e7140","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260125.tgz","fileCount":133,"integrity":"sha512-rgckI0J6d+bIdDkTubx75LIJn1TWBVK5kC3i5N6Jo1CRZ7OEXnFcN3pIIEAHAJ2ruIMR1vr504Df2mZmsWLj5A==","signatures":[{"sig":"MEUCIDxqQVUCYb2JJQoHj1r0j2zLIkAUQFesn8WZFHruM9xOAiEArs+o43IADTideCLcHR+3MMdSmROhAPECmpalBmM4TkQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743420},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b19a9da2a3b8f2a720d314d01258dd2bdc110fef","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260125_1769325199002_0.6847947993399681","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260126":{"name":"typescript","version":"6.0.0-dev.20260126","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260126","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ff068945f616b9815efc1f6d7d72f75ff384e3ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260126.tgz","fileCount":133,"integrity":"sha512-WCYppJE3QcDvqd5NVTYkpT+I5mz00NbWV6kV6sgzljF1y2CglOG4h0zffDJJ7s4TrWAT3asz8U2l+eEbObPVVA==","signatures":[{"sig":"MEQCIAQoA1sUqnTLoYd+4EYKsaaxiheLNkseKHCr7nPJJh6LAiBUVy8TYYo7/cTPTSNuK3HS024wQXN1trK/XR3KLgHY/Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23743420},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b19a9da2a3b8f2a720d314d01258dd2bdc110fef","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260126_1769411801514_0.16334032108634355","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260127":{"name":"typescript","version":"6.0.0-dev.20260127","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260127","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"5045b6802298067aae52b486fb7da9d45a00c914","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260127.tgz","fileCount":133,"integrity":"sha512-VJ7q/PPcmCqwwer09+0ONkt/Mv9fJKuKbyoX1bB6nW7ZTcq++dy+3dlPFYh5L3damda33mabVy/581HL9q+i+g==","signatures":[{"sig":"MEYCIQCvDB124cm3leEclkyoBZ4t2iblSYG1WgSbVrnqxKBrzQIhAKxzJk1klm33XpXZ8burwSK39/htOT3Nuuf9u9IjudnC","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23744294},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"66edca11c98ade9a5e2a2b019fdad7d58ee9d4ac","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260127_1769498150754_0.8194328499179284","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260128":{"name":"typescript","version":"6.0.0-dev.20260128","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260128","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b7fcde93a8b629f868bc259122020f20012bff42","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260128.tgz","fileCount":133,"integrity":"sha512-bHsCR322Akthk0I7LIG+FiceiV7GpHw47c9Ko5yqo6MZKtvihkMrTf9CayuPzOiJ7QCgg//cOECxnTB9+jb2HQ==","signatures":[{"sig":"MEQCIFCtBQ8O1z9iqlOdYF6mACeofT6Rpp94RJw9L0kCxcxhAiAU+mSG7UBEdKmvwX63lvgaKnj94z6kuDO5bOjTdOo4Yg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23744294},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"66edca11c98ade9a5e2a2b019fdad7d58ee9d4ac","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260128_1769584562513_0.2415299996919873","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260129":{"name":"typescript","version":"6.0.0-dev.20260129","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260129","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e429b37c4661fe0db54a3484902011bf52febedf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260129.tgz","fileCount":133,"integrity":"sha512-Z1CFUfUKbCGcVmMye4hpwlH+BeefINUtIunI+j5toYsnOgZnLpPQ8N9PKHuOA7ggMgGs26+omFUuxDf0fPoQSQ==","signatures":[{"sig":"MEYCIQCWo176ArTYSTTocIzCTmYjfcXDB6zSJpI6LxqwHY7qEgIhANF01XYvYB8XJqnulG8qR0Ce/rUcRF5RQwO3moosovR5","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23744632},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c1592ada0e9e05a0933326afb9055fa73f268fda","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260129_1769671402157_0.6692368990704818","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260130":{"name":"typescript","version":"6.0.0-dev.20260130","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260130","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"49ed694499527ad91c040083fff7858d447cf688","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260130.tgz","fileCount":133,"integrity":"sha512-flWwLX5Xzh7to9d46u3LXfVDq9F0L0FtgnsYcx/SksqP05uHBIPnWfB6wWOZphTkb7GRSRKU13X/zBHmbzhXXg==","signatures":[{"sig":"MEUCIQD5gXNeqwCV61TGEz/kOAs4cZkqo3Av1UBJelsZwcd/6wIgaAAE02qRAi1Q4DmpIL6S6onQgmzgDbRHgcpHWGhTskA=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23744632},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"3fc1f264de2aacae0c008eb4295e66833ade36d9","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260130_1769757757099_0.2065756542375552","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260131":{"name":"typescript","version":"6.0.0-dev.20260131","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260131","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"8b4bbe415bf2d1021d2575763d978210f4d8d93a","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260131.tgz","fileCount":133,"integrity":"sha512-/++NcAwkaAQQhHywdDCtTk421DIg3xSF9/FiA1yBNQVr3J7SDu20aoH9gzPoPcSX7nqdcULAk9KJdeiXeMAM0A==","signatures":[{"sig":"MEQCIEN4pcmhSEUpidrZxkw62hUBl7QOteIj6VUwHyagvtIZAiBKd6XHkQN42cBrQ0pXkiEQ9jHaFWkhuAGqEJvfaCAfpQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23744949},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"95e3aaa90341b516e868bf2300b1da5d07103f1e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260131_1769843860884_0.27456164112342973","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260201":{"name":"typescript","version":"6.0.0-dev.20260201","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260201","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"05a8609e5432f36d50c57a15a5293a4dcee26b02","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260201.tgz","fileCount":133,"integrity":"sha512-J+TSa+T2xtF9W3vxgQUZOQ+ZcHr6yONimIL2TY9/UTACBzQZAECBkfSBLRxKlUPjnsbIvJBVebZx9eMWz4BkFA==","signatures":[{"sig":"MEUCIQCRHRqyPsgx11n0mkFV5GOnHInsmEAYqhe54S29gIhizgIgYXc6v768JQ4TAVUNgFeG3Eo/SIDSD+xnooBVKLGYCeg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23744949},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"95e3aaa90341b516e868bf2300b1da5d07103f1e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260201_1769930559844_0.561920192520909","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260202":{"name":"typescript","version":"6.0.0-dev.20260202","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260202","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"fc2b9225699401849d944bf4d69d7192cc394aee","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260202.tgz","fileCount":133,"integrity":"sha512-wH04zwLFImu84DlwZH0egQXLzDTMPXeA3eQpaZo2NmH07Nzepl2hNCPZWmaVCoqMl/M0CF5a6aX1hWAC0TRZSg==","signatures":[{"sig":"MEQCIC2JecsdhsJ3Kr33BakfTCXo5tmeU8+wC0Fo5XdhTYBhAiBvdJ4loueSgECYEmjNy4XcQTXaCftaxToE1/AYYhBpwQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23744949},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"95e3aaa90341b516e868bf2300b1da5d07103f1e","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260202_1770017318173_0.8751327550086894","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260203":{"name":"typescript","version":"6.0.0-dev.20260203","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260203","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"7229c9d326bf39ff67ce5ea0b3569224432057cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260203.tgz","fileCount":133,"integrity":"sha512-uurwjqOjUaUI30dLNR/ujGLEVI5Q1sY1RSmvmWf4lQXZMzqMnrcOK7uoFsRC2G4skJYSxkctGlSa9ZY6+ur2cQ==","signatures":[{"sig":"MEUCICoJwXT/YX3ql42Y8V+ZjQw2tlckImhOeAW1v3Ay02mxAiEAzQ5RMl2QeONRTR71r+QC8YPZdF1YxLh7s09nlH1nGNo=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23746644},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0a74ec4e166d2efb822135ac9693560d43f06233","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260203_1770103492454_0.9533144337706196","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260204":{"name":"typescript","version":"6.0.0-dev.20260204","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260204","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e4a8c445756899d0ced28af70cb09cf8dcb195ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260204.tgz","fileCount":133,"integrity":"sha512-A8e1FQRu9GiXAZdv/+uYrp7cZgxTAK7VeNLqXU8KG1Yj2CosA5de38rBWnYrIaoinR5R/bAgFc1YCadCKZPjRQ==","signatures":[{"sig":"MEUCIQC1jhythVSxpxkffSaSdaWDyaAQWl1UiTR28iKoGbHJhAIgYku4gHY08DMgnTr1ITdAnnbK4SrR7+oFBkQLMs2qKqI=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23746658},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"01c23d68b1113a4b71acb8484f1bf78a98307933","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260204_1770189901727_0.8337513392041409","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260205":{"name":"typescript","version":"6.0.0-dev.20260205","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260205","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2854a117936f3cc10eeef35ebcb449313c235f6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260205.tgz","fileCount":133,"integrity":"sha512-QNRloR+zKxe6ndfozMV9UvaloAmVIwFQ8m6Jkzf+CoLmzvuUXtNl1dfvAkVrjUIjGNudx+Jorg7f6seLUF5soQ==","signatures":[{"sig":"MEQCIBMNy+7KVKbCfVLe5heqzgv1SOWHMrMdKEGHgO99VyKyAiAuJ7VupEV9jSpHEEAeKT27I4G+uPZz8H+oWoogO1IBFg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23750315},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d67f0af5e4641c0fda56f920368528a2633580e5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260205_1770276499481_0.933032206136301","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260206":{"name":"typescript","version":"6.0.0-dev.20260206","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260206","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"90c9786fc586c8f765d4eef65d5889051ca82116","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260206.tgz","fileCount":133,"integrity":"sha512-tzkfMvii4NAvkfV2X4rhPMpvV8EuafQuatRr5n9zkjNcclxMeCbCnQXeGfMihKRFnz3BHSd3Kfwaqcj5F23yMA==","signatures":[{"sig":"MEYCIQDxiFL4Va2OtzuTmNXKVAEeP0+OJHK+D4diS0ada44qzwIhAPAmrOcHjwdA4rr25w1Hk0IApfqQQZTyUXa+DjycCotl","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":23750315},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"d67f0af5e4641c0fda56f920368528a2633580e5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260206_1770362764070_0.8124931417264407","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260207":{"name":"typescript","version":"6.0.0-dev.20260207","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260207","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ab97a21f509e20917d6c0f28cb3b0dd584291b52","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260207.tgz","fileCount":140,"integrity":"sha512-fndmTzCn6cNP4cy8G4/gFn39Nd81SyA07DZADf2BaP/V4v+oWFV+4xn1YwZpKMCZBxjYMR3shEF6EkXbeLdabw==","signatures":[{"sig":"MEUCIQCxbSYhX1NYoXK0LiQFZDE+gWQeCVsWZdPmECJBRpAzvQIgCnWAvQWR1q0RPi8InFEuG+GGupICYqzdshKqK4PsDEc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"87aa917befa8f6182f5535df3c77287209692a04","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260207_1770448822973_0.7258108490410646","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260208":{"name":"typescript","version":"6.0.0-dev.20260208","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260208","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4570e5c088f6fcab375e7b032f127e6e059a0cbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260208.tgz","fileCount":140,"integrity":"sha512-DD8Wq6uFHNmlY6OqxtcgNL0yiHCvks/12X0hAkwOpZ99xm1EcSIClLtxIMAWGDf+QLF1Oaqd32/1gX2eQG0xSQ==","signatures":[{"sig":"MEQCIAX2ZQmtwyNGkxQMYpycBhlj2/6+D3pCa6QRBRwVuawSAiA1wAGcwtuAHHpiLdVCwZcyXsPpz+XLQsmD59lDEQyXTA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"87aa917befa8f6182f5535df3c77287209692a04","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260208_1770535341410_0.7338658793232615","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260209":{"name":"typescript","version":"6.0.0-dev.20260209","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260209","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bbc36ea1ab50d57cbb2bd3ac5efc3aedc87615fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260209.tgz","fileCount":140,"integrity":"sha512-RpFbUcHOj66J6zbU9GxQedmtGORXCS816wWKRZ3191xcUcE1LPCOu8TRexFlYIhxP6CIhPSkg/2rM4dtksO0yQ==","signatures":[{"sig":"MEUCIQDIn9rTmLh5r2sB/kherXe8oaywOqGbEtPiIIIndOKdmgIgAuG1n9dDpHBQcGRyxiOOP9TGuxLLfNCKdGVrzowaD6o=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"87aa917befa8f6182f5535df3c77287209692a04","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260209_1770622272116_0.3587828182603736","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260210":{"name":"typescript","version":"6.0.0-dev.20260210","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260210","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c7673c6f496ff8cd0f13bb7540cef81dc2e042be","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260210.tgz","fileCount":140,"integrity":"sha512-B5IvEIktsU2O4RvpC9/qYmod9wJ5Uu8CKKam91P8MgKBuhkspLjuiGaw/r6TCohWbBuxhy0z76hm90IbgzZusQ==","signatures":[{"sig":"MEQCIDm5p+MCGa5PPgPrr6S/AZG1oYe88KrIzw64M7XK1xUDAiAkmT0y1KXO0VbnpS4tcCnaXF7PWa0bVr61bV0cL97uUA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cdb583a81357553fd72faedc6602c3f2516490fc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260210_1770708724181_0.9716324537704912","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260211":{"name":"typescript","version":"6.0.0-dev.20260211","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260211","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9b297eec065995360e6bfb61b24db0ce873b9a26","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260211.tgz","fileCount":140,"integrity":"sha512-47GEHc/wTPzPuBWJzIGchSY12xqvr3mFrYHr03Nv6vX0SVTa4l80OG4+yjYoj9LB0rP4/3yPUk5Pv++TPsiZ7Q==","signatures":[{"sig":"MEQCIDGO/6A5eWQiZaur4MnnhDJVCtmHMA6PZIUuXkEsA4U2AiBmOzCjzyKnwg1/CmBghP5pg1UPMr+DAdvElp31tJ+AVg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cdb583a81357553fd72faedc6602c3f2516490fc","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260211_1770794996024_0.3870456884099778","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-beta":{"name":"typescript","version":"6.0.0-beta","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-beta","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2f87bd0cd1a291f675b3414a02a00bd4f7b48357","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-beta.tgz","fileCount":140,"integrity":"sha512-CldZdztDpQRLM1HC6WDQjQkQN5Ub5zRau737a1diGh3lPmb9oRsaWHk1y5iqK0o7+1bNJ0oXfEGRkAogFZBL+Q==","signatures":[{"sig":"MEYCIQDerGXFvNQwrhijHJs+Ke2mMGsS+P/RpQR+HkaMn8dGtQIhAJuAn2sXZxhMLEoKaLfmlrd6gnnDmj8kyvk+hOZxPFjg","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267292},"main":"./lib/typescript.js","_from":"file:/mnt/vss/_work/1/tgz/typescript.tgz","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"5ccf24e9c4f7a66cbce23bdd0476fabb39945b9b","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/mnt/vss/_work/1/tgz/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-CldZdztDpQRLM1HC6WDQjQkQN5Ub5zRau737a1diGh3lPmb9oRsaWHk1y5iqK0o7+1bNJ0oXfEGRkAogFZBL+Q==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.20.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-beta_1770834397293_0.7338445271763849","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260212":{"name":"typescript","version":"6.0.0-dev.20260212","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260212","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"4ecb5383f20ac610b0f6e706dd2d6826ab4fd413","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260212.tgz","fileCount":140,"integrity":"sha512-ZFufHwm0m0fGLkRaMfkQ/qyqk98bLaP7Qib/HYhzM3NVDcZX/DHzW64iYpeiDC4GxQQXT1Fdi4Z8wWgognKkNA==","signatures":[{"sig":"MEUCIEaCj4gH8cnkqhKFvAm1Vehj7TQ+w91U7WfSjLCNfa9KAiEAonkPaybnNODnfopM0cs90rZM3U6Zo17sLa2z3mIVZ/U=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cdc205d5e6338d96b0fb54657af33d473d480a9c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260212_1770881371540_0.6176578478719996","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260213":{"name":"typescript","version":"6.0.0-dev.20260213","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260213","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"cf1360177ab5ac36beed3410f67a0dbabeed3e2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260213.tgz","fileCount":140,"integrity":"sha512-zGIJwsX3OEsKIoEvXJzHRpt58fk370/T1N0GsSECAbcTlrsfUe2QQFbdKyKT3HyG2hFFyZg+Q0zYn6VLeahafg==","signatures":[{"sig":"MEYCIQC/OB/razCNyC0cRNqvC7Qm6p4K/Sd/YBj1ST06fLYwVwIhAN9XuVp7djgK91hUepI8I1qs8UTtg8/QX2krEB3HuVFD","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cdc205d5e6338d96b0fb54657af33d473d480a9c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260213_1770967681853_0.5203079933109855","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260214":{"name":"typescript","version":"6.0.0-dev.20260214","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260214","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"231ef197fa8ad35e8f9058682ca3715d9f244edc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260214.tgz","fileCount":140,"integrity":"sha512-jYIRAACPpgz3L5PtENqVT87myfbpCt0uUaCKS4ftsTs1Xk5dnCFVcSq6QbtkAXlD2bf/CY8dVvwD6BsSRteIaA==","signatures":[{"sig":"MEUCIG+qrMZRpNvtPJPB5xo/7uAHR05JYiTXPWxqewW/wXxLAiEA4j41qSId+nXEGFGO3k7rfXgWjuCVLKekpDxyuZsPSEg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cdc205d5e6338d96b0fb54657af33d473d480a9c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260214_1771053721571_0.8871689681039667","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260215":{"name":"typescript","version":"6.0.0-dev.20260215","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260215","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b037f3f00c9245396b2ae3a5550f69c61c6c288b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260215.tgz","fileCount":140,"integrity":"sha512-+AcHLyqjeJZNBJR/klxkDGXf481nBapVS5f3T4SGUgAcVCGNqA+z7vTtvpkpIsmcuGa3DY//uRtw0vsPo3FAFQ==","signatures":[{"sig":"MEUCIDaTlf6lNSQ5lhcfgfdTg7wLgIBDWAZjPdBr2MEqO6QTAiEA+4JtfV3E3/3ZDTWoidqkCXO5gRM4H5msKk80a3W2N6M=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cdc205d5e6338d96b0fb54657af33d473d480a9c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260215_1771140219414_0.7083104147102866","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260216":{"name":"typescript","version":"6.0.0-dev.20260216","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260216","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"70e96bd859bc6b800d522f252242858835225c04","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260216.tgz","fileCount":140,"integrity":"sha512-MDh4fpMsj2P+0/luL0ZpVTK8Cp6jVvw4x5j4lUO6L7YztSQzxAKRq3AubNd7LQ+kC643y+mHeozVz90uXtCpyw==","signatures":[{"sig":"MEUCIFY67bAe7F1x/huXZ/3xDqfHV2R5HHl+eR+dbf1/ui00AiEA+tVSz0l5djQ3mJJeN/jQ7i2XvqXJjGhRoxd5nXdAJxw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"cdc205d5e6338d96b0fb54657af33d473d480a9c","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260216_1771227025773_0.302175168761732","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260217":{"name":"typescript","version":"6.0.0-dev.20260217","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260217","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1c11770cc6a9e1410f6632810eb7b1229c49a784","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260217.tgz","fileCount":140,"integrity":"sha512-zETfGPMa3NO1naBo47X57eCicGBMr1MjOgrUXe6ImMLFa/TUjnNbT0hKheXvSvUPMvoRPVj7GXwnupX1IUJStQ==","signatures":[{"sig":"MEQCIFh08XIurOd3fpZKNnd+Gv8lNvETg7Bz/3T3ds4pyhm0AiBry1sFhKkyH6iqVKjPJIOrJks2gDO8GZ+DLzzm75nI4g==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267350},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"040c2088b2b21715f41add62791687bd569e4496","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260217_1771313295139_0.26494309434975416","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260218":{"name":"typescript","version":"6.0.0-dev.20260218","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260218","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"1d9dc20715646366a016a762b6e10cdd6d993051","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260218.tgz","fileCount":140,"integrity":"sha512-0kf0Qqk7E+99pjQH34DfUE0ArJXJRYD3W8I4p+g3EtriaRuSrkGl/ZnDnheGf6UNfRPnEFx9o3J61vIZDV9f8Q==","signatures":[{"sig":"MEUCIQDBYeu+d5Kx40PxqCH1zzToAE/ckeMq37rWaoaE70yA+gIgaTGSRE/dMXINPcw7Gt0UjQjJgpbagaVLQ2xYY7a/tAg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24267313},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"ad04bf7488384a5dcdf7d250ccb8e5263021a8ff","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260218_1771399786098_0.42149911373738713","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260219":{"name":"typescript","version":"6.0.0-dev.20260219","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260219","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6f47e914c4ca9b1807264719748030cc648ed101","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260219.tgz","fileCount":140,"integrity":"sha512-lnVngmAT+yIDUN7keGuCD0Sy76K+UrQdrFMDs0pZRFUvOxV3RTz3P7Ws+Ri7ArOHVT5CMLAoirKZRM7huMTfLw==","signatures":[{"sig":"MEQCIF0T6gloi2JYLtymUusKbDwuC1PfqUPHpLdzJI3PKnXXAiA3gVcGrcb8M/xkvJGvbdB1m6AZ/zl50YK7Zmv3fdTcWg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341569},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"347254895823a36a1b1b1c80471422da54ad77de","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260219_1771486173494_0.6600885802157186","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260220":{"name":"typescript","version":"6.0.0-dev.20260220","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260220","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"232fc994d2f0bb9f10862085eef98af825fb2ccb","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260220.tgz","fileCount":140,"integrity":"sha512-W1DfP45OLUbOLMTGrZtpwZZnWs5tRKPTyPx0TawT+ENc1iU9Jxgovwgx5WqZgOSljBZcWT6mkyXpi04ItfhzYA==","signatures":[{"sig":"MEQCIHohEnqjc2Lxuv6fjgtVbZL80HiPrsXgfy9QI73E2oZVAiBt/HBL4Jlx6TOhJWGasisO7+Fyp7HzVjlXHI0H2tu2Uw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341569},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"347254895823a36a1b1b1c80471422da54ad77de","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260220_1771572470734_0.7619923822293921","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260221":{"name":"typescript","version":"6.0.0-dev.20260221","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260221","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"453048b048f4b229ad6405116793c247dcbb35e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260221.tgz","fileCount":140,"integrity":"sha512-9tEpgh7JX95fXviOFlNSurDjUbnu1UUKuQuLVUK6a22jFFaCd3to8sY963yDNyekzYg5XovDuUMA+QFnpns9mw==","signatures":[{"sig":"MEYCIQCAuo1RBOIL1lVwPwSQDzNbWYMZ57CUbIsNjOCLzx+KBgIhAJFXTL/CbizExHgRIz5eCv2qs+hiIKRQlYJP+jSQnNgT","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341569},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"347254895823a36a1b1b1c80471422da54ad77de","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260221_1771658421764_0.22362705299025842","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260222":{"name":"typescript","version":"6.0.0-dev.20260222","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260222","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"80b9d600e06baf3b7bfa8205c4e49e163d594b01","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260222.tgz","fileCount":140,"integrity":"sha512-7VZiQkTv0jeoysIXUYyrYfPVmw3+ASsnhrFAHI7PQf5Nz46obKs/AniFnyNky7yftiPf3gT9rZbkIY58uiLxiw==","signatures":[{"sig":"MEYCIQD2E5ZXvpCLljoaHAa4zNVfMocAL2Ha0xRU2hcwT7WGFgIhAK0Sb7ZF3m51XPYiWe7KoSG9PAgoz79L2GF8ardzTaJC","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341569},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"347254895823a36a1b1b1c80471422da54ad77de","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260222_1771744996428_0.8388978749439069","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260223":{"name":"typescript","version":"6.0.0-dev.20260223","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260223","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c1c557187b6c71cc4460be54c1d43ef6b7eb4598","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260223.tgz","fileCount":140,"integrity":"sha512-1a/Jni8ZkbJIWUkg1yhBXHaSU2rqX0O1V4ah9/XP0kO/9/PrGk4O8svSLjAdbSoedt59uuujoxRGBrNy3HM36w==","signatures":[{"sig":"MEUCIQCmAt749MjhFeBModl/j2OUumnxUwmkFmQK+4rdjAxanQIgBIAWJN0oZwPiJnudRmvvOuyQOcWMvrNia8Dxn4mZmCE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341569},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"347254895823a36a1b1b1c80471422da54ad77de","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260223_1771831910110_0.7975154585025828","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260224":{"name":"typescript","version":"6.0.0-dev.20260224","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260224","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"930f6372cf696ac599483634634dc20c062dc6cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260224.tgz","fileCount":140,"integrity":"sha512-QEcW/uW/j914p/Avsw933+R03oIyJ1bmWlIOC/XFSUNmtkl9qi9yY2mWBjYX7tG4g22SzpbZPXX0QimZXPQQ8w==","signatures":[{"sig":"MEUCIBvMHXfmCif8fTcsjXQ3zucy7xnBx3y1yDS9qTqWUO+7AiEAkPz0TvSpo0xiNvCFGrjniKDfZ+Orxg94PWj3V7XZ06o=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341569},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b24015058ae060de249acf5ea09e15dd92a55587","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260224_1771918173405_0.006712343488490813","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260225":{"name":"typescript","version":"6.0.0-dev.20260225","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260225","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c0ff2644065a7f91a36b5404dc437093cf8d9461","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260225.tgz","fileCount":140,"integrity":"sha512-q2GQgpgls+G0UNriozf7YT37GfET/sMOUZzZ4emZ+4sOb0So8ePnFm6Xsz6x7SP1WjyZx1b17eG1eMnwqhg8nw==","signatures":[{"sig":"MEUCIHtWnUhaLx6kQplai+aleYl9dx62neeoINyXLLGrqs3CAiEAtu1fK/1dP8/42VtGMQBQn/YwG13OhIUXdWrfALE0SYQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341569},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"b24015058ae060de249acf5ea09e15dd92a55587","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260225_1772004524125_0.9457479412543499","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260226":{"name":"typescript","version":"6.0.0-dev.20260226","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260226","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"c9ad1d4fd76c701a74e93c8e078fda34a51ec90b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260226.tgz","fileCount":140,"integrity":"sha512-vJ64NNlCqPdhlQsLQArDL3V1wcrPDYfkT0cTonqZ1FARTlQPGTyrEOJdiSlwyYVZl7pTisOn7n8G2rgu3WyiQA==","signatures":[{"sig":"MEUCIQD04L31CX05b1LDBaJhaOPSK1KK5gW1XfENJrE2AgVIAgIgR+inQe35z3k9z3hlbWZhr3T6Z58jV3QRDggYAnuV4lM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341864},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6cf81701bc9666957064dad013e938c9c5af2c33","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260226_1772090976529_0.8483309487735229","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260227":{"name":"typescript","version":"6.0.0-dev.20260227","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260227","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"a3f0a1c56f3c86c2affc3aef50cf426f097a62f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260227.tgz","fileCount":140,"integrity":"sha512-Jf8wNjDvqsP9NvyhMQZryLFIwZACn881ArP4dXh6k8SIISQmdty/l0pU6YV7soGFIsebAzd0ciYg4CIMKUqy4g==","signatures":[{"sig":"MEUCIQDCNr8QIToD9s6VV+u9/x5erO9fnOgXBEWInbhCxJDhOgIgBLk+wS1VtQQtKfzzkagkmD8fAzc3dm98dLlxVtn2v1Q=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24341864},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"6cf81701bc9666957064dad013e938c9c5af2c33","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260227_1772177165542_0.6385247906191125","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260228":{"name":"typescript","version":"6.0.0-dev.20260228","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260228","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"b3f923cc0861726962419356da30c127a01ff058","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260228.tgz","fileCount":140,"integrity":"sha512-/0AUvkZnuaw1mXTRZf4n0Z1Rg8NdcJwZNMTz1tYLRkauarE6TvfprFKCVAC2dPnv1HC3A/0lI7z+9qdtn/TTfg==","signatures":[{"sig":"MEQCIBVLCbI+IPP0KuMo1/i+hkdLyTdAhbJIx/kiE0LjKmpRAiAqAjamoNiHtbw59bh4gTm3MG6b3Wr/85ULimIbgVisyw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24344171},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0c2c7a358297d66df690230deaed8c98e7d77c04","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260228_1772262938639_0.7504992808254847","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260301":{"name":"typescript","version":"6.0.0-dev.20260301","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260301","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"05e5a22d2a872847042a7f9afaa2130de908d039","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260301.tgz","fileCount":140,"integrity":"sha512-utLDBF4c0FnGI/cs1TX7qXdBKptg36Q2KY8X+KFtgMoYM7HnbZ6XT/N/Mtm4DwioPD7S0bBBW+9bKJ8TwdmfAQ==","signatures":[{"sig":"MEYCIQC55RJflADU3aEO6quGg3JIE/G8qy81YTTvy28H/gJyqAIhAL/QnGNxxO+fG+h5G0U8P9rDDXvVP6r7Gb16HVme+kRX","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24344171},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0c2c7a358297d66df690230deaed8c98e7d77c04","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260301_1772349674540_0.6782476365006549","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260302":{"name":"typescript","version":"6.0.0-dev.20260302","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260302","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"76d11ad84120c73fd8d18224979eea7a32e79913","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260302.tgz","fileCount":140,"integrity":"sha512-f1OyfRwerbx6t8dQdNRa3YLgPqAbmE3ugnqDvf7dJBq40ZSTN9NpibhfTcGuUBP0kB/o0MHFOlxv2Cznguk65Q==","signatures":[{"sig":"MEYCIQDwZ8Xo4LYGWadpnHPcNbc2b+Nm75moMmUg4q5Nd/JkyAIhAML4cvhc7F8xXpCyzWLqSGr5TmCEZBCleVlU0C+4iWNX","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24344171},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"20.1.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"0c2c7a358297d66df690230deaed8c98e7d77c04","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.2","glob":"^10.5.0","knip":"^5.70.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^9.39.1","hereby":"^1.11.1","esbuild":"^0.27.0","globals":"^16.5.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^9.39.1","picocolors":"^1.1.1","playwright":"^1.56.1","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.3.2","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.47.0","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^2.10.0","azure-devops-node-api":"^15.1.1","@typescript-eslint/utils":"^8.47.0","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.47.0","@typescript-eslint/rule-tester":"^8.47.0","mocha-fivemat-progress-reporter":"^0.1.0","eslint-formatter-autolinkable-stylish":"^1.4.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260302_1772436481328_0.20269620356244333","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260303":{"name":"typescript","version":"6.0.0-dev.20260303","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260303","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6fc46837eea38c47f63f2b009455e53d94cfa8da","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260303.tgz","fileCount":140,"integrity":"sha512-JOwXQ0a1X2OMyNsva9UJsnAEmHpYv2hqVSEoc6gqiPmKcLfwK20y2qzZTlpoZ62VpZQeklPNkynjpNEjb711uA==","signatures":[{"sig":"MEQCIBCIZm0+pZhbQv+b2ekIQMTzsfgENohYlCGSng6p/UtrAiBXlCnXreYuKAy1LrmgDjI9OWg/2czZYxiHY0MHA+E2/Q==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260303_1772522712668_0.8133736764709552","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260304":{"name":"typescript","version":"6.0.0-dev.20260304","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260304","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"bd745a52f1dd8dbc216788b58cae8e703f964a2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260304.tgz","fileCount":140,"integrity":"sha512-fnQpDzqreEAYrNlSwXvA87Q2/3HIfsdybaAoV6rCRu3fD9dGk4zhXIYgyuGwinkhCyIvqrlg1SwWP1H9GjkfHw==","signatures":[{"sig":"MEQCICjzo3XJbdYgnr6XOrgIq6MWou6wxjJwODxxZXg94D7aAiAaQ+I3vZEYOgKZ2pxNBOuRfHxkv1goeTXODsyKBYSGfg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.13.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260304_1772608967606_0.6587900930293813","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260305":{"name":"typescript","version":"6.0.0-dev.20260305","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260305","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"42109ad90ca6744e317c02eaf05c5d7d6a2f186c","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260305.tgz","fileCount":140,"integrity":"sha512-JCpaEoo18VAXaQRsvdMLhwExx3k8QoryqWFTJXIvl3zkyVr5Gybd9Ap8mLatOP1RGfiUSYA7cW/mISZGBoBrbw==","signatures":[{"sig":"MEUCIFidtXas929GZ+03VyJCwvpecuuxcB9gi18hpkl/rImJAiEAkeX4apw45Bld7fb3fDnrdNeFvoXB1Zmuv5GP6X/Br5w=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260305_1772695535579_0.6623618902044737","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260306":{"name":"typescript","version":"6.0.0-dev.20260306","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260306","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"e18b20446b220c4c7daa2795e6e4359d05293347","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260306.tgz","fileCount":140,"integrity":"sha512-ssxgK3/0yA2LEW23KzSNtnqSL9zDaVGTesx2S3EN+v8kqkPScFTin7S63KfQ4UDZGZGcvBgHCEoEz7t7v2yR8Q==","signatures":[{"sig":"MEYCIQCB9XfBz+N2OVYLGWUoidFTJYB6s8ClbYFBOJcRshUu2QIhAL7tH10/lW/NcPx89W24SG8Aug0Z9XP+KmPz7XjIpYR4","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260306_1772781800716_0.5630892052177676","host":"s3://npm-registry-packages-npm-production"}},"6.0.1-rc":{"name":"typescript","version":"6.0.1-rc","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.1-rc","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9f31b03dcc7920286962df0f5769fe74b949ecb7","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.1-rc.tgz","fileCount":140,"integrity":"sha512-7XlzYb+p/7YxX6qSOzwB4mxVFRdAgWWkj1PgAZ+jzldeuFV6Z77vwFbNxHsUXAL/bhlWY2jCT8shLwDJR8337g==","signatures":[{"sig":"MEUCIH2nmkenSp302XpOJEw+F3M42Wii24sVsclEGTBOQI3qAiEAiBtwvR8Uphx5Rm1PdUzMHkMZaHB0B3L/Tvi+NhY4XIc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345692},"main":"./lib/typescript.js","_from":"file:/mnt/vss/_work/1/tgz/typescript.tgz","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"35ff23d4b0cc715691323ebe54f523c16fe6e3a5","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"_resolved":"/mnt/vss/_work/1/tgz/typescript.tgz","overrides":{"typescript@*":"$typescript"},"_integrity":"sha512-7XlzYb+p/7YxX6qSOzwB4mxVFRdAgWWkj1PgAZ+jzldeuFV6Z77vwFbNxHsUXAL/bhlWY2jCT8shLwDJR8337g==","repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"10.8.2","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"20.20.1","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.1-rc_1772818390278_0.6906056975125885","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260307":{"name":"typescript","version":"6.0.0-dev.20260307","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260307","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"34f77a53326454f1f2abc424848cdded71ec4afa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260307.tgz","fileCount":140,"integrity":"sha512-SoNmFQXzMEkR/hjY/hMKYdotox/LJNk+YfkHOUFit+haMCwK/mF9HLI2MjjOfPMGKzcVarqEFMYTxgvidTSEYQ==","signatures":[{"sig":"MEQCIGa9TCjtwAOmqHV+BmUajD75R4lFNP40L4PaVJL8EcwUAiB46ij1v1P2yNNxRme3rh07nXgq8gr1f3i5lqQ/SjeSKQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260307_1772867826505_0.962699417827457","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260308":{"name":"typescript","version":"6.0.0-dev.20260308","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260308","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"714db8f561b747ac1d53628251e8d2419de758fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260308.tgz","fileCount":140,"integrity":"sha512-A4iiZpxgS+OjpPfG4JAlpLi+eIV9jJ02OtC38PTctn89ohtpkiVgyeRHfOPeg39kK+vP9nID5rBZ5D+bdRcVJQ==","signatures":[{"sig":"MEYCIQDNv6YaWWaGvCooixbbcAefMGkhMyfIwauk9T40M3p6LwIhAMQVTnSiN57AScNWkJ0H9KT3qHUgKhjiQA3R2lSEgrG5","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260308_1772954381113_0.5157111701172132","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260309":{"name":"typescript","version":"6.0.0-dev.20260309","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260309","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"9062d50eb57ab5a6d0ea87c099a1287362078cbd","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260309.tgz","fileCount":140,"integrity":"sha512-GVl/SCg1QEwsj/FIKGJxV4aEeaRFqANQADZL0xT/6dCnbM+ysvpQvsTmjDERYQ7wlqp7TqiBOSXyQ8kJzOEohg==","signatures":[{"sig":"MEYCIQCbEmqjUFaxrLn3fEyh5v/z/foaYC69TxIBBXa+djI3/AIhAL2FIjlEf7Boy6junxNI8wyh7Wq66Q0uNajOQSsEhHbQ","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260309_1773041374400_0.5747115429918468","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260310":{"name":"typescript","version":"6.0.0-dev.20260310","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260310","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"2b13cae758e4922095ee6d6b1e5175037a7ebad6","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260310.tgz","fileCount":140,"integrity":"sha512-njg5sx9sT3sWcVXdCnemvXgoRGIJzeZix7QppMU9MzAUgO4vJLxd6qI8DhS+du2EyRg9rhe1ryxRsBFx+AcctA==","signatures":[{"sig":"MEYCIQDEELWU6DTr4PAkdXQT8owPIAx61l2go+ciVfPCAxs1JgIhALXMH9l0HGK0fOJr5W0LmcrO8GXAxxur/ghjBU0i5aC3","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260310_1773127446878_0.9141498430682327","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260311":{"name":"typescript","version":"6.0.0-dev.20260311","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260311","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"69a5c7d828885fc6b8b3538c4e2cdff44dd26030","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260311.tgz","fileCount":140,"integrity":"sha512-Ia5ilqUhpQFGf3vguLpNWpEy9QZgFRoMjYRHusHPBVygJFLjMreR2dyJHAv6A1BG2bGwLZmVNfvP802d00KeiA==","signatures":[{"sig":"MEUCIQCNGgVrYbhIY7dURENcJUF/mSd9dBbqcCg8Sjl8YXF/RgIgdoiz4K/2K5/zAwDTNhD77MF+Pj/V4k+zRwG6UNtaqBM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260311_1773213897167_0.8840048689705102","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260312":{"name":"typescript","version":"6.0.0-dev.20260312","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260312","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"6a0670e11f41b510df5f04d1b55ac32be5744492","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260312.tgz","fileCount":140,"integrity":"sha512-KWkVpEpkrJjggGpS0v6o6Qdxry14ivyq3ZEvlr4mhBRYTCbIjE2A2FbICew/BS9J8ecKK2xS6/yjDDP0aY523Q==","signatures":[{"sig":"MEYCIQCpdQFxgJhUfORmgjwjlNwlvLvCnE06jOsuHmFgRZq9lAIhAI7blOgHQ2QdKopM1MEIfH4YlxxmUESdBcdOD/PmTlx1","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345756},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"c9e7428bb76f0543a3555d0af87777e7db3a41e6","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260312_1773300394319_0.5015816276257694","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260313":{"name":"typescript","version":"6.0.0-dev.20260313","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260313","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"20f7daa404d044447a5445f9fa79c9a2fb0e2875","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260313.tgz","fileCount":140,"integrity":"sha512-eKxRC45O/I+UL3gNjl1YBLV+UyfDvhNs5zQ0DOTuCpxlGtbKjsffe15txpqRt++PSPTHLpShUbiLy56+sZAMUA==","signatures":[{"sig":"MEUCIQDt2hyUVI3rZ5kFI8XtQ21HqroC3iX/QRl0Spa+jLviTgIgdtPMFk9l6R+upphi26TTljPiIJAfkZr/P3UigbSRM2g=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345988},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9059e5bda0bb603ae6b41eca09dcd2a071af45fd","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260313_1773386750250_0.4570925497211362","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260314":{"name":"typescript","version":"6.0.0-dev.20260314","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260314","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"daa631af73ae1eb36bd0c78424855c5c71aecb49","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260314.tgz","fileCount":140,"integrity":"sha512-hsLPXuwqMXcRtOxIDsl58KTTlmoJ/G7gudPBY1TEEkgOSgr29sqWh/7okIXCSBeagiofir+aeGJwsQGV/dBl7A==","signatures":[{"sig":"MEQCIFrtSKepDxgo/dXQixQJ9LuroW4qaI8bG6+RKXeDf5VqAiBqkCVfnVWTD+UyyUboSxpzqSGdte3yfyDLywkqkpEefQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345988},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9059e5bda0bb603ae6b41eca09dcd2a071af45fd","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260314_1773472921135_0.8980566178655556","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260315":{"name":"typescript","version":"6.0.0-dev.20260315","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260315","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"ed1e403109c806fa5aecf36df53ad12d86287d9e","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260315.tgz","fileCount":140,"integrity":"sha512-BhLP/CbbI1+ESHDL62m/+Xx7yU3PFNx31nYzknKGAHJjnJT7ZeN+X/JgmJ3W+drSZGKXw0jiC/o8Plbrba7Ezg==","signatures":[{"sig":"MEUCIHpcivciVcf3FMbiPuOvxfS8fzZ1dBD2A156a7IrkX9IAiEAnvzFW/HIL48en4eigBdhzcG93PPWFQGgW1U+scwI8tc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345988},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9059e5bda0bb603ae6b41eca09dcd2a071af45fd","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260315_1773559574097_0.18166641957258856","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260316":{"name":"typescript","version":"6.0.0-dev.20260316","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","_id":"typescript@6.0.0-dev.20260316","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"homepage":"https://www.typescriptlang.org/","bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"dist":{"shasum":"712d5f11a342108d5a2d48868b1e197ca24f252b","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260316.tgz","fileCount":140,"integrity":"sha512-TmmWw2VBAuVL468ZIP7ViFoXYVtO96ie/m0nszKV7XFCT/4caJgvSQ0LSmCyuX22IKqrQCuUjZW2nbXdQIHfIg==","signatures":[{"sig":"MEYCIQCvz4w4P85Oinswnzw6+PaPqjOb3bjam0wd5uXCNUYqeAIhAN3DUJ+/F0XdijCkuvdseMCCpDpgi446KDUOrjmxfJq/","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":24345988},"main":"./lib/typescript.js","volta":{"npm":"8.19.4","node":"22.22.0"},"browser":{"fs":false,"os":false,"path":false,"buffer":false,"crypto":false,"inspector":false,"perf_hooks":false,"source-map-support":false},"engines":{"node":">=14.17"},"gitHead":"9059e5bda0bb603ae6b41eca09dcd2a071af45fd","scripts":{"gulp":"hereby","knip":"hereby knip","lint":"hereby lint","test":"hereby runtests-parallel --light=false","build":"npm run build:compiler && npm run build:tests","clean":"hereby clean","format":"dprint fmt","build:tests":"hereby tests","setup-hooks":"node scripts/link-hooks.mjs","build:compiler":"hereby local","test:eslint-rules":"hereby run-eslint-rules-tests","build:tests:notypecheck":"hereby tests --no-typecheck"},"typings":"./lib/typescript.d.ts","_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"overrides":{"typescript@*":"$typescript"},"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"_npmVersion":"8.19.4","description":"TypeScript is a language for application scale JavaScript development","directories":{},"_nodeVersion":"24.14.0","_hasShrinkwrap":false,"packageManager":"npm@8.19.4","readmeFilename":"README.md","devDependencies":{"c8":"^10.1.3","ms":"^2.1.3","chai":"^4.5.0","diff":"^8.0.3","glob":"^10.5.0","knip":"^5.85.0","mocha":"^10.8.2","tslib":"^2.8.1","which":"^3.0.1","dprint":"^0.49.1","eslint":"^10.0.2","hereby":"^1.12.0","esbuild":"^0.27.3","globals":"^17.4.0","chokidar":"^4.0.3","minimist":"^1.2.8","@types/ms":"^2.1.0","@eslint/js":"^10.0.1","picocolors":"^1.1.1","playwright":"^1.58.2","typescript":"^5.9.3","@types/chai":"^4.3.20","@types/node":"latest","@types/mocha":"^10.0.10","@types/which":"^3.0.4","jsonc-parser":"^3.3.1","@octokit/rest":"^22.0.1","@types/minimist":"^1.2.5","fast-xml-parser":"^5.4.1","@dprint/formatter":"^0.4.1","@esfx/canceltoken":"^1.0.0","typescript-eslint":"^8.56.1","@dprint/typescript":"0.93.4","source-map-support":"^0.5.21","eslint-plugin-regexp":"^3.0.0","azure-devops-node-api":"^15.1.3","@typescript-eslint/utils":"^8.56.1","@types/source-map-support":"^0.5.10","monocart-coverage-reports":"^2.12.9","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/rule-tester":"^8.56.1","mocha-fivemat-progress-reporter":"^0.1.0"},"_npmOperationalInternal":{"tmp":"tmp/typescript_6.0.0-dev.20260316_1773646692180_0.03374969040285647","host":"s3://npm-registry-packages-npm-production"}},"6.0.0-dev.20260317":{"name":"typescript","author":{"name":"Microsoft Corp."},"homepage":"https://www.typescriptlang.org/","version":"6.0.0-dev.20260317","license":"Apache-2.0","description":"TypeScript is a language for application scale JavaScript development","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"repository":{"type":"git","url":"git+https://github.com/microsoft/TypeScript.git"},"main":"./lib/typescript.js","typings":"./lib/typescript.d.ts","bin":{"tsc":"bin/tsc","tsserver":"bin/tsserver"},"engines":{"node":">=14.17"},"devDependencies":{"@dprint/formatter":"^0.4.1","@dprint/typescript":"0.93.4","@esfx/canceltoken":"^1.0.0","@eslint/js":"^10.0.1","@octokit/rest":"^22.0.1","@types/chai":"^4.3.20","@types/minimist":"^1.2.5","@types/mocha":"^10.0.10","@types/ms":"^2.1.0","@types/node":"latest","@types/source-map-support":"^0.5.10","@types/which":"^3.0.4","@typescript-eslint/rule-tester":"^8.56.1","@typescript-eslint/type-utils":"^8.56.1","@typescript-eslint/utils":"^8.56.1","azure-devops-node-api":"^15.1.3","c8":"^10.1.3","chai":"^4.5.0","chokidar":"^4.0.3","diff":"^8.0.3","dprint":"^0.49.1","esbuild":"^0.27.3","eslint":"^10.0.2","eslint-plugin-regexp":"^3.0.0","fast-xml-parser":"^5.4.1","glob":"^10.5.0","globals":"^17.4.0","hereby":"^1.12.0","jsonc-parser":"^3.3.1","knip":"^5.85.0","minimist":"^1.2.8","mocha":"^10.8.2","mocha-fivemat-progress-reporter":"^0.1.0","monocart-coverage-reports":"^2.12.9","ms":"^2.1.3","picocolors":"^1.1.1","playwright":"^1.58.2","source-map-support":"^0.5.21","tslib":"^2.8.1","typescript":"^5.9.3","typescript-eslint":"^8.56.1","which":"^3.0.1"},"overrides":{"typescript@*":"$typescript"},"scripts":{"test":"hereby runtests-parallel --light=false","test:eslint-rules":"hereby run-eslint-rules-tests","build":"npm run build:compiler && npm run build:tests","build:compiler":"hereby local","build:tests":"hereby tests","build:tests:notypecheck":"hereby tests --no-typecheck","clean":"hereby clean","gulp":"hereby","lint":"hereby lint","knip":"hereby knip","format":"dprint fmt","setup-hooks":"node scripts/link-hooks.mjs"},"browser":{"fs":false,"os":false,"path":false,"crypto":false,"buffer":false,"source-map-support":false,"inspector":false,"perf_hooks":false},"packageManager":"npm@8.19.4","volta":{"node":"22.22.0","npm":"8.19.4"},"gitHead":"4f7b4175fe38424fffebb0a20355633bc077d52c","readmeFilename":"README.md","_id":"typescript@6.0.0-dev.20260317","_nodeVersion":"24.14.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-4ZLTw1kdCd3Fg7ylvvQ3u9afz1/rxhlGpU3QwGZFHmzIUTgfYaN+SmU4pmPqwx9qRctYGHAemT4dgknEkobC1g==","shasum":"6504c8a2cadb0c02ea2859a5ec731b8a674ea3e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/typescript/-/typescript-6.0.0-dev.20260317.tgz","fileCount":140,"unpackedSize":24345988,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDtzfNjYRw0ulR2xFYTTjmX1C/xo587mhArGxTRRXpxkQIhAN23BWYZokBlmnGOWHU2a2x6SvhG0kqC7NbHxKoO+nl+"}]},"_npmUser":{"name":"typescript-bot","email":"typescript@microsoft.com"},"directories":{},"maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/typescript_6.0.0-dev.20260317_1773732621607_0.5461382574327356"},"_hasShrinkwrap":false}},"time":{"created":"2012-10-01T15:35:39.553Z","modified":"2026-03-17T07:30:22.189Z","0.8.0":"2012-10-01T15:35:41.062Z","0.8.1":"2012-11-15T20:53:44.894Z","0.8.1-1":"2012-12-04T23:35:48.083Z","0.8.2":"2013-01-22T01:31:00.505Z","0.8.3":"2013-02-27T18:20:30.242Z","0.9.0":"2013-06-18T18:06:35.222Z","0.9.0-1":"2013-06-28T21:58:10.079Z","0.9.1":"2013-08-06T19:47:22.492Z","0.9.1-1":"2013-08-21T17:00:38.698Z","0.9.5":"2013-12-05T21:49:12.469Z","0.9.7":"2014-02-25T20:49:42.608Z","1.0.0":"2014-04-02T22:49:06.284Z","1.0.1":"2014-05-12T20:51:15.543Z","1.1.0-1":"2014-10-06T16:18:11.285Z","1.3.0":"2014-11-12T15:06:54.123Z","1.4.1":"2015-01-16T17:55:29.237Z","1.5.0-alpha":"2015-04-02T16:40:27.808Z","1.5.0-beta":"2015-04-30T17:23:52.442Z","1.5.3":"2015-07-20T14:47:42.460Z","1.6.0-dev.20150722":"2015-07-22T21:14:17.242Z","1.6.0-dev.20150722.1":"2015-07-22T21:26:44.999Z","1.6.0-dev.20150723":"2015-07-23T21:46:29.539Z","1.6.0-dev.20150724":"2015-07-24T18:14:34.776Z","1.6.0-dev.20150725":"2015-07-25T06:03:03.706Z","1.6.0-dev.20150726":"2015-07-26T06:02:57.055Z","1.6.0-dev.20150727":"2015-07-27T06:03:00.213Z","1.6.0-dev.20150728":"2015-07-28T06:03:23.603Z","1.6.0-dev.20150729":"2015-07-29T06:03:01.891Z","1.6.0-dev.20150730":"2015-07-30T06:03:00.286Z","1.6.0-dev.20150731":"2015-07-31T06:04:06.608Z","1.6.0-dev.20150801":"2015-08-01T06:03:25.019Z","1.6.0-dev.20150802":"2015-08-02T06:03:08.591Z","1.6.0-dev.20150803":"2015-08-03T06:03:02.927Z","1.6.0-dev.20150804":"2015-08-04T06:04:01.102Z","1.6.0-dev.20150805":"2015-08-05T06:02:52.087Z","1.6.0-dev.20150806":"2015-08-06T06:04:00.399Z","1.6.0-dev.20150807":"2015-08-07T06:03:02.240Z","1.6.0-dev.20150808":"2015-08-08T06:03:01.944Z","1.6.0-dev.20150809":"2015-08-09T06:02:54.966Z","1.6.0-dev.20150810":"2015-08-10T06:02:54.888Z","1.6.0-dev.20150811":"2015-08-11T06:03:07.799Z","1.6.0-dev.20150812":"2015-08-12T06:03:42.679Z","1.6.0-dev.20150813":"2015-08-13T06:04:29.250Z","1.6.0-dev.20150814":"2015-08-14T06:04:05.308Z","1.6.0-dev.20150815":"2015-08-15T06:04:12.953Z","1.6.0-dev.20150816":"2015-08-16T06:04:13.178Z","1.6.0-dev.20150817":"2015-08-17T06:04:14.228Z","1.6.0-dev.20150818":"2015-08-18T06:04:14.794Z","1.6.0-dev.20150819":"2015-08-19T06:04:14.807Z","1.6.0-dev.20150820":"2015-08-20T06:04:43.807Z","1.6.0-dev.20150821":"2015-08-21T06:04:45.641Z","1.6.0-dev.20150822":"2015-08-22T06:04:32.563Z","1.6.0-dev.20150823":"2015-08-23T06:03:26.505Z","1.6.0-dev.20150824":"2015-08-24T06:03:18.790Z","1.6.0-dev.20150825":"2015-08-25T06:03:30.792Z","1.7.0-dev.20150826":"2015-08-26T06:03:23.380Z","1.7.0-dev.20150827":"2015-08-27T06:05:22.873Z","1.7.0-dev.20150828":"2015-08-28T06:04:35.122Z","1.7.0-dev.20150829":"2015-08-29T06:05:56.817Z","1.7.0-dev.20150830":"2015-08-30T06:03:51.534Z","1.7.0-dev.20150831":"2015-08-31T06:03:29.199Z","1.7.0-dev.20150901":"2015-09-01T06:04:38.138Z","1.7.0-dev.20150902":"2015-09-02T06:03:41.672Z","1.6.0-beta":"2015-09-02T22:35:05.955Z","1.7.0-dev.20150903":"2015-09-03T06:04:51.571Z","1.7.0-dev.20150904":"2015-09-04T06:03:30.522Z","1.6.0-dev.20150905":"2015-09-05T06:03:49.418Z","1.6.0-dev.20150906":"2015-09-06T06:03:41.019Z","1.6.0-dev.20150907":"2015-09-07T06:03:45.589Z","1.6.0-dev.20150908":"2015-09-08T06:03:38.195Z","1.6.0-dev.20150909":"2015-09-09T06:03:32.082Z","1.6.0-dev.20150910":"2015-09-10T06:03:38.448Z","1.6.0-dev.20150911":"2015-09-11T06:04:38.519Z","1.6.0-dev.20150912":"2015-09-12T06:04:24.448Z","1.6.0-dev.20150913":"2015-09-13T06:03:30.026Z","1.6.0-dev.20150914":"2015-09-14T06:03:27.768Z","1.6.0-dev.20150915":"2015-09-15T06:03:39.638Z","1.7.0-dev.20150916":"2015-09-16T06:03:29.244Z","1.6.2":"2015-09-16T20:01:36.970Z","1.7.0-dev.20150917":"2015-09-17T06:03:28.119Z","1.7.0-dev.20150918":"2015-09-18T06:03:34.753Z","1.7.0-dev.20150919":"2015-09-19T06:03:51.795Z","1.7.0-dev.20150920":"2015-09-20T06:03:46.404Z","1.7.0-dev.20150921":"2015-09-21T06:04:03.322Z","1.7.0-dev.20150922":"2015-09-22T06:03:52.951Z","1.7.0-dev.20150923":"2015-09-23T06:05:40.512Z","1.7.0-dev.20150924":"2015-09-24T06:05:59.939Z","1.7.0-dev.20150925":"2015-09-25T06:05:45.908Z","1.7.0-dev.20150926":"2015-09-26T06:05:32.110Z","1.7.0-dev.20150927":"2015-09-27T06:05:57.822Z","1.7.0-dev.20150928":"2015-09-28T06:05:41.714Z","1.7.0-dev.20150929":"2015-09-29T06:05:44.006Z","1.7.0-dev.20150930":"2015-09-30T06:05:22.202Z","1.7.0-dev.20151001":"2015-10-01T06:05:32.966Z","1.7.0-dev.20151002":"2015-10-02T06:05:25.846Z","1.7.0-dev.20151003":"2015-10-03T06:05:27.063Z","1.7.0-dev.20151004":"2015-10-04T06:04:10.373Z","1.7.0-dev.20151005":"2015-10-05T06:04:06.084Z","1.7.0-dev.20151006":"2015-10-06T06:05:33.667Z","1.7.0-dev.20151014":"2015-10-14T20:56:02.152Z","1.7.0-dev.20151015":"2015-10-15T06:04:06.618Z","1.7.0-dev.20151016":"2015-10-16T06:03:52.604Z","1.8.0-dev.20151017":"2015-10-17T06:06:39.053Z","1.8.0-dev.20151018":"2015-10-18T06:06:29.708Z","1.8.0-dev.20151019":"2015-10-19T06:06:21.254Z","1.8.0-dev.20151020":"2015-10-20T06:09:02.271Z","1.8.0-dev.20151021":"2015-10-21T06:06:40.833Z","1.8.0-dev.20151022":"2015-10-22T06:06:56.335Z","1.8.0-dev.20151023":"2015-10-23T06:05:41.285Z","1.8.0-dev.20151024":"2015-10-24T06:05:35.652Z","1.8.0-dev.20151025":"2015-10-25T06:05:43.851Z","1.8.0-dev.20151026":"2015-10-26T06:05:39.333Z","1.8.0-dev.20151027":"2015-10-27T06:05:43.501Z","1.8.0-dev.20151028":"2015-10-28T21:19:14.971Z","1.8.0-dev.20151029":"2015-10-29T06:05:32.779Z","1.8.0-dev.20151030":"2015-10-30T06:05:25.279Z","1.8.0-dev.20151031":"2015-10-31T06:05:22.976Z","1.8.0-dev.20151101":"2015-11-01T06:05:35.035Z","1.8.0-dev.20151102":"2015-11-02T07:05:22.108Z","1.8.0-dev.20151103":"2015-11-03T07:05:43.349Z","1.8.0-dev.20151104":"2015-11-04T07:05:35.930Z","1.8.0-dev.20151105":"2015-11-05T07:05:23.148Z","1.8.0-dev.20151106":"2015-11-06T07:05:25.768Z","1.8.0-dev.20151107":"2015-11-07T07:05:29.204Z","1.8.0-dev.20151108":"2015-11-08T07:05:29.728Z","1.8.0-dev.20151109":"2015-11-09T07:05:25.810Z","1.8.0-dev.20151110":"2015-11-10T07:06:02.979Z","1.8.0-dev.20151111":"2015-11-11T07:06:10.041Z","1.8.0-dev.20151112":"2015-11-12T07:06:13.644Z","1.8.0-dev.20151113":"2015-11-13T07:06:09.469Z","1.8.0-dev.20151114":"2015-11-14T07:07:17.825Z","1.8.0-dev.20151115":"2015-11-15T07:06:00.933Z","1.8.0-dev.20151116":"2015-11-16T07:06:00.873Z","1.8.0-dev.20151117":"2015-11-17T07:05:39.364Z","1.8.0-dev.20151118":"2015-11-18T07:05:59.577Z","1.8.0-dev.20151119":"2015-11-19T07:07:52.337Z","1.8.0-dev.20151120":"2015-11-20T07:05:18.542Z","1.8.0-dev.20151121":"2015-11-21T07:05:18.272Z","1.8.0-dev.20151122":"2015-11-22T07:05:12.282Z","1.8.0-dev.20151123":"2015-11-23T07:05:15.261Z","1.8.0-dev.20151124":"2015-11-24T07:05:12.034Z","1.8.0-dev.20151125":"2015-11-25T07:05:21.734Z","1.8.0-dev.20151126":"2015-11-26T07:05:13.848Z","1.8.0-dev.20151127":"2015-11-27T07:05:08.865Z","1.8.0-dev.20151128":"2015-11-28T07:05:08.340Z","1.8.0-dev.20151129":"2015-11-29T07:05:09.211Z","1.8.0-dev.20151130":"2015-11-30T07:05:12.727Z","1.7.3":"2015-11-30T20:37:03.883Z","1.8.0-dev.20151201":"2015-12-01T07:05:19.574Z","1.8.0-dev.20151202":"2015-12-02T07:06:55.221Z","1.8.0-dev.20151203":"2015-12-03T07:07:00.179Z","1.8.0-dev.20151204":"2015-12-04T07:06:28.563Z","1.8.0-dev.20151210":"2015-12-10T00:30:54.725Z","1.8.0-dev.20151211":"2015-12-11T07:06:43.412Z","1.8.0-dev.20151212":"2015-12-12T07:05:25.268Z","1.8.0-dev.20151213":"2015-12-13T07:07:32.142Z","1.8.0-dev.20151214":"2015-12-14T07:05:21.199Z","1.7.5":"2015-12-14T21:28:05.585Z","1.8.0-dev.20151215":"2015-12-15T07:05:27.936Z","1.8.0-dev.20151216":"2015-12-16T07:08:48.842Z","1.8.0-dev.20151217":"2015-12-17T07:05:18.943Z","1.8.0-dev.20151218":"2015-12-18T07:05:22.937Z","1.8.0-dev.20151219":"2015-12-19T07:05:35.407Z","1.8.0-dev.20151220":"2015-12-20T07:05:24.889Z","1.8.0-dev.20151221":"2015-12-21T07:05:27.660Z","1.8.0-dev.20151222":"2015-12-22T07:05:29.630Z","1.8.0-dev.20151223":"2015-12-23T07:05:29.712Z","1.8.0-dev.20151224":"2015-12-24T07:05:27.984Z","1.8.0-dev.20151225":"2015-12-25T07:05:27.509Z","1.8.0-dev.20151226":"2015-12-26T07:05:23.948Z","1.8.0-dev.20151227":"2015-12-27T07:05:29.032Z","1.8.0-dev.20151228":"2015-12-28T07:05:22.288Z","1.8.0-dev.20151229":"2015-12-29T07:05:28.211Z","1.8.0-dev.20151230":"2015-12-30T07:05:52.479Z","1.8.0-dev.20151231":"2015-12-31T07:05:38.116Z","1.8.0-dev.20160101":"2016-01-01T07:05:43.912Z","1.8.0-dev.20160102":"2016-01-02T07:05:29.372Z","1.8.0-dev.20160103":"2016-01-03T07:05:24.307Z","1.8.0-dev.20160104":"2016-01-04T07:05:27.934Z","1.8.0-dev.20160105":"2016-01-05T07:05:43.129Z","1.8.0-dev.20160106":"2016-01-06T07:05:39.079Z","1.8.0-dev.20160107":"2016-01-07T07:05:33.413Z","1.8.0-dev.20160108":"2016-01-08T07:05:39.111Z","1.8.0-dev.20160109":"2016-01-09T07:05:31.102Z","1.8.0-dev.20160110":"2016-01-10T07:05:32.151Z","1.8.0-dev.20160111":"2016-01-11T07:05:35.365Z","1.8.0-dev.20160112":"2016-01-12T07:05:55.664Z","1.8.0-dev.20160113":"2016-01-13T07:05:48.663Z","1.8.0-dev.20160114":"2016-01-14T07:07:42.963Z","1.8.0-dev.20160115":"2016-01-15T19:40:53.935Z","1.8.0-dev.20160116":"2016-01-16T07:05:53.106Z","1.8.0-dev.20160117":"2016-01-17T07:07:59.855Z","1.8.0-dev.20160118":"2016-01-18T07:06:36.002Z","1.8.0-dev.20160119":"2016-01-19T07:06:14.428Z","1.8.0-dev.20160120":"2016-01-20T07:07:01.890Z","1.8.0-dev.20160121":"2016-01-21T07:08:37.624Z","1.8.0-dev.20160122":"2016-01-22T07:07:09.155Z","1.8.0-dev.20160123":"2016-01-23T07:06:27.859Z","1.8.0-dev.20160124":"2016-01-24T07:05:59.459Z","1.8.0-dev.20160125":"2016-01-25T07:05:47.428Z","1.9.0-dev.20160126":"2016-01-26T07:07:54.592Z","1.9.0-dev.20160127":"2016-01-27T07:04:34.609Z","1.9.0-dev.20160128":"2016-01-28T07:07:15.846Z","1.8.0":"2016-01-28T19:54:42.196Z","1.9.0-dev.20160129":"2016-01-29T07:08:10.789Z","1.9.0-dev.20160130":"2016-01-30T07:08:13.370Z","1.9.0-dev.20160131":"2016-01-31T07:07:48.511Z","1.9.0-dev.20160201":"2016-02-01T07:06:22.739Z","1.9.0-dev.20160202":"2016-02-02T07:08:03.258Z","1.9.0-dev.20160203":"2016-02-03T07:07:57.089Z","1.9.0-dev.20160204":"2016-02-04T07:08:20.098Z","1.9.0-dev.20160205":"2016-02-05T07:07:55.029Z","1.9.0-dev.20160206":"2016-02-06T07:07:55.544Z","1.9.0-dev.20160207":"2016-02-07T07:08:19.378Z","1.9.0-dev.20160208":"2016-02-08T07:08:02.631Z","1.9.0-dev.20160209":"2016-02-09T07:07:50.348Z","1.9.0-dev.20160210":"2016-02-10T07:08:29.962Z","1.9.0-dev.20160211":"2016-02-11T07:08:05.074Z","1.9.0-dev.20160212":"2016-02-12T07:08:09.345Z","1.9.0-dev.20160213":"2016-02-13T07:08:02.969Z","1.9.0-dev.20160214":"2016-02-14T07:06:24.919Z","1.9.0-dev.20160215":"2016-02-15T07:05:59.542Z","1.9.0-dev.20160216":"2016-02-16T07:06:06.356Z","1.9.0-dev.20160217":"2016-02-17T07:11:03.194Z","1.9.0-dev.20160218":"2016-02-18T07:08:39.948Z","1.9.0-dev.20160219":"2016-02-19T07:05:55.146Z","1.9.0-dev.20160220":"2016-02-20T07:06:09.413Z","1.9.0-dev.20160221":"2016-02-21T07:06:02.807Z","1.9.0-dev.20160222":"2016-02-22T07:06:12.223Z","1.8.2":"2016-02-22T22:32:49.511Z","1.9.0-dev.20160223":"2016-02-23T07:08:33.371Z","1.9.0-dev.20160224":"2016-02-24T07:06:02.930Z","1.9.0-dev.20160225":"2016-02-25T07:06:00.111Z","1.9.0-dev.20160226":"2016-02-26T07:06:02.731Z","1.9.0-dev.20160227":"2016-02-27T07:06:03.609Z","1.9.0-dev.20160228":"2016-02-28T07:06:04.634Z","1.9.0-dev.20160229":"2016-02-29T07:06:11.649Z","1.9.0-dev.20160301":"2016-03-01T07:06:14.736Z","1.8.5":"2016-03-01T23:05:59.319Z","1.8.6":"2016-03-02T01:13:10.378Z","1.8.7":"2016-03-02T01:28:29.781Z","1.9.0-dev.20160302":"2016-03-02T07:06:20.469Z","1.9.0-dev.20160302.1":"2016-03-02T21:34:31.101Z","1.9.0-dev.20160303":"2016-03-03T07:06:12.748Z","1.9.0-dev.20160304":"2016-03-04T07:06:05.757Z","1.9.0-dev.20160305":"2016-03-05T07:06:11.843Z","1.9.0-dev.20160306":"2016-03-06T07:06:22.657Z","1.9.0-dev.20160307":"2016-03-07T07:06:18.448Z","1.9.0-dev.20160308":"2016-03-08T07:06:19.818Z","1.9.0-dev.20160309":"2016-03-09T07:06:16.294Z","1.9.0-dev.20160310":"2016-03-10T07:06:21.441Z","1.9.0-dev.20160311":"2016-03-11T07:06:28.769Z","1.9.0-dev.20160312":"2016-03-12T07:06:37.935Z","1.9.0-dev.20160313":"2016-03-13T07:06:24.435Z","1.9.0-dev.20160315":"2016-03-15T03:45:05.567Z","1.9.0-dev.20160316":"2016-03-16T06:08:07.615Z","1.8.9":"2016-03-16T23:02:54.985Z","1.9.0-dev.20160317":"2016-03-17T06:06:15.341Z","1.9.0-dev.20160318":"2016-03-18T06:06:38.409Z","1.9.0-dev.20160319":"2016-03-19T06:06:28.129Z","1.9.0-dev.20160320":"2016-03-20T06:06:13.352Z","1.9.0-dev.20160321":"2016-03-21T06:06:25.758Z","1.9.0-dev.20160322":"2016-03-22T06:06:19.294Z","1.9.0-dev.20160323":"2016-03-23T06:06:22.991Z","1.9.0-dev.20160324":"2016-03-24T06:06:26.923Z","1.9.0-dev.20160325":"2016-03-25T06:06:26.535Z","1.9.0-dev.20160326":"2016-03-26T06:06:26.805Z","1.9.0-dev.20160327":"2016-03-27T06:06:23.953Z","1.9.0-dev.20160328":"2016-03-28T06:07:32.491Z","1.9.0-dev.20160329":"2016-03-29T06:06:24.210Z","1.9.0-dev.20160330":"2016-03-30T06:06:24.401Z","1.9.0-dev.20160331":"2016-03-31T06:08:43.725Z","1.9.0-dev.20160401":"2016-04-01T06:06:56.530Z","1.9.0-dev.20160402":"2016-04-02T06:06:51.594Z","1.9.0-dev.20160403":"2016-04-03T06:06:46.636Z","1.9.0-dev.20160404":"2016-04-04T06:06:36.745Z","1.9.0-dev.20160405":"2016-04-05T06:08:57.481Z","1.9.0-dev.20160406":"2016-04-06T06:07:02.928Z","1.9.0-dev.20160407":"2016-04-07T06:08:52.195Z","1.9.0-dev.20160408":"2016-04-08T06:08:32.547Z","1.9.0-dev.20160409":"2016-04-09T06:08:33.121Z","1.9.0-dev.20160411":"2016-04-11T17:29:31.928Z","1.9.0-dev.20160412":"2016-04-12T06:06:51.200Z","1.8.10":"2016-04-12T20:42:20.435Z","1.9.0-dev.20160413":"2016-04-13T06:06:55.617Z","1.9.0-dev.20160414":"2016-04-14T06:07:14.232Z","1.9.0-dev.20160415":"2016-04-15T06:07:01.563Z","1.9.0-dev.20160416":"2016-04-16T06:06:56.888Z","1.9.0-dev.20160417":"2016-04-17T06:06:59.264Z","1.9.0-dev.20160418":"2016-04-18T06:06:54.929Z","1.9.0-dev.20160419":"2016-04-19T06:07:01.610Z","1.9.0-dev.20160420":"2016-04-20T06:07:01.916Z","1.9.0-dev.20160421":"2016-04-21T06:08:48.224Z","1.9.0-dev.20160422":"2016-04-22T06:06:52.196Z","1.9.0-dev.20160423":"2016-04-23T06:07:04.237Z","1.9.0-dev.20160424":"2016-04-24T06:06:53.078Z","1.9.0-dev.20160425":"2016-04-25T06:06:50.020Z","1.9.0-dev.20160426":"2016-04-26T06:06:55.231Z","1.9.0-dev.20160427":"2016-04-27T18:08:53.249Z","1.9.0-dev.20160428":"2016-04-28T17:15:27.518Z","1.9.0":"2016-04-28T20:04:35.616Z","1.9.0-dev.20160428-1.0":"2016-04-28T21:40:32.410Z","1.9.0-dev.20160429":"2016-04-29T06:07:51.943Z","1.9.0-dev.20160430":"2016-04-30T06:07:50.671Z","1.9.0-dev.20160501":"2016-05-01T06:07:47.937Z","1.9.0-dev.20160502":"2016-05-02T06:07:48.589Z","1.9.0-dev.20160503":"2016-05-03T06:08:00.249Z","1.9.0-dev.20160504":"2016-05-04T06:07:40.404Z","1.9.0-dev.20160505":"2016-05-05T06:07:47.658Z","1.9.0-dev.20160506":"2016-05-06T06:07:56.280Z","1.9.0-dev.20160507":"2016-05-07T06:08:06.739Z","1.9.0-dev.20160508":"2016-05-08T06:07:49.454Z","1.9.0-dev.20160509":"2016-05-09T06:07:38.665Z","1.9.0-dev.20160510":"2016-05-10T06:08:35.657Z","1.9.0-dev.20160511":"2016-05-11T06:07:52.558Z","1.9.0-dev.20160512":"2016-05-12T06:08:02.106Z","1.9.0-dev.20160513":"2016-05-13T06:07:53.584Z","1.9.0-dev.20160514":"2016-05-14T06:07:40.576Z","1.9.0-dev.20160515":"2016-05-15T06:07:50.047Z","1.9.0-dev.20160516":"2016-05-16T06:07:51.754Z","1.9.0-dev.20160517-1.0":"2016-05-17T06:07:48.045Z","1.9.0-dev.20160518-1.0":"2016-05-18T06:07:47.068Z","1.9.0-dev.20160519-1.0":"2016-05-19T06:08:34.810Z","1.9.0-dev.20160520-1.0":"2016-05-20T06:07:54.781Z","1.9.0-dev.20160521-1.0":"2016-05-21T06:07:46.945Z","1.9.0-dev.20160522-1.0":"2016-05-22T06:07:31.616Z","1.9.0-dev.20160523-1.0":"2016-05-23T06:07:23.728Z","1.9.0-dev.20160524-1.0":"2016-05-24T06:08:31.542Z","1.9.0-dev.20160525-1.0":"2016-05-25T06:07:29.458Z","1.9.0-dev.20160526-1.0":"2016-05-26T06:08:37.836Z","1.9.0-dev.20160527-1.0":"2016-05-27T06:08:12.867Z","1.9.0-dev.20160528-1.0":"2016-05-28T06:08:06.966Z","1.9.0-dev.20160529-1.0":"2016-05-29T06:08:08.411Z","1.9.0-dev.20160530-1.0":"2016-05-30T06:07:46.367Z","1.9.0-dev.20160531-1.0":"2016-05-31T06:07:52.978Z","1.9.0-dev.20160601-1.0":"2016-06-01T06:08:08.169Z","1.9.0-dev.20160602-1.0":"2016-06-02T06:08:19.759Z","1.9.0-dev.20160603-1.0":"2016-06-03T06:08:17.710Z","1.9.0-dev.20160604-1.0":"2016-06-04T06:08:04.866Z","1.9.0-dev.20160605-1.0":"2016-06-05T06:08:14.375Z","1.9.0-dev.20160606-1.0":"2016-06-06T06:08:11.469Z","1.9.0-dev.20160607-1.0":"2016-06-07T06:08:22.732Z","1.9.0-dev.20160608-1.0":"2016-06-08T06:08:34.160Z","1.9.0-dev.20160609-1.0":"2016-06-09T06:08:03.757Z","1.9.0-dev.20160610-1.0":"2016-06-10T06:08:25.492Z","1.9.0-dev.20160611-1.0":"2016-06-11T06:08:28.564Z","1.9.0-dev.20160612-1.0":"2016-06-12T06:08:31.883Z","1.9.0-dev.20160613-1.0":"2016-06-13T06:07:49.331Z","1.9.0-dev.20160614-1.0":"2016-06-14T06:08:01.615Z","1.9.0-dev.20160615-1.0":"2016-06-15T06:08:12.196Z","1.9.0-dev.20160616-1.0":"2016-06-16T06:08:01.381Z","1.9.0-dev.20160617-1.0":"2016-06-17T06:08:42.378Z","1.9.0-dev.20160618-1.0":"2016-06-18T06:08:01.671Z","1.9.0-dev.20160619-1.0":"2016-06-19T06:08:18.493Z","1.9.0-dev.20160620-1.0":"2016-06-20T06:08:12.267Z","1.9.0-dev.20160622-1.0":"2016-06-22T06:07:50.499Z","1.9.0-dev.20160623-1.0":"2016-06-23T06:07:57.189Z","1.9.0-dev.20160624-1.0":"2016-06-24T06:08:30.547Z","1.9.0-dev.20160625-1.0":"2016-06-25T06:08:33.203Z","1.9.0-dev.20160626-1.0":"2016-06-26T06:08:41.040Z","1.9.0-dev.20160627-1.0":"2016-06-27T06:08:35.821Z","2.0.0-dev.20160628":"2016-06-28T06:08:41.426Z","2.0.0-dev.20160629":"2016-06-29T06:08:48.565Z","2.0.0-dev.20160630":"2016-06-30T06:08:41.723Z","2.0.0-dev.20160701":"2016-07-01T06:09:10.715Z","2.0.0-dev.20160702":"2016-07-02T06:08:50.107Z","2.0.0-dev.20160703":"2016-07-03T06:08:37.440Z","2.0.0-dev.20160704":"2016-07-04T06:08:38.070Z","2.0.0-dev.20160705":"2016-07-05T06:08:49.371Z","2.0.0-dev.20160706":"2016-07-06T06:09:44.775Z","2.0.0-dev.20160707":"2016-07-07T06:09:22.161Z","2.0.0-dev.20160711":"2016-07-11T14:44:11.612Z","2.0.0":"2016-07-11T16:13:28.984Z","2.1.0-dev.20160712":"2016-07-12T06:09:07.330Z","2.1.0-dev.20160713":"2016-07-13T06:09:05.855Z","2.1.0-dev.20160714":"2016-07-14T06:08:55.745Z","2.1.0-dev.20160715":"2016-07-15T06:08:56.919Z","2.1.0-dev.20160716":"2016-07-16T06:08:54.221Z","2.1.0-dev.20160717":"2016-07-17T06:09:03.689Z","2.1.0-dev.20160718":"2016-07-18T06:09:21.052Z","2.1.0-dev.20160719":"2016-07-19T06:09:05.741Z","2.1.0-dev.20160720":"2016-07-20T06:09:05.125Z","2.1.0-dev.20160721":"2016-07-21T06:09:39.053Z","2.1.0-dev.20160722":"2016-07-22T06:08:53.183Z","2.1.0-dev.20160723":"2016-07-23T06:08:44.424Z","2.1.0-dev.20160724":"2016-07-24T06:08:41.577Z","2.1.0-dev.20160725":"2016-07-25T06:08:31.729Z","2.1.0-dev.20160726":"2016-07-26T06:08:46.174Z","2.1.0-dev.20160727":"2016-07-27T06:08:53.549Z","2.1.0-dev.20160728":"2016-07-28T06:08:39.650Z","2.1.0-dev.20160729":"2016-07-29T06:09:05.634Z","2.1.0-dev.20160730":"2016-07-30T06:09:02.848Z","2.1.0-dev.20160731":"2016-07-31T06:08:36.072Z","2.1.0-dev.20160801":"2016-08-01T06:08:35.188Z","2.1.0-dev.20160802":"2016-08-02T06:09:11.039Z","2.1.0-dev.20160803":"2016-08-03T06:08:57.659Z","2.1.0-dev.20160804":"2016-08-04T06:09:01.772Z","2.1.0-dev.20160805":"2016-08-05T06:08:55.590Z","2.1.0-dev.20160806":"2016-08-06T06:08:58.872Z","2.1.0-dev.20160807":"2016-08-07T06:08:54.633Z","2.1.0-dev.20160808":"2016-08-08T06:08:49.531Z","2.1.0-dev.20160809":"2016-08-09T06:09:27.017Z","2.1.0-dev.20160810":"2016-08-10T06:09:20.587Z","2.1.0-dev.20160811":"2016-08-11T06:09:22.072Z","2.1.0-dev.20160812":"2016-08-12T06:10:12.609Z","2.1.0-dev.20160813":"2016-08-13T06:07:54.313Z","2.1.0-dev.20160814":"2016-08-14T06:07:49.373Z","2.1.0-dev.20160815":"2016-08-15T06:07:54.365Z","2.1.0-dev.20160816":"2016-08-16T06:07:19.375Z","2.1.0-dev.20160817":"2016-08-17T06:07:26.330Z","2.1.0-dev.20160818":"2016-08-18T06:06:58.037Z","2.1.0-dev.20160819":"2016-08-19T06:06:55.493Z","2.1.0-dev.20160820":"2016-08-20T06:06:56.635Z","2.1.0-dev.20160821":"2016-08-21T06:06:54.140Z","2.1.0-dev.20160822":"2016-08-22T06:06:45.830Z","2.1.0-dev.20160823":"2016-08-23T06:06:58.383Z","2.1.0-dev.20160824":"2016-08-24T06:07:06.587Z","2.1.0-dev.20160825":"2016-08-25T06:07:04.007Z","2.1.0-dev.20160826":"2016-08-26T06:07:11.577Z","2.1.0-dev.20160827":"2016-08-27T06:07:03.530Z","2.1.0-dev.20160828":"2016-08-28T06:07:00.848Z","2.1.0-dev.20160829":"2016-08-29T06:07:17.724Z","2.1.0-dev.20160830":"2016-08-30T06:06:35.807Z","2.0.2":"2016-08-30T16:06:35.491Z","2.1.0-dev.20160831":"2016-08-31T06:06:58.707Z","2.1.0-dev.20160901":"2016-09-01T06:06:52.716Z","2.1.0-dev.20160902":"2016-09-02T06:07:09.194Z","2.1.0-dev.20160903":"2016-09-03T06:11:00.557Z","2.1.0-dev.20160904":"2016-09-04T06:10:26.176Z","2.1.0-dev.20160905":"2016-09-05T06:10:28.917Z","2.1.0-dev.20160906":"2016-09-06T06:11:44.175Z","2.1.0-dev.20160907":"2016-09-07T06:07:27.247Z","2.1.0-dev.20160908":"2016-09-08T06:07:32.968Z","2.1.0-dev.20160909":"2016-09-09T06:07:34.141Z","2.1.0-dev.20160910":"2016-09-10T06:07:33.320Z","2.1.0-dev.20160911":"2016-09-11T06:07:54.647Z","2.1.0-dev.20160912":"2016-09-12T06:07:14.252Z","2.1.0-dev.20160913":"2016-09-13T06:08:12.365Z","2.1.0-dev.20160914":"2016-09-14T06:08:02.623Z","2.1.0-dev.20160915":"2016-09-15T06:08:02.248Z","2.1.0-dev.20160916":"2016-09-16T06:08:08.516Z","2.1.0-dev.20160917":"2016-09-17T06:08:41.701Z","2.1.0-dev.20160918":"2016-09-18T06:08:23.963Z","2.1.0-dev.20160919":"2016-09-19T06:08:41.567Z","2.1.0-dev.20160920":"2016-09-20T18:42:55.938Z","2.1.0-dev.20160921":"2016-09-21T06:07:55.459Z","2.1.0-dev.20160922":"2016-09-22T06:08:20.814Z","2.0.3":"2016-09-22T16:00:05.876Z","2.1.0-dev.20160923":"2016-09-23T06:07:58.485Z","2.1.0-dev.20160924":"2016-09-24T06:07:53.193Z","2.1.0-dev.20160925":"2016-09-25T06:08:17.444Z","2.1.0-dev.20160926":"2016-09-26T06:08:16.284Z","2.1.0-dev.20160927":"2016-09-27T06:08:11.592Z","2.1.0-dev.20160928":"2016-09-28T06:08:16.465Z","2.1.0-dev.20160929":"2016-09-29T06:08:05.014Z","2.1.0-dev.20160930":"2016-09-30T06:08:19.704Z","2.1.0-dev.20161001":"2016-10-01T06:08:48.232Z","2.1.0-dev.20161002":"2016-10-02T06:08:39.879Z","2.1.0-dev.20161003":"2016-10-03T06:08:22.004Z","2.1.0-dev.20161004":"2016-10-04T06:08:46.438Z","2.1.0-dev.20161005":"2016-10-05T06:08:47.490Z","2.1.0-dev.20161006":"2016-10-06T06:09:00.143Z","2.1.0-dev.20161007":"2016-10-07T06:08:49.029Z","2.0.6-insiders.20161007":"2016-10-07T23:46:54.185Z","2.1.0-dev.20161008":"2016-10-08T06:09:24.514Z","2.1.0-dev.20161009":"2016-10-09T06:08:32.597Z","2.1.0-dev.20161010":"2016-10-10T06:08:25.914Z","2.1.0-dev.20161011":"2016-10-11T06:08:42.773Z","2.1.0-dev.20161012":"2016-10-12T06:08:48.095Z","2.0.6-insiders.20161012":"2016-10-13T01:23:03.390Z","2.1.0-dev.20161013":"2016-10-13T06:09:00.224Z","2.1.0-dev.20161014":"2016-10-14T06:08:42.896Z","2.0.6-insiders.20161014":"2016-10-14T19:11:18.013Z","2.1.0-dev.20161015":"2016-10-15T06:09:01.821Z","2.1.0-dev.20161016":"2016-10-16T06:08:39.973Z","2.1.0-dev.20161017":"2016-10-17T06:09:02.878Z","2.0.6-insiders.20161017":"2016-10-18T01:35:18.968Z","2.1.0-dev.20161018":"2016-10-18T06:08:46.972Z","2.1.0-dev.20161019":"2016-10-19T06:08:59.487Z","2.1.0-dev.20161020":"2016-10-20T06:09:20.402Z","2.1.0-dev.20161021":"2016-10-21T06:08:48.885Z","2.1.0-dev.20161022":"2016-10-22T06:08:29.531Z","2.1.0-dev.20161023":"2016-10-23T06:09:07.636Z","2.1.0-dev.20161024":"2016-10-24T06:08:58.861Z","2.1.0-dev.20161025":"2016-10-25T06:09:13.017Z","2.0.6":"2016-10-25T17:53:41.893Z","2.1.0-dev.20161026":"2016-10-26T06:09:42.599Z","2.1.0-dev.20161027":"2016-10-27T06:08:56.514Z","2.1.0-dev.20161028":"2016-10-28T06:08:49.501Z","2.1.0-dev.20161029":"2016-10-29T06:08:59.810Z","2.1.0-dev.20161030":"2016-10-30T06:09:11.132Z","2.1.0-dev.20161031":"2016-10-31T06:08:47.074Z","2.1.0-dev.20161101":"2016-11-01T06:08:57.307Z","2.1.0-dev.20161102":"2016-11-02T06:08:45.699Z","2.1.0-dev.20161103":"2016-11-03T06:09:00.473Z","2.0.7":"2016-11-03T22:04:47.914Z","2.1.0-dev.20161104":"2016-11-04T06:09:19.231Z","2.1.0-dev.20161105":"2016-11-05T06:09:16.650Z","2.1.0-dev.20161106":"2016-11-06T06:09:03.420Z","2.1.0-dev.20161107":"2016-11-07T07:08:47.944Z","2.0.8":"2016-11-08T01:30:18.279Z","2.1.0-dev.20161108":"2016-11-08T07:09:02.046Z","2.1.1":"2016-11-08T17:31:39.827Z","2.1.0-dev.20161109":"2016-11-09T07:09:28.354Z","2.1.0-dev.20161110":"2016-11-10T07:08:50.401Z","2.0.9":"2016-11-11T01:22:44.058Z","2.2.0-dev.20161111":"2016-11-11T07:09:04.938Z","2.2.0-dev.20161112":"2016-11-12T07:09:05.107Z","2.2.0-dev.20161113":"2016-11-13T07:09:01.074Z","2.2.0-dev.20161114":"2016-11-14T07:08:38.122Z","2.2.0-dev.20161115":"2016-11-15T07:08:43.911Z","2.0.10":"2016-11-15T23:07:36.457Z","2.2.0-dev.20161116":"2016-11-16T07:09:14.062Z","2.2.0-dev.20161117":"2016-11-17T07:12:54.532Z","2.2.0-dev.20161118":"2016-11-18T07:12:16.276Z","2.2.0-dev.20161120":"2016-11-20T07:12:57.359Z","2.2.0-dev.20161121":"2016-11-21T07:13:12.035Z","2.2.0-dev.20161122":"2016-11-22T07:12:40.037Z","2.2.0-dev.20161123":"2016-11-23T07:13:32.387Z","2.2.0-dev.20161124":"2016-11-24T07:13:07.746Z","2.2.0-dev.20161125":"2016-11-25T07:12:56.846Z","2.2.0-dev.20161126":"2016-11-26T07:13:39.020Z","2.2.0-dev.20161127":"2016-11-27T07:13:26.750Z","2.2.0-dev.20161128":"2016-11-28T07:13:07.789Z","2.2.0-dev.20161129":"2016-11-29T07:12:50.057Z","2.1.3-insiders.20161130":"2016-11-30T01:30:43.213Z","2.2.0-dev.20161130":"2016-11-30T07:12:55.742Z","2.2.0-dev.20161201":"2016-12-01T07:12:00.396Z","2.1.4-insiders.20161201":"2016-12-01T20:48:51.244Z","2.2.0-dev.20161202":"2016-12-02T07:12:22.161Z","2.2.0-dev.20161203":"2016-12-03T07:12:22.667Z","2.2.0-dev.20161204":"2016-12-04T07:12:29.978Z","2.2.0-dev.20161205":"2016-12-05T07:12:38.562Z","2.1.4-insiders.20161206":"2016-12-06T02:35:19.284Z","2.2.0-dev.20161206":"2016-12-06T07:12:37.727Z","2.2.0-dev.20161207":"2016-12-07T07:13:15.827Z","2.1.4":"2016-12-07T17:00:54.312Z","2.2.0-dev.20161208":"2016-12-08T07:13:24.357Z","2.2.0-dev.20161209":"2016-12-09T07:13:04.362Z","2.2.0-dev.20161210":"2016-12-10T07:12:45.254Z","2.2.0-dev.20161211":"2016-12-11T07:12:46.190Z","2.2.0-dev.20161212":"2016-12-12T07:12:46.793Z","2.2.0-dev.20161213":"2016-12-13T07:12:30.949Z","2.1.5-insiders.20161213":"2016-12-13T23:42:57.760Z","2.2.0-dev.20161214":"2016-12-14T07:13:47.524Z","2.2.0-dev.20161215":"2016-12-15T07:13:15.812Z","2.2.0-dev.20161216":"2016-12-16T07:13:41.900Z","2.2.0-dev.20161217":"2016-12-17T07:12:06.965Z","2.2.0-dev.20161218":"2016-12-18T07:12:56.059Z","2.2.0-dev.20161219":"2016-12-19T07:13:02.213Z","2.2.0-dev.20161220":"2016-12-20T07:12:36.682Z","2.1.5-insiders.20161220":"2016-12-21T00:56:50.767Z","2.2.0-dev.20161221":"2016-12-21T07:13:36.632Z","2.2.0-dev.20161222":"2016-12-22T07:13:12.342Z","2.2.0-dev.20161223":"2016-12-23T07:14:25.774Z","2.2.0-dev.20161224":"2016-12-24T07:13:52.763Z","2.2.0-dev.20161225":"2016-12-25T07:14:19.945Z","2.2.0-dev.20161226":"2016-12-26T07:13:13.756Z","2.2.0-dev.20161227":"2016-12-27T07:13:06.112Z","2.2.0-dev.20161228":"2016-12-28T07:13:59.554Z","2.2.0-dev.20161229":"2016-12-29T07:12:25.333Z","2.1.5-insiders.20161229":"2016-12-29T20:29:04.164Z","2.2.0-dev.20161230":"2016-12-30T07:13:31.184Z","2.2.0-dev.20161231":"2016-12-31T07:12:51.025Z","2.2.0-dev.20170101":"2017-01-01T07:13:15.376Z","2.2.0-dev.20170102":"2017-01-02T07:13:16.469Z","2.2.0-dev.20170103":"2017-01-03T07:13:05.223Z","2.2.0-dev.20170104":"2017-01-04T07:12:53.694Z","2.2.0-dev.20170105":"2017-01-05T07:12:46.601Z","2.2.0-dev.20170106":"2017-01-06T07:12:01.339Z","2.2.0-dev.20170107":"2017-01-07T07:13:41.638Z","2.2.0-dev.20170108":"2017-01-08T07:13:59.625Z","2.2.0-dev.20170109":"2017-01-09T07:13:17.699Z","2.2.0-dev.20170110":"2017-01-10T07:14:08.051Z","2.2.0-dev.20170111":"2017-01-11T07:12:58.005Z","2.1.5":"2017-01-12T00:01:07.944Z","2.2.0-dev.20170112":"2017-01-12T07:13:08.678Z","2.2.0-dev.20170113":"2017-01-13T07:12:38.807Z","2.2.0-dev.20170114":"2017-01-14T07:13:00.335Z","2.2.0-dev.20170115":"2017-01-15T07:12:39.502Z","2.2.0-dev.20170116":"2017-01-16T07:12:32.212Z","2.2.0-dev.20170117":"2017-01-17T07:12:42.548Z","2.2.0-dev.20170118":"2017-01-18T07:13:03.111Z","2.2.0-dev.20170119":"2017-01-19T07:11:48.688Z","2.2.0-dev.20170120":"2017-01-20T07:12:22.066Z","2.2.0-dev.20170121":"2017-01-21T07:12:13.314Z","2.2.0-dev.20170122":"2017-01-22T07:12:04.595Z","2.2.0-dev.20170123":"2017-01-23T07:11:40.754Z","2.2.0-dev.20170124":"2017-01-24T07:11:58.661Z","2.2.0-dev.20170125":"2017-01-25T07:12:09.143Z","2.2.0-dev.20170126":"2017-01-26T07:12:19.217Z","2.2.0-dev.20170127":"2017-01-27T07:12:03.391Z","2.2.0-dev.20170128":"2017-01-28T07:12:27.210Z","2.2.0-dev.20170129":"2017-01-29T07:12:05.296Z","2.2.0-dev.20170130":"2017-01-30T07:11:59.117Z","2.2.0-dev.20170131":"2017-01-31T07:12:26.557Z","2.2.0-dev.20170201":"2017-02-01T07:12:08.544Z","2.2.0-dev.20170202":"2017-02-02T07:12:55.884Z","2.2.0":"2017-02-02T18:49:53.553Z","2.2.0-dev.20170203":"2017-02-03T07:13:01.140Z","2.2.0-dev.20170204":"2017-02-04T07:13:01.665Z","2.2.0-dev.20170205":"2017-02-05T07:13:31.608Z","2.2.0-dev.20170206":"2017-02-06T07:12:34.229Z","2.2.0-dev.20170207":"2017-02-07T07:13:20.198Z","2.1.6":"2017-02-08T23:11:44.763Z","2.2.0-dev.20170209":"2017-02-09T07:13:41.549Z","2.2.1-insiders.20170209":"2017-02-09T22:44:05.323Z","2.2.0-dev.20170210":"2017-02-10T07:12:31.061Z","2.2.0-dev.20170211":"2017-02-11T07:13:41.399Z","2.2.0-dev.20170212":"2017-02-12T07:13:37.453Z","2.2.0-dev.20170213":"2017-02-13T07:13:32.238Z","2.2.0-dev.20170214":"2017-02-14T07:14:09.451Z","2.3.0-dev.20170215":"2017-02-15T07:13:43.648Z","2.3.0-dev.20170216":"2017-02-16T07:12:51.805Z","2.2.1-insiders.20170216":"2017-02-16T20:23:28.051Z","2.3.0-dev.20170217":"2017-02-17T07:54:10.955Z","2.2.1-insiders.20170217":"2017-02-18T01:34:19.688Z","2.3.0-dev.20170218":"2017-02-18T07:13:43.186Z","2.3.0-dev.20170219":"2017-02-19T07:12:47.436Z","2.3.0-dev.20170220":"2017-02-20T07:13:29.946Z","2.3.0-dev.20170221":"2017-02-21T07:12:42.487Z","2.3.0-dev.20170222":"2017-02-22T07:12:59.596Z","2.2.1":"2017-02-22T17:18:11.030Z","2.3.0-dev.20170223":"2017-02-23T07:12:23.211Z","2.3.0-dev.20170224":"2017-02-24T07:13:31.116Z","2.3.0-dev.20170225":"2017-02-25T07:13:04.719Z","2.3.0-dev.20170226":"2017-02-26T07:13:11.029Z","2.3.0-dev.20170227":"2017-02-27T07:13:07.181Z","2.3.0-dev.20170228":"2017-02-28T07:13:32.583Z","2.3.0-dev.20170301":"2017-03-01T07:13:01.132Z","2.3.0-dev.20170302":"2017-03-02T07:14:10.818Z","2.2.2-insiders.20170302":"2017-03-02T20:21:34.949Z","2.3.0-dev.20170303":"2017-03-03T07:12:48.501Z","2.3.0-dev.20170306":"2017-03-06T07:12:40.668Z","2.3.0-dev.20170307":"2017-03-07T07:14:30.854Z","2.3.0-dev.20170308":"2017-03-08T07:13:58.601Z","2.3.0-dev.20170310":"2017-03-10T07:13:20.908Z","2.3.0-dev.20170311":"2017-03-11T07:14:25.820Z","2.3.0-dev.20170312":"2017-03-12T07:13:19.679Z","2.3.0-dev.20170313":"2017-03-13T06:13:41.701Z","2.3.0-dev.20170314":"2017-03-14T06:14:19.719Z","2.3.0-dev.20170315":"2017-03-15T06:13:41.325Z","2.3.0-dev.20170316":"2017-03-16T06:14:08.434Z","2.3.0-dev.20170317":"2017-03-17T06:15:11.859Z","2.2.2-insiders.20170317":"2017-03-18T00:46:27.655Z","2.3.0-dev.20170318":"2017-03-18T06:14:21.096Z","2.3.0-dev.20170319":"2017-03-19T06:14:33.855Z","2.3.0-dev.20170320":"2017-03-20T06:13:45.838Z","2.3.0-dev.20170321":"2017-03-21T06:14:26.093Z","2.3.0-dev.20170322":"2017-03-22T06:13:48.848Z","2.3.0-dev.20170323":"2017-03-23T06:14:22.199Z","2.3.0-dev.20170324":"2017-03-24T06:12:44.537Z","2.3.0-dev.20170325":"2017-03-25T06:13:15.711Z","2.3.0-dev.20170326":"2017-03-26T06:13:06.834Z","2.3.0-dev.20170327":"2017-03-27T06:13:05.438Z","2.2.2":"2017-03-27T17:54:56.013Z","2.3.0-dev.20170328":"2017-03-28T06:12:43.908Z","2.3.0-dev.20170329":"2017-03-29T06:13:04.802Z","2.3.0-dev.20170330":"2017-03-30T06:13:41.599Z","2.3.0-dev.20170331":"2017-03-31T06:13:37.415Z","2.3.0-dev.20170401":"2017-04-01T06:14:31.594Z","2.3.0-dev.20170402":"2017-04-02T06:13:57.691Z","2.3.0-dev.20170403":"2017-04-03T06:14:54.403Z","2.3.0-dev.20170404":"2017-04-04T06:14:10.081Z","2.3.0-dev.20170405":"2017-04-05T06:14:25.814Z","2.3.0-dev.20170406":"2017-04-06T06:14:22.344Z","2.3.0-dev.20170407":"2017-04-07T06:14:27.935Z","2.3.0":"2017-04-10T16:03:31.897Z","2.3.0-dev.20170411":"2017-04-11T06:14:28.708Z","2.3.0-dev.20170412":"2017-04-12T06:14:08.536Z","2.3.0-dev.20170413":"2017-04-13T06:13:17.961Z","2.3.1-insiders.20170413":"2017-04-13T22:45:02.970Z","2.3.0-dev.20170414":"2017-04-14T06:13:20.124Z","2.3.0-dev.20170415":"2017-04-15T06:13:24.596Z","2.3.0-dev.20170416":"2017-04-16T06:13:22.766Z","2.3.1-insiders.20170416":"2017-04-16T23:47:41.191Z","2.3.0-dev.20170417":"2017-04-17T06:13:38.707Z","2.3.0-dev.20170418":"2017-04-18T06:14:08.235Z","2.3.0-dev.20170419":"2017-04-19T06:13:58.674Z","2.3.0-dev.20170420":"2017-04-20T06:14:55.536Z","2.3.1-insiders.20170420":"2017-04-20T22:33:55.218Z","2.3.0-dev.20170421":"2017-04-21T06:14:38.913Z","2.3.0-dev.20170422":"2017-04-22T06:12:55.339Z","2.3.0-dev.20170423":"2017-04-23T06:14:01.452Z","2.3.0-dev.20170424":"2017-04-24T06:13:35.346Z","2.3.0-dev.20170425":"2017-04-25T06:13:51.668Z","2.3.1-insiders.20170425":"2017-04-25T20:18:59.909Z","2.3.1-insiders.20170425.1":"2017-04-25T22:57:00.449Z","2.3.0-dev.20170426":"2017-04-26T06:13:40.680Z","2.4.0-dev.20170427":"2017-04-27T06:14:22.018Z","2.3.1":"2017-04-27T16:02:10.065Z","2.4.0-dev.20170428":"2017-04-28T06:13:35.983Z","2.3.2":"2017-04-28T22:20:03.047Z","2.4.0-dev.20170429":"2017-04-29T06:13:55.980Z","2.4.0-dev.20170430":"2017-04-30T06:13:54.592Z","2.4.0-dev.20170501":"2017-05-01T06:14:18.765Z","2.4.0-dev.20170502":"2017-05-02T06:14:09.766Z","2.4.0-dev.20170503":"2017-05-03T06:13:37.745Z","2.4.0-dev.20170504":"2017-05-04T06:14:08.806Z","2.4.0-dev.20170505":"2017-05-05T06:14:05.367Z","2.4.0-dev.20170506":"2017-05-06T06:14:25.895Z","2.4.0-dev.20170507":"2017-05-07T06:14:00.215Z","2.4.0-dev.20170508":"2017-05-08T06:13:47.628Z","2.4.0-dev.20170509":"2017-05-09T06:13:52.517Z","2.4.0-dev.20170510":"2017-05-10T06:14:49.837Z","2.4.0-dev.20170511":"2017-05-11T06:14:07.337Z","2.4.0-dev.20170512":"2017-05-12T06:14:44.563Z","2.3.3-insiders.20170512":"2017-05-12T20:04:25.655Z","2.4.0-dev.20170513":"2017-05-13T06:13:57.463Z","2.4.0-dev.20170514":"2017-05-14T06:14:28.492Z","2.4.0-dev.20170515":"2017-05-15T06:13:38.318Z","2.4.0-dev.20170516":"2017-05-16T06:16:09.603Z","2.4.0-dev.20170517":"2017-05-17T06:14:49.252Z","2.4.0-dev.20170518":"2017-05-18T06:15:05.344Z","2.4.0-dev.20170519":"2017-05-19T06:13:32.713Z","2.3.3":"2017-05-22T20:48:46.359Z","2.4.0-dev.20170523":"2017-05-23T06:14:32.698Z","2.4.0-dev.20170524":"2017-05-24T06:14:19.073Z","2.4.0-dev.20170525":"2017-05-25T06:13:56.395Z","2.4.0-dev.20170526":"2017-05-26T06:14:09.606Z","2.4.0-dev.20170527":"2017-05-27T06:15:36.310Z","2.4.0-dev.20170528":"2017-05-28T06:15:28.827Z","2.4.0-dev.20170529":"2017-05-29T06:14:46.455Z","2.4.0-dev.20170530":"2017-05-30T06:15:10.497Z","2.3.4":"2017-05-30T21:05:49.776Z","2.4.0-dev.20170531":"2017-05-31T06:15:29.539Z","2.4.0-dev.20170601":"2017-06-01T06:14:58.156Z","2.4.0-dev.20170602":"2017-06-02T06:16:46.167Z","2.4.0-dev.20170603":"2017-06-03T06:15:44.613Z","2.4.0-dev.20170604":"2017-06-04T06:15:29.374Z","2.4.0-dev.20170605":"2017-06-05T06:14:59.054Z","2.4.0-dev.20170606":"2017-06-06T06:15:15.474Z","2.4.0-dev.20170607":"2017-06-07T06:14:44.033Z","2.4.0-dev.20170608":"2017-06-08T06:15:12.634Z","2.4.0-dev.20170609":"2017-06-09T06:14:43.458Z","2.4.0-dev.20170610":"2017-06-10T06:11:30.305Z","2.4.0-dev.20170611":"2017-06-11T06:18:05.368Z","2.4.0-dev.20170612":"2017-06-12T06:18:09.048Z","2.4.0":"2017-06-12T19:27:16.086Z","2.5.0-dev.20170613":"2017-06-13T06:16:47.600Z","2.5.0-dev.20170614":"2017-06-14T06:16:51.421Z","2.4.1-insiders.20170614":"2017-06-15T00:01:38.405Z","2.5.0-dev.20170615":"2017-06-15T06:14:51.167Z","2.4.1-insiders.20170615":"2017-06-15T23:08:10.301Z","2.5.0-dev.20170616":"2017-06-16T06:12:30.322Z","2.5.0-dev.20170617":"2017-06-17T06:13:30.946Z","2.5.0-dev.20170618":"2017-06-18T06:12:58.898Z","2.5.0-dev.20170619":"2017-06-19T06:12:43.747Z","2.5.0-dev.20170621":"2017-06-21T06:13:50.537Z","2.5.0-dev.20170622":"2017-06-22T06:12:43.791Z","2.5.0-dev.20170623":"2017-06-23T06:13:18.216Z","2.5.0-dev.20170624":"2017-06-24T06:17:28.063Z","2.5.0-dev.20170625":"2017-06-25T06:14:12.843Z","2.5.0-dev.20170626":"2017-06-26T06:12:55.670Z","2.5.0-dev.20170627":"2017-06-27T06:13:19.403Z","2.4.1":"2017-06-27T16:49:04.403Z","2.5.0-dev.20170628":"2017-06-28T06:14:37.688Z","2.5.0-dev.20170629":"2017-06-29T06:13:37.499Z","2.4.1-insiders.20170630":"2017-06-30T21:41:58.616Z","2.4.2-insiders.20170630":"2017-06-30T21:48:21.612Z","2.5.0-dev.20170707":"2017-07-07T18:30:29.375Z","2.5.0-dev.20170712":"2017-07-12T07:29:20.246Z","2.4.2-insiders.20170719":"2017-07-19T21:03:07.444Z","2.4.2":"2017-07-19T21:35:20.219Z","2.5.0-dev.20170719":"2017-07-19T22:40:34.076Z","2.5.0-dev.20170725":"2017-07-25T17:53:15.187Z","2.5.0-dev.20170727":"2017-07-27T17:51:45.767Z","2.5.0-dev.20170731":"2017-07-31T17:06:13.815Z","2.5.0-dev.20170801":"2017-08-01T18:25:10.220Z","2.5.0-dev.20170803":"2017-08-03T17:49:30.194Z","2.5.0-dev.20170807":"2017-08-07T17:12:52.535Z","2.5.0-dev.20170808":"2017-08-08T21:31:06.867Z","2.5.0-dev.20170815":"2017-08-15T17:53:29.481Z","2.5.0-dev.20170816":"2017-08-16T14:43:26.782Z","2.6.0-dev.20170817":"2017-08-17T14:59:16.514Z","2.5.0":"2017-08-17T17:52:57.895Z","2.6.0-dev.20170818":"2017-08-18T14:47:27.772Z","2.5.1":"2017-08-18T18:49:30.374Z","2.5.1-insiders.20170818":"2017-08-18T22:18:46.079Z","2.6.0-dev.20170819":"2017-08-19T14:46:58.923Z","2.5.1-insiders.20170822":"2017-08-22T00:47:43.893Z","2.6.0-dev.20170822":"2017-08-22T14:44:36.379Z","2.6.0-dev.20170823":"2017-08-23T14:58:38.455Z","2.6.0-dev.20170824":"2017-08-24T14:47:10.017Z","2.6.0-dev.20170825":"2017-08-25T14:55:12.306Z","2.5.1-insiders.20170825":"2017-08-25T22:42:44.295Z","2.6.0-dev.20170826":"2017-08-26T14:50:12.350Z","2.6.0-dev.20170829":"2017-08-29T14:57:50.252Z","2.6.0-dev.20170830":"2017-08-30T14:53:45.720Z","2.6.0-dev.20170831":"2017-08-31T14:52:20.068Z","2.5.2":"2017-08-31T16:40:27.647Z","2.6.0-dev.20170901":"2017-09-01T14:53:09.915Z","2.6.0-dev.20170902":"2017-09-02T14:46:16.720Z","2.6.0-dev.20170904":"2017-09-04T14:48:32.968Z","2.6.0-dev.20170906":"2017-09-06T14:55:45.139Z","2.6.0-dev.20170907":"2017-09-07T14:49:46.785Z","2.5.3-insiders.20170908":"2017-09-08T00:06:21.570Z","2.6.0-dev.20170908":"2017-09-08T06:10:44.348Z","2.5.3-insiders.20170909":"2017-09-09T00:50:02.457Z","2.6.0-dev.20170909":"2017-09-09T06:10:44.230Z","2.6.0-dev.20170910":"2017-09-10T06:09:46.958Z","2.6.0-dev.20170912":"2017-09-12T06:10:04.477Z","2.6.0-dev.20170913":"2017-09-13T06:09:10.753Z","2.6.0-dev.20170914":"2017-09-14T06:09:02.209Z","2.6.0-dev.20170915":"2017-09-15T06:10:50.933Z","2.6.0-dev.20170916":"2017-09-16T06:09:34.989Z","2.6.0-dev.20170919":"2017-09-19T06:09:51.112Z","2.5.3-insiders.20170919":"2017-09-19T23:24:44.659Z","2.6.0-dev.20170920":"2017-09-20T06:11:51.702Z","2.6.0-dev.20170921":"2017-09-21T06:13:02.115Z","2.6.0-dev.20170922":"2017-09-22T06:09:14.374Z","2.5.3-insiders.20170922":"2017-09-22T22:07:43.864Z","2.6.0-dev.20170923":"2017-09-23T06:11:03.457Z","2.6.0-dev.20170926":"2017-09-26T06:10:45.615Z","2.5.3":"2017-09-26T21:33:55.700Z","2.6.0-dev.20170927":"2017-09-27T06:12:31.597Z","2.6.0-dev.20170928":"2017-09-28T06:13:00.208Z","2.6.0-dev.20170929":"2017-09-29T06:13:01.724Z","2.6.0-dev.20170930":"2017-09-30T06:18:32.559Z","2.6.0-dev.20171003":"2017-10-03T18:28:36.038Z","2.6.0-dev.20171004":"2017-10-04T06:08:15.138Z","2.6.0-dev.20171005":"2017-10-05T06:08:52.757Z","2.6.0-dev.20171006":"2017-10-06T06:13:28.336Z","2.6.0-dev.20171007":"2017-10-07T06:13:08.548Z","2.6.0-dev.20171010":"2017-10-10T06:14:44.496Z","2.6.0-dev.20171011":"2017-10-11T06:15:09.041Z","2.6.0-dev.20171012":"2017-10-12T06:15:38.674Z","2.6.0-rc":"2017-10-12T19:00:51.092Z","2.6.0-insiders.20171013":"2017-10-13T00:59:20.165Z","2.6.0-dev.20171013":"2017-10-13T06:15:25.326Z","2.6.0-dev.20171014":"2017-10-14T06:16:36.811Z","2.6.0-dev.20171015":"2017-10-15T06:16:25.080Z","2.6.1-insiders.20171016":"2017-10-17T00:37:57.765Z","2.6.0-dev.20171017":"2017-10-17T06:15:57.092Z","2.6.0-dev.20171018":"2017-10-18T06:21:19.705Z","2.6.0-dev.20171019":"2017-10-19T06:16:35.287Z","2.6.1-insiders.20171019":"2017-10-19T23:21:14.917Z","2.7.0-dev.20171020":"2017-10-20T06:15:36.059Z","2.7.0-dev.20171021":"2017-10-21T06:13:50.105Z","2.7.0-dev.20171024":"2017-10-24T06:17:19.732Z","2.7.0-dev.20171025":"2017-10-25T06:16:40.005Z","2.7.0-dev.20171026":"2017-10-26T06:22:14.550Z","2.7.0-dev.20171027":"2017-10-27T06:24:13.608Z","2.7.0-dev.20171028":"2017-10-28T06:23:41.128Z","2.7.0-dev.20171029":"2017-10-29T06:12:38.936Z","2.7.0-dev.20171031":"2017-10-31T06:16:37.489Z","2.6.1":"2017-10-31T16:56:59.235Z","2.7.0-dev.20171101":"2017-11-01T06:16:01.356Z","2.7.0-dev.20171102":"2017-11-02T06:14:47.097Z","2.7.0-dev.20171103":"2017-11-03T06:14:02.708Z","2.7.0-dev.20171104":"2017-11-04T06:16:40.879Z","2.7.0-dev.20171108":"2017-11-08T06:13:21.526Z","2.7.0-dev.20171109":"2017-11-09T06:17:31.010Z","2.7.0-dev.20171110":"2017-11-10T06:18:51.437Z","2.7.0-dev.20171111":"2017-11-11T06:23:15.351Z","2.7.0-dev.20171112":"2017-11-12T06:13:38.752Z","2.7.0-dev.20171114":"2017-11-14T06:28:04.750Z","2.7.0-dev.20171115":"2017-11-15T06:17:41.583Z","2.7.0-dev.20171116":"2017-11-16T06:21:36.599Z","2.7.0-dev.20171117":"2017-11-17T06:26:06.802Z","2.7.0-dev.20171118":"2017-11-18T06:20:19.785Z","2.6.2-insiders.20171120":"2017-11-20T23:16:10.282Z","2.7.0-dev.20171121":"2017-11-21T06:17:47.765Z","2.7.0-dev.20171122":"2017-11-22T06:24:42.135Z","2.7.0-dev.20171123":"2017-11-23T06:24:20.122Z","2.7.0-dev.20171124":"2017-11-24T06:19:13.312Z","2.7.0-dev.20171125":"2017-11-25T06:17:14.437Z","2.7.0-dev.20171126":"2017-11-26T06:16:50.633Z","2.6.2":"2017-11-27T18:17:32.015Z","2.7.0-dev.20171128":"2017-11-28T06:31:02.119Z","2.7.0-dev.20171129":"2017-11-29T06:32:14.383Z","2.7.0-dev.20171130":"2017-11-30T06:18:24.051Z","2.7.0-dev.20171201":"2017-12-01T06:17:05.971Z","2.7.0-dev.20171202":"2017-12-02T06:17:27.084Z","2.7.0-dev.20171203":"2017-12-03T06:16:17.903Z","2.7.0-dev.20171205":"2017-12-05T06:31:40.015Z","2.7.0-dev.20171206":"2017-12-06T06:36:18.023Z","2.7.0-dev.20171207":"2017-12-07T06:38:18.984Z","2.7.0-dev.20171208":"2017-12-08T06:36:35.323Z","2.7.0-dev.20171209":"2017-12-09T06:28:03.239Z","2.7.0-dev.20171212":"2017-12-12T06:17:52.018Z","2.7.0-dev.20171213":"2017-12-13T06:19:24.186Z","2.7.0-dev.20171214":"2017-12-14T06:19:06.733Z","2.7.0-insiders.20171214":"2017-12-14T22:18:57.560Z","2.7.0-dev.20171215":"2017-12-15T06:27:13.059Z","2.7.0-dev.20171216":"2017-12-16T06:26:20.630Z","2.7.0-dev.20171219":"2017-12-19T06:24:16.742Z","2.7.0-dev.20171220":"2017-12-20T06:18:00.240Z","2.7.0-dev.20171221":"2017-12-21T06:24:59.325Z","2.7.0-dev.20171222":"2017-12-22T06:17:36.357Z","2.7.0-dev.20171223":"2017-12-23T06:16:25.426Z","2.7.0-dev.20171224":"2017-12-24T06:16:29.150Z","2.7.0-dev.20171226":"2017-12-26T06:16:44.488Z","2.7.0-dev.20171229":"2017-12-29T06:31:09.114Z","2.7.0-dev.20171230":"2017-12-30T06:25:37.364Z","2.7.0-dev.20180103":"2018-01-03T06:19:24.620Z","2.7.0-dev.20180104":"2018-01-04T06:24:37.692Z","2.7.0-dev.20180105":"2018-01-05T06:17:13.914Z","2.7.0-dev.20180106":"2018-01-06T06:29:38.264Z","2.7.0-dev.20180107":"2018-01-07T06:34:58.234Z","2.7.0-dev.20180108":"2018-01-08T06:26:01.457Z","2.7.0-insiders.20180108":"2018-01-08T07:50:40.385Z","2.7.0-dev.20180109":"2018-01-09T06:34:48.832Z","2.7.0-dev.20180110":"2018-01-10T06:38:45.449Z","2.7.0-dev.20180111":"2018-01-11T06:38:45.154Z","2.7.0-dev.20180112":"2018-01-12T06:35:05.838Z","2.7.0-dev.20180113":"2018-01-13T06:38:15.231Z","2.7.0-dev.20180116":"2018-01-16T06:34:20.522Z","2.7.0-rc":"2018-01-17T18:14:11.258Z","2.7.0-insiders.20180117":"2018-01-17T21:27:40.254Z","2.7.0-dev.20180118":"2018-01-18T06:58:42.359Z","2.7.0-dev.20180119":"2018-01-19T06:45:52.235Z","2.7.0-insider.20180119":"2018-01-19T23:01:36.879Z","2.7.0-insiders.20180119":"2018-01-19T23:04:28.932Z","2.7.0-dev.20180120":"2018-01-20T06:31:19.802Z","2.7.0-dev.20180122":"2018-01-22T06:28:42.601Z","2.7.0-dev.20180123":"2018-01-23T06:31:52.485Z","2.7.0-dev.20180124":"2018-01-24T06:48:46.154Z","2.8.0-dev.20180125":"2018-01-25T06:34:52.540Z","2.8.0-dev.20180126":"2018-01-26T06:34:18.194Z","2.8.0-insiders.20180127":"2018-01-27T01:21:26.703Z","2.8.0-dev.20180127":"2018-01-27T06:31:11.628Z","2.7.1-insiders.20180127":"2018-01-27T20:19:24.767Z","2.8.0-dev.20180130":"2018-01-30T06:32:07.353Z","2.8.0-dev.20180131":"2018-01-31T06:48:17.577Z","2.7.1":"2018-01-31T17:22:12.576Z","2.8.0-dev.20180201":"2018-02-01T06:36:30.057Z","2.8.0-dev.20180202":"2018-02-02T06:40:59.070Z","2.8.0-dev.20180203":"2018-02-03T06:35:34.861Z","2.8.0-dev.20180204":"2018-02-04T06:29:28.754Z","2.8.0-dev.20180206":"2018-02-06T06:39:37.322Z","2.7.2-dev.20180207":"2018-02-08T00:12:11.205Z","2.8.0-dev.20180208":"2018-02-08T06:38:12.151Z","2.8.0-dev.20180209":"2018-02-09T06:37:26.553Z","2.7.2-insiders.20180209":"2018-02-09T23:02:16.205Z","2.8.0-dev.20180210":"2018-02-10T06:39:00.841Z","2.8.0-dev.20180211":"2018-02-11T06:32:20.551Z","2.8.0-dev.20180213":"2018-02-13T06:36:06.584Z","2.8.0-dev.20180214":"2018-02-14T06:35:45.704Z","2.8.0-dev.20180215":"2018-02-15T06:39:44.932Z","2.7.2":"2018-02-15T18:45:13.706Z","2.8.0-dev.20180216":"2018-02-16T06:42:07.605Z","2.8.0-dev.20180217":"2018-02-17T06:36:51.677Z","2.8.0-dev.20180220":"2018-02-20T06:44:20.208Z","2.8.0-dev.20180221":"2018-02-21T06:35:43.193Z","2.8.0-dev.20180222":"2018-02-22T06:39:14.033Z","2.8.0-dev.20180223":"2018-02-23T06:35:11.471Z","2.8.0-dev.20180224":"2018-02-24T06:31:36.443Z","2.8.0-dev.20180227":"2018-02-27T06:41:08.203Z","2.8.0-dev.20180228":"2018-02-28T06:38:00.591Z","2.8.0-dev.20180301":"2018-03-01T06:48:00.889Z","2.8.0-dev.20180302":"2018-03-02T06:36:12.606Z","2.8.0-dev.20180307":"2018-03-07T06:42:28.990Z","2.8.0-dev.20180308":"2018-03-08T06:50:37.501Z","2.8.0-dev.20180314":"2018-03-14T06:38:06.997Z","2.8.0-dev.20180315":"2018-03-15T06:47:04.743Z","2.8.0-rc":"2018-03-15T21:03:11.356Z","2.8.0-insiders.20180315":"2018-03-15T23:53:06.469Z","2.8.0-dev.20180316":"2018-03-16T06:53:44.749Z","2.8.0-dev.20180317":"2018-03-17T06:43:27.536Z","2.8.0-dev.20180318":"2018-03-18T06:32:00.268Z","2.8.0-insiders.20180320":"2018-03-20T03:56:26.581Z","2.8.0-dev.20180320":"2018-03-20T06:35:36.402Z","2.8.0-dev.20180321":"2018-03-21T06:38:00.767Z","2.8.0-dev.20180322":"2018-03-22T06:47:03.868Z","2.9.0-dev.20180323":"2018-03-23T06:40:52.773Z","2.9.0-dev.20180324":"2018-03-24T06:42:21.657Z","2.9.0-dev.20180325":"2018-03-25T06:34:04.170Z","2.9.0-dev.20180327":"2018-03-27T06:32:36.975Z","2.8.1":"2018-03-27T16:20:30.220Z","2.9.0-dev.20180328":"2018-03-28T06:43:53.933Z","2.9.0-dev.20180329":"2018-03-29T06:37:06.735Z","2.9.0-dev.20180330":"2018-03-30T06:29:24.323Z","2.9.0-dev.20180331":"2018-03-31T06:29:08.728Z","2.9.0-dev.20180401":"2018-04-01T06:27:58.806Z","2.9.0-dev.20180402":"2018-04-02T06:36:49.393Z","2.9.0-dev.20180403":"2018-04-03T06:47:06.569Z","2.9.0-dev.20180404":"2018-04-04T06:32:47.909Z","2.9.0-dev.20180405":"2018-04-05T06:31:16.866Z","2.9.0-dev.20180406":"2018-04-06T06:30:05.588Z","2.8.3-insiders.20180407":"2018-04-07T00:25:16.768Z","2.9.0-dev.20180407":"2018-04-07T06:32:12.645Z","2.9.0-dev.20180409":"2018-04-09T06:33:02.954Z","2.9.0-dev.20180410":"2018-04-10T06:40:56.378Z","2.9.0-dev.20180411":"2018-04-11T06:54:38.562Z","2.9.0-dev.20180412":"2018-04-12T06:40:59.911Z","2.9.0-dev.20180414":"2018-04-14T07:24:21.344Z","2.9.0-dev.20180418":"2018-04-18T06:58:26.388Z","2.9.0-dev.20180419":"2018-04-19T06:54:18.268Z","2.8.3":"2018-04-19T21:20:28.904Z","2.9.0-dev.20180420":"2018-04-20T06:41:24.198Z","2.9.0-dev.20180421":"2018-04-21T06:50:15.213Z","2.9.0-dev.20180422":"2018-04-22T06:37:15.308Z","2.9.0-dev.20180424":"2018-04-24T06:37:18.584Z","2.9.0-dev.20180425":"2018-04-25T06:45:38.424Z","2.9.0-dev.20180426":"2018-04-26T07:07:11.058Z","2.9.0-dev.20180427":"2018-04-27T06:47:18.861Z","2.9.0-dev.20180428":"2018-04-28T06:51:53.643Z","2.9.0-dev.20180429":"2018-04-29T06:37:05.052Z","2.9.0-dev.20180430":"2018-04-30T06:40:53.448Z","2.9.0-dev.20180501":"2018-05-01T06:54:04.908Z","2.9.0-dev.20180502":"2018-05-02T06:49:34.934Z","2.9.0-dev.20180503":"2018-05-03T06:46:26.229Z","2.9.0-insiders.20180503":"2018-05-03T19:39:19.877Z","2.9.0-dev.20180505":"2018-05-05T06:53:33.809Z","2.9.0-dev.20180506":"2018-05-06T07:02:18.653Z","2.9.0-dev.20180509":"2018-05-09T22:02:18.593Z","2.9.0-dev.20180510":"2018-05-10T06:11:24.949Z","2.9.0-insiders.20180510":"2018-05-10T18:56:24.639Z","2.9.0-dev.20180511":"2018-05-11T06:11:11.469Z","2.9.0-dev.20180512":"2018-05-12T06:10:58.933Z","2.9.0-dev.20180515":"2018-05-15T06:10:59.941Z","2.9.0-dev.20180516":"2018-05-16T06:10:50.749Z","2.9.0-rc":"2018-05-16T20:32:57.988Z","2.9.1-insiders.20180516":"2018-05-16T23:16:36.911Z","2.9.0-dev.20180518":"2018-05-18T06:11:12.408Z","2.9.0-dev.20180519":"2018-05-19T06:09:52.730Z","2.9.1-insiders.20180521":"2018-05-21T23:27:58.821Z","3.0.0-dev.20180522":"2018-05-22T06:12:13.513Z","2.9.1-insiders.20180523":"2018-05-23T23:56:11.701Z","2.9.1-insiders.20180525":"2018-05-25T01:37:24.380Z","3.0.0-dev.20180526":"2018-05-26T06:11:07.755Z","3.0.0-dev.20180530":"2018-05-30T06:12:05.549Z","2.8.4":"2018-05-30T20:03:54.557Z","3.0.0-dev.20180531":"2018-05-31T06:12:12.247Z","2.9.1":"2018-05-31T16:14:25.828Z","3.0.0-dev.20180601":"2018-06-01T06:12:02.982Z","3.0.0-dev.20180602":"2018-06-02T06:11:42.148Z","3.0.0-dev.20180605":"2018-06-05T06:12:32.420Z","3.0.0-dev.20180606":"2018-06-06T06:12:00.409Z","3.0.0-dev.20180607":"2018-06-07T06:11:00.602Z","3.0.0-dev.20180608":"2018-06-08T06:12:38.939Z","3.0.0-dev.20180609":"2018-06-09T06:12:03.140Z","2.9.2":"2018-06-13T18:35:42.447Z","3.0.0-dev.20180615":"2018-06-15T22:42:28.833Z","3.0.0-dev.20180616":"2018-06-16T06:12:36.163Z","3.0.0-dev.20180619":"2018-06-19T06:12:14.240Z","3.0.0-dev.20180620":"2018-06-20T22:34:31.000Z","3.0.0-dev.20180621":"2018-06-21T06:12:36.691Z","3.0.0-dev.20180622":"2018-06-22T06:14:38.458Z","3.0.0-dev.20180623":"2018-06-23T06:12:19.623Z","3.0.0-dev.20180626":"2018-06-26T06:13:45.458Z","3.0.0-dev.20180628":"2018-06-28T00:18:40.126Z","3.0.0-dev.20180629":"2018-06-29T06:12:09.433Z","3.0.0-dev.20180630":"2018-06-30T06:14:00.132Z","3.0.0-dev.20180703":"2018-07-03T06:13:51.399Z","3.0.0-dev.20180704":"2018-07-04T06:14:45.572Z","3.0.0-dev.20180705":"2018-07-05T06:15:48.812Z","3.0.0-dev.20180706":"2018-07-06T06:12:28.007Z","3.0.0-insiders.20180706":"2018-07-06T21:43:50.329Z","3.0.0-dev.20180707":"2018-07-07T06:12:14.195Z","3.0.0-dev.20180710":"2018-07-10T06:12:34.626Z","3.0.0-dev.20180711":"2018-07-11T06:13:05.125Z","3.0.0-dev.20180712":"2018-07-12T06:13:24.765Z","3.0.0-rc":"2018-07-12T16:56:43.379Z","3.0.1-insiders.20180713":"2018-07-13T16:52:45.648Z","3.1.0-dev.20180717":"2018-07-17T15:22:10.990Z","3.1.0-dev.20180721":"2018-07-21T06:13:29.621Z","3.0.1-insiders.20180723":"2018-07-23T23:57:10.673Z","3.1.0-dev.20180724":"2018-07-24T06:13:16.185Z","3.1.0-dev.20180725":"2018-07-25T06:13:10.043Z","3.1.0-dev.20180726":"2018-07-26T06:12:49.746Z","3.0.1-insiders.20180726":"2018-07-26T18:20:51.679Z","3.1.0-dev.20180727":"2018-07-27T06:12:23.166Z","3.1.0-dev.20180728":"2018-07-28T06:12:15.115Z","3.0.1":"2018-07-30T16:21:13.150Z","3.1.0-dev.20180731":"2018-07-31T06:12:50.700Z","3.1.0-dev.20180801":"2018-08-01T06:13:35.399Z","3.1.0-dev.20180802":"2018-08-02T06:13:30.687Z","3.1.0-dev.20180803":"2018-08-03T06:13:12.918Z","3.1.0-dev.20180804":"2018-08-04T06:13:39.656Z","3.1.0-dev.20180807":"2018-08-07T06:13:34.948Z","3.1.0-dev.20180808":"2018-08-08T06:13:26.342Z","3.1.0-dev.20180809":"2018-08-09T06:13:29.120Z","3.1.0-dev.20180810":"2018-08-10T06:13:14.634Z","3.1.0-dev.20180813":"2018-08-13T19:05:14.347Z","3.1.0-dev.20180817":"2018-08-17T06:13:09.824Z","3.1.0-dev.20180818":"2018-08-18T06:13:07.488Z","3.1.0-dev.20180821":"2018-08-21T06:13:09.351Z","3.1.0-dev.20180822":"2018-08-22T06:13:30.535Z","3.1.0-dev.20180823":"2018-08-23T06:13:47.867Z","3.1.0-dev.20180824":"2018-08-24T06:13:12.780Z","3.1.0-dev.20180825":"2018-08-25T06:13:50.547Z","3.1.0-dev.20180828":"2018-08-28T06:14:08.129Z","3.1.0-dev.20180829":"2018-08-29T06:13:13.245Z","3.0.3":"2018-08-29T21:59:20.079Z","3.0.3-insiders.20180829":"2018-08-29T22:12:50.247Z","3.1.0-dev.20180830":"2018-08-30T06:14:02.311Z","3.1.0-dev.20180831":"2018-08-31T06:14:10.899Z","3.1.0-dev.20180901":"2018-09-01T06:14:13.258Z","3.1.0-dev.20180904":"2018-09-04T21:58:21.787Z","3.1.0-dev.20180905":"2018-09-05T06:14:59.580Z","3.1.0-dev.20180906":"2018-09-06T06:14:01.415Z","3.1.0-dev.20180907":"2018-09-07T20:21:58.501Z","3.1.0-dev.20180912":"2018-09-12T06:14:02.961Z","3.1.0-dev.20180913":"2018-09-13T06:14:03.531Z","3.1.0-rc.20180911":"2018-09-13T17:52:20.097Z","3.1.0-dev.20180914":"2018-09-14T06:14:13.900Z","3.1.0-dev.20180915":"2018-09-15T06:16:43.939Z","3.1.0-dev.20180918":"2018-09-18T06:13:58.822Z","3.1.0-dev.20180919":"2018-09-19T06:14:08.872Z","3.1.0-dev.20180920":"2018-09-20T06:14:43.918Z","3.1.0-insiders.20180920":"2018-09-20T20:13:22.673Z","3.1.0-dev.20180921":"2018-09-21T06:14:17.692Z","3.1.0-dev.20180922":"2018-09-22T06:14:22.499Z","3.1.0-dev.20180925":"2018-09-25T06:14:38.482Z","3.1.1-insiders.20180925":"2018-09-25T21:08:10.707Z","3.2.0-dev.20180926":"2018-09-26T06:14:40.274Z","3.1.1-insiders.20180926":"2018-09-26T16:02:25.832Z","3.2.0-dev.20180927":"2018-09-27T06:14:25.099Z","3.1.1":"2018-09-27T14:31:16.554Z","3.2.0-dev.20180928":"2018-09-28T13:27:28.027Z","3.2.0-dev.20180929":"2018-09-29T06:14:19.659Z","3.2.0-dev.20181002":"2018-10-02T06:15:40.543Z","3.2.0-dev.20181003":"2018-10-03T06:13:26.866Z","3.2.0-dev.20181004":"2018-10-04T06:14:12.524Z","3.2.0-dev.20181006":"2018-10-06T06:14:44.203Z","3.2.0-dev.20181009":"2018-10-09T06:14:50.646Z","3.1.2":"2018-10-09T22:23:18.877Z","3.2.0-dev.20181010":"2018-10-10T06:13:52.178Z","3.2.0-dev.20181011":"2018-10-11T06:13:06.603Z","3.1.3":"2018-10-11T23:20:08.312Z","3.2.0-dev.20181017":"2018-10-17T06:14:38.285Z","3.2.0-dev.20181018":"2018-10-18T06:14:39.951Z","3.2.0-dev.20181019":"2018-10-19T06:14:02.872Z","3.2.0-dev.20181020":"2018-10-20T06:15:14.356Z","3.2.0-dev.20181023":"2018-10-23T06:16:19.252Z","3.2.0-dev.20181024":"2018-10-24T22:28:59.883Z","3.1.3-insiders.20181024":"2018-10-24T23:53:35.220Z","3.2.0-dev.20181025":"2018-10-25T06:15:59.624Z","3.2.0-dev.20181026":"2018-10-26T06:16:41.597Z","3.2.0-dev.20181027":"2018-10-27T06:16:29.735Z","3.1.4":"2018-10-29T21:48:53.851Z","3.2.0-dev.20181030":"2018-10-30T06:16:09.525Z","3.2.0-dev.20181031":"2018-10-31T06:15:08.727Z","3.1.5":"2018-10-31T20:28:51.358Z","3.2.0-dev.20181101":"2018-11-01T06:16:43.614Z","3.1.6":"2018-11-01T20:56:05.549Z","3.2.0-dev.20181102":"2018-11-02T06:16:02.410Z","3.2.0-dev.20181103":"2018-11-03T06:16:39.393Z","3.2.0-dev.20181106":"2018-11-06T07:16:41.585Z","3.2.0-dev.20181107":"2018-11-07T07:16:47.444Z","3.2.0-dev.20181110":"2018-11-10T00:14:00.764Z","3.2.0-dev.20181113":"2018-11-13T07:17:05.097Z","3.2.0-dev.20181114":"2018-11-14T07:16:20.545Z","3.2.0-dev.20181115":"2018-11-15T07:17:12.696Z","3.2.0-rc":"2018-11-15T21:55:43.622Z","3.2.0-dev.20181116":"2018-11-16T07:16:44.371Z","3.2.0-dev.20181117":"2018-11-17T07:16:47.018Z","3.3.0-dev.20181121":"2018-11-21T07:17:08.312Z","3.3.0-dev.20181122":"2018-11-22T07:17:39.527Z","3.3.0-dev.20181127":"2018-11-27T07:14:14.463Z","3.2.1-insiders.20181127":"2018-11-27T23:31:54.787Z","3.3.0-dev.20181128":"2018-11-28T07:12:52.999Z","3.2.1-insiders.20181128":"2018-11-28T23:48:47.483Z","3.3.0-dev.20181129":"2018-11-29T07:13:29.250Z","3.2.1":"2018-11-29T19:00:08.017Z","3.3.0-dev.20181130":"2018-11-30T07:14:15.341Z","3.3.0-dev.20181201":"2018-12-01T07:13:16.633Z","3.3.0-dev.20181204":"2018-12-04T07:13:24.679Z","3.3.0-dev.20181205":"2018-12-05T07:14:39.099Z","3.3.0-dev.20181206":"2018-12-06T07:12:45.463Z","3.2.2":"2018-12-07T01:54:38.023Z","3.3.0-dev.20181207":"2018-12-07T07:13:55.447Z","3.3.0-dev.20181208":"2018-12-08T07:12:32.058Z","3.3.0-dev.20181211":"2018-12-11T07:12:37.134Z","3.3.0-dev.20181212":"2018-12-12T18:51:14.249Z","3.3.0-dev.20181213":"2018-12-13T07:12:15.248Z","3.3.0-dev.20181214":"2018-12-14T07:12:30.315Z","3.3.0-dev.20181218":"2018-12-18T07:12:13.193Z","3.3.0-dev.20181219":"2018-12-19T07:13:54.601Z","3.3.0-dev.20181220":"2018-12-20T07:14:28.177Z","3.3.0-dev.20181221":"2018-12-21T07:13:31.668Z","3.3.0-dev.20181222":"2018-12-22T07:13:49.798Z","3.3.0-dev.20181228":"2018-12-28T07:13:28.385Z","3.3.0-dev.20181229":"2018-12-29T07:14:11.685Z","3.3.0-dev.20190101":"2019-01-01T07:14:08.443Z","3.3.0-dev.20190103":"2019-01-03T14:27:43.408Z","3.3.0-dev.20190104":"2019-01-04T07:14:25.701Z","3.3.0-dev.20190105":"2019-01-05T07:12:43.079Z","3.3.0-dev.20190108":"2019-01-08T07:14:01.295Z","3.3.0-dev.20190109":"2019-01-09T23:16:31.809Z","3.3.0-dev.20190110":"2019-01-10T07:14:14.903Z","3.3.0-dev.20190111":"2019-01-11T07:13:49.367Z","3.3.0-dev.20190112":"2019-01-12T07:13:57.078Z","3.3.0-dev.20190115":"2019-01-15T07:14:19.984Z","3.3.0-dev.20190116":"2019-01-16T17:39:27.030Z","3.3.0-dev.20190117":"2019-01-17T07:15:20.277Z","3.2.4":"2019-01-17T22:31:44.379Z","3.3.0-dev.20190118":"2019-01-18T07:14:14.204Z","3.3.0-dev.20190119":"2019-01-19T07:14:30.356Z","3.3.0-rc":"2019-01-22T22:57:20.868Z","3.3.0-dev.20190123":"2019-01-23T07:13:57.501Z","3.3.0-dev.20190124":"2019-01-24T07:14:28.395Z","3.3.0-dev.20190125":"2019-01-25T07:14:40.812Z","3.3.0-dev.20190126":"2019-01-26T07:13:40.152Z","3.4.0-dev.20190129":"2019-01-29T07:13:30.471Z","3.4.0-dev.20190130":"2019-01-30T07:14:10.271Z","3.4.0-dev.20190131":"2019-01-31T07:13:45.484Z","3.3.1":"2019-01-31T19:57:04.866Z","3.4.0-dev.20190201":"2019-02-01T07:13:35.012Z","3.4.0-dev.20190202":"2019-02-02T07:14:26.582Z","3.4.0-dev.20190206":"2019-02-06T07:14:23.056Z","3.4.0-dev.20190207":"2019-02-07T07:15:16.960Z","3.3.3":"2019-02-07T19:06:40.424Z","3.4.0-dev.20190208":"2019-02-08T07:14:34.716Z","3.4.0-dev.20190209":"2019-02-09T07:13:58.364Z","3.4.0-dev.20190213":"2019-02-13T07:14:50.794Z","3.4.0-dev.20190214":"2019-02-14T07:15:02.329Z","3.4.0-dev.20190215":"2019-02-15T07:14:09.559Z","3.4.0-dev.20190216":"2019-02-16T07:15:03.769Z","3.4.0-dev.20190220":"2019-02-20T07:14:48.341Z","3.3.3333":"2019-02-21T22:20:00.796Z","3.4.0-dev.20190221":"2019-02-21T23:54:02.260Z","3.4.0-dev.20190222":"2019-02-22T07:14:32.660Z","3.4.0-dev.20190223":"2019-02-23T07:14:47.717Z","3.4.0-dev.20190226":"2019-02-26T07:14:49.857Z","3.4.0-dev.20190227":"2019-02-27T07:15:35.141Z","3.4.0-dev.20190228":"2019-02-28T07:15:31.496Z","3.4.0-dev.20190301":"2019-03-01T07:15:02.600Z","3.4.0-dev.20190302":"2019-03-02T07:15:26.215Z","3.4.0-dev.20190305":"2019-03-05T07:15:16.308Z","3.4.0-dev.20190306":"2019-03-06T07:15:11.472Z","3.4.0-dev.20190307":"2019-03-07T07:15:29.509Z","3.4.0-dev.20190308":"2019-03-08T07:15:09.473Z","3.4.0-dev.20190309":"2019-03-09T07:17:13.887Z","3.4.0-dev.20190310":"2019-03-10T07:15:11.383Z","3.4.0-dev.20190311":"2019-03-11T06:15:44.584Z","3.4.0-dev.20190312":"2019-03-12T06:15:19.423Z","3.4.0-dev.20190313":"2019-03-13T06:15:09.522Z","3.4.0-dev.20190314":"2019-03-14T06:13:58.116Z","3.4.0-dev.20190315":"2019-03-15T06:14:53.640Z","3.4.0-rc":"2019-03-15T22:02:15.812Z","3.4.0-dev.20190316":"2019-03-16T06:15:59.563Z","3.4.0-dev.20190319":"2019-03-19T06:15:37.790Z","3.3.4000":"2019-03-19T23:45:07.488Z","3.4.0-dev.20190320":"2019-03-20T06:15:25.835Z","3.4.0-dev.20190321":"2019-03-21T06:16:23.327Z","3.4.0-dev.20190322":"2019-03-22T06:15:20.306Z","3.4.0-dev.20190323":"2019-03-23T06:16:43.978Z","3.4.0-dev.20190326":"2019-03-26T06:16:09.253Z","3.4.0-dev.20190327":"2019-03-27T06:15:35.565Z","3.4.0-dev.20190328":"2019-03-28T06:15:40.143Z","3.4.0-dev.20190329":"2019-03-29T06:15:35.680Z","3.4.1":"2019-03-29T17:40:01.411Z","3.4.0-dev.20190330":"2019-03-30T06:15:57.377Z","3.4.0-dev.20190403":"2019-04-03T06:15:39.491Z","3.5.0-dev.20190404":"2019-04-04T06:15:44.954Z","3.5.0-dev.20190405":"2019-04-05T06:14:57.316Z","3.4.2":"2019-04-05T20:47:09.044Z","3.5.0-dev.20190406":"2019-04-06T06:15:50.732Z","3.5.0-dev.20190407":"2019-04-07T06:15:43.443Z","3.4.3-insiders.20190408":"2019-04-08T23:40:29.035Z","3.5.0-dev.20190409":"2019-04-09T06:15:09.947Z","3.4.3":"2019-04-09T23:21:12.530Z","3.5.0-dev.20190410":"2019-04-10T06:16:00.324Z","3.5.0-dev.20190411":"2019-04-11T06:15:38.350Z","3.5.0-dev.20190412":"2019-04-12T06:14:46.332Z","3.5.0-dev.20190413":"2019-04-13T06:15:12.203Z","3.5.0-dev.20190416":"2019-04-16T06:15:37.421Z","3.5.0-dev.20190417":"2019-04-17T06:16:11.848Z","3.5.0-dev.20190418":"2019-04-18T06:15:04.782Z","3.4.4":"2019-04-18T23:25:20.866Z","3.5.0-dev.20190419":"2019-04-19T06:14:49.324Z","3.5.0-dev.20190420":"2019-04-20T06:14:50.102Z","3.5.0-dev.20190423":"2019-04-23T06:14:19.232Z","3.4.5":"2019-04-23T17:36:11.732Z","3.5.0-dev.20190424":"2019-04-24T06:14:09.728Z","3.5.0-dev.20190425":"2019-04-25T06:15:08.933Z","3.5.0-dev.20190426":"2019-04-26T06:14:52.958Z","3.5.0-dev.20190427":"2019-04-27T06:14:11.264Z","3.5.0-dev.20190430":"2019-04-30T06:14:53.107Z","3.5.0-dev.20190501":"2019-05-01T06:13:12.764Z","3.5.0-dev.20190502":"2019-05-02T06:13:24.347Z","3.5.0-dev.20190503":"2019-05-03T06:14:35.110Z","3.5.0-dev.20190504":"2019-05-04T06:14:55.817Z","3.5.0-dev.20190507":"2019-05-07T06:13:39.063Z","3.5.0-dev.20190508":"2019-05-08T06:14:31.185Z","3.5.0-dev.20190509":"2019-05-09T06:14:02.716Z","3.5.0-dev.20190511":"2019-05-11T06:14:48.851Z","3.5.0-dev.20190512":"2019-05-12T06:14:46.523Z","3.5.0-dev.20190514":"2019-05-14T06:14:17.784Z","3.5.0-dev.20190515":"2019-05-15T06:14:51.429Z","3.5.0-dev.20190516":"2019-05-16T06:15:32.779Z","3.5.0-rc":"2019-05-16T22:37:23.646Z","3.5.0-dev.20190517":"2019-05-17T06:14:56.745Z","3.5.0-dev.20190518":"2019-05-18T06:13:18.329Z","3.5.0-dev.20190521":"2019-05-21T06:14:44.776Z","3.5.0-dev.20190522":"2019-05-22T06:15:17.704Z","3.5.0-dev.20190523":"2019-05-23T06:14:47.835Z","3.5.0-dev.20190524":"2019-05-24T06:14:02.479Z","3.5.0-dev.20190525":"2019-05-25T06:14:04.385Z","3.5.0-dev.20190529":"2019-05-29T06:14:20.970Z","3.5.1":"2019-05-29T16:24:22.635Z","3.6.0-dev.20190530":"2019-05-30T06:14:11.109Z","3.6.0-dev.20190531":"2019-05-31T06:13:50.469Z","3.6.0-dev.20190601":"2019-06-01T06:14:45.283Z","3.6.0-dev.20190602":"2019-06-02T06:05:13.327Z","3.6.0-dev.20190603":"2019-06-03T06:05:38.580Z","3.6.0-dev.20190604":"2019-06-04T06:05:43.289Z","3.6.0-dev.20190606":"2019-06-06T06:05:18.402Z","3.6.0-dev.20190607":"2019-06-07T06:05:32.787Z","3.6.0-dev.20190608":"2019-06-08T06:15:06.663Z","3.6.0-dev.20190611":"2019-06-11T06:15:05.004Z","3.6.0-dev.20190612":"2019-06-12T06:14:53.693Z","3.6.0-dev.20190613":"2019-06-13T06:14:11.984Z","3.5.2":"2019-06-13T17:35:33.492Z","3.6.0-dev.20190614":"2019-06-14T06:14:15.124Z","3.6.0-dev.20190615":"2019-06-15T06:14:43.093Z","3.6.0-dev.20190618":"2019-06-18T06:15:26.413Z","3.6.0-dev.20190619":"2019-06-19T06:14:45.428Z","3.6.0-dev.20190620":"2019-06-20T06:15:10.362Z","3.6.0-dev.20190621":"2019-06-21T06:15:03.259Z","3.6.0-dev.20190622":"2019-06-22T06:14:51.394Z","3.6.0-dev.20190623":"2019-06-23T06:14:28.072Z","3.6.0-dev.20190625":"2019-06-25T06:15:01.075Z","3.6.0-dev.20190626":"2019-06-26T06:15:06.579Z","3.6.0-dev.20190627":"2019-06-27T06:15:48.405Z","3.6.0-dev.20190628":"2019-06-28T06:14:23.465Z","3.6.0-dev.20190629":"2019-06-29T06:05:48.392Z","3.6.0-dev.20190701":"2019-07-01T06:05:34.109Z","3.6.0-dev.20190702":"2019-07-02T06:05:55.034Z","3.6.0-dev.20190703":"2019-07-03T06:05:58.838Z","3.6.0-dev.20190704":"2019-07-04T06:06:04.368Z","3.5.3":"2019-07-08T22:25:18.351Z","3.6.0-dev.20190709":"2019-07-09T06:05:34.571Z","3.6.0-dev.20190710":"2019-07-10T06:06:08.123Z","3.6.0-dev.20190711":"2019-07-11T06:05:45.780Z","3.6.0-dev.20190712":"2019-07-12T06:06:06.904Z","3.6.0-dev.20190713":"2019-07-13T06:05:50.430Z","3.6.0-dev.20190716":"2019-07-16T06:05:36.508Z","3.6.0-dev.20190717":"2019-07-17T06:05:37.279Z","3.6.0-dev.20190718":"2019-07-18T06:06:04.838Z","3.6.0-dev.20190719":"2019-07-19T06:06:00.065Z","3.6.0-beta":"2019-07-19T17:25:35.281Z","3.6.0-dev.20190720":"2019-07-20T06:06:06.143Z","3.6.0-dev.20190723":"2019-07-23T06:05:21.650Z","3.6.0-dev.20190724":"2019-07-24T06:05:48.695Z","3.6.0-dev.20190725":"2019-07-25T06:05:56.659Z","3.6.0-dev.20190726":"2019-07-26T06:05:55.445Z","3.6.0-dev.20190727":"2019-07-27T06:06:26.034Z","3.6.0-dev.20190730":"2019-07-30T06:14:46.378Z","3.6.0-dev.20190801":"2019-08-01T06:15:38.262Z","3.6.0-dev.20190802":"2019-08-02T06:15:01.280Z","3.6.0-dev.20190803":"2019-08-03T06:15:43.163Z","3.6.0-dev.20190804":"2019-08-04T06:14:17.331Z","3.6.0-dev.20190806":"2019-08-06T06:14:43.911Z","3.6.0-dev.20190807":"2019-08-07T06:14:51.921Z","3.6.0-dev.20190808":"2019-08-08T06:14:51.419Z","3.6.0-dev.20190809":"2019-08-09T06:14:30.146Z","3.6.0-dev.20190810":"2019-08-10T06:14:44.646Z","3.6.0-dev.20190813":"2019-08-13T06:15:21.006Z","3.6.0-dev.20190814":"2019-08-14T06:14:33.372Z","3.7.0-dev.20190815":"2019-08-15T06:15:34.391Z","3.7.0-dev.20190816":"2019-08-16T06:15:43.293Z","3.6.1-rc":"2019-08-16T15:17:08.960Z","3.7.0-dev.20190817":"2019-08-17T06:15:44.278Z","3.7.0-dev.20190820":"2019-08-20T06:16:05.689Z","3.7.0-dev.20190821":"2019-08-21T06:16:07.176Z","3.7.0-dev.20190822":"2019-08-22T06:15:30.775Z","3.7.0-dev.20190823":"2019-08-23T06:15:41.112Z","3.7.0-dev.20190824":"2019-08-24T06:14:49.078Z","3.7.0-dev.20190827":"2019-08-27T06:15:52.884Z","3.7.0-dev.20190828":"2019-08-28T06:14:01.948Z","3.6.2":"2019-08-28T17:40:47.731Z","3.7.0-dev.20190829":"2019-08-29T06:15:35.369Z","3.7.0-dev.20190830":"2019-08-30T06:15:06.319Z","3.7.0-dev.20190831":"2019-08-31T06:15:32.495Z","3.7.0-dev.20190903":"2019-09-03T06:15:37.890Z","3.7.0-dev.20190904":"2019-09-04T06:15:16.158Z","3.7.0-dev.20190905":"2019-09-05T06:15:20.917Z","3.7.0-dev.20190906":"2019-09-06T06:15:45.773Z","3.7.0-dev.20190907":"2019-09-07T06:15:48.075Z","3.6.3-insiders.20190909":"2019-09-09T20:48:24.200Z","3.7.0-dev.20190910":"2019-09-10T06:16:18.380Z","3.6.3":"2019-09-10T20:43:58.043Z","3.7.0-dev.20190911":"2019-09-11T06:14:46.252Z","3.7.0-dev.20190912":"2019-09-12T06:16:27.036Z","3.7.0-dev.20190913":"2019-09-13T06:15:25.636Z","3.7.0-dev.20190914":"2019-09-14T06:16:07.804Z","3.7.0-dev.20190917":"2019-09-17T06:16:24.204Z","3.7.0-dev.20190918":"2019-09-18T06:16:18.302Z","3.7.0-dev.20190919":"2019-09-19T06:16:07.354Z","3.7.0-dev.20190920":"2019-09-20T06:15:43.006Z","3.7.0-dev.20190921":"2019-09-21T06:16:58.906Z","3.7.0-dev.20190922":"2019-09-22T06:14:48.782Z","3.7.0-dev.20190924":"2019-09-24T06:17:01.569Z","3.7.0-dev.20190925":"2019-09-25T06:15:24.915Z","3.7.0-dev.20190926":"2019-09-26T06:05:54.082Z","3.7.0-dev.20190927":"2019-09-27T06:06:24.898Z","3.7.0-dev.20190928":"2019-09-28T06:06:01.375Z","3.7.0-dev.20191001":"2019-10-01T06:06:11.105Z","3.7.0-beta":"2019-10-01T18:00:12.351Z","3.7.0-dev.20191002":"2019-10-02T06:15:33.952Z","3.7.0-dev.20191003":"2019-10-03T06:16:38.770Z","3.7.0-dev.20191004":"2019-10-04T06:18:23.341Z","3.7.0-dev.20191005":"2019-10-05T06:16:37.162Z","3.7.0-dev.20191006":"2019-10-06T06:16:12.669Z","3.7.0-dev.20191008":"2019-10-08T06:16:37.489Z","3.7.0-dev.20191009":"2019-10-09T06:16:51.153Z","3.6.4":"2019-10-09T20:15:57.007Z","3.7.0-dev.20191010":"2019-10-10T06:17:05.868Z","3.7.0-dev.20191011":"2019-10-11T06:15:40.999Z","3.7.0-dev.20191013":"2019-10-13T06:14:58.364Z","3.7.0-dev.20191014":"2019-10-14T06:16:39.146Z","3.7.0-dev.20191015":"2019-10-15T06:16:59.505Z","3.7.0-dev.20191016":"2019-10-16T06:16:11.566Z","3.7.0-dev.20191017":"2019-10-17T06:16:22.869Z","3.7.0-dev.20191018":"2019-10-18T06:17:34.282Z","3.7.0-dev.20191021":"2019-10-21T19:08:08.795Z","3.8.0-dev.20191022":"2019-10-22T06:17:20.227Z","3.8.0-dev.20191023":"2019-10-23T06:16:12.654Z","3.8.0-dev.20191024":"2019-10-24T06:16:27.605Z","3.7.1-rc":"2019-10-24T17:30:08.404Z","3.8.0-dev.20191025":"2019-10-25T06:16:41.973Z","3.8.0-dev.20191026":"2019-10-26T06:15:38.800Z","3.8.0-dev.20191029":"2019-10-29T06:14:15.753Z","3.8.0-dev.20191030":"2019-10-30T06:14:55.446Z","3.8.0-dev.20191031":"2019-10-31T06:15:29.023Z","3.8.0-dev.20191101":"2019-11-01T06:17:11.155Z","3.8.0-dev.20191102":"2019-11-02T06:16:19.608Z","3.8.0-dev.20191105":"2019-11-05T07:18:42.818Z","3.7.2":"2019-11-05T16:11:44.457Z","3.8.0-dev.20191112":"2019-11-12T07:12:26.016Z","3.8.0-dev.20191113":"2019-11-13T07:16:00.507Z","3.8.0-dev.20191114":"2019-11-14T07:12:46.134Z","3.8.0-dev.20191115":"2019-11-15T07:15:32.235Z","3.8.0-dev.20191116":"2019-11-16T07:13:15.319Z","3.7.3-insiders.20191118":"2019-11-18T21:41:36.850Z","3.8.0-dev.20191119":"2019-11-19T07:16:26.888Z","3.8.0-dev.20191120":"2019-11-20T07:14:46.419Z","3.8.0-dev.20191121":"2019-11-21T07:13:36.620Z","3.8.0-dev.20191122":"2019-11-22T07:13:38.545Z","3.7.3-insiders.20191123":"2019-11-23T00:51:03.059Z","3.8.0-dev.20191123":"2019-11-23T07:15:18.955Z","3.8.0-dev.20191125":"2019-11-25T07:15:30.861Z","3.8.0-dev.20191126":"2019-11-26T07:15:40.607Z","3.8.0-dev.20191128":"2019-11-28T07:14:26.344Z","3.8.0-dev.20191203":"2019-12-03T07:13:55.631Z","3.8.0-dev.20191204":"2019-12-04T07:14:25.323Z","3.7.3":"2019-12-04T08:01:44.975Z","3.8.0-dev.20191205":"2019-12-05T07:14:20.780Z","3.8.0-dev.20191206":"2019-12-06T07:15:00.147Z","3.8.0-dev.20191207":"2019-12-07T07:15:01.610Z","3.8.0-dev.20191210":"2019-12-10T07:15:48.011Z","3.8.0-dev.20191211":"2019-12-11T07:14:03.015Z","3.8.0-dev.20191212":"2019-12-12T07:14:47.697Z","3.8.0-dev.20191213":"2019-12-13T07:15:12.119Z","3.8.0-dev.20191214":"2019-12-14T07:15:52.651Z","3.8.0-dev.20191216":"2019-12-16T07:14:21.911Z","3.8.0-dev.20191217":"2019-12-17T07:16:24.119Z","3.8.0-dev.20191218":"2019-12-18T07:16:08.430Z","3.8.0-dev.20191219":"2019-12-19T07:15:00.522Z","3.8.0-dev.20191220":"2019-12-20T07:16:28.473Z","3.7.4":"2019-12-20T21:14:37.940Z","3.8.0-dev.20191221":"2019-12-21T07:15:51.875Z","3.8.0-dev.20191223":"2019-12-23T07:16:22.210Z","3.8.0-dev.20191224":"2019-12-24T07:15:23.079Z","3.8.0-dev.20191228":"2019-12-28T07:15:14.697Z","3.8.0-dev.20191231":"2019-12-31T07:15:43.633Z","3.8.0-dev.20200101":"2020-01-01T07:15:15.046Z","3.8.0-dev.20200103":"2020-01-03T07:14:48.029Z","3.8.0-dev.20200104":"2020-01-04T07:14:36.072Z","3.8.0-dev.20200107":"2020-01-07T07:15:03.654Z","3.8.0-dev.20200108":"2020-01-08T07:15:45.042Z","3.8.0-dev.20200109":"2020-01-09T07:15:07.171Z","3.8.0-dev.20200110":"2020-01-10T07:15:18.623Z","3.8.0-beta":"2020-01-10T20:59:20.959Z","3.8.0-dev.20200111":"2020-01-11T07:14:45.960Z","3.8.0-dev.20200114":"2020-01-14T07:14:53.695Z","3.8.0-dev.20200115":"2020-01-15T07:14:31.661Z","3.7.5":"2020-01-16T21:08:59.694Z","3.8.0-dev.20200116":"2020-01-16T21:44:36.124Z","3.8.0-dev.20200117":"2020-01-17T07:14:57.512Z","3.8.0-dev.20200118":"2020-01-18T07:15:42.378Z","3.8.0-dev.20200119":"2020-01-19T07:13:41.886Z","3.8.0-dev.20200122":"2020-01-22T07:16:06.000Z","3.8.0-dev.20200123":"2020-01-23T07:17:49.205Z","3.6.5":"2020-01-23T19:41:24.260Z","3.8.0-dev.20200124":"2020-01-24T07:13:40.096Z","3.8.0-dev.20200125":"2020-01-25T07:13:59.758Z","3.8.0-dev.20200128":"2020-01-28T07:11:56.856Z","3.8.0-dev.20200130":"2020-01-30T07:12:18.575Z","3.8.0-dev.20200131":"2020-01-31T07:16:34.958Z","3.8.0-dev.20200201":"2020-02-01T07:13:55.285Z","3.8.0-dev.20200204":"2020-02-04T07:14:12.468Z","3.8.0-dev.20200205":"2020-02-05T07:13:55.461Z","3.8.0-dev.20200206":"2020-02-06T07:14:31.527Z","3.8.1-rc":"2020-02-06T23:51:48.736Z","3.8.0-dev.20200207":"2020-02-07T07:14:52.984Z","3.8.0-dev.20200208":"2020-02-08T07:14:52.202Z","3.8.0-dev.20200211":"2020-02-11T07:13:42.967Z","3.9.0-dev.20200212":"2020-02-12T07:15:21.755Z","3.9.0-dev.20200213":"2020-02-13T07:13:43.174Z","3.9.0-dev.20200214":"2020-02-14T07:16:31.485Z","3.9.0-dev.20200215":"2020-02-15T07:14:50.314Z","3.9.0-dev.20200219":"2020-02-19T07:15:23.235Z","3.9.0-dev.20200220":"2020-02-20T07:14:47.560Z","3.8.2":"2020-02-20T22:45:56.500Z","3.9.0-dev.20200221":"2020-02-21T18:55:27.361Z","3.9.0-dev.20200222":"2020-02-22T23:13:56.678Z","3.9.0-dev.20200223":"2020-02-23T23:13:53.980Z","3.9.0-dev.20200224":"2020-02-24T23:14:27.828Z","3.9.0-dev.20200225":"2020-02-25T07:11:44.334Z","3.9.0-dev.20200226":"2020-02-26T07:11:28.360Z","3.9.0-dev.20200227":"2020-02-27T07:11:20.905Z","3.9.0-dev.20200228":"2020-02-28T07:11:23.479Z","3.8.3":"2020-02-28T22:14:44.636Z","3.9.0-dev.20200229":"2020-02-29T07:11:57.593Z","3.9.0-dev.20200303":"2020-03-03T07:11:21.278Z","3.9.0-dev.20200304":"2020-03-04T07:10:01.027Z","3.9.0-dev.20200305":"2020-03-05T07:11:56.509Z","3.9.0-dev.20200306":"2020-03-06T07:13:16.334Z","3.9.0-dev.20200308":"2020-03-08T07:13:28.359Z","3.9.0-dev.20200309":"2020-03-09T07:12:28.578Z","3.9.0-dev.20200310":"2020-03-10T07:12:35.005Z","3.9.0-dev.20200311":"2020-03-11T07:12:38.446Z","3.9.0-dev.20200312":"2020-03-12T07:12:30.569Z","3.9.0-dev.20200313":"2020-03-13T07:10:55.580Z","3.9.0-dev.20200314":"2020-03-14T07:13:34.890Z","3.9.0-dev.20200315":"2020-03-15T07:13:02.287Z","3.9.0-dev.20200316":"2020-03-16T07:11:38.599Z","3.9.0-dev.20200317":"2020-03-17T07:12:01.558Z","3.9.0-dev.20200318":"2020-03-18T07:12:43.944Z","3.9.0-dev.20200319":"2020-03-19T07:13:06.883Z","3.9.0-dev.20200320":"2020-03-20T07:13:18.711Z","3.9.0-dev.20200321":"2020-03-21T07:12:20.208Z","3.9.0-dev.20200322":"2020-03-22T07:12:20.341Z","3.9.0-dev.20200323":"2020-03-23T07:14:30.153Z","3.9.0-dev.20200324":"2020-03-24T07:12:01.177Z","3.9.0-dev.20200325":"2020-03-25T07:12:22.787Z","3.9.0-dev.20200326":"2020-03-26T07:14:00.386Z","3.9.0-dev.20200327":"2020-03-27T07:13:10.152Z","3.9.0-beta":"2020-03-27T19:39:38.361Z","3.9.0-dev.20200328":"2020-03-28T07:12:53.626Z","3.9.0-dev.20200329":"2020-03-29T07:12:54.814Z","3.9.0-dev.20200330":"2020-03-30T07:14:40.966Z","3.9.0-dev.20200402":"2020-04-02T07:13:56.834Z","3.9.0-dev.20200403":"2020-04-03T07:13:33.611Z","3.9.0-dev.20200404":"2020-04-04T07:13:05.739Z","3.9.0-dev.20200405":"2020-04-05T07:12:17.927Z","3.9.0-dev.20200406":"2020-04-06T09:21:41.245Z","3.9.0-dev.20200407":"2020-04-07T07:12:32.621Z","3.9.0-dev.20200408":"2020-04-08T07:12:56.602Z","3.9.0-dev.20200409":"2020-04-09T07:15:06.090Z","3.9.0-dev.20200410":"2020-04-10T07:13:15.413Z","3.9.0-dev.20200411":"2020-04-11T07:11:46.683Z","3.9.0-dev.20200412":"2020-04-12T07:13:10.056Z","3.9.0-dev.20200413":"2020-04-13T07:13:58.372Z","3.9.0-dev.20200414":"2020-04-14T07:13:43.494Z","3.9.0-dev.20200415":"2020-04-15T07:14:16.356Z","3.9.0-dev.20200416":"2020-04-16T07:14:02.106Z","3.9.0-dev.20200417":"2020-04-17T07:14:11.671Z","3.9.0-dev.20200418":"2020-04-18T07:11:57.863Z","3.9.0-dev.20200419":"2020-04-19T07:13:37.605Z","3.9.0-dev.20200420":"2020-04-20T07:14:33.210Z","3.9.0-dev.20200421":"2020-04-21T07:13:19.611Z","3.9.0-dev.20200422":"2020-04-22T07:13:22.259Z","3.9.0-dev.20200423":"2020-04-23T07:13:35.566Z","3.9.0-dev.20200424":"2020-04-24T07:14:44.710Z","3.9.0-dev.20200425":"2020-04-25T07:13:24.982Z","3.9.0-dev.20200426":"2020-04-26T07:14:58.159Z","3.9.0-dev.20200427":"2020-04-27T07:12:59.185Z","4.0.0-dev.20200428":"2020-04-28T07:15:19.940Z","3.9.1-rc":"2020-04-28T22:22:06.807Z","4.0.0-dev.20200429":"2020-04-29T07:13:47.580Z","4.0.0-dev.20200430":"2020-04-30T07:13:48.176Z","4.0.0-dev.20200501":"2020-05-01T07:14:47.113Z","4.0.0-dev.20200502":"2020-05-02T07:15:58.642Z","4.0.0-dev.20200503":"2020-05-03T07:12:40.814Z","4.0.0-dev.20200504":"2020-05-04T07:14:03.381Z","4.0.0-dev.20200505":"2020-05-05T07:13:56.473Z","4.0.0-dev.20200506":"2020-05-06T07:13:09.500Z","4.0.0-dev.20200507":"2020-05-07T07:13:19.834Z","4.0.0-dev.20200508":"2020-05-08T07:12:40.421Z","3.9.2-insiders.20200509":"2020-05-09T02:30:32.288Z","4.0.0-dev.20200509":"2020-05-09T07:13:09.099Z","4.0.0-dev.20200510":"2020-05-10T07:13:14.364Z","4.0.0-dev.20200511":"2020-05-11T07:14:18.357Z","4.0.0-dev.20200512":"2020-05-12T07:12:08.335Z","3.9.2":"2020-05-12T21:13:54.150Z","4.0.0-dev.20200514":"2020-05-14T07:13:11.146Z","4.0.0-dev.20200516":"2020-05-16T07:12:43.290Z","4.0.0-dev.20200517":"2020-05-17T07:13:32.343Z","4.0.0-dev.20200518":"2020-05-18T07:15:00.527Z","4.0.0-dev.20200519":"2020-05-19T07:12:36.206Z","3.9.3":"2020-05-19T22:57:21.278Z","4.0.0-dev.20200520":"2020-05-20T07:12:50.541Z","4.0.0-dev.20200521":"2020-05-21T07:12:56.346Z","4.0.0-dev.20200522":"2020-05-22T07:13:11.228Z","4.0.0-dev.20200523":"2020-05-23T07:14:12.574Z","4.0.0-dev.20200524":"2020-05-24T07:13:39.353Z","4.0.0-dev.20200525":"2020-05-25T07:13:04.406Z","4.0.0-dev.20200526":"2020-05-26T07:16:20.843Z","4.0.0-dev.20200527":"2020-05-27T07:14:25.962Z","4.0.0-dev.20200528":"2020-05-28T07:14:17.500Z","3.9.4":"2020-05-29T01:13:04.910Z","4.0.0-dev.20200529":"2020-05-29T07:11:47.902Z","4.0.0-dev.20200530":"2020-05-30T07:14:52.232Z","4.0.0-dev.20200531":"2020-05-31T07:15:28.279Z","4.0.0-dev.20200601":"2020-06-01T07:13:09.747Z","4.0.0-dev.20200602":"2020-06-02T07:14:03.597Z","4.0.0-dev.20200603":"2020-06-03T07:13:47.502Z","4.0.0-dev.20200604":"2020-06-04T07:13:47.672Z","3.9.5":"2020-06-04T17:59:27.644Z","4.0.0-dev.20200605":"2020-06-05T07:15:04.404Z","4.0.0-dev.20200606":"2020-06-06T07:12:52.511Z","4.0.0-dev.20200607":"2020-06-07T07:13:47.585Z","4.0.0-dev.20200608":"2020-06-08T07:14:14.939Z","4.0.0-dev.20200609":"2020-06-09T07:14:58.915Z","4.0.0-dev.20200610":"2020-06-10T07:13:26.911Z","4.0.0-dev.20200611":"2020-06-11T07:15:03.098Z","4.0.0-dev.20200612":"2020-06-12T07:15:04.862Z","4.0.0-dev.20200613":"2020-06-13T07:13:18.618Z","4.0.0-dev.20200614":"2020-06-14T07:13:40.808Z","4.0.0-dev.20200615":"2020-06-15T07:14:08.788Z","4.0.0-dev.20200620":"2020-06-20T07:12:39.366Z","4.0.0-dev.20200621":"2020-06-21T07:13:58.252Z","4.0.0-dev.20200622":"2020-06-22T07:16:33.262Z","4.0.0-dev.20200623":"2020-06-23T07:17:25.302Z","4.0.0-dev.20200624":"2020-06-24T07:15:56.844Z","4.0.0-dev.20200625":"2020-06-25T07:14:59.497Z","4.0.0-dev.20200626":"2020-06-26T07:12:00.826Z","4.0.0-beta":"2020-06-26T16:39:20.510Z","4.0.0-dev.20200627":"2020-06-27T07:15:20.943Z","4.0.0-dev.20200628":"2020-06-28T07:16:19.809Z","4.0.0-dev.20200629":"2020-06-29T07:15:50.083Z","4.0.0-dev.20200630":"2020-06-30T07:14:50.771Z","4.0.0-dev.20200701":"2020-07-01T07:15:48.797Z","3.9.6":"2020-07-01T17:44:16.336Z","4.0.0-dev.20200702":"2020-07-02T07:16:25.353Z","4.0.0-dev.20200703":"2020-07-03T07:16:09.235Z","4.0.0-dev.20200704":"2020-07-04T07:14:19.619Z","4.0.0-dev.20200705":"2020-07-05T07:14:49.958Z","4.0.0-dev.20200706":"2020-07-06T07:15:04.861Z","4.0.0-dev.20200707":"2020-07-07T07:16:03.595Z","4.0.0-dev.20200708":"2020-07-08T07:15:07.135Z","4.0.0-dev.20200709":"2020-07-09T07:14:09.660Z","4.0.0-dev.20200710":"2020-07-10T07:16:05.747Z","4.0.0-dev.20200711":"2020-07-11T07:15:00.766Z","4.0.0-dev.20200712":"2020-07-12T07:15:58.977Z","4.0.0-dev.20200714":"2020-07-14T07:15:15.447Z","4.0.0-dev.20200715":"2020-07-15T07:15:43.345Z","3.9.7":"2020-07-16T19:47:59.848Z","4.0.0-dev.20200717":"2020-07-17T19:19:07.683Z","4.0.0-dev.20200718":"2020-07-18T07:16:38.987Z","4.0.0-dev.20200719":"2020-07-19T07:15:45.509Z","4.0.0-dev.20200720":"2020-07-20T07:19:13.058Z","4.0.0-dev.20200721":"2020-07-21T07:14:11.626Z","4.0.0-dev.20200722":"2020-07-22T07:16:01.124Z","4.0.0-dev.20200724":"2020-07-24T07:14:41.701Z","4.0.0-dev.20200725":"2020-07-25T07:15:52.244Z","4.0.0-dev.20200726":"2020-07-26T07:16:00.806Z","4.0.0-dev.20200727":"2020-07-27T07:14:38.134Z","4.0.0-dev.20200728":"2020-07-28T07:15:07.995Z","4.0.0-dev.20200729":"2020-07-29T07:15:26.387Z","4.0.0-dev.20200730":"2020-07-30T07:14:33.412Z","4.0.0-dev.20200731":"2020-07-31T07:12:52.279Z","4.0.0-dev.20200801":"2020-08-01T07:16:03.610Z","4.0.0-dev.20200802":"2020-08-02T07:14:50.029Z","4.0.0-dev.20200803":"2020-08-03T07:15:59.463Z","4.1.0-dev.20200804":"2020-08-04T07:16:24.599Z","4.1.0-dev.20200805":"2020-08-05T07:16:45.808Z","4.1.0-dev.20200806":"2020-08-06T07:14:57.938Z","4.0.1-rc":"2020-08-06T21:30:43.613Z","4.1.0-dev.20200807":"2020-08-07T07:15:15.878Z","4.1.0-dev.20200808":"2020-08-08T07:17:27.267Z","4.1.0-dev.20200809":"2020-08-09T07:14:39.747Z","4.1.0-dev.20200810":"2020-08-10T07:14:50.885Z","4.1.0-dev.20200811":"2020-08-11T07:15:01.526Z","4.1.0-dev.20200812":"2020-08-12T07:16:29.093Z","4.1.0-dev.20200813":"2020-08-13T07:15:56.651Z","4.0.1-insiders.20200813":"2020-08-13T08:22:22.168Z","4.1.0-dev.20200814":"2020-08-14T07:16:05.157Z","4.1.0-dev.20200815":"2020-08-15T07:14:01.524Z","4.1.0-dev.20200816":"2020-08-16T07:16:33.199Z","4.1.0-dev.20200817":"2020-08-17T07:15:44.106Z","4.1.0-dev.20200818":"2020-08-18T07:18:07.889Z","4.0.2-insiders.20200818":"2020-08-18T23:13:44.297Z","4.1.0-dev.20200819":"2020-08-19T07:14:21.709Z","4.1.0-dev.20200820":"2020-08-20T07:13:27.821Z","4.0.2":"2020-08-20T15:59:24.994Z","4.1.0-dev.20200821":"2020-08-21T07:15:46.394Z","4.1.0-dev.20200822":"2020-08-22T07:16:06.035Z","4.1.0-dev.20200823":"2020-08-23T07:17:16.268Z","4.1.0-dev.20200824":"2020-08-24T07:16:36.430Z","4.1.0-dev.20200825":"2020-08-25T07:16:30.024Z","4.1.0-dev.20200826":"2020-08-26T07:16:05.821Z","4.1.0-dev.20200827":"2020-08-27T07:17:18.367Z","4.1.0-dev.20200828":"2020-08-28T07:15:21.832Z","4.1.0-dev.20200829":"2020-08-29T07:14:49.190Z","4.1.0-dev.20200830":"2020-08-30T07:15:44.693Z","4.1.0-dev.20200831":"2020-08-31T07:15:46.700Z","4.1.0-dev.20200901":"2020-09-01T07:16:20.606Z","4.1.0-dev.20200902":"2020-09-02T07:18:44.667Z","4.1.0-dev.20200903":"2020-09-03T07:17:25.117Z","4.1.0-dev.20200904":"2020-09-04T07:17:44.592Z","4.1.0-dev.20200905":"2020-09-05T07:22:46.164Z","4.1.0-dev.20200906":"2020-09-06T07:17:41.184Z","4.1.0-dev.20200907":"2020-09-07T07:16:47.411Z","4.1.0-dev.20200908":"2020-09-08T07:14:40.445Z","4.1.0-dev.20200909":"2020-09-09T07:15:28.935Z","4.1.0-dev.20200910":"2020-09-10T07:18:36.262Z","4.1.0-dev.20200911":"2020-09-11T07:17:44.446Z","4.1.0-dev.20200913":"2020-09-13T07:19:44.162Z","4.1.0-dev.20200914":"2020-09-14T07:18:01.799Z","4.1.0-dev.20200915":"2020-09-15T07:18:16.582Z","4.1.0-dev.20200916":"2020-09-16T07:17:23.355Z","4.1.0-dev.20200917":"2020-09-17T07:17:12.428Z","4.1.0-dev.20200918":"2020-09-18T07:17:48.696Z","4.1.0-beta":"2020-09-18T19:45:00.000Z","4.0.3":"2020-09-18T19:48:38.631Z","4.1.0-dev.20200919":"2020-09-19T07:15:16.166Z","4.1.0-dev.20200920":"2020-09-20T07:17:12.923Z","4.1.0-dev.20200921":"2020-09-21T07:18:01.796Z","4.1.0-dev.20200923":"2020-09-23T19:36:50.290Z","4.1.0-dev.20200924":"2020-09-24T07:19:05.638Z","4.1.0-dev.20200925":"2020-09-25T07:18:13.193Z","4.1.0-dev.20200926":"2020-09-26T07:17:14.118Z","4.1.0-dev.20200927":"2020-09-27T07:15:20.031Z","4.1.0-dev.20200928":"2020-09-28T07:18:26.192Z","4.1.0-dev.20200929":"2020-09-29T07:17:42.357Z","4.1.0-dev.20200930":"2020-09-30T07:18:11.658Z","4.1.0-dev.20201001":"2020-10-01T07:16:50.341Z","4.1.0-dev.20201002":"2020-10-02T07:17:50.988Z","4.1.0-dev.20201003":"2020-10-03T07:16:16.727Z","4.1.0-dev.20201004":"2020-10-04T07:16:52.897Z","4.1.0-dev.20201005":"2020-10-05T07:16:28.929Z","4.1.0-dev.20201006":"2020-10-06T07:16:54.172Z","4.1.0-dev.20201007":"2020-10-07T07:17:05.306Z","4.1.0-dev.20201008":"2020-10-08T07:16:23.582Z","4.1.0-dev.20201009":"2020-10-09T07:17:17.227Z","4.1.0-dev.20201010":"2020-10-10T07:18:14.080Z","4.1.0-dev.20201011":"2020-10-11T07:18:44.064Z","4.1.0-dev.20201012":"2020-10-12T07:16:59.410Z","4.1.0-dev.20201013":"2020-10-13T07:17:42.108Z","4.1.0-dev.20201014":"2020-10-14T07:21:27.936Z","4.1.0-dev.20201015":"2020-10-15T07:16:55.343Z","4.1.0-dev.20201016":"2020-10-16T07:17:36.789Z","4.1.0-dev.20201017":"2020-10-17T07:15:45.650Z","4.1.0-dev.20201018":"2020-10-18T07:16:22.821Z","4.1.0-dev.20201019":"2020-10-19T07:20:56.511Z","4.1.0-dev.20201020":"2020-10-20T07:16:58.909Z","4.1.0-dev.20201021":"2020-10-21T07:16:43.452Z","4.1.0-dev.20201022":"2020-10-22T07:17:59.370Z","4.1.0-dev.20201023":"2020-10-23T07:17:56.225Z","4.1.0-dev.20201024":"2020-10-24T07:15:57.913Z","4.1.0-dev.20201025":"2020-10-25T07:17:37.971Z","4.1.0-dev.20201026":"2020-10-26T07:18:25.347Z","4.0.5":"2020-10-26T23:22:12.082Z","4.1.0-dev.20201027":"2020-10-27T07:20:13.607Z","4.1.0-dev.20201028":"2020-10-28T07:19:30.599Z","4.1.0-dev.20201029":"2020-10-29T07:17:26.452Z","4.1.0-dev.20201030":"2020-10-30T07:18:04.837Z","4.1.0-dev.20201031":"2020-10-31T07:16:00.459Z","4.1.0-dev.20201101":"2020-11-01T07:17:14.663Z","4.1.0-dev.20201102":"2020-11-02T07:15:19.708Z","4.2.0-dev.20201103":"2020-11-03T07:16:18.127Z","4.1.1-rc":"2020-11-03T21:58:49.659Z","4.2.0-dev.20201104":"2020-11-04T07:16:42.640Z","4.2.0-dev.20201105":"2020-11-05T07:17:26.574Z","4.2.0-dev.20201106":"2020-11-06T07:17:19.939Z","4.2.0-dev.20201107":"2020-11-07T07:14:46.383Z","4.2.0-dev.20201108":"2020-11-08T07:17:13.290Z","4.2.0-dev.20201109":"2020-11-09T07:15:18.445Z","4.2.0-dev.20201112":"2020-11-12T07:15:53.529Z","4.2.0-dev.20201113":"2020-11-13T07:14:49.774Z","4.2.0-dev.20201114":"2020-11-14T07:16:41.261Z","4.2.0-dev.20201115":"2020-11-15T07:12:52.288Z","4.2.0-dev.20201116":"2020-11-16T07:17:11.068Z","4.2.0-dev.20201117":"2020-11-17T07:13:26.950Z","4.2.0-dev.20201118":"2020-11-18T07:16:06.092Z","4.2.0-dev.20201119":"2020-11-19T07:16:34.257Z","4.1.2":"2020-11-19T21:54:03.703Z","4.2.0-dev.20201120":"2020-11-20T07:16:35.941Z","4.2.0-dev.20201121":"2020-11-21T07:14:25.404Z","4.2.0-dev.20201122":"2020-11-22T07:14:30.188Z","4.2.0-dev.20201123":"2020-11-23T07:17:46.545Z","4.2.0-dev.20201124":"2020-11-24T07:16:03.650Z","4.2.0-dev.20201126":"2020-11-26T07:17:20.648Z","4.2.0-dev.20201127":"2020-11-27T07:16:18.438Z","4.2.0-dev.20201128":"2020-11-28T07:16:00.921Z","4.2.0-dev.20201129":"2020-11-29T07:16:08.772Z","4.2.0-dev.20201130":"2020-11-30T07:15:21.396Z","4.2.0-dev.20201201":"2020-12-01T07:16:11.088Z","4.2.0-dev.20201202":"2020-12-02T07:18:57.190Z","4.2.0-dev.20201204":"2020-12-04T07:17:45.636Z","4.2.0-dev.20201205":"2020-12-05T07:17:24.748Z","4.2.0-dev.20201206":"2020-12-06T07:15:18.261Z","4.2.0-dev.20201207":"2020-12-07T07:17:26.417Z","4.2.0-dev.20201208":"2020-12-08T07:15:24.366Z","4.2.0-dev.20201209":"2020-12-09T07:17:40.993Z","4.2.0-dev.20201210":"2020-12-10T07:15:04.615Z","4.2.0-dev.20201211":"2020-12-11T07:21:25.288Z","4.1.3":"2020-12-11T21:25:44.810Z","4.2.0-dev.20201219":"2020-12-19T07:22:52.079Z","4.2.0-dev.20201220":"2020-12-20T07:15:38.027Z","4.2.0-dev.20201221":"2020-12-21T07:24:24.475Z","4.2.0-dev.20201222":"2020-12-22T07:26:42.719Z","4.2.0-dev.20201223":"2020-12-23T07:30:47.411Z","4.2.0-dev.20201224":"2020-12-24T07:28:35.034Z","4.2.0-dev.20201225":"2020-12-25T07:22:48.099Z","4.2.0-dev.20201226":"2020-12-26T07:21:27.688Z","4.2.0-dev.20201227":"2020-12-27T07:23:25.753Z","4.2.0-dev.20201228":"2020-12-28T07:27:33.759Z","4.2.0-dev.20201229":"2020-12-29T07:26:37.638Z","4.2.0-dev.20201230":"2020-12-30T07:27:52.582Z","4.2.0-dev.20201231":"2020-12-31T07:30:47.598Z","4.2.0-dev.20210101":"2021-01-01T07:30:20.173Z","4.2.0-dev.20210102":"2021-01-02T07:26:39.733Z","4.2.0-dev.20210103":"2021-01-03T07:30:05.890Z","4.2.0-dev.20210104":"2021-01-04T07:30:01.509Z","4.2.0-dev.20210105":"2021-01-05T07:33:23.728Z","4.2.0-dev.20210106":"2021-01-06T07:30:10.006Z","4.2.0-dev.20210107":"2021-01-07T07:34:26.615Z","4.2.0-dev.20210108":"2021-01-08T07:35:13.880Z","4.2.0-dev.20210111":"2021-01-11T07:38:10.864Z","4.2.0-dev.20210112":"2021-01-12T07:41:30.373Z","4.2.0-beta":"2021-01-13T00:24:55.149Z","4.2.0-dev.20210113":"2021-01-13T07:46:54.700Z","4.2.0-dev.20210114":"2021-01-14T07:47:48.452Z","4.2.0-dev.20210115":"2021-01-15T07:44:53.695Z","4.2.0-dev.20210119":"2021-01-19T07:45:23.350Z","4.2.0-dev.20210120":"2021-01-20T07:49:51.158Z","4.2.0-dev.20210121":"2021-01-21T07:50:09.210Z","4.2.0-dev.20210122":"2021-01-22T07:49:39.100Z","4.2.0-dev.20210123":"2021-01-23T07:44:58.630Z","4.2.0-dev.20210124":"2021-01-24T07:45:36.436Z","4.2.0-dev.20210125":"2021-01-25T07:48:12.870Z","4.2.0-dev.20210126":"2021-01-26T07:20:58.323Z","4.2.0-dev.20210127":"2021-01-27T07:20:41.513Z","4.2.0-dev.20210128":"2021-01-28T08:41:13.566Z","4.2.0-dev.20210129":"2021-01-29T07:23:16.129Z","4.2.0-dev.20210130":"2021-01-30T07:20:38.164Z","4.2.0-dev.20210131":"2021-01-31T07:19:43.360Z","4.2.0-dev.20210201":"2021-02-01T07:23:49.253Z","4.2.0-dev.20210202":"2021-02-02T07:24:11.482Z","4.2.0-dev.20210203":"2021-02-03T07:18:08.965Z","4.2.0-dev.20210204":"2021-02-04T07:14:06.040Z","4.2.0-dev.20210205":"2021-02-05T07:15:10.551Z","4.2.0-dev.20210206":"2021-02-06T07:18:42.484Z","4.2.0-dev.20210207":"2021-02-07T07:18:07.976Z","4.2.0-dev.20210208":"2021-02-08T07:18:13.748Z","4.2.0-dev.20210209":"2021-02-09T07:18:24.212Z","3.1.7":"2021-02-09T18:40:38.767Z","3.7.6":"2021-02-09T18:45:20.135Z","3.9.8":"2021-02-09T18:46:18.580Z","4.0.6":"2021-02-09T18:47:15.067Z","4.1.4":"2021-02-09T18:48:13.149Z","4.2.0-insiders.20210210":"2021-02-10T01:11:17.289Z","4.3.0-dev.20210210":"2021-02-10T07:16:37.896Z","3.1.8":"2021-02-10T20:39:02.451Z","3.7.7":"2021-02-10T20:39:57.410Z","3.9.9":"2021-02-10T20:40:46.831Z","4.0.7":"2021-02-10T20:41:32.550Z","4.1.5":"2021-02-10T20:42:23.965Z","4.3.0-dev.20210211":"2021-02-11T07:18:00.010Z","4.2.1-rc":"2021-02-11T23:07:51.029Z","4.3.0-dev.20210212":"2021-02-12T07:15:55.145Z","4.3.0-dev.20210213":"2021-02-13T07:18:24.124Z","4.3.0-dev.20210214":"2021-02-14T07:17:36.080Z","4.3.0-dev.20210215":"2021-02-15T07:19:27.904Z","4.3.0-dev.20210216":"2021-02-16T07:17:22.597Z","4.3.0-dev.20210217":"2021-02-17T07:17:01.065Z","4.3.0-dev.20210218":"2021-02-18T07:20:53.305Z","4.3.0-dev.20210219":"2021-02-19T07:16:51.006Z","4.3.0-dev.20210220":"2021-02-20T07:17:57.440Z","4.3.0-dev.20210221":"2021-02-21T07:16:25.112Z","4.3.0-dev.20210222":"2021-02-22T07:16:52.482Z","4.3.0-dev.20210223":"2021-02-23T07:14:47.436Z","4.2.2":"2021-02-23T21:43:09.173Z","4.3.0-dev.20210224":"2021-02-24T07:17:20.663Z","4.3.0-dev.20210225":"2021-02-25T07:19:23.749Z","4.3.0-dev.20210226":"2021-02-26T07:16:44.615Z","4.3.0-dev.20210227":"2021-02-27T07:20:13.226Z","4.3.0-dev.20210228":"2021-02-28T07:18:26.559Z","4.3.0-dev.20210302":"2021-03-02T07:15:07.160Z","4.3.0-dev.20210303":"2021-03-03T07:16:25.998Z","4.3.0-dev.20210304":"2021-03-04T07:18:33.560Z","4.2.3":"2021-03-04T22:27:21.936Z","4.3.0-dev.20210305":"2021-03-05T07:17:10.251Z","4.3.0-dev.20210306":"2021-03-06T07:17:53.396Z","4.3.0-dev.20210307":"2021-03-07T07:17:31.702Z","4.3.0-dev.20210308":"2021-03-08T07:16:28.125Z","4.3.0-dev.20210309":"2021-03-09T07:17:16.680Z","4.3.0-dev.20210310":"2021-03-10T07:20:09.333Z","4.3.0-dev.20210311":"2021-03-11T07:18:08.421Z","4.3.0-dev.20210312":"2021-03-12T07:19:38.198Z","4.3.0-dev.20210313":"2021-03-13T07:19:03.072Z","4.3.0-dev.20210314":"2021-03-14T07:18:09.658Z","4.3.0-dev.20210315":"2021-03-15T07:17:59.799Z","4.3.0-dev.20210316":"2021-03-16T07:19:40.216Z","4.3.0-dev.20210317":"2021-03-17T07:17:34.219Z","4.3.0-dev.20210318":"2021-03-18T07:15:26.458Z","4.3.0-dev.20210319":"2021-03-19T07:22:55.404Z","4.3.0-dev.20210322":"2021-03-22T07:21:42.035Z","4.3.0-dev.20210323":"2021-03-23T07:16:32.038Z","4.3.0-dev.20210324":"2021-03-24T07:17:24.399Z","4.3.0-dev.20210325":"2021-03-25T07:17:23.609Z","4.3.0-dev.20210326":"2021-03-26T07:17:32.471Z","4.3.0-dev.20210327":"2021-03-27T07:15:56.975Z","4.3.0-dev.20210328":"2021-03-28T07:18:18.100Z","4.3.0-dev.20210329":"2021-03-29T07:18:52.204Z","4.3.0-dev.20210330":"2021-03-30T07:18:41.638Z","4.3.0-dev.20210331":"2021-03-31T07:19:58.264Z","4.3.0-dev.20210401":"2021-04-01T07:19:46.409Z","4.3.0-beta":"2021-04-01T20:13:43.213Z","4.3.0-dev.20210402":"2021-04-02T07:19:33.088Z","4.3.0-dev.20210403":"2021-04-03T07:18:24.796Z","4.3.0-dev.20210404":"2021-04-04T07:18:27.720Z","4.3.0-dev.20210405":"2021-04-05T07:21:12.675Z","4.3.0-dev.20210406":"2021-04-06T07:17:56.976Z","4.3.0-dev.20210407":"2021-04-07T07:18:30.368Z","4.2.4":"2021-04-07T18:53:14.660Z","4.3.0-dev.20210408":"2021-04-08T09:22:45.929Z","4.3.0-dev.20210409":"2021-04-09T07:21:45.395Z","4.3.0-dev.20210410":"2021-04-10T07:19:07.433Z","4.3.0-dev.20210411":"2021-04-11T07:21:17.942Z","4.3.0-dev.20210412":"2021-04-12T07:19:38.906Z","4.3.0-dev.20210413":"2021-04-13T07:20:21.131Z","4.3.0-dev.20210414":"2021-04-14T07:18:02.407Z","4.3.0-dev.20210415":"2021-04-15T07:19:26.403Z","4.3.0-dev.20210416":"2021-04-16T07:18:09.768Z","4.3.0-dev.20210417":"2021-04-17T07:20:33.384Z","4.3.0-dev.20210418":"2021-04-18T07:18:55.069Z","4.3.0-dev.20210419":"2021-04-19T07:22:58.273Z","4.3.0-dev.20210420":"2021-04-20T07:20:12.401Z","4.3.0-dev.20210422":"2021-04-22T07:22:02.857Z","4.3.0-dev.20210423":"2021-04-23T07:18:00.948Z","4.3.0-dev.20210424":"2021-04-24T07:19:50.672Z","4.3.0-dev.20210425":"2021-04-25T07:22:11.037Z","4.3.0-dev.20210426":"2021-04-26T07:20:54.399Z","4.3.0-dev.20210427":"2021-04-27T07:21:04.298Z","4.3.0-dev.20210428":"2021-04-28T07:20:06.083Z","4.3.0-dev.20210429":"2021-04-29T07:19:52.056Z","4.3.0-dev.20210430":"2021-04-30T07:20:21.274Z","4.3.0-dev.20210501":"2021-05-01T07:18:33.212Z","4.3.0-dev.20210502":"2021-05-02T07:17:50.373Z","4.3.0-dev.20210503":"2021-05-03T07:19:07.326Z","4.3.0-dev.20210504":"2021-05-04T07:17:58.400Z","4.3.0-dev.20210505":"2021-05-05T07:17:12.786Z","4.3.0-dev.20210506":"2021-05-06T07:18:50.891Z","4.3.0-dev.20210507":"2021-05-07T07:15:58.188Z","4.3.0-dev.20210508":"2021-05-08T07:21:05.404Z","4.3.0-dev.20210509":"2021-05-09T07:19:38.220Z","4.3.0-dev.20210510":"2021-05-10T07:18:05.265Z","4.4.0-dev.20210511":"2021-05-11T07:21:25.251Z","4.4.0-dev.20210512":"2021-05-12T07:20:55.855Z","4.3.1-rc":"2021-05-12T22:25:21.200Z","4.4.0-dev.20210513":"2021-05-13T07:20:23.566Z","4.4.0-dev.20210514":"2021-05-14T07:22:01.379Z","4.4.0-dev.20210515":"2021-05-15T07:17:50.519Z","4.4.0-dev.20210516":"2021-05-16T07:20:07.681Z","4.4.0-dev.20210517":"2021-05-17T07:22:01.588Z","4.4.0-dev.20210518":"2021-05-18T07:26:49.817Z","4.4.0-dev.20210519":"2021-05-19T07:21:39.100Z","4.4.0-dev.20210520":"2021-05-20T07:21:26.680Z","4.4.0-dev.20210521":"2021-05-21T07:22:02.974Z","4.4.0-dev.20210522":"2021-05-22T07:20:23.427Z","4.4.0-dev.20210523":"2021-05-23T07:22:16.116Z","4.4.0-dev.20210524":"2021-05-24T07:22:09.967Z","4.4.0-dev.20210525":"2021-05-25T07:24:55.270Z","4.4.0-dev.20210526":"2021-05-26T07:30:53.778Z","4.3.2":"2021-05-26T17:25:54.805Z","4.4.0-dev.20210527":"2021-05-27T07:34:56.896Z","4.4.0-dev.20210528":"2021-05-28T07:38:20.671Z","4.4.0-dev.20210529":"2021-05-29T07:45:12.003Z","4.4.0-dev.20210530":"2021-05-30T07:39:17.651Z","4.4.0-dev.20210531":"2021-05-31T07:43:25.491Z","4.4.0-dev.20210601":"2021-06-01T07:43:37.300Z","4.4.0-dev.20210602":"2021-06-02T07:48:45.223Z","4.4.0-dev.20210605":"2021-06-05T07:35:58.093Z","4.4.0-dev.20210606":"2021-06-06T07:32:18.684Z","4.4.0-dev.20210607":"2021-06-07T07:45:58.413Z","4.4.0-dev.20210608":"2021-06-08T07:27:27.204Z","4.4.0-dev.20210609":"2021-06-09T07:25:34.625Z","4.4.0-dev.20210610":"2021-06-10T07:24:37.378Z","4.4.0-dev.20210611":"2021-06-11T07:21:02.267Z","4.4.0-dev.20210612":"2021-06-12T07:15:47.895Z","4.4.0-dev.20210613":"2021-06-13T07:18:56.860Z","4.4.0-dev.20210614":"2021-06-14T07:19:27.112Z","4.4.0-dev.20210615":"2021-06-15T07:18:45.503Z","4.4.0-dev.20210616":"2021-06-16T07:17:43.048Z","3.9.10":"2021-06-16T22:50:12.465Z","4.0.8":"2021-06-16T23:05:11.358Z","4.3.3":"2021-06-16T23:18:37.672Z","4.1.6":"2021-06-16T23:43:00.385Z","4.4.0-dev.20210617":"2021-06-17T07:18:54.048Z","4.3.4":"2021-06-17T18:18:34.408Z","4.4.0-dev.20210619":"2021-06-19T07:18:54.843Z","4.4.0-dev.20210620":"2021-06-20T07:19:37.887Z","4.4.0-dev.20210621":"2021-06-21T07:23:51.955Z","4.4.0-dev.20210622":"2021-06-22T07:16:44.707Z","4.4.0-dev.20210624":"2021-06-24T07:15:09.206Z","4.4.0-dev.20210625":"2021-06-25T07:14:51.747Z","4.4.0-dev.20210626":"2021-06-26T07:13:47.239Z","4.4.0-dev.20210627":"2021-06-27T07:17:30.226Z","4.4.0-dev.20210628":"2021-06-28T07:17:09.594Z","4.4.0-dev.20210629":"2021-06-29T07:17:17.201Z","4.4.0-dev.20210630":"2021-06-30T07:16:14.035Z","4.3.5":"2021-06-30T23:42:04.770Z","4.4.0-dev.20210701":"2021-07-01T07:15:38.558Z","4.4.0-beta":"2021-07-01T19:01:41.591Z","4.4.0-dev.20210702":"2021-07-02T07:13:47.699Z","4.4.0-dev.20210704":"2021-07-04T07:16:05.310Z","4.4.0-dev.20210705":"2021-07-05T07:15:34.382Z","4.4.0-dev.20210706":"2021-07-06T07:15:56.688Z","4.4.0-dev.20210707":"2021-07-07T07:16:02.615Z","4.4.0-dev.20210708":"2021-07-08T07:15:22.396Z","4.4.0-dev.20210709":"2021-07-09T07:15:42.917Z","4.4.0-dev.20210710":"2021-07-10T07:13:41.540Z","4.4.0-dev.20210711":"2021-07-11T07:18:27.561Z","4.4.0-dev.20210712":"2021-07-12T07:14:08.874Z","4.4.0-dev.20210713":"2021-07-13T07:15:46.771Z","4.4.0-dev.20210714":"2021-07-14T07:17:14.150Z","4.4.0-dev.20210715":"2021-07-15T07:13:33.513Z","4.4.0-dev.20210716":"2021-07-16T07:14:01.427Z","4.4.0-dev.20210717":"2021-07-17T07:16:52.758Z","4.4.0-dev.20210718":"2021-07-18T07:18:41.703Z","4.4.0-dev.20210719":"2021-07-19T07:16:22.571Z","4.4.0-dev.20210720":"2021-07-20T07:15:19.903Z","4.4.0-dev.20210721":"2021-07-21T07:20:28.116Z","4.4.0-dev.20210722":"2021-07-22T07:15:29.335Z","4.4.0-dev.20210723":"2021-07-23T07:17:41.578Z","4.4.0-dev.20210724":"2021-07-24T07:17:36.861Z","4.4.0-dev.20210725":"2021-07-25T07:18:55.027Z","4.4.0-dev.20210726":"2021-07-26T07:21:06.204Z","4.4.0-dev.20210727":"2021-07-27T07:17:31.590Z","4.4.0-dev.20210728":"2021-07-28T07:17:02.757Z","4.4.0-dev.20210729":"2021-07-29T07:14:51.862Z","4.4.0-dev.20210730":"2021-07-30T07:15:51.432Z","4.4.0-dev.20210731":"2021-07-31T07:15:19.170Z","4.4.0-dev.20210801":"2021-08-01T07:17:06.491Z","4.4.0-dev.20210802":"2021-08-02T07:15:59.540Z","4.4.0-dev.20210803":"2021-08-03T07:17:43.586Z","4.4.0-dev.20210804":"2021-08-04T07:13:57.891Z","4.4.0-dev.20210805":"2021-08-05T07:13:16.043Z","4.4.0-insiders.20210805":"2021-08-05T23:11:48.016Z","4.4.0-dev.20210806":"2021-08-06T07:15:47.804Z","4.5.0-dev.20210807":"2021-08-07T07:16:18.750Z","4.5.0-dev.20210808":"2021-08-08T07:15:32.679Z","4.5.0-dev.20210809":"2021-08-09T07:15:28.764Z","4.5.0-dev.20210810":"2021-08-10T07:14:25.260Z","4.5.0-dev.20210811":"2021-08-11T07:16:52.546Z","4.4.1-insiders.20210811":"2021-08-11T19:27:38.511Z","4.5.0-dev.20210812":"2021-08-12T07:15:57.928Z","4.4.1-rc":"2021-08-12T22:10:05.539Z","4.5.0-dev.20210813":"2021-08-13T07:16:56.632Z","4.5.0-dev.20210814":"2021-08-14T07:16:50.346Z","4.5.0-dev.20210815":"2021-08-15T07:14:35.745Z","4.5.0-dev.20210816":"2021-08-16T07:17:34.511Z","4.5.0-dev.20210817":"2021-08-17T07:18:00.133Z","4.5.0-dev.20210818":"2021-08-18T07:14:07.752Z","4.5.0-dev.20210819":"2021-08-19T07:14:18.277Z","4.5.0-dev.20210820":"2021-08-20T07:17:01.792Z","4.5.0-dev.20210821":"2021-08-21T07:18:13.716Z","4.5.0-dev.20210822":"2021-08-22T07:17:29.966Z","4.5.0-dev.20210823":"2021-08-23T07:17:21.589Z","4.5.0-dev.20210824":"2021-08-24T07:16:13.329Z","4.5.0-dev.20210825":"2021-08-25T07:20:00.121Z","4.5.0-dev.20210826":"2021-08-26T07:17:56.166Z","4.4.2":"2021-08-26T21:04:26.978Z","4.5.0-dev.20210830":"2021-08-30T07:17:48.835Z","4.5.0-dev.20210831":"2021-08-31T07:14:07.163Z","4.5.0-dev.20210901":"2021-09-01T07:15:52.564Z","4.5.0-dev.20210902":"2021-09-02T07:13:23.673Z","4.5.0-dev.20210903":"2021-09-03T07:14:21.034Z","4.5.0-dev.20210904":"2021-09-04T07:17:27.203Z","4.5.0-dev.20210905":"2021-09-05T07:18:29.663Z","4.5.0-dev.20210906":"2021-09-06T07:17:55.726Z","4.5.0-dev.20210907":"2021-09-07T07:14:44.479Z","4.5.0-dev.20210908":"2021-09-08T07:18:22.049Z","4.5.0-dev.20210909":"2021-09-09T07:23:26.518Z","4.5.0-dev.20210910":"2021-09-10T07:18:04.108Z","4.4.3":"2021-09-10T21:13:20.492Z","4.5.0-dev.20210911":"2021-09-11T07:14:17.541Z","4.5.0-dev.20210912":"2021-09-12T07:17:40.926Z","4.5.0-dev.20210913":"2021-09-13T07:20:15.953Z","4.5.0-dev.20210914":"2021-09-14T07:18:09.207Z","4.5.0-dev.20210915":"2021-09-15T07:14:07.887Z","4.5.0-dev.20210917":"2021-09-17T07:14:31.908Z","4.5.0-dev.20210918":"2021-09-18T07:16:59.734Z","4.5.0-dev.20210919":"2021-09-19T07:14:24.079Z","4.5.0-dev.20210920":"2021-09-20T07:20:23.949Z","4.5.0-dev.20210921":"2021-09-21T07:14:23.397Z","4.5.0-dev.20210922":"2021-09-22T07:15:59.033Z","4.5.0-dev.20210923":"2021-09-23T07:18:39.935Z","4.5.0-dev.20210924":"2021-09-24T07:18:45.639Z","4.5.0-dev.20210925":"2021-09-25T07:17:07.887Z","4.5.0-dev.20210926":"2021-09-26T07:19:56.166Z","4.5.0-dev.20210927":"2021-09-27T07:19:01.646Z","4.5.0-dev.20210928":"2021-09-28T07:17:06.887Z","4.5.0-dev.20210929":"2021-09-29T07:15:04.565Z","4.5.0-dev.20210930":"2021-09-30T07:20:04.633Z","4.5.0-dev.20211001":"2021-10-01T07:15:10.771Z","4.5.0-beta":"2021-10-01T23:06:05.702Z","4.5.0-dev.20211002":"2021-10-02T07:19:34.556Z","4.5.0-dev.20211003":"2021-10-03T07:19:42.215Z","4.5.0-dev.20211004":"2021-10-04T07:18:59.785Z","4.5.0-dev.20211005":"2021-10-05T07:19:47.959Z","4.5.0-dev.20211006":"2021-10-06T07:18:59.747Z","4.5.0-dev.20211007":"2021-10-07T07:13:54.351Z","4.5.0-dev.20211008":"2021-10-08T07:17:34.649Z","4.5.0-dev.20211009":"2021-10-09T07:13:54.825Z","4.5.0-dev.20211010":"2021-10-10T07:14:43.600Z","4.5.0-dev.20211011":"2021-10-11T07:15:25.163Z","4.5.0-dev.20211012":"2021-10-12T07:19:21.352Z","4.4.4":"2021-10-12T19:16:06.762Z","4.5.0-dev.20211013":"2021-10-13T07:20:06.101Z","4.5.0-dev.20211014":"2021-10-14T07:17:46.384Z","4.5.0-dev.20211015":"2021-10-15T07:19:45.306Z","4.5.0-dev.20211016":"2021-10-16T07:14:20.973Z","4.5.0-dev.20211017":"2021-10-17T07:14:06.010Z","4.5.0-dev.20211018":"2021-10-18T07:14:58.994Z","4.5.0-dev.20211019":"2021-10-19T07:15:11.143Z","4.5.0-dev.20211020":"2021-10-20T07:18:29.131Z","4.5.0-dev.20211021":"2021-10-21T07:15:40.646Z","4.5.0-dev.20211022":"2021-10-22T07:15:13.873Z","4.5.0-dev.20211023":"2021-10-23T07:20:05.995Z","4.5.0-dev.20211024":"2021-10-24T07:18:30.647Z","4.5.0-dev.20211025":"2021-10-25T07:15:32.059Z","4.5.0-dev.20211026":"2021-10-26T07:18:21.262Z","4.5.0-dev.20211027":"2021-10-27T07:18:04.980Z","4.5.0-dev.20211028":"2021-10-28T07:20:55.146Z","4.5.0-dev.20211029":"2021-10-29T07:17:49.863Z","4.5.0-dev.20211030":"2021-10-30T07:15:24.638Z","4.5.0-dev.20211031":"2021-10-31T07:19:52.921Z","4.5.0-dev.20211101":"2021-11-01T07:20:50.937Z","4.6.0-dev.20211102":"2021-11-02T07:18:03.460Z","4.5.1-rc":"2021-11-02T22:37:41.824Z","4.6.0-dev.20211103":"2021-11-03T07:15:52.238Z","4.6.0-dev.20211104":"2021-11-04T07:19:39.022Z","4.6.0-dev.20211105":"2021-11-05T07:19:30.887Z","4.6.0-dev.20211106":"2021-11-06T07:15:20.201Z","4.6.0-dev.20211107":"2021-11-07T07:17:53.159Z","4.6.0-dev.20211108":"2021-11-08T07:17:23.303Z","4.6.0-dev.20211109":"2021-11-09T07:17:13.905Z","4.6.0-dev.20211110":"2021-11-10T07:19:49.149Z","4.6.0-dev.20211111":"2021-11-11T07:18:28.154Z","4.6.0-dev.20211112":"2021-11-12T07:17:51.956Z","4.6.0-dev.20211113":"2021-11-13T07:15:29.693Z","4.6.0-dev.20211114":"2021-11-14T07:17:50.090Z","4.6.0-dev.20211115":"2021-11-15T07:16:58.866Z","4.6.0-dev.20211116":"2021-11-16T07:15:37.701Z","4.6.0-dev.20211117":"2021-11-17T07:17:45.262Z","4.5.2":"2021-11-17T18:34:54.786Z","4.6.0-dev.20211118":"2021-11-18T07:15:12.023Z","4.6.0-dev.20211119":"2021-11-19T07:16:23.240Z","4.6.0-dev.20211120":"2021-11-20T07:15:17.189Z","4.6.0-dev.20211121":"2021-11-21T07:15:36.116Z","4.6.0-dev.20211122":"2021-11-22T07:18:27.679Z","4.6.0-dev.20211123":"2021-11-23T07:15:47.789Z","4.6.0-dev.20211124":"2021-11-24T07:18:24.115Z","4.6.0-dev.20211125":"2021-11-25T07:20:35.303Z","4.6.0-dev.20211126":"2021-11-26T07:15:11.784Z","4.6.0-dev.20211130":"2021-11-30T07:13:59.616Z","4.6.0-dev.20211201":"2021-12-01T07:20:03.377Z","4.6.0-dev.20211202":"2021-12-02T07:14:25.104Z","4.6.0-dev.20211203":"2021-12-03T07:15:08.110Z","4.6.0-dev.20211204":"2021-12-04T07:15:11.186Z","4.6.0-dev.20211205":"2021-12-05T07:19:16.319Z","4.6.0-dev.20211206":"2021-12-06T07:20:03.793Z","4.6.0-dev.20211207":"2021-12-07T07:15:34.356Z","4.6.0-dev.20211208":"2021-12-08T07:16:21.124Z","4.6.0-dev.20211209":"2021-12-09T07:17:37.110Z","4.5.3":"2021-12-09T21:45:29.052Z","4.6.0-dev.20211210":"2021-12-10T07:15:06.336Z","4.6.0-dev.20211211":"2021-12-11T07:18:06.210Z","4.6.0-dev.20211212":"2021-12-12T07:14:30.502Z","4.6.0-dev.20211213":"2021-12-13T07:15:46.380Z","4.5.4":"2021-12-13T21:51:13.842Z","4.6.0-dev.20211214":"2021-12-14T07:16:53.818Z","4.6.0-dev.20211215":"2021-12-15T07:20:04.109Z","4.6.0-dev.20211216":"2021-12-16T07:15:53.936Z","4.6.0-dev.20211218":"2021-12-18T07:17:41.673Z","4.6.0-dev.20211219":"2021-12-19T07:20:39.652Z","4.6.0-dev.20211220":"2021-12-20T07:19:56.546Z","4.6.0-dev.20211221":"2021-12-21T07:15:56.910Z","4.6.0-dev.20211222":"2021-12-22T07:15:37.201Z","4.6.0-dev.20211223":"2021-12-23T07:17:22.678Z","4.6.0-dev.20211224":"2021-12-24T07:14:28.416Z","4.6.0-dev.20211225":"2021-12-25T07:17:33.392Z","4.6.0-dev.20211226":"2021-12-26T07:20:54.375Z","4.6.0-dev.20211227":"2021-12-27T07:15:22.114Z","4.6.0-dev.20211228":"2021-12-28T07:17:56.151Z","4.6.0-dev.20211229":"2021-12-29T07:18:05.130Z","4.6.0-dev.20211230":"2021-12-30T07:14:28.348Z","4.6.0-dev.20211231":"2021-12-31T07:15:02.319Z","4.6.0-dev.20220101":"2022-01-01T07:14:58.537Z","4.6.0-dev.20220102":"2022-01-02T07:18:21.789Z","4.6.0-dev.20220103":"2022-01-03T07:15:54.899Z","4.6.0-dev.20220104":"2022-01-04T07:18:16.853Z","4.6.0-dev.20220105":"2022-01-05T07:15:31.095Z","4.6.0-dev.20220106":"2022-01-06T07:15:29.812Z","4.6.0-dev.20220107":"2022-01-07T07:17:48.337Z","4.6.0-dev.20220108":"2022-01-08T07:19:06.392Z","4.6.0-dev.20220109":"2022-01-09T07:15:23.422Z","4.6.0-dev.20220110":"2022-01-10T07:15:09.782Z","4.6.0-dev.20220111":"2022-01-11T07:16:39.632Z","4.6.0-dev.20220112":"2022-01-12T07:20:24.897Z","4.6.0-dev.20220113":"2022-01-13T07:17:57.329Z","4.6.0-dev.20220114":"2022-01-14T07:14:54.629Z","4.6.0-dev.20220115":"2022-01-15T07:17:21.092Z","4.6.0-dev.20220116":"2022-01-16T07:15:14.347Z","4.6.0-dev.20220117":"2022-01-17T07:19:50.742Z","4.6.0-dev.20220118":"2022-01-18T07:17:56.977Z","4.6.0-dev.20220119":"2022-01-19T07:19:59.098Z","4.6.0-dev.20220120":"2022-01-20T07:17:58.404Z","4.5.5":"2022-01-20T18:27:44.268Z","4.6.0-dev.20220121":"2022-01-21T07:18:52.549Z","4.6.0-beta":"2022-01-21T23:03:29.104Z","4.6.0-dev.20220122":"2022-01-22T07:15:53.915Z","4.6.0-dev.20220123":"2022-01-23T07:15:47.625Z","4.6.0-dev.20220124":"2022-01-24T07:20:15.853Z","4.6.0-dev.20220125":"2022-01-25T07:15:33.503Z","4.6.0-dev.20220126":"2022-01-26T07:15:39.899Z","4.6.0-dev.20220127":"2022-01-27T07:17:02.500Z","4.6.0-dev.20220128":"2022-01-28T07:16:08.941Z","4.6.0-dev.20220129":"2022-01-29T07:18:48.692Z","4.6.0-dev.20220130":"2022-01-30T07:15:17.962Z","4.6.0-dev.20220131":"2022-01-31T07:15:14.819Z","4.6.0-dev.20220201":"2022-02-01T07:17:08.650Z","4.6.0-dev.20220202":"2022-02-02T07:17:19.758Z","4.6.0-dev.20220203":"2022-02-03T07:17:59.652Z","4.6.0-dev.20220204":"2022-02-04T07:17:55.746Z","4.6.0-dev.20220205":"2022-02-05T07:20:10.785Z","4.6.0-dev.20220206":"2022-02-06T07:15:26.896Z","4.6.0-dev.20220207":"2022-02-07T07:20:25.005Z","4.6.0-dev.20220208":"2022-02-08T07:17:46.905Z","4.6.0-dev.20220209":"2022-02-09T07:15:29.374Z","4.6.0-dev.20220210":"2022-02-10T07:14:14.581Z","4.6.0-dev.20220211":"2022-02-11T07:17:41.836Z","4.6.1-rc":"2022-02-11T20:23:32.840Z","4.7.0-dev.20220215":"2022-02-15T07:15:07.780Z","4.7.0-dev.20220216":"2022-02-16T07:15:25.981Z","4.7.0-dev.20220217":"2022-02-17T07:17:54.319Z","4.7.0-dev.20220218":"2022-02-18T07:17:14.256Z","4.7.0-dev.20220219":"2022-02-19T07:17:40.709Z","4.7.0-dev.20220220":"2022-02-20T07:18:46.768Z","4.7.0-dev.20220221":"2022-02-21T07:19:11.238Z","4.7.0-dev.20220222":"2022-02-22T07:14:25.201Z","4.7.0-dev.20220223":"2022-02-23T07:20:35.182Z","4.7.0-dev.20220224":"2022-02-24T07:18:09.755Z","4.7.0-dev.20220225":"2022-02-25T07:21:18.295Z","4.6.2-insiders.20220225":"2022-02-25T23:02:50.777Z","4.7.0-dev.20220226":"2022-02-26T07:14:47.107Z","4.7.0-dev.20220227":"2022-02-27T07:15:18.201Z","4.7.0-dev.20220228":"2022-02-28T07:15:52.828Z","4.6.2":"2022-02-28T23:51:05.546Z","4.7.0-dev.20220301":"2022-03-01T07:14:13.608Z","4.7.0-dev.20220302":"2022-03-02T07:16:12.351Z","4.7.0-dev.20220303":"2022-03-03T07:18:15.755Z","4.7.0-dev.20220304":"2022-03-04T07:21:10.035Z","4.7.0-dev.20220305":"2022-03-05T07:15:54.539Z","4.7.0-dev.20220306":"2022-03-06T07:15:39.988Z","4.7.0-dev.20220307":"2022-03-07T07:15:08.946Z","4.7.0-dev.20220308":"2022-03-08T07:15:33.700Z","4.7.0-dev.20220309":"2022-03-09T07:20:32.983Z","4.7.0-dev.20220310":"2022-03-10T07:20:05.085Z","4.7.0-dev.20220311":"2022-03-11T07:17:18.077Z","4.7.0-dev.20220312":"2022-03-12T07:17:21.134Z","4.7.0-dev.20220313":"2022-03-13T07:15:13.939Z","4.7.0-dev.20220314":"2022-03-14T07:18:39.003Z","4.7.0-dev.20220315":"2022-03-15T07:19:46.911Z","4.7.0-dev.20220316":"2022-03-16T07:15:27.964Z","4.7.0-dev.20220317":"2022-03-17T07:15:45.048Z","4.7.0-dev.20220318":"2022-03-18T07:15:56.409Z","4.7.0-dev.20220319":"2022-03-19T07:15:10.028Z","4.7.0-dev.20220320":"2022-03-20T07:14:59.826Z","4.7.0-dev.20220321":"2022-03-21T07:15:38.100Z","4.7.0-dev.20220322":"2022-03-22T07:20:20.619Z","4.7.0-dev.20220323":"2022-03-23T07:16:40.218Z","4.6.3":"2022-03-24T22:30:40.329Z","4.7.0-dev.20220325":"2022-03-25T07:17:52.548Z","4.7.0-dev.20220326":"2022-03-26T07:14:51.285Z","4.7.0-dev.20220327":"2022-03-27T07:15:16.435Z","4.7.0-dev.20220328":"2022-03-28T07:20:57.958Z","4.7.0-dev.20220329":"2022-03-29T07:18:30.302Z","4.7.0-dev.20220330":"2022-03-30T07:15:54.897Z","4.7.0-dev.20220331":"2022-03-31T07:18:28.959Z","4.7.0-dev.20220401":"2022-04-01T07:21:19.094Z","4.7.0-dev.20220402":"2022-04-02T07:15:32.139Z","4.7.0-dev.20220403":"2022-04-03T07:15:07.355Z","4.7.0-dev.20220404":"2022-04-04T07:23:02.521Z","4.7.0-dev.20220405":"2022-04-05T07:19:42.139Z","4.7.0-dev.20220406":"2022-04-06T07:15:44.072Z","4.7.0-dev.20220408":"2022-04-08T07:15:38.287Z","4.7.0-beta":"2022-04-08T17:28:53.169Z","4.7.0-dev.20220415":"2022-04-15T07:19:03.162Z","4.7.0-dev.20220416":"2022-04-16T07:18:53.592Z","4.7.0-dev.20220417":"2022-04-17T07:15:07.596Z","4.7.0-dev.20220418":"2022-04-18T07:15:41.181Z","4.7.0-dev.20220419":"2022-04-19T07:17:14.006Z","4.7.0-dev.20220420":"2022-04-20T07:18:39.949Z","4.7.0-dev.20220421":"2022-04-21T07:15:28.829Z","4.7.0-dev.20220422":"2022-04-22T07:18:23.152Z","4.7.0-dev.20220423":"2022-04-23T07:14:25.619Z","4.7.0-dev.20220424":"2022-04-24T07:15:13.398Z","4.7.0-dev.20220425":"2022-04-25T07:20:45.229Z","4.7.0-dev.20220426":"2022-04-26T07:21:34.547Z","4.7.0-dev.20220427":"2022-04-27T07:24:10.339Z","4.7.0-dev.20220428":"2022-04-28T07:15:09.816Z","4.6.4":"2022-04-28T21:08:54.918Z","4.7.0-dev.20220429":"2022-04-29T07:18:14.686Z","4.7.0-dev.20220430":"2022-04-30T07:17:38.704Z","4.7.0-dev.20220501":"2022-05-01T07:15:59.848Z","4.7.0-dev.20220502":"2022-05-02T07:15:42.295Z","4.7.0-dev.20220503":"2022-05-03T07:15:20.421Z","4.7.0-dev.20220504":"2022-05-04T07:19:31.055Z","4.7.0-dev.20220505":"2022-05-05T07:15:31.842Z","4.7.0-dev.20220506":"2022-05-06T07:15:34.348Z","4.8.0-dev.20220507":"2022-05-07T07:17:05.967Z","4.8.0-dev.20220508":"2022-05-08T07:14:48.668Z","4.8.0-dev.20220509":"2022-05-09T07:16:12.645Z","4.8.0-dev.20220510":"2022-05-10T07:16:48.659Z","4.8.0-dev.20220511":"2022-05-11T07:21:38.303Z","4.7.1-rc":"2022-05-11T22:00:58.718Z","4.8.0-dev.20220512":"2022-05-12T07:17:10.994Z","4.8.0-dev.20220513":"2022-05-13T07:18:53.340Z","4.8.0-dev.20220514":"2022-05-14T07:20:41.583Z","4.8.0-dev.20220515":"2022-05-15T07:18:34.824Z","4.8.0-dev.20220516":"2022-05-16T07:17:36.333Z","4.8.0-dev.20220517":"2022-05-17T07:20:44.629Z","4.8.0-dev.20220518":"2022-05-18T07:14:34.324Z","4.8.0-dev.20220519":"2022-05-19T07:16:43.256Z","4.8.0-dev.20220520":"2022-05-20T07:15:57.581Z","4.8.0-dev.20220521":"2022-05-21T07:14:48.148Z","4.8.0-dev.20220522":"2022-05-22T07:15:25.604Z","4.8.0-dev.20220523":"2022-05-23T07:20:42.113Z","4.8.0-dev.20220524":"2022-05-24T07:15:40.220Z","4.7.2":"2022-05-24T18:38:10.371Z","4.8.0-dev.20220525":"2022-05-25T07:14:33.719Z","4.8.0-dev.20220526":"2022-05-26T07:18:21.204Z","4.8.0-dev.20220527":"2022-05-27T07:19:24.343Z","4.8.0-dev.20220528":"2022-05-28T07:18:32.306Z","4.8.0-dev.20220529":"2022-05-29T07:14:07.969Z","4.8.0-dev.20220530":"2022-05-30T07:16:50.078Z","4.8.0-dev.20220531":"2022-05-31T07:19:15.579Z","4.8.0-dev.20220601":"2022-06-01T07:17:01.493Z","4.8.0-dev.20220602":"2022-06-02T07:16:14.525Z","4.8.0-dev.20220603":"2022-06-03T07:17:19.810Z","4.7.3":"2022-06-03T19:15:10.904Z","4.8.0-dev.20220604":"2022-06-04T07:15:12.897Z","4.8.0-dev.20220605":"2022-06-05T07:14:57.942Z","4.8.0-dev.20220606":"2022-06-06T07:15:32.070Z","4.8.0-dev.20220608":"2022-06-08T07:17:42.089Z","4.8.0-dev.20220609":"2022-06-09T07:16:36.991Z","4.8.0-dev.20220610":"2022-06-10T07:15:57.667Z","4.8.0-dev.20220611":"2022-06-11T07:16:12.587Z","4.8.0-dev.20220612":"2022-06-12T07:15:18.672Z","4.8.0-dev.20220613":"2022-06-13T07:15:17.039Z","4.8.0-dev.20220614":"2022-06-14T07:15:18.508Z","4.8.0-dev.20220615":"2022-06-15T07:16:05.664Z","4.8.0-dev.20220616":"2022-06-16T07:21:09.544Z","4.8.0-dev.20220617":"2022-06-17T07:19:51.239Z","4.7.4":"2022-06-17T18:21:36.833Z","4.8.0-dev.20220618":"2022-06-18T07:18:28.850Z","4.8.0-dev.20220619":"2022-06-19T07:18:30.061Z","4.8.0-dev.20220620":"2022-06-20T07:23:03.694Z","4.8.0-dev.20220621":"2022-06-21T07:20:15.492Z","4.8.0-beta":"2022-06-21T22:34:49.465Z","4.8.0-dev.20220622":"2022-06-22T07:18:39.504Z","4.8.0-dev.20220623":"2022-06-23T07:15:30.511Z","4.8.0-dev.20220624":"2022-06-24T07:15:15.729Z","4.8.0-dev.20220625":"2022-06-25T07:15:05.421Z","4.8.0-dev.20220626":"2022-06-26T07:20:38.993Z","4.8.0-dev.20220627":"2022-06-27T07:15:23.449Z","4.8.0-dev.20220628":"2022-06-28T07:16:48.395Z","4.8.0-dev.20220629":"2022-06-29T07:15:52.345Z","4.8.0-dev.20220630":"2022-06-30T07:19:39.818Z","4.8.0-dev.20220701":"2022-07-01T07:17:33.377Z","4.8.0-dev.20220703":"2022-07-03T07:17:05.227Z","4.8.0-dev.20220704":"2022-07-04T07:16:26.006Z","4.8.0-dev.20220705":"2022-07-05T07:21:22.089Z","4.8.0-dev.20220706":"2022-07-06T07:16:36.570Z","4.8.0-dev.20220707":"2022-07-07T07:14:43.124Z","4.8.0-dev.20220708":"2022-07-08T07:17:10.455Z","4.8.0-dev.20220709":"2022-07-09T07:16:14.753Z","4.8.0-dev.20220710":"2022-07-10T07:15:36.417Z","4.8.0-dev.20220711":"2022-07-11T07:21:08.751Z","4.8.0-dev.20220712":"2022-07-12T07:16:18.891Z","4.8.0-dev.20220713":"2022-07-13T07:18:15.275Z","4.8.0-dev.20220714":"2022-07-14T07:21:42.269Z","4.8.0-dev.20220715":"2022-07-15T07:15:36.081Z","4.8.0-dev.20220716":"2022-07-16T07:21:40.201Z","4.8.0-dev.20220717":"2022-07-17T07:15:59.828Z","4.8.0-dev.20220718":"2022-07-18T07:15:57.908Z","4.8.0-dev.20220719":"2022-07-19T07:15:21.612Z","4.8.0-dev.20220720":"2022-07-20T07:19:01.504Z","4.8.0-dev.20220721":"2022-07-21T07:15:35.749Z","4.8.0-dev.20220722":"2022-07-22T07:17:26.707Z","4.8.0-dev.20220723":"2022-07-23T07:17:54.354Z","4.8.0-dev.20220724":"2022-07-24T07:23:16.122Z","4.8.0-dev.20220725":"2022-07-25T07:20:18.537Z","4.8.0-dev.20220726":"2022-07-26T07:20:41.665Z","4.8.0-dev.20220727":"2022-07-27T07:15:20.475Z","4.8.0-dev.20220728":"2022-07-28T07:16:43.033Z","4.8.0-dev.20220729":"2022-07-29T07:14:47.149Z","4.8.0-dev.20220730":"2022-07-30T07:21:39.141Z","4.8.0-dev.20220731":"2022-07-31T07:16:03.099Z","4.8.0-dev.20220801":"2022-08-01T07:22:41.479Z","4.8.0-dev.20220802":"2022-08-02T07:16:06.811Z","4.8.0-dev.20220803":"2022-08-03T07:16:03.966Z","4.8.0-dev.20220804":"2022-08-04T07:19:34.415Z","4.8.0-dev.20220805":"2022-08-05T07:15:27.591Z","4.8.0-dev.20220806":"2022-08-06T07:16:31.292Z","4.8.0-dev.20220807":"2022-08-07T07:15:46.426Z","4.8.0-dev.20220808":"2022-08-08T07:17:18.491Z","4.8.0-dev.20220809":"2022-08-09T07:22:03.261Z","4.9.0-dev.20220811":"2022-08-11T07:15:08.935Z","4.8.1-rc":"2022-08-11T18:34:23.532Z","4.9.0-dev.20220812":"2022-08-12T07:16:20.583Z","4.9.0-dev.20220813":"2022-08-13T07:15:08.554Z","4.9.0-dev.20220814":"2022-08-14T07:15:54.459Z","4.9.0-dev.20220815":"2022-08-15T07:14:57.236Z","4.9.0-dev.20220816":"2022-08-16T18:45:32.862Z","4.9.0-dev.20220817":"2022-08-17T07:18:37.175Z","4.9.0-dev.20220818":"2022-08-18T07:15:58.905Z","4.9.0-dev.20220819":"2022-08-19T07:15:16.054Z","4.9.0-dev.20220820":"2022-08-20T07:17:11.941Z","4.9.0-dev.20220821":"2022-08-21T07:15:05.619Z","4.9.0-dev.20220822":"2022-08-22T07:15:49.095Z","4.9.0-dev.20220823":"2022-08-23T07:17:47.564Z","4.9.0-dev.20220824":"2022-08-24T07:21:35.567Z","4.9.0-dev.20220825":"2022-08-25T07:19:50.779Z","4.8.2":"2022-08-25T23:05:19.632Z","4.9.0-dev.20220827":"2022-08-27T07:15:05.706Z","4.9.0-dev.20220828":"2022-08-28T07:17:33.289Z","4.9.0-dev.20220829":"2022-08-29T07:21:37.606Z","4.9.0-dev.20220830":"2022-08-30T07:27:45.255Z","4.9.0-dev.20220831":"2022-08-31T07:28:04.207Z","4.9.0-dev.20220901":"2022-09-01T07:16:54.224Z","4.9.0-dev.20220902":"2022-09-02T07:25:28.649Z","4.9.0-dev.20220903":"2022-09-03T07:15:39.020Z","4.9.0-dev.20220904":"2022-09-04T07:15:51.332Z","4.9.0-dev.20220905":"2022-09-05T07:28:08.164Z","4.9.0-dev.20220907":"2022-09-07T07:28:52.281Z","4.9.0-dev.20220908":"2022-09-08T07:24:48.100Z","4.8.3":"2022-09-08T17:14:39.225Z","4.9.0-dev.20220909":"2022-09-09T07:24:28.762Z","4.9.0-dev.20220910":"2022-09-10T07:20:24.551Z","4.9.0-dev.20220911":"2022-09-11T07:22:05.526Z","4.9.0-dev.20220912":"2022-09-12T07:31:16.619Z","4.9.0-dev.20220913":"2022-09-13T07:29:50.371Z","4.9.0-dev.20220914":"2022-09-14T07:26:35.406Z","4.9.0-dev.20220915":"2022-09-15T07:25:03.460Z","4.9.0-dev.20220916":"2022-09-16T07:28:31.679Z","4.9.0-dev.20220917":"2022-09-17T07:15:31.365Z","4.9.0-dev.20220918":"2022-09-18T07:16:02.314Z","4.9.0-dev.20220919":"2022-09-19T07:34:17.675Z","4.9.0-dev.20220920":"2022-09-20T07:23:33.215Z","4.9.0-dev.20220921":"2022-09-21T07:33:50.239Z","4.9.0-dev.20220922":"2022-09-22T07:25:13.408Z","4.9.0-dev.20220923":"2022-09-23T07:25:13.946Z","4.9.0-beta":"2022-09-23T19:47:26.674Z","4.9.1-beta":"2022-09-23T23:16:27.997Z","4.9.0-dev.20220924":"2022-09-24T07:21:49.898Z","4.9.0-dev.20220925":"2022-09-25T07:15:32.359Z","4.9.0-dev.20220926":"2022-09-26T07:26:22.304Z","4.9.0-dev.20220927":"2022-09-27T07:28:25.824Z","4.8.4":"2022-09-27T19:58:38.001Z","4.9.0-dev.20220928":"2022-09-28T07:23:55.693Z","4.9.0-dev.20220929":"2022-09-29T07:25:54.518Z","4.9.0-dev.20220930":"2022-09-30T07:27:37.420Z","4.9.0-dev.20221001":"2022-10-01T07:25:07.493Z","4.9.0-dev.20221002":"2022-10-02T07:18:56.935Z","4.9.0-dev.20221003":"2022-10-03T07:21:37.158Z","4.9.0-dev.20221004":"2022-10-04T07:24:21.250Z","4.9.0-dev.20221005":"2022-10-05T07:23:58.009Z","4.9.0-dev.20221006":"2022-10-06T07:18:59.186Z","4.9.0-dev.20221007":"2022-10-07T07:20:59.691Z","4.9.0-dev.20221011":"2022-10-11T07:27:19.265Z","4.9.0-dev.20221012":"2022-10-12T07:21:49.045Z","4.9.0-dev.20221013":"2022-10-13T07:31:34.990Z","4.9.0-dev.20221014":"2022-10-14T07:24:47.355Z","4.9.0-dev.20221015":"2022-10-15T07:23:36.668Z","4.9.0-dev.20221016":"2022-10-16T07:18:00.982Z","4.9.0-dev.20221017":"2022-10-17T07:31:45.193Z","4.9.0-dev.20221018":"2022-10-18T07:29:55.201Z","4.9.0-dev.20221019":"2022-10-19T07:31:59.108Z","4.9.0-dev.20221020":"2022-10-20T07:22:10.359Z","4.9.0-dev.20221021":"2022-10-21T07:23:29.536Z","4.9.0-dev.20221022":"2022-10-22T07:19:06.341Z","4.9.0-dev.20221023":"2022-10-23T07:19:12.091Z","4.9.0-dev.20221024":"2022-10-24T07:33:24.668Z","4.9.0-dev.20221025":"2022-10-25T07:32:30.918Z","4.9.0-dev.20221026":"2022-10-26T07:22:53.444Z","4.9.0-dev.20221027":"2022-10-27T07:15:41.928Z","4.9.0-dev.20221028":"2022-10-28T07:20:09.323Z","4.9.0-dev.20221029":"2022-10-29T07:15:12.987Z","4.9.0-dev.20221030":"2022-10-30T07:16:12.374Z","4.9.0-dev.20221031":"2022-10-31T07:16:00.292Z","5.0.0-dev.20221101":"2022-11-01T07:16:16.565Z","4.9.2-rc":"2022-11-01T21:16:27.458Z","5.0.0-dev.20221102":"2022-11-02T07:16:00.913Z","5.0.0-dev.20221103":"2022-11-03T07:13:52.753Z","5.0.0-dev.20221108":"2022-11-08T07:12:38.711Z","5.0.0-dev.20221109":"2022-11-09T07:17:42.153Z","5.0.0-dev.20221110":"2022-11-10T07:11:51.143Z","5.0.0-dev.20221111":"2022-11-11T07:13:35.904Z","5.0.0-dev.20221112":"2022-11-12T07:12:55.649Z","5.0.0-dev.20221113":"2022-11-13T07:12:51.484Z","5.0.0-dev.20221114":"2022-11-14T07:12:21.118Z","5.0.0-dev.20221115":"2022-11-15T07:11:44.698Z","4.9.3":"2022-11-15T18:52:52.188Z","5.0.0-dev.20221116":"2022-11-16T07:15:26.209Z","5.0.0-dev.20221117":"2022-11-17T07:12:07.555Z","5.0.0-dev.20221118":"2022-11-18T07:11:22.933Z","5.0.0-dev.20221119":"2022-11-19T07:16:05.955Z","5.0.0-dev.20221120":"2022-11-20T07:14:43.956Z","5.0.0-dev.20221121":"2022-11-21T07:12:23.486Z","5.0.0-dev.20221122":"2022-11-22T07:16:52.824Z","5.0.0-dev.20221123":"2022-11-23T07:13:10.957Z","5.0.0-dev.20221124":"2022-11-24T07:14:08.449Z","5.0.0-dev.20221125":"2022-11-25T07:12:15.600Z","5.0.0-dev.20221126":"2022-11-26T07:11:45.580Z","5.0.0-dev.20221127":"2022-11-27T07:17:31.892Z","5.0.0-dev.20221128":"2022-11-28T07:14:42.595Z","5.0.0-dev.20221129":"2022-11-29T07:12:47.304Z","5.0.0-dev.20221130":"2022-11-30T07:12:04.902Z","5.0.0-dev.20221201":"2022-12-01T07:12:55.129Z","5.0.0-dev.20221202":"2022-12-02T07:12:13.241Z","5.0.0-dev.20221203":"2022-12-03T07:17:15.562Z","5.0.0-dev.20221204":"2022-12-04T07:16:44.973Z","5.0.0-dev.20221205":"2022-12-05T07:12:55.651Z","5.0.0-dev.20221206":"2022-12-06T07:15:25.401Z","5.0.0-dev.20221207":"2022-12-07T07:12:10.488Z","4.9.4":"2022-12-07T23:53:20.434Z","5.0.0-dev.20221208":"2022-12-08T07:16:19.386Z","5.0.0-dev.20221209":"2022-12-09T07:12:01.367Z","5.0.0-dev.20221210":"2022-12-10T07:13:08.419Z","5.0.0-dev.20221211":"2022-12-11T07:12:31.720Z","5.0.0-dev.20221212":"2022-12-12T07:15:54.129Z","5.0.0-dev.20221213":"2022-12-13T07:16:26.153Z","5.0.0-dev.20221214":"2022-12-14T07:11:58.982Z","5.0.0-dev.20221215":"2022-12-15T07:14:24.737Z","5.0.0-dev.20221216":"2022-12-16T07:12:25.638Z","5.0.0-dev.20221217":"2022-12-17T07:12:37.567Z","5.0.0-dev.20221218":"2022-12-18T07:11:12.000Z","5.0.0-dev.20221219":"2022-12-19T07:11:38.691Z","5.0.0-dev.20221220":"2022-12-20T07:14:32.968Z","5.0.0-dev.20221221":"2022-12-21T07:14:19.927Z","5.0.0-dev.20221222":"2022-12-22T07:12:02.014Z","5.0.0-dev.20221223":"2022-12-23T07:16:14.738Z","5.0.0-dev.20221224":"2022-12-24T07:11:15.712Z","5.0.0-dev.20221225":"2022-12-25T07:16:04.922Z","5.0.0-dev.20221226":"2022-12-26T07:12:00.467Z","5.0.0-dev.20221227":"2022-12-27T07:11:29.646Z","5.0.0-dev.20221228":"2022-12-28T07:12:16.628Z","5.0.0-dev.20221229":"2022-12-29T07:16:07.745Z","5.0.0-dev.20221230":"2022-12-30T07:11:53.742Z","5.0.0-dev.20221231":"2022-12-31T07:16:38.608Z","5.0.0-dev.20230101":"2023-01-01T07:12:30.469Z","5.0.0-dev.20230102":"2023-01-02T07:11:38.365Z","5.0.0-dev.20230103":"2023-01-03T07:14:09.765Z","5.0.0-dev.20230104":"2023-01-04T07:14:28.699Z","5.0.0-dev.20230105":"2023-01-05T07:15:00.357Z","5.0.0-dev.20230106":"2023-01-06T07:12:03.741Z","5.0.0-dev.20230107":"2023-01-07T07:12:48.462Z","5.0.0-dev.20230108":"2023-01-08T07:14:36.889Z","5.0.0-dev.20230109":"2023-01-09T07:12:28.297Z","5.0.0-dev.20230110":"2023-01-10T07:14:47.116Z","5.0.0-dev.20230111":"2023-01-11T07:12:33.318Z","5.0.0-dev.20230112":"2023-01-12T07:16:49.629Z","5.0.0-dev.20230113":"2023-01-13T07:14:32.204Z","5.0.0-dev.20230114":"2023-01-14T07:11:35.205Z","5.0.0-dev.20230115":"2023-01-15T07:11:44.133Z","5.0.0-dev.20230116":"2023-01-16T07:12:31.572Z","5.0.0-dev.20230117":"2023-01-17T07:11:37.402Z","5.0.0-dev.20230118":"2023-01-18T07:12:42.302Z","5.0.0-dev.20230119":"2023-01-19T07:12:03.833Z","5.0.0-dev.20230120":"2023-01-20T07:12:35.571Z","5.0.0-dev.20230121":"2023-01-21T07:14:36.940Z","5.0.0-dev.20230122":"2023-01-22T07:18:05.763Z","5.0.0-dev.20230123":"2023-01-23T07:12:13.661Z","5.0.0-dev.20230125":"2023-01-25T07:14:57.366Z","5.0.0-dev.20230126":"2023-01-26T07:15:34.541Z","5.0.0-beta":"2023-01-26T20:44:26.509Z","5.0.0-dev.20230127":"2023-01-27T07:14:51.254Z","5.0.0-dev.20230128":"2023-01-28T07:16:16.056Z","5.0.0-dev.20230129":"2023-01-29T07:16:23.470Z","5.0.0-dev.20230130":"2023-01-30T07:11:47.668Z","4.9.5":"2023-01-30T21:05:37.231Z","5.0.0-dev.20230131":"2023-01-31T07:11:46.501Z","5.0.0-dev.20230201":"2023-02-01T07:11:56.418Z","5.0.0-dev.20230202":"2023-02-02T07:11:42.867Z","5.0.0-dev.20230203":"2023-02-03T07:16:36.735Z","5.0.0-dev.20230204":"2023-02-04T07:12:47.103Z","5.0.0-dev.20230205":"2023-02-05T07:12:26.031Z","5.0.0-dev.20230206":"2023-02-06T07:11:42.849Z","5.0.0-dev.20230207":"2023-02-07T07:12:39.143Z","5.0.0-dev.20230208":"2023-02-08T07:12:56.983Z","5.0.0-dev.20230209":"2023-02-09T07:16:02.920Z","5.0.0-dev.20230210":"2023-02-10T07:11:59.643Z","5.0.0-dev.20230211":"2023-02-11T07:12:48.820Z","5.0.0-dev.20230212":"2023-02-12T07:11:26.552Z","5.0.0-dev.20230213":"2023-02-13T07:11:55.908Z","5.0.0-dev.20230214":"2023-02-14T07:11:59.246Z","5.0.0-dev.20230215":"2023-02-15T07:14:23.835Z","5.0.0-dev.20230216":"2023-02-16T07:12:55.368Z","5.0.0-dev.20230217":"2023-02-17T07:12:55.433Z","5.0.0-dev.20230218":"2023-02-18T07:15:19.049Z","5.0.0-dev.20230219":"2023-02-19T07:16:33.621Z","5.0.0-dev.20230220":"2023-02-20T07:11:27.883Z","5.0.0-dev.20230221":"2023-02-21T07:11:37.784Z","5.0.0-dev.20230222":"2023-02-22T07:14:07.081Z","5.0.0-dev.20230223":"2023-02-23T07:11:21.659Z","5.0.0-dev.20230224":"2023-02-24T07:11:25.910Z","5.0.0-dev.20230225":"2023-02-25T07:12:19.717Z","5.0.0-dev.20230226":"2023-02-26T07:11:55.534Z","5.1.0-dev.20230227":"2023-02-27T07:12:10.507Z","5.1.0-dev.20230301":"2023-03-01T07:12:36.095Z","5.0.1-rc":"2023-03-01T21:27:47.103Z","5.1.0-dev.20230302":"2023-03-02T07:14:54.843Z","5.1.0-dev.20230303":"2023-03-03T07:11:59.057Z","5.1.0-dev.20230304":"2023-03-04T07:13:00.673Z","5.1.0-dev.20230305":"2023-03-05T07:12:42.156Z","5.1.0-dev.20230306":"2023-03-06T07:12:08.805Z","5.1.0-dev.20230307":"2023-03-07T07:12:15.359Z","5.1.0-dev.20230308":"2023-03-08T07:11:07.341Z","5.1.0-dev.20230309":"2023-03-09T07:12:02.018Z","5.1.0-dev.20230310":"2023-03-10T07:12:12.650Z","5.1.0-dev.20230311":"2023-03-11T07:10:57.457Z","5.1.0-dev.20230312":"2023-03-12T07:13:28.052Z","5.1.0-dev.20230313":"2023-03-13T07:11:49.777Z","5.1.0-dev.20230315":"2023-03-15T07:13:03.204Z","5.1.0-dev.20230316":"2023-03-16T07:12:10.165Z","5.0.2":"2023-03-16T16:41:18.461Z","5.1.0-dev.20230317":"2023-03-17T07:12:40.386Z","5.1.0-dev.20230318":"2023-03-18T07:13:22.999Z","5.1.0-dev.20230319":"2023-03-19T07:11:57.533Z","5.1.0-dev.20230320":"2023-03-20T07:12:01.176Z","5.1.0-dev.20230321":"2023-03-21T07:12:47.175Z","5.1.0-dev.20230322":"2023-03-22T07:14:37.250Z","5.1.0-dev.20230323":"2023-03-23T07:12:20.738Z","5.1.0-dev.20230324":"2023-03-24T07:11:59.901Z","5.1.0-dev.20230325":"2023-03-25T07:12:38.653Z","5.1.0-dev.20230326":"2023-03-26T07:14:06.000Z","5.1.0-dev.20230327":"2023-03-27T07:11:56.844Z","5.1.0-dev.20230328":"2023-03-28T07:12:53.811Z","5.1.0-dev.20230329":"2023-03-29T07:16:20.838Z","5.1.0-dev.20230330":"2023-03-30T07:12:22.058Z","5.0.3":"2023-03-30T20:51:58.227Z","5.1.0-dev.20230331":"2023-03-31T07:17:57.548Z","5.1.0-dev.20230401":"2023-04-01T07:11:36.013Z","5.1.0-dev.20230402":"2023-04-02T07:12:18.125Z","5.1.0-dev.20230403":"2023-04-03T07:12:02.655Z","5.1.0-dev.20230404":"2023-04-04T07:14:58.935Z","5.1.0-dev.20230405":"2023-04-05T07:15:19.127Z","5.1.0-dev.20230406":"2023-04-06T07:15:26.448Z","5.1.0-dev.20230407":"2023-04-07T07:12:28.811Z","5.0.4":"2023-04-07T17:52:25.635Z","5.1.0-dev.20230408":"2023-04-08T07:14:52.781Z","5.1.0-dev.20230409":"2023-04-09T07:20:45.412Z","5.1.0-dev.20230410":"2023-04-10T07:12:55.609Z","5.1.0-dev.20230411":"2023-04-11T07:12:51.256Z","5.1.0-dev.20230412":"2023-04-12T07:12:46.431Z","5.1.0-dev.20230413":"2023-04-13T07:15:08.888Z","5.1.0-dev.20230414":"2023-04-14T07:12:45.653Z","5.1.0-dev.20230415":"2023-04-15T07:12:27.219Z","5.1.0-dev.20230416":"2023-04-16T07:12:32.464Z","5.1.0-dev.20230417":"2023-04-17T07:13:01.756Z","5.1.0-dev.20230418":"2023-04-18T07:16:09.318Z","5.1.0-beta":"2023-04-18T22:16:10.003Z","5.1.0-dev.20230419":"2023-04-19T07:16:47.341Z","5.1.0-dev.20230420":"2023-04-20T07:16:05.338Z","5.1.0-dev.20230421":"2023-04-21T07:12:47.410Z","5.1.0-dev.20230422":"2023-04-22T07:14:11.772Z","5.1.0-dev.20230423":"2023-04-23T07:11:56.351Z","5.1.0-dev.20230424":"2023-04-24T07:12:57.494Z","5.1.0-dev.20230425":"2023-04-25T07:13:10.353Z","5.1.0-dev.20230426":"2023-04-26T07:17:41.693Z","5.1.0-dev.20230427":"2023-04-27T07:18:02.593Z","5.1.0-dev.20230428":"2023-04-28T07:18:33.909Z","5.1.0-dev.20230429":"2023-04-29T07:11:58.810Z","5.1.0-dev.20230430":"2023-04-30T07:12:15.929Z","5.1.0-dev.20230501":"2023-05-01T07:13:25.006Z","5.1.0-dev.20230502":"2023-05-02T07:13:11.518Z","5.1.0-dev.20230506":"2023-05-06T07:17:38.162Z","5.1.0-dev.20230507":"2023-05-07T07:12:23.990Z","5.1.0-dev.20230508":"2023-05-08T07:18:36.691Z","5.1.0-dev.20230509":"2023-05-09T07:15:14.497Z","5.1.0-dev.20230510":"2023-05-10T07:14:04.692Z","5.1.0-dev.20230511":"2023-05-11T07:12:37.388Z","5.1.0-dev.20230512":"2023-05-12T07:13:00.652Z","5.1.0-dev.20230513":"2023-05-13T07:15:44.939Z","5.1.0-dev.20230514":"2023-05-14T07:13:58.063Z","5.1.0-dev.20230515":"2023-05-15T07:13:16.485Z","5.2.0-dev.20230516":"2023-05-16T07:13:14.611Z","5.2.0-dev.20230517":"2023-05-17T07:12:13.382Z","5.2.0-dev.20230518":"2023-05-18T07:14:35.622Z","5.1.1-rc":"2023-05-18T20:54:38.904Z","5.2.0-dev.20230519":"2023-05-19T07:12:48.928Z","5.2.0-dev.20230520":"2023-05-20T07:12:48.676Z","5.2.0-dev.20230521":"2023-05-21T07:13:06.736Z","5.2.0-dev.20230522":"2023-05-22T07:16:53.885Z","5.2.0-dev.20230523":"2023-05-23T07:15:09.561Z","5.2.0-dev.20230524":"2023-05-24T07:14:53.269Z","5.2.0-dev.20230526":"2023-05-26T07:14:26.666Z","5.2.0-dev.20230527":"2023-05-27T07:18:28.688Z","5.2.0-dev.20230528":"2023-05-28T07:13:03.191Z","5.2.0-dev.20230529":"2023-05-29T07:12:58.109Z","5.2.0-dev.20230530":"2023-05-30T07:13:13.238Z","5.2.0-dev.20230531":"2023-05-31T07:14:48.289Z","5.2.0-dev.20230601":"2023-06-01T07:13:23.761Z","5.1.3":"2023-06-01T17:29:55.756Z","5.2.0-dev.20230602":"2023-06-02T07:15:11.541Z","5.2.0-dev.20230603":"2023-06-03T07:12:24.354Z","5.2.0-dev.20230604":"2023-06-04T07:12:44.553Z","5.2.0-dev.20230605":"2023-06-05T07:13:00.132Z","5.2.0-dev.20230606":"2023-06-06T07:12:29.973Z","5.2.0-dev.20230607":"2023-06-07T07:15:05.849Z","5.2.0-dev.20230608":"2023-06-08T07:12:21.669Z","5.2.0-dev.20230609":"2023-06-09T07:12:47.670Z","5.2.0-dev.20230610":"2023-06-10T07:16:19.591Z","5.2.0-dev.20230611":"2023-06-11T07:12:18.858Z","5.2.0-dev.20230612":"2023-06-12T07:13:14.227Z","5.2.0-dev.20230613":"2023-06-13T07:15:28.989Z","5.2.0-dev.20230614":"2023-06-14T07:13:07.978Z","5.2.0-dev.20230615":"2023-06-15T07:15:19.207Z","5.2.0-dev.20230616":"2023-06-16T07:17:52.199Z","5.2.0-dev.20230617":"2023-06-17T07:18:36.913Z","5.2.0-dev.20230618":"2023-06-18T07:17:01.591Z","5.2.0-dev.20230619":"2023-06-19T07:12:58.183Z","5.2.0-dev.20230620":"2023-06-20T07:13:04.867Z","5.2.0-dev.20230621":"2023-06-21T07:12:49.793Z","5.2.0-dev.20230622":"2023-06-22T07:12:11.257Z","5.2.0-dev.20230623":"2023-06-23T07:13:12.013Z","5.2.0-dev.20230624":"2023-06-24T07:13:06.648Z","5.2.0-dev.20230625":"2023-06-25T07:13:47.623Z","5.2.0-dev.20230626":"2023-06-26T07:18:33.596Z","5.2.0-dev.20230627":"2023-06-27T07:13:19.198Z","5.1.5":"2023-06-27T22:53:08.341Z","5.2.0-dev.20230628":"2023-06-28T07:12:34.580Z","5.1.6":"2023-06-28T23:08:38.755Z","5.2.0-dev.20230629":"2023-06-29T07:13:03.067Z","5.2.0-dev.20230630":"2023-06-30T07:12:52.956Z","5.2.0-beta":"2023-06-30T15:49:53.221Z","5.2.0-dev.20230701":"2023-07-01T07:13:52.317Z","5.2.0-dev.20230702":"2023-07-02T07:15:56.026Z","5.2.0-dev.20230703":"2023-07-03T07:13:24.287Z","5.2.0-dev.20230704":"2023-07-04T07:12:40.077Z","5.2.0-dev.20230705":"2023-07-05T07:13:48.423Z","5.2.0-dev.20230706":"2023-07-06T07:14:10.521Z","5.2.0-dev.20230707":"2023-07-07T07:12:51.499Z","5.2.0-dev.20230708":"2023-07-08T07:12:58.544Z","5.2.0-dev.20230709":"2023-07-09T07:13:03.645Z","5.2.0-dev.20230710":"2023-07-10T07:13:08.384Z","5.2.0-dev.20230711":"2023-07-11T07:13:37.792Z","5.2.0-dev.20230712":"2023-07-12T07:13:35.733Z","5.2.0-dev.20230713":"2023-07-13T07:15:36.049Z","5.2.0-dev.20230714":"2023-07-14T07:12:52.627Z","5.2.0-dev.20230715":"2023-07-15T07:13:40.210Z","5.2.0-dev.20230716":"2023-07-16T07:13:09.751Z","5.2.0-dev.20230717":"2023-07-17T07:12:26.614Z","5.2.0-dev.20230718":"2023-07-18T07:17:48.462Z","5.2.0-dev.20230719":"2023-07-19T07:13:09.981Z","5.2.0-dev.20230720":"2023-07-20T07:13:03.365Z","5.2.0-dev.20230721":"2023-07-21T07:13:09.755Z","5.2.0-dev.20230722":"2023-07-22T07:13:51.464Z","5.2.0-dev.20230723":"2023-07-23T07:13:58.280Z","5.2.0-dev.20230724":"2023-07-24T07:13:11.578Z","5.2.0-dev.20230725":"2023-07-25T07:16:19.413Z","5.2.0-dev.20230726":"2023-07-26T07:16:02.492Z","5.2.0-dev.20230727":"2023-07-27T07:16:35.002Z","5.2.0-dev.20230728":"2023-07-28T07:15:59.009Z","5.2.0-dev.20230729":"2023-07-29T07:12:58.739Z","5.2.0-dev.20230730":"2023-07-30T07:19:25.378Z","5.2.0-dev.20230731":"2023-07-31T07:12:47.269Z","5.2.0-dev.20230801":"2023-08-01T07:14:58.886Z","5.2.0-dev.20230802":"2023-08-02T07:14:36.036Z","5.2.0-dev.20230803":"2023-08-03T07:13:35.787Z","5.2.0-dev.20230804":"2023-08-04T07:17:44.999Z","5.2.0-dev.20230805":"2023-08-05T07:15:57.524Z","5.2.0-dev.20230806":"2023-08-06T07:18:44.271Z","5.2.0-dev.20230807":"2023-08-07T07:14:16.852Z","5.3.0-dev.20230808":"2023-08-08T07:15:02.326Z","5.3.0-dev.20230809":"2023-08-09T07:14:04.477Z","5.2.1-rc":"2023-08-09T18:02:32.089Z","5.3.0-dev.20230810":"2023-08-10T07:14:20.791Z","5.3.0-dev.20230811":"2023-08-11T07:18:48.411Z","5.3.0-dev.20230812":"2023-08-12T07:13:06.416Z","5.3.0-dev.20230813":"2023-08-13T07:17:44.707Z","5.3.0-dev.20230814":"2023-08-14T07:15:19.032Z","5.3.0-dev.20230815":"2023-08-15T07:12:47.726Z","5.3.0-dev.20230816":"2023-08-16T07:15:32.876Z","5.3.0-dev.20230817":"2023-08-17T07:12:52.520Z","5.3.0-dev.20230818":"2023-08-18T07:12:40.698Z","5.3.0-dev.20230819":"2023-08-19T07:12:49.841Z","5.3.0-dev.20230820":"2023-08-20T07:13:26.755Z","5.3.0-dev.20230821":"2023-08-21T07:16:54.380Z","5.3.0-dev.20230822":"2023-08-22T07:16:00.310Z","5.3.0-dev.20230823":"2023-08-23T07:18:13.799Z","5.3.0-dev.20230824":"2023-08-24T07:16:04.128Z","5.2.2":"2023-08-24T16:38:15.233Z","5.3.0-dev.20230825":"2023-08-25T07:14:18.623Z","5.3.0-dev.20230826":"2023-08-26T07:13:02.444Z","5.3.0-dev.20230827":"2023-08-27T07:15:54.599Z","5.3.0-dev.20230828":"2023-08-28T07:13:59.429Z","5.3.0-dev.20230829":"2023-08-29T07:18:58.535Z","5.3.0-dev.20230830":"2023-08-30T07:12:49.423Z","5.3.0-dev.20230831":"2023-08-31T07:14:30.804Z","5.3.0-dev.20230901":"2023-09-01T07:13:35.836Z","5.3.0-dev.20230902":"2023-09-02T07:13:10.074Z","5.3.0-dev.20230903":"2023-09-03T07:13:33.849Z","5.3.0-dev.20230904":"2023-09-04T07:13:27.096Z","5.3.0-dev.20230905":"2023-09-05T09:34:10.691Z","5.3.0-dev.20230906":"2023-09-06T07:13:28.638Z","5.3.0-dev.20230907":"2023-09-07T07:13:25.246Z","5.3.0-dev.20230908":"2023-09-08T07:13:03.942Z","5.3.0-dev.20230909":"2023-09-09T07:13:59.515Z","5.3.0-dev.20230910":"2023-09-10T07:12:39.430Z","5.3.0-dev.20230911":"2023-09-11T07:13:45.474Z","5.3.0-dev.20230912":"2023-09-12T07:13:40.701Z","5.3.0-dev.20230913":"2023-09-13T07:14:01.039Z","5.3.0-dev.20230914":"2023-09-14T07:13:37.689Z","5.3.0-dev.20230915":"2023-09-15T07:13:43.056Z","5.3.0-dev.20230916":"2023-09-16T07:18:24.296Z","5.3.0-dev.20230917":"2023-09-17T07:13:13.332Z","5.3.0-dev.20230918":"2023-09-18T07:14:52.671Z","5.3.0-dev.20230919":"2023-09-19T07:14:28.030Z","5.3.0-dev.20230920":"2023-09-20T07:14:59.749Z","5.3.0-dev.20230921":"2023-09-21T07:20:32.416Z","5.3.0-dev.20230922":"2023-09-22T07:13:30.147Z","5.3.0-dev.20230923":"2023-09-23T07:18:45.612Z","5.3.0-dev.20230924":"2023-09-24T07:13:12.660Z","5.3.0-dev.20230925":"2023-09-25T07:14:46.805Z","5.3.0-dev.20230926":"2023-09-26T07:14:31.655Z","5.3.0-dev.20230927":"2023-09-27T07:14:19.840Z","5.3.0-dev.20230928":"2023-09-28T07:14:39.578Z","5.3.0-dev.20230929":"2023-09-29T07:13:36.095Z","5.3.0-dev.20230930":"2023-09-30T07:14:08.824Z","5.3.0-dev.20231001":"2023-10-01T07:15:10.835Z","5.3.0-dev.20231002":"2023-10-02T07:14:00.340Z","5.3.0-dev.20231003":"2023-10-03T07:14:55.989Z","5.3.0-beta":"2023-10-03T17:00:09.541Z","5.3.0-dev.20231004":"2023-10-04T07:13:18.376Z","5.3.0-dev.20231005":"2023-10-05T07:15:28.626Z","5.3.0-dev.20231006":"2023-10-06T07:18:54.130Z","5.3.0-dev.20231007":"2023-10-07T07:14:34.349Z","5.3.0-dev.20231008":"2023-10-08T07:14:19.233Z","5.3.0-dev.20231009":"2023-10-09T07:16:33.686Z","5.3.0-dev.20231010":"2023-10-10T07:13:25.139Z","5.3.0-dev.20231011":"2023-10-11T07:14:29.572Z","5.3.0-dev.20231012":"2023-10-12T07:19:10.417Z","5.3.0-dev.20231013":"2023-10-13T07:23:35.201Z","5.3.0-dev.20231014":"2023-10-14T07:13:10.050Z","5.3.0-dev.20231015":"2023-10-15T07:18:07.001Z","5.3.0-dev.20231016":"2023-10-16T07:14:59.262Z","5.3.0-dev.20231017":"2023-10-17T07:14:15.465Z","5.3.0-dev.20231018":"2023-10-18T07:13:57.077Z","5.3.0-dev.20231019":"2023-10-19T07:15:00.324Z","5.3.0-dev.20231020":"2023-10-20T07:17:50.097Z","5.3.0-dev.20231021":"2023-10-21T07:17:39.666Z","5.3.0-dev.20231022":"2023-10-22T07:14:41.383Z","5.3.0-dev.20231023":"2023-10-23T07:15:23.063Z","5.3.0-dev.20231024":"2023-10-24T07:14:16.652Z","5.3.0-dev.20231025":"2023-10-25T07:16:14.116Z","5.3.0-dev.20231026":"2023-10-26T07:17:17.916Z","5.3.0-dev.20231027":"2023-10-27T07:14:42.199Z","5.3.0-dev.20231028":"2023-10-28T07:17:20.462Z","5.3.0-dev.20231029":"2023-10-29T07:15:01.356Z","5.3.0-dev.20231030":"2023-10-30T07:13:58.652Z","5.3.0-dev.20231031":"2023-10-31T07:17:14.231Z","5.3.0-dev.20231101":"2023-11-01T07:17:22.653Z","5.3.0-dev.20231102":"2023-11-02T07:18:46.928Z","5.4.0-dev.20231103":"2023-11-03T07:13:35.493Z","5.3.1-rc":"2023-11-03T17:37:53.673Z","5.4.0-dev.20231104":"2023-11-04T07:15:17.689Z","5.4.0-dev.20231105":"2023-11-05T07:16:55.490Z","5.4.0-dev.20231106":"2023-11-06T07:17:59.162Z","5.4.0-dev.20231107":"2023-11-07T07:13:54.342Z","5.4.0-dev.20231108":"2023-11-08T07:09:46.217Z","5.4.0-dev.20231109":"2023-11-09T07:09:45.283Z","5.4.0-dev.20231110":"2023-11-10T07:09:48.475Z","5.4.0-dev.20231111":"2023-11-11T07:09:41.777Z","5.4.0-dev.20231112":"2023-11-12T07:18:10.182Z","5.4.0-dev.20231113":"2023-11-13T07:14:08.680Z","5.4.0-dev.20231114":"2023-11-14T07:09:54.119Z","5.4.0-dev.20231115":"2023-11-15T07:09:44.996Z","5.4.0-dev.20231116":"2023-11-16T07:10:02.435Z","5.4.0-dev.20231117":"2023-11-17T07:09:46.149Z","5.4.0-dev.20231118":"2023-11-18T07:09:41.754Z","5.4.0-dev.20231119":"2023-11-19T07:09:52.016Z","5.4.0-dev.20231120":"2023-11-20T07:09:56.350Z","5.3.2":"2023-11-20T17:35:59.945Z","5.4.0-dev.20231121":"2023-11-21T07:10:01.670Z","5.4.0-dev.20231122":"2023-11-22T07:09:51.583Z","5.4.0-dev.20231123":"2023-11-23T07:09:45.988Z","5.4.0-dev.20231124":"2023-11-24T07:09:38.084Z","5.4.0-dev.20231125":"2023-11-25T07:09:50.428Z","5.4.0-dev.20231126":"2023-11-26T07:09:44.999Z","5.4.0-dev.20231127":"2023-11-27T07:09:55.823Z","5.4.0-dev.20231128":"2023-11-28T07:09:49.585Z","5.4.0-dev.20231129":"2023-11-29T07:09:42.490Z","5.4.0-dev.20231130":"2023-11-30T07:09:43.206Z","5.4.0-dev.20231201":"2023-12-01T07:10:19.946Z","5.4.0-dev.20231202":"2023-12-02T07:09:40.582Z","5.4.0-dev.20231203":"2023-12-03T07:09:44.857Z","5.4.0-dev.20231204":"2023-12-04T07:09:49.800Z","5.4.0-dev.20231205":"2023-12-05T07:09:51.416Z","5.4.0-dev.20231206":"2023-12-06T07:09:35.382Z","5.3.3":"2023-12-06T19:07:51.067Z","5.4.0-dev.20231207":"2023-12-07T07:09:50.079Z","5.4.0-dev.20231208":"2023-12-08T07:09:39.906Z","5.4.0-dev.20231209":"2023-12-09T07:09:45.842Z","5.4.0-dev.20231210":"2023-12-10T07:09:50.393Z","5.4.0-dev.20231211":"2023-12-11T07:09:47.905Z","5.4.0-dev.20231212":"2023-12-12T07:09:44.049Z","5.4.0-dev.20231213":"2023-12-13T07:09:50.088Z","5.4.0-dev.20231214":"2023-12-14T07:10:01.998Z","5.4.0-dev.20231215":"2023-12-15T07:09:53.239Z","5.4.0-dev.20231216":"2023-12-16T07:09:48.424Z","5.4.0-dev.20231217":"2023-12-17T07:09:44.757Z","5.4.0-dev.20231218":"2023-12-18T07:09:53.224Z","5.4.0-dev.20231219":"2023-12-19T07:09:48.132Z","5.4.0-dev.20231220":"2023-12-20T07:09:34.370Z","5.4.0-dev.20231221":"2023-12-21T07:10:10.029Z","5.4.0-dev.20231222":"2023-12-22T07:09:52.198Z","5.4.0-dev.20231223":"2023-12-23T07:09:50.192Z","5.4.0-dev.20231224":"2023-12-24T07:09:39.866Z","5.4.0-dev.20231225":"2023-12-25T07:09:45.095Z","5.4.0-dev.20231226":"2023-12-26T07:10:05.256Z","5.4.0-dev.20231227":"2023-12-27T07:10:01.611Z","5.4.0-dev.20231228":"2023-12-28T07:09:56.400Z","5.4.0-dev.20231229":"2023-12-29T07:09:48.995Z","5.4.0-dev.20231230":"2023-12-30T07:09:43.339Z","5.4.0-dev.20231231":"2023-12-31T07:09:53.531Z","5.4.0-dev.20240101":"2024-01-01T07:09:57.235Z","5.4.0-dev.20240102":"2024-01-02T07:09:53.106Z","5.4.0-dev.20240103":"2024-01-03T07:09:55.799Z","5.4.0-dev.20240104":"2024-01-04T07:09:49.274Z","5.4.0-dev.20240105":"2024-01-05T07:10:05.389Z","5.4.0-dev.20240106":"2024-01-06T07:09:44.782Z","5.4.0-dev.20240107":"2024-01-07T07:09:39.946Z","5.4.0-dev.20240108":"2024-01-08T07:09:55.404Z","5.4.0-dev.20240109":"2024-01-09T07:10:06.480Z","5.4.0-dev.20240110":"2024-01-10T07:09:53.993Z","5.4.0-dev.20240111":"2024-01-11T07:09:55.408Z","5.4.0-dev.20240112":"2024-01-12T07:09:42.174Z","5.4.0-dev.20240113":"2024-01-13T07:09:22.918Z","5.4.0-dev.20240114":"2024-01-14T07:09:55.234Z","5.4.0-dev.20240115":"2024-01-15T07:09:30.575Z","5.4.0-dev.20240116":"2024-01-16T07:09:27.410Z","5.4.0-dev.20240117":"2024-01-17T07:09:37.716Z","5.4.0-dev.20240118":"2024-01-18T07:09:56.139Z","5.4.0-dev.20240119":"2024-01-19T07:09:45.527Z","5.4.0-dev.20240120":"2024-01-20T07:09:14.043Z","5.4.0-dev.20240121":"2024-01-21T07:09:31.506Z","5.4.0-dev.20240122":"2024-01-22T07:09:23.700Z","5.4.0-dev.20240123":"2024-01-23T07:09:44.828Z","5.4.0-dev.20240124":"2024-01-24T07:09:29.915Z","5.4.0-dev.20240125":"2024-01-25T07:09:29.605Z","5.4.0-dev.20240126":"2024-01-26T07:09:22.766Z","5.4.0-dev.20240127":"2024-01-27T07:09:20.648Z","5.4.0-dev.20240128":"2024-01-28T07:09:30.955Z","5.4.0-dev.20240129":"2024-01-29T07:09:39.243Z","5.4.0-beta":"2024-01-29T17:33:13.757Z","5.4.0-dev.20240130":"2024-01-30T07:09:41.347Z","5.4.0-dev.20240131":"2024-01-31T07:09:31.304Z","5.4.0-dev.20240201":"2024-02-01T07:09:37.611Z","5.4.0-dev.20240202":"2024-02-02T07:10:10.017Z","5.4.0-dev.20240203":"2024-02-03T07:09:31.393Z","5.4.0-dev.20240204":"2024-02-04T07:09:47.960Z","5.4.0-dev.20240205":"2024-02-05T07:10:14.332Z","5.4.0-dev.20240206":"2024-02-06T07:09:53.492Z","5.4.0-dev.20240207":"2024-02-07T07:09:57.132Z","5.4.0-dev.20240208":"2024-02-08T07:10:50.773Z","5.4.0-dev.20240209":"2024-02-09T07:09:48.754Z","5.4.0-dev.20240210":"2024-02-10T07:09:47.633Z","5.4.0-dev.20240211":"2024-02-11T07:10:00.405Z","5.4.0-dev.20240212":"2024-02-12T07:09:43.368Z","5.4.0-dev.20240213":"2024-02-13T07:09:50.766Z","5.4.0-dev.20240214":"2024-02-14T07:10:03.490Z","5.4.0-dev.20240215":"2024-02-15T07:09:43.287Z","5.4.0-dev.20240216":"2024-02-16T07:09:46.324Z","5.4.0-dev.20240217":"2024-02-17T07:09:37.858Z","5.4.0-dev.20240218":"2024-02-18T07:09:50.009Z","5.4.0-dev.20240219":"2024-02-19T07:09:56.138Z","5.4.0-dev.20240220":"2024-02-20T07:09:51.721Z","5.5.0-dev.20240221":"2024-02-21T07:10:00.930Z","5.5.0-dev.20240222":"2024-02-22T07:09:55.439Z","5.4.1-rc":"2024-02-22T18:28:18.668Z","5.5.0-dev.20240223":"2024-02-23T07:09:49.554Z","5.5.0-dev.20240224":"2024-02-24T07:09:56.817Z","5.5.0-dev.20240225":"2024-02-25T07:09:57.592Z","5.5.0-dev.20240226":"2024-02-26T07:09:49.145Z","5.5.0-dev.20240227":"2024-02-27T07:10:28.138Z","5.5.0-dev.20240228":"2024-02-28T07:10:10.025Z","5.5.0-dev.20240229":"2024-02-29T07:09:49.861Z","5.5.0-dev.20240301":"2024-03-01T07:09:38.847Z","5.5.0-dev.20240302":"2024-03-02T07:09:37.562Z","5.5.0-dev.20240303":"2024-03-03T07:09:31.025Z","5.5.0-dev.20240304":"2024-03-04T07:27:21.330Z","5.5.0-dev.20240305":"2024-03-05T07:09:43.585Z","5.5.0-dev.20240306":"2024-03-06T07:09:53.440Z","5.4.2":"2024-03-06T18:14:58.798Z","5.5.0-dev.20240307":"2024-03-07T07:09:47.476Z","5.5.0-dev.20240308":"2024-03-08T07:10:01.580Z","5.5.0-dev.20240309":"2024-03-09T07:09:55.934Z","5.5.0-dev.20240310":"2024-03-10T07:09:46.499Z","5.5.0-dev.20240311":"2024-03-11T07:09:59.857Z","5.5.0-dev.20240312":"2024-03-12T07:10:26.297Z","5.5.0-dev.20240313":"2024-03-13T07:09:48.547Z","5.5.0-dev.20240314":"2024-03-14T07:10:43.032Z","5.5.0-dev.20240315":"2024-03-15T07:10:01.001Z","5.5.0-dev.20240316":"2024-03-16T07:09:47.023Z","5.5.0-dev.20240317":"2024-03-17T07:09:56.711Z","5.5.0-dev.20240318":"2024-03-18T07:10:03.402Z","5.5.0-dev.20240319":"2024-03-19T07:09:59.769Z","5.5.0-dev.20240320":"2024-03-20T07:09:54.498Z","5.4.3":"2024-03-20T19:30:57.636Z","5.5.0-dev.20240321":"2024-03-21T07:09:57.766Z","5.5.0-dev.20240322":"2024-03-22T07:09:57.997Z","5.5.0-dev.20240323":"2024-03-23T07:10:59.298Z","5.5.0-dev.20240324":"2024-03-24T07:09:54.188Z","5.5.0-dev.20240325":"2024-03-25T07:10:03.934Z","5.5.0-dev.20240326":"2024-03-26T07:09:57.586Z","5.5.0-dev.20240327":"2024-03-27T07:09:51.075Z","5.5.0-dev.20240328":"2024-03-28T07:09:51.572Z","5.5.0-dev.20240329":"2024-03-29T07:09:51.362Z","5.5.0-dev.20240330":"2024-03-30T07:12:04.783Z","5.5.0-dev.20240331":"2024-03-31T07:11:59.869Z","5.5.0-dev.20240401":"2024-04-01T07:11:54.302Z","5.5.0-dev.20240402":"2024-04-02T07:12:21.079Z","5.5.0-dev.20240404":"2024-04-04T07:11:56.220Z","5.4.4":"2024-04-04T18:00:15.661Z","5.5.0-dev.20240405":"2024-04-05T07:11:20.930Z","5.5.0-dev.20240408":"2024-04-08T07:11:09.223Z","5.5.0-dev.20240409":"2024-04-09T07:11:26.593Z","5.5.0-dev.20240410":"2024-04-10T07:11:28.958Z","5.4.5":"2024-04-10T14:25:19.427Z","5.5.0-dev.20240411":"2024-04-11T07:11:54.858Z","5.5.0-dev.20240412":"2024-04-12T07:11:45.287Z","5.5.0-dev.20240413":"2024-04-13T07:11:31.540Z","5.5.0-dev.20240414":"2024-04-14T07:49:37.168Z","5.5.0-dev.20240415":"2024-04-15T07:11:44.029Z","5.5.0-dev.20240416":"2024-04-16T07:11:43.451Z","5.5.0-dev.20240417":"2024-04-17T07:12:01.850Z","5.5.0-dev.20240418":"2024-04-18T07:11:38.805Z","5.5.0-dev.20240419":"2024-04-19T07:11:26.511Z","5.5.0-dev.20240420":"2024-04-20T07:11:30.108Z","5.5.0-dev.20240421":"2024-04-21T07:11:24.527Z","5.5.0-dev.20240422":"2024-04-22T07:11:25.550Z","5.5.0-dev.20240423":"2024-04-23T07:11:51.171Z","5.5.0-dev.20240424":"2024-04-24T07:11:37.562Z","5.5.0-dev.20240425":"2024-04-25T07:11:34.770Z","5.5.0-beta":"2024-04-25T19:03:19.484Z","5.5.0-dev.20240426":"2024-04-26T07:11:23.217Z","5.5.0-dev.20240427":"2024-04-27T07:11:39.875Z","5.5.0-dev.20240428":"2024-04-28T07:11:40.998Z","5.5.0-dev.20240429":"2024-04-29T07:12:01.023Z","5.5.0-dev.20240430":"2024-04-30T07:12:41.353Z","5.5.0-dev.20240501":"2024-05-01T07:11:51.315Z","5.5.0-dev.20240502":"2024-05-02T07:11:46.797Z","5.5.0-dev.20240503":"2024-05-03T07:12:17.807Z","5.5.0-dev.20240504":"2024-05-04T07:12:24.298Z","5.5.0-dev.20240505":"2024-05-05T07:11:59.860Z","5.5.0-dev.20240506":"2024-05-06T07:12:22.975Z","5.5.0-dev.20240507":"2024-05-07T07:12:13.466Z","5.5.0-dev.20240508":"2024-05-08T07:12:04.807Z","5.5.0-dev.20240509":"2024-05-09T07:12:34.989Z","5.5.0-dev.20240510":"2024-05-10T07:12:25.092Z","5.5.0-dev.20240511":"2024-05-11T07:12:07.326Z","5.5.0-dev.20240512":"2024-05-12T07:12:09.545Z","5.5.0-dev.20240513":"2024-05-13T07:12:02.123Z","5.5.0-dev.20240514":"2024-05-14T07:12:20.597Z","5.5.0-dev.20240515":"2024-05-15T07:12:36.038Z","5.5.0-dev.20240516":"2024-05-16T07:12:31.262Z","5.5.0-dev.20240517":"2024-05-17T07:11:55.235Z","5.5.0-dev.20240518":"2024-05-18T07:11:24.036Z","5.5.0-dev.20240519":"2024-05-19T07:11:45.274Z","5.5.0-dev.20240520":"2024-05-20T07:11:50.113Z","5.5.0-dev.20240521":"2024-05-21T07:12:08.803Z","5.5.0-dev.20240522":"2024-05-22T07:12:41.089Z","5.5.0-dev.20240523":"2024-05-23T07:12:11.919Z","5.5.0-dev.20240524":"2024-05-24T07:13:10.572Z","5.5.0-dev.20240525":"2024-05-25T07:11:33.716Z","5.5.0-dev.20240526":"2024-05-26T07:12:08.928Z","5.5.0-dev.20240527":"2024-05-27T07:12:17.836Z","5.5.0-dev.20240528":"2024-05-28T07:12:29.384Z","5.5.0-dev.20240529":"2024-05-29T17:27:24.471Z","5.5.0-dev.20240530":"2024-05-30T07:12:17.239Z","5.5.0-dev.20240531":"2024-05-31T07:13:22.173Z","5.5.0-dev.20240601":"2024-06-01T07:13:18.365Z","5.5.0-dev.20240602":"2024-06-02T07:13:02.012Z","5.5.0-dev.20240603":"2024-06-03T07:13:12.948Z","5.6.0-dev.20240604":"2024-06-04T07:13:16.482Z","5.6.0-dev.20240605":"2024-06-05T07:12:46.918Z","5.6.0-dev.20240606":"2024-06-06T07:13:31.752Z","5.5.1-rc":"2024-06-06T16:47:23.297Z","5.6.0-dev.20240607":"2024-06-07T07:13:02.171Z","5.6.0-dev.20240608":"2024-06-08T07:12:46.822Z","5.6.0-dev.20240609":"2024-06-09T07:13:03.518Z","5.6.0-dev.20240610":"2024-06-10T07:13:02.897Z","5.6.0-dev.20240611":"2024-06-11T07:13:11.611Z","5.6.0-dev.20240612":"2024-06-12T07:12:42.973Z","5.6.0-dev.20240613":"2024-06-13T07:13:24.106Z","5.6.0-dev.20240614":"2024-06-14T07:12:47.452Z","5.6.0-dev.20240615":"2024-06-15T07:12:36.884Z","5.6.0-dev.20240616":"2024-06-16T07:12:35.862Z","5.6.0-dev.20240617":"2024-06-17T07:12:52.879Z","5.6.0-dev.20240618":"2024-06-18T07:13:31.286Z","5.6.0-dev.20240619":"2024-06-19T07:13:01.757Z","5.6.0-dev.20240620":"2024-06-20T07:13:11.706Z","5.5.2":"2024-06-20T17:37:03.845Z","5.6.0-dev.20240621":"2024-06-21T07:14:07.517Z","5.6.0-dev.20240622":"2024-06-22T07:13:35.726Z","5.6.0-dev.20240623":"2024-06-23T07:13:04.232Z","5.6.0-dev.20240624":"2024-06-24T07:12:51.408Z","5.6.0-dev.20240625":"2024-06-25T07:12:48.507Z","5.6.0-dev.20240626":"2024-06-26T07:13:18.012Z","5.6.0-dev.20240627":"2024-06-27T07:12:52.879Z","5.6.0-dev.20240628":"2024-06-28T07:12:59.859Z","5.6.0-dev.20240629":"2024-06-29T07:12:59.810Z","5.6.0-dev.20240630":"2024-06-30T07:13:00.865Z","5.6.0-dev.20240701":"2024-07-01T07:13:06.675Z","5.5.3":"2024-07-01T18:42:30.390Z","5.6.0-dev.20240702":"2024-07-02T07:13:18.610Z","5.6.0-dev.20240703":"2024-07-03T07:13:32.467Z","5.6.0-dev.20240704":"2024-07-04T07:13:20.730Z","5.6.0-dev.20240705":"2024-07-05T07:13:09.832Z","5.6.0-dev.20240706":"2024-07-06T07:13:00.246Z","5.6.0-dev.20240707":"2024-07-07T07:13:34.971Z","5.6.0-dev.20240708":"2024-07-08T07:14:08.533Z","5.6.0-dev.20240709":"2024-07-09T07:13:21.950Z","5.6.0-dev.20240710":"2024-07-10T07:13:00.000Z","5.6.0-dev.20240711":"2024-07-11T07:12:55.306Z","5.6.0-dev.20240712":"2024-07-12T07:12:50.888Z","5.6.0-dev.20240713":"2024-07-13T07:12:51.382Z","5.6.0-dev.20240714":"2024-07-14T07:13:00.090Z","5.6.0-dev.20240715":"2024-07-15T07:13:02.659Z","5.6.0-dev.20240716":"2024-07-16T07:12:40.597Z","5.6.0-dev.20240717":"2024-07-17T07:12:36.300Z","5.6.0-dev.20240718":"2024-07-18T07:13:06.275Z","5.6.0-dev.20240719":"2024-07-19T07:13:03.510Z","5.6.0-dev.20240720":"2024-07-20T07:13:03.322Z","5.6.0-dev.20240721":"2024-07-21T07:13:28.856Z","5.6.0-dev.20240722":"2024-07-22T07:13:00.976Z","5.5.4":"2024-07-22T23:02:51.857Z","5.6.0-dev.20240723":"2024-07-23T07:13:04.214Z","5.6.0-dev.20240724":"2024-07-24T07:13:00.983Z","5.6.0-dev.20240725":"2024-07-25T07:13:15.317Z","5.6.0-dev.20240726":"2024-07-26T07:13:02.869Z","5.6.0-beta":"2024-07-26T14:00:36.186Z","5.6.0-dev.20240727":"2024-07-27T07:13:58.424Z","5.6.0-dev.20240728":"2024-07-28T07:12:58.696Z","5.6.0-dev.20240729":"2024-07-29T07:13:34.325Z","5.6.0-dev.20240730":"2024-07-30T07:13:35.982Z","5.6.0-dev.20240731":"2024-07-31T07:13:18.487Z","5.6.0-dev.20240801":"2024-08-01T07:13:05.795Z","5.6.0-dev.20240802":"2024-08-02T07:13:45.693Z","5.6.0-dev.20240803":"2024-08-03T07:13:07.669Z","5.6.0-dev.20240804":"2024-08-04T07:13:11.859Z","5.6.0-dev.20240805":"2024-08-05T07:13:02.140Z","5.6.0-dev.20240806":"2024-08-06T07:13:18.711Z","5.6.0-dev.20240807":"2024-08-07T07:13:17.103Z","5.6.0-dev.20240808":"2024-08-08T07:13:17.726Z","5.6.0-dev.20240809":"2024-08-09T07:13:12.958Z","5.6.0-dev.20240810":"2024-08-10T07:13:16.405Z","5.6.0-dev.20240811":"2024-08-11T07:13:20.372Z","5.6.0-dev.20240812":"2024-08-12T07:13:23.732Z","5.6.0-dev.20240813":"2024-08-13T07:13:05.651Z","5.6.0-dev.20240814":"2024-08-14T07:13:07.995Z","5.6.0-dev.20240815":"2024-08-15T07:13:26.584Z","5.6.0-dev.20240816":"2024-08-16T07:13:38.061Z","5.6.0-dev.20240817":"2024-08-17T07:13:04.187Z","5.6.0-dev.20240818":"2024-08-18T07:12:54.290Z","5.6.0-dev.20240819":"2024-08-19T07:13:00.301Z","5.7.0-dev.20240820":"2024-08-20T07:13:56.754Z","5.7.0-dev.20240821":"2024-08-21T07:13:11.704Z","5.7.0-dev.20240822":"2024-08-22T07:13:50.683Z","5.7.0-dev.20240823":"2024-08-23T07:13:42.439Z","5.6.1-rc":"2024-08-23T16:08:49.588Z","5.7.0-dev.20240824":"2024-08-24T07:13:24.739Z","5.7.0-dev.20240825":"2024-08-25T07:13:16.041Z","5.7.0-dev.20240826":"2024-08-26T07:13:56.146Z","5.7.0-dev.20240827":"2024-08-27T07:13:16.387Z","5.7.0-dev.20240828":"2024-08-28T07:13:37.323Z","5.7.0-dev.20240829":"2024-08-29T07:13:24.896Z","5.7.0-dev.20240830":"2024-08-30T07:13:18.437Z","5.7.0-dev.20240831":"2024-08-31T07:12:53.308Z","5.7.0-dev.20240901":"2024-09-01T07:13:12.257Z","5.7.0-dev.20240902":"2024-09-02T07:13:51.193Z","5.7.0-dev.20240903":"2024-09-03T07:13:12.784Z","5.7.0-dev.20240904":"2024-09-04T07:13:24.485Z","5.6.2":"2024-09-09T16:16:40.226Z","5.7.0-dev.20240911":"2024-09-11T07:15:13.552Z","5.7.0-dev.20240912":"2024-09-12T07:15:57.328Z","5.7.0-dev.20240913":"2024-09-13T07:15:34.490Z","5.7.0-dev.20240914":"2024-09-14T07:15:35.845Z","5.7.0-dev.20240915":"2024-09-15T07:15:08.193Z","5.7.0-dev.20240916":"2024-09-16T07:15:39.657Z","5.7.0-dev.20240917":"2024-09-17T07:15:39.686Z","5.7.0-dev.20240918":"2024-09-18T07:15:44.536Z","5.7.0-dev.20240919":"2024-09-19T07:15:59.108Z","5.7.0-dev.20240920":"2024-09-20T07:15:47.980Z","5.7.0-dev.20240921":"2024-09-21T07:15:37.778Z","5.7.0-dev.20240922":"2024-09-22T07:15:43.657Z","5.7.0-dev.20240923":"2024-09-23T07:15:45.510Z","5.7.0-dev.20240924":"2024-09-24T07:17:21.274Z","5.7.0-dev.20240925":"2024-09-25T07:15:38.742Z","5.7.0-dev.20240926":"2024-09-26T07:15:54.090Z","5.7.0-dev.20240927":"2024-09-27T07:16:02.896Z","5.7.0-dev.20240928":"2024-09-28T07:15:45.004Z","5.7.0-dev.20240929":"2024-09-29T07:15:30.640Z","5.7.0-dev.20240930":"2024-09-30T07:16:11.854Z","5.7.0-dev.20241001":"2024-10-01T07:15:53.115Z","5.7.0-dev.20241002":"2024-10-02T07:15:37.715Z","5.7.0-dev.20241003":"2024-10-03T07:16:01.618Z","5.7.0-dev.20241004":"2024-10-04T07:15:59.804Z","5.7.0-dev.20241005":"2024-10-05T07:15:48.255Z","5.7.0-dev.20241006":"2024-10-06T07:15:52.141Z","5.7.0-dev.20241007":"2024-10-07T07:16:04.883Z","5.7.0-dev.20241008":"2024-10-08T07:16:20.063Z","5.6.3":"2024-10-08T22:01:09.783Z","5.7.0-dev.20241009":"2024-10-09T07:15:47.505Z","5.7.0-beta":"2024-10-09T18:46:26.119Z","5.7.0-dev.20241010":"2024-10-10T07:15:26.580Z","5.7.0-dev.20241011":"2024-10-11T07:15:25.636Z","5.7.0-dev.20241012":"2024-10-12T07:15:45.727Z","5.7.0-dev.20241013":"2024-10-13T07:15:34.324Z","5.7.0-dev.20241014":"2024-10-14T07:16:17.306Z","5.7.0-dev.20241015":"2024-10-15T07:15:59.510Z","5.7.0-dev.20241016":"2024-10-16T07:15:45.775Z","5.7.0-dev.20241017":"2024-10-17T07:16:19.749Z","5.7.0-dev.20241018":"2024-10-18T07:15:36.889Z","5.7.0-dev.20241019":"2024-10-19T07:15:48.041Z","5.7.0-dev.20241020":"2024-10-20T07:15:25.387Z","5.7.0-dev.20241021":"2024-10-21T07:15:10.403Z","5.7.0-dev.20241022":"2024-10-22T07:15:31.197Z","5.7.0-dev.20241023":"2024-10-23T07:15:28.146Z","5.7.0-dev.20241024":"2024-10-24T07:15:44.931Z","5.7.0-dev.20241025":"2024-10-25T07:15:50.791Z","5.7.0-dev.20241026":"2024-10-26T07:16:01.619Z","5.7.0-dev.20241027":"2024-10-27T07:15:53.898Z","5.7.0-dev.20241028":"2024-10-28T07:15:57.607Z","5.7.0-dev.20241029":"2024-10-29T07:15:56.822Z","5.7.0-dev.20241030":"2024-10-30T07:15:42.950Z","5.7.0-dev.20241031":"2024-10-31T07:15:50.964Z","5.7.0-dev.20241101":"2024-11-01T07:16:30.127Z","5.7.0-dev.20241102":"2024-11-02T07:15:54.253Z","5.7.0-dev.20241103":"2024-11-03T07:16:11.721Z","5.7.0-dev.20241104":"2024-11-04T07:15:37.185Z","5.7.0-dev.20241105":"2024-11-05T07:15:17.226Z","5.8.0-dev.20241106":"2024-11-06T07:15:47.832Z","5.8.0-dev.20241107":"2024-11-07T07:15:34.540Z","5.8.0-dev.20241108":"2024-11-08T07:15:09.949Z","5.7.1-rc":"2024-11-08T18:50:23.474Z","5.8.0-dev.20241109":"2024-11-09T07:15:32.060Z","5.8.0-dev.20241110":"2024-11-10T07:15:06.769Z","5.8.0-dev.20241111":"2024-11-11T07:15:25.538Z","5.8.0-dev.20241112":"2024-11-12T07:15:32.898Z","5.8.0-dev.20241113":"2024-11-13T07:15:09.528Z","5.8.0-dev.20241114":"2024-11-14T07:15:25.059Z","5.8.0-dev.20241115":"2024-11-15T07:15:49.007Z","5.8.0-dev.20241116":"2024-11-16T07:15:30.108Z","5.8.0-dev.20241117":"2024-11-17T07:15:30.773Z","5.8.0-dev.20241118":"2024-11-18T07:15:20.096Z","5.8.0-dev.20241119":"2024-11-19T07:15:35.369Z","5.8.0-dev.20241120":"2024-11-20T07:15:26.507Z","5.8.0-dev.20241121":"2024-11-21T07:15:21.585Z","5.8.0-dev.20241122":"2024-11-22T07:15:51.061Z","5.7.2":"2024-11-22T17:16:09.621Z","5.8.0-dev.20241123":"2024-11-23T07:17:32.507Z","5.8.0-dev.20241124":"2024-11-24T07:15:23.088Z","5.8.0-dev.20241125":"2024-11-25T07:15:25.258Z","5.8.0-dev.20241126":"2024-11-26T07:15:31.083Z","5.8.0-dev.20241127":"2024-11-27T07:15:33.032Z","5.8.0-dev.20241128":"2024-11-28T07:15:31.559Z","5.8.0-dev.20241129":"2024-11-29T07:15:27.520Z","5.8.0-dev.20241130":"2024-11-30T07:15:06.763Z","5.8.0-dev.20241201":"2024-12-01T07:15:23.341Z","5.8.0-dev.20241202":"2024-12-02T07:15:40.253Z","5.8.0-dev.20241203":"2024-12-03T07:16:11.506Z","5.8.0-dev.20241204":"2024-12-04T07:15:50.351Z","5.8.0-dev.20241205":"2024-12-05T07:16:05.286Z","5.8.0-dev.20241206":"2024-12-06T07:15:42.594Z","5.8.0-dev.20241207":"2024-12-07T07:15:39.058Z","5.8.0-dev.20241208":"2024-12-08T07:16:09.052Z","5.8.0-dev.20241209":"2024-12-09T07:15:20.297Z","5.8.0-dev.20241210":"2024-12-10T07:15:32.350Z","5.8.0-dev.20241211":"2024-12-11T07:15:21.154Z","5.8.0-dev.20241212":"2024-12-12T07:15:40.451Z","5.8.0-dev.20241213":"2024-12-13T07:15:21.675Z","5.8.0-dev.20241214":"2024-12-14T07:15:12.511Z","5.8.0-dev.20241215":"2024-12-15T07:15:32.119Z","5.8.0-dev.20241216":"2024-12-16T07:15:42.239Z","5.8.0-dev.20241217":"2024-12-17T07:15:43.850Z","5.8.0-dev.20241218":"2024-12-18T07:15:32.052Z","5.8.0-dev.20241219":"2024-12-19T07:16:04.331Z","5.8.0-dev.20241220":"2024-12-20T07:15:51.294Z","5.8.0-dev.20241221":"2024-12-21T07:15:35.108Z","5.8.0-dev.20241222":"2024-12-22T07:15:31.654Z","5.8.0-dev.20241223":"2024-12-23T07:15:45.864Z","5.8.0-dev.20241224":"2024-12-24T07:15:50.652Z","5.8.0-dev.20241225":"2024-12-25T07:15:56.347Z","5.8.0-dev.20241226":"2024-12-26T07:16:08.660Z","5.8.0-dev.20241227":"2024-12-27T07:15:46.099Z","5.8.0-dev.20241228":"2024-12-28T07:15:37.823Z","5.8.0-dev.20241229":"2024-12-29T07:18:31.166Z","5.8.0-dev.20241230":"2024-12-30T07:15:34.602Z","5.8.0-dev.20241231":"2024-12-31T07:15:42.060Z","5.8.0-dev.20250101":"2025-01-01T07:15:41.260Z","5.8.0-dev.20250102":"2025-01-02T07:15:48.699Z","5.8.0-dev.20250103":"2025-01-03T07:15:37.615Z","5.8.0-dev.20250104":"2025-01-04T07:15:40.219Z","5.8.0-dev.20250105":"2025-01-05T07:15:50.340Z","5.8.0-dev.20250106":"2025-01-06T07:16:01.276Z","5.8.0-dev.20250107":"2025-01-07T07:15:44.773Z","5.8.0-dev.20250108":"2025-01-08T07:15:56.235Z","5.7.3":"2025-01-08T19:05:34.766Z","5.8.0-dev.20250109":"2025-01-09T07:18:21.246Z","5.8.0-dev.20250110":"2025-01-10T07:15:23.760Z","5.8.0-dev.20250111":"2025-01-11T07:15:15.299Z","5.8.0-dev.20250112":"2025-01-12T07:15:10.975Z","5.8.0-dev.20250113":"2025-01-13T07:15:38.466Z","5.8.0-dev.20250114":"2025-01-14T07:15:27.961Z","5.8.0-dev.20250115":"2025-01-15T07:15:14.343Z","5.8.0-dev.20250116":"2025-01-16T07:15:25.391Z","5.8.0-dev.20250117":"2025-01-17T07:15:22.289Z","5.8.0-dev.20250118":"2025-01-18T07:15:22.891Z","5.8.0-dev.20250119":"2025-01-19T07:15:23.322Z","5.8.0-dev.20250120":"2025-01-20T07:15:05.737Z","5.8.0-dev.20250121":"2025-01-21T07:15:31.656Z","5.8.0-dev.20250122":"2025-01-22T07:15:21.539Z","5.8.0-dev.20250123":"2025-01-23T07:15:04.817Z","5.8.0-dev.20250124":"2025-01-24T07:15:15.388Z","5.8.0-dev.20250125":"2025-01-25T07:15:12.217Z","5.8.0-dev.20250126":"2025-01-26T07:15:05.453Z","5.8.0-dev.20250127":"2025-01-27T07:15:22.749Z","5.8.0-dev.20250128":"2025-01-28T07:15:05.576Z","5.8.0-dev.20250129":"2025-01-29T07:15:24.005Z","5.8.0-beta":"2025-01-29T18:37:00.357Z","5.8.0-dev.20250130":"2025-01-30T07:15:01.316Z","5.8.0-dev.20250131":"2025-01-31T07:15:13.412Z","5.8.0-dev.20250201":"2025-02-01T07:15:09.950Z","5.8.0-dev.20250202":"2025-02-02T07:15:17.448Z","5.8.0-dev.20250203":"2025-02-03T07:15:34.123Z","5.8.0-dev.20250204":"2025-02-04T07:15:40.765Z","5.8.0-dev.20250205":"2025-02-05T07:15:31.805Z","5.8.0-dev.20250206":"2025-02-06T07:15:12.119Z","5.8.0-dev.20250207":"2025-02-07T07:15:07.998Z","5.8.0-dev.20250208":"2025-02-08T07:14:53.698Z","5.8.0-dev.20250209":"2025-02-09T07:15:11.947Z","5.8.0-dev.20250210":"2025-02-10T07:15:19.989Z","5.8.0-dev.20250211":"2025-02-11T07:15:50.779Z","5.8.0-dev.20250212":"2025-02-12T07:15:41.433Z","5.8.0-dev.20250213":"2025-02-13T07:15:06.394Z","5.8.1-rc":"2025-02-13T21:56:44.860Z","5.8.0-dev.20250214":"2025-02-14T07:15:10.300Z","5.8.0-dev.20250215":"2025-02-15T07:14:42.271Z","5.8.0-dev.20250216":"2025-02-16T07:15:08.276Z","5.8.0-dev.20250217":"2025-02-17T07:14:55.074Z","5.8.0-dev.20250218":"2025-02-18T07:15:24.307Z","5.9.0-dev.20250219":"2025-02-19T07:15:32.890Z","5.9.0-dev.20250220":"2025-02-20T07:15:26.362Z","5.9.0-dev.20250221":"2025-02-21T07:15:14.218Z","5.9.0-dev.20250222":"2025-02-22T07:14:32.352Z","5.9.0-dev.20250223":"2025-02-23T07:14:59.929Z","5.9.0-dev.20250224":"2025-02-24T07:14:54.840Z","5.9.0-dev.20250225":"2025-02-25T07:15:01.483Z","5.9.0-dev.20250226":"2025-02-26T07:15:20.914Z","5.9.0-dev.20250227":"2025-02-27T07:15:10.963Z","5.9.0-dev.20250228":"2025-02-28T07:14:54.652Z","5.8.2":"2025-02-28T16:52:08.252Z","5.9.0-dev.20250301":"2025-03-01T07:14:36.077Z","5.9.0-dev.20250302":"2025-03-02T07:15:06.339Z","5.9.0-dev.20250303":"2025-03-03T07:14:48.927Z","5.9.0-dev.20250304":"2025-03-04T07:15:18.155Z","5.9.0-dev.20250305":"2025-03-05T07:15:32.309Z","5.9.0-dev.20250306":"2025-03-06T07:15:07.151Z","5.9.0-dev.20250307":"2025-03-07T07:15:02.847Z","5.9.0-dev.20250308":"2025-03-08T07:14:52.123Z","5.9.0-dev.20250309":"2025-03-09T07:14:50.125Z","5.9.0-dev.20250310":"2025-03-10T07:15:39.443Z","5.9.0-dev.20250311":"2025-03-11T07:15:54.348Z","5.9.0-dev.20250312":"2025-03-12T07:15:10.748Z","5.9.0-dev.20250313":"2025-03-13T07:15:22.965Z","5.9.0-dev.20250314":"2025-03-14T07:14:36.695Z","5.9.0-dev.20250315":"2025-03-15T07:14:52.510Z","5.9.0-dev.20250316":"2025-03-16T07:14:40.092Z","5.9.0-dev.20250317":"2025-03-17T07:15:06.393Z","5.9.0-dev.20250318":"2025-03-18T07:14:55.647Z","5.9.0-dev.20250319":"2025-03-19T07:15:20.305Z","5.9.0-dev.20250320":"2025-03-20T07:14:38.611Z","5.9.0-dev.20250321":"2025-03-21T07:14:58.696Z","5.9.0-dev.20250322":"2025-03-22T07:15:01.141Z","5.9.0-dev.20250323":"2025-03-23T07:14:41.727Z","5.9.0-dev.20250324":"2025-03-24T07:15:12.663Z","5.9.0-dev.20250325":"2025-03-25T07:15:59.525Z","5.9.0-dev.20250326":"2025-03-26T07:15:18.468Z","5.9.0-dev.20250327":"2025-03-27T07:15:19.529Z","5.9.0-dev.20250328":"2025-03-28T07:15:08.751Z","5.9.0-dev.20250329":"2025-03-29T07:15:01.864Z","5.9.0-dev.20250330":"2025-03-30T07:15:28.130Z","5.9.0-dev.20250331":"2025-03-31T07:15:03.553Z","5.9.0-dev.20250401":"2025-04-01T07:15:48.348Z","5.9.0-dev.20250402":"2025-04-02T07:15:18.936Z","5.9.0-dev.20250403":"2025-04-03T07:15:33.538Z","5.9.0-dev.20250404":"2025-04-04T07:15:17.495Z","5.8.3":"2025-04-05T00:17:37.851Z","5.9.0-dev.20250405":"2025-04-05T07:14:56.436Z","5.9.0-dev.20250406":"2025-04-06T07:15:32.578Z","5.9.0-dev.20250407":"2025-04-07T07:15:22.935Z","5.9.0-dev.20250408":"2025-04-08T07:15:46.935Z","5.9.0-dev.20250409":"2025-04-09T07:15:20.334Z","5.9.0-dev.20250410":"2025-04-10T07:15:28.961Z","5.9.0-dev.20250412":"2025-04-12T07:15:49.924Z","5.9.0-dev.20250413":"2025-04-13T07:15:15.333Z","5.9.0-dev.20250414":"2025-04-14T07:15:30.281Z","5.9.0-dev.20250415":"2025-04-15T07:15:45.132Z","5.9.0-dev.20250416":"2025-04-16T07:15:32.672Z","5.9.0-dev.20250417":"2025-04-17T07:15:22.369Z","5.9.0-dev.20250418":"2025-04-18T07:15:46.052Z","5.9.0-dev.20250419":"2025-04-19T07:15:14.941Z","5.9.0-dev.20250420":"2025-04-20T07:15:11.663Z","5.9.0-dev.20250421":"2025-04-21T07:14:56.839Z","5.9.0-dev.20250422":"2025-04-22T07:15:13.809Z","5.9.0-dev.20250423":"2025-04-23T07:15:32.862Z","5.9.0-dev.20250424":"2025-04-24T07:15:34.722Z","5.9.0-dev.20250425":"2025-04-25T07:15:20.533Z","5.9.0-dev.20250426":"2025-04-26T07:14:53.577Z","5.9.0-dev.20250427":"2025-04-27T07:14:47.681Z","5.9.0-dev.20250428":"2025-04-28T07:21:23.542Z","5.9.0-dev.20250429":"2025-04-29T07:15:32.848Z","5.9.0-dev.20250430":"2025-04-30T07:15:12.118Z","5.9.0-dev.20250501":"2025-05-01T07:15:50.757Z","5.9.0-dev.20250502":"2025-05-02T07:15:17.765Z","5.9.0-dev.20250503":"2025-05-03T07:15:09.169Z","5.9.0-dev.20250504":"2025-05-04T07:16:09.221Z","5.9.0-dev.20250505":"2025-05-05T07:15:22.132Z","5.9.0-dev.20250506":"2025-05-06T07:15:36.172Z","5.9.0-dev.20250507":"2025-05-07T07:15:10.117Z","5.9.0-dev.20250508":"2025-05-08T07:15:05.977Z","5.9.0-dev.20250509":"2025-05-09T07:14:59.238Z","5.9.0-dev.20250510":"2025-05-10T07:14:38.333Z","5.9.0-dev.20250511":"2025-05-11T07:14:33.771Z","5.9.0-dev.20250512":"2025-05-12T07:14:44.791Z","5.9.0-dev.20250513":"2025-05-13T07:14:45.767Z","5.9.0-dev.20250514":"2025-05-14T07:15:22.415Z","5.9.0-dev.20250515":"2025-05-15T07:14:56.086Z","5.9.0-dev.20250516":"2025-05-16T07:15:20.364Z","5.9.0-dev.20250517":"2025-05-17T07:14:47.833Z","5.9.0-dev.20250518":"2025-05-18T07:14:55.854Z","5.9.0-dev.20250519":"2025-05-19T07:15:05.573Z","5.9.0-dev.20250520":"2025-05-20T07:14:53.777Z","5.9.0-dev.20250521":"2025-05-21T07:14:55.345Z","5.9.0-dev.20250522":"2025-05-22T07:15:26.137Z","5.9.0-dev.20250523":"2025-05-23T07:14:50.999Z","5.9.0-dev.20250524":"2025-05-24T07:14:46.559Z","5.9.0-dev.20250525":"2025-05-25T07:15:13.634Z","5.9.0-dev.20250527":"2025-05-27T07:14:55.150Z","5.9.0-dev.20250528":"2025-05-28T07:15:13.595Z","5.9.0-dev.20250529":"2025-05-29T07:15:12.653Z","5.9.0-dev.20250530":"2025-05-30T07:14:53.347Z","5.9.0-dev.20250531":"2025-05-31T07:14:49.717Z","5.9.0-dev.20250601":"2025-06-01T07:14:58.449Z","5.9.0-dev.20250602":"2025-06-02T07:14:56.995Z","5.9.0-dev.20250603":"2025-06-03T07:15:12.256Z","5.9.0-dev.20250604":"2025-06-04T07:15:17.268Z","5.9.0-dev.20250605":"2025-06-05T07:15:33.374Z","5.9.0-dev.20250606":"2025-06-06T07:15:57.637Z","5.9.0-dev.20250607":"2025-06-07T07:14:48.565Z","5.9.0-dev.20250608":"2025-06-08T07:15:24.801Z","5.9.0-dev.20250609":"2025-06-09T07:15:31.239Z","5.9.0-dev.20250610":"2025-06-10T07:15:19.627Z","5.9.0-dev.20250611":"2025-06-11T07:16:10.692Z","5.9.0-dev.20250612":"2025-06-12T07:15:17.303Z","5.9.0-dev.20250613":"2025-06-13T07:15:07.997Z","5.9.0-dev.20250614":"2025-06-14T07:15:29.212Z","5.9.0-dev.20250615":"2025-06-15T07:15:00.128Z","5.9.0-dev.20250616":"2025-06-16T07:16:47.205Z","5.9.0-dev.20250617":"2025-06-17T07:16:10.748Z","5.9.0-dev.20250618":"2025-06-18T07:15:14.765Z","5.9.0-dev.20250619":"2025-06-19T07:15:46.811Z","5.9.0-dev.20250620":"2025-06-20T07:15:26.345Z","5.9.0-dev.20250621":"2025-06-21T07:15:31.041Z","5.9.0-dev.20250622":"2025-06-22T07:14:59.458Z","5.9.0-dev.20250623":"2025-06-23T07:16:32.212Z","5.9.0-dev.20250624":"2025-06-24T07:15:39.534Z","5.9.0-dev.20250625":"2025-06-25T07:16:07.494Z","5.9.0-dev.20250626":"2025-06-26T07:15:38.366Z","5.9.0-dev.20250627":"2025-06-27T07:15:14.295Z","5.9.0-dev.20250628":"2025-06-28T07:15:04.708Z","5.9.0-dev.20250629":"2025-06-29T07:14:44.627Z","5.9.0-dev.20250630":"2025-06-30T07:16:02.562Z","5.9.0-dev.20250701":"2025-07-01T07:16:09.499Z","5.9.0-dev.20250702":"2025-07-02T07:15:31.375Z","5.9.0-dev.20250703":"2025-07-03T07:16:16.475Z","5.9.0-dev.20250704":"2025-07-04T07:16:06.559Z","5.9.0-dev.20250705":"2025-07-05T07:14:58.814Z","5.9.0-dev.20250706":"2025-07-06T07:14:51.310Z","5.9.0-dev.20250707":"2025-07-07T07:17:08.368Z","5.9.0-dev.20250708":"2025-07-08T07:16:06.736Z","5.9.0-beta":"2025-07-08T16:32:56.716Z","5.9.0-dev.20250709":"2025-07-09T07:16:26.682Z","5.9.0-dev.20250710":"2025-07-10T07:16:27.902Z","5.9.0-dev.20250711":"2025-07-11T07:16:17.363Z","5.9.0-dev.20250712":"2025-07-12T07:15:42.380Z","5.9.0-dev.20250713":"2025-07-13T07:16:10.871Z","5.9.0-dev.20250714":"2025-07-14T07:17:18.527Z","5.9.0-dev.20250715":"2025-07-15T07:16:48.862Z","5.9.0-dev.20250716":"2025-07-16T07:18:05.904Z","5.9.0-dev.20250717":"2025-07-17T07:17:17.065Z","5.9.0-dev.20250718":"2025-07-18T07:17:50.607Z","5.9.0-dev.20250719":"2025-07-19T07:15:50.629Z","5.9.0-dev.20250720":"2025-07-20T07:15:08.352Z","5.9.0-dev.20250721":"2025-07-21T07:18:50.402Z","5.9.0-dev.20250722":"2025-07-22T07:17:18.072Z","5.9.0-dev.20250723":"2025-07-23T07:16:54.169Z","5.9.0-dev.20250724":"2025-07-24T07:17:17.488Z","5.9.1-rc":"2025-07-24T16:59:41.496Z","5.9.0-dev.20250725":"2025-07-25T07:17:08.407Z","5.9.0-dev.20250726":"2025-07-26T07:15:50.752Z","5.9.0-dev.20250727":"2025-07-27T07:15:51.440Z","5.9.0-dev.20250728":"2025-07-28T07:18:19.689Z","5.9.0-dev.20250729":"2025-07-29T07:17:59.655Z","5.9.0-dev.20250730":"2025-07-30T07:18:32.772Z","5.9.0-dev.20250731":"2025-07-31T07:17:39.222Z","5.9.2":"2025-07-31T17:54:06.216Z","6.0.0-dev.20250801":"2025-08-01T07:19:00.620Z","6.0.0-dev.20250802":"2025-08-02T07:15:33.607Z","6.0.0-dev.20250803":"2025-08-03T07:15:30.203Z","6.0.0-dev.20250804":"2025-08-04T07:21:20.347Z","6.0.0-dev.20250805":"2025-08-05T07:18:50.393Z","6.0.0-dev.20250806":"2025-08-06T07:18:55.508Z","6.0.0-dev.20250807":"2025-08-07T07:18:58.414Z","6.0.0-dev.20250808":"2025-08-08T07:18:32.619Z","6.0.0-dev.20250809":"2025-08-09T07:15:18.839Z","6.0.0-dev.20250810":"2025-08-10T07:15:05.158Z","6.0.0-dev.20250811":"2025-08-11T07:17:55.846Z","6.0.0-dev.20250812":"2025-08-12T07:16:06.101Z","6.0.0-dev.20250813":"2025-08-13T07:16:30.798Z","6.0.0-dev.20250814":"2025-08-14T07:16:20.312Z","6.0.0-dev.20250815":"2025-08-15T07:15:43.105Z","6.0.0-dev.20250816":"2025-08-16T07:15:24.905Z","6.0.0-dev.20250817":"2025-08-17T07:15:07.127Z","6.0.0-dev.20250818":"2025-08-18T07:17:19.491Z","6.0.0-dev.20250819":"2025-08-19T07:15:15.441Z","6.0.0-dev.20250820":"2025-08-20T07:15:07.971Z","6.0.0-dev.20250821":"2025-08-21T07:17:21.668Z","6.0.0-dev.20250822":"2025-08-22T07:15:26.251Z","6.0.0-dev.20250823":"2025-08-23T07:14:54.667Z","6.0.0-dev.20250824":"2025-08-24T07:15:24.607Z","6.0.0-dev.20250825":"2025-08-25T07:15:16.135Z","6.0.0-dev.20250827":"2025-08-27T07:15:21.591Z","6.0.0-dev.20250828":"2025-08-28T07:15:19.616Z","6.0.0-dev.20250829":"2025-08-29T07:15:50.318Z","6.0.0-dev.20250830":"2025-08-30T07:15:21.697Z","6.0.0-dev.20250831":"2025-08-31T07:15:16.229Z","6.0.0-dev.20250901":"2025-09-01T07:15:44.431Z","6.0.0-dev.20250902":"2025-09-02T07:15:08.321Z","6.0.0-dev.20250903":"2025-09-03T07:15:51.363Z","6.0.0-dev.20250904":"2025-09-04T07:15:50.489Z","6.0.0-dev.20250905":"2025-09-05T07:15:20.522Z","6.0.0-dev.20250906":"2025-09-06T07:15:31.790Z","6.0.0-dev.20250907":"2025-09-07T07:14:59.531Z","6.0.0-dev.20250908":"2025-09-08T07:15:32.635Z","6.0.0-dev.20250909":"2025-09-09T07:15:55.078Z","6.0.0-dev.20250910":"2025-09-10T07:15:32.953Z","6.0.0-dev.20250911":"2025-09-11T07:14:34.299Z","6.0.0-dev.20250912":"2025-09-12T07:14:27.777Z","6.0.0-dev.20250913":"2025-09-13T07:14:47.256Z","6.0.0-dev.20250914":"2025-09-14T07:14:28.123Z","6.0.0-dev.20250915":"2025-09-15T07:15:05.370Z","6.0.0-dev.20250916":"2025-09-16T07:15:42.568Z","6.0.0-dev.20250917":"2025-09-17T07:15:02.683Z","6.0.0-dev.20250918":"2025-09-18T07:15:07.002Z","6.0.0-dev.20250919":"2025-09-19T07:15:16.775Z","6.0.0-dev.20250920":"2025-09-20T07:14:36.121Z","6.0.0-dev.20250921":"2025-09-21T07:14:43.630Z","6.0.0-dev.20250922":"2025-09-22T07:15:02.528Z","6.0.0-dev.20250923":"2025-09-23T07:15:29.111Z","6.0.0-dev.20250924":"2025-09-24T07:14:28.998Z","6.0.0-dev.20250925":"2025-09-25T07:14:07.858Z","6.0.0-dev.20250926":"2025-09-26T07:13:18.786Z","6.0.0-dev.20250927":"2025-09-27T07:13:44.963Z","6.0.0-dev.20250928":"2025-09-28T07:14:08.473Z","6.0.0-dev.20250929":"2025-09-29T07:14:03.873Z","6.0.0-dev.20250930":"2025-09-30T07:14:23.936Z","5.9.3":"2025-09-30T21:19:38.784Z","6.0.0-dev.20251001":"2025-10-01T07:14:42.165Z","6.0.0-dev.20251002":"2025-10-02T07:13:39.738Z","6.0.0-dev.20251003":"2025-10-03T07:14:13.752Z","6.0.0-dev.20251004":"2025-10-04T07:14:07.947Z","6.0.0-dev.20251005":"2025-10-05T07:14:22.385Z","6.0.0-dev.20251006":"2025-10-06T07:14:23.097Z","6.0.0-dev.20251007":"2025-10-07T07:29:17.461Z","6.0.0-dev.20251008":"2025-10-08T07:14:25.061Z","6.0.0-dev.20251009":"2025-10-09T07:13:36.193Z","6.0.0-dev.20251010":"2025-10-10T07:15:03.921Z","6.0.0-dev.20251011":"2025-10-11T07:14:07.281Z","6.0.0-dev.20251012":"2025-10-12T07:14:12.925Z","6.0.0-dev.20251013":"2025-10-13T07:14:53.210Z","6.0.0-dev.20251014":"2025-10-14T07:14:57.619Z","6.0.0-dev.20251015":"2025-10-15T07:14:39.580Z","6.0.0-dev.20251016":"2025-10-16T07:16:11.462Z","6.0.0-dev.20251017":"2025-10-17T07:15:22.023Z","6.0.0-dev.20251018":"2025-10-18T07:14:00.412Z","6.0.0-dev.20251019":"2025-10-19T07:13:57.751Z","6.0.0-dev.20251020":"2025-10-20T07:14:24.024Z","6.0.0-dev.20251021":"2025-10-21T07:14:20.212Z","6.0.0-dev.20251022":"2025-10-22T07:15:01.368Z","6.0.0-dev.20251023":"2025-10-23T07:14:39.274Z","6.0.0-dev.20251024":"2025-10-24T07:14:41.550Z","6.0.0-dev.20251025":"2025-10-25T07:14:14.206Z","6.0.0-dev.20251026":"2025-10-26T07:13:22.914Z","6.0.0-dev.20251027":"2025-10-27T07:14:49.236Z","6.0.0-dev.20251028":"2025-10-28T07:13:51.486Z","6.0.0-dev.20251029":"2025-10-29T07:11:39.786Z","6.0.0-dev.20251030":"2025-10-30T07:12:18.599Z","6.0.0-dev.20251031":"2025-10-31T07:12:06.013Z","6.0.0-dev.20251101":"2025-11-01T07:11:46.415Z","6.0.0-dev.20251102":"2025-11-02T07:12:16.814Z","6.0.0-dev.20251103":"2025-11-03T07:11:34.524Z","6.0.0-dev.20251104":"2025-11-04T07:11:18.282Z","6.0.0-dev.20251105":"2025-11-05T07:11:39.962Z","6.0.0-dev.20251106":"2025-11-06T07:12:03.456Z","6.0.0-dev.20251107":"2025-11-07T07:12:26.833Z","6.0.0-dev.20251108":"2025-11-08T07:12:04.883Z","6.0.0-dev.20251109":"2025-11-09T07:12:04.638Z","6.0.0-dev.20251110":"2025-11-10T07:11:54.085Z","6.0.0-dev.20251111":"2025-11-11T07:11:55.202Z","6.0.0-dev.20251112":"2025-11-12T07:12:05.043Z","6.0.0-dev.20251113":"2025-11-13T07:11:33.108Z","6.0.0-dev.20251114":"2025-11-14T07:11:17.966Z","6.0.0-dev.20251115":"2025-11-15T07:11:25.204Z","6.0.0-dev.20251116":"2025-11-16T07:11:43.131Z","6.0.0-dev.20251117":"2025-11-17T07:12:07.398Z","6.0.0-dev.20251118":"2025-11-18T07:12:05.435Z","6.0.0-dev.20251119":"2025-11-19T07:12:13.718Z","6.0.0-dev.20251120":"2025-11-20T07:11:31.037Z","6.0.0-dev.20251121":"2025-11-21T07:11:48.816Z","6.0.0-dev.20251122":"2025-11-22T07:11:48.321Z","6.0.0-dev.20251123":"2025-11-23T07:11:31.769Z","6.0.0-dev.20251124":"2025-11-24T07:11:49.955Z","6.0.0-dev.20251125":"2025-11-25T07:12:10.378Z","6.0.0-dev.20251126":"2025-11-26T07:11:43.875Z","6.0.0-dev.20251127":"2025-11-27T07:12:19.921Z","6.0.0-dev.20251128":"2025-11-28T07:12:13.961Z","6.0.0-dev.20251129":"2025-11-29T07:11:52.481Z","6.0.0-dev.20251130":"2025-11-30T07:11:34.904Z","6.0.0-dev.20251201":"2025-12-01T07:13:36.565Z","6.0.0-dev.20251202":"2025-12-02T07:12:56.455Z","6.0.0-dev.20251203":"2025-12-03T07:12:24.787Z","6.0.0-dev.20251204":"2025-12-04T07:12:42.168Z","6.0.0-dev.20251205":"2025-12-05T07:12:19.085Z","6.0.0-dev.20251206":"2025-12-06T07:11:55.384Z","6.0.0-dev.20251207":"2025-12-07T07:11:40.493Z","6.0.0-dev.20251208":"2025-12-08T07:13:38.757Z","6.0.0-dev.20251209":"2025-12-09T07:12:50.912Z","6.0.0-dev.20251210":"2025-12-10T07:13:33.287Z","6.0.0-dev.20251211":"2025-12-11T07:13:19.322Z","6.0.0-dev.20251212":"2025-12-12T07:13:13.681Z","6.0.0-dev.20251213":"2025-12-13T07:11:26.935Z","6.0.0-dev.20251214":"2025-12-14T07:12:01.978Z","6.0.0-dev.20251215":"2025-12-15T07:13:37.729Z","6.0.0-dev.20251216":"2025-12-16T07:13:30.663Z","6.0.0-dev.20251217":"2025-12-17T07:12:43.113Z","6.0.0-dev.20251218":"2025-12-18T07:13:04.820Z","6.0.0-dev.20251219":"2025-12-19T07:12:51.225Z","6.0.0-dev.20251220":"2025-12-20T07:12:41.465Z","6.0.0-dev.20251221":"2025-12-21T07:11:40.139Z","6.0.0-dev.20251222":"2025-12-22T07:13:52.675Z","6.0.0-dev.20251223":"2025-12-23T07:13:47.146Z","6.0.0-dev.20251224":"2025-12-24T07:13:20.920Z","6.0.0-dev.20251225":"2025-12-25T07:13:08.104Z","6.0.0-dev.20251226":"2025-12-26T07:12:39.864Z","6.0.0-dev.20251227":"2025-12-27T07:12:10.499Z","6.0.0-dev.20251228":"2025-12-28T07:12:51.526Z","6.0.0-dev.20251229":"2025-12-29T07:14:50.487Z","6.0.0-dev.20251230":"2025-12-30T07:13:08.585Z","6.0.0-dev.20251231":"2025-12-31T07:13:42.295Z","6.0.0-dev.20260101":"2026-01-01T07:13:12.161Z","6.0.0-dev.20260102":"2026-01-02T07:13:28.760Z","6.0.0-dev.20260103":"2026-01-03T07:11:52.335Z","6.0.0-dev.20260104":"2026-01-04T07:12:57.368Z","6.0.0-dev.20260105":"2026-01-05T07:16:56.872Z","6.0.0-dev.20260106":"2026-01-06T07:15:09.409Z","6.0.0-dev.20260107":"2026-01-07T07:14:37.766Z","6.0.0-dev.20260108":"2026-01-08T07:13:18.406Z","6.0.0-dev.20260109":"2026-01-09T07:14:33.327Z","6.0.0-dev.20260110":"2026-01-10T07:12:29.905Z","6.0.0-dev.20260111":"2026-01-11T07:13:12.061Z","6.0.0-dev.20260112":"2026-01-12T07:16:04.676Z","6.0.0-dev.20260113":"2026-01-13T07:15:14.296Z","6.0.0-dev.20260114":"2026-01-14T07:14:30.289Z","6.0.0-dev.20260115":"2026-01-15T07:14:22.879Z","6.0.0-dev.20260116":"2026-01-16T07:14:35.809Z","6.0.0-dev.20260117":"2026-01-17T07:11:55.399Z","6.0.0-dev.20260118":"2026-01-18T07:11:32.412Z","6.0.0-dev.20260119":"2026-01-19T07:17:22.301Z","6.0.0-dev.20260120":"2026-01-20T07:16:23.002Z","6.0.0-dev.20260121":"2026-01-21T07:16:05.273Z","6.0.0-dev.20260122":"2026-01-22T07:15:48.742Z","6.0.0-dev.20260123":"2026-01-23T07:14:51.587Z","6.0.0-dev.20260124":"2026-01-24T07:12:38.527Z","6.0.0-dev.20260125":"2026-01-25T07:13:19.293Z","6.0.0-dev.20260126":"2026-01-26T07:16:41.802Z","6.0.0-dev.20260127":"2026-01-27T07:15:51.010Z","6.0.0-dev.20260128":"2026-01-28T07:16:02.794Z","6.0.0-dev.20260129":"2026-01-29T07:23:22.461Z","6.0.0-dev.20260130":"2026-01-30T07:22:37.383Z","6.0.0-dev.20260131":"2026-01-31T07:17:41.185Z","6.0.0-dev.20260201":"2026-02-01T07:22:40.124Z","6.0.0-dev.20260202":"2026-02-02T07:28:38.430Z","6.0.0-dev.20260203":"2026-02-03T07:24:52.730Z","6.0.0-dev.20260204":"2026-02-04T07:25:02.008Z","6.0.0-dev.20260205":"2026-02-05T07:28:19.747Z","6.0.0-dev.20260206":"2026-02-06T07:26:04.364Z","6.0.0-dev.20260207":"2026-02-07T07:20:23.267Z","6.0.0-dev.20260208":"2026-02-08T07:22:21.700Z","6.0.0-dev.20260209":"2026-02-09T07:31:12.394Z","6.0.0-dev.20260210":"2026-02-10T07:32:04.459Z","6.0.0-dev.20260211":"2026-02-11T07:29:56.327Z","6.0.0-beta":"2026-02-11T18:26:37.557Z","6.0.0-dev.20260212":"2026-02-12T07:29:31.827Z","6.0.0-dev.20260213":"2026-02-13T07:28:02.152Z","6.0.0-dev.20260214":"2026-02-14T07:22:01.883Z","6.0.0-dev.20260215":"2026-02-15T07:23:39.719Z","6.0.0-dev.20260216":"2026-02-16T07:30:26.042Z","6.0.0-dev.20260217":"2026-02-17T07:28:15.413Z","6.0.0-dev.20260218":"2026-02-18T07:29:46.385Z","6.0.0-dev.20260219":"2026-02-19T07:29:33.798Z","6.0.0-dev.20260220":"2026-02-20T07:27:51.030Z","6.0.0-dev.20260221":"2026-02-21T07:20:22.043Z","6.0.0-dev.20260222":"2026-02-22T07:23:16.713Z","6.0.0-dev.20260223":"2026-02-23T07:31:50.387Z","6.0.0-dev.20260224":"2026-02-24T07:29:33.725Z","6.0.0-dev.20260225":"2026-02-25T07:28:44.400Z","6.0.0-dev.20260226":"2026-02-26T07:29:36.821Z","6.0.0-dev.20260227":"2026-02-27T07:26:05.804Z","6.0.0-dev.20260228":"2026-02-28T07:15:38.984Z","6.0.0-dev.20260301":"2026-03-01T07:21:14.845Z","6.0.0-dev.20260302":"2026-03-02T07:28:01.611Z","6.0.0-dev.20260303":"2026-03-03T07:25:12.981Z","6.0.0-dev.20260304":"2026-03-04T07:22:47.891Z","6.0.0-dev.20260305":"2026-03-05T07:25:35.885Z","6.0.0-dev.20260306":"2026-03-06T07:23:21.030Z","6.0.1-rc":"2026-03-06T17:33:10.597Z","6.0.0-dev.20260307":"2026-03-07T07:17:06.815Z","6.0.0-dev.20260308":"2026-03-08T07:19:41.463Z","6.0.0-dev.20260309":"2026-03-09T07:29:34.681Z","6.0.0-dev.20260310":"2026-03-10T07:24:07.179Z","6.0.0-dev.20260311":"2026-03-11T07:24:57.514Z","6.0.0-dev.20260312":"2026-03-12T07:26:34.594Z","6.0.0-dev.20260313":"2026-03-13T07:25:50.536Z","6.0.0-dev.20260314":"2026-03-14T07:22:01.445Z","6.0.0-dev.20260315":"2026-03-15T07:26:14.448Z","6.0.0-dev.20260316":"2026-03-16T07:38:12.452Z","6.0.0-dev.20260317":"2026-03-17T07:30:21.947Z"},"bugs":{"url":"https://github.com/microsoft/TypeScript/issues"},"author":{"name":"Microsoft Corp."},"license":"Apache-2.0","homepage":"https://www.typescriptlang.org/","keywords":["TypeScript","Microsoft","compiler","language","javascript"],"repository":{"url":"git+https://github.com/microsoft/TypeScript.git","type":"git"},"description":"TypeScript is a language for application scale JavaScript development","maintainers":[{"name":"microsoft1es","email":"npmjs@microsoft.com"},{"name":"typescript-bot","email":"typescript@microsoft.com"},{"name":"weswigham","email":"wwigham@gmail.com"},{"name":"andrewbranch","email":"andrew@wheream.io"},{"name":"typescript-deploys","email":"typescript-design@microsoft.com"},{"name":"jakebailey","email":"jacob.b.bailey@gmail.com"}],"readme":"","readmeFilename":"","users":{"azz":true,"juk":true,"sg6":true,"ubi":true,"batz":true,"cs.x":true,"daam":true,"isao":true,"tido":true,"tztz":true,"vasz":true,"y2zz":true,"alimd":true,"ayfri":true,"enet4":true,"incar":true,"lcdss":true,"leota":true,"mattw":true,"metaa":true,"panlw":true,"pvorb":true,"silas":true,"timdp":true,"tsyue":true,"urish":true,"zafix":true,"zamis":true,"zoser":true,"arttse":true,"bsnote":true,"caeyna":true,"d-band":true,"dgmike":true,"evan2x":true,"fuji44":true,"ginpei":true,"ishida":true,"itomek":true,"jansor":true,"kayahr":true,"knoja4":true,"krocon":true,"marais":true,"markis":true,"mdang8":true,"naokie":true,"narida":true,"nemolo":true,"ovgu12":true,"ovrmrw":true,"rdca84":true,"rwhogg":true,"sakura":true,"teneff":true,"willwm":true,"yangzw":true,"yeming":true,"yukoff":true,"zolern":true,"abetomo":true,"areasis":true,"arsafab":true,"askyous":true,"atheken":true,"caavere":true,"cab1729":true,"cangulo":true,"carlosb":true,"dbobrov":true,"deyshin":true,"drewigg":true,"edm00se":true,"filipve":true,"hust007":true,"ik_make":true,"innf107":true,"jerrywu":true,"kbezold":true,"kontrax":true,"kron4eg":true,"ktaeyln":true,"lex_nel":true,"lupideo":true,"marlonc":true,"mdecker":true,"miakova":true,"moonpyk":true,"morganz":true,"mrmochi":true,"nbering":true,"nohomey":true,"rebolon":true,"reekdeb":true,"severen":true,"sshrike":true,"takonyc":true,"tewarid":true,"trusktr":true,"vvakame":true,"xeoneux":true,"yangwao":true,"ahvonenj":true,"akinhwan":true,"amartelr":true,"avernon2":true,"bcowgi11":true,"buru1020":true,"cologler":true,"deerflow":true,"dimonfox":true,"djamseed":true,"dnarvaez":true,"edalorzo":true,"enriched":true,"faraoman":true,"fredcorn":true,"gimystic":true,"golubevs":true,"guanfeng":true,"hjbowers":true,"huiyifyj":true,"hwhmusic":true,"hypo9eal":true,"jimkropa":true,"jimlloyd":true,"johnpapa":true,"joshuacc":true,"jpetitte":true,"kalahari":true,"kefniark":true,"kiaratto":true,"mattyboy":true,"mhfrantz":true,"oburejin":true,"phil1929":true,"rbcorrea":true,"remmeier":true,"scaffrey":true,"serhiiso":true,"seshanda":true,"shadster":true,"sinclair":true,"smorchon":true,"t0ngt0n9":true,"th3brink":true,"thinhair":true,"tkhemani":true,"tmurngon":true,"walkercz":true,"webstyle":true,"wkaifang":true,"agantelin":true,"alexxnica":true,"arcanedev":true,"artemigos":true,"azertypow":true,"centiball":true,"drdanryan":true,"evanyeung":true,"fadihania":true,"fistynuts":true,"heartnett":true,"icirellik":true,"jamiechoi":true,"johnohara":true,"kingfeast":true,"largepuma":true,"leongaban":true,"maxwelldu":true,"mccataldo":true,"nickeljew":true,"nycdotnet":true,"pepperpot":true,"pgabronis":true,"qiuqiu666":true,"redstrike":true,"reduardo7":true,"shakakira":true,"stephanlv":true,"sternelee":true,"yang.shao":true,"abdihaikal":true,"ackerapple":true,"aitorllj93":true,"cfleschhut":true,"dh19911021":true,"j717273419":true,"julienrbrt":true,"krostyslav":true,"leonardorb":true,"lexicality":true,"lmcarreiro":true,"luffy84217":true,"manjunathd":true,"mgthomas99":true,"miroklarin":true,"morogasper":true,"mysticatea":true,"nexustools":true,"piecioshka":true,"pmoleri_ig":true,"ptrevethan":true,"rocket0191":true,"shentengtu":true,"stormcrows":true,"a3.ivanenko":true,"adeelquadri":true,"albertico88":true,"allen_l_liu":true,"andywalkers":true,"ben-barbier":true,"codeprowong":true,"easimonenko":true,"felipeplets":true,"flumpus-dev":true,"garenyondem":true,"glektarssza":true,"hanzomaster":true,"illuminator":true,"jamesbedont":true,"k-ta-yamada":true,"marloncouto":true,"maurojunior":true,"mseminatore":true,"omaraljabli":true,"plantain_00":true,"russleyshaw":true,"sagarjadhav":true,"tcskrovseth":true,"wombatworks":true,"bittercoffee":true,"brentlintner":true,"cameronnokes":true,"craigiswayne":true,"evanshortiss":true,"floriannagel":true,"igorsetsfire":true,"jackie-lueng":true,"jonwilkinson":true,"kyle_needham":true,"matiasmarani":true,"mpinteractiv":true,"nickeltobias":true,"orenschwartz":true,"paulkolesnyk":true,"rahsaanbasek":true,"raven3murphy":true,"renishskills":true,"tobiasnickel":true,"chenwei791129":true,"chinawolf_wyp":true,"danielsimonjr":true,"digitalclover":true,"escapeimagery":true,"manojkhannakm":true,"mdedirudianto":true,"nicky-lenaers":true,"playthefallen":true,"serge-nikitin":true,"sergeyshandar":true,"theblacksmith":true,"elbertbiggs360":true,"fvcproductions":true,"justin.doherty":true,"natarajanmca11":true,"robinbuschmann":true,"siddhardhreddy":true,"thewhiterabbit":true,"willwolffmyren":true,"codekraft-studio":true,"dopustimvladimir":true,"piyush__mishra15":true,"ognjen.jevremovic":true,"ricardogobbosouza":true,"adrian.arroyocalle":true,"alessandro.perrone":true,"davidjsalazarmoreno":true,"eng-gabrielscardoso":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/1f/74/96842a3201cba6b94dd6ffc530fd586ae07fdbfb68692476607b37bede0ff87b19d62a589fe976643567fe7ccdb044c3dcd7ed95c33ce6a9e5ec118b2079 b/frontend/.npm-cache/_cacache/content-v2/sha512/1f/74/96842a3201cba6b94dd6ffc530fd586ae07fdbfb68692476607b37bede0ff87b19d62a589fe976643567fe7ccdb044c3dcd7ed95c33ce6a9e5ec118b2079 new file mode 100644 index 0000000..4446468 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/1f/74/96842a3201cba6b94dd6ffc530fd586ae07fdbfb68692476607b37bede0ff87b19d62a589fe976643567fe7ccdb044c3dcd7ed95c33ce6a9e5ec118b2079 @@ -0,0 +1 @@ +{"_id":"mime-types","_rev":"165-d0a75081cb0241673eb5a70aa6b7673c","name":"mime-types","dist-tags":{"next":"3.0.0","latest":"3.0.2"},"versions":{"0.1.0":{"name":"mime-types","version":"0.1.0","author":{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"},"license":"MIT","_id":"mime-types@0.1.0","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"homepage":"https://github.com/expressjs/mime-types","bugs":{"url":"https://github.com/expressjs/mime-types/issues"},"dist":{"shasum":"480f66fa19ef6ff039712a5393a4bc4901b5bf40","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-0.1.0.tgz","integrity":"sha512-pq+MbLrwKOQmBZE0w+la1YxhF/duOl1G009IqhSKqiv5lC8nZOMz8WGs1P8TV1ZCqn3bN2jrpWCLkIs926c8pg==","signatures":[{"sig":"MEQCIHlqdvJ95y9xbYRNRXoyGTq8XGnkzDrxlOYM5Q1sEKZkAiBDPWcmtj7+3IA9giFMpeMl6w6mctPhFUROiotru7LK6w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib","_from":".","scripts":{"test":"make test"},"_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"repository":{"url":"git://github.com/expressjs/mime-types","type":"git"},"_npmVersion":"1.4.6","description":"ultimate mime type utility","directories":{},"devDependencies":{"co":"3","mocha":"1","cogent":"0","should":"3"}},"1.0.0":{"name":"mime-types","version":"1.0.0","author":{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"},"license":"MIT","_id":"mime-types@1.0.0","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"}],"contributors":[{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"}],"homepage":"https://github.com/expressjs/mime-types","bugs":{"url":"https://github.com/expressjs/mime-types/issues"},"dist":{"shasum":"6a7b4a6af2e7d92f97afe03f047c7801e8f001d2","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-1.0.0.tgz","integrity":"sha512-aP3BmIq4ZAPJt6KywU5HbiG0UwCTHZA2JWHO9aLaxyr8OhPOiK4RPSZcS6TDS7zNzGDC3AACnq/XTuEsd/M1Kg==","signatures":[{"sig":"MEYCIQCU1DxnTHMCsdF29zM5sgqh/w1t+F3c3myRkTsT+ReqqAIhAJ+sXjwY8FX+aPYCVkJ6wUTdGzsEy1Z7LctKT9Dz8PGe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib","_from":".","_shasum":"6a7b4a6af2e7d92f97afe03f047c7801e8f001d2","scripts":{"test":"make test"},"_npmUser":{"name":"fishrock123","email":"fishrock123@rocketmail.com"},"repository":{"url":"git://github.com/expressjs/mime-types","type":"git"},"_npmVersion":"1.4.9","description":"ultimate mime type utility","directories":{},"devDependencies":{"co":"3","mocha":"1","cogent":"0","should":"3"}},"1.0.1":{"name":"mime-types","version":"1.0.1","author":{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"},"license":"MIT","_id":"mime-types@1.0.1","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"}],"homepage":"https://github.com/expressjs/mime-types","bugs":{"url":"https://github.com/expressjs/mime-types/issues"},"dist":{"shasum":"4d9ad71bcd4cdef6be892c21b5b81645607c0b8f","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-1.0.1.tgz","integrity":"sha512-PltPKnzFcnj7RB0hFxrnMmuvn1kNy2dxsVJB4Zjub/E+0lv3zBfg3PL7fthEyiQxHI7LM0CathyZBorEOxk0nA==","signatures":[{"sig":"MEYCIQD9ExA1FgOeajZjnWKHdDr+RcIFaAqGbUj04cuWmT1bQAIhAJwgi36Y6wXwH9NhmC6TYNO5s9gzcr5CBgL1Q7k/pLPM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib","_from":".","_shasum":"4d9ad71bcd4cdef6be892c21b5b81645607c0b8f","engines":{"node":">= 0.8.0"},"scripts":{"test":"make test"},"_npmUser":{"name":"fishrock123","email":"fishrock123@rocketmail.com"},"repository":{"url":"git://github.com/expressjs/mime-types","type":"git"},"_npmVersion":"1.4.9","description":"The ultimate javascript content-type utility.","directories":{},"devDependencies":{"co":"3","mocha":"1","cogent":"0","should":"3"}},"1.0.2":{"name":"mime-types","version":"1.0.2","author":{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"},"license":"MIT","_id":"mime-types@1.0.2","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"}],"homepage":"https://github.com/expressjs/mime-types","bugs":{"url":"https://github.com/expressjs/mime-types/issues"},"dist":{"shasum":"995ae1392ab8affcbfcb2641dd054e943c0d5dce","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-1.0.2.tgz","integrity":"sha512-echfutj/t5SoTL4WZpqjA1DCud1XO0WQF3/GJ48YBmc4ZMhCK77QA6Z/w6VTQERLKuJ4drze3kw2TUT8xZXVNw==","signatures":[{"sig":"MEUCIGTZn5ZV2nCKdge933Lg6AvKXp1JvaL1X71hULpjhaXLAiEAyEMe0qKXWBwowL/gmnLRE4c/I4kRwKqQ/EFg7sPD0wY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib","_from":".","_shasum":"995ae1392ab8affcbfcb2641dd054e943c0d5dce","engines":{"node":">= 0.8.0"},"gitHead":"e82b23836eb42003b8346fb31769da2fb7eb54e8","scripts":{"test":"make test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/expressjs/mime-types","type":"git"},"_npmVersion":"1.4.21","description":"The ultimate javascript content-type utility.","directories":{},"devDependencies":{"co":"3","mocha":"1","cogent":"0","should":"3"}},"2.0.0":{"name":"mime-types","version":"2.0.0","keywords":["mime","types"],"author":{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"},"license":"MIT","_id":"mime-types@2.0.0","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"4a85688446a4d94a03909e0ae292766744a3c313","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.0.tgz","integrity":"sha512-63bzg+SNOn8tpkiVG/RNcTkj+LvpB1K2L72Te5uvtbU3Zm41kB+PyEVmZUCADnKS8dBu9L8OJo1wZdpfmUnTUg==","signatures":[{"sig":"MEUCIQDLoExMc3ubY0DJv7sDTz38kLezhrmOrjTeNo0L3s+GJgIgB5TMmlZZBwc7pW8d7u0oPM+Z/7sYWAWjRUCPL7fPh4o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"4a85688446a4d94a03909e0ae292766744a3c313","engines":{"node":">= 0.8.0"},"gitHead":"c5a3c150ab62deeb61da5bd0b6265115b1b35f27","scripts":{"test":"mocha --reporter spec --require should test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --require should test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot --require should test/test.js"},"_npmUser":{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.21","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.0.1"},"devDependencies":{"mocha":"1","should":"3","istanbul":"0"}},"2.0.1":{"name":"mime-types","version":"2.0.1","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.1","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"7f5b4712592e7dd46ca733fd1c5f5d71356de615","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.1.tgz","integrity":"sha512-eN798SjxgETHm9yA+Stq5CJl7zqF0vxn9HnRX4fv0SXNOI9MaHKeaqNGCOX1qGtcwKJy3XctHZDucFN0tO9MrQ==","signatures":[{"sig":"MEUCIERGot7cci7ws3vuxU6SCRqQiVSIai/zLsToUliAB9teAiEA1eTA0c6ClshkNWvIXidSPTboJsXe0pzY7DLDcQjf/IU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"7f5b4712592e7dd46ca733fd1c5f5d71356de615","engines":{"node":">= 0.6"},"gitHead":"c6e40fb033331aa87d9d4a5f1e5c0245e9edb2f6","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.21","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.0.1"},"devDependencies":{"mocha":"1","istanbul":"0"}},"2.0.2":{"name":"mime-types","version":"2.0.2","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.2","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"c74b779f2896c367888622bd537aaaad4c0a2c08","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.2.tgz","integrity":"sha512-hH83aTR9/ZC0yNJtFn44fLX0G7Ueu75+uIGQM314YtkqHGw3qVxfy9oCHF2FDx1kh3VnAOrdzSBcsVol1sNjlg==","signatures":[{"sig":"MEUCIA2xn0b9zZe8Le8qwqb+glew3CPT5ehWqdGJZP0WKi/7AiEAmNfVviTercHk357E4zFOaS8s152ckI5ohV2C4O3W/ik=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"c74b779f2896c367888622bd537aaaad4c0a2c08","engines":{"node":">= 0.6"},"gitHead":"7272f212651dcaca233803c58dc251b20668ca61","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.21","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.1.0"},"devDependencies":{"mocha":"1","istanbul":"0"}},"2.0.3":{"name":"mime-types","version":"2.0.3","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.3","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"70b5cb5165b55dcb4972839f16d6077b0bb506f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.3.tgz","integrity":"sha512-gLTMzv0arNJm8WabXwaqtjbPJ9VlqG93T8xCUN90FBESlyGIR1KMIJPmYicpC50AwsoYOhixwtrC7yistoAsgg==","signatures":[{"sig":"MEUCIQCEwa3sNjMdxqIXWIkx8toafNN6Lo0PCRs5YWNcs+azCAIgeq1gN5URJx86RGf2KmUfqpz27DGCeDe6+uZve4tDIoQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"70b5cb5165b55dcb4972839f16d6077b0bb506f4","engines":{"node":">= 0.6"},"gitHead":"7d38db8c0576cf7a2dd49df4818dc129090b3a2f","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.21","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.2.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0"}},"2.0.4":{"name":"mime-types","version":"2.0.4","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.4","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"855a612979141d806ba5104294a28c731c6ea790","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.4.tgz","integrity":"sha512-OBFm5ilBk5s73L32FCteA+9ai+4j7iIs/MmJe/JjneNym1FTV/D4AgTOlk0DJhHG9eRLPLcg8bCZ8K5c/rgdkw==","signatures":[{"sig":"MEUCIQD8NyV0m8ZRfn0v1105Ql/PWywPVm765Xv6I7W1fuSC0AIgPnCbuNpZtjlxtslix6sQL3Bp080hmyltJwVAkvq0Rlg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"855a612979141d806ba5104294a28c731c6ea790","engines":{"node":">= 0.6"},"gitHead":"63a9b82e6e364d62428ed5459e5486504c489bf2","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.21","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.3.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0"}},"2.0.5":{"name":"mime-types","version":"2.0.5","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.5","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"017db3ef9aff1fc7229e9babe2ac4b032baf837d","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.5.tgz","integrity":"sha512-m7ETTXgolXpu7j7GII4WZSmIrT8n8mgf/SeTzyYLJcK7Cdf6agUHOClX2xUoGobX2bBEY1xxx/nUTlMgHFA28A==","signatures":[{"sig":"MEQCIDZe3xqe903D3tvsyIKz9BjmcQrL4vd/cOPKRD5XOtnsAiAycy3xRSCFo29q/0JhM5sV54LKugpP8N7xgqoS0NR58g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"017db3ef9aff1fc7229e9babe2ac4b032baf837d","engines":{"node":">= 0.6"},"gitHead":"5f45d92a916100f86bf0eca1d953d523fcc2dfaf","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.3.1"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.5"}},"2.0.6":{"name":"mime-types","version":"2.0.6","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.6","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"9deae929dc382665ea42e3848d1d3e3c4aef16e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.6.tgz","integrity":"sha512-gVHjR7TGmrp7i5rY5p9NUBlTUJZiToR1Upu+HN/XeHmpBaBDTM3JGxbY4Nh0LebiniHZyleA3lWtU+bpP8Ce4Q==","signatures":[{"sig":"MEUCIGi3V8gfhEwRlsy+5qhZPkISOdfK/8/uwqmMCDYFcN0yAiEAoe1EzVNDxKTLNs7BvWFPYBZ+4KCRS3p78QWJZ0dovfI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"9deae929dc382665ea42e3848d1d3e3c4aef16e9","engines":{"node":">= 0.6"},"gitHead":"5348665cf1f2b3611a415da91aac17d431ddd019","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.4.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.5"}},"2.0.7":{"name":"mime-types","version":"2.0.7","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.7","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"0cb58d0403aec977357db324eea67e40c32b44b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.7.tgz","integrity":"sha512-vBZyuPcgzFDeTz1nWiY/X4RKKPxgf+VsrygiGo5azqz3P5teR3JDbSlGGWzn9Bu0jSMcaRFH+x15bgiaIq5RvQ==","signatures":[{"sig":"MEUCIHTqsAOSk2eUBWvq21MGd1GT7YcLapIANskC6i76dIjWAiEAzDR6Ox7PLOMAZFQ8cykuAsB24h5QINwQl5kw912zWJM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"0cb58d0403aec977357db324eea67e40c32b44b2","engines":{"node":">= 0.6"},"gitHead":"4216c095dcc3390c2b8f4a96a9eae94d11420f56","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.5.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.5"}},"2.0.8":{"name":"mime-types","version":"2.0.8","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.8","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"5612bf6b9ec8a1285a81184fa4237fbfdbb89a7e","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.8.tgz","integrity":"sha512-grE/DCZ4qGuR3JLlB8cPoqeCUNIO8AGyWILVh6y24gxTQlmxVmvV8MvVGErka7UroXOAwQaF9WU9B76uqlVJsQ==","signatures":[{"sig":"MEUCIQCQu4cNNUbh1uqjJmZH+WYkbatjfGN6XqRAY9+qOavkIQIgXNc05QA3MXZjnVoe+pMdZ+SahdkU18sp45XmaM0c0Us=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"5612bf6b9ec8a1285a81184fa4237fbfdbb89a7e","engines":{"node":">= 0.6"},"gitHead":"19e01e8bd630a1719ada4a3e3e9b7192b4ddb034","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.6.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.5"}},"2.0.9":{"name":"mime-types","version":"2.0.9","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.9","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"e8449aff27b1245ddc6641b524439ae80c4b78a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.9.tgz","integrity":"sha512-BbLj70Zd5NxN2pQLkzHQqteIZF8bqHruYJrO/6holhSKEcm24acJ4T+nVLcXOlXn4JRLbRuBsq6C+sr+rDM2/Q==","signatures":[{"sig":"MEUCIQDqX3cEiEJBbjMLXpdzjqnGVmMq6Z3Tbdq/4wPdlXR5zQIgOTCwIsrHm7Zd7kusphz5Dg7OXUkrOJ/rdfLIOc5kJrU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"e8449aff27b1245ddc6641b524439ae80c4b78a6","engines":{"node":">= 0.6"},"gitHead":"1c6d55da440b6a9d2c0e9c2faac98e6b1be47fc7","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.7.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.5"}},"2.0.10":{"name":"mime-types","version":"2.0.10","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.10","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"eacd81bb73cab2a77447549a078d4f2018c67b4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.10.tgz","integrity":"sha512-6BrF520aDPQWWSWcQYthxitp0XWLnB1R/EpjtTeA8q80XxcDkOf0G7ba7j6ml0xlpb2VIPR0NmcsARPZb3CfnQ==","signatures":[{"sig":"MEUCIQD5tcDgBOeky6Wbtw1MFrZJlmQMXLkHSYVJk4UfFnj/9gIgUDgBkDbB1WSfuyClIU4eKXXlx4O34QYtOLgoSpbfkrg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"eacd81bb73cab2a77447549a078d4f2018c67b4d","engines":{"node":">= 0.6"},"gitHead":"9d4533a2b3a68af48a7f3ded9f8f525648e7bcc1","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.8.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.7"}},"2.0.11":{"name":"mime-types","version":"2.0.11","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.11","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"bf3449042799d877c815c29929d1e74760e72007","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.11.tgz","integrity":"sha512-+94e9boSSjaNLBNyZw87aPZ2sf184sHucMXLRj1mlBV0E4D2RW8Yi6dup+i1cBc37SzWMlOdn0K4rgWOUdShBA==","signatures":[{"sig":"MEYCIQDjuMzHes8sqVyE1bWz5rXpXMKbI72EEwoz7/PpkJLNwwIhAMPDCtBdQzWiODoFywu1MHYvcqiBNAo85PuprQupPdCP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"bf3449042799d877c815c29929d1e74760e72007","engines":{"node":">= 0.6"},"gitHead":"4b233cfbb6704e88eca121e9d9f6e6f23957e48a","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.9.1"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.9"}},"2.0.12":{"name":"mime-types","version":"2.0.12","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.12","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"87ae9f124e94f8e440c93d1a72d0dccecdb71135","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.12.tgz","integrity":"sha512-KeYczXUPHXZR0KJXsGYggj5C3Etc77fn2es24XtW7sIuRmaC2J9M9sB2GAtugIKFaNNoVR1fX0L4orVnzJpJcA==","signatures":[{"sig":"MEUCIQCJ8S6GsvMJSAPqUud4pvoqoEVhqm5okX/Ub3j1qcnWLAIgA0/PHaYvAa6beZA+lF/ONfnZUJYCaAHijkFO2o0fsQ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"87ae9f124e94f8e440c93d1a72d0dccecdb71135","engines":{"node":">= 0.6"},"gitHead":"a1e3c4b6bbb6afb615c8a058481d58cb57a4cb95","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.10.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.9"}},"2.0.13":{"name":"mime-types","version":"2.0.13","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.13","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"333f5579ae6eb203fd8f30a568a869d31a8f1cac","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.13.tgz","integrity":"sha512-qIR+xv6bDd85+ec+VDbr2uBERjiXdeqyFLdsAiXGqboCX5RgF41UZeV2S6RpYK/4bu6ZNsi5oIl5Ct/VGrjK8A==","signatures":[{"sig":"MEYCIQD2mS9Gkk6kPLWh6+TZA3n805iTxUebRdCG4XsiDRnkGgIhAKmtK5ekySxU5l9vdI6V3tV9rasbxR6zAN6pq+zesfwO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"333f5579ae6eb203fd8f30a568a869d31a8f1cac","engines":{"node":">= 0.6"},"gitHead":"4e53ef0ec8b614992d5d8212e5aff1151ee97738","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.11.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.9"}},"2.0.14":{"name":"mime-types","version":"2.0.14","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.0.14","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"310e159db23e077f8bb22b748dabfa4957140aa6","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.0.14.tgz","integrity":"sha512-2ZHUEstNkIf2oTWgtODr6X0Cc4Ns/RN/hktdozndiEhhAC2wxXejF1FH0XLHTEImE9h6gr/tcnr3YOnSGsxc7Q==","signatures":[{"sig":"MEYCIQDLfMeIKOQNqG8+l6BFjBdTTICusSHLKtqbmtQXx+8kFQIhAJnDnOIJWwV+pBGTeKj5PkFB4ZGcPyjydEc25IYAF6EX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"310e159db23e077f8bb22b748dabfa4957140aa6","engines":{"node":">= 0.6"},"gitHead":"7d53a3351581eb3d7ae1e846ea860037bce6fe3f","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.12.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.9"}},"2.1.0":{"name":"mime-types","version":"2.1.0","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.0","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"26e401fb4ccc1fa5c8b15bac4a1aefb9af05b0b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.0.tgz","integrity":"sha512-E3ZX8HRfMgWjjMcENMFAK/uT+7ILMM3Tq7sx8lQid8YGdOsNC4LtYA5UWl86TUN5rF653NtAxn5zZBA3WC19ww==","signatures":[{"sig":"MEQCIHSoJf6QyTAIhNIuFPDU7bvZS5K1h5vd5fPfEsruWFT+AiAR7ror3Elr781AzcsoahKvV72r1H4C7Dpjt+TlKUQmEg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"26e401fb4ccc1fa5c8b15bac4a1aefb9af05b0b1","engines":{"node":">= 0.6"},"gitHead":"95130f68c743520b8b54ce7341d84c0833cbb375","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.13.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.14"}},"2.1.1":{"name":"mime-types","version":"2.1.1","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.1","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"c7b692796d5166f4826d10b4675c8a916657d04e","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.1.tgz","integrity":"sha512-Ny1adSku8PrRhb8t9UiC7TZ7CI2ik8sgsDxnkGBNFIVHo9H0CcIpurlhLZ2UH7jpoa06HT0GSUfv++7B/lnd+A==","signatures":[{"sig":"MEYCIQC+mHeamiX6kJVOAR8ntpByzjbpd9OO/KsMUiQrAc+A/wIhAI+DlgWRauDQROoRRz3GcE6RfD5xmRIum5xRI6zECikM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"c7b692796d5166f4826d10b4675c8a916657d04e","engines":{"node":">= 0.6"},"gitHead":"c067c0b0d8a2e7df82c356dc295852688be1245c","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.13.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.14"}},"2.1.2":{"name":"mime-types","version":"2.1.2","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.2","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"6545ccd95afe77b9c655d81c2e6ceace36257227","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.2.tgz","integrity":"sha512-u531XpUuatmDePEt7aT0ONMOxlsiiY8rCOgPHKL6uZwQ6QgGvgq1Z+oeYpcWTf4ip/4Q6rosnZWjvt6BMLU1cQ==","signatures":[{"sig":"MEUCIEY6n1qQfZuhCaxeqggiIQ+xNyVjq249cetQdj6C50WKAiEAn1h144G89AjPRGc0OE6PEjLTe5orZGfL5HH1tlLaVG8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"6545ccd95afe77b9c655d81c2e6ceace36257227","engines":{"node":">= 0.6"},"gitHead":"5704d7bb0cf90f14b442f0b954ace6c1dbc5f435","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.14.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.16"}},"2.1.3":{"name":"mime-types","version":"2.1.3","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.3","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"f259849c7eb1f85b8f5f826187278a7f74f0c966","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.3.tgz","integrity":"sha512-yG2aUisDDz12mVDXJAqB4akjYZO8pFntdklyHAHCghr7lgAVTp7t8mrH7e5J6O5ngQD7av4h/2bdWRXU3A1goQ==","signatures":[{"sig":"MEYCIQCxvReYWWK2a1rTVOF5EAm7gkFDqDwxc7We7WPXMqRVTgIhAPSlbSx3wgXAxPuYnwDaSEavrPPxpLDZ9sxlTlOgDE8S","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"f259849c7eb1f85b8f5f826187278a7f74f0c966","engines":{"node":">= 0.6"},"gitHead":"565c49ad5683d4a123a170da3444ed32ce426c3a","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.15.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.17"}},"2.1.4":{"name":"mime-types","version":"2.1.4","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.4","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"6562b328e341245cb63b14473b1d12b40dec5884","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.4.tgz","integrity":"sha512-Drx8+Rsyw683vPZ91L9aFwuuuwy1zsZMmSUBXSIf0MXU+OckhmTxKEzLLI3IYsX71AAcP4+pj9YoVQjRwYLJdw==","signatures":[{"sig":"MEUCIQDS7SfpGoNFa97+OgF8xYTEJsthL523WS5Upb7ZQirbKAIgDZUqQ9Mcey9nuolt1gFCt2XOrWWTN0tBLPhv7z+4GNQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"6562b328e341245cb63b14473b1d12b40dec5884","engines":{"node":">= 0.6"},"gitHead":"0d801665a7374c71d905d14bc3afc2b0624bb896","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.16.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.17"}},"2.1.5":{"name":"mime-types","version":"2.1.5","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.5","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"2355ac0e1e0c5a68d8df6474b431192743f0a3ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.5.tgz","integrity":"sha512-yMHYuggR1CpBWq0MKMIDiZCpB8PPW+axaSoBoBiSLvPsOJEFoqX3m3Rq3RwuX7xPSLBlwsyYUfU+cBKHgYYvHg==","signatures":[{"sig":"MEUCIQDrV4eiLMJR1vUlNB4CXhDQxXJ0i7Y5j7rXwOzLX24oCAIgT/CH728yAx81Q+nBDSJSXHOZ7CqGYBJwSC3dR7TDD9c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"2355ac0e1e0c5a68d8df6474b431192743f0a3ea","engines":{"node":">= 0.6"},"gitHead":"de48c96e731e5903433ac2cb5c0d9fd056d9d19b","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.17.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.18"}},"2.1.6":{"name":"mime-types","version":"2.1.6","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.6","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"949f8788411864ddc70948a0f21c43f29d25667c","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.6.tgz","integrity":"sha512-/Wu40EFhOQ8MUNVFOFM3kuVGjGKrkWoLGzi7OHeTA/BTTKNkHD7jp/VrbX/bU883aDrpnsoFDPl9pxXY57Rq6Q==","signatures":[{"sig":"MEYCIQDyVSNZi8RpX5eURNN6A/Th52jwEbGt4Aq/QnO5cC3JdgIhANS/980ggpo4zgWRdmeYSDu4gNDah0Q1po50uG13P6sK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"949f8788411864ddc70948a0f21c43f29d25667c","engines":{"node":">= 0.6"},"gitHead":"8bfa7c2c9a4ad07f5807c7a0e547e0246155944d","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.18.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.19"}},"2.1.7":{"name":"mime-types","version":"2.1.7","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.7","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"ff603970e3c731ef6f7f4df3c9a0f463a13c2755","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.7.tgz","integrity":"sha512-m+j0nh7H0xUSa4fvA9QuwEhMhKxepAY4jbKOrpjdGJyyzgTCo2219L4kn8zLx0tXuQsmLf//4wMreA6YBpAw+Q==","signatures":[{"sig":"MEYCIQDG2I3dibcE6VdUGG3McxLfm314XSzThyWIHEVQKs0whQIhAJDl4y3E++eBL13CdqL4McIxziT0GBE1IrljslxaK22c","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"ff603970e3c731ef6f7f4df3c9a0f463a13c2755","engines":{"node":">= 0.6"},"gitHead":"43f860c7df4a70246272194d601348865d550298","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.19.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.3.20"}},"2.1.8":{"name":"mime-types","version":"2.1.8","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.8","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"faf57823de04bc7cbff4ee82c6b63946e812ae72","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.8.tgz","integrity":"sha512-PHhLyM6wFxef+LfMcX2GvMqEY8mAK4Sv3DmqqW+1sYKGMZRmJkyF6ZgvhJGF3W59YL+4yMC7c2CHfG+lcbqY5A==","signatures":[{"sig":"MEUCIBvjN8Ms2hv9F6ulgO7UGetulGIZVF15BPr7CuwjmiuKAiEA9FWGsZPjn+rX+4YQuOEpuaiNOnvkRZH8Ev/tOuDep6w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"faf57823de04bc7cbff4ee82c6b63946e812ae72","engines":{"node":">= 0.6"},"gitHead":"100876a23fab896d8cf0d904fc9778dbdfc1695b","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.20.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.4.1"}},"2.1.9":{"name":"mime-types","version":"2.1.9","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.9","maintainers":[{"name":"jongleberry","email":"jonathanrichardong@gmail.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"dfb396764b5fdf75be34b1f4104bc3687fb635f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.9.tgz","integrity":"sha512-omiqgDW9rOHbvPP6PrGKQvSIpNh5OplM4hfU2aA+cThb51GKaWxL9Fd8OWNK/ZbtxOCJn5ydQ83PXKMyz9XRFg==","signatures":[{"sig":"MEYCIQCowD8llnMV4BHV0QRM5qb96SDJp/kd8wpzKFzTHzwmtQIhAJjrV9ygxUdbb+MX1CSOF8qDqyPBr2lAW7a15stfvOaM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"dfb396764b5fdf75be34b1f4104bc3687fb635f8","engines":{"node":">= 0.6"},"gitHead":"329f1c77e1a77c8fac59b15038e3808e9e314d96","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.21.0"},"devDependencies":{"mocha":"~1.21.5","istanbul":"0.4.1"}},"2.1.10":{"name":"mime-types","version":"2.1.10","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.10","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"b93c7cb4362e16d41072a7e54538fb4d43070837","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.10.tgz","integrity":"sha512-cjDtNq/7/kWehCc5gPzRnwBMJ8lx+kmg1rvBtbx8o84v+E3Gtc+hVgAXXhLcpICjQbgQGFYSt8WCCmen5fOQaQ==","signatures":[{"sig":"MEYCIQD1lu9M2gJOwwQ7Nr4+OAQR0B+/vHfkL1CTZVFi5nMeBQIhAN1JNTu4Lh7eM08/rA7u+yT8RC+A/w1xQ1f98ABz0Iyt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"b93c7cb4362e16d41072a7e54538fb4d43070837","engines":{"node":">= 0.6"},"gitHead":"70785d38e9cc251137b00f73ab3d3257c4aea203","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"2.14.7","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"4.2.3","dependencies":{"mime-db":"~1.22.0"},"devDependencies":{"mocha":"1.21.5","istanbul":"0.4.2"},"_npmOperationalInternal":{"tmp":"tmp/mime-types-2.1.10.tgz_1455575237256_0.9163766100537032","host":"packages-9-west.internal.npmjs.com"}},"2.1.11":{"name":"mime-types","version":"2.1.11","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.11","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"c259c471bda808a85d6cd193b430a5fae4473b3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.11.tgz","integrity":"sha512-14dD2ItPaGFLVyhddUE/Rrtg+g7v8RmBLjN5Xsb3fJJLKunoZOw3I3bK6csjoJKjaNjcXo8xob9kHDyOpJfgpg==","signatures":[{"sig":"MEUCIQDFjqcWXhyxsLWtYTpj7iWEPm9VzpZQHg29PeLG6iGY5QIgeeTccjqEpIotPXPiKyKU1sj6x2b/bUNpDsbuJpWGjIk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"c259c471bda808a85d6cd193b430a5fae4473b3c","engines":{"node":">= 0.6"},"gitHead":"298ffcf490a5d6e60edea7bf7a69036df04846b1","scripts":{"test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"2.15.1","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"4.4.3","dependencies":{"mime-db":"~1.23.0"},"devDependencies":{"mocha":"1.21.5","istanbul":"0.4.3"},"_npmOperationalInternal":{"tmp":"tmp/mime-types-2.1.11.tgz_1462165365027_0.7217204745393246","host":"packages-12-west.internal.npmjs.com"}},"2.1.12":{"name":"mime-types","version":"2.1.12","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.12","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"152ba256777020dd4663f54c2e7bc26381e71729","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.12.tgz","integrity":"sha512-irQD8Ww11AaU8vbCRjMuaq4huvb2ITxVg/VDBrvf8keFtbWZ3zbGO0tvsCMbD7JlR8mOYw0WbAqi4sL8KGUd5w==","signatures":[{"sig":"MEYCIQCFQpN5/gWYTDsfIstIdxGcRjm2rToPtNweAPmuvQsr/wIhAMgfDWEaSYTK8EM+WTp/zaa3t20DNNkWJ6mkrEcngoL9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"152ba256777020dd4663f54c2e7bc26381e71729","engines":{"node":">= 0.6"},"gitHead":"7193a9094e2efe31da93988350bb0b32ab18b1ea","scripts":{"lint":"eslint **/*.js","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"2.15.9","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"4.5.0","dependencies":{"mime-db":"~1.24.0"},"devDependencies":{"mocha":"1.21.5","eslint":"3.5.0","istanbul":"0.4.5","eslint-plugin-promise":"2.0.1","eslint-config-standard":"6.0.1","eslint-plugin-standard":"2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types-2.1.12.tgz_1474237415119_0.03028594213537872","host":"packages-12-west.internal.npmjs.com"}},"2.1.13":{"name":"mime-types","version":"2.1.13","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.13","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.13.tgz","integrity":"sha512-ryBDp1Z/6X90UvjUK3RksH0IBPM137T7cmg4OgD5wQBojlAiUwuok0QeELkim/72EtcYuNlmbkrcGuxj3Kl0YQ==","signatures":[{"sig":"MEQCIHqHsyNAgRxO9qHQrwguRWhhjLgVC0y8D4KUwQD6FC/DAiByZ4oOhrBxiIJsiySbcRhPa41vqfq3zg42mXMbF3+6tA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"e07aaa9c6c6b9a7ca3012c69003ad25a39e92a88","engines":{"node":">= 0.6"},"gitHead":"83e91a5aea93858bc95ec95a99309592cba0ffe3","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"https://github.com/jshttp/mime-types","type":"git"},"_npmVersion":"1.4.28","description":"The ultimate javascript content-type utility.","directories":{},"dependencies":{"mime-db":"~1.25.0"},"devDependencies":{"mocha":"1.21.5","eslint":"3.10.2","istanbul":"0.4.5","eslint-plugin-promise":"3.4.0","eslint-config-standard":"6.2.1","eslint-plugin-standard":"2.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types-2.1.13.tgz_1479505166253_0.5666956284549087","host":"packages-12-west.internal.npmjs.com"}},"2.1.14":{"name":"mime-types","version":"2.1.14","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.14","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.14.tgz","integrity":"sha512-okJd888hr2XVzvoRxEOnEEgmlsOnLVoIOAKoBgYMLOQPNQFprAx970dULXC3ueiQMIiTsSxUFSpa2y3IlBefCg==","signatures":[{"sig":"MEYCIQD9SIFUqn/2Na8WrmaJkJfUG8pcg41b3YuQescwSvZHVwIhAPqo+oZjNWsU0W4iUuSRypdABgr52yJehqn/Waz/x9xr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"f7ef7d97583fcaf3b7d282b6f8b5679dab1e94ee","engines":{"node":">= 0.6"},"gitHead":"d7d15e50fe6b3a2da79d855015d25efa50e9f157","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"2.15.9","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"4.6.1","dependencies":{"mime-db":"~1.26.0"},"devDependencies":{"mocha":"1.21.5","eslint":"3.13.1","istanbul":"0.4.5","eslint-plugin-promise":"3.4.0","eslint-config-standard":"6.2.1","eslint-plugin-standard":"2.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types-2.1.14.tgz_1484458141358_0.7563668976072222","host":"packages-18-east.internal.npmjs.com"}},"2.1.15":{"name":"mime-types","version":"2.1.15","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.15","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"a4ebf5064094569237b8cf70046776d09fc92aed","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.15.tgz","integrity":"sha512-PjleM8evsL+OvsuE6EXom+8QAcSYALjmw+vYFqH8I+/+wNlewVgbM7/O1wcdCVL/ta8SC6l6BEK7A0/mZywpfg==","signatures":[{"sig":"MEYCIQDfItjuv+3QRopNeBiGSQ1JgrT4xYJrXDg5gqz9OOXzRwIhAOpeOs7b5tVZkqLhuSNc3XKTxECV3JEqYHGKBSoM8kXv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"a4ebf5064094569237b8cf70046776d09fc92aed","engines":{"node":">= 0.6"},"gitHead":"c44863eb0463ee16f3eb04576591cc4c4d6b214c","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"2.15.11","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"4.7.3","dependencies":{"mime-db":"~1.27.0"},"devDependencies":{"mocha":"1.21.5","eslint":"3.18.0","istanbul":"0.4.5","eslint-plugin-promise":"3.5.0","eslint-config-standard":"7.1.0","eslint-plugin-standard":"2.1.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types-2.1.15.tgz_1490327753615_0.3609113476704806","host":"packages-12-west.internal.npmjs.com"}},"2.1.16":{"name":"mime-types","version":"2.1.16","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.16","maintainers":[{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"2b858a52e5ecd516db897ac2be87487830698e23","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.16.tgz","integrity":"sha512-YjTLbZxlgVrR0Gv3KxaqEcTDMoxI+kjRw8box2aRPm0IDtIqP6hC6pv5F2ONy7UcgTtSQE6zAqkZE7jDP0gb1g==","signatures":[{"sig":"MEUCIGM3IGDBOTMKmajE+CSd2timb8BdCe6K3D22C8aldx+WAiEAmU+43f+3EtECoKcLLDe0Eh1BPNuNI4T6YMEqPTu7Adg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"2b858a52e5ecd516db897ac2be87487830698e23","engines":{"node":">= 0.6"},"gitHead":"a776f883a8bb1d50588224c46caefa6fc313f790","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"3.10.10","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"6.11.1","dependencies":{"mime-db":"~1.29.0"},"devDependencies":{"mocha":"1.21.5","eslint":"3.19.0","istanbul":"0.4.5","eslint-plugin-node":"5.1.1","eslint-plugin-import":"2.7.0","eslint-plugin-promise":"3.5.0","eslint-config-standard":"10.2.1","eslint-plugin-standard":"3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types-2.1.16.tgz_1500950558329_0.4321689426433295","host":"s3://npm-registry-packages"}},"2.1.17":{"name":"mime-types","version":"2.1.17","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.17","maintainers":[{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"09d7a393f03e995a79f8af857b70a9e0ab16557a","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.17.tgz","integrity":"sha512-rOFZoFAbaupSpzARUe5CU1P9mwfX+lIFAuj0soNsEZEnrHu6LZNyV7/FClEB/oF9A1o5KStlumRjW6D4Q2FRCA==","signatures":[{"sig":"MEQCIGwLdLUbCupNVQckI8mYNBUvBSDNNIRScFOCU5C4C9aLAiBVNN7h6abChyA8p8MEgNOQKdJ7niK4qUGf6J4SRUy9mA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["HISTORY.md","LICENSE","index.js"],"_shasum":"09d7a393f03e995a79f8af857b70a9e0ab16557a","engines":{"node":">= 0.6"},"gitHead":"80039fe78213821c2e9b25132d6b02cc37202e8a","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"3.10.10","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"6.11.1","dependencies":{"mime-db":"~1.30.0"},"devDependencies":{"mocha":"1.21.5","eslint":"3.19.0","istanbul":"0.4.5","eslint-plugin-node":"5.1.1","eslint-plugin-import":"2.7.0","eslint-plugin-promise":"3.5.0","eslint-config-standard":"10.2.1","eslint-plugin-standard":"3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types-2.1.17.tgz_1504322793218_0.6663200033362955","host":"s3://npm-registry-packages"}},"2.1.18":{"name":"mime-types","version":"2.1.18","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.18","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"6f323f60a83d11146f831ff11fd66e2fe5503bb8","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.18.tgz","fileCount":5,"integrity":"sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==","signatures":[{"sig":"MEUCIHdWvpu26LAu2XkoSWvKs9Z50rck4Fia9wYScp9+mF79AiEA9LkLbhm64ld0N+b8gFj91H0ndPTJ7ohdws7ke+ho2Qw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14341},"files":["HISTORY.md","LICENSE","index.js"],"engines":{"node":">= 0.6"},"gitHead":"076f7902e3a730970ea96cd0b9c09bb6110f1127","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"5.6.0","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"6.13.0","dependencies":{"mime-db":"~1.33.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"1.21.5","eslint":"3.19.0","istanbul":"0.4.5","eslint-plugin-node":"5.2.1","eslint-plugin-import":"2.8.0","eslint-plugin-promise":"3.6.0","eslint-config-standard":"10.2.1","eslint-plugin-standard":"3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.18_1518802461370_0.7224202442179994","host":"s3://npm-registry-packages"}},"2.1.19":{"name":"mime-types","version":"2.1.19","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.19","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"71e464537a7ef81c15f2db9d97e913fc0ff606f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.19.tgz","fileCount":5,"integrity":"sha512-P1tKYHVSZ6uFo26mtnve4HQFE3koh1UWVkp8YUC+ESBHe945xWSoXuHHiGarDqcEZ+whpCDnlNw5LON0kLo+sw==","signatures":[{"sig":"MEQCICdJLF/w/mVo2z2d6UKp6rIlq5gyBph4U+PiFa8JcPHFAiAcMz1hk32osGmknxLXamYVO/4Nksvp6hpb/ulsbbwFfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14676,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTtBXCRA9TVsSAnZWagAAjF4QAJrZ4PBxWvh7l1DeYPzG\nmVMsannUqqjnDbtNJX441rdKJi8ammCnBz8lK026+cfLCwr3lzBHvuJw3Vl4\nel2wygL1+DbCiK/r53ATrRmdbD5/F/DYGE9lYN75O3vxs8t98dlBzqSH1aZx\n2tG3pwmfTGa0/TVkzpNrCvolxXYleo7orXZ5PSf2tRLkeGV18625cgYKlnTR\nUdyLQfpHtLwmARJB5xM/279rM1jXA/oK0V1IMcjpEG/+bBL8bHGkpwsqrOb9\nSLwxQiDIWNN8uh23g4VB7KjUSKmjBvM+Aq9D7UPf7x5Iqti6Fe0mTNvnkbla\n83kMaBHgMINTpTu4Lh64C/eahlo54OBRTZWopP2qrUgUZIQdLvWH2P3fKWXt\n1IcEn4sq/8r7wtq9q3dEZcrbN2wEsStFUVOJ1Stn9jDXIntwEhvno5fTPBo0\nws03MtNrL0ka17mLjAgZX8c+3c1xCVbejiwAy7YN9gutZfQJ5cmV0hRzspa/\nJTC1LVfSMhFj5PhqliXG3MGA6zUHMSACveRsBw/2AEcd+lp5WSGbbdkelskT\n7SbwxD+Fe288EPA6SAWz4C2HZBNujHi2GUbQDZYdCg2VmptzR/S6hy70ROsx\nBlDWxCNWABHd9tnp0JL2yg6FXUtRLPc7hZTl1ecb2bO/AdfIz0TjwSJW+QU/\ncWQe\r\n=Sdv/\r\n-----END PGP SIGNATURE-----\r\n"},"files":["HISTORY.md","LICENSE","index.js"],"engines":{"node":">= 0.6"},"gitHead":"7c4ce23d7354fbf64c69d7b7be8413c4ba2add78","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"5.6.0","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"8.11.3","dependencies":{"mime-db":"~1.35.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"1.21.5","eslint":"4.19.1","istanbul":"0.4.5","eslint-plugin-node":"6.0.1","eslint-plugin-import":"2.13.0","eslint-plugin-promise":"3.8.0","eslint-config-standard":"11.0.0","eslint-plugin-standard":"3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.19_1531891799651_0.29011555741327655","host":"s3://npm-registry-packages"}},"2.1.20":{"name":"mime-types","version":"2.1.20","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.20","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"930cb719d571e903738520f8470911548ca2cc19","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.20.tgz","fileCount":5,"integrity":"sha512-HrkrPaP9vGuWbLK1B1FfgAkbqNjIuy4eHlIYnFi7kamZyLLrGlo2mpcx0bBmNpKqBtYtAfGbodDddIgddSJC2A==","signatures":[{"sig":"MEUCIHGjASLv/vy65ZUZcXwElV8dKwTSvliw1AWdZfnuPD/YAiEAsD2bd9Aeep2vfxcrnRypLqJjqhgisPohxiOLig7z7Zg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbgySOCRA9TVsSAnZWagAAmgAP/0/KvhTzYKLlVNqKYS25\nm/8NWOT2ANSUzj3Z6+WuqmmeVWS7VVvmOI/2OscrQLX7nFEMicjz9DHZtCVW\nWBeLLbBEmx7cT1WOZA37jM2t+2BOz2w689YSwkasLjh9lZPZVEVvuww7248u\nQnwbxBM34ZSZFyMoaxfyotRt9KUMjsuOCTigTJscaayw+ViObrGvEK6vp6Q6\nkdTJ5oTMCo3ahS0H9VVEPU6yb3C9/5Szvp21sUOYWoJq2Rv7QXDI2R+UZzpA\n5CJetFzTXOHzyRW2eEdXpEowAaZbykn1O7Dul9nAZJLODMvNFaKXAmQNVq9Q\nqFFI0ECf77Ijg9Am5zNaeSRuujGZ351WpVzgct8gCepUgPRn1Ro302pXFKte\n/mMSFARUYA+MkdDNH8l+73byG3ipw4YN38nQd7KKyngpxirFvDvqBUg17c3+\ntBksa4PHLP0+qVHhjeL+A19bVByQHP0P+jWkpTiJSVvIgk92pPVpIjxmnuI7\nlb76ypP946/Kgrm16+o4nKCDIhGAnRYmmC8wCN8kBM7YNW7vICTOx6NwH03V\nA9zo4NCVackZxuALNrQ9p7VcMWk6Sn+NFFHov1YV6iAlA8L/rMajb19IBwnc\nSOPH2ezEd5E9wqrotB30FgPo9IDDfPJGVh55xGL69PO86m3ANZdIdSGW0RHO\ne5M2\r\n=qmfT\r\n-----END PGP SIGNATURE-----\r\n"},"files":["HISTORY.md","LICENSE","index.js"],"engines":{"node":">= 0.6"},"gitHead":"1b0f6e8b605fa83c961ef352be701e23f66cf917","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot test/test.js","test-travis":"istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter dot test/test.js"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"5.6.0","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"8.11.4","dependencies":{"mime-db":"~1.36.0"},"_hasShrinkwrap":false,"devDependencies":{"mocha":"1.21.5","eslint":"4.19.1","istanbul":"0.4.5","eslint-plugin-node":"6.0.1","eslint-plugin-import":"2.13.0","eslint-plugin-promise":"3.8.0","eslint-config-standard":"11.0.0","eslint-plugin-standard":"3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.20_1535321229921_0.8062784689775195","host":"s3://npm-registry-packages"}},"2.1.21":{"name":"mime-types","version":"2.1.21","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.21","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"28995aa1ecb770742fe6ae7e58f9181c744b3f96","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.21.tgz","fileCount":5,"integrity":"sha512-3iL6DbwpyLzjR3xHSFNFeb9Nz/M8WDkX33t1GFQnFOllWk8pOrh/LSrB5OXlnlW5P9LH73X6loW/eogc+F5lJg==","signatures":[{"sig":"MEUCIDP7agiW15n0NRJZsLKFjYqHlc11iYYbmz5/pVa8IKGyAiEA6b9uLb/Mw5ewJ8ZaokHX61a8FKklucJJ99NnpQ/7X4Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14860,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbyqLkCRA9TVsSAnZWagAAVigP/RL9Plb3H2UFfyVhYQQx\neXr1yHPsEB46hVDaySgvX1YMFiaWibmX+gh7qLp27cjmSyM0O9dxPEt9dFc5\nMQ9aJudZ+Qy6/RFQ2KhPTwkor/rgKx83SXNLru7JT4W/3TuyglYfOdypaDeG\nYBckwRhkA28NQNlPs70nVzAnR66QDvNNcmO7ScdG4qNNCn9YziF8WoXl6xpx\n0SYHRHmiFU22rJGT/8fAm57qFKHUVnisGUrB2QNoVpZH7euxfMfHGS40k7BR\nnP2y0q14jVp+oXNH0vrCtY70/Ys95f+JzHvIJSDh49GCnlM7qN0M+cLFs1hP\ns3/9IRkehSPrb6iyPcoRTsLLYaZq307ce1wM/AJhIJe287Z4pVbmvEinppwR\nPqltP7erKXX9B+eIYPxFQKWbgjkGma9R2PMXgINjT1JW0whjANiu1N+4VcyJ\nkGmgf3Kf6C2VmtwFyyW3bUkpH1mVsTX78vC3wD1YdXjzCgdmPsOAY7JYGBfY\nAHr6/DyG/rgPKsr9lMSs6n33ONbfyHl9VzBT/+gNaj18AqF3bRnfMhWPptJI\n4wVOonYgazuC2w7zYh9m3Wu6CK/lDqlohT7cpSUyJWELbANxbJLZpyP2IJdB\nZvLOL4Cj9lkTgEonV5gN6GDFiIkJkUbtNRCxPrH7sCNrV4TpQf+3CKMcu3SV\nwQsc\r\n=EdfX\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"1aed04a9c43b8b920c0f77d1cb160d42079d978c","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"nyc --reporter=html --reporter=text npm test","test-travis":"nyc --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.4.1","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"8.12.0","dependencies":{"mime-db":"~1.37.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"13.1.0","mocha":"5.2.0","eslint":"5.7.0","eslint-plugin-node":"7.0.1","eslint-plugin-import":"2.14.0","eslint-plugin-promise":"4.0.1","eslint-config-standard":"12.0.0","eslint-plugin-standard":"4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.21_1540006627863_0.6812190744417017","host":"s3://npm-registry-packages"}},"2.1.22":{"name":"mime-types","version":"2.1.22","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.22","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"fe6b355a190926ab7698c9a0556a11199b2199bd","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.22.tgz","fileCount":5,"integrity":"sha512-aGl6TZGnhm/li6F7yx82bJiBZwgiEa4Hf6CNr8YO+r5UHr53tSTYZb102zyU50DOWWKeOv0uQLRL0/9EiKWCog==","signatures":[{"sig":"MEUCIQCh7nRfU0AcYuRt44Gmtl3SM38W6IV03fMJ4ndozcEHGQIgJkyNkGrkybmVDGn643rzYXu0HyrJ9TPF7ANMP/uKt3Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15532,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZfAKCRA9TVsSAnZWagAAkLQP/jW4lBe78qBJSqi0BdL3\nbvjlEBy3K8HNUwrGAPhw36ooYolZtw6mZET7Ylm0taGaWYz7IPrGwmGK3TB3\nUE+OZPGEiolp+cSybxdo3eX3/AzoCVmOk5hJ+RWVzu+wUVQ4tAn3Yrt7drit\nhnNfW4mIjVsT8R2i9XHYvYyTXaz2rtyN9x9TLIdecKgbhYj526b5ZVR3gC2d\nuZ4B4b/Cg3kdVgUt0tzOO8Isw81Kj/bYIrgwa7RqdUwZTcA11TeGBiKtVDye\nSBRYyUniD65y6aykhPxjKWsso5btbzuA0OU3TK0hT/HE+NkOq5VcupUPvPBM\nTOGjVMlQNhGqsJcmJ0UoW3CKvN6g3p1xKGtytRXhPcA4pRUKgTEGOTMxblwi\nkoEnQ4C19er4CfVBGUprXpwczPkZJ5VjhSSKOpT+YNib6vZUQCivAUHTV7eN\nNEaM1LFoKuX4wL9anYd+XtShyyVsql3vtdcHXDprh/02qQHzvELY+py04XpG\nHZcgdA3YT2Bb7jyZpDwwLr8kwmtSQZDYaS/PV+bqGHbdhuwjdbJS6AaDiks0\nq+iBL1OYv/NWK9bCHRmwQVL7tr9iyKax9LnlUIK8QWtcyFogHt3bgNWQeFYa\nJdMhgN0/FmRmPjOnTftDWHU8+TaSFfGXp796ZFPBv0h8mFJlGlVTa/otM76/\n+ijp\r\n=j8br\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"0ac5fe1ad9008b4b141e9f32fb4d63a6478669ba","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"nyc --reporter=html --reporter=text npm test","test-travis":"nyc --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.4.1","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"8.15.0","dependencies":{"mime-db":"~1.38.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"13.3.0","mocha":"5.2.0","eslint":"5.13.0","eslint-plugin-node":"7.0.1","eslint-plugin-import":"2.16.0","eslint-plugin-promise":"4.0.1","eslint-config-standard":"12.0.0","eslint-plugin-standard":"4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.22_1550184458136_0.07147731380368416","host":"s3://npm-registry-packages"}},"2.1.23":{"name":"mime-types","version":"2.1.23","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.23","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"d4eacd87de99348a6858fe1e479aad877388d977","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.23.tgz","fileCount":5,"integrity":"sha512-ROk/m+gMVSrRxTkMlaQOvFmFmYDc7sZgrjjM76abqmd2Cc5fCV7jAMA5XUccEtJ3cYiYdgixUVI+fApc2LkXlw==","signatures":[{"sig":"MEUCIBiJMfltsur0Dqbg+edK1tBmOFYtyjFgyh8aCk3UDfS9AiEAoCFqqmuB3X50rZyNjnJjJjHhijtii+9CwPr+0514E/Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJct//rCRA9TVsSAnZWagAADUcP/1Sx8SZMb+Y0DvqR26zd\nsX74VQgoI4cXQmf1hh/jo2EUpvSK1xxz9H2fQKeF+HPreIhbqretsWfqh4Sd\nsbKVqusZ8xWMz1+Y1whWFzpGMeAe/Fkatka+YgHOsxA9RVcxVVkLCg4PR7ve\n1OxGIUtI5Eqhb7/UTcNY2ha+GwA/RgVnrImoTwNAucLpcaR8KCwpMCd+36nH\n/Rwz6v634o9dHZhvbId/kwpYaoKp3FACuGnmaydheqfv3bm+lqTvLpCCekD6\nTnXI5YJdQWEZp23MVqHCEL3/vYvcck2drlkD8cMLm6Z/6gBGIgvXLqcVnmvQ\nMcJ/MxzGEpaf51594zBAIXcj492IVSw0WN6W+vf0cRyLCqMPGFtRkzJfx/FU\nkp7dkjkpqP41yRWO42dBfSuqRzfPhNr1UPyLjFN6ZSc/MrzijVQKFY0cNmOS\nc81ZSp2RymrE9rJbyZ3DQv9AW4uVy0Was+39+NqtQTMJ6vh7xp+9nUKtnWFy\nQiES2KNAmIOIe4nbNavnbJiFUVzxFqP+NdsKRThXafzYSWJ8URakA3k3u2SK\nHTRbCr18uu+I1ZzZySbvPpE+L6ZzsL3ozbndpei7sDl6QUuHukIjpqH6+M/2\nYmkOnvpDjvNQPbPvqBcZ4zRdpZ3Gqgbu1eZNkwSHyo+tkTaUkZqsw+VlTGwC\nvHXB\r\n=ccqn\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"28b73337cb1aa1583b72d448f30e2f49d6f5f07e","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"nyc --reporter=html --reporter=text npm test","test-travis":"nyc --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.4.1","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"8.15.1","dependencies":{"mime-db":"~1.39.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.0.0","mocha":"6.1.3","eslint":"5.16.0","eslint-plugin-node":"8.0.1","eslint-plugin-import":"2.17.2","eslint-plugin-promise":"4.1.1","eslint-config-standard":"12.0.0","eslint-plugin-standard":"4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.23_1555562474870_0.5469095710208383","host":"s3://npm-registry-packages"}},"2.1.24":{"name":"mime-types","version":"2.1.24","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.24","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"b6f8d0b3e951efb77dedeca194cff6d16f676f81","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.24.tgz","fileCount":5,"integrity":"sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==","signatures":[{"sig":"MEQCIDnSwNQjYSbe8NZJNBA7kQVbgPH/o2y9AAAUKzbmtgkrAiA36WEVtao5ZaGOvsKLRfX48sI0IvNiZ+BmL+XFzgl8yQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15858,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcu+enCRA9TVsSAnZWagAAZDAP/131rZIx2LnrEtxcAVE1\ntwbiuGeMaYMICmK5M+sbC810UK7KyRpukkRs+nWlvSp4CEF5it0NcnKTDgrG\nsxhl4T1TuaYVq9T3WuI+GOP6462yBna6aZXss0obI9fS1V9h8c0K77JUK3mt\n5VATHB8jtNivRIWfUue17GZ5cj0wR528iDoLQwxhnXWm8RugwysWg+IbavVF\nampKZue/RHvOTcz8cLGdj0O4PP0niH1B3oaOCSf6JHoM7N2D+ymv843YSbLE\nGbHjfHRQ+UO5Fy8FTZNVd/6uVIW/VJJTrDqZwCuIzBCPMcEB8KKd0ZjkfVsY\nivEecHoT2BUgBBXs11CcRkUjZAesmmSMr187RO/Cot9DnosRu60dX/VW2Izb\nXyHuH8V5S61SVIOkb8GHtP9pYqYLa07qR5D1vw2kGnonBuCndkOIOYV6PXgv\n4b2OXxuHAmMY9f+HhfsKbZaHdxFcSFJ3KhvpfGyB56yl6dSz1fO0OcXhu2E1\ndLlQlWvVs8i5BtVkYXb+5Js5v5Yua4UhL5Piyz6SxogH8XTtDFQktztne5xE\nhHC7NqHIivWFjCKTSp7iDf0kaqNFwVvwaPGfcMKDp7PMb6qdwUyiSwvDAOES\n1htGf6DLsG9Q7pIXpkhfwyhCk6H1RE4v7lEKWa6wK106ygBUDccVWXw7X+dN\n32yl\r\n=h9nD\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"e5b5f41ef0d7e4e66eb9baeec7920c0cd9ec81f0","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"nyc --reporter=html --reporter=text npm test","test-travis":"nyc --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.4.1","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"8.15.1","dependencies":{"mime-db":"1.40.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.0.0","mocha":"6.1.4","eslint":"5.16.0","eslint-plugin-node":"8.0.1","eslint-plugin-import":"2.17.2","eslint-plugin-promise":"4.1.1","eslint-config-standard":"12.0.0","eslint-plugin-standard":"4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.24_1555818406742_0.4628586923544964","host":"s3://npm-registry-packages"}},"2.1.25":{"name":"mime-types","version":"2.1.25","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.25","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"39772d46621f93e2a80a856c53b86a62156a6437","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.25.tgz","fileCount":5,"integrity":"sha512-5KhStqB5xpTAeGqKBAMgwaYMnQik7teQN4IAzC7npDv6kzeU6prfkR67bc87J1kWMPGkoaZSq1npmexMgkmEVg==","signatures":[{"sig":"MEQCIFw+zp4whraZte+dGIDBH1N1uARzpC4WgHaj6OobSVWOAiBPJ9rSIX8K6tWSm/JYP9IkfKc5ZqMX5qMMoJazTLiCSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16062,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdyr8pCRA9TVsSAnZWagAAQFsQAIs5oj9Qzx/oRzFtRYQ6\n994TJBdmn2s3giERKNeCoI+ZPmw11cEiOt4DLGGRZ2Q5Zd7zcCMQkJIfCcsS\nmSEgcwDh4gxn2uLM74W0TuB5Hk9Vy3150JFn0XR1T323G+4gB5Oc1TTHKEQh\nJOjEQOf7QM4raSdTEkF1YxLbaAlTHoZq54ScUJCo5mAHbEfL/D1wc5/zILJK\n2fSOcpzfRh+a3Vw8T/fM4dbsBXk82I3PFIX+yl27LK41Ft9jg5CkWNtRMjVo\nTrhYeuAJVRRObzavI7q7xbz2EBmKSr7LcofvDSmAagDYVe4pUrkP9H0sZUAR\noF/oBIRDW+UwzzrMOo0Dx6Oe5d21kNQcX5bs4fCZXfgJZ5STzV0iNtp9i4D1\noybPr2K2MMGEfptRbDytfLnRyFSq2TUxCYCzPCO3KRAX63hBNoeYyfLnU6UZ\niBf5MEcUKskhv74mRbalpg8nPl1/a2igceK0vfNnqWUjSFA1AfLOgveZgsna\nXV2iVghx4AMBL0N3jP6EUsUYrnqQnDCRcyBE/mBno8d6X14lCXZPQkE7il9X\ntRt2ZVe01UmuIPzQASmn8k/u5m+xXjbLmrio0Wjq4Tsq66Jvh54qnjiK8Gm7\nQ724kz5XoULTQXqJNLAaKNOl75ubN44aQfFbfxUhou6n+tF5gQJ9xtsdasPN\n31r5\r\n=VcRg\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"7aaede09275fb002f7bbd63060ed4c3a98575b9d","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"nyc --reporter=html --reporter=text npm test","test-travis":"nyc --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.11.3","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"12.12.0","dependencies":{"mime-db":"1.42.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"14.1.1","mocha":"6.2.2","eslint":"6.6.0","eslint-plugin-node":"10.0.0","eslint-plugin-import":"2.18.2","eslint-plugin-promise":"4.2.1","eslint-config-standard":"14.1.0","eslint-plugin-standard":"4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.25_1573568296656_0.4870118202385958","host":"s3://npm-registry-packages"}},"2.1.26":{"name":"mime-types","version":"2.1.26","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.26","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"fishrock123","email":"fishrock123@rocketmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"9c921fc09b7e149a65dfdc0da4d20997200b0a06","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.26.tgz","fileCount":5,"integrity":"sha512-01paPWYgLrkqAyrlDorC1uDwl2p3qZT7yl806vW7DvDoxwXi46jsjFbg+WdwotBIk6/MbEhO/dh5aZ5sNj/dWQ==","signatures":[{"sig":"MEUCIQCtXf0UK4C7N/yRvpCjmX8DIfhmDJTTSwAPNnXe6o/kZwIgLOSivqF0gySyHrmkGLLkyvahxExw6S7Hvrp17p5uvbw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16332,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeEq3rCRA9TVsSAnZWagAAA8gP+wc64WF1FCVIqdKE+1lh\nEOIJKGWOzbGMNLFAM8ksv/d1Qr9SlOiN2yOc15gt95xrLiacgeB+Gz9V93NC\nwgmzm8kUvDmM6qaLZwfY9q3A6wn3f4fOA75Cj/Xj4k1bZuzeE8wCGMv8r99R\nmgWacq5ptU4Y0kO1/cUK+VCRFK5GL0gbCNUS3phdFfSxWAQO+Gj08eSECD+V\nuLx+0pb4UI17s4C2ZLKIJJIWQSAH/8bYI5MflHF4dC5ZS5ar3oXtPAorQ9Xe\nCIEeg1oN8p/+aWFK/uu2kUmNBAYmfSqwFVPLUgqSfvY+4EACXrR5hxa9n3Mz\nj5tbxoxjURhDeFOPgdZL34QKVpil/QyZ+V4QZ4iKfKpR3el3Gl5UBEDqP5BV\nK6MrticiP8Gg5kR17msv+4HG2bJN7RmMMhYKvBxdpIqljs3UfJEtKRHduDVb\nZ3m+F8YDpThYFcJ108wRb+HerQNY8q2xzBppxZ0ndF+icVdVrxm5ZMfrPmQJ\nwF3zuarhw+YE6Ryga8JVHn32qXubycJXopNWD3TBcT73540Wc5LIb4Zr7038\nS8mwTJA6OYiUEEplYHTqXJEj4b433djytwzLtUdgtKAuUYECphahF+/dx+/c\n35a5goj9MZ5T68or3kRgXFin+dQ6hKB5ZAxfdxFpv/ovsB3WIQC9cWFFaeLH\niaRj\r\n=EtV3\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"73f9933bfa5247337b459240ec67ea6045cdec84","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-cov":"nyc --reporter=html --reporter=text npm test","test-travis":"nyc --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.11.3","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"12.12.0","dependencies":{"mime-db":"1.43.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.0.0","mocha":"7.0.0","eslint":"6.8.0","eslint-plugin-node":"11.0.0","eslint-plugin-import":"2.19.1","eslint-plugin-promise":"4.2.1","eslint-config-standard":"14.1.0","eslint-plugin-standard":"4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.26_1578282475037_0.17516931585429973","host":"s3://npm-registry-packages"}},"2.1.27":{"name":"mime-types","version":"2.1.27","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.27","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"47949f98e279ea53119f5722e0f34e529bec009f","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.27.tgz","fileCount":5,"integrity":"sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==","signatures":[{"sig":"MEUCIQC0wUYtHRp1p0qLUchlbTTzL8JeMa29dScmOWX53yjF7gIgIri+dyG7yTLLJbEBVEhbhStAkheE6ScTla1q5wOiW5Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16721,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeol6sCRA9TVsSAnZWagAAb7gP/2rhSx5SYxg68mROGmpc\nK4P6pyMxslHCfxYa4EUnJ4NmZAJKoGAeqLNxf/ty5QFlczy2kATAx6Ed/Jo9\nev4jGBiHbZ3WiTCdG9iE43fP4uKRoZ0a19suEC9t4mmx0y3VaBqGNIlEZgQM\nUZKLhbMYu8PEmA4FeFVcKOzEQVmMaNPSek9iaSNgxyD8nL6O+qEhTtH/1BHV\ng59VWglcXaKsK7sQGM4Ljn+bXqDgQhNpZqF4zoONKcxb7TrYp/NESCKk+Qdi\nlEBCaXdT++/UwnRh0p+nffllnurrE7ctt76LCJP8W9ObMqKSpmT4yQmpDp/J\n8hoRyCK+Z2Ktb8ZWkM5chHAiL9hrQVKzhKB2Cbr72itq7E+5Umv0Otis2C6b\nc7vIbbMtuui4fy7ZAo1ywoMT53jyAkqesJHjIlkBMlXoSIm3eyzKuQXDsJ1C\nRjhI6ik8j7rViDQ18TCyFeSZZw6LxB0gqTRuvLz+VbDVSLNoH6+OaY0bl62s\n4iWL4xTqm8xFsyewzt8fl7H7nIEfETjcEwcaKljjyfncjLla5iXVXOAvZ6dR\ncdLA1fMFH3YNEjVgR0g5elVHQNk6+VdN5c4lZ7vRPc3NJCTcljyTegiWCK2U\ni6/aVv6I3FiCSkegYy/E02P0UW6OcmecrMY5gnenMtAG5lqlKBHOL06aegiA\nSD9R\r\n=th56\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"47b62ac45e9b176a2af35532d0eea4968bb9eb6d","scripts":{"lint":"eslint --plugin markdown --ext js,md .","test":"mocha --reporter spec test/test.js","test-cov":"nyc --reporter=html --reporter=text npm test","test-travis":"nyc --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.14.4","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"13.12.0","dependencies":{"mime-db":"1.44.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.0.1","mocha":"7.1.1","eslint":"6.8.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.20.2","eslint-plugin-promise":"4.2.1","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"1.0.2","eslint-plugin-standard":"4.0.1"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.27_1587699372290_0.7009359023949084","host":"s3://npm-registry-packages"}},"2.1.28":{"name":"mime-types","version":"2.1.28","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.28","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"1160c4757eab2c5363888e005273ecf79d2a0ecd","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.28.tgz","fileCount":5,"integrity":"sha512-0TO2yJ5YHYr7M2zzT7gDU1tbwHxEUWBCLt0lscSNpcdAfFyJOVEpRYNS7EXVcTLNj/25QO8gulHC5JtTzSE2UQ==","signatures":[{"sig":"MEUCIQDCzQqPiWMTcBG0s7toRWSxAET4EYdWYE8lVHvIOlqKUgIgH0nVwO5kQfb6KeF0AsaQjjAqckK1c3otA+C/HbhjAEA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17239,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf7/aLCRA9TVsSAnZWagAA4b8P/0hpf52i4C88kB3UA8oz\npo/u9QkTi05T9dS+KahT/EqupImZwY9PmtPHg2OPs/gEWUySbIAC6zQAgE2m\n639o96AGgIYqdqYVNJOFU/H9W5knxn3bi0des3LUpxKCyCIQbdHkHtjiAaHV\nN0HLoNjQ+lGFfB2zjdBxbxPdeqJZ/n0LpVtnUgQUAeX/+oPOoaS6gREobICc\nORfHLB+kCdXT7eHtCX3ztdrxvZF2qbyOgprXqwO8TX/25Ncx2ZzT55kMGX/0\nOUlHtJzeht0pI0vfd2MBrA3F4pd5kkGxKclwZQ2wro3c35HJja1V/wcdLJZH\nHwivDxdjrOWGwyVWj1OYBCkKn8dR5uaPygyKaSbC6TL/cMU8ixCPbeYLz6O+\nF9zJWkky52bp+3L1MmCmFRTE379zdCGVN7Pu2hnb+EawOsUFm8SghsSlXWOX\n+ep6VOVeu8c04Ztg2cVZigImdQAKcw0yh8UgkAruuZ2vwDT7oFLKzlcqaZxN\nui5EyRsfwB8gQkVyPvQ38VyE6PO0YD9UgJWgva++zgA88MrP7XIOH63zraYP\nAM5vbJfYjNbGuAsIBb1jJ+ZXD/JPMyI36155m4JpF5QcMrgjMr6yyOzNALpI\nJxFz02YU4C3YVeteQpBmFEJi+lA8WM+xkf0ksxr7I6anWC2+v3Aj6hivIGGL\nDmhi\r\n=Y1QJ\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"4a4f710d9f0c59fc998e444cb70df02d79b4f932","scripts":{"lint":"eslint --plugin markdown --ext js,md .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.14.6","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"12.18.3","dependencies":{"mime-db":"1.45.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"8.2.1","eslint":"7.17.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.22.1","eslint-plugin-promise":"4.2.1","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"1.0.2","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.28_1609561739020_0.7011492525542153","host":"s3://npm-registry-packages"}},"2.1.29":{"name":"mime-types","version":"2.1.29","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.29","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"1d4ab77da64b91f5f72489df29236563754bb1b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.29.tgz","fileCount":5,"integrity":"sha512-Y/jMt/S5sR9OaqteJtslsFZKWOIIqMACsJSiHghlCAyhf7jfVYjKBmLiX8OgpWeW+fjJ2b+Az69aPFPkUOY6xQ==","signatures":[{"sig":"MEUCIQDQsXtjFyYVD0dvBCFYEG/qNx6AKc2c6pseBChTmwRS1AIgIyusCktQ1//5jC+0/dP1wQMx4fxe04MdSkgBtjmdqEY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17269,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLbXsCRA9TVsSAnZWagAAN8QP/0fQuVlbabyn+AqL6W9j\nlB7SUvGTIW9kblMg1EcbOhUJLPgWPr1YztDkqy4s08ajnvz/ZPTNTImaaH4J\nT+OGx/aZ5YWRFGm+Q9rJKEs0hfmsr7b7xd536VDU6vdmTVT4WXPZZxmIKLDr\nY7TgpgIvS1gGOnRInsQYAuKwJyx9o91BO1j6OKFpI/P2+LAmvBm0HXuH5W7/\nvziN3ezjuPla8SGlm3aIDILKt/l0ygf9hp5Nkfz5CjBc9t/V4dfI/uZmBgiO\n+AuVQs2szigH8dKmRAYseJg7qb9jxv8ea5MH5XyDK6PdPGEaiTvgF0f023XC\nghsN4H0g7Wab6ZTm6g2HaYZ6I/PLHeVnCF4mbDjkqD0vUt9yUva1RnRucU8B\nUz7Z88Q3I1swcD57Q6Ubn08Ay4FOtstD2R0SPBycUCaUyeoJZgP319GDZZ1p\ncCh7TFBos9NCcYm63Ot94k80hahmYvhBnPajQWs1LnRoGRGRkfKLLvxFOgmp\nhU+H6z3mGrah5A0vLMGVJFnx6+NZYDAB8wQbn3P6vTIB5EIUAB2aE1+3gebp\nLapTgJbQJ1rd1zbMwGQCGs+3Iwbm953eGsKy7bgJisZQ42wvbfm04gLlFEEH\nLwJQAPEDHnuYwxhibgWVAtgnRx2uyqqlCNvzxrbyB6TQbgofp65/m9p9jow8\ncN38\r\n=DBai\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"9a05a599f071203318ab2c3d848c6a6e46a59fe3","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.14.10","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"14.15.4","dependencies":{"mime-db":"1.46.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"8.3.0","eslint":"7.20.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.22.1","eslint-plugin-promise":"4.3.1","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"2.0.0","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.29_1613608428286_0.45392395861166324","host":"s3://npm-registry-packages"}},"2.1.30":{"name":"mime-types","version":"2.1.30","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.30","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"6e7be8b4c479825f85ed6326695db73f9305d62d","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.30.tgz","fileCount":5,"integrity":"sha512-crmjA4bLtR8m9qLpHvgxSChT+XoSlZi8J4n/aIdn3z92e/U47Z0V/yl+Wh9W046GgFVAmoNR/fmdbZYcSSIUeg==","signatures":[{"sig":"MEUCIDkIFQTGAwxTzTK6MtyfGlilHWj9MAMetw0NyxUQCTu4AiEAlPyYmIM4ENhcq1XTPJWwHGKFt7xSOBMmDqetl1JENcA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17521,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZqZUCRA9TVsSAnZWagAAs9UP/A5iuknBRjYcu8Mq+IGc\ncNK6EPRoemRc7dH1qtqpqYyMNXmRPaaysMaxccbmaQ0t5L9O/e0QFqsDHxSY\n5+/RsmiyzUlQIANV6URMRP1vdIp+H4tUHSvfAiZq09PFmBGsTgtDMsJ3mSgc\nb/LsfBu7EKr2nNdwc1wM9BJ6RT5e0j5oZeEsawJpYDabfrkEkG+LRtmLhQVt\nByP+JgMTaIFpyDh3NCbACp//gVsDebzVXAhaaDPGXbvT8Ix7qtr0MgQO8CBF\npb7x4Wz25B93SwzuE+SiasEt+xjn/t1spyjyL1SlRHbGfy6ddkPOeUd/08sQ\npkzQ63MJ7JwC5fn1MFhJiGyk0WFqBikVe6f9qJTjuEfmkiq5DNvQ7QT10r92\n9P8wpobVwnngmq00yXO88KpzAOvWo8L+Yam6A5TrwwaMUyo8Z20yQE8sSapk\n/p6Rr96hlhtOKN0Ajc5c15WTxrDfKCBPOf5XQYTbTgLuFn5X4p+uWQI+HDmV\nbqG/pJ6i0tPmfA7cJ55nkUt5+oLnkSHfp/k/Uw6pD52l9POYKTUaZmTb6kTP\nqzBsUGV9JXOZ8RS1eC2C44+VDUGYV/5n6B/aUdRSxoDNyOA55Eq6jQc/G9Ry\nOVmTYwP5uF1G1yAU0SrunshnJzhHCuXsK7hba9F9JCF+c5fD35zjSC4Yujjh\nvj5s\r\n=G7h/\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"b0abe0c67c6654cb9a2efb9a92c776eb160d7b27","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"6.14.10","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"14.15.4","dependencies":{"mime-db":"1.47.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"8.3.2","eslint":"7.23.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.22.1","eslint-plugin-promise":"4.3.1","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"2.0.0","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.30_1617339987950_0.13379782228732684","host":"s3://npm-registry-packages"}},"2.1.31":{"name":"mime-types","version":"2.1.31","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.31","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"a00d76b74317c61f9c2db2218b8e9f8e9c5c9e6b","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.31.tgz","fileCount":5,"integrity":"sha512-XGZnNzm3QvgKxa8dpzyhFTHmpP3l5YNusmne07VUOXxou9CqUqYa/HBy124RqtVh/O2pECas/MOcsDgpilPOPg==","signatures":[{"sig":"MEQCIHW2PDMM0nd3Z3wuCr4z9jRlMB0og3wKe0cjkU0fBbLFAiBh6rBUgAtX1Hf51hXoh8ZIKkZPsrupAwAgfCYh7lb5XA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17728,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgtm5kCRA9TVsSAnZWagAAqdsP/RsukuEKfoJXgXBQiB+q\nZIdiG03Vw4Frf6QHmUu39wovbuuSEor5tKyhBbdXXr3+7rCjLsBSukg3G13j\n3KXtkAOhxMQ2Wtcw2KkzmJQUDNSj38bZkaA2JqOnlH7IcPY+LPI4l53vtknb\ndKGJ6pXsZbWni+Lp4AjNHvLyqeGtHO3bMf4bAErSoXvHWC+TGtcFg+Af4BXj\nnDq2wKKGnMJSExKAg6uygAnq+o7rZ63/b1rH5rx8XzRwdv7DEVox6xlLBl3W\naXw2CXWjbtMIsCfPPbxuddjnI1689cKZP/9eL242HKOM0/7W+rxKu1+G/VnG\n0vGmIrVEzwF3XtnFxJjCvN8Ph3+i4Oti/A6hUmBq+C/GKI8Mi+beT7xF0WhD\nnPxxxzsTKGd8XWq4IreSMEca/kQAbM9RDFJ3Natl8cz0gL2g1w/ka5q+yi+O\nkM5yCvwRopqqmlNdlLqNrZ7wSpTXmYtu9d4ZGq9ESDPjrXSOvMiuUnyFyryj\nurJCWtIuIaqCSDbQH1kTIBd4CUoPqjuzhy5334S2aFGai//vDCgnKuxy6mge\nOZTLJK2diCT4w9yq+sQavNpgRBfzclMgzQh6EM58h/1HSotCH+OTqScsgUnr\nD0fpWAedc3V8sXdcVhit0JbWl3ntfjXRjJtWuuhaFnEE45kMU+gv9BABpG9w\n8EVm\r\n=ZZke\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"cbeaf522ad6f7b51600bd9ec5ee8e7a968e2e18b","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"7.11.2","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"16.1.0","dependencies":{"mime-db":"1.48.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"8.4.0","eslint":"7.27.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.23.4","eslint-plugin-promise":"5.1.0","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"2.2.0","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.31_1622568548229_0.7284665852367624","host":"s3://npm-registry-packages"}},"2.1.32":{"name":"mime-types","version":"2.1.32","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.32","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"1d00e89e7de7fe02008db61001d9e02852670fd5","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.32.tgz","fileCount":5,"integrity":"sha512-hJGaVS4G4c9TSMYh2n6SQAGrC4RnfU+daP8G7cSCmaqNjiOoUY0VHCMS42pxnQmVF1GWwFhbHWn3RIxCqTmZ9A==","signatures":[{"sig":"MEYCIQDylXjqfOz0J4YJ3AtqePTK1prsvB1+yMYTRN4Zs9TxfwIhAIvKhaKirfbkisc/gPBEuhOL3LD72PZb/Yw7a3U4YRY+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhAETGCRA9TVsSAnZWagAAGiMP+wYFvintggJN99pE8Mlw\ns0IfZ6uMHGxlyHwQsWLfxaP0pph81W4dPwBfNuBOsmZSqkBQEj3cmf6usxEv\nq8FhC6kNYmOP8gXpgsTZSCnDUbOF5f6XgMjrb4CnQ8JHosxRINMGtAYhzLgZ\nHKxxWP3gF5JZ2KRCA28MNY9tPuh8PoCpshTs7/r6ZokMQWem2lPdSM4MicSY\nty9IHRQ0zvz63T4EapeRHpPiHMJCy/YdT5HRPZEoA7WpJgosnS7mV4xWvoeC\nK5wRx7JwOhTzXl8MGhhiAaZdya0IyEuqHnCowzns274bzF2UpDPRgZ8RmcEf\nBKJdC/l7+fODW9M3CVbfpQjB76/N+SHDg9BdgM/NSvZWF6OhwRi8T55SqbOC\nDtieITMHY13qItRJQD4BXX1O3ZO3oY6ByZY4mvFEcCrs+CN0ep+hcPT0elZi\n2KA4UIdxw06KRCWZnmIjiaMVBbS7whaerJ9FOK+1n8G6+oTdKG04babjU0u9\nqXlzAkVd/zax8emFHnRN4N9fpm5LGGKCwZ+bRJV3fa9vxHYoXtRB05U6Yht7\n9EZ6ga9Y+uggU3z00yjJ1NFH1KeFQYsriU4/KKScRqtvnOXIqhR5j8Hg7sVr\nvaI8pbcAyekPUUsvHr9ohJUpwnEBSErxp9ALuQFXPFjL06wFkfHoJEEozRqW\nvmKc\r\n=FOl8\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"0cc1e563988dc69ffc9fa642a881e2cf7eef55c9","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"7.11.2","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"16.1.0","dependencies":{"mime-db":"1.49.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"9.0.3","eslint":"7.31.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.23.4","eslint-plugin-promise":"5.1.0","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"2.2.0","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.32_1627407558456_0.18706801791640593","host":"s3://npm-registry-packages"}},"2.1.33":{"name":"mime-types","version":"2.1.33","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.33","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"1fa12a904472fafd068e48d9e8401f74d3f70edb","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.33.tgz","fileCount":5,"integrity":"sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g==","signatures":[{"sig":"MEUCIQDq92rsYYuczr7cbuZFLE6col2gidrF5mmTrIljHjjdoAIgD5eUWLXSD2NkBdZHtk7khcGl0hvyTi+rrw4JLgWnzHc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18034},"engines":{"node":">= 0.6"},"gitHead":"c6ff9b224577f0cd49f1155f421b24c24a57bc3e","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"7.20.3","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"16.7.0","dependencies":{"mime-db":"1.50.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"9.1.2","eslint":"7.32.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.24.2","eslint-plugin-promise":"5.1.0","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"2.2.1","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.33_1633108162751_0.35499888332958607","host":"s3://npm-registry-packages"}},"2.1.34":{"name":"mime-types","version":"2.1.34","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.34","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"5a712f9ec1503511a945803640fafe09d3793c24","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.34.tgz","fileCount":5,"integrity":"sha512-6cP692WwGIs9XXdOO4++N+7qjqv0rqxxVvJ3VHPh/Sc9mVZcQP+ZGhkKiTvWMQRr2tbHkJP/Yn7Y0npb3ZBs4A==","signatures":[{"sig":"MEQCICrS4/CeTGb/xoKmJYyMNY4DKY/kwAcjBaRdgjOYeY9bAiARG0M4E4wnyXjl+NmfjJ37G8zQq42Hnvdu0QxkyapmaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18023,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2zP6CRA9TVsSAnZWagAA1x8P/ifj4ONj3DOWsbTa1NpW\nMg27qCdjH+Vuf+GkffHvrz/QB0/JTzp5bHCzujkH6/jFC4tTQWZPiiEwYHwM\nUij+WwjePeVSqaE+llVVQGh6JLiQ82I+imby/V5+k/AYU/vrnRioZJr73xlq\nnaPtMu7RpW7GJaQnNd8BCWjGSnN0q6IVhf+zySC3j8cet6iCo8kZRkoZtVWX\nZRWz74XQUOdA0gAmH+q2GlcLRZwz1+wUU2cl3U01dJ2r5sAdQk5beWdZNErx\nDmU2SDyAvTWxjs+Nic27jPmHJMtnJZBPRgWiuHgx8QNln8cHcpfo0yeKiheQ\njGeh7sSmOSLhVmgBu8AjnjXAKFHtUp5qKQeOg4ka5o+I3hYjtdoxzcfonZbF\n2jPhFHQQwPeJ/thAV2pEpNUCrsajOwGIMVmtVAuYnCv0mZU36qwGuiCk1sT9\nZ5zPsS2LnrjTVzO/Tvr0EwIFwn77KCrqmGBWIc/dqAoQnArkFghDugIqrV9y\nJLacPAGONVJAw1+xOo7Z+lwdZid6M8zXpepg/b2n8uF4uc4Aw7NIDjdpn0dU\nr7XiAkBa0C6znCpCVjFi0ITX9woYJv53aREXjG5X3MqlOeBbZDzz36m/+5YG\nQYrIt+ga/OGxvZVcYsTynZjh2qoaD+CoI0n6UF4uJEK0dRYlbVKEkexeD93G\n4DEM\r\n=pCSp\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"a50dafc08c7d1969ba581a51de5d94493b713bef","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"7.20.3","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"16.7.0","dependencies":{"mime-db":"1.51.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"9.1.3","eslint":"7.32.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.25.2","eslint-plugin-promise":"5.1.1","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"2.2.1","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.34_1636432221719_0.7160929014759547","host":"s3://npm-registry-packages"}},"2.1.35":{"name":"mime-types","version":"2.1.35","keywords":["mime","types"],"license":"MIT","_id":"mime-types@2.1.35","maintainers":[{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"381a871b62a734450660ae3deee44813f70d959a","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-2.1.35.tgz","fileCount":5,"integrity":"sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==","signatures":[{"sig":"MEQCIE0POPFsQ1njxVBqIqEP9T3OT48luQI5vMvaem7SelGFAiAqt9YWLmp/N3wfzUGgSr+0ZPqGVYT9H644ZN7yqpytxQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18272,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiLOC7ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpT2w/9GeLyJAyqEq3ZT7nLLZUi4oEEIcrEj7wz8UgiRjyOJPFHZBFG\r\nBJltzgFWbOf62sJvn1ZekIt6kq2OecNFdVjLe1sRHUfE+Irf8Z3oCT9RAwZ8\r\n2JYz8jP7VQ1p6ZsK8gQ43Bc8sBlZB81coPyjCkmwGc8yNy1amT1LMVMU8PRd\r\nuxfMoN0vEis3nARzPlx9fb7KKqS7rFL1zAaSUKhDLomS/gNOLsLtjyrlQo02\r\nvxX43VLGJvK2Wpd7TD/qvGvdGQ5VSm++TUfW3tviXQHwP4Meiy8zU09+OYXO\r\n0+ij2TlSLls7zNoQOWiZgHJYUP0WAZW4doxm9Sk9hA5RLGn3ukgMydYjyq66\r\nZJUCpYr8p2Y+1LcUHEdmgwfqsUdhX55IwyH8DwvlPHf619eZz7dM9aOWtBHS\r\nYAXUuzdJFlem2ezr1FhH1y7A/yPyXr2pqyzx9Qxp/d2yuaSVU82KCa9l7oJI\r\nnV8lubKUFxlJgIbFjkoxmvnDt9q0+MTzntrznHIcuD2wgRRKuk5Ima5udd0o\r\nSy/mLV7inWSaq9dWWzdZpYZDwGve4tcMr8LNlweZ80H2SFWjJdkBhf22i2Gr\r\nKgwvndofh9GfV2hnBFqL6MT/nJDm67lHf/Q/9frsfArA9Pb2OhapTzHthg08\r\nnNpZRTFrJfHM03pS8bEc33gaAQupl0vL+Fw=\r\n=eKhF\r\n-----END PGP SIGNATURE-----\r\n"},"engines":{"node":">= 0.6"},"gitHead":"ef932231c20e716ec27ea159c082322c3c485b66","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"dougwilson","email":"doug@somethingdoug.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"8.3.1","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"16.14.0","dependencies":{"mime-db":"1.52.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"9.2.2","eslint":"7.32.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.25.4","eslint-plugin-promise":"5.2.0","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"2.2.1","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_2.1.35_1647108282894_0.3187771888128905","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"mime-types","version":"3.0.0","keywords":["mime","types"],"license":"MIT","_id":"mime-types@3.0.0","maintainers":[{"name":"wesleytodd","email":"wes@wesleytodd.com"},{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"148453a900475522d095a445355c074cca4f5217","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-3.0.0.tgz","fileCount":6,"integrity":"sha512-XqoSHeCGjVClAmoGFG3lVFqQFRIrTVw2OH3axRqAcfaw+gHWIfnASS92AV+Rl/mk0MupgZTRHQOjxY6YVnzK5w==","signatures":[{"sig":"MEYCIQCVk46UyrD+LHLM8l14XNi0V4ET7cNqJ0kGXNsmAop5TwIhAOPXSGh/qdfZo8etB72Tp/l54se3tl8bbPXse+Nc2Jdc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22277},"engines":{"node":">= 0.6"},"gitHead":"4b3ae3831b18e1ce72af9ee75f691701aef8432f","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"wesleytodd","email":"wes@wesleytodd.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"10.7.0","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"22.2.0","dependencies":{"mime-db":"^1.53.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"nyc":"15.1.0","mocha":"10.2.0","eslint":"8.33.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.27.5","eslint-plugin-promise":"6.1.1","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"3.0.0","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_3.0.0_1725112633991_0.3284378548950295","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"mime-types","version":"3.0.1","keywords":["mime","types"],"license":"MIT","_id":"mime-types@3.0.1","maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"wesleytodd","email":"wes@wesleytodd.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"url":"https://searchbeam.jit.su","name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com"},{"url":"http://jongleberry.com","name":"Jonathan Ong","email":"me@jongleberry.com"}],"homepage":"https://github.com/jshttp/mime-types#readme","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"dist":{"shasum":"b1d94d6997a9b32fd69ebaed0db73de8acb519ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-3.0.1.tgz","fileCount":6,"integrity":"sha512-xRc4oEhT6eaBpU1XF7AjpOFD+xQmXNB5OVKwp4tqCuBpHLS/ZbBDrc07mYTDqVMg6PfxUjjNp85O6Cd2Z/5HWA==","signatures":[{"sig":"MEYCIQD5u8WKusYyNP4I1rshLEgWTV+Vx0rpUpms0KBKR2ZcJQIhANmT8tofIVtaYKnpDvY8YAXiw9Fnn9yQhx+RwKb67r+B","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":22341},"engines":{"node":">= 0.6"},"gitHead":"64e03d9d532c8967ebf611efc8ddd55f445ac9e5","scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_npmUser":{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},"repository":{"url":"git+https://github.com/jshttp/mime-types.git","type":"git"},"_npmVersion":"10.9.0","description":"The ultimate javascript content-type utility.","directories":{},"_nodeVersion":"22.10.0","dependencies":{"mime-db":"^1.54.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"15.1.0","mocha":"10.2.0","eslint":"8.33.0","eslint-plugin-node":"11.1.0","eslint-plugin-import":"2.27.5","eslint-plugin-promise":"6.1.1","eslint-config-standard":"14.1.1","eslint-plugin-markdown":"3.0.0","eslint-plugin-standard":"4.1.0"},"_npmOperationalInternal":{"tmp":"tmp/mime-types_3.0.1_1743029627689_0.14587371785426284","host":"s3://npm-registry-packages-npm-production"}},"3.0.2":{"name":"mime-types","description":"The ultimate javascript content-type utility.","version":"3.0.2","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com","url":"https://searchbeam.jit.su"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"license":"MIT","keywords":["mime","types"],"repository":{"type":"git","url":"git+https://github.com/jshttp/mime-types.git"},"funding":{"type":"opencollective","url":"https://opencollective.com/express"},"dependencies":{"mime-db":"^1.54.0"},"devDependencies":{"eslint":"8.33.0","eslint-config-standard":"14.1.1","eslint-plugin-import":"2.32.0","eslint-plugin-markdown":"3.0.1","eslint-plugin-node":"11.1.0","eslint-plugin-promise":"6.6.0","eslint-plugin-standard":"4.1.0","mocha":"10.8.2","nyc":"15.1.0"},"engines":{"node":">=18"},"scripts":{"lint":"eslint .","test":"mocha --reporter spec test/test.js","test-ci":"nyc --reporter=lcov --reporter=text npm test","test-cov":"nyc --reporter=html --reporter=text npm test"},"_id":"mime-types@3.0.2","gitHead":"29a0302d799933a45384892df0722f3c5bb1b033","bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"homepage":"https://github.com/jshttp/mime-types#readme","_nodeVersion":"22.10.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-Lbgzdk0h4juoQ9fCKXW4by0UJqj+nOOrI9MJ1sSj4nI8aI2eo1qmvQEie4VD1glsS250n15LsWsYtCugiStS5A==","shasum":"39002d4182575d5af036ffa118100f2524b2e2ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/mime-types/-/mime-types-3.0.2.tgz","fileCount":6,"unpackedSize":22871,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIEv/Kil5Yz5jzq6zgHTj7Vd94BB6YF8Bz6qESjiWEWiOAiAmyFUQk856UgUz6Tc6mA2SSpe+ebxd3w47gzS1hWAxqA=="}]},"_npmUser":{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},"directories":{},"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"wesleytodd","email":"wes@wesleytodd.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/mime-types_3.0.2_1763637149491_0.7813911579487047"},"_hasShrinkwrap":false}},"time":{"created":"2014-05-02T15:54:00.885Z","modified":"2025-11-20T11:12:29.913Z","0.1.0":"2014-05-02T15:54:00.885Z","1.0.0":"2014-05-12T20:00:39.325Z","1.0.1":"2014-06-24T20:45:58.288Z","1.0.2":"2014-08-04T03:44:33.290Z","2.0.0":"2014-09-02T08:32:26.198Z","2.0.1":"2014-09-08T05:02:04.030Z","2.0.2":"2014-09-29T01:50:31.565Z","2.0.3":"2014-11-09T18:09:36.046Z","2.0.4":"2014-12-10T17:57:57.684Z","2.0.5":"2014-12-29T19:57:28.126Z","2.0.6":"2014-12-30T17:41:58.705Z","2.0.7":"2014-12-30T20:27:02.217Z","2.0.8":"2015-01-30T04:58:29.008Z","2.0.9":"2015-02-10T05:07:45.349Z","2.0.10":"2015-03-14T00:57:09.091Z","2.0.11":"2015-05-05T16:56:57.397Z","2.0.12":"2015-05-20T03:10:38.358Z","2.0.13":"2015-06-01T04:37:42.299Z","2.0.14":"2015-06-06T22:55:10.695Z","2.1.0":"2015-06-08T03:53:55.197Z","2.1.1":"2015-06-08T14:30:21.703Z","2.1.2":"2015-06-26T02:31:38.715Z","2.1.3":"2015-07-13T22:21:31.913Z","2.1.4":"2015-07-31T01:37:15.784Z","2.1.5":"2015-08-20T18:14:08.205Z","2.1.6":"2015-09-04T00:14:46.978Z","2.1.7":"2015-09-20T18:44:04.903Z","2.1.8":"2015-12-01T05:55:42.054Z","2.1.9":"2016-01-06T17:52:14.411Z","2.1.10":"2016-02-15T22:27:21.187Z","2.1.11":"2016-05-02T05:02:47.292Z","2.1.12":"2016-09-18T22:23:37.122Z","2.1.13":"2016-11-18T21:39:28.247Z","2.1.14":"2017-01-15T05:29:02.108Z","2.1.15":"2017-03-24T03:55:55.438Z","2.1.16":"2017-07-25T02:42:39.330Z","2.1.17":"2017-09-02T03:26:34.147Z","2.1.18":"2018-02-16T17:34:21.420Z","2.1.19":"2018-07-18T05:29:59.712Z","2.1.20":"2018-08-26T22:07:10.102Z","2.1.21":"2018-10-20T03:37:07.996Z","2.1.22":"2019-02-14T22:47:38.276Z","2.1.23":"2019-04-18T04:41:15.063Z","2.1.24":"2019-04-21T03:46:47.001Z","2.1.25":"2019-11-12T14:18:16.771Z","2.1.26":"2020-01-06T03:47:55.198Z","2.1.27":"2020-04-24T03:36:12.387Z","2.1.28":"2021-01-02T04:28:59.153Z","2.1.29":"2021-02-18T00:33:48.436Z","2.1.30":"2021-04-02T05:06:28.101Z","2.1.31":"2021-06-01T17:29:08.384Z","2.1.32":"2021-07-27T17:39:18.598Z","2.1.33":"2021-10-01T17:09:22.903Z","2.1.34":"2021-11-09T04:30:21.904Z","2.1.35":"2022-03-12T18:04:43.042Z","3.0.0":"2024-08-31T13:57:14.134Z","3.0.1":"2025-03-26T22:53:47.851Z","3.0.2":"2025-11-20T11:12:29.693Z"},"bugs":{"url":"https://github.com/jshttp/mime-types/issues"},"license":"MIT","homepage":"https://github.com/jshttp/mime-types#readme","keywords":["mime","types"],"repository":{"type":"git","url":"git+https://github.com/jshttp/mime-types.git"},"description":"The ultimate javascript content-type utility.","contributors":[{"name":"Douglas Christopher Wilson","email":"doug@somethingdoug.com"},{"name":"Jeremiah Senkpiel","email":"fishrock123@rocketmail.com","url":"https://searchbeam.jit.su"},{"name":"Jonathan Ong","email":"me@jongleberry.com","url":"http://jongleberry.com"}],"maintainers":[{"name":"blakeembrey","email":"hello@blakeembrey.com"},{"name":"wesleytodd","email":"wes@wesleytodd.com"},{"name":"dougwilson","email":"doug@somethingdoug.com"},{"name":"ulisesgascon","email":"ulisesgascondev@gmail.com"},{"name":"jongleberry","email":"jonathanrichardong@gmail.com"}],"readme":"# mime-types\n\n[![NPM Version][npm-version-image]][npm-url]\n[![NPM Downloads][npm-downloads-image]][npm-url]\n[![Node.js Version][node-version-image]][node-version-url]\n[![Build Status][ci-image]][ci-url]\n[![Test Coverage][coveralls-image]][coveralls-url]\n\nThe ultimate javascript content-type utility.\n\nSimilar to [the `mime@1.x` module](https://www.npmjs.com/package/mime), except:\n\n- __No fallbacks.__ Instead of naively returning the first available type,\n `mime-types` simply returns `false`, so do\n `var type = mime.lookup('unrecognized') || 'application/octet-stream'`.\n- No `new Mime()` business, so you could do `var lookup = require('mime-types').lookup`.\n- No `.define()` functionality\n- Bug fixes for `.lookup(path)`\n\nOtherwise, the API is compatible with `mime` 1.x.\n\n## Install\n\nThis is a [Node.js](https://nodejs.org/en/) module available through the\n[npm registry](https://www.npmjs.com/). Installation is done using the\n[`npm install` command](https://docs.npmjs.com/getting-started/installing-npm-packages-locally):\n\n```sh\n$ npm install mime-types\n```\n\n## Note on MIME Type Data and Semver\n\nThis package considers the programmatic api as the semver compatibility. Additionally, the package which provides the MIME data\nfor this package (`mime-db`) *also* considers it's programmatic api as the semver contract. This means the MIME type resolution is *not* considered\nin the semver bumps.\n\nIn the past the version of `mime-db` was pinned to give two decision points when adopting MIME data changes. This is no longer true. We still update the\n`mime-db` package here as a `minor` release when necessary, but will use a `^` range going forward. This means that if you want to pin your `mime-db` data\nyou will need to do it in your application. While this expectation was not set in docs until now, it is how the pacakge operated, so we do not feel this is\na breaking change.\n\nIf you wish to pin your `mime-db` version you can do that with overrides via your package manager of choice. See their documentation for how to correctly configure that.\n\n## Adding Types\n\nAll mime types are based on [mime-db](https://www.npmjs.com/package/mime-db),\nso open a PR there if you'd like to add mime types.\n\n## API\n\n```js\nvar mime = require('mime-types')\n```\n\nAll functions return `false` if input is invalid or not found.\n\n### mime.lookup(path)\n\nLookup the content-type associated with a file.\n\n```js\nmime.lookup('json') // 'application/json'\nmime.lookup('.md') // 'text/markdown'\nmime.lookup('file.html') // 'text/html'\nmime.lookup('folder/file.js') // 'application/javascript'\nmime.lookup('folder/.htaccess') // false\n\nmime.lookup('cats') // false\n```\n\n### mime.contentType(type)\n\nCreate a full content-type header given a content-type or extension.\nWhen given an extension, `mime.lookup` is used to get the matching\ncontent-type, otherwise the given content-type is used. Then if the\ncontent-type does not already have a `charset` parameter, `mime.charset`\nis used to get the default charset and add to the returned content-type.\n\n```js\nmime.contentType('markdown') // 'text/x-markdown; charset=utf-8'\nmime.contentType('file.json') // 'application/json; charset=utf-8'\nmime.contentType('text/html') // 'text/html; charset=utf-8'\nmime.contentType('text/html; charset=iso-8859-1') // 'text/html; charset=iso-8859-1'\n\n// from a full path\nmime.contentType(path.extname('/path/to/file.json')) // 'application/json; charset=utf-8'\n```\n\n### mime.extension(type)\n\nGet the default extension for a content-type.\n\n```js\nmime.extension('application/octet-stream') // 'bin'\n```\n\n### mime.charset(type)\n\nLookup the implied default charset of a content-type.\n\n```js\nmime.charset('text/markdown') // 'UTF-8'\n```\n\n### var type = mime.types[extension]\n\nA map of content-types by extension.\n\n### [extensions...] = mime.extensions[type]\n\nA map of extensions by content-type.\n\n## License\n\n[MIT](LICENSE)\n\n[ci-image]: https://badgen.net/github/checks/jshttp/mime-types/master?label=ci\n[ci-url]: https://github.com/jshttp/mime-types/actions/workflows/ci.yml\n[coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/mime-types/master\n[coveralls-url]: https://coveralls.io/r/jshttp/mime-types?branch=master\n[node-version-image]: https://badgen.net/npm/node/mime-types\n[node-version-url]: https://nodejs.org/en/download\n[npm-downloads-image]: https://badgen.net/npm/dm/mime-types\n[npm-url]: https://npmjs.org/package/mime-types\n[npm-version-image]: https://badgen.net/npm/v/mime-types\n","readmeFilename":"README.md","users":{"arniu":true,"eyson":true,"laomu":true,"r3nya":true,"shide":true,"svell":true,"dankle":true,"glebec":true,"h0ward":true,"quafoo":true,"shaner":true,"sitnin":true,"anoubis":true,"flyslow":true,"gollojs":true,"hagb4rd":true,"maheshj":true,"marinru":true,"noderat":true,"wgerven":true,"xtx1130":true,"zolrath":true,"buzz-dee":true,"byoigres":true,"esundahl":true,"maxogden":true,"moimikey":true,"wisecolt":true,"xgheaven":true,"chrisyipw":true,"cspotcode":true,"emircanok":true,"finnhvman":true,"jerkovicl":true,"ldq-first":true,"mastayoda":true,"mjurincic":true,"mojaray2k":true,"papasavva":true,"qingleili":true,"snowdream":true,"byossarian":true,"davidbraun":true,"gld1982ltd":true,"goodseller":true,"jessaustin":true,"rocket0191":true,"shuoshubao":true,"codeinpixel":true,"flumpus-dev":true,"galenandrew":true,"xinwangwang":true,"zixinliango":true,"ghostcode521":true,"iori20091101":true,"zhenguo.zhao":true,"ivan403704409":true,"mdedirudianto":true,"pablo.tavarez":true,"robinblomberg":true,"danielbankhead":true,"imaginegenesis":true,"jakub.knejzlik":true,"germanattanasio":true,"marcellodesales":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/22/0b/2cc3b6543ab589164c2ebc05c2304e0046fac16ad4da0fe1bf40ff8010286599176cfc1444328cc168de72b201345548e4d7dd71c08a9b28fb850d70fef7 b/frontend/.npm-cache/_cacache/content-v2/sha512/22/0b/2cc3b6543ab589164c2ebc05c2304e0046fac16ad4da0fe1bf40ff8010286599176cfc1444328cc168de72b201345548e4d7dd71c08a9b28fb850d70fef7 new file mode 100644 index 0000000..d407de7 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/22/0b/2cc3b6543ab589164c2ebc05c2304e0046fac16ad4da0fe1bf40ff8010286599176cfc1444328cc168de72b201345548e4d7dd71c08a9b28fb850d70fef7 @@ -0,0 +1 @@ +{"_id":"warning","_rev":"29-b3e0bcc4f8f47f67f1ec0f673b4eb0dd","name":"warning","description":"A mirror of Facebook's Warning","dist-tags":{"latest":"4.0.3"},"versions":{"1.0.0":{"name":"warning","version":"1.0.0","description":"A mirror of Facebook's Warning","main":"warning.js","scripts":{"test":"echo 'you've been warned'"},"repository":{"type":"git","url":"https://github.com/r3dm/warning.git"},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@r3dm.com","url":"http://r3dm.com"},"license":"BSD","bugs":{"url":"https://github.com/r3dm/warning/issues"},"homepage":"https://github.com/r3dm/warning","gitHead":"d2785e5680c88143bba459e1db1c85e4ecca5086","_id":"warning@1.0.0","_shasum":"fdb5867eac00ce17214686a4efe6617d5c8e2aa8","_from":".","_npmVersion":"2.7.4","_nodeVersion":"1.6.3","_npmUser":{"name":"berkeleytrue","email":"berkeley@r3dm.com"},"maintainers":[{"name":"berkeleytrue","email":"berkeley@r3dm.com"}],"dist":{"shasum":"fdb5867eac00ce17214686a4efe6617d5c8e2aa8","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-1.0.0.tgz","integrity":"sha512-EbJ64vSJ8VDSeoNLZBkhMr1JkN5IgEOrWMwd5Okk0vtGtJLoOywpOiHQ8YOk7myOQqedIBlZD0tR/eqrQIZihw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDlCL2fFd+VFk+kh8brcHHgRm3CSoQ8ah1390P1FI0d+AiAj2eTo6xXEdo3yugMex3X1ZT8mVuEk2HSmmaQUUeK2cg=="}]},"directories":{}},"1.0.1":{"name":"warning","version":"1.0.1","description":"A mirror of Facebook's Warning","main":"warning.js","scripts":{"test":"echo 'you've been warned'"},"repository":{"type":"git","url":"https://github.com/r3dm/warning.git"},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@r3dm.com","url":"http://r3dm.com"},"license":"BSD","bugs":{"url":"https://github.com/r3dm/warning/issues"},"homepage":"https://github.com/r3dm/warning","gitHead":"2acb7e49b0b9aa1ac52ff0761bbf3ca3db1b7a34","_id":"warning@1.0.1","_shasum":"58e9b758c0c79c10f8b13984a43c9195ec3e6f50","_from":".","_npmVersion":"2.7.5","_nodeVersion":"1.6.4","_npmUser":{"name":"berkeleytrue","email":"berkeley@robotie.com"},"maintainers":[{"name":"berkeleytrue","email":"berkeley@r3dm.com"}],"dist":{"shasum":"58e9b758c0c79c10f8b13984a43c9195ec3e6f50","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-1.0.1.tgz","integrity":"sha512-tRoxvvR0Vb0GskLTKRRQU+VihzKkmtqnzxlGC9QhBm/lOmP0Ox8O7/DXtP1Aseazx3ynsLutk9Zrvby47rGghQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB1NbvTtIGgejl78DWZRJKmoArU6lGRb1PxMmazzV2a4AiEAvCaTdgbyYRDhNz12TI2I2LLJG85l1mKabR9NydeQm+I="}]},"directories":{}},"1.0.2":{"name":"warning","version":"1.0.2","description":"A mirror of Facebook's Warning","main":"warning.js","scripts":{"test":"echo 'you've been warned'"},"repository":{"type":"git","url":"git+https://github.com/r3dm/warning.git"},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@r3dm.com","url":"http://r3dm.com"},"license":"BSD","bugs":{"url":"https://github.com/r3dm/warning/issues"},"homepage":"https://github.com/r3dm/warning","gitHead":"f6de4ea58115d650d6fda9e59d45063d7ea743ac","_id":"warning@1.0.2","_shasum":"5716cfb37147b4534b3e164480afffa6a255f0d9","_from":".","_npmVersion":"2.9.1","_nodeVersion":"1.6.4","_npmUser":{"name":"berkeleytrue","email":"berkeley@robotie.com"},"maintainers":[{"name":"berkeleytrue","email":"berkeley@r3dm.com"}],"dist":{"shasum":"5716cfb37147b4534b3e164480afffa6a255f0d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-1.0.2.tgz","integrity":"sha512-Lm7+cS4bdIQ66pkUdaWoLoO8lB/NgjF/+F7jTHaj4I1JxlA5AWs6P8rlLq2SAj9XOEC0sYMZiPL77Gu2Q+scDw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC26vgVzRBcCRDY78rK50GclcqPpzaDwTdGfUoR/+Ww2gIgaW1e8Y4MFUt3JRgp6MaVdh/ydVvUrNIu+jaWOa6K8tU="}]},"directories":{}},"2.0.0":{"name":"warning","version":"2.0.0","description":"A mirror of Facebook's Warning","main":"warning.js","browser":"browser.js","browserify":{"transform":["envify"]},"scripts":{"test":"echo 'you've been warned'"},"dependencies":{"envify":"^3.0.0"},"repository":{"type":"git","url":"git+https://github.com/r3dm/warning.git"},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@r3dm.com","url":"http://r3dm.com"},"license":"BSD-2-Clause","bugs":{"url":"https://github.com/r3dm/warning/issues"},"homepage":"https://github.com/r3dm/warning","gitHead":"0c3fa99bf47c0cd12b95db2b674c3da2d6115319","_id":"warning@2.0.0","_shasum":"34235ed1061fbe75fff52fd9be23d730d9b4b6e0","_from":".","_npmVersion":"2.11.1","_nodeVersion":"1.6.4","_npmUser":{"name":"berkeleytrue","email":"berkeley@robotie.com"},"maintainers":[{"name":"berkeleytrue","email":"berkeley@r3dm.com"}],"dist":{"shasum":"34235ed1061fbe75fff52fd9be23d730d9b4b6e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-2.0.0.tgz","integrity":"sha512-8EMbsQwyRcydNZ+uX8logEEtzOJtF3fqtG2MM8sdvgPQqTOd5nYkhFa7WiQsxgoo5MgOgintG98zwoIiasumLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCST/3uDNDfGmaaZ33WkxpVbGueXw/XJIKMM77w6vUFdAIgA6Lf3y2HfEz5h+jqre9TyvNZ+RpPU8pVJMSoVI2/Hz0="}]},"directories":{}},"2.1.0":{"name":"warning","version":"2.1.0","description":"A mirror of Facebook's Warning","main":"warning.js","browser":"browser.js","browserify":{"transform":["loose-envify"]},"files":["browser.js","warning.js"],"scripts":{"test":"NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js"},"dependencies":{"loose-envify":"^1.0.0"},"devDependencies":{"browserify":"^11.0.1","tap":"^1.4.0"},"repository":{"type":"git","url":"git+https://github.com/r3dm/warning.git"},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@r3dm.com","url":"http://r3dm.com"},"license":"BSD-2-Clause","bugs":{"url":"https://github.com/r3dm/warning/issues"},"homepage":"https://github.com/r3dm/warning","gitHead":"b7d56e3f6c21c3ee05af617222d16c7d80118443","_id":"warning@2.1.0","_shasum":"21220d9c63afc77a8c92111e011af705ce0c6901","_from":".","_npmVersion":"2.11.1","_nodeVersion":"1.6.4","_npmUser":{"name":"berkeleytrue","email":"berkeley@robotie.com"},"maintainers":[{"name":"berkeleytrue","email":"berkeley@r3dm.com"}],"dist":{"shasum":"21220d9c63afc77a8c92111e011af705ce0c6901","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-2.1.0.tgz","integrity":"sha512-O9pvum8nlCqIT5pRGo2WRQJPRG2bW/ZBeCzl7/8CWREjUW693juZpGup7zbRtuVcSKyGiRAIZLYsh3C0vq7FAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBydxJpGgB6o4M+cb+/wMNc1csutfr94BGcDdD0kLoAuAiBHLyPKjdLfVTTKrYowRCaROorhLweJEcixrjtnDkI0lg=="}]},"directories":{}},"3.0.0":{"name":"warning","version":"3.0.0","description":"A mirror of Facebook's Warning","main":"warning.js","browser":"browser.js","browserify":{"transform":["loose-envify"]},"files":["browser.js","warning.js"],"scripts":{"test":"NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js"},"dependencies":{"loose-envify":"^1.0.0"},"devDependencies":{"browserify":"^11.0.1","tap":"^1.4.0"},"repository":{"type":"git","url":"git+https://github.com/BerkeleyTrue/warning.git"},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@r3dm.com","url":"http://www.freecodecamp.com"},"license":"BSD-3-Clause","bugs":{"url":"https://github.com/BerkeleyTrue/warning/issues"},"homepage":"https://github.com/BerkeleyTrue/warning","gitHead":"6ef2da6b3da76eb6fcc735eaa52160fec2ed6078","_id":"warning@3.0.0","_shasum":"32e5377cb572de4ab04753bdf8821c01ed605b7c","_from":".","_npmVersion":"3.8.7","_nodeVersion":"4.2.4","_npmUser":{"name":"berkeleytrue","email":"berkeley@robotie.com"},"maintainers":[{"name":"berkeleytrue","email":"berkeley@r3dm.com"}],"dist":{"shasum":"32e5377cb572de4ab04753bdf8821c01ed605b7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-3.0.0.tgz","integrity":"sha512-jMBt6pUrKn5I+OGgtQ4YZLdhIeJmObddh6CsibPxyQ5yPZm1XExSyzC1LCNX7BzhxWgiHmizBWJTHJIjMjTQYQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFbzjfn0IHZAc78bY5fNWA9hecqt/niXxz/J4WRSyUDVAiEA+fu5eW0xZeDQ0W8x5/FRPX8nCMFRRwFjzSFtb4z/VFA="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/warning-3.0.0.tgz_1464922442833_0.31551201664842665"},"directories":{}},"4.0.0":{"name":"warning","version":"4.0.0","description":"A mirror of Facebook's Warning","main":"warning.js","browserify":{"transform":["loose-envify"]},"files":["warning.js"],"scripts":{"test":"NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js"},"dependencies":{"loose-envify":"^1.0.0"},"devDependencies":{"browserify":"^11.0.1","tap":"^1.4.0","uglify-js":"^3.3.25"},"repository":{"type":"git","url":"git+https://github.com/BerkeleyTrue/warning.git"},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@berkeleytrue.com","url":"http://www.berkeleytrue.com"},"license":"MIT","bugs":{"url":"https://github.com/BerkeleyTrue/warning/issues"},"homepage":"https://github.com/BerkeleyTrue/warning","gitHead":"14967a756ea77cea27edfd7f0b2b3910404d7e46","_id":"warning@4.0.0","_npmVersion":"6.0.1","_nodeVersion":"8.9.4","_npmUser":{"name":"berkeleytrue","email":"jn.martinez110@gmail.com"},"dist":{"integrity":"sha512-JQ0tNxaiZyKqW2PQvsABcdh+W8DHc8fH3jhROE3Sf/NPFXZtjxWysD6X93OQSgJfSBY9CKNRzd5e3p4jHkp2NQ==","shasum":"311a464f62c0986f4d2d2f3a46d471b3ba02f782","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-4.0.0.tgz","fileCount":5,"unpackedSize":8026,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbA5p9CRA9TVsSAnZWagAANZwP/jIgGg3w5QFeqiSy9RAo\nH8TaD+YVBXeL1LHtIOB8tY0mDa+cKVsz/6ZllBJD6SOuhzumRV7X906tO6Ki\nwvH4q1ucjchkfieXQi8Tb/gBFIvHb6MVMXDg0oHmmEEil385gOx9fSG30myb\nYkJpjoDQeExrdeNUMSSed4JvamFdpSV0KqmVom7rGIpiy6Om9Vr8SAZnccuT\n6h6gRX34MMdLSWatfhIxHuaSs+zzWW1uHiSKTfDbDN4+isSHLshCtiRuaNCQ\nAkPTCFDeV3dMfQzFqsul85DHrfJ9bbf/uUCmIB4nKk30tHjWar/kqv4hgSfV\nNjMTcEhx1FowvN5nh1vWiGdtzhmMt7O0CRrSlVJ1lGT9L1rONHp7ct2ljT7x\nUpEcVSlE/vxGMr97vhflq0RJFeOe7egWQoFQmMl6loYx5n24N8i2Oecnju+s\nM5L3wxMoEolpyDsPJCvodtjNhgW/sxyZ4eHyEkxQ9QFa4M2EDXo/znh0Vuka\nsxPrKi8/luQHF3EoU1D+3YfROj94XjG6n+8T43vJBojwcATSwqMxey4Elh2c\njkkxY/JBfjVNnaV90aVaQ+RSlR18V9+veS/XE7w621w9rcj2rslNU/5D+4Qe\nwkE5/21ycOiP6/YgtU0O88awWzlJtEw2iZQheLlfe2E6jP4TSQsTOy5v/20G\na5T2\r\n=WVaO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF1RnExQhVRQ8T0pqrh1BBNeq22rSr+fG7+qHcMSMMVBAiEAtAJMDh/kle8oBD3+LIIlYKQHqATNu97y3b0Pyp6UBa4="}]},"maintainers":[{"email":"jn.martinez110@gmail.com","name":"berkeleytrue"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/warning_4.0.0_1526962813097_0.20211087836391273"},"_hasShrinkwrap":false},"4.0.1":{"name":"warning","version":"4.0.1","description":"A mirror of Facebook's Warning","main":"warning.js","browserify":{"transform":["loose-envify"]},"files":["warning.js"],"scripts":{"test":"NODE_ENV=production tap test/*.js && NODE_ENV=development tap test/*.js"},"dependencies":{"loose-envify":"^1.0.0"},"devDependencies":{"browserify":"^11.0.1","tap":"^1.4.0","uglify-js":"^3.3.25"},"repository":{"type":"git","url":"git+https://github.com/BerkeleyTrue/warning.git"},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@berkeleytrue.com","url":"http://www.berkeleytrue.com"},"license":"MIT","bugs":{"url":"https://github.com/BerkeleyTrue/warning/issues"},"homepage":"https://github.com/BerkeleyTrue/warning","gitHead":"19d17bd3dc716072aec2f1680345b089e413d3c5","_id":"warning@4.0.1","_npmVersion":"6.0.1","_nodeVersion":"8.9.4","_npmUser":{"name":"berkeleytrue","email":"jn.martinez110@gmail.com"},"dist":{"integrity":"sha512-rAVtTNZw+cQPjvGp1ox0XC5Q2IBFyqoqh+QII4J/oguyu83Bax1apbo2eqB8bHRS+fqYUBagys6lqUoVwKSmXQ==","shasum":"66ce376b7fbfe8a887c22bdf0e7349d73d397745","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-4.0.1.tgz","fileCount":5,"unpackedSize":8372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDhSdCRA9TVsSAnZWagAAEYwP/R0UwJ2uCYNM/xsl55DB\nNDhTMJMC7vy5PR7zNwJBF8B/SigqrFbVg/8xLLP5Jc1I1dfvsPCFhdqpl8qg\nA0yk1q3QgCtTB/DAOXAkIg3fEcMkdHEKfgVso+/hDD77MND2qlylO9WY9KG+\nC4RFizZNOE8SkvfHLvGfOvmCBSOy6sxRbqZpJILJdJo+JZUyGTa7D82ySHLm\ndt6pSTCaGg70w2ucfFGFw1raQAYDu6i6KTuGyUmKxUuDmPUJdWEYVLAaQo/A\nQNzrDa6oAgkhYEOSzGG9ePV4gtW3XoxwH3Gcq9XgC8l+IQaK/TJoEGPodmDk\nrHMjAPvpLQ80vAxQOmjdGstbPVctgoSGmdzloGjGTEILZrah4T7y1aD9n/ir\nu57H/mqaKSlRDXCw2DhD2ik2JwzLyaZvS83EV0ArtfjXIJeTBKN5lgG/m9/a\nYzvJIRdrr0vIP2b/XGT4w5YKvfYZ9Rjjq+mJkryN7dUnnfQYoCsklmio2Ztn\nvlPrwIrJ9i7syu43Eq8vw6h7BjFKNnyvDySUEAJ2uG5k97jT4l0COPbZuYfD\nLnoGsN2G5leEtsZRS6fmAsotS7pi1353lueKNFPnQtzSYWo3OeCtoz0/jgC7\nGLJm1VeNdh32KqAdXQC+VgUskwxEEoogjxfQAfA4aFHujL7mTjrkQYxkUHv8\n9vPu\r\n=3IBt\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB828W1cOld2jaGadVLSoAPGM73NG3UcC1FVmJ6Yd8L4AiBnGZZvhi9lGbcFvmPFmLJVUES7bG3s2rVy0cvKnVr7UQ=="}]},"maintainers":[{"email":"jn.martinez110@gmail.com","name":"berkeleytrue"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/warning_4.0.1_1527649436327_0.8098921246506208"},"_hasShrinkwrap":false},"4.0.2":{"name":"warning","version":"4.0.2","description":"A mirror of Facebook's Warning","main":"warning.js","scripts":{"test":"npm run test:dev && npm run test:prod","test:dev":"NODE_ENV=development jest","test:prod":"NODE_ENV=production jest","commit":"git cz","commitmsg":"commitlint -e $GIT_PARAMS"},"dependencies":{"loose-envify":"^1.0.0"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","browserify":"^16.2.2","commitizen":"^2.10.1","cz-conventional-changelog":"^2.1.0","husky":"^0.14.3","jest":"^23.1.0","uglify-js":"^3.3.25"},"repository":{"type":"git","url":"git+https://github.com/BerkeleyTrue/warning.git"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"browserify":{"transform":["loose-envify"]},"files":["warning.js"],"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@berkeleytrue.com","url":"http://www.berkeleytrue.com"},"license":"MIT","bugs":{"url":"https://github.com/BerkeleyTrue/warning/issues"},"homepage":"https://github.com/BerkeleyTrue/warning","gitHead":"e4806228c076429774878522cafdf9321b7ff71c","_id":"warning@4.0.2","_npmVersion":"6.2.0","_nodeVersion":"10.8.0","_npmUser":{"name":"berkeleytrue","email":"jn.martinez110@gmail.com"},"dist":{"integrity":"sha512-wbTp09q/9C+jJn4KKJfJfoS6VleK/Dti0yqWSm6KMvJ4MRCXFQNapHuJXutJIrWV0Cf4AhTdeIe4qdKHR1+Hug==","shasum":"aa6876480872116fa3e11d434b0d0d8d91e44607","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-4.0.2.tgz","fileCount":5,"unpackedSize":9225,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbds7lCRA9TVsSAnZWagAAvecP/RSm7KFSdIcdtgHfggLn\nBk3OlSbco4RPP8M0q2e/BU+2CM7nBXEHUP/lnPc8Nh7ZORilam/CfefB92v2\nZ6fIufy6N3GGOOcZ9Fgp/821dztc3YKi6WoWZar+eIBmLxl/5GOgt3g9Zcww\nr9dgxoGO1A2DI0Z/cCLo8KJQhl3kx76jZvsnIhoHM0QLFTXQL2ycdy1ItD4B\nrXUh93BtWhMuQhOYobLx6pIztB1IKQpLZWtktinyHbeeauoEc2JrpwjfHSBy\n7iJYOsuoFQaFkzQwbUQ34Jy12mkwNNOmkxtjL4Nv8hxuDo+V5yAz4O8DPQ6H\naVj2yaxCVSqeyxPkbm8C9YbFkVJCEfo1ya7V5h9viNyffhY61H+OTwSKavgN\nhzQ11xtgS8L/HVqx6LU4FHHKand3WiU8kvbIxnXOz7TeJH+YXCsF/hEnpFgq\ntbLJz8ZZyYsxeLiXyAUUJuQ6Js3mQV6yjnAI9sUj7SgC934wsgBBtzcfEsms\nU7wboyR/Ac79ApS0alyPN+Oi6X39K8NDBBTAxhS+6YaRP5LywXV4cx5mQ+OM\nH6R7IWyNJtva6qb0+iPMMPdn+Xgo+vD4pQYp2UWfOeFEg+PipJhVP/eQ0T+W\ngsGdzTKTPJxzh+DkCulM6pqtNrPInJyB2PN0hkOumq756xHVuddZYeq/Gpst\ngMsj\r\n=LVFU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDOszCNth3jmwXo3ePT5FIiET49+uhwPr7LK65KNxlPgAiEAue3n39Qlzj+vjQZzjaysRMV+d47llm3yEPbFcx9JR7c="}]},"maintainers":[{"email":"jn.martinez110@gmail.com","name":"berkeleytrue"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/warning_4.0.2_1534512868704_0.995670660882549"},"_hasShrinkwrap":false},"4.0.3":{"name":"warning","version":"4.0.3","description":"A mirror of Facebook's Warning","main":"warning.js","scripts":{"test":"npm run test:dev && npm run test:prod","test:dev":"NODE_ENV=development jest","test:prod":"NODE_ENV=production jest","commit":"git cz","commitmsg":"commitlint -e $GIT_PARAMS"},"dependencies":{"loose-envify":"^1.0.0"},"devDependencies":{"@commitlint/cli":"^6.2.0","@commitlint/config-conventional":"^6.1.3","browserify":"^16.2.2","commitizen":"^2.10.1","cz-conventional-changelog":"^2.1.0","husky":"^0.14.3","jest":"^23.1.0","uglify-js":"^3.3.25"},"repository":{"type":"git","url":"git+https://github.com/BerkeleyTrue/warning.git"},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"browserify":{"transform":["loose-envify"]},"keywords":["warning","facebook","react","invariant"],"author":{"name":"Berkeley Martinez","email":"berkeley@berkeleytrue.com","url":"http://www.berkeleytrue.com"},"license":"MIT","bugs":{"url":"https://github.com/BerkeleyTrue/warning/issues"},"homepage":"https://github.com/BerkeleyTrue/warning","gitHead":"3c44be700a0e37e972c1a7e87446ba007f39cac0","_id":"warning@4.0.3","_npmVersion":"6.5.0","_nodeVersion":"10.15.0","_npmUser":{"name":"berkeleytrue","email":"jn.martinez110@gmail.com"},"dist":{"integrity":"sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w==","shasum":"16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3","tarball":"https://mirrors.huaweicloud.com/repository/npm/warning/-/warning-4.0.3.tgz","fileCount":5,"unpackedSize":9472,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcX0FNCRA9TVsSAnZWagAA098P/jblVZZvVfnhBRydcqM/\nbORc5q6w6ibXXq2keGhOA7DKKHrPLzonh3qNHNl651Yra28fhuD1VIacK2WJ\noGzyWeesN9OLrYNrzFE8USmfqUlSFk7OGPVMpEzVjfrgz8FPDN7fl9IiK0cb\nWGFypYzGJRDI7owYO8kDTIrQbZ2+GUSshC33sKr8N70QPYqQG3NU5YAKLpAz\nUSadJwqWoKhVSNTqtUYY/wPuCFlRP90mIGi6+YmSS/d80h8Kois9KjwKU1dP\nqaTJ4BeXI0+aML2AtxwctnoUOJgeZeDX8HQ9NbIUx17k84g/JlhzmyUb36ij\nYRWZoZ1k7aaBJfBNl4M2ezuDr37wP3fv9W+KrjunpzuNkyg3ngNAYEBjTL7v\nPlG5EGgcGbPS5la3NnQCydKn83Q7std66Zv1NbNQz2et0pdCVw8ljThFa7yi\nhH3onkOAawG4FFfY2F+PXGQUvDxbP2dXPXMmHlrwdfQ9UX1vs0h5OU+BLmW1\nRxK/Akq0YHdT+o/rycXSPwGgQQfjTiBsz/mC8EZQHUG6hWf1h38GrdO959ku\nVoCOlhZJA8wyTpUO/LDwxoHuT9OR8cWrk0vyit5Df1sApn9lMh1kGltdX4z1\nqANedWxqOFvTkKV/9c8txKJcJD+XfTHEVn+0CrH7HNRbbnYCbBl2aZMv+vb/\nESV+\r\n=7OkA\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCqpkUjFPCHWUGzF5IP6dCYJT3qVaYvbsRfL9EU2WPO7wIgc3k2EPPwuuvBWRs+kAzz9a/FHvjTqUFr1tMghmVWOi0="}]},"maintainers":[{"email":"jn.martinez110@gmail.com","name":"berkeleytrue"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/warning_4.0.3_1549746508792_0.39167921585706167"},"_hasShrinkwrap":false}},"readme":"# Warning [![npm version](https://badge.fury.io/js/warning.svg)](https://badge.fury.io/js/warning)\n\n[![Greenkeeper badge](https://badges.greenkeeper.io/BerkeleyTrue/warning.svg)](https://greenkeeper.io/)\nA mirror of Facebook's [Warning](https://github.com/facebook/fbjs/blob/master/packages/fbjs/src/__forks__/warning.js)\n\n\n## Usage\n```\nnpm install warning\n```\n\n```\n// some script\nvar warning = require('warning');\n\nvar ShouldBeTrue = false;\n\nwarning(\n ShouldBeTrue,\n 'This thing should be true but you set to false. No soup for you!'\n);\n// 'This thing should be true but you set to false. No soup for you!'\n```\n\nSimilar to Facebook's (FB) invariant but only logs a warning if the condition is not met.\nThis can be used to log issues in development environments in critical\npaths. Removing the logging code for production environments will keep the\nsame logic and follow the same code paths.\n\n## FAQ (READ before opening an issue)\n\n> Why do you use `console.error` instead of `console.warn` ?\n\nThis is a mirror of Facebook's (FB) [warning](https://github.com/facebook/fbjs/blob/master/packages/fbjs/src/__forks__/warning.js) module used within React's source code (and other FB software).\nAs such this module will mirror their code as much as possible. \n\nThe descision to use `error` over `warn` was made a long time ago by the FB team and isn't going to change anytime soon.\n\nThe source can be found here: https://github.com/facebook/fbjs/blob/master/packages/fbjs/src/__forks__/warning.js\nThe reasoning can be found here and elsewhere: https://github.com/facebook/fbjs/pull/94#issuecomment-168332326\n\n> Can I add X feature?\n\nThis is a mirror of Facebook's (FB) [warning](https://github.com/facebook/fbjs/blob/master/packages/fbjs/src/__forks__/warning.js) and as such the source and signature will mirror that module.\n\nIf you believe a feature is missing than please open a feature request [there](https://github.com/facebook/fbjs).\nIf it is approved and merged in that this module will be updated to reflect that change, otherwise this module will not change.\n\n## Use in Production\n\nIt is recommended to add [babel-plugin-dev-expression](https://github.com/4Catalyzer/babel-plugin-dev-expression) with this module to remove warning messages in production.\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\nDon't Forget To Be Awesome\n","maintainers":[{"email":"jn.martinez110@gmail.com","name":"berkeleytrue"}],"time":{"modified":"2022-06-28T21:50:25.104Z","created":"2015-04-01T00:23:13.847Z","1.0.0":"2015-04-01T00:23:13.847Z","1.0.1":"2015-04-09T14:49:19.325Z","1.0.2":"2015-05-30T07:09:47.232Z","2.0.0":"2015-07-12T00:41:56.055Z","2.1.0":"2015-10-04T21:26:55.529Z","3.0.0":"2016-06-03T02:54:03.287Z","4.0.0":"2018-05-22T04:20:13.216Z","4.0.1":"2018-05-30T03:03:56.386Z","4.0.2":"2018-08-17T13:34:28.837Z","4.0.3":"2019-02-09T21:08:28.900Z"},"homepage":"https://github.com/BerkeleyTrue/warning","keywords":["warning","facebook","react","invariant"],"repository":{"type":"git","url":"git+https://github.com/BerkeleyTrue/warning.git"},"author":{"name":"Berkeley Martinez","email":"berkeley@berkeleytrue.com","url":"http://www.berkeleytrue.com"},"bugs":{"url":"https://github.com/BerkeleyTrue/warning/issues"},"license":"MIT","readmeFilename":"README.md","users":{"wenbing":true,"nelix":true,"parkerproject":true,"lestad":true,"weifei365":true,"yuwen":true,"dreamanddead":true,"jmsherry":true,"tedyhy":true,"adrtho4":true,"princetoad":true,"pftom":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/23/05/02d00ab6cf0697ab2ef8878582bc5094b685748925abd2c9d69c4f539d4d7c4bae86010caa41b45fdaa7c9b54ba216c05feaaa74304c1da27970ce795caf b/frontend/.npm-cache/_cacache/content-v2/sha512/23/05/02d00ab6cf0697ab2ef8878582bc5094b685748925abd2c9d69c4f539d4d7c4bae86010caa41b45fdaa7c9b54ba216c05feaaa74304c1da27970ce795caf new file mode 100644 index 0000000..94fc3ad Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/23/05/02d00ab6cf0697ab2ef8878582bc5094b685748925abd2c9d69c4f539d4d7c4bae86010caa41b45fdaa7c9b54ba216c05feaaa74304c1da27970ce795caf differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/26/20/d2847e39cca1d6c867b864d551ac28c1cfc361f53326646d648784132bc8420535818bc0dafa2eecd5f270eff958a4ce1c71ea5235fab367f42f001062e6 b/frontend/.npm-cache/_cacache/content-v2/sha512/26/20/d2847e39cca1d6c867b864d551ac28c1cfc361f53326646d648784132bc8420535818bc0dafa2eecd5f270eff958a4ce1c71ea5235fab367f42f001062e6 new file mode 100644 index 0000000..58fdf59 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/26/20/d2847e39cca1d6c867b864d551ac28c1cfc361f53326646d648784132bc8420535818bc0dafa2eecd5f270eff958a4ce1c71ea5235fab367f42f001062e6 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/26/e1/051a99ab2ea8914aa69c52bad8a578ae50bd28b3486130215c6d3f2d6d2b46625ccabe4f7bd0e1ddff23ac37fd169b7608aadbe34cdb9d85b34d32945311 b/frontend/.npm-cache/_cacache/content-v2/sha512/26/e1/051a99ab2ea8914aa69c52bad8a578ae50bd28b3486130215c6d3f2d6d2b46625ccabe4f7bd0e1ddff23ac37fd169b7608aadbe34cdb9d85b34d32945311 new file mode 100644 index 0000000..87a54e3 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/26/e1/051a99ab2ea8914aa69c52bad8a578ae50bd28b3486130215c6d3f2d6d2b46625ccabe4f7bd0e1ddff23ac37fd169b7608aadbe34cdb9d85b34d32945311 @@ -0,0 +1 @@ +{"_id":"gopd","_rev":"5-00039d9c1c4528d08bf80575c3d614b1","name":"gopd","dist-tags":{"latest":"1.2.0"},"versions":{"1.0.1":{"name":"gopd","version":"1.0.1","keywords":["ecmascript","javascript","getownpropertydescriptor","property","descriptor"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"gopd@1.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/gopd#readme","bugs":{"url":"https://github.com/ljharb/gopd/issues"},"dist":{"shasum":"29ff76de69dac7489b7c0918a5788e56477c332c","tarball":"https://mirrors.huaweicloud.com/repository/npm/gopd/-/gopd-1.0.1.tgz","fileCount":8,"integrity":"sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==","signatures":[{"sig":"MEQCIBDoe9bXK8xSrmnY7XYTdbRAJEJVVA0b45+dVu3Eg9wIAiB2VNbwGpWsB1yrINoQU+ws9M1JNuQxLmGMAk0b5gsNLQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7703,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjYg1UACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp80g/9GhDy6/of0kgDHy/13dC/BlTRUfBcftwssUMjnwLWOAAR2xQC\r\nGt59WehnCNUeGfXCzfnU9Y/jBnDi7cIMFLk75QRkqH45oapYOgm7Yu0eQSbS\r\n3j2dQiSCoDva/lTl0RjtT148pbSKXc692hodS1T9nIAxbtjB5EE1mpau+n2n\r\n6oECynnKt7bPmsYswzkyaut2Eu8qMCZzhLwmqNFoCTchqXWI62kS7ijfFoiC\r\nkhFmYC36JVOyxyZ/cCPo88otFPjixBvz2oPl8XJKYckd/JAJov62wx63YjYx\r\nAV8Vy+vzYLeiMNOm9Mca/Z6Rfv8s4pJnzMu8vJTjJwtSh9mnuLFnpiPAB4Ws\r\n84PQodRR6p1Ib5yzBmJFxX37oNt39KvBgpzDEkA5hJ7sEnzs8vsqcfa/heKF\r\nI4UyjrD8zXAfpQs/n5RIEaedyIpzY8eBCSE0rE5bzrp9KuOF54I3zk4rwWMP\r\nwc+zcvXoghXKtyMfFgL8IxrIyAmP/8jT/is9rUQNEHyFSCw/8TJJnZJofxkk\r\nBMGQu9RfmbW2kIAevM4DbBzqbI1O9Ih0tqYa4MbOuGN+Mmap3Dooa/CNVmXW\r\n9KTev2I/6JGBek5DMnr2vtkuweSFs1fDsP4kKIRKyhUU7IRfOVkE3I3bhz3N\r\nvd4oK+PvfP0FWnP7zVA1D/jaJZ0xZMk9xQ8=\r\n=Z17m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"e3236ba6cdee15eef18be63dcc46045c035d4429","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/ljharb/gopd.git","type":"git"},"_npmVersion":"8.19.2","description":"`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.","directories":{},"sideEffects":false,"_nodeVersion":"19.0.0","dependencies":{"get-intrinsic":"^1.1.3"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.1","tape":"^5.6.1","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.0","in-publish":"^2.0.1","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/gopd_1.0.1_1667370324550_0.7470179275451341","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"gopd","version":"1.1.0","keywords":["ecmascript","javascript","getownpropertydescriptor","property","descriptor"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"gopd@1.1.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/gopd#readme","bugs":{"url":"https://github.com/ljharb/gopd/issues"},"dist":{"shasum":"df8f0839c2d48caefc32a025a49294d39606c912","tarball":"https://mirrors.huaweicloud.com/repository/npm/gopd/-/gopd-1.1.0.tgz","fileCount":10,"integrity":"sha512-FQoVQnqcdk4hVM4JN1eromaun4iuS34oStkdlLENLdpULsuQcTyXj8w7ayhuUfPwEYZ1ZOooOTT6fdA9Vmx/RA==","signatures":[{"sig":"MEUCIQCYFfoSS2RtJe8o1roQ5J/pb+FBM20OWS2vaS79GgCargIga4Ybl23B69VWyCmHpedvbZfCenjmQ0/HqRjrHJn/E3Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9648},"main":"index.js","types":"./index.d.ts","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"69fd8eadf521333bfbcf2d8d4414ab138f835ab8","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"tsc -p . && attw -P","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"evalmd README.md","posttest":"npx npm@'>=10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/ljharb/gopd.git","type":"git"},"_npmVersion":"10.9.0","description":"`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.","directories":{},"sideEffects":false,"_nodeVersion":"23.3.0","dependencies":{"get-intrinsic":"^1.2.4"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"^5.8.0-dev.20241129","@types/tape":"^5.6.5","auto-changelog":"^2.5.0","@ljharb/tsconfig":"^0.2.0","safe-publish-latest":"^2.0.0","@types/get-intrinsic":"^1.2.3","@arethetypeswrong/cli":"^0.17.0","@ljharb/eslint-config":"^21.1.1"},"_npmOperationalInternal":{"tmp":"tmp/gopd_1.1.0_1732943773840_0.8010907404876537","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"gopd","version":"1.2.0","description":"`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.","main":"index.js","exports":{".":"./index.js","./gOPD":"./gOPD.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","prelint":"tsc -p . && attw -P","lint":"eslint --ext=js,mjs .","postlint":"evalmd README.md","pretest":"npm run lint","tests-only":"tape 'test/**/*.js'","test":"npm run tests-only","posttest":"npx npm@'>=10.2' audit --production","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/ljharb/gopd.git"},"keywords":["ecmascript","javascript","getownpropertydescriptor","property","descriptor"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"funding":{"url":"https://github.com/sponsors/ljharb"},"license":"MIT","bugs":{"url":"https://github.com/ljharb/gopd/issues"},"homepage":"https://github.com/ljharb/gopd#readme","devDependencies":{"@arethetypeswrong/cli":"^0.17.0","@ljharb/eslint-config":"^21.1.1","@ljharb/tsconfig":"^0.2.0","@types/tape":"^5.6.5","auto-changelog":"^2.5.0","encoding":"^0.1.13","eslint":"=8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","npmignore":"^0.3.1","safe-publish-latest":"^2.0.0","tape":"^5.9.0","typescript":"next"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"gopd@1.2.0","gitHead":"7f867f97d7c895a982a3b631287fd2c36d39c2ff","types":"./index.d.ts","_nodeVersion":"23.3.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==","shasum":"89f56b8217bdbc8802bd299df6d7f1081d7e51a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/gopd/-/gopd-1.2.0.tgz","fileCount":12,"unpackedSize":9869,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5XMsZlbC6fTaTnci63FcU7n0ajefDF31NCM5hiSNjAgIhAKOtFohttj8T5Ejj+saoHldL3znN/rzau+8Ljry8gxan"}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/gopd_1.2.0_1733329312532_0.9387002246933662"},"_hasShrinkwrap":false}},"time":{"created":"2022-11-02T05:36:15.165Z","modified":"2024-12-04T16:21:52.914Z","1.0.0":"2022-11-02T05:36:15.356Z","1.0.1":"2022-11-02T06:25:24.709Z","1.1.0":"2024-11-30T05:16:14.022Z","1.2.0":"2024-12-04T16:21:52.727Z"},"bugs":{"url":"https://github.com/ljharb/gopd/issues"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","homepage":"https://github.com/ljharb/gopd#readme","keywords":["ecmascript","javascript","getownpropertydescriptor","property","descriptor"],"repository":{"type":"git","url":"git+https://github.com/ljharb/gopd.git"},"description":"`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"readme":"# gopd [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\n`Object.getOwnPropertyDescriptor`, but accounts for IE's broken implementation.\n\n## Usage\n\n```javascript\nvar gOPD = require('gopd');\nvar assert = require('assert');\n\nif (gOPD) {\n\tassert.equal(typeof gOPD, 'function', 'descriptors supported');\n\t// use gOPD like Object.getOwnPropertyDescriptor here\n} else {\n\tassert.ok(!gOPD, 'descriptors not supported');\n}\n```\n\n[package-url]: https://npmjs.org/package/gopd\n[npm-version-svg]: https://versionbadg.es/ljharb/gopd.svg\n[deps-svg]: https://david-dm.org/ljharb/gopd.svg\n[deps-url]: https://david-dm.org/ljharb/gopd\n[dev-deps-svg]: https://david-dm.org/ljharb/gopd/dev-status.svg\n[dev-deps-url]: https://david-dm.org/ljharb/gopd#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/gopd.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/gopd.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/gopd.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=gopd\n[codecov-image]: https://codecov.io/gh/ljharb/gopd/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/ljharb/gopd/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/gopd\n[actions-url]: https://github.com/ljharb/gopd/actions\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/28/83/7f9c3241411717c3430b561644f62407986ebca80548060f42aa65188e64088608a3f54e4c16faea9142f915bb72cb366e39e3add3375e45ee1463b72df8 b/frontend/.npm-cache/_cacache/content-v2/sha512/28/83/7f9c3241411717c3430b561644f62407986ebca80548060f42aa65188e64088608a3f54e4c16faea9142f915bb72cb366e39e3add3375e45ee1463b72df8 new file mode 100644 index 0000000..67f866b Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/28/83/7f9c3241411717c3430b561644f62407986ebca80548060f42aa65188e64088608a3f54e4c16faea9142f915bb72cb366e39e3add3375e45ee1463b72df8 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/28/a2/f1a8e5d905ce513802ff757fbf5533cff4b65b0bbd8a46bf52e070397c9c10579a0c195e51d2b0bba1e26a1dedbed1d56fb4bfed761cf18d15d7cce992d9 b/frontend/.npm-cache/_cacache/content-v2/sha512/28/a2/f1a8e5d905ce513802ff757fbf5533cff4b65b0bbd8a46bf52e070397c9c10579a0c195e51d2b0bba1e26a1dedbed1d56fb4bfed761cf18d15d7cce992d9 new file mode 100644 index 0000000..180458f --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/28/a2/f1a8e5d905ce513802ff757fbf5533cff4b65b0bbd8a46bf52e070397c9c10579a0c195e51d2b0bba1e26a1dedbed1d56fb4bfed761cf18d15d7cce992d9 @@ -0,0 +1 @@ +{"_id":"call-bind-apply-helpers","_rev":"2-56963b9eaf7a0f6cfb8657f38a8b4b46","name":"call-bind-apply-helpers","dist-tags":{"latest":"1.0.2"},"versions":{"1.0.0":{"name":"call-bind-apply-helpers","version":"1.0.0","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"call-bind-apply-helpers@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/call-bind-apply-helpers#readme","bugs":{"url":"https://github.com/ljharb/call-bind-apply-helpers/issues"},"dist":{"shasum":"33127b42608972f76812a501d69db5d8ce404979","tarball":"https://mirrors.huaweicloud.com/repository/npm/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.0.tgz","fileCount":21,"integrity":"sha512-CCKAP2tkPau7D3GE8+V8R6sQubA9R5foIzGp+85EXCVSCivuxBNAWqcpn72PKYiIcqoViv/kcUDpaEIMBVi1lQ==","signatures":[{"sig":"MEQCIHW7XfuHryTs2kNK+/GrAusDSttnxXzy+no1dG9KBiKAAiB8tBUgklhwfVMKrAPde2dlg/AhkIqh+K386M5Ic17Wvg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13840},"main":"index.js","types":"./index.d.ts","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./applyBind":"./applyBind.js","./actualApply":"./actualApply.js","./functionCall":"./functionCall.js","./package.json":"./package.json","./reflectApply":"./reflectApply.js","./functionApply":"./functionApply.js"},"gitHead":"d90414f6d1e0e6b95153a7d564f8d793c447d207","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=auto","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"tsc -p . && attw -P","posttest":"npx npm@'>=10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/ljharb/call-bind-apply-helpers.git","type":"git"},"_npmVersion":"10.9.0","description":"Helper functions around Function call/apply/bind, for use in `call-bind`","directories":{},"_nodeVersion":"23.3.0","dependencies":{"es-errors":"^1.3.0","function-bind":"^1.1.2"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.3","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"next","@types/tape":"^5.6.5","auto-changelog":"^2.5.0","object-inspect":"^1.13.3","@types/for-each":"^0.3.3","has-strict-mode":"^1.0.1","@ljharb/tsconfig":"^0.2.2","es-value-fixtures":"^1.5.0","safe-publish-latest":"^2.0.0","@types/function-bind":"^1.1.10","@arethetypeswrong/cli":"^0.17.0","@ljharb/eslint-config":"^21.1.1","@types/object-inspect":"^1.13.0"},"_npmOperationalInternal":{"tmp":"tmp/call-bind-apply-helpers_1.0.0_1733445252434_0.5467251670323627","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"call-bind-apply-helpers","version":"1.0.1","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"call-bind-apply-helpers@1.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/call-bind-apply-helpers#readme","bugs":{"url":"https://github.com/ljharb/call-bind-apply-helpers/issues"},"dist":{"shasum":"32e5892e6361b29b0b545ba6f7763378daca2840","tarball":"https://mirrors.huaweicloud.com/repository/npm/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz","fileCount":21,"integrity":"sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==","signatures":[{"sig":"MEUCIHwPEWbTRvp20B4Sr47T95aJCDYbhRkpr46kXbWVYCVHAiEAsKrisdtgDsJoWqsHHKVWnVqpGu9V2Yv1yhQZSA920tM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14495},"main":"index.js","types":"./index.d.ts","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./applyBind":"./applyBind.js","./actualApply":"./actualApply.js","./functionCall":"./functionCall.js","./package.json":"./package.json","./reflectApply":"./reflectApply.js","./functionApply":"./functionApply.js"},"gitHead":"53cbae48ce58b5d8523d8582711d1be0f12b64c0","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=auto","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"tsc -p . && attw -P","posttest":"npx npm@'>=10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/ljharb/call-bind-apply-helpers.git","type":"git"},"_npmVersion":"10.9.0","description":"Helper functions around Function call/apply/bind, for use in `call-bind`","directories":{},"_nodeVersion":"23.3.0","dependencies":{"es-errors":"^1.3.0","function-bind":"^1.1.2"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.3","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"next","@types/tape":"^5.6.5","auto-changelog":"^2.5.0","object-inspect":"^1.13.3","@types/for-each":"^0.3.3","has-strict-mode":"^1.0.1","@ljharb/tsconfig":"^0.2.2","es-value-fixtures":"^1.5.0","safe-publish-latest":"^2.0.0","@types/function-bind":"^1.1.10","@arethetypeswrong/cli":"^0.17.1","@ljharb/eslint-config":"^21.1.1","@types/object-inspect":"^1.13.0"},"_npmOperationalInternal":{"tmp":"tmp/call-bind-apply-helpers_1.0.1_1733726673175_0.2140833140350913","host":"s3://npm-registry-packages-npm-production"}},"1.0.2":{"name":"call-bind-apply-helpers","version":"1.0.2","description":"Helper functions around Function call/apply/bind, for use in `call-bind`","main":"index.js","exports":{".":"./index.js","./actualApply":"./actualApply.js","./applyBind":"./applyBind.js","./functionApply":"./functionApply.js","./functionCall":"./functionCall.js","./reflectApply":"./reflectApply.js","./package.json":"./package.json"},"scripts":{"prepack":"npmignore --auto --commentLines=auto","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest","prelint":"evalmd README.md","lint":"eslint --ext=.js,.mjs .","postlint":"tsc -p . && attw -P","pretest":"npm run lint","tests-only":"nyc tape 'test/**/*.js'","test":"npm run tests-only","posttest":"npx npm@'>=10.2' audit --production","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/ljharb/call-bind-apply-helpers.git"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ljharb/call-bind-apply-helpers/issues"},"homepage":"https://github.com/ljharb/call-bind-apply-helpers#readme","dependencies":{"es-errors":"^1.3.0","function-bind":"^1.1.2"},"devDependencies":{"@arethetypeswrong/cli":"^0.17.3","@ljharb/eslint-config":"^21.1.1","@ljharb/tsconfig":"^0.2.3","@types/for-each":"^0.3.3","@types/function-bind":"^1.1.10","@types/object-inspect":"^1.13.0","@types/tape":"^5.8.1","auto-changelog":"^2.5.0","encoding":"^0.1.13","es-value-fixtures":"^1.7.1","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.5","has-strict-mode":"^1.1.0","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","object-inspect":"^1.13.4","safe-publish-latest":"^2.0.0","tape":"^5.9.0","typescript":"next"},"testling":{"files":"test/index.js"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"call-bind-apply-helpers@1.0.2","gitHead":"7068296a67b98424d5299606599d2f8117ded880","types":"./index.d.ts","_nodeVersion":"23.7.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==","shasum":"4b5428c222be985d79c3d82657479dbe0b59b2d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.2.tgz","fileCount":21,"unpackedSize":15952,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIG6fAxtBxkVLqeMj4hMX04Vep0JNjOVl6JP2xrnsL50CAiEA9XubTWvgXSyVHKqfH6C/PHeZ06C6S+wNdxbVqOFCR6I="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/call-bind-apply-helpers_1.0.2_1739388296756_0.5004641025912346"},"_hasShrinkwrap":false}},"time":{"created":"2024-12-06T00:34:12.433Z","modified":"2025-02-12T19:24:57.167Z","1.0.0":"2024-12-06T00:34:12.669Z","1.0.1":"2024-12-09T06:44:33.335Z","1.0.2":"2025-02-12T19:24:56.950Z"},"bugs":{"url":"https://github.com/ljharb/call-bind-apply-helpers/issues"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","homepage":"https://github.com/ljharb/call-bind-apply-helpers#readme","repository":{"type":"git","url":"git+https://github.com/ljharb/call-bind-apply-helpers.git"},"description":"Helper functions around Function call/apply/bind, for use in `call-bind`","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"readme":"# call-bind-apply-helpers [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![dependency status][deps-svg]][deps-url]\n[![dev dependency status][dev-deps-svg]][dev-deps-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nHelper functions around Function call/apply/bind, for use in `call-bind`.\n\nThe only packages that should likely ever use this package directly are `call-bind` and `get-intrinsic`.\nPlease use `call-bind` unless you have a very good reason not to.\n\n## Getting started\n\n```sh\nnpm install --save call-bind-apply-helpers\n```\n\n## Usage/Examples\n\n```js\nconst assert = require('assert');\nconst callBindBasic = require('call-bind-apply-helpers');\n\nfunction f(a, b) {\n\tassert.equal(this, 1);\n\tassert.equal(a, 2);\n\tassert.equal(b, 3);\n\tassert.equal(arguments.length, 2);\n}\n\nconst fBound = callBindBasic([f, 1]);\n\ndelete Function.prototype.call;\ndelete Function.prototype.bind;\n\nfBound(2, 3);\n```\n\n## Tests\n\nClone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.org/package/call-bind-apply-helpers\n[npm-version-svg]: https://versionbadg.es/ljharb/call-bind-apply-helpers.svg\n[deps-svg]: https://david-dm.org/ljharb/call-bind-apply-helpers.svg\n[deps-url]: https://david-dm.org/ljharb/call-bind-apply-helpers\n[dev-deps-svg]: https://david-dm.org/ljharb/call-bind-apply-helpers/dev-status.svg\n[dev-deps-url]: https://david-dm.org/ljharb/call-bind-apply-helpers#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/call-bind-apply-helpers.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/call-bind-apply-helpers.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/call-bind-apply-helpers.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=call-bind-apply-helpers\n[codecov-image]: https://codecov.io/gh/ljharb/call-bind-apply-helpers/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/ljharb/call-bind-apply-helpers/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/call-bind-apply-helpers\n[actions-url]: https://github.com/ljharb/call-bind-apply-helpers/actions\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/28/e1/0632ee9d98966da5a75be3be88b1905c94abc82e3a298d48a2dd5fbb3275c8402621f16dcd80d720c28db59fd2d7657e840c82afa9f8d8c5779b0f0c4a99 b/frontend/.npm-cache/_cacache/content-v2/sha512/28/e1/0632ee9d98966da5a75be3be88b1905c94abc82e3a298d48a2dd5fbb3275c8402621f16dcd80d720c28db59fd2d7657e840c82afa9f8d8c5779b0f0c4a99 new file mode 100644 index 0000000..6475bc7 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/28/e1/0632ee9d98966da5a75be3be88b1905c94abc82e3a298d48a2dd5fbb3275c8402621f16dcd80d720c28db59fd2d7657e840c82afa9f8d8c5779b0f0c4a99 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/2b/b3/db5369e616fc0446a6de493977315c3c4d59e4f85cb117d98dc19c0c222b0d1ee2719bac7dd87b84f10b31321532e8843b7722fa56084ae0fb900b40fe03 b/frontend/.npm-cache/_cacache/content-v2/sha512/2b/b3/db5369e616fc0446a6de493977315c3c4d59e4f85cb117d98dc19c0c222b0d1ee2719bac7dd87b84f10b31321532e8843b7722fa56084ae0fb900b40fe03 new file mode 100644 index 0000000..9c7d53d --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/2b/b3/db5369e616fc0446a6de493977315c3c4d59e4f85cb117d98dc19c0c222b0d1ee2719bac7dd87b84f10b31321532e8843b7722fa56084ae0fb900b40fe03 @@ -0,0 +1 @@ +{"_id":"follow-redirects","_rev":"95-aa905ffcfe35fd26bdb4c57230445260","name":"follow-redirects","dist-tags":{"latest":"1.15.11"},"versions":{"0.0.1":{"name":"follow-redirects","version":"0.0.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"BSD","_id":"follow-redirects@0.0.1","maintainers":[{"name":"olalonde","email":"olalonde@gmail.com"}],"homepage":"","dist":{"shasum":"b0b9078dc855b13a7acfebcb099b9f98f2366772","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.0.1.tgz","integrity":"sha512-wNdWqzXDz/O7I4SH790v3A8g9uevFrBzsrvqigUsSWueLs/ZQGNNAHzzsnTdlD+n8ks1dQ63IBEW4NThEmYXrQ==","signatures":[{"sig":"MEUCIQChLBdTayhpfcFuwThP3yu0o18BaSlW+1WTFJSgcKo53AIgMhWtd9eKMOrwDtXbvObacs9NBLCKfwWsa26bEnI1jX8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"olalonde","email":"olalonde@gmail.com"},"repository":{"url":"git@github.com:olalonde/follow-redirects.git","type":"git"},"_npmVersion":"1.1.62","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"dependencies":{"underscore":""},"devDependencies":{"colors":""}},"0.0.2":{"name":"follow-redirects","version":"0.0.2","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"BSD","_id":"follow-redirects@0.0.2","maintainers":[{"name":"olalonde","email":"olalonde@gmail.com"}],"homepage":"","dist":{"shasum":"06c81345f422a3bfd93583bd0b6c0daa58cb54b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.0.2.tgz","integrity":"sha512-CYnZjjtuha2qJ71fhpmZpziSmw5bkFbNG+Bb4e382CiN9WFZDdFvmvfS5v8+S6P6HuURgu3ngtMei2ORr4q92A==","signatures":[{"sig":"MEUCIQCS3Jl/5KAljY2970pipHat/BO9gp/pIGK3I6GXpC+ibQIge/n61A2ngdcrFderVl3O9FvSR3QrmZeNy2uuDLxNwIE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"olalonde","email":"olalonde@gmail.com"},"repository":{"url":"git@github.com:olalonde/follow-redirects.git","type":"git"},"_npmVersion":"1.1.62","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"dependencies":{"underscore":""},"devDependencies":{"colors":""}},"0.0.3":{"name":"follow-redirects","version":"0.0.3","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"BSD","_id":"follow-redirects@0.0.3","maintainers":[{"name":"olalonde","email":"olalonde@gmail.com"}],"homepage":"","dist":{"shasum":"6ce67a24db1fe13f226c1171a72a7ef2b17b8f65","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.0.3.tgz","integrity":"sha512-ZyO6tx9xafGe5n4SdO2CN+3Gmm0ntAc8YRyRaaDT4eNbE0eTv7rjLKJb3iGTtVJ/SHhPPHXWGGY5h21nMxJnbw==","signatures":[{"sig":"MEUCIQDX0UbOBQaGYZPupNG87esib6PA7rnxxc2WISa+hwwjmwIgRYGgwcKr9wSEs1VPQwxqq6SomDCH0v6zulQkO6ydqZw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"olalonde","email":"olalonde@gmail.com"},"repository":{"url":"git@github.com:olalonde/follow-redirects.git","type":"git"},"_npmVersion":"1.1.62","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"dependencies":{"underscore":""},"devDependencies":{"colors":""}},"0.0.4":{"name":"follow-redirects","version":"0.0.4","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@0.0.4","maintainers":[{"name":"olalonde","email":"olalonde@gmail.com"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"dist":{"shasum":"78d2faec253da7bbd4bbb6733e05132a6ae9b483","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.0.4.tgz","integrity":"sha512-H2AMyUBnfYLN4J/nz3ZRq9Aj14gGfT7QzBlVZnjDtpcTETWLcACzCMdKuT48WvwQFQcDBKvb6JpXT8eXmrY8mQ==","signatures":[{"sig":"MEUCIBphvOLI7H/T6KN7nem68E3Bht19J/aYmysHzAopL01rAiEAtAp8H+yk6AlW1QK5u50Z6ukzKl4Wn/6771ybNe4lqac=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"78d2faec253da7bbd4bbb6733e05132a6ae9b483","gitHead":"0eb72aca9f61ffdf0b064b3582a4591756890853","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"olalonde","email":"olalonde@gmail.com"},"repository":{"url":"git@github.com:olalonde/follow-redirects.git","type":"git"},"_npmVersion":"1.4.28","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"dependencies":{"underscore":""},"devDependencies":{"colors":""}},"0.0.5":{"name":"follow-redirects","version":"0.0.5","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@0.0.5","maintainers":[{"name":"olalonde","email":"olalonde@gmail.com"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"dist":{"shasum":"c4d40dddfd8a9349e052c50c00222a5e393bae32","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.0.5.tgz","integrity":"sha512-cUHLp6/aQJoamdNwE2fpJxDgM4ZxLPOcJr0E6gdhP93ugR8QYmk0qqip5nZ1yaMIYHi82MQ0xn0JZ9ew2jh8Ug==","signatures":[{"sig":"MEUCIF+vJwcaIgfrBjn+K/VA7Ggogc4a4UcL9fx45ZAWVeDfAiEAireeh4TtigpzBjpEF7+PiEDfglCPMTCZafsuITNYSPw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c4d40dddfd8a9349e052c50c00222a5e393bae32","gitHead":"1dd1218dbbcbea595b00c107a7fc04aab17e900d","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"olalonde","email":"olalonde@gmail.com"},"repository":{"url":"git@github.com:olalonde/follow-redirects.git","type":"git"},"_npmVersion":"1.4.28","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"dependencies":{"debug":"^2.2.0","underscore":""},"devDependencies":{"colors":""}},"0.0.6":{"name":"follow-redirects","version":"0.0.6","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@0.0.6","maintainers":[{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"dist":{"shasum":"a3d57beaea728d96a5dbb6f1e790351d2ee18331","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.0.6.tgz","integrity":"sha512-VQPQihvee38CT6n1ouBZWNJpNX00u8uftahHog2nIst8YvRCH5IQdIX892xwST2iyZvpmS2l15bIGI7zcxGeHA==","signatures":[{"sig":"MEUCIA5bec0yTC5gms9TvLjbgQvr2yWq76nGgeCDI5ijsrPYAiEAzQCNqaKouMiAckKrLNSIPa8RAQNBWD5CeXW648ekRR8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"a3d57beaea728d96a5dbb6f1e790351d2ee18331","gitHead":"795bae039c7a756dbed9ce7c4a45cf2d2ed7dd83","scripts":{"lint":"jshint *.js test/*.js test/**/*.js","test":"npm run cover && npm run lint && npm run style","cover":"BLUEBIRD_DEBUG=1 istanbul cover ./node_modules/.bin/_mocha","debug":"BLUEBIRD_DEBUG=1 mocha","style":"jscs *.js && jscs test/*.js test/**/*.js --config=test/.jscsrc"},"_npmUser":{"name":"olalonde","email":"olalonde@gmail.com"},"repository":{"url":"git@github.com:olalonde/follow-redirects.git","type":"git"},"_npmVersion":"1.4.28","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"dependencies":{"debug":"^2.2.0"},"devDependencies":{"jscs":"^1.13.1","mocha":"^2.2.5","jshint":"^2.8.0","semver":"~4.3.6","express":"^4.13.0","bluebird":"^2.9.30","istanbul":"^0.3.17","coveralls":"^2.11.2","concat-stream":"^1.5.0"}},"0.0.7":{"name":"follow-redirects","version":"0.0.7","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@0.0.7","maintainers":[{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"james.talmage","email":"james@talmage.io"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"dist":{"shasum":"34b90bab2a911aa347571da90f22bd36ecd8a919","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.0.7.tgz","integrity":"sha512-RxpX808lAA4IZ2cNqzRedcsPfVuo2AJEL8mmGvGeN0KGLJWZf5fidmUkcB0DWUCrmLD+GAQ0J2WOBORw8BS/Uw==","signatures":[{"sig":"MEUCIEpqhozOgrkXZueGdL+qlONg/uKjfgwFoIIeBdrawYNLAiEAkMSOMi3I0eRYLw1vC+kJEhwKThYLdIVVPsSrQ53p+/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"34b90bab2a911aa347571da90f22bd36ecd8a919","gitHead":"5137f3958a179f0bf9310886edb77efd3b85a208","scripts":{"lint":"jshint *.js test/*.js test/**/*.js","test":"npm run cover && npm run lint && npm run style","cover":"BLUEBIRD_DEBUG=1 istanbul cover ./node_modules/.bin/_mocha","debug":"BLUEBIRD_DEBUG=1 mocha","style":"jscs *.js && jscs test/*.js test/**/*.js --config=test/.jscsrc"},"_npmUser":{"name":"james.talmage","email":"james@talmage.io"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"2.14.2","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"0.12.7","dependencies":{"debug":"^2.2.0","stream-consume":"^0.1.0"},"devDependencies":{"jscs":"^1.13.1","mocha":"^2.2.5","jshint":"^2.8.0","semver":"~4.3.6","express":"^4.13.0","bluebird":"^2.9.30","istanbul":"^0.3.17","coveralls":"^2.11.2","concat-stream":"^1.5.0"}},"0.1.0":{"name":"follow-redirects","version":"0.1.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@0.1.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"dist":{"shasum":"8333fbee65d2fa8585241ebb1372fc01e5b1f671","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.1.0.tgz","integrity":"sha512-9jwarxMc6BDDZC1zfU/fNt6Y8ERn5G8eHIVTTcX/skHwk7BiHW85M2FJTyL7Muqjzbx97mhuuZ6JuQQfMuRoFQ==","signatures":[{"sig":"MEUCIGFmbdhPO00ytLhLQzLrIqLniCKiBCQTku4rFifcp/xyAiEA6c4NvyWVR1IT4qPHQLhq/VOssJEcTllzZ5xVD6Uv8nQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"8333fbee65d2fa8585241ebb1372fc01e5b1f671","gitHead":"20537d21a1e4eb9371a0c2d74cff5a041ee2e22a","scripts":{"lint":"jshint *.js test/*.js test/**/*.js","test":"npm run cover && npm run lint && npm run style","cover":"BLUEBIRD_DEBUG=1 istanbul cover ./node_modules/.bin/_mocha","debug":"BLUEBIRD_DEBUG=1 mocha","style":"jscs *.js && jscs test/*.js test/**/*.js --config=test/.jscsrc"},"_npmUser":{"name":"jamestalmage","email":"james@talmage.io"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.8.2","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"5.9.0","dependencies":{"debug":"^2.2.0","stream-consume":"^0.1.0"},"devDependencies":{"jscs":"^1.13.1","mocha":"^2.2.5","jshint":"^2.8.0","semver":"~4.3.6","express":"^4.13.0","bluebird":"^2.9.30","istanbul":"^0.3.17","coveralls":"^2.11.2","concat-stream":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-0.1.0.tgz_1460316696773_0.05581280658952892","host":"packages-12-west.internal.npmjs.com"}},"0.2.0":{"name":"follow-redirects","version":"0.2.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@0.2.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"e0229d7a388bb5ff7b29f44fc1e1b62e921272df","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.2.0.tgz","integrity":"sha512-X/Z3zCjVbpRPEttA1+m3VEmaYOsRUnuUkwOlGvUQ+Cq5RQbwNuoQA+og4X0nK+bsG4ivJGMT/kRAG4Gi5fWBwQ==","signatures":[{"sig":"MEUCIQD9zaUERFdcD2/p6i80Glgnv1cZ2WFTYoT864TgfsT5AAIgdcmnCKkfX+qBamxVQdln9PuNJuU9Sogt8kJgWFRzkps=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"e0229d7a388bb5ff7b29f44fc1e1b62e921272df","gitHead":"9a13ff409ce5b05463ee0785cb4c048c21800561","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"jamestalmage","email":"james@talmage.io"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.8.6","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"5.10.1","dependencies":{"debug":"^2.2.0","stream-consume":"^0.1.0"},"devDependencies":{"xo":"^0.15.1","nyc":"^6.4.4","mocha":"^2.2.5","semver":"~5.1.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.2","concat-stream":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-0.2.0.tgz_1465250402713_0.451352697564289","host":"packages-12-west.internal.npmjs.com"}},"0.3.0":{"name":"follow-redirects","version":"0.3.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@0.3.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"6d9935db28386943b19730cbc0ae1a3b72ef0bc8","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-0.3.0.tgz","integrity":"sha512-kYj19j9SF1YWjzO04eaBB5Ur3Tyo1IspbK3XmYvza816nbkEQ3kfmrcGfcQyf+2FVjmhZv7+b00T9tagLNgVrw==","signatures":[{"sig":"MEUCIQCyofWxnl8bJKirJyAiuZXa3V8mS2PQ7qOoevL97zka9gIgQof+T9I69EpGMhT/PCFKn3x1pBSa43XHz8fQtByPitc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"6d9935db28386943b19730cbc0ae1a3b72ef0bc8","gitHead":"3a3f8b040b32098606630278176e2dc54cf29723","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.10.3","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"debug":"^2.2.0"},"devDependencies":{"xo":"^0.17.0","nyc":"^8.3.1","mocha":"^3.1.2","semver":"^5.3.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.2","concat-stream":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-0.3.0.tgz_1476978547120_0.37060856400057673","host":"packages-18-east.internal.npmjs.com"}},"1.0.0":{"name":"follow-redirects","version":"1.0.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.0.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"8e34298cbd2e176f254effec75a1c78cc849fd37","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.0.0.tgz","integrity":"sha512-7s+wBk4z5xTwVJuozRBAyRofWKjD3uG2CUjZfZTrw9f+f+z8ZSxOjAqfIDLtc0Hnz+wGK2Y8qd93nGGjXBYKsQ==","signatures":[{"sig":"MEQCIEdy9oOzxLj/ccjuCPvn0MhVW1viRjndWKm6l7oHhLWJAiBgY7B2xsLl7+N1zHO8rz4As/0CNgNpU75XkDxHeWXRAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"8e34298cbd2e176f254effec75a1c78cc849fd37","gitHead":"4010b44f4715c89dd75037f66458b93fd59599a1","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.10.3","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"debug":"^2.2.0"},"devDependencies":{"xo":"^0.17.0","nyc":"^8.3.1","mocha":"^3.1.2","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.2","concat-stream":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.0.0.tgz_1477238992406_0.5941755524836481","host":"packages-12-west.internal.npmjs.com"}},"1.1.0":{"name":"follow-redirects","version":"1.1.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.1.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"f0a07e20b96396f096873f16ea2b9638a79e7b0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.1.0.tgz","integrity":"sha512-d+YQYNGVu+1qTu9jFjv+x2OB2+AA7czt+72u9CvTaygPFYydpBpVpX2j6C/aP1huFGJRo/qNWBlNLIDFQ/zIBg==","signatures":[{"sig":"MEUCIF0q3xWD99Sk1hSUVRkxRxAa368z1dlkr/IUEFn6fblOAiEA4hPWaEP0Oh9cGMjwjAj0hx+whU4vJ9Jchsj0xJteq+Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"f0a07e20b96396f096873f16ea2b9638a79e7b0c","gitHead":"6626d432f0e6a9919dab492bce484e3d9f4657e4","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.10.3","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"debug":"^2.2.0"},"devDependencies":{"xo":"^0.17.0","nyc":"^8.3.1","mocha":"^3.1.2","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.2","concat-stream":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.1.0.tgz_1478450677901_0.6304203481413424","host":"packages-18-east.internal.npmjs.com"}},"1.2.0":{"name":"follow-redirects","version":"1.2.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.2.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"e1746cbf9c9c1d5fbff07de315d0c8730ad68172","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.2.0.tgz","integrity":"sha512-GVzB3S8JBtO9br+nUoJV75DIvq0mjsQFWhDRUe1XD7OdurH+co1qn5eG72t6shhUgsH3cNUGyq58uds9HTio9g==","signatures":[{"sig":"MEYCIQD9NDfNz4rY2IAAbNQuKbwV8Wj4pxbLXgO1J7llGAwt5AIhAOY5FbIVeExAgDY+eTpmxsqDM9ZK36hD4R6jkcVfJZWG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"e1746cbf9c9c1d5fbff07de315d0c8730ad68172","gitHead":"7dd0cb2a92cf04c8e95432c341a3ec881abeff41","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.10.3","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"debug":"^2.2.0"},"devDependencies":{"xo":"^0.17.0","nyc":"^8.3.1","mocha":"^3.1.2","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.2","concat-stream":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.2.0.tgz_1481147454200_0.2246841248124838","host":"packages-12-west.internal.npmjs.com"}},"1.2.1":{"name":"follow-redirects","version":"1.2.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.2.1","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"796c716970df4fb0096165393545040f61b00f59","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.2.1.tgz","integrity":"sha512-TeV/6l6vi5a8IfvtgEaBe8YiogCVAS4paZXSTchjIpIQmPtU6NhLX6jgSMgMIjkzra7do2TOOlHDKM6zKQlxGw==","signatures":[{"sig":"MEYCIQDD7cuuwk29GbzU0BaHA2/hJjTKUHcSsgVNrwb71YkAWwIhAPaVLQB7+ga8izHMWUi4FlkS2EjcJkq3fnxrcQS5ApZS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"796c716970df4fb0096165393545040f61b00f59","gitHead":"a3cca068fbc3ea7377f8aaf658982f997c1c6dd3","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.10.3","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"debug":"^2.4.5"},"devDependencies":{"xo":"^0.17.1","nyc":"^10.0.0","mocha":"^3.2.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.15","concat-stream":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.2.1.tgz_1482065567827_0.582136373501271","host":"packages-18-east.internal.npmjs.com"}},"1.2.2":{"name":"follow-redirects","version":"1.2.2","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.2.2","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"45e4248c741128874f4a4900fd7e14f644b0bc40","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.2.2.tgz","integrity":"sha512-rtaimWqzNMpH2N7YhuKuiC6YV7SVkYkEma8UpX1cU8iBjjnyppeW1WeSJVrCj+hYR/ca5asat2yDn7iRUyLJfA==","signatures":[{"sig":"MEUCIFbMztar3+0+RfB//0RkN2p7bx/G1+kQofC361QRSTZNAiEAutwK20QpsOz8Q7waMzb1fwPfi83NUhI4mBEOu3+2LjY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"45e4248c741128874f4a4900fd7e14f644b0bc40","gitHead":"f6e923e03ff734319bb0dbbfe50112ed4518aa7a","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.10.3","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"debug":"^2.4.5"},"devDependencies":{"xo":"^0.17.1","nyc":"^10.0.0","mocha":"^3.2.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.15","concat-stream":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.2.2.tgz_1489096432046_0.3155715446919203","host":"packages-12-west.internal.npmjs.com"}},"1.2.3":{"name":"follow-redirects","version":"1.2.3","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.2.3","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"01abaeca85e3609837d9fcda3167a7e42fdaca21","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.2.3.tgz","integrity":"sha512-JbGgs8HPdhc7oDy/UunqNoJumOEbHvuSmmdbwtForJYcjUxU6wEKaCO2BvfDH30kPFOEEVotnQZ/1z7sQ1olnw==","signatures":[{"sig":"MEYCIQDaSA9MvlFRlP81RHnWWPtKjuWha4O1G8k9o21ydh6yNgIhAM2xokPukJasiS7fNng5nK1OE+LwGUTvgCPkDVqvk1or","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"01abaeca85e3609837d9fcda3167a7e42fdaca21","gitHead":"ad35f4c9ab0c3fbf23c8486ba5e241d08d6b39b4","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"3.10.3","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"6.7.0","dependencies":{"debug":"^2.4.5"},"devDependencies":{"xo":"^0.17.1","nyc":"^10.0.0","mocha":"^3.2.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.15","concat-stream":"^1.5.2"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.2.3.tgz_1489164681760_0.5944589097052813","host":"packages-18-east.internal.npmjs.com"}},"1.2.4":{"name":"follow-redirects","version":"1.2.4","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.2.4","maintainers":[{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"355e8f4d16876b43f577b0d5ce2668b9723214ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.2.4.tgz","integrity":"sha512-Suw6KewLV2hReSyEOeql+UUkBVyiBm3ok1VPrVFRZnQInWpdoZbbiG5i8aJVSjTr0yQ4Ava0Sh6/joCg1Brdqw==","signatures":[{"sig":"MEUCIQDBe0o7xV0JTrcsQS8EquMI/kHd/POqVZxIojB0XyrVDgIgZE9GWaynmZLKiUio2khi9V5ywGZy8gjfwenO3teI+Bw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"c3770de92eb2898ccc638f269a1046919329bd81","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"5.0.3","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"8.0.0","dependencies":{"debug":"^2.4.5"},"devDependencies":{"xo":"^0.17.1","nyc":"^10.0.0","mocha":"^3.2.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.15","concat-stream":"^1.5.2"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.2.4.tgz_1498073966897_0.48846928821876645","host":"s3://npm-registry-packages"}},"1.2.5":{"name":"follow-redirects","version":"1.2.5","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.2.5","maintainers":[{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"ffd3e14cbdd5eaa72f61b6368c1f68516c2a26cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.2.5.tgz","integrity":"sha512-lMhwQTryFbG+wYsAIEKC1Kf5IGDlVNnONRogIBllh7LLoV7pNIxW0z9fhjRar9NBql+hd2Y49KboVVNxf6GEfg==","signatures":[{"sig":"MEUCIQDMrzGZ/FLd7VJ4B0omvgyTxaux+cbDZUTmercj+7GbUQIgFYxEPdMCT5eAJXrAP2qZE6QzIzAxtgBI7HnSpCUnPHg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"be81edd4dd413bd8f7f12344809b982df888e061","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"5.4.2","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"8.4.0","dependencies":{"debug":"^2.6.9"},"devDependencies":{"xo":"^0.17.1","nyc":"^10.0.0","mocha":"^3.2.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^2.11.15","concat-stream":"^1.5.2"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.2.5.tgz_1507223053004_0.14782698079943657","host":"s3://npm-registry-packages"}},"1.2.6":{"name":"follow-redirects","version":"1.2.6","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.2.6","maintainers":[{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"xo":{"envs":["mocha"]},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"4dcdc7e4ab3dd6765a97ff89c3b4c258117c79bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.2.6.tgz","integrity":"sha512-FrMqZ/FONtHnbqO651UPpfRUVukIEwJhXMfdr/JWAmrDbeYBu773b1J6gdWDyRIj4hvvzQEHoEOTrdR8o6KLYA==","signatures":[{"sig":"MEYCIQCJI2r1EhbDOgvM5I2oGHFXXHdQxA9lIw6oXY6YXuD1RgIhAMj03MBNcgJBw9UxZ3YJadsP0vfffgvDlra3RXl+4bta","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"99bd703a765992a260f07e1a2721005fa8b7501d","scripts":{"test":"xo && BLUEBIRD_DEBUG=1 nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"5.4.2","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"8.8.1","dependencies":{"debug":"^3.1.0"},"devDependencies":{"xo":"^0.17.1","nyc":"^11.3.0","mocha":"^4.0.1","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^3.0.0","concat-stream":"^1.5.2"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.2.6.tgz_1511346901294_0.8867264720611274","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"follow-redirects","version":"1.3.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.3.0","maintainers":[{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"f684871fc116d2e329fda55ef67687f4fabc905c","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.3.0.tgz","integrity":"sha512-Tjb30GUF38EixftdTeXprhgYB7m9FVFNGyGF/rrXDJR5DcuXOG8AHPRDzKxuunw1iPoBFWDI80GKNYPRHzHdbQ==","signatures":[{"sig":"MEYCIQDxlwAiDO/HktjeTke8/nBXGqJATlfxZm1jTCXhFGHAxAIhAPiYlfD5LPVjSUVxVeyi9C58WWN56Zk+JSwu7L02fw2y","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","files":["index.js","create.js","http.js","https.js"],"_shasum":"f684871fc116d2e329fda55ef67687f4fabc905c","engines":{"node":">=4.0"},"gitHead":"dc709643b367ba1fd8039a83431f844ea8f03b64","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"2.15.11","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"4.8.7","dependencies":{"debug":"^3.1.0"},"devDependencies":{"nyc":"^11.3.0","mocha":"^4.0.1","eslint":"^4.14.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^3.0.0","concat-stream":"^1.5.2"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.3.0.tgz_1515178643188_0.43387531186454","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"follow-redirects","version":"1.4.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.4.0","maintainers":[{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"a146a3a5d402201c7a3e6128643f0e336d212b10","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.4.0.tgz","integrity":"sha512-SLUmsiaGeQa2qgJJzJgHpQ6lARP3uyVr0SkMryJmoE86XvUeM7RkYD5FT0rNyjCV5zHlNUpcp3l/6oUkqMEOqg==","signatures":[{"sig":"MEQCIERunHCTFH1eMflD5Sud7UKqRlSly6gECLBjdOT4StPAAiAQw+IQJqKTZMLEIlkPC3AsKLSupY40faMFX5AOxvV5Uw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"8faff2e73cf2a760f1e9d87bc193209042ac5364","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"5.6.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"8.9.4","dependencies":{"debug":"^3.1.0"},"devDependencies":{"nyc":"^11.3.0","mocha":"^4.0.1","eslint":"^4.14.0","express":"^4.13.0","bluebird":"^3.4.0","coveralls":"^3.0.0","concat-stream":"^1.5.2"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.4.0.tgz_1516571750943_0.4768338876310736","host":"s3://npm-registry-packages"}},"1.4.1":{"name":"follow-redirects","version":"1.4.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.4.1","maintainers":[{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"d8120f4518190f55aac65bb6fc7b85fcd666d6aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.4.1.tgz","integrity":"sha512-uxYePVPogtya1ktGnAAXOacnbIuRMB4dkvqeNz2qTtTQsuzSfbDolV+wMMKxAmCx0bLgAKLbBOkjItMbbkR1vg==","signatures":[{"sig":"MEUCIFtbaUYOtW2V6P+uu46cfsRf3Ci+O3mjfQstQAPNLVKIAiEAq5EBCtIRGCqZwlewETYAraXXoYJyq+mWPzlZlN8o1Zw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"1b6340f83ad5596a0a38c16a7113692bd90301f2","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"5.6.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"8.9.4","dependencies":{"debug":"^3.1.0"},"devDependencies":{"nyc":"^11.4.1","mocha":"^5.0.0","eslint":"^4.16.0","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects-1.4.1.tgz_1516754560314_0.16931934002786875","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"follow-redirects","version":"1.5.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"234f49cf770b7f35b40e790f636ceba0c3a0ab77","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.0.tgz","fileCount":6,"integrity":"sha512-fdrt472/9qQ6Kgjvb935ig6vJCuofpBUD14f9Vb+SLlm7xIe4Qva5gey8EKtv8lp7ahE1wilg3xL1znpVGtZIA==","signatures":[{"sig":"MEUCIQCxizWDNnm5337cYvGMlGHXn71RTmauIzv+Pkjg41kcHwIgNeYV7ZloV9kvlVnaho+lxkmoBCQtxuLpj58bhIbqC20=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18729,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAE4ZCRA9TVsSAnZWagAAhUEP/R+3IwcS8XgjikEcHeTF\nXGCAZ633ZHqPa3ZsXeCSQ5HtFfOef8nx8jIKsrOzNVTHZYMfiV4LqAZku8+Q\nIJD1sL395TeB9ysOg8iFINaLOC4VtChUcq9mwgwSIlacsKt6RoJ7Z9eZBjCJ\n2/mdTYxr3nXKBqrsg9lSkvkfeR8ysIHSgI3E6UTCVa6Q3E2c9vZqGbYSbTr0\nKTvf+ZWGfeWvc5xGj0epAISiJEhtdp9d+ATRBsJH8LL+gpGtwsM/PDp33TNU\nbAbNfBU73Brhu2XUtOABaKQYCWoDnb2DsuOphFnfZ9MLg0ZfmopR1QohaSPV\no0BBAhmnE73Ksp1xhk5JctTmLTH+zO163eUE9MdZ23i64Rhvk0ozZ4SRy6r6\n6d2Y0lt3E/A88iXTJZIMtlODgWm4M6dXneNJV+0e4SKDxmiJvzCHbMjgUVhj\n3eUMVPJ069yUHYa+vWR6MIeGyrCz6v21ip0Et/uvpql8kmYPLFTzR98SFDc/\n08DUTLBZIHFuBQrQPWfNUzaMLU5ziaE8x1d3HBwKjo/Gz8FV7s1i/3cXMF3u\nP+rBj0aALpynKEqligANpN5R01zcAp1qReyHsMvGjMuwl3KDpX8X8HIeciXi\nYCzGOWIGbC47080rnsJ4ct2hFifL8Ee3pmfYHet+Kn1urcFH91Lyb/oOxj9m\nJ/HX\r\n=oo9R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"23f66feabb9eb22e3b251251b5935725fb1845bf","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.0.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.0.0","dependencies":{"debug":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.0_1526746647796_0.20553048579519562","host":"s3://npm-registry-packages"}},"1.5.1":{"name":"follow-redirects","version":"1.5.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.1","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"67a8f14f5a1f67f962c2c46469c79eaec0a90291","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.1.tgz","fileCount":6,"integrity":"sha512-v9GI1hpaqq1ZZR6pBD1+kI7O24PhDvNGNodjS3MdcEqyrahCp8zbtpv+2B/krUnSmUH80lbAS7MrdeK5IylgKg==","signatures":[{"sig":"MEUCIQCLoTOR9llDtJTLzmU9vKFAcpgp3GnnILsFgkfo298KeQIgVSQLQQL3P4NoDhXnweg3mHm2wD4CNKS3/xgIJ3rs2v4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18825,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPoNFCRA9TVsSAnZWagAAg+4P/0/cIO3/7dHL/bUgTB8X\nhJH/teo2Iy5mv1mtqE9OEltWx2JsrEUPC5ZVZDCCc8ufKsHvobs/84mH7cS/\ndCHG9xDIFQWMifr2MEDEudI0Zh+7z+0jWpVi3siXWJ4Ka/rY88jFV9gjKRH0\nyLL8pc50e6ibuAihzAcDqgu2TxRMcB+9CrG2rBOIIMC7ln1DIlKDhPBjtxeZ\n5dSOHgrk4SgR9nIMWXjXbb+vp8n72VHg07ppqXofLOZopqHvfuMXZdk8+g/b\ntHPVd73uyReXGjdnmZNH+NXptKTGEArL3elRC86L6no8jdtco7aFDG4EOGOl\npDgShyy4KWkl5JNglsHEW0J2C09TdyE5vYM3q0PBo6SC5TczuJsxTbeCM//4\necLAFGrrw0ce8D/WyMAp7MmcYmcu5UtjcrooxJ7xPNKcxMKKzR+t2s3XnrZ2\n0+asUDIotwKU7alW4k3FyeDDEI0gYtZhRXU4auR5nkCZJEashKxN38kDeJXa\nnBvejV/qcyX5zkVg7ZnJ1V9QAkeR9lXlxYSM2v3jwDuCZk0qkQ+Dj21VAyJZ\nUp5xJ1/VPcMPeATGFrOsEkruutDhriV/rYG1cGyyBg1ty3iG0MgELM9BzqAB\n6yT8Iq/1GV4f4drWpyAZbj1cTocw2K/PQ6+t2Ojt6iywQI45JEQCski3qznU\nHqDK\r\n=411h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"6a74f5480e2bc0f93d03577865e371a4817ceae2","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.1.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.0.0","dependencies":{"debug":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.1_1530823492901_0.29396077553661915","host":"s3://npm-registry-packages"}},"1.5.2":{"name":"follow-redirects","version":"1.5.2","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.2","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"5a9d80e0165957e5ef0c1210678fc5c4acb9fb03","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.2.tgz","fileCount":6,"integrity":"sha512-kssLorP/9acIdpQ2udQVTiCS5LQmdEz9mvdIfDcl1gYX2tPKFADHSyFdvJS040XdFsPzemWtgI3q8mFVCxtX8A==","signatures":[{"sig":"MEUCIFtyT8iS0yOyTc/EmxY/5yh1cB6Y7suwvtNEMi9auT9HAiEAlE7u2rX7M1Y0+4pQoRhdDOVLdzct8AUxDISCmelMkbs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19118,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYf1SCRA9TVsSAnZWagAAB1kP/ijEe8beBvmA/Pu4iq7K\n9ZsTHYQ5enR+xtzFpcdL7OepgE10ztRak9YTWx9nzQmQkqbBlUpTWSp4x4IE\nKDGGzat1qPSn5nJSgonotfNyuK9fVlE0B58CHRdvV9whb+9X0brs8DuKQcPb\nRQyuszljkz9UVnBhKmGKwLQ9WiFTlgywiMfY0yArqyVtSkyaOlwSczUZUA0+\nMhuAUU2cq8MUrYFDMTurV2258jRLFrkojiMYrwQlrA7Rsssen5R6lKGZURH3\nvePD8L4ORf6HAbkJUckf+gaag1HPKstz27PsoXp2nRKF+Lr7UFxGUMNlAxIP\ntZTAdrn/+026wDSf1MZHOlIx5L87yQfrUz93QmIkF1eqrgnOO1uc2Vfp+Fi5\nGlpgZschXo22v/fXjfM1+qHdlSbc92ZjUBKhu7qWUV00tFhqxkExhFj7i5dr\nzcb8EHMqfHlfrwhCIG3TBjVJBOwpl6SvTE5o8So7AutpJU4dfg4Dp9AGC+mh\n3sp3hMTtwpK3XNAIGHP+/tPn1S0jXCbiitjvsEv+S/kcx0QakSx09YkUkA8Z\nfegWmqthuT8w3N99VVY2H9kK3Ci6TRAzqUPqGR8Q6jDRp5GiOQtqEw1lTxTv\nvT+lpOrpS7ND4lmmkHpILBzMzBrGc7xt5pWVrn/IEQ7cN3TCFgiChJybIJh9\nedJE\r\n=PcuT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"4d328f0ef3e07575b7e5b950f9dcc521906104b2","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.2.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.0.0","dependencies":{"debug":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.2_1533148497739_0.4948117273541661","host":"s3://npm-registry-packages"}},"1.5.3":{"name":"follow-redirects","version":"1.5.3","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.3","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"ba150caf15e2f0b30c789993be9b912db553855b","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.3.tgz","fileCount":6,"integrity":"sha512-Q19GwKpz/zVkwVzbEkICtentX0NKcCix7g1l3vNewCLZ6KwGAU7bdJEQEZb9NN0D9kapySzQPMrOuj6rvrLXnQ==","signatures":[{"sig":"MEUCIQCvxrh1hX2tLRWNiinJKzcRsfKv927BSOw9EfLmdXdoMwIgXQO0N3tPmidGcnwvefz8igWRc5VrvU4iSLfzpmAl4vs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19146,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcWhVCRA9TVsSAnZWagAAKNsP/iXcKhxuZgTu7/e1Eozm\nyhhM5uZzrEsiGhv2e8K9ZRjpldwvKJ6kUMn+MMJx7ZtioK378IBSereCBGuu\nHv04XJC42RZjEeBqu8CkP1NBM4wQgap9sm8cmTol1zzx2G7sNY//ekfbJ5mz\n4c8eKqC3De3LmGv/hdC9sdWWDyKET/52nhyGcbQDYAlT9dSpmGOHI8m9MkZJ\nhGUjip1vVqBxndrc47b7AOvcTS+fcyd2yUskxK8wq0nDfT6vJ38pcXOjIj7N\n62etsAg7KE/gfEED+vqU5MCBh/D4NuM4JEJggdVnUUo+gEkyh3R0ii/xvtju\nujU3CPY7sWL0uTIv9I5nkUQijnxwau45qsxGINXuvTiCFc7c9ILS/8DRoW0C\n34Ck2YYhMi9EkDvh60A4CAxvWyOWcIM3vpQchjd6uM7kCtF/4MeWqbDhB9Ok\nPbf3uXNC1t2CbNxPaQAZ/u0DpUXzU/eUKygcxh7i6tK0L0XN4sTTF30fJv8B\nY19O6/KJDqRqqrJYUt7qYLD006THwx3/lnBzt6pdsFNmZT3CgaGe/W2+fCDO\nE5qGr4mKlvyTUUztXbsLXXSn0j1EsFrVZoe4UiocAt3vwkBMfAU040x77xPd\nZVmC6c+txQXcUnx71cnKamp/dEri8Bm9M/iSj9RcUYm4nOWxK0Mik7zD5qMN\nE2kz\r\n=v4+N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"20c5169d1a6dc76ab78c69ccd78d2d884cd16a27","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.2.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.8.0","dependencies":{"debug":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.3_1534158932609_0.26887812892104646","host":"s3://npm-registry-packages"}},"1.5.4":{"name":"follow-redirects","version":"1.5.4","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.4","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"86d1bb946f24cb988d660aaa2ca2478c0772ead1","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.4.tgz","fileCount":6,"integrity":"sha512-qGsq5ExgV2z6YTV2mkqemjo6sy6BaXWwKlNYSmpvBONGdFDcpML0ieQ7iQDDlu82JrMTmft4zrpSFfS8PIPoHA==","signatures":[{"sig":"MEQCIDtF3RbF3VWEveK7Nz3kkx+Nv7pn56GpVmN+mut0qettAiBq4+Wt721eY+dUs2esOHiCIt/6lDL9Y+L7XeUHfkK5ZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbcYUPCRA9TVsSAnZWagAAoPMP/ROCKpdJmF1Ml1wQloU1\n/97jDpo+EpL8l6wRZjTbFaGbNT5Wn5dK1wbnhEoWt8lTc19kvCOAWktSf2Hx\njel+Ci1jOfDxavFrOaYadQs8iHLL0jFVeXzKh62V2ocme3474LIhLqIgD4YQ\nJ0qtAIdlhe3AQQf0lRUjDITHjYixd2OUUIAOpk51gt975SRQam37tIUNAC3x\nZkaKm7aiiCpzzS5fR/cI2+Cx7kboExrFqmi7GUY+aPtmpWn9rTdD2kKpFFUU\ng1uSUTza34ytYltu9TvNXiHOH3yFpl1eG/o6XJikf/d3ds0jwr9lV6glvel/\nHqSp1Nlu06YjlddML++i/osnNkPzdHhnvvWQKtMI9ls+bXcYHWpEApO49Wnp\nasCtK4t0HWyNJJnGri8+gr4PVIU3uykAyM1JKAFl4b1qnPkg1KOsxRRbx5VA\nwBLtoN/CZukQGga5co01/OiENJssfp6NS0yUMYMni0Myi5k99B6JSZUaG8fi\n4VtrLR657NnZ/Fcu1D5csqR0fjFFrWaxZT32w6shra58VqWtubgEWnXAdy/R\nwjIJON5aETNTciEAmGzqRxz1bNHMjUCpeNIx+UXbnhAEVvm23GkjRrsRZ0FY\nD0XeX8a0XkxJX+tgfF7X39GqKf2XzRvTgFYejPM2khAL7nWJuMkOtprIc9YQ\nxYFu\r\n=0WBo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"6dc19f9f17e087c979c44d91215c445dd34d8a20","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.3.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.0.0","dependencies":{"debug":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.4_1534166286574_0.17784307842570124","host":"s3://npm-registry-packages"}},"1.5.5":{"name":"follow-redirects","version":"1.5.5","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.5","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"3c143ca599a2e22e62876687d68b23d55bad788b","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.5.tgz","fileCount":6,"integrity":"sha512-GHjtHDlY/ehslqv0Gr5N0PUJppgg/q0rOBvX0na1s7y1A3LWxPqCYU76s3Z1bM4+UZB4QF0usaXLT5wFpof5PA==","signatures":[{"sig":"MEQCICpUbKRh6Wc4SHJ8TbKQt/tZsZ5yH+K1XjudglZz0O6FAiAzHfWAZpYCjLr3Oc6fs5NV8cZ0xHt92U+ylgUynulzOA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19125,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbccemCRA9TVsSAnZWagAAtCEP/A4f3eHwGBSRl6Th3xx1\nwKeTmf6qczJkIWGE7iw9L3DE1B6sGW8ttCn6Qj/AQVWGDcWtYP32az2Kso4z\neJ5Jckbx8hHXVtJLEEHMJk7kymPHXHQenhBoe6u5cpdqcgDzILcHWFQ9mGcl\nVVMqMEzc7uuVvY6akf4vxmLAn+lOGqwlQz/cql8jpOVP0CuIFhFF//VRS0vL\nv3yxF+1CjKv4DX2zapo6H/KmbMMPs//7ofNbg87qR8DGT3BCY9XO6sU8Ze46\nn8/jDcYLmF6vjzMjJwP7qmeoX5PpK/CmGy8KJt+EEfFNi3KF63FGteUBJ7NP\nw8fquRpeDTHTOQRnTDCyvYM4kKqlZK1IrqoFzo5DNh6RBUWLNR/Abie/Vbke\nqvq5njsSghqLvJoTwgvMyxj+Bh54m5FQWw4xvh93uF8SsmFOGukvut21BbuC\nGD5QAWghlv2CcKk3i2UE86z1iCnVuWCTNwmhJHIoX98XKNnDGRbB/iAETe7Q\nYsCoZOLRgCrM9ZR892A5OHSGo8w0PqI7cVPYSGsVALUlc39CVCJXDONJVVvp\nm4Hjp+SEWpwXAA03JO8RLMTnzFs/pyRKx44PrUcCMBziNO495bc68qpGoiAs\npt9LainlBMUzdrqxk9ELIWgeR1ew96AddAcBV0e3tWGlSBq8JPO/mgeAAbhN\n6PVf\r\n=A7dn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"de80dec9d8e7a1d99a242e357e653039b96bae9e","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.2.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.8.0","dependencies":{"debug":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.5_1534183334213_0.1548457281029405","host":"s3://npm-registry-packages"}},"1.5.6":{"name":"follow-redirects","version":"1.5.6","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.6","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"44eb4fe1981dff25e2bd86b7d4033abcdb81e965","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.6.tgz","fileCount":6,"integrity":"sha512-xay/eYZGgdpb3rpugZj1HunNaPcqc6fud/RW7LNEQntvKzuRO4DDLL+MnJIbTHh6t3Kda3v2RvhY2doxUddnig==","signatures":[{"sig":"MEUCIQD3UXTSTXjntcgnV6uyxiWxG4WtIUwvW7GbOja5nmU5RAIgLqqsgF3LThS5FTIUOPj0eYIajTgw6HcObEKqflaR7GQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbe26UCRA9TVsSAnZWagAA/OgQAITs7BjctCy1nPMbBS/a\nekq3MPD9/qd5I7q34MIC7x1ryS1VJRhB5bcUew7xham6tzgX5kb4kzSs7S0T\nOCnydQUxmkHqJ2ArVek0GL1BoAcv1aukzGBUsA0DfM8glWDezF0l2ovBGsSa\nd8VcoxsU3Ez4mxY57bWzJWo25JxhfHsEByFv0Q6NLrRmetA6onzTvUyqmRQw\nhG07wzvjPWTSMEMdQM9OPAYd6Kj3U/AoPw8mnF5gurBCZx+raoC3knbRzW7o\nUzRjyo5x+nTLIK/5VR2UuZACaD4KxZLP+K0x94vZu/pwkQcsqJ0vNHQfTsdX\nu7BweUZrG0tPqtyw6JIBhW7CCxs7GoUlNiBnCP/ssrZEOlVuFCAKPyzQ1+sf\nd93p9eHBxTAd05b59uKqWrWTCIRSwoEt6C3EXKdkfB+LNyVahwsCx3jL+wMN\nMnHtdQ8K0ypa/6AsopMEYNgFNbgYdiknkCtVQW52B+uG71Ej+PTpqJ5e/J8R\nOP0xUoiczr4fP4LxHSJmP4ZmQexSnkv9dmkoMk7dGyWl/RJWT9KfAfGqXNnV\nq0swteE4yEy6LSV64y6thouq5UTSdGboTNxuP1OyFA/8RJDwCmC2zUG5+T7A\nvytO94UmDI15jAT76mppeeTAl0hzOq8LOLJOWk/NZ8e5orhVJA5RVoJyBXnc\nktQI\r\n=u2AQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"7d4a56aa9d33dc91895f75ada95d725b6ab98083","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.4.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.8.0","dependencies":{"debug":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.6_1534815892063_0.5635425139833941","host":"s3://npm-registry-packages"}},"1.5.7":{"name":"follow-redirects","version":"1.5.7","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.7","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"a39e4804dacb90202bca76a9e2ac10433ca6a69a","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.7.tgz","fileCount":6,"integrity":"sha512-NONJVIFiX7Z8k2WxfqBjtwqMifx7X42ORLFrOZ2LTKGj71G3C0kfdyTqGqr8fx5zSX6Foo/D95dgGWbPUiwnew==","signatures":[{"sig":"MEQCIGPPynTilw6nBu9EhJs7Cq7ulmODYKsGMV2/D1gh9YzOAiBhTuc3R5/x/zwfl1jVR3Cjdl7GEBYSB0QbujlQMCPmLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19548,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbfaVBCRA9TVsSAnZWagAAFGwP+QBVZLosWW0bEwyhgXka\n64JvK0X82Gz218ZTzxYzkXPVYtoCZm+gLAppdaAKS+xemhvw7UFYoYSopVb4\nLF4ZL7JCTz7pyn1sDuWHnqfd/xNqUPYfHF0ylE03tjEfSJREM/9q2tnt9ruJ\nfE1hsFa3GGuUNsjbntMwhJ+o/3kiXr6dZqTStsOg9W2oWd/vzP5cxWCX3RxK\nSVISYcSZrVu8e2vYBhtedEcHjIC2PVUufEmHrcOQ8DPvpliOT/L4HQbXwrfA\nQx6ElABUSyD/U4JvV5799sdV/JTxJ1HKMTqKNqeeO0j3D8HeAB95ykqI1zwD\nUocEz4mSPNDIiKYr1wcP6B0rs7i/pqbSj8v9mlu3385ziMV2sVJJ7zfJj0Q5\ncUE59dbDusFxe6QSaliPbfq3kjwgLiiFI3fVTEXDnwZJ3y9gDgripyHpx9St\n9CrkNTe/vT90tnXb3Ak8C+exNC/yZcfFd1rXz29Akk6uRHQQR4536bEL/kb9\nQ00ozRuZWJDXev8PZRnO0R/PLR+NP4+ZxH4l3nkF+RVtJXOzn9D7IMw0MV1Y\nOoQwyxDdokTbgvNSlnEfJa3jWxJ0aYrJTnCnnIF9dyUpvizFNGFROifuImgH\n6K7dxHQtH4B//2EvWghOB51u66FS7UglRTRArpJ16h9CrTETx+2I7Y3q8yNK\nhY3M\r\n=G3OF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","files":["index.js","create.js","http.js","https.js"],"engines":{"node":">=4.0"},"gitHead":"7fd6bf3a56cd1632d2171d7e11d3386e1bccb949","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.4.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.8.0","dependencies":{"debug":"^3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.7_1534960961042_0.010777989922793552","host":"s3://npm-registry-packages"}},"1.5.8":{"name":"follow-redirects","version":"1.5.8","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.8","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"1dbfe13e45ad969f813e86c00e5296f525c885a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.8.tgz","fileCount":6,"integrity":"sha512-sy1mXPmv7kLAMKW/8XofG7o9T+6gAjzdZK4AJF6ryqQYUa/hnzgiypoeUecZ53x7XiqKNEpNqLtS97MshW2nxg==","signatures":[{"sig":"MEYCIQCcPopuPIRu7rhDy96AX9OzGGCvTNFdqqcIHWrE4q+MowIhAMcwtkqAOLIcnnCcLIuNCQv6lsIxahxiYO1063WdsbPh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19548,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmBa/CRA9TVsSAnZWagAAuTsP/1UQNUc2CA5UKKrSLI5E\nStiPsQXJI5nmVuNOyTHxFb6bWzRa4rXlLxJ/NkPyGXl6Vc+DMof1h9AU0vRX\nZwpSP4wp/kB49/ZS8+t/0GZ4QSoJlhtOpubL7XyHGsssMjEsMcTBWKQc8MbL\nUobJnJapu3ryyuj2sBh0UwZAaUBL0PsTCtoDWzj5um5sdsU/2wFjKMVUFBl7\n6DQolXWUFcUAnwFC9UnPMxKIPuVIreksVTpx6SW6l26OSEmAm3AWKEmD/mbD\nIHiIUowJ8VSwSRaOCRUKSwfrFp494nIJESDZAU8yMB7m4krN4+l51I80jZeO\no33NpB3NBBWz+Tfj5ST+vIz3U92FaMZop4Q4qSXR3fXXg3iaAB9DsNRvMlIz\nbDQYRCWSBpnvOBzPwDVPZmKexQM6UpQphlLTTXu4qtuVHG8byc3z5oWY8MFw\nlgqh1PGXjXmwhtFSnd2cXd1voUK1Ljrzp4ei356uScjE/8kzNr9shgPz5y7W\nJNqlsmnTaS7LWdVFKcxbbFY53mxxEh6Rx0CuH6v963IDOWWBpyyIOi2PO2em\nbS52oglk/h3NBiP55hdDQ+dsj28h2Dw3Na8LIyDQvO0vhbSiuKEKNxRC40SP\nYCtpuhXluvtYeEvlFzWcQaUNLa1w0wZ1cERWaq5PeilVA3sS57Ib9RXZcd4k\n3pAC\r\n=JSYr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"0a75768c122cf693dddfa85fd218f35c29bfe81e","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.4.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.9.0","dependencies":{"debug":"=3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","bluebird":"^3.5.1","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.8_1536693950574_0.5199163289035582","host":"s3://npm-registry-packages"}},"1.5.9":{"name":"follow-redirects","version":"1.5.9","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},"license":"MIT","_id":"follow-redirects@1.5.9","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"name":"James Talmage","email":"james@talmage.io"},{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"}],"homepage":"https://github.com/olalonde/follow-redirects","bugs":{"url":"https://github.com/olalonde/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"c9ed9d748b814a39535716e531b9196a845d89c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.9.tgz","fileCount":6,"integrity":"sha512-Bh65EZI/RU8nx0wbYF9shkFZlqLP+6WT/5FnA3cE/djNSuKNHJEinGGZgu/cQEkeeb2GdFOgenAmn8qaqYke2w==","signatures":[{"sig":"MEYCIQDg82nzO5mA7s/82cftc+dMlVaivTUaS8jeiA+1thBptwIhAIxXLDomuO/qhyipTeM1fVphPsiLVjrJFKOO6Jf7ROSP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvNDqCRA9TVsSAnZWagAAvKkP/j2g9UU23tkeBbnBBcDU\nfk0cBX6C+0D6Jo4FFXLr6ZBCZ77yHwZLHcbWGcHJzGaBDRG71aQC9DpoEMXq\nPeBGtp1Ag8tS1uC8SgCq1jYKqv3J84NzkpnKpzPA7PWcU6uG9erGjcRKenpB\nyWnF8EUTNLFA52WBhfE+lzn5yNx2nEpdxV55uYAwTyMZkub8edh/l48EwG9U\nH1XsySLz7MsEXr+1zsKl9MwsW6Z/ukFXFSZhiIJVM5ygq56AMiN57644uEbQ\ntXet7FNj+JafBXSuQnqrhatWnqu6oCxuuNYGpYiYjqbE53ExF3UHHRaHFMpY\n/IUbGUg3NsfGxgpBw9NGrai80eFhXr+m48dpWHGD3RjBRRVsbkjM1klxLo00\n7/o/nFGckmmf5w6GO0ev960QNoVJuDhDeM7Z5aDloEmazfUA6SvsoIHSCxEf\njxYh5RfnuNq5f8neqgvxp4TZ4WIzwHt9qL17YYAj4yqFEAZAfceZ3rrL4dcJ\nXmrEistf5DAiChl92vmUMT+hGpFUrUbk8cQ/DM4w0+Gk3Ikkn3J5fPBEHiBl\nE9HQNzkDrPzGTgnH+rRPw+lO5CDBMS6RZ/uoiQI+dDETUKtLg9+uCsfIaGBN\ntXtlW4EvzTLAASofbQheIOmg188y6vg4R4iNB0vDeM576QWpV1Jn9MSw6BEO\npP1Y\r\n=Zxsh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"90a52f7c9bc084c20ae167d7fcd0ede4770f582e","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/olalonde/follow-redirects.git","type":"git"},"_npmVersion":"6.4.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.9.0","dependencies":{"debug":"=3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","coveralls":"^3.0.0","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.9_1539100905320_0.008006507326728585","host":"s3://npm-registry-packages"}},"1.5.10":{"name":"follow-redirects","version":"1.5.10","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.5.10","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"7b7a9f9aea2fdff36786a94ff643ed07f4ff5e2a","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.5.10.tgz","fileCount":6,"integrity":"sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==","signatures":[{"sig":"MEQCIDo7OjZJ97DenT7I8gMpUfNimsk2Gh9gxUAK93i33JeKAiALlniEkuxxYbtvt9LD8AY2a2c9UI6Fv4USpepGKHcBrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb8ypeCRA9TVsSAnZWagAAR7AP/RwuZoZJOzKWB2RcWOk6\n+U2yuf3DRHCEEZuaynkOZTBc5B+xIpYFkDWgO+3lFQ8mTFVRfl9b87vJ4tQ2\npXeYcbWvt79hB+K4jh2VavKxsA3zByh4o0AVOWoaSn5qzull6Z4n9InAe2hN\ned5R3PZpMqY4YXuWMtHCLn+NJePGnFyEY2ESP0Ehs4DKDypj02HO3s9qCuqO\nlhSw9VmpQ+imJMge8o7EyvwfZaWEmb0ERaL1thLUOY2trHDKVO85JXla4h38\nM4oOc1g7o3yc0rVT8vZk9C56lkTQgULBIKc5HXUHjOkTO7wfbR+vq+cuUMaq\nBqyQb2qsy54nPC8EK6C36nIKXIy2F0UvARc1x/302XQkCjNajEIoPtX3vouo\nU3MIg8UKm0jJxjf6/PAgeDN4rtHaDUgK3N3YMzvhcIU/H+Bz00rEyn0GMCTM\npi6zo6aa3VXjyFP2+vQghXax6PYcbyec2/cBuUk9KZOfORvJ5gmvCkbLWWZC\nQUapjl2+4sWA2j1kT+m8JkUo969yiayjmKeI4zP0jLPFwZ0IPcN1+/ekMnD0\nAtwF0k7RPz06GrdleYaKk/+3+88ViuEkfH0tBomMIgSZ7Zui0SsPS6ToQcxK\nPHjOCKAFOcYs10ZFhfhgV/wF8LR16rIRwXnlYREKQE6YuAMvhNN5UyLEqwNE\nqVU1\r\n=Xtc4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"91842752013b26ed780f7b04e557c72f02228cde","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.4.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.9.0","dependencies":{"debug":"=3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","coveralls":"^3.0.2","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.5.10_1542662749815_0.6076235029881887","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"follow-redirects","version":"1.6.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.6.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"d12452c031e8c67eb6637d861bfc7a8090167933","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.6.0.tgz","fileCount":6,"integrity":"sha512-4Oh4eI3S9OueVV41AgJ1oLjpaJUhbJ7JDGOMhe0AFqoSejl5Q2nn3eGglAzRUKVKZE8jG5MNn66TjCJMAnpsWA==","signatures":[{"sig":"MEQCIED8LWxmMkVwc1Dvbl95Xt5d80xiGDw1ldRdytJFOIX4AiAPezvHQW/QhsPMkMAdIjibbeztnz5J9hgXQxw3X4IYFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21984,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcIq7WCRA9TVsSAnZWagAAuNEQAJWykCTynA9/C+60/9m/\n60s8Un+AfmRb/EDi0juPUuJZZQ0W1/RQfN3oCBpx8vMMjuztK/zUuLa5wLI/\nsX0Eaa2dG9TEFqEKWoQvhXv5mP33uEoa25yYtku64usRPXV6cw/1oggBKKlA\npsYNr0TZz34baoTN+oT9A0FpsByRA+Tn+HGtzRXY6J55DxZAbWoJAS5jTIOF\nwGvYKFPj+UIG1E0o8QiepgslMM6D2P/Xx4AFN25E8uMcF4mEkIRS979UIyTl\n4oCJch98KgwOqcb4ZiKO/bDXdXig1S8YUwoPAK88unGATIgitLLQtpYNspWN\nx9TJen67V8askFhyDng9a3dWfHtYTi3RDORCx4j216MD9jHGPetArQaYi0aZ\nUTLvuYtVqHvwHPZ8UYzmuMxyPhMTZEPhRTbtpgAkCRBMhrWy+gaz6nkWU2aW\nqp80LHIIdjtCDtR9IWEnRmX+JMJx2s/0N+hMGqXTXpDs0M2HxKkF9n3wPXVI\nlprD0dPuMNY1gR9cunSzbl+AF5AH4xif5QVdHGoSkichuhVFUZNub9O36sTA\nc6Vw7FIVLF6fcAIk0SM/VLMq4G956rWiFcnhChrmvXjMqlEnmZWL9UrP1gwh\n4dMwM0hcd6313x0PgiIWfGCFFP/2gAceHD6rsGpy1nv/VRhBYKHkujNrAoWO\nMaEu\r\n=8Rks\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"10476676a84c9f1e44b93e4ca28a1dbf7145e673","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.4.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.14.2","dependencies":{"debug":"=3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","coveralls":"^3.0.2","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.6.0_1545776853871_0.9355239754490214","host":"s3://npm-registry-packages"}},"1.6.1":{"name":"follow-redirects","version":"1.6.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.6.1","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"514973c44b5757368bad8bddfe52f81f015c94cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.6.1.tgz","fileCount":6,"integrity":"sha512-t2JCjbzxQpWvbhts3l6SH1DKzSrx8a+SsaVf4h6bG4kOXUuPYS/kg2Lr4gQSb7eemaHqJkOThF1BGyjlUkO1GQ==","signatures":[{"sig":"MEYCIQDPIpN2aJ/e44kpLyQ8SAqFDEM8x0G4ZJui0pAmR9tSugIhALtLA1Wh5unMLu/wmF0JQnOATRFu4+wxK+CxEdBo0xlp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcLeLrCRA9TVsSAnZWagAA7GsQAJGbHWOu1A2HhmqPwWGG\n0xWiMBnggNuxljneb+J4JXp+2gPrC6ZRnWoGijY4yu/d5zv9Z4Yjt1/7MgfA\n7sbJ110OIyinX99qEbB75R9xho4kmm6eLfZX9xjMiK2uNcMCtdUiZMUhE5dy\nRYZDT7SW+/9JAnqWo2FyyR1aC/ypZWSVZ4p6kSLR4tL841urFyk3WmZzsHQT\n9+FAkmSlSkzGHfiDitzh6nHmncztCXZ0abClV2q0/BdYaGkwlJUO0F2uagBF\nhDIyiQnIhiN8/8IRJDozlr/an5PM3RTZs3S29/RoeLnURpTkWw0Hk0XN6ZVH\nf/YvuW5sHGwJU36pz6OnfJeLWUcRcxr8EDQJBqAaGqZURr9f9Rsv4/r/D0l2\nR52pOQSbOxwngYVITDGmXPkYwH/ZEjNtiZZW2RVuJx1joIzNOE7s93Mvu79i\n9WPjcc0KXhK7ANaNE77ZqB5v1fIps050vlaYPVnbr5n+4hNYvaZf1Ib4cTTW\nUJN5p3NfsMxnQOVD26Sgs/QtfV3BVC6xTJDyS398RWDauWXZMv5r+LSLHJYy\noiAw6YKYcjpv8Dk4kl3Z8BAEwHVr4ftKIPfu7fGSGbXqvh+9dKHeFIaUdQGE\nVYJirggQPnUammloIB4cH7ZGKgv2QtfEy5CeunhQk9ZEGVMZDhvpaYb/Ed2e\nTg8m\r\n=2SpE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"0cbcaac65e5c0fdff425af75939d0e92f54cfe73","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.5.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.14.2","dependencies":{"debug":"=3.1.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","coveralls":"^3.0.2","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.6.1_1546511083043_0.9607381997588877","host":"s3://npm-registry-packages"}},"1.7.0":{"name":"follow-redirects","version":"1.7.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.7.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"489ebc198dc0e7f64167bd23b03c4c19b5784c76","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.7.0.tgz","fileCount":6,"integrity":"sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==","signatures":[{"sig":"MEQCIEu+c7zD9ie7D7sxvwGDLBxluzM28HIow6nsxDLJtzybAiA67MJfF7U9iDqQFl6XsRl48lOMCjGDTuBe4KokKcVS8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21525,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZI7aCRA9TVsSAnZWagAA4wYP/i0UEluhn6QsNUW7FsQC\nV6csdzuDsSeSgskqm/CI6rqTxpXxSMUMG4GtFfnynrAEYz2dwa+KNonZOvhc\nP0DRvRJerUwyblF6deVA9cYDNj8WSE1ftOjQp6X7r5LW4jud+vTM+tCYFvIo\nbJW1IaTunyz1HNemveYSwC8W/qeCuDY7UlLOoz7IWypivuLZSwjKfcL7BVjO\nVwn77IivSNNLSbDtcmXIiR6zGVBSkY9JMXPM4bBC5kJytWO5QwE6OzGY0xNq\nTDnBh0hHNRw3RkcIotM/U0YVais8HuaDr2WO7/N3pGfqtLVHT92hxZtIcnSu\nDJFzs8ptzBB5jzx2/uD6wpXq9+fNxc/EcbeH9GFNBxMA9Ks4rT2VdbjJnkFu\npWfAwaYKcCTz0CRffkeN64Py4NDiwQ0MuNYlKlGthTzz08f3c7Z/DssV+ffD\neVrZ8C0Z400+dsMdvGH74DKw+8qYaVXZ++Yaxc8PoG+mKnW49IAa5nN7huL5\nvNNFGES6lVnOtHPSJpdUK9MAJGr8L1PTBqZYr8ALVcUkHeKzb/3Z3Z8NfE/i\nCUdxcsCoP+C52bmESwhJIN3SLSuMb4Nbx+/s3f0zx+gZ2HieGQicYyRybBEj\nkkzparnDuGJ+63+IWc4rbEv0vD7iw8EX5SazL+/DDAH0X9jsU6gkZYIVc6SK\neyjn\r\n=xy7d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"301e0b45122faeb8fad8b887b6c73ef36538d628","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.5.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.14.2","dependencies":{"debug":"^3.2.6"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^11.8.0","lolex":"^3.0.0","mocha":"^5.0.0","eslint":"^4.19.1","express":"^4.16.2","coveralls":"^3.0.2","concat-stream":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.7.0_1550094042182_0.6861824070554166","host":"s3://npm-registry-packages"}},"1.8.0":{"name":"follow-redirects","version":"1.8.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.8.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"nyc":{"reporter":["lcov","text"]},"dist":{"shasum":"dcf34930bcfdb6c1eb22b8eb7c457ec95a3dcf40","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.8.0.tgz","fileCount":6,"integrity":"sha512-eYyazyi+vwXZ6LfSQicvqFwaNEF5xTvnB/rpzRLuqwK45u7WbBEnQ/dDic66KD/A8IzTXFlj2ROAcaP0f2v4lg==","signatures":[{"sig":"MEQCIG8VGOy6eG3uETe5sy+0jcdOaotPVEJospunWbYXJMGuAiB+DItCbGU4QKlCBu30FqRszhuYYCIm/HQs6EG2BauN3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22157,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZQ+vCRA9TVsSAnZWagAAwA4P/iVHFFfoYSdGJ2tiqvXX\njtykXmGCqIgwK1pZ6tjotSJSVDT9VZNFIVZCuIcPIjGB/TbH7kWCF2bpvBnt\nfp3Z3BW9+NGv7/zBSymQWSzYapB881VWf6O1Nuz5t1T8BH9TNb56R9L1ooVO\nZQYUOKB3hw3EyhQRQWl4InUzSpNwh2oLr4l4TotHx6/AUEq29DPp8BxoXe4F\nV9IOWW+ViVphXnDtHSi8zulHKv9ZwnoknbkSnD+8PKFMyEpDYM2VXqb2Oxsn\nYkxp9OSCZioJtafzzOWfow4Fo3R7+E7IWlTBlhXr+QzVOYPS9eg2QXgY/nPr\nwokYdQIMeEYOy906Xe8QoRiOJgcqWutcPivFPeodp6gAzNUsIAKm1qAeNNPM\nMhj7Lml3i5eTa5zuIGAZEIwhHaNqAyPB8seaih140jIarPxhTzSN2vCqCgmN\nmLyMki9CM+v0jiljxrtdBrj1X8DZEMMOYTKk81cdpc/EFhgns1MG315lZm97\nMIYNbPU18IdYTy7T7iSdlTdVOufwUiDmaayZDPQlINb53TgA8+Huck7gaTGs\nPSArjdXVkpVvDDcuo7QEX19tSq18hc/kgVWFndkmZ+v5WZyv/kskh7GA8qZZ\nNlcRxdW2K0CPGHOCSAl1hLaj2gmWXEwejm9wn0zskSq8sbm5T50iLxTjNK6W\negO/\r\n=HCb6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=6.0"},"gitHead":"b7a8216d3014dd82a605bd36e8756cd40936878c","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.9.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.14.2","dependencies":{"debug":"^4.1.1"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","coveralls":"^3.0.3","concat-stream":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.8.0_1566904239145_0.5933962124783387","host":"s3://npm-registry-packages"}},"1.8.1":{"name":"follow-redirects","version":"1.8.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.8.1","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"24804f9eaab67160b0e840c085885d606371a35b","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.8.1.tgz","fileCount":6,"integrity":"sha512-micCIbldHioIegeKs41DoH0KS3AXfFzgS30qVkM6z/XOE/GJgvmsoc839NUqa1B9udYe9dQxgv7KFwng6+p/dw==","signatures":[{"sig":"MEQCIG4pBTFZNlxoBnaZWVCW4rbddfa8TOCOsezk8h75nI7FAiBU1fF+sS5jr+hnZLjFLccqHSQhJ/UU4f41Be79zN/WvA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22063,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZWpxCRA9TVsSAnZWagAA8CkQAInJyjtAmvR/Jmc2H4m+\n+GLuWGtxQXAh5jAVfLFVBOYAogY5OGqNQvkKLWYuPOp5Q5c5WYQYnXz3uifI\n647JAXSjFOIEIDDHi3qWGvQbA8NlT+XoHRICocGk3/ogir4x7KMx1L0UZ2Yj\nwSw5zdJB9iP4LoGMuOx7/06mgv9Pox9QOruKM4tXqAaraPyTRAAw4qf30kq5\neRAKGujNeaoeOaCqHym9mB2p20dq9VvRWm56QDC/lIzuDip26XjbduQZABjM\nOiyI0NB54FjT9v91q6ZgIqSIwSuU4/MKoBDymvr95/DaQgiEcW3P3IhTHzyv\nGQ0CNEF+ruPBbw6DhiBhWB38Tv7LvAvSIb7d6xOuhrYIFLYPfkIZIfSNsigZ\nZPxILHiPShHQd1rJUZoeu0Ek2PVRuL8znnXsIj/B32ZjN11gRii2NfWZBILq\n5cK8YTBfnCXbUhpiBhAjfr93P/CGZ5oJSBaZCG30XvAn2WU5AUw93jwen7HQ\nyPnvUSR76UYdMQalugCyn9oE6fq150XFQMI9rNNN1GfxeTEPTcefvAG2rrtK\naakpIfkcNIZRPvntKM5KDeB90ah1KhNTVosZ3mPk89mXJC7rXCls4cOh+wxq\ntXQ7G/pLy+qrzkhlCyh0r++UHtM3i5dh+bEcIebnD85GeqL+YI6S+37uAEAY\npOoq\r\n=SrNP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"5e38b2279e21086952aaa8590e0d83adf9c028f9","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.9.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.14.2","dependencies":{"debug":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.8.1_1566927473228_0.8108710547104683","host":"s3://npm-registry-packages"}},"1.9.0":{"name":"follow-redirects","version":"1.9.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.9.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"8d5bcdc65b7108fe1508649c79c12d732dcedb4f","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.9.0.tgz","fileCount":6,"integrity":"sha512-CRcPzsSIbXyVDl0QI01muNDu69S8trU4jArW9LpOt2WtC6LyUJetcIrmfHsRBx7/Jb6GHJUiuqyYxPooFfNt6A==","signatures":[{"sig":"MEQCIFEPz6A9NGCVQAdjP5HbN277TFtVj1+PHBZB/mHxC8wpAiBlOAeEW0JHsulOVMWkQKQ2UcnOWuhwbWCYCZazxcb2fg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22100,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdclssCRA9TVsSAnZWagAAz9IP/2MzQdIJBkQMV2fMW8eX\nejrm9NKiRDWy5iHHlMNP4Ab5Q/L6EoWQfIey+tsvVXdeKg4yX3CmrGHAD2YU\nRPDD2m/D+9ODwl6DkA1eJgB/CeFqOuPXLdAO996N/HNJraF1D13X7eakNr0X\n46Q2l4fXatrHbFnjCAQXDbn7Xc27wgqBYWz0QPFhllQU025/vnk9p0mpgb3F\noUaSiK0YyHpWTlFHTI9Q4T4JzLn4UOtrWKAII3OcfxDcoKvM7HHaBT+Pm4aF\nQrx8MrC/KWgARmN3b//Na4qdjvVSigiXfG2jyVXx+KrryHCmN987439BsvYP\nwM172NFHOav+GCL5pCvNnrLVmtyO75TKpd5yPS4usNiOlZYl8lVrJGBo7e4W\ng2p60W6ihMfVBNFagXK1B6MXFi8ukgXFk+Y0M8peY2ZpA3PwBuE2RIf+fkYn\n74tghvFa15FZXO7Fm8G7sHHA1TNj4/6eehTXir3+P4TQwMCTt+WHJpbCcxfk\nCryarN58fnkYI6ErmFYZsiPmuqsuFE6ZG3XTXu7xq1oSmIJneByyc8QhZq2V\nGc0THH7minRYYN9QAFYNDPORBdHAgwyFctICpNFt3rqFVK4eryLqbMJKqwSR\nLgVuqL2uWOd4K3zxeLYsqmDp5Ww8SdITJFtVXkyJfK5T4dSwtiMyQwpgJTfk\neWy5\r\n=NYvs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"2215c54e527663cf39b2c4e8c6dd862207390824","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.9.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"10.14.2","dependencies":{"debug":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.9.0_1567775532196_0.9615187287965778","host":"s3://npm-registry-packages"}},"1.9.1":{"name":"follow-redirects","version":"1.9.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.9.1","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"26e329669886f8b3baccbaf352067b0253da6c2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.9.1.tgz","fileCount":6,"integrity":"sha512-oUNbrdUjHItyCytZQrHxWQ81ebL4xCFLH10sG0poUMgbKWoBnswpICjUBld3PLJ1lF6cCYVUBG7hAdLro0JNvg==","signatures":[{"sig":"MEYCIQCNr80fRF69U3Q44UJhqSrmLg8icflO3Fe1S4fhRX4WQAIhAK5Br1yZ8FQgvZhFstNZw7Lm9xehzBpn2xgTIv1Qk3tX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22322,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeLNU7CRA9TVsSAnZWagAA9OwP/0q/xlzGdXLvctnmG22L\njYFGGcAzMS04Jve+FmofdtUKQG5YVyQTjJsy1Te8mJkggc0GYHmxcpQFSOEp\n6WxT1jjc0aQd1utL8T0hANlEvtPYcqV2o6vn14GQwOgbbcAc3FhjAeK96+Wl\nsgk51vwTlVXqoI1VUrq8ckxzzs4zGI2LaHINtIeMF5fBvRH/FkHZMdw1eUMs\niJhP5ydEBNBXSj/aD8d5SybbwW3Dsj2/ighXIIjck9ssoWBTVf6UtxeJR9P7\nGF1Np2W0psLbGfMQKE1k3XS+UTOhFAkXrLT70pL9YzcZskvGOlzws6aN6BSB\nVDSitmNmiSav6b2aQvosG0aH0K/PFD+wetCwo42K3AlTP8jIwZUKiHmPenJs\nezE8hpJ8kHra73GAzsAkQ5r5P/2Ic7rrzJxElLkgXOwK3ld4bEK3StsmSJwO\n7gCNGFSGXHk2if7cK5lwA430rRmgAdp23EBIGg1qanko/BaiuhjXvEo1gYnp\n5SSwy7cHdzG1t6AYBhiic0TZADNDifZB+pHd4dCZjxibY9fHHg6Q88acbiKr\nkDzJQWZ4yGkZp1+3Vg1WlnQxRn4BfRu63ux7zm0D24Gk1GkKu6af80uz3/Um\nrbxTIhaObp0FaD8eQsk+uaMAIyeOACqpaKrzngTmeS9utLygkr3DPYYJayXw\np3Ym\r\n=bIRS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"9df47ad6d7aa4c54fe293ce5ef9637650ce9c460","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.13.4","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.9.1_1579996474755_0.05050984072533149","host":"s3://npm-registry-packages"}},"1.10.0":{"name":"follow-redirects","version":"1.10.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.10.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"01f5263aee921c6a54fb91667f08f4155ce169eb","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.10.0.tgz","fileCount":6,"integrity":"sha512-4eyLK6s6lH32nOvLLwlIOnr9zrL8Sm+OvW4pVTJNoXeGzYIkHVf+pADQi+OJ0E67hiuSLezPVPyBcIZO50TmmQ==","signatures":[{"sig":"MEQCIBtTOHarxpc4X/X0etT9glU7wL+zxb3WGMUGJyAgV0R7AiA8jLlbpAkI+HdwKoQqR2DAEk2unYO6U8mDO/LEf9+63g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23170,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeLiJfCRA9TVsSAnZWagAAMCoQAKUGsAjNMrjM8v1P+Rrq\nCQkexRzO2E3kywImR9837V1NvO/qjrGs3B6fHcP4uvWi237W6pNNpi+9HC2J\nhwUO1AugHjdlGBmZ3xpjZLGgI0oy7Ws9UrHTAyHZcfY7B4YzuF8//P65W6LE\nW9JlqfIPIC8dYX2Y9fR+sqk3urlRSf0SyulYvOMeZYe2+/3PaiKG/JeGHY7T\nsfzi52wk7Y4sQ33VPWa03umgoRWlZ75KTQLcvLKtbR7upBAp1mbc7029PJPB\nPR05STVaOa8di3jvJP89pUs7V7I3yLoSdtKxPatoDPFsAZPWh7seQMJJjzfa\ndo8MdjA1DLNoR7sMUmYsu8dIVd1JHzGHH2HDnDrEZrsIKUQTQC7ovw4MyZ05\niNo/vRg7Pg7xYEqmYq/7YM4TERVWQzf/C2yo4Q2iQsER73FXW3zTglW1uA6g\n4eMgxPKf+6390oxrL8pBAONxM11WeRjJDt7Rrx23nfPCMkVky9vRPTUapsv0\nELVkb+NPTDs4wiEO0t6TQNFdClmSUwfVotSLD6Z79YagB1jrxLJ7zK0Ntz8m\nflaZCpG0SdLC/YFIX7pCc3K9AsZSeNkrt7ejuMTCxFAPXWGfPerSGbEuv/8X\nLBApiH7cvjha+qG1shEA+unjAr6/l5PHX8/bFFDYzI9X3HHxv5UJf/7uXm7K\nKiJk\r\n=0B6u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"670c3a7b38e0707a22d111fa766b4e82d277ec41","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.13.4","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.10.0_1580081759334_0.796661405877777","host":"s3://npm-registry-packages"}},"1.11.0":{"name":"follow-redirects","version":"1.11.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.11.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"afa14f08ba12a52963140fe43212658897bc0ecb","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.11.0.tgz","fileCount":6,"integrity":"sha512-KZm0V+ll8PfBrKwMzdo5D13b1bur9Iq9Zd/RMmAoQQcl2PxxFml8cxXPaaPYVbV0RjNjq1CU7zIzAOqtUPudmA==","signatures":[{"sig":"MEQCIBNKzsS+T5RqfJt3x1R02vaW0OFi3hW3Dfgd9wpdIOn3AiA9x3Y0XIIcteQ0lKfcG7e57W/7TLvM1moTgUItUSZeoA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegH5gCRA9TVsSAnZWagAAnLMP/jR2M97OJB0tx9WA781R\n9n6DD/Ikjyi6coHArH6vMnqW0K4IK1Jsn29rR13M/uc/hZnn+Y/Y9d1lCBuy\n5hPm13ZCtbfNDaCqYMqSd6WGhzj/S/FDjjDHZKyoLlA5JxRpBszwNL6c78SZ\ntYJJMMRAOfZo4apotVG+fvpq1eZ/qw3Vrxsrihzc6v9Xd9RAdLsOh7345RKN\nAJEfm1XcQl54HaRv8jrrLtb1ESHjIeMWcLYS8tI0koCvS8eO1Jf2Hl0Bonrz\n8QDd9YfIS/5qRRXpubKvZ21yKFJ8rWRCJRgjvCSn1DM3fbp66XvjESh61lHN\nLxeIjsMdwv1vGumyJJtcej8DjGfwsBUAcMlrqMo1fpwGJq5u2Zw2TMAGeVK1\nu9myTSynjp/fpv2smZvE7taiYb2Ws01HRadc1CxiRcxHU+UV9SwLKAWaPGIq\n50uF0VfXswFecMY8Mblh5BudCpejf5KBpHKt6Fr3boQFj5jqXlZoGZkSwJea\npZhT14ELTkFqQ4I9EE1wyI8smtXfVVKrpZSoJWuKZDg8TLYf9EHZvu5zcBnT\nHoyhM1SUy6B0AowPDmWBJ92W2d10PcuWFoKFb4bEyzpfYSHaJGoeBiYvboDc\nFBlnbCiamAASn+RzwGu/u+NkxodQUOI1UavxfVCq4qoctRzMK3qU9aJTSVGM\nA+64\r\n=Qy8M\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"0de31a8a0afbb859eca1b522fb3306121ba7c0a4","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.13.4","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"12.14.0","dependencies":{"debug":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.11.0_1585479263559_0.7488129880046406","host":"s3://npm-registry-packages"}},"1.12.0":{"name":"follow-redirects","version":"1.12.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.12.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"ff0ccf85cf2c867c481957683b5f91b75b25e240","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.12.0.tgz","fileCount":7,"integrity":"sha512-JgawlbfBQKjbKegPn8vUsvJqplE7KHJuhGO4yPcb+ZOIYKSr+xobMVlfRBToZwZUUxy7lFiKBdFNloz9ui368Q==","signatures":[{"sig":"MEUCIQCIe/jzrnjBN7HC6paVYUItBrfGFnO+IzlMkivwie0NjQIgAcUH+9zWhrH0HPQNp0xIjOazvYC2ew94aPqLeQIRWls=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23697,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6S2GCRA9TVsSAnZWagAAfPgP/1NdDvODI9cnOFEXtzyJ\nRFtpkrpuWSpZWxnv7nyQBuPiXJRLSOqtGaP1CfOJjL2uP9Tbf2ogZLnMA5oA\nz2Ie6pCh/U1p/bvxNNXRBAoSGOgzB1/2IZUTuR0/LK6Gt321uF8i/yQKmyug\nzGUKQjz3GONyheTfyhLrcy5PCZwfSADLyAILsFMuMI1AB4ifm/6Zp0oshQw+\nUuE0SiftQvVG0BVxS2vYS66fAMKktxc6DPvUbn6EKAfaM7Ggj48OqHu77TAD\nJEem8+dYZ9Q2+eY4UyiaZwS3+grO49oymzZ5he6XyRh+6BLclTs8FPlfb+da\nTatRA+ksV9AMVdr3vAoCnxu6I5QxXYnlsNgan1TOzm+edV4zXYwtg6MP+luk\nSD2VQJXi3q/IReADnqWtBfZ9GLHMlAEX9RHubzNsY7bL2F0M6qUSMSIfdHmW\neTTB2YgD5VIVH6HoM4GiI6vwcnupBLrI0wTuBUjswTIIHC3DXsZ+/l5bdKiD\nICcV2MURZ6P7I5HNtdkJVCgydIOY+4vw7y7QNmdyMvq+ALM+tjhAG0N1RvL2\nXaQzfCkG3DaGLEr4h/nfN7yU/NLdi7EDUyYT+vEV0owvoGXrSBoyVEAfVbwe\nGRXRw4RomjGZK5qrnJkOXugSm7zcapK0bz3Do5u96Pp+gLYHCBVy1ka3+vq0\nf8iI\r\n=7ygN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"gitHead":"89fc462674c9a1b88262f1b7d0e828f4ced1b890","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.14.4","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"14.2.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependencies":{"debug":"^3.0.0 || ^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.12.0_1592339846541_0.940755220987272","host":"s3://npm-registry-packages"}},"1.12.1":{"name":"follow-redirects","version":"1.12.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.12.1","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"de54a6205311b93d60398ebc01cf7015682312b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.12.1.tgz","fileCount":7,"integrity":"sha512-tmRv0AVuR7ZyouUHLeNSiO6pqulF7dYa3s19c6t+wz9LD69/uSzdMxJ2S91nTI9U3rt/IldxpzMOFejp6f0hjg==","signatures":[{"sig":"MEUCIQD5PFESUlpyrUvCJiwX825x59rg74jdueauV99qnY8WvQIgUdTw2R0nLVd3SdKOUrAnZiY2r9UzpiWtaDouc65NS+k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23900,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6+ybCRA9TVsSAnZWagAAsAcP/1TfXM557wagSC8+bQ1K\n9rHGMRSLAFf7AI3mc6sWLgNPGnh8KiLph98mCy5u7RZmeHWEwNiN5WYcXKPD\ns/q5GnacO6uRdxbC69YwUvY5VljBpdAGqLn2rg85kRF/MkoWWGIe0OXI+eQm\nHZKTlVrRoYA2nOfMjNkws6/3pRSX1FHdgn/uihauW7Z/yHEMR4tt9hYsHtKt\nl9wLbBF+nEq85zSLesBWGyZnAo4JCSaHhRRuRYVON+YYYgi0JXtMgIw01K3k\nw2/DRCzs1gWBgwp2Xb/lIkfY530MQg6ChaC0V+YwSyLyH9l/KMho1qFoUTeL\n1gFPV9qd0+N/ZsjyFOX11HEcoj2cQNZqAkrUKNX0xPLKcwoKlI5B6zCIRvIm\n/3ETO3sFi4otJIzY86DwNWFku+0r9FNftKEiXLlTskh2omdX5Rm/f8CyAChU\nnXThZKYAS7/+miM8aY15WN/yYuxK0nFfNNCTDwMb5sgqTYWJ6jCoIHchxbIK\n2VHK5XT/aezSLmLEKVvmE4LqaaEONqhqnfBngx6fcCDHhPlo5oDDwWQGId/u\n5MlJI3V/YA8zDFhqR8L445Y6w/bMRFIBI7E2xvUij9AZ5MCN/qzZyUcaiGhW\n81gPvWFXoCP6KmAKKAk/FvRBPibk+YLp1sQNaDZlerVnuHpt9jjcDyB0aPmJ\n40A/\r\n=nX59\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"aa6ce01c8145b1f968031c663d9aa87a692cfca7","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.14.4","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"12.18.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.12.1_1592519834666_0.2575521981101132","host":"s3://npm-registry-packages"}},"1.13.0":{"name":"follow-redirects","version":"1.13.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.13.0","maintainers":[{"name":"jamestalmage","email":"james@talmage.io"},{"name":"olalonde","email":"olalonde@gmail.com"},{"name":"rubenverborgh","email":"ruben.verborgh@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"b42e8d93a2a7eea5ed88633676d6597bc8e384db","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.13.0.tgz","fileCount":7,"integrity":"sha512-aq6gF1BEKje4a9i9+5jimNFIpq4Q1WiwBToeRK5NvZBd/TRsmW8BsJfOEGkr76TbOyPVD3OVDN910EcUNtRYEA==","signatures":[{"sig":"MEUCIA76MI74au/hYHg3UfVmKH5+uCGeZo2LUjUzT0CIR2NhAiEAsP0nbPwvmsslKbj2Ytd4lHOhTwcFu8yPdXZE1F0OjbI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24066,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMTJXCRA9TVsSAnZWagAAH+QP/RYg/ow5bVtgXIxGYoBT\n/mncbw9r192KpPWj/3C7vn3izLTf/GvWuU6DjETTYenRkpOF1QkjlRFyVDBJ\nEYrDlXmHL5AIdQRPQoRFXIRgdOx+bMjYFdeV4KVTqMq9Yh3vFFqho63oBnTP\nRo8iGZ8KGzF2ZVNXRwEnoGSANERPXKsoLKlvBMA0MAXtjQCgOpdzYlNv5h5j\nSXLwxZobsc/4piJWvRjdrITE45UYR5HnknUM90Pm73kVfg5kNdrPqLWUCJ1+\nO/Nf9lzFXrgO8j3fNLw+VB0i8gsAZZz4MOmn/AUUERx8c2mvU7g0R3c5NM4o\nbL+CSNutmz8Vtlu7wxXA7kCJKTPxHQmpfHlZR3B3pKH8nKqGw3lto6XdjWNn\nYZu+YzzJg7v5WVVp7BY54FnVgS+JHz5qog1YqG95IOeErAlA1JWupA7TZrdG\nmm6H5zVI3+qKMUwMUk8TDwpzrInbYbndEcOfgC5OIn7Fc7qxn48duwqcOCBE\nX3VmJJJWil6GP6QsL2DkMC8fEbFluXPeB8BNzxY1HfWWetTI708oYRBVqEQt\nhBqTgF/Px5EeA6BJ5cVg/swOnRYEQ8jL7Bx867bBsfzhE/hC8bmFu29AWXU5\nIM1yHtvey8jgaPVmbFzoWbW9cObfsqmdwIDNamtjhMGDrPeKEhb9CVDXaB4T\n0n4A\r\n=QqNW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"b2f2ea52edb4d5949751e2467d9e6d42ca24c8d0","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.14.4","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"12.18.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.13.0_1597059670652_0.3409890757494629","host":"s3://npm-registry-packages"}},"1.13.1":{"name":"follow-redirects","version":"1.13.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.13.1","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"5f69b813376cee4fd0474a3aba835df04ab763b7","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.13.1.tgz","fileCount":7,"integrity":"sha512-SSG5xmZh1mkPGyKzjZP8zLjltIfpW32Y5QpdNJyjcfGxK3qo3NDDkZOZSFiGn1A6SclQxY9GzEwAHQ3dmYRWpg==","signatures":[{"sig":"MEUCIQCZhaCFOfjiPnrqbLdF48OLWXbhVs6TazAQ+CJnCXIIFwIgfMe7XSnsUBe3rhJNO0xQURHRW1yGv2ZTYWSiCytOt2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1juoCRA9TVsSAnZWagAAcUEP/iBwJd0839swYGNqnSCE\nIpOfHXql2coB7aFTB3YT5qrtC18+o2R4a/gEBY3mbf1ZkxNenSsf45GcMi4w\nUBipZT9qKmkgCYWtumTr+PhjnrUtaqQs+hQHZ0aFFLTugEnliabLFrOiFJoB\nxnRURCqlocyF3aWdoqBdNZRd1gMtM2U/AwdYGy4MHANBUA0tvI6giTpnHoCR\nVxEJch66QBJ4XTRTXtb/2I6iYJeev91fLNP6NjfpdCRBvmjsGD/5JcZo9227\nJqF2vofR7tfhxSQr54zS0+uXp6xVrKYkyFzwY6wUlK2TeEYoESKoiD2Jxv19\n5NTDv8/0/LXnZsOGc400PEplOMiDW+gX5by+vBTb7e30OQUWnZJbiUPn5KRB\nX7pUbspjadbahATQJ4CAenh4RBjd/6OC46UZw//cZjCclPKgN8Xt5XZMLtuF\ngYvU1soLWfVUe1Z3paBUM+Q3LlzKgZjUi/nhYvuEz7Mx8hgzd4aeiklrn2jq\nbPGYPYYwtl5tAeHk5U198ChkT7S3Z3pMZHaKN+GHrosEOTRa2AzazmRiEfB5\nzw3X5N8fpUYUegqyP1p+wR4pUYC5r8JiY0DfJpUFfOJNyR/xGEdCZo4L3Avd\np/Z+QEsaOV8OBlA5S5VTIlSK2ePP0CHWg6znHfZo/ugxzR+NxqbeMqg2iVPk\nhqzs\r\n=xRmT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"db771b18552b9f7663fd28be86597ec753b360ed","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.14.7","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"12.18.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.13.1_1607875495659_0.9702203750516365","host":"s3://npm-registry-packages"}},"1.13.2":{"name":"follow-redirects","version":"1.13.2","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.13.2","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"dd73c8effc12728ba5cf4259d760ea5fb83e3147","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.13.2.tgz","fileCount":7,"integrity":"sha512-6mPTgLxYm3r6Bkkg0vNM0HTjfGrOEtsfbhagQvbxDEsEkpNhw582upBaoRZylzen6krEmxXJgt9Ju6HiI4O7BA==","signatures":[{"sig":"MEUCIQDEe59W/kYO3raeNeBzgDeoIp9LQEDbTByzJbVph5YKhAIgWcM7nwGoYahMqXypObkzuTIlASjKKXTD5eiAWyZqSvc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":24501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDyqvCRA9TVsSAnZWagAAFJcP/0IYTTcjiqyFHihdRRRd\n/ufjHDj8fy4KYGk/JSV/YA11u9f89Ck6wXrLW/ufjfURj5Z7kHW/Nq4ed8vC\n6jXqDifBW8PYwLgbY5Y6WfkPng8gQwTkrQN6ENyQDX/E9FBDbs/xSakpkpPJ\nKpxJtSaam7Awp+GCvsWSj2HiwWtWThtGrDq30ZV25By6KUqPoj02W5P6jr67\nbR7sAAfNFIyOFFzCMqHKy4YFXAM4EFSar+Wu6gBGL7y7HLonS1KZ7S1uqxW9\nhi4/yQMA/AejM9xT9t7YQ4+C9gg4ZrW5JT+f+M2NXDnucCUFiwRA3vBbEMAN\n3FcytjAWiouxag8nB+ioQiG++fq2B/qaVKTJDiM6CIrjFz3chpRijq0IOXUJ\nEPp5dbOEPWg0qqXwhcdJ14bkmVKDsHUDFuNg8KVOcVoYA0rEEqRf9kOMXs0r\nALUK5seRolPOJ9GJ46LtRROy0qZEOrypfrNevrl1hGIveB3ZMy7T4+JAcNhV\ndIUVunOannGJfTCRBxuQSEim4H2LPWRl120EdSAeAXaseINmLbJNIOLHMof+\nzg/GIZU38/COJISAjp+o08Ptvs6K4lDToSa5r055JHl6HZLryKONtoabw7oQ\n6knxcNYaXbT6SX8CJzkOXX8pq4s+FxtN9L3Lm/JO5Zii4PAib0UtwI3BHRcQ\nkTO2\r\n=tgk7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"41b0f8f1463a4ce813b73792cc183c4799a6e540","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.14.9","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"14.4.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.13.2_1611606702923_0.5674103930388479","host":"s3://npm-registry-packages"}},"1.13.3":{"name":"follow-redirects","version":"1.13.3","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.13.3","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"e5598ad50174c1bc4e872301e82ac2cd97f90267","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.13.3.tgz","fileCount":7,"integrity":"sha512-DUgl6+HDzB0iEptNQEXLx/KhTmDb8tZUHSeLqpnjpknR70H0nC2t9N73BK6fN4hOvJ84pKlIQVQ4k5FFlBedKA==","signatures":[{"sig":"MEUCIG91POOvs1tGKd2OSMTZCNi6kgFm7R3uj0mAdAaGgzQfAiEA/nmVV+vLSvU8dUC5XQqzXHYiyBffBHl5Nc7M3u1eeYY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25071,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgOloKCRA9TVsSAnZWagAA7I4QAIGv3HDAuRLIGj8UJ2Nb\nL9Lxa+3bu9iH8l7AUOrhBkZxMTTqnIqiaBuXw6G2v6y4hPAoMLhE4wb+7nzm\nHGzqUFVu2K06eXfmSAtr5VoYQ6c3jBHvgwVaQvwZeEeqjJaoUmID+SugL6dN\nNVtL29aInons4K44uxb8d4S2pRcSVTTE1UTXAZBQh4QrXX+jnLMh6imK0M5Z\nHe2pz/hgPTiJ5lDihvMh0gmEaLEOEZ+D0gI8+hQ9KuQ9jvIJkjbDYMNo2mWo\nZSvjwtDYp0qMQm/LEIQQai4nIQs6IaQDe/Ms0uRQrlxKasUnMAMPhjCetYLe\nEQgEJdHeU/jTjcJAqJ7oQKMPS1q+IAguE1OoXOj+WkEgqg/QubVh+cM9u3nB\ngoSi1xC+1QD5C8dIDV58WT4qPabRXBb7WY9eSVAU561EcXOcZRH0NVpHGtY+\nqiBzCIxsUqxU+bUhZ1Tm+ZN21JuwyBwFjJx5GJRFSbt+/bTEk4Zmw68PtOBr\n/DRUFyi8fC8/rd+yoYjTpllxPTyJqGmVRwc3h/HLt9HTHBLJSNvaXd2e+efJ\nuU9gC+fth+a1uTXzRz+Pwblj2ao1+eLzqlgEA24LqbIBGKQyC9MZWKG2YsMt\nbB1AJ7WyYIfGW4CGRGx2xzaamzNOdPTsDMCqBxGj90qgyRnF64hu/B0Zf8vF\nrHKw\r\n=pJms\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"2bdeedf70c5abbd631e5106848cb0732bcca794c","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.14.10","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"14.15.4","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.13.3_1614436874039_0.265570528092943","host":"s3://npm-registry-packages"}},"1.14.0":{"name":"follow-redirects","version":"1.14.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.0","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"f5d260f95c5f8c105894491feee5dc8993b402fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.0.tgz","fileCount":7,"integrity":"sha512-0vRwd7RKQBTt+mgu87mtYeofLFZpTas2S9zY+jIeuLJMNvudIgF52nr19q40HOwH5RrhWIPuj9puybzSJiRrVg==","signatures":[{"sig":"MEQCIFLcK6l9TwYKoToei+tnLIpnVmRV6K99xo/+3M/14wPkAiBwp7uITtuiaUbe+gw5ED/p6MgESTgS5Jw0Bh5WJpnjvg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghZpBCRA9TVsSAnZWagAAo8kQAJXuGCKZjOh2wL6h9YcR\ntR/3QVpr006MYPCrDIEO/z3vp8pkJZycD3DWpuGFs3I6YErQliIfCvLX8Vef\nMG4HPR0FNyI9FCUjXPiuTHnx/CFZKlaqXpTTUPHp9rSZ5kog6pTS9YBZ+Q1y\nMUniI1U2+fdgEtktNQGj4B4a+UQOgW8JqR8cZ6lc+WnM6/3vrul+EF//xfMF\nMAMb7U9jDsJDBNPgHi9PcxCWzlTk43n0YyEfD2efpEejWVNTCymFE0G2jYZz\n98rtAppPjOGtGvzPGG+z+Q92xKU7TirxZCYoUBRBpktaMZO58woIUbwCom19\n0KpKK1RMtUlAs5ft7Z6o538cal4bOyNoHpMmQOUU8JPaK+7Cn3JaYMHvrH3Y\nBgJ+i8DV54zpxovO83/7uV/x/xjVEmve11YnexTP8Um9BBtKgsB30BQUiVlZ\nTnZZZPt3ppweMyuF0GgHYLh8P+NdD/yJD2fBsMkLwm7yB0A7zXqds2c9icmC\ndwuwRdxUbLR4k74miHM8G02o3FB4h+2hOFQm/JiWUNj/+/3cMpe7mPeru+15\nNb3scfk7hDlGw6vqFzJw4z4zvQainnRdmcAzhcN+uA8Djrvbn/PF486XoosP\nNO0qWFA/CgWMZ42ty8ubx+a5l7mVtvLRbtRn2+ZNb5OWyFUOuyuXFgJlArAB\nBEFZ\r\n=nSa9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"bbe5769c556f797070c5281efeed3bd2b3f8110b","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.14.10","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"14.15.4","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.0_1619368513258_0.14064315645904757","host":"s3://npm-registry-packages"}},"1.14.1":{"name":"follow-redirects","version":"1.14.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.1","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"d9114ded0a1cfdd334e164e6662ad02bfd91ff43","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.1.tgz","fileCount":7,"integrity":"sha512-HWqDgT7ZEkqRzBvc2s64vSZ/hfOceEol3ac/7tKwzuvEyWx3/4UegXh5oBOIotkGsObyk3xznnSRVADBgWSQVg==","signatures":[{"sig":"MEYCIQDRsFbo66eEURm7pHOY2ypXCYqGl1QPlUUH3pPMCLcHwgIhAM3UZrA0LFpEfi+tT73SkTYd9DzBegBuxNmIDrb3BKaD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25260,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgl7XeCRA9TVsSAnZWagAASfAP/0szhwOKAKj3m9KyqlQU\nZRoK8sxVtIyHDw+E6z6pANy8ARz3D4h6DGY34aE2ogcztGG5+ZfOjeCIi9DL\n9ZrFBnBJEalM455b5bIIuD5wjKAUdkoGPkKCgOYhuuPTCPySvRK+RZc/14T1\n+1ovA6+wnod5zRO3tqAOnXQahP5WJGUhe8ac+7zK+UowgcFjpz/ETeeAvw10\n22yJyqoVPHrLFPqp700d0YwKHnoGqKkS4VaYqzZU2b4I8m5p6TR5fz8HcHr0\nSLy4pajJD2WkvUxPHBq9QqG/YVfKoAedSG2PNYI3C9JsDqRy5vjTd2EeocQk\nONilVAGIQJXCbs8622yyRjf364BEXoMtSBOwJKfgvenugC4y9Vl7iIDOMPFM\neifM0HLvh8bM6qWb8sEr+69jnvlXuzLIfAKqwkY/qR18MBfQztYD+nrUWMq7\nsbbm5xixSSGFoOENw8bEQP9B1V1NaGhU0uAmGcVk5iu7YLqLpbbgN+9uyvsd\nhvjUv2yEtFsueqJNO7i9+yeqoq/wl8FQ/46lZw62BP8/3HXP/fxqhBJ4epqi\n2OE02N7igtknriNQvcvX1HNN/dg/JzdwoRBerXKjhqn3xxpxBJKrE0DUHdWc\nVxLU/9eC93PocESmCk6AcMa3+Sxj6hVxSfF94k7W2gBZ28vmfLLxLNXdXhJu\nsgrB\r\n=lWxa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"889b0ebbcb1c90ef1941f0a72a8d1df922fb1d58","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"6.14.10","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"14.15.4","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.1_1620555229658_0.9441398766099356","host":"s3://npm-registry-packages"}},"1.14.2":{"name":"follow-redirects","version":"1.14.2","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.2","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"cecb825047c00f5e66b142f90fed4f515dec789b","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.2.tgz","fileCount":7,"integrity":"sha512-yLR6WaE2lbF0x4K2qE2p9PEXKLDjUjnR/xmjS3wHAYxtlsI9MLLBJUZirAHKzUZDGLxje7w/cXR49WOUo4rbsA==","signatures":[{"sig":"MEUCIDbWuqobkI6XUX/vR7gXkhCcvQYYrZZVwA4xz0v5wTEvAiEA4jOf4MTfdei5Z4RDLl1Dtca5iEiZtDQK8PlBs9U8BZg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25307,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhHPfaCRA9TVsSAnZWagAARFEQAIZXkqVz5Qof092aewlG\niMu/DyNB2SMfIxv25oz0Pi478sUT1UAX4gwVmLSEGtMx/kWmITeudGChlg7r\nKgHAxmGjKgFg6c+xnAFyWPqSpIu9xRTNOYmK3wtvXq3a2ujk9XuZoouaCWh2\nGzyPHTHhzN6NdzpRbXSEEFOYMNOgnWrfV4DOU/oLD3vAXGVaD7TJNNO3d74r\nSZ+ZYnLbGO6kJvl+0gJRIqpUSyd6pVUMhmRPtm8VPATiI5ucjTi/YuZWmduu\nLMB+5GMQcSegs74CciXN6VMzFwq7u1o36w7Z0S16MFVCNSb9MfA+L3VdRPln\n5vi6XZUytrMZOvPCNN7lE5RTHQuMOrLs+aBc1yJmINr6KjameVBHPBdZN1o0\nSe4iQQxdgL6Pp+NM0p7BbWcxSxyMTSFbF7eU+ThOFT2nVtqCJvy01wjJZW3p\nLC7lV1dqLU+zaxgYOR47lM+pMOi41VDMvhYxSWRhNtxkURydHyuLuVcbnQW8\nC2GCvcYyaEUsBDRJr3Gzol2DrxwXT72NL6o1e85waOHEjgH0NdIJXr/gmdbP\nBDKx5Ge4Nm//M+Kj9V3BBar0QRhXPgDEjc1qlqJ28Qmdy0UNH8jqOfM6arNo\nQex0G/0aiqHivKAVDiwod2rtoLn82qSBrjPeQun9uCmbsYCBpCl9hGMYN8Q9\nqOFv\r\n=Rp25\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"422890dae07034ae762b4a83f447833ac97b05dd","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"7.19.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.2_1629288410256_0.47113077699400807","host":"s3://npm-registry-packages"}},"1.14.3":{"name":"follow-redirects","version":"1.14.3","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.3","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"6ada78118d8d24caee595595accdc0ac6abd022e","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.3.tgz","fileCount":7,"integrity":"sha512-3MkHxknWMUtb23apkgz/83fDoe+y+qr0TdgacGIA7bew+QLBo3vdgEN2xEsuXNivpFy4CyDhBBZnNZOtalmenw==","signatures":[{"sig":"MEUCIQD+cTp8gLdg5hHVnGBU2iC36Lm6EU6DlEK6F2UNYRRKqAIgcCUv9SBULhu3eQ+HVpDzzr7kCSexsLJVs+qZJWSvnAI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25307,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhMNprCRA9TVsSAnZWagAAOkMP/3cT4tXWNsBGGkmf8OFG\n4s6RbNeG6beypGDFilqo3lkNoOs2Dp54uNWJQmUtR/QQu8FfdygXLGWsGiHQ\n4u8fKK0u31UYckGbKxm/RFUvP7u6cpARDWfTC0vMuVf06Tg3FG7ysO9xfzt8\nWwsdqW6aP0f6f7Ln67mVlSbwb9wgkvwzX36gjXtq3iO08WfKKPok7E8sOhzn\nZgX28vLml7TUE5g+S/eKsvCMyUJVYE7d4aVbMUlYqCmR7236r0S22DRrWqNV\nSS480dRS5f+ihd6tG6akZqyMUnAS9EgNMKoGUovercg0AVpcColFlPtEry6H\nedAiGV2aCrjpXNZLAM+3pFGCCiw/Ue9+LnLnRj44PnUUsPKZM3koGlwuKgFb\ns/NgtCsMY0tGGE6+270uBPVRIrUstG3v4RZCs2MH4Ju/gO4f2BsHmB+bDIu0\nEDlhL0AZ1P8pRiXA+KfLx09rQ7DE3TBnE6Hg6xJCx/utuAP60hQVnR9fsFHY\noJvQpUpHDctV9Ofhyvi3i9bS5ITshfq5yFyZ+vIIx/QgQzonoRUb1ss9DWps\nrj9deMHJyLtS0XibQoZJkJeEb4Dab2ch0Phn1xy8nAKtEG93zjKh9Zw0z+c+\nMGZYDJnWky828xIPC94MNkmdNrWG2OiM7Q8gX2cwoSAU8v9EMXjAhER5zuss\nfdp+\r\n=54z/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"f26c6c627106cb002fa39cfc327f5a541223a1cf","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"7.19.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.3_1630591595557_0.01770534876509111","host":"s3://npm-registry-packages"}},"1.14.4":{"name":"follow-redirects","version":"1.14.4","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.4","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"838fdf48a8bbdd79e52ee51fb1c94e3ed98b9379","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.4.tgz","fileCount":7,"integrity":"sha512-zwGkiSXC1MUJG/qmeIFH2HBJx9u0V46QGUe3YR1fXG8bXQxq7fLj0RjLZQ5nubr9qNJUZrH+xUcwXEoXNpfS+g==","signatures":[{"sig":"MEQCICl4Ywg5GVqglbrP/JLazhP/RjZ/6zSieQ0o1c2rRxtLAiAo5K1kO0VGc3ZHBJFLopVnGEasvNpMXkM2av+E8LNi5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25464,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQJPDCRA9TVsSAnZWagAAYoEP/RiK3yQGyNDnfSfs69+a\nd9LarFE+XhlUQHSyTxx9ivS949iN0hLKZvy7hiRZP4E7H0633vIQQ3mRpBlz\nQ9bE8hhUo7Dgpcj6kh7T6SmARanK/iqj8p7yuk//oP3XAExxNaXaScy8DCig\nltwmAEbbhEDJaME+/hbDVWev+euFVZ3GuJJ4YxnLRB1W4UWWxXsf9yDAf9mu\n6zmUCvCPzL33lDpbQAQAl3oU4Qc9ak+fpiSDb3HYQqbH/g+1+pjwO511rq1N\nJSTigaimMTfNQeJVGIur/mt7D8mViv8fHI96V4nM4RSsZZvnnA4FaTh74O9Z\n4pe379VT6YewwBOwODq1StGVy80wTQErq7KSVSzU/Zewk5kYDqhMpLGfnDue\nljbLtWYvc8HgsXXHofKjyQMtLSaF6nvR7gN8L1FJ/UIBvqnenTirMTfj2tiV\nM+jpb0QTEDJQYXbQ/x6qLwNpOhhj39i9afdYWihkPPWYxfoAL25yKakdk4x2\nYSAVahrBm5Phrl9b5fZ5gXANhvxunUP1mHo8niXSx5s9tuYF2swH5JVQ1A24\n4mXWcebnwTsFpcoaCrcOcP5ege0L5fiLsmPYcsAQK9UaszUTEKnzwOAyLnXR\nTqCeWMJmjLIro06wV9cEVIbmyv6RVWyf9pTkUF+xEZwkZSgrynNOYJZiQgbW\nDgHW\r\n=tT/r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"77e2a581e1d1811674b7b74745a9c20a5b939488","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"7.19.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.4_1631622083804_0.3454199755376193","host":"s3://npm-registry-packages"}},"1.14.5":{"name":"follow-redirects","version":"1.14.5","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.5","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"f09a5848981d3c772b5392309778523f8d85c381","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.5.tgz","fileCount":7,"integrity":"sha512-wtphSXy7d4/OR+MvIFbCVBDzZ5520qV8XfPklSN5QtxuMUJZ+b0Wnst1e1lCDocfzuCkHqj8k0FpZqO+UIaKNA==","signatures":[{"sig":"MEUCIQDwhRSiwXDiaNEhqgzO5+LgmSBD2+471wFB6yEuEXD08QIgeaDoJKlHCiNyAnOkWFPj5kAlyLff4lOGbjOggLqQ/r8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26446},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"d01ab7a5c5df3617c7a40a03de7af6427fdfac55","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"7.19.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.5_1635618572660_0.19128960737993905","host":"s3://npm-registry-packages"}},"1.14.6":{"name":"follow-redirects","version":"1.14.6","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.6","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"8cfb281bbc035b3c067d6cd975b0f6ade6e855cd","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.6.tgz","fileCount":7,"integrity":"sha512-fhUl5EwSJbbl8AR+uYL2KQDxLkdSjZGR36xy46AO7cOMTrCMON6Sa28FmAnC2tRTDbd/Uuzz3aJBv7EBN7JH8A==","signatures":[{"sig":"MEYCIQCDKJ+ZsTCFzrdBmDw9ksB7suwml1cUbq+NZgMYKi7mqAIhAPkB/fW5CO2v246qMwocnjB0Q9C8Ocs2AdSXpSjBIWdD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhsPcTCRA9TVsSAnZWagAA2voP/RRjLodx14aoOCmQrQhH\n/ihLOLn2uiTBpKwSAVa8M1jE2o8M1JTE2oX3ZzYqGS8jSRIGnJuWubAzHzZ6\nYrJ6EBFifmp6B0wGODU5Jux1YpmVaPe8jDnAbf3kLMiGuAylnq5KtlH1dsJL\nPtfkpGBorb75wJV1AGDx7dLWOatzKVx2lrV4DRTqHm61qhgBWuHQM4Iu55MY\nj1CsDxKF3PtVVv/y/U7c5oyxZ7SCrck16+1Xqf4zE+kYtC5W29QA1VEraZUw\nmjq8JdJT6/DKA5PH3TjlAa7C23LJRa1J7Xg7aNPCUHV6NORlq++LmNtzGnFC\nqig+ZHZz+s9iBlpdZKQVeTXyD8kw8oKRw117l7Cgd3Vgxk0O4u7bN9sKmTzH\nDMUyx4xLcBraUct5QQMCo6A2SYJBwPJR0T3p63RHMUklDdGk92lQOL8xLxcp\nx8GjTZYhlj2hfBpj3jO6T00pRrFJSIqqqhLrtQ5q2QH1YRNQAYfuEAVSPYQN\nqKVLA2R7Se/qowgbqyyGDwuYNDjcXZ59SaBDX46sgWz+b+4RbHUnN0J3VnhF\n3CnlRnj3bxqUKHXCdYlMmh1C2WeoXOd2IffvUG+riwY9Fmyn8wQOoGSIizj9\nc+V+C2EgwnYDiU9a4/Chn84VM5ug8cW+/x6BsXrgsMSsBAgzSpoLdhoWRWo1\nVTo4\r\n=2dZo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"6f5029ae1a0fdab4dc25f6379a5ee303c2319070","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"7.19.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.6_1638987539324_0.21392657142337512","host":"s3://npm-registry-packages"}},"1.14.7":{"name":"follow-redirects","version":"1.14.7","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.7","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"2004c02eb9436eee9a21446a6477debf17e81685","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.7.tgz","fileCount":7,"integrity":"sha512-+hbxoLbFMbRKDwohX8GkTataGqO6Jb7jGwpAlwgy2bIz25XtRm7KEzJM76R1WiNT5SwZkX4Y75SwBolkpmE7iQ==","signatures":[{"sig":"MEUCIQCwg0RzrEgFwAI8iVUcb6Z3NhjrZTlXJ54zhhYpqoAZwwIgWTmx3Z3i7TgZot17KtvGMuJCQxxoutcgq6dwrSU6Iho=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26531,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3GXCCRA9TVsSAnZWagAA30MP/1x31bX49Qe4PSWkU8Pe\nOO9jn8L5TTUy/zxgpESHbQNqu9iqjwB2fqV3eM+y4RIJQqo743xIqlLuTrEZ\nJ7jtZ2cYtfC7cikrkyk7FbjU5cNvJDz5DkAn1oAjtAGf0ONLIC6xTi7z8l7F\nSu84ijvggRIsKslUZq02CGV7IHA3nHPnLQlO8zpRDzxcRoFFvh+VNwjUxToK\nqZIGhiDxEzDkcP50O0ADaf6M+8Z7UjxLVT9snSj5HOfr5t5dSabZAYjnQGmR\nwJa3RFMe7y1AqTKWNmgGqG0Uc4JglzjQEGDjBgsJnsZwM8olpkMbOCpPMrzs\nHVUo6+2h8iQ7CWOh3CDVOkW7ZHrqb84h569T+fz+4EGVzvCW4U7/E2tqqSaf\necu5wfQSXo7XpTFctDhf8Cu+orxn3AV4PeCg6J3Tn9qwYs7DmF4aEr946Y1Z\n5D0TRA3GzbEsiq5hpJR16VOWb7emQRJSitU7guSlHWVhkPoOLpbaUhoMygWY\n/Q7wrFRHW6W2/HdvljH4cypfOCSODfD3OqCFTydAL7FlCzNhpdvOIXs40tIg\ndsUNVpTiUn8eXvHiWU4ksUk2km+7lGXnABKrTjS/pVWV4WtVP7Jno05AXEmJ\niCFiQp6NOI/2y+ZUUrp3NOxTBGv7bwlx0u+Af8AQkC0oOPZnuIylhw9X1LyB\nhjfc\r\n=hiDg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"2ede36d7c60d3acdcd324dcd99a9dbd52e4fb3a6","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"7.19.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.7_1641833922471_0.1774624366713229","host":"s3://npm-registry-packages"}},"1.14.8":{"name":"follow-redirects","version":"1.14.8","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.8","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"016996fb9a11a100566398b1c6839337d7bfa8fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.8.tgz","fileCount":7,"integrity":"sha512-1x0S9UVJHsQprFcEC/qnNzBLcIxsjAV905f/UkQxbclCsoTWlacCNOpQa/anodLl2uaEKFhfWOvM2Qg77+15zA==","signatures":[{"sig":"MEQCICm7jt/NC3sJ63hnib4jMMUJX6IodmlU4Di99maZQ84LAiAeLeSP8lnhx8xW89ujmWM2hIL9DV3ojiGEHViTeAC4dQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26615,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiAk44CRA9TVsSAnZWagAAxpcP/3Ttt+U5wftsrHl9MtJX\nDYqhbF7UnKI0cRmJeWhyyMVoSvFwR8GwRcaZTdSDxJZuIKmBnHmzJX7ayHoU\ndTVvu54Z88c4GTBR2PieECkNmmlaELIYfdDWAgyh91gNG1CHpevxFZ6DkCP8\nzwr1LWs9o2PhWv1LePXOCKThSV8YyFKLpS63IZJyHVI/qR8XPJGHoE91/7Nh\n9B5siTKze9Msdy7+wFk9GDYqoYRcjNEFjwlWtZ8O9AcblDbQVnNq0BelJw77\n+vqXEXe6yNsXy7O8v/3P4ZbbSQxS5rV1yLdEA7v5w+wUDnQdGJhctM86+8gN\nzhinPw8791AeEVXCtVaKjR5G8/A0x2fOmx7fvPd3EY6Zuz/XQp447FPlsSYy\nJIiZlvP1X96R4TQH4J+Tb0lyMH0ETvXJ/lSMGLvHpbtlKZOAoi9aE/bNZhRw\nDHbusqIWvLmXdhgJDIRjUIOcDYJukInQcScWK6nOErEWSGCEAMRkpMQFgMTp\nFbdnoQPELxy6jGNjTqAFD/Swkp2m4/h3+DMwfMLGUmIcFqB6uX60S18wbrnb\n0m7LksyOmSw3gnHRp92W3yOR/uTD+HmDyV/J6tuAgjEd2DlxR99ql4m4Fk5d\nWQqo4dK9GN/498d7UX4HS4p6mS8Ub1svVAdkJhatoPnIQZtK5bvqfNRBzha+\no1b4\r\n=orvh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"3d81dc3237b4ffe8b722bb3d1c70a7866657166e","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"7.19.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.8_1644318263681_0.9673580401644828","host":"s3://npm-registry-packages"}},"1.14.9":{"name":"follow-redirects","version":"1.14.9","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.14.9","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"dd4ea157de7bfaf9ea9b3fbd85aa16951f78d8d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.14.9.tgz","fileCount":7,"integrity":"sha512-MQDfihBQYMcyy5dhRDJUHcw7lb2Pv/TuE6xP1vyraLukNDHKbDxDNaOE3NbCAdKQApno+GPRyo1YAp89yCjK4w==","signatures":[{"sig":"MEUCIHxQjp45G/ewq3vflbhwsIjbWYlAgMQtiQfsfMoRXZfVAiEA8MD6uDUhtDqXmUVpfFME1Q08CyRdDXrNFQmOLwvO1Gc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiD2aAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmos8RAAjKAru9f01w1FJ+RfbbMiSjHpEef9S5wHGg0Zm1ArKbXmwrpV\r\nrbRMEEpq2+KUrOzJT5fwz0mTsRGALL0YdjNoaz0raGt1nAyWzgdaioir0124\r\n1TFvsm5f3XedflXUi1vMRdbwR6kEus2VH2FMI7rpJ5/ofBJcexostFM6ANI+\r\nc9LAK1R8dptPNofi0bOTMe3jLxHrz6xwX9jKkMpz77F4uLilzwpNmAy0bv6m\r\n1+HF2Ix9Hh+1t/HhB24ThjXkbDfbtUEdEVjDLrfe7RFPiqKaizf1LEswQLGS\r\nEDI4JW7ecNCVShHy2VCgqOlXIS/VQvAoudMYlRife2nnU044qvqUvvgprMlo\r\nW6Db9J2vaK+oNbDupFK2zva/vKl/iyHg1V8zGdU2txdhJy8bArWf6g4xooEP\r\nA5ntptdon+0i9MeYWBdvqbWRUFxOdhsk8PGVqu6F6tiU+dqb1BxZGvgxPxgY\r\nHiM7MhBCdx7I7ksvcGQUvsQNwIz0QhuqUX72X2FYArauyJPx+0I0PAAP3+OL\r\nUrZHj06BZWI/+WWgfm5/5JrC79MSQzwZF2ud/Xf7MEPF54k1RyjXh9hfXN2X\r\nq3vEM/YORmp+/Wh5L78ZGa+EUDpSdybyXjYTwFJWSu0688wbDBDxC1OOYrAD\r\n+DHtNEdGxClGC67Sl+f/r5bayO3gn4Ylaio=\r\n=1Gmf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"13136e95bbe23cabbeaeb74bd0c933aa98dd9b96","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"8.5.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.5.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.14.9_1645176448431_0.25590024878711715","host":"s3://npm-registry-packages"}},"1.15.0":{"name":"follow-redirects","version":"1.15.0","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.0","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"06441868281c86d0dda4ad8bdaead2d02dca89d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.0.tgz","fileCount":7,"integrity":"sha512-aExlJShTV4qOUOL7yF1U5tvLCB0xQuudbf6toyYA0E/acBNw71mvjFTnLaRp50aQaYocMR0a/RMMBIHeZnGyjQ==","signatures":[{"sig":"MEYCIQCekpxCiLcGcUQNMTj7C78QfVKXSNFv//kSQN2hq/tSVwIhAN0C9zSi+Hnvo0xNJyJ0JmyFkYTv4BJ+DojUcNXwmw0J","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicZ7/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrMNw/+MYS4c3GgbuLDVcvNHe951oMMjcz90vMhExGYJPaP5qiiMman\r\nAchseBuObgqZkjbk8lFVhBWETHD5JwhZjxXBpwErAZ05QlVVhiMGZSb/WcRX\r\nrIz1thF7bOM91hahexlncxZ9y0bYtefVJjJ69Gl7O0jAM/T4DvQALSq9oZVN\r\nuswwjX8JCavUIoNeSluj6eUbd6+BSQ/EsxKVGwdverxLxkznatX1kxEfjuOS\r\nHp+irWMZ35+S2zrM4D/dB/xnN+z/UacP9I50kA9Bv+Xvro5KO//uKHg7b7ka\r\nf+QPbVUC9fxWN5IBymkJ4Od7/CJLBUg8COa1CETNG9PI/9D2Uu0vb2KmAcqR\r\nkH99fYjJUYeMDvAmz89QVKpKB6pQSGzvNZXtDAtB4k9uy/68cScZvB35lboc\r\nupOfXKlnMzcaDbr0RNje/plOyE+2Zmq7eeO0kk0thc0aByKhrNh9xUSEjkZZ\r\nsNq1AeQSWGMb9X/YpQiKbV6Oeaxo8URlyCIYd9DgondssP/1nufCMqsN1fu2\r\ny/Z9wstLRSGB3PJG2B+gDh7FENz/zhdPGTzYshb1dbC0F8hET6u4KNWWLnT2\r\njgfmhjWlOmxqznsTuqCdineybfQhY/3tMhUVNequ8CEuXmv/7RXTxwmAZLsk\r\nqSK+9Axc9LH/FHiB3vNlZJ47qLkAzy3I1z4=\r\n=DwhV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"22e81fc37132941fb83939d1dc4c2282b5c69521","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"8.3.1","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"16.14.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.0_1651613439061_0.5798571521657423","host":"s3://npm-registry-packages"}},"1.15.1":{"name":"follow-redirects","version":"1.15.1","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.1","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"0ca6a452306c9b276e4d3127483e29575e207ad5","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.1.tgz","fileCount":7,"integrity":"sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==","signatures":[{"sig":"MEYCIQD8+D3ERHrgrBJZ6dMYXV97bsd+Swf1Idnepd0vozO5jAIhAOFsJSLhmlRtzs8ZpZ+1v8S8eXXqc4TlFAOQEjh7NU+V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27725,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJikAwFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoHUBAAhW5HKk+iXKh9Ag0VT6Ztnz5iPTQzpK6jzYcdoyeH9FUcO3al\r\n91AlwparL+5kaeEfWTtkERcv0PYjoF4hd1COiw22HJdTXFqh1mGt/3f/o2eM\r\nMt10Oe/14GnkwrruMPAHTV9yRJxE1YleCcp+81XPIe85EpDq1sf3+vhlop32\r\nTO5MRGTS5kLW8bVMaxeMHIW1Gv4fiJZR18A5TnZvbtRn0gUwzxtJWsh21spb\r\nd+VF+i2pu/Mj1lo/I+gd930IG9BLUkm1yC+bzQHqslF96KV4slK/a4V4l2RS\r\n3sr1HDXRa7DLAURmKpPK0Fdr24vcpe4mNnG9iX4G5TjNckKHubq1OQTTXyzL\r\n1aw0S3MlB9dF9az4RXCWfeceA0ePeeNm4eFTb+0UwFITsA/81Ecjb6CFQASs\r\nvOqD0eFQ1Xu2btIGyRrVWomX2a4J/X3ncQnWUh6KVL7izRHmqvwK8uCI5BwA\r\npquHZnaXDMVJPs8vpfTkqncGEumXvsTtpgSq+uJPvR340MDPeT19Ht5QSOAU\r\n0DhMfBZA4NX12n2OEmhK5oWgiUzaUsYDqVtcOcyUsNOAAGOYdCUxgVw+ddX5\r\no47wWwtfRARNwtuxB2ZNC8HVnIBXxpHU3ulspqR8NM9pKPWZ0lz7PQLkKsK2\r\n5FVRiu17P+85/uoHKNDw1UC9QcVe+mmdltQ=\r\n=FLmP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_from":".","_shasum":"0ca6a452306c9b276e4d3127483e29575e207ad5","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"62a551cbf7d4d3917c532d0b87ca77ef983f44c1","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"3.10.10","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"6.17.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.1_1653607429692_0.8252722442460141","host":"s3://npm-registry-packages"}},"1.15.2":{"name":"follow-redirects","version":"1.15.2","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.2","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"b460864144ba63f2681096f274c4e57026da2c13","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.2.tgz","fileCount":7,"integrity":"sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==","signatures":[{"sig":"MEQCIH4XAQwrMAPYIbhSXjaWTQfQPE6t+qFnTAZvgGB+EfiYAiBPrX3hxSBGIkcJGoWxvmNoID8sCT01g0Hsxqzd84dT7g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28287,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIJvzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmozIA/+Nzxm5iFxjz2GvCp4jWfJdfdqbtwLZo8aRyNWayKWhw6OX8Tx\r\n7J0OmhZfwdK7ObAD13Ujvx4GVYJ0LEN3QYTjI0z3U5ZfKzhewAaZQ6Mr/jqG\r\ngSQjlnzvWubDkvopKs7jWKvkVhajRgFvuMX3fbSJ8xaOhyjtqB+BOaCSG/R0\r\nr9lM6UzqtZAqMQ5BMdj/POt0/GejE6kS9UoPclN4qCVNm5hi+a3Hy0z5qy6E\r\nvfuguKx1lWET7YVG28yzmGO/8qSspxQ+Eeeq9dLBl8WUbXqf/L8ErM3o4ku0\r\nyGpGPr7dM61AifiBuuz89MrKsLRxcuzo2CEnowVqyRzjWjbNi3JhYEZagVAa\r\nlw3ycCvB2WRw8Ftqw7mqvcRY6XpAKtO2WcyuQfWX0EtFYC9+79Xfcna7Y/vc\r\nfoxJwHjaJ4Fdh9LNwzyiPPdAyhON3nLoUo+v9BtQmkhJR8H5jE2f7Ujlo925\r\nL8JvitdJYzSSP/+1pe23Tsq+72vKxa+/giwJnLrSVdZYvlrws5ydghp+GtXC\r\n6sN3kff06dKLCRFTy/Cq5L6HcgPOVhPkSOu2qxye3c4tjpR7c9sv3ixocIXz\r\nGEj5/3oFM1/HyhWPYe7L24jMABfOGMonJ+Ef0E693oO1pt3B11eHx5kpDDVZ\r\namgsj6hdNXc6Q+o87DcwPRYh++3k1BGIg1k=\r\n=Ht8q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"96552371eeec58567850d0288ba793274d1ca50b","scripts":{"lint":"eslint *.js test","test":"npm run lint && npm run mocha","mocha":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"8.18.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.2_1663081459173_0.11989730084869654","host":"s3://npm-registry-packages"}},"1.15.3":{"name":"follow-redirects","version":"1.15.3","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.3","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"fe2f3ef2690afce7e82ed0b44db08165b207123a","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.3.tgz","fileCount":7,"integrity":"sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==","signatures":[{"sig":"MEYCIQC7xeXMrdBwLd8GuJHU1cCXApk4ogerPWuSw9yKPv2/XAIhAJbSnYkvR9moB3Mt7p/Vcko+mit8VEKutJoIgXx3Tpnv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28600},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"192dbe7ce671ecad813c074bffe3b3f5d3680fee","scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"10.1.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"20.7.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.3_1695149507836_0.9807354401920754","host":"s3://npm-registry-packages"}},"1.15.4":{"name":"follow-redirects","version":"1.15.4","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.4","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"cdc7d308bf6493126b17ea2191ea0ccf3e535adf","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.4.tgz","fileCount":7,"integrity":"sha512-Cr4D/5wlrb0z9dgERpUL3LrmPKVDsETIJhaCMeDfuFYcqa5bldGV6wBsAN6X/vxlXQtFBMrXdXxdL8CbDTGniw==","signatures":[{"sig":"MEUCIHwQLswB0gd6USqvSbhJ52YhIzr0cx9Glpz4LAjUs3h2AiEAtY80IzJUF7RFohl5w6y7+Z01ElWXWWC1wAZx47QE1Kw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29352},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"65858205e59f1e23c9bf173348a7a7cbb8ac47f5","scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"8.18.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.4_1703957284086_0.025894509091784146","host":"s3://npm-registry-packages"}},"1.15.5":{"name":"follow-redirects","version":"1.15.5","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.5","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"54d4d6d062c0fa7d9d17feb008461550e3ba8020","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.5.tgz","fileCount":7,"integrity":"sha512-vSFWUON1B+yAw1VN4xMfxgn5fTUiaOzAJCKBwIIgT/+7CuGy9+r+5gITvP62j3RmaD5Ph65UaERdOSRGUzZtgw==","signatures":[{"sig":"MEYCIQCjOhBgtA79t9mB36x4YR7ncxlc7CDm8Nh1cojfmn7BBAIhAJ5gQLSj/bwIx+4TnBQb2zE59vf3BUIWriSZ9P0yjZIA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29362},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"b1677ce00110ee50dc5da576751d39b281fc4944","scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"8.18.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.5_1705048872586_0.35991654942305296","host":"s3://npm-registry-packages"}},"1.15.6":{"name":"follow-redirects","version":"1.15.6","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.6","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"7f815c0cda4249c74ff09e95ef97c23b5fd0399b","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.6.tgz","fileCount":7,"integrity":"sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==","signatures":[{"sig":"MEQCIEXl4L+RQsXN6PW8uitrbFGeacF8kztl5Kh/AUpRSXC6AiAkjYflH49mf1aND4ZQuzNKm1RGNz1c2sjh82Qf13laMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29373},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"35a517c5861d79dc8bff7db8626013d20b711b06","scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"8.18.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.6_1710434278149_0.9378617732465675","host":"s3://npm-registry-packages"}},"1.15.7":{"name":"follow-redirects","version":"1.15.7","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.7","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"87248a048fc4eeebfb2389d6aef79028da179690","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.7.tgz","fileCount":8,"integrity":"sha512-aAW9al/NMw4COcZnwgUaG8kAjBUXq/El+1R11e9RDHAIlxa1fb1b5SP0K6BbMoNgWdmJ/kXAwoTlVDlUN3OTDw==","signatures":[{"sig":"MEMCIFD8Do03NJTEX+LCWxNbTKq4xGAbeDMl0tJx+pM4AKE7Ah9Dh8qCuEqD6K7Q96DeGOwhtBcpaSNUU9DfDl7ho4Ie","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30246},"main":"index.js","browser":"nope.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"760757f7b75cce429604492d91649cbbd473c8d4","scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"deprecated":"Browser detection issues fixed in v1.15.9","repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"8.18.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.7_1725391700578_0.21589694048494112","host":"s3://npm-registry-packages"}},"1.15.8":{"name":"follow-redirects","version":"1.15.8","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.8","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"ae67b97ae32e0a7b36066a5448938374ec18d13d","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.8.tgz","fileCount":8,"integrity":"sha512-xgrmBhBToVKay1q2Tao5LI26B83UhrB/vM1avwVSDzt8rx3rO6AizBAaF46EgksTVr+rFTQaqZZ9MVBfUe4nig==","signatures":[{"sig":"MEUCIH5rT9snCnlsQ4UV61znYrcXlVnj9WypJtK9IgobluaoAiEA2zdoH92a7To9AjJiYYE/1UJtbOq+yDUfg24jFX7oV0Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30023},"main":"index.js","browser":"nope.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"62558f0cd106195f4c17ece3ad255eb93487d37f","scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"deprecated":"Browser detection issues fixed in v1.15.9","repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"10.8.2","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"22.6.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.8_1725399862453_0.26606691502126534","host":"s3://npm-registry-packages"}},"1.15.9":{"name":"follow-redirects","version":"1.15.9","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.9","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"a604fa10e443bf98ca94228d9eebcc2e8a2c8ee1","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.9.tgz","fileCount":7,"integrity":"sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==","signatures":[{"sig":"MEUCIQD/Er/mWZNnUc1I6Y5vpycybunw0uETCSF7C6++MZcatQIgCqjsjDkdTUprVFrfkI6Mrxg3gI1ymc1T8bLU8F4f6r0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29918},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"e4e55c77b2d849280d105943f49f42e0c735d05d","scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"10.8.2","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"_nodeVersion":"22.6.0","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.9_1725612993908_0.9585003512120172","host":"s3://npm-registry-packages"}},"1.15.10":{"name":"follow-redirects","version":"1.15.10","keywords":["http","https","url","redirect","client","location","utility"],"author":{"url":"https://ruben.verborgh.org/","name":"Ruben Verborgh","email":"ruben@verborgh.org"},"license":"MIT","_id":"follow-redirects@1.15.10","maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"contributors":[{"url":"http://www.syskall.com","name":"Olivier Lalonde","email":"olalonde@gmail.com"},{"name":"James Talmage","email":"james@talmage.io"}],"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"dist":{"shasum":"1e23a287c79cf794cea91e5c81075bfdd75da07c","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.10.tgz","fileCount":7,"integrity":"sha512-V7O/fFKM539IC2bweloFWuoiJ9OtI3W2uIqJPWM8IT5xxNyt73QtvVqmSpcDmk07ivmmlKB+rRY0vpQjIYNtKw==","signatures":[{"sig":"MEUCIQD9/0PDlnWttkKuEUm68ccaO+n1nn65Cm4S4LJhqpx5KQIgEsJNT5wVOmUmvR4IYk95M2o4B//g59hKyWyhsFC4I00=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":29943},"main":"index.js","engines":{"node":">=4.0"},"funding":[{"url":"https://github.com/sponsors/RubenVerborgh","type":"individual"}],"gitHead":"6e389ba094beec211a8847788a146917a16c1bdb","scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"repository":{"url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git","type":"git"},"_npmVersion":"10.7.0","description":"HTTP and HTTPS modules that follow redirects.","directories":{},"sideEffects":false,"_nodeVersion":"20.15.1","_hasShrinkwrap":false,"devDependencies":{"nyc":"^14.1.1","lolex":"^3.1.0","mocha":"^6.0.2","eslint":"^5.16.0","express":"^4.16.4","concat-stream":"^2.0.0"},"peerDependenciesMeta":{"debug":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/follow-redirects_1.15.10_1753948175071_0.09403694571948584","host":"s3://npm-registry-packages-npm-production"}},"1.15.11":{"name":"follow-redirects","version":"1.15.11","description":"HTTP and HTTPS modules that follow redirects.","license":"MIT","main":"index.js","engines":{"node":">=4.0"},"scripts":{"lint":"eslint *.js test","test":"nyc mocha"},"repository":{"type":"git","url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git"},"homepage":"https://github.com/follow-redirects/follow-redirects","bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"keywords":["http","https","url","redirect","client","location","utility"],"author":{"name":"Ruben Verborgh","email":"ruben@verborgh.org","url":"https://ruben.verborgh.org/"},"contributors":[{"name":"Olivier Lalonde","email":"olalonde@gmail.com","url":"http://www.syskall.com"},{"name":"James Talmage","email":"james@talmage.io"}],"funding":[{"type":"individual","url":"https://github.com/sponsors/RubenVerborgh"}],"peerDependenciesMeta":{"debug":{"optional":true}},"devDependencies":{"concat-stream":"^2.0.0","eslint":"^5.16.0","express":"^4.16.4","lolex":"^3.1.0","mocha":"^6.0.2","nyc":"^14.1.1"},"_id":"follow-redirects@1.15.11","gitHead":"21ef28a544c5e57f4c34b8476d75f2144609a1eb","_nodeVersion":"20.15.1","_npmVersion":"10.7.0","dist":{"integrity":"sha512-deG2P0JfjrTxl50XGCDyfI97ZGVCxIpfKYmfyrQ54n5FO/0gfIES8C/Psl6kWVDolizcaaxZJnTS0QSMxvnsBQ==","shasum":"777d73d72a92f8ec4d2e410eb47352a56b8e8340","tarball":"https://mirrors.huaweicloud.com/repository/npm/follow-redirects/-/follow-redirects-1.15.11.tgz","fileCount":7,"unpackedSize":29919,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCp0wHfEAs8z1imIawWnZQ3AuOkTQ7qVwHFHyiioJ5pXgIgO0/qwdEQ7lis1LtsgFy78J8dFXUfcHOrbUpYm76rzDI="}]},"_npmUser":{"name":"rubenverborgh","email":"ruben@verborgh.org"},"directories":{},"maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/follow-redirects_1.15.11_1753966495535_0.7105333975523067"},"_hasShrinkwrap":false}},"time":{"created":"2012-11-15T22:23:37.885Z","modified":"2025-07-31T12:54:55.894Z","0.0.1":"2012-11-15T22:23:44.078Z","0.0.2":"2012-11-21T00:14:20.978Z","0.0.3":"2012-11-29T08:19:21.319Z","0.0.4":"2015-07-01T14:43:59.128Z","0.0.5":"2015-07-01T15:27:15.970Z","0.0.6":"2015-07-04T13:26:09.166Z","0.0.7":"2015-09-10T01:41:18.073Z","0.1.0":"2016-04-10T19:31:39.368Z","0.2.0":"2016-06-06T22:00:05.075Z","0.3.0":"2016-10-20T15:49:08.939Z","1.0.0":"2016-10-23T16:09:54.517Z","1.1.0":"2016-11-06T16:44:38.542Z","1.2.0":"2016-12-07T21:50:56.326Z","1.2.1":"2016-12-18T12:52:48.546Z","1.2.2":"2017-03-09T21:53:54.031Z","1.2.3":"2017-03-10T16:51:22.410Z","1.2.4":"2017-06-21T19:39:27.920Z","1.2.5":"2017-10-05T17:04:14.010Z","1.2.6":"2017-11-22T10:35:02.216Z","1.3.0":"2018-01-05T18:57:24.272Z","1.4.0":"2018-01-21T21:55:51.028Z","1.4.1":"2018-01-24T00:42:40.382Z","1.5.0":"2018-05-19T16:17:27.946Z","1.5.1":"2018-07-05T20:44:53.010Z","1.5.2":"2018-08-01T18:34:57.855Z","1.5.3":"2018-08-13T11:15:32.833Z","1.5.4":"2018-08-13T13:18:06.652Z","1.5.5":"2018-08-13T18:02:14.290Z","1.5.6":"2018-08-21T01:44:52.160Z","1.5.7":"2018-08-22T18:02:41.148Z","1.5.8":"2018-09-11T19:25:50.658Z","1.5.9":"2018-10-09T16:01:45.434Z","1.5.10":"2018-11-19T21:25:49.948Z","1.6.0":"2018-12-25T22:27:34.053Z","1.6.1":"2019-01-03T10:24:43.194Z","1.7.0":"2019-02-13T21:40:42.432Z","1.8.0":"2019-08-27T11:10:39.307Z","1.8.1":"2019-08-27T17:37:53.351Z","1.9.0":"2019-09-06T13:12:12.301Z","1.9.1":"2020-01-25T23:54:34.866Z","1.10.0":"2020-01-26T23:35:59.450Z","1.11.0":"2020-03-29T10:54:23.756Z","1.12.0":"2020-06-16T20:37:26.684Z","1.12.1":"2020-06-18T22:37:14.802Z","1.13.0":"2020-08-10T11:41:11.024Z","1.13.1":"2020-12-13T16:04:55.785Z","1.13.2":"2021-01-25T20:31:43.071Z","1.13.3":"2021-02-27T14:41:14.164Z","1.14.0":"2021-04-25T16:35:13.455Z","1.14.1":"2021-05-09T10:13:49.823Z","1.14.2":"2021-08-18T12:06:50.453Z","1.14.3":"2021-09-02T14:06:35.708Z","1.14.4":"2021-09-14T12:21:23.946Z","1.14.5":"2021-10-30T18:29:32.810Z","1.14.6":"2021-12-08T18:18:59.483Z","1.14.7":"2022-01-10T16:58:42.832Z","1.14.8":"2022-02-08T11:04:24.019Z","1.14.9":"2022-02-18T09:27:28.602Z","1.15.0":"2022-05-03T21:30:39.266Z","1.15.1":"2022-05-26T23:23:49.868Z","1.15.2":"2022-09-13T15:04:19.298Z","1.15.3":"2023-09-19T18:51:48.020Z","1.15.4":"2023-12-30T17:28:04.328Z","1.15.5":"2024-01-12T08:41:12.752Z","1.15.6":"2024-03-14T16:37:58.315Z","1.15.7":"2024-09-03T19:28:20.798Z","1.15.8":"2024-09-03T21:44:22.642Z","1.15.9":"2024-09-06T08:56:34.070Z","1.15.10":"2025-07-31T07:49:35.248Z","1.15.11":"2025-07-31T12:54:55.711Z"},"bugs":{"url":"https://github.com/follow-redirects/follow-redirects/issues"},"author":{"name":"Ruben Verborgh","email":"ruben@verborgh.org","url":"https://ruben.verborgh.org/"},"license":"MIT","homepage":"https://github.com/follow-redirects/follow-redirects","keywords":["http","https","url","redirect","client","location","utility"],"repository":{"type":"git","url":"git+ssh://git@github.com/follow-redirects/follow-redirects.git"},"description":"HTTP and HTTPS modules that follow redirects.","contributors":[{"name":"Olivier Lalonde","email":"olalonde@gmail.com","url":"http://www.syskall.com"},{"name":"James Talmage","email":"james@talmage.io"}],"maintainers":[{"name":"rubenverborgh","email":"ruben@verborgh.org"},{"name":"olalonde","email":"olalonde@gmail.com"}],"readme":"## Follow Redirects\n\nDrop-in replacement for Node's `http` and `https` modules that automatically follows redirects.\n\n[![npm version](https://img.shields.io/npm/v/follow-redirects.svg)](https://www.npmjs.com/package/follow-redirects)\n[![Build Status](https://github.com/follow-redirects/follow-redirects/workflows/CI/badge.svg)](https://github.com/follow-redirects/follow-redirects/actions)\n[![Coverage Status](https://coveralls.io/repos/follow-redirects/follow-redirects/badge.svg?branch=master)](https://coveralls.io/r/follow-redirects/follow-redirects?branch=master)\n[![npm downloads](https://img.shields.io/npm/dm/follow-redirects.svg)](https://www.npmjs.com/package/follow-redirects)\n[![Sponsor on GitHub](https://img.shields.io/static/v1?label=Sponsor&message=%F0%9F%92%96&logo=GitHub)](https://github.com/sponsors/RubenVerborgh)\n\n`follow-redirects` provides [request](https://nodejs.org/api/http.html#http_http_request_options_callback) and [get](https://nodejs.org/api/http.html#http_http_get_options_callback)\n methods that behave identically to those found on the native [http](https://nodejs.org/api/http.html#http_http_request_options_callback) and [https](https://nodejs.org/api/https.html#https_https_request_options_callback)\n modules, with the exception that they will seamlessly follow redirects.\n\n```javascript\nconst { http, https } = require('follow-redirects');\n\nhttp.get('http://bit.ly/900913', response => {\n response.on('data', chunk => {\n console.log(chunk);\n });\n}).on('error', err => {\n console.error(err);\n});\n```\n\nYou can inspect the final redirected URL through the `responseUrl` property on the `response`.\nIf no redirection happened, `responseUrl` is the original request URL.\n\n```javascript\nconst request = https.request({\n host: 'bitly.com',\n path: '/UHfDGO',\n}, response => {\n console.log(response.responseUrl);\n // 'http://duckduckgo.com/robots.txt'\n});\nrequest.end();\n```\n\n## Options\n### Global options\nGlobal options are set directly on the `follow-redirects` module:\n\n```javascript\nconst followRedirects = require('follow-redirects');\nfollowRedirects.maxRedirects = 10;\nfollowRedirects.maxBodyLength = 20 * 1024 * 1024; // 20 MB\n```\n\nThe following global options are supported:\n\n- `maxRedirects` (default: `21`) – sets the maximum number of allowed redirects; if exceeded, an error will be emitted.\n\n- `maxBodyLength` (default: 10MB) – sets the maximum size of the request body; if exceeded, an error will be emitted.\n\n### Per-request options\nPer-request options are set by passing an `options` object:\n\n```javascript\nconst url = require('url');\nconst { http, https } = require('follow-redirects');\n\nconst options = url.parse('http://bit.ly/900913');\noptions.maxRedirects = 10;\noptions.beforeRedirect = (options, response, request) => {\n // Use this to adjust the request options upon redirecting,\n // to inspect the latest response headers,\n // or to cancel the request by throwing an error\n\n // response.headers = the redirect response headers\n // response.statusCode = the redirect response code (eg. 301, 307, etc.)\n\n // request.url = the requested URL that resulted in a redirect\n // request.headers = the headers in the request that resulted in a redirect\n // request.method = the method of the request that resulted in a redirect\n if (options.hostname === \"example.com\") {\n options.auth = \"user:password\";\n }\n};\nhttp.request(options);\n```\n\nIn addition to the [standard HTTP](https://nodejs.org/api/http.html#http_http_request_options_callback) and [HTTPS options](https://nodejs.org/api/https.html#https_https_request_options_callback),\nthe following per-request options are supported:\n- `followRedirects` (default: `true`) – whether redirects should be followed.\n\n- `maxRedirects` (default: `21`) – sets the maximum number of allowed redirects; if exceeded, an error will be emitted.\n\n- `maxBodyLength` (default: 10MB) – sets the maximum size of the request body; if exceeded, an error will be emitted.\n\n- `beforeRedirect` (default: `undefined`) – optionally change the request `options` on redirects, or abort the request by throwing an error.\n\n- `agents` (default: `undefined`) – sets the `agent` option per protocol, since HTTP and HTTPS use different agents. Example value: `{ http: new http.Agent(), https: new https.Agent() }`\n\n- `trackRedirects` (default: `false`) – whether to store the redirected response details into the `redirects` array on the response object.\n\n\n### Advanced usage\nBy default, `follow-redirects` will use the Node.js default implementations\nof [`http`](https://nodejs.org/api/http.html)\nand [`https`](https://nodejs.org/api/https.html).\nTo enable features such as caching and/or intermediate request tracking,\nyou might instead want to wrap `follow-redirects` around custom protocol implementations:\n\n```javascript\nconst { http, https } = require('follow-redirects').wrap({\n http: require('your-custom-http'),\n https: require('your-custom-https'),\n});\n```\n\nSuch custom protocols only need an implementation of the `request` method.\n\n## Browser Usage\n\nDue to the way the browser works,\nthe `http` and `https` browser equivalents perform redirects by default.\n\nBy requiring `follow-redirects` this way:\n```javascript\nconst http = require('follow-redirects/http');\nconst https = require('follow-redirects/https');\n```\nyou can easily tell webpack and friends to replace\n`follow-redirect` by the built-in versions:\n\n```json\n{\n \"follow-redirects/http\" : \"http\",\n \"follow-redirects/https\" : \"https\"\n}\n```\n\n## Contributing\n\nPull Requests are always welcome. Please [file an issue](https://github.com/follow-redirects/follow-redirects/issues)\n detailing your proposal before you invest your valuable time. Additional features and bug fixes should be accompanied\n by tests. You can run the test suite locally with a simple `npm test` command.\n\n## Debug Logging\n\n`follow-redirects` uses the excellent [debug](https://www.npmjs.com/package/debug) for logging. To turn on logging\n set the environment variable `DEBUG=follow-redirects` for debug output from just this module. When running the test\n suite it is sometimes advantageous to set `DEBUG=*` to see output from the express server as well.\n\n## Authors\n\n- [Ruben Verborgh](https://ruben.verborgh.org/)\n- [Olivier Lalonde](mailto:olalonde@gmail.com)\n- [James Talmage](mailto:james@talmage.io)\n\n## License\n\n[MIT License](https://github.com/follow-redirects/follow-redirects/blob/master/LICENSE)\n","readmeFilename":"README.md","users":{"eklem":true,"g120hbq":true,"poginni":true,"alejcerro":true,"edwardxyt":true,"lababygirl":true,"shentengtu":true,"tarkeshwar":true,"antongorodezkiy":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/2d/60/7117ac83b89fdd8a82a63e5b2f78b51a19aaa5f9216fa173c4dc559c8252f176d994fb38e46c686e6c3c2197f7bd33912405f4ad473aa8e5ca3463d8b972 b/frontend/.npm-cache/_cacache/content-v2/sha512/2d/60/7117ac83b89fdd8a82a63e5b2f78b51a19aaa5f9216fa173c4dc559c8252f176d994fb38e46c686e6c3c2197f7bd33912405f4ad473aa8e5ca3463d8b972 new file mode 100644 index 0000000..a5e7223 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/2d/60/7117ac83b89fdd8a82a63e5b2f78b51a19aaa5f9216fa173c4dc559c8252f176d994fb38e46c686e6c3c2197f7bd33912405f4ad473aa8e5ca3463d8b972 @@ -0,0 +1 @@ +{"_id":"hasown","_rev":"11-a074973674b38963c608b6224deaaf66","name":"hasown","description":"A robust, ES3 compatible, \"has own property\" predicate.","dist-tags":{"latest":"2.0.2"},"versions":{"1.0.1":{"name":"hasown","version":"1.0.1","description":"JavaScript curried hasOwn helper","main":"index.js","scripts":{"test":"make test","test-w":"make test-w","test-debug":"mocha --debug-brk"},"devDependencies":{"mocha":"~1.21.0","should":"~4.0.4"},"repository":{"type":"git","url":"git://github.com/radubrehar/hasown.git"},"keywords":["own","property","hasOwn","properties","object","key"],"author":{"name":"Radu Brehar"},"license":"MIT","bugs":{"url":"https://github.com/radubrehar/has-own/issues"},"_id":"hasown@1.0.1","dist":{"shasum":"b64ff1570673ba06cc5d0183c0a4f0b5b1bd6459","tarball":"https://mirrors.huaweicloud.com/repository/npm/hasown/-/hasown-1.0.1.tgz","integrity":"sha512-My8IVgPaNw1TPrcOtLxG5N2BQJUr2YYI8a3ei3Njx4QIZ+WzEkvLQ4jySrcy6YNfq1JwHpyimb4p2Rw5IuE/SA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC2PWvzNlWQHInYuUclgwlqTxpUbJxAWKeX9B4eBbEVdAIgMiAZHo+4GgV/pDaqJvxagk93ulJYd5IJcFBleF46caM="}]},"_from":".","_npmVersion":"1.3.6","_npmUser":{"name":"radubrehar","email":"radu@evanghelic.ro"},"maintainers":[{"name":"radubrehar","email":"radu@evanghelic.ro"}],"directories":{}},"2.0.0":{"name":"hasown","version":"2.0.0","description":"A robust, ES3 compatible, \"has own property\" predicate.","main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated && npm run emit-types","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"npm run tsc","preemit-types":"rm -f *.ts *.ts.map test/*.ts test/*.ts.map","emit-types":"npm run tsc -- --noEmit false --emitDeclarationOnly","pretest":"npm run lint","tsc":"tsc -p .","tests-only":"nyc tape 'test/**/*.js'","test":"npm run tests-only","posttest":"aud --production","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/inspect-js/hasOwn.git"},"keywords":["has","hasOwnProperty","hasOwn","has-own","own","has","property","in","javascript","ecmascript"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/inspect-js/hasOwn/issues"},"homepage":"https://github.com/inspect-js/hasOwn#readme","dependencies":{"function-bind":"^1.1.2"},"devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/function-bind":"^1.1.9","@types/mock-property":"^1.0.1","@types/tape":"^5.6.3","aud":"^2.0.3","auto-changelog":"^2.4.0","eslint":"=8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","mock-property":"^1.0.2","npmignore":"^0.3.0","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.1","typescript":"^5.3.0-dev.20231019"},"engines":{"node":">= 0.4"},"testling":{"files":"test/index.js"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows","test","!*.d.ts","!*.d.ts.map"]},"_id":"hasown@2.0.0","gitHead":"1237980ed6c3915c5c3ba996345289546bdaebef","types":"./index.d.ts","_nodeVersion":"21.0.0","_npmVersion":"10.2.0","dist":{"integrity":"sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==","shasum":"f4c513d454a57b7c7e1650778de226b11700546c","tarball":"https://mirrors.huaweicloud.com/repository/npm/hasown/-/hasown-2.0.0.tgz","fileCount":11,"unpackedSize":10837,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHEMS61n5pjHhGQuuWvV31D+pe/OiLmR6TMc3v1yh0kBAiEA8SQoSfqGFGGm6/ZJBXPQm6o8RaFI1/UzrWvqAd3xyAg="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"radubrehar","email":"radu@jslog.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/hasown_2.0.0_1697864055249_0.5993234708355475"},"_hasShrinkwrap":false},"2.0.1":{"name":"hasown","version":"2.0.1","description":"A robust, ES3 compatible, \"has own property\" predicate.","main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"types":"index.d.ts","sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"npm run tsc","pretest":"npm run lint","tsc":"tsc -p .","tests-only":"nyc tape 'test/**/*.js'","test":"npm run tests-only","posttest":"aud --production","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/inspect-js/hasOwn.git"},"keywords":["has","hasOwnProperty","hasOwn","has-own","own","has","property","in","javascript","ecmascript"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/inspect-js/hasOwn/issues"},"homepage":"https://github.com/inspect-js/hasOwn#readme","dependencies":{"function-bind":"^1.1.2"},"devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/function-bind":"^1.1.10","@types/mock-property":"^1.0.2","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","eslint":"=8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","mock-property":"^1.0.3","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.4","typescript":"next"},"engines":{"node":">= 0.4"},"testling":{"files":"test/index.js"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows","test"]},"_id":"hasown@2.0.1","gitHead":"b4dc660cc5ad50be810b378406b67c6247632db0","_nodeVersion":"21.6.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-1/th4MHjnwncwXsIW6QMzlvYL9kG5e/CpVvLRZe4XPa8TOUNbCELqmvhDmnkNsAjwaG4+I8gJJL0JBvTTLO9qA==","shasum":"26f48f039de2c0f8d3356c223fb8d50253519faa","tarball":"https://mirrors.huaweicloud.com/repository/npm/hasown/-/hasown-2.0.1.tgz","fileCount":10,"unpackedSize":11140,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCkyEeCGFLgef5pXaA5lBJ/2OgNan8SC1oifdZqTq5NkAIhAOm/oEE81UZRadLLQapZh8qy66V7ykHcRI6hjj3ruXvg"}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"radubrehar","email":"radu@jslog.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/hasown_2.0.1_1707630722982_0.2386679966825953"},"_hasShrinkwrap":false},"2.0.2":{"name":"hasown","version":"2.0.2","description":"A robust, ES3 compatible, \"has own property\" predicate.","main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"types":"index.d.ts","sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"npm run tsc","pretest":"npm run lint","tsc":"tsc -p .","posttsc":"attw -P","tests-only":"nyc tape 'test/**/*.js'","test":"npm run tests-only","posttest":"aud --production","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/inspect-js/hasOwn.git"},"keywords":["has","hasOwnProperty","hasOwn","has-own","own","has","property","in","javascript","ecmascript"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/inspect-js/hasOwn/issues"},"homepage":"https://github.com/inspect-js/hasOwn#readme","dependencies":{"function-bind":"^1.1.2"},"devDependencies":{"@arethetypeswrong/cli":"^0.15.1","@ljharb/eslint-config":"^21.1.0","@ljharb/tsconfig":"^0.2.0","@types/function-bind":"^1.1.10","@types/mock-property":"^1.0.2","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","eslint":"=8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","mock-property":"^1.0.3","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.5","typescript":"next"},"engines":{"node":">= 0.4"},"testling":{"files":"test/index.js"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows","test"]},"_id":"hasown@2.0.2","gitHead":"d00d35005baf16a33d691a13f8ad627f35040742","_nodeVersion":"21.7.0","_npmVersion":"10.5.0","dist":{"integrity":"sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==","shasum":"003eaf91be7adc372e84ec59dc37252cedb80003","tarball":"https://mirrors.huaweicloud.com/repository/npm/hasown/-/hasown-2.0.2.tgz","fileCount":10,"unpackedSize":8765,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDwT1Hb/p8miJ/uXHCku9k+wzFABQD1ohA9jK2Wx7JrgwIgB1GtchHXm+XK4rsE3qomVCL/uhDlhqCYGaYgd7hCY5s="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"radubrehar","email":"radu@jslog.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/hasown_2.0.2_1710092304974_0.23927876187037622"},"_hasShrinkwrap":false}},"readme":"# hasown [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nA robust, ES3 compatible, \"has own property\" predicate.\n\n## Example\n\n```js\nconst assert = require('assert');\nconst hasOwn = require('hasown');\n\nassert.equal(hasOwn({}, 'toString'), false);\nassert.equal(hasOwn([], 'length'), true);\nassert.equal(hasOwn({ a: 42 }, 'a'), true);\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.org/package/hasown\n[npm-version-svg]: https://versionbadg.es/inspect-js/hasown.svg\n[deps-svg]: https://david-dm.org/inspect-js/hasOwn.svg\n[deps-url]: https://david-dm.org/inspect-js/hasOwn\n[dev-deps-svg]: https://david-dm.org/inspect-js/hasOwn/dev-status.svg\n[dev-deps-url]: https://david-dm.org/inspect-js/hasOwn#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/hasown.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/hasown.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/hasown.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=hasown\n[codecov-image]: https://codecov.io/gh/inspect-js/hasOwn/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/hasOwn/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/hasOwn\n[actions-url]: https://github.com/inspect-js/hasOwn/actions\n","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"},{"name":"radubrehar","email":"radu@jslog.com"}],"time":{"modified":"2024-03-10T17:38:25.538Z","created":"2014-09-03T06:38:13.950Z","1.0.1":"2014-09-03T06:38:17.009Z","2.0.0":"2023-10-21T04:54:15.456Z","2.0.1":"2024-02-11T05:52:03.147Z","2.0.2":"2024-03-10T17:38:25.117Z"},"readmeFilename":"README.md","keywords":["has","hasOwnProperty","hasOwn","has-own","own","has","property","in","javascript","ecmascript"],"repository":{"type":"git","url":"git+https://github.com/inspect-js/hasOwn.git"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"bugs":{"url":"https://github.com/inspect-js/hasOwn/issues"},"license":"MIT","users":{"radubrehar":true},"homepage":"https://github.com/inspect-js/hasOwn#readme"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/2f/06/6ba2d7473a8d769d0b99947126b6e5dda86a0e0f43a16b1a2968d1715b3227a4481a2d6a15b8031b4f38b1ba8b02c769c41b9f278335b7bf1756a3122076 b/frontend/.npm-cache/_cacache/content-v2/sha512/2f/06/6ba2d7473a8d769d0b99947126b6e5dda86a0e0f43a16b1a2968d1715b3227a4481a2d6a15b8031b4f38b1ba8b02c769c41b9f278335b7bf1756a3122076 new file mode 100644 index 0000000..f75bc4a Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/2f/06/6ba2d7473a8d769d0b99947126b6e5dda86a0e0f43a16b1a2968d1715b3227a4481a2d6a15b8031b4f38b1ba8b02c769c41b9f278335b7bf1756a3122076 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/2f/f0/f6858c596a36adb4dc9c50294cb97132005a6cffdccae422bb90748ce07aea10f17ff88148810410314f8295ff751be4692a7c53c867d6ce8f40c0c8b75a b/frontend/.npm-cache/_cacache/content-v2/sha512/2f/f0/f6858c596a36adb4dc9c50294cb97132005a6cffdccae422bb90748ce07aea10f17ff88148810410314f8295ff751be4692a7c53c867d6ce8f40c0c8b75a new file mode 100644 index 0000000..cb0c5db --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/2f/f0/f6858c596a36adb4dc9c50294cb97132005a6cffdccae422bb90748ce07aea10f17ff88148810410314f8295ff751be4692a7c53c867d6ce8f40c0c8b75a @@ -0,0 +1 @@ +{"_id":"math-intrinsics","_rev":"1-c70720a6cd2492f31b90c842a967f3a5","name":"math-intrinsics","dist-tags":{"latest":"1.1.0"},"versions":{"1.0.0":{"name":"math-intrinsics","version":"1.0.0","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"math-intrinsics@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/math-intrinsics#readme","bugs":{"url":"https://github.com/es-shims/math-intrinsics/issues"},"dist":{"shasum":"4e04bf87c85aa51e90d078dac2252b4eb5260817","tarball":"https://mirrors.huaweicloud.com/repository/npm/math-intrinsics/-/math-intrinsics-1.0.0.tgz","fileCount":36,"integrity":"sha512-4MqMiKP90ybymYvsut0CH2g4XWbfLtmlCkXmtmdcDCxNB+mQcu1w/1+L/VD7vi/PSv7X2JYV7SCcR+jiPXnQtA==","signatures":[{"sig":"MEQCIAXJKs46CEt6igdqs+e/s8LpJQfWt2YBaaiPAZaOlmfVAiB5aTtl7a/MG9HBimUvmb5CY1LZdhpdfYmLWT688oUiJQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16470},"main":false,"engines":{"node":">= 0.4"},"exports":{"./abs":"./abs.js","./max":"./max.js","./min":"./min.js","./mod":"./mod.js","./pow":"./pow.js","./sign":"./sign.js","./floor":"./floor.js","./isNaN":"./isNaN.js","./isFinite":"./isFinite.js","./isInteger":"./isInteger.js","./package.json":"./package.json","./isNegativeZero":"./isNegativeZero.js","./constants/maxValue":"./constants/maxValue.js","./constants/maxArrayLength":"./constants/maxArrayLength.js","./constants/maxSafeInteger":"./constants/maxSafeInteger.js"},"gitHead":"ab35063973ed5ad04099e3ea05f81eaa152a1f96","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/es-shims/math-intrinsics.git","type":"git"},"_npmVersion":"10.9.2","description":"ES Math-related intrinsics and helpers, robustly cached.","directories":{},"sideEffects":false,"_nodeVersion":"23.4.0","publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eclint":"^2.8.1","eslint":"^8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"next","@types/tape":"^5.6.5","auto-changelog":"^2.5.0","object-inspect":"^1.13.3","@types/for-each":"^0.3.3","@ljharb/tsconfig":"^0.2.2","es-value-fixtures":"^1.5.0","safe-publish-latest":"^2.0.0","@arethetypeswrong/cli":"^0.17.1","@ljharb/eslint-config":"^21.1.1","@types/object-inspect":"^1.13.0"},"_npmOperationalInternal":{"tmp":"tmp/math-intrinsics_1.0.0_1733951841384_0.08063935626020458","host":"s3://npm-registry-packages-npm-production"}},"1.1.0":{"name":"math-intrinsics","version":"1.1.0","description":"ES Math-related intrinsics and helpers, robustly cached.","main":false,"exports":{"./abs":"./abs.js","./floor":"./floor.js","./isFinite":"./isFinite.js","./isInteger":"./isInteger.js","./isNaN":"./isNaN.js","./isNegativeZero":"./isNegativeZero.js","./max":"./max.js","./min":"./min.js","./mod":"./mod.js","./pow":"./pow.js","./sign":"./sign.js","./round":"./round.js","./constants/maxArrayLength":"./constants/maxArrayLength.js","./constants/maxSafeInteger":"./constants/maxSafeInteger.js","./constants/maxValue":"./constants/maxValue.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run lint","test":"npm run tests-only","tests-only":"nyc tape 'test/**/*.js'","posttest":"npx npm@'>= 10.2' audit --production","prelint":"evalmd README.md && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)","lint":"eslint --ext=js,mjs .","postlint":"tsc && attw -P","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/es-shims/math-intrinsics.git"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/es-shims/math-intrinsics/issues"},"homepage":"https://github.com/es-shims/math-intrinsics#readme","devDependencies":{"@arethetypeswrong/cli":"^0.17.1","@ljharb/eslint-config":"^21.1.1","@ljharb/tsconfig":"^0.2.2","@types/for-each":"^0.3.3","@types/object-inspect":"^1.13.0","@types/tape":"^5.8.0","auto-changelog":"^2.5.0","eclint":"^2.8.1","es-value-fixtures":"^1.5.0","eslint":"^8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","object-inspect":"^1.13.3","safe-publish-latest":"^2.0.0","tape":"^5.9.0","typescript":"next"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"math-intrinsics@1.1.0","gitHead":"84ffc824e044a91da1b847bde30c0286519eabf1","_nodeVersion":"23.4.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==","shasum":"a0dd74be81e2aa5c2f27e65ce283605ee4e2b7f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/math-intrinsics/-/math-intrinsics-1.1.0.tgz","fileCount":38,"unpackedSize":17323,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFgq81O8lUTfjmAVEvZwrh1aB0y53XM8+MIXpsxPGuqjAiAkoLeAbUGHU0nLKgg3vkqB4OiwtGItmru5voe4A3uJcQ=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/math-intrinsics_1.1.0_1734587889699_0.8404103287928804"},"_hasShrinkwrap":false}},"time":{"created":"2024-12-11T21:17:21.383Z","modified":"2024-12-19T05:58:10.044Z","1.0.0":"2024-12-11T21:17:21.566Z","1.1.0":"2024-12-19T05:58:09.877Z"},"bugs":{"url":"https://github.com/es-shims/math-intrinsics/issues"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","homepage":"https://github.com/es-shims/math-intrinsics#readme","repository":{"type":"git","url":"git+https://github.com/es-shims/math-intrinsics.git"},"description":"ES Math-related intrinsics and helpers, robustly cached.","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"readme":"# math-intrinsics [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nES Math-related intrinsics and helpers, robustly cached.\n\n - `abs`\n - `floor`\n - `isFinite`\n - `isInteger`\n - `isNaN`\n - `isNegativeZero`\n - `max`\n - `min`\n - `mod`\n - `pow`\n - `round`\n - `sign`\n - `constants/maxArrayLength`\n - `constants/maxSafeInteger`\n - `constants/maxValue`\n\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n## Security\n\nPlease email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report.\n\n[package-url]: https://npmjs.org/package/math-intrinsics\n[npm-version-svg]: https://versionbadg.es/es-shims/math-intrinsics.svg\n[deps-svg]: https://david-dm.org/es-shims/math-intrinsics.svg\n[deps-url]: https://david-dm.org/es-shims/math-intrinsics\n[dev-deps-svg]: https://david-dm.org/es-shims/math-intrinsics/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/math-intrinsics#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/math-intrinsics.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/math-intrinsics.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/es-object.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=math-intrinsics\n[codecov-image]: https://codecov.io/gh/es-shims/math-intrinsics/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/math-intrinsics/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/math-intrinsics\n[actions-url]: https://github.com/es-shims/math-intrinsics/actions\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/30/c2/d821c476cb59c0931a7209c13eb79257eae92b8abc43c09b4c283ba345d4c7daf7ea42180de2d69a724e6a0030a701d97edfca8bd62a48d7df1284ae4322 b/frontend/.npm-cache/_cacache/content-v2/sha512/30/c2/d821c476cb59c0931a7209c13eb79257eae92b8abc43c09b4c283ba345d4c7daf7ea42180de2d69a724e6a0030a701d97edfca8bd62a48d7df1284ae4322 new file mode 100644 index 0000000..decde3c --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/30/c2/d821c476cb59c0931a7209c13eb79257eae92b8abc43c09b4c283ba345d4c7daf7ea42180de2d69a724e6a0030a701d97edfca8bd62a48d7df1284ae4322 @@ -0,0 +1 @@ +{"_id":"get-intrinsic","_rev":"19-1dca6cc6c24bab7ca6c336751886ca61","name":"get-intrinsic","dist-tags":{"latest":"1.3.0"},"versions":{"1.0.0":{"name":"get-intrinsic","version":"1.0.0","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"035ccf14a00ae2eb3d110a00fcd10e74706a8fe7","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.0.0.tgz","fileCount":11,"integrity":"sha512-EMuu0ud8uAP4Zs6tQqMeHiY1PbIBDcZ92QVxqeLfqTMbyvqcDbrtHjfu0RWh8QaUNJ3lP1DSX3J2okgj9JE47g==","signatures":[{"sig":"MEQCIEehDACke//ohQCAy5pJo/R/9J5UGrufkNBiQJqe3y2DAiBC7txNPrBmQB4PjK/Ydow1627eRDEIl0wz1IkhWkBAkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25104,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnCtMCRA9TVsSAnZWagAAwm0P/0h8E1pcOVKKP6XQ6No4\n9tdWqfwRUlG8RTYs8sXW8g2qL3PxQdM1ql5GztOTUSstrtEE2sux290V6w1B\n829I8YHJbw667RuqIOuUBnXjaFm3Eb6S1Tvhvlbff0MtEoP9dZwgvqHn6yLx\niIBIRDCEJhuqrfVmjbpy6hLDEsxhaWsSxPj81gm+aHY6xVb4f/dZvrDp8R9j\nlaEwsE7EK+cEn3ifTQYYHlv8an9QkPFTHDLjeZ+wdWBnut+tepMeFM+ZjG+d\ngdTg2IeNfXFw/QSU5eDQtjqHZ2Fv2T4fFn2blhkrIbEMmwxczzM6QuQiOGc8\n1suIs9vDdt8qq6h8ESs9hr5I2hgE3M4Xxt5ziZ95TifSDRNyyQGbMy5vj3CY\n0z2e5M6zr5b2mkiWm0A5tZI4Mdy/2XrpJxTE6/opYgvA5mQ0GIYzO7r1Zt+G\nmHD/MDeTe2WxBWizo3nv0IGRvZeHZ/JjcRHdHeRAq+rqJ6o4hvYanxfoGlGA\njCUXYsZzR2XLfxBiTeSUO9VQ5YSBtsfU+egeRNwOw5PwxpGwfW4VUVOPHwHJ\n5dHlRGuWHDOn+4uF+09o5B70By6rcGZsHV62jX5ci5JclHswBdrvcftucfyG\nyR2qyuEnxq7O+S2D/uMylQLqTdCdJ6Bf58TKGSzpsp45oWrSmIsSTdiVWIsG\nz7pB\r\n=DQ3f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"]},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"516f403fe75287a2a80a8d48c2061f6b3238ec0c","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","coverage":"nyc npm run tests-only","posttest":"aud --production","tests-only":"tape 'test/*'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"6.14.8","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"14.15.0","_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.2","nyc":"^10.3.2","tape":"^5.0.1","eslint":"^7.12.1","foreach":"^2.0.5","es-abstract":"^1.18.0-next.1","has-bigints":"^1.0.0","auto-changelog":"^2.2.1","object-inspect":"^1.8.0","make-async-function":"^1.0.0","@ljharb/eslint-config":"^17.2.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.0.0_1604070219549_0.3039159077605891","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"get-intrinsic","version":"1.0.1","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"94a9768fcbdd0595a1c9273aacf4c89d075631be","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.0.1.tgz","fileCount":12,"integrity":"sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==","signatures":[{"sig":"MEUCIFzb1R9CMnRu3GNwT893R3yms0wnrxROjmNn7s1aWEdLAiEAgP3VkUFew7/H+j05N3mW3XntPRU+Smw2z+q8kZl3CC4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26012,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnPbUCRA9TVsSAnZWagAAO2UP/37xSp1p1f50Pt6yyL4k\n1BKcgA+OfPCEhFnJA1AKqYeL8rVBLr7VoSvMzTQ9JonFIIXLlnlVe8P91KWE\n1AXoYJr/dW8ZG7vHs37jK7aiEweyYlgLebWPOM2T2bU0WFoaaIws1fa+TwTS\neCqY8Q7XysXV3syWXX1El/2TIXzSVa8g8gOVJy/j8j+fthSAPD0H6ZTCvYQ6\nPSWIFAYhRIWXLGel3T/TE1p61AWZuEtf8B+e6K8hPiMuzhNjODCBqJQV246D\nPznhAbJV81wNIdM0ohuT19+t7GqjjKbKKMpU0LZzSCjZF3Q+zLI4H+qMY0Bl\nHFiqspAfS0r/wHWoBkzODoHWMduJ/JPtE/uee8ae92iC9fR9Y8fSOWXTt07W\nFWSGyLyJ6CQS7d+dJwFb+2cQNckV/9VKu+y58z+i6x6/FExmHNBdYt4ps3ju\nH89DQEmfq5wyLcceng9K0a7A6vfLM6MvEk8FugXVhGORioFOkscE3f8gS7Sc\nIzbl739iiG3oGvNzRgF229t2xwUZXVNqGJ4Sg3AQM/RX75+Mu1Jlx52z0ECY\nLZGX16A+J3N955DxJktRA1l7RA+zihIs1fZKHm+fErP547biV5p+TNocKrrn\nwghypBweNbcNkzNds6qczoB/3Vsc2OxHaVUBWNleqmlrQ6Qk1AA4ZRIdhQZ8\njWu7\r\n=BhVO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"]},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"1802957d1ff6a04965505f54c3d354ad7fa31034","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","tests-only":"nyc tape 'test/*'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"6.14.8","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"14.15.0","dependencies":{"has":"^1.0.3","has-symbols":"^1.0.1","function-bind":"^1.1.1"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.2","nyc":"^10.3.2","tape":"^5.0.1","eslint":"^7.12.1","foreach":"^2.0.5","es-abstract":"^1.18.0-next.1","has-bigints":"^1.0.0","auto-changelog":"^2.2.1","object-inspect":"^1.8.0","es-value-fixtures":"^1.0.0","make-async-function":"^1.0.0","@ljharb/eslint-config":"^17.2.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.0.1_1604122323843_0.022947285149020447","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"get-intrinsic","version":"1.0.2","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.0.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"6820da226e50b24894e08859469dc68361545d49","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.0.2.tgz","fileCount":13,"integrity":"sha512-aeX0vrFm21ILl3+JpFFRNe9aUvp6VFZb2/CTbgLb8j75kOhvoNYjt9d8KA/tJG4gSo8nzEDedRl0h7vDmBYRVg==","signatures":[{"sig":"MEYCIQDLO/WsMu1yogrwHBInw7hC3MUpX9G+E/a0CiaubHBZGAIhAOSWmWgEOV39qmGn7YkvbHgzc+IxhjCPiTch0LAig1NA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":92891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf3FiZCRA9TVsSAnZWagAAhqwP/ApVcuwN67ClrOqU4sXI\nq1LZjlVXwkM54mRbfqChOsZUZsxW1V8xCpeaaZE0h2JKH+PnzS/GUvAcd0iA\nXbyjsIfvc66lu0bBIMKrP/zLMQ7LIm3q9Vr7iLIWi7LXXCGNqhtNx0rGgPVi\npk6c0o6MUK6Tr1RGtdpQZVnJqF9veFC6RVApu+xFYt8QWXuYDTGKrS093aRU\noI3SmbrjLSlskjXSVREGFja/L5JsiHbds7meSHPWdF57AhatrEb9X8h93fdy\n4Pz1yUKjd1QFXoAg4Pw+TLRPO0VN4JYeHWwaQ+mmOl5RViz+Yiq6joR+Fo1r\nsdSWHdijgx3XzGH4nbiP9mjR/TcypqZQeEP1H5TDZfDSSRSg9Eus0BQuHwOa\n9kNLDQywTsBBsB8S5tlJ4QSrTSn6Y8q5RsQIl9IIHwAUW/0GyiAUfCJMYCiE\n9A13GnS6ZPJEdJu960P7ZlbvnfpPbiQaMOMyC6kXOfACBkcxhhc4SofQkMZw\n5v7Xjg3Nz6inEnpbXuuU3Tj3WmDMMWoyX06sDbv50X/gzciNSy6ptcJgultt\n8aGrP+i/QWfHzGdguIVlz+2wf5kYG1jRyvbKsVZKJ2wvnnxUC8Ji0yjFO6j/\nKuwcsva60yDyaAjpy4Sbw7WSE1etufVa0rXf96788xqPhAhvFcGzzVKiOigr\nUP2R\r\n=SifI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"]},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"eec980691af2fafb4e0d9207e473c9e1eb7995e6","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","tests-only":"nyc tape 'test/*'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"6.14.8","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"14.15.1","dependencies":{"has":"^1.0.3","has-symbols":"^1.0.1","function-bind":"^1.1.1"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.3","nyc":"^10.3.2","tape":"^5.0.1","eslint":"^7.15.0","foreach":"^2.0.5","es-abstract":"^1.18.0-next.1","has-bigints":"^1.0.1","auto-changelog":"^2.2.1","object-inspect":"^1.9.0","es-value-fixtures":"^1.0.0","make-async-function":"^1.0.0","@ljharb/eslint-config":"^17.3.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.0.2_1608276120877_0.84071357918607","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"get-intrinsic","version":"1.1.0","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.1.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"892e62931e6938c8a23ea5aaebcfb67bd97da97e","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.1.0.tgz","fileCount":10,"integrity":"sha512-M11rgtQp5GZMZzDL7jLTNxbDfurpzuau5uqRWDPvlHjfvg3TdScAZo96GLvhMjImrmR8uAt0FS2RLoMrfWGKlg==","signatures":[{"sig":"MEQCIA+e/mSh+QgkqBLYqQTWcVvq5FQ05WbdMfaLjOMgM3N5AiB29JZnuXxh8SsBV17yu9nizQr5iwkWwK5HPPpe9Dx8Vg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgD0SqCRA9TVsSAnZWagAAVjQP/276R/hJLC3r7gUvPhUj\n8mwJCVpdCjIzaf4fBVvu0mB4cXe4G+t+N1w3JG9wkBqTpoHjNRzUUxhcFYeX\nnos9b4CeNftDFVgwixFHcRS0Nk0A6SUSj7jdmLiyrM3Lc0KVrMfe7G7ECeSV\nKGWViXtP8oEZJ6FZURMS9yMraQzeh5ChjcGKXsX0Jf0IpUXlDaib0ElChkLr\nN6iXsGveM9tYf15JjBW/gyJXhMPQLGE37jdCBkoW6WeOT7twWr0KDcmn6QHg\n775CZxPl1VJpEiXIoSk0PnAxRN95MIRZvdQ9k1ctSuE5kpErrTZk7j7i4i2T\n5bbOOcLvxX+StCvNtOh7M52RyDxPaagFSoKaNHxmW4e2muDDuvWRPA3n/FI4\nuXw1J1Lb1lvbhx/L9wLNN9SdPFcFOA2+t23SJE/F8abLHNsdhoBlCyoCmULL\nIKdrVXWxFbopnQF3n18ajCIDJ9E4J1vr6XU7+xYc7Pl1Nuel9AfQU5PuLAFy\nj0ziiUntUOuYWC0xHuhnYVHDWmU+1UB5IoxlQi9uAYp0/RBWg4mmAcQ2dK9B\nJDxOaa/Rmkp1F/5htSqD6hvfAH8Pv/SpEglGRUPH4mmHF183iLEwls2GfOAJ\nh2Baw9u2yX7COfPYqDG2MVbwB6wafDPgUKNNCZ+FjMRgLCt9VrzwVjPu9QF/\n5V7l\r\n=QaDr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"]},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"aaaaa0d5cd17d4b0b274cdaa1f7f3e6007fc9e59","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"6.14.10","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"14.15.4","dependencies":{"has":"^1.0.3","has-symbols":"^1.0.1","function-bind":"^1.1.1"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.3","nyc":"^10.3.2","tape":"^5.1.1","eslint":"^7.18.0","foreach":"^2.0.5","call-bind":"^1.0.2","es-abstract":"^1.18.0-next.2","has-bigints":"^1.0.1","auto-changelog":"^2.2.1","object-inspect":"^1.9.0","es-value-fixtures":"^1.0.0","make-async-function":"^1.0.0","@ljharb/eslint-config":"^17.5.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.1.0_1611613354056_0.8648044903277086","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"get-intrinsic","version":"1.1.1","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.1.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"15f59f376f855c446963948f0d24cd3637b4abc6","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.1.1.tgz","fileCount":10,"integrity":"sha512-kWZrnVM42QCiEA2Ig1bG8zjoIMOgxWwYCEeNdwY6Tv/cOSeGpcoX4pXHfKUxNKVoArnrEr2e9srnAxxGIraS9Q==","signatures":[{"sig":"MEUCIQCNo13JEcIXzNTEsjtVSMSsBL9CAqU56ZzTh56ilFAwmgIgCFy2IWS7fXyDYWF1/aSqiRCTW9wVIONaN0YUk7J0diM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32513,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGroRCRA9TVsSAnZWagAAAaMP/1kYGifz/BvcSYhnlVk+\nSnCwbyuOaTefaIpH15yyWb9sjo+1fgUw4Ej3GmVdpmyW45Tj0WePwRWhbpok\n1aKIx3P8/q8m95HymXcR50VRByFyxpNFxtWuo674yTzvYxN1+QqXVSO7xeLI\nL+bRYOScvb+f5DI8t5LqhZlvQgfiqyWXZI4L+gbwfIIrE7EUg5DZJZrzIBOY\n5SExvgueChcIptQgu8ppE5kADlGqmTHUBt3P68EU5HRc5Z/LN5csgTu63VkJ\nxx3pTXa/Q672C9qj1CqedmughzgkfBjSuKOhbQWgILCbNy0A6TKKVirpc2fB\nuI0f4vWTf1ImGrspsfIH2IR4SQqMmVy8qpgwG/YtU3q9Si9pOcXQ1q+JnyD6\nDoLaiTEVPC8ks/bKGjtNBDUmlnEuyluaaFuK3cfJQMGp2n+FNLXI5LBz9uoR\nkpqUHNJBFJ9HbbMfBUmTS3K3duAkgOR+izFQgAJJWzYbuAvM7GGAoy1eQUrY\nuD1tAQglMbB0YwsjnDxvGcV32iFoMttrcXb5xKUOlVaFMD2D9PDryeO/gu0N\nm3wDWCKhmMjGNWV6WA9q0mD6YRCPHZUwmb4xSFdz/i1MP4iVjVKc1tz6RAiT\nLqxKnm4uPjTsPPGrXWYdRs5EEF2/QHcmCex2kwk5Ul4fsVayaNOAzB3F+iSp\nbWf1\r\n=5aSN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"efa0daa5166f1a06658001e34f49b5f1185786eb","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"6.14.10","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"14.15.4","dependencies":{"has":"^1.0.3","has-symbols":"^1.0.1","function-bind":"^1.1.1"},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.3","nyc":"^10.3.2","tape":"^5.1.1","eslint":"^7.19.0","evalmd":"^0.0.19","foreach":"^2.0.5","call-bind":"^1.0.2","es-abstract":"^1.18.0-next.2","has-bigints":"^1.0.1","auto-changelog":"^2.2.1","object-inspect":"^1.9.0","es-value-fixtures":"^1.0.0","make-async-function":"^1.0.0","@ljharb/eslint-config":"^17.5.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.1.1_1612364304893_0.18784978138621788","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"get-intrinsic","version":"1.1.2","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.1.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"336975123e05ad0b7ba41f152ee4aadbea6cf598","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.1.2.tgz","fileCount":9,"integrity":"sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==","signatures":[{"sig":"MEQCIGk690kzjXZ7zcAng4wWyvMEdoQ4xPaEtBm2SQIm48nMAiBm4P1A9nW2MVt9ngQfwiaKLc6wAZZBcdlpzlq8Br1v2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36671,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJioLxOACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqs3A//RY5KjVotePADUXDnTk/obYp33AmFt7aXnVRafoQNIhvDC7Ya\r\nMj9g+8NGAG2D1xBgD+Q/dhvvfZQlpuLRzkfQg4V92liFmgpoEB0ue6BP0TD8\r\n37S9yioBWG6LTJkqbvjc68V3gi3t5jWTqHJeYPW4mxJF6MMCx7m9EYWGtqUR\r\n0AnVNqH9j4SJ/X3qHach0vgsI8hnb8iXeTg8X7465MmQke+tygQbT3rYLN/L\r\nSni+uwm6EMybJ8Lh5GKq5U6aKr+inAYm/h47js4D7/A+tvfzYfWvLjr1l4J5\r\n+cMKLskFEP6g/Xz9jaYCCRxe7YGaiTmH/sUgT+kTzo2oJaYh6xd/6bgvGCut\r\nPFBBxh0lknSR1wbiQz3hcdHu42D0a9jiOmtc3DlkiRzrez6pEJMDnKu+Pbck\r\nkqhrBMLYyLYkLHJzeB07aN+KuspIZgjMJ/rSsgqla8JHv6TqWx0BbaoZ53VA\r\nPzf3fs73zh7IhNLznCQVNHR9iM0w+dUMI2n6c0QlOaimFkJ+61cHA13zU20x\r\nllmejv9s5XEkvuVSU/ibuYEkbnqDg62sWcm0HgGuL6k+RKe7Mj/gOds/Zn9n\r\ngvMIl1y7zeaIrEmQHfj6ndXAB1Mv9eIySBA4//nd+oVZLibt4pkAJIIy8xY1\r\nnHBGLFN4jrtJBI6I36xrNfrC0DVumPnTh8A=\r\n=ZCcH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"1692762305146cdee0bd0a31cb0a57ffd9240c8c","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"8.11.0","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"18.3.0","dependencies":{"has":"^1.0.3","has-symbols":"^1.0.3","function-bind":"^1.1.1"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.0","nyc":"^10.3.2","tape":"^5.5.3","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","call-bind":"^1.0.2","npmignore":"^0.3.0","es-abstract":"^1.20.1","mock-property":"^1.0.0","auto-changelog":"^2.4.0","object-inspect":"^1.12.2","es-value-fixtures":"^1.4.1","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.1.2_1654701133878_0.7209001100988714","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"get-intrinsic","version":"1.1.3","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.1.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"063c84329ad93e83893c7f4f243ef63ffa351385","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.1.3.tgz","fileCount":9,"integrity":"sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==","signatures":[{"sig":"MEUCIFx7EpcX7UchnW1MjTW4LY/IDpL1jl3H+M29ezR+WSHQAiEA7sXR/8EoSjeBOAK0Z3he//k1OtgvYgkt6hGAGtrHojM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":37128,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjIACSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpAuA//URHhCHAEO247jjMd3BcpIpNWgbXTtnIEpHqbGulxZuzwd8hD\r\n7a9fqywLrEQq10reRxRNeS6Zk7BSv9QqwtZx7dTmi95ZxPETZvF2khJ6ggyj\r\nhAMonDjaP79Ki5Dwz/JH2WxsefDcAAPRRftEmm73oSJgt9EEdssmmAXgG5JS\r\n5OU3tCLGb4ricSaPNv2g2QDDLuLh/j6axKGn5bsQZFCvK87PV1vR/9Q6EVUz\r\nNDgWOxcgQTXgpVJYPsd6j8FiB3PiuFmd7/aLiqUMncStQDzklRHd8zUcxay3\r\n+0NplukrzPQPRDjMLuLeIX6WX+145sPZcThc7s9nrfmk2ODpDmLUYPZdki6U\r\nUBBa9aK3kDBIocvwVrleIzyY53SKvmmZ6jqmP5wS9pEWPa1gdD+VugZGazEK\r\noYK1MH77WG9fJb/2n27AWhJ/Tm9m177G+9rYQKIA+Q9JmZom+qNQviXkSkHL\r\n9MhOdjGzH0hnhX25ml81l6I2a/spKuN6RsHKNruUEUUxAyQYxIm6ZJs6D2Hy\r\nDjd+LklfZnCUsJUIJarqkB8XnRYsrKR+zrcTjxuRS0vQMBs+t/DYyXaS1k73\r\n4SR/biyt43/SOVtwZ25ThMxfGBZ+gwIqsoih3Rovs18QsrZNDyeU3fzfcTCM\r\nRioeF4ejfq26VnL5JSIEvGDWBNihLZhCw5U=\r\n=Yum9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"65cac0bca7cf7db4d1594bd1f7c68e921adedb5b","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"8.19.1","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"18.9.0","dependencies":{"has":"^1.0.3","has-symbols":"^1.0.3","function-bind":"^1.1.1"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.0","nyc":"^10.3.2","tape":"^5.6.0","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","call-bind":"^1.0.2","npmignore":"^0.3.0","es-abstract":"^1.20.2","mock-property":"^1.0.0","auto-changelog":"^2.4.0","object-inspect":"^1.12.2","es-value-fixtures":"^1.4.2","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.1.3_1663041682205_0.23362607287463288","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"get-intrinsic","version":"1.2.0","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.2.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"7ad1dc0535f3a2904bba075772763e5051f6d05f","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.2.0.tgz","fileCount":9,"integrity":"sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==","signatures":[{"sig":"MEYCIQDb29OYVbJKfex+ljyYg1fRxZiHvAcbeMgBRIcq6cP6MgIhAMPAotqdPrJxkwnAeSq+RDK//aoFWESiSJuvWBmlhUAH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38691,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjykKtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoUEQ/+PfWdGnewUZa86B0H4haSxBRBlwuFGg7GpdoEhJ3Ll1A9p3Jb\r\nvU2+9RyeNp1p2LNrktOAenAcs7I3dLl0dAspHjjL3uLNhPkrlpeVqOktXs+H\r\n7l0VaAOrLZVi1f+akY117IO0OO6FwRLV42VdM7QIH2BcfXuCyDDke41rq5oS\r\nR9I+8C2SCW2/OxXcMG9nYOpW494hmHRRYh9mpovJUOpAerMUgy334rK72ArR\r\nNsgnAu4luu/7RmC5BNPS26Q7NVCVf7THdx2v3OSkgFvTrdS+wu0NhqkakppS\r\nfGTYkR1m+7vX9YLHIokoIDjHtHaNPMUb7e51OxegjtPEh7FBacfRs0bxfx7Z\r\nJLhYAbjSanGci/gfC2gT1YIPUgydWbx1Ejmol9j7QmA9BQuHSxHu+SiaRA46\r\n+F/Fzbkp1sC0gqo4qGN04Lw8+2g2DHGfBygd6vcUtnaHMz2coCF4rlvcW2fN\r\nz6tT4pcE/AWtC6l9yCWzAWDjEZjF2kBycuiY36IlhhPjtj3qiGQqnTPLL10d\r\nUWA9ZTqFH2k+o4tKhz8g1kQeBApgpRgr9FfukaNq/TZi2tguQ2MlHQ+0R0ZC\r\nZZRtnin4nEpjZ+GkAcfnm9QCrripiWwDtSgXsKvgSICOdp9urrSgfcEAuEvM\r\nrTjOosJAUVohG06+klaUIe6mIssavg3AgjU=\r\n=CxS4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"0b60d7ac9d93e8824a36ddd52635be1fc13758d1","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"9.2.0","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"19.4.0","dependencies":{"has":"^1.0.3","has-symbols":"^1.0.3","function-bind":"^1.1.1"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.2","nyc":"^10.3.2","gopd":"^1.0.1","tape":"^5.6.3","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","call-bind":"^1.0.2","npmignore":"^0.3.0","es-abstract":"^1.21.1","mock-property":"^1.0.0","auto-changelog":"^2.4.0","object-inspect":"^1.12.3","es-value-fixtures":"^1.4.2","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.1","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.2.0_1674199725115_0.9427568240984563","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"get-intrinsic","version":"1.2.1","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.2.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"d295644fed4505fc9cde952c37ee12b477a83d82","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.2.1.tgz","fileCount":9,"integrity":"sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==","signatures":[{"sig":"MEQCIH2PMMBY2iFUOUqP3dZ9AzuAm4akebv8JtnQ/8ytUwHcAiA3J9wBIHECkgkMjb0tz+evqI1jlknL37xpqbmFel24CA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39285},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"156c781fcdbfe23d6f248cc2c9c71e01c43db198","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"9.6.4","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"20.1.0","dependencies":{"has":"^1.0.3","has-proto":"^1.0.1","has-symbols":"^1.0.3","function-bind":"^1.1.1"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.2","nyc":"^10.3.2","gopd":"^1.0.1","tape":"^5.6.3","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","call-bind":"^1.0.2","npmignore":"^0.3.0","es-abstract":"^1.21.2","mock-property":"^1.0.0","auto-changelog":"^2.4.0","object-inspect":"^1.12.3","es-value-fixtures":"^1.4.2","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.1","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.2.1_1684044853845_0.08879521215063968","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"get-intrinsic","version":"1.2.2","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.2.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"281b7622971123e1ef4b3c90fd7539306da93f3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.2.2.tgz","fileCount":9,"integrity":"sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==","signatures":[{"sig":"MEUCIQCE4i94ty4EPmnJBOdQY/dlaJHPTLNYDlAnwhnAdxUaxQIgCD6rj5ICp5d6HT3FPyiwbzqhuV1I/EOFyuXL/jVTTbQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39896},"main":"index.js","exports":{".":[{"default":"./index.js"},"./index.js"],"./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"f973d4fa439027671b626ce53795541774d9af0b","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"10.2.0","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"_nodeVersion":"21.0.0","dependencies":{"hasown":"^2.0.0","has-proto":"^1.0.1","has-symbols":"^1.0.3","function-bind":"^1.1.2"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.3","nyc":"^10.3.2","gopd":"^1.0.1","tape":"^5.7.2","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","call-bind":"^1.0.5","npmignore":"^0.3.0","es-abstract":"^1.22.2","mock-property":"^1.0.2","auto-changelog":"^2.4.0","object-inspect":"^1.13.1","es-value-fixtures":"^1.4.2","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.2.2_1697865532155_0.5048495193780591","host":"s3://npm-registry-packages"}},"1.2.3":{"name":"get-intrinsic","version":"1.2.3","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.2.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"9d2d284a238e62672f556361e7d4e1a4686ae50e","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.2.3.tgz","fileCount":9,"integrity":"sha512-JIcZczvcMVE7AUOP+X72bh8HqHBRxFdz5PDHYtNG/lE3yk9b3KZBJlwFcTyPYjg3L4RLLmZJzvjxhaZVapxFrQ==","signatures":[{"sig":"MEUCICnWf2Lq2QF62/nFmeSSayPT1BrVwI9j/GQR1csxhW96AiEAiMJWHn0HxmQSB/w08t6sc82VjSsfsz09sutUnZmr1us=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41188},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"6c71c310ec5e23da37cffd245e5b6c41de182376","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"10.2.4","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"sideEffects":false,"_nodeVersion":"21.6.0","dependencies":{"hasown":"^2.0.0","es-errors":"^1.0.0","has-proto":"^1.0.1","has-symbols":"^1.0.3","function-bind":"^1.1.2"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.4","nyc":"^10.3.2","gopd":"^1.0.1","tape":"^5.7.4","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","call-bind":"^1.0.5","npmignore":"^0.3.1","es-abstract":"^1.22.3","mock-property":"^1.0.3","auto-changelog":"^2.4.0","object-inspect":"^1.13.1","es-value-fixtures":"^1.4.2","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.2.3_1706982791589_0.5229473793991113","host":"s3://npm-registry-packages"}},"1.2.4":{"name":"get-intrinsic","version":"1.2.4","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.2.4","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"e385f5a4b5227d449c3eabbad05494ef0abbeadd","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.2.4.tgz","fileCount":9,"integrity":"sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==","signatures":[{"sig":"MEUCIQDQ14DLtlzSO4A3E7LtutAY2/qA5riZBsmzWGKv6A4lWQIgMl7+Y6W7AyTLiI9Ip7qZX36ZEtREjtPlAI3GIJgT8bU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":41624},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"3ce1c8e1d677ae3b828f84add6e0e399d3c94a66","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"10.2.4","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"sideEffects":false,"_nodeVersion":"21.6.0","dependencies":{"hasown":"^2.0.0","es-errors":"^1.3.0","has-proto":"^1.0.1","has-symbols":"^1.0.3","function-bind":"^1.1.2"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.4","nyc":"^10.3.2","gopd":"^1.0.1","tape":"^5.7.4","eslint":"=8.8.0","evalmd":"^0.0.19","for-each":"^0.3.3","call-bind":"^1.0.5","npmignore":"^0.3.1","es-abstract":"^1.22.3","mock-property":"^1.0.3","auto-changelog":"^2.4.0","object-inspect":"^1.13.1","es-value-fixtures":"^1.4.2","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.2.4_1707197526285_0.00048803680446463105","host":"s3://npm-registry-packages"}},"1.2.5":{"name":"get-intrinsic","version":"1.2.5","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.2.5","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"dfe7dd1b30761b464fe51bf4bb00ac7c37b681e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.2.5.tgz","fileCount":9,"integrity":"sha512-Y4+pKa7XeRUPWFNvOOYHkRYrfzW07oraURSvjDmRVOJ748OrVmeXtpE4+GCEHncjCjkTxPNRt8kEbxDhsn6VTg==","signatures":[{"sig":"MEUCIEY/v70GaEVmYjohhysyjaTWNGrHnRFdiON0ObVRpY+2AiEAp/eQxixV9fDK7wCO3awM184aJ+VSti+sIIjHNIkaCXI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44007},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"a3b2d7c605887536cbd67efa3e3c005a06704eb2","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"10.9.0","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"sideEffects":false,"_nodeVersion":"23.3.0","dependencies":{"gopd":"^1.2.0","hasown":"^2.0.2","es-errors":"^1.3.0","has-symbols":"^1.1.0","dunder-proto":"^1.0.0","function-bind":"^1.1.2","es-define-property":"^1.0.1","call-bind-apply-helpers":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.3","npmignore":"^0.3.1","call-bound":"^1.0.1","es-abstract":"^1.23.5","mock-property":"^1.1.0","auto-changelog":"^2.5.0","object-inspect":"^1.13.3","es-value-fixtures":"^1.5.0","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.1","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.2.5_1733516484751_0.5002024032938608","host":"s3://npm-registry-packages"}},"1.2.6":{"name":"get-intrinsic","version":"1.2.6","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.2.6","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"43dd3dd0e7b49b82b2dfcad10dc824bf7fc265d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.2.6.tgz","fileCount":9,"integrity":"sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==","signatures":[{"sig":"MEYCIQCLeGLMmVW5+xr6gypd3a0TLIbRfIGZk/PcaDxBf6U2NQIhAKZFLeVOT37F9QWqQ6fTjVrCQ4fTfQva/gC8R8Iq7Icr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45087},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"4acb3f0114a3fdb3180bccfc0769af0f931c4b23","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"10.9.2","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"sideEffects":false,"_nodeVersion":"23.4.0","dependencies":{"gopd":"^1.2.0","hasown":"^2.0.2","es-errors":"^1.3.0","has-symbols":"^1.1.0","dunder-proto":"^1.0.0","function-bind":"^1.1.2","es-object-atoms":"^1.0.0","math-intrinsics":"^1.0.0","es-define-property":"^1.0.1","call-bind-apply-helpers":"^1.0.1"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.3","npmignore":"^0.3.1","call-bound":"^1.0.2","es-abstract":"^1.23.5","mock-property":"^1.1.0","auto-changelog":"^2.5.0","object-inspect":"^1.13.3","es-value-fixtures":"^1.5.0","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.1","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.2.6_1733954479550_0.5013000635905569","host":"s3://npm-registry-packages-npm-production"}},"1.2.7":{"name":"get-intrinsic","version":"1.2.7","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.2.7","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"dcfcb33d3272e15f445d15124bc0a216189b9044","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.2.7.tgz","fileCount":9,"integrity":"sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==","signatures":[{"sig":"MEUCIGcu79jd4MNjRYCtMef97IpSGAZW6Ajz6XxbTBzkxzPgAiEA63UOsYkJg7qDPNgoVyeT9OAWi35OQbnRbLe1g2ly0xQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":45821},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"70f0c19787dd59a46a99091ec706fada15ddc28a","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"10.9.2","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"sideEffects":false,"_nodeVersion":"23.5.0","dependencies":{"gopd":"^1.2.0","hasown":"^2.0.2","es-errors":"^1.3.0","get-proto":"^1.0.0","has-symbols":"^1.1.0","function-bind":"^1.1.2","es-object-atoms":"^1.0.0","math-intrinsics":"^1.1.0","es-define-property":"^1.0.1","call-bind-apply-helpers":"^1.0.1"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.3","npmignore":"^0.3.1","call-bound":"^1.0.3","es-abstract":"^1.23.8","mock-property":"^1.1.0","auto-changelog":"^2.5.0","object-inspect":"^1.13.3","es-value-fixtures":"^1.5.0","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.1","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.2.7_1735840488016_0.8380664257897461","host":"s3://npm-registry-packages-npm-production"}},"1.3.0":{"name":"get-intrinsic","version":"1.3.0","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.3.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"743f0e3b6964a93a5491ed1bffaae054d7f98d01","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.3.0.tgz","fileCount":9,"integrity":"sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==","signatures":[{"sig":"MEQCIEnVjmY1m1/1LGZ5OEP1oFPgly9QoANJ8qnqZZmeRqsRAiAQ12HOGi0q5aBtjTTAfhP1HpDOFjfv5KPEd2FTrrZlcA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":46542},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"9d747e0540e5e03421e7411b7946c23f4b010fd5","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"10.9.2","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"sideEffects":false,"_nodeVersion":"23.8.0","dependencies":{"gopd":"^1.2.0","hasown":"^2.0.2","es-errors":"^1.3.0","get-proto":"^1.0.1","has-symbols":"^1.1.0","function-bind":"^1.1.2","es-object-atoms":"^1.1.1","math-intrinsics":"^1.1.0","es-define-property":"^1.0.1","call-bind-apply-helpers":"^1.0.2"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.5","npmignore":"^0.3.1","call-bound":"^1.0.3","es-abstract":"^1.23.9","mock-property":"^1.1.0","auto-changelog":"^2.5.0","object-inspect":"^1.13.4","es-value-fixtures":"^1.7.1","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.1","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.3.0_1740257660418_0.1214735397958775","host":"s3://npm-registry-packages-npm-production"}},"1.3.1":{"name":"get-intrinsic","version":"1.3.1","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"get-intrinsic@1.3.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/get-intrinsic#readme","bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"dist":{"shasum":"7f03d6cc8df96ae803c35cf23590510f28357173","tarball":"https://mirrors.huaweicloud.com/repository/npm/get-intrinsic/-/get-intrinsic-1.3.1.tgz","fileCount":9,"integrity":"sha512-fk1ZVEeOX9hVZ6QzoBNEC55+Ucqg4sTVwrVuigZhuRPESVFpMyXnd3sbXvPOwp7Y9riVyANiqhEuRF0G1aVSeQ==","signatures":[{"sig":"MEUCIBKxpB46glr3j7OiKwqj18RsL77zNI3ijyn33Y81hlAbAiEAqx20ajT76uc98i2OUAJZ9bw5Eiru7ronOIJ4lwyMTfM=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":47064},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"75b38548845e37d3792e6580c882c166e8b769cc","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/GetIntrinsic.js"},"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"_npmVersion":"11.6.0","description":"Get and robustly cache all JS language-level intrinsics at first require time","directories":{},"sideEffects":false,"_nodeVersion":"24.8.0","dependencies":{"gopd":"^1.2.0","hasown":"^2.0.2","es-errors":"^1.3.0","get-proto":"^1.0.1","has-symbols":"^1.1.0","function-bind":"^1.1.2","async-function":"^1.0.0","es-object-atoms":"^1.1.1","math-intrinsics":"^1.1.0","es-define-property":"^1.0.1","generator-function":"^2.0.0","call-bind-apply-helpers":"^1.0.2","async-generator-function":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","for-each":"^0.3.5","npmignore":"^0.3.1","call-bound":"^1.0.4","es-abstract":"^1.24.0","mock-property":"^1.1.0","auto-changelog":"^2.5.0","object-inspect":"^1.13.4","es-value-fixtures":"^1.7.1","make-async-function":"^1.0.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.2.0","make-generator-function":"^2.0.0","make-async-generator-function":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/get-intrinsic_1.3.1_1759188007373_0.008772483801711584","host":"s3://npm-registry-packages-npm-production"}}},"time":{"created":"2020-10-30T15:03:39.549Z","modified":"2025-09-30T16:34:34.522Z","1.0.0":"2020-10-30T15:03:39.692Z","1.0.1":"2020-10-31T05:32:03.992Z","1.0.2":"2020-12-18T07:22:01.056Z","1.1.0":"2021-01-25T22:22:34.211Z","1.1.1":"2021-02-03T14:58:25.007Z","1.1.2":"2022-06-08T15:12:14.076Z","1.1.3":"2022-09-13T04:01:22.362Z","1.2.0":"2023-01-20T07:28:45.291Z","1.2.1":"2023-05-14T06:14:14.066Z","1.2.2":"2023-10-21T05:18:52.454Z","1.2.3":"2024-02-03T17:53:11.747Z","1.2.4":"2024-02-06T05:32:06.445Z","1.2.5":"2024-12-06T20:21:24.984Z","1.2.6":"2024-12-11T22:01:19.760Z","1.2.7":"2025-01-02T17:54:48.205Z","1.3.0":"2025-02-22T20:54:20.619Z","1.3.1":"2025-09-29T23:20:07.570Z"},"bugs":{"url":"https://github.com/ljharb/get-intrinsic/issues"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","homepage":"https://github.com/ljharb/get-intrinsic#readme","keywords":["javascript","ecmascript","es","js","intrinsic","getintrinsic","es-abstract"],"repository":{"url":"git+https://github.com/ljharb/get-intrinsic.git","type":"git"},"description":"Get and robustly cache all JS language-level intrinsics at first require time","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"readme":"# get-intrinsic [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![dependency status][deps-svg]][deps-url]\n[![dev dependency status][dev-deps-svg]][dev-deps-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nGet and robustly cache all JS language-level intrinsics at first require time.\n\nSee the syntax described [in the JS spec](https://tc39.es/ecma262/#sec-well-known-intrinsic-objects) for reference.\n\n## Example\n\n```js\nvar GetIntrinsic = require('get-intrinsic');\nvar assert = require('assert');\n\n// static methods\nassert.equal(GetIntrinsic('%Math.pow%'), Math.pow);\nassert.equal(Math.pow(2, 3), 8);\nassert.equal(GetIntrinsic('%Math.pow%')(2, 3), 8);\ndelete Math.pow;\nassert.equal(GetIntrinsic('%Math.pow%')(2, 3), 8);\n\n// instance methods\nvar arr = [1];\nassert.equal(GetIntrinsic('%Array.prototype.push%'), Array.prototype.push);\nassert.deepEqual(arr, [1]);\n\narr.push(2);\nassert.deepEqual(arr, [1, 2]);\n\nGetIntrinsic('%Array.prototype.push%').call(arr, 3);\nassert.deepEqual(arr, [1, 2, 3]);\n\ndelete Array.prototype.push;\nGetIntrinsic('%Array.prototype.push%').call(arr, 4);\nassert.deepEqual(arr, [1, 2, 3, 4]);\n\n// missing features\ndelete JSON.parse; // to simulate a real intrinsic that is missing in the environment\nassert.throws(() => GetIntrinsic('%JSON.parse%'));\nassert.equal(undefined, GetIntrinsic('%JSON.parse%', true));\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n## Security\n\nPlease email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report.\n\n[package-url]: https://npmjs.org/package/get-intrinsic\n[npm-version-svg]: https://versionbadg.es/ljharb/get-intrinsic.svg\n[deps-svg]: https://david-dm.org/ljharb/get-intrinsic.svg\n[deps-url]: https://david-dm.org/ljharb/get-intrinsic\n[dev-deps-svg]: https://david-dm.org/ljharb/get-intrinsic/dev-status.svg\n[dev-deps-url]: https://david-dm.org/ljharb/get-intrinsic#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/get-intrinsic.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/get-intrinsic.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/get-intrinsic.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=get-intrinsic\n[codecov-image]: https://codecov.io/gh/ljharb/get-intrinsic/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/ljharb/get-intrinsic/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/get-intrinsic\n[actions-url]: https://github.com/ljharb/get-intrinsic/actions\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/31/3b/59920c28c5c217f2aef005d67977d5e62a87f41919c7f5a04fa7187a5e397b1c542fbd9a681ebd249bd719c043cda1e018c559aae4bab2772057ba6eeba2 b/frontend/.npm-cache/_cacache/content-v2/sha512/31/3b/59920c28c5c217f2aef005d67977d5e62a87f41919c7f5a04fa7187a5e397b1c542fbd9a681ebd249bd719c043cda1e018c559aae4bab2772057ba6eeba2 new file mode 100644 index 0000000..25a0ac8 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/31/3b/59920c28c5c217f2aef005d67977d5e62a87f41919c7f5a04fa7187a5e397b1c542fbd9a681ebd249bd719c043cda1e018c559aae4bab2772057ba6eeba2 @@ -0,0 +1 @@ +{"_id":"loose-envify","_rev":"15-4c5536f98845cef63a0f5b21911d420e","name":"loose-envify","description":"Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST","dist-tags":{"latest":"1.4.0"},"versions":{"1.0.0":{"name":"loose-envify","version":"1.0.0","description":"Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST","keywords":["environment","variables","browserify","browserify-transform","transform","source","configuration"],"homepage":"https://github.com/zertosh/loose-envify","license":"MIT","author":{"name":"Andres Suarez","email":"zertosh@gmail.com"},"repository":{"type":"git","url":"git://github.com/zertosh/loose-envify.git"},"scripts":{"test":"tap test/*.js"},"dependencies":{"js-tokens":"^1.0.1"},"devDependencies":{"browserify":"^11.0.1","envify":"^3.4.0","tap":"^1.4.0"},"gitHead":"93e8785c8b7a1fbf14e01c4b4aed4d102110a328","bugs":{"url":"https://github.com/zertosh/loose-envify/issues"},"_id":"loose-envify@1.0.0","_shasum":"df40073c10a625c178cccb0db23164c0fd058e75","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"zertosh","email":"zertosh@gmail.com"},"maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"}],"dist":{"shasum":"df40073c10a625c178cccb0db23164c0fd058e75","tarball":"https://mirrors.huaweicloud.com/repository/npm/loose-envify/-/loose-envify-1.0.0.tgz","integrity":"sha512-u/so5faDpWlTZQu3L67RSH6I5ShOyAGdNKJD4ckHNEJs/YoQTqgguXDKg1SVNpfYnbxo49oCSj69mu4Bsol31w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDUhZCJ7v+3J74rGeyt/pbpsSFL7ctTMUiKA6QW258UpQIgRkaxAAUiqSPstcjhUShPBEEVZhFmW0vAN77KE7187IA="}]},"directories":{}},"1.1.0":{"name":"loose-envify","version":"1.1.0","description":"Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST","keywords":["environment","variables","browserify","browserify-transform","transform","source","configuration"],"homepage":"https://github.com/zertosh/loose-envify","license":"MIT","author":{"name":"Andres Suarez","email":"zertosh@gmail.com"},"repository":{"type":"git","url":"git://github.com/zertosh/loose-envify.git"},"scripts":{"test":"tap test/*.js"},"dependencies":{"js-tokens":"^1.0.1"},"devDependencies":{"browserify":"^11.0.1","envify":"^3.4.0","tap":"^1.4.0"},"gitHead":"f536f4fdbde317d77827ac8655c6c8473928b9e1","bugs":{"url":"https://github.com/zertosh/loose-envify/issues"},"_id":"loose-envify@1.1.0","_shasum":"527582d62cff4e04da3f9976c7110d3392ec7e0c","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.2","_npmUser":{"name":"zertosh","email":"zertosh@gmail.com"},"maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"}],"dist":{"shasum":"527582d62cff4e04da3f9976c7110d3392ec7e0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/loose-envify/-/loose-envify-1.1.0.tgz","integrity":"sha512-4NSTa8hGGPR5GZqmiBXK5JbxPRzsfMXayx55AvpLGHvhsNiL01bToVMGiFxe4CBhBLJCil3Ek08q9+SNWiKlyg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCujhpM3ncLEg8LQHHpsiiu2QEzjXWTihKUpDZzOwGIbgIgI891QrwM9E8IKzzrnanV1Umy9Zr81efTv4c2dTx9X98="}]},"directories":{}},"1.2.0":{"name":"loose-envify","version":"1.2.0","description":"Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST","keywords":["environment","variables","browserify","browserify-transform","transform","source","configuration"],"homepage":"https://github.com/zertosh/loose-envify","license":"MIT","author":{"name":"Andres Suarez","email":"zertosh@gmail.com"},"bin":{"loose-envify":"cli.js"},"repository":{"type":"git","url":"git://github.com/zertosh/loose-envify.git"},"scripts":{"test":"tap test/*.js"},"dependencies":{"js-tokens":"^1.0.1"},"devDependencies":{"browserify":"^11.0.1","envify":"^3.4.0","tap":"^1.4.0"},"gitHead":"58a4c7641e8c8569df3e7cea72b398a9cb1cf158","bugs":{"url":"https://github.com/zertosh/loose-envify/issues"},"_id":"loose-envify@1.2.0","_shasum":"69a65aad3de542cf4ee0f4fe74e8e33c709ccb0f","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"zertosh","email":"zertosh@gmail.com"},"dist":{"shasum":"69a65aad3de542cf4ee0f4fe74e8e33c709ccb0f","tarball":"https://mirrors.huaweicloud.com/repository/npm/loose-envify/-/loose-envify-1.2.0.tgz","integrity":"sha512-KyUZthzTKOK79BVhotg9i7VT6BcBij33rdnPMeZfafKTO5Br6gzDGqTieocXCJW1n6so0rZCiFgoYM5W10tFWA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEtpoJpeWrPT6X7fvjQGz58kqdG1BJmIXXNA+MrcLaBuAiAMXoqdBFk1jGqdZc5sB+yKV8sqEe6hShPRGiV9FyUTag=="}]},"maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/loose-envify-1.2.0.tgz_1463284327398_0.7049096294213086"},"directories":{}},"1.3.0":{"name":"loose-envify","version":"1.3.0","description":"Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST","keywords":["environment","variables","browserify","browserify-transform","transform","source","configuration"],"homepage":"https://github.com/zertosh/loose-envify","license":"MIT","author":{"name":"Andres Suarez","email":"zertosh@gmail.com"},"main":"index.js","bin":{"loose-envify":"cli.js"},"repository":{"type":"git","url":"git://github.com/zertosh/loose-envify.git"},"scripts":{"test":"tap test/*.js"},"dependencies":{"js-tokens":"^2.0.0"},"devDependencies":{"browserify":"^13.1.1","envify":"^3.4.0","tap":"^8.0.0"},"gitHead":"11c1714ff0f25b6046c38eedd909f2ae9fa12446","bugs":{"url":"https://github.com/zertosh/loose-envify/issues"},"_id":"loose-envify@1.3.0","_shasum":"6b26248c42f6d4fa4b0d8542f78edfcde35642a8","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"zertosh","email":"zertosh@gmail.com"},"dist":{"shasum":"6b26248c42f6d4fa4b0d8542f78edfcde35642a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/loose-envify/-/loose-envify-1.3.0.tgz","integrity":"sha512-500ib3eg2h+w0xlKA5mcW1BxpB5EzgfK04rocSxP7JXnOHHAYD68iqObXKPyKvFmkdJT0ptUmm2IOyFSPtrCQg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGguqjxYdiGoNZ3fbVChInbkXJuROP1NS9hmnu8nzTeOAiEA9RTY76cXfCr6xlgdVxttsjRRWWVg2wSHH0MyHK9oBsY="}]},"maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/loose-envify-1.3.0.tgz_1477683270638_0.3732579650823027"},"directories":{}},"1.3.1":{"name":"loose-envify","version":"1.3.1","description":"Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST","keywords":["environment","variables","browserify","browserify-transform","transform","source","configuration"],"homepage":"https://github.com/zertosh/loose-envify","license":"MIT","author":{"name":"Andres Suarez","email":"zertosh@gmail.com"},"main":"index.js","bin":{"loose-envify":"cli.js"},"repository":{"type":"git","url":"git://github.com/zertosh/loose-envify.git"},"scripts":{"test":"tap test/*.js"},"dependencies":{"js-tokens":"^3.0.0"},"devDependencies":{"browserify":"^13.1.1","envify":"^3.4.0","tap":"^8.0.0"},"gitHead":"7b2d41e61a7ddba5335154b4aba327f6e850f7fd","bugs":{"url":"https://github.com/zertosh/loose-envify/issues"},"_id":"loose-envify@1.3.1","_shasum":"d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848","_from":".","_npmVersion":"3.10.10","_nodeVersion":"7.3.0","_npmUser":{"name":"zertosh","email":"zertosh@gmail.com"},"dist":{"shasum":"d1a8ad33fa9ce0e713d65fdd0ac8b748d478c848","tarball":"https://mirrors.huaweicloud.com/repository/npm/loose-envify/-/loose-envify-1.3.1.tgz","integrity":"sha512-iG/U770U9HaHmy0u+fSyxSIclZ3d9WPFtGjV2drWW0SthBnQ1Fa/SCKIaGLAVwYzrBGEPx9gen047er+MCUgnQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeNL8+NvgCXNu+DUYJ8CpC/YpkMx1ayUZESNgzzYsTFgIgcvI3hPULdKI2NvMJwgK389kwbBvn1veK8wA/FxXNQC8="}]},"maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/loose-envify-1.3.1.tgz_1484486581665_0.5577248032204807"},"directories":{}},"1.4.0":{"name":"loose-envify","version":"1.4.0","description":"Fast (and loose) selective `process.env` replacer using js-tokens instead of an AST","keywords":["environment","variables","browserify","browserify-transform","transform","source","configuration"],"homepage":"https://github.com/zertosh/loose-envify","license":"MIT","author":{"name":"Andres Suarez","email":"zertosh@gmail.com"},"main":"index.js","bin":{"loose-envify":"cli.js"},"repository":{"type":"git","url":"git://github.com/zertosh/loose-envify.git"},"scripts":{"test":"tap test/*.js"},"dependencies":{"js-tokens":"^3.0.0 || ^4.0.0"},"devDependencies":{"browserify":"^13.1.1","envify":"^3.4.0","tap":"^8.0.0"},"gitHead":"a8fdd02e3a435195f526053882d64537d627b3e6","bugs":{"url":"https://github.com/zertosh/loose-envify/issues"},"_id":"loose-envify@1.4.0","_npmVersion":"6.1.0","_nodeVersion":"10.6.0","_npmUser":{"name":"zertosh","email":"zertosh@gmail.com"},"dist":{"integrity":"sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==","shasum":"71ee51fa7be4caec1a63839f7e682d8132d30caf","tarball":"https://mirrors.huaweicloud.com/repository/npm/loose-envify/-/loose-envify-1.4.0.tgz","fileCount":8,"unpackedSize":5814,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbRJP5CRA9TVsSAnZWagAAQQ4P+wRneDh61dzk3uPX6QCb\nZ97i+VxSY74ti8gVGSCryXFkL8zPsjlBd1/yADnaS5y6InlHuHQZQ2820I3x\ngfSjlhCU9drbF8vXw7FSxIRQfFO5JvF7+L5M1mvsDVmz024M+97DQwFnRjo5\nCvSDVLC/HbnnTRX1Cfj9kQlDVS85RhLaDvYWendfUfivp++TwUizDUTS8nOu\nVIiwXygaef55bBmo+yNeQa+GmyAWET3jAaPl0MNBht6jtnMY9ZkgwXc03zaE\n0wRcOZbBfhUKk1VEk2TCN/TtN+AyktbI5rmyQXoHBGn3HjZntI/LjLmAw9dD\ndetTKPf1O2n8KLT/tGZjIRQjQWNbB51thQ4H3KsMBSfbIhdnZvFHmnDKilug\nIGjE4lKa4px0/ac+SBw6wQuZMy4I3xCbZd59qSpPB3IO0E+Qm+rhLdUiMDjf\n2y49xwMB7dixjRv7sLLqYwiSkXGkLp1N81drN7oNoZaLxOVCbJQKYoHwnsY4\ncoRc7W768FaKwZJPIWfZK2u2MAq5TL4v2+2laxAn25K5Qs6hh8rguSho7iPR\nZcaKA/maVJo8BGO+CEqvaysfUbnYZ06VOFnzG/TbLnLlmZUMMex95z8RloP8\n4kcoh3muuqd75sMUDURgjFCvXbQeORMZ3sa+G8h716pUVjvKLu5xNOF7qCN0\npadk\r\n=rcpJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCtEQH8N9PyT4xrBOIczpbwwOu4sf2mIqw6XS4KIwV+WgIgQZ76hRyzJ94tUL0jNVJ8VyAx8MoCeb7p0qmyKQUEka8="}]},"maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/loose-envify_1.4.0_1531220985830_0.4259877346481684"},"_hasShrinkwrap":false}},"readme":"# loose-envify\n\n[![Build Status](https://travis-ci.org/zertosh/loose-envify.svg?branch=master)](https://travis-ci.org/zertosh/loose-envify)\n\nFast (and loose) selective `process.env` replacer using [js-tokens](https://github.com/lydell/js-tokens) instead of an AST. Works just like [envify](https://github.com/hughsk/envify) but much faster.\n\n## Gotchas\n\n* Doesn't handle broken syntax.\n* Doesn't look inside embedded expressions in template strings.\n - **this won't work:**\n ```js\n console.log(`the current env is ${process.env.NODE_ENV}`);\n ```\n* Doesn't replace oddly-spaced or oddly-commented expressions.\n - **this won't work:**\n ```js\n console.log(process./*won't*/env./*work*/NODE_ENV);\n ```\n\n## Usage/Options\n\nloose-envify has the exact same interface as [envify](https://github.com/hughsk/envify), including the CLI.\n\n## Benchmark\n\n```\nenvify:\n\n $ for i in {1..5}; do node bench/bench.js 'envify'; done\n 708ms\n 727ms\n 791ms\n 719ms\n 720ms\n\nloose-envify:\n\n $ for i in {1..5}; do node bench/bench.js '../'; done\n 51ms\n 52ms\n 52ms\n 52ms\n 52ms\n```\n","maintainers":[{"name":"zertosh","email":"zertosh@gmail.com"}],"time":{"modified":"2023-07-23T04:49:38.578Z","created":"2015-09-21T04:02:42.524Z","1.0.0":"2015-09-21T04:02:42.524Z","1.1.0":"2015-10-18T14:42:18.633Z","1.2.0":"2016-05-15T03:52:10.703Z","1.3.0":"2016-10-28T19:34:32.580Z","1.3.1":"2017-01-15T13:23:02.230Z","1.4.0":"2018-07-10T11:09:45.917Z"},"homepage":"https://github.com/zertosh/loose-envify","keywords":["environment","variables","browserify","browserify-transform","transform","source","configuration"],"repository":{"type":"git","url":"git://github.com/zertosh/loose-envify.git"},"author":{"name":"Andres Suarez","email":"zertosh@gmail.com"},"bugs":{"url":"https://github.com/zertosh/loose-envify/issues"},"license":"MIT","readmeFilename":"README.md","users":{"chinawolf_wyp":true,"alexxnica":true,"shuoshubao":true,"nraibaud":true,"chaoliu":true,"flumpus-dev":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/33/2a/a5893646b8e9b7fb965149a68118fdd448bc3af841b2924c199ecd843c2e60f23278cfd3ab75963d6a9925dfe50ff7eb1dcfbe98624c0228fe6087c898de b/frontend/.npm-cache/_cacache/content-v2/sha512/33/2a/a5893646b8e9b7fb965149a68118fdd448bc3af841b2924c199ecd843c2e60f23278cfd3ab75963d6a9925dfe50ff7eb1dcfbe98624c0228fe6087c898de new file mode 100644 index 0000000..c80edbf Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/33/2a/a5893646b8e9b7fb965149a68118fdd448bc3af841b2924c199ecd843c2e60f23278cfd3ab75963d6a9925dfe50ff7eb1dcfbe98624c0228fe6087c898de differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/35/29/21b70bad91dc25f60a2890a34f7c8a7e01d8f5f40fa89239a4a44880d8b468df09327a3fd8fa9165a3ca3036e532b53fd80c05de2c58dd470a7b8292e63b b/frontend/.npm-cache/_cacache/content-v2/sha512/35/29/21b70bad91dc25f60a2890a34f7c8a7e01d8f5f40fa89239a4a44880d8b468df09327a3fd8fa9165a3ca3036e532b53fd80c05de2c58dd470a7b8292e63b new file mode 100644 index 0000000..7b19833 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/35/29/21b70bad91dc25f60a2890a34f7c8a7e01d8f5f40fa89239a4a44880d8b468df09327a3fd8fa9165a3ca3036e532b53fd80c05de2c58dd470a7b8292e63b @@ -0,0 +1 @@ +{"_id":"@emotion/hash","_rev":"24-9ee4c4560c0beb0950b91ef6fa48b5d7","name":"@emotion/hash","dist-tags":{"really-unsafe-please-do-not-use":"10.0.0-really-unsafe-please-do-not-use.2","latest":"0.9.2"},"versions":{"0.6.2":{"name":"@emotion/hash","version":"0.6.2","license":"MIT","_id":"@emotion/hash@0.6.2","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"4cfe6b57e251aa7f254750ddac7c449ff99c476f","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.6.2.tgz","fileCount":12,"integrity":"sha512-xtkDAGcgnod4SBxAEoMfA3tSWLeQqfvJop+N5p5Ni8sc00zYe38mC0DZw073g0q6DhSqVUtJlYa/A5TPZiqNHw==","signatures":[{"sig":"MEYCIQDf07Mqj4agBMsOKDm65AM/sI8/IbsAvNzfwVX11JQzIQIhAMSHfXzgrnTeQOzmNQkt6JDHNUxb3Lva6/ycnVj3JmYz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10048,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa0dBJCRA9TVsSAnZWagAAhDEP/iq351AUVJQxvnKINDdG\nfsfPgWVND6eRwIBgmmQsjAiUDV996kRxRj8MqWXNkYJmz/+CGC0TE+yDjNm7\nj+H/1sYdNn5e+NWj6ywvh6VS7GMBH3W3mW+glNT9gI2b8KfA/qxfcidzEvyv\niw3uxsLcJKZMiSaP7HHtMlEeyVi6oZ355naFwtlPo1y3rRMFKZl8QxktT+X3\nQ48PS1bLmV71ACeKgw4JCSZ5tKZASnGTuZ1rh2HrNXrlBwt1OAwJBAB1/sD/\nonCf0s1LXrFhLZc4MxbZETJvE6hGn+fAXZg+xJujJM7BtVilen/CqQROHX/w\nUHDqaq6Q3VqloObKQss/Qq14+UaZ5dQnVjEmFJE8CIJNltHxSDLbWd6MOibh\nrGOGLk8XNQhZZqf5oFLSbJ19dJwppItsUyDdmpHtGuRH//NV9hYq62xsfRjA\nE6XAH4ZRwPfPxwaXgsbpgo2zK0B5mNsitdCle4kssiKyvTjdIYiENGAPIb5d\nVRh7QgWIYdfSthxmsx5WAJgZDxps4iiRUPTVikaiwrcpnnYoOBf7yOXZujeh\n1L0J9KHR6gMdzuMn5S8D4eit/7VqteBvDSmgJavoEQUq4feMMqLXQfGSW4lQ\nnDJgO9BPHPSdltG2pa9TN+uSTRc8lKccmGGgF2Yg3IDvwkY9YcDQEIvfBolY\nt1gQ\r\n=DUzr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","files":["src","dist"],"module":"dist/index.es.js","_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"repository":{"url":"https://github.com/emotion-js/next/tree/master/packages/hash","type":"git"},"description":"A MurmurHash2 implementation","directories":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_0.6.2_1523699785521_0.23576355162942253","host":"s3://npm-registry-packages"}},"0.6.3":{"name":"@emotion/hash","version":"0.6.3","license":"MIT","_id":"@emotion/hash@0.6.3","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"0e7a5604626fc6c6d4ac4061a2f5ac80d50262a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.6.3.tgz","fileCount":14,"integrity":"sha512-txdP9SWZmQxE1D7wrd2OuDrmO4amQyAoZZthidMgaO1B1jbrdXycZXN+S7YoK+5PgEWjOuUatCjIFmxJH2JE8Q==","signatures":[{"sig":"MEUCICl6OBam3oRG8Hd6MQRenNH6BAXzTCwm0NmW1uRPVXd6AiEA6zm02KjQMIgaPFU6eWQ+0kk6oSBa/IY5IDtPC0fiVwM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5DipCRA9TVsSAnZWagAAJJAQAKPUbh/KABlE3nj4OF6t\nsfYNABIpnoUddHUDplLtYuH5xexGOYNLhaAIQF7sv6D5Zh5XgvSBslcAs19f\nBDaQcOkRbzoXumbqoAFJSdNB/ktLuHxiHwy6vTiIoSSIKTUNdsTzJVRIjZkE\nprqLtekEeHac6FwwkF6Flini/5ZrW7xCZNBhL2g2tMl5rUrpd9O/7dgBW5bQ\ncrePIXkdSCsC18aIFWthkL7LyuBse7Vd2r3qpS1wD42Kf/AVhRLD2IK6Fshd\nLdcszGyfJNBNZD6E7xgFMzjQnOwkfHvoxDwq2lhKcjnfPfN2ESt61MA5YVTl\nZ2HzwIVuePiGUUL5yWS95cj6u1baffueFKeFXpfZdY2HHWbalZBOGGywKTvl\n/7zJdWa+fcJ9ozAaCsBYtg9NW6JcigK60mrDqNCqE+iHWtxXoAJ2qmAn9JWL\nYRtkvhj/Kn/I0JDunTkoLa5hDeJg7mjBDFfRd3Etj1iKRviztCN80JSYT8hN\np0YAXoptmZq79PEozZJzLI0RJGi72uwJ00wa6RiCnQEXKW5qMUCbwxqL5Y8R\n9ePWsNUMQwEK+YPKnFGnEQL+mdZ3ALLMvHmfBduJNeZhTcmkCwySAESaHQGq\nVv9nVohOFH6XzdBbzKyY0btjvwBAoFxubhiWztjB02jo8LSuJfEuD4IFuUew\ngyNK\r\n=9PbW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","files":["src","dist"],"module":"dist/index.es.js","_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"umd:main":"./dist/index.min.js","repository":{"url":"https://github.com/emotion-js/next/tree/master/packages/hash","type":"git"},"description":"A MurmurHash2 implementation","directories":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_0.6.3_1524906152869_0.9143364951028949","host":"s3://npm-registry-packages"}},"0.6.4":{"name":"@emotion/hash","version":"0.6.4","license":"MIT","_id":"@emotion/hash@0.6.4","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"323e395e350fdf878ce05dd63f7c9c7bf0e979d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.6.4.tgz","fileCount":9,"integrity":"sha512-99L59dC9A6Gwva4SHbUZKhXN8kDvF33qsjr8RD7IwQwgTE/kd1nGdzZmHVQGgqDnHdksTGPSYHqMYwt0pX397w==","signatures":[{"sig":"MEUCIQD2u/S0JfohhqivYjf2B8AeeVpU0D8daiRwEB9eRjlTIgIgGXiWiElA3xErR9Jl7AYr7iDakLe+3+AgsE9nCkuthCM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12126,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSXdlCRA9TVsSAnZWagAAgusP/02jE70O+KFQvGNg7ESA\nAkJr8ETG4PWQFr8Q7IDj6KoLy4wpLkAXNXh53oWbdqBcVuiXB0IF5GdPEj9T\ngwx0/ucRCdd460ull/+W5US0zS3U8yBYU4FfZc9bjnbK2J9TDTKESMrwcIYG\n9lrX58qkW/+aYQG9Ug8EPqzeid0n8jzBje8tPJJSDGDp9qceCsSBmzFE3Sta\nvg44FZIZac9l756KYUvskNBKs+bbO3nWS73lFcuEekDKK3AguikMiWyayH1s\nzuHFbHY5kOnMBhdL0blK8+wQxgK32NTGvfWgYxRQAXPks7ychKEECRuSMLYy\nDHKkzCLUnTvycg4EuW53nHVZdOw/pDz70oEEh3EkbRMg/QtBI5IoxaIbA4tA\nuwEMTrqqRSa3mSV8/nfiTKsPqoBp2lbbqG6PSapv3vWipo136jiwi4ojEJdC\nnbf0XCGdqDXEne4VowVEKriGGtV7oEKSu2EpAfyRLJDd82GRzR0ojV4AVr1+\nVkLoL5QGdpjdCSLvvB41nttUo+3P5IjaRwxXB2qd+PuUM87bwE9yUCZAJ0gz\nHIktZ4jameaew8GJ93lfmROXdVxBzDXAtbYmVh0vRSlqI0i8g4CvlELiqGP9\nx38pMcgbAj8N8jt/fho3ihEG1ltehBXDtQVlzm9ykgUB4gcQgTOaT0qX3bs3\nWfdK\r\n=6NgU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","files":["src","dist"],"module":"dist/index.esm.js","_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"umd:main":"./dist/index.min.js","repository":{"url":"https://github.com/emotion-js/emotion/tree/master/next-packages/hash","type":"git"},"_npmVersion":"5.6.0","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"9.6.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_0.6.4_1531541349539_0.5094769700706772","host":"s3://npm-registry-packages"}},"0.6.5":{"name":"@emotion/hash","version":"0.6.5","license":"MIT","_id":"@emotion/hash@0.6.5","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"097729b84a5164f71f9acd2570ecfd1354d7b360","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.6.5.tgz","fileCount":11,"integrity":"sha512-JlZbn5+adseTdDPTUkx/O1/UZbhaGR5fCLLWQDCIJ4eP9fJcVdP/qjlTveEX6mkNoJHWFbZ47wArWQQ0Qk6nMA==","signatures":[{"sig":"MEYCIQCCII8Phme9e2MoMdW/mykEbrUOw0Ue50yUztp+Qb8pUwIhAJYeooyH/4gXFk5I7nQseBNppCH1T3ZxSeNGR5LGbbEI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSsf1CRA9TVsSAnZWagAA5VYP/j9YSM9gVcPH3ShyWnus\n+nJ6ITmNOspsloYmEHPHpoQc2UbPbylfF7k6yd7XOsjwpicgU5H09bEyjwpV\nakZ6N6hxXGHCOwHQ9ofbzhaWOXRpxYPlr9SZoAmymkDdaWhOsGDQjim7udhO\npoTqPW63nI5QHsWHMrvlGhKLUnuW+sWVLczq+tzhopuwt80/2ANi1qIjc819\nytqIrNH7k0OVURle2zY8RnjXthzaCswI4Ka+BSW3Ck4vrh9ZmaqG7Oa7twpZ\nDAsCWMeBgMb1cc2ohdginSZSZs3cTzjkWosiVeQtwQ8PJrGTTyLuh1K0/ryH\nsgBzLzzpbj0Fw6hdz3scEdgnTrPsQPiz9hLlvHfgzqBvEmjT1noMSE6sa6If\nTTx/3NTVCBHtyloAoAma5UwiFdAKI46EgtyhI5zeO6wgQpZNNy6o2c7ZSEf/\n2CmxvSTKM1VbzNu9iTGJ2/5E+7T/xNxF+Q4xRvj9PSpcGkaEaF60Quxkz4Wb\nMuUZzmeOLGnIqf5KIOhdqtL6UKjcOb4Qg1ACoL5zOH6Io1NCNjqx0NW3T17J\n+So+g3Ohz1mXSRhrAEirqF9MhvWLoPzoXRXf5j09uoDb5REekiOjOSl2Tc1H\nml3aUI8YsQ3b9Qjq/Am4ZFz8/MbTCEHgUnKFjrqTey1f8WKU0vR17MnrgD2z\nvujm\r\n=nsFm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","files":["src","dist"],"module":"dist/hash.esm.js","_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"umd:main":"./dist/index.min.js","repository":{"url":"https://github.com/emotion-js/emotion/tree/master/next-packages/hash","type":"git"},"_npmVersion":"5.6.0","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"9.6.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_0.6.5_1531627508781_0.6875877073328416","host":"s3://npm-registry-packages"}},"0.6.6":{"name":"@emotion/hash","version":"0.6.6","license":"MIT","_id":"@emotion/hash@0.6.6","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"62266c5f0eac6941fece302abad69f2ee7e25e44","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.6.6.tgz","fileCount":10,"integrity":"sha512-ojhgxzUHZ7am3D2jHkMzPpsBAiB005GF5YU4ea+8DNPybMk01JJUM9V9YRlF/GE95tcOm8DxQvWA2jq19bGalQ==","signatures":[{"sig":"MEYCIQCkt9t2s1ufHUDkU1x+GK5nzmP83jUubSuRs/sUlBQYTgIhAPPNu3orrQIMmOFTwA1CrZ0gRmJgYKPRtUXJLODhJRoM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8231,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpAm+CRA9TVsSAnZWagAAm1cQAIJlin5S6LGgGQm/iqwQ\nXq7Ecl2sYpaQuPM3sKw/f6ZctgRah4zVhzYDrKMN40184BjdX5BxFI0cSx02\n3YrQ1TRiUWzfoW6Gk8itzmUMdg3U0Q9//aDjbWsEvDqwgjOFkyAcVxblbrsS\nU58vnrHUMvxx8fv5gS0b5p37EPB1pty+ePEaDOTs5KK4BeCurQiwbhglNBpZ\n+qadkx/NFdgrs1ZVYJUF/PeCK9EEXNz2Ac+jpaWkOeEp0jmK0wnkzQxIBPsl\nPeF2+ERIdD528lJq/j0dC490FN7ygm5IX/QEK2p/JFNNEJRK0HPeIyHqRIOh\nqAyV/LaFDNOx6F8+0xdp2nYkSFXYgjqACVwTBW2w4qwHIFSocTUGDqMYtYrN\nxqEMx+2ZB8ADCj6nXhxxZF6DSrhStPKxnXEGRg0lWvTKGb/N7Lo5IVEl0xj6\nztVqTTMBQbGu9ax+WjXgdwth2Rnr1NR2N1HRy6Jmdv6bNKP2oImdj/JLyuJy\nLKC5i3fYBCz7evRFgr6607BNCHgwaEaZ9PbWycQwKy51uZNj65q3obxSc3kQ\np3rUY4pkWPwUml9GE3XikGzoUp5FefQcT6fZdyiaPxQthrE0v/jiTvi2K86y\nR+Gs5w2/pLBfHDAD82c6Ajwnjqs853Bgnrsa2UnnRxIHPBXreHbM4Rhh3KaV\n51U2\r\n=5O5H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","_from":"file:emotion-hash-0.6.6.tgz","module":"dist/hash.esm.js","gitHead":"94fed7652759a0f1962da66b922299398e39fe4d","_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"umd:main":"./dist/index.min.js","_resolved":"","_integrity":"","repository":{"url":"https://github.com/emotion-js/emotion/tree/master/next-packages/hash","type":"git"},"_npmVersion":"6.4.1","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"10.10.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_0.6.6_1537477053825_0.7322914090646564","host":"s3://npm-registry-packages"}},"10.0.0-really-unsafe-please-do-not-use.0":{"name":"@emotion/hash","version":"10.0.0-really-unsafe-please-do-not-use.0","license":"MIT","_id":"@emotion/hash@10.0.0-really-unsafe-please-do-not-use.0","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"71f137bfe305d8c817454a405003ed9ee6a137a0","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-10.0.0-really-unsafe-please-do-not-use.0.tgz","fileCount":13,"integrity":"sha512-VrrltzRkb9waeZJvxK/MMNvjrA4yMOBcjJWgCKlKa6qFDo9sv/4UqHXUq1/I4kv31xb3z1lGdm5S6kT3qK221w==","signatures":[{"sig":"MEYCIQDg2faRg4VECdV9TKIZ3hrzvT4NaFP9cShmYyyHo7GUKwIhAObOR69urLzAAM5n+c3ExTu0HHNt9XgBEeUJl94d1uDa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrWjoCRA9TVsSAnZWagAAFH8P/0yUlUKAh1ZoAJ7iZzBT\nmbMafVLVibMLJgp2loYMdmiv0srF3lUOU1K/rOz4uCvu0U+IJ9f91j9r4R6U\nZIch+3jTJAfhuUCL1dK+4AI6Q5sQr6tzLH7TPe43Pfd9yQv4BRvJMbmGeEgB\n7K2Sozj61FQ3U4l07/BdPqPT3ncXB1L2TFdEyKpnNmUR0bE01DChkUaNCPMr\nVZaDkKp8pR9oicPYOckzS2b3vBvuOnztPAPFShJqPPmclhI8WVhSO88JurgI\ncNT31FGFNDgD1oeI5iJ2Cs1oxch/tCd83osvpjVeTvmO9QTZmnl/sOyHq+Ty\n2aqdUj0xgrwrNcJvn+4Dzig0GV+BUs4DYUs4CzZuMO3tARnArFzb8mFWdlss\nVGAYmfqiZ4IEpr8Wpwn8X5YluWtXmIYxa3aT4Qobh9k9xEXYyGA7sZIVzoUP\nB5s2G/EoaN9SAbTlszvvYR4Oy6fUwgqb62FdRK7A+ofYtx2oYwqt3DtJcA3C\niucwR1I57T+AoOALiJbTVeKTvTnACv0v8TjnxQtuyXfZEAgfQPV0YGUiEyVW\nYi6g4runEc9ykNzN8AbS9I/xoC1ly7b7Iq8bZAEvGwHa2NmYgkJX+y7pJBhs\nh8k+EREx6qs24WW3ii4E54eIpRUWykUe8wP9FeD0+YtptCU7dLUMrcx/Wbpi\n5Oex\r\n=F25m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","_from":"file:emotion-hash-10.0.0-really-unsafe-please-do-not-use.0.tgz","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"gitHead":"a5f3825603dffd69fddb44bf5f29afd7c49eabd5","_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"umd:main":"./dist/index.min.js","_resolved":"","_integrity":"","repository":{"url":"https://github.com/emotion-js/emotion/tree/master/next-packages/hash","type":"git"},"_npmVersion":"6.4.1","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"10.11.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/hash_10.0.0-really-unsafe-please-do-not-use.0_1538091240274_0.976394266518837","host":"s3://npm-registry-packages"}},"10.0.0-really-unsafe-please-do-not-use.1":{"name":"@emotion/hash","version":"10.0.0-really-unsafe-please-do-not-use.1","license":"MIT","_id":"@emotion/hash@10.0.0-really-unsafe-please-do-not-use.1","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"d8d8018e053ec0164f0b75bbdb645fbf26d75b70","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-10.0.0-really-unsafe-please-do-not-use.1.tgz","fileCount":13,"integrity":"sha512-6QfKWZFx+dxkjZQ/42y7gmFuWNegmXre4M/j+wRSaYA9i8Isboa6BMNG6uXXVotPMKrCE+BYkhDU02gkT/V/tw==","signatures":[{"sig":"MEUCIQDqWz2haItXBxY5jHk1aBBB6ulVlDxG18DI59XqsmS3YgIgWEP7VRsdhps2xDuDcdZZKO40+yN1/eX+i0qN4WYMzkA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbrauFCRA9TVsSAnZWagAAOjgP/RNeMcruBdPNseNbdNZ+\nUMj4BDvQGfVm0r3nZ4/0864xEiAk9vfVt5KVZzRzm5vCf9x6G3iatYh6jYKb\ntqrcvI+K+chVpqREGeZ5HWbbmibv5MOMUSK3EERln9MJIYOs9PTWOtobVDt5\nbI7VCrZUvNedL8+0+XqqtStezr/3xeVYhoazmGRJ01dsUiv8xPIQHGNP4Iny\ndbgDGgPBd9yMpmc/W7YJ2pfWCKpVuF5HPX82BD63T5mehHmCKSoqB+9ZnbyX\ntWgpWoWVt9juTyMt9kUU9FHlWiVTva6tNtJFQkWCgPjm8HePWw9c/yAW6S3A\np+OsKRrEHDkcjTjAdS9pjsqyWx2e+pRdw2Q1doJd0K3BJN9wlkWg/zUORsMa\ntR9TalMoJFWfxsItq4HTIYNVxRZe58Ca4meXA74JPJO8XJXjWJgo8N/PkL9R\nHtHe7G/aoxVFqqnwtsT0L2ApltrjKlAbvxb5dV5gJDKW7/3AsZ1iFAZc8AcE\n/foYs9CX6Wi/BpQnItziSJhlV77oVqfnxa1/+wbArN4CmD48yNYCIjEfQYwD\nPhLIcdfGWo4w3yAHPV9HlVHBedye8w4UYflWZEV/H8A9j4P4vODCXyct1AIR\neixsdRZRFG1cjXRnPopo28e5IeJL7ziGhsF42dlPysM96OHdz+y2QdY/yHfh\nAUNN\r\n=fU3D\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","_from":"file:emotion-hash-10.0.0-really-unsafe-please-do-not-use.1.tgz","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"gitHead":"2b1bf6ef43eaa9133ba7a9d7c8d96ebc1d3877e2","_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"umd:main":"./dist/index.min.js","_resolved":"","_integrity":"","repository":{"url":"https://github.com/emotion-js/emotion/tree/master/next-packages/hash","type":"git"},"_npmVersion":"6.4.1","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"10.11.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_10.0.0-really-unsafe-please-do-not-use.1_1538108292043_0.9809327926385336","host":"s3://npm-registry-packages"}},"10.0.0-really-unsafe-please-do-not-use.2":{"name":"@emotion/hash","version":"10.0.0-really-unsafe-please-do-not-use.2","license":"MIT","_id":"@emotion/hash@10.0.0-really-unsafe-please-do-not-use.2","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"f6229d19de147d08d226e21f2d8ef180ef4af1f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-10.0.0-really-unsafe-please-do-not-use.2.tgz","fileCount":13,"integrity":"sha512-VaPXypgD2gjFUzrQ3xZTCeWINL/zme6s8sAMy917IeR2OpfQzwEmXFhRErFSY/5jHBGNU/a3UZ2g8gvcl/0fWA==","signatures":[{"sig":"MEUCIQCv4lYMMJ/t8vlvnXvxqGe5SLbh3O+5OpEM6sJDnZN9pwIgZRpemHOu3UhEifYLMHiugKqv7F+Yd1XrK93/EsU59Qo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbra/uCRA9TVsSAnZWagAAg/UP/jl0MEMiIhMyl6n/WLI9\nUhVjPD/S0rsDD3+RcIbTUSsqlXFY0WmcO5P3OGyxSwiWObbe0Jv8tX4VOsbO\n0bQtO/6zkzCyoGcSGPNDKNiXoCKHr8aIfIYFG67d65B52KPHm9cpNBlpJqnw\nE4qGRhRD8dmga7nbvuCetROoE0ijSyFvzE57QajE+rMdmfrc/eC7qhY75lC+\nGaIK/sRitNnuvvmDOERbdyI07cCKZ/+04HC/j5xcfZkWviFB+D2JAreCZydt\nAg/AAV20SE8BfwZf3yjSVrheIMQui9Vw5+owECmnX1bD5v5mYbB/jk4LX8ao\nD88g0sms4BK0ODPQ2+nUQBR+1vMWcUZF5C90aucjticYwg5afVwnYfqK57z6\nFKm+nNyVK7e3ExaYapkezfdZK9+ULrHm7tZkUyPIabFXmwm8tq3oNQtrGwRb\ndne72REL0k2Cq4mX7UPn+E/h7oGxMyCKyM4dhAkc/sEsHTYNFIMd+gtZa33c\ntwozUuDMq2BG9HbFNDt9QhF1DX04VqxgH0xHqxrb8zuEKLFqhTo+qsDTwpYT\nxE0jsGfuZGiBzpnT2uSCPNJgPvywGHg1TF+bAocLABxPA2lF78LPbCzDFox2\nbcI0JmzPVr5e9VVT7tzYkUSjJIdlZrzPV7ws1E3oDk1WVqlSdtFgJzK/EweH\nl1SB\r\n=f/0z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","_from":"file:emotion-hash-10.0.0-really-unsafe-please-do-not-use.2.tgz","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"gitHead":"0da0de50f6f2c19e46bca7662d1a954d48db1264","_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"umd:main":"./dist/index.min.js","_resolved":"","_integrity":"","repository":{"url":"https://github.com/emotion-js/emotion/tree/master/next-packages/hash","type":"git"},"_npmVersion":"6.4.1","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"10.11.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/hash_10.0.0-really-unsafe-please-do-not-use.2_1538109421264_0.6562323405144324","host":"s3://npm-registry-packages"}},"0.7.0":{"name":"@emotion/hash","version":"0.7.0","license":"MIT","_id":"@emotion/hash@0.7.0","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"68d9cb2e75fabffbe5cae6c17a91dc287439a0a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.7.0.tgz","fileCount":12,"integrity":"sha512-QgeU1fPmGTrb07IkuIl0+PcrnIz8UbkosC8tG3OEiTsqH1GPorqKZQzY2wA2dF8xX/I4XV0FQ1UaOwd18sIHIw==","signatures":[{"sig":"MEUCIQC3om2tGeBWAU1blJvkN5vTeHqYOtVZmuRgEOdKHPVMVQIgOpFi0DkQQoC0uoS2SjMgQ6Lhy73tO27NQuq81QvR36M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10893,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbwaAZCRA9TVsSAnZWagAABRIP/jbJ4kPozrRE2l5z60ps\nOgcFzsC15Q3EcwWRiNm1IxxFU8gSeIWjcfAG0oJY8Qui/ux+8pSiTUJLQn81\nP40XRLKRpsroKK2CjbyJ4Hvh/RImiVd7HG4NKPccgbAne0cikxU9K1RCTrbV\n4f4eti0pyD/jgEkXgH8SurXuk0SJjC/Ld0AcTsr6GA0wBQ2R4cEsff7cOFl2\nopTIkGic1YoqFub/DMdWNTf9omgjVJ/oE9SDCNo7YtQrVeLryEgKMDRnVy5U\nLDwnJJOPDLXjL5NBVOHOctRzgyyyuiNW7ybM4dJ03bW6NaF4Lj+XCJvPWUMe\nff/0vwVNns3TLSIIMnbfOztiI32L/k5O2hmc4BBiKaXXLo+9gIdWow1+72Md\nvQLBMWepdsR0ZS9G8Vr/5z2ztjFa0PjO8lEnSkoOgFnD/IGhczfJzOO9Bjrn\nZRt+NT6995GYjDvHLIq+/QZt0HEkCRZYXdAdijqK1m4AWNYw4HMI3WyqUPA8\no3Ge6m+BIaymeQVkj/V1pg/QOQwrWDdTJaNbX7kAJOZXYosDCghfKcrWTkMP\nfiiJNDei+FamI7mExV/ApuhHZ+yj2kWTP40CE3x0eeHcgrO1FL4YkeRv29bJ\nQSJI1Wq5jaYeUnS9RSbnYSyCzpWWWyC7oLjRLL1HArnyg06g+gwkgyYH3xjH\nI+mD\r\n=+ic+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"umd:main":"./dist/index.min.js","repository":{"url":"https://github.com/emotion-js/emotion/tree/master/packages/hash","type":"git"},"_npmVersion":"6.4.1","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"10.11.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_0.7.0_1539416089058_0.8128501586987382","host":"s3://npm-registry-packages"}},"0.7.1":{"name":"@emotion/hash","version":"0.7.1","license":"MIT","_id":"@emotion/hash@0.7.1","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"9833722341379fb7d67f06a4b00ab3c37913da53","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.7.1.tgz","fileCount":10,"integrity":"sha512-OYpa/Sg+2GDX+jibUfpZVn1YqSVRpYmTLF2eyAfrFTIJSbwyIrc+YscayoykvaOME/wV4BV0Sa0yqdMrgse6mA==","signatures":[{"sig":"MEUCIQC284q35pzhftUfMkKPOk1/YQ5Un+N7Ui1y7gEbiVUyggIgXwEpIR5LJmDJSDimZ0dooI0ueVbniemE8eSjcCPTT74=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7973,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb8/+ECRA9TVsSAnZWagAAIQ0P/1e0wW9UIEVhteSuwQto\nRRbqJVeSFla35V99IyGV9G2Xh/+UXippo1KaN9yOKmh6rf8RHZihrHArJ28z\nTuDQYk7g6JIR8GdmIM2VjqiPIV0ybu0S/GexqH7qjJ0gYNf/a9YK67B7vYHM\nvEY8wkSh1BF0UpAQ4Y5+hYHwfLzujpbLN4UJvI3AQjxPDvpv6MfhnlX+njhR\n4YaKW9MQl9l+t+yXJDKUyPQwC4+FwlipIPfJzB4j1wrSKwUrRMQG4v6YYkq4\nQOvTQdnyrZFNQ6K9zhkKmEvFsyZC3VxMdXoU1YDCP4sCD6h69AxhiJJXkfIi\n6Au2Z8oK1ypIncTQ7TpcJOE3LE93yAhDCCy99HsrgLvemomIFbcH4Qy0Kouu\npJb2Yh5F50TI448ldLCs0GBz+zKE+USF/K4N2iFelGenR8+/RZe24KxpWNro\nivdZKltsb3pzXwLPTEiPuGgn8c96RBMokpJcXJVBT/EDlh+vyqFnrXv6AnLW\nwT8/r1kIg6lT3uPa8ERV3YKyRvgfPFGFVCTDEEVPfu/hBO/hMBJtWQKycb/E\n6vR/EOLg7DEjZgX8ZJMnCitdU6ytHTeht1zDFRBvL2G9RTH3LVoTc/7Vx4hd\ne+FukLrIBUHGt3YTv/9VkJ7fzkty/MZk5bUHyREXKTzjmR5H671bRt7KLOwf\nY85K\r\n=hOo5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"repository":{"url":"https://github.com/emotion-js/emotion/tree/master/packages/hash","type":"git"},"_npmVersion":"6.4.1","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"11.1.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_0.7.1_1542717316147_0.5753025477369909","host":"s3://npm-registry-packages"}},"0.7.2":{"name":"@emotion/hash","version":"0.7.2","license":"MIT","_id":"@emotion/hash@0.7.2","maintainers":[{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"53211e564604beb9befa7a4400ebf8147473eeef","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.7.2.tgz","fileCount":11,"integrity":"sha512-RMtr1i6E8MXaBWwhXL3yeOU8JXRnz8GNxHvaUfVvwxokvayUY0zoBeWbKw1S9XkufmGEEdQd228pSZXFkAln8Q==","signatures":[{"sig":"MEUCIQC36bmMfTvQyO1tAA5Rvn+qsOHMXkQatzo1Ba683JkWWgIgAdgBBfmUKrG4O8w1d1YiK+jmr0RD7BV2lfQ+p/oeCTc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8015,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEqlzCRA9TVsSAnZWagAAgfcQAKB+y/w621smB1g8V/l0\n/3l4Ewn1uPVuFxLlEPKVlmzR93dbqyksm1ZYXNr1duljyaKpCLx7RFPp077N\n1az+avfOJZ0wqZAEfYLndm9JH5z7e/E4/uHY1AlFLI2XZzBlzGnUgoDhgMuu\nSoBVwGBz+1g0iMfA7zRN9ER0tt4XWQjV7bve2d6NBQORPWYQ9yV7rAop9afO\nEiIoUfjkIdtpLO/upZMeDiIFxghv+N1jTdJdPcnVaIIJqXo8x1vXtroHkDsN\nPXu4cC9xb55PF70uGw/9FQ2eAvprLWghC9pcnCsETVVl8rqzEGsTpNidRD0Z\nbveGrp4OJo6h7rOpDLEj4hPbtX/7JT6SSnOLRXxNJkDP3YI4Vsp+aLoik3wM\nKCP3+/kiHsUKcSswt5Og69t3cH4IdJG7oAjmIxv5FmFpSh0INqBmAvZSPsvL\nux1FBpA6iQoEHpDAEKdz5eRYLnelgd+6o+rt4oUfjTVyexirgNULqzsOq1Hr\nblzmKumdexVmt47fnsq/dLF9AFpFoz6qfga9+6DJq8CJ00NBYS1ErBQU/yaJ\n4dWg2gE2DcHCm82UwmVTxB5uudXi3UB2CPUbbPrA7HKFdURHc7+d/qbG4i0K\nGsGVinPqo0zqDYIPvCXghbkkwmK2slrd44ZerQgkKmBPkQK63I+DzKx+ytpy\nw3Wn\r\n=JQqV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"_npmUser":{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},"repository":{"url":"https://github.com/emotion-js/emotion/tree/master/packages/hash","type":"git"},"_npmVersion":"6.9.0","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"12.4.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/hash_0.7.2_1561504114541_0.48982962439113287","host":"s3://npm-registry-packages"}},"0.7.3":{"name":"@emotion/hash","version":"0.7.3","license":"MIT","_id":"@emotion/hash@0.7.3","maintainers":[{"name":"emotion-release-bot","email":"mitchell+emotion-release-bot@hamil.town"},{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"a166882c81c0c6040975dd30df24fae8549bd96f","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.7.3.tgz","fileCount":15,"integrity":"sha512-14ZVlsB9akwvydAdaEnVnvqu6J2P6ySv39hYyl/aoB6w/V+bXX0tay8cF6paqbgZsN2n5Xh15uF4pE+GvE+itw==","signatures":[{"sig":"MEUCIQC+g4tDUJS2a9aVCq3gT6CRucCQ6jvQpGx7rlS027jaPgIgbU2hBEv8bGyBi3IKCRoDYLG3fGvepebolD9IRcwjvz0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9827,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdgNbICRA9TVsSAnZWagAAcUUQAJr+YYJtzCOENF7dlBEm\nDOvj+53HgRJn69KcW0MwDmgIjo4Q5HZUEIk4rpKSTF7DkkfdYOo5fy0O7juU\n6ePqc258fjmYVjqp5RJrSBYiB/LC1CnZmiPpuS/D3Q32jQICI+KwOuRKtsqh\nqKEVDDIyRhj0WsUX5kylx3PP55sVpCXRbQYSxnm0lD127uzOPXU0PXRw6ziJ\nZnJJxZNfs3Hw8KF8F2uzNbAjk++CR1dzkD7FdSXPfMK9TsR9W4S8RLhJSFin\nqdVpz9uXSWCKd1s+QsO18vndVTm57lyzSskOIO05tkauE+rrXFgDxsRaRMpv\nR0Pd/J5GL/R/oeiIXPDh0tL1xq5h0yqKEgx7QtC9Q4a1rELYI05+bz+Hw9pC\nV0DKANmo2VnAIWJlbDbJuQ9j2XrtZWF8r/s/ePPLIoC8jionl0k2TMT4iSQe\nrHqXZ63PzxQqHN7zKKIWP9KefaVCYjZGHn4Omcfo/nM/enltYNpQTtTG+bhL\n6TXNn9n9Ps13bX3XlkV5pG1YuteqXeUF7x2mswqDtW8ecUtV6fUOXQ765F6F\n8MX3EOwLQdYk9lpfbnB3oj6GzCyFPyio7iHUJNisN5fYnDcwbuHwdYGp34oK\n2EBb3Amzerw9p1waFxdX01xX/CbcvnWooaTv426O/HXs+EX3PdnWm+x4Z0iV\n32bi\r\n=XMC6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","types":"types/index.d.ts","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"scripts":{"test:typescript":"dtslint types"},"_npmUser":{"name":"emotion-release-bot","email":"mitchell+emotion-release-bot@hamil.town"},"repository":{"url":"https://github.com/emotion-js/emotion/tree/master/packages/hash","type":"git"},"_npmVersion":"6.10.2","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"10.16.3","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"dtslint":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/hash_0.7.3_1568724678386_0.45237041700190317","host":"s3://npm-registry-packages"}},"0.7.4":{"name":"@emotion/hash","version":"0.7.4","license":"MIT","_id":"@emotion/hash@0.7.4","maintainers":[{"name":"emotion-release-bot","email":"mitchell+emotion-release-bot@hamil.town"},{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"f14932887422c9056b15a8d222a9074a7dfa2831","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.7.4.tgz","fileCount":16,"integrity":"sha512-fxfMSBMX3tlIbKUdtGKxqB1fyrH6gVrX39Gsv3y8lRYKUqlgDt3UMqQyGnR1bQMa2B8aGnhLZokZgg8vT0Le+A==","signatures":[{"sig":"MEYCIQCAFWE/VWlexWXS7efJgMLBqXhQUYaMGhDJh/Bc0Usz4wIhAOPYCb9m8UVbMgfgnhEGVNWsA9k5k0MWYjL3qC40sXOA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11171,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd//gWCRA9TVsSAnZWagAAkLgP/2/dJQ2uZgyvUvjly1XS\nGZ/WQa0Ty+w/P6ArjD5UKg4zvMBAJ9Eyhzx72UmtPfSuscc2K3CN0uoOn3HJ\nwyvZp9QJaI5SQzN+bgg3AXzPxBg5Rw4jt45vWptYGizopKRPNPLTZLWa5+sX\nqXqOcwOyB731YM9WkITzZbOtHOq0m2/VeOqcj9qYMmqPMK1wTw4sj6683/Lp\n6hqkNW+c/KQMSerYSuuWJ2mvRNF6X3KfQ+st/ZpmuS0+aqZj0FKswkpcgpRM\n7O4mH3aSjJ73pQSTS5bpMNmnRZylL+jWxZGfLlzgPnylHZi047oJJI01cxMn\n1xetoP912GqEsM3KrVP34yeeG4SaHmXhP1dy16R7UIf15drvj8M2hA7CU/3b\niHP/zBaNbr+0NG4iklll/Zr0zQmN7JSYw9Ei4guMq3Lz4dEiUQl7pe9IEa3K\nQVz021Qo0BX3yk2VlIXEWrM4KL/aS5hPoOoP0ya2o93yNC3/dfBZIcdo9tTV\nN8qsci7OznuBr3Ng6IhLNnpI+7c0FeUfBqEMNkJzLxjM8co/fQ1qQAC85xNs\nUMwmsjteqOPxXIkV3QyjVRKjJjL79eHg82JzML4Dpbgi1zGWndES7qX+R1Ld\ndoZgcBU46oODKBPRb14mL081uVpqIa7dth65fEtpUS+eKDJzu2w9nt8g7SB1\n6Jyk\r\n=z+TX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","types":"types/index.d.ts","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"scripts":{"test:typescript":"dtslint types"},"_npmUser":{"name":"emotion-release-bot","email":"mitchell+emotion-release-bot@hamil.town"},"repository":{"url":"https://github.com/emotion-js/emotion/tree/master/packages/hash","type":"git"},"_npmVersion":"6.10.2","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"10.18.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"dtslint":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/hash_0.7.4_1577056277872_0.7742169444584643","host":"s3://npm-registry-packages"}},"0.8.0":{"name":"@emotion/hash","version":"0.8.0","license":"MIT","_id":"@emotion/hash@0.8.0","maintainers":[{"name":"emotion-release-bot","email":"mitchell+emotion-release-bot@hamil.town"},{"name":"mitchellhamilton","email":"mitchell@mitchellhamilton.me"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"}],"dist":{"shasum":"bbbff68978fefdbe68ccb533bc8cbe1d1afb5413","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.8.0.tgz","fileCount":16,"integrity":"sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==","signatures":[{"sig":"MEYCIQCAxA5mSfUwqQPoekyKzhkRNQwMwOdpSNGz19gAmAgoKAIhANfzWm7KTK7nH5Udy4GzjwfqywZrzZROGqnicXnlLmGs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXNzaCRA9TVsSAnZWagAAJPwP/2tniQa0JxlXVJv+XaVY\nKPFVWEH3wIlicpgTMkDcTjRxUjAbpqkXFNlm/nCHm2k8wt4xig6tkBFrYLeB\nGaAQZAkk7saudEdMZkx4OTsVKsBHh3dKTy9MKqoOaTRujL3Jv4RjzCGKPNDb\nmOE6eve/BA1C9+s/ucz0fXMcpE5VXAbZiN+EYV2h1J2zpJEncVgLMLnaL9JR\nGkkKZ1kbUYPvunSN+TdYTH9c686mIHuuHHaW9LTPJiV5N7bUoSFh4j0bkyWw\nPDocHqeWUu3PVadrZwi7vLSnFNkbBbAxWWBNIqGPbeK4gTEI8xqpdfWbXdZ5\nmpAj9ighW41NQZ6y7FK/L2StE5ByHYtfepEasHOz6Z7ZcRqTkomjOVrhrZrv\nUKLaU9iQUtgjSYfn4NMGDO63a7pH4giBA4pxoOKKDs7lrm9mqV2hGrWLENjt\nWLuf7Knq9BohjdJbqlg65gMr10vPjfMb/OUSj33SQTiFD09qCyK8CT9OEqYf\nQzsf1IBaimBAjVNNTkjyDctkSYmvsXLs+ypJrmtc3/7frkLl0pXkBbN/7DCB\nY5rZir+xjxKxpnf2gJxU3T2VsOXLYVGTqxLjdti8+Dx70oeOPzRiV3VzetNy\nplg17o+vnvqYC1JmuE3GPF7+/n7w3I9cOUMKU4qi93FQgpN7BCEYyKQzOvbb\n/Cyz\r\n=aOTo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/hash.cjs.js","types":"types/index.d.ts","module":"dist/hash.esm.js","browser":{"./dist/hash.cjs.js":"./dist/hash.browser.cjs.js","./dist/hash.esm.js":"./dist/hash.browser.esm.js"},"scripts":{"test:typescript":"dtslint types"},"_npmUser":{"name":"emotion-release-bot","email":"mitchell+emotion-release-bot@hamil.town"},"repository":{"url":"https://github.com/emotion-js/emotion/tree/master/packages/hash","type":"git"},"_npmVersion":"6.10.2","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"10.19.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"dtslint":"^0.3.0"},"_npmOperationalInternal":{"tmp":"tmp/hash_0.8.0_1583144154273_0.3829260295933019","host":"s3://npm-registry-packages"}},"0.9.0":{"name":"@emotion/hash","version":"0.9.0","license":"MIT","_id":"@emotion/hash@0.9.0","maintainers":[{"name":"tkh44","email":"kye.hohenberger@gmail.com"},{"name":"mitchellhamilton","email":"mitchell@hamil.town"},{"name":"emotion-release-bot","email":"mitchell+emotion-release-bot@hamil.town"},{"name":"andarist","email":"mateuszburzynski@gmail.com"}],"homepage":"https://github.com/emotion-js/emotion/tree/main#readme","bugs":{"url":"https://github.com/emotion-js/emotion/issues"},"dist":{"shasum":"c5153d50401ee3c027a57a177bc269b16d889cb7","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.9.0.tgz","fileCount":14,"integrity":"sha512-14FtKiHhy2QoPIzdTcvh//8OyBlknNs2nXRwIhG904opCby3l+9Xaf/wuPvICBF0rc1ZCNBd3nKe9cd2mecVkQ==","signatures":[{"sig":"MEQCIDpHroUiuAlxePQjZ7EGsWVM0Kxg48T6UEgcR3dosu/5AiB7AFnM8YJbyd5oaLNUbx3/g9rADtB+KSSQbcXR7wMBzg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9487,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5kYZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpZ6Q//TfXN0BMcAheJptdVvY7ojf0cqkfAd8C+xTN3bniGv5MCCr5A\r\nnaKFiTvEsVKDBIYCYai1TX2AlpsM3w+cRb3rx99EF82yl01xHyTAjhtaMIPb\r\nrBMAboJJ6OjDCnOaj3liaEGUY37T76tSfAvVM5fQz+L7jIkj0r6fUtPNe740\r\n4WkKBYSU+cq5L+3jARxGtKiXRKWVir4z3yxhYeJh4/0reeJPzQ2BnCL2vZhL\r\nnVFTWyiLo7v9g5A5NgIlbABSvi+3j2p/1+YrEieVOYNghpnzh7onDxcP84Yc\r\n0hxxXZnp01NC/A1ZXDu79S/1QmJeB5f3GiVPcmh7+B9B6tev5DVtsEuNQnJb\r\nQzRFeiXSwfZbTSOiSboALT33YwFAUU+X1JqI/JrpT6zij+o0RILxm5dup23r\r\nDDJ9f86jYR1D5RsjDzx9/pzhNrztBPpGjmH5D9MUgmGAnAIFKR+0LH5eIUhk\r\n5P8EKwtarW1cuHm37m2kEk+tCrleTO9AjEQleyGv3uLQO5uYnavHdKug3SYn\r\nxcqr/gnInZxWoieLAcbcV9qguEbxWt6DMA18K2ok6YpwN0DehkZrpwzIBy7N\r\n3/JzTh7Gp4yO39+8+m2NjwGBY5KYIuVIdc48uizPoIJqGmePHgAS6iLfZs9X\r\n2Kfsml+4eDZJicmcAGcwtNzO+GwIBVhykmQ=\r\n=1H1R\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/emotion-hash.cjs.js","types":"types/index.d.ts","module":"dist/emotion-hash.esm.js","exports":{".":{"module":"./dist/emotion-hash.esm.js","default":"./dist/emotion-hash.cjs.js"},"./package.json":"./package.json"},"gitHead":"a5f43a1ba3dae5141b9c356b8b7e13f7023895b3","scripts":{"test:typescript":"dtslint types"},"_npmUser":{"name":"emotion-release-bot","email":"mitchell+emotion-release-bot@hamil.town"},"repository":{"url":"git+https://github.com/emotion-js/emotion.git#main","type":"git"},"_npmVersion":"8.11.0","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"16.16.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"typescript":"^4.5.5","@definitelytyped/dtslint":"0.0.112"},"_npmOperationalInternal":{"tmp":"tmp/hash_0.9.0_1659258393048_0.05580789021610988","host":"s3://npm-registry-packages"}},"0.9.1":{"name":"@emotion/hash","version":"0.9.1","license":"MIT","_id":"@emotion/hash@0.9.1","maintainers":[{"name":"emmatown","email":"npm@emmas.town"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"},{"name":"emotion-release-bot","email":"emotion-release-bot@hamil.town"},{"name":"andarist","email":"mateuszburzynski@gmail.com"}],"homepage":"https://github.com/emotion-js/emotion/tree/main#readme","bugs":{"url":"https://github.com/emotion-js/emotion/issues"},"dist":{"shasum":"4ffb0055f7ef676ebc3a5a91fb621393294e2f43","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.9.1.tgz","fileCount":20,"integrity":"sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==","signatures":[{"sig":"MEUCIBm39ySc/6tkli/kquIOnBSAia0orO+tyBshTPCkXz0RAiEAxmaLSwCQ5xTLz3w+OjocZnWWMxzlO/dzPT19PN281zc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10216},"main":"dist/emotion-hash.cjs.js","types":"types/index.d.ts","module":"dist/emotion-hash.esm.js","exports":{".":{"import":"./dist/emotion-hash.cjs.mjs","module":"./dist/emotion-hash.esm.js","default":"./dist/emotion-hash.cjs.js"},"./package.json":"./package.json"},"gitHead":"1135f8e9d97ea711eb483368313afdfe7b176845","scripts":{"test:typescript":"dtslint types"},"_npmUser":{"name":"emotion-release-bot","email":"emotion-release-bot@hamil.town"},"repository":{"url":"git+https://github.com/emotion-js/emotion.git#main","type":"git"},"_npmVersion":"8.19.4","description":"A MurmurHash2 implementation","directories":{},"_nodeVersion":"16.20.0","_hasShrinkwrap":false,"devDependencies":{"typescript":"^4.5.5","@definitelytyped/dtslint":"0.0.112"},"_npmOperationalInternal":{"tmp":"tmp/hash_0.9.1_1683362951805_0.17435734775603273","host":"s3://npm-registry-packages"}},"0.9.2":{"name":"@emotion/hash","version":"0.9.2","description":"A MurmurHash2 implementation","main":"dist/emotion-hash.cjs.js","module":"dist/emotion-hash.esm.js","types":"dist/emotion-hash.cjs.d.ts","license":"MIT","repository":{"type":"git","url":"git+https://github.com/emotion-js/emotion.git#main"},"scripts":{"test:typescript":"dtslint types"},"devDependencies":{"@definitelytyped/dtslint":"0.0.112","typescript":"^5.4.5"},"exports":{".":{"module":"./dist/emotion-hash.esm.js","import":"./dist/emotion-hash.cjs.mjs","default":"./dist/emotion-hash.cjs.js"},"./package.json":"./package.json"},"gitHead":"d57cfcb6daf48fc5458f91b4db2e072fbc2863e4","bugs":{"url":"https://github.com/emotion-js/emotion/issues"},"homepage":"https://github.com/emotion-js/emotion/tree/main#readme","_id":"@emotion/hash@0.9.2","_nodeVersion":"16.20.2","_npmVersion":"8.19.4","dist":{"integrity":"sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==","shasum":"ff9221b9f58b4dfe61e619a7788734bd63f6898b","tarball":"https://mirrors.huaweicloud.com/repository/npm/@emotion/hash/-/hash-0.9.2.tgz","fileCount":16,"unpackedSize":9928,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIA2Eb3WN9Ztnh3OA37upESrHV8gpWdG8uX4sAP1UBYE6AiEAzTp6t5OcxdNzZ6AUmzWa+T8m7qIbNatGpdzLMzFFlM4="}]},"_npmUser":{"name":"emotion-release-bot","email":"emotion-release-bot@hamil.town"},"directories":{},"maintainers":[{"name":"emmatown","email":"npm@emmas.town"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"},{"name":"emotion-release-bot","email":"emotion-release-bot@hamil.town"},{"name":"andarist","email":"mateuszburzynski@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/hash_0.9.2_1721371917237_0.7087406124415838"},"_hasShrinkwrap":false}},"time":{"created":"2018-04-14T09:56:25.456Z","modified":"2024-07-19T06:51:57.641Z","0.6.2":"2018-04-14T09:56:25.611Z","0.6.3":"2018-04-28T09:02:32.954Z","0.6.4":"2018-07-14T04:09:09.635Z","0.6.5":"2018-07-15T04:05:09.014Z","0.6.6":"2018-09-20T20:57:34.223Z","10.0.0-really-unsafe-please-do-not-use.0":"2018-09-27T23:34:00.438Z","10.0.0-really-unsafe-please-do-not-use.1":"2018-09-28T04:18:12.247Z","10.0.0-really-unsafe-please-do-not-use.2":"2018-09-28T04:37:02.181Z","0.7.0":"2018-10-13T07:34:49.204Z","0.7.1":"2018-11-20T12:35:16.275Z","0.7.2":"2019-06-25T23:08:34.671Z","0.7.3":"2019-09-17T12:51:18.507Z","0.7.4":"2019-12-22T23:11:17.995Z","0.8.0":"2020-03-02T10:15:54.385Z","0.9.0":"2022-07-31T09:06:33.219Z","0.9.1":"2023-05-06T08:49:11.997Z","0.9.2":"2024-07-19T06:51:57.403Z"},"bugs":{"url":"https://github.com/emotion-js/emotion/issues"},"license":"MIT","homepage":"https://github.com/emotion-js/emotion/tree/main#readme","repository":{"type":"git","url":"git+https://github.com/emotion-js/emotion.git#main"},"description":"A MurmurHash2 implementation","maintainers":[{"name":"emmatown","email":"npm@emmas.town"},{"name":"tkh44","email":"kye.hohenberger@gmail.com"},{"name":"emotion-release-bot","email":"emotion-release-bot@hamil.town"},{"name":"andarist","email":"mateuszburzynski@gmail.com"}],"readme":"# @emotion/hash\n\n> A MurmurHash2 implementation\n\n```jsx\nimport hash from '@emotion/hash'\n\nhash('some-string') // 12fj1d\n```\n\nThe source of this is from https://github.com/garycourt/murmurhash-js/blob/master/murmurhash2_gc.js.\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/36/a0/0307c5633c52ccd95d15bc751ec30c2cc3465605a21d828fa2787b4ade16ac2f3e2a78246361ca9f07a010ac182044aa69285f0be76fd5a9d56c3b8ec397 b/frontend/.npm-cache/_cacache/content-v2/sha512/36/a0/0307c5633c52ccd95d15bc751ec30c2cc3465605a21d828fa2787b4ade16ac2f3e2a78246361ca9f07a010ac182044aa69285f0be76fd5a9d56c3b8ec397 new file mode 100644 index 0000000..b9c44ed Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/36/a0/0307c5633c52ccd95d15bc751ec30c2cc3465605a21d828fa2787b4ade16ac2f3e2a78246361ca9f07a010ac182044aa69285f0be76fd5a9d56c3b8ec397 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/37/01/1bd43f508d1d25ff963cc6c3d62784f054a148d718704291d11e06d2ba373949bdc79c4db3f628ff60b17aaefc0d65146f67ee227e555f97b054dc0aea0e b/frontend/.npm-cache/_cacache/content-v2/sha512/37/01/1bd43f508d1d25ff963cc6c3d62784f054a148d718704291d11e06d2ba373949bdc79c4db3f628ff60b17aaefc0d65146f67ee227e555f97b054dc0aea0e new file mode 100644 index 0000000..5a72c97 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/37/01/1bd43f508d1d25ff963cc6c3d62784f054a148d718704291d11e06d2ba373949bdc79c4db3f628ff60b17aaefc0d65146f67ee227e555f97b054dc0aea0e @@ -0,0 +1 @@ +{"_id":"es-set-tostringtag","_rev":"5-6eed393ee82b280131abc7117248596b","name":"es-set-tostringtag","dist-tags":{"latest":"2.1.0"},"versions":{"1.0.0":{"name":"es-set-tostringtag","version":"1.0.0","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"es-set-tostringtag@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/es-set-tostringtag#readme","bugs":{"url":"https://github.com/es-shims/es-set-tostringtag/issues"},"dist":{"shasum":"5f073226190bb4684e4d6f945a5ea90e7aff9283","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-set-tostringtag/-/es-set-tostringtag-1.0.0.tgz","fileCount":7,"integrity":"sha512-izRTRsZgSP3EpSxPE6lSzyIYD+qghxjskRHetmy15DhhPxfTohYk1Gce7sMJ3Sr+KjhGPZesKMANBZGTTxYgEw==","signatures":[{"sig":"MEUCICc2p/ziZwUlAX2+CPNMHZ1p/mppY7IPZID5YJ+U9r7HAiEA0T83N5CT94y62DM9IGIx5c7gYsQcbQIkMzG/VoKX7XI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":7252,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjo0aYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqc9g//ZuZaV205fhQ5Xupsw0/GXazArnaXUXPGd0CTPYmxQN4gBHB3\r\nsKThsLjDfO+J2o2z2x3+TBVTd0ZUWXY4tsunC+YPfv+yFmQjPekhqUTS+CQB\r\nE33GQUl965FLDYID1hkPViDqOE4SlDBqaPOocKEUMcP+eCoRjMggyTV49kAT\r\nf6TbepCbYCqiCClurNPYYkK+X+ZV7ptvOOFO7razTnvTqVfvwHla6Xjs/AR8\r\nbB2z6qoxxkyG6OhxC2X5pgD2bGyGINpA8USeKdpKPXYOsmHf9wVYyit/tLEo\r\n0+AxavnscpDnMaOA0gztMVyyUVF/m9YWacn9OBTd+vv+JBRiwiwvTLFtxK/+\r\nLxnaRGgSr8eaBN96yzHpL1fYwx0YmYbDjaIuLn3+OB/anwEOglA4M4DVaIGp\r\nN9xupKJqJ/Bn3pI/4L3FiT4UZmP5kOs6rFhx3m0h7pC9pvkwidqLCgq+GFjn\r\nKXQx/5w1Y2GCZfk/Ttm+LRyIbuCJ2RMhNczXvT9vazDAelp+NUrcAEcorHlG\r\ntkyvB+BNdqNreuor60ZrR5Eg0AShBjJhhoJ/3yIa/BmziUva2dezoF+ySemc\r\nYNIVDvKfY3UPO2v1X0reUfwnwOi2bpJaYie9qD1WmhntIEe7Ou2TXjPe+uH/\r\nf8OIO/93pA7N6bImJTDqN7/if9c9suw1abI=\r\n=AiPx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"gitHead":"17812b5ed7c033e06a593e3cdeb88177ff6ab3df","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"./test/index.js"},"repository":{"url":"git+https://github.com/es-shims/es-set-tostringtag.git","type":"git"},"_npmVersion":"9.2.0","description":"A helper to optimistically set Symbol.toStringTag, when possible.","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"get-intrinsic":"^1.1.3","has-tostringtag":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.2","has":"^1.0.3","tape":"^5.6.1","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.0","in-publish":"^2.0.1","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/es-set-tostringtag_1.0.0_1671644823806_0.6180371947975349","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"es-set-tostringtag","version":"2.0.0","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"es-set-tostringtag@2.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/es-set-tostringtag#readme","bugs":{"url":"https://github.com/es-shims/es-set-tostringtag/issues"},"dist":{"shasum":"b33fdef554fb35a264fe022c1f095f1f2022fa85","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-set-tostringtag/-/es-set-tostringtag-2.0.0.tgz","fileCount":7,"integrity":"sha512-vZVAIWss0FcR/+a08s6e2/GjGjjYBCZJXDrOnj6l5kJCKhQvJs4cnVqUxkVepIhqHbKHm3uwOvPb8lRcqA3DSg==","signatures":[{"sig":"MEUCIQC+h9bVwffoj+j7fJWvcdB12dHllqMDWeP7QdsH14VDpwIgU2yrFiCPy1sn2bQOg21/HMnZMjfhJfDQQ77zcF/LfeA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8536,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjo2zVACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmphdw//dM8GdCNKocyeti3UYg/iuGoHE+bvBPSwo2aUytzpB7JR6qw/\r\nZWGgduVW/BX0rCCTenSYP25hRCMJ5IIhKwrpy770pVmznccA3luqb+GAi56B\r\n+wSbdfBP8MBH8pzf9dgBUUjSz6lh9a+AfsGCkadT4wwy8MV8CVIr9qIh2zVa\r\nCy0DtMficfH6o2SISN2ypKFwoCmyxkbdD7P7ilKtFjXwAyvnGWXpcqCLxQPR\r\nKruJF8bD0psan5RqTefdu6ik25ch7GP17MUQaplqq3Ng0kAqgZBZf4CzFEpZ\r\nTuWcx8oBPz/fBkL7yaEa6DSf9vR6b1XY3nodUlTEeVRC5EMpvvlK3goQNpmU\r\nsSxhRLO+lj04Ea9AELxb2K8A3DsWmxRBJp5C4/tDC/UTbKRdsQPS7/T424rh\r\nc2doBAqaP50sYplEdlGI5oYQ0hHKB/d/WwLnQzJXwXmkTilxsZCshnTVeY51\r\nkS6NIckl4JQBO5o39vGs3ENESPX1lgDMDmvWTHRemGc07V9UZBaMUX+ds5mc\r\nqOHnByqKKVzvq4POeTJ7Pn/Vv4wfAyx/jY5Q98/L1OTW3An7k/vM6fD1EDeB\r\nECIXyX3z0jXA8N0PMl3FeB0x6G6ypp4LJa/Oq3EnZYVqMXBHngShb8YGZx4i\r\notS3weLb/n4UJSNb/VIyn0tMWjui8IuAt9I=\r\n=HWFX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"gitHead":"ace875d92ba9b19413dbb9949cec1fd7f174b25c","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"./test/index.js"},"repository":{"url":"git+https://github.com/es-shims/es-set-tostringtag.git","type":"git"},"_npmVersion":"9.2.0","description":"A helper to optimistically set Symbol.toStringTag, when possible.","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"get-intrinsic":"^1.1.3","has-tostringtag":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.2","has":"^1.0.3","tape":"^5.6.1","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.0","in-publish":"^2.0.1","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.0"},"_npmOperationalInternal":{"tmp":"tmp/es-set-tostringtag_2.0.0_1671654613039_0.9622165880115114","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"es-set-tostringtag","version":"2.0.1","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"es-set-tostringtag@2.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/es-set-tostringtag#readme","bugs":{"url":"https://github.com/es-shims/es-set-tostringtag/issues"},"dist":{"shasum":"338d502f6f674301d710b80c8592de8a15f09cd8","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz","fileCount":7,"integrity":"sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==","signatures":[{"sig":"MEYCIQC+cLx1Ahq8pA+d0p8a61AB/e3q/EAwQN8X/2t7pa5OsgIhAPrGwNBT275mwZzyAl1dggL/bc/GBAul1P4CFXi73iuu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":8908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjtx8DACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrajA//cEt4C4ZRMR9gLey87iWDD/XGJfrLmwEusDhDPrlTZqeF+afX\r\nFMjcuW4NgjN3Psbn63lJfDCOvzvKmK5pe/ZXOzkv3yzWe3VZmmbfrkxeZWyx\r\nJwPI9rwPvrgFiFLuIbRSbpMIqVqfjX+kwGe4rPLnLnbjsP01v/y16mw0R0YO\r\ndoCrIqqXYSGogPCi7zr7J17WiDBEfuApnADTOASOHhhb22GqttVeIW4vE7Nq\r\niWdaQqkTs6z4wZmS3dujGDSltsqGy53XVU1TgjgANZkCZqnGnVOcf3vAP/NR\r\nwRgnH/+Isbdv3gH3YmyqIYZQmDsqcWNn5Bmy6/iPcicGNkQZIDgsNiAUR/GZ\r\njQYLq1KVkBHF2eznlNm6rGAHDNA2Tp+9UWgiyJyBSaY8ffQiZwAouOFn8Szv\r\na2UMOl4imwgwZ88dNgEwg0OHjCvqmJ6UQtXAvpvw2zO5hlLQLGsiTJHRc/yp\r\nLjsw0c56j8IyE2B6A621uUokjsjmMOo+nndSd0+I35uFXo9ZZphWf3Z0rBKT\r\nf+oPT5PtyUVlbocNBhv2J/74m5vjD4OJOei9SCsx0rsICDmqBnKJWPLjl9Ln\r\npUMxaEtNyZsm54AzpnVrTqLtUi1zcbBfX7VsGJ57pbKt+HnhgoSbcddqJurt\r\nNkXQi9E86I1RMlIu2D1dXPUzeTtNYK6Ieos=\r\n=HzAb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"gitHead":"3cb0d8ae33b2982c8244648a412f9af70a720bb2","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"./test/index.js"},"repository":{"url":"git+https://github.com/es-shims/es-set-tostringtag.git","type":"git"},"_npmVersion":"9.2.0","description":"A helper to optimistically set Symbol.toStringTag, when possible.","directories":{},"sideEffects":false,"_nodeVersion":"19.3.0","dependencies":{"has":"^1.0.3","get-intrinsic":"^1.1.3","has-tostringtag":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.2","tape":"^5.6.1","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.0","in-publish":"^2.0.1","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.0.1"},"_npmOperationalInternal":{"tmp":"tmp/es-set-tostringtag_2.0.1_1672945411198_0.48019899205493877","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"es-set-tostringtag","version":"2.0.2","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"es-set-tostringtag@2.0.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/es-set-tostringtag#readme","bugs":{"url":"https://github.com/es-shims/es-set-tostringtag/issues"},"dist":{"shasum":"11f7cc9f63376930a5f20be4915834f4bc74f9c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz","fileCount":7,"integrity":"sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==","signatures":[{"sig":"MEQCIFgDTq2MPPFCb9ihbq03OQZwHydYJjnGXTXmgycR6e/pAiAcaL6lgu7jq9+tS/6truURQK91uAc+k66yxvLoyjrY7g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":9490},"main":"index.js","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"gitHead":"4906d498e33fd1a41c1d29295a0bb15ed9babdfd","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"./test/index.js"},"repository":{"url":"git+https://github.com/es-shims/es-set-tostringtag.git","type":"git"},"_npmVersion":"10.2.0","description":"A helper to optimistically set Symbol.toStringTag, when possible.","directories":{},"sideEffects":false,"_nodeVersion":"21.0.0","dependencies":{"hasown":"^2.0.0","get-intrinsic":"^1.2.2","has-tostringtag":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.3","tape":"^5.7.2","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.0","in-publish":"^2.0.1","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/es-set-tostringtag_2.0.2_1697866382771_0.3806135199461511","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"es-set-tostringtag","version":"2.0.3","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"es-set-tostringtag@2.0.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/es-set-tostringtag#readme","bugs":{"url":"https://github.com/es-shims/es-set-tostringtag/issues"},"dist":{"shasum":"8bb60f0a440c2e4281962428438d58545af39777","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz","fileCount":9,"integrity":"sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==","signatures":[{"sig":"MEUCIQCS3PfjKv2wpwZmR1FLXjq4VKJlbV/bzjDog+sSW7gkvAIgQeXu664upJOOI63INe2TIVsB0z3K2DtrEHwkcwe4yDo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13855},"main":"index.js","types":"./index.d.ts","engines":{"node":">= 0.4"},"exports":{".":"./index.js","./package.json":"./package.json"},"gitHead":"a06f70c9626850d7ee80516b0fc98b3d9521473b","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"tsc -p .","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"./test/index.js"},"repository":{"url":"git+https://github.com/es-shims/es-set-tostringtag.git","type":"git"},"_npmVersion":"10.2.4","description":"A helper to optimistically set Symbol.toStringTag, when possible.","directories":{},"sideEffects":false,"_nodeVersion":"21.6.2","dependencies":{"hasown":"^2.0.1","get-intrinsic":"^1.2.4","has-tostringtag":"^1.0.2"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.4","tape":"^5.7.5","eslint":"=8.8.0","evalmd":"^0.0.19","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"^5.4.0-dev.20240220","@types/tape":"^5.6.4","auto-changelog":"^2.4.0","@types/has-symbols":"^1.0.2","safe-publish-latest":"^2.0.0","@types/get-intrinsic":"^1.2.2","@ljharb/eslint-config":"^21.1.0"},"_npmOperationalInternal":{"tmp":"tmp/es-set-tostringtag_2.0.3_1708460747884_0.02201679593293626","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"es-set-tostringtag","version":"2.1.0","description":"A helper to optimistically set Symbol.toStringTag, when possible.","main":"index.js","exports":{".":"./index.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"tsc -p . && attw -P","pretest":"npm run lint","tests-only":"nyc tape 'test/**/*.js'","test":"npm run tests-only","posttest":"npx npm@\">= 10.2\" audit --production","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/es-shims/es-set-tostringtag.git"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/es-shims/es-set-tostringtag/issues"},"homepage":"https://github.com/es-shims/es-set-tostringtag#readme","devDependencies":{"@arethetypeswrong/cli":"^0.17.2","@ljharb/eslint-config":"^21.1.1","@ljharb/tsconfig":"^0.2.3","@types/get-intrinsic":"^1.2.3","@types/has-symbols":"^1.0.2","@types/tape":"^5.8.0","auto-changelog":"^2.5.0","encoding":"^0.1.13","eslint":"=8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.9.0","typescript":"next"},"dependencies":{"es-errors":"^1.3.0","get-intrinsic":"^1.2.6","has-tostringtag":"^1.0.2","hasown":"^2.0.2"},"engines":{"node":">= 0.4"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"testling":{"files":"./test/index.js"},"publishConfig":{"ignore":[".github/workflows"]},"_id":"es-set-tostringtag@2.1.0","gitHead":"90e506fbfe24630e6fe3871639000d2f0ba09d6f","types":"./index.d.ts","_nodeVersion":"23.5.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==","shasum":"f31dbbe0c183b00a6d26eb6325c810c0fd18bd4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-set-tostringtag/-/es-set-tostringtag-2.1.0.tgz","fileCount":10,"unpackedSize":14544,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRmqFa+JTxgKAgz1nksHw8sQblfewFR7P48hhVyG3jqgIhALdBnoT0nSf0xq5iqlWTccHPPypdv4/I9vTwxHEQpOLe"}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/es-set-tostringtag_2.1.0_1735793054233_0.4455930306441267"},"_hasShrinkwrap":false}},"time":{"created":"2022-12-21T17:47:03.806Z","modified":"2025-01-02T04:44:14.598Z","1.0.0":"2022-12-21T17:47:03.974Z","2.0.0":"2022-12-21T20:30:13.213Z","2.0.1":"2023-01-05T19:03:31.354Z","2.0.2":"2023-10-21T05:33:03.048Z","2.0.3":"2024-02-20T20:25:48.090Z","2.1.0":"2025-01-02T04:44:14.435Z"},"bugs":{"url":"https://github.com/es-shims/es-set-tostringtag/issues"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","homepage":"https://github.com/es-shims/es-set-tostringtag#readme","repository":{"type":"git","url":"git+https://github.com/es-shims/es-set-tostringtag.git"},"description":"A helper to optimistically set Symbol.toStringTag, when possible.","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"readme":"# es-set-tostringtag [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nA helper to optimistically set Symbol.toStringTag, when possible.\n\n## Example\nMost common usage:\n```js\nvar assert = require('assert');\nvar setToStringTag = require('es-set-tostringtag');\n\nvar obj = {};\n\nassert.equal(Object.prototype.toString.call(obj), '[object Object]');\n\nsetToStringTag(obj, 'tagged!');\n\nassert.equal(Object.prototype.toString.call(obj), '[object tagged!]');\n```\n\n## Options\nAn optional options argument can be provided as the third argument. The available options are:\n\n### `force`\nIf the `force` option is set to `true`, the toStringTag will be set even if it is already set.\n\n### `nonConfigurable`\nIf the `nonConfigurable` option is set to `true`, the toStringTag will be defined as non-configurable when possible.\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.com/package/es-set-tostringtag\n[npm-version-svg]: https://versionbadg.es/es-shims/es-set-tostringtag.svg\n[deps-svg]: https://david-dm.org/es-shims/es-set-tostringtag.svg\n[deps-url]: https://david-dm.org/es-shims/es-set-tostringtag\n[dev-deps-svg]: https://david-dm.org/es-shims/es-set-tostringtag/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/es-set-tostringtag#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/es-set-tostringtag.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/es-set-tostringtag.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/es-set-tostringtag.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=es-set-tostringtag\n[codecov-image]: https://codecov.io/gh/es-shims/es-set-tostringtag/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/es-set-tostringtag/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/es-set-tostringtag\n[actions-url]: https://github.com/es-shims/es-set-tostringtag/actions\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/37/33/a098c43e7a5c711de2216be386fcfbf739cde9e115366818705b002a0e95eb7536ed47295b44b433b4bcbc74c3307e5ea9725ce705d7d485c7049fd648cf b/frontend/.npm-cache/_cacache/content-v2/sha512/37/33/a098c43e7a5c711de2216be386fcfbf739cde9e115366818705b002a0e95eb7536ed47295b44b433b4bcbc74c3307e5ea9725ce705d7d485c7049fd648cf new file mode 100644 index 0000000..373f25b Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/37/33/a098c43e7a5c711de2216be386fcfbf739cde9e115366818705b002a0e95eb7536ed47295b44b433b4bcbc74c3307e5ea9725ce705d7d485c7049fd648cf differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/39/e8/bd387e2d461d18a94dc6c615fbf5d33f9b0560bdb64969235a464f9bb21923d12e5c7c772061a92b7818eb1f06ad5ca6f3f88a087582f1aca8a6d8c8d6d1 b/frontend/.npm-cache/_cacache/content-v2/sha512/39/e8/bd387e2d461d18a94dc6c615fbf5d33f9b0560bdb64969235a464f9bb21923d12e5c7c772061a92b7818eb1f06ad5ca6f3f88a087582f1aca8a6d8c8d6d1 new file mode 100644 index 0000000..0807afc Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/39/e8/bd387e2d461d18a94dc6c615fbf5d33f9b0560bdb64969235a464f9bb21923d12e5c7c772061a92b7818eb1f06ad5ca6f3f88a087582f1aca8a6d8c8d6d1 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/45/d2/547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29 b/frontend/.npm-cache/_cacache/content-v2/sha512/45/d2/547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29 new file mode 100644 index 0000000..5a06ecb Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/45/d2/547e5704ddc5332a232a420b02bb4e853eef5474824ed1b7986cf84737893a6a9809b627dca02b53f5b7313a9601b690f690233a49bce0e026aeb16fcf29 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/46/8d/293e36ecbe58a1b3ef8041637d9aae460166bc1b6cef314cf903116c2d4b879554117965f8240a13c77846b856c0db10daa564a909111cf66b2f94e10bf7 b/frontend/.npm-cache/_cacache/content-v2/sha512/46/8d/293e36ecbe58a1b3ef8041637d9aae460166bc1b6cef314cf903116c2d4b879554117965f8240a13c77846b856c0db10daa564a909111cf66b2f94e10bf7 new file mode 100644 index 0000000..03aae70 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/46/8d/293e36ecbe58a1b3ef8041637d9aae460166bc1b6cef314cf903116c2d4b879554117965f8240a13c77846b856c0db10daa564a909111cf66b2f94e10bf7 @@ -0,0 +1 @@ +{"_id":"asynckit","_rev":"8-a9ce4a5d61bb17e1fec505a12b233356","name":"asynckit","dist-tags":{"latest":"0.5.0"},"versions":{"0.1.0":{"name":"asynckit","version":"0.1.0","keywords":["async","jobs","parallel","serial","iterator","array","object"],"author":{"name":"Alex Indigo","email":"iam@alexindigo.com"},"license":"MIT","_id":"asynckit@0.1.0","maintainers":[{"name":"alexindigo","email":"iam@alexindigo.com"}],"homepage":"https://github.com/alexindigo/asynckit#readme","bugs":{"url":"https://github.com/alexindigo/asynckit/issues"},"dist":{"shasum":"328b62aa8bb99bff494e25379a19861e01572a4e","tarball":"https://mirrors.huaweicloud.com/repository/npm/asynckit/-/asynckit-0.1.0.tgz","integrity":"sha512-H2szEj/NE/S1CHUTalFXa0rROTQ75dcLSxt4fg1zP8hzvumVdU1myGjwwonhhYxNlm0IKGDX1DC1rbZDOTgyzg==","signatures":[{"sig":"MEYCIQCp6DthqVastRAajzoCK+Ym4i+3teC3ounrbNN4YUKvRgIhAPPRWUoB5NvmCYlVYzEyI8qhp1rK6GdpF52OTsjphKdP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"328b62aa8bb99bff494e25379a19861e01572a4e","gitHead":"4e07ce5c2cf1ef940ee2d2ef7e8428ef6a2def9d","scripts":{"lint":"eslint *.js test/*.js","size":"browserify index.js | size-table asynckit","test":"istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec","clean":"rimraf coverage","debug":"tape test/*.js | tap-spec","report":"istanbul report","browser":"browserify -t browserify-istanbul test/test-*.js | obake --coverage | tap-spec"},"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"pre-commit":["clean","lint","test","browser","report","size"],"repository":{"url":"git+https://github.com/alexindigo/asynckit.git","type":"git"},"_npmVersion":"2.15.6","description":"Minimal async jobs utility library","_nodeVersion":"0.12.11","devDependencies":{"tape":"^4.5.1","obake":"^0.1.2","eslint":"^2.9.0","reamde":"^1.1.0","rimraf":"^2.5.2","istanbul":"^0.4.3","tap-spec":"^4.1.1","coveralls":"^2.11.9","browserify":"^13.0.0","pre-commit":"^1.1.3","size-table":"^0.2.0","phantomjs-prebuilt":"^2.1.7","browserify-istanbul":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/asynckit-0.1.0.tgz_1463613943057_0.8168901917524636","host":"packages-12-west.internal.npmjs.com"},"directories":{}},"0.2.0":{"name":"asynckit","version":"0.2.0","keywords":["async","jobs","parallel","serial","iterator","array","object"],"author":{"name":"Alex Indigo","email":"iam@alexindigo.com"},"license":"MIT","_id":"asynckit@0.2.0","maintainers":[{"name":"alexindigo","email":"iam@alexindigo.com"}],"homepage":"https://github.com/alexindigo/asynckit#readme","bugs":{"url":"https://github.com/alexindigo/asynckit/issues"},"dist":{"shasum":"449693b00700b64babfb12f81be4c9919e4deb4e","tarball":"https://mirrors.huaweicloud.com/repository/npm/asynckit/-/asynckit-0.2.0.tgz","integrity":"sha512-0M7mjypF9Y4iT1EE+Z2Ysk+yT2HaU6e5lH4Ii72gQYarafrQW7oV5DFAB61rxVmkjTv0Rc85lZiYDFCjBBOY8A==","signatures":[{"sig":"MEUCIE8IiW1uJP61sWZZVn8CizEvJXBeAFT7n8l2VUTs98rvAiEAzOJs3uwelYUMBXl+FUD+Z8iYH2fVSb1OGHXAXh64t7U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"449693b00700b64babfb12f81be4c9919e4deb4e","gitHead":"9e318400f05566fd7ae5968b6f2052926853dd0a","scripts":{"lint":"eslint *.js test/*.js","size":"browserify index.js | size-table asynckit","test":"istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec","clean":"rimraf coverage","debug":"tape test/test-*.js | tap-spec","report":"istanbul report","browser":"browserify -t browserify-istanbul test/test-*.js | obake --coverage | tap-spec","win-test":"tape test/test-*.js"},"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"pre-commit":["clean","lint","test","browser","report","size"],"repository":{"url":"git+https://github.com/alexindigo/asynckit.git","type":"git"},"_npmVersion":"2.15.6","description":"Minimal async jobs utility library","_nodeVersion":"0.12.11","dependencies":{},"devDependencies":{"tape":"^4.5.1","obake":"^0.1.2","eslint":"^2.9.0","reamde":"^1.1.0","rimraf":"^2.5.2","istanbul":"^0.4.3","tap-spec":"^4.1.1","coveralls":"^2.11.9","browserify":"^13.0.0","pre-commit":"^1.1.3","size-table":"^0.2.0","phantomjs-prebuilt":"^2.1.7","browserify-istanbul":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/asynckit-0.2.0.tgz_1463645848762_0.41517290310002863","host":"packages-16-east.internal.npmjs.com"},"directories":{}},"0.3.0":{"name":"asynckit","version":"0.3.0","keywords":["async","jobs","parallel","serial","iterator","array","object"],"author":{"name":"Alex Indigo","email":"iam@alexindigo.com"},"license":"MIT","_id":"asynckit@0.3.0","maintainers":[{"name":"alexindigo","email":"iam@alexindigo.com"}],"homepage":"https://github.com/alexindigo/asynckit#readme","bugs":{"url":"https://github.com/alexindigo/asynckit/issues"},"dist":{"shasum":"bde42eec27d7888fef99f7427e63c2eb624c2903","tarball":"https://mirrors.huaweicloud.com/repository/npm/asynckit/-/asynckit-0.3.0.tgz","integrity":"sha512-qCxikyv0Ny1dG4uriCSpP0fev60kCazWJQyM7UyZ1njF5XuvE92konkM8YA+/y5ONBy1Di4VD3MX0uG8UQvKhw==","signatures":[{"sig":"MEUCICaanWgtDwvKuU+qCKTR3Ail+/YRI/xW+VztiVKplyh2AiEA/9429K304tv3FY+ZtH7ALX7nN+cskSla24AMZMS0WTk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bde42eec27d7888fef99f7427e63c2eb624c2903","gitHead":"b92a500fee672934c19bdb008974b46d494b8b4b","scripts":{"lint":"eslint *.js lib/*.js test/*.js","size":"browserify index.js | size-table asynckit","test":"istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec","clean":"rimraf coverage","debug":"tape test/test-*.js | tap-spec","report":"istanbul report","browser":"browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec","win-test":"tape test/test-*.js"},"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"pre-commit":["clean","lint","test","browser","report","size"],"repository":{"url":"git+https://github.com/alexindigo/asynckit.git","type":"git"},"_npmVersion":"2.15.6","description":"Minimal async jobs utility library","_nodeVersion":"0.12.11","dependencies":{},"devDependencies":{"tape":"^4.5.1","obake":"^0.1.2","eslint":"^2.9.0","reamde":"^1.1.0","rimraf":"^2.5.2","istanbul":"^0.4.3","tap-spec":"^4.1.1","coveralls":"^2.11.9","browserify":"^13.0.0","pre-commit":"^1.1.3","size-table":"^0.2.0","phantomjs-prebuilt":"^2.1.7","browserify-istanbul":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/asynckit-0.3.0.tgz_1464241837301_0.37562970467843115","host":"packages-12-west.internal.npmjs.com"},"directories":{}},"0.4.0":{"name":"asynckit","version":"0.4.0","keywords":["async","jobs","parallel","serial","iterator","array","object","stream","destroy","terminate","abort"],"author":{"name":"Alex Indigo","email":"iam@alexindigo.com"},"license":"MIT","_id":"asynckit@0.4.0","maintainers":[{"name":"alexindigo","email":"iam@alexindigo.com"}],"homepage":"https://github.com/alexindigo/asynckit#readme","bugs":{"url":"https://github.com/alexindigo/asynckit/issues"},"dist":{"shasum":"c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79","tarball":"https://mirrors.huaweicloud.com/repository/npm/asynckit/-/asynckit-0.4.0.tgz","integrity":"sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==","signatures":[{"sig":"MEQCIBbge6e7VDP+ilAARDSShG7w73q75+pQRdohpUXBDv2CAiB+LKgQl5A0S/jAElUxESEQ0eOsIiqsMLQ+vLPlsFj23A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79","gitHead":"583a75ed4fe41761b66416bb6e703ebb1f8963bf","scripts":{"lint":"eslint *.js lib/*.js test/*.js","size":"browserify index.js | size-table asynckit","test":"istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec","clean":"rimraf coverage","debug":"tape test/test-*.js","report":"istanbul report","browser":"browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec","win-test":"tape test/test-*.js"},"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"pre-commit":["clean","lint","test","browser","report","size"],"repository":{"url":"git+https://github.com/alexindigo/asynckit.git","type":"git"},"_npmVersion":"2.15.6","description":"Minimal async jobs utility library, with streams support","_nodeVersion":"0.12.11","dependencies":{},"devDependencies":{"tape":"^4.5.1","obake":"^0.1.2","eslint":"^2.9.0","reamde":"^1.1.0","rimraf":"^2.5.2","istanbul":"^0.4.3","tap-spec":"^4.1.1","coveralls":"^2.11.9","browserify":"^13.0.0","pre-commit":"^1.1.3","size-table":"^0.2.0","phantomjs-prebuilt":"^2.1.7","browserify-istanbul":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/asynckit-0.4.0.tgz_1465928940169_0.8008207362145185","host":"packages-16-east.internal.npmjs.com"},"directories":{}},"0.5.0":{"name":"asynckit","version":"0.5.0","description":"Minimal async jobs utility library, with streams support","main":"index.js","scripts":{"clean":"rimraf coverage","lint":"eslint *.js lib/*.js test/*.js","test":"istanbul cover --reporter=json tape -- 'test/test-*.js' | tap-spec","win-test":"tape test/test-*.js","browser":"browserify -t browserify-istanbul test/lib/browserify_adjustment.js test/test-*.js | obake --coverage | tap-spec","report":"istanbul report","size":"browserify index.js | size-table asynckit","debug":"tape test/test-*.js"},"pre-commit":["clean","lint","test","browser","report","size"],"repository":{"type":"git","url":"git+https://github.com/alexindigo/asynckit.git"},"keywords":["async","jobs","parallel","serial","iterator","array","object","stream","destroy","terminate","abort"],"author":{"name":"Alex Indigo","email":"iam@alexindigo.com"},"license":"MIT","bugs":{"url":"https://github.com/alexindigo/asynckit/issues"},"homepage":"https://github.com/alexindigo/asynckit#readme","devDependencies":{"browserify":"^13.0.0","browserify-istanbul":"^2.0.0","coveralls":"^2.11.9","eslint":"^2.9.0","istanbul":"^0.4.3","obake":"^0.1.2","phantomjs-prebuilt":"^2.1.7","pre-commit":"^1.1.3","reamde":"^1.1.0","rimraf":"^2.5.2","size-table":"^0.2.0","tap-spec":"^4.1.1","tape":"^4.5.1"},"dependencies":{},"sideEffects":false,"gitHead":"c187bb532519a78509942ce405c9165434003378","_id":"asynckit@0.5.0","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-uVtNMW2mMSraLQ5kC/JJ9j1nPrd7c6zqMFTW57QJ5VibCJsU6ckcedOoNSoq7kQJ4WFgJIjFm0VF3hbHvh6/ww==","shasum":"c51c057b942f46ca1b95a96e82d2ad056888c32c","tarball":"https://mirrors.huaweicloud.com/repository/npm/asynckit/-/asynckit-0.5.0.tgz","fileCount":20,"unpackedSize":26621,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDnkFKv8YENQmR6SqLFYjcca5WKJYER6WYbFwoly1CYygIhALL1+EEaIdfn1K/+UoW01Psn7wLcDPvM9qluz7Ti5R+k"}]},"_npmUser":{"name":"alexindigo","email":"iam@alexindigo.com"},"directories":{},"maintainers":[{"name":"alexindigo","email":"iam@alexindigo.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/asynckit_0.5.0_1766027502962_0.6439675113796264"},"_hasShrinkwrap":false}},"time":{"created":"2016-05-18T23:25:43.646Z","modified":"2025-12-18T03:11:43.263Z","0.1.0":"2016-05-18T23:25:43.646Z","0.2.0":"2016-05-19T08:17:31.695Z","0.3.0":"2016-05-26T05:50:39.597Z","0.4.0":"2016-06-14T18:29:05.418Z","0.5.0":"2025-12-18T03:11:43.095Z"},"bugs":{"url":"https://github.com/alexindigo/asynckit/issues"},"author":{"name":"Alex Indigo","email":"iam@alexindigo.com"},"license":"MIT","homepage":"https://github.com/alexindigo/asynckit#readme","keywords":["async","jobs","parallel","serial","iterator","array","object","stream","destroy","terminate","abort"],"repository":{"type":"git","url":"git+https://github.com/alexindigo/asynckit.git"},"description":"Minimal async jobs utility library, with streams support","maintainers":[{"name":"alexindigo","email":"iam@alexindigo.com"}],"readme":"# asynckit [![NPM Module](https://img.shields.io/npm/v/asynckit.svg?style=flat)](https://www.npmjs.com/package/asynckit)\n\nMinimal async jobs utility library, with streams support.\n\n[![Coverage Status](https://img.shields.io/coveralls/alexindigo/asynckit/master.svg?label=code+coverage&style=flat)](https://coveralls.io/github/alexindigo/asynckit?branch=master)\n\n\n\nAsyncKit provides harness for `parallel` and `serial` iterators over list of items represented by arrays or objects.\nOptionally it accepts abort function (should be synchronously return by iterator for each item), and terminates left over jobs upon an error event. For specific iteration order built-in (`ascending` and `descending`) and custom sort helpers also supported, via `asynckit.serialOrdered` method.\n\nIt ensures async operations to keep behavior more stable and prevent `Maximum call stack size exceeded` errors, from sync iterators.\n\n| compression | size |\n| :----------------- | -------: |\n| asynckit.js | 12.34 kB |\n| asynckit.min.js | 4.11 kB |\n| asynckit.min.js.gz | 1.47 kB |\n\n\n## Install\n\n```sh\n$ npm install --save asynckit\n```\n\n## Examples\n\n### Parallel Jobs\n\nRuns iterator over provided array in parallel. Stores output in the `result` array,\non the matching positions. In unlikely event of an error from one of the jobs,\nwill terminate rest of the active jobs (if abort function is provided)\nand return error along with salvaged data to the main callback function.\n\n#### Input Array\n\n```javascript\nvar parallel = require('asynckit').parallel\n , assert = require('assert')\n ;\n\nvar source = [ 1, 1, 4, 16, 64, 32, 8, 2 ]\n , expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ]\n , expectedTarget = [ 1, 1, 2, 4, 8, 16, 32, 64 ]\n , target = []\n ;\n\nparallel(source, asyncJob, function(err, result)\n{\n assert.deepEqual(result, expectedResult);\n assert.deepEqual(target, expectedTarget);\n});\n\n// async job accepts one element from the array\n// and a callback function\nfunction asyncJob(item, cb)\n{\n // different delays (in ms) per item\n var delay = item * 25;\n\n // pretend different jobs take different time to finish\n // and not in consequential order\n var timeoutId = setTimeout(function() {\n target.push(item);\n cb(null, item * 2);\n }, delay);\n\n // allow to cancel \"leftover\" jobs upon error\n // return function, invoking of which will abort this job\n return clearTimeout.bind(null, timeoutId);\n}\n```\n\nMore examples could be found in [test/test-parallel-array.js](test/test-parallel-array.js).\n\n#### Input Object\n\nAlso it supports named jobs, listed via object.\n\n```javascript\nvar parallel = require('asynckit/parallel')\n , assert = require('assert')\n ;\n\nvar source = { first: 1, one: 1, four: 4, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, eight: 8, two: 2 }\n , expectedResult = { first: 2, one: 2, four: 8, sixteen: 32, sixtyFour: 128, thirtyTwo: 64, eight: 16, two: 4 }\n , expectedTarget = [ 1, 1, 2, 4, 8, 16, 32, 64 ]\n , expectedKeys = [ 'first', 'one', 'two', 'four', 'eight', 'sixteen', 'thirtyTwo', 'sixtyFour' ]\n , target = []\n , keys = []\n ;\n\nparallel(source, asyncJob, function(err, result)\n{\n assert.deepEqual(result, expectedResult);\n assert.deepEqual(target, expectedTarget);\n assert.deepEqual(keys, expectedKeys);\n});\n\n// supports full value, key, callback (shortcut) interface\nfunction asyncJob(item, key, cb)\n{\n // different delays (in ms) per item\n var delay = item * 25;\n\n // pretend different jobs take different time to finish\n // and not in consequential order\n var timeoutId = setTimeout(function() {\n keys.push(key);\n target.push(item);\n cb(null, item * 2);\n }, delay);\n\n // allow to cancel \"leftover\" jobs upon error\n // return function, invoking of which will abort this job\n return clearTimeout.bind(null, timeoutId);\n}\n```\n\nMore examples could be found in [test/test-parallel-object.js](test/test-parallel-object.js).\n\n### Serial Jobs\n\nRuns iterator over provided array sequentially. Stores output in the `result` array,\non the matching positions. In unlikely event of an error from one of the jobs,\nwill not proceed to the rest of the items in the list\nand return error along with salvaged data to the main callback function.\n\n#### Input Array\n\n```javascript\nvar serial = require('asynckit/serial')\n , assert = require('assert')\n ;\n\nvar source = [ 1, 1, 4, 16, 64, 32, 8, 2 ]\n , expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ]\n , expectedTarget = [ 0, 1, 2, 3, 4, 5, 6, 7 ]\n , target = []\n ;\n\nserial(source, asyncJob, function(err, result)\n{\n assert.deepEqual(result, expectedResult);\n assert.deepEqual(target, expectedTarget);\n});\n\n// extended interface (item, key, callback)\n// also supported for arrays\nfunction asyncJob(item, key, cb)\n{\n target.push(key);\n\n // it will be automatically made async\n // even it iterator \"returns\" in the same event loop\n cb(null, item * 2);\n}\n```\n\nMore examples could be found in [test/test-serial-array.js](test/test-serial-array.js).\n\n#### Input Object\n\nAlso it supports named jobs, listed via object.\n\n```javascript\nvar serial = require('asynckit').serial\n , assert = require('assert')\n ;\n\nvar source = [ 1, 1, 4, 16, 64, 32, 8, 2 ]\n , expectedResult = [ 2, 2, 8, 32, 128, 64, 16, 4 ]\n , expectedTarget = [ 0, 1, 2, 3, 4, 5, 6, 7 ]\n , target = []\n ;\n\nvar source = { first: 1, one: 1, four: 4, sixteen: 16, sixtyFour: 64, thirtyTwo: 32, eight: 8, two: 2 }\n , expectedResult = { first: 2, one: 2, four: 8, sixteen: 32, sixtyFour: 128, thirtyTwo: 64, eight: 16, two: 4 }\n , expectedTarget = [ 1, 1, 4, 16, 64, 32, 8, 2 ]\n , target = []\n ;\n\n\nserial(source, asyncJob, function(err, result)\n{\n assert.deepEqual(result, expectedResult);\n assert.deepEqual(target, expectedTarget);\n});\n\n// shortcut interface (item, callback)\n// works for object as well as for the arrays\nfunction asyncJob(item, cb)\n{\n target.push(item);\n\n // it will be automatically made async\n // even it iterator \"returns\" in the same event loop\n cb(null, item * 2);\n}\n```\n\nMore examples could be found in [test/test-serial-object.js](test/test-serial-object.js).\n\n_Note: Since _object_ is an _unordered_ collection of properties,\nit may produce unexpected results with sequential iterations.\nWhenever order of the jobs' execution is important please use `serialOrdered` method._\n\n### Ordered Serial Iterations\n\nTBD\n\nFor example [compare-property](compare-property) package.\n\n### Streaming interface\n\nTBD\n\n## Want to Know More?\n\nMore examples can be found in [test folder](test/).\n\nOr open an [issue](https://github.com/alexindigo/asynckit/issues) with questions and/or suggestions.\n\n## License\n\nAsyncKit is licensed under the MIT license.\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/47/c2/d44846b2ffaf3313973cff7043c624c4be06f8c594c5d112a60077e21153779257c8a577e2dbf402a2258f71c550d09fd919dcfd3a3ccbe2e2443ff31103 b/frontend/.npm-cache/_cacache/content-v2/sha512/47/c2/d44846b2ffaf3313973cff7043c624c4be06f8c594c5d112a60077e21153779257c8a577e2dbf402a2258f71c550d09fd919dcfd3a3ccbe2e2443ff31103 new file mode 100644 index 0000000..c35eb22 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/47/c2/d44846b2ffaf3313973cff7043c624c4be06f8c594c5d112a60077e21153779257c8a577e2dbf402a2258f71c550d09fd919dcfd3a3ccbe2e2443ff31103 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/47/ef/e3d722b30f75869c48ec26c01fd62294d4fcc5311e855dd6cd66399650ec7dbaab37eacedde972bdaa4c681bcdb98ade5d758bf6e43640f548cae40c1aa3 b/frontend/.npm-cache/_cacache/content-v2/sha512/47/ef/e3d722b30f75869c48ec26c01fd62294d4fcc5311e855dd6cd66399650ec7dbaab37eacedde972bdaa4c681bcdb98ade5d758bf6e43640f548cae40c1aa3 new file mode 100644 index 0000000..60932c4 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/47/ef/e3d722b30f75869c48ec26c01fd62294d4fcc5311e855dd6cd66399650ec7dbaab37eacedde972bdaa4c681bcdb98ade5d758bf6e43640f548cae40c1aa3 @@ -0,0 +1 @@ +{"_id":"stylis","_rev":"181-24b5b620edddbba0a8f84f042863168a","name":"stylis","dist-tags":{"latest":"4.3.6"},"versions":{"0.1.0":{"name":"stylis","version":"0.1.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.1.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"5c24a39c48c2b451ba74be7fc6844e658ff6c595","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.1.0.tgz","integrity":"sha512-izLqhXZA7gF5eS5UTj/8N1+Dsyebdo7PZhUAAL7pcSs1SRP+c/Cj7ZfMX68zfsKho2HXB7mei9TFu6SKuhyjpg==","signatures":[{"sig":"MEUCIQDGP6UdKh0aN127AfCmXCC7S02dXVE2gBDQqAVFcVKiPQIgN0MTcS5uzON9GrPOB9JHJzW3HK+DtShvMzbAKRFnxU0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"5c24a39c48c2b451ba74be7fc6844e658ff6c595","gitHead":"21690cefd11357a33beb54b8ff648c81defbf805","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.1.0.tgz_1480233413023_0.765154097462073","host":"packages-18-east.internal.npmjs.com"}},"0.1.1":{"name":"stylis","version":"0.1.1","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.1.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"ec342f5659d897bf82ec8e69c6eec89a519a0c68","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.1.1.tgz","integrity":"sha512-jGeU9kWfzgZxAkznHzokajDbf3sPOtQYneFyLA++6dgeEkyF7NT+q71tyNF9KofQGm2tCiDoyO5tUBjYSk/a+A==","signatures":[{"sig":"MEQCIH/xaHDekDI/tSTqRZlYiDxL+/7u1hRxm+5L18sjGlsjAiBO2cpu4HngrsRWqHwZQPoJBwQ/P4vTm672V9vhLw0RMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"ec342f5659d897bf82ec8e69c6eec89a519a0c68","gitHead":"b98fbf4b5743ac57d8645d5ea4bc1b2586de6cd1","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.1.1.tgz_1480234992774_0.3440535038243979","host":"packages-18-east.internal.npmjs.com"}},"0.1.2":{"name":"stylis","version":"0.1.2","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.1.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"b2fbe35e05ea65c9d9f5197e9ef25687355aa3e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.1.2.tgz","integrity":"sha512-wtgKS/vfSFOPlrtNo2lLylN8WpqVRMHAnl8tQqalJcaA9RbxOz9VjlKBzx1C9G9d6SFVKGZOJrkl9a7JlTR9/A==","signatures":[{"sig":"MEUCIQCJqSKWwtgZuukYU2HcECg8pStrF0q/i66NWdMgjoCFlAIgcingLgU4AThAJ3Nvf+G084UKsWU5H3GbMi23xhLQwGY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"b2fbe35e05ea65c9d9f5197e9ef25687355aa3e1","gitHead":"f244e087a3196c4f722b05eb8e27a7ac28535ee7","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.1.2.tgz_1480237522558_0.7777606104500592","host":"packages-18-east.internal.npmjs.com"}},"0.1.3":{"name":"stylis","version":"0.1.3","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.1.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"3e0bda52859e2aec67676a3f447322e91aac4c7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.1.3.tgz","integrity":"sha512-TFmOctzFThvQhEfE+rgTw4QKRDFbu8H215JwCosNj3WfiZBeyUipsDsE+Cw2YNuKD2UxO+2+Gq7lkZbhaUOSOg==","signatures":[{"sig":"MEUCIDUZgt2TktpwotSGRd28wDY84Q0/BaY0H62T+T+CpCI3AiEAvJwtT6nSPWKK6xlZiPpHe3f1kL/4BPGUOd00XXaN9M0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"3e0bda52859e2aec67676a3f447322e91aac4c7c","gitHead":"1215949a0f401867c73eeb423ecc495f08cdbde3","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.1.3.tgz_1480239726056_0.8438823544420302","host":"packages-12-west.internal.npmjs.com"}},"0.1.4":{"name":"stylis","version":"0.1.4","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.1.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"d79b04da65196bb417a2905f5aecfaa296a11467","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.1.4.tgz","integrity":"sha512-BD3hKycCZQ9PiRYA0ZlnbBHd/hjqwQb1NSpbhBkLD1GUgRU1Np0t27sS1vN8tR0tQhZLTgOc7YikB5Vfh/HDIA==","signatures":[{"sig":"MEQCIEfboIDhgEfjiQU4u2NbgCZTLAkAVx4Wmlj1P4wYi5fnAiB9IdoPdQf+gFhLxJw7Dkdvl5skAIo2wVpjl8r0gS68Mg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"d79b04da65196bb417a2905f5aecfaa296a11467","gitHead":"3746005023a0e68a1131dfdff9782b000c123647","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.1.4.tgz_1480240780521_0.6180387064814568","host":"packages-18-east.internal.npmjs.com"}},"0.1.5":{"name":"stylis","version":"0.1.5","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.1.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"55a9ef5d65ffd4ac27c2f15bcdc03b0b482cc628","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.1.5.tgz","integrity":"sha512-DBmVGInesM5qrjL/U9WW19B+rcmXgo9GvN+FZ/dsKiqHz2lNaeeaEaePJKyqU08cEIzBOeMRJpQ9C6b57CjEWA==","signatures":[{"sig":"MEUCIEuhIMhPjthmUDtLnA5LH3R6OJGb3R63nUIns1iOnNDoAiEA9ISiA7ZxOyOFJn1kwX7US/J4bbOLeDWI5Feao9BDCg4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"55a9ef5d65ffd4ac27c2f15bcdc03b0b482cc628","gitHead":"337e21fbb7172d5bae8741236d696462da33d257","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.1.5.tgz_1480241198685_0.013958647614344954","host":"packages-12-west.internal.npmjs.com"}},"0.1.6":{"name":"stylis","version":"0.1.6","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.1.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"99aecbc3eef7b2d20e0f523cb17a6f03e65435d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.1.6.tgz","integrity":"sha512-vwaSZ+Y+bFSmuNZWQc8wjODMsQ04oT+WZGW+Vk2DTAKW0Lwykt2J4gvVV17ufkguFSv94iTI8uKliDJa6mdaow==","signatures":[{"sig":"MEQCIANlxVEh6zCuDXneETfkHwyA2qtmt/SauKH2D0sGrRcfAiB1qOgkNJNiCjp4Gq3v5ctr6ggf3tc6/bQu1+iW3GkgIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"99aecbc3eef7b2d20e0f523cb17a6f03e65435d7","gitHead":"76322c2f0515684648afa493aac0ed9b6773d317","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.1.6.tgz_1480242481055_0.7238178460393101","host":"packages-12-west.internal.npmjs.com"}},"0.2.0":{"name":"stylis","version":"0.2.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.2.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"4e0887f56ebb8ae4cbc766eb49ea250304dafa4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.2.0.tgz","integrity":"sha512-hJKGG6fF/uNss1TpoPZl5lDr2e5B5TCQhIAjQyAN0kSKQUE4HADJAVzaiseD9pL4Dj2sJxCp5UiK19GOAH704Q==","signatures":[{"sig":"MEUCIQC5N+hhxFQ1EGgv3XcUj8PToVxsTGtPWNHubIFn2U6HCQIgNBVs3ZFPtTpk23XrD7SYoKh2PsZwhd4qEvHLOniwo9U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"4e0887f56ebb8ae4cbc766eb49ea250304dafa4d","gitHead":"76322c2f0515684648afa493aac0ed9b6773d317","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.2.0.tgz_1480683218187_0.8626351654529572","host":"packages-18-east.internal.npmjs.com"}},"0.3.0":{"name":"stylis","version":"0.3.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.3.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"ef830d293c8f885a8a7b7ee056cdbcd232d286b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.3.0.tgz","integrity":"sha512-WN6WQW7+5QS3mQyutqmc7viAgizXiEbnlRffAAwMqFoOG9e0exqwmODGZ+g9NZPcr9keEguJqsZw+V4hoSx0ng==","signatures":[{"sig":"MEUCIQCz06B7XI3n2eE9zdfo5YuOnDaoiEq5N3HiGnNal0FjIQIgKupSndJ55PbQCNvj85MPM455mZaLyEe+hqU5IsxzTbs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"ef830d293c8f885a8a7b7ee056cdbcd232d286b1","gitHead":"bb62fa734f7a016a9b03a03cfef3df0fcfc4206b","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.3.0.tgz_1480698292530_0.41023846925236285","host":"packages-18-east.internal.npmjs.com"}},"0.4.0":{"name":"stylis","version":"0.4.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.4.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"71e7afc2fe43104bac825cf7304d2be9d4e89038","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.4.0.tgz","integrity":"sha512-Q5pzvw7Uiw7A95uuB9aBWjrXEUmOSOaCvEw/WMmBAuLj4ucoeuVznr7CWEvv2U5zW2bLIp6GRAgabymzlBQTwA==","signatures":[{"sig":"MEYCIQD3rRiXeW8DkyZ223UEGGvUSbHVU++69AHhNMdygcH2mwIhAJbpdO5DHuguxoNO/Sf1EqEGNqdIXpmsF347MkU+ElGw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.min.js","stylis.js"],"_shasum":"71e7afc2fe43104bac825cf7304d2be9d4e89038","gitHead":"86f9139167c3295442b47bb536b5e437c8937c61","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.4.0.tgz_1480765428292_0.6267889414448291","host":"packages-18-east.internal.npmjs.com"}},"0.6.0":{"name":"stylis","version":"0.6.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"4d96b9bb817ec52a6771f23091a9ee3a317b9f8f","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.0.tgz","integrity":"sha512-iwVWNFD1j07imagI6JJAkIjuApPSNFaIWDGGrpmSFy8pXSsnBrycf/zt8SMM4TnU9cp/YohenMobEc8ODdEm8w==","signatures":[{"sig":"MEUCIANgu5etwUeLCXvPgVaTFF316GkSyz7A8NeOZLoV9IGgAiEA5GYVwGLheVfpMI2MBVxBSgYWzKjkUdYS/gvyxE04YR4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"4d96b9bb817ec52a6771f23091a9ee3a317b9f8f","gitHead":"17bfe39c805b251a34f4bc8ca9e28f9c5aaa381f","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.0.tgz_1480789308484_0.14320627553388476","host":"packages-12-west.internal.npmjs.com"}},"0.6.1":{"name":"stylis","version":"0.6.1","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"b9086ed70cb861cc86bcac1dd14709004c1f2566","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.1.tgz","integrity":"sha512-i+swo4Hw9I4G4HiuOmx4TuTW1sM6XAMV4dMLJFdkRe9V50DU+76p9YWwZDB8KNG6wEYuaYmfGb3iwAfm3FUDVQ==","signatures":[{"sig":"MEUCIAmcN/eL23VCiBMg7lugwRySQXNJ/4WHbBCE172bB7FoAiEA6Ncl9iby6TD5MULUQwuiDnkk1JLlvh/Tf6oUZH0/e8I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"b9086ed70cb861cc86bcac1dd14709004c1f2566","gitHead":"57c0654fd107d867b3890735c3c9afe511299593","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.1.tgz_1480790183033_0.37817991548217833","host":"packages-18-east.internal.npmjs.com"}},"0.6.2":{"name":"stylis","version":"0.6.2","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"016c796b8f3813d8e74dabee101f0fc7dee7937d","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.2.tgz","integrity":"sha512-u1moyw0pulsBPBqxEqREOZo5+817zw0xVomL3bah/Kw7CrYyHV3UcG2AAZv9achhkGNBo1ZlGUKg/B7+pDWgRg==","signatures":[{"sig":"MEQCIC9On3fuHLBZyism7eQKm8paTIWzBv+AB8GyxD+m4ZuLAiB3m8V9iPtn9mfFNyrFPdm6i5VDe4S6LByNgRhBaPNgiQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"016c796b8f3813d8e74dabee101f0fc7dee7937d","gitHead":"5f4e0fd3da73332f3ce3294a62599383267266ef","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.2.tgz_1480861370778_0.431380701251328","host":"packages-12-west.internal.npmjs.com"}},"0.6.3":{"name":"stylis","version":"0.6.3","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"234c52b9bf9944d39716f628ec53cfedf60620ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.3.tgz","integrity":"sha512-tSqhzvYAkb0S3pHC4CHeSU7l9+0u3jacq/uQDJCUBDt2BZ5yu6NijOXpyj91V24Pyn5NPfsWP++mtEsCIqmdpA==","signatures":[{"sig":"MEQCIHWi5miZ3ehxuwukHNUUaqprlZhKppkfBrklUZlseXMGAiBgAFO5U7pLG0w227vs5geh1munHuGNkcD1+/17p4CWKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"234c52b9bf9944d39716f628ec53cfedf60620ac","gitHead":"238e88788a0be1ab0e40d16a9e47b3fd71bbce90","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.3.tgz_1480866895394_0.19776898832060397","host":"packages-18-east.internal.npmjs.com"}},"0.6.4":{"name":"stylis","version":"0.6.4","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"5a65cf1b0f899d9e22250d1520389d650b854886","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.4.tgz","integrity":"sha512-BEIeKleT5xNXUS40CIhXZxfSIi3ZmQ4onaprannd7NojkwFmBK3qfuBE0pIY3mLClqQnauSa/Z+BQwQMKSQfjg==","signatures":[{"sig":"MEQCIG8SIylmpLzC5xV+B5oTYIwKZKZyzRBcuyUEuoitLD2BAiArQlpncw+IpJ0RxCmku4pwERmGQjg/Jf0Ws/t10K9D1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"5a65cf1b0f899d9e22250d1520389d650b854886","gitHead":"2c0af56a972edc853bc84ca7acbc50587104ba0c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.4.tgz_1480898304389_0.3036600381601602","host":"packages-12-west.internal.npmjs.com"}},"0.6.5":{"name":"stylis","version":"0.6.5","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"0da619c70b8f72d0a5a99afb471ea731a8cf3832","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.5.tgz","integrity":"sha512-cfx0RDo9D1R3uXAOKAi447IH7nZmIrVPLi0k6rdb7wD/3qtgKXZwNaf4O+NlFjmRXeuiZm1U9PFCRpL7QzTIhw==","signatures":[{"sig":"MEQCIAhfA7JS/pEJn7a+SK0QYnUbtJiVMFGXSMCZoMCY8Tg6AiBMwwOjSQRVIlZbwlDY0fTUwIfle1FX8dMSRQ90qpU/wQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"0da619c70b8f72d0a5a99afb471ea731a8cf3832","gitHead":"4bcf4d6cf7ed20e0793b419dde92d983154b74f2","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.5.tgz_1480995138419_0.02529673557728529","host":"packages-18-east.internal.npmjs.com"}},"0.6.6":{"name":"stylis","version":"0.6.6","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"e8c25a613570cc0db583c5ae0a6360c86cded5c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.6.tgz","integrity":"sha512-PoU8YYYHuxqSL/ZFBaYkWeVvT4zHfGXc1TTGkRheh8D5JGouAJzIT61QqQkhmR4x4ysel3BmNbP3cwIuB2hl/A==","signatures":[{"sig":"MEYCIQDBHqWOyt1GRB0v+A1jylwDcZW0u22FBfKwLxCW/TqtLQIhAMVAJ9NCz0BFVbGT3Nb+39Pm3QRxVWsRUXf3IgGzOf6Z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"e8c25a613570cc0db583c5ae0a6360c86cded5c3","gitHead":"d3e15fae1c4d105e8e844d50d78159241499f5d5","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.6.tgz_1481041536301_0.49159615649841726","host":"packages-18-east.internal.npmjs.com"}},"0.6.7":{"name":"stylis","version":"0.6.7","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"262474f584ecf29bb9137f30e5835a75d72aeaa7","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.7.tgz","integrity":"sha512-7LOrnUnarpW8T09YltbHa5nRG66RskWfg/VSU3ltpzxsn8JPEXy8EX4p+KBb6vvALJn2UK1PyW+TmK0zExAlCQ==","signatures":[{"sig":"MEYCIQDeJ9uftbKlcTFngMe9Q8j+m8HndEXZwOZavk64fIQ4XQIhAJMh2sWU0HC9yxLEZfBeEPSMkr76HSxo2ZAV7yboFN48","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"262474f584ecf29bb9137f30e5835a75d72aeaa7","gitHead":"6efa027998daa107f14b0218b7c5b4440693dbe7","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.7.tgz_1481139502751_0.2707623185124248","host":"packages-18-east.internal.npmjs.com"}},"0.6.8":{"name":"stylis","version":"0.6.8","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.6.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"e650ec1a1e427aa0cda7603b5bcf797a6e753882","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.6.8.tgz","integrity":"sha512-JaQnXqzLZUThB+JrKcHQVkssroz+g+GAvqfhCWt7zu6nmttQ3P7eKQ2kOyGbMGJx6w41Serct4yd5YgcQhr5VQ==","signatures":[{"sig":"MEYCIQDDXCRGdEikslZeKD8UZ9h+PhUIm0DojfwChlNndEvUmgIhAM3DSCSyRpKT0EjXXadkQ9s5eNSpxqACOevPvw5ykTI/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"e650ec1a1e427aa0cda7603b5bcf797a6e753882","gitHead":"5ae12263bfeac7d6032c3f34f28a3f775f2fcbd2","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.6.8.tgz_1481193797758_0.7490607050713152","host":"packages-12-west.internal.npmjs.com"}},"0.7.0":{"name":"stylis","version":"0.7.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.7.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"7392b2569d6197ed9723c30dcae6f5adfa451127","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.7.0.tgz","integrity":"sha512-rbu4Xm+RiLKxwotoqRpMqzICkcofqwCDte+mAbEM5xlxWj4RVCMevXbp0WMz5ykwcdc9dG/WvDTe4DwDwY8QlQ==","signatures":[{"sig":"MEUCIQDnLf5HZ1O9QgdvrusDwH/G/Y5nS2CMYnwntYL7vr+O+gIgOq1s9T0rqBv8d9ryShRbD0+XZQMTFVUypDG3e6oxTfA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"7392b2569d6197ed9723c30dcae6f5adfa451127","gitHead":"2b4bff54649a357df48eec2d84554f916cb7b89c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.7.0.tgz_1481501226684_0.8161374523770064","host":"packages-12-west.internal.npmjs.com"}},"0.7.1":{"name":"stylis","version":"0.7.1","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.7.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"15ae34161559b6e67600afbf7715344e384e0a76","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.7.1.tgz","integrity":"sha512-4S+7LnZyJPQXyje429qaJ8sjLJm1CT6jO6/NZEUry7jWF9cfMbsm8fxaBxJinhmfvcGb+uyBRC3KCkE5+cH1KQ==","signatures":[{"sig":"MEUCICTaVCGb27GBXVA43F59/MR9gVQPKR/giJjMShHc5ELZAiEA22yuWAXjM2XR92dOz89S1JgkDcCBFHDzwxXZd8XtL7s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"15ae34161559b6e67600afbf7715344e384e0a76","gitHead":"d62d402ff261531937c9e9683b5fe6613377dd5e","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.7.1.tgz_1481930586703_0.9802277141716331","host":"packages-12-west.internal.npmjs.com"}},"0.8.0":{"name":"stylis","version":"0.8.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.8.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"418a0a825f1b75eecd6ec6fdaec711593edff71b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.8.0.tgz","integrity":"sha512-7FMmYEtfEOgb28KzSm0fhoUrwfy6I0fYY0x5WKm3ryt2nf8xIrRGc1PB1e+ZCtrVlYywBL7PmCmXvHz8StCxcg==","signatures":[{"sig":"MEUCIQCjI0/zYI+vP0wz9zSvYHgs4nfo4mCtnnKuvTh9MkkUZAIgI9JDrZgm0HNfCklJeUhjvkKdGLWHKBxC0R9PpecuvJo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"418a0a825f1b75eecd6ec6fdaec711593edff71b","gitHead":"e185c04665489422c7e97086d9a41b070975b373","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.8.0.tgz_1482131340900_0.36500148638151586","host":"packages-12-west.internal.npmjs.com"}},"0.8.1":{"name":"stylis","version":"0.8.1","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.8.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"697a1dd9a1960c9710f799004939bed9e9942f8d","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.8.1.tgz","integrity":"sha512-z208Wnob5Y/+2GR5QYhdLqJAFRYcQoG3gkRhhx2VBMCWCrfiY6DQo2U70BZZFcFJ1iofgtvHKWOceDRIiAUmNQ==","signatures":[{"sig":"MEYCIQDBdZRQSgLvoRq7BX4egIfkI7FP4+WovYE+ZvvOvLjadgIhAKSqNcTJauGsLe2K+d1PKJyZopmdFZ6gQBhVt29HPArg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"697a1dd9a1960c9710f799004939bed9e9942f8d","gitHead":"13904d8023b3d3b46d3560b289de96f858ce415b","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.8.1.tgz_1482172387820_0.6818397780880332","host":"packages-12-west.internal.npmjs.com"}},"0.8.2":{"name":"stylis","version":"0.8.2","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.8.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"1cdba27321ae5d3944b986952180d2ad7a29a086","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.8.2.tgz","integrity":"sha512-GXbKLW8+1oSfh+DbueWh79rLCp0g2Ys98o0xweLL62liC7xbEwQKtsduvO45cNWW1n5KxglKospqLMuePPZ3mw==","signatures":[{"sig":"MEYCIQDdqmO4k+eeHp40VBZIUJjrU0nEaLFspYPhIUFmDtbQAQIhAPebUZk0FSAcofKxw29EX1sgM8Dnxk1MOt1KW7DQ3ux+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"1cdba27321ae5d3944b986952180d2ad7a29a086","gitHead":"512fa684938a325f5a71a491da0702ecf142fbf5","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.8.2.tgz_1482206539081_0.2248020451515913","host":"packages-12-west.internal.npmjs.com"}},"0.8.3":{"name":"stylis","version":"0.8.3","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.8.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"c0103beafea20f96ab7bd3d698e82e1ad0263c2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.8.3.tgz","integrity":"sha512-HEZ6W/JpRTYtDQavyrEC4xlZMyfLPvMaXUCr2v4BPps8gJJRuKsKlIfS9xr4AH+TQ5R7purGIGSZa/lYgnO8DQ==","signatures":[{"sig":"MEQCIBwhToHR0yg7AHEglqtzyD6LEctcTVgQhF5z/aJf0AFmAiB4OIAqkrsRzfMOL4J9LYOy/SDlwLb9p84bx+qqWshttQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"c0103beafea20f96ab7bd3d698e82e1ad0263c2c","gitHead":"723efa6aae27c540e577f09b194937359638366c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.8.3.tgz_1482244362675_0.6054205102846026","host":"packages-18-east.internal.npmjs.com"}},"0.9.0":{"name":"stylis","version":"0.9.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.9.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"20a392177dd3507b96591d9027b9695e196952ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.9.0.tgz","integrity":"sha512-O99Ft97bp2uyc5HkVbxM7Wqkv7PuyfQnEL5M1tIiYK/dReISg8HUR0Fbo6bbYK0FYDDlqG5MWMtACZhUCxPzEQ==","signatures":[{"sig":"MEYCIQC2lS+agjEuuwBj02uH2MygFTdPWCpiC8wo0asJN2HfrQIhALp8S8QjiVaIexRaUhrKwEmtqwgtPWAkXOxZbCseiIPJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"20a392177dd3507b96591d9027b9695e196952ec","gitHead":"c7427e0558ce3d987e1a402b5fcddecf426f9ca7","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.9.0.tgz_1483678655804_0.07066405145451427","host":"packages-12-west.internal.npmjs.com"}},"0.9.1":{"name":"stylis","version":"0.9.1","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.9.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"ad09c759cb016f3176c3d3cb5d79a218bc9123e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.9.1.tgz","integrity":"sha512-IADc1BzdHaaV/7jD7zU5he0OQn0YlR4yxHuqABoYRCUH2N/H9dxPJj/hhqXaMMKITXift96213EI+CBAJGg1ZQ==","signatures":[{"sig":"MEUCIAw9OhpcvLz1tDcT7FpqJZ91P/teQUKVmOeFvdbCtGtkAiEAp2YjGlkx838Y3/Sf/vvzqWpxm8fYfiVZSb09JpDSG64=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"ad09c759cb016f3176c3d3cb5d79a218bc9123e6","gitHead":"231db9342f5c89230f348f5c30469c35b7212300","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.9.1.tgz_1483706603854_0.9771063702646643","host":"packages-12-west.internal.npmjs.com"}},"0.9.2":{"name":"stylis","version":"0.9.2","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.9.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"31080d34d54c2f226d39ee567e7de2baf00d5f78","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.9.2.tgz","integrity":"sha512-EK2iQty0IrPBurb2bQ0KayQ3FOYOnQZv+Dwz6CPV3S0wkSYqb6JidPnjSJcppdAsVeMnJq2ZW4/BeGjEeehHqA==","signatures":[{"sig":"MEYCIQCzk9//BmTBvbPTVpCmDxIRBMKc2887/jFI40dT+/VeqgIhAK586IbbEiS5UkbKbh4yJVaVYeC9/0I+1/4df3JX0E24","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"31080d34d54c2f226d39ee567e7de2baf00d5f78","gitHead":"e76c072e3cced00d4e2c75ee50dae430cc8888ee","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.9.2.tgz_1483754892983_0.9906460624188185","host":"packages-18-east.internal.npmjs.com"}},"0.10.0":{"name":"stylis","version":"0.10.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.10.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"c27b55c7035e96c52d9e172aacbd3bba57792f0c","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.10.0.tgz","integrity":"sha512-wPeuS4R5QbhtjbxXB1hTi4bS1E7l+zZDFHA2GfIAwT8zRuk5zedoFQPRVgL+3Hi/7GIEjMUeJ6lDdjwtP+Q9pg==","signatures":[{"sig":"MEUCIGAAv4Y/t8d9Wy1pA4o4RXyG1CzCF5xyqhpWhJvVUHI0AiEA66p91JttJp/dmnyxdBoiFRF90oImWF5wBn4J8y4rKLY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"c27b55c7035e96c52d9e172aacbd3bba57792f0c","gitHead":"59b62d35e8833750c8c07e562f201d2940694d0e","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.10.0.tgz_1484595577420_0.5614521952811629","host":"packages-18-east.internal.npmjs.com"}},"0.11.0":{"name":"stylis","version":"0.11.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.11.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"2d62b571b3e799983d91d6005d3a5e454188a9b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.11.0.tgz","integrity":"sha512-ue7sPkjDSljDlxbaRcH5I49aJqrRYwPnINGvI6HbrzfsiV+ZJY92AWAbQEVTZLp5zrK9EktaeslLyNaQwAojbQ==","signatures":[{"sig":"MEQCIBfAITcpH8vErUaHCrVtC/2uc/nNtt9zZkxvonNyDZdoAiB1rqjLa49WNxC8si4o1DANIMl5GKjAIsHqNN5Nz08jUA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"2d62b571b3e799983d91d6005d3a5e454188a9b5","gitHead":"41f8b35b9d474488598c7879a7c8b58d4a62638d","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.11.0.tgz_1484730497088_0.6111848002765328","host":"packages-12-west.internal.npmjs.com"}},"0.11.1":{"name":"stylis","version":"0.11.1","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.11.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"044a18d4f8a7421c14902cd13eab2ee310a5c6b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.11.1.tgz","integrity":"sha512-T73t0ukksdOhS1exWkPmTasMWpJBZf9DoAK5aJoEVaPeYIuJCk1978z1zV+no2nPhUUd/QHroRuVUVhNpjgBFQ==","signatures":[{"sig":"MEYCIQCqdB3i4wT/ACOJKZZK81xEPJyZC5vRyKvqTs/+I5+ozwIhANlcsYm5iDQZFnLz+hB4e4eBibzs0O9qDzpYCs2HPfqq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"044a18d4f8a7421c14902cd13eab2ee310a5c6b5","gitHead":"2bb87ebadc4e3982c8f8881d870d23a5e6c563ef","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.11.1.tgz_1484933002479_0.3083720370195806","host":"packages-12-west.internal.npmjs.com"}},"0.12.0":{"name":"stylis","version":"0.12.0","keywords":["parser","compiler","css","style","node","browser","prefix"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@0.12.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"b2055fddbc0784f72ddb1e0a051b93efaae4bacc","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-0.12.0.tgz","integrity":"sha512-QbIWrTxiPJOybH375iX51prL2/yd4e2GlZ4CHQvf/vPA6s9PjMn/Gr9iwNCi6giq+IVWJ9bZYY/60VVgvDnevA==","signatures":[{"sig":"MEUCIQDJmIX0sW8KDHmJsCz/rAFwvemmz/Mec+3fFJ0Wi5SawAIgAo8AI+AWkLdVwimpQdXGBjGA/EOX5/I4OMMGWuDnCnk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"b2055fddbc0784f72ddb1e0a051b93efaae4bacc","gitHead":"479d81379c7be888c27a2807a20942c6b3bc3b5d","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a small css compiler","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-0.12.0.tgz_1485358874361_0.5090299556031823","host":"packages-12-west.internal.npmjs.com"}},"1.0.0":{"name":"stylis","version":"1.0.0","keywords":["preprocessor","parser","prefixer","css","css namespacing","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"a90c70fbe2d045d4f071afdaf956e1394bae2576","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.0.tgz","integrity":"sha512-6O5mTdK2UbPi9GlfLNgbN+Jqvo9oU/cj+0vWbitUBvyh/aKt+nnLoGqfTwzRuq2AVWjQY3nUed43V9mQHrLsfg==","signatures":[{"sig":"MEUCIQC1B0ntryGsm/4vyQUMvoAO9trHfcIFhPQ6RijZYW7FiAIgC0R3KQEDiuy1VuCDnixlkcvcnMhaRC3OWVtjOKRDxr4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"a90c70fbe2d045d4f071afdaf956e1394bae2576","gitHead":"5ceb3344ce965e1b3dbffbd3836b2ec7c3b44832","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.0.tgz_1485515631965_0.6873164426069707","host":"packages-12-west.internal.npmjs.com"}},"1.0.1":{"name":"stylis","version":"1.0.1","keywords":["preprocessor","parser","prefixer","css","css namespacing","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"cfe6782443a62c73f0ad7e9ff68eda8a4780de91","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.1.tgz","integrity":"sha512-DHZ7QzFPPOD/YxMwUI7XomVt2d0t2Ztq3l9/A4BaEsRP8YTBiLZ+JEeAaEJq4q8fbQiyrwt2aa85uHA6nUbLBw==","signatures":[{"sig":"MEUCICQma/TaXI9LvjgY2x7vq6qFRmiUDTuyAnqaxVzqxwEfAiEAwbxBo+c4T/jKY5uI4GHuXwQuhMA/tlFpZvZ2cfgoEYI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"cfe6782443a62c73f0ad7e9ff68eda8a4780de91","gitHead":"15ea9deb419977e6e576e70b807a64da35ed6039","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.1.tgz_1485826995717_0.6495128872338682","host":"packages-12-west.internal.npmjs.com"}},"1.0.2":{"name":"stylis","version":"1.0.2","keywords":["preprocessor","parser","prefixer","css","css namespacing","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"d2970894472c1d196284befa25fd5047195efb51","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.2.tgz","integrity":"sha512-mQoofOfs71ag8b8QgDAOioRsoXcxwDcpCPfcb6p+HOssiyMipJP3NqGOiLPD4GzCom16uugTwNKvB/V47JPadQ==","signatures":[{"sig":"MEYCIQDfwzZouo3i6Iv3t90kVDayvtFy5+Rh+PHjs19H7SXFVwIhAOWpKjkbMhEKdn3BQGh88P2Xlb6RZ4GfhIosmzm+HNJ0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"d2970894472c1d196284befa25fd5047195efb51","gitHead":"48ba2e35450b3b0e4739942a9350db07b2756455","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.2.tgz_1485866509437_0.5624464505817741","host":"packages-18-east.internal.npmjs.com"}},"1.0.3":{"name":"stylis","version":"1.0.3","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"cf4fd5ee2aead5777e71e30595b4a1c23c92f978","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.3.tgz","integrity":"sha512-ODBJqx80dQg2MikhAcBJM+46yp/YLoyLCvmS3q74LpJD9jw8RRPLZKVUcP4du8hEAsgbvolyVXaRe2fL2YaXdw==","signatures":[{"sig":"MEUCIQCHAB+CJt0TRQzF9qTRLlkKweFTUnL4FtRbcWXefUJoOwIgY1UkTIkezAH3CbISteJyRR5aas0iCYeuxuQjT+d4MT0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"cf4fd5ee2aead5777e71e30595b4a1c23c92f978","gitHead":"3bbfea44a3a9b09bcd943b73644323bdfea1661c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.3.tgz_1485974058303_0.17888715327717364","host":"packages-18-east.internal.npmjs.com"}},"1.0.4":{"name":"stylis","version":"1.0.4","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"303cae8d1016a0d646feebcb3118d17ee4837b3a","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.4.tgz","integrity":"sha512-XeqlzG0STVeW8807pPFbUH0807rF+c96xEzprX5WRYMLHf/gAO+GQn8uJ6vwEle2dKXfmTdSZug5wCE6Big0Gg==","signatures":[{"sig":"MEQCICGCFPFOp7noXAmluK2TqTaFptoor3o2K9mx3V1a238rAiA5hF0q3S2qOgjCa06eGm/0iljzvTdYFLnNo1N/TMrqow==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"303cae8d1016a0d646feebcb3118d17ee4837b3a","gitHead":"b959af1c2659ad5358c9ca3ea5c501afa626ea58","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.4.tgz_1486038739225_0.7979614487849176","host":"packages-12-west.internal.npmjs.com"}},"1.0.5":{"name":"stylis","version":"1.0.5","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"327b0d75f008f7dc9529588e8acca4129f1aa126","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.5.tgz","integrity":"sha512-+rMMnohB+rIrc3RDQONjNRe99UdjRlTNtQVzM1EaMEdw0i5Wf3hO0YZnwFC8RTmn7ePMyDnKrFnTmuRVtLQNaQ==","signatures":[{"sig":"MEUCID3e8vLy2xY/TahIBXf/LgtwP1ii0SuU2hoQ6igupF07AiEAxzfRXgnOQt1XX++ImgXJzkA9zFsjEbgqiZ47P/wsXWU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"327b0d75f008f7dc9529588e8acca4129f1aa126","gitHead":"bcb7fab15417d880e58be01cc693cd85a5199f5c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.5.tgz_1486414642324_0.9675011816434562","host":"packages-12-west.internal.npmjs.com"}},"1.0.6":{"name":"stylis","version":"1.0.6","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"419f033a2f60d3cdadb9b205ecd3f02ee23c7232","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.6.tgz","integrity":"sha512-OJ1qi7TU7yTCsEvFkJTWjrO/qGyVG0WZPm5AFCJxp9Xra6mEEw18MqCW50j6xUSyZgfCEjh1i6VZJ2Ew3VCHaQ==","signatures":[{"sig":"MEUCICDwjTWAlEUla87HOVKx+CDjSjDwla/CSwUhYMKUFndgAiEAughAmWxOTMf5h/hlKCCf6o/YjcrQwftGcgjOhTZxDP4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"419f033a2f60d3cdadb9b205ecd3f02ee23c7232","gitHead":"ee4ca778b9fd854474315852e18e41a88dd26ce8","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.6.tgz_1486424039660_0.5519266109913588","host":"packages-12-west.internal.npmjs.com"}},"1.0.7":{"name":"stylis","version":"1.0.7","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"825101aaf5b46193ad70aea1b2a2856a6ae4e83b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.7.tgz","integrity":"sha512-Nw0Vv0viDUMQAusJfBt8/bmvys1012KHu7ORlzv9SfCMQduyDvKRVTsehLp0WJ/FoL/zwN2wNAgd74dzmHsYtw==","signatures":[{"sig":"MEQCIHTaQWNOcz36zmg23qqfn5/yXvgXb1OjESq1wyfrR0ZSAiAFLYjJiPisopuFJJmP3CkUgCiHCiu9rvOttPcGu0U19Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"825101aaf5b46193ad70aea1b2a2856a6ae4e83b","gitHead":"f82db8e410d99092e827f98e9fa7a1fa3f43328c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.7.tgz_1486475953318_0.18931788904592395","host":"packages-18-east.internal.npmjs.com"}},"1.0.8":{"name":"stylis","version":"1.0.8","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"d8634d1c5b0951605c4977766ba8936eccd184ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.8.tgz","integrity":"sha512-RVU3b6LxtW+RPvUA2uQNeEkzXodOWUmz9lc2OZ3dlD+qKPh7qexXXsLbTcXpQaIa7jT39EJ4+mlIdU6+botyBg==","signatures":[{"sig":"MEQCICXMZdsWNOqS0cazaKTVNd83nFTU9cNiy6/NhzqWwaUEAiB/jerQvE46FZZ6Yyya6LZRriOfWtFRa8+67KT/VVUTaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"d8634d1c5b0951605c4977766ba8936eccd184ab","gitHead":"7042b6e37857a072fb38d6902fcd44772261687c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.8.tgz_1486582445980_0.1262589073739946","host":"packages-18-east.internal.npmjs.com"}},"1.0.9":{"name":"stylis","version":"1.0.9","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.9","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"2f37e217a7b652da98a603fb09c13446d14b12e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.9.tgz","integrity":"sha512-FWMBoGJUazlxbe93putFDLzjTjkvztb+PoZk5x5DXOzCQV50JnSwe5YAkT4uqAoB1I8xdGoUgEzSV8+Od6Qivg==","signatures":[{"sig":"MEYCIQCW7wkJa+xo8+kbqBsfa9beNs1fQI9pUyCzRF0L7VZNTwIhAO8iNkEOrJcX5/EerQzAwWMduD8eCMPZ2BurIUbVn5qo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"2f37e217a7b652da98a603fb09c13446d14b12e5","gitHead":"dea3b4722fed61d70b2f6b96160f6715c585c643","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.9.tgz_1486611260423_0.31741829006932676","host":"packages-12-west.internal.npmjs.com"}},"1.0.10":{"name":"stylis","version":"1.0.10","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.0.10","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"cfe25289cb61589c09f2f2aeff423605c7ca530f","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.0.10.tgz","integrity":"sha512-bDiD+ogyxvDL6lTPf0OiFu+JCweZO8JWcWW0M2bE2Hg5F7wqSnznhpkp8J8ePSevvmn8Qx9pwKkq0TC41amZrQ==","signatures":[{"sig":"MEYCIQDr+pO5AgldFrDaAFI8IjVB8lYRXyg+DrDjPmhF6NM8jwIhAMTOetY2W84NGnTSs3+d6gBdIuXYVZVDgx+68jQuzHoT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"cfe25289cb61589c09f2f2aeff423605c7ca530f","gitHead":"288bc8b34210bb87b3f5b11420674f3cf9bd84ba","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.0.10.tgz_1486675835066_0.1590974114369601","host":"packages-18-east.internal.npmjs.com"}},"1.1.0":{"name":"stylis","version":"1.1.0","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"9eba397b22d590e0ed3241cfbe1ee110e07f08ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.0.tgz","integrity":"sha512-D1TpiTdG03oDBIzYvyjs8q1BGAW8VM5zq18iXM3NMKJPKBrRBZT2OFlvaiQNj+ttn6nvf0Xo465Yv2rvp3VbQA==","signatures":[{"sig":"MEUCIFoPp69zo+jNilAuNyRCTpIK4gZNNyJfq075aSAFNkltAiEAwNZUSnkYzNx2z7BI2rbgXj1eT4bF4OVo33JA0oCG2GM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"9eba397b22d590e0ed3241cfbe1ee110e07f08ff","gitHead":"6b7dcbbb3c733a419f248037ca821b46f56e9865","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.0.tgz_1486741884338_0.29826388973742723","host":"packages-12-west.internal.npmjs.com"}},"1.1.1":{"name":"stylis","version":"1.1.1","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"9099f72a6bc007fd727d67497e83740d38123790","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.1.tgz","integrity":"sha512-7JG/jW3DyCuH8JBf7c6I4GwVJ5UGpiDHLKlRpFX1ybnVXrkA9nKB2XO698uysG5Olk3I2HdRc0DFbBFIFt2QOw==","signatures":[{"sig":"MEUCIQDExadFhkB0OO/P9C4eM4evUuJ9tzfLfUyil0YWEfejnQIgDPpmujGW4jDepheiAZuvcCbzA798zvMi4UTnOxbgEZo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"9099f72a6bc007fd727d67497e83740d38123790","gitHead":"b52679d880d49e444ffc9ff2036164d256c1b98b","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.1.tgz_1486780450928_0.8611471117474139","host":"packages-18-east.internal.npmjs.com"}},"1.1.2":{"name":"stylis","version":"1.1.2","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"a2fa95f4eb5c82a9341d99a10d0b9033e216d1be","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.2.tgz","integrity":"sha512-aKiNi2fUN7H9QYWJLlqBBLudyBXQZj87NWe31Fr2hrlDBMNiWvOf+Yy03dqCEwn9v7REC0ajvh2C0SBPQwgSgA==","signatures":[{"sig":"MEYCIQDq7uY526SPoogKJ+Ex0o9hTwN8CwFVqRuEls/9PXzQQgIhAOoF8D8mwntvIZdYJBPSidkS8mmrtYj0v4kxEMS4UlPd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"a2fa95f4eb5c82a9341d99a10d0b9033e216d1be","gitHead":"b85da030a09bc2fea3edc7a4a6b1bec1eb0b88c9","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.2.tgz_1487016698465_0.40300432313233614","host":"packages-18-east.internal.npmjs.com"}},"1.1.3":{"name":"stylis","version":"1.1.3","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"6629373d03297f4b0da1a744d0f5cdb877f3ac1d","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.3.tgz","integrity":"sha512-TPZtfrU7qaTiRB1wYC2vMOT1Yh6Oae9YjRAQ5uDOgmBQxYWgSMkScrntVXJ6DVEvXeDqzqinvrHHognMBoR+4w==","signatures":[{"sig":"MEUCIGEUnh+IAUquzYGjMz8FYXi5KbTb1PJAPigfWcKt1kbfAiEA3hUhYy0z5A0VQP5LFOpHkyRp3AqOZMCFXE4YhBiBFoI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"6629373d03297f4b0da1a744d0f5cdb877f3ac1d","gitHead":"04e5512ea4bb5c010600c209264bee07ad9e5ad5","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.3.tgz_1487018157344_0.8585340117570013","host":"packages-12-west.internal.npmjs.com"}},"1.1.4":{"name":"stylis","version":"1.1.4","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"84335ae77ed265b53f33dd5eba67e898a3863879","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.4.tgz","integrity":"sha512-tk4EaWI5S4vvJMntFqgZUQ+XMTFV7E4FWOEKcPtfP0kr6LMylhQrJhupq4p9IJSZKIm1UM3UMOKXSp1OJY1qtw==","signatures":[{"sig":"MEUCIQCi5g9V5hhEP+7TO9AAU9XjbZUsN5qCHHUXZvQ1Ri4UlwIgS83m2IXfy3+sotEbYN6mjEyWsbLEYbSflwpwaq0bZjk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"84335ae77ed265b53f33dd5eba67e898a3863879","gitHead":"5319f035edb5c826f1a363008c8332fd4126be38","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.4.tgz_1487209110201_0.7265218032989651","host":"packages-18-east.internal.npmjs.com"}},"1.1.5":{"name":"stylis","version":"1.1.5","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"2b15c8f37f62d2b75c725ad75320ced7d29356fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.5.tgz","integrity":"sha512-jvGa2zk8K+21Beil24RjlF/hacjyOgX+b81cK9L4/OpmGpq0euyB8Dy4jSBi9xwd/Sqk9L7K1lxvCfzLkFesIQ==","signatures":[{"sig":"MEQCIGOAXkYZaIFKC1ZcWt5RyPXTWlf9KU73hU1HM2hCsv14AiAFkfk6BJW1tDESfyHq+tQDzqEFyu9QKyNc9MpVqlbr+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"2b15c8f37f62d2b75c725ad75320ced7d29356fe","gitHead":"9c376721b28bfdb752f6a6788b2efa8d02980a3a","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.5.tgz_1487210216240_0.003004162572324276","host":"packages-18-east.internal.npmjs.com"}},"1.1.6":{"name":"stylis","version":"1.1.6","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"c66c9fc211d337f7477decbab8aad8743c946aa6","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.6.tgz","integrity":"sha512-j2Zzvy5hckClnR+5AqyUeE5IV4WFxPM97Xtgtk+BEro1XjCpBNhI8XvS5IhG1nuUabw6zwiNZfoP/jsOil8vQA==","signatures":[{"sig":"MEUCIQDhaFIhjcN04/S7M+xhqKtXOowSHuBtwp0WOzIOtR/DjwIgLzW7zoMWVssGAhdmQ7jnbqfA9QBC939BJEfdlgfkp+g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"c66c9fc211d337f7477decbab8aad8743c946aa6","gitHead":"ed51fca4a44e5f09342f2702063923c5e22a553e","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.6.tgz_1487224142023_0.41274073580279946","host":"packages-12-west.internal.npmjs.com"}},"1.1.7":{"name":"stylis","version":"1.1.7","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"e9d5665ecda406448bb33950fd9ad4247bc69a27","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.7.tgz","integrity":"sha512-mzdlP25j+HHPdUKMU+NWznGhMftc0zyD9bkh7tMEiv2VIymvMEm2BQuYeyT+Gew1Qxx9JtvkZ7bEsabfEWqpvQ==","signatures":[{"sig":"MEUCIQDOIaqSy18mBNXbmp9X3WN1EJJjc4MTnPo0w/NM+JfrmQIgMpf+DAA29yEJwzesJBdUWnxAH1irLiT/ctXN+r2/nmM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"e9d5665ecda406448bb33950fd9ad4247bc69a27","gitHead":"394add36ea04a90ce362ea493f2121be3b33ac54","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.7.tgz_1487231413058_0.6329137040302157","host":"packages-12-west.internal.npmjs.com"}},"1.1.8":{"name":"stylis","version":"1.1.8","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"6e178f5b2f225da5327b23920b38236af8e25930","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.8.tgz","integrity":"sha512-i/I8o4ys4UFZzSz1EwT3lE1WWC55QP7+QV2MQElhKP8+mIwfqQ4UVtxzD/ZSc6dMm1t/TUhmR9btj68ygkuPjA==","signatures":[{"sig":"MEUCIQCcaNYY/d7FYq/JUygqjP2nMcY4jBltn0/IOag8vi1DPwIgcLMroYdkyvivXAygTgGnMSPauR/ZNjT7RxXaIMDsR2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"6e178f5b2f225da5327b23920b38236af8e25930","gitHead":"94f993fa4b353ef540d4b4592c251ee947c9f36a","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.8.tgz_1487234760302_0.0985742521006614","host":"packages-18-east.internal.npmjs.com"}},"1.1.9":{"name":"stylis","version":"1.1.9","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.9","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"69aee565aaa3132116f714e23eaa23f3b3875dc2","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.9.tgz","integrity":"sha512-xL7h764DONIi6RuLfrJtSQMVfIU5AM1mg9FsbUN4YwYSSDvChWyEA8WhWxMqFcFVhkwzdssaGLfNXQeWgb6i+Q==","signatures":[{"sig":"MEUCIQDPVqkn9W3jJfAF/BbTImubVhTgMgzK55WqfF7lCX2O8gIgfZIf6F5Z8r8S3DN/PNiXSsibwqJoaLDgJP9bSHGTj5Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"69aee565aaa3132116f714e23eaa23f3b3875dc2","gitHead":"60b0c1cb116ca65c6814f98aac3d3052422f0d42","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.9.tgz_1487275125866_0.36763440258800983","host":"packages-12-west.internal.npmjs.com"}},"1.1.10":{"name":"stylis","version":"1.1.10","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.10","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"865d94cd615fc822041fcd03d973bf6e6edcd7ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.10.tgz","integrity":"sha512-7BneugOqZjGkJ44mPlQVFEFFTXIHHsj2ffkA0SSBDSjBH8cygWuYzvqpJ/29Sj9cUXDdiAAfcq1xa1KN4ekcgA==","signatures":[{"sig":"MEUCIEc6oMlNczmtukJ6kxV/rktBSgE4j6iSVjZAyxdcgbKIAiEA9HyooYtCeKD0H9RbUzsrwcqWknfIzgrEAJsGz2nAKxQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"865d94cd615fc822041fcd03d973bf6e6edcd7ce","gitHead":"d91207dba2f88c8c17476b8a44ea71294a18ba03","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.10.tgz_1487277591524_0.5302738908212632","host":"packages-18-east.internal.npmjs.com"}},"1.1.11":{"name":"stylis","version":"1.1.11","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.11","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"d7a54d65f6f715fb6cb885f3ad037842f2985b32","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.11.tgz","integrity":"sha512-iZ0xNRy0HPZAV/d9FzbZRAhDiqgAJF8anzvLL1OLz7R+nd9EAj2PeBr9nw+2q5UjdvDApgxtGOaL5rizTW5ssg==","signatures":[{"sig":"MEUCIFZ81dMsWB03oqerDTu9oihoN9DOYFSixYEEIpLO2QGSAiEAl+mzXnY4Xqlgo7yRnvyTuvGD30EgOjG5fgz3Ge2JUxw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"d7a54d65f6f715fb6cb885f3ad037842f2985b32","gitHead":"ab6e6beed9dcf37807ec28eac83fbf58fa5afce9","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.11.tgz_1487403401939_0.2574011771939695","host":"packages-18-east.internal.npmjs.com"}},"1.1.12":{"name":"stylis","version":"1.1.12","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.12","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"43337aea8084c2227317e9a53005557ee9fd63e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.12.tgz","integrity":"sha512-BZ/PTIluMT3Vfnx/w1hzoZlxe7yA0eQBQRtnLTHp6gg6xkWyrXCKikDuTHid0jXdes3H4OpaoV+UrV5ngV76fw==","signatures":[{"sig":"MEUCIQCyXGjDuCsJVK347FlL8aPWAy6qtTwkKBpEJu5tpYppOwIgYluUUvWrzq9c7zeLtukSQYC/Y3U9DnekzztV9zM+etA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"43337aea8084c2227317e9a53005557ee9fd63e8","gitHead":"0b5318ab1314585ddf617d5a180725bb4adcc43e","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.12.tgz_1487667710132_0.25916143343783915","host":"packages-12-west.internal.npmjs.com"}},"1.1.13":{"name":"stylis","version":"1.1.13","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.1.13","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"e15095d0027f49683f7556e31df184c1eafe1d6d","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.1.13.tgz","integrity":"sha512-aPqMlmONF/yV2X5YfXpVjqRp/6sjqH2b6754Jtejra/GS04vBdx3D0oLHx4XCASVwlPNpp537w22fcPYINh/Tg==","signatures":[{"sig":"MEUCIC3qpEuBGLB84i0XZimWD1ue6fpft/ZJigxftoIq3c9vAiEAyr1UPWJXmw3Or8R/JUXAHSKlGnkeT1m7c6Vz3g3VIrk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"e15095d0027f49683f7556e31df184c1eafe1d6d","gitHead":"b482348264b609a6b399a6dd47127c0513764282","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.1.13.tgz_1487898774568_0.7404511524364352","host":"packages-18-east.internal.npmjs.com"}},"1.2.0":{"name":"stylis","version":"1.2.0","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"fbc4850b9ee2b05a9c8b998075fab057544d4cae","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.0.tgz","integrity":"sha512-cuEK3Ao55u5u+hohvohZTDOLUNKnSSfNM84cO/NLExSJndjQ0uBfHeblzcARnn71mXp69IS7F9I5qcrAQecVRQ==","signatures":[{"sig":"MEQCICkGV6T3hgh53au1+20dqICwnZtzfSeTKVhrjGjMPLMuAiBw0g9bjtstGw0x5TzjEX0HZXBINA3RD+sEDF3ETK9tgQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"fbc4850b9ee2b05a9c8b998075fab057544d4cae","gitHead":"e29f01bd4a5b5a9e7329ce4ccc23ef8d778bf743","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.0.tgz_1488522073966_0.5785957360640168","host":"packages-18-east.internal.npmjs.com"}},"1.2.1":{"name":"stylis","version":"1.2.1","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"452ca6fb5010cdfee7cdd325d854bfd5269bf690","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.1.tgz","integrity":"sha512-1qxfQg4Pr6uFbZXevBAwebzxITJCSox12SBd9nV8unle+aqh++huNWr3vDuFzSm5TvIYEClYEtNyh4N7tu+RgQ==","signatures":[{"sig":"MEUCIGXKpMZcOOIPcMvoDPKdw2vwgb4eswog4CUM8/vcUdCnAiEAiel3+iQWBSdU+4VixxOvkfFdQAA/BnciQjS++RHWeqk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"452ca6fb5010cdfee7cdd325d854bfd5269bf690","gitHead":"d1ce43ad08a9d4643183ec5b606a1b8e4dd4b2af","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.1.tgz_1488588715439_0.5229360850062221","host":"packages-18-east.internal.npmjs.com"}},"1.2.2":{"name":"stylis","version":"1.2.2","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"953ec0b8d9d07b0d683bb2849dfc40ea7ef96606","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.2.tgz","integrity":"sha512-4W6Kih3IWeIMD7K89LSZ40gpOGaGZ/6mBtEF7bt0RvEQDZ2Zc5V5g7vhcqGkCyNL3rkfNk4p+q5EpJ/XmOLZHA==","signatures":[{"sig":"MEUCIGmMkz2fSaS3eNXCUAyMswywlQQq7orKw0e3McGkktNjAiEAyLZDBSi8VUE0UiOxe18FjWTlloIm+UXZgqDkC+x1w1Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"953ec0b8d9d07b0d683bb2849dfc40ea7ef96606","gitHead":"a245aaf050c8d43f1fa6f24c506cced58f7e943d","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.2.tgz_1488679338128_0.7023238316178322","host":"packages-12-west.internal.npmjs.com"}},"1.2.3":{"name":"stylis","version":"1.2.3","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"57c97b2a71f835b00b92460d751b2aca4355b91b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.3.tgz","integrity":"sha512-GfD/B3+neKEpQ6VRv6b5ZmmRQKJhGXdaywBAv0fEuTSuNZE2svzM4Bggl7gDv0pLqyVRBNRHwOV+iY8nV/9HZA==","signatures":[{"sig":"MEUCIQCb2DJA9OEB/rC8TT2dyI37GoWnzO7ftn3i8DfZANiY7gIgWzVK36bAofEb2F+aDP880rCQSjFN2Di6ohMVFUkD05Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"57c97b2a71f835b00b92460d751b2aca4355b91b","gitHead":"fa67a795977054574b1070ee2e49827599d29154","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.3.tgz_1488686895029_0.8188945548608899","host":"packages-12-west.internal.npmjs.com"}},"1.2.4":{"name":"stylis","version":"1.2.4","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"4c28dbeb65a4f7f128bb7fada88eaded3fd920a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.4.tgz","integrity":"sha512-y8jCEozU8UDjiO/GguXpnLrCWnws0/1fKf5qqP2hUKVVWoFiMOB6MroUK3ccRvJhd3hIbg9qXGV5paJ2gk7fQQ==","signatures":[{"sig":"MEUCIDE9H76l0qIy1IZU1nBsA4zpXlYIT0Ret9AFQ/XDw5iXAiEAj7PDXwXF7fziOwn7xe8lR5fFPmKgxFQwacC7Px5T/Po=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"4c28dbeb65a4f7f128bb7fada88eaded3fd920a8","gitHead":"fa67a795977054574b1070ee2e49827599d29154","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.4.tgz_1489069367097_0.33442677347920835","host":"packages-12-west.internal.npmjs.com"}},"1.2.5":{"name":"stylis","version":"1.2.5","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"b8fd0ec44c7974dfed80e333daa3d415bd0b577d","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.5.tgz","integrity":"sha512-sKWoZMCCYRjmN6AGuEBnjTgmTBf29uor6EIX9KqfDmJC7LoWhO1ljQaYkv5FkfGeWU7EIFWtuFzk3QKMedEESw==","signatures":[{"sig":"MEQCID8ken7dR558LXPrNvaxForVucJq18a5keI5T6upCc0dAiAWXrtMQOMB8eu/KmMUzEbDODtzSoMDVlz+2SPDuGGLJg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"b8fd0ec44c7974dfed80e333daa3d415bd0b577d","gitHead":"8aec7861f578c0900b42b986bcf89d1592b37b8f","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.5.tgz_1489189759649_0.987562678521499","host":"packages-12-west.internal.npmjs.com"}},"1.2.6":{"name":"stylis","version":"1.2.6","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"d7e72d3c8de52684a4f6cc82b3086e3634dc3c13","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.6.tgz","integrity":"sha512-n8rBQw7AuLUp7DJ+S+UOsrYgmXf1T1aBWG18ox/1/XqbcTVsNR6T20ZMqBXRfmVsbyZG9RayaKfJoH4k82pL3Q==","signatures":[{"sig":"MEQCIGGDhJZtqeN/kIMZKa743S0mL4UpZgqphfFT0SbgMMv5AiBWKx9067PupmsFNS3U028HegWZfWKrM/hgQOHLH+FtfQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"d7e72d3c8de52684a4f6cc82b3086e3634dc3c13","gitHead":"21352d710eb6be615818c566d7f0cab0ece274b3","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.6.tgz_1489493322473_0.39502799324691296","host":"packages-12-west.internal.npmjs.com"}},"1.2.7":{"name":"stylis","version":"1.2.7","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"44747eb19235e0001e5c9032607b3e99ba582d6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.7.tgz","integrity":"sha512-7zzGgWI+zzLfeYOT4Jhl4tmF6sFb1DIzhxG3YHxdW2xIKgpmTk1ceiK/VYV+dn0KKYBLbkpwsT4bT6896kquVg==","signatures":[{"sig":"MEYCIQCd3e7F/SeoHmW5izo3uNOjBZPh3E9SJjoqQp1FyvUDygIhAIChOif7XFqP0CUgU/Wip4SSo8xGfyyjiojhza8sGetj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"44747eb19235e0001e5c9032607b3e99ba582d6c","gitHead":"431d5d2ce48aac08bb3e29c6be0ff6cb499308ae","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.7.tgz_1490452732551_0.12756937555968761","host":"packages-12-west.internal.npmjs.com"}},"1.2.8":{"name":"stylis","version":"1.2.8","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@1.2.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"feba55055a8a1bf8a76a659084a91d729920fa92","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-1.2.8.tgz","integrity":"sha512-g777/0bliYlVmpKXGUzIZFlQQEztLQMBFJSHPA+lKJ2cjZQ0crvSqzgREyvoPp/hqsVJ6ZneoD0Rv5ZYA+gsKw==","signatures":[{"sig":"MEUCIQDw9TVix0MaXyL40jNDIR7VOwdXNePQbddLIhe8eGLf9AIgOkjJBibDSy6WUph9zd7CwCu2P+qQPNwAaWzwrsXwUAs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"feba55055a8a1bf8a76a659084a91d729920fa92","gitHead":"c7579500f95f3bdce7c848e97aa90c532009e54c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-1.2.8.tgz_1490527237719_0.00383667997084558","host":"packages-18-east.internal.npmjs.com"}},"2.0.0":{"name":"stylis","version":"2.0.0","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"6785a6546bd73478799a67d49d67086953b50ad5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.0.tgz","integrity":"sha512-HokOkC9aSBSjcKVvYnwfFGOZUlUAvxf5AitTR4AxS8ZBWC/48/u8EjI/EizNp552qJQOQ5iZrgZa7S41MKikwQ==","signatures":[{"sig":"MEQCIEGE5lKimyyXeF8ihw4d+HN3KXZL8a0lOH0uMucR7dqPAiAgwPKcf9N0jlGlsO+I2rBp7FLRqkNPHjxFNq4OD4FODw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"6785a6546bd73478799a67d49d67086953b50ad5","gitHead":"51c591da0f5ec470d16a66943304c595e3b5d0ed","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.0.tgz_1491079014679_0.8339880323037505","host":"packages-18-east.internal.npmjs.com"}},"2.0.1":{"name":"stylis","version":"2.0.1","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"be7439c0f9b6e746d2732aa78c0c2f556963a6a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.1.tgz","integrity":"sha512-yoN3UvtA0RbwKsG4uqsKjnSBSVfF4jarg9nMmavYcuFWtS0SeyHPB2OK6VTDUAU+K9gMEDn7pShErsP2dEf2CA==","signatures":[{"sig":"MEUCIQCI3Y6ZQ5POWR1oYE/Pq01w3B8BIYoLmT62ZCKbzaaKQgIgd5QFmGSfBx7XV2eMdSx9q3yS3cWPPUY9hoYgrsIUBT4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"be7439c0f9b6e746d2732aa78c0c2f556963a6a8","gitHead":"84846626872326f7001c26970b7b73953f7eb1ed","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.1.tgz_1491391750281_0.5513781069312245","host":"packages-18-east.internal.npmjs.com"}},"2.0.2":{"name":"stylis","version":"2.0.2","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"5ed0c3b641985552ee32a28248b70dd50eed6cff","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.2.tgz","integrity":"sha512-IVjlLmrc8jM7JbbTAiYJK6ObQ5zSpelG/t8mZwxJSv2sZ2ZEDNL9vYMLZS1qzt1hluZH8+gcGHqKJKqmHvFN9w==","signatures":[{"sig":"MEYCIQC/Bjs4q233RFcW1d7xk/9Eayxgu8pSXHo/FVaDH+EdEAIhANTg0V2PueKZ6Ra8rQC+ay4udf7abgO0rQe62p7Iv3Fg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"5ed0c3b641985552ee32a28248b70dd50eed6cff","gitHead":"ef59f165fe96ca756aac7a95a3dc482c6886885a","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.2.tgz_1491414779833_0.022186009446159005","host":"packages-12-west.internal.npmjs.com"}},"2.0.3":{"name":"stylis","version":"2.0.3","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"054b0ad1f636181664246c103adf506c84b502e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.3.tgz","integrity":"sha512-yIXEIZid4OlW0sTxDG6iM3PYWqexJWypzDFY4p1OyKK8pbzvJoBfMlIliQTm956SN0Xj3TVhlw/gt50CGpShpQ==","signatures":[{"sig":"MEUCIQCeT4919PAtl8DhNaDhwiTriuMEblWtp0EpdrsZUlk0RgIgB/tsWvrtq9fKViKtCzKpDx9K1gFY/wMIcBBET2NIljI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"054b0ad1f636181664246c103adf506c84b502e7","gitHead":"bf0a50b7fea5d7ac0697c9a19444a6a8567ae8ec","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.3.tgz_1492185781985_0.26572560984641314","host":"packages-12-west.internal.npmjs.com"}},"2.0.4":{"name":"stylis","version":"2.0.4","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"6c95c88605d23eefea5564360c0053e2e4f04803","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.4.tgz","integrity":"sha512-V5Ou/i0pFc9W+ObDh3drILmo3+ZXQMAyaU12m7kizFHnoIjh/tqB3urW3yTIafYbJD/Kz3NONCYSebl77Y+zWw==","signatures":[{"sig":"MEYCIQCr3Wns+I7i/UzvO7J9gKI1M6acIpTVhskx5Da66jvYogIhAKpOGX972VjoDptCQQBD9/j1U9ubaRVKcrAsris5ce2x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"6c95c88605d23eefea5564360c0053e2e4f04803","gitHead":"222bad2aa4f5597510b1d982e1414d919224bab2","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.4.tgz_1492966274731_0.8597018471919","host":"packages-18-east.internal.npmjs.com"}},"2.0.5":{"name":"stylis","version":"2.0.5","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"572cf888b2014ccdccb9dcadc343dbbd93e3c978","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.5.tgz","integrity":"sha512-q8lR/FLHd2UBI3+Z0UXg6Iqkm1lBd8sXHcfbp8dC46+jOzwFx5voBqsS8z1JyaU4pmxIVjW/Ljj2bNx6awS2gw==","signatures":[{"sig":"MEUCIQCi0UCenddCTCyeh/YHUvgQzprdaGnP6d8TFu+zlNzoOAIgHDv9pNxKOjh6Yhv0A8cc8na6rqYKFvoHQdjYOI3C0IE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"572cf888b2014ccdccb9dcadc343dbbd93e3c978","gitHead":"222bad2aa4f5597510b1d982e1414d919224bab2","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.5.tgz_1494385318001_0.18903380446135998","host":"packages-12-west.internal.npmjs.com"}},"2.0.6":{"name":"stylis","version":"2.0.6","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"7f5184573948523201c9d9e64a54fc11fb48fb8b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.6.tgz","integrity":"sha512-8BPceSky9Sc2PhK6WU33LCNZRZ7zTpLlGTZnKYpPkqMiQXUFyUesFJeRpbEQwV1bp361UknrWzq67j9drR72CQ==","signatures":[{"sig":"MEUCIQDmIWS0haNIGiBkyrcxst8L+dQIgs3HxKjYbWAiXVocEwIgOssRO50uzY3X639thBBuIccKI6bhjgD05uw3PlN2dVg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"7f5184573948523201c9d9e64a54fc11fb48fb8b","gitHead":"d74e2dbfe7decea150ec9a74cb0c2a4e4c26d543","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.6.tgz_1494467731620_0.373746142257005","host":"packages-18-east.internal.npmjs.com"}},"2.0.7":{"name":"stylis","version":"2.0.7","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"735e28d924c0b9c4e866d5a596ef5e2ec829b8f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.7.tgz","integrity":"sha512-bG6CEJcAPQvIbkte2er5m7WPWynHY1xG4ufGuWs+JsnU37tB6mz2vaR3WQ9IW5JlLYg3r3W/iWctobbo5w70wg==","signatures":[{"sig":"MEQCIEsArviUZmqiI2LBzC7QpcDca4EE0qf64UVttsFgqckaAiBLXjCHdohhizLL4hGUqkvtMdwzuCCddqd++7TAlzJDDg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"735e28d924c0b9c4e866d5a596ef5e2ec829b8f5","gitHead":"222c9f19a3f03c77ffa48609ff2c6bae729fde5e","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.7.tgz_1494468614299_0.6662159084808081","host":"packages-18-east.internal.npmjs.com"}},"2.0.8":{"name":"stylis","version":"2.0.8","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"dbd6c05e0db2522c3d1e7be0b21c9f39005fc65b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.8.tgz","integrity":"sha512-BrNd6MAWfkrQG09/TAy0SREEW/orTMCcqFCFpuPIfSnVWWjgNjB5n1O/v9VAUCB7rL69qOxFHlMLa52ZuPnvjQ==","signatures":[{"sig":"MEUCIQC9urquKmW2ARQeqcGY0Xus7vV3jISeU5IHHYEazgXFRQIgcI7v8ZhvRuvDobqRa4CoezmCilYDl7kydofrJEls+Hw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"dbd6c05e0db2522c3d1e7be0b21c9f39005fc65b","gitHead":"3d5861b75e9c6f8ec250984b7cc718525fb02154","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.8.tgz_1494487860748_0.0336870476603508","host":"packages-18-east.internal.npmjs.com"}},"2.0.9":{"name":"stylis","version":"2.0.9","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.9","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"374fbb51658871b0d13f2f8583b6da9c1b424ac3","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.9.tgz","integrity":"sha512-KQbStjStmrQa77BwP5JtbWBV3HD52/QyIHzG1pQjxXZxDsT0Nb6XyM38M1yMmpRllByDme1ntTxjCkpsZ82hLw==","signatures":[{"sig":"MEUCIC2Dom00LKR+eJ2xRkSI3HPqqNFZSnuIFADm317ko5TTAiEAg6rL4ZbKPHf8zzsRqiDd7S3F9P+TADI1kqRNBkN7vJ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"374fbb51658871b0d13f2f8583b6da9c1b424ac3","gitHead":"e5649b534a1c599e1f76504b9d5d2e6aeaa6b75c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.9.tgz_1494694751779_0.3880033018067479","host":"packages-18-east.internal.npmjs.com"}},"2.0.10":{"name":"stylis","version":"2.0.10","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.10","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"7c86b77369e08b3e7f46d4aebc95e86ba9dec389","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.10.tgz","integrity":"sha512-QLVH9kCOlUpL8PeYrh4hQaPGdyj3I81FqhwYdNJOn28iMiTOvgko/TnLx8Y14EIg2p/mKuJjVfLazBwxV7yT/g==","signatures":[{"sig":"MEQCIGcGP8u0OzodouO2llcbrN8On8L12JcEwnt3y04r8/RlAiBClPlr8Nz5yN8KaxHkgVToEZIf0lJhOdna6p+TBowp4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"7c86b77369e08b3e7f46d4aebc95e86ba9dec389","gitHead":"e5649b534a1c599e1f76504b9d5d2e6aeaa6b75c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.10.tgz_1494698629887_0.8288959795609117","host":"packages-18-east.internal.npmjs.com"}},"2.0.11":{"name":"stylis","version":"2.0.11","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.11","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"88b1a244980ca27c12a2549d2bbd622206adc6c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.11.tgz","integrity":"sha512-vWC9EAmeLvsUOl8igbJ4e/pG43+lzi//dd5jLbaqgjfMC8EU/FrBPHwYGKLb9jJxVPCnAK/RTy7DGrIewJgSqg==","signatures":[{"sig":"MEQCIDwEql8QDgFiVtE4UP2lzvOe3QJx0aQko56fqelgGR6HAiBOkJBMfotVSUyYPppi8Eh+D+MSqO9+4fe0AK7eIRUzKw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"88b1a244980ca27c12a2549d2bbd622206adc6c3","gitHead":"5838dd53e4eacdc8a7a95f44b7dcc5baa1bbf3c9","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.11.tgz_1494848159682_0.02601734292693436","host":"packages-12-west.internal.npmjs.com"}},"2.0.12":{"name":"stylis","version":"2.0.12","keywords":["preprocessor","parser","prefixer","css","node","browser"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@2.0.12","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"547253055d170f2a7ac2f6d09365d70635f2bec6","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-2.0.12.tgz","integrity":"sha512-Q8dpOjkTKBxZu6LzUu9y4TwkYJ3VVupofC8OYrPWJRJ7cUC9HMA70WKJncwUOuRNRvD1RAMUiJ40qlxneEWxtw==","signatures":[{"sig":"MEUCIQCs+tC2QX8qivHnQPEPsSvPMCKiRnVXGRxXAskww5ROKgIgMSP1waqnwK2wA2hnVGemwnG38AYys4nweE3RozAz1zE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"_shasum":"547253055d170f2a7ac2f6d09365d70635f2bec6","gitHead":"4db2e03781acead102ce997e2a23db56f545ec33","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"stylis is a feature-rich css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-2.0.12.tgz_1495134654500_0.5545616210438311","host":"packages-12-west.internal.npmjs.com"}},"3.0.0":{"name":"stylis","version":"3.0.0","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"dadfa2c9a7d9e1f49f0c223a47f81716efdad7a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.0.tgz","integrity":"sha512-sGih2pVLqjyEm43kotrUVqXg8N/Pd7fR+8ZiqjZm8sRyHTupQ1YAW5iKpHIy44Oz8hR1LgE+ispR6mGwxA79zA==","signatures":[{"sig":"MEUCIQDQi8u64auu26Ozt2VPk71R0Y8ivEdo2SlpTfYPMHNvkQIgTAx7Xq0Mm/hnRcv/0ErJZ9F1tfPHTcfgQdZD7INOPYM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"dadfa2c9a7d9e1f49f0c223a47f81716efdad7a5","gitHead":"d2af4fd042d1a8cc98da1f63dc198b096a5ff7a9","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light – weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.0.tgz_1495635651834_0.6630208615679294","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"stylis","version":"3.0.1","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"6b7beea9efebf11562a2279842f2d9ba882ea300","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.1.tgz","integrity":"sha512-8EWI+Zjh8zqf81P5ahBnEte6ozwAkyIjzj7mXddIwtGodJM3abKW/dPm9kMYS25nCGXTZiSHHk/OQzzVqgm3Fw==","signatures":[{"sig":"MEUCIQCcSLZh6l8U1gNmFjpXx6/JfJggr4Wkq00ygtcqGf1yrwIgSbEvlQA+2jPCYKPoygPFcmGcQb/zF6aT7b1xv3TqBTA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"6b7beea9efebf11562a2279842f2d9ba882ea300","gitHead":"759d3148a26d9b1f681128326f68301fad52b020","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light – weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.1.tgz_1495717429858_0.0954729332588613","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"stylis","version":"3.0.2","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"5dbc81e7470fae8d855a3395de71a0dba76fbd82","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.2.tgz","integrity":"sha512-kTuqlIpQRyXelBpypFAuaKMu9TlLGS9P+t8cXbD0ywbLkKMCKrRTqwrSEqTMFSd+oh3I/eUFQLd6KanUlcNObg==","signatures":[{"sig":"MEUCIQDsDUesuPp+TMpzXmCNRtPeY3LXFnXmg4LnnXpDystfQQIgJId7nLVbwHm5WCAhxDMpte9mcyjl6+Fn+n7t05kBIfk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"5dbc81e7470fae8d855a3395de71a0dba76fbd82","gitHead":"3d08853058c477e7692cf93067775cc4be44bb11","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light – weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.2.tgz_1495725023125_0.2012605166528374","host":"s3://npm-registry-packages"}},"3.0.3":{"name":"stylis","version":"3.0.3","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"51de66ab06b4fccdf55b70653a338fc7f94ca280","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.3.tgz","integrity":"sha512-s5ib3LiOxjzLscJmmjVhJqsDN0ioInAEkD3RfdQ6vC5HDvUoPIoCqDJM4ix+qskZO3AWqAGliqGOjuucq511pQ==","signatures":[{"sig":"MEYCIQCmI0VQcM1GiHxQOi5q1+plGPTVvEvbdXHSww8Mf5MS0AIhAP4xeh6d5lPlp7S4TYR87sazAvTUUfbLzrMolvrhK6Tg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"51de66ab06b4fccdf55b70653a338fc7f94ca280","gitHead":"f7961bb892ce44d6aff5e234b4c3e98f527ec75b","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light – weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.3.tgz_1495735696910_0.9833294050768018","host":"s3://npm-registry-packages"}},"3.0.4":{"name":"stylis","version":"3.0.4","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"fd7a0f6c10c09903704cc362bc23449afda33458","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.4.tgz","integrity":"sha512-whN+fVWfb3NE3m9MKWsDn3xqWxrXrquqvjYvDgmIlCE6Kn7NtFHYixkZFQrT8lTTtuARedbLOcpuJptwbSmKmQ==","signatures":[{"sig":"MEUCICxeAuXDHlKAFgJUL7PTnH12QaGjGYFswlC7EZ1iieHOAiEAn8yFE13XojlXYDWFAET264lmen2ZoFqJlXh04qJaPu4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"fd7a0f6c10c09903704cc362bc23449afda33458","gitHead":"0f783ddcbc926df457c712ddf2cb2921a9ace90a","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light – weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.4.tgz_1495736569355_0.06018161354586482","host":"s3://npm-registry-packages"}},"3.0.5":{"name":"stylis","version":"3.0.5","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"debb41e029cc9ee14880cf435fbe0a0933e25d2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.5.tgz","integrity":"sha512-KjNHvgi3cy3fqC5toAS1MMqcrGukcItp4IvQH98qM3iWFoCyl25V0SlShwksZZXrqMpw7NmHFyGmzUK9PfvOGw==","signatures":[{"sig":"MEUCIHWxM/ULr2i0ZylFGktL0tXIVpY9XvE4723tVqBg90buAiEA+E5vMmpYtLcv/wEc1rF1FihGFN6cMZ/oTv1DTqWq9c4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"debb41e029cc9ee14880cf435fbe0a0933e25d2c","gitHead":"76c328db8cfe6771b0f68cc785bd0971fa1630d4","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light – weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.5.tgz_1495995959544_0.4152820836752653","host":"s3://npm-registry-packages"}},"3.0.6":{"name":"stylis","version":"3.0.6","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"cb635f94d9860d2faba5b5aa9f69da20213444c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.6.tgz","integrity":"sha512-TqMgYwCY+sRp77q4BDj9oIP5Uay/lmiCn2A13ME1ErUGQ+IJGCf9GEmVH1v72ECOWyGTwDVdRrtPCnmKfzu2fA==","signatures":[{"sig":"MEUCIQCxfjrdHCZR9q4g/UVDclKu9Jmb9Tf6MD0kFSZJx0jA2AIgQ29muVfbK0Pwv25rlCvk9WccCGO+NbYP/w5CP24IRkA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"cb635f94d9860d2faba5b5aa9f69da20213444c5","gitHead":"0f7b78bc6c53194af4929bc0c6b869d3e7d4548d","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light – weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.6.tgz_1496081734912_0.8569624265655875","host":"s3://npm-registry-packages"}},"3.0.7":{"name":"stylis","version":"3.0.7","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"0f850f007c0d31760e3a6d0e36e8ba4b9d10dcba","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.7.tgz","integrity":"sha512-JTOpLOreX/fZZer+Qt4+wn60a8hwEoAS2fPfYbZW5D5ANlG1CgySwLqMHe08WImIthH5/fSV390AGW3IA1vEVQ==","signatures":[{"sig":"MEQCIE//kigPFcqFSc6XkiiJwoIKqiFB0L7AYi92buDshhL0AiBkkywIL+AV0wZ5GlNM+FcTHsjVqGiE986XUpfuHR7UCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"0f850f007c0d31760e3a6d0e36e8ba4b9d10dcba","gitHead":"01762bad0cd85cac772fc2b26dfac298e020a7c2","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.7.tgz_1496108344985_0.35372354555875063","host":"s3://npm-registry-packages"}},"3.0.8":{"name":"stylis","version":"3.0.8","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"fa79630d93cbe6381662f9e624d2681d9c8a3356","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.8.tgz","integrity":"sha512-BPpfmjuzTGkod31u4hiyYJ/e02t2Lsdfe6BiJQ2uv6zz1QJtOwdnh5F/WfgiKQhZuFSXtMsYcCb42ITRnNuPSg==","signatures":[{"sig":"MEYCIQCIVU/0Gra4hYuYb0VjD5SzTes2zx05IDQOn5jwzfjZ6AIhAJzzO+9BBHSecM0lXOYz9oHXEUquYMtcsMVPF1kpaP6W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"fa79630d93cbe6381662f9e624d2681d9c8a3356","gitHead":"1b4a3354970c160ecf7674877322dc46d54e4a9b","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.8.tgz_1496135920374_0.06471261009573936","host":"s3://npm-registry-packages"}},"3.0.9":{"name":"stylis","version":"3.0.9","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.9","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"39c8014b9b3003f6c6242632da237772f29e9992","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.9.tgz","integrity":"sha512-lf9afkKxXNUdVc0d1VAhUWunwDzeS+OTDv949rjwJJgrcuN5+WzBgk6fFIEjMvArgCc/0mN152fPPqRT05opmA==","signatures":[{"sig":"MEMCH0MN3bv1eJLU81S4twP+29KBkz/TUVQUPE7oJFNIyjQCIGnhtAvf0EAAr0/0Lkhh7cRki7bJaGJoa88S8JQD4FUq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"39c8014b9b3003f6c6242632da237772f29e9992","gitHead":"807c5bb84d108f38a3c7c4160abcf5353399b679","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.9.tgz_1496136553996_0.5873138071037829","host":"s3://npm-registry-packages"}},"3.0.10":{"name":"stylis","version":"3.0.10","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.10","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"9f561e8a9799c2c317c596583bcaaa52a0d27663","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.10.tgz","integrity":"sha512-/hHhpTyj3eqO+ephAhsovKAZ0xj4zTvsmFwiuzPyloH1SR7XfLxdiDPRxIAQTMftapgZGomBiTBPtY7WHTeNoA==","signatures":[{"sig":"MEQCIGqeMPeweN/fM84oRXF1phR441SaVBR7/HmjiwUwbzQtAiALJszHp0JtsvGm/fCVMaqZfrh804VhLnZ2dolsJshmGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"9f561e8a9799c2c317c596583bcaaa52a0d27663","gitHead":"1093e17eedea7617356af6a7dc2deccce512ea12","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.10.tgz_1496145124950_0.45283707045018673","host":"s3://npm-registry-packages"}},"3.0.11":{"name":"stylis","version":"3.0.11","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.11","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"c9c69c491894fcf27674f8e2861017da0d1854a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.11.tgz","integrity":"sha512-a1Y1w46vQ+ypCO2WLO9UpH1nm9459frF+exF32Ui+7alJfxTmXPJfEWnIx9J0cT/jOBOl0wEG74nic3gHIuLUw==","signatures":[{"sig":"MEUCIEm76FjH2R9PVxIe5q/R8svoZ/JF2tslIrl5UabkqSuEAiEAiGOEKoLBXdRvYVPMtqHQufxF1NDCBFeCt1ue5Pcw7Nk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"c9c69c491894fcf27674f8e2861017da0d1854a4","gitHead":"cdb2a57b538712a8b6090905055c145bb9d6ac74","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.11.tgz_1496204991954_0.10731595172546804","host":"s3://npm-registry-packages"}},"3.0.12":{"name":"stylis","version":"3.0.12","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.12","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"075b96a120b913e399e8bd623ae32ec523026c6b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.12.tgz","integrity":"sha512-wzzsZ1eBpQ0KUCKaUfgx1k2SZHBzfwUCwHA70zwBTUJLIoAoYGP5x1G+4n6uvhM8F2MOrfDCt1pg/5TIko5qGg==","signatures":[{"sig":"MEQCIACBcJoJtmOILkL48EXN4c4BmeA2yhmToEpIU0OgIwltAiAeDi3f75pa7AHQp2pCwjTEMyGYge0eNIl1TMEGw4hf5g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"075b96a120b913e399e8bd623ae32ec523026c6b","gitHead":"3148b2ad09405cddd632f2c17f2ff1ede7202b11","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.12.tgz_1496251633248_0.5544492758344859","host":"s3://npm-registry-packages"}},"3.0.13":{"name":"stylis","version":"3.0.13","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.13","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"990ba3273f5a9b982d7f54b7af7cf3a7c387c661","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.13.tgz","integrity":"sha512-iCp4i1AckiHHvenqbZWvmsCkd3y3vKkH6CLqWgahv1tMYF48DzXUVk5eapJIq2GJyDnb53cmjr1R/3E+CgUeMA==","signatures":[{"sig":"MEUCIQDUIMRs5IUqAkEoskHZ09rguGWTTtSP79GgseOEjnwSLwIgTNKjntl3ALCaZGYalRFJhIhEcrmCm/GuqM0UNLuROhY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"990ba3273f5a9b982d7f54b7af7cf3a7c387c661","gitHead":"36b9d358e7a263e8632a1630f8a44d7ae984f366","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.13.tgz_1496364630000_0.7524070998188108","host":"s3://npm-registry-packages"}},"3.0.14":{"name":"stylis","version":"3.0.14","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.14","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"bd81831943a9614f6d76616d06d12677e8250553","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.14.tgz","integrity":"sha512-JHOJyOjutYEhfbhXg7I/0ZA+tX0Hwyza9rdJna6XjHeSvzATYp/uUooJxocuFHVfvxJ7uqXLQvBzhBIZNZuvuQ==","signatures":[{"sig":"MEUCIQCRXSfw+Eq+vmWrmabWsUSZ8wFTaniduQ6tGQxdByPmowIgamXxln5r+n94wSLMlEFPP3xKPgvdH03cN5Oylb/eyTQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"bd81831943a9614f6d76616d06d12677e8250553","gitHead":"66d08eafadd5125d535b12b9ed8d16f53ac7f903","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.14.tgz_1496398749984_0.2658739360049367","host":"s3://npm-registry-packages"}},"3.0.15":{"name":"stylis","version":"3.0.15","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.15","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"e0f9bf403048511043b479d39422c835141e0fbb","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.15.tgz","integrity":"sha512-SFOF/pBXHo7XwaRSuYqb+CL1+V/r+DXKKO21kqVb9YQHpXgOfj9aRy8xuH3XQcdIRwCY5CQpss9pj4PQhsRMdg==","signatures":[{"sig":"MEQCICYHl9xwHrPUMVanGTIIBmFcy+EkDhPta9ZzXy9gMRFYAiAZjwHWd1jeN1pyQgVTft8GDWwVzFJuK1GtV4PPccZHag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"e0f9bf403048511043b479d39422c835141e0fbb","gitHead":"97114697d994a68a7a2702036698789ee25259a8","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.15.tgz_1496413274271_0.35770870046690106","host":"s3://npm-registry-packages"}},"3.0.16":{"name":"stylis","version":"3.0.16","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.16","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"1059fa270934bc8bffbf06ac37418f0fb479ac04","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.16.tgz","integrity":"sha512-I6an2/zgdjGKHSpLM6OPK9eLJzkeNmtrcjGYrKQ9o23Cw4bZh/7/Qr0+iATAyg71PWBpY27GcF/l2qWcJ+PLjQ==","signatures":[{"sig":"MEYCIQDFt4v3kcDCdqpJ0ePbNx7AiHTW1bhMyLG6hbs+YkWY0gIhAI4msJJoF8AfTErGffuhj5WAN00v0ngDjPSpEx17LFFu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"1059fa270934bc8bffbf06ac37418f0fb479ac04","gitHead":"faf62badf40665e6d617df511d1297e589476aaa","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.16.tgz_1496655617080_0.8066463279537857","host":"s3://npm-registry-packages"}},"3.0.17":{"name":"stylis","version":"3.0.17","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.17","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"978643aed384f2138c54af9c02adeb61f1aa75f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.17.tgz","integrity":"sha512-qn4YS1FYJN+vXsOP+1sCTfs+iZu45pmw2QLBWEzCzW9JrN6CKP0rZVQ0q5J4v2OKw8AUhvCpN6yyLj9iaEDZaA==","signatures":[{"sig":"MEYCIQCPPG+/Mp4vbiSO/fp2M/lpWQEVaIxY8G7Zcj7cNqdz8wIhALl38KhijLKlSzi4PGzdeH8aigczd6bIRd/aWfOdTZZn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js"],"types":"dio.d.ts","_shasum":"978643aed384f2138c54af9c02adeb61f1aa75f6","gitHead":"7d5bb7b391b9754c55cdea5297c9a3108a8d00a5","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.17.tgz_1496783709487_0.16325099463574588","host":"s3://npm-registry-packages"}},"3.0.18":{"name":"stylis","version":"3.0.18","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.18","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"1faec02778430ac1d2494de8ae212ba6acdab852","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.18.tgz","integrity":"sha512-zVN8ZHPpt5O7VHsYizjLRbmgw1XxoTxmgyGXIFKAt2/kgNCCghUdmRtdg0fBelKim1aacTGQ1O0xVlHcTd8Irg==","signatures":[{"sig":"MEYCIQC5OqDPgoQlMyXCyzv03ZK7mIxO6cOk5LPs2J2jtPvJCAIhAKCvhvd53uLQ9vmfMSEbnmWIKn3u8U485KI37mqf2FeK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"1faec02778430ac1d2494de8ae212ba6acdab852","gitHead":"1cef65daa00d6098678dde06d032301c30b1392f","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.18.tgz_1496803781043_0.8648126581683755","host":"s3://npm-registry-packages"}},"3.0.19":{"name":"stylis","version":"3.0.19","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.0.19","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"36013520bb19c209d374c629e97f190e8797a287","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.0.19.tgz","integrity":"sha512-V7b+/trBXpf1dgS95Ra9qZFJqP13gJHLLL3SN2X5lmA5OqXoVyrYKBSFHNedNrcIlnRacMGskOXeNWOWpav83A==","signatures":[{"sig":"MEQCIBBl8/ht53YKBPUa0Z4YlXjPzl5Y9fG1vzMsAFsjN4W/AiB7OHrRptawBxFJNmbArdn2o2l735D6415aP91K06zD2Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"36013520bb19c209d374c629e97f190e8797a287","gitHead":"d691039aa6bb07d8a033a0c037cdfc68d5f93886","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.0.19.tgz_1496846132803_0.6188894412480295","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"stylis","version":"3.1.0","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"5202f89c765a9fc6cdb2ff4aa7fb2f7a0aa78d10","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.0.tgz","integrity":"sha512-+cbOSygXfCpSL+U7zFOy0Ap4rblxXWgtdlzmxHObjENtSucD9BdyyANBCRHc6tb5NPlaPhnBmAmfO7gx/9uOKQ==","signatures":[{"sig":"MEQCICLaCdzR1wSkYjmExFrqX5XGWqCUNKmsyvueg+rveAOAAiBw1WH3QTJ86DRX5yLO84g7sPvs0TplZ/tTPvS7qsQawQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"5202f89c765a9fc6cdb2ff4aa7fb2f7a0aa78d10","gitHead":"43844ced00ceae7f9de1b35145b33cf1d0af7dd2","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.0.tgz_1496873008699_0.572858618106693","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"stylis","version":"3.1.1","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"28a365afd18562d7bbf74eea9ff5658d2a96377e","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.1.tgz","integrity":"sha512-3MPSfl/Q1SxjTQYGgCnD7sp97dUfS/Q9UC8dfXKYGo1GYDSlh201xano2ehJ88GQslkdWBKjH5xDR0CeRH7HZw==","signatures":[{"sig":"MEQCIHyjLsTyJjMZDwzhGuArXIeMQ6R0Xvr/6UKk8uQDeKlLAiA1Vbizn6FPJAuxn72skFndBJY1qH0euw9+oC3IwsNGaw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"28a365afd18562d7bbf74eea9ff5658d2a96377e","gitHead":"b76003b52c89fa5720d618f5b616befa32132f67","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.1.tgz_1496874678778_0.05250017065554857","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"stylis","version":"3.1.2","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"23179ccefdfeda8269d2fa77d5bc65957955fc9e","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.2.tgz","integrity":"sha512-7vrYfWuB+x0PKr6jfarxTz25XY4kVcwwOFRwo9qb0RoqY7PJQuQW0Zr0Kk8px8K1fVXj/4TYvSqh1VHBTRKXLw==","signatures":[{"sig":"MEQCIBDOGqDzYVy0d/P5M6DSSUodAckk4fm/VffW/dOPmawtAiAUAA9p625XO8buEqeHgljw9osUbef20PMqEThwpuLE+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"23179ccefdfeda8269d2fa77d5bc65957955fc9e","gitHead":"e218cc25d546a8c57efe94506a8226807dfa823a","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.2.tgz_1496890830368_0.15011921525001526","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"stylis","version":"3.1.3","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"33d077a937f7297b02f7d1036c7b15c2fb82ddcb","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.3.tgz","integrity":"sha512-RsDDtXljNfHNbZlQC8oJDmasWs4MV9/88O02rFsK1e3cnQjbm3nd70zuBKBFf4m63rUzR62tyUqOfFG+kTWK0A==","signatures":[{"sig":"MEUCIQC6OQ2Per74hLfyD5OnoeX45UHGGbnkHv9rYn32g7ydlgIgCQ35PwlwtR2u+yIJzJ8OS10wypbsw7vjwLTTSQUBR4E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"33d077a937f7297b02f7d1036c7b15c2fb82ddcb","gitHead":"654df4e468b33f5a1d9844867065e568f803e4c6","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.3.tgz_1496952195103_0.5028264054562896","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"stylis","version":"3.1.4","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"cade55ef3f8bee350cec7350cd4a76c9308bcda3","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.4.tgz","integrity":"sha512-ci0qtvfnb+FvfAI4AIKSTAdPYZTHmAVC+gfQS/ns56N8HHe+4WO1GI6bAmp7BxBTsSiPx9cNO4tsavrTq+ixNw==","signatures":[{"sig":"MEYCIQC2i0ncIZtUkimYSBVfbouszBYbTWFaMflBJTmWGHslEwIhAKawGRYksEmXFhidRfqMDDdvdTG7v9OhiVh7/1zKsJAc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"cade55ef3f8bee350cec7350cd4a76c9308bcda3","gitHead":"d1b55e89b3c7708a92aa70fbac9768258c670827","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.4.tgz_1496956477921_0.01679896004498005","host":"s3://npm-registry-packages"}},"3.1.5":{"name":"stylis","version":"3.1.5","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"c585186286aaa79856c9ac62bbb38113923edda3","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.5.tgz","integrity":"sha512-D+d4gA3GjCB466DUaLz+FrOuVT0W7OZXzjBaJX37+ZCqFwoL0UybxnC1y/u/TuOdybc3lrIA1wrYuKGJquWpAA==","signatures":[{"sig":"MEYCIQDCxzP2Sf7hJigUby1pDqie5fZhCPHhosywfinn9+5SiQIhANKJFr4ZR+ECTetFOU9+ICEBKl1Ecd1nBGv1q5tav9PA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"c585186286aaa79856c9ac62bbb38113923edda3","gitHead":"fb3b83b23dde0664781280df32e3815368d3ef5f","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.5.tgz_1497026657938_0.9699242576025426","host":"s3://npm-registry-packages"}},"3.1.6":{"name":"stylis","version":"3.1.6","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"2c7dc68b787e1d3be17fa6fdcae578076567f864","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.6.tgz","integrity":"sha512-J67DAXgczbwjxLY2PRn35UfyHZmCRruZ7365r226NSeC6iLJl/cWlxILEQ/jtwJJV9QUgVGRMWqf4hKj1krRgQ==","signatures":[{"sig":"MEUCIQD1cwr8VXqPi8nXCuwnkr7/4q1HjXZEialVh+2hZ8c/HgIgIMmmLEK9e/CK4G8feO3x9buU+GHwd5pnXbMFF74nrNM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"2c7dc68b787e1d3be17fa6fdcae578076567f864","gitHead":"297de12664bc96253adbcb54e6e36e789a6e5d1b","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.6.tgz_1497222910593_0.8676560637541115","host":"s3://npm-registry-packages"}},"3.1.7":{"name":"stylis","version":"3.1.7","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"aba33dc3495784ecd768aed8b638a429a2ad2069","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.7.tgz","integrity":"sha512-UZyoQZEyGgat4RTRQ05FNSntb4AoM2PEswAN48Xib43wDncJpFAm9Wzr2FdKP9m4NB8ps4Fxvz4FBX+iqxu5qg==","signatures":[{"sig":"MEUCIQCmNUAjv0S1r8s5SwEK00g990G/jKNhPHaG0lMVxYlibAIgMq5OCGuLE5XUYG442/JD/bXCPCT/l6/6VI8s9Indtog=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"aba33dc3495784ecd768aed8b638a429a2ad2069","gitHead":"ab5a73aa7573ab3a87d70bfa756d588e8a99a545","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.7.tgz_1497282132076_0.043023079400882125","host":"s3://npm-registry-packages"}},"3.1.8":{"name":"stylis","version":"3.1.8","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"59e643861f7e67f0c9d157d7dfa8cf25a752e836","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.8.tgz","integrity":"sha512-WmgQOYYNcTQYrfWSvR4sqj4aufEqIdDhh/wsWlReW7iySI3c+iYfZJZrsAEIU5gDLvxICwhO//S5NINcXRVYkg==","signatures":[{"sig":"MEYCIQCr92espOzoTMH/WTvGC98egwCgDtmncl70b3Bu8O1JJQIhAM+RlLwIIEsYLZxtTSi8uMXJS6p7mD3JjH0juHPLTO0k","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"59e643861f7e67f0c9d157d7dfa8cf25a752e836","gitHead":"f8649b78b059f852e73c0b47bb8ee961ab01963c","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.8.tgz_1497634152320_0.06602034741081297","host":"s3://npm-registry-packages"}},"3.1.9":{"name":"stylis","version":"3.1.9","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.1.9","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"638370451f980437f57c59e58d2e296be29fafb7","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.1.9.tgz","integrity":"sha512-T5tCLlw9+iuuFvfbY7FrQsHhn8XmMpXjs2+KRKk2ledjimCzoCDH1CPbz65hefxa1qcp+yOu0dRzXm+JXMO4ZA==","signatures":[{"sig":"MEYCIQCC4PDHYxE4VqWCD03DUMimVbuCDFXsNb5CEQiJZLFS5AIhAPnNV6kKIH0Cn49y8oLRECNkv79WIGNtJN06My3fMN+E","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"638370451f980437f57c59e58d2e296be29fafb7","gitHead":"969abefa926e84db18fc89cdf9f74a2b0dcdcaae","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.1.9.tgz_1497926641464_0.7528201104141772","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"stylis","version":"3.2.0","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"13a84d4c44d9c31f7ff231626a53135daa87c440","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.0.tgz","integrity":"sha512-ko+tnoeWjR7fcefTfHIcPF8icl2HGNxFYCkTu4ACfnlcOM5t/o4pwxXW7eRUp+UPMsCWgyX+1jLLLNB65zmVDA==","signatures":[{"sig":"MEQCIFp2RfnCKI8JCg7uYA7SPk+SIKSScmJBrFpOTlYWBlMOAiB4yUzpEE5nyu3QvhBdSt3rkkZ7beIAHDQhyP8UM40TJA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"13a84d4c44d9c31f7ff231626a53135daa87c440","gitHead":"9be82fcacaf5b7da3b664b0efa7072476e3ed47d","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.0.tgz_1498825721962_0.12985034473240376","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"stylis","version":"3.2.1","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"7a88988f8ccb5c238be3cc3cec173735cc594740","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.1.tgz","integrity":"sha512-+jHTXETznuzatmi5IJdV/4X4M8VzswZjEYbxFz+Gv4D2bKbJc8XL5mgDu5LAPA2eMZUfT0OcuiZ/EYPmoyRv4g==","signatures":[{"sig":"MEQCIEImnvY02FlHgGgDsHMzGSlq/SoLir1PClmUeXVPuuGuAiATNCxbWIh97xzxoHzZprUEWSOBe1pnyPyXguc6SGHZwA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"7a88988f8ccb5c238be3cc3cec173735cc594740","gitHead":"1186d6eab55b5798a135aae5291a91ed92ed15ea","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.1.tgz_1498935192582_0.46919774962589145","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"stylis","version":"3.2.2","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"9be4b4e18d9969a7cee9d4439e24437e5bb7a764","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.2.tgz","integrity":"sha512-kKrNpn66fb6EIg/YaBemo8fxJOKyCjTj8nD4NSX6Fx7LhxLSn8nutYq++j15wHHbU/b/81mkEh0v6+6qpYxKdA==","signatures":[{"sig":"MEUCIQCLv+lwV4CYGYxevmA5vFFSuZvdG6B/rJGGRgeY+wNRSQIgBKwThalgwiQ8sCvavlc+ZFAQ7N3SponLmN00qlNFWFk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"9be4b4e18d9969a7cee9d4439e24437e5bb7a764","gitHead":"2711805e28a91997c55c31d60b0e15df1bfd1700","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.2.tgz_1499153389512_0.04334656987339258","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"stylis","version":"3.2.3","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"fed751d792af3f48a247769f55aca05c1a100a09","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.3.tgz","integrity":"sha512-lDrPbtV+qSldsp8e+qI/EE2b8i4Thy8paLCvkcoEJvXYO46G8Fu8sQ0NaNP7+KfFMHV/pJfswHaE2o8O3FpBeg==","signatures":[{"sig":"MEUCICflu/P1xQgSMuwGs0Nfhp3eR/pbl0BT5T76hikWQIO0AiEAr/oLvZTqLi0nMfguAWOdkgESj9AHUv1akny7h6wr3Z4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"fed751d792af3f48a247769f55aca05c1a100a09","gitHead":"ef1d8b5d6e144a9018cde857a1f78d6f259ae986","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.3.tgz_1499387774465_0.12500324030406773","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"stylis","version":"3.2.4","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"32523f4c6089c581c051f64881c1aa30c40479d9","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.4.tgz","integrity":"sha512-7osZQRUW1LPY5fTx6JL4U9nhZIkyMlOhX8Jhu3MDzNb9Jvodi0maeTljDEZFMfIy4mg2eWgx57Y3hueczmvMFA==","signatures":[{"sig":"MEYCIQDGrVvpUVUvClThsgsPqLjFxDFhamWd7Xerlz8bPpORKwIhAJw/6VIG3oCa4jkfVNGa8QLfnaVYBlr3en/tur/EBnG5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"32523f4c6089c581c051f64881c1aa30c40479d9","gitHead":"7cf7b522b471ccb33e325f6eb85cbab9d587e7f2","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.4.tgz_1500300552021_0.7378355970140547","host":"s3://npm-registry-packages"}},"3.2.5":{"name":"stylis","version":"3.2.5","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"132087969b2c9e2c71504eaed24d3f1987bb5d0f","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.5.tgz","integrity":"sha512-v2lSdrhXdGXYR3eSB1VVoEq/6UyrTTzQ93gxXlLEV/Mmligyf407mqSsfgkxgYNgCOh8BYEPu3TrvhkFq73uJA==","signatures":[{"sig":"MEYCIQCfOXlQN4Zrr+R34xo7sGAde0bjKmF3EUdpouihb48LZgIhAOLRgOAafOvwbkghPk8G6/uvHLQC3kpmUrSuA8hVwBfp","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"132087969b2c9e2c71504eaed24d3f1987bb5d0f","gitHead":"b2afa334e269c7174a5c2e8a35839001aba13ace","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.5.tgz_1500452126746_0.256175197660923","host":"s3://npm-registry-packages"}},"3.2.6":{"name":"stylis","version":"3.2.6","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"6291df64aae62e9f537ab24b7d8a62b2428a34e9","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.6.tgz","integrity":"sha512-gxYGa6Uh79CrouRAmL2H2Kymj/NzGZzztj6TE1vDEFzJyk7LQsDtr1Yq6oXDgZXFOFpHjruDI5T8jrXgqrHL2g==","signatures":[{"sig":"MEYCIQCyTZLDcBM4eZtsb2mBqYfcPl2DLg2bNtlJfxn4QCH4qQIhAKkgPH1u7pnjzyY5odD8es5RIY95tauHsb4H4owQXXvy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"6291df64aae62e9f537ab24b7d8a62b2428a34e9","gitHead":"1520c0f5b3a60e5128c6684eef96144a9a62622b","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.6.tgz_1500484108234_0.6019314397126436","host":"s3://npm-registry-packages"}},"3.2.7":{"name":"stylis","version":"3.2.7","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"35e5a28e8d0f435f81aa10ff9971c4febabd9ff5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.7.tgz","integrity":"sha512-Eqo6GcGZNOoiZnmjeSEt7GqtWjiWQJG3IIQmWUs9iR/7fVfkPj29fzF3OPgqMBznBWJNjKRV0LO8uriIebRj7w==","signatures":[{"sig":"MEUCIQCgeuh9kRzDn+N5IXqe7aJcIqjuJGM/lAsBzY4H0eNkFwIgAUzO8TzPLNGtvB9ueqCM/WgLzgYIYriYxCxnEKgz0p0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"35e5a28e8d0f435f81aa10ff9971c4febabd9ff5","gitHead":"a38513b64dbfa7ef58f0c3f9485479dc887c6a68","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.7.tgz_1500724007326_0.25253619928844273","host":"s3://npm-registry-packages"}},"3.2.8":{"name":"stylis","version":"3.2.8","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"9b23a3e06597f7944a3d9ae880d5796248b8784f","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.8.tgz","integrity":"sha512-7QimFPoOgpMMnUypomMvlidn1uD9Nl6MgyjmqSYS166pqzzUkYBKCxcnblZCXoPzgpc4fs6+q0uqheMyGI0YNw==","signatures":[{"sig":"MEUCIQCPvVPGbscSvWAMlIiKIjbqibHSvtcH6gQBP+u5PXO8XQIgW0ETzutZFcP9uBGRqU31iSeDL7HPOZl/uY5PW/Xjeo8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"9b23a3e06597f7944a3d9ae880d5796248b8784f","gitHead":"2bd4555e3c47d8af042f37283e045ff3a30cc4e5","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.8.tgz_1500914811038_0.4173732721246779","host":"s3://npm-registry-packages"}},"3.2.9":{"name":"stylis","version":"3.2.9","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.9","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"95c23da02d4389a2c5bab544a84abb3c13cc5d71","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.9.tgz","integrity":"sha512-Wc8+eCUNXRwPHTaDiRRvdupE0qcULwpkfOEN4bD2Wzrga0SnbVcVICDnPX/G8dcDx0QlsB+U4zIvzqDuf4yBQw==","signatures":[{"sig":"MEYCIQCJjQSQztjCC87ydjag/BH5of1nXHo7yXxxCpWThySaJwIhAJoHoTgzqxiE7qr0dduFWBM87T85nbaEQsaMCDeAp2Vn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"95c23da02d4389a2c5bab544a84abb3c13cc5d71","gitHead":"6cf884f653884218c635bf54d7c330e82990d4b1","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.9.tgz_1503243036118_0.838270849082619","host":"s3://npm-registry-packages"}},"3.2.10":{"name":"stylis","version":"3.2.10","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.10","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"564614acfbc5460f899b7e1b58fc6a947e49fdb1","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.10.tgz","integrity":"sha512-6B51yGSluc5GMi6VApmYnlzjyX323n2b34I3bkXvAfBBBw2xCnCy11kRRKDIPLD3n3QaWNGMEhwolSiNmLnRGw==","signatures":[{"sig":"MEUCIQCCr57xefE+dSyNQJEWGMJ/NvbZ1fIiAEQhCD84P45kpQIgBq5G9WM1PYOzwtDzbU7ATAjScDWbR9SWL2NTtuuOQKQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"564614acfbc5460f899b7e1b58fc6a947e49fdb1","gitHead":"60b7aae1e54369359a56d51b039c3946b507db8f","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.10.tgz_1503507561671_0.2528864503838122","host":"s3://npm-registry-packages"}},"3.2.11":{"name":"stylis","version":"3.2.11","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.11","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"8e9b99ed5e3b9b1b959c455f004c6effb7cf7331","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.11.tgz","integrity":"sha512-/Ox5mZ3bFd6fYheKLGFQxgafF3Co58KszG1sXk5lOb+b52PZ+aQgLtoMJiP+rzEDzVSADoM8LlLi+/2pEQ8ubg==","signatures":[{"sig":"MEUCIHgvKNqw22K6GiotAPPcOY1CspMQk6EsMYfB8zbZHC3pAiEAhS1MgVWUew9cW8kCh0l/+9QPHd1AhmnuadP5nAjgDbw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"8e9b99ed5e3b9b1b959c455f004c6effb7cf7331","gitHead":"4566477284a82baff3ea1cafac21547d65da2b8a","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.11.tgz_1503547826661_0.6305832129437476","host":"s3://npm-registry-packages"}},"3.2.12":{"name":"stylis","version":"3.2.12","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.12","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"cc8ab28ee9e76afd4bfa2f4a97354871b03b44e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.12.tgz","integrity":"sha512-sO9BZAVCciGvtF8dnsXJfHQEMzQKJlQl9HHPM8YHZlfdRRDJMB1eRlg5JcOxvchMVD4HkP5DcFbiVCx+37vsdA==","signatures":[{"sig":"MEYCIQC3JQYvXWgK39K5StoFLvgchWbhasZRLN8/zIU87eHVlwIhAO04xZXWo7bVg8TBVqS6pqIhWvaVLksRv+NNTGlygbMy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"cc8ab28ee9e76afd4bfa2f4a97354871b03b44e1","gitHead":"2f0395ad8c2104bf7d54069dad084a0894b2aadf","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.12.tgz_1503814322849_0.6322700011078268","host":"s3://npm-registry-packages"}},"3.2.13":{"name":"stylis","version":"3.2.13","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.13","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"1a5d2ff5ab09f362d6d8065186d526740e9f4f24","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.13.tgz","integrity":"sha512-6nN6qQam/angqKqlamaByY6+9GI6Jv/t7Gdmovq2K3t9jcM3pD88vtkfczBwYnrzCAygjpiFsg/R936b7Mvedw==","signatures":[{"sig":"MEYCIQCbpLYFse6ZwhbN/ZxQNuWZT/AdcspTDGViB9ND4ru6SAIhAKBiEJ0IJvpddZikioZ7zt5l1XsYTwVGOED96Fk1whHO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"1a5d2ff5ab09f362d6d8065186d526740e9f4f24","gitHead":"241e571d6bbba15deab8f68a368a2d89bc161279","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.13.tgz_1503818205433_0.5203952139709145","host":"s3://npm-registry-packages"}},"3.2.14":{"name":"stylis","version":"3.2.14","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.14","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"30700e0507b7a804c03d7e2c28d8ee865697fb50","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.14.tgz","integrity":"sha512-yhlsZ5r9Dd9Q0pDRlGP3DMmsnwmkNUqAe3FwZTJg1JsvJX0PnRx41OSo2xIkJ87R6z49G+iBylvsrOgZqIqSPw==","signatures":[{"sig":"MEUCIQDrC6wLIiCBwhafbqWp2kBY0wGiyQLXTqTT/BVboOwMugIgZhVJl2TwS6oSwoiq+2xRd3X/UG/Ru2gKVNUU4+OOIyk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"30700e0507b7a804c03d7e2c28d8ee865697fb50","gitHead":"b090734235b0b47d699232d61064890b850e3cc4","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.14.tgz_1504080948097_0.3134009609930217","host":"s3://npm-registry-packages"}},"3.2.15":{"name":"stylis","version":"3.2.15","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.15","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"1800f829fdf3cf0d647ae6cdb5fb70a1fd81c3e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.15.tgz","integrity":"sha512-v5vAB+woMV4g0EFdKGn+B5YxuTJ6k/RNs8cnnVTK4PztJteCyDV6lBoJfkecdntKv5YSZYJMtWD5mBD/oZ0NUw==","signatures":[{"sig":"MEYCIQD/9kbroo/2gy0jdJ31RTaTO70CHlW7AZ4BjCm/LXYYfgIhALkOOV7w1PAbC4kRdgSOsevC8HmA8W7w8o7EURRv9uPQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"1800f829fdf3cf0d647ae6cdb5fb70a1fd81c3e2","gitHead":"b54c4abf1ec99976b3b96192f3d0cd2d99867153","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.15.tgz_1504176767160_0.6158538335002959","host":"s3://npm-registry-packages"}},"3.2.16":{"name":"stylis","version":"3.2.16","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.16","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"f336893e55f9f13299b39c01af3b10546cd7507a","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.16.tgz","integrity":"sha512-A/JZY0c6ohHcC2FRWXs6S/toIRxOwb8fCw0NqZZa+Lhd0WtnJRbFLHAXgTZi7VWtHRBpQvwvOzlEMtix8v3vIQ==","signatures":[{"sig":"MEUCIQDtlMkooM2TfNtoX33rxQhwLbBict3ihbkwJDbkNKSLGQIgX5dwRWZb5148KexAaT/B35CNuxXJjKyBBbwntBjtu1E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","_from":".","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","_shasum":"f336893e55f9f13299b39c01af3b10546cd7507a","gitHead":"df9f64c9e4e2ccd2d9f461e5938fa5367a169781","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"3.10.9","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.16.tgz_1504867000756_0.8437688616104424","host":"s3://npm-registry-packages"}},"3.2.17":{"name":"stylis","version":"3.2.17","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.17","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"54950f8726b0237283e453c031c92f9adb53610b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.17.tgz","integrity":"sha512-0+nbFb8N2AUJfqe7cEODsOhyBiAfUM0MeCPcthUJHtco0zCbPufNx1vp/rEyBEgWVGmJB96dBYlLIOSDn+uw2w==","signatures":[{"sig":"MEYCIQC7mLFrtmhgfafKVAPVcZEXzdwIn3KiBUz4wHKlzuVr3wIhAJQDoZeIha6aJjfzaoe1mFZ3UW0ZitZ9CQY0n6673iuW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","gitHead":"5c2f6d76bb0295c0d7d1d08a224637cb26fe2a75","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.4.2","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.17.tgz_1505993043683_0.6818210135679692","host":"s3://npm-registry-packages"}},"3.2.18":{"name":"stylis","version":"3.2.18","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.18","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"211661f13b636e9e451456a1aadcec31248edf0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.18.tgz","integrity":"sha512-Zd5jC5rqBLp0xoq/m7r2tYsJNIIikN6mTbfrD7qfvwOzbUOk16nI7U/rrJ/dkLiVnSMGxGcsW5R4DQhW8kt0eA==","signatures":[{"sig":"MEYCIQDM1lMmYrmr6k12PvfVwgufp1LADYmszx4WIszs//bN8AIhAJ5L+Rhc5vfEsjuaM+xEq7OqDWfCyPt9qarjueLtmFPN","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","gitHead":"07782455f5e1a4c784c62b5181ce2888f918fbcc","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.4.2","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.18.tgz_1506336799274_0.01577394246123731","host":"s3://npm-registry-packages"}},"3.2.19":{"name":"stylis","version":"3.2.19","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.19","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"3bfeff425e12935cde5faed4a39de06b1aeb5acb","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.19.tgz","integrity":"sha512-LF3Eq5tobRuU+hl0Q4feXYeDuvSFZT3nFgLSfhkqnmM9wIt7RHB3nG+6cDNVdNaICkwWiwaLV/uYcEjEVj9KcQ==","signatures":[{"sig":"MEUCIHmGNoc2wc01U20LoSK465JxjN5Y7jgJfDzeBx+eFgZQAiEA7MpOiWMJf4lYI6ol4xczTFUoKcJN2WyIuykaEwl7cF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","gitHead":"dcfcd8c0b61a1a98a72df753c24adcff330b3795","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.4.2","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"7.1.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.19.tgz_1506635155403_0.7333720186725259","host":"s3://npm-registry-packages"}},"3.2.20":{"name":"stylis","version":"3.2.20","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.2.20","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"f4511b1ef825442cd7d965da30f37084151e9f7b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.2.20.tgz","integrity":"sha512-RMQXTf1xyk7saXmCR7Ant8xsQqjigp9Qflmo8/rGyc+h4OygYcjKA29H7+a0doGt8mE43DuRk5bkewnidMS3+g==","signatures":[{"sig":"MEQCICy2sGROgIqNiMIyRiphFtxZL1FSW8QGRcPBobwNg3OIAiBuCGxQOtg8MRDQsY2rY6b9Q4MBJ2WDYbbItXgi9REBlw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"2107c5c657efaf2ae3d13c72d4b3c77307d9e1e1","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.3.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.2.20.tgz_1507301227953_0.8128504196647555","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"stylis","version":"3.3.0","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.3.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"57cb083dd67c46d6139565bab1d675647a3534f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.3.0.tgz","integrity":"sha512-60bogSrEs2TqVtdmKX4bUxE56q/QinvpXaF9TsN3iq5GZr6FBWUdJ3gtryA0U88rPtIxSZdaJp+5quCXMEcU0A==","signatures":[{"sig":"MEQCIEGQbLFjNulnDpoXSGvjCYvS+MnU8xSZO0KAUL0dXFSqAiB4Imkisl/gc3Gt/57YTksAD490HhMYRtOPw6EQRG2w3g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"fe60e6aa92b4361d674c2aac9a338dba5de8abf6","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.3.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.3.0.tgz_1507425901495_0.8846885168459266","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"stylis","version":"3.3.1","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.3.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"61dd88335a9a8fdcd9b46cb2db0d909d5e14b226","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.3.1.tgz","integrity":"sha512-H+tFC7wEZFhpQrFJHCw/flTcGI9rQpp9R7RgAq183L6cKRw/bsE3km2ZOCgWtdSSgYFBewcaBSl0WMtu6ykMaw==","signatures":[{"sig":"MEYCIQDyq6fVGNdrwNHqHoIjxREBIn462LAib85h4UoKJ/KdXwIhAJS4nMvJ1xyyc2kRchyjhBpz0Ta9KuC80FUmCqhUmXSR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"7038c372a1fd14c6908fe7281098b8b4170b43a1","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.3.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.3.1.tgz_1507581673525_0.4802878014743328","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"stylis","version":"3.3.2","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.3.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"95ef285836e98243f8b8f64a9a72706ea6c893ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.3.2.tgz","integrity":"sha512-TzAeNFejhFhVzKHLUx+hjcR/HwiiTfC7DKiSS9WP1lvvUxp+bAyvGchJv9M1/jiXDTRo5aNbVH6a0i5RfpvdyA==","signatures":[{"sig":"MEYCIQCvKYdzq3S0kmwosLZUw+MSJU5Ikraqps99hHrvT0Rl3wIhAMv03Rw9hbh/0E7dxvoYtbTlabgsf/EH3bfK7f6nYYJv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"2ac0625e06233710612f9cee12bae0f4b524360b","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.3.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.3.2.tgz_1507741616707_0.039359842892736197","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"stylis","version":"3.4.0","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"55c6530ebceeca5976d54fb4adc67578afee828d","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.0.tgz","integrity":"sha512-RGVodOGadOR9RzRcZ+zzXXWMfuSmrQubeYtnzJZqq3jXIEH8zZ6nRRlOccn0RRsd19yUfYqtlvrq+SkNwfUH3A==","signatures":[{"sig":"MEQCIHDpy1b0XF4TMvEQ6uYFwLkQg8EqekAS6A/a5m5z6vR7AiAPUOnoSGGCkOoxUeWw3DWZ4u7hGgkbDPIIM8Fsegz6Yg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"75378c352e719b4e9952f5a9d5e8a49c88d033a4","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.3.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.0.tgz_1508534246412_0.23841914418153465","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"stylis","version":"3.4.1","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"46896ff4c51fbb58e44815eae5e0b2180a1f1fcb","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.1.tgz","integrity":"sha512-rT2yNvPkMunQCt5i+yNONGHLeSar20SHU8ClGZEYhh1CW8F93blqy8K3v+x4p0f9azu6cMbYYlx0tp5J6/9vDw==","signatures":[{"sig":"MEYCIQDtolqQBqsYu+hJWKry7NVHe5vRkkqkJTG3dLE79N3XzwIhAMAEMjHeQSdrlSzsA48+IKw6AC/xoS99+f5owSLEEiwt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"7001c14e6a2b2e7c6ec4df83a97a28548ddb9951","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.5.1","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.1.tgz_1510374520886_0.6133968855720013","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"stylis","version":"3.4.2","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"336c5e33a673c7111c10fa18f8b9e41e1772bd98","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.2.tgz","integrity":"sha512-w6gj7Gv7iIl4z3KwldFwB+6FrZISxuZ50pFHelOkPXajyT8NHrMosEn0NfhVw2QEm4T+3AyEAFU/04pEUGvUyQ==","signatures":[{"sig":"MEUCIQDVUa8kdXUgUnN0QKcooalsSv80FuWgUFWa0G1hpMI/hQIgIzeg46BucO12BGH9VLO1la+oNyi5putXWnuTa4bN8tU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"c67630d5ffe44ef58ad73196a845efbc782f6cd8","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.5.1","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.2.tgz_1510589512313_0.16451051039621234","host":"s3://npm-registry-packages"}},"3.4.3":{"name":"stylis","version":"3.4.3","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"875bd0db3db37bb6de08f89275fc38ee2e32ee75","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.3.tgz","integrity":"sha512-ScmjgdIRsLVh6haWj5mmmKXW1vjWBdXUDOqDfcEBn5Pfm/TqW9rfVUk2kJUKGL43+7Opot5vWAJxV6oXLbU3yA==","signatures":[{"sig":"MEUCIQCI7M0t91HRxm9VsltUIH1mPtZB/CtzvOQydI7O+q/xYwIgGuzctuJ8Sqx51Cr2NZsrLz3dOA0AtVUyfHgZZ80BLH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"5b4e0c4c1b163d57ba452801f03cacbcab42c2f1","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.5.1","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.3.tgz_1510675437580_0.5418748236261308","host":"s3://npm-registry-packages"}},"3.4.4":{"name":"stylis","version":"3.4.4","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"7dbc7e3ca3c8707b796cd217fe6f8fbe81e78464","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.4.tgz","integrity":"sha512-uXl6YTDHN+bC1IuCWomQ6p+XzL0EpDfVVeZYiThscyc0r5mEQVriwquT7rZ8xO4MY1TaZEZHCtByXHWlICeVqA==","signatures":[{"sig":"MEUCIE6gnBWvrsGNSi+Hd/vKUj+rV274BRcpzlgYfYATi/cqAiEAlVUkwcIB2cvzPSXqD+UqlEyIwOW6Niy2W6IuOCYLg+w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"a201c27fc0dbfaf58a2778580c813de4952870b7","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.5.1","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.4.tgz_1511361070964_0.9629523905459791","host":"s3://npm-registry-packages"}},"3.4.5":{"name":"stylis","version":"3.4.5","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"d7b9595fc18e7b9c8775eca8270a9a1d3e59806e","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.5.tgz","integrity":"sha512-xxfO3FlxEKcNL1gTX4Tb/tyDLOlUcWCQopceIoQe7sBsX81Na83PNba7DFqMqgb9Rn1VjHkSAWdS9uhL/NVo+Q==","signatures":[{"sig":"MEYCIQC34JrsHPGOqjS0O4HA56rcnEsEFxDRBXe3vL654McM6QIhAJKqDFeuhw0Hy1eMhyEVYd9fFRFGF5KuSX8j4dVEvLGc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"4cc510b4069993e3a5d01fe5c241a3a28f094b70","scripts":{"test":"node ./tests"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.5.1","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.5.tgz_1511627726192_0.053303142776712775","host":"s3://npm-registry-packages"}},"3.4.6":{"name":"stylis","version":"3.4.6","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"8bf71db8f3f5793cae351d23328ff7cae45eb1d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.6.tgz","integrity":"sha512-XGYIhufk3XXFHJLfAEHZ5RbNjqYk8mGNaOUjSgeHuJP89IHdYl8NWC+q4Gyzq5VkwOQu7u6re/Bz7JQDVQfjig==","signatures":[{"sig":"MEQCIFt2IyMCmotasnzD21dkhoD5uAoT8eRfRfCKe75cyiFVAiAyxljIoV0QWrQ6p4rz1Ac8qkVq6LM8mRx+n8FY/p5wYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"db0581487376c32343be5344b32bfd4da6db92d6","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.6.tgz_1515374886111_0.7392999685835093","host":"s3://npm-registry-packages"}},"3.4.7":{"name":"stylis","version":"3.4.7","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"4fa57ef276d1ed20aafda4e1a97c35b5b87d59ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.7.tgz","integrity":"sha512-qGoKoJh6Dn80grqh1dpldEScL3jmBexiC1D5aBt8AK/TctAiIJgRVGH8Gpek5bKMqTzlTTOS2CKQhZCeXb7pSg==","signatures":[{"sig":"MEQCIFArkNAUCwktDFzLRQemlKNcqKjM4gid2G9b4ZbM0FHdAiA+s/QS8J41Ve/rPGjrfN5CbtmSpNE7i+8cmybQ6OIBhg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"e761ddd31a3c4047beeb773341c3cdada6db73a6","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.7.tgz_1515401051692_0.20354301552288234","host":"s3://npm-registry-packages"}},"3.4.8":{"name":"stylis","version":"3.4.8","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"94380babbcd4c75726215794ca985b38ec96d1a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.8.tgz","integrity":"sha512-RVhA1z8dOpHP3hr5B//LrGQzh9sz6Merg4GuOJQu8ZxHP9GmR+cDE6LHkL6l76ASY8pfnsWa1ycjZKjSN2NvLA==","signatures":[{"sig":"MEUCIQDU35O7e73mgL8whKitHx8VKSafCsUiojEdwKZ9eOWPpAIgLC8iry+z6UcwXD4TkMiWQxJ6VgCMJyuqtBr+xokNLRU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"107192ed0ee95e28dec8c071fe2886836108be65","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis-3.4.8.tgz_1515669229771_0.6932527946773916","host":"s3://npm-registry-packages"}},"3.4.9":{"name":"stylis","version":"3.4.9","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.9","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"2e1403c06264bde8dbf1eb8fd82b2cfd1c4b31cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.9.tgz","fileCount":8,"integrity":"sha512-ZwSNdu3xKiuHr6gWX90fVSu77xr4mWAoDk/zj3+G7t6Yd0Q67wot8xDVmLkGmp8Qnz/3B+dL3/QIH2cRqu0JUw==","signatures":[{"sig":"MEUCIBZPb3Zgv8djixzDCuTzbe449uUS3YU2h7XgshQtMl05AiEAvBxm8bfIEpi79qbbHPY2nBDK0ngyIDBFK7ejcIwgrV0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":96971},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.min.js.map","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"e04e2abfa1090993dcc9615417e6b5d2fc560f96","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8 --source-map url=stylis.min.js.map","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_hasShrinkwrap":false,"devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis_3.4.9_1518709693959_0.6440985399798858","host":"s3://npm-registry-packages"}},"3.4.10":{"name":"stylis","version":"3.4.10","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.4.10","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"a135cab4b9ff208e327fbb5a6fde3fa991c638ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.4.10.tgz","fileCount":8,"integrity":"sha512-J7CXAfeyhjdgvdQMz2yy0gTDccq0nVmatx6IlX1je1kCqdNgk3npGOzX6qprEd2oHVv7IF5HXO08i6XFQs/JRA==","signatures":[{"sig":"MEYCIQCBk3OYGor9tDrMbt5BTgo9Y4VwLUCOsHY3yyKaBPhsUAIhANhJJcVMn0CVAGr+y3l2NLMwUziAKMi43xJrzITnhu7V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":97514},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.min.js.map","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"36b64fbce66b4080b74499d6acc55aff3dbbf871","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8 --source-map url=stylis.min.js.map","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"8.6.0","_hasShrinkwrap":false,"devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis_3.4.10_1518874700775_0.20757425652888362","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"stylis","version":"3.5.0","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.5.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"016fa239663d77f868fef5b67cf201c4b7c701e1","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.5.0.tgz","fileCount":8,"integrity":"sha512-pP7yXN6dwMzAR29Q0mBrabPCe0/mNO1MSr93bhay+hcZondvMMTpeGyd8nbhYJdyperNT2DRxONQuUGcJr5iPw==","signatures":[{"sig":"MEUCIQD1V/UttUkV3g3A9p3DMCEDy8r/jOTq9NxFl8F5RXKuFQIgAxf7HjsGOZ9W1r+C27+brJi6FEfaIvRaoNdjHU7tSWY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":98409},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.min.js.map","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"fa94aa72ba1b65bfe66c012225e6fccbde736c54","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8 --source-map url=stylis.min.js.map","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"9.7.1","_hasShrinkwrap":false,"devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis_3.5.0_1520534772211_0.16393660434602486","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"stylis","version":"3.5.1","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.5.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"fd341d59f57f9aeb412bc14c9d8a8670b438e03b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.5.1.tgz","fileCount":8,"integrity":"sha512-yM4PyeHuwhIOUHNJxi1/Mbq8kVLv4AkyE7IYLP/LK0lIFcr3tRa2H1iZlBYKIxOlf+/jruBTe8DdKSyQX9w4OA==","signatures":[{"sig":"MEYCIQDDHkZT8K/SUVUOz3DiDbIEoIhpDqVS9vkhCwH9ip0SNgIhALzcxtnyw+T9m3+INyW7nbyRz32KAv69wJIvxnJWEjCJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99457,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbKLeFCRA9TVsSAnZWagAA8GYQAJRWfPOt+RjG2HAFsjdF\nh5QJtAyAvuPwY6b6kovAZFG215psc4M30wnSDQb06nULGKtWMHXkZ0PTmFQb\n0QKFcwQgBv0RpLw5Te7EFaG38fw9siOqfeDzRW0ATHcVVFwO46K9Fw2z5QVz\nGgRZaCgzkRw4PTxU34RwRGXuzRpfFny+HkCKabrqXded+2O/4uhVU8cOcT3P\nstpzAO69iFY9hUNa0DNYsuLFaUlUg7vfW8TVOhWlefRzNxUpY4C97swl0Lnh\ni4q/ZpQcjQqpqcOKMTBf77X3IVOeRqvxy3JJ6SCNybAuSF1eg05pZPWQF9Sq\nGsyR3aEahhGTOFMD1LtnM5YOW+FSA/D2H9yM3dYTdhQ1psdkjZ7U9WnvmmR7\n4e9+E9BIVeqkvGc3tInGgbEVkI12qA1nFRE7GU61K7PAJhCsBG78iBA9kT7V\nd7MR1w2Wb1IMp8uExm/PQMQPd2IMolNdBvyBb0g856A6CKu8bUdzswMAJPCX\n+/mIQdnURt+70D1d1hDJY6lZHea1iCnWlfIWPVLBjxAYv/m/a5+v0l1LaxIr\n994vBbAKatOZs9a4hJqxH4VrvR8KpeHQQvu6DOZrCKP6Wz2C6NkugNWw4wKJ\nhoY7TElKeb90ZT/HsVDn9mW8MjCtSnPe/mkc36X9t4gYDNOah0xdCz36F5SF\nk8mg\r\n=Ol5x\r\n-----END PGP SIGNATURE-----\r\n"},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.min.js.map","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"adb7f0952405bd23fb5a6d78cba68b91c65974bb","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8 --source-map url=stylis.min.js.map","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"9.7.1","_hasShrinkwrap":false,"devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis_3.5.1_1529395076036_0.35039104064003435","host":"s3://npm-registry-packages"}},"3.5.2":{"name":"stylis","version":"3.5.2","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.5.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"46af61bccec772b9ee7ec367d91dff8ccf01f764","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.5.2.tgz","fileCount":8,"integrity":"sha512-S9BNo+2dwMmz4CC7bKHMy3OCIlzUKiq/xYFAh+wHq8mjWB0bEIXWZb5B8MRH651k8fhwo1Zy1Be/948M1kB2/Q==","signatures":[{"sig":"MEUCIQDyltRiDEYSD7u5rGla+Ra9jqSJxSbkiqRnrebXDT3K9QIgYNisRMHgOaMuOcsmdnGjg9SqK+DS85oIgfpA+nTATFg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbR6SUCRA9TVsSAnZWagAAjy4P/RhPfsPlKvc5qJJGDKX0\n34cKgT2uEL0dh97gkSDtEKtK/7JLSYlXD8QWcNSYDtSXzKTCT6gikrCSD/fZ\n3z/Z+oq7WzT5hb5OPUYDUcuGDT3hxZjwXH6vKb+hZ6AwF+f+cWTAdAp8Hu5T\nFz+iv6QP/oljRKlp0R4Zz9BqxCsZNw2gOvOu7GFJoVyGcAkrIycdtPzXB62K\nhfI6hBTB9u2mVuWWuqOzj/eaqB5BHyQ5tu8aRSIMqGBI7VvmTA93hpbkvB1k\n83HkT1htI5QEeFYLtT9BDbggRcN3wZz9PrNAQks7hsU+h9tkIHGwoFJCuDp3\nzLXdxHPC5p69xznmXqHRX0ohb+giFkRVsOHb5QW0HOD4kQizw4Gi1VO4XfuU\npqM6HWPG2ZTULFGTCH92+LeoTnZxqNAiAG22qmVagNl4NY7VMB0yT/PDkt6Q\nbKxwygLbuX/IxiSTI4aNAwrtPtoSSUbc3X/qbY4ijv6Qklf4ZHsp00H7ehRd\nHq5UIiWq5V6j7I7jyprd9whBdxVhNyPhQFi+r1gIHwumI5w8+TL1WVnK/cne\nlzrUY134l4EKCIooYB2YYj99w6fftC7Wk1FrmcWzsNBVs/roPzeIFVPpr+/0\n6Apw64NMT3QYJOtiRBu8r85aVkOl4qRwOCOZOiF1tAYRCvp/JWlqDC60BAkQ\nkJsq\r\n=GhO7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.min.js.map","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"730eaf78a2e2b300fe5fa256ca5e9b0d5c51b17a","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8 --source-map url=stylis.min.js.map","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"9.7.1","_hasShrinkwrap":false,"devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis_3.5.2_1531421844165_0.045628366606041304","host":"s3://npm-registry-packages"}},"3.5.3":{"name":"stylis","version":"3.5.3","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.5.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"99fdc46afba6af4deff570825994181a5e6ce546","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.5.3.tgz","fileCount":8,"integrity":"sha512-TxU0aAscJghF9I3V9q601xcK3Uw1JbXvpsBGj/HULqexKOKlOEzzlIpLFRbKkCK990ccuxfXUqmPbIIo7Fq/cQ==","signatures":[{"sig":"MEUCIQDYc4Dd4VZszoptDu72KBQEjqV0PepYRrWH81STHzqXDgIgTN3VoV2z1DUdg1ahu3hjJB4i9UeL4b3mS8NtEsSjLtg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":102263,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbSGu5CRA9TVsSAnZWagAA1ncQAI3rQSWfMRjKVED8T4Ek\nZM9Gww5FLWxaKFOOU1kjKjo2qaWdYVPAR7lZF0AZ5TH5hqLpV6/D/xJukQez\n650BLfMDcd9rgg3704wFW52+1qQEzpqH26y95tRhMkyTpeqhVLZfA5RlnNvB\nDGLL7hltpDsutpKaPwQo90tux3/r6WN8VV9UrxH4MVQc1s2pxHN8RWcnB4Ve\nrzy3B2f7CvB/aEHyvD1yls7U5LEAf9/4nzwVAJBp3m7I3xFie1Wh0LC2XwF4\n2AOvDPg2shoziz87kuP4ZdKT0wxLVTrme7qLiZHx0zXz73DFeMjYdBxhrWAN\nWy2yUWYEzqKkuyUGr3qe/QEo/QyIuEj+MTDDhTuC80FQgoorac/zYifJQgME\n7oJY9L3wGV8uCh9zGMUpmchz3nynslYRqIi7OFDUv0znuRrFCRK7e1tKJr1L\n3icb3IKy8INNzUhOdjMaP7VWCHOUA8VGH8B7JYI6LL1jUxKqEOpN8sCFSqaE\n/uclU+QkwW9PAHhFANSKHjoiND0vxDzeNL2/CquV2174vyT4K0nQvaLf4dQd\nyR6Ll/yUClIxjl+PeUPdqd7GdMuJ8QuXs0SGlWysJ2hpSfgib4KE5d2M/P+0\nVZEzCuc3Zwy8347qUInJxz19clR4ayoECZYJEtfY3VH9jbbCYyd3o3aAzeqL\n3sFF\r\n=Il5m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"stylis.js","files":["stylis.js","stylis.min.js","stylis.min.js.map","stylis.d.ts"],"types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"602323e2a6d84916928bbfabd66e09985d335748","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8 --source-map url=stylis.min.js.map","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"5.6.0","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"9.7.1","_hasShrinkwrap":false,"devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis_3.5.3_1531472825201_0.4594217673546015","host":"s3://npm-registry-packages"}},"3.5.4":{"name":"stylis","version":"3.5.4","keywords":["css","preprocessor"],"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@3.5.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"dist":{"shasum":"f665f25f5e299cf3d64654ab949a57c768b73fbe","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-3.5.4.tgz","fileCount":8,"integrity":"sha512-8/3pSmthWM7lsPBKv7NXkzn2Uc9W7NotcwGNpJaa3k7WMM1XDCA4MgT5k/8BIexd5ydZdboXtU90XH9Ec4Bv/Q==","signatures":[{"sig":"MEQCIEMR/R6tmR8bhKwYsX0EByylG2uxhfLWPkgjOWZshX1HAiBD++RxyNiPHMgUD/qXyLhVtH7his41nC3xzl5UPQHZJQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":101896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb5c9TCRA9TVsSAnZWagAAD5QP/j6fM2Ozl3oPq8kpLAo/\nIQjgmEDzsjX19nJr0WsJ9P2OwOKD5PpmvRxNLY5H0wo9EL10tKhpA23O1owN\nZmFPdcf8rJR/EJzyvhLqrmxrhWVfyIOZaHqUrbTdxC7FpHyS1QTbETWQjcMW\nZZwBHiPPhvZIK1VVqszsEUgaUBow1R2preZXzKabGgmIPiRyh+vYLA20sUZY\nBHCoXGyWw209xCTghrTYGJCiyLzz+Lstlk/4PbdDxwPPt/W7muu7vd3NWwa/\n0E1581prPVWcPb4K2bpvJqSVlAzE0b983tdh1wS3J9CC02U0toVkHA8jeh1Z\neAlKnkpNi1poHRWqUBXh2RnlJrV8XfsTSZMbHqcAVLs+eLDIfN2yfGhPcRf8\nzQr+BLi0UR9/L0yFH2ocdjizmYuU0toilO9zFh5QKGBo+cyiepH9gUPgyIFR\n08/avU6l87ZTS3ndsjTuYH8iU++HYHv50B0fhb7GqCitHH0HBbLSYhnXa3Nj\n9GtyHejsRezvZyMgjV5hMYeQCzhOOBEEC6wwAKMNlyGsRFYwBCEtzT84TAnr\nR8MEUh1MTogd3lprA4bglxi2WkPFAlppkzUhAYfg7qKWrutpXOii9U9Lz/XD\nRWB3E6ej0xpYXZNjV3/kzekSvTksxlDEkqY2v6YdSl4WuGDHajOTQO1ETcDf\nV5Bl\r\n=bwQj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"stylis.js","types":"stylis.d.ts","unpkg":"stylis.min.js","gitHead":"4561e9bc830fccf1cb0e9e9838488b4d1d5cebf5","scripts":{"test":"node ./tests","minify":"uglifyjs stylis.js -o stylis.min.js --compress 'conditionals=false,if_return=false,booleans=false' --mangle --screw-ie8 --source-map url=stylis.min.js.map","prepublish":"npm run minify"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"jsdelivr":"stylis.min.js","repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.4.1","description":"light - weight css preprocessor","directories":{},"_nodeVersion":"9.7.1","_hasShrinkwrap":false,"devDependencies":{"uglify-js":"^3.2.2"},"_npmOperationalInternal":{"tmp":"tmp/stylis_3.5.4_1541787475075_0.29358487752334694","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"stylis","version":"4.0.0","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.0","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"475f4e00e3b809ed2a0c2bb6cba83d526e824171","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.0.tgz","fileCount":18,"integrity":"sha512-kdT29t1M7lMS1hKHvFD28QqT4oxTOIKF5KQD7Dz9UA2Gck9DjDc8IX1sdtHGI3QBRbLKOYhBjuBdcGpH5NibwA==","signatures":[{"sig":"MEQCIFAyy0C6+p3J9INJiqA9F88mJrMyAkGMTXK6q5uzPNO0AiBl3oi+MZM98etUAH2icIg1X/FpbAYNUw90TjhPSWX82w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":162075,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoYyLCRA9TVsSAnZWagAAJikP/ilF4kJAylhWQnhg69ur\nFhpXJ1ZjHvIpJ33gTlOF46PVt/rGalM1DqjdVxGPf9foGbdJy02wbmR8G9G3\nv5QRkUyDCUuJOSQ/cXPLELfEm1Pqndn2RjaIebDmjlwazUK9i8EGMpI0lbxg\n6A2F72jd9IplyGnTBoDK9WW1F6FVXEKii3q1v7nkMsyhFHktPwHpaldYoh6d\ntMQwoxNJougC1fKwUu92AM7hXC9zKn6Henpc62C3a4i3VFy+6SUboGzublXn\niok5pU6uvBgLrts9l+b+jVJ/wAZ6XBBCB7Uzp0yEDon3wgGovDv+djOPN4ws\nYJ6Gd2jTQ43kgL6RTZsQW4FEVRDHtfC6YloVkpytPMhbwFbgoOiZI5/VMeCq\nuC9ZtGce5NizbURdTW7qWmo23r7q/xVKjSgsaMoHJ5pZwc4Tf7dgl8cbdXrO\nmWYdlvtP9/51K89zCtGm+46NlPGkJN56Q/F7rnrj1OvcYzynIXp1r1aD3alX\noBmgZXZ1arq4qDB3flqXPeV5ixECQel14MO81bJxTkI7qgXqCFm/uav7GGvq\nyK6x8SCq2olK/cWrIUABUJllkLcKmyCMEaDo+eqcel/pzj+Ft3b117vp3UrC\n1cvfqFJJjWtB313H1/lfNruVnAueXb3d4FRCB6PjZ5t+ls0RvfzrW83OfLSN\nG3zy\r\n=TwP/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/stylis.umd.js","type":"module","module":"dist/stylis.esm.js","exports":{"import":"./index.js","require":"./dist/stylis.cjs"},"gitHead":"42a3c83248179a4d6fdcbcc98fc455b62b8f3e16","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"rollup --config script/build.js --configSrc ./ --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.0_1587645578710_0.43532747209269407","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"stylis","version":"4.0.1","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.1","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"c2c586b630dbf5db48ed3aeb5469a10473c99007","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.1.tgz","fileCount":18,"integrity":"sha512-Q6D+uXxhrf5MfJHUmS58U2mmvflwqYOeg5PXYIIFFlCfuA/Wl/0ej2G0ObT9K3WDGKAYBkqKonmyFSxkoMdHPw==","signatures":[{"sig":"MEUCIQDhMVcUpgb18y6tc+crjzHMszP41wppcuMPJAfQPdZedgIgXjPo6EedPY9XH3lhUwWqGRu25WnPvIdVORHIAFWoBqQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":162503,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeyJYdCRA9TVsSAnZWagAAqOMP/2Kk5qUcMgJphLVQNsv8\nfIwFPdq7BzsEfTaoez1Pr4YNnFP41QPRY/v7uAQAy0eu+sBvVKmunowi6WRJ\n8UIz54x8xmvs6WiKINYdEwQ2LdoB/SNsASoaaFILb1IIIrgvMTptNhSikcD6\n2Hw2w3FmeGAsNSifGVZ7Z0ZzaxLnQZMSju8Lm9EF2nqurNX5WTi2tA5Vy0Dp\ngCUJ+qg+j3unTADUA8/6RmxwI5TRzmxK07alW7TFVh+RsVla7XEitxBWjJsV\nSUeQJPLPtiEuZdkDYmKcL2ftIcGduurNDZ1SWPgindECZzTMv3vgCMK+01WA\nqPH/QBlHAireICGr7tIXvIuHjDp09QHZus6ZCj+Xz2wxMbarRIO0TkuH+U9l\n3VajA8WlffScIMIIzUkFCuJyBGwyb5idw7G4+WToeYnsWfutu5Gn/V5oBt22\nX9hR04e4dljYrnoS0j8ABhkjYPU9uQGQR7DJhq6XZ05F2aU32cb7waCCXFgp\nIPerQ7agnrBs2+4y8ZpZNauJUKoFw1bcud7S9kK6n3HmTVso/YT3e3rFnh1d\nkbvqpprSkFfTCmvCVCUHRMKfn2Zx6PiVvgUiWGqFjbyUHXaEWmd6uulnH5pg\nPvyPmqDSJJZqRIg4xHQoIX98qdZfzZNp+NTYYXhlOtW+LZcVScsTyW9mXppI\nmW81\r\n=76sC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/stylis.umd.js","type":"module","module":"dist/stylis.esm.js","exports":{"import":"./index.js","require":"./dist/stylis.cjs"},"gitHead":"2a1b8518fb901055390c2560d565fbe21ff33e26","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"rollup --config script/build.js --configSrc ./ --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.1_1590203931913_0.5427008648243692","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"stylis","version":"4.0.2","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.2","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"84247b15c20688604b7a77db02b7fc071a127194","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.2.tgz","fileCount":16,"integrity":"sha512-2RR3o86K1CSrJjigElyNC9dSR7KyINLP68gauaBQn6j2zfJ/7gb0nD6FGXSCsklVM0V6fsoYA8qEXhhZGjkdww==","signatures":[{"sig":"MEUCIQDsu5Of22DWvGx+3G2lOCVWyngUhoHNpLKfmgx12HxLLAIgf9vxebo3C1JKOjZN/8Lflta/xcc4V4+UYtljLPTzdGw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119600,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9RSoCRA9TVsSAnZWagAAdcEP/0u6VuzxtaTK035GclNR\n0a6vHaKs3jYpCiSC75GBUQ522qWUmo8NvMWsBXv3FApc+4YNbyw8OkwYJKfc\nqLkvta/Gs+8buCjuqpJAlg8MjOZpi8AYkaPc/rwZ7chV6OT+cTPnLptW7OvH\n/yxveGwRTsrBEdqVLfjVLU0TSnDrxrbwx9wjL9yxIuFuwx3+gY/mC+tsQrgo\nUnvNmg/TljyiuiwAHXW140RZGQGt71mSgmmKwZvAeppNjgsF/qSmAqvNpdpg\nT45CI3aj8bCtlSrZvkL785CX/rt3eSCjzbNsvblpw8BC0DvxHak8CjXNknhX\n1EQR/fQj6oABdvT3E43pAtXyFDvRuNs6yU82JzVh4m4NDcHlwDSjgQGAeuyJ\nkDeFr0GDsYv0xcToBHzS69JoG3yoTnL8XzeMjvCG4C5i+AsogC2wUKksM+Im\nsUGj/FdU9YNybtMWHuS+KnsnGjeACSf3iI0qTSblBiSSp3VpzyIwvJFHjeaz\nF4Ny7VWU8XePw7LEHp50A5uZkPBRU27R4PShiw7M1IXmfxkucjp/dreX15Wl\nOubxmVe/xAN9ibm89JqUP+4ht6floPcfWr0IuBmWekd3Fa3Xjly0wqQRrIse\nP9IvqRViDFIxPVR8SecnCbiecMMez4BcWmlV18cHInr2DLgUskQvrLKKkxsJ\nnORF\r\n=okgJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/stylis.cjs","type":"module","module":"dist/stylis.mjs","exports":{"import":"./index.js","require":"./dist/stylis.cjs"},"gitHead":"70d0b705c1b601bee26c234d502645861bf2d4f7","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.2_1593119912314_0.27614955954736153","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"stylis","version":"4.0.3","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.3","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"0d714765f3f694a685550f0c45411ebf90a9bded","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.3.tgz","fileCount":16,"integrity":"sha512-iAxdFyR9cHKp4H5M2dJlDnvcb/3TvPprzlKjvYVbH7Sh+y8hjY/mUu/ssdcvVz6Z4lKI3vsoS0jAkMYmX7ozfA==","signatures":[{"sig":"MEUCICW9XCaYWL8Q88hxelLKa5vdGA/zV9zqSz2MARM1iIeMAiEA5inBO9gj4tHv4qVEas9k8Jbayi/yxrEMjZKif1UBbFc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119635,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfX9yYCRA9TVsSAnZWagAAmQEQAJ/WVY+ZEWDH/FkNzdlk\nmWKjoOsaKRziGqBiVcozhNnpoZJ1DbYTo/je+dip9rcICCCJ0yYjhy87KIWZ\notJF/VGQefbt6t+ukLL9xNHrCybx/axyTnbgcYRYdiMgZbgrE6b15BZ87Xo0\n0QoNZgXxKEVGKx3xGsWCNfc307QH6dnwLb55I1BMiUzUCj3/jDH/PhALmnij\np9m1BDz93azmuOupdZim1sj/UGTTwQnaFNBDjQ2tecJV23sLgcKhBGrJ/wkx\nR3eYSxzVtBY8IXYzuqZ9r0QgDZGQYfMbYkxOsLQy0yEctqsafpeKsi+YRnWH\nHce/JqNFroCq6sukKMVNwoiTVOpYTLbuFlYg3Dt1/nRMwCZbTGqFnTJwMvL/\nEXAZOpPYvRuqpT3g6AyOTRKan5h++eGYsNay5FZ8bJ1yhWrS9Z2dDr6D7FvO\nd0fl2uCuK+Bhb7ei2dkpEC+/yaHXkE9q1wuTOuA+U5HNLXqF2rsOIClYXulY\nA8kMMbCKrhwwREDtHo3t/JQywrLw94pWb+IJ5d99hadnnCGuyvSH7ZvRzSHs\no/sQz5kq9o8f9g6gZbK4UrE1qMLfZb0nlnrSSxxL1G65xy8TVf4Fr9KP6GmH\nO5Q9X4E/sceOaYG5LXtAGJTItckCuXW+SgqECr0BRbnDNYPseHkY6690cI3/\nxcz5\r\n=Amxe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/stylis.cjs","type":"module","module":"dist/stylis.mjs","exports":{"import":"./index.js","require":"./dist/stylis.cjs"},"gitHead":"1f053d618e91e9da91295c9a50f2ce71a7d64c59","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.3_1600117912288_0.3566335115356478","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"stylis","version":"4.0.4","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.4","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"5a86047c87928e9a6afc76dafcb03acba69115e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.4.tgz","fileCount":18,"integrity":"sha512-V52wqQLk+xZW2v6dpiz1HEa/inSigsK/S+GjMJBrXQK/Xu2R7gHDzeJkdXIxDSiLu57ageN8HNuZCehATlQq2A==","signatures":[{"sig":"MEUCIQDoL79DV/oAEOwd104BIfpHmw+HPpS7FDx3dJqTGmXdKwIgU4G+g/wI0+YBarBnhkx2k2cp9j04GrXFkiNl590XaF4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":161896,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfxl7nCRA9TVsSAnZWagAARnkP/2MHw0Ot5Ocyhh8NWPrD\nh3PAj55AsMyXdaG8ZAkdNtISArGQmVz6Ly1+N3ogke6BcN44ptEtKJLoOZ/o\njhcuY/nuNvuOXtOrqno4OkXn8JmVsOph47YO+kZj/D/9BuMDyayjY802/Ku3\nkGrgy+4uBI5B1FKhmKJSDxPYWV6r8+GCD4VIvktFYQRHlnxTdFe1E4J9mDIJ\nDgU98r5DfQ+hwNRyAzWlLQeRB1eKynWudcrXHKNhISLwGs+kjLbPoQr45zSB\n8YzcZU04O7zL3PHvZIzF2uNG3s2LZ2aEeDYfUpQXlWzeTCxa5PBCHHsZFBxE\n2ns342mTaDK+9j/+/ZeTJc+Zu5wO26stj16i35P16vL9mQdwYer0lIhRdkjJ\nNhBZv1zaC/OzoSoVGC7r2jlZ6C1erO4QhfEdmeSh32zOkkrxZI0sXzWUvFSP\n7OXzpaHMPGjL9dfvZKFAnCZsIomYKgTr4hMwJL/f1n1H1PaIut/zEiz+Vzde\nQd8xazO1I9hTjjtU/VTvAi6jfnNHNU1BMH/ZG8/9GEPcihwX3ATAhLyQ5YYr\nCSqDmvFx0oCKa1oHSqRl8acwyZTbPBOt6UIHpn/Y2yMoZhV6Fzq44GZkn/ld\nrwcEwgL7Cs3xSef+/aen0v9Jm9Ljyav5fqFU02G77n0IBAdFfVvil8t5zFr9\nzmcF\r\n=tMI/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{"import":"./index.js","require":"./dist/stylis.cjs"},"gitHead":"99afc806acf31a2b9a82d2d5439bba819e35eca6","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.4_1606835943316_0.37822402119238085","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"stylis","version":"4.0.5","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.5","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"789b7014377bd4a4c0e3cf733b5463c2495564f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.5.tgz","fileCount":17,"integrity":"sha512-6drpXTtQLGXTrCoSlO1JEseXLTfgnx5tRJbY4iBxCKmzRPNI1JcuVYlbjjSml7rcsUxtjvRM7CjlTWqB9QQz2A==","signatures":[{"sig":"MEQCIFOJx6y1kmZdgnmjqbVZI9LPx98w4JyxzDPuFWbf19GKAiBQxNrSc4PknPK8gm9Z2trpxPSdx/48lbIkGCkbUnaymQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfx5omCRA9TVsSAnZWagAA7isP/2PANcP5tLHTnEeavVkh\n+mhrx/1IGRoR7jR+tmbD+XtTVYUsbqy2ykQeHiPCcToTHeOYm9wJ7YSnlJko\neVU8yy7BsdGJlPKVKXRSIXVxPSSOEt34WDQEoSgiWY4f8yZ+0FceBB9fr8TL\nMtKOK0Uof7ym86qX/ivQ0qs4R8+G2wSK3I0i/quPZi/34MoEy0COfHOz8JiE\ncq4lLPXnVxAtKgIhaaakQNIOxITPBF2TbMY1COFhHXdj/PRneuO0Ma+6Vywq\nVloaQbiUCZEKl6mYKjM02k57uTu/4LEkck0hzVLjvuma4c3kKLft1cDBNpGR\nOzjaR80WxcDfmsqNouX0/VCdoSSGvkELFMqrCx6ezooRTJxceXh4tWFXuGdA\nK7XT+HgXSqCzWurooH6J0h/VWoHu/mWktGYX8gQmveOMG72HUAU7BdgOUIbB\n7DYKORXxUGP7SIIgaLnY5NP4h2NiA3losn4ywJDz7wtnGkZIH54NwARFkLNx\nF320KETalwUXh8raarA/PIFga8gKZ+4BibGkaEt36VQJ6p0SfxkGyjIXTnPf\nn8Zaivh/GvJ69NIFE2tnvob3Js91i1opoG/FNe7F3GySXUowEK//xryESsGF\n1U29jzd+wzzkvc1eIsfJEJ+8bR9lm6JIF7AdO8afR/nYZrBpfL4ySJUJpJt6\nlrp8\r\n=en7u\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{"import":"./index.js","require":"./dist/umd/stylis.js","./package.json":"./package.json"},"gitHead":"29ceb90a512fc04fa0f2c8d8d7f1f1e4340310d5","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.5_1606916645211_0.30397268553886647","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"stylis","version":"4.0.6","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.6","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"0d8b97b6bc4748bea46f68602b6df27641b3c548","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.6.tgz","fileCount":17,"integrity":"sha512-1igcUEmYFBEO14uQHAJhCUelTR5jPztfdVKrYxRnDa5D5Dn3w0NxXupJNPr/VV/yRfZYEAco8sTIRZzH3sRYKg==","signatures":[{"sig":"MEYCIQCwCzP9UrmvDfjOPsVfDWTmK5HnsZOIImGPz1uEnaB1NwIhAMCBk4S05vf5MQTB+cRrtrMIao8Yh9QsN8B8RRxAUO07","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119735,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfx62ACRA9TVsSAnZWagAAFPEP/iBtqcsIUOz1wsIfjGw0\nn9J3Or2lD6Rx2a5bkxzoCdsRZ5B+p87mj0u3ed3/LF5MkbE6SgknNrY5gz9w\nYgeuo+oGbmBDuRR1/wPWy1UPsjPP+w0qaHNWLoLAWdnvqyYVG+x5X+3FyT0F\n5Y/pR8mC9jfDkSe4yrpq+cBdOjqsTBT1JUBSjQIX5jL0OQ8BwW9XX4GzLZ/T\nstYb5bmF79RNZC6AHpgioUcRN5hg1mRK5ofwrbQaYQTl++dB9E2j5Ov0dpdq\ndCQ/5aGIW1n0RjSJnr1Ws1EIbnxqs/c8ZyaJE1J2TKV6RPk5pOwLreroM0Qm\nkg0uagulWtqYXjQYohtxjQvkFUtON5oKHINEK0g/qnm0ckNYVoLELUpSmBGm\nTLJ3w200sqgpp6w7JzZebRQa1kbwJiXdOGbamGLrdu0na80Fom2euyEMqAme\n83c1nTtGi4xcHNNRGwETERQUbgaRracA33gv9vIEQJcKMjGOyDWzIGbV134c\naJeAuiRzt3rHbzpwTWWH9nYkWFD0K+KTWKXqIhSfhLSKekqbQ6pYBrpr385j\n+vAZeDwweaioBTjQmmBDA2VIQY+pUyx8/FPGNMN94i/jy9YTr9NcwNvpUqus\njePg2EmQOuiKV9NgY7V7CGxZoKGK4vhqOrouRqwcTtB4I0Pe3UuS60zqraQD\nT8Sp\r\n=MGR4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"457a9fd29eb75cfe58002937a3b3924d62601d48","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.6_1606921599539_0.8150811643539666","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"stylis","version":"4.0.7","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.7","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"412a90c28079417f3d27c028035095e4232d2904","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.7.tgz","fileCount":17,"integrity":"sha512-OFFeUXFgwnGOKvEXaSv0D0KQ5ADP0n6g3SVONx6I/85JzNZ3u50FRwB3lVIk1QO2HNdI75tbVzc4Z66Gdp9voA==","signatures":[{"sig":"MEUCIFhKS4kh/hJAXVfSIoDrrIjBDtJuafJmBRUWILiQOuqNAiEAw0TW0hWI3lUWwuh9VM0ZHqesTcUkhKxaBb7JJJtFmlY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":119893,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgE72CCRA9TVsSAnZWagAAVbYP/jCEiPZiH3jTHQdMI1ws\nITliHvSlKHtEQXnb/UVqwJOeSBqcuc2Hd4jcjuvRFGo9vcBdPvYqL5TaTaR+\nptAEkel1SVHdhemdIqIuc+TWaFY4qQ/bgsjBqMxwMPnKBXzq4+00/6j/3XzF\nuDeFsq7JtBe3UYn1oTe5mpj3nCkY6WeVBqjuMjcbq/SsSMf5Vv/HHxE7QhLt\n4Oe1XLT34EO7Cno5haWbnsy36EV0izU1RLzpOeTPP7gDzuGjf0dTRcQ12FDz\nW13XLZy1T3Q7ko6Gehbgr3PLZboAwhV74JK4NxKrYkBQdhe98KGG35tir3a0\nSShmO63FNfIjipQefSEZqy3ugfU6TCoa3md0KsZoDDT5cdbH9zcyHwAhxOTh\nkivnV3ZPGFWYpR94L1MouL0tvlqPsl64eEYwKbN1/vRL8v3ii25b4Xl8tYbU\naFl01+5m68Wr9Iio+n/NWXwFaGrdtEhJPAJlGqtVASTEFzyylcGflgm21StE\nKOOcKPJufXJ7xJTlqJTGWGOFclPU7yHateSCv+1B8payQRmS5S8h2lfJT0zh\nZkMPjzyDuDLRIdsvXGP655Q/YAw1nhfuQDTypNRsMZ3HhhjXwrbQrIQcffVW\nrUlE4xl6uNVPBEkSY4g5pLfE4iDvsXnxKbgfI6r+zFtKhiQ5m3BnmMDIVaYY\nn1Am\r\n=dhpi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"4b4a39964da70682dcd139bb83d3369982cc27c0","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.7_1611906433641_0.9603885244464754","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"stylis","version":"4.0.8","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.8","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"b03cc47dcedcd2dbac93d8224e687c43ceda4e20","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.8.tgz","fileCount":17,"integrity":"sha512-WCHD2YHu2gp4GN9M8TqD7DZljL/UC5mIFaKyYJRuRyPdnqkTqzTnxCIQ1Z3VgQvz1aPcua5bSS2h0HrcbDUdBg==","signatures":[{"sig":"MEYCIQDvFeiHOWflu69UB9qVvisVkQqODfAY8CP7s6Dn0sqgSgIhAPfsSBqcgkbhciLEZpDeWqQLIzFOi3l+Fh94/OdSOBWl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123882,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgV5K2CRA9TVsSAnZWagAAlBEP/AlP0B6y92sooenOucrk\nM7uaH77r/X1L7zxeUpGf9m8VQV/84KVjudWjaz/T7BmjM3nPXPY3HhhrnfsG\nSh3NxOvBIPojTFA05p1eUFkOjnqIWSQShHOQcrCkNncDnHZGUlPYsxqxfJPL\natLgUVNtmdrbGVIyMA9zM7WRybzjSkAC9YUwfmn9LcWSgegaZlH2AfxIeWjQ\n6wyqb8RZw+FpERBD7YYS70VnDW+2Lau+v82lspuHEnSbCOsthExZ5Cqjc/sf\nj2nBNRcPu+bkVBy5mq2AbevKMqHVmzrodLXcK10vkJtCd8+rZ3EX9q/E9S3p\ngoYupfDZIdC3WC5kEMzcT5leSDmC8G5ht2qqmT4Y7Ik0Iv726GGK3ImjmwDN\nnfe9aSEomHsKywhH5LitFucLZayyg0gcMBoxD7gM0JCAXIWtVMVX5ZJBcJ7Q\nRTBCllQANI5CbZRmDUzSix3qDzjsRSfHaYJjQZ9t9PxWkOjWzl6su4LnEqa7\n9SiODbk/sm1RSH1saIq2c7IHpz3SUmluc37PJ7cna2IEuCHjVw2Aih/0TM0t\nbYjsC++CvWWv/1XdkfqyCRhf+AVgPNyEs6BsWzuc5WJNUe33a9fEsLqH1bB3\nVsd7jAS4bsq+S/jmpvpynMGnE2m8Zkm6Jd8ewI7lcy5bDKwIpo1xF3GbsmAa\n3hcj\r\n=Mi+p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"d09db4c354110c41654fd817ce101976b078d8f7","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.8_1616351926062_0.1910758420503822","host":"s3://npm-registry-packages"}},"4.0.9":{"name":"stylis","version":"4.0.9","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.9","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"ae3d5283aa439225cf79dd2d0cf46f8bfd4ad393","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.9.tgz","fileCount":17,"integrity":"sha512-ci7pEFNVW3YJiWEzqPOMsAjY6kgraZ3ZgBfQ5HYbNtLJEsQ0G46ejWZpfSSCp/FaSiCSGGhzL9O2lN+2cB6ong==","signatures":[{"sig":"MEUCIQDoOjKMEgPVJxdd49WVtI1kKwTOpFADrJJKhoRDAdxc8gIgJz771RDKHo7A0OIjE7YNehdx4QUN5ydXGa1FOai2ZtM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":124172,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgXCR5CRA9TVsSAnZWagAApmwP/RWKJOvDn5aWb8ioNbs4\n0oYYrnXfviGnK+lpuQGewvSMrFwR3Ml1tYsu0AVkUIIbQ8E4rxjRK7F4rHgu\nzHK4ded8IwOkqtgMfdW4dXFOarrw276cc3pEiMBXV53/jPXyj6IHR/KAe8a8\nwTCQuSKRvMxNTF6+sGzOqK+ZuysLq6LhFUzAoZx+cw42B9+SERf8nOLzva4b\n73V1yI4HWhpy9LRMMdNQIU3rn6AMRvSGQYBverbqMBkuCwYnGWRCsu+/367c\nNsFbT5CB1a1gS+QUEwmlf4lEs8YKRoZamWaq/XqIhQIPVbkTeS/R7ARtCE3l\nj0u8kP7xLo9xBH8En1zM0JrSS+lVGO9RZaKUIldijUjG1Pn/8dd/kruJK4e4\nQxZgUov/1mxA3u2RWsjUljrEslU10jmSVwXTp/XznwwS15pyHyS/Y7ixEVmc\nErgDZmfd7o10VpJJLV0dr2E896ULZRcdV9gnL+cBQaiFPtIVpA+BwPueAyzc\noZESugfLLkOSTvUs+i/1EdaCcb+VyJAWNk3rAgiIdICyAEnvGrkGYpJLH/d+\nqVuq434BmPtEwX9SNJuIrvQMgfeS5c8thMc6hh9RL9cLG7EkSzNid5fr91rC\nZYPE4tD9F16G+0xUHAmu42VBGWTHbvTG2ZmleO8yz6Q5N8djjjUR1bc7Fie1\n3V3h\r\n=7TFc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"f1e01ca8493f71e06457fff9aaba8831dfbae0f1","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.9_1616651384740_0.9576690431996975","host":"s3://npm-registry-packages"}},"4.0.10":{"name":"stylis","version":"4.0.10","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.10","maintainers":[{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"446512d1097197ab3f02fb3c258358c3f7a14240","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.10.tgz","fileCount":17,"integrity":"sha512-m3k+dk7QeJw660eIKRRn3xPF6uuvHs/FFzjX3HQ5ove0qYsiygoAhwn5a3IYKaZPo5LrYD0rfVmtv1gNY1uYwg==","signatures":[{"sig":"MEUCIQCBmSeDy3CRaL/yWrwgNcjqChW3kbXD7WKDicWL3HqZSAIgdyoPjDck0xiSVA/BVVTse9ndZoVOMhg9FNdtYJ8JwV0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":126384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbaQoCRA9TVsSAnZWagAAlHwQAJVGm4aNmewxJQ/WmYSM\nFK/EDFD33td8OYmQWuBWLDoKBiV/dGoYlk1Xja2asd8MRZGkFow/B6frQX67\ndok4tyc/LlT2JZekxH9oKsHHHSQhVbP3l4HDzmR50AyurCibZGzxtrI/37/f\n7itztsHlwveV95Ybgi1kGDe4Za3AGgrFCC2C12Ij6Hyx9/tRIVhXNeQ9AWkc\nPaAyf3YB6xPcXpcGeH9s7hYg/7/WUJ4tbRQ/CQAA7FVEPxh2vEyFIoZCoyIC\ntN2p3rtnpYgpLYfo4oQ4lEc1yUG2Nwgv3eo0PpTsxNpx1hrHl07Q5PHvnE/t\nLQ0FYh3lj+6LpIRAPdP0Cf0pb3tTtE4UIsKZUZhmqC/CpNpRBPzOcv2rNE2n\nnwst/DMZ1qQ8YnYCax5/togyn5fljUXPtZ+U+rR+YVulsAwecJ0nAy26pp2c\nuxVgwXEqTnmHKKkJa+X8bx91JTpJetSSUVNXbHkfxtOneKbObrR4EDlqKzg0\nGEhXL0VHw8XhDyX8OR77uB5Vb5SlI95jzcx9RCUNDKH6oNIAB4ppM9b/khwm\nwNodw2Jdg7AQQzjobrFGw5NBTvho+pzBjIzX4Y/0dTmSKhaOkx8qRELIlCiW\noOn4zSpIlzA1ftY2mnwgPIM0J+O64us9BoxBVuiMpcfMkRgald6Voov8phx3\n0pzR\r\n=v4Ym\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"e6843c373ebcbbfade25ebcc23f540ed8508da0a","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.14.2","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.0.0","chai":"4.2.0","mocha":"7.0.0","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.10_1617798184218_0.0025361690945555626","host":"s3://npm-registry-packages"}},"4.0.11":{"name":"stylis","version":"4.0.11","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.11","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"405360034a86acd66241c00bbbc85415a071ed35","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.11.tgz","fileCount":16,"integrity":"sha512-Q7gWFqMXrpDAnqhkFZdgBjXzybYc4WaJNtFdnQQSfww/cIiBUx/3sPGYMKFh3muXA47dhaWfYqc/HQkg8j7+ig==","signatures":[{"sig":"MEYCIQCy4MBL+mqlipixnfbDn8q2DIKsiIL/qA2dJzYrIlCjYQIhALisLxits0R682s1kKr36cWkFzeOFhUTeDsewitJngZK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123169,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhspgnCRA9TVsSAnZWagAASLcP/1pT2jlkk6TkT9yb53w7\nO5c70NmCb8M2DpBDUb80RsQyunsKPmPqAI+JqdGJNU2XzjuL6Eban8ulCEIT\nutJGukrjKS2b/4W28GWcCjY/C5aY/2dPD1y3k7zXkQzWHm19YvBRabuRyH5Y\nTkblpLrXxa6TEUjMBvFfXdcjf64p5U3qfUQf2pEzdnX6ZSRIRhHPh64kCDB6\nvcLoUaKwOO6QBw8WogW06JL8G3I0URpKf+x9j8SMhrdxqtB3fhAU39x6lAK6\npHPczrew74seQkcUokAMtOYRH1yfnWfk6mFT0SnYnZ1s1GfXCoNq925FH/FP\nTAX1cTdY+a2/8LvlED47zxI6DkW/OqtK4boaUsTRh0WDIQ1/9RzT2l5ChET4\nkBXQGUQfwuRCXBISMq7ziVE3xYEqRG9+1ACKqrYdJzEr3Gabwki87Kfp4hcc\nRg25cG7X/LclDsN0O3qfqQg+wQ6U4i643iYzN8i9/WJZRB/Hsuf4bhnIKjPW\no4pLcVhUY2iBUYWUU5Q7oi75FBTAJIMmZcpxM9DnbJgFxCvkEZvihM6Di+Y7\nsKHkeL33sSYjsopKiHEt3SGO8Gb9lIu+IEIVaGIRF58cUEvMCikVofG7DuYV\ny9w2a/cb+xh5vUsYRVMwPUw5DCUcCZHYz0P6dETPB6K2BDTabMjb9dVlj4xZ\nXe3l\r\n=FYg7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"2df6f5e6bf997ec569e62bc15dbc6ea38441548c","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.1.0","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"16.13.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.11_1639094311540_0.023784667401112403","host":"s3://npm-registry-packages"}},"4.0.12":{"name":"stylis","version":"4.0.12","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.12","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"cad79b30964de9a7e3ca92687a0e73718cbf0e17","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.12.tgz","fileCount":16,"integrity":"sha512-eVXQEZqRRFRvl8Aor1kNWN7ViNss9tYhphVBFNxyCJWKdK+FO5sOVKEHk7Dg/vLAr1xYQBpUb+7weU4AlDUm8g==","signatures":[{"sig":"MEQCIEWbXNktUREpYNtz2w0rHmzNlBKZSu4mtl8JEp+k8s5uAiBi3VEbC8iCW03KNYRrVrgqzyW1+/CMA0+HoTPH2Ilyrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123150,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhs427CRA9TVsSAnZWagAAcU8P/jbAI0XmewrVfUu2GF1U\npMl4Cvp95aZIJ/zkgg9xyE1qLrn0JJ559BUMdMZfT82CIAMadayGj1Xa/aWO\nmoMFvK2J1ueTd2rHrGIpMe65QEmtQJ3X1H/12ZoF5tKVgaFn69DJKXP8v7fJ\nq1feMq+Dg2V2FAnS1FYssGprmO3Yq4Swx23QH/AzPD3hbKxO2rc0/inELiqp\nDjg98B7Uo+k2QoqDMsuClyqpGX4Ehy6MsETx3CGbLSF/Uj7ck1pqp3z3TJ5W\nUfQgROj2Lob/mJIJ2nFSAS+ccwJzpHCP+rAm9qJWrm2Gh4juG6+l2jDrjVaa\nnbezeqCz10sidBv4QfPA/IB77xGj2MkP7JgdLs67o2INisr8XKbS4FwxqRQo\nSgpPIOTe4HWud/bJxta/RyswiX4fFbi0A5+5gvWgMBpiQCHw0onal79RjSnG\n9qtGdEjGbx9+vzclh8K1pb1g/mY6pXFFkwZZzlgdRBIUeNpfIIFM1OPLAkYw\nLIDL0TmwP9GJJYIYD8clai4JedmssfXyWpb5Zz2tNdUyJDbhg5nL/zWsVYI0\necidsf358IwZXTmo6QnEdj9LD9OMvemTF2QWvhpqW00l3IQwmY34KGmdRNXq\nQ3HzPehudJiSzYQYwmTUtJ5p4c3PKFYolnkPPJOnuunu4ln+JSymxopIPUzp\nLT3K\r\n=OikQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"76f3c90035d64e6128c37fe8f6f89aeaf705ce0b","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.1.0","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"16.13.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.12_1639157179611_0.4334115086930408","host":"s3://npm-registry-packages"}},"4.0.13":{"name":"stylis","version":"4.0.13","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.0.13","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"f5db332e376d13cc84ecfe5dace9a2a51d954c91","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.0.13.tgz","fileCount":16,"integrity":"sha512-xGPXiFVl4YED9Jh7Euv2V220mriG9u4B2TA6Ybjc1catrstKD2PpIdU3U0RKpkVBC2EhmL/F0sPCr9vrFTNRag==","signatures":[{"sig":"MEQCIGeR4W//LLMUPFFZWvrUHPCZfny8gIaoFz40bGwxwVVNAiBXjXD6aSRrQGbP6lFvgZ7C/M4NQog0rKMaEtHn2WZ+1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":123389,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtLIfCRA9TVsSAnZWagAAgE0P/3uAbPVkmANBzdc70+ZQ\ny2tG6Rjmml6wvb3QyUBz9OVP2S8ZMD4BydjTEuyOMWEFeoc0l6rGPbSt+Cu8\n3+GOu7p4sLAc7X3vp1oETxsSVtP6xUKXAgKZ8XK3FBBLm/u0f6kesIfHJ5DW\nBCpypxiozvTT0fcnEw3AOCnR5p7BEo5lU7DuawH+kKAl9onVAZuTkYUp5fJq\nc+elxwc/9BcDE6dwrvjmZ9z0Of3pr+s01f+43br8CE0bGWr4+5wKt8ng/4nX\nhnCNwWVGz80r+cWkgA2gNQuYTB8aY/ukecarzi5X6yGRaydlbQSVkj35dGvz\nJIJkrxS7ohTz2BsMVUDbO5Xz4JGX+4T/w3t9PVkm6cbjbiO2Hvx7tJsS4anp\nYcbs+lXWIIBh7lQ9KmjSyeEdz9fIf2/be/J3Rj/1Y6fz9LXuoXnIgmM0nV8x\nk6W8wAvsGk+zlc1iI0ViUHjUtvKPp5DpsLKjUMIwGNgHFCZIBY21x2Rfa8Ce\nycl1sojSdH34VX4UQbXg3PLbD3xjhdLXifYb19L3QILZPp9hN9TroO39pfjJ\nHnOP7uYrngQMIIwoIy9f3vdfUjrQkKLTT3drKUId9HIH7gak+3TgnZ+u829v\ntRI2sM3TslYmAeRnEc86oLHDdpg+SFYIgZXIYZB/rcJ/XKXIVXDgw51IXEso\n9paH\r\n=S0HB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"bf6014b83809b40d85cc896683bc5328b27650d1","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.1.0","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"16.13.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.0.13_1639232031592_0.8856379404230008","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"stylis","version":"4.1.0","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.1.0","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"e3c7b24ff96d8af35efd161b6991a81c46e51933","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.1.0.tgz","fileCount":16,"integrity":"sha512-SrSDzNasOCBTo7C2N9geFwydg/2bmdkWXd4gJirtq82m5JBYtR2+Ialck8czmfBLIdPxCOotlgJESPa8C1RqvA==","signatures":[{"sig":"MEUCIQCD94AHw0uNjWs3Oy3qc69uqJvco9FTBKVFvYUOtMKFIQIgZh2g0T9NS9QPIcjnwk+qwf0JHy/FjGlL867ZziH3oKM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132809,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiSV+wACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpJTw//UPXOaU7ln1CkWuyx7EHKckGyHE2HsOi3ZBfONXei8kYSm3GW\r\n8fzS07DF5GD7b+KmQViAPu/fwYS8n2yqasA/wfEkXJMVYUcJNCQ5HbDsPxLA\r\nAuoluUBeB+AKknjiiBku9M7j4L4361IDSjc+xdYlO6sT8jmqP+ksYh6V9/GC\r\nwq4aFzD47Sbs0JwRtb7l4YsfgscqS85ECtzzW5df1vl2xfvZXdrtTNjzoye7\r\nifZF7jR9GSm8tOWU/vL+VfwwyDdnCiLhqY1RaDgJvFo9EKUip/xR1t7A2R5s\r\n9kjLjxqJVHMtx57VLH1HDGtBfs80XUKWMREuX3VlLOGgp9c+/RbifnKqMH5v\r\nwmrQf0vLnzG2ISwieSFuSWx0506bckJO2MKie9mN9+YLRtYFKLoi5Efw5eH2\r\nR2nn9/Nq4ZVNaPFJ92BdUi+4J0ksYozPcicv8yQ9lAIsXwEJomUO8SijJeTy\r\ng7knmN+XLN3rL7WmJMbDll73E8/m1Gd8FNHxIci2uD/jECaSE0InuvGZnc2Z\r\nsFmSHV+bMVIvLoK9VihuAbf2nYiiEougL1KwHpi5+/mL9F+5bwxEog/JO6SZ\r\nvXKQnQ1eWyZJHyyclzxPNsp00NvqkE3QN+h2s7Rh31lmra2vQhZlxYtKtqqu\r\nNEXITQ8ZlRGgHHrm/E1uBdwl0PzcIvzlnW4=\r\n=sH0p\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"c3c05cd233b50a72c146c2dbf1d5513cf61b0c94","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.3.1","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"17.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.1.0_1648975792531_0.6706712113761941","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"stylis","version":"4.1.1","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.1.1","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"e46c6a9bbf7c58db1e65bb730be157311ae1fe12","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.1.1.tgz","fileCount":16,"integrity":"sha512-lVrM/bNdhVX2OgBFNa2YJ9Lxj7kPzylieHd3TNjuGE0Re9JB7joL5VUKOVH1kdNNJTgGPpT8hmwIAPLaSyEVFQ==","signatures":[{"sig":"MEUCIQDPPnlMFOTDMCOkZPV5gIbU+mUmA818czq8dlH7WYr6FgIgRW5ID/I5WhY0qjww8vHdzZMbpbl0HFlKR78Y93DYhgg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132895,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiY8zhACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoSYw/9Fnj7TXGYoqyTgY0Cvf3jWwSkxGJszCbTehHQe0LHUMF69gX9\r\nVN43PNhg0aQr2rIMgPVCyXBL5NrBZ3nf4Hlv7rPJT0nnKmYzUBA2RyYQMmw7\r\nXpyYo5iuVONmtMflm9d24ov3EkQoCI5sdXPFHXyJl2hTYV4R0t02MEANjs2M\r\nlCmGARMA7D9XyYt0VLJnOyDgg6BWjbKndpweTaG8AJb1e9ljG9WvV+JP4EcS\r\nDMJotFYoLEJGDzn8QTdpp1y/4oyjsantgPrXIqSVUYHL5oFhtXM0oZTdrJIo\r\nyFhSXXlsy9vFnSOJjaFu5h61KRIqNQ2HPRsy5fwyYtYkO585dRdChp3oK13g\r\nwZ6cRYDiGQCM5MNKUuRYtDjQ6LBhwl1TkOz8MUGjLJID4/cZXWpY6jEubnm/\r\nwGDPaF+2hC8dTe/6edl9iK0ANLKIYgG5B630oJr/BM6DbZ2pr8Fwl/OOEr12\r\nbIfqzEb50uSpBB0dc2g0Bv4luFKnAeLSIsqes7Z+EuA04Gxl7rfgjymR2THf\r\nsYUA23STOEZJbGRGYPEflJvnBDJissYQWwACQ1/KIVcprzSFbfZo7Fq+WcBY\r\neF9xZJJjDPK781EKleQcmmTf+N1tcwdnWfED+2RgEEK0wglvvtSL6bf21FrD\r\nahJtiZ362ON7LVyDfC7b15qd3SZAYsBf10A=\r\n=XT3j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"09388f08f431602057473293618c67368a131dcf","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.3.1","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"17.4.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.1.1_1650707680772_0.07541008260964244","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"stylis","version":"4.1.2","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.1.2","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"870b3c1c2275f51b702bb3da9e94eedad87bba41","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.1.2.tgz","fileCount":16,"integrity":"sha512-Nn2CCrG2ZaFziDxaZPN43CXqn+j7tcdjPFCkRBkFue8QYXC2HdEwnw5TCBo4yQZ2WxKYeSi0fdoOrtEqgDrXbA==","signatures":[{"sig":"MEYCIQDv4QTup4DHcquARz0JHD3Ou6Z4wzmZ8Y8SuRsPRzd1AAIhAIi7yHF2Avs/WUihVSZr1m1x8YiETOUD8W73bn03DElE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":132915,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjG2ANACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWKw//fHPyH1zN5+FoMgq5dofzpG9McVgqNcAgPsbBySK5kPp4U94J\r\nFp/JzFRCzyJw21OVJoIqWWmKt5XQxKlAKX1di0wA2d/hMOz3y4Kh3VspAyjn\r\nTnxotDppFnTTjINyDs1ZFrsL9WQHc2yR5e6XYSwLXKZVQo7GoCN+CRjJnC/7\r\nZwDtmxNf5+8B+6HDrA3T6L6j71VIr/AWrj5rQj/jCRKclnLpkV/RIR0pIXXf\r\nrszTNIGQVrAUunhLjshnm5n2od1Ai9NsD85aSlr9y6HU66weE6qiZw7jLrZf\r\nAOzE+MJt0868tH36oqeK/3RPkCkY9XecCmO1fbgxJc2o1blW1EYo6klpgTHS\r\nguIed0TQqX23kg8y0JUGx/l9ukjJ30wuynhXjSdTPWhDwwl9vt72si2a8Naz\r\nfZqVaM7NSV3/7KrXe/SnMDhPgxLrP5m51HWvMGAqssOccT5GXNjv32d6dFuo\r\n8PwtRyhUyyxLDyPlG2JbiIa2aDF/WSdreYeuQKA21Ipr8mwzpINvLpXhKqPG\r\nyoMj11+Asv8KvwcaNAIJ2QeBWu2/1adoc5kQiGTzooPejU5640QxSSUY08Nw\r\nTx+mj3CLGkAH912UB+ayN0WvATArUvDq1+PS0CcJbKslU85Ubj+rUJtLepmg\r\nQmWIRkx6JRx41MRE5Zcth/CT4YeaI9mAwRU=\r\n=vTK2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"d7ba3a4c50643ff10eb32748dece3a45d4ba167e","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.13.1","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"16.15.1","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.1.2_1662738445725_0.577233407454901","host":"s3://npm-registry-packages"}},"4.1.3":{"name":"stylis","version":"4.1.3","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.1.3","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"fd2fbe79f5fed17c55269e16ed8da14c84d069f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.1.3.tgz","fileCount":16,"integrity":"sha512-GP6WDNWf+o403jrEp9c5jibKavrtLW+/qYGhFxFrG8maXhwTBI7gLLhiBb0o7uFccWN+EOS9aMO6cGHWAO07OA==","signatures":[{"sig":"MEQCIBv+7KICI5M23KmGiJ3k9qE6QPBMEPW9OcvSyE0Mps+yAiAdaP5nqyDahj39J5Ap2M3kCmYAx2o6LrRdgsY08/c82Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjWYNNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqhag//WFBu+Tz8IaEZc/Oatxl8JKotVect05tQwTbgs2NCsBaEutkJ\r\nKzWONQE8FNerHuhQ94mPPxdZlMDCJhhkALOrt0tTF3eSioUl7mKtlpKZ65Fm\r\nrUHyP/nusPgNk/gai5bXylUIjpkm3y8uWj0lWAYFZwqm8k8ie/QV8fOUqxOd\r\n0GeOY8B75nSPz1WFu6E3XfYZwZaAgU0Uvwu57kT5pM6wdD4dxcko5HE+JZyG\r\nBIJJ+5uIbg9/UnQEF583QciivKEeDbECT/BxYyvDzGEQHYQt/o6crwXq6Pnw\r\n8gOP5OfnzHvYXPdFZM9Cyetkl/GZT1/CbFFuZoVJLFaEKbY/S+IOLKZxNWIL\r\ngimpOPHRIa45WZ4RicYHaU0DxgRNpi2atqFWctpcR+eCTBWD2NTRTlCBIRPZ\r\ng0pWaiwuxHfO6PB5tJZyeIqrT5lRzyirtQsQBKrATHYxK7yI63cH2Af+gaJ7\r\nkQ30Nv8zZ/vPdUrB912yKLireN9m7jxA54noMBl7K7v9ZZ+2W+IcjXEMGeBa\r\nPUi4wB0mwFOJj67PkvHs4KmgROBmgesQ9PDUT+4q890pui8oqOxv2eP5QQu/\r\nUQuJVj5/LF5j7QUcLs2zHbNgTG+h+UIetxaNue0BxeOOcsCMDX0sSVoZXwBX\r\n9/O2amNLSCN7N7fRoEs1fcrFKYbLubWr1Hc=\r\n=G8vI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"ad2cead307da972a221ab10c6d07f8085423ec5e","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.13.1","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"16.15.1","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.1.3_1666810701273_0.3873184340273872","host":"s3://npm-registry-packages"}},"4.1.4":{"name":"stylis","version":"4.1.4","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.1.4","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"9cb60e7153d8ac6d02d773552bf51c7a0344535b","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.1.4.tgz","fileCount":16,"integrity":"sha512-USf5pszRYwuE6hg9by0OkKChkQYEXfkeTtm0xKw+jqQhwyjCVLdYyMBK7R+n7dhzsblAWJnGxju4vxq5eH20GQ==","signatures":[{"sig":"MEQCID4VEeBZggYWUKWe0v2ljJF5hTJUr1erdQr9T2gmTdJ/AiBnCIZMcKgWlS2dzD8fHXo8QvZtm7ApPQ6XTmZm9Jzcmg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":133557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkS2fnACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpCpg/7BPgAsMhfJdTdfqrPJ/e6mzr6HtQ5dVI2yWngt9uiNXzMDXy4\r\nDusKV2MPsQqcz5zOy0LP2LA/fdX/E7IfTPoXvCpPqIVmi1l4dvKZhI8VYyf6\r\ntOorHRx0gkRtihLFjn7Zt2SuGFS4L309RpUpUddC0TbNBc8Zgj6mHR+RUglv\r\nd9J24Lrnq6xvXWbgvqRqb9dZsZDDnUHLkaIh5nDPe6s2V6MCukSWq2iqYl2o\r\nGXyJAkademHErG5rsSy9eSEfgBzQgiLXs1xsS/kezJx7MIfZsocQ4ZEWle3X\r\n+YHezu2ZqpcxwU3TURlCHdO/Z4xXPOikNho19VCP0dm4AyRIbnW6naErrOvb\r\ny8B/BpIznGtb+GnEUOs020+QVizrHMc+vqYBOAXeGgUoyCkTHvT8eovE/Cxc\r\nycdpDLy6qnJe7nZ4lC0+CD1nyaGJfaGCN+cTjqDhXAwO8Yjhm82Ea9H4Mn9s\r\nYrb3yzIbBPF9S54tqXlFtvQPwGkKWdv5TYHyG1BUgUyxWlaQRu/vcNmL6hlZ\r\nB9iMTDY/HGGUQ7R6Fjo+TI8rc0hOcc7hDW5GK9YkQEHlF3jTlSgnPVvjxaoK\r\n/xbb5xdFa3P1TvbmEBv4KxGF+/cwwybAWhWaV4a84+aCXXaLJMHU5gwLRn5d\r\nQNG2PuSQcLGMX3AzF9ovWi8BGThLqiOhyxQ=\r\n=F41I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"1466416c28263fca038efc10fcda5b66acbe72e4","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"andarist","email":"mateuszburzynski@gmail.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.5.5","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"16.15.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.1.4_1682663398832_0.463242552125942","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"stylis","version":"4.2.0","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.2.0","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"79daee0208964c8fe695a42fcffcac633a211a51","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.2.0.tgz","fileCount":16,"integrity":"sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==","signatures":[{"sig":"MEUCICVbli7c3aI15+XQ6fMSSId3FY1ptqOcMAhPil9igKqQAiEA0jl5PqR1m/jonOywJFH6HyUolRFK8MV6ZepMPU2ESSo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134152},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"1bf92ea2338610a49e3e0ae06d9e6ed8f6f986a9","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"andarist","email":"mateuszburzynski@gmail.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.19.3","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.2.0_1683318203140_0.5458984762897365","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"stylis","version":"4.3.0","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.3.0","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"abe305a669fc3d8777e10eefcfc73ad861c5588c","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.3.0.tgz","fileCount":16,"integrity":"sha512-E87pIogpwUsUwXw7dNyU4QDjdgVMy52m+XEOPEKUn161cCzWjjhPSQhByfd1CcNvrOLnXQ6OnnZDwnJrz/Z4YQ==","signatures":[{"sig":"MEYCIQDgKar/hh3ONfuLZLaKs5uBbGpVpzOQBoKnMcMhiAyUcwIhAKArksIcU8RHQ+KXctnr290p13yF7obHAoWxgufqDFip","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138493},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"654cab0a877657636772febed68e21764fc6b5ee","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"andarist","email":"mateuszburzynski@gmail.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"6.7.0","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"11.15.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.3.0_1687857881066_0.9473252087014421","host":"s3://npm-registry-packages"}},"4.3.1":{"name":"stylis","version":"4.3.1","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.3.1","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"ed8a9ebf9f76fe1e12d462f5cc3c4c980b23a7eb","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.3.1.tgz","fileCount":16,"integrity":"sha512-EQepAV+wMsIaGVGX1RECzgrcqRRU/0sYOHkeLsZ3fzHaHXZy4DaOOX0vOlGQdlsjkh3mFHAIlVimpwAs4dslyQ==","signatures":[{"sig":"MEUCIBMZhXWvGs5/J3q5WMpUZ/q/hFYXNLHfNsEv9GiYUEnfAiEAkqtKvMd7A3XoOdVFIivzg+q1P6hjDHQwh/SCO3yP9vE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":138974},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"c1f81ff815527d51d791fee9456840e32230ab23","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"andarist","email":"mateuszburzynski@gmail.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"8.5.5","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"16.15.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.3.1_1703701978813_0.3593722399982573","host":"s3://npm-registry-packages"}},"4.3.2":{"name":"stylis","version":"4.3.2","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.3.2","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"8f76b70777dd53eb669c6f58c997bf0a9972e444","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.3.2.tgz","fileCount":16,"integrity":"sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==","signatures":[{"sig":"MEYCIQDhIQbq90h6Mb1C33dAurwYWAa5J7GfqoyT2eZYpoD4dQIhAJx4IB/1Xz0EIhagUXMiXPJAKzK+vOQoI2JFve6usNNy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":139160},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"0990417cefe8a4d01115613ccf44f5ae86040cd5","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"andarist","email":"mateuszburzynski@gmail.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"10.2.4","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"20.11.0","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.3.2_1713854278562_0.548978436199824","host":"s3://npm-registry-packages"}},"4.3.3":{"name":"stylis","version":"4.3.3","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.3.3","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"e43879afab38d0b6c18ac59e0977a0401889bcf9","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.3.3.tgz","fileCount":16,"integrity":"sha512-VtF42zBHvdPi561i9mAcPlWOUonfbCtXa7qdGI+Ro4qMP8TEb+7GpbGWD1+v2TS4nohQ0m8g1FhTVmRdcIsxdQ==","signatures":[{"sig":"MEUCIQCqSCRqLAGaIC+8cRUnQVqylxnSwnL02zh9mGUlbzNE5gIgGg1ITnZNhOf2T0l0i4FbzzVgAbKX35eJSepfgdQTzQk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":140416},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"0b51a356efa21b30069b807169bce056d94f34da","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"10.2.4","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"21.6.1","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.3.3_1724267297841_0.29303129982370013","host":"s3://npm-registry-packages"}},"4.3.4":{"name":"stylis","version":"4.3.4","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.3.4","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"ca5c6c4a35c4784e4e93a2a24dc4e9fa075250a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.3.4.tgz","fileCount":16,"integrity":"sha512-osIBl6BGUmSfDkyH2mB7EFvCJntXDrLhKjHTRj/rK6xLH0yuPrHULDRQzKokSOD4VoorhtKpfcfW1GAntu8now==","signatures":[{"sig":"MEUCID+pPtBOiSYvMzYBHa72ryBP3Ruueqg2K5eEWf2Bqd3rAiEAmFsfzooipYp3YVtDLcW1MBXwu6qHRikFg0fN5qQU9ko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":141153},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"f7bbabecb4801659bf6c3223b52d5dc7460ca6f3","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"thysultan","email":"sultantarimo@me.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"10.2.4","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"21.6.1","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.3.4_1724340136198_0.12972651437336236","host":"s3://npm-registry-packages"}},"4.3.5":{"name":"stylis","version":"4.3.5","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","_id":"stylis@4.3.5","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"homepage":"https://github.com/thysultan/stylis.js","bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"esm":{"cjs":true,"cache":false},"nyc":{"exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"],"temp-dir":"./coverage/.nyc_output"},"dist":{"shasum":"432cc99c81e28d7062c88d979d2163891e860489","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.3.5.tgz","fileCount":16,"integrity":"sha512-K7npNOKGRYuhAFFzkzMGfxFDpN6gDwf8hcMiE+uveTVbBgm93HrNP3ZDUpKqzZ4pG7TP6fmb+EMAQPjq9FqqvA==","signatures":[{"sig":"MEYCIQCSoQhGoP2W4GDn0Gt7gmA1oxBbmzfxTwwRO6H+g74vQwIhAIS9xkkDS9gdKHasiFXcvP/isGH3Q6eU7Jhsqi6PpCOi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":141981},"main":"dist/umd/stylis.js","type":"module","module":"dist/stylis.mjs","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"gitHead":"1596e54835040739da39a4665609f635ba52c788","scripts":{"lint":"eslint ./","spec":"mocha --harmony --require esm script/setup.js --recursive test","test":"nyc npm run spec","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","pretest":"npm run lint && npm run build","prebuild":"rimraf dist","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"_npmUser":{"name":"andarist","email":"mateuszburzynski@gmail.com"},"repository":{"url":"git+https://github.com/thysultan/stylis.js.git","type":"git"},"_npmVersion":"10.7.0","description":"A Light–weight CSS Preprocessor","directories":{},"sideEffects":false,"_nodeVersion":"18.20.3","eslintConfig":{"env":{"es6":true,"node":true,"browser":true,"commonjs":true},"rules":{"semi":["error","never"],"indent":["error","tab",{"SwitchCase":1}],"quotes":["error","single"],"eol-last":["error"],"no-console":["off"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"no-redeclare":["off"],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-cond-assign":["off"],"no-else-return":["error"],"no-fallthrough":["off"],"linebreak-style":["error","unix"],"func-call-spacing":["error","never"],"no-unsafe-finally":["off"],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"]},"extends":"eslint:recommended","parserOptions":{"sourceType":"module","ecmaVersion":7,"ecmaFeatures":{"impliedStrict":true}}},"eslintIgnore":["script/","test/","dist/","docs/"],"react-native":"./index.js","_hasShrinkwrap":false,"devDependencies":{"esm":"3.2.25","nyc":"15.1.0","chai":"4.3.4","mocha":"9.1.1","eslint":"6.8.0","rimraf":"3.0.2","rollup":"1.28.0","stylis":"./","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3"},"_npmOperationalInternal":{"tmp":"tmp/stylis_4.3.5_1736752295152_0.823679319866992","host":"s3://npm-registry-packages-npm-production"}},"4.3.6":{"name":"stylis","version":"4.3.6","license":"MIT","description":"A Light–weight CSS Preprocessor","homepage":"https://github.com/thysultan/stylis.js","author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"repository":{"type":"git","url":"git+https://github.com/thysultan/stylis.js.git"},"bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"sideEffects":false,"type":"module","main":"dist/umd/stylis.js","module":"dist/stylis.mjs","react-native":"./index.js","exports":{".":{"import":"./index.js","require":"./dist/umd/stylis.js"},"./package.json":"./package.json"},"scripts":{"lint":"eslint ./","pretest":"npm run lint && npm run build","test":"nyc npm run spec","spec":"mocha --harmony --require esm script/setup.js --recursive test","prebuild":"rimraf dist","build":"rollup --config script/build.js --configSrc ./","start":"npm run build -- --watch","prepare":"npm run build","postversion":"git push --follow-tags && npm publish","release-major":"npm version major -m '%s'","release-minor":"npm version minor -m '%s'","release-patch":"npm version patch -m '%s'"},"devDependencies":{"chai":"4.3.4","eslint":"6.8.0","esm":"3.2.25","mocha":"9.1.1","nyc":"15.1.0","rimraf":"3.0.2","rollup":"1.28.0","rollup-plugin-size":"0.2.1","rollup-plugin-terser":"5.1.3","stylis":"./"},"nyc":{"temp-dir":"./coverage/.nyc_output","exclude":["**/dist/","**/test/","**/script/"],"reporter":["lcov","text"]},"esm":{"cjs":true,"cache":false},"eslintIgnore":["script/","test/","dist/","docs/"],"eslintConfig":{"env":{"commonjs":true,"browser":true,"node":true,"es6":true},"extends":"eslint:recommended","parserOptions":{"ecmaVersion":7,"sourceType":"module","ecmaFeatures":{"impliedStrict":true}},"rules":{"indent":["error","tab",{"SwitchCase":1}],"linebreak-style":["error","unix"],"quotes":["error","single"],"semi":["error","never"],"no-cond-assign":["off"],"no-redeclare":["off"],"no-fallthrough":["off"],"no-console":["off"],"no-unsafe-finally":["off"],"no-shadow-restricted-names":["error"],"no-whitespace-before-property":["error"],"no-else-return":["error"],"eol-last":["error"],"func-call-spacing":["error","never"],"brace-style":["error","1tbs",{"allowSingleLine":true}],"require-jsdoc":["error",{"require":{"FunctionDeclaration":true}}],"no-trailing-spaces":["error",{"skipBlankLines":true}],"no-constant-condition":["off"]}},"_id":"stylis@4.3.6","gitHead":"2e3828995507e1b68e01c21ee9f35501a48355f0","_nodeVersion":"18.20.3","_npmVersion":"10.7.0","dist":{"integrity":"sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==","shasum":"7c7b97191cb4f195f03ecab7d52f7902ed378320","tarball":"https://mirrors.huaweicloud.com/repository/npm/stylis/-/stylis-4.3.6.tgz","fileCount":16,"unpackedSize":142098,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQCBqrWutaVpMFGMK9K8tHyECCHMQACUMZy/R3ZPlK6SFgIhAOUT/Uc1Sln9jbCmANao2iWjLtAxnhCQoMDI3zrCYhJs"}]},"_npmUser":{"name":"andarist","email":"mateuszburzynski@gmail.com"},"directories":{},"maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/stylis_4.3.6_1738838832399_0.21950967975737234"},"_hasShrinkwrap":false}},"time":{"created":"2016-11-27T07:56:53.578Z","modified":"2025-02-06T10:47:12.732Z","0.1.0":"2016-11-27T07:56:53.578Z","0.1.1":"2016-11-27T08:23:13.325Z","0.1.2":"2016-11-27T09:05:23.094Z","0.1.3":"2016-11-27T09:42:07.877Z","0.1.4":"2016-11-27T09:59:41.110Z","0.1.5":"2016-11-27T10:06:40.699Z","0.1.6":"2016-11-27T10:28:02.979Z","0.2.0":"2016-12-02T12:53:38.813Z","0.3.0":"2016-12-02T17:04:53.167Z","0.4.0":"2016-12-03T11:43:48.964Z","0.6.0":"2016-12-03T18:21:50.377Z","0.6.1":"2016-12-03T18:36:23.636Z","0.6.2":"2016-12-04T14:22:52.650Z","0.6.3":"2016-12-04T15:54:56.031Z","0.6.4":"2016-12-05T00:38:26.152Z","0.6.5":"2016-12-06T03:32:18.969Z","0.6.6":"2016-12-06T16:25:36.904Z","0.6.7":"2016-12-07T19:38:23.280Z","0.6.8":"2016-12-08T10:43:19.423Z","0.7.0":"2016-12-12T00:07:08.800Z","0.7.1":"2016-12-16T23:23:08.577Z","0.8.0":"2016-12-19T07:09:02.776Z","0.8.1":"2016-12-19T18:33:09.841Z","0.8.2":"2016-12-20T04:02:21.003Z","0.8.3":"2016-12-20T14:32:43.616Z","0.9.0":"2017-01-06T04:57:37.905Z","0.9.1":"2017-01-06T12:43:25.873Z","0.9.2":"2017-01-07T02:08:13.797Z","0.10.0":"2017-01-16T19:39:38.062Z","0.11.0":"2017-01-18T09:08:19.207Z","0.11.1":"2017-01-20T17:23:24.312Z","0.12.0":"2017-01-25T15:41:16.372Z","1.0.0":"2017-01-27T11:13:54.059Z","1.0.1":"2017-01-31T01:43:17.721Z","1.0.2":"2017-01-31T12:41:50.276Z","1.0.3":"2017-02-01T18:34:19.376Z","1.0.4":"2017-02-02T12:32:20.916Z","1.0.5":"2017-02-06T20:57:22.580Z","1.0.6":"2017-02-06T23:33:59.883Z","1.0.7":"2017-02-07T13:59:14.046Z","1.0.8":"2017-02-08T19:34:06.721Z","1.0.9":"2017-02-09T03:34:22.299Z","1.0.10":"2017-02-09T21:30:35.792Z","1.1.0":"2017-02-10T15:51:24.577Z","1.1.1":"2017-02-11T02:34:12.807Z","1.1.2":"2017-02-13T20:11:40.371Z","1.1.3":"2017-02-13T20:35:57.583Z","1.1.4":"2017-02-16T01:38:31.988Z","1.1.5":"2017-02-16T01:56:58.273Z","1.1.6":"2017-02-16T05:49:02.255Z","1.1.7":"2017-02-16T07:50:13.288Z","1.1.8":"2017-02-16T08:46:02.172Z","1.1.9":"2017-02-16T19:58:46.108Z","1.1.10":"2017-02-16T20:39:53.427Z","1.1.11":"2017-02-18T07:36:44.041Z","1.1.12":"2017-02-21T09:01:50.354Z","1.1.13":"2017-02-24T01:12:56.438Z","1.2.0":"2017-03-03T06:21:14.669Z","1.2.1":"2017-03-04T00:51:56.212Z","1.2.2":"2017-03-05T02:02:20.407Z","1.2.3":"2017-03-05T04:08:17.101Z","1.2.4":"2017-03-09T14:22:49.092Z","1.2.5":"2017-03-10T23:49:21.822Z","1.2.6":"2017-03-14T12:08:44.480Z","1.2.7":"2017-03-25T14:38:54.778Z","1.2.8":"2017-03-26T11:20:38.334Z","2.0.0":"2017-04-01T20:36:55.284Z","2.0.1":"2017-04-05T11:29:12.161Z","2.0.2":"2017-04-05T17:53:00.156Z","2.0.3":"2017-04-14T16:03:02.242Z","2.0.4":"2017-04-23T16:51:16.692Z","2.0.5":"2017-05-10T03:01:58.255Z","2.0.6":"2017-05-11T01:55:33.923Z","2.0.7":"2017-05-11T02:10:17.004Z","2.0.8":"2017-05-11T07:31:02.814Z","2.0.9":"2017-05-13T16:59:15.178Z","2.0.10":"2017-05-13T18:03:52.408Z","2.0.11":"2017-05-15T11:35:59.953Z","2.0.12":"2017-05-18T19:10:54.748Z","3.0.0":"2017-05-24T14:20:51.927Z","3.0.1":"2017-05-25T13:03:50.071Z","3.0.2":"2017-05-25T15:10:23.266Z","3.0.3":"2017-05-25T18:08:17.377Z","3.0.4":"2017-05-25T18:22:49.433Z","3.0.5":"2017-05-28T18:26:00.678Z","3.0.6":"2017-05-29T18:15:35.134Z","3.0.7":"2017-05-30T01:39:05.078Z","3.0.8":"2017-05-30T09:18:40.552Z","3.0.9":"2017-05-30T09:29:14.202Z","3.0.10":"2017-05-30T11:52:05.151Z","3.0.11":"2017-05-31T04:29:52.061Z","3.0.12":"2017-05-31T17:27:13.423Z","3.0.13":"2017-06-02T00:50:30.470Z","3.0.14":"2017-06-02T10:19:10.132Z","3.0.15":"2017-06-02T14:21:14.407Z","3.0.16":"2017-06-05T09:40:17.296Z","3.0.17":"2017-06-06T21:15:09.633Z","3.0.18":"2017-06-07T02:49:41.152Z","3.0.19":"2017-06-07T14:35:32.875Z","3.1.0":"2017-06-07T22:03:28.941Z","3.1.1":"2017-06-07T22:31:18.946Z","3.1.2":"2017-06-08T03:00:30.530Z","3.1.3":"2017-06-08T20:03:15.232Z","3.1.4":"2017-06-08T21:14:38.005Z","3.1.5":"2017-06-09T16:44:18.097Z","3.1.6":"2017-06-11T23:15:10.831Z","3.1.7":"2017-06-12T15:42:12.188Z","3.1.8":"2017-06-16T17:29:12.413Z","3.1.9":"2017-06-20T02:44:01.559Z","3.2.0":"2017-06-30T12:28:42.185Z","3.2.1":"2017-07-01T18:53:12.710Z","3.2.2":"2017-07-04T07:29:49.610Z","3.2.3":"2017-07-07T00:36:14.594Z","3.2.4":"2017-07-17T14:09:12.305Z","3.2.5":"2017-07-19T08:15:26.872Z","3.2.6":"2017-07-19T17:08:30.849Z","3.2.7":"2017-07-22T11:46:47.842Z","3.2.8":"2017-07-24T16:46:51.294Z","3.2.9":"2017-08-20T15:30:36.232Z","3.2.10":"2017-08-23T16:59:21.858Z","3.2.11":"2017-08-24T04:10:26.785Z","3.2.12":"2017-08-27T06:12:03.129Z","3.2.13":"2017-08-27T07:16:45.583Z","3.2.14":"2017-08-30T08:15:48.267Z","3.2.15":"2017-08-31T10:52:47.319Z","3.2.16":"2017-09-08T10:36:40.919Z","3.2.17":"2017-09-21T11:24:03.814Z","3.2.18":"2017-09-25T10:53:19.367Z","3.2.19":"2017-09-28T21:45:55.537Z","3.2.20":"2017-10-06T14:47:08.157Z","3.3.0":"2017-10-08T01:25:01.634Z","3.3.1":"2017-10-09T20:41:13.798Z","3.3.2":"2017-10-11T17:06:56.820Z","3.4.0":"2017-10-20T21:17:26.691Z","3.4.1":"2017-11-11T04:28:41.013Z","3.4.2":"2017-11-13T16:11:52.405Z","3.4.3":"2017-11-14T16:03:57.678Z","3.4.4":"2017-11-22T14:31:11.050Z","3.4.5":"2017-11-25T16:35:26.283Z","3.4.6":"2018-01-08T01:28:06.225Z","3.4.7":"2018-01-08T08:44:11.798Z","3.4.8":"2018-01-11T11:13:49.893Z","3.4.9":"2018-02-15T15:48:14.289Z","3.4.10":"2018-02-17T13:38:20.951Z","3.5.0":"2018-03-08T18:46:12.354Z","3.5.1":"2018-06-19T07:57:56.118Z","3.5.2":"2018-07-12T18:57:24.267Z","3.5.3":"2018-07-13T09:07:05.316Z","3.5.4":"2018-11-09T18:17:55.287Z","4.0.0":"2020-04-23T12:39:38.910Z","4.0.1":"2020-05-23T03:18:52.021Z","4.0.2":"2020-06-25T21:18:32.488Z","4.0.3":"2020-09-14T21:11:52.433Z","4.0.4":"2020-12-01T15:19:03.433Z","4.0.5":"2020-12-02T13:44:05.694Z","4.0.6":"2020-12-02T15:06:39.699Z","4.0.7":"2021-01-29T07:47:13.842Z","4.0.8":"2021-03-21T18:38:46.265Z","4.0.9":"2021-03-25T05:49:44.929Z","4.0.10":"2021-04-07T12:23:04.371Z","4.0.11":"2021-12-09T23:58:31.740Z","4.0.12":"2021-12-10T17:26:19.789Z","4.0.13":"2021-12-11T14:13:51.746Z","4.1.0":"2022-04-03T08:49:52.697Z","4.1.1":"2022-04-23T09:54:40.999Z","4.1.2":"2022-09-09T15:47:25.933Z","4.1.3":"2022-10-26T18:58:21.459Z","4.1.4":"2023-04-28T06:29:59.081Z","4.2.0":"2023-05-05T20:23:23.330Z","4.3.0":"2023-06-27T09:24:41.209Z","4.3.1":"2023-12-27T18:32:59.012Z","4.3.2":"2024-04-23T06:37:58.714Z","4.3.3":"2024-08-21T19:08:18.119Z","4.3.4":"2024-08-22T15:22:16.374Z","4.3.5":"2025-01-13T07:11:35.342Z","4.3.6":"2025-02-06T10:47:12.580Z"},"bugs":{"url":"https://github.com/thysultan/stylis.js/issues"},"author":{"name":"Sultan Tarimo","email":"sultantarimo@me.com"},"license":"MIT","homepage":"https://github.com/thysultan/stylis.js","repository":{"type":"git","url":"git+https://github.com/thysultan/stylis.js.git"},"description":"A Light–weight CSS Preprocessor","maintainers":[{"name":"andarist","email":"mateuszburzynski@gmail.com"},{"name":"thysultan","email":"sultantarimo@me.com"}],"readme":"# STYLIS\n\n[![stylis](https://stylis.js.org/assets/logo.svg)](https://github.com/thysultan/stylis.js)\n\nA Light–weight CSS Preprocessor.\n\n[![Coverage](https://coveralls.io/repos/github/thysultan/stylis.js/badge.svg?branch=master)](https://coveralls.io/github/thysultan/stylis.js)\n[![Size](https://badgen.net/bundlephobia/minzip/stylis)](https://bundlephobia.com/result?p=stylis)\n[![Licence](https://badgen.net/badge/license/MIT/blue)](https://github.com/thysultan/stylis.js/blob/master/LICENSE)\n[![NPM](https://badgen.net/npm/v/stylis)](https://www.npmjs.com/package/stylis)\n\n## Installation\n\n* Use a Direct Download: ``\n* Use a CDN: ``\n* Use NPM: `npm install stylis --save`\n\n## Features\n\n- nesting `a { &:hover {} }`\n- selector namespacing\n- vendor prefixing (flex-box, etc...)\n- minification\n- esm module compatible\n- tree-shaking-able\n\n## Abstract Syntax Structure\n\n```js\nconst declaration = {\n\tvalue: 'color:red;',\n\ttype: 'decl',\n\tprops: 'color',\n\tchildren: 'red',\n\tline: 1, column: 1\n}\n\nconst comment = {\n\tvalue: '/*@noflip*/',\n\ttype: 'comm',\n\tprops: '/',\n\tchildren: '@noflip',\n\tline: 1, column: 1\n}\n\nconst ruleset = {\n\tvalue: 'h1,h2',\n\ttype: 'rule',\n\tprops: ['h1', 'h2'],\n\tchildren: [/* ... */],\n\tline: 1, column: 1\n}\n\nconst atruleset = {\n\tvalue: '@media (max-width:100), (min-width:100)',\n\ttype: '@media',\n\tprops: ['(max-width:100)', '(min-width:100)'],\n\tchildren: [/* ... */],\n\tline: 1, column: 1\n}\n```\n\n## Example:\n\n```js\nimport {compile, serialize, stringify} from 'stylis'\n\nserialize(compile(`h1{all:unset}`), stringify)\n```\n\n### Compile\n\n```js\ncompile('h1{all:unset}') === [{value: 'h1', type: 'rule', props: ['h1'], children: [/* ... */]}]\ncompile('--foo:unset;') === [{value: '--foo:unset;', type: 'decl', props: '--foo', children: 'unset'}]\n```\n\n### Tokenize\n\n```js\ntokenize('h1 h2 h3 [h4 h5] fn(args) \"a b c\"') === ['h1', 'h2', 'h3', '[h4 h5]', 'fn', '(args)', '\"a b c\"']\n```\n\n### Serialize\n\n```js\nserialize(compile('h1{all:unset}'), stringify)\n```\n\n### Vendor Prefixing\n\n```js\nimport {compile, serialize, stringify, middleware, prefixer } from 'stylis';\n\nserialize(compile('div{display:flex;}'), middleware([prefixer, stringify]))\n```\n\n\n## Middleware\n\nThe middleware helper is a convenient helper utility, that for all intents and purposes you can do without if you intend to implement your own traversal logic. The `stringify` middleware is one such middleware that can be used in conjunction with it.\n\nElements passed to middlewares have a `root` property that is the immediate root/parent of the current element **in the compiled output**, so it references the parent in the already expanded CSS-like structure. Elements have also `parent` property that is the immediate parent of the current element **from the input structure** (structure representing the input string).\n\n### Traversal\n\n```js\nserialize(compile('h1{all:unset}'), middleware([(element, index, children) => {\n\tassert(children === element.root.children && children[index] === element.children)\n}, stringify])) === 'h1{all:unset;}'\n```\n\nThe abstract syntax tree also includes an additional `return` property for more niche uses.\n\n### Prefixing\n\n```js\nserialize(compile('h1{all:unset}'), middleware([(element, index, children, callback) => {\n\tif (element.type === 'decl' && element.props === 'all' && element.children === 'unset')\n\t\telement.return = 'color:red;' + element.value\n}, stringify])) === 'h1{color:red;all:unset;}'\n```\n\n```js\nserialize(compile('h1{all:unset}'), middleware([(element, index, children, callback) => {\n\tif (element.type === 'rule' && element.props.indexOf('h1') > -1)\n\t\treturn serialize([{...element, props: ['h2', 'h3']}], callback)\n}, stringify])) === 'h2,h3{all:unset;}h1{all:unset;}'\n```\n\n### Reading\n\n```js\nserialize(compile('h1{all:unset}'), middleware([stringify, (element, index, children) => {\n\tassert(element.return === 'h1{all:unset;}')\n}])) === 'h1{all:unset;color:red;}'\n```\n\nThe middlewares in [src/Middleware.js](src/Middleware.js) dive into tangible examples of how you might implement a middleware, alternatively you could also create your own middleware system as `compile` returns all the nessessary structure to fork from.\n\n## Variables\n\nCSS variables are supported but a note should be made about the exotic use of css variables. The css spec mentions the following\n\n>The allowed syntax for custom properties is extremely permissive. The production matches any sequence of one or more tokens, so long as the sequence does not contain , , unmatched <)-token>, <]-token>, or <}-token>, or top-level tokens or tokens with a value of \"!\".\n\nThat is to say css variables according to the spec allows: `--foo: if(x > 5) this.width = 10;` and while this value is obviously useless as a variable, and would be invalid in any normal property, it still might be read and acted on by JavaScript and this is supported by Stylis, however things become slightly undefined when we start to include the `{` and `}` productions in our use of exotic css variables. \n\nFor example consider the following: `--foo: {};`\n\nWhile this is valid CSS and supported. It is unclear what should happen when the rule collides with the implicit block termination rule that allows i.e `h1{color:red}`(notice the omitted semicolon) to also be a valid CSS production. This results in the following contradiction in: `h1{--example: {}` is it to be treated as `h1{--foo:{;}` or `h1{--foo:{}` the later of which is an unterminated block or in the following: `h1{--foo:{} h1{color:red;}` should it be `h1 {--foo:{}h1{color:red;};` where `{}h1{color:red;` is part of the css variable `--foo` and not a new rule or should it be something else? \n\nNevertheless Stylis still supports the exotic forms highlighted in the spec, however you should consider it as a general rule to delimit such exotic uses of variables in strings or parentheses i.e: `h1{--foo:'{'}` or `h1{--foo:({)}`. \n\n## Benchmark\n\nStylis is at-least 2X faster than its predecesor.\n\n### License\n\nStylis is [MIT licensed](./LICENSE).\n","readmeFilename":"README.md","users":{"wolfram77":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/48/84/d257a6885ecb95355ddfdced1fda7fdc8321035a84aab5931888099cb181f275c2ab3b3de053107f89777f41fd3cf88657e0aa6035bbd474c0665b3fa470 b/frontend/.npm-cache/_cacache/content-v2/sha512/48/84/d257a6885ecb95355ddfdced1fda7fdc8321035a84aab5931888099cb181f275c2ab3b3de053107f89777f41fd3cf88657e0aa6035bbd474c0665b3fa470 new file mode 100644 index 0000000..5a8879b Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/48/84/d257a6885ecb95355ddfdced1fda7fdc8321035a84aab5931888099cb181f275c2ab3b3de053107f89777f41fd3cf88657e0aa6035bbd474c0665b3fa470 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/4a/9d/5a6e52748af0e44b38dc68977112e9cde7f5ef92c149dac30115fabac74af285057fd9bfcac057b6d5c329987b4f3928a3f0af7dff049fa04b9339b9ae31 b/frontend/.npm-cache/_cacache/content-v2/sha512/4a/9d/5a6e52748af0e44b38dc68977112e9cde7f5ef92c149dac30115fabac74af285057fd9bfcac057b6d5c329987b4f3928a3f0af7dff049fa04b9339b9ae31 new file mode 100644 index 0000000..aff89f4 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/4a/9d/5a6e52748af0e44b38dc68977112e9cde7f5ef92c149dac30115fabac74af285057fd9bfcac057b6d5c329987b4f3928a3f0af7dff049fa04b9339b9ae31 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/4b/8b/c90e31c73016a266e4fd34f6fad7a09298b7fad7c8dac2dbf7b2e7cb97a8af2bc5a8723028e7c717c1b455d5c82ac47d106effa252dea6d397aa11ad8844 b/frontend/.npm-cache/_cacache/content-v2/sha512/4b/8b/c90e31c73016a266e4fd34f6fad7a09298b7fad7c8dac2dbf7b2e7cb97a8af2bc5a8723028e7c717c1b455d5c82ac47d106effa252dea6d397aa11ad8844 new file mode 100644 index 0000000..353dead Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/4b/8b/c90e31c73016a266e4fd34f6fad7a09298b7fad7c8dac2dbf7b2e7cb97a8af2bc5a8723028e7c717c1b455d5c82ac47d106effa252dea6d397aa11ad8844 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/4f/8b/479b8376ef3f9183b06595974d3d395041bba97de29b6b42580b4b07b2c3f10dfae52a2bd97aeec52d4f3901473f11ebcb7df1e9c87702a67514f88bba18 b/frontend/.npm-cache/_cacache/content-v2/sha512/4f/8b/479b8376ef3f9183b06595974d3d395041bba97de29b6b42580b4b07b2c3f10dfae52a2bd97aeec52d4f3901473f11ebcb7df1e9c87702a67514f88bba18 new file mode 100644 index 0000000..6af7646 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/4f/8b/479b8376ef3f9183b06595974d3d395041bba97de29b6b42580b4b07b2c3f10dfae52a2bd97aeec52d4f3901473f11ebcb7df1e9c87702a67514f88bba18 @@ -0,0 +1 @@ +{"_id":"@ctrl/tinycolor","_rev":"54-eead8adaa4655059566c3c1439fdd7ef","name":"@ctrl/tinycolor","dist-tags":{"latest":"4.2.0"},"versions":{"1.0.0":{"name":"@ctrl/tinycolor","version":"1.0.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@1.0.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"faf5cc00ce2d6e96cc6679876f82f508bfce6eed","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-1.0.0.tgz","fileCount":35,"integrity":"sha512-eQYPYnnp77hfaIRqNC58QI3cgkhiKbS1nbnFt7zEYVYjC693A1JibHoJs9xca6pBYE0Acr0q7EPVbkRiZKQfPg==","signatures":[{"sig":"MEUCIQDqldsoIXMKTgAsnwCCv8Do5HSyPC59Xlg8bjAlL/0K9QIgYrl1y10zJq4+ZSaUFefu0Z5J6WKiDE5+KueBhRdGpMI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198468,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5r2LCRA9TVsSAnZWagAAg6oP/1DKs1KDr4OboMRBc849\nPqH9E4bhgafTc1XOBZvln6nNsd2AS1VgmmEHsCXbA2IttI3+llv3LU5R2GFd\nr4issROxfsVWKAAC5Z3ScXALBgZ4hAAldkS3+kmxAZZf8O29X+++2yS0Y8Ly\nwVSmWcNe7N5UUVtwQveBdhi1vCuqt1deYqPW+AjH6LfpVHL4OczkKwOmhMsr\nxCcxG9DPfbos77n8GMyE1MSgU9bktEoNM4PeYHXLPNhOR6kq9Kzn//GMI/jO\noBBVJu4LQWMF3Hdq174cJ9U14Rg+ztDXrKPfZ/pJGLK8cop5qb9PO8Rv9naP\nV1EV5BTpzHZzV3+kMdRsZwUOyNbTLMesoxsgVS/p0tnx9VF8x6GG4KcMI0z7\n5h3e2opZgVTTjiQkCMJydP2xbZjAlExN1MjrYQgAKc8IrftZTL+DLjSAq2XO\nu87mWtTXGNPPrdQmVwT8EjVlCfoEZITkeeWZh4NMcJz8Gn6vfcMv9lY5fhLn\nl8JdEfQ1p0jjgFR4PlSFp+JuebEPatcyXWTrBe5WIDnHhWfdmpXa/E/LFOPc\nWtYDvQKuWSSxAJiCUodCusaHt2YeYfnK1TdPBsyiGWsi/lYVEOvXUIf0k2az\nAnOmI1Mi5TeTIqjXvCtn4AniT4O3yjTdgZfBCBQJF/gfCRL3dZzx+0pUegFE\ns1E2\r\n=v1/e\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"],"coveragePathIgnorePatterns":["/node_modules/","/test/"]},"main":"./public_api.js","husky":{"hooks":{"commit-msg":"npm run commitlint"}},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./bundles/tinycolor.es2015.js","engines":{"node":">=8.0.0"},"gitHead":"2733da4cd3402e2f41b4c5efe0cc5cff9a39077b","release":{"branch":"master"},"scripts":{"lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"tsc -p tsconfig.json && tsc -p tsconfig.esm.json && ts-node ./build.ts","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","test:prod":"npm run test -- --coverage --no-cache","build:docs":"typedoc --out docs --target es6 --theme minimal --mode file src && touch docs/.nojekyll","commitlint":"commitlint -e $GIT_PARAMS","test:watch":"jest --watch","semantic-release":"cd dist/package-dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"5.6.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"_nodeVersion":"10.0.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^22.4.3","husky":"^1.0.0-rc.2","rimraf":"^2.6.2","rollup":"^0.58.2","tslint":"^5.9.1","ts-jest":"^22.4.4","ts-node":"^6.0.2","typedoc":"^0.11.1","fs-extra":"^5.0.0","prettier":"^1.12.1","commitizen":"^2.9.6","typescript":"^2.8.3","@types/jest":"^22.2.3","@types/node":"^10.0.0","@commitlint/cli":"^6.1.3","@types/fs-extra":"^5.0.2","semantic-release":"^15.1.7","travis-deploy-once":"^5.0.0","tslint-config-prettier":"^1.12.0","tslint-config-standard":"^7.0.0","rollup-plugin-sourcemaps":"^0.4.2","cz-conventional-changelog":"^2.1.0","@commitlint/config-conventional":"^6.1.3"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_1.0.0_1525071242678_0.44458066670507246","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"@ctrl/tinycolor","version":"1.1.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@1.1.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"d4989005e0dc8c19ee257dcb74631000912d844a","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-1.1.0.tgz","fileCount":41,"integrity":"sha512-Tsd2Q5+zY1m+h2j3KRLR9YXwpAlWl5wm2jsmnIlLd+hMcBARU/s9pZpmSB4zVXenlGGavEuo2UozfEHs5JMXPQ==","signatures":[{"sig":"MEYCIQCel75Xkf4Dtr+p5Jus8mlqu0A+LPzyhZLyFhJuEu5MLQIhAOrC5IxBbdEIXVzTlzTsUSpvB0BLFWkZiTFY+u8NeZme","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":258595,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6K1UCRA9TVsSAnZWagAAbLYP/2bVlhMcQLsfsQupIdan\nLx+s+PMvSnkypmTjWqWkSGLd0YoOIhsELLZXElO/v/+ZA5KNadveXOArkUf8\nX8JTblytpuxIPygRNtMx6LsfVkvAV3zfOIxKPYLkKcM/+AbdLG9n2l/L9DIM\nVxQpzxFyhBOH7vV044n7x3DpXQ4ZsHrHD9t7MqSZWGFj5xwXYYhoXODKOvB6\nucDKhft+8MWwMXRb8ZfVJVB+KIPzRuPmgEBMbXEAaMi+Rcl9lNW/KPDRj7yE\nlKjD7Te3hXIDSCb16vwlPNgfuaoeKt2C9RFHi3NnUNshUvixIZe+K0esN2bh\nuLLrMjNtsakgejRElVwOlC0efguM6V/Ynot5sXTw7I3nGi0T0E5cOMDbg5d/\nJ8uDZFWzJrclcWRpc3FMfwXUFgIr6s+0KB156MCmH2Ilw4X4Vo+pXta6dABI\n9svdd8qjJg5seseR3IgUz6Ruwn4nKNKnENdtcDXByOgDdNjCF0ttg5JNZ9Ca\ntHj3f4XDMTpHvBLDPGkkpB3szYSklGxmoWj5Q0xxgYIoU9N6kfJlv5NWKoHz\nWhU083Eb9tsS/EqD5fIVw9tPzq9tI4GZurt81Veh17WFk9fwcsRYlPcP2sl0\nT019Q0k1WNdRsndpru2Pl0S3MHKrD23wE5osfY37RFZjdjlBtgVdkmhrlfYJ\nuPhK\r\n=56VS\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"],"coveragePathIgnorePatterns":["/node_modules/","/test/"]},"main":"./public_api.js","husky":{"hooks":{"commit-msg":"npm run commitlint"}},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./bundles/tinycolor.es2015.js","engines":{"node":">=8.0.0"},"gitHead":"144e262b4533741b6c38f5092bc194ba5f495fdf","release":{"branch":"master"},"scripts":{"lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"tsc -p tsconfig.json && tsc -p tsconfig.esm.json && ts-node ./build.ts","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","test:prod":"npm run test -- --coverage --no-cache","build:docs":"typedoc --out docs --target es6 --theme minimal --mode file src && touch docs/.nojekyll","commitlint":"commitlint -e $GIT_PARAMS","test:watch":"jest --watch","semantic-release":"cd dist/package-dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"5.6.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"22.4.3","husky":"1.0.0-rc.2","rimraf":"2.6.2","rollup":"0.58.2","tslint":"5.9.1","ts-jest":"22.4.4","ts-node":"6.0.2","typedoc":"0.11.1","fs-extra":"6.0.0","prettier":"1.12.1","commitizen":"2.9.6","typescript":"2.8.3","@types/jest":"22.2.3","@types/node":"10.0.1","@commitlint/cli":"6.1.3","@types/fs-extra":"5.0.2","semantic-release":"15.1.8","travis-deploy-once":"5.0.0","tslint-config-prettier":"1.12.0","tslint-config-standard":"7.0.0","rollup-plugin-sourcemaps":"0.4.2","cz-conventional-changelog":"2.1.0","@commitlint/config-conventional":"6.1.3"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_1.1.0_1525198161764_0.27906737334745824","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"@ctrl/tinycolor","version":"1.1.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@1.1.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"f1b6b781adf1782ed48ff693bd395aa00eb6de0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-1.1.1.tgz","fileCount":41,"integrity":"sha512-XHG3hTNl62fHlrX8M8nJ/AwwJMU/yFH4LHGsKfE+67jKDjYHw/8AsHL1e0Z7Uzk2nXwP9IpLAVySCXNBV2IbZQ==","signatures":[{"sig":"MEUCIEGBqhIpNjuBk3QtuEjwOyppvK+VBzIyZ3zwOz4e4Vv6AiEA4iQIlMJpx20N06379A8bSxwrKOhs/g7H6GR7LXAS6qw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":259415,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6ekDCRA9TVsSAnZWagAA9SYP/0Sljn6A38zQ4sxW6ku9\nxuLVC/bhM2vtllFuXxcCh7Q106LKYlmV7ZzDQqCW+sP/LxxhE0HNtegfXB5E\nRP7ttSqPwE7dY/xm+vmHiSdRJFi4NOWl6BI+l17NjFTbWX0toMxh/8AF7RnS\nNcFp2zed+3EGgU+YV8IFL6bAv3erXcZedfpKiBbK+3OcJvQxPNIEKDnbomAc\n1H6LsBCxz7Vf6It9OYno/6fB8XLrws9hJWbEcJf/lTWteSidi+iiDD0RlYqp\nXyGnbTQKtxizBmHi1fqZtLGrmeSXZWGmcTd/D7YszWZtAi7yHYF4gV7RFzqG\niI8J/GvAvxsqc/jlbHPkWC+Y6KnxL3oy9aPtLrMqdXI7W9Xeltlp7jE0hsVQ\nO5B4VXHq/E39RZpFVnkhg1uh3s9kbiaHhS6QwIiK+Dc8POO762XmrSOOKf6J\nLACUom1SSoN1A/8UxzO+89zvnVgNIBFpef2ssqWDQ3BjM8iZYYWz8n8q4hq+\nhHW5TQEdWDGC6BT/AXRZIQTIBHgORuD6e6bClmJV/Ikx2uIzGgOyitQuQnVi\nYsFFCbRuLzElzvzHSxRniByyPI1LifHG9MU2lEqQxv4KV028pjvNhFlXKY6n\n2x+eLgZXIj9gkK1i2LyS1lBbOsJGmJhFXbFSPc7HzY4WrbrmGoeNLtnCB7sE\nQqTu\r\n=A5rG\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"],"coveragePathIgnorePatterns":["/node_modules/","/test/"]},"main":"./public_api.js","husky":{"hooks":{"commit-msg":"npm run commitlint"}},"config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./bundles/tinycolor.es2015.js","engines":{"node":">=8.0.0"},"gitHead":"3480dc5e3b7c60fdd92ae10fb1d9a984e7935d41","release":{"branch":"master"},"scripts":{"lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"tsc -p tsconfig.json && tsc -p tsconfig.esm.json && ts-node ./build.ts","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","test:prod":"npm run test -- --coverage --no-cache","build:docs":"typedoc --out docs --target es6 --theme minimal --mode file src && touch docs/.nojekyll","commitlint":"commitlint -e $GIT_PARAMS","test:watch":"jest --watch","semantic-release":"cd dist/package-dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"5.6.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"22.4.3","husky":"1.0.0-rc.2","rimraf":"2.6.2","rollup":"0.58.2","tslint":"5.9.1","ts-jest":"22.4.4","ts-node":"6.0.2","typedoc":"0.11.1","fs-extra":"6.0.0","prettier":"1.12.1","commitizen":"2.9.6","typescript":"2.8.3","@types/jest":"22.2.3","@types/node":"10.0.2","@commitlint/cli":"6.2.0","@types/fs-extra":"5.0.2","semantic-release":"15.2.0","travis-deploy-once":"5.0.0","tslint-config-prettier":"1.12.0","tslint-config-standard":"7.0.0","rollup-plugin-sourcemaps":"0.4.2","cz-conventional-changelog":"2.1.0","@commitlint/config-conventional":"6.1.3"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_1.1.1_1525278978231_0.8929806658481503","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"@ctrl/tinycolor","version":"1.2.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@1.2.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"203f76cea8e4d2609a76f0e4198234ef006f6b5e","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-1.2.0.tgz","fileCount":43,"integrity":"sha512-3oZU+kakO4l0u3+qo3oZ+kX0Lb2xB9FctNgVOlrf0ZY0BBQWoETwOBDKEBI9LM0CQET979o7Sh78hnxX7MBxuQ==","signatures":[{"sig":"MEUCICGAZ/JSpjqhAn28SzicB1PG3xFGyTNklFzMuZ2qdtqHAiEA9W5JPTF73GYeEY9vjOZlGuuJOFCDPwB2JFUCoOTo7JU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346668,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa7/YsCRA9TVsSAnZWagAAd44QAJeumPSY/zU1wCPsLKQN\n+i9RNpkmIToZaoyfDWC6nqIgBaPl3mic/4dYjzIjHYstVEyqoptr0VyKpXSJ\nbZ0TxCibJrBmuV/fssW6wYIrFsLkJXvNX/Oyc348OXoXDNNNrDHHn85do6M7\no4Z2giLuYNAXs9Ja7VJxHwO7PFCyq9TRTlFfaWHR2Nl2MSUUNb71wtHhnK6x\n60323cZ2K5kSS5r2EevWgrhjY1GBFSdYhi3NAoLmDtN/y3uDqDOtcJ/nGqnV\nC7rclya0mnGWRrGcFCBFO6CCG1bTW1VJZJg+PyyuwkMeZsVzJ27IwIHVWTyO\n+PL86HtluYLw0E2KvCqKekJou7IZQE+MJV9HVhJvgmXKip2A12oM/Dd09JkX\nC3f0kGtTe4dhX690xfM4d2EHtOIofgBrQQNXRhqYbuVrnNOfzrJlQwsxEPTI\nWolZBA2F5d3HMEz5pnQ+LGu2/bcgk+jNhtsdADq+M9SEqWBALA5Kv2wZ0oxG\n57kPtIMapy5yigF/kFXjau1kQ+d1QbXFxm/IW6C+YV1FgZPfH6+nbdZPY8Dl\npgQe16tHGsIToIzfPTwbvbMhYlBck1P/brKwy7DOW8/O1tULmQ0mYkuZMJpH\n8MwCl/yirCYzhIkv8OzRr0OFVw12Zi+xiuAHOeSbMnAtWMpvOse2ZOk8NGAL\nNbQA\r\n=Gvzx\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"],"coveragePathIgnorePatterns":["/node_modules/","/test/"]},"main":"./public_api.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./bundles/tinycolor.es2015.js","engines":{"node":">=8.0.0"},"gitHead":"327f615320e4272a31111e0b45687c4d48b28090","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"tsc -p tsconfig.json && tsc -p tsconfig.esm.json && ts-node ./build.ts","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","test:prod":"npm run test -- --coverage --no-cache","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"cd dist/package-dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"5.6.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.0.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"22.4.3","rimraf":"2.6.2","rollup":"0.58.2","tslint":"5.10.0","ts-jest":"22.4.5","ts-node":"6.0.3","typedoc":"0.11.1","fs-extra":"6.0.0","prettier":"1.12.1","commitizen":"2.9.6","typescript":"2.8.3","@types/jest":"22.2.3","@types/node":"10.0.4","npm-run-all":"4.1.3","@types/fs-extra":"5.0.2","semantic-release":"15.3.1","travis-deploy-once":"5.0.0","rollup-plugin-uglify":"3.0.0","tslint-config-prettier":"1.12.0","tslint-config-standard":"7.0.0","rollup-plugin-sourcemaps":"0.4.2","cz-conventional-changelog":"2.1.0","rollup-plugin-typescript2":"0.13.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_1.2.0_1525675562683_0.0012266599050576588","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"@ctrl/tinycolor","version":"2.0.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.0.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"d7fdd44eccf3555b86c56b7d5616c840248a72aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.0.0.tgz","fileCount":40,"integrity":"sha512-gs7iBtI1ANFGlKU7kG1p6JM9QyZPbZS8x7jr5NmM7yEFjaPj/L6TiZJ1Xg1hjluNYDF+z0voRusmlIrVtdYZtA==","signatures":[{"sig":"MEYCIQDjyj3qJa2a8YBC6iu2rPFAQwXP3j10TTqWSmYhfrLi7QIhAOSlG9ocVcmi4T+jQs+h2E9XthUR6dgpWOmCsdPj/V6t","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346199,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8qpBCRA9TVsSAnZWagAAngsQAKTQVKLbzLYXUjIqxH/N\nmMfm3xlAPl4JAtYDF7KNeMvBTVO3aKBRpFpI/pRyX4Z4dSPoWl3XDPsOKNzx\nd6HmW/6Y/opXBdJdCS23B+2/6Ayo1fhM24YC4var78bUJvltWeaZxfSx+JQY\nzJRIF34UsBvMrlUTA6LGZbDW/ODGYjA50afaahcFg65sF281XxAd98ZDaVsu\nzzpOw3X37tcKJzz82rkbYKs4qwF2xmT5qbvhggsDvIMOh6QueLb8LiOloC5Y\nyODy7W//mgFnygrhQTcczEBXmTTbhkK+CGZCGoxDGKDXDFltbkZfG+HphFS7\nULwyB2Z2Jcv7CprtMt950KSC+VxWXGwJQ/E8baxzUHYXI9PtWOE1OCpSggkU\nKLj7LpQl30Jvl2nV2hxMuL9NaG/cscLxJs5pxFXqYReYYty7apPlFmJ54n0V\nOBxlgRXlvPaXOPdCMxvSsNZ2uMGDUr5qu2Y00QNr/hddajRsNI9j/7vsmzyp\nskbJ8fnH7kKlw/oKtMhB++k2QjU+bVbQsf32Dug2IUuytvNrgtsFYVMFQOJi\nMEEFzTOvxIrxFIcwH6tQ64IYmIcGtbww8NtW3wZrIecG63tPsb1v7HYCwOtB\nebhmPi26O9eAh//423ymr8Y0R/NhHU3wneAeqiV19StzT5pNLsr9W7nXMoQX\nL2mB\r\n=aPjT\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"],"coveragePathIgnorePatterns":["/node_modules/","/test/"]},"main":"./public_api.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./bundles/tinycolor.es2015.js","engines":{"node":">=8.0.0"},"gitHead":"4a21e8004a3e3f6979bd198eb693932d463edde0","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"tsc -p tsconfig.json && tsc -p tsconfig.esm.json && ts-node ./build.ts","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","test:prod":"npm run test -- --coverage --no-cache","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"cd dist/package-dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"5.6.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.1.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"22.4.3","rimraf":"2.6.2","rollup":"0.58.2","tslint":"5.10.0","ts-jest":"22.4.5","ts-node":"6.0.3","typedoc":"0.11.1","fs-extra":"6.0.0","commitizen":"2.9.6","typescript":"2.8.3","@types/jest":"22.2.3","@types/node":"10.0.6","npm-run-all":"4.1.3","@types/fs-extra":"5.0.2","semantic-release":"15.4.0","travis-deploy-once":"5.0.0","rollup-plugin-uglify":"3.0.0","tslint-config-prettier":"1.12.0","tslint-config-standard":"7.0.0","rollup-plugin-sourcemaps":"0.4.2","cz-conventional-changelog":"2.1.0","rollup-plugin-typescript2":"0.13.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.0.0_1525852735575_0.3445414784866523","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"@ctrl/tinycolor","version":"2.0.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.0.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"bac9d546ed25762ffd99dd991f45146bf6333095","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.0.1.tgz","fileCount":38,"integrity":"sha512-bf3El2FfcWQzU4h3SvTY1lg5n+ePBjWG3whjyPkX72HrpU46RDr3dPByLVHlj0G0fSecBXTOk9RQp/yOOqV97Q==","signatures":[{"sig":"MEUCIQDkSlvvQQgTB351+eloGocXWBgjPjr8Lv7CZRYq3Zu2zAIgTcvq/0Lv6b5oSVrAob0yndaZm/5gD+fLdmBuc6P43TA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":260557,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbYT0CCRA9TVsSAnZWagAADOwP/0M5OApP7JDhIUNXs2xd\nXq97fSyxXCpOI6nruLfXej3N9/rpIDquLLFis/Y49ndpa2u72vErbl1QCYsD\nV1dvVCQ9swiw1UnMgwQMX4fi9uxfJVhyROAKqLT0ZfmaJiGB8W9EdW6+e5Y0\n8Hjg/34Z12g+Xkefh5hsty44JQ2EHfPVnPEX2TQMBA2fz7jIPabnWHGeEXdv\nIcAfPG0Jdzuv1zQBQ/9DGCK2KyItdbkYJj/mDnqhn5oIgu8isUMgWFfG7jAx\nZXItw0Sb3ZUEjUAaajLBBTPgcnm6hmjiZlfcSdhDKuH8qEJbIU0r2VrvquQo\nTlkyX5SG/M7OjgbzuBnKDeHuhJ6X1mHu+es4ZZvAjuOi7A57gfXA2WueQGPK\n3XJCduWWZxk1P0YqHxZYhO0EHjIh9njilnpBaNqfIicEB1ct5N1/MeHgVrNo\nCPnxlfEDWkhGTagazTOUZ0AQBY0h7UNN7Nt5J5y43EBxZwtFGG8+sHhePGc9\nE9tyGbVMu23/uO5xcBTe0MSME8NqaiIGUos632D1oqASTxlIaUasv/djSvuo\naqIrSgApAfN8nN9eYzlkEv00b7jqGXOPSXco32KCQ4aW2rn4FrxsDlk8nqwV\ngFdpVnkvzP1eX8DBLQQ2vULSiA0rWqiZ9gDAeRo7psZDm1BjOBAmOmcgBsZE\nTCW4\r\n=bpbk\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testURL":"http://localhost","testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"],"coveragePathIgnorePatterns":["/node_modules/","/test/"]},"main":"./public_api.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./bundles/tinycolor.es2015.js","engines":{"node":">=8.0.0"},"gitHead":"2893b16de4acc5c0c248b6b9ecdbf5a6e1834a02","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"tsc -p tsconfig.json && tsc -p tsconfig.esm.json && ts-node ./build.ts","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","test:prod":"npm run test -- --coverage --no-cache","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"cd dist/package-dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.1.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.7.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"23.4.2","rimraf":"2.6.2","rollup":"0.63.4","tslint":"5.11.0","ts-jest":"23.0.1","ts-node":"7.0.0","typedoc":"0.11.1","fs-extra":"7.0.0","commitizen":"2.10.1","typescript":"3.0.1","@types/jest":"23.3.1","@types/node":"10.5.5","npm-run-all":"4.1.3","@types/fs-extra":"5.0.4","semantic-release":"15.9.3","travis-deploy-once":"5.0.1","rollup-plugin-uglify":"4.0.0","tslint-config-prettier":"1.14.0","tslint-config-standard":"7.1.0","rollup-plugin-sourcemaps":"0.4.2","cz-conventional-changelog":"2.1.0","rollup-plugin-typescript2":"0.16.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.0.1_1533099265992_0.9281828100734812","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@ctrl/tinycolor","version":"2.1.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.1.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"06b356495df354938553a5fbeda58a2ceea228d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.1.0.tgz","fileCount":38,"integrity":"sha512-JcPiFxUZqUFah3Hz0MCWUQzefQdzkORJQ+evMsWlRrMZA5DsbD7dRCyR2E1FbadKJIxO2Ddnb8fzRKO1Vp0EPQ==","signatures":[{"sig":"MEYCIQD/Nr8RCj4Thzj2tzfhKMdeYyBNrizbiiBcMY37yZL3JgIhAO6Zf8KfHZwjlE6UhVzIrTZHuc4Ifriq4g7Nq7FKt9Ef","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":183744,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbY0hQCRA9TVsSAnZWagAA6mIP/2rYmSawn+E6yGcY3G5o\nBl9BKG/SXvoa7RX+LGv7Bw52EoHXp3/5KiXcg6H+NWLuQPsRTssSJYjDgpwT\n64TqeDRPsCq8BS0oAWmTxwiU35uV/FMPuHFRemdTk51WqAhoJ+0RTxOnlMfd\nMpEpRE2FHEh5Nz/webLiSMomxbw23SS+xDcfMISvjGgg2s1bHBwXp8cMmD2u\nPpgGJB142yKasY3dNMJMzyfpnewApOwelOWUe86e3XkB8asB2M5dFxnPLPN2\nQCGMJABSE0XtP45bXiSONVeGmc2jMSGbGAoU1c0xy9IXof0QPtx6lWF5IKxY\nbpX1Y4jcK1DyqTXNzFT7tB7wjaEqrWyxmaFMopYhy8jlypQbvZfy6lD6qUXs\n/MLtZ3SjiEVcsq5yjmvtLrq64YeKZhXv29255Y9f0MHobC5VNMqrtQnxOBUZ\n2K4EpbfUFcYnC6PobkE4MwQLlgwaOGHWXWNgsHX8Fss3c9ltM/CAYRP5S8pC\ndCYAs1eROcPqNv7i2SNHBzoJUqSN33NX0R6XHqgCBF0mq+itOdF7nUUooJpJ\na5RM1082IXtLz+hQgvR89Zy9EXfS/mkaHfunZQ9FtHXFyVPWk1LKhsANvffI\nNgvr0toJz5c5hqvGxph4DedHoCqxMzfNiCwjX2xkZis1FQ1fg0AgWaRH4VsH\nE2uH\r\n=x7wv\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testURL":"http://localhost","testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"],"coveragePathIgnorePatterns":["/node_modules/","/test/"]},"main":"./public_api.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./bundles/tinycolor.es2015.js","engines":{"node":">=8.0.0"},"gitHead":"82e23a66746bf9f95557dd076217eeca9253050f","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"npm run build-es6; npm run build-cmjs; ts-node build","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","test:prod":"npm run test -- --coverage --no-cache","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"cd dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.2.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.8.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"23.4.2","rimraf":"2.6.2","rollup":"0.63.5","tslint":"5.11.0","ts-jest":"23.0.1","ts-node":"7.0.0","typedoc":"0.11.1","fs-extra":"7.0.0","commitizen":"2.10.1","typescript":"3.0.1","@types/jest":"23.3.1","@types/node":"10.5.5","npm-run-all":"4.1.3","@types/fs-extra":"5.0.4","semantic-release":"15.9.3","travis-deploy-once":"5.0.1","rollup-plugin-terser":"1.0.1","rollup-plugin-uglify":"4.0.0","tslint-config-prettier":"1.14.0","tslint-config-standard":"7.1.0","rollup-plugin-sourcemaps":"0.4.2","cz-conventional-changelog":"2.1.0","rollup-plugin-typescript2":"0.16.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.1.0_1533233231672_0.33195365832304846","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"@ctrl/tinycolor","version":"2.2.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.2.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"1608c8cffa3c9e79a86167d331fa687e2ff847f5","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.2.0.tgz","fileCount":41,"integrity":"sha512-EyIBWqpn6DzCQQjFKn1imrvk0riGxzTyfeFLRqH/6MLPR7enShJpZojaZpqK/BsyAQOtWBwvzG1DegtquOEd2Q==","signatures":[{"sig":"MEYCIQCcgmBcFmRukGMBZuV2dtNNBfPRtqTmiY49iBW1yUHW+AIhAKn/JZ4dfo6Ghwcnp8l0tDKh61dYzG6UEdtt6FUNpBsF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":187448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbeOACRA9TVsSAnZWagAAupQP/1spqvDT3T4zwhq0vLZ5\neqbfos7C7RZ8GNbz0notpyNBaS9CzMmrQ6P+lXjOhP8R9j+Id9Mtd98mXPUI\nVkel7vsQmLI2OxyUs7Zxw4iZ/1wMThGrEvgfV8mILUHM6ybMfauWLdd7UI29\nIu1oncvkipZsVlbYBLv9jqX2HXODdHdniIPI1ShZdaWImgGgbdJXhmK/WQas\n2dIRyIxytKMbJSlrUCfg7uyXBsLgzWsWnTnr/HAlMiiuccpJsL2/dXN5PCTn\nBE187vpht9QkrW/QdkywAVThgCreu1rUrJeOM2FmMG5hhnGMtOgOWRidvmLs\n94bKgzBpFHIZBxMxeNrSJm3j7ADEPgxDqirruhKdmjK+lqgyUyb2+i7wmdBI\npkA6syZj6UvfVx0mTUh4nNLCDHr9c1JiFVHrClp5Ht6b/oGAqwEwem9cOsKl\nhibJWKvk/RMPVBADL9AzIPUCrfshwmoY0QfDZr4lBATeQFlBFgTzxaMOOOUr\ng6Gegv8oublcTa4rWeR+bxrkDjmat91U/bJCr6Tug1EWHCQK1lCOSxV1Hlur\ntl3baOea3+AVqWkK3t4pKHQgyxW4smobHlFzBX/gQ6txZbBlKzpMan6eyo0l\nz0dmF1xVV1ic3vl/sfKYVtlmh4y2CFLPOeZfblaNukuxgW/yfGsn1y57VrcS\nfUFW\r\n=bW5z\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testURL":"http://localhost","testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"]},"main":"./public_api.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"59d37d8f6060b3504d14be602818e107b5945772","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"npm run build-es6; npm run build-cmjs; ts-node build","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","test:prod":"npm run test -- --coverage --no-cache","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"cd dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.3.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.8.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"23.5.0","rimraf":"2.6.2","rollup":"0.64.1","tslint":"5.11.0","ts-jest":"23.1.3","ts-node":"7.0.0","typedoc":"0.11.1","fs-extra":"7.0.0","commitizen":"2.10.1","typescript":"3.0.1","@types/jest":"23.3.1","@types/node":"10.5.7","npm-run-all":"4.1.3","@types/fs-extra":"5.0.4","semantic-release":"15.9.7","travis-deploy-once":"5.0.2","rollup-plugin-terser":"1.0.1","rollup-plugin-uglify":"4.0.0","tslint-config-prettier":"1.14.0","tslint-config-standard":"7.1.0","rollup-plugin-sourcemaps":"0.4.2","cz-conventional-changelog":"2.1.0","rollup-plugin-typescript2":"0.16.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.2.0_1533928320069_0.4139993576057279","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"@ctrl/tinycolor","version":"2.2.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.2.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"4aae678391bb65ce12c39c0fed5159273709dd81","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.2.1.tgz","fileCount":41,"integrity":"sha512-HFYW2zo5H9L61it865F/6fMOphYRVxdSztcB3DHn9AoaNOO9G+uIBuNXwkt+BwT7CbjQoJ6N5L6VjF5Mumztkw==","signatures":[{"sig":"MEUCIHzanPqoXzvDfWz8nWjq+r5HKEi13/J78t0GlffnapQsAiEAtWx4cGhXngE7ubJfwqROQUDtWGNKclcbfqkkk9IW7/Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":187451,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbqyRYCRA9TVsSAnZWagAAsU8P/RvWslKg+Ax1BFxh+FQq\noP6qS8OseGTh97e7fGKVRNBFcOk+ySkG580klmbzkKiIOlSGovf28yxLk94C\nvM4sWWFtP+dkvKz4U7ecTnq4q6dU0irYVVAPA+AkgfZ6KdKwmFuG+ERigf3q\nzVafva/kxrgplqfVfisD2qelt8uWjcCVpH0lNDH90o/2JUSWwZR0YSjutgBE\n3q2HpT9RfNOsUfaGTBZkCI0ohLwFpUi1ERJPDwIrwM6qPT2hMyqfQvIIS0Li\n0/abDBTv78XYBousLuaQZTei7+OjLMYQr170eeBMKbeGv9l7Z5SFurJb6skB\nCmI2PiECB0n19eingohQFDikSXriuriPAfUD4YhzLFkIYmdmy3Ow9GtYwwlU\nqsuwwyrFSRkANJbmEv4aI2oHyGnjlGiQF/oBFdhBdwgJWZVJy5ZVMF97AaJv\nC0uStf7OgSQKlxqai/+Ww/oXuCqbxXYUvlcJceYy2AfNphqzR73tZg9QOK0e\nxc3pR4ljH2z/PDnHHDaerZylc6fYpKr0i/fH1DFg0VMyn6Po6sYoQHTS1GVZ\nEupk0TMOhjeoUNNU12AiEahEuSzFeRL4OGfNjODG6OxoAW5RamspwG2xvs1M\n/TIMqNjEQaK6EaY3djpvm8bXlGFEdWO+mK+X4BKtVzDOHzMJmP77fRz01GBN\nItU4\r\n=r1F1\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testURL":"http://localhost","testRegex":"(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$","transform":{".ts":"ts-jest"},"collectCoverage":true,"moduleFileExtensions":["ts","js"]},"main":"./public_api.js","config":{"commitizen":{"path":"cz-conventional-changelog"}},"module":"./es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"8d578a73fe3b2eafc1ccf3398e443a8126fbf1b7","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"tslint -p tsconfig.json -t stylish 'src/**/*.ts' 'test/**/*.ts'","test":"jest","build":"npm run build-es6; npm run build-cmjs; ts-node build","commit":"git-cz","lint:fix":"tslint -p tsconfig.json -t stylish --fix 'src/**/*.ts' 'test/**/*.ts'","prebuild":"rimraf dist","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","test:prod":"npm run test -- --coverage --no-cache","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"cd dist && semantic-release","travis-deploy-once":"travis-deploy-once"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"commitlint":{"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.4.1","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.11.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"23.6.0","rimraf":"2.6.2","rollup":"0.66.2","tslint":"5.11.0","ts-jest":"23.10.1","ts-node":"7.0.1","typedoc":"0.12.0","fs-extra":"7.0.0","commitizen":"2.10.1","typescript":"3.0.3","@types/jest":"23.3.2","@types/node":"10.11.0","npm-run-all":"4.1.3","@types/fs-extra":"5.0.4","semantic-release":"15.9.16","travis-deploy-once":"5.0.8","rollup-plugin-terser":"3.0.0","rollup-plugin-uglify":"6.0.0","tslint-config-prettier":"1.15.0","tslint-config-standard":"8.0.1","rollup-plugin-sourcemaps":"0.4.2","cz-conventional-changelog":"2.1.0","rollup-plugin-typescript2":"0.17.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.2.1_1537942615572_0.7243185666491485","host":"s3://npm-registry-packages"}},"2.3.0":{"name":"@ctrl/tinycolor","version":"2.3.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.3.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"3af67cdc8e938433d405c58ff9b556c986117720","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.3.0.tgz","fileCount":41,"integrity":"sha512-N7f17eBWGCb9K5LHV9W0NSQwXZZ4ZHFtuqlVKwPffmF0fwd+nl5AOGaLC+qFhW2LveiZB0ZYHh2TKGW5Qixe3Q==","signatures":[{"sig":"MEQCIHUKUfjiA2ITcyECr4S8eOewNVTDp22XIJYpv6nfsA2wAiA9sEkFYcITlVenp1/VyFMXY75dXuNJbKSbYoAhSkhHUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":188501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJceyfLCRA9TVsSAnZWagAAyKwP/ie1CRo49c0B4I1m1WWr\nUrB6Q+vPcXelOon2bi/E77Bnjly5eWgrfZrsPyugWp0wtF/tHfm0Yvhh1ZIT\nft0xvcvT/a+RdSsOBWpLc7Ro9RGP+cG+TCAJFD9V3TSJ4YpZQ825bmRzcq0j\nhlnbYveGCUzzScwoYIgXWuxUnuYDs1WcKXDhMNOuEzzqokTLS0zFqGw7sahE\ngda17MUT6bdxByTo/eieubANhdfhdT7ASrAxeMfdBkkmWuTqiGAPoxLaTHDi\n/Gf9Ufokh/Y+SfRfDL+NFh9ktrZU2Ut5a/QZ1TuqUJPywOnvmicJuVFfyadK\nnZuOznh3lOhUVOjN1JFh0WbUM7txzMrawbwDxjS82Fu7+VZuNylFlsrgHhvc\nM2WgWmqvDP1+UDpJAwP8OyepqmnSbtKKvGFDQcu+fmGWszqTTaE52xCT9BNI\nLjsbUsdf7HHS9Vk+jlp8INwcAejCGiOvG/G4cmBt98+K16NT4i7uBrdTVq6t\nsh45Lk7SoCCa6TmkvvQNRn6HLMpx65MDF8VtXAHtLssmHx1BkfMCpLfQ+E6R\n1iCan0hCgoU6rzuFvzmsNX8At8ojkhaniLleiytu/OcUGLOw3FHdY9w/B+8p\n54OekOOwyDDuPDhVBSXUlNu/Emxtz8Gop5UTO9gZWkaRw3hjIbnHmer3hcOc\nzEcN\r\n=NFXz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./public_api.js","module":"./es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"75f48f456b2276faceb1def9f43eb05f7c3919e9","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"eslint src/**/*.ts test/**/*.ts","test":"jest","build":"npm run build-es6; npm run build-cmjs; ts-node build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix src/**/*.ts test/**/*.ts","prebuild":"rimraf dist","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"cd dist && semantic-release"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.5.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.15.2","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.1.0","eslint":"5.15.0","rimraf":"2.6.3","rollup":"1.4.0","ts-jest":"24.0.0","ts-node":"8.0.2","typedoc":"0.14.2","fs-extra":"7.0.1","jest-junit":"6.3.0","typescript":"3.3.3333","@types/jest":"24.0.9","@types/node":"11.10.4","npm-run-all":"4.1.5","@types/fs-extra":"5.0.5","semantic-release":"15.13.3","eslint-plugin-import":"2.16.0","rollup-plugin-terser":"4.0.4","rollup-plugin-uglify":"6.0.2","eslint-config-prettier":"4.1.0","eslint-config-xo-space":"0.21.0","rollup-plugin-sourcemaps":"0.4.2","@typescript-eslint/parser":"1.4.2","rollup-plugin-typescript2":"0.19.3","eslint-config-xo-typescript":"0.8.0","@typescript-eslint/eslint-plugin":"1.4.2"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.3.0_1551574987005_0.9574150091760807","host":"s3://npm-registry-packages"}},"2.4.0":{"name":"@ctrl/tinycolor","version":"2.4.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.4.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"0b806ffd71c9c4b28044fa1f6064e8c033a42b9d","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.4.0.tgz","fileCount":41,"integrity":"sha512-ZLjdsst8/ENM6spDmh3qPQSM+iDSerTGjA05KhAXog7o/aOa9tn7qzWMeOtJzGaDMmsBLxh4IuZ5GH7nfda9gg==","signatures":[{"sig":"MEQCIGB/3SP0BeMvPldxZVWtN+aaMlxyxcQfX5FSorFEP9nYAiBMfL8rf8MTh3hTdaI6oxh0Krb9VVlB/+xs2ezAwygyYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":188976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcfrXMCRA9TVsSAnZWagAAEOEP/1oBefaGYhE7w4/pND43\nWPAAb4VLlFBpzUHBpFE1t/6sSWXnXjGpIfEnQ7TOBOfmtvWIAk82xxDoIQTI\nKUjM3rEHnYxZ+QeOW4fr1EjD2Quh+JbiWVRA8M2oBm2/+iH8an3ZBreJdHBr\nENPHvClvDwNNCkvKbPQn8hyniHC+kDE1EBbU+iggn367lRBWIVtZF3V9RbD8\nMjzWakUGfP2f0kFe24jjdyn0S9sOLadQXfgIuUYd8IOzXQN/zxH87HdvnRUr\nQ1+9akkZHAsR9JsTPNOV3H55RzJ39DyNUi8XEHKzPjACPJN0slbaDgK7T+IM\nDhnuGi+hh0cAni7xk3dwgwJdOKsUBOCEwuSRRKxXL3+Hfp24N/KeSdmNXPBn\n1GQpNRGmuU/ik+3gf8ccTGlhyZPnew160Xq67JstePXK5EzSom+eBYtOZJhw\n1HaE8vYn8nPG2Yhv00o0LbeRiKbs487r7H8GJBoBJvW9gMhZCK6rX6+j5kmg\nVPXvIiQdMjUf4ht4lh3jY8/e2eKanyY3qF1lR7h0h1DY21YDJ8j4xtkMA0QN\nBbJb9MF9HIPIW9mGP5olmZdBGhgvbhVOA187ww+5WcMvupwpMxGGmuFdUokV\n9JCr0UaVpBPxm/E4CniPhdVoCxvdEvPwlBAQHHjEBYBQVX/RkRT6pZ/Hcd5R\nPNzi\r\n=DTVU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./public_api.js","module":"./es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"a2a714f211da262cf615f705b555c2ac99dc91b3","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"eslint src/**/*.ts test/**/*.ts","test":"jest","build":"npm run build-es6; npm run build-cmjs; ts-node build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix src/**/*.ts test/**/*.ts","prebuild":"rimraf dist","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"cd dist && semantic-release"},"typings":"./public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.5.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.15.2","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.1.0","eslint":"5.15.0","rimraf":"2.6.3","rollup":"1.4.0","ts-jest":"24.0.0","ts-node":"8.0.2","typedoc":"0.14.2","fs-extra":"7.0.1","jest-junit":"6.3.0","typescript":"3.3.3333","@types/jest":"24.0.9","@types/node":"11.10.4","npm-run-all":"4.1.5","@types/fs-extra":"5.0.5","semantic-release":"15.13.3","eslint-plugin-import":"2.16.0","rollup-plugin-terser":"4.0.4","rollup-plugin-uglify":"6.0.2","eslint-config-prettier":"4.1.0","eslint-config-xo-space":"0.21.0","rollup-plugin-sourcemaps":"0.4.2","@typescript-eslint/parser":"1.4.2","rollup-plugin-typescript2":"0.19.3","eslint-config-xo-typescript":"0.8.0","@typescript-eslint/eslint-plugin":"1.4.2"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.4.0_1551807947184_0.8374149832843298","host":"s3://npm-registry-packages"}},"2.5.0":{"name":"@ctrl/tinycolor","version":"2.5.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.5.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"d79bf9ebd1b94ad80c00ad313164569178858695","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.5.0.tgz","fileCount":41,"integrity":"sha512-+KOnyYjn+fHDChxYH1D+9L5RrmEq5wJm4nB7HvnZSLMlypPtCGhGivxUe2MxxyVtABTKdoOhULraCxlcY8aa0A==","signatures":[{"sig":"MEQCIFtTAqn7gD7zaV6G7tCTQXe9njiv+bB85qztE5S8wuBfAiBlxGHH6cAr1MQrZiXd+ZIg8q4FpGwzMYL6EbBcG2t+LA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":188962,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4llsCRA9TVsSAnZWagAAbAIP/11Gh/6Eg2p9Cq1zyM6i\nfS0tVsr3BTTE8nwdQSRl/TlAaJqD72G72KOgGYN7L6VaWI7Mf24e3GfUAzDV\nqf3U3fLEzH0X8yzFOUte4rIMHFiwOttPAIJ0r4vdVXqgTg2rXNuMy693GmUC\n2n2LHJgIIBnQRdNIYv8Nlqc66yUNlFRTXe8q/7Ty/BtvgZqXMgEif6wbQkmA\n7RK0e5QMBjZaI0pblRWjt5AHsibhLxFV9M+LOPo9xvxB2tpvMH6wuZwzwZgG\nvpaDJikzReLloQRXuces/TgzY3Np6u6Cd7XxXXDqYHgWh6MS5dqWgFHRJ3eu\nHuI7gIKiTJh+GW7aiX8RuwvBEjRJ8I59cxDktNgZHvoStLqiY5hH58+KvIU9\nKndw8YqOenkPQCbeJbFcnJeNY0N3Yml8CT983kKlyNDaTo0YhIfq2JXdobVm\nRNk/72TKDrWQRa2Ay5hnlCJRgquGXwHzebsZlSwd6OHkMGyQH0/GPgerP+mt\nIx5OahxvxvaVyYGQixsQLgw8tUBuCnVVZ0Ezc292goJ5fhA/hmbk4E7sPcZO\nJhEtx06oRegE3XP5Wz71kkJR8uYMaPkxrTarApCKd/3DOOpz9koDHKsKu8Oi\nJYouMSq9/kyd0to23qioLn1Iq5OagBtD6wAddE8Bn3u7E/a8wtu1rbpA5IQe\nP3pk\r\n=37Tu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"15338083836a1c2f29d688e928b9fe72fa0a915a","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"eslint src/**/*.ts test/**/*.ts","test":"jest","build":"del dist && npm run build-es6; npm run build-cmjs; ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix src/**/*.ts test/**/*.ts","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.9.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","eslint":"5.16.0","rollup":"1.12.3","del-cli":"^1.1.0","ts-jest":"24.0.2","ts-node":"8.1.0","typedoc":"0.14.2","fs-extra":"8.0.1","jest-junit":"6.4.0","typescript":"3.4.5","@types/jest":"24.0.13","@types/node":"12.0.2","npm-run-all":"4.1.5","@types/fs-extra":"7.0.0","semantic-release":"15.13.12","eslint-plugin-import":"2.17.2","rollup-plugin-terser":"4.0.4","rollup-plugin-uglify":"6.0.2","eslint-config-prettier":"4.3.0","eslint-config-xo-space":"0.21.0","rollup-plugin-sourcemaps":"0.4.2","@typescript-eslint/parser":"1.9.0","rollup-plugin-typescript2":"0.21.1","eslint-config-xo-typescript":"0.12.0","@typescript-eslint/eslint-plugin":"1.9.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.5.0_1558337899333_0.5787804984191625","host":"s3://npm-registry-packages"}},"2.5.1":{"name":"@ctrl/tinycolor","version":"2.5.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.5.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"8c28e97f1a37b5fc1dee00b5226d5e8947f7f8b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.5.1.tgz","fileCount":41,"integrity":"sha512-I5SD9ii2gh/4/LNyg+dXG6S5B41bZyQyXCldSZxNHMlNnFtDgo1h7Tn/PiCZ8qlRkAFmv+kx1ay/gtTyCVrGcw==","signatures":[{"sig":"MEUCIFPye/jnhYyziZ9ZsTelwGgRHgf2weqm40QeIgTMciiYAiEA4dOb8GUnN7uK8l8Z7RJlU3E/xVgtRwKXTHXFOSn59i4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":188992,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4r05CRA9TVsSAnZWagAAThEP/1YD19cCaAwi3VWTOP4v\nIsnJzua6XKNlGON7UaLjBfhsxvtsjGMqdBueLjG7Am6XcutlAKMj8CnvYldp\n8LbGv19wtlTn6Pb1YkEgGka66MBoO/r0dmWGp6WKyQn5T7Z96ZuxLgKluHqP\ntcZnZjAFkig7Y9dexB/w3fzTrSJ/rmx/Xy5Sk+I3cf6kevQAB6RdktTb5NYd\nvGQC8/hE93HI8BPAZdfd3pdX/HJn83XxronGjIQkperncHRPGuQh4OwYcZ/5\nA62sauHwR0bXlSNEQJT7UV6cq5Z4VLQk4ouFnhgQLUr9xabeifXXWdHPt967\n2Cv5ISSb6nzRDRr/y6Ca5SbmXwDOQFjiXgN3aohWHdXD2/Kcx0WPlLrY1HHa\naBnuRxDYFsISI/SYnz6UHcpNRMLTRoRD94xT177O2LBtttFvphaWtYJMaP8Z\nIe+HjyA7n5XA/qbi/jNohCb+dBkzSa3P6JonK5YUDWCs0ZP1P8TbEl3H/h/3\nhUHUQX9czrk+FThZcEzBpL7MvMjroKXm2768ye4VtjhCBXnpjR8MPYNvQ5xf\nU9hp5Q/pEB+g+k2xZAxfEHvsHt5xmjwaM8ifGDqF1PrqMjdtNjbGcjMh6Js7\nrDjkBwZv7gUoPVq1zjog8CcO2IXcST704IJwD8OattDpXilPKvpy/TM5ZrBt\nU6Wy\r\n=MbHN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"dbaae13290d62b9314aea3c2d95c1fc2429ae821","release":{"branch":"master"},"scripts":{"demo":"npm-run-all --parallel start:demo watch:demo","lint":"eslint src/**/*.ts test/**/*.ts","test":"jest","build":"del dist && npm run build-es6; npm run build-cmjs; ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix src/**/*.ts test/**/*.ts","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","start:demo":"serve demo/public","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.9.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","eslint":"5.16.0","rollup":"1.12.3","del-cli":"^1.1.0","ts-jest":"24.0.2","ts-node":"8.1.0","typedoc":"0.14.2","fs-extra":"8.0.1","jest-junit":"6.4.0","typescript":"3.4.5","@types/jest":"24.0.13","@types/node":"12.0.2","npm-run-all":"4.1.5","@types/fs-extra":"7.0.0","semantic-release":"15.13.12","eslint-plugin-import":"2.17.2","rollup-plugin-terser":"4.0.4","rollup-plugin-uglify":"6.0.2","eslint-config-prettier":"4.3.0","eslint-config-xo-space":"0.21.0","rollup-plugin-sourcemaps":"0.4.2","@typescript-eslint/parser":"1.9.0","rollup-plugin-typescript2":"0.21.1","eslint-config-xo-typescript":"0.12.0","@typescript-eslint/eslint-plugin":"1.9.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.5.1_1558363448579_0.6424353756533527","host":"s3://npm-registry-packages"}},"2.5.2":{"name":"@ctrl/tinycolor","version":"2.5.2","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.5.2","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"a2f591d6f385d8751a3e9d295203ffb2171a7040","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.5.2.tgz","fileCount":41,"integrity":"sha512-0uQs1pXZtZByI5pLlWEWRnNmXmD/IWv7rgwDkuh5jGkBMC3gCVGYKbxlUglct8EBj3U6Ada1iTTSrNeep/rzlA==","signatures":[{"sig":"MEUCIQDfERfTaG33pfiVCwtDGUM+b2AHKO7LvxE5Lzu6SMDV7QIgOv3YfeDD/mE1z1pwgv8dWlbiT38w3XUqzmufz783niU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":188933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7MpkCRA9TVsSAnZWagAASHEP/3cuRiGlztJqtOiOa+4J\nHQW0E56VY8xcGjETknCdXlOcUh1VoP5ICnCxthBHO6qerAEtN5mW+0lXHh5+\nWUDFDlMqKTAUiH1J1GvqhrRnNY03+nUBE8OCREmWV/yOKr2+pqAsgWenxq6V\nr4X/NCoWH44GsM13MTW6lr/SXDSt2N/yxc3qZL1fAmYYgH2dmiFRY9uGFhNI\n8kYD+wQc/wasy+ko/kPz+LmqtCS+hyZmOicnjdOeNyfCDFNuViBfqDJmQfXE\n+OZ1o6nQ580iRKK7XvMb43FmGdq32QZ/esQG+sBvVA5nKoUk/7q+2FYnQ9fZ\nIegLwpCGq37Ov/XNQEvIn/DkQ3cSNy605H98+B70T6P0AwAU945P4edb21DK\nn52Lq4WZJdKhWZC0uUIzZGdqnIpzZ2vRS7rLwGt5JacoHkf+09lO0EBfj6yB\nMKVMexEJxlttEk6N4YIGrw3aJAUJkO00b/dMRJEOVFyHWhcDAhSxzgpWVQWM\n7SFsgJBhRmFiT23TD8yVZXr7quYpmheE1P1nLlnGM6KMnQftTZ7mJ4m6gGC4\nQSiw/iS7ui07N3rVzwuGgMG/WwTMk7tg9y442k0qmEsr5o0v+tf/5rak64dh\nzIqYwrQ+lArSYh80ya7mDHCiKUgYxcWf55bDz7XGaS3+6+CuwnOwASV/bTd1\nnl/T\r\n=4VBO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"ffdbd741eff7fafa0a13027c2af25ffb03f3ded2","release":{"branch":"master"},"scripts":{"lint":"eslint src/**/*.ts test/**/*.ts","test":"jest","build":"del dist && npm run build-es6 && npm run build-cmjs && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix src/**/*.ts test/**/*.ts","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.9.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.15.3","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","eslint":"5.16.0","rollup":"1.12.4","del-cli":"1.1.0","ts-jest":"24.0.2","ts-node":"8.2.0","typedoc":"0.15.0-0","jest-junit":"6.4.0","typescript":"3.4.5","@types/jest":"24.0.13","@types/node":"12.0.2","semantic-release":"15.13.12","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.17.3","rollup-plugin-terser":"5.0.0","rollup-plugin-uglify":"6.0.2","eslint-config-prettier":"4.3.0","eslint-config-xo-space":"0.21.0","rollup-plugin-livereload":"1.0.0","rollup-plugin-sourcemaps":"0.4.2","@typescript-eslint/parser":"1.9.0","rollup-plugin-typescript2":"0.21.1","eslint-config-xo-typescript":"0.12.0","@typescript-eslint/eslint-plugin":"1.9.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.5.2_1559022179891_0.5722110318799571","host":"s3://npm-registry-packages"}},"2.5.3":{"name":"@ctrl/tinycolor","version":"2.5.3","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.5.3","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"65dbb773f3a7e9a37b88ea0a5b68a392f8a447b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.5.3.tgz","fileCount":41,"integrity":"sha512-tu0Xqhz0AI5LoU2yyz4asVAev4hzWt30dutbY6Nu7pKvLX0JP5p6NJ5uomwC/blhLMk88hVgXRODFlTB+c03Nw==","signatures":[{"sig":"MEUCIALqit2hxKY5rElgu74Lfq1FooPK/1/Ke1Uv37ji+74/AiEAp0z1+QKNfKxVCTd8qG2X0n22e8kw3ZwF6OKoSq4nzL8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":188667,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLsKdCRA9TVsSAnZWagAAwh8P/3Fq0BKbHXaQvbDuVeDT\nI4nhBFSNFmPKBzZr90qv4rx8doIlgScPyb4gPOgekuGqWEYwZZjEbE6/9zsP\nbNP1E+ULYQEfI6qQ3BGfCMc4pmP9p4uhFQCuDFugdyZwsw2oFY39xhxWWV8t\nK0I2Fkz4tWu/AOpSKywoWFpOEKOo9iQa5PSDAFBtWo6o7Z7zgmSydEN2/XcM\n1VxfAikhEQAZEISMcCjbipCwxc7Ieux6nf757X2cdiQr4BQvlgodvp3BgKLP\n35gF8j2hCfcGYp6rR0B4f5fsGuIfPac8WkkiUhJI/LC8FLZa2FjoLzBykpLe\nXr7QGpNm9oVWJWNYfKZTVMDK+WB94p8tFg3JR8apQ3CZkEQ7JBs/zx2Zv7n+\nEVgG0hkcZiWaSYV0wWpIP0rlnEEL/3MSUJCe+hX8vQQJlWoHZy2rQc7AzXwO\n7k7GmPCzcP4d30IQir22DX/1hzjq9gl53ZC/alV2f/+/YzXtzhfAd49elXN1\nhyzdjQIcUDB4Zn6DGj3D26UnvQoAlhR2eu0+gTom/z7mM9doYazFrpiUVlgU\n0QmGVY6bu0kfyR8Imoj1CibHpyDDUWfr9MmAQiJ2EXyby5AjsO21DCT+3q0y\nzIdQNVnCgviMtpLUlAESUVJj6F9NDIMLA7+6bSuyDnvGcf1oWX+pldNhiRkh\nPbfD\r\n=80mc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"7343301b7554f9e52cb605e3330f565a32217b54","release":{"branch":"master"},"scripts":{"lint":"eslint src/**/*.ts test/**/*.ts","test":"jest","build":"del dist && npm run build-es6 && npm run build-cmjs && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix src/**/*.ts test/**/*.ts","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.10.1","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.16.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.8.0","eslint":"6.0.1","rollup":"1.17.0","del-cli":"2.0.0","ts-jest":"24.0.2","ts-node":"8.3.0","typedoc":"0.15.0-0","jest-junit":"6.4.0","typescript":"3.5.3","@types/jest":"24.0.15","@types/node":"12.6.6","semantic-release":"15.13.18","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.18.0","rollup-plugin-terser":"5.1.1","rollup-plugin-uglify":"6.0.2","eslint-config-xo-space":"0.21.0","rollup-plugin-livereload":"1.0.1","rollup-plugin-sourcemaps":"0.4.2","@typescript-eslint/parser":"1.12.0","rollup-plugin-typescript2":"0.22.0","eslint-config-xo-typescript":"0.15.0","@typescript-eslint/eslint-plugin":"1.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.5.3_1563345565011_0.901651089020135","host":"s3://npm-registry-packages"}},"2.5.4":{"name":"@ctrl/tinycolor","version":"2.5.4","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.5.4","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"fa20f45eaae74696070328342553ed5de224bb4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.5.4.tgz","fileCount":42,"integrity":"sha512-PXqAcLD6R8GL8dFcls728HrYzDdYN60U8RXvc39wmOs1pJIcyc3g+dleWu+fGgLnEGG4SwblEUu+EF4/dH/2ew==","signatures":[{"sig":"MEYCIQDsluc8kFiwI86RavYPT957kzJ8T2wcNUeuPfOlZPkmsgIhAImaVJ1psbIntXFGYLiee+ypEEkaCDIRwKojZg52R3Qj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":288519,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdqATUCRA9TVsSAnZWagAAHr8P/RqE00vcERRiOfsep1u9\nb6v0e3okjEaOHKamX6Z9a6j8Bwh0GoZinWJuoI2LGJ+09mKRN0BBBPFqVsW7\n9wZ4l5gf7scExM6Y6NqmFCcWMmwSEaKnJ51Uj3HQM54/2vF5fUsN9d1Age7C\nT+OHaCuK3HKX1eErA0GIpSeE0BD8ayMYCr+Nfr4akHZKIGGs2v0H8WF7TTYz\nIUOUuwODeG5CWlHkeeycNtG2FfA2qzaISifRJgq0ZjgqhJ0YWxzAxQmmQFRe\nqQR/nEiO1OI1oZLHKrLCnjZx2qTBTbfDOyKTKveX2QZen0l4l6cfGtZigvF3\nJEEJCeNuCsH1VcaI/cQHOqoXIDA15dy8NMnG2+TRAlfUNW4JPFQJIRLwPwFH\nrK5KkX2xKwJ/1gt/lDdEhcKHqG+Wj3HNXLVCMG0QaZAJRmPM2vYl4WfGzvee\nIJD4/P00B8iSfSpZ2uVwbvSvj1jUgyNWAH0b0K+iiEmiwow/j24Ivtkq3vHO\nfBoK+0PKJthsEPKrDyBOl8e+xg2J4vod0+E0JsfJ8kEjLFlz0I8KE9sz49lu\nJW1hk3IufnKsQTUH1d2MC3e01ApR9tHosKVnjlMalZleFOsVUL/BUw2fSW26\nOzl/+besTi8ZEuGioerecnlEa5W5Ky43iudTbJhrfbyQsESNVjazI3A+6POo\nofq/\r\n=NmyA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"45e7b5764ced29f00bb1a3d614f78b6f2acc9846","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"npm run build-es6 && npm run build-cmjs && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.12.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"10.16.3","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","eslint":"6.5.1","rollup":"1.24.0","ts-jest":"24.1.0","ts-node":"8.4.1","typedoc":"0.15.0","jest-junit":"8.0.0","typescript":"3.6.4","@types/jest":"24.0.19","@types/node":"12.11.1","semantic-release":"15.13.24","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.18.2","rollup-plugin-terser":"5.1.2","rollup-plugin-uglify":"6.0.3","eslint-config-xo-space":"0.21.0","rollup-plugin-livereload":"1.0.4","rollup-plugin-sourcemaps":"0.4.2","@typescript-eslint/parser":"2.4.0","rollup-plugin-typescript2":"0.24.3","eslint-config-xo-typescript":"0.19.0","@typescript-eslint/eslint-plugin":"2.4.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.5.4_1571292371462_0.7078839075308576","host":"s3://npm-registry-packages"}},"2.6.0":{"name":"@ctrl/tinycolor","version":"2.6.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.6.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"c269def5ed1f871913f299a475c01bdb39119eee","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.6.0.tgz","fileCount":42,"integrity":"sha512-bvkszNAcbmR2zrjjkaHbTVbEj07Id44HsBWf57mugPcvJNIPaWLqxWV/GUJVJuXXayqFP2X09cZRqKrCy/v10Q==","signatures":[{"sig":"MEUCIH6BF4CIgDIW+a2nWeDJIPymyqX14RK2abDYDXo9Fs/3AiEA8bkKZJizI5/h3Id6jXHFeI+RJdHQIvM7L0mUMRhHPz4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":289567,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+yQWCRA9TVsSAnZWagAARIIQAJUNW/5RjQCdkgCO58vL\nvcF44PVfOtqhEfHdi/qi2YBFSve9LvaNJfNOHLJ1wudkEnVi1l/vOxxUDY32\nseUGhTkpf+MQnzEfXbLMTXE4ca6PgsH5Q07aRuZjULj1hvrtb8xlh8LtFUWD\nnnhntrOXiBGYqO9EmRNQxj6RiWxVtCrFC6QU17nmXE2eYdPnDXA4VCJBaibg\nf8sth+87qUDhGXtz1yqNVplvHh+/jycJkfpf9diI1Mr8MPokaegkHA7JJidL\nflX+pgI1OxG4ixd+bNJAa4ve0Ypap6M2AtugiyCe4LWl4cf47U/cR4dAkJgV\nWk8OTS31QeE9q1Jd7SLElz15wDbk4ppR4AJTNDHNyfrMDp7jsdiq3eDhtzix\n2RqQw6DptYGlDiNOI2kGDbzzF/c5MOa/O3F26CNT8TFSKLRxSS5k8XtN+hw0\nqIyyZermiokqzWQkOq1s2b7iByrQ8biO7DiaBMosc3Gm/0FjUGb+I8CzBpE2\n1TGeceNFg6QcCsj+efPQo4r3TbQVzlAzcg9r4CByCXlAqwxP13JLbEs0NMG4\nP7ZF0nTN3KxOSxkY6PyyLF4APmcfhzLW48jH2KwWTGrS2chaF/y7QmP2DGnQ\nOViO1TqmY5uFwwGy+F19cJxv8EJ6ApLxDGF4Oils2WUabxXXnSUDfDwR7eTK\nHSzo\r\n=xcwe\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"22b0277020f8e23b7260ebdb8ccc46d3d3c98d7b","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"npm run build-es6 && npm run build-cmjs && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.13.4","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"12.14.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"24.9.0","eslint":"6.7.2","rollup":"1.27.13","ts-jest":"24.2.0","ts-node":"8.5.4","typedoc":"0.15.5","jest-junit":"10.0.0","typescript":"3.7.3","@types/jest":"24.0.24","@types/node":"12.12.21","semantic-release":"15.13.31","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.19.1","rollup-plugin-terser":"5.1.3","rollup-plugin-uglify":"6.0.4","eslint-config-xo-space":"0.22.0","rollup-plugin-livereload":"1.0.4","rollup-plugin-sourcemaps":"0.4.2","@typescript-eslint/parser":"2.12.0","rollup-plugin-typescript2":"0.25.3","eslint-config-xo-typescript":"0.23.0","@typescript-eslint/eslint-plugin":"2.12.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.6.0_1576739862359_0.867616918527023","host":"s3://npm-registry-packages"}},"2.6.1":{"name":"@ctrl/tinycolor","version":"2.6.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@2.6.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"0e78cc836a1fd997a9a22fa1c26c555411882160","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-2.6.1.tgz","fileCount":42,"integrity":"sha512-xKN3lAA+xbNhP+JX3sLhzA65IGiKqun/Yf9jBlZX7Og0SxlCrrqKxqTd6ccn20fv3Cgcvq6KnjPhnmS+v7uAwQ==","signatures":[{"sig":"MEUCIGjbvX8/02al8nxePANu3HQSrnhlFnn39aerLq9yMKXPAiEA1bGm112IzRJj+RiYBAnetWDfA24iYmYhZHjo2B5fQIg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":293258,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXFetCRA9TVsSAnZWagAAXvcP/jjck/9xWfP3EXlgKmDT\nVy/1TMLeHeTtBJPRhcKpiG7Aba5Mosuto0Y1dW/Q5t+PQokZtM2GEjfTlirp\nbDzaPRFJEJjU1e5lri+/IaQdLsGlWesnBmkWz836EmfH4FA4h5UVzokHYohp\nyD7YMHW+An/h1JugXe6EO1d7PAb1JzXA4xOolQntno7GQKLCZ+umePxV/7Ve\nwUF0xcJyQhfyFyw6bxdn86W4Prhq4+xkREDxxYg05JZwupGGfvPdGlIaRG7x\nxcTrcwl9M+gpgZGFWt2U1bdtSyYwpkSaOcANjCirx/h+0gRRNeUw6rMByGXw\ntcdv5aY+iCezXnciIodrkHgBLq/vz0GVABzjRSTOYZaAx6na2RsJZlha0n6F\ndpmBstHmvdkG7k6xuQzozZVc5EXzq8Ux3oRp0JSkk+t0k0jmAd7CzMZpXoAF\n2Ph1EUT6WYeS88MMeeMtEc+1WMdoQEEiWYkW4pRvFnfwxS3WaUzz4JV1xiBG\nuXdqpjYcsVACBtFF+hxYzl5fYbXb1ecLwke0Vqdah214aBDOiI3ZhB38b/m1\ndvLovxILjEMXFYl/xq2k+yiJ6XUYfg7w/5IiIqvlUdyPnnsOkNogwAvtPauQ\nfG/SQt7VZbVBCU0rkOZ4wU5L7QQsggy3Y858fspdTn37p697p0zxYsHbPz2P\n9PUw\r\n=6MTu\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=8.0.0"},"gitHead":"92d871d9be890aa0acfffa6bcd3b7bffe543e04e","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"npm run build-es6 && npm run build-cmjs && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.14.1","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"12.16.1","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.1.0","eslint":"6.8.0","rollup":"1.32.0","ts-jest":"25.2.1","ts-node":"8.6.2","typedoc":"0.16.11","jest-junit":"10.0.0","typescript":"3.8.3","@types/jest":"25.1.3","@types/node":"13.7.7","semantic-release":"17.0.4","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.20.1","rollup-plugin-terser":"5.2.0","rollup-plugin-uglify":"6.0.4","eslint-config-xo-space":"0.24.0","rollup-plugin-livereload":"1.0.4","rollup-plugin-sourcemaps":"0.5.0","@typescript-eslint/parser":"2.21.0","rollup-plugin-typescript2":"0.26.0","eslint-config-xo-typescript":"0.26.0","@typescript-eslint/eslint-plugin":"2.21.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_2.6.1_1583110060903_0.760319933419151","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@ctrl/tinycolor","version":"3.0.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.0.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"2bed59dce126fc4cd46fc1967d76007c0d004ba7","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.0.0.tgz","fileCount":41,"integrity":"sha512-kUwIv93RtPqb3STcxe88/ho6sWfw3rfCiZYNXaYXEIBeR5pW2taLtczZnORxdj0sYKkVjvDagKC5ZF4ZaUYDBw==","signatures":[{"sig":"MEYCIQCBEjcqhATzv5IYrZPpXjhMDOAog+c9Iyg9v182mK2EEAIhAJXJUSDjACigrP4VdQp5TJLWplQg7kU74YL7rVAp4Fbu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":188881,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoHxrCRA9TVsSAnZWagAAC0IP/AyFUGQMyELJ+8gRHCxx\nugj2qTt9ZfJ/hsy83Hy5H/o5RgWvCKHnhO+DfxkV4PhqTzMJLW1upsn/X/8+\n6rNbdNcWnGFXVEMLMhDvpklBa7IzsYngOPsF7dwDNoJTFLHkMrjTV+jNXOcB\nliRuDDGPK7bexipb2Jw08kN8eglhdnrmnDZZs/33VTYAN26Wmha/0Zit/eNf\nXUKaIC1iedORgIhXdZzDPfLOTGn/emcz9wpFfU6IabcJb3tnAVO8Wfn5eSzP\nZrzwxXI8+wzcTSbnMEyCkQTCsDAGwiSca8uzUe18SqN4gGmfIMlWfcmdA8WR\ncaDX4SJkYWM7785BgW6XtJInowYqe/TTKFcAwPxpsaEYHxhd1BJ7ZIwy/OEZ\nIAsneAimLSmLPOza90sa97Hpp356NAPrLbkGxwNBTuGtR6p2nIBIDnhnXi/n\nOG6q0aG2WclJNdASme4zhyDny7ywQsh2LBlMjSPE2hghwJ30HzkB3xo4YQcz\ngcvqRRVXcbFJT7f+MZXvMUbdFwDxycJSSHQP58sqWIyZYGYwAmwkzdLCbpFo\nfeJa+4fzccseblIv9MQOXU4EY1VLQJOig9gJPvQC+SrfNxlojPLYFI8PV6Fi\n5RvGbn0IAayA7b2tphNxYYAQbPnHD5YUuEgkn6yFgB2a+AqcLNtptkIus+yY\nlLde\r\n=0OX/\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"41cfb8de77c39009a78fa2ba866555ae7aeb2332","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"npm run build-es6 && npm run build-cmjs && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.14.4","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"12.16.2","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.4.0","eslint":"6.8.0","rollup":"2.7.1","ts-jest":"25.4.0","ts-node":"8.9.0","typedoc":"0.17.4","jest-junit":"10.0.0","typescript":"3.8.3","@types/jest":"25.2.1","@types/node":"13.13.2","semantic-release":"17.0.7","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.20.2","rollup-plugin-terser":"5.3.0","rollup-plugin-uglify":"6.0.4","eslint-config-xo-space":"0.24.0","rollup-plugin-livereload":"1.2.0","rollup-plugin-sourcemaps":"0.5.0","@typescript-eslint/parser":"2.29.0","rollup-plugin-typescript2":"0.27.0","eslint-config-xo-typescript":"0.27.0","@typescript-eslint/eslint-plugin":"2.29.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.0.0_1587575915071_0.1601858541424117","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@ctrl/tinycolor","version":"3.0.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.0.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"c1fdc3b9416059deb29a9937aa321cdd22d8b2b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.0.1.tgz","fileCount":65,"integrity":"sha512-PZYlajvmnf5JmdgXqNPYzH5XCy/F13KL5W7xgW78GtWnXDlahFnj8O8uQn5HPiUHiWOkb/UJoTjSW2QC9jNR8w==","signatures":[{"sig":"MEYCIQDyourk0Wfv/JWJuUIctmNL3Mw55FCN/Iu5aeQpPzIN2wIhAJ148cJ42jZ1oQshZQI8SfsekrVC8nvJHWrRy2pe+JrO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":319010,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoH+MCRA9TVsSAnZWagAAeToQAIg8ZLyYEOgnOGhmRHnk\nLE5xQzftvr7Pw6UU+ouWFfHlxG2APQKbsNkM3cZHSu0h+kYK//xJGRwX8Y/c\nRllt0vhuN7n6TS53ksn8OFncnvWNccV1FlILBnr8hzS4giI6HTqueMgqu9zV\nJwcrRHwat9/fQRLI9t6MIPPdTNIL+gmz2FIfw+orlG8MKOWiMNj4zWHMRG0d\nNStVQRkNpeDnTpq3koduF/IUnqt2hL1jWTNSgj1EAp/eg3+nEcAXYvkJ6zOs\nv33/pWSFki7D5z6Bk3IXlp+xmRqMjjmogN2OqxF6IEb9J/hYngXKAaPGV0bb\nxISIia/Fphp+toZTpBmY2GVQZURSE1Op1y5+6o+PBDaIUBn4ZFMZ6iTnSZSl\nVBI9DZ4yGUpPQ9HCt8e7TXX452rFcXLhibxbeTME3zpskrADwSBDuNL7XdGD\n8WPpU5qmhPv8zPOeeh++kLPHe9jHDRnkh2PKMI7+q7ZEsKQmufSCFsCh1Jba\nWq31wyyCaJHwpCpOSOI+ZXZrcWtTxK/lJzxydIMB4P1wdtKHGwkKF2fxXjRH\n9vIKP3pLJoqs13upIb7lVy3p5ZCEmgaNiiMyLQlWxg4lG3dx/UBKqkC09qCh\n/+93922V9Hhad8aqh13nGjI+uHESDCCEXQnO18/vQiXGKkJxfvpNK7l9SAH9\nHhPK\r\n=hBVB\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"./dist/public_api.js","module":"./dist/es/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"d36a9575f1d71065e9c15fed4d2a9964ffad646a","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"npm run build-es6 && npm run build-cmjs && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build-es6":"tsc -P ./tsconfig-build.json --outDir 'dist/es' --module es2015 -d false --moduleResolution node","build-cmjs":"tsc -P ./tsconfig-build.json","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.14.4","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"12.16.2","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.4.0","eslint":"6.8.0","rollup":"2.7.1","ts-jest":"25.4.0","ts-node":"8.9.0","typedoc":"0.17.4","jest-junit":"10.0.0","typescript":"3.8.3","@types/jest":"25.2.1","@types/node":"13.13.2","semantic-release":"17.0.7","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.20.2","rollup-plugin-terser":"5.3.0","rollup-plugin-uglify":"6.0.4","eslint-config-xo-space":"0.24.0","rollup-plugin-livereload":"1.2.0","rollup-plugin-sourcemaps":"0.5.0","@typescript-eslint/parser":"2.29.0","rollup-plugin-typescript2":"0.27.0","eslint-config-xo-typescript":"0.27.0","@typescript-eslint/eslint-plugin":"2.29.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.0.1_1587576715731_0.5437548982331784","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"@ctrl/tinycolor","version":"3.0.2","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.0.2","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"35279ce126588539443fd2fda695177438b6f430","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.0.2.tgz","fileCount":65,"integrity":"sha512-Gh4rBwCqLlRowVqmNqbW3xRvQYbPlbnu6iudlZhsTcP/Ifo7q2rSQ2D8BSNUm7MNOozzn7t3buJNBF6RXvPq+g==","signatures":[{"sig":"MEUCIQDM9Pj4MUTpuDWTXW41AgQPHFcfj39A+NxGmx+A9DSKsQIgbNUHRj04Yyr6Wx8NPz7+es4ZICMwhhksLaG/ta1oSkc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":318908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeoIMeCRA9TVsSAnZWagAAj18P+wSeE9qNzFQAQpaW1SM0\n7hLitO0CTMwDVS1ZyuqUiOcajFds4MvB2yYyOCsmYPk1WVKqo6q3d5ifTqel\nmA82/XuwSm1jl1hxWgoIqtgEwGyMpTt288z1yp2dBP+MEkYvZmRsco+y50TN\nHV3FuJXo6ZXvM3YIzwV7pnsEeiaEZtPlYFOjIifgsE8ihOFVM7Qz61ySt2xu\nSFVxDdzZyn580J3byPrgzXb+PDSIR6y1BLJZeLb/m4DOlhXws1Xvry5lACm3\n45QW3EzMTTiQa989IGhlxwzvLm6n22B1dGa96B2dImFUAhimyoHUttQjSdYx\nrDan7MQK/RIATmaLneYJFPX3tVHzpUr+WG7QZ7wOcRTbFBS688mAEQ1A6Ri/\nEdDLh1QKoaBexyquv1/v0QYxC5Ip6szco6iTMYp3yU8cPgKHYsE447bTsvE+\n/Kym96kMq9NXBnvXqAx9f+sb47a6U5mrC2Ttl8lxFwrJQ7wIlBC6HD5UzJAL\nI+zhuNpJK12heADQj5z0Q31PDjA0o0aIARqPGfYM6G+jC6MCIcxNIZajjTJv\nrQ+gdyc4UU3igt02mAkKZbIaS5a+mcD0BDxxMRZPGY9Mw5S7VXaAAyJt41OG\nlfhm8zd667ZzEe7R0c64a2TfkifMO7AsdjF8aGj+Bruq3oEVuPB9N8KrzMl5\nPG0Z\r\n=hQ/v\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"./dist/public_api.js","module":"./dist/module/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"d7017a1757a71b1ac951d3bc8eff271227126a2a","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p ./tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc src && touch docs/.nojekyll","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.14.4","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"12.16.2","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.4.0","eslint":"6.8.0","rollup":"2.7.1","del-cli":"^3.0.0","ts-jest":"25.4.0","ts-node":"8.9.0","typedoc":"0.17.4","jest-junit":"10.0.0","typescript":"3.8.3","@types/jest":"25.2.1","@types/node":"13.13.2","semantic-release":"17.0.7","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.20.2","rollup-plugin-terser":"5.3.0","rollup-plugin-uglify":"6.0.4","eslint-config-xo-space":"0.24.0","rollup-plugin-livereload":"1.2.0","rollup-plugin-sourcemaps":"0.5.0","@typescript-eslint/parser":"2.29.0","rollup-plugin-typescript2":"0.27.0","eslint-config-xo-typescript":"0.27.0","@typescript-eslint/eslint-plugin":"2.29.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.0.2_1587577629448_0.4873301288010661","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@ctrl/tinycolor","version":"3.1.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.1.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"aeeb39271e0a797196a40e988558842610d2e1a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.1.0.tgz","fileCount":65,"integrity":"sha512-J92yG122XoF+UiuQSzBgV451vSm9B0xMb5oGs7vgZijYZtNc80hNep/KbgUeBbj5f+YHehrmbAHlg/yBGX3/+w==","signatures":[{"sig":"MEUCIEj3RSjgNuBO/z8Vdfxbqzmc7SB6nBKSp/654NYGw6ugAiEA+elCMKpeJfwEIawaEX1z0Ah4e2Qk5n0ZiHcl0HjsFxo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":322258,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJep89gCRA9TVsSAnZWagAAtfkP/1ZBqaE5B2G/OC5WDg63\nzoYqPOjGIPP3ftKButoGMzWLvPwlYP7gytmVZhCZbAUdDOfSwJzENa8GRKmY\nSW/pD+3ZI32h63k1U3dS+RU2fzD6Bxc/l5K6paEPwCZUyME2HtDRShEKHB+m\nyyvt+WK6zFwJZyFDvHuGEC7AzIcAvETXllwj94qvCTbRJUcOIZ552aws/sGk\np8e2QfDHwQp6dFTkaUo0ZFmo2qi6xKyZPnwKoi69W469VWWbQhCNfExUIiYH\n3Plfcyfk4XGNvRO7+7xIZX6EnoWHfPQzUfu+AKQjDGAVSbDdJgt0w/icgZaV\nisxK8WOcZ7QqGZP2hgwi+NtdIhP4N4YWfgGmiUbYTdvb05p0ftdgi4w0/694\nqr6//DD06AVVv5cK7eiQyu0N71O2sPP1m1GuVndJpKi9uGXKVqDd4ZX3YrKX\n7VEFotNAgl63JUC14C1VI31wEhlE71B9DE7R6BtIczFJJEzvwF5mgh1b7m/w\nklhJvjl0VmYimPpHoPxOw7TCA4yj3LfTc7uRk8KpXx2WAwy0HGik7iRDMlSD\nKVwuYE5m4/UB27tBn2j2IS0x9WU/9AG5x5Ezrqk6nilMfdYL5OBkxrO7xvvC\nMzb8l1joirKoetzjUe/5joYA4DyUwyyr5fE41ZK2J02sje+A9buuoBuWw+ya\nikgY\r\n=u9wR\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"./dist/public_api.js","module":"./dist/module/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"94bd1c05a859d4e797a84f72eaef2dca08e343d4","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p ./tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.14.4","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"12.16.2","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"25.4.0","eslint":"6.8.0","rollup":"2.7.2","del-cli":"^3.0.0","ts-jest":"25.4.0","ts-node":"8.9.0","typedoc":"0.17.4","jest-junit":"10.0.0","typescript":"3.8.3","@types/jest":"25.2.1","@types/node":"13.13.2","semantic-release":"17.0.7","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.20.2","rollup-plugin-terser":"5.3.0","rollup-plugin-uglify":"6.0.4","eslint-config-xo-space":"0.24.0","rollup-plugin-livereload":"1.2.0","rollup-plugin-sourcemaps":"0.5.0","@typescript-eslint/parser":"2.29.0","rollup-plugin-typescript2":"0.27.0","eslint-config-xo-typescript":"0.28.0","@typescript-eslint/eslint-plugin":"2.29.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.1.0_1588055903747_0.6497986268702558","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"@ctrl/tinycolor","version":"3.1.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.1.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"3fc58d91b8da4cbc8195ce5efae60383234373ac","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.1.1.tgz","fileCount":65,"integrity":"sha512-XR7/YQzCX3gqkwZhpg/zy8O4sQ8Tk3uhg2nsYMw5gHtEb0I7Hob4ssiQxKkm/bVBN/NH8uKhN9PJc7RPkcpY4Q==","signatures":[{"sig":"MEUCIHoVnGc6qnz0REndtlJQsrOVwVZ+pXgIy6WskqWgBkosAiEA4Gd6d0ltz2KxtBzU7TAQjbd3zpJJowdz5nXGspMVgYo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":322419,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJet5+jCRA9TVsSAnZWagAA47gP/jxGOtvsNeM7t2AkTf+D\nEmv+4BP4kYIX82HLOCt5d1hC28IVh8DbckpKrZLZHp6+N2L5kSxtMOzCSf9u\nSYSe8gBqlF1npgvisyBDNpM8U1CFhF44OIe114Tzq1wkmlvahlvgxdfOzn22\n+yd7NWDEQ3bnEvwS7SyzjAXs5p1SY0LHsChbCblwADRge83ayxWL3ZFawEwk\nz1kNlYq7z9mGfrgV67KNbmYFHK1aiMoXgkdfR/TtvqxtCcTQNSkbTJ1PpUk4\nm5Cn/Zafc7HgxVSid02o3dNcZQBmJ5ggd/bgLmAGeitmMi79EJ4XEv8giogn\nBtXSTxaxboC6Jo59Hjc9ocXRNuM8b+ZJ7kpGdQbJwtW//l4jyanBXMRcuc/F\nEWJI//iVdWq3EaGwdHwnI/OJrrnz0+U0gT148RrbZ7fyW9HkHIkwzCEyF3kb\nKtYqUVkUmo/9iPQTXNk5KnVQ3xpfm9/KZ0JhKXECBAoZPzWr/ZbX2z6n7vRd\nUAMhPD6eM0iJra/qmDuUfmD8WLFOXOrrcU+YKyqIxv3cwfpBxGDcm9LX9slZ\nHIPG8pL0gF0e6to6R96gHW9rCV2hlcroGg6sblKAlGOm8N27NkFI5l4e2GoT\nOwdt3a2w5t8BWwKrem0nbOWfJSGpAPFwHkL3LbLPkEm7RXEk7cxqKEKJynVB\nD6P5\r\n=Bx0Z\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"./dist/public_api.js","module":"./dist/module/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"cb6b11fa90e4e982225acd02fc858e7917b9a114","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p ./tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.14.4","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"12.16.3","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.0.1","eslint":"6.8.0","rollup":"2.8.2","del-cli":"3.0.0","ts-jest":"25.5.1","ts-node":"8.10.1","typedoc":"0.17.6","jest-junit":"10.0.0","typescript":"3.8.3","@types/node":"13.13.5","@jest/globals":"26.0.1","semantic-release":"17.0.7","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.20.2","rollup-plugin-terser":"5.3.0","rollup-plugin-uglify":"6.0.4","eslint-config-xo-space":"0.24.0","rollup-plugin-livereload":"1.3.0","rollup-plugin-sourcemaps":"0.6.2","@typescript-eslint/parser":"2.31.0","rollup-plugin-typescript2":"0.27.0","eslint-config-xo-typescript":"0.28.0","@typescript-eslint/eslint-plugin":"2.31.0"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.1.1_1589092259366_0.7863382158936894","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"@ctrl/tinycolor","version":"3.1.2","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.1.2","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://github.com/typectrl/tinycolor#readme","bugs":{"url":"https://github.com/typectrl/tinycolor/issues"},"dist":{"shasum":"f9dfa17147a229de32b75f4cef20f81e0dda0b8e","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.1.2.tgz","fileCount":65,"integrity":"sha512-Sw/L9CrwSrEpWoxuNFM+ibaDbbVALq3U+ZsOfOf0bmAEyMsza//S4TtRLsuXPXe1ekEbWfITxr00PRjtoIFI6w==","signatures":[{"sig":"MEUCIBCTUwQQDaM9CwdPEVPWx/YaLEqWZ/y5eMEEL818DiGoAiEA4dKVaNFrvZOa8hesLo34v+SLJGujcku9mFzASW42Z7I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":328550,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeze+RCRA9TVsSAnZWagAAViUP/A0ads7RABcUgyKTFH6K\nVRHFuIZpNt1ioQrgZRQHsJ9OZHqNV7JmWLXK1Ni5Bvnl5tpvcOYxL499rpSN\nAEWEVP869D+kPqt4ozc2QyBFlPTTUmiZBFyA/1JsOPB0VwI6awUP52dY167A\nUH8cjGSH5DQhTA32nt8s96VdAKABJZP8VVsYj/jx2o4ARcSsGZEjD0Ui8h7m\n0MGvgEli2qXg4FbfLjvQtxJpfcVfMbYSH3nNPZPWpIlLlCK1E3DIUcLOCgyz\nYdb1sKwhzgF0qiQVR6I9o+TNbGFW3KgB55AFABxGI31Ab9Q1qX8p0nmv0nnl\n4Qf8A2NcoGbAsLEopdA5lhoUWiGCUXygkEYQVskRl+p6GQsSQGcGR+IunQHE\nhy5UE+ua59fHCtix34SyGZPrS8Nnuc6N6g7iwrjwx2qvOrnc+t0mDhr3hDe4\nlNgOc+XCc/ZL9gLjOYTzdGPHtYsxf6PYULg6LpN8ro0eUJea1z5f20CLfViB\nUMQXpryXfBxiCoODwRX9mgkJw6ZjZEEETipSdSW0qmvAzIC8fQto/oORzlud\nULHIshHeQ+8sTuujF3WmdfqXqRTkArGEeNDuZU19ZIrTJpKA0lWlOefGfZFY\nOkxpsNriWMBis+x8v2xCzeqSQIPK7TV1ke5OlTIc9Aq83Pa3CHWmnTXt0gXo\nwA05\r\n=B8M9\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"./dist/public_api.js","module":"./dist/module/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"11fd8908a4e48ee1825caff452f18e959755d985","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p ./tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w","semantic-release":"semantic-release"},"typings":"./dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/typectrl/tinycolor.git","type":"git"},"_npmVersion":"6.14.5","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"12.16.3","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.0.1","eslint":"7.1.0","rollup":"2.10.9","del-cli":"3.0.1","ts-jest":"26.0.0","ts-node":"8.10.1","typedoc":"0.17.7","jest-junit":"10.0.0","typescript":"3.9.3","@types/node":"14.0.5","@jest/globals":"26.0.1","semantic-release":"17.0.8","rollup-plugin-serve":"1.0.1","eslint-plugin-import":"2.20.2","rollup-plugin-terser":"6.1.0","rollup-plugin-uglify":"6.0.4","eslint-config-xo-space":"0.24.0","rollup-plugin-livereload":"1.3.0","rollup-plugin-sourcemaps":"0.6.2","@typescript-eslint/parser":"3.0.1","rollup-plugin-typescript2":"0.27.1","eslint-config-xo-typescript":"0.29.0","@typescript-eslint/eslint-plugin":"3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.1.2_1590554512236_0.9337208243920194","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"@ctrl/tinycolor","version":"3.1.3","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.1.3","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"3406f90fd04a394a83fe874b763b7d89edffd4c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.1.3.tgz","fileCount":65,"integrity":"sha512-dHamDINLG/gF4Q6m3Ndnn4nGfLUCmvhY6Oweudqr2hMAMTIB2NvFrNW5HyjtdbqjNz9Z/unvA+/GI9QqBRgX0g==","signatures":[{"sig":"MEYCIQDo8dp4TIdPElBd5ZTgugtqvb7yBuDIF+3CGNRHCzmgZQIhAJmHC4n6ueMLuzDMlsu90dMGhi7xU1Rftn7MMilBU4XH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":328524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfBBjQCRA9TVsSAnZWagAAELkP/ip84GQbwrhQDTBuIqnB\nsCkL+VaQLcNJyksICU7npcuuljizACRnA+hAkZ5s9eMnRCOt+BU40FV3Z8N7\n9zvKJm5342atxKznHNQIOCJdYSbJdCfqU3GhQ9rPEKbyM8ezxqcqq9ccdhuc\nLHur1wuRuIlUeosmSmu2NEcNbjvPkTIIBBRtpG4RvX3mMXBtiRwov6qHA09Z\nSLI1YzHx3fPlPO703S4Ig2txz+cJ9RcuppGLzyH9Of05PizlmZMUtlZCE/Jc\nJHPJP/nQPRn+y+Ik+zrSqS5YGwUtgV9aOPWT1ra7dzy2CaOSLVwGaCWx/qjI\nxE2IPnO9YtrfHfAXvLD2jeTWfzCtRaE3pzDZ7zMEMaSSqsoIDOuH4qkLw+Ah\nzA0wed0lldaH+hOVdcU0FrDaoQxH6HMxhiVrOyuTxRc3NFpV971dtD1l8PfO\nMCpaVXO+iEllSaKH7MUwFW2m+9GfDv1+GLDY1MJ/lfQqwuiwiB0DeDt95zC1\nShhDwTppBUwFwKGqIWmX3ZyGNqTDf9aAF70z+nX0kRkLn14JfqcXclHnGK0u\nxEqZ9DrtU5tv3pjGtTMFMJfbnS6iZWldIr9W7dL1h2UjkaOF8blzsMWP59Ye\nj/2KetjyeBN6IKYLj6WktlK2n4eTJr4y6RKxCoxO+43SFuBY4drwiST8Ab1F\nF9GE\r\n=IJtk\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"dist/public_api.js","module":"dist/module/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"e43b2664eeb9fdd8a4b3d0642f8583b2659087a4","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p ./tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.5","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.5.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.1.0","rollup":"2.20.0","del-cli":"3.0.1","ts-jest":"26.1.1","ts-node":"8.10.2","typedoc":"0.17.8","jest-junit":"11.0.1","typescript":"3.9.6","@types/node":"14.0.18","@jest/globals":"26.1.0","@ctrl/eslint-config":"1.0.3","rollup-plugin-serve":"1.0.1","rollup-plugin-terser":"6.1.0","rollup-plugin-uglify":"6.0.4","rollup-plugin-livereload":"1.3.0","rollup-plugin-sourcemaps":"0.6.2","rollup-plugin-typescript2":"0.27.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.1.3_1594104016005_0.9965300003551834","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"@ctrl/tinycolor","version":"3.1.4","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.1.4","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"e27c158836e6523fd41a647bd86ec73a74aa4151","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.1.4.tgz","fileCount":65,"integrity":"sha512-WHn6ClDzGS3oACt4F/k0B9QwhQCeXXRguYE6UFe6OD6wLdESU8RoMs7Y1+FEr4Tj2VZd9bfb1aEhnB9KoVrLEA==","signatures":[{"sig":"MEUCICg5N/Xld7BMgA+5oqFxx9ssxIw/KQEoke06WG2pScUnAiEA1FXiIGPybBZVSfTG9lAAG+7DCxiUnNIohYPfbK2u0mg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":328564,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfMYoWCRA9TVsSAnZWagAArJQP/A5FE4q6ieSeRso1Sl42\nKXEhQB+nrjEGecvNDwt+5MYPXy32UG+a6IAafw7LZGBC6HPj/mvTtreGWfmr\n4AQ2rUBxtDry9mc6KMu/4g6T3q008MZsCG+FUJEkvI8bpsN27MvgvadSM4jx\nVLcbPbigvnimucPvfNSWwXAEf9k8+TIRINmg2XP9r8c4lZO2PTtWEVULMizL\ns2NJyx2MMOSReiiMp8JsX9Ma0xmImvY1/wpzC1Jb6ShwMC8N2gP8EeQ1NKwt\n2n0Fc9ncAaOfCx3sT7S5Mprxm0slaZR83I3Rxo6BZ5ZbAipzjCAG8aHIGD4U\nbF8ER08guyBL45/LsGUEDYQTMiCHhlo5oxYksSZgwllcVtmn8kCMyj/6e0NU\nj5+uaJZ6KJeH7XB1f5wZlYRREc3aA1WLTXKgyTO5PqndYU98y4/7ab6j1vq6\n8/Ck4vtoid+jMXZBnkxStk2WZnkw/kMwxcjD9oXNVnAHq4AwVa3CfvS1SEGl\n6TrcdMcNs6y2QhhC1Vm4xkWwVoUoMlQMo/nGAG61GeD5vdfR51QDM1TRjK2H\nERIu/W+Xs09dz/1kfBzQwyKBurzzZnG8boHpc2w0dQhPBlzDZSmh4si/UaVx\na5hOBhVfk/n8CuSpRCyS8AnC2LitotrWHaY227gqvgslYlcwW4UHjrVIMNvr\n0gRW\r\n=Sft9\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"preset":"ts-jest","testEnvironment":"node"},"main":"dist/public_api.js","module":"dist/module/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"96abd27a70192f3c5659119c66be1c1a3a8bf2fe","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.7","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.7.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.3.0","rollup":"2.23.1","del-cli":"3.0.1","ts-jest":"26.1.4","ts-node":"8.10.2","typedoc":"0.18.0","jest-junit":"11.1.0","typescript":"3.9.7","@types/node":"14.0.27","@jest/globals":"26.3.0","@ctrl/eslint-config":"1.0.5","rollup-plugin-serve":"1.0.3","rollup-plugin-terser":"7.0.0","rollup-plugin-uglify":"6.0.4","rollup-plugin-livereload":"1.3.0","rollup-plugin-sourcemaps":"0.6.2","rollup-plugin-typescript2":"0.27.2"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.1.4_1597082134223_0.7020196422203384","host":"s3://npm-registry-packages"}},"3.1.5":{"name":"@ctrl/tinycolor","version":"3.1.5","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.1.5","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"dd9174fb70392ccbbb84406df5c67d27e589d959","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.1.5.tgz","fileCount":65,"integrity":"sha512-EhlSHlgazQ4ZemE+RWg12wfIWvLY4L2rdKAr7weYGwYTq4ZgxKN8avhKGFAfHNO6e6JBCAP6XkD4dn0bqiHg6Q==","signatures":[{"sig":"MEYCIQDAEqBChWAc5XUxnRXV6BJcRhB+NMIwVfhDv2rUZGk/gQIhAI90ftEk8KU5XquRrAnocYJ+GuVSzLasZjrW7Muo2n0O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":329135,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfcXqMCRA9TVsSAnZWagAAv6YP/j71JlFDzQr1xwtoxN9W\nsgUZwfcKBiaXyvwthyqzRJmL4Y1NGlXwtBLgzTBsNQDx1IIKnaFSmwwfW8nE\ncbatEWrxjrFoNtvbIMTpQ48TS+L7FFNmqonPwqMnZzG9voSQ4M5h+iDKus1p\nUKLDzDbCIVk7oZ6b/zwNfwZ7qv2VEvGUKCmmc7QTxG0exxd3u3g9k3AU2kPq\ny9NULgsr2FstLsDPHozblryc0Rw1T2C9SKTJZ1+D+VOJOecGkUzdEdpk+Z62\nqyv1ULugm8xYOHDPaqWYBEFNf0vagSN6lq0VHVuB/8sXKmXU0de6kY9HVMfy\njYwGGWdGtyCmJYrF/OHotvBkTeDTGMbv6u1AX8cS6kW36LWPouqUMpja2Yi8\no8WUPKBSdHdGZcSkRyBzMFfCpLlLOwU2xw58uCll7yLWhGymCIRMit8c5GoQ\nj7fRKeM4VQ4bmTEKBXKRPJkVVgKubQuLiTt2T/91e9Xenk5Wo/XuA8OXl/xg\nEpG3O2UEqQL2QjAWoNsHuZVkCITKMDL5DibNDv282YkCRUIdFR9c+e3pluyO\nHuAq+TKD0caR/dsbGLYlOpyR/LCqonp//mI98towRWDptKT9vJST0hXou5vO\n9bvzyissOZ5c3P4bAYFObDD5lzfe4WiasHp3Kx6ut0vB9h7y74yfcat50uaX\nMFzu\r\n=Zi9y\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"0e8021b696899cee3b26efa17d1655c91176a653","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.8","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.11.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.4.2","rollup":"2.28.2","del-cli":"3.0.1","ts-node":"9.0.0","typedoc":"0.19.2","jest-junit":"11.1.0","typescript":"4.0.3","@types/node":"14.11.2","@jest/globals":"26.4.2","@ctrl/eslint-config":"1.2.1","rollup-plugin-serve":"1.0.4","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.10.4","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.2","rollup-plugin-typescript2":"0.27.3","@babel/plugin-transform-modules-commonjs":"7.10.4"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.1.5_1601272459872_0.22048031403904478","host":"s3://npm-registry-packages"}},"3.1.6":{"name":"@ctrl/tinycolor","version":"3.1.6","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.1.6","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"2d0ea7d433a34b1682e2e312e8a04812210fcc60","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.1.6.tgz","fileCount":41,"integrity":"sha512-9RUTT3omv+5mSYFVsX143R7cTDQmT1FibCzoUVmO294mRIT0Sc8dk5srN27BTH0JKzQDWKkNCKh6q/+EkNfpkA==","signatures":[{"sig":"MEUCIQC80AL33aZGrqaArlgcrYkEeHzfpURX/REnsZxt78t6xQIgXGm3HQy1MF9TubR6fciBQ7k8xBliU/MJ3UkUXsx76S0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":236502,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfieJKCRA9TVsSAnZWagAA0FAP/0tglncPERKaHSwv6AlB\ngpHCDRvhnfApn8r5H42Z/cBnjvS7yHcPRXlMxuGc39YmShid3IRbbiR/Xqzx\nYzFCb6xbFEdUsqFq+VrcOsu++LdMjpS2KlJJQghcSu9Vcd1rDdMVrbXweDFD\nQaNCmFtFq0xBt/FtuQnZWEPrVbovwlF3Afip6j+S6f/GjZywhNk5a4ZebMi5\nsvSImHb/DDDlsnO/YC95zhrDyDZnzFWK1aaeu5Oj3OC7Cay8nfZoZWLPijBc\n+2wBP+Xnj8YLs9TETV+/q2OB/rGyioDKuteMJCxpRFZbxpgas9NLsARdGoPZ\nwYajArDIc8BrKdR6PNQ9U18QwE+kuiBaLk7M9ggUVZRdAWgW42lZHdXCMknB\nTusz8BkCksIzFfoHGmjaMYs2+NQhWd1oEjuLXb/E7PkuTCRypTfmV6mwNdrm\njiuSq54tj54uNcqBW01DZxD5S/1JVEdqYITTdx0Zb6k1J4NLee2htUFyXbUM\nx1pqSLkD7Sdf0Iv9Rh5i9cGahIYVe6cgVYktGRryCAStQC+VrfRptCQWVfi9\nP02P4ODIXV+vLtJTnhfIM0n9r7SMJEkfJn6xv7hyA9pkdR1VnQdTwHnlTMRC\nPK1IqBzyIOvHS3Y9Xfi98IB6Hoxj/Jn/dmGuMUDMl9PN2yVVjBmPevvIEkwQ\n5Qcp\r\n=pHv+\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10.19.0"},"gitHead":"b060c34ee9c43e0607cceec0ca0da7883797d9d4","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.8","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.13.1","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.5.3","rollup":"2.31.0","del-cli":"3.0.1","ts-node":"9.0.0","typedoc":"0.19.2","jest-junit":"12.0.0","typescript":"4.0.3","@types/node":"14.11.9","@jest/globals":"26.5.3","@ctrl/eslint-config":"1.2.4","rollup-plugin-serve":"1.0.4","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.1","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.27.3","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.1.6_1602871881787_0.07069157972416917","host":"s3://npm-registry-packages"}},"3.1.7":{"name":"@ctrl/tinycolor","version":"3.1.7","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.1.7","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"1585f67629882002a9f8e15a2941c9a4321bf80c","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.1.7.tgz","fileCount":41,"integrity":"sha512-/0C6fjXbCwu22k8mMsKRSAo9zgu61d2p75Or9IuIC0Vu5CWN88t2QHK93LhNnxnqHWf5SFwFU28w9cKfTmnfvg==","signatures":[{"sig":"MEYCIQCl4Rln8CBOI42dAOQL3jxYw/UT6H2+ZWfClrdJoiY7QQIhAIGOKz1R1SNSGQ6Z9+T8azx2cUXYcMxCCbNrvOQmGg51","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":236497,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrsL8CRA9TVsSAnZWagAAmTMP/RrRxAlrZcb4wSsfB4m7\n5Xj5T5+aDyVn9nuqG2dwnHcclc825dLqa9QnSEBiMD7IvE33cVpZZvKxOeez\nqRo082VLrIiqPB/cpYgadm2Fo1Pr++7bY8hOKmD8zVYf88g/yx+WUHn1Rv4y\nSDzgsmeYpaQFwKTxgAMRQ7wJ5QbyifljfbaxDs04+oveAI3iRuMPedmT+7BV\nAlUM0RZiHPwuiCTLoF9m/fijNs8A9u/ARqx9iR+DAStGyRzWk9I/GCO9447o\njBw6vGabFQV8qBRXBo8KZhs57RCFdteLsmclL7iBZ9k7s4BzkQSQhCp3igyk\njEheS36UDVPjzEj8U7lFV5ZWb5MjqxJ9dAFXLUo/Ux26slaq/JVDImIaYGNR\n30cZ00X2Dsq9A7MLFIkNFi02iVe8N8e/zj/Iy6v0J6D2xPBETbqJpHYRu56q\nQvqq7OU15cQnXRtihn3on41HElWY81/UT7WyjoqTizP6z6hBF6PI8Ky8X/Hg\nQn+ixT4RxYqaeKiPOnxGVDwYcfZiMgxCKlpujTeudJkl10OYYHXCV66eh9sZ\nL9SV6bbUNt+A/rY0RKD/Z7WvXJRJ7IGaukukQblvLj1uX7u234TFJ28AkFli\nPrHZB4qUObcNcRaOVzwsCgsmoweszqkTXotoccU8a1WMBxF2eZaGjgbgqp55\ndEuj\r\n=TYms\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"f10efcdaa4d972cc9da5248fa7f62f0bec4edb6d","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.8","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.5.3","rollup":"2.31.0","del-cli":"3.0.1","ts-node":"9.0.0","typedoc":"0.19.2","jest-junit":"12.0.0","typescript":"4.0.3","@types/node":"14.11.9","@jest/globals":"26.5.3","@ctrl/eslint-config":"1.2.4","rollup-plugin-serve":"1.0.4","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.1","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.27.3","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.1.7_1605288699911_0.3135526037968994","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"@ctrl/tinycolor","version":"3.2.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.2.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"77a8a33edb2fdc02318c828be78f6fb3d6c65eb2","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.2.0.tgz","fileCount":41,"integrity":"sha512-cP1tbXA1qJp/er2CJaO+Pbe38p7RlhV9WytUxUe79xj++Q6s/jKVvzJ9U2dF9f1/lZAdG+j94A38CsNR+uW4gw==","signatures":[{"sig":"MEYCIQDZrIsg+VZU5fe8kRUGWKNtLeXHjIzVSJd0qYSZohCciAIhAJrf+qrT6AS0IflSRRSBBnCD2clrQMBZm7JBg67A2fYv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":238307,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfvvnTCRA9TVsSAnZWagAAAv4P/AqVWWKeMX5AEYVvSwA/\nhAxoBc+74LtPkuu4AWVVsn552WUDaYKv90yo+DW/Jl0o0hwpJii2To00Msd1\nPqDARtYNKNnbw5bGVx7JzP7xyxl3KwdQBKINFdSPMmX6P/RW4LCHSD1FdKXG\ngTHyevaW9m7bOl/ROQ1U8HIumgElTF0sAJo+BZdDZSLX3kHlzCCP7eLqjCss\n514IK7f4lTro7seEhF+0CyeQxBl6mZi171lo5hpzG8h4o5UzJozudyY1p200\nozghzTm+YSzxYiJ9XRCQTr9VGxT9vl+9yNecHDKYnwD5IC2NM//5fN4x1z0N\ng7bpgCnrtX2fkSVts6CdgLUdlzIG+5g6ZoNhNelqEgFgS11yg9owJ8gwlkzC\nt3pKJ1ViU26uzrm9WT5bSMrZNDVVl/h37veQP+hqyZAeh9UDJyzV+MRD8lXN\nssRtN20yRFstQfQiCwn3cHvNrxiA/aG3Ir0MCvJeokZxmJnlp3rJ9WNYZP83\nsiq69EI0SBAh5eVvNJlH9IDDT7NS6T20oXVSYeWR6xN2HiydZw0FHLXJpMId\n4xn5vIulfqwnwcR/qV2NqrOjjMtQeAj7scnlXKWRQ0hcbSCX50CIgkqYx6m7\n5j5Hex3itxyw9hX1PyctmN97McS2Lt+jiPNFHAlGj7g94cTm3uIZrM0n0RlC\nPxZO\r\n=vi9Z\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"0dd54dd277956cdbcd0d65f13ec756e31c51c29c","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.8","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.1","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.5.3","rollup":"2.31.0","del-cli":"3.0.1","ts-node":"9.0.0","typedoc":"0.19.2","jest-junit":"12.0.0","typescript":"4.0.3","@types/node":"14.11.9","@jest/globals":"26.5.3","@ctrl/eslint-config":"1.2.4","rollup-plugin-serve":"1.0.4","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.1","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.27.3","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.2.0_1606351315378_0.2515894487642911","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"@ctrl/tinycolor","version":"3.2.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.2.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"29a5a86bcfaa41555c8483a287294e520cc28cd6","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.2.1.tgz","fileCount":41,"integrity":"sha512-WmvsSfVKQx62vLbHXJvdh4PDjSK9YU6VW9ppXTlbjgDKCYtpy2sMWbK4i9OBdxY6RRwMMVctZhWo6Y5jfMRyTg==","signatures":[{"sig":"MEUCIQDSmDSup3U/nvzrVi35lJic4FsRkl9IsRizcu8KtCAP/wIgPw9oj+pxEAGg6gq3ncgEV6im75OUgk8/O7A1Lwi1dvI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":238949,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0SP2CRA9TVsSAnZWagAA8akP/Raegn6vAuTSIz/8j2+n\nnDYEzTcOVnIknwaX/qGyC7LU4qvKQ9Pq+1+53UTg4o2NvtNTHL6QUvQcLPYd\nG7aFD4EPvtkuRS4+Y0Jrz2EiQsiGjX26mCzd8YFGi3xC8QOICOu2R8Sh0A7N\nvfZMr4e+mzuUiohlTWi0njsfgNSJT7RZgpfaX8mFFO+DPIs6G33Jz4ZbVLEL\ngfUDy2imGmHGFHyud4Ciq4Ckq2aRuboR6VTZu7qCvcXwRkU5MuunrbdDeVZv\n1Aofcji1ySQyJV2VOAfwIkWtXajR4ocN88FR04SX/C51EX3Kb/l3SlPuI+rE\nAiKO9b4lBkawjj+ljjL7eICCsHFRqltxhzNZEFsWUtBw/GweBkyTeEDQpGtO\nta1+MBQJDV5UDGIa1xBWjb1ZHHRegwV2t4AmNRp8CGtbrtB1T9fcKyMaWiwR\nupo2tikvuRl9qyhMsH8RB6gKtZCrdnsn7Vcd+CzwkXAjmYt/psV4tr3B6CSX\nU/Z3k5Vd0vTT1ixvF6WqQKGdCyCrZMH7IgO8toqsoawPcGImYpc72bQrS5L2\n4zWGm1PAADTHueg1xxx2D1Z84CXs6GA6wVzyfBDH0/cvWlqoFMH78cd3k1Zp\nz+zm7FOvOr0lYIGwm8DXp5Y6pgTtk7QlPGAlAvDR2vAokcLtRXJlqCM4VvmE\naBrG\r\n=mdaw\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"349909b370b57aa19577d7d8556121d98fa6b22e","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.8","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.1","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","rollup":"2.34.2","del-cli":"3.0.1","ts-node":"9.1.1","typedoc":"0.19.2","jest-junit":"12.0.0","typescript":"4.1.2","@types/node":"14.14.11","@jest/globals":"26.6.2","@ctrl/eslint-config":"1.2.7","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.7","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.29.0","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.2.1_1607541750328_0.7311890944531461","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"@ctrl/tinycolor","version":"3.3.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.3.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"306be071761d1726dee364c4c1f7887bac646317","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.3.0.tgz","fileCount":52,"integrity":"sha512-JKiePztb/QBsucupn4waszYT76DAwiuf+39tE7mlDxL2m2XT2N7z06BVUmPPPyCXvJ8+IFLUkAOqUyYh049E/A==","signatures":[{"sig":"MEQCIHb4fNcxSNILI1dGUwSRC0N/Jt2s2isgt4Ag9R58lIEcAiB1YwmFrO6y0JUW0wsrC6uceA+m7i114CUnRvdQUeQTFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":288469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1ZFPCRA9TVsSAnZWagAAizAP/0Xal2L/dEuybNAD6Wpl\n3e78TxT324X2EuR7CsTkZdcccM/B8Qxhnc3ANUtkwUYSSyMfiOBUgsk6AhAw\nBdx/F3XdG9TlzZ3+vMdJTSmE9dhfMX2Y5LqH8C3+5SeP/sQqgH/b4J9BlqQ9\nVdtuCXQ4gRRpKS2YA7tEYrSAO1DB7RYXbnqCLbxx62WABSge6fWP9rU79Fw8\nYH6vryC5//YEaXKLUD5NBqXOKPRi5NLeRlJb/45wb/1vhdeMZNm24gVajxG1\nm8+y2+lMycufb9HoBmUNjx0q+2UMK/7TjBi3v3GAjcrzpMFspgA2kSuRLnxJ\n2ASNWHissDrqg79yxALFbJHXEcOsJDyqhDYfvbrV8Qu3IiQUHZMSrenOLMkQ\nDFgXj0jWStu2wbWw+42WKviuc0+S9KbumaTqIeUhiCudwEwM6zPF2AUMMGq+\noLmv/AUsIYHxpANt/6wLMID08PxSDqyIIEKBC2KhXnQBG190LQIpIcLt/gnY\nqafBu8qHPCetqz+36YoRnoi5gF3/mXbubsNl3VCHiQDwAITwMdqeTMWIC8G8\niwKDqk6RYD2sBR2Ei4H9xBLxOgDnnZKGKJUAxGY15d8LnIlh4Bh3vusr32Ao\niyGd6QJ7CVEF7aKI0wLfXJvW/W8UQRH35NRGecUs+m0hgLIoMJTj6SgtUiAh\n6fpH\r\n=zm6C\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"exports":"./dist/modern/public_api.js","gitHead":"c54b11901ef5433af92b7ecabcbcd275d7136bf8","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && tsc -p tsconfig.modern.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.8","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.1","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","rollup":"2.34.2","del-cli":"3.0.1","ts-node":"9.1.1","typedoc":"0.19.2","jest-junit":"12.0.0","typescript":"4.1.3","@types/node":"14.14.13","@jest/globals":"26.6.2","@ctrl/eslint-config":"1.2.8","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.7","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.29.0","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.3.0_1607831886652_0.5479395416157034","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"@ctrl/tinycolor","version":"3.3.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.3.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"fa0efcf813daa43f8a6aef3ddaa80f7e66f1278e","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.3.1.tgz","fileCount":41,"integrity":"sha512-jUJrjU62MUgHDSu5JfONfgRM2V7GfN5KknsygfIbxwRZXGeayIzxk4O9GiYgEAr9DG5HJThTF5+a5x3wtrOKzQ==","signatures":[{"sig":"MEUCICNo145ilWNJFtYZn4IMPClQcYWkPYd4QEwfGZkUfZHOAiEAmgdjprUaqOz4KkzWQJTs0IfcgsGJlfsk/szIX1CujY8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":241608,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1lDBCRA9TVsSAnZWagAADrkQAIiuEOVSZVE+PJZpnUZ2\nXadPDwAfnz/VgzE/n/wxVW1240xIbi0gGUvhWvnSYq8OS72USddWKqHd40xF\nL0+gK/KY9eSjn0SziBvHsCvkGLqiEmjy2bsSt/Ryl4fOUOPcBhFvqFtFBoTr\nUgR0m5BATowpcudgTRjbL+bTN5131pZlrWrvM59W0uskO2Vlzs9dSzk9zsKl\n+wThmTxx3o1yS/5vJBrPYyNPAeegkWdKywsWFUt+U6Yx17mm1491h+wVMMWA\n/yUps0cSCatBAEUhC+jB7Jsyr/M8BAS13XZPkgcf2bzkkjCiWo2UJ2soEImq\nhzGrOAaK7wZi5OMPtI2+hMTdLh9GnAAci6s0HV2/EIpmGsYFeVJgqd/4nN7k\nGRACFvDnQzZW/nBU+roVWE6nRNwHrwyalUBaCdCguuRCZ2Xwttj4bTdyeNh6\nKoGAxIn5HQSsKhpjXd90oicB9pAEUbJfqSXDq2F9l+pn9xs3QWnQElakMtGs\nXUAzsOL9ArW9vpJHrOm5tRDUnaWUUaqyNkLEduqg/LQ6iMMb5RhmDB0/5bqv\nGah+QgKIN7JEWW7G5WaCEoMwd8ouJfunJ7/3GZ+5ChOrY4DeD/rudlwBleB7\nnjUiuvIVJhIwPdFhxhXlTzksopw9qMtQKYsOnxMwAsBwdn2FLim3qdAJSAGY\n8NNs\r\n=TF7U\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"edcddb7d8a30098f3df1d732576f420e9515b837","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --target ES6 --mode file src","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.8","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.1","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","rollup":"2.34.2","del-cli":"3.0.1","ts-node":"9.1.1","typedoc":"0.19.2","jest-junit":"12.0.0","typescript":"4.1.3","@types/node":"14.14.13","@jest/globals":"26.6.2","@ctrl/eslint-config":"1.2.8","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.7","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.29.0","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.3.1_1607880897127_0.1529615376158706","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"@ctrl/tinycolor","version":"3.3.2","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.3.2","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"902c4c7e6b48553e4f83c0c1c565a6b071b02520","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.3.2.tgz","fileCount":41,"integrity":"sha512-28A2j9DISNtHRcfc+FSCkxIAMnQoORQYz+UQLjc0+KlsGl80MqfbG3EzqXxzVmCMatlgmHfcX7/DBoMg+ik/Fg==","signatures":[{"sig":"MEUCIQCB7YDGtFgKa41PaPo8R5xFddxRx3+evE1eObZD78K3igIgCUAitQKMFw3UQ6lGUrvAR+d7JtVBh1LXu7UzHmy2WsM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":242116,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf/01kCRA9TVsSAnZWagAAZB8P/j6ao2bY7zz0uGeos60p\n3mmzhdBKs38J4aO/kqx17dawmy4T/m+NK9uKoyErieby7NvNBp1TDTF+u3Cl\nI+HpvWrKwZ0ZH2EOz3b/ECIC7aMs/yGDlUmol+7xkXrn+1h3Nd7cbLwVoysn\nowgIMN9qR7CGl3hgc77of6SMDezL7/2dH7IMvtbRbzZLIDfm4Up/gc5T0uPE\nHt86iKE0BS2Sovxw30w+ScBzDyeUCHpLVkFpbv+o0nE8UrEeX3sGsX8s0zwZ\nfZ61EhLkEKTvvOejxoYIrlCLfl1ADjeoSk5arKppXUeL1CCMbz69liCn5kNC\nEZHXzDi3513TIsm9jpumBMSSdZFx131IO+nyLQC9biKF1X+SrtBfUmwFQpca\nu9SRVVopkLg65GhR7ku6wDx0nplAbO0CjpvrIePsRao30NdsVEz+a+GxfD6E\nhj/uoWMgrRR3046xNZTBDOV7C3aAACQPzZ1ErDehoCUivfVe0dwl6Zm0xgsc\nqBvCyPHD32sj1oD2SoyyaMEIJlYh4alyCKVvylPHdqUF0lqlvniQBY9bm5Yt\nCFR4swohr6SHsSrZhjZEcDs6YOlK51u+qix0kQ3yrReFuwGFZc31L39oJVYo\n7wJR8uRcXwz6G7bYUO+R2QJIoHvRolB83njFEUb6L1DE9V9P2W3U+kmbPGHG\nIIxm\r\n=e4J+\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"ce3b3df873f644b529987882adf7a3ab648ee690","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.10","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.4","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","rollup":"2.35.1","del-cli":"3.0.1","ts-node":"9.1.1","typedoc":"0.20.4","jest-junit":"12.0.0","typescript":"4.1.3","@types/node":"14.14.16","@jest/globals":"26.6.2","@ctrl/eslint-config":"1.2.8","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.7","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.29.0","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.3.2_1610567011655_0.26516632072348134","host":"s3://npm-registry-packages"}},"3.3.3":{"name":"@ctrl/tinycolor","version":"3.3.3","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.3.3","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"980487763bc7c9238d6d88d1ac0dee2d4df3df68","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.3.3.tgz","fileCount":41,"integrity":"sha512-v75yutF4BDMv9weDQVM+K5XEfjiODhugSV729pnoxtBDO61ij2CsDnQa4N4E9xGaH3/FX5ASZjnajljT2F71tA==","signatures":[{"sig":"MEUCIQDRlnp8C0tVak/hXXI9gXIk4xdd+/ywgJ3dXrcGCLoRawIgOn9RxbWv0OUiR2mmwfl6XFnYcEUcFH0q2ncG0S78UFI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":242173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgCzF3CRA9TVsSAnZWagAA2HsQAIPDETaTd9n4a2NwWz2h\npW5ep2n85fTakoP2pNW7OeNLUtVYkgZ5hxQcN+YOugfXEXD92y5+MNanpPsx\n9Ukejtf2mcUXN1mE3ouTUd/XxUhgMFr496J+CSDAEbefL6oOCN0qJFcmztFM\nw1HwNIRlh7lbpAP6zWyNKMf3St1hB6ty/XDVPruFyTNrjdedwTJkJYXc6EHe\nv+LbVU1+E2uZ78iTN8QQ2o/w/5XViY0L1hvuIz5WZNVJSCxgPbPdTAxwN3DO\nsz+GxziwPxjX6NNi4sfCHpnD+Mx2hpb2I2RMGjvfvPleBiu/I7k4bk0ZR99c\nioQ1eCuHYdUK0eSUS9kmRyG1LI5PFc4nXCoTP3WkY1rhsj6fxLCvt9IhTGj9\n124eA6Z1xRzvGtZKMKwwzLAUIP+8iCDwr3wodwXWCL1UzuvHjVvm1xLdej+s\nHTFqlHPvbxP9NnyFmfCaEfk2SjylQiju/STf6osXed1OpPJiZQc+zfxDJXOR\n7+I9smkK0I1FYtVo/iqaH9HBPt/Rm8RDVuxqO93Kv2Av3Lp0cvYROt36gZ7U\nmpwSM0vQYHVgU2CZJCbWSNycwfEz218IH6ZOlUIf1Vm1fkLntglZHu3fXMoT\nsHvQpQiJITgMgFypa1PMgrwL0uVFx+YmKiLtnlgZB7I9im5vsl/jbnlt5sX4\n2Knw\r\n=vnzc\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"6b2868cada30ee80284ccee6e4f3a7aa95c8eedd","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.10","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.4","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","rollup":"2.38.0","del-cli":"3.0.1","ts-node":"9.1.1","typedoc":"0.20.16","jest-junit":"12.0.0","typescript":"4.1.3","@types/node":"14.14.22","@jest/globals":"26.6.2","@ctrl/eslint-config":"1.2.11","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.7","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.29.0","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.3.3_1611346294527_0.4649788846322316","host":"s3://npm-registry-packages"}},"3.3.4":{"name":"@ctrl/tinycolor","version":"3.3.4","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.3.4","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"59691edd031eedc431bda1bdf601257c06289a40","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.3.4.tgz","fileCount":41,"integrity":"sha512-8vmPV/nIULFDWsnJalQJDqFLC2uTPx6A/ASA2t27QGp+7oXnbWWXCe0uV8xasIH2rGbI/XoB2vmkdP/94WvMrw==","signatures":[{"sig":"MEYCIQC801aXOFhALSOodYkxcJr16Qvmm/X/PRJ+FKFpmuaFwgIhAPacAyDReL2AQH+S1t4ymLqYGw/ybtMvsg/gtucb0mdw","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":241772,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGH1YCRA9TVsSAnZWagAAstIP/05qQVVZjrT9HkUpxVR5\nBXFKetJlqOahC34kHNmgxrpYG+3Wm2ijJ1yoFAhBlWUdP8lHqekitlXFGEXl\ndGU6cHfAHiajRpFfux+pMnbKSNkr7TGSNmsYthHwxLLoa4zr3/RswYSh/ZZR\nWEGa0IqqCYkS4VJMlf57IJAdR32nAYDM3KPr+Lbz+6jLfE8/vDvaArjfFfhU\ngZw4jNNJKBOFtYb551u+/5d7nWJaUX9MxF0ZEABi7O++LX/67+wt7ZSldYgw\npBs/9jUPa377hRLrSSTtR/O/Cqwf4vtMN+eCLicGfDeBSQItUZrDEPky98e9\n0U6NdiZeMBy48BhpltZc5Yn4eNFeMMsIwVghGLMeosV/kBGRBVb13AgdZuYq\nOBFioiUtwzvuSxfwHF4UwFqtFwkxlld4lMJGXZ7Q9ZuxdKE7KV34aoznaR9H\nlevj2pYqwKJEjYKhY7zYk06TMDDIyNkbn5pbAEtvIcPXO+cHe7yXRBoXUqwP\n0GI9hAgdY+nbzuAiJIi1OsYRy1mbimtyu8Yu/CpMEG4S0V326c6XQNwQLw/y\nSX5lCsGdPjUH6TTR+VBsgSriNvK271Ls+4mNBASFMJRbxPeJdFqrgq7pCLR0\ni4UiecbNoWxuaZJB0ZFDc6lJzTjLFWtQDGQgKX5B3SRFeaY12NntPNoGhmnl\nD2lT\r\n=HUx4\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"bc2de086cad0dbf94a79c126c027ed37586de20a","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.10","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.4","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","rollup":"2.38.0","del-cli":"3.0.1","ts-node":"9.1.1","typedoc":"0.20.16","jest-junit":"12.0.0","typescript":"4.1.3","@types/node":"14.14.22","@jest/globals":"26.6.2","@ctrl/eslint-config":"1.2.11","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.7","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.29.0","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.3.4_1612217688148_0.3911039819129978","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"@ctrl/tinycolor","version":"3.4.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.4.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"c3c5ae543c897caa9c2a68630bed355be5f9990f","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.4.0.tgz","fileCount":41,"integrity":"sha512-JZButFdZ1+/xAfpguQHoabIXkcqRRKpMrWKBkpEZZyxfY9C1DpADFB8PEqGSTeFr135SaTRfKqGKx5xSCLI7ZQ==","signatures":[{"sig":"MEUCICu/N5sBGsfDmA7C0MmnwICtqufo349rlmfhjJoU3dhVAiEAmiYFVEHyUbDAyucI/WLU+78S51PQ8L8AsyasWwwMX0I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":241880,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgItZxCRA9TVsSAnZWagAAcZ0P/jcUolIW9xDfbc75jaOP\nSFN6vKUR+CepIu3Q+5mBCowC5W6c7BDq6JAh4kr8Nqo7o158HfW335AyLEf7\nJTFrM+cG3BRW+QA5+aDLq7tdwTp6TeTECmDbVurzW5HWYE8dzrFLtzj2AxIt\nMhT2Xsh94AyzUgknXMp78Avff7gBh2G4v07PnNNitFvxITXDCIIIl7kAx1B0\neAfPcYnp9+a2eOeoAowr317kSUQ4+POgVIS0YLK/2Mmc+dO7PEKcrui/Xjnl\npxHpL9ffY2dszdYB99goobb6eQOh6dwlCquE1acARHCmTQePfLb4s7Np8DiA\nkre8gnkKgnPE0CR5b4PwE4tu7O1GmuU7cw+ucsMUIZYiKowIGTa1ePd64jS3\n6NC0VQM4RhcMx7DXv5mzGSO2k+n/36yKf5zG/5o6Z8bvYCTnoYGLwuVBS9qZ\nEUiWoFtNOxEiDI12bJ6pcHGUrdMFLnxpyoafoDTXoHStksdlOI/Ey37rS6SQ\nVIEKm1vK+kVIORM9PnSt2S+SlxS/pVszFUq73rVQt0z+78fWbS5kouPkbUW2\nm+2RbeP05YpK87ecQoj5eYYFPbOHI4/YbO1rVwbikySnu4yxR0a8igSGDogD\nq07BX/Mkm7gET33zVIbQNjt5fUY7vbJLf4mg4YZoGScYzSscto2IYq8o+6pO\nH9jT\r\n=QRTF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"e0a400a35d202d25e017bbb83e61cbc100703774","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"6.14.10","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"14.15.4","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"26.6.3","rollup":"2.38.0","del-cli":"3.0.1","ts-node":"9.1.1","typedoc":"0.20.16","jest-junit":"12.0.0","typescript":"4.1.3","@types/node":"14.14.22","@jest/globals":"26.6.2","@ctrl/eslint-config":"1.2.11","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","rollup-plugin-uglify":"6.0.4","@babel/preset-typescript":"7.12.7","rollup-plugin-livereload":"2.0.0","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.29.0","@babel/plugin-transform-modules-commonjs":"7.12.1"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.4.0_1612895856372_0.9388424660415269","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"@ctrl/tinycolor","version":"3.4.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.4.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"75b4c27948c81e88ccd3a8902047bcd797f38d32","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.4.1.tgz","fileCount":41,"integrity":"sha512-ej5oVy6lykXsvieQtqZxCOaLT+xD4+QNarq78cIYISHmZXshCvROLudpQN3lfL8G0NL7plMSSK+zlyvCaIJ4Iw==","signatures":[{"sig":"MEUCID5zZGYRZE4vZre0BP0KS/IYsVPj4Vt07ZPV5yC0EgYZAiEA9MCKvh/GVyLl3BMvH9PueSvDZ4KUzwZo9p/Tj2Ko218=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":243577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiUz1dACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo5Xg/+L2bkWyhngUyf0ubBqWPs6g3oDGuQmsjknX3TJ4Yl/3h11Qvh\r\n022bSkJvsHLC2FHCC2M03amcTkUX7DWCeezvKVi7V8DEMEnjdzTmyIYYXDRo\r\nBQxmLjS/wNiiRdt+gfUmggqqOejQgDN+wUQYI9Kf6aCtRq+k1Mx0BmPCE0DT\r\nc0+Nck/qjd4qWKFamGFRIkWcBrKtDjKCQ8gsHnayokotYOHaj9CFM+MII9NG\r\nsOzRtcl4hRYfE1rTw9cGfRxSUQUl8XhEquVRkQVTJxXfyWwn4zfeC6QP9a7D\r\ne4xdrtMKnnL/zUs0W+H5V6kpj07R46OHHtgbMwtI+Mvvi7phmd9WJc1pkNQ/\r\ngfGv5mYbUX2b9vvysaeGHxuWidxaGo8FOG7HkxIohMs34L3IaVRiV14hEFIn\r\nZssa74D76Vi032Vl7Z8xxML9rHMfkSIyseNYPh0PdoWJ7SmQDzswSzUy+3fH\r\naTJFEUVoYe6BcduTooFtoR0obV55T1X9zY6assVCk6RVa4d8DXoK2ffx9wlh\r\n00Q+p0ZIkFumyioj84dXrax1nCYi/0g0BpIvx9m6+k37bH3GoGXkReDga690\r\nQ0tb5LRvx6TDjxzdXXgZzWvIGNpUfw37IUEVqw0NdZBljUX3JciO3mIFCBmb\r\nASzhL7Lb6phQKGsQh2qZMjvYcUlC3ci2R7o=\r\n=7SI/\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node","coverageProvider":"v8"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"e20448498ea4571d19265407962c7d1cfaf51f05","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"8.5.5","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"17.9.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"27.5.1","rollup":"2.70.1","del-cli":"4.0.1","ts-node":"10.7.0","typedoc":"0.22.14","jest-junit":"13.1.0","typescript":"4.6.3","@types/node":"17.0.23","@jest/globals":"27.5.1","@ctrl/eslint-config":"3.4.1","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","@babel/preset-typescript":"7.16.7","rollup-plugin-livereload":"2.0.5","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.31.2","@babel/plugin-transform-modules-commonjs":"7.17.9"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.4.1_1649622365267_0.7490588746462188","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"@ctrl/tinycolor","version":"3.5.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.5.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"6e52b3d1c38d13130101771821e09cdd414a16bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.5.0.tgz","fileCount":41,"integrity":"sha512-tlJpwF40DEQcfR/QF+wNMVyGMaO9FQp6Z1Wahj4Gk3CJQYHwA2xVG7iKDFdW6zuxZY9XWOpGcfNCTsX4McOsOg==","signatures":[{"sig":"MEYCIQC4CiFjGapuQNwy9AhVc8SkADFrHAc41da46IF9LpgEiAIhAKLXgtbF24hw1iF+bXRE5cOb4gy4oG2Q2/JL0YgMbvQe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjl1lACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqfjQ/+LiUYyBBnjTsUgL2ruoJoKuVUEGnyQabDDVCnVhGoh/cA4DMP\r\nwzh2Eo1k7rQ1NfnadSkhCbZKniI/2f/j2c50gDZRRWSdssKMG2Cbf3dHG4fR\r\nLHgj5bzx2SeN3owQUeyfYlrg6kGAO9QJZNWoB8Y/WPlqHjCBrIJEWXNOP2o4\r\nQC+CFZIqGE/aPwx6t97L5oIkpxo0anksq0EcyIlGPO05omC/vbO+ZSysh78G\r\nKWtq2L+mSTiND/dJ5eHg1ESi/EOiT5WutHWGbMd2H5hL1MUORdVXyfGEKJB6\r\n3NdFMqRQ7Zaq9ZAUEkXHH95JbqCWo0hFOfJufPnBtZ8u7q2CALGP0VScmIOH\r\n3RXo21f2W3xCNPCALAHLP4klCkNjgRrlRrYx0lhqKfGMzb8hGvjqtKSXcZIl\r\nB94olVp9/PLNaySsYEgEthiZq1ARRSz+ccc/rb1/mv3iF05yCpiy32PfXnpw\r\nBe/rgivvhC3XaZ9stoB7im4KPxsbpuhXpEnSzu4Xo7ZIcqi5oikMMoUcVKjd\r\nSO3KfLLbnk4gO6cGuHxYVnapH4x1H9G3jmbQ6yGtlrL/6c2gFNb9fPpI6eDK\r\nOIJigZWczMj3byZNcOYyxnqOfqBTN1qhLDtS6EalOw73JBm9BXlcjsDUC+Jt\r\nzmPfrxpG0eA+7RWlUiSh8ot4YSDsYAzHkjY=\r\n=aGaE\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node","coverageProvider":"v8"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"f659dce8f9ca4597b3ecfe7862cb4da237d82a10","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"8.19.3","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"19.1.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.3.1","rollup":"2.70.1","del-cli":"5.0.0","ts-node":"10.9.1","typedoc":"0.23.21","jest-junit":"15.0.0","typescript":"4.9.3","@types/node":"18.11.11","@jest/globals":"29.3.1","@ctrl/eslint-config":"3.5.6","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","@babel/preset-typescript":"7.18.6","rollup-plugin-livereload":"2.0.5","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.34.1","@babel/plugin-transform-modules-commonjs":"7.19.6"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.5.0_1670274405514_0.5667345368929264","host":"s3://npm-registry-packages"}},"3.5.1":{"name":"@ctrl/tinycolor","version":"3.5.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.5.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"e3b2a1473e802a945ee872dbb98bcf9a6a53755b","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.5.1.tgz","fileCount":41,"integrity":"sha512-Bp8VF1lm91/vxFSBdVrrSe+P4KpjRCSAJ6qPSeLFnVprT/ERXHDvV2OJSJbRwl1r/KcySshTUnVbAzrSbn93fg==","signatures":[{"sig":"MEQCIDJSvmALOCFMV0IuL0YasvX+AIzjApA7Tm2p+c4FWtT0AiBqMESm6xJoEBDLncHvFzJyMa7ZWzQOIE8aib/z/yvbbQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":245849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6nssACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp6Hw//ft9ZcTup4xlksB1l+BEi0Koy4DQObkGrDGXqGFaJEINCiwv4\r\nz1ksoVOl1Xc5SvH9M3iEzBBNTZisjndxEjtdxBRXQQCi74aLPQgKXdt32KjC\r\nQl/RTKOZT8At+OgSrswDBvNSz5oq/WMymkhpxK+rW2SlKXhrpsDa7+hvrzAi\r\nB0fxIgJ04vOh9HH894wOxKa6lawlMqzLka1cy53gh0lFgh+v8FWzqUl69wEn\r\nUe8FlUba+P64vP4zrGEf/1ZslIkQU6V6DUuefD8EmGEL4Aa/uADHG8bBBK0H\r\nOkuCfXZ5lAHQb/y90JJWd/Fboll5bFTgGE2zGRXv/3AkeDgdYWF76ocBavQc\r\nCDuHGRHpaIKyziH5OURp8E5cBlKpKpYMfnxKvDrU+seaR4o2XGlseeuRuJ2x\r\ns9NQUUDTNzHXdh1Kdyu47WkwB/H7xmrsKbf0akhX0NPf3a5J+Oo4U43W5xFo\r\nq9R6l/HnNw8GKe0Mf/l5enVuaoli8Y9wrFrwVeuvV2s7w7t5s+kHQuSJwbZA\r\n5soei8e9CmqOuFXPoBq7PzzK0ti2mqGBIFgLdiPy/lhYcXLELtebIY7zoBVR\r\n6DmSF0oe647JnX1s44S9rZom7RDL0eB9ll9XPt2IXLM0UhI+uatR2VDwdHDM\r\nVz+lna3e2sd9IvX53LNqGyxb4nbF/RkPBIc=\r\n=QgUF\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node","coverageProvider":"v8"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"365fdd2edff314a4888d06b032dd85ea8e8ba2a9","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"9.4.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"19.6.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.3.1","rollup":"2.70.1","del-cli":"5.0.0","ts-node":"10.9.1","typedoc":"0.23.21","jest-junit":"15.0.0","typescript":"4.9.3","@types/node":"18.11.11","@jest/globals":"29.3.1","@ctrl/eslint-config":"3.5.6","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","@babel/preset-typescript":"7.18.6","rollup-plugin-livereload":"2.0.5","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.34.1","@babel/plugin-transform-modules-commonjs":"7.19.6"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.5.1_1676311339856_0.2583021412295041","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"@ctrl/tinycolor","version":"3.6.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.6.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"53fa5fe9c34faee89469e48f91d51a3766108bc8","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.6.0.tgz","fileCount":41,"integrity":"sha512-/Z3l6pXthq0JvMYdUFyX9j0MaCltlIn6mfh9jLyQwg5aPKxkyNa0PTHtU1AlFXLNk55ZuAeJRcpvq+tmLfKmaQ==","signatures":[{"sig":"MEUCID1tmCO+aD7JoRijg3Wz/O3nv2WPDS3I6vC7RVfrSNAQAiEA/R576+t92LZ15zO7ltXys6PMnwlALWdMtdun2gbIEtU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":247974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj68dmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr9YQ//cfY1RWny28k091Q8A9hm7XuIAlnPs1XwLWzA9v+klHc6X4LB\r\n5fT06IZJj7JD8gdHZeAEkTV2vD/Rxfgurecsm07D3BAnIKR0jG+EV3I8qDKP\r\nuu+ejVXAbzLFsmbATWoOSWfPW8vs9CdheYiGM0lNsyWwGZvQRow4eP2jDWrN\r\nHCSCTgc+5T5kMkB5hukMr/zXI+AZFzQGOayF854jPCRux/YhNr05ifd35gSp\r\nq8Eax2SyDJPuXzumvN+cLFWXH5XUJhfnTstQx+Pja5ZNF9YKhwRdRlNa7V6i\r\nOEHbIkAoW7F86F5xMp84k8Tiez04lYLODomghndggH59XstGNN7iHsLuNGYn\r\ny6qo6TRxg1ChNn9Ync/BkIc5xVZ/AIqYFzY7LspsWtm4x4BSVr/uDsjx+UdO\r\nLb1iF6rhWnWTimhkm7tr0ZIcQplTwIDy/vfKj7RWTD38buV97aQcpcAGAtTG\r\n/WFQTL+9hDkbNSsucaPnhnLjQ2xq2hUFoBMIHNCEUfLCoNDtclsGK8DQECQF\r\nb8TXRJFozllxjzyYPXMw55PvI5bljqrj605Wz77/L5o08WQEoeDZUCJPBkz1\r\nQvGQpUCpcm3unfieX8uxgVQ4hpJxIe9AG9DZeqUQipxdka+mvzA3+IzlPENc\r\nk8HI36nwpwsKsE/bKEqy72zdgykikwELA3U=\r\n=v/vZ\r\n-----END PGP SIGNATURE-----\r\n"},"jest":{"testEnvironment":"node","coverageProvider":"v8"},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"9dccfb6abf63fedcf27448f5d62b53100e6091f0","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"9.4.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"19.6.0","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.3.1","rollup":"2.70.1","del-cli":"5.0.0","ts-node":"10.9.1","typedoc":"0.23.21","jest-junit":"15.0.0","typescript":"4.9.3","@types/node":"18.11.11","@jest/globals":"29.3.1","@ctrl/eslint-config":"3.5.6","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","@babel/preset-typescript":"7.18.6","rollup-plugin-livereload":"2.0.5","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.34.1","@babel/plugin-transform-modules-commonjs":"7.19.6"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.6.0_1676396390444_0.43262589830531684","host":"s3://npm-registry-packages"}},"3.6.1":{"name":"@ctrl/tinycolor","version":"3.6.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@3.6.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"b6c75a56a1947cc916ea058772d666a2c8932f31","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-3.6.1.tgz","fileCount":41,"integrity":"sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==","signatures":[{"sig":"MEUCIQDxkmcupAhr/csEf8YBvMRre5tU0hh29nPjnnX6hIrVcgIgAdWQpj6cSJIVJV3mP4WhZueoccL2bIjuUezhdGgCMYw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":248687},"jest":{"testEnvironment":"node","coverageProvider":"v8","moduleNameMapper":{"(.+)\\.js":"$1"}},"main":"dist/public_api.js","babel":{"plugins":["@babel/plugin-transform-modules-commonjs"],"presets":["@babel/preset-typescript"]},"module":"dist/module/public_api.js","engines":{"node":">=10"},"gitHead":"ee70e0014e069cad3f4e177ee0cb819fdf4794ea","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"jest","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"jest --ci --runInBand --reporters=default --reporters=jest-junit --coverage","lint:fix":"eslint --fix --ext .js,.ts, .","build:demo":"rollup -c rollup.demo.js","build:docs":"typedoc --out demo/public/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"jest --watch","watch:demo":"rollup -c rollup.demo.js -w"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"9.8.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"20.5.1","dependencies":{},"publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"jest":"29.3.1","rollup":"2.70.1","del-cli":"5.0.0","ts-node":"10.9.1","typedoc":"0.23.21","jest-junit":"15.0.0","typescript":"4.9.3","@types/node":"18.11.11","@jest/globals":"29.3.1","@ctrl/eslint-config":"3.5.6","rollup-plugin-serve":"1.1.0","rollup-plugin-terser":"7.0.2","@babel/preset-typescript":"7.18.6","rollup-plugin-livereload":"2.0.5","rollup-plugin-sourcemaps":"0.6.3","rollup-plugin-typescript2":"0.34.1","@babel/plugin-transform-modules-commonjs":"7.19.6"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_3.6.1_1692825993835_0.5098933375068373","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@ctrl/tinycolor","version":"4.0.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@4.0.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"f8185ed1639d3904ec473ece0e91e3d677b98c96","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-4.0.0.tgz","fileCount":41,"integrity":"sha512-c0CEvs6FsBU1QI/nVBY5QQvTnkkTjAfL6t1YwNtI6sGGf2CI+C7znHLxS5EqBCnIDPuLFkgJNMTba7n2eyTz8w==","signatures":[{"sig":"MEUCIQCbNYPTX4gRrxl0riOtISBlGR77QwXc9UVdwSCAnjsDmgIgZDp9phnVwysB+7RzOliW1ngO8GJjJzmQ1TF+Z9x1CUI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":232583},"main":"dist/public_api.js","module":"dist/module/public_api.js","engines":{"node":">=14"},"gitHead":"1943691aa3c7b02efa285ab57638cbc63406ba05","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"vitest run","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml","lint:fix":"eslint --fix --ext .js,.ts, .","demo:build":"npm run build --workspace=demo","demo:watch":"npm run dev --workspace=demo","docs:build":"typedoc --out demo/dist/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"vitest"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"workspaces":["demo"],"_npmVersion":"9.8.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"20.5.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"3.28.1","vitest":"0.34.2","del-cli":"5.0.0","ts-node":"10.9.1","typedoc":"0.24.8","typescript":"5.1.6","@types/node":"20.5.4","@ctrl/eslint-config":"4.0.3","@vitest/coverage-v8":"0.34.2","@rollup/plugin-terser":"0.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_4.0.0_1692829003734_0.5631100437278618","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@ctrl/tinycolor","version":"4.0.1","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@4.0.1","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"982651217246bf241850dd979a04ff41a06b0847","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-4.0.1.tgz","fileCount":41,"integrity":"sha512-dfimuE1mfaqL8P8jyQzdk9yFeFUWCyhjK5VyydXgDtQO0fezr6aWaGauHnlI07BZBIF45gahb0oxJjkUcylDwQ==","signatures":[{"sig":"MEUCIClA1QMmSNNP8Nh5c5iL+LlM9XKozXLjov/K7z8a9pa8AiEA2joF2xG2mbNgskQ4GHfdFL4o/26sn2t+YcbOCk82jhc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":232598},"main":"dist/public_api.js","module":"dist/module/public_api.js","engines":{"node":">=14"},"gitHead":"cd64cbd8c1e50fd356018187641cb0bc777c19f7","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"vitest run","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml","lint:fix":"eslint --fix --ext .js,.ts, .","demo:build":"npm run build --workspace=demo","demo:watch":"npm run dev --workspace=demo","docs:build":"typedoc --out demo/dist/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"vitest"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"workspaces":["demo"],"_npmVersion":"9.8.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"20.5.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"3.28.1","vitest":"0.34.2","del-cli":"5.0.0","ts-node":"10.9.1","typedoc":"0.24.8","typescript":"5.1.6","@types/node":"20.5.4","@ctrl/eslint-config":"4.0.3","@vitest/coverage-v8":"0.34.2","@rollup/plugin-terser":"0.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_4.0.1_1692909959280_0.5517477384029343","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@ctrl/tinycolor","version":"4.0.2","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@4.0.2","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"7665b09c0163722ffc20ee885eb9a8ff80d9ebde","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-4.0.2.tgz","fileCount":41,"integrity":"sha512-fKQinXE9pJ83J1n+C3rDl2xNLJwfoYNvXLRy5cYZA9hBJJw2q+sbb/AOSNKmLxnTWyNTmy4994dueSwP4opi5g==","signatures":[{"sig":"MEYCIQCi3roJVlA9F0rrK6+Xpfh45XU4quPXfhNTenygcbV6OwIhALQ1+TFlY+o7Zeyf3sy9tawNYZuOBT6XdTzG9xWRNFeA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":233059},"main":"dist/public_api.js","module":"dist/module/public_api.js","engines":{"node":">=14"},"gitHead":"31a98e09ac0f9499ccf6971acd2a006703527d27","release":{"branch":"master"},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"vitest run","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml","lint:fix":"eslint --fix --ext .js,.ts, .","demo:build":"npm run build --workspace=demo","demo:watch":"npm run dev --workspace=demo","docs:build":"typedoc --out demo/dist/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"vitest"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"9.8.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"20.5.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"3.28.1","vitest":"0.34.2","del-cli":"5.0.0","ts-node":"10.9.1","typedoc":"0.24.8","typescript":"5.1.6","@types/node":"20.5.4","@ctrl/eslint-config":"4.0.3","@vitest/coverage-v8":"0.34.2","@rollup/plugin-terser":"0.4.3"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_4.0.2_1693411972947_0.6831962691730462","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"@ctrl/tinycolor","version":"4.0.3","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@4.0.3","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"c56d96ef0d7be598cf68d1ab53f990849a79f5b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-4.0.3.tgz","fileCount":41,"integrity":"sha512-e9nEVehVJwkymQpkGhdSNzLT2Lr9UTTby+JePq4Z2SxBbOQjY7pLgSouAaXvfaGQVSAaY0U4eJdwfSDmCbItcw==","signatures":[{"sig":"MEYCIQD9heH/7kWvLtRIQqWJTNRfaKG5pgwVmNYfJU/yMh1PxQIhAKuQ2ixcMoorF1Oyr1jIa4RqkMtKiEzIDWGmFaug7AIL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":233529},"main":"dist/public_api.js","module":"dist/module/public_api.js","engines":{"node":">=14"},"gitHead":"64270d80c1287355c6c9f719baa6777d5eac3ee5","release":{"branches":["master"]},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"vitest run","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml","lint:fix":"eslint --fix --ext .js,.ts, .","demo:build":"npm run build --workspace=demo","demo:watch":"npm run dev --workspace=demo","docs:build":"typedoc --out demo/dist/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"vitest"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"10.2.3","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"20.10.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"4.9.5","vitest":"1.2.1","del-cli":"5.1.0","ts-node":"10.9.2","typedoc":"0.25.7","typescript":"5.3.3","@types/node":"20.11.5","@ctrl/eslint-config":"4.0.14","@vitest/coverage-v8":"1.2.1","@rollup/plugin-terser":"0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_4.0.3_1705515041997_0.787903950393215","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"@ctrl/tinycolor","version":"4.0.4","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@4.0.4","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"25dd4161b6f64678b5639cf070f15dcb8caf72f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-4.0.4.tgz","fileCount":41,"integrity":"sha512-DIjWxEgyP+YGh7Znx9PjsunmpVsAySYRofMUjZCRWUZ1JVS8GHurry6OebnQD2dPviRUTH9VmiupFivS7Ik9ew==","signatures":[{"sig":"MEUCIQCh7Vbf7hL5Dabeliu89rAYRyN/r1CorLyqiLPxau6L6gIgRcaeqBvs3fwvO1Az9GDD+NWEleCF68Q9UV9i71i4/i0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":233765},"main":"dist/public_api.js","module":"dist/module/public_api.js","engines":{"node":">=14"},"gitHead":"8dd8b3a6906bd24debb115e2b3a03c54fafccf39","release":{"branches":["master"]},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"vitest run","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml","lint:fix":"eslint --fix --ext .js,.ts, .","demo:build":"npm run build --workspace=demo","demo:watch":"npm run dev --workspace=demo","docs:build":"typedoc --out demo/dist/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"vitest"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"10.5.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"20.12.0","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"4.9.5","vitest":"1.2.1","del-cli":"5.1.0","ts-node":"10.9.2","typedoc":"0.25.7","typescript":"5.3.3","@types/node":"20.11.5","@ctrl/eslint-config":"4.0.14","@vitest/coverage-v8":"1.2.1","@rollup/plugin-terser":"0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_4.0.4_1712598144280_0.9076680780990929","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"@ctrl/tinycolor","version":"4.1.0","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","_id":"@ctrl/tinycolor@4.1.0","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"homepage":"https://tinycolor.vercel.app","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"dist":{"shasum":"91a8f8120ffc9da2feb2a38f7862b300d5e9691a","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-4.1.0.tgz","fileCount":41,"integrity":"sha512-WyOx8cJQ+FQus4Mm4uPIZA64gbk3Wxh0so5Lcii0aJifqwoVOlfFtorjLE0Hen4OYyHZMXDWqMmaQemBhgxFRQ==","signatures":[{"sig":"MEUCIAXa04u9S2tyyxvx3pKQv5jOa2Lq9MtFqycMeoq6QyeNAiEA+SMjp9uAB5eLlyVxJCBQqZ0TEHS17ZcZl4KmttPlHvY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":244065},"main":"dist/public_api.js","module":"dist/module/public_api.js","engines":{"node":">=14"},"gitHead":"2927a9d2aa03e037486a79a295542a7848621691","release":{"branches":["master"]},"scripts":{"lint":"eslint --ext .js,.ts, .","test":"vitest run","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","prepare":"npm run build","test:ci":"vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml","lint:fix":"eslint --fix --ext .js,.ts, .","demo:build":"npm run build --workspace=demo","demo:watch":"npm run dev --workspace=demo","docs:build":"typedoc --out demo/dist/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test:watch":"vitest"},"typings":"dist/public_api.d.ts","_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"repository":{"url":"git+https://github.com/scttcper/tinycolor.git","type":"git"},"_npmVersion":"10.5.0","description":"Fast, small color manipulation and conversion for JavaScript","directories":{},"sideEffects":false,"_nodeVersion":"20.12.1","publishConfig":{"access":"public"},"_hasShrinkwrap":false,"devDependencies":{"rollup":"4.9.5","vitest":"1.2.1","del-cli":"5.1.0","ts-node":"10.9.2","typedoc":"0.25.7","typescript":"5.3.3","@types/node":"20.11.5","@ctrl/eslint-config":"4.0.14","@vitest/coverage-v8":"1.2.1","@rollup/plugin-terser":"0.4.4"},"_npmOperationalInternal":{"tmp":"tmp/tinycolor_4.1.0_1713035085606_0.23610525543602412","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"@ctrl/tinycolor","version":"4.2.0","description":"Fast, small color manipulation and conversion for JavaScript","author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"publishConfig":{"access":"public","provenance":true},"license":"MIT","homepage":"https://tinycolor.vercel.app","repository":{"type":"git","url":"git+https://github.com/scttcper/tinycolor.git"},"keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"main":"dist/public_api.js","module":"dist/module/public_api.js","typings":"dist/public_api.d.ts","sideEffects":false,"scripts":{"demo:build":"npm run build --workspace=demo","demo:watch":"npm run dev --workspace=demo","lint":"eslint --ext .js,.ts, .","lint:fix":"eslint --fix --ext .js,.ts, .","prepare":"npm run build","build":"del-cli dist && tsc -p tsconfig.build.json && tsc -p tsconfig.module.json && ts-node build","docs:build":"typedoc --out demo/dist/docs --hideGenerator --tsconfig tsconfig.build.json src/public_api.ts","test":"vitest run","test:watch":"vitest","test:ci":"vitest run --coverage --reporter=default --reporter=junit --outputFile=./junit.xml"},"devDependencies":{"@ctrl/eslint-config":"4.0.14","@rollup/plugin-terser":"0.4.4","@types/node":"20.11.5","@vitest/coverage-v8":"1.2.1","del-cli":"5.1.0","rollup":"4.9.5","ts-node":"10.9.2","typedoc":"0.25.7","typescript":"5.3.3","vitest":"1.2.1"},"release":{"branches":["master"]},"engines":{"node":">=14"},"_id":"@ctrl/tinycolor@4.2.0","gitHead":"76556bef29349b05931a6122b88491c5b69c18ba","bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"_nodeVersion":"20.19.5","_npmVersion":"10.9.3","dist":{"integrity":"sha512-kzyuwOAQnXJNLS9PSyrk0CWk35nWJW/zl/6KvnTBMFK65gm7U1/Z5BqjxeapjZCIhQcM/DsrEmcbRwDyXyXK4A==","shasum":"ba5d0b917303c0b3d3c14c4865cdc6ded25ac05f","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ctrl/tinycolor/-/tinycolor-4.2.0.tgz","fileCount":41,"unpackedSize":244090,"attestations":{"url":"/-/npm/v1/attestations/@ctrl%2ftinycolor@4.2.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQDa7s/q+zfqcBoiqXD47VSClJb2vnc6vOR4G1jdKfhwBAIgGeqVodjn2eLk+bYn0Llu8k0qrmR6i+F5gbYeypaS6Mc="}]},"_npmUser":{"name":"scttcper","email":"scttcper@gmail.com"},"directories":{},"maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/tinycolor_4.2.0_1757992667902_0.359713062645753"},"_hasShrinkwrap":false}},"time":{"created":"2018-04-30T06:54:02.621Z","modified":"2025-09-16T03:17:48.490Z","1.0.0":"2018-04-30T06:54:02.773Z","1.1.0":"2018-05-01T18:09:21.913Z","1.1.1":"2018-05-02T16:36:18.342Z","1.2.0":"2018-05-07T06:46:02.819Z","2.0.0":"2018-05-09T07:58:55.675Z","2.0.1":"2018-08-01T04:54:26.142Z","2.1.0":"2018-08-02T18:07:11.995Z","2.2.0":"2018-08-10T19:12:00.176Z","2.2.1":"2018-09-26T06:16:55.858Z","2.3.0":"2019-03-03T01:03:07.136Z","2.4.0":"2019-03-05T17:45:47.395Z","2.5.0":"2019-05-20T07:38:19.508Z","2.5.1":"2019-05-20T14:44:08.768Z","2.5.2":"2019-05-28T05:43:00.055Z","2.5.3":"2019-07-17T06:39:25.147Z","2.5.4":"2019-10-17T06:06:11.628Z","2.6.0":"2019-12-19T07:17:42.535Z","2.6.1":"2020-03-02T00:47:41.035Z","3.0.0":"2020-04-22T17:18:35.275Z","3.0.1":"2020-04-22T17:31:55.957Z","3.0.2":"2020-04-22T17:47:09.563Z","3.1.0":"2020-04-28T06:38:23.842Z","3.1.1":"2020-05-10T06:30:59.525Z","3.1.2":"2020-05-27T04:41:52.335Z","3.1.3":"2020-07-07T06:40:16.172Z","3.1.4":"2020-08-10T17:55:34.473Z","3.1.5":"2020-09-28T05:54:20.026Z","3.1.6":"2020-10-16T18:11:21.958Z","3.1.7":"2020-11-13T17:31:40.102Z","3.2.0":"2020-11-26T00:41:55.542Z","3.2.1":"2020-12-09T19:22:30.474Z","3.3.0":"2020-12-13T03:58:06.848Z","3.3.1":"2020-12-13T17:34:57.361Z","3.3.2":"2021-01-13T19:43:31.778Z","3.3.3":"2021-01-22T20:11:34.743Z","3.3.4":"2021-02-01T22:14:48.339Z","3.4.0":"2021-02-09T18:37:36.510Z","3.4.1":"2022-04-10T20:26:05.433Z","3.5.0":"2022-12-05T21:06:45.717Z","3.5.1":"2023-02-13T18:02:20.017Z","3.6.0":"2023-02-14T17:39:50.610Z","3.6.1":"2023-08-23T21:26:34.052Z","4.0.0":"2023-08-23T22:16:43.990Z","4.0.1":"2023-08-24T20:45:59.468Z","4.0.2":"2023-08-30T16:12:53.229Z","4.0.3":"2024-01-17T18:10:42.168Z","4.0.4":"2024-04-08T17:42:24.450Z","4.1.0":"2024-04-13T19:04:45.788Z","4.1.1":"2025-09-15T19:52:46.624Z","4.1.2":"2025-09-15T20:13:43.540Z","4.2.0":"2025-09-16T03:17:48.101Z"},"bugs":{"url":"https://github.com/scttcper/tinycolor/issues"},"author":{"name":"Scott Cooper","email":"scttcper@gmail.com"},"license":"MIT","homepage":"https://tinycolor.vercel.app","keywords":["typescript","color","manipulation","tinycolor","hsa","rgb"],"repository":{"type":"git","url":"git+https://github.com/scttcper/tinycolor.git"},"description":"Fast, small color manipulation and conversion for JavaScript","maintainers":[{"name":"scttcper","email":"scttcper@gmail.com"}],"readme":"# tinycolor \n\n[![npm](https://badgen.net/npm/v/@ctrl/tinycolor)](https://www.npmjs.com/package/@ctrl/tinycolor)\n[![coverage](https://badgen.net/codecov/c/github/scttcper/tinycolor)](https://codecov.io/gh/scttcper/tinycolor)\n[![bundlesize](https://badgen.net/bundlephobia/min/@ctrl/tinycolor)](https://bundlephobia.com/result?p=@ctrl/tinycolor)\n\n> TinyColor is a small library for color manipulation and conversion\n\nA fork of [tinycolor2](https://github.com/bgrins/TinyColor) by [Brian Grinstead](https://github.com/bgrins)\n\n__DEMO__: https://tinycolor.vercel.app \n\n### Changes from tinycolor2\n\n* reformatted into TypeScript / es2015 and requires node >= 8\n * tree shakeable \"module\" export and no package `sideEffects`\n* `tinycolor` is now exported as a class called `TinyColor`\n* default export removed, use `import { TinyColor } from '@ctrl/tinycolor'`\n* new `random`, an implementation of [randomColor](https://github.com/davidmerfield/randomColor/) by David Merfield that returns a TinyColor object\n* several functions moved out of the tinycolor class and are no longer `TinyColor.`\n * `readability`, `fromRatio` moved out\n * `random` moved out and renamed to `legacyRandom`\n * `toFilter` has been moved out and renamed to `toMsFilter`\n* `mix`, `equals` use the current TinyColor object as the first parameter\n* added polyad colors tinycolor PR [126](https://github.com/bgrins/TinyColor/pull/126)\n* color wheel values (360) are allowed to over or under-spin and still return valid colors tinycolor PR [108](https://github.com/bgrins/TinyColor/pull/108)\n* added `tint()` and `shade()` tinycolor PR [159](https://github.com/bgrins/TinyColor/pull/159)\n* `isValid`, `format` are now propertys instead of a function\n\n## Install\n\n```sh\nnpm install @ctrl/tinycolor\n```\n\n## Use\n\n```ts\nimport { TinyColor } from '@ctrl/tinycolor';\nconst color = new TinyColor('red').toHexString(); // '#ff0000'\n```\n\n## Accepted String Input\n\nThe string parsing is very permissive. It is meant to make typing a color as input as easy as possible. All commas, percentages, parenthesis are optional, and most input allow either 0-1, 0%-100%, or 0-n (where n is either 100, 255, or 360 depending on the value).\n\nHSL and HSV both require either 0%-100% or 0-1 for the `S`/`L`/`V` properties. The `H` (hue) can have values between 0%-100% or 0-360.\n\nRGB input requires either 0-255 or 0%-100%.\n\nIf you call `tinycolor.fromRatio`, RGB and Hue input can also accept 0-1.\n\nHere are some examples of string input:\n\n### Hex, 8-digit (RGBA) Hex\n\n```ts\nnew TinyColor('#000');\nnew TinyColor('000');\nnew TinyColor('#369C');\nnew TinyColor('369C');\nnew TinyColor('#f0f0f6');\nnew TinyColor('f0f0f6');\nnew TinyColor('#f0f0f688');\nnew TinyColor('f0f0f688');\n```\n\n### RGB, RGBA\n\n```ts\nnew TinyColor('rgb (255, 0, 0)');\nnew TinyColor('rgb 255 0 0');\nnew TinyColor('rgba (255, 0, 0, .5)');\nnew TinyColor({ r: 255, g: 0, b: 0 });\n\nimport { fromRatio } from '@ctrl/tinycolor';\nfromRatio({ r: 1, g: 0, b: 0 });\nfromRatio({ r: 0.5, g: 0.5, b: 0.5 });\n```\n\n### HSL, HSLA\n\n```ts\nnew TinyColor('hsl(0, 100%, 50%)');\nnew TinyColor('hsla(0, 100%, 50%, .5)');\nnew TinyColor('hsl(0, 100%, 50%)');\nnew TinyColor('hsl 0 1.0 0.5');\nnew TinyColor({ h: 0, s: 1, l: 0.5 });\n```\n\n### HSV, HSVA\n\n```ts\nnew TinyColor('hsv(0, 100%, 100%)');\nnew TinyColor('hsva(0, 100%, 100%, .5)');\nnew TinyColor('hsv (0 100% 100%)');\nnew TinyColor('hsv 0 1 1');\nnew TinyColor({ h: 0, s: 100, v: 100 });\n```\n\n### CMYK\n\n```ts\nnew TinyColor('cmyk(0, 25, 20, 0)');\nnew TinyColor('cmyk(0, 100, 100, 0)');\nnew TinyColor('cmyk 100 0 100 0)');\nnew TinyColor({c: 0, m: 25, y: 25, k: 0});\n```\n\n### Named\n\n```ts\nnew TinyColor('RED');\nnew TinyColor('blanchedalmond');\nnew TinyColor('darkblue');\n```\n\n### Number\n```ts\nnew TinyColor(0x0);\nnew TinyColor(0xaabbcc);\n```\n\n### Accepted Object Input\n\nIf you are calling this from code, you may want to use object input. Here are some examples of the different types of accepted object inputs:\n\n```ts\n{ r: 255, g: 0, b: 0 }\n{ r: 255, g: 0, b: 0, a: .5 }\n{ h: 0, s: 100, l: 50 }\n{ h: 0, s: 100, v: 100 }\n```\n\n## Properties\n\n### originalInput\n\nThe original input passed into the constructer used to create the tinycolor instance\n\n```ts\nconst color = new TinyColor('red');\ncolor.originalInput; // \"red\"\ncolor = new TinyColor({ r: 255, g: 255, b: 255 });\ncolor.originalInput; // \"{r: 255, g: 255, b: 255}\"\n```\n\n### format\n\nReturns the format used to create the tinycolor instance\n\n```ts\nconst color = new TinyColor('red');\ncolor.format; // \"name\"\ncolor = new TinyColor({ r: 255, g: 255, b: 255 });\ncolor.format; // \"rgb\"\n```\n\n### isValid\n\nA boolean indicating whether the color was successfully parsed. Note: if the color is not valid then it will act like `black` when being used with other methods.\n\n```ts\nconst color1 = new TinyColor('red');\ncolor1.isValid; // true\ncolor1.toHexString(); // \"#ff0000\"\n\nconst color2 = new TinyColor('not a color');\ncolor2.isValid; // false\ncolor2.toString(); // \"#000000\"\n```\n\n## Methods\n\n### getBrightness\n\nReturns the perceived brightness of a color, from `0-255`, as defined by [Web Content Accessibility Guidelines (Version 1.0)](http://www.w3.org/TR/AERT#color-contrast).\n\n```ts\nconst color1 = new TinyColor('#fff');\ncolor1.getBrightness(); // 255\n\nconst color2 = new TinyColor('#000');\ncolor2.getBrightness(); // 0\n```\n\n### isLight\n\nReturn a boolean indicating whether the color's perceived brightness is light.\n\n```ts\nconst color1 = new TinyColor('#fff');\ncolor1.isLight(); // true\n\nconst color2 = new TinyColor('#000');\ncolor2.isLight(); // false\n```\n\n### isDark\n\nReturn a boolean indicating whether the color's perceived brightness is dark.\n\n```ts\nconst color1 = new TinyColor('#fff');\ncolor1.isDark(); // false\n\nconst color2 = new TinyColor('#000');\ncolor2.isDark(); // true\n```\n\n### getLuminance\n\nReturns the perceived luminance of a color, from `0-1` as defined by [Web Content Accessibility Guidelines (Version 2.0).](http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef)\n\n```ts\nconst color1 = new TinyColor('#fff');\ncolor1.getLuminance(); // 1\n\nconst color2 = new TinyColor('#000');\ncolor2.getLuminance(); // 0\n```\n\n### getAlpha\n\nReturns the alpha value of a color, from `0-1`.\n\n```ts\nconst color1 = new TinyColor('rgba(255, 0, 0, .5)');\ncolor1.getAlpha(); // 0.5\n\nconst color2 = new TinyColor('rgb(255, 0, 0)');\ncolor2.getAlpha(); // 1\n\nconst color3 = new TinyColor('transparent');\ncolor3.getAlpha(); // 0\n```\n\n### setAlpha\n\nSets the alpha value on a current color. Accepted range is in between `0-1`.\n\n```ts\nconst color = new TinyColor('red');\ncolor.getAlpha(); // 1\ncolor.setAlpha(0.5);\ncolor.getAlpha(); // .5\ncolor.toRgbString(); // \"rgba(255, 0, 0, .5)\"\n```\n\n### onBackground\n\nCompute how the color would appear on a background. When the color is fully transparent (i.e. `getAlpha() == 0`), the result will be the background color. When the color is not transparent at all (i.e. `getAlpha() == 1`), the result will be the color itself. Otherwise you will get a computed result.\n\n```ts\nconst color = new TinyColor('rgba(255, 0, 0, .5)');\nconst computedColor = color.onBackground('rgb(0, 0, 255)');\ncomputedColor.toRgbString(); // \"rgb(128, 0, 128)\"\n```\n\n### String Representations\n\nThe following methods will return a property for the `alpha` value, which can be ignored: `toHsv`, `toHsl`, `toRgb`\n\n### toHsv\n\n```ts\nconst color = new TinyColor('red');\ncolor.toHsv(); // { h: 0, s: 1, v: 1, a: 1 }\n```\n\n### toHsvString\n\n```ts\nconst color = new TinyColor('red');\ncolor.toHsvString(); // \"hsv(0, 100%, 100%)\"\ncolor.setAlpha(0.5);\ncolor.toHsvString(); // \"hsva(0, 100%, 100%, 0.5)\"\n```\n\n### toHsl\n\n```ts\nconst color = new TinyColor('red');\ncolor.toHsl(); // { h: 0, s: 1, l: 0.5, a: 1 }\n```\n\n### toHslString\n\n```ts\nconst color = new TinyColor('red');\ncolor.toHslString(); // \"hsl(0, 100%, 50%)\"\ncolor.setAlpha(0.5);\ncolor.toHslString(); // \"hsla(0, 100%, 50%, 0.5)\"\n```\n\n### toCmykString\n\n```ts\nconst color = new TinyColor('red');\ncolor.toCmykString(); // \"cmyk(0, 100, 100, 0)\"\n```\n\n### toNumber\n```ts\nnew TinyColor('#aabbcc').toNumber() === 0xaabbcc // true\nnew TinyColor('rgb(1, 1, 1)').toNumber() === (1 << 16) + (1 << 8) + 1 // true\n```\n\n### toHex\n\n```ts\nconst color = new TinyColor('red');\ncolor.toHex(); // \"ff0000\"\n```\n\n### toHexString\n\n```ts\nconst color = new TinyColor('red');\ncolor.toHexString(); // \"#ff0000\"\n```\n\n### toHex8\n\n```ts\nconst color = new TinyColor('red');\ncolor.toHex8(); // \"ff0000ff\"\n```\n\n### toHex8String\n\n```ts\nconst color = new TinyColor('red');\ncolor.toHex8String(); // \"#ff0000ff\"\n```\n\n### toHexShortString\n\n```ts\nconst color1 = new TinyColor('#ff000000');\ncolor1.toHexShortString(); // \"#ff000000\"\ncolor1.toHexShortString(true); // \"#f000\"\n\nconst color2 = new TinyColor('#ff0000ff');\ncolor2.toHexShortString(); // \"#ff0000\"\ncolor2.toHexShortString(true); // \"#f00\"\n```\n\n### toRgb\n\n```ts\nconst color = new TinyColor('red');\ncolor.toRgb(); // { r: 255, g: 0, b: 0, a: 1 }\n```\n\n### toRgbString\n\n```ts\nconst color = new TinyColor('red');\ncolor.toRgbString(); // \"rgb(255, 0, 0)\"\ncolor.setAlpha(0.5);\ncolor.toRgbString(); // \"rgba(255, 0, 0, 0.5)\"\n```\n\n### toPercentageRgb\n\n```ts\nconst color = new TinyColor('red');\ncolor.toPercentageRgb(); // { r: \"100%\", g: \"0%\", b: \"0%\", a: 1 }\n```\n\n### toPercentageRgbString\n\n```ts\nconst color = new TinyColor('red');\ncolor.toPercentageRgbString(); // \"rgb(100%, 0%, 0%)\"\ncolor.setAlpha(0.5);\ncolor.toPercentageRgbString(); // \"rgba(100%, 0%, 0%, 0.5)\"\n```\n\n### toName\n\n```ts\nconst color = new TinyColor('red');\ncolor.toName(); // \"red\"\n```\n\n### toFilter\n\n```ts\nimport { toMsFilter } from '@ctrl/tinycolor';\ntoMsFilter('red', 'blue'); // 'progid:DXImageTransform.Microsoft.gradient(startColorstr=#ffff0000,endColorstr=#ff0000ff)'\n```\n\n### toString\n\nPrint to a string, depending on the input format. You can also override this by passing one of `\"rgb\", \"prgb\", \"hex6\", \"hex3\", \"hex8\", \"name\", \"hsl\", \"hsv\"` into the function.\n\n```ts\nconst color1 = new TinyColor('red');\ncolor1.toString(); // \"red\"\ncolor1.toString('hsv'); // \"hsv(0, 100%, 100%)\"\n\nconst color2 = new TinyColor('rgb(255, 0, 0)');\ncolor2.toString(); // \"rgb(255, 0, 0)\"\ncolor2.setAlpha(0.5);\ncolor2.toString(); // \"rgba(255, 0, 0, 0.5)\"\n```\n\n### Color Modification\n\nThese methods manipulate the current color, and return it for chaining. For instance:\n\n```ts\nnew TinyColor('red')\n .lighten()\n .desaturate()\n .toHexString(); // '#f53d3d'\n```\n\n### lighten\n\n`lighten: function(amount = 10) -> TinyColor`. Lighten the color a given amount, from 0 to 100. Providing 100 will always return white.\n\n```ts\nnew TinyColor('#f00').lighten().toString(); // '#ff3333'\nnew TinyColor('#f00').lighten(100).toString(); // '#ffffff'\n```\n\n### brighten\n\n`brighten: function(amount = 10) -> TinyColor`. Brighten the color a given amount, from 0 to 100.\n\n```ts\nnew TinyColor('#f00').brighten().toString(); // '#ff1919'\n```\n\n### darken\n\n`darken: function(amount = 10) -> TinyColor`. Darken the color a given amount, from 0 to 100. Providing 100 will always return black.\n\n```ts\nnew TinyColor('#f00').darken().toString(); // '#cc0000'\nnew TinyColor('#f00').darken(100).toString(); // '#000000'\n```\n\n### tint\n\nMix the color with pure white, from 0 to 100. Providing 0 will do nothing, providing 100 will always return white.\n\n```ts\nnew TinyColor('#f00').tint().toString(); // \"#ff1a1a\"\nnew TinyColor('#f00').tint(100).toString(); // \"#ffffff\"\n```\n\n### shade\n\nMix the color with pure black, from 0 to 100. Providing 0 will do nothing, providing 100 will always return black.\n\n```ts\nnew TinyColor('#f00').shade().toString(); // \"#e60000\"\nnew TinyColor('#f00').shade(100).toString(); // \"#000000\"\n```\n\n### desaturate\n\n`desaturate: function(amount = 10) -> TinyColor`. Desaturate the color a given amount, from 0 to 100. Providing 100 will is the same as calling `greyscale`.\n\n```ts\nnew TinyColor('#f00').desaturate().toString(); // \"#f20d0d\"\nnew TinyColor('#f00').desaturate(100).toString(); // \"#808080\"\n```\n\n### saturate\n\n`saturate: function(amount = 10) -> TinyColor`. Saturate the color a given amount, from 0 to 100.\n\n```ts\nnew TinyColor('hsl(0, 10%, 50%)').saturate().toString(); // \"hsl(0, 20%, 50%)\"\n```\n\n### greyscale\n\n`greyscale: function() -> TinyColor`. Completely desaturates a color into greyscale. Same as calling `desaturate(100)`.\n\n```ts\nnew TinyColor('#f00').greyscale().toString(); // \"#808080\"\n```\n\n### spin\n\n`spin: function(amount = 0) -> TinyColor`. Spin the hue a given amount, from -360 to 360. Calling with 0, 360, or -360 will do nothing (since it sets the hue back to what it was before).\n\n```ts\nnew TinyColor('#f00').spin(180).toString(); // \"#00ffff\"\nnew TinyColor('#f00').spin(-90).toString(); // \"#7f00ff\"\nnew TinyColor('#f00').spin(90).toString(); // \"#80ff00\"\n\n// spin(0) and spin(360) do nothing\nnew TinyColor('#f00').spin(0).toString(); // \"#ff0000\"\nnew TinyColor('#f00').spin(360).toString(); // \"#ff0000\"\n```\n\n### mix\n\n`mix: function(amount = 50) => TinyColor`. Mix the current color a given amount with another color, from 0 to 100. 0 means no mixing (return current color).\n\n```ts\nlet color1 = new TinyColor('#f0f');\nlet color2 = new TinyColor('#0f0');\n\ncolor1.mix(color2).toHexString(); // #808080\n```\n\n### Color Combinations\n\nCombination functions return an array of TinyColor objects unless otherwise noted.\n\n### analogous\n\n`analogous: function(results = 6, slices = 30) -> array`.\n\n```ts\nconst colors = new TinyColor('#f00').analogous();\ncolors.map(t => t.toHexString()); // [ \"#ff0000\", \"#ff0066\", \"#ff0033\", \"#ff0000\", \"#ff3300\", \"#ff6600\" ]\n```\n\n### monochromatic\n\n`monochromatic: function(, results = 6) -> array`.\n\n```ts\nconst colors = new TinyColor('#f00').monochromatic();\ncolors.map(t => t.toHexString()); // [ \"#ff0000\", \"#2a0000\", \"#550000\", \"#800000\", \"#aa0000\", \"#d40000\" ]\n```\n\n### splitcomplement\n\n`splitcomplement: function() -> array`.\n\n```ts\nconst colors = new TinyColor('#f00').splitcomplement();\ncolors.map(t => t.toHexString()); // [ \"#ff0000\", \"#ccff00\", \"#0066ff\" ]\n```\n\n### triad\n\n`triad: function() -> array`. Alias for `polyad(3)`.\n\n```ts\nconst colors = new TinyColor('#f00').triad();\ncolors.map(t => t.toHexString()); // [ \"#ff0000\", \"#00ff00\", \"#0000ff\" ]\n```\n\n### tetrad\n\n`tetrad: function() -> array`. Alias for `polyad(4)`.\n\n```ts\nconst colors = new TinyColor('#f00').tetrad();\ncolors.map(t => t.toHexString()); // [ \"#ff0000\", \"#80ff00\", \"#00ffff\", \"#7f00ff\" ]\n```\n\n### polyad\n\n`polyad: function(number) -> array`.\n\n```ts\nconst colors = new TinyColor('#f00').polyad(4);\ncolors.map(t => t.toHexString()); // [ \"#ff0000\", \"#80ff00\", \"#00ffff\", \"#7f00ff\" ]\n```\n\n### complement\n\n`complement: function() -> TinyColor`.\n\n```ts\nnew TinyColor('#f00').complement().toHexString(); // \"#00ffff\"\n```\n\n## Color Utilities\n\n### equals\n\n```ts\nlet color1 = new TinyColor('red');\nlet color2 = new TinyColor('#f00');\n\ncolor1.equals(color2); // true\n```\n\n### random\n\nReturns a random TinyColor object. This is an implementation of [randomColor](https://github.com/davidmerfield/randomColor/) by David Merfield.\nThe difference input parsing and output formatting are handled by TinyColor.\n\nYou can pass an options object to influence the type of color it produces. The options object accepts the following properties:\n\n* `hue` – Controls the hue of the generated color. You can pass a string representing a color name: `red`, `orange`, `yellow`, `green`, `blue`, `purple`, `pink` and `monochrome` are currently supported. If you pass a hexidecimal color string such as #00FFFF, its hue value will be extracted and used to generate colors.\n* `luminosity` – Controls the luminosity of the generated color. You can specify a string containing bright, light or dark.\n* `count` – An integer which specifies the number of colors to generate.\n* `seed` – An integer which when passed will cause randomColor to return the same color each time.\n* `alpha` – A decimal between 0 and 1. Only relevant when using a format with an alpha channel (rgba and hsla). Defaults to a random value.\n\n```ts\nimport { random } from '@ctrl/tinycolor';\n// Returns a TinyColor for an attractive color\nrandom();\n\n// Returns an array of ten green colors\nrandom({\n count: 10,\n hue: 'green',\n});\n\n// Returns a TinyColor object in a light blue\nrandom({\n luminosity: 'light',\n hue: 'blue',\n});\n\n// Returns a TinyColor object in a 'truly random' color\nrandom({\n luminosity: 'random',\n hue: 'random',\n});\n\n// Returns a dark RGB color with specified alpha\nrandom({\n luminosity: 'dark',\n alpha: 0.5,\n});\n```\n\n### Readability\n\nTinyColor assesses readability based on the [Web Content Accessibility Guidelines (Version 2.0)](http://www.w3.org/TR/2008/REC-WCAG20-20081211/#contrast-ratiodef).\n\n#### readability\n\n`readability: function(TinyColor, TinyColor) -> number`.\nReturns the contrast ratio between two colors.\n\n```ts\nimport { readability } from '@ctrl/tinycolor';\nreadability('#000', '#000'); // 1\nreadability('#000', '#111'); // 1.1121078324840545\nreadability('#000', '#fff'); // 21\n```\n\nUse the values in your own calculations, or use one of the convenience functions below.\n\n#### isReadable\n\n`isReadable: function(TinyColor, TinyColor, Object) -> Boolean`. Ensure that foreground and background color combinations meet WCAG guidelines. `Object` is optional, defaulting to `{level: \"AA\",size: \"small\"}`. `level` can be `\"AA\"` or \"AAA\" and `size` can be `\"small\"` or `\"large\"`.\n\nHere are links to read more about the [AA](http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast-contrast.html) and [AAA](http://www.w3.org/TR/UNDERSTANDING-WCAG20/visual-audio-contrast7.html) requirements.\n\n```ts\nimport { isReadable } from '@ctrl/tinycolor';\nisReadable(\"#000\", \"#111\"); // false\nisReadable(\"#ff0088\", \"#5c1a72\", { level: \"AA\", size: \"small\" }); // false\nisReadable(\"#ff0088\", \"#5c1a72\", { level: \"AA\", size: \"large\" }), // true\n```\n\n#### mostReadable\n\n`mostReadable: function(TinyColor, [TinyColor, TinyColor ...], Object) -> Boolean`.\nGiven a base color and a list of possible foreground or background colors for that base, returns the most readable color.\nIf none of the colors in the list is readable, `mostReadable` will return the better of black or white if `includeFallbackColors:true`.\n\n```ts\nimport { mostReadable } from '@ctrl/tinycolor';\nmostReadable('#000', ['#f00', '#0f0', '#00f']).toHexString(); // \"#00ff00\"\nmostReadable('#123', ['#124', '#125'], { includeFallbackColors: false }).toHexString(); // \"#112255\"\nmostReadable('#123', ['#124', '#125'], { includeFallbackColors: true }).toHexString(); // \"#ffffff\"\nmostReadable('#ff0088', ['#2e0c3a'], {\n includeFallbackColors: true,\n level: 'AAA',\n size: 'large',\n}).toHexString(); // \"#2e0c3a\",\nmostReadable('#ff0088', ['#2e0c3a'], {\n includeFallbackColors: true,\n level: 'AAA',\n size: 'small',\n}).toHexString(); // \"#000000\",\n```\n\n\nSee [index.html](https://github.com/bgrins/TinyColor/blob/master/index.html) in the project for a demo.\n\n## Common operations\n\n### clone\n\n`clone: function() -> TinyColor`.\nInstantiate a new TinyColor object with the same color. Any changes to the new one won't affect the old one.\n\n```ts\nconst color1 = new TinyColor('#F00');\nconst color2 = color1.clone();\ncolor2.setAlpha(0.5);\n\ncolor1.toString(); // \"#ff0000\"\ncolor2.toString(); // \"rgba(255, 0, 0, 0.5)\"\n```\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/50/20/748a88b28fc0918edaef69c7812eaaa164254ffb507cf8d59086676c9b4557389b686c109fd5d05099e6c20a8df8a99994c197c81f63192ea3476b3adf8e b/frontend/.npm-cache/_cacache/content-v2/sha512/50/20/748a88b28fc0918edaef69c7812eaaa164254ffb507cf8d59086676c9b4557389b686c109fd5d05099e6c20a8df8a99994c197c81f63192ea3476b3adf8e new file mode 100644 index 0000000..1365d9c Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/50/20/748a88b28fc0918edaef69c7812eaaa164254ffb507cf8d59086676c9b4557389b686c109fd5d05099e6c20a8df8a99994c197c81f63192ea3476b3adf8e differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/54/86/1cdce68671ae97868b8b1497a7bb8e920b0205be50740207ee34ab9ea84639d307528a3c61bb48b0f763fe9209c563dd6f65ba3b7d751e030dc316d3ab6b b/frontend/.npm-cache/_cacache/content-v2/sha512/54/86/1cdce68671ae97868b8b1497a7bb8e920b0205be50740207ee34ab9ea84639d307528a3c61bb48b0f763fe9209c563dd6f65ba3b7d751e030dc316d3ab6b new file mode 100644 index 0000000..370cc3f --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/54/86/1cdce68671ae97868b8b1497a7bb8e920b0205be50740207ee34ab9ea84639d307528a3c61bb48b0f763fe9209c563dd6f65ba3b7d751e030dc316d3ab6b @@ -0,0 +1 @@ +{"_id":"@simonwep/pickr","_rev":"58-4d0bc58c0ca7b23cb6acaef74601e873","name":"@simonwep/pickr","dist-tags":{"latest":"1.9.1"},"versions":{"0.3.6":{"name":"@simonwep/pickr","version":"0.3.6","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build:es6":"webpack --mode production --build es6","build:es5":"webpack --mode production --build es5","build":"npm run build:es5 && npm run build:es6","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.2.2","@babel/plugin-proposal-object-rest-spread":"^7.2.0","@babel/preset-env":"^7.2.3","babel-loader":"^8.0.4","css-loader":"^2.1.0","eslint":"^5.11.1","eslint-loader":"^2.1.1","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.28.3","webpack-cli":"^3.1.2","webpack-dev-server":"^3.1.14"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"dfaf1dc83489467f667cdf389766aedf3866a4e0","_id":"@simonwep/pickr@0.3.6","_npmVersion":"6.2.0","_nodeVersion":"10.8.0","_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"dist":{"integrity":"sha512-XLQXYzO92KNQL1VgZDIMB6PVOU0w+g/rfuknqmeZM5Zj8UJotYK+68FlnZ3Sq/oN4iyijeLK57cofz69CBXGeg==","shasum":"45be11a354164dd8f63cf89e96aced7c7ba0df4f","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.3.6.tgz","fileCount":31,"unpackedSize":1244978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcb7LJCRA9TVsSAnZWagAA1r4P/3mTfJe9p55M4sDAnKDB\nroxls7yCKWaWVpxBIV/j4P1Go3CX1kori3+pMVu9Y8u9/YgpT+4276xMuHE8\nMSwSMqkpb/440X8f9o2rgHEehupU40XH6GVne1Cwp4GoopTIsreaYunRbw1Z\nVMmHZvX172frZQABzDzPnPG8OWaTCDXqWmjkTn6w8B/Y6LEp3SLXQKn5hvur\n8ptTeg1xaqvaGGiVG9h22tJVGFoWRJx12tNN94iELcNQzLR5EpT4w6Es282v\nhNEH3sv5rsVVeCHazUh2IKmnxWr6AaIUsDHEkO+K56KUHpqNRM1H9YVzZWSp\nZTMlVSd/3QhtNHIW7w9pB4+23NpXkHFzvsvoIWbS4NKJEc6N/QhgfYbgXKyl\n40gAC195UJ2D/XtEgllq5iwAbV8rItpZUM7albAiPvKdB8jgo34acaoNakCb\n6fbNiELTAKj0PNhmOphPZVXETb9NbxBBPFQqG0/qHzJDgAik9KOXvnfXRtq9\n14WJ8z4G6KMcFS7bkRPfzLphzdQrgKa3WCF3Ikbtu44oampcGsKY3BpaUATy\nv70QvK0c6pYOZOrfQW6ioLAeqQFxOLiIYmEE5SEum6rPGAWaZcmwjoFVEpUR\njdhl088bI2l4S9WsG+0UsWaf42ulob1y9wXioA6DQ1SBGjPUD0dber+d2FGo\nWZr1\r\n=ftBO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCawOlQ89usZTwY5rBONh31dhTidN+v0P2NgY63LZ4lCwIhAKx1GP29c1SNqE5iYNeuTmlEyACy7PllIgTMBilUhU6U"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.3.6_1550824135707_0.13906254503145377"},"_hasShrinkwrap":false},"0.4.0":{"name":"@simonwep/pickr","version":"0.4.0","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build:es6":"webpack --mode production --build es6","build:es5":"webpack --mode production --build es5","build":"npm run build:es5 && npm run build:es6","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.2.2","@babel/plugin-proposal-object-rest-spread":"^7.2.0","@babel/preset-env":"^7.2.3","babel-loader":"^8.0.4","css-loader":"^2.1.0","eslint":"^5.11.1","eslint-loader":"^2.1.1","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.28.3","webpack-cli":"^3.1.2","webpack-dev-server":"^3.1.14"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"c88ff6b141dcde653ea2f5345232aa64dc647985","_id":"@simonwep/pickr@0.4.0","_nodeVersion":"10.1.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-yc4c1AzMfHapD4oNPoUCMnG2Jd74isrQQXxl7ExToMOMw9LTjzb6/0BKCdL/5Eqkj5g9qXmwIhcNSFrMm90ysg==","shasum":"da1042eac47c3d1a4a2c4daf66b406985e4cc39e","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.0.tgz","fileCount":31,"unpackedSize":1249865,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccqicCRA9TVsSAnZWagAANzgP/0UECCdgLhtSdFPBzQSc\nf6IBIXznUzyp/0gDIWoFl1g/qH6hm1k5sVqM5ArYSAdTJfJgIe6TAdzgcCG5\nXRmseZ0vKRH56DA1TMCNs1VTOz7/daaiorGWZg0Bip3eMGFo4DAIMCYyEt3c\nWqlbdiqjxZsaf/WXIpzDFe5bvRALC7WK2n/97ru1jeFMGegW2bsBqem5p8lH\nopE4WiIa12XX5fFKzbfjN/fM5Mf2afjRCx6MWKDg1dbXktjqUWEv1wssh6P6\n+I47ND1D4j5YH4G0G7mAmjb8aAFrCOMAW04LSc9H4FgxJNXycMqCHxIwAiOn\nBjT6byksWFcU4LwxSatrOKSkmpgz/AB2TvDKFtrGUi9rYsvYe0B1NYnRpN6/\nBvOqQSI3zu++KmmfqYeWurUyO43srpSJH8NJ2YMYdrcple6K835A5fW+2tgk\ng6WfuB/biwNqvJuoW+FwEwnegyS10d0SzwKGoRvpbGal7zbkZYmXsYofzNvd\nlD4F49soWFRY7PTH9iKuAzuOCVU74MfWGwQjhF+38tshImLzXpB9dzBeSoUf\n9vhTBtu/Yo/sjbrlLGyiXNI61IZ6W2SBKu75UsPJVdxDd/lIFvT3YNYUCTlg\n+oYlTqWec4BiIo/eJinjycLj4bDsGOWoJprZx9rmpFyQn1tK/7uCKJzT5wjq\n5pHn\r\n=f6cz\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGpTJ8lWGHbvcTNh9mHUcnNooyN19+qPT/xwv3OWutYyAiAwEOH+X+vBkPvKjW1GgTGjLkryKnDhIw0B/FmREM2kag=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.0_1551018139683_0.2564163105749693"},"_hasShrinkwrap":false},"0.4.1":{"name":"@simonwep/pickr","version":"0.4.1","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build:es6":"webpack --mode production --build es6","build:es5":"webpack --mode production --build es5","build":"npm run build:es5 && npm run build:es6","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.2.2","@babel/plugin-proposal-object-rest-spread":"^7.2.0","@babel/preset-env":"^7.2.3","babel-loader":"^8.0.4","css-loader":"^2.1.0","eslint":"^5.11.1","eslint-loader":"^2.1.1","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.28.3","webpack-cli":"^3.1.2","webpack-dev-server":"^3.1.14"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"c9bc1f0d30a23ea0676b27bb968315e71cc57c70","_id":"@simonwep/pickr@0.4.1","_nodeVersion":"10.1.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-KsFQ82o0v57k4QlFp8W/BmmjznBp84waNEnlTzqbBbRkFpOUi5mD+9hVb5nbmU7wxaiLp4WsQvkZeJDMRZXY4g==","shasum":"a561abe55eba4380593964db980938c4493a4149","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.1.tgz","fileCount":31,"unpackedSize":1252541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcd/8rCRA9TVsSAnZWagAAYigP/RMlt5d8MaRRI1DsYq+T\nFY6eAWjZWFSoUOeVHEJydz6stlcpI8J6KOrk1gAUEIuZgu+CLK7qC6t6erJi\ncr4m9ucGpdcxAos0ECDEKxgpjDfLYnENY0MqBpbICcazWr2DBTI5DVOF/qCZ\nvzPZqDRjmv7Rg44u3eBQsj+4oP/DtXbF2/lwnw/4k1HBbsa8/HYntVAAJibo\nMZlDL6O+9Az5pTo55COdBhmlYwYh2hU0yYX6IZlzyhOjhxWMRlxstEaB3JD0\nOROnQL0r8NyacLUrgNCNw0HmJhBThEVgNZPFHyQCi7YG7aM5AcVY66ssIwHb\nGM1kdTR2w6toSgQA6RUZMwoOizkbzCAgYr+CuYQ+N+WLKHYSL3zw9+8iSaYt\nuwii3CTWYa/sfF+Ab0DaVb5BKFyC+rFMz6CcY91fVqaHW/xThzZiLqHumI98\nF6JFyu2fkv1UmnZIZz+OyAoqavWoyp2Bbsogr33Aw22sEjZVgW5ZI7yaPkMf\nPStwYFCtQJSRDhYGacG2ogqUt2fTMEQi5dvqDGaFQPrzYob8bjLhamjnfATH\nrE1nVPQ6PJfxvE2g+07AtNAgMLwfpX5NCqpIUh/JfnT0RUNXzYcPzB2z/dpM\nY2baW1Wyv79WWMGjPsyynakTnUUcPfGpN8+EjjkgGXkSlumt1ALhRTXyuen7\nnILr\r\n=4fYF\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDh+nhfRAnKQHfIWcQFDzFecyqcYkTi95wgbFgNn4KH5AIgI+doiMqngDi4jT4w7sBv0roC9ou0b53AbfzqeDPsplI="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.1_1551367979122_0.04608471034452122"},"_hasShrinkwrap":false},"0.4.2":{"name":"@simonwep/pickr","version":"0.4.2","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build:es6":"webpack --mode production --build es6","build:es5":"webpack --mode production --build es5","build":"npm run build:es5 && npm run build:es6","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.2.2","@babel/plugin-proposal-object-rest-spread":"^7.2.0","@babel/preset-env":"^7.2.3","babel-loader":"^8.0.4","css-loader":"^2.1.0","eslint":"^5.11.1","eslint-loader":"^2.1.1","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.28.3","webpack-cli":"^3.1.2","webpack-dev-server":"^3.1.14"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"75ae5bec53a46d67f2020cc2a855ce29d0ac5a8d","_id":"@simonwep/pickr@0.4.2","_nodeVersion":"10.1.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-92ErTdTjVrJybS84qhbzjso/Pbce4KDgmUGiGldYg1zyZd1D/9ld14uShD4TnbVaoHrV/GP+STJyX7Mqu7bsEg==","shasum":"a2926de6c6b024c833c377d92422f97e0240f92c","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.2.tgz","fileCount":30,"unpackedSize":302214,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJce+DnCRA9TVsSAnZWagAAgvgP/3/aEMoPtphHd2pIePem\nc3UiQeQhWuWxK/8dPTKHWNI9q0qF0U14+9dZpK4n9n/gTqLg4kHVZGU5wSxS\nFit9WjTY4AGa2n4qX8K56m1vvB/ZhQ3ZmxYe2dO/WekT9W2djWIkbxS2xNh+\no7Yy/JCgodMSaKSaKrxWT4G9Shrs/JDkhdOKoVoPKFO6BTvbDfdkYhFCXU1Z\n9ynOkRlvdm4SOQIoXfgE81hsgv/52FhxxzVP6KtEUPbNci1+EFBdU6qreMNA\nxiz4tNNKchFXORyzE9MqtycXUax7X/sWtchwKl1RKTzNe3t0BGFmaKiv2tw+\niIWDAd8dIkv5jYlxgPKaU0UNbP4ObFworBrIz4rYPH4KUkrC3bq9T3jCDtA9\n4rkIunLQ1yZD5/HBvJ+olxPDHoqJnrLONRl7CFnrR1eqFb0z6rWvOyvOYuHZ\nd13wSTHvHOOeXolvloGCroQYepHjpi4t8W5W0h+dbigTlJVDPo9yIzI8gWyC\nvy3nk8AgO+XLbN+emra9bb1w7lSl8idTiEElWAC52oAYh6OfWrw27wYV2xRz\nXSn56PY9IoWl0cXwDrpYr0alZ2vs082/PTbxVioc+5m6VoVI3YIaf5e9xMJP\nsLkcWEJToCBU3czVZ571IFlN55LVRk1LzwZ9CGaoY+l0p6nzlFFu00iaa490\n8GcO\r\n=Xa8q\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCXEVcdbqJmNcNjAFZEH3JtsEk9axC4kJPFO7yt1xbqbAIhAJgaRwcFYJsuIIuM7vgcMW+mz0XYvAGHm/qH2UTDs02p"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.2_1551622374939_0.8773925793500579"},"_hasShrinkwrap":false},"0.4.3":{"name":"@simonwep/pickr","version":"0.4.3","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build:es6":"webpack --mode production --build es6","build:es5":"webpack --mode production --build es5","build":"npm run build:es5 && npm run build:es6","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.2.2","@babel/plugin-proposal-object-rest-spread":"^7.2.0","@babel/preset-env":"^7.2.3","babel-loader":"^8.0.4","css-loader":"^2.1.0","eslint":"^5.11.1","eslint-loader":"^2.1.1","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.28.3","webpack-cli":"^3.1.2","webpack-dev-server":"^3.1.14"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"2284910664dd07bbd1853a20578975bad1aff45e","_id":"@simonwep/pickr@0.4.3","_nodeVersion":"10.1.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-uD4UKKsFEWM7ChiWVOr3AMJcvjVd5lgYrHEhddPh2e2h+28DnQnog8eILxSVhknR1/KSfm0c+uSF+o3YKUnlEg==","shasum":"ed380f90d440b9fa0fba06272ebd1f567772fea4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.3.tgz","fileCount":30,"unpackedSize":302659,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcgqdVCRA9TVsSAnZWagAAOMgP/1361XnyXuCccsOCd4tT\nuXPc5D3aUk4GJ1qlqlHxhTefejrrK8R0Z/xHiyGehdxLQXiy76krbGrux5Wj\ncL/EAEFk5iDxKpb9Je+KhBSooEAulEdOF4wFDLWw6g/Vb1vimsTH/cjg/MUZ\nUwi0H7JR222XPkyFIJeOsLsx4A6J4lRwqdYMhYlIlcr1ZfE6eja/kudcYaeD\nbzoJyvbMv+gwCgeJNqu6pRHMD/GPBxme6a2z6+Vfm2cwARFnHFF1av7e0UsT\n06M7S2D447a39SXo/kB90M/GkKt9YbldW+xxko1GSc+zPZQ1NgpgCDa0eNAF\nff19YFeGBQIDlOmrBk0XwXIs5Ec5p0nADMtoAzt965i35K88ZQtspp7rE8QI\nY/3wIXd34x/pFblhAOEXc8XRI4cGazsPs9omegvVVNGNqnigKSPaNoQY5MXF\nhvJUzs4m278ShgIHm8cpOrL1D5GNSj0Ei3hJ8SwEHE/47l9AlfnBdtAN8xKl\nl/JJbB1LHipQ7gdLClMCKG30j2IObLDIX8UgdMexzmp7U/ABG5kcypF9Id/k\ndJTX8BfPPc3AVBtJWSl1hou1Ys+Mmy1VeLtF1eyZTDkGg6b8p/F+ewRaQaug\niUf5mP+xq+XwwqZeEYN3Ztq+KsFHViYkZUfBtNXDNXht07GveI4WakINNJ6N\nL46q\r\n=Lt/i\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQClTJj9SfGjR4yPeNOkFCWox5Y768u6AWIZOqGXlbC86gIgFY1fxtXSw5y7cZPgP1Pog3/8JFh35FD3HXZwmFBH+qc="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.3_1552066388690_0.30308207263613784"},"_hasShrinkwrap":false},"0.4.4":{"name":"@simonwep/pickr","version":"0.4.4","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build:es6":"webpack --mode production --build es6","build:es5":"webpack --mode production --build es5","build":"npm run build:es5 && npm run build:es6","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.2.2","@babel/plugin-proposal-object-rest-spread":"^7.2.0","@babel/preset-env":"^7.2.3","babel-loader":"^8.0.4","css-loader":"^2.1.0","eslint":"^5.11.1","eslint-loader":"^2.1.1","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.28.3","webpack-cli":"^3.1.2","webpack-dev-server":"^3.1.14"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"53f427279a1b10e0b1108076f94f98d051e183da","_id":"@simonwep/pickr@0.4.4","_nodeVersion":"10.1.0","_npmVersion":"6.8.0","dist":{"integrity":"sha512-dP5x3sn/Y6Auu2nVdHKBBg7GHA5BBoTY5YKspe9HLhf0Ve+5OixRJyhUg8r6UimrlxCT3PX40Umxy2c+bZmsaA==","shasum":"5151de21d9e28ad7e7fa20b3c9e8042782ea8220","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.4.tgz","fileCount":30,"unpackedSize":306414,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcjK99CRA9TVsSAnZWagAANucQAIkGXCz5NdeMzDashufg\nT1TZFUEtyPZ9IscIMIzWEsX97a1U4jAMabMp470jzX2Pba9QFTG0xcenH1+i\nX4ytK31kuVKGOcQXyaQWj4Dw6ceSgR5Qlq8POSgHUPBWpnaRW4ZXlnDwXHK5\nSTznw4VB26NIPAX0PhJX3NW2sbJeumMfkIRbcvRzckDrf1I9cTnrkXWS0oFu\nYhS1FObi8aprZF6w9FsyId/UXufV6vAFkbI/brSKglQTd2Aqd69OYlMSdG1G\n9O/jJRbFkL6metvOCmBdj03AkBuLA+9CeYEjFtj4Vt8niM3cLEkBDR+Tsulb\nz6Zlc0nMlr0gkCUmUnNGD9YCoYYYasn1WIlhi6DsWQ3L+eSfqM58aXSE7Tmu\nRjKkPOn8kZl/X5/9hkPYu6wgENhFCsdogbngpL/FanyWaVLRDpA1RsTnV2ot\nfIJDrB3ndTZdknK3ivUaBx5gpvznFOYLCuAHtATIlhjjYT/4pnRLAOMBguP2\nVkO0v/y3uBEZTdOSRR9LZnB4LsPr714xWPd5PO9eU1HngRCvgKXY+ekWyBsu\nE6VfvPw99suBgA48hscfY0dYjRY6lyw8jmI1xX4FuKndh+u4LfIYwKzbhq7f\ndYQZxWNLkfGGaVZLhLigQFNQlc+zf/He+5vBnhd7jAM6ROgnRr18Q7OXDwWL\ndfFH\r\n=GxxX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC6Orc7gHO2sm7KxDYt8q8Uz/gq6H8s5gXPNNuNSD8ZMQIhAI4zFbd6PZJZiCfhOH1s872lR2CAFY4arx4hKeIkQklD"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.4_1552723837205_0.03073610279965111"},"_hasShrinkwrap":false},"0.4.5":{"name":"@simonwep/pickr","version":"0.4.5","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build:es6":"webpack --mode production --build es6","build:es5":"webpack --mode production --build es5","build":"npm run build:es5 && npm run build:es6","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.2.2","@babel/plugin-proposal-object-rest-spread":"^7.2.0","@babel/preset-env":"^7.2.3","babel-loader":"^8.0.5","css-loader":"^2.1.0","eslint":"^5.11.1","eslint-loader":"^2.1.1","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.28.3","webpack-cli":"^3.1.2","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"58364b8b2e9da573212d224d530c41e56ad944f8","_id":"@simonwep/pickr@0.4.5","_nodeVersion":"10.1.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-ekA/JLIvbVkXxKobtnfeOeHkOUChqK50X/NmBVfISBUM1okl3oYRaPxb+VCACa+f7fT/ZqsUYXUIua+UaVUIeg==","shasum":"07e8c665bd95d75c8336c9d2fdb7eaf3da97362f","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.5.tgz","fileCount":30,"unpackedSize":308056,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJco5bjCRA9TVsSAnZWagAAThcP+gLIo6auCEbLbw0Lahaw\nsnhPhpAKijcOM1YqQOcwST+zi3z/09ebgSv//2/iCBzB3XdmBTfuszuk0gnU\nWHP9w6+ycWg17co3R1yc3G/xy0mxKNu5/IN6sNhrrKfY06dDv1a+JncGE/j3\nJI/e6uyEcMO4FQ0QjyoWZTJEhEOwfWaJJYB8QTiGZNdBRfQFvCx1Ca5s5hR2\nI/00n53Zo0dgN4JMyExf+LAVdLmvzyoCL/BZGJIqk2hQgUEoOksgkuHlqJlR\nXn629KlsXWA2GeBWQGcuUec1uo7tm5lHj9SqReU0I/027qbGS85NMBw4xLIv\nwVBPzlC8JRs/vYLTV3jzkHWcDe0PlgqobV0bWJgfQYZKuKldp6quDC1lRD4T\nA/MR61uTQDaSthGPLUqu5V3piIN6aUiKChMmmX7dsx7KrOkX8iH844v9kaTu\nu/WfBVoNjBEUIWdmiBDA5ZTnId5B5OVBXTN17aHoaW4fa5sY2WsR/rnWdyJS\niCBNYeAdCAAUjyVj0FQlX1dvQBTBSX2U7dwDxdAEvjDc1EFw6yn6c+1NWZw6\n2NkE0ARiJn0ATDnauH3gEQtQfaNreCTDmIyyGwyrNh5SX6XAvzTnbC3LSDLq\niA6SYRwd8Z4kp9CESu9XVk8cm+MGU9mWnq5nBHi1Vsyd40T7eiwl2X8cx2VD\nOknp\r\n=KH6d\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChKSR/PpM+/gV1V3Fc6YBSS3DLzfGsGlbPY4ykux5XkQIhAPBVYpb4c6g/t7tsb0C4zMvGyhvlIonNqWHQThlgYACs"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.5_1554224866925_0.909635906536103"},"_hasShrinkwrap":false},"0.4.6":{"name":"@simonwep/pickr","version":"0.4.6","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.2.2","@babel/plugin-proposal-object-rest-spread":"^7.2.0","@babel/preset-env":"^7.2.3","babel-loader":"^8.0.5","chalk":"^2.4.2","css-loader":"^2.1.0","eslint":"^5.11.1","eslint-loader":"^2.1.1","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.28.3","webpack-cli":"^3.1.2","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"153eda519d44af486905150c71974c401b7d0ceb","_id":"@simonwep/pickr@0.4.6","_nodeVersion":"10.1.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-3e/YGW3HHJaVsGaTCOFVzC4CqVxlFNMRdUL3Zr2wACxAjKcBzocOO9Mwz0QN/0xtyH6t+kpcmAuzF3jouhzp+A==","shasum":"eb5b40fad1eab1d7bec6368dc1aeb71425d6946d","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.6.tgz","fileCount":30,"unpackedSize":310455,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqfpHCRA9TVsSAnZWagAA1aoP/A1YPXoNpf8ycgTMIJmT\nEBwavo0aukR6JjouuBqyXqj+i0ZJDOcNM/Ks25s/SIkAkcmtB7daquIhwtAd\nmM4cEJBd+uazsDxiBzsqwmPk/aXvN5du2f8JyG5s3KWcY3GDHo7vsQgPOT/c\nBYeXp01CPts45j0flt8847U97vUrFgtU7NQL8dEJJiaTMLj72JOFop0FPJWJ\ndxAX/pxyjKL9qsrB5tFsOK3ioF8sjHHhbuAtETLKOOh79VtN5uQx5YFdh8ih\nfv9HCL95pcVQy70Q/goyoS6JH/7h51tebOKZa4H/I2mBnqEg6vqkhbVhhXxc\n67MAWIw/fcUIYdta4upwwuMmblesBq3iF5OITJU/mCkWKOcSFs6PNeoQdzCT\nAbvNS2wIIVrJGtLTFnRp+CnMz+UycETSLrf/tIYXpF/EbvVRA77NWdhzfGRV\niHDdgKuHV0DQtOe50ojXybEdT8hfMd+q0mf6vaQvbKYxpss+uKchtnEIe6FI\nMn6ZyyfbkIk3jMo751zyVmcRYVqsWpIfc58HWVO3oSIyHz6g2z7EogT6LKAb\ni14jUnrhARK6amd9CxO7XrRnM+lCsbv1wol6GmKvMbKVxtpEbQazn369PglA\nlKhYdGuPSrKSbqxABZSYVowxnPPhCMxvA6uANXNhcbMQPqrZo9kyz4rni95D\nvL+v\r\n=yj7n\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC79TuVeLACZknE0F2i7x0isuVuVTIILYx5PREiMHO+QQIhAIcJwNqEkz6MqAwY9ecNtlWfkxgc2e6H/Jqy9Ylctex0"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.6_1554643526744_0.6307368101284041"},"_hasShrinkwrap":false},"0.4.7":{"name":"@simonwep/pickr","version":"0.4.7","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.3","@babel/plugin-proposal-object-rest-spread":"^7.4.3","@babel/preset-env":"^7.4.3","babel-loader":"^8.0.5","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.29.6","webpack-cli":"^3.3.0","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"defafe1d9e7cc675e363900fb6619080e9c37c2c","_id":"@simonwep/pickr@0.4.7","_nodeVersion":"10.1.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-STb4Ep5U2IndcLYbZ4illL41A9yK8lhS55bArTqF7U4uPPoIZaN37X57thheuhh9ztygQEzMjXv2cyGOlXYK/g==","shasum":"647c921dc0c1c903b59e25b11b42e9044a3d99a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.7.tgz","fileCount":30,"unpackedSize":307947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrMlFCRA9TVsSAnZWagAADPUP/RIGBkkA73cP8LvCPunZ\niBsF5eUtVC6gDKsPcaTlyXUQPE6vZdfBGj/wdVaUhTzbAmIFPj4kOEl6jOzV\noXm+hBSUAAVKYp7uwsOGmK/QMllGCYleLMyZfCy1JJo1AdRDS4f03mQAgOcZ\nNtT9wTXNrRyQX2tRuIlNyS84LxostXfWZ1u7pvSupUvii/yWHJcb2Dwt1Whj\nXRaxC6yf5QokPOElxOTu8U26viUcGg7RqAEAw1FWeapn5QeQUTp+GGCsFkH7\n9Bx2mPlbLdNSJDsdkAgoZV5dDFWAWYAVmksXjQ8sFgW1nVNGxn7cpH/QAA7I\n3YdHlI5yXga2QSftZcZdsm8BeBpP4wxC+x/tJtt2inRKlGM2m4miWYp9HIt/\nhdkqlzoUfo0mFNi4SLDJvR0nxk9b0tiyPRdmkG1hVA89jLgkQuX4rg/4rQfp\nS5q8Dxbxf+Y61C7AJMGaKqW+Up+xaT6pb5rIv34MaZ4DBW+ehFRc2YrJAe5a\nTy0LQoedLo7uHBMULF8nviGZ3jrXAx04AYG5yHvS6cC2kSBecu3lkcoDVBKx\n8ExelqJ26dJEW69UJ7EodgxSQf8JVzYP7wdk8wvq+iYaaieu9xEs+P5RFoXP\nhBq5mx3P6EHLxmNYIXOkhi/JWD/HAOx0G7ExIuX0epZDMQsLZwL0OFNIiJJo\nSi/t\r\n=MncO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAXYNiCmCmucGnN2NU9H/lJUAn6UWIqkiYHfFFtsiN/NAiAuoPYZhYEZMBfLE6AARB+vUqDEqQAbQh1FyOeRi9CEfQ=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.7_1554827588828_0.15992466106976178"},"_hasShrinkwrap":false},"0.4.8":{"name":"@simonwep/pickr","version":"0.4.8","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.3","@babel/plugin-proposal-class-properties":"^7.4.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3","@babel/preset-env":"^7.4.3","babel-eslint":"^10.0.1","babel-loader":"^8.0.5","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.29.6","webpack-cli":"^3.3.0","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"0d7377f24bd7f91d79cbe4bb843746a163a285d5","_id":"@simonwep/pickr@0.4.8","_nodeVersion":"10.1.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-5Dq7Jticf9AxIn9A3ojWkIg8I25/k7/L5wIa2K5qYL1lPT2NX8CCqq+CGk9FnwqrJCje1q8b/4U1WnJG774aAQ==","shasum":"2dc37e4e3c84c4340b2d128926baae971725a740","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.8.tgz","fileCount":31,"unpackedSize":305077,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrzdQCRA9TVsSAnZWagAA6FAP/2jRrcm2eZW02YmvbSxk\nisibrMF+/lIFTWJT/zLPp3bGiOkTVdmFJFWpbCWE0aCvk00u/r//RNfDE9nd\nfPyTAxttrAVeGxGraDj1cdx5CoAPB1oKm7Fx9WBK+jnaKEqzKkFTpqAo1TiI\nnxNq9zJiBf5Zmdh2HMYJSizluw4dVjY/nvF2HWeTpGMyDdEgoqGsNsCvXUah\n8kCVZoLIgn5iCPEjqfFSpKhCWLzi61gsczr+FXrUziUIf8UAIz6alPuMJCxg\nyEa+LjcWuDhbSh/Bu7VQLJofjWhKfj8jc6h08Vb6QgGJYp9Veslsy6YOfurQ\nzzeQ2hBHgaOySK5uR3czH9QYuM7lbkWFRF3bHGmMIu5FyuUF8xx1uHCD0KYb\nJzV7cAnqq6OzZxp64C+W4rdNSI+h36q58ayw/rzpSAvK0OguNzTbwgTA6lib\nrUdADRn85wfuaKLRxIpRSI7oykNJBqwQ1uIA6XGYbRcR6IAst7DA4dtQCZfK\nLpCETUuwFSolIt+1jFNRfwoNR7270j1liSatOAKfQtjmVVWW6LL3/i4abHl7\nkwpXo0DcJ1COEg/JbCNg7LZ4+A2ctyHUT1AfjZhlNaz5XqI3ag8dyuOylWCj\nwHtE93OKyLNqtsH7zPKNZxyjhd3eVVy6bNedU51Scc2JB8sJnfXyKwNv9QrQ\nRHKU\r\n=DM9f\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEpae9JTdOkCDtgu5Am7vVocpkzKbiMz8+kb+GzoLVkzAiEAgWw+tPG/cYBh/86JDFbAIXKfG3fg98QZb6a5s9XZ/ZE="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.8_1554986831337_0.10215572017488572"},"_hasShrinkwrap":false},"0.4.9":{"name":"@simonwep/pickr","version":"0.4.9","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.3","@babel/plugin-proposal-class-properties":"^7.4.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3","@babel/preset-env":"^7.4.3","babel-eslint":"^10.0.1","babel-loader":"^8.0.5","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.29.6","webpack-cli":"^3.3.0","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"442fd17b876767dd68593fed21ffe742d8930b17","_id":"@simonwep/pickr@0.4.9","_nodeVersion":"10.1.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-mpU0gfzmrSAPKQgw+8Acvz+y8uOndIYpse1fZqplDTzpCtb57eJEPyWU7mb9gx4/iq+5ta2UR3pLmD0y+zCenw==","shasum":"bb86c50be8de9c904d54d51cedd4c9501a2c15c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.9.tgz","fileCount":31,"unpackedSize":308605,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsJ2kCRA9TVsSAnZWagAAarEP/1xaUIKi8Lnk4s2AJJTV\np+x2UTJLiH5H579dI6J01TF8ZSZC+RO+/x7WQNs22woT43U50T7Um4NT4MLW\ne0Xxzqyuik2lkW5JkE5IgeYKC8GeS4eDx4VpprGlJ1H7GbOIAx9R5exkyh/j\nKWfNVHoB+QAtx6bd3FP9TWM/ILMlry6V8j1Jx9GoKLu03K/fnYqCZM02PAQa\nQOmqWT87GSYK3u3Tff2MSSL7BcZLyGo/4Oji3Hd7GvqPOtkMji+QATaT3tEZ\nSn5LJMgflkCQL4Ov5gsq8wvUCN/pW7+ubjieTT+maYfS9X/st0Um/E12W4aN\n41jZ11K3GodRQ598E4TmwCOreR2CfsS9Qk8mBRKt21ZiYBZyC2ypxB7b8XRj\nbcAUrAHH93Hu9ezuTiwL++ecBaWcNSuPnXGg/xsCK8dix35mT6dYv+KcIGs+\njGQdablE9/xjy4MUXtZ6xtfALdneynMv94RqI5xAPfsb7XyPvlASGQDI0Oep\nvOMLr62AqP1WjG6hiLUDcSdj1zJv5qbKnd7TB3IBbk4J9w7U8NM5V5xLMWQf\nDeAKJq2xLxSF7H9ehRIMbIkzyfURNTTvYEUYxujLkCOzlJl9Abew6UrzPdWE\nZikor/eV5gzcEpCYQNDtH8opAyVn9Ft6Uucs0QUO48gzBe0zr0M3Kh4qmIOC\nNe+I\r\n=53yW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDhYNlRrG/uVI0nZGiHnqW2oQWGxYFov3PGTsNNN8vvVAiBGnpvqFjKTc3FzKUBL5RR3KU+W1GVRV3vNo6/MGHGyMQ=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.9_1555078563636_0.9085186008592518"},"_hasShrinkwrap":false},"0.4.10":{"name":"@simonwep/pickr","version":"0.4.10","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.3","@babel/plugin-proposal-class-properties":"^7.4.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3","@babel/preset-env":"^7.4.3","babel-eslint":"^10.0.1","babel-loader":"^8.0.5","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.29.6","webpack-cli":"^3.3.0","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"76cf2df9f5af0f15b81a8cf9712eef1daa35a0f2","_id":"@simonwep/pickr@0.4.10","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-hJAY6TucJ0cZvxyfwfAIT++NMoiHbtcUyiqpuHTyxt1XIVXsuoIh4FL6jWrUYoIKsNZ9DHdcqYNTqOnsdYXupQ==","shasum":"363a0334911c3604750ec814bd79517104ceb4f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.10.tgz","fileCount":31,"unpackedSize":312781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuYdYCRA9TVsSAnZWagAAmwcP/0tvqpsUALqF6QSqRzwB\nc65jo9n+qpJ9j99ssXI00h55TZo2ugNypXTTrJtEhokUYvkR0Uv2l2c3wuDY\n7/1Ubr3xQUfrTHVv+OufxYPoNPHQPv2tw/5jaQhw985a669XLu9yVAszq/7K\nkncFrRKqmBrumrFs7TQ/ja+VSZ4y25o5PaLbeM9Vn8c5vV7JnwAVZuU4OUBs\nRc7V+uGcIoW9R11xyc0CXuerMvfgtgWjcvSGHeepGoxRPGogbO1frhQMUMSH\nzA+5PReAUAgmQARLJMTMIqxSLw4Q4v+FGOHZVMtjUOjMxB/CUAe7cTDioNSW\noSq1ElOvNuBIj5x9w/hZGD+kwk1TDvSyAgkpsi8BhoX8Mxe5GRPrS3DFA1rp\nuCy43UQ9GNNRV8Xf6wxcU+6OoHcC0C/zULuyhaXjsS3udE/sGv7SA/OVywZF\nCipBEc4fPCrPGnfacubgjQeLGfPn+fpB5f7JaeHukOnWgevWDyUicwygs8Ka\nkLeu1XAM3Amh8m7DxYdUXjMnLkdJqOwj6B6iYcdbs0cLv+641Jg/YYG4IQe9\n/roZGHXLPvqW4C2F+M0mlmUSINSvJX46eglr6NhCPYoAn2UNNP52QzLYeqnA\n9xkhrKBm1cQxPLexOE+pwmfFrIpHvWbBW2bUFqe5wC885kJZrUc059Z9nl3h\noNv3\r\n=zFTF\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBrFQNRV+t4KGmLYXMtY8M+a45tU9F6AuqkdhA+pFURfAiBRtUEzmZNyZgaBqi/EM3lFInMwzPnZ75inD+SOPUzv5A=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.10_1555662679123_0.44138142677998404"},"_hasShrinkwrap":false},"0.4.11":{"name":"@simonwep/pickr","version":"0.4.11","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.3","@babel/plugin-proposal-class-properties":"^7.4.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3","@babel/preset-env":"^7.4.3","babel-eslint":"^10.0.1","babel-loader":"^8.0.5","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.5.0","node-sass":"^4.11.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.29.6","webpack-cli":"^3.3.0","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"43eb7db670ea609f1d65796b351193bda374d23d","_id":"@simonwep/pickr@0.4.11","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-SBDvphx7fnu6ooAFw6hfrtSSQOUG91OpbA2Hcsr92vQrwuabpvjN8xOWOUGzp6jvm8c4gTdQ7O9HVOSah7oZJg==","shasum":"c70eefa7762a912dd1218136725ae73c94c64f22","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.4.11.tgz","fileCount":31,"unpackedSize":313063,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcvZh6CRA9TVsSAnZWagAA8kEP/2VElK30hnjME9ajpPsC\nAQCarE52qV7bmDPTI11CX8BlNlwYbaU1LMfNFwH93ix7hrQC22Lkes9L8fjY\nxpgAtkpbba9QaMi+G/ewfu/yWrQGQvYCcXPfZjCK3uCKM+gYCoW9pDNKfxKC\nnvk88kFPTTCwJL8SuUs6iG6B3SKtNYdAyvyG3SM3M1zkLBLHS4k6loLFqpHH\nZQnPRsKVroG1GqPOpKt+2Tmrv46H6hRli5hc4KOhRxMfs7zyJ1il8dSDSLFl\nCj9mn2zUnmQS6mm4ToCZq7INIeGU7YkCdNMXDgBOvrLBRuHPK1CAhyOPYOKV\nf85T+fCaVBv6Whg0qwFvx0R6o9BvErVOh1Yj4jcOwtUDggEhI085uHX2TqKh\nMfEwEYxxiN0Ce+LRy8ZL/nS/5dLP1LflCQ88N7fiiV7Np26xObJxwwQdbqbT\nQF5DxaUNHKxc6Ok3hmpqxdxR26827Bvb5H7ibS0mvElqXYMpReQKeCVRmAb/\nEr7WnjaEImQX2yRnKpKRjh+Jphkt5OYgTUJS+7Q6qJsnMsTgj2bNVtTw3kEc\nqnkhYGeTUkVaZCJsrmPxzZL4UFDW2c9lJzJ0mD6m1eizCSSK4mubYCu3kK0V\nVU4oQIl+QE752xiEL/xT80591eaybV5TTcxrdsp2FBoDKEqYSkXhuuyV45In\nxGWj\r\n=XJqv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAnVhuheYr9bzV7kmYljXOnby6gjdgtiTZa+KJzpQtHxAiEA2dC6009RxjLINRCLDIUy3uOZdzB2JBuILSge1gyZ534="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.4.11_1555929209789_0.45718846373339206"},"_hasShrinkwrap":false},"0.5.0":{"name":"@simonwep/pickr","version":"0.5.0","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.3","@babel/plugin-proposal-class-properties":"^7.4.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3","@babel/preset-env":"^7.4.3","babel-eslint":"^10.0.1","babel-loader":"^8.0.5","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.6.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.29.6","webpack-cli":"^3.3.0","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"ef128cdc3086b787dd9b0ac7ebccc406998ecfab","_id":"@simonwep/pickr@0.5.0","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-/t+O1pI/qsjOSg/xeYVHsEuPhQBjRAnnCrLMKnriUJ52JCuvhu839Xq0m/jA4eqV0JJs1hNTsJS1O0/EFa1q3A==","shasum":"5f54a9964c2df0add5db94fd6dcd14eadc6bf957","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.5.0.tgz","fileCount":31,"unpackedSize":316068,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0vl4CRA9TVsSAnZWagAAhyAP/AteVD+nHSmYfLtd0uHn\nd69711gwL8GH8QkInkD13NmHyvFSF9QaVOnhFcREot14Px6m9QvbmiGFC2bk\n22e66zN4GgB+u/b+NzXqj2bsJiXcjJVOcf5sAVLiKMedomOPtpoIMWzd5dD3\ns/aFL5jNOmrYjhmZ8O84QBGgPiB0b9A/PS2zJypf+tq9xdwv1SzKDMCn2XDh\nX+lCdasEj44/bqc8m6C5W1Kf9YJ5mkTQhk6b+stsSIZCnXvULyboJmI6i8YS\n36nY/yePHMRw0L0WvkNEFrGPSJc76M19ijustbZUimltt9jcOQAGbOgOOWaQ\nutmb6DlfyxJx2hDqlJiNVXvNeQtkJWLyzTu/9qPLrApCySff1s9KZnw5+tOl\nABAdmiIG2HV9TBLAW/kLyAx8fvjYnvfmrsDYWkGWlI1NvKaDohaFNYOl0DCh\nCqcTNXrokya11iv3GWCuqZZ04hzSW/amM/9cgHgFtoKA6rjrWSSgLW/9dKf1\nMdU18yY5+MKfdA/5vwjk0gUz0EnbFDZqB9BJAf0gGzm8C32cEuxYAu17DwU1\nWmQW4rNPrfjYRV0ilBXWG2nRT1iXpajjzCuB34GWFZ4gtalsabzqXObunq//\nbxsnwsqyFwtIXoeoGVydUXrYPnYs0gy+U9mKain4glHEIWPpcA5NpevDqY2o\noxFK\r\n=nSin\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCJIS19z+tiezMpCOFtFTHWPKCynh4hY3+mslcGZWKPXAIhALjErl+W8aKSIOvrkw7tpmyglznKzSZmZTOHAzB9rHy4"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.5.0_1557330295707_0.5921650351412053"},"_hasShrinkwrap":false},"0.5.1":{"name":"@simonwep/pickr","version":"0.5.1","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.3","@babel/plugin-proposal-class-properties":"^7.4.0","@babel/plugin-proposal-object-rest-spread":"^7.4.3","@babel/preset-env":"^7.4.3","babel-eslint":"^10.0.1","babel-loader":"^8.0.5","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.6.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.29.6","webpack-cli":"^3.3.0","webpack-dev-server":"^3.2.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"68984864fddeca310da530d9645ac0843b3487ee","_id":"@simonwep/pickr@0.5.1","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-5qeyG/zEOygNpObM4Hpjb9VbpUtaW3lTrY9x9xPylcbgZCRkUDHQyOhZmUYxzHrGjWkbAmggopx/MzizHAe2Mg==","shasum":"675a6e0e348bb02869d3c8e21e3f9f2b7acb72aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.5.1.tgz","fileCount":31,"unpackedSize":309357,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc3swNCRA9TVsSAnZWagAASOYP/3OjFaULYPB2/+Gm4fov\nSLvKMiKbpO05/B5bQPMR7gacYi18wRtEb/GDdgGSneVCzMWKnR1SH8cS2NUx\noHDKZ5p+fhlEpm3m9L34iri4x1yx6KK8K+o8YcPdTy4OE4OV5G8/lKtWhWQQ\noChP02GIsdgKEGwXW2HBqqQZZiFNDAmxoO1eaxq88dzMHLNoC7toASQFK2CI\nMqwneURtIWywuKosCM5H5qLit4DNjox9s4aZ0CPXy3OfUerTbeXTILwgbYdK\nUTbOlhm8ZwkchAlWM8x9hpfrWnw5vp6w4ChMjOQO2sIY1uE5aDCV/CKs1yN6\nGNm8/1/uogFDvUIKErL2fBaFoQnk/N/jkm6p7eVS0bQVDEaCaKfbm0k3tzm1\nOt6mRQEk8cuBRobg95SUwDE77S8VOveNVVqV2S3pYXcOBDd68q4XR/dOed4R\ns6oNLkqpAqd3s/71WfCppQv7a2JsMdRDHCVB00cOxQ+TFe+JM5WcdFUlDXX0\nvBDdyhe1oAAiAadlpfO4c+c12bsPOe3bvjUfatKUqKdvSKxdYRNxsJiKt4rV\ne9f5lQBEzw+o/DP+kSKOjd5Nnd3UwMBUdfItR5N5tIXbeUJIcdzp5rQ6pZbN\nLOiK6Y6zFO0bWK12ohNznQ21wkEzNDxjAO4UJXnfyKJbXKgfFsjku3+Mjbgb\ntXpA\r\n=9nKh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA/68busLLpE8vOu3bjgXxop/xdILwr3A/RktC/SR/ONAiBgJIPeaoUbcB59+n1Mbrt5tiAHmwyT5e4Qw/TzgzsL/g=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.5.1_1558105100417_0.7473608435334647"},"_hasShrinkwrap":false},"0.6.0":{"name":"@simonwep/pickr","version":"0.6.0","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.4","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.4","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.6.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","thread-loader":"^2.1.2","webpack":"^4.32.0","webpack-cli":"^3.3.2","webpack-dev-server":"^3.4.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"538e26b5639b989e5ec81998ccf5e1d3f250bab0","_id":"@simonwep/pickr@0.6.0","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-CnzKL0dxFxvYkn6QZ8hs3BwuBs5p/ZsXxJawPLESWgXMiH5C4Yg8MULALZScCrs9BaF4VoVhclZ4p5iutNOj6A==","shasum":"5469903de42eff4ea8fb14dbbbb0c7c526cb7cf4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.6.0.tgz","fileCount":33,"unpackedSize":315908,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7WB4CRA9TVsSAnZWagAAJL4P/3WXCA0ilZgR41V4Limn\nJ4XUaGuy6Hyq9AVMfeNkm9LFjlM+5nGyWON4vu4t7GSZKHbQtGwhiuEmhSR8\nPpaFaEHGLtx/lZSmfeNXxpwTZINvlvl4OS/KygpvvV4TpAGLNL4OZEgqUvV1\nHiVdYUocqufEuseu3VnnqRn+8skM24Ady0aGxY3NMlrAjY4yGN0zxy/dQSS/\nJAk3zWl7zDW4yJ/sKDixBDYtfkWz6CmbCVFTag3EbJtyRIppnxIIloQ+sxbj\nJHmpH43b200GQI6Ew2MfzTx8MnLhfb25FEWh0Ma1bL92PNhkCHcgcvoYsI1K\nd09iGyCF+OW31A8HjNtg75j7emDq4fiPEsg14cSLYb7We8PGz7bVOb838HMW\n3Qkh1RZRDUNb+KHFSYXSxPBkwqP8oqLgz1kLTC54X1MHW6nd4n957dis7vxJ\nuTH392bx0vplM9wAbvQ6clc7cpp6n0jigZ/7D23hGcB2sF8porNuytJuEKof\nwqxW/R6DZJysI2ekPiUCoUS7drUPooHkdIF5bUlMvfNSmsBZHxeQjtcJOo7y\njcJT6KzU9WSaLGhZcSdYEMZLMhqnnsm2kFPNtUzvg51bZBASEH/KBitTfO1o\nb+hBL8cOFs119SmuAT4VYeJHMew6DJd4JRK5n/LgVhBRfKfQd2JePexcRwEi\nQ4BK\r\n=zFn+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIA31c0Pk1B/pMg0+AzEjAz8q0Zuu97FEMLhr72sg7kzjAiBmKGb7M2JsoxrDo3nxbpCwUN1dtAYJlkXDanMPIwbB0A=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.6.0_1559060599600_0.8897799385705589"},"_hasShrinkwrap":false},"0.6.1":{"name":"@simonwep/pickr","version":"0.6.1","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.4","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.4","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.6.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","thread-loader":"^2.1.2","webpack":"^4.32.0","webpack-cli":"^3.3.2","webpack-dev-server":"^3.4.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"0436b29c6adb287022e90c295bac9f6f6c60fcda","_id":"@simonwep/pickr@0.6.1","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-FLCkIF76c/NInkrDv+B2+PnnrQ5HUZJGPv/6pPFy278c1Q7Tir4+xLVO8p2oD5MZg7bEAzY8swOZP0ybQznh6A==","shasum":"bc9fbefb3304d6da7faf51007fd9679ce5b89c67","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.6.1.tgz","fileCount":33,"unpackedSize":317470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7rkZCRA9TVsSAnZWagAAMNsP/0ekN7+DPpK2+rQJOW1i\nEAhJcsehPhJrflRTwRebJDI7d7r+k+wI+BmG/1Sj8jsAaCZOrRRKMTvTdaKM\nj01MN56MdlrMkd5Zkb0b+J9vHxLv9ctF/6PqiCLtxWvWoAek/SFrmA0JCk23\n7SfmZX71MVYpVsD12BHb3qCzWKEi51/a9VoSmAhYg5DVupveJMPX6wNrpp/v\nlhVv/rtlm4O+xHu/uNWJQqvQjPfWleMmIvKbZo2LZHlmvmim1UU3Jb8xNIrG\nX6Mgn87zV8IMPKLub6oUg/gbZLnJHTJRJ4CGqPs4jol607vvK1l73xvZMUkH\nUJ9fwXzo8TklXr3qCrb9ddCfOgWHrW7VW3yM2a9aL8spSxNcoNwqTW4oMDHa\niiZnf9FukAUnK3rXn2H8YirGfIxM6OuR8OgDfgq2h5sy/6N5mgHBH19NndYX\nhuYTAY8ZZKZG1gyRdhpxmd4rTU5zk6jfahL3iJxVB4+e40WgcRO2Z0luY/+t\nD3GaQ23+D4cLOlmqLO25iRQ+P4WI731VotOHCRULRLh+eh1AhPLgFx3sWclm\nrq9Xy82HuQbJy17t99gxlKEnuQf/+PPcUVmOFTO0TecCOrfaWesdzt9whWCw\nqu1EffHPCtq4zutsnmKDR+158p3OMB1+60/qtJBX9JcBdf2Y+hOFBTfT6tEI\npi8U\r\n=ttDc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHFjDYDfrpFPMkuDqw7YHxLXUfYx2bYfMWZtbUwhlRFhAiBjetuGhR8DjgUGXC/zgws+87rjVtaypBw3AJ8yDUlXdg=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.6.1_1559148824552_0.3904643716644802"},"_hasShrinkwrap":false},"0.6.2":{"name":"@simonwep/pickr","version":"0.6.2","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.4","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.4","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.6.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","thread-loader":"^2.1.2","webpack":"^4.32.0","webpack-cli":"^3.3.2","webpack-dev-server":"^3.4.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"82979c3ed257905e33ae746dd55b2d97b477c0a3","_id":"@simonwep/pickr@0.6.2","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-DlcGgQ7l/z8KUKPZWxmZ/9Lkgd8TOboDGTF5WRAO5NR6KG6VfylDVYwSu6mkkIBpC66AFaIV0sCNnSy1/KpCxg==","shasum":"c6dc607e92aecc707cd010263404957085d4c19a","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.6.2.tgz","fileCount":33,"unpackedSize":314709,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8GJtCRA9TVsSAnZWagAAKwoP/3SAgNiIUtlhkO4D/6V6\nBkNP8BCUA+bq2mA84VQVlgZ0haFoeNjijF9kXdKQhR/JduW8nPoBdAvSgODd\nUEr7fAjM3b450P3c2Qu+HuwZllX0Qz4n2NJ3xU4KeksFLb6Ww2sPa3eJ7xlX\noSxWOdW6HfE24ReO/7Alx2gokTzNb+7V+8IJwttSr7kp0XOQVwSmew0zKSGE\nLG3l7eckBGx/DET4DDYywZicwHAXUg1N1ZCy1ctjqZrwByidIX0ISUvMCOAA\nr4Z8puSQ2zsfLv9IuAN/D+HZa48i3zUAFsB/b2aoodgoJJlanijnkwJEGpLy\nSX7h7vwHw5ZrXgf6LNeuvpUN3acq1hdRuTjf1OiAM6DdVCnPbwU3UcZanaFg\nDaiWcD1N/yD8taQEoDn9mfvVeygBARPTu6HbdbGGj8qy6W+GkuB0s9j2QfOl\nR0xGf1idPnKpjJesLMEh1knYoV1j98o5LyiH2+0RazZnGpJ/xM9VQTOS8Es4\nG9SYHyI/ClCLRCT846/BkulGf0C8yEWsEyj2lR73lama9pj+cbCQImW60TwI\nFJ7XXHU2KZv2OHe3GhQns/M4YOB2uW/ZOxiGqbIvd31lwzTH7cAS8H1W2Bby\nazNxEjhxhShHBo1ubjySkEFgWmj+/SVzLEVtthWfyaUFA80G/k/uI8k1V/Pn\nR5OO\r\n=GU9D\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKLYJL+fo8JoRnwlQN+x0N1e0ku2MGHZyKk/KIO37LqQIhAIo8stcZm0d+2hjJXtenul/GnocuOU8VEx3DjQsS1+SI"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.6.2_1559257708342_0.20212499507624004"},"_hasShrinkwrap":false},"0.6.3":{"name":"@simonwep/pickr","version":"0.6.3","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.4","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.4","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.6.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","thread-loader":"^2.1.2","webpack":"^4.32.0","webpack-cli":"^3.3.2","webpack-dev-server":"^3.4.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"8b8bb7b6e75ee31b3476370e89f34954d8e3939d","_id":"@simonwep/pickr@0.6.3","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-o5yI80dwPgJmZUnBmBITbLWO7/JAeUVCEoxfwPr7rViuf8TvpfzuYiTS9vWrbM6PVjVqH7ku0HLBgYQw1ARgeQ==","shasum":"b46dbb77d8de2fc661e9f6b8ba052854b708378c","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.6.3.tgz","fileCount":33,"unpackedSize":316596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9S5MCRA9TVsSAnZWagAAyXYP/jLqNWJs4fpG0qRJOty1\nHzJggeha58O0PoXCUjX3wlgq2ukwKkHLMaXMgq27GsMXgqykVAtG6u9W4a1I\ni97BAw9x97JRE0+vU5jhNi8xgxxJo/a3Bm+f5h4byF/+Eu58SZVAeXsIvSPh\nsaSKdrRvemIKe7XoY80FnJZsNUxLj2/7XlSTQ/Pj/bd4z6XDkben+7Ph/s4W\nYky3NTZQsIPQ5Nbpqq70CUnNa7P107yE9wWIV7Gf9vIvvxEOAwAxy4qiSQFJ\nk+GFn+ikR8mesEjrBRjTt6Af0bULAuhNSwZ02M7DdT4ZwMFlrbX6NG1j4ZAS\nHklDzKR3rYDRD+XVGof9dzkkkMMmVT8JrcihFntWgTorbkPrEP+ZQ9Ezj2to\nVWw7LSsAfW6Z3BdTX3inpf6hJn969Fpp/goVgVTf1TK6zaBjhHKfKLMNyK7O\nHCxDxSYVY51kckfWkK5RIll9Fxc/f17LgXx2Vi9qiwX+7xo6sAH/EFaAhV8E\nvVqA2j88Sr0MsS+xRlNRC2udM57yOIAI466jpjV14RZ5UcM0rk7HudHwInkY\n8Hf8AKC/mhyBrfTMUDPIv1eM5XupfC+2llA0DEAVm/AacMo/UIsXbPumXpf0\ntTX3k2PfnLBs5r2uLuHYGD/0bAy3zPYuKygbtYpyK+yJft83ngykkhhIJgho\nCctd\r\n=yXZl\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGq8/VO7oZW0d2JOTaWUkKiWzrIJlQPef/vgHTkz91qFAiEA4nNMu74j2eXpGYUmWBQiHIVYeWicO2+NgteyZfTSzXU="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.6.3_1559572043383_0.17988846801149427"},"_hasShrinkwrap":false},"0.6.4":{"name":"@simonwep/pickr","version":"0.6.4","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","chalk":"^2.4.2","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","thread-loader":"^2.1.2","webpack":"^4.32.2","webpack-cli":"^3.3.2","webpack-dev-server":"^3.5.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"e463345e4f65acdb81bdff6d9a831af63c9e7541","_id":"@simonwep/pickr@0.6.4","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-bALrWKuD0NBqfRrf8CB3UaaBrkxdElDi5TxZa5mkk5dv6zQt+IfcAhwydu3z4wWF5h2G/yXHttmBFpLYRoyBnQ==","shasum":"26f769a1258ef51b78351a8a658503a9b29bcda5","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.6.4.tgz","fileCount":33,"unpackedSize":313881,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc9sACCRA9TVsSAnZWagAATaYP/jHpmJlS/JBw4rAmUUas\n3nWDib9xT1rTDJiT6aZx8li2fX3lSau+f5B6ap1lZ2fPD9KO+JEjxxTQ+sUE\nt/3OmhJVnGncbqc/L4J+YmNbgzY+xbAVYw26b4qOyOpSg8jdX7mUwbUMlVLu\n1csjJdrjHATstLBj3Hz93SzJacpeKz7jWRMcYCU42iiM9PbPcJoEysWVojcU\nCINmmxJP3qHmx133/jzlVmrMZALrrB1tLQp30GUq4MqoHLLkUgBDxM1912Fd\nj5DUvhKcExQ2dM9YcEHKmpjioGjw3LmyXEOWYfnSe0XbD8jIXHQjXl/8cQQ9\nG+nnWE4IFDZ0uJDDz0X+ZvzsezeAX4FMb9tFcNBS5cGMJIavXVyvHdoVJUyN\nqusnTzuSvaHfWS7InJO7ZodtiLDJDQ9jvJF9sI7+FhjSFoRgxWKxFhkbkiid\ndGoqFFoppyt40f+oJ9pOFKpEpvlqTVFiqHDWw8/aXn1GveYCayl4a6VpbbIK\nSSzm/j5c8IzNM86FxdoV96Rh774vxwnDUT6VqfTjjZ/eVTV3Qs7pSnLngEu3\nRPUi3rxpq1Y8qusPZWLiq5hLrCUSe8a0SO1XSzicp0TNBht1++ecDz9o6MwM\n6n/ixMKrY9MQlq1d2L3J3mubwvude11q9hp19cIGuGM2xz93nRB0fqwdZDSC\nPtgu\r\n=6NN3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDSRgV8+WPy87/OjIjhbLvfuc830Fhum7K/0us7DqRJYAiAk0RNsCSsQ4z0FhR4ZutIp1xdbIR49zUlrlw92h9dPYg=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.6.4_1559674881851_0.052421597198089254"},"_hasShrinkwrap":false},"0.6.5":{"name":"@simonwep/pickr","version":"0.6.5","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.32.2","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.2","webpack-dev-server":"^3.5.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"5e8540ff6f67539dbba2efcf06220f78dc65fc3c","_id":"@simonwep/pickr@0.6.5","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-mhfA2lxiiSiSrj5WnnJskpmnLOb6w/DrU6fLuMuCGJm33f6ZoezFFpPEVuRMSajXBwV8ftoRgFIupOY3fw9UHA==","shasum":"24db011d556075ec255909a0e3bd9654439602c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.6.5.tgz","fileCount":33,"unpackedSize":317627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/j9BCRA9TVsSAnZWagAAGKMP/1xRhhBoxtkL7u4pzJFt\nt4ZF7OhrEjAIQPA7dAgAv3ViwiTrFAcDzloydyIrfcuBl8OIOkPX24ymre/U\n7viLRt0gTZbiwl02TRIzOrL3+Y1zgY4kdi1HkYFsff3I7GcKCcX91f+Nm5Zn\nVHfXXBlHV5sV0/Ht9uN38HvqUSFj5gWLk3rpWCaayv2MzhfFuyKT7y/UsTPV\nPB4i4MnDN6i1fG3/mqH5rSLB/72mZtdqsA+EfThznHYiPR0JnMwgoOJRHA+7\nZRqlAr4VGvEweFH7HuDBo0PSKOD+yxilbFAA5rMXpxsPqqcezULSZf+yXOD7\nBV7EMS0O00mWrjZP/cLCpDzjWBdrYx68IRY/SCwS+YFEbUXDuEh3LyFGS5P/\nUYNWtrczinzd+iWibCwcAO/RfnFNjSDiGt2NPY0rPUkSpbeyNn48QyBmNMaF\ngbpol0/4DSSZHlYp78iHfE0U5Ws3gLkxFzFag8Pun7NMgTgXwW3mzHmzSXUh\nR7owCGn3yW2JgfqicF4K7tNCIFf/PDYl3snwLitNOeNBx4Lkudv43A1NX3rn\nhjNioAPg0+Ud6BK9zkZbmUP20q3pvqZgAlhAdmfGchKntzJI+SGO71m2niw5\n8u8xZeLjMu1Oav7bPGYj/qBE0JeSKyF5usnn+V7f9BsIZjfgre7TQQ69cnTk\n+mRO\r\n=YMHL\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAQbM8KmozZy+rUMHCqViPsNbCBzEGH+Vu8f4RAEoLugAiAONH2jUWcBz1f9G/Wa4lMvNf5tdpgSGLOJl+UtT5nhMQ=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.6.5_1560166208684_0.19234084389318662"},"_hasShrinkwrap":false},"0.6.6":{"name":"@simonwep/pickr","version":"0.6.6","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.32.2","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.2","webpack-dev-server":"^3.5.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"a08e8e9c93a9e054b8870919f41bfe4d18ebb6db","_id":"@simonwep/pickr@0.6.6","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-MV/QjZjUI6XjeBcHp2XCc93snr7BcipqVw3mMayFFP7nNYKmbFSh6+fV8pX5uXIMqIr5jkBDH4NsrpC0BjE9mQ==","shasum":"97f44dbf33682fb427b77b6c53c8cf51f2e8b735","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-0.6.6.tgz","fileCount":33,"unpackedSize":319470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdAA/PCRA9TVsSAnZWagAA3SwQAIeuSCGOTD/aD0wRY6Op\ng68rxOy8+7Tk5lIjDdtU9mTOEjxFjGeq0NKWbkeQzseTXv2Jwy6lWsGdzn/J\nrtAWm+uRWFTwLhqLYfNByMh57PqXylkTKqo/6pOJZkfPsBbZJLJsiBjWP0uv\n+rzx639hAX40C1bI0mhIHYYPSbFRFubSgO1+VMMEdrc3dMP6kmT4TxKFGtCE\nSRNkYQlVas/QTJOOCmgc8izQWq+2qZLoDOJ+cIggLl6ZRQvUhaJ10gxoYhfy\ng702tr9wmCXFJnWfinmOa2To2Orp7yOx144nVPoHaeCgzSrz2sr0H9nVEOiv\niGiFfy83JrQmGzNlCGJc7rObYzzlXbfjD6xOAOEAXwIvqzgNT28klYnjTmNr\n+/q/9UHe5bvEkvL4gGiqk+ZbBLNBeRMMLb46cZTbIdoKGVbTrbPLk5IuHLfd\nGIU6rhCl0QBRovjSV5NgH2i28NyVxzN21tTSw6ivcqn8sDpoKMDaBXYI97pv\nn8hUA/c9q27Z94tKcG/KMKaKjXwfpI5MJVtv2kzcPEGum+OP9eoIjiheFSZV\nNwz8kmjYIeRK41HpbCZHviqgk83b0kUpMx2KHo4LUxclBQavX0cHPEE8RSbw\nDklT3qhqKI/QiGhDPmQHpBk+c+6D0JEsRqK2QvMNM0fQnz8+vPcrWSzP761k\nGq9N\r\n=pLIv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCr5QCTurprNXE93g+asXwGi8MjiA0acDudbyAUJYDtAQIhANQUrgB9O/EgnMjmCnHd+9pwbDRzol0d0/B0U9AbyGEx"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_0.6.6_1560285134792_0.3014687627626802"},"_hasShrinkwrap":false},"1.0.0-beta":{"name":"@simonwep/pickr","version":"1.0.0-beta","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.33.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.3","webpack-dev-server":"^3.7.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"00a2ef765758c2b11b15f3a537a5dec4890198cc","_id":"@simonwep/pickr@1.0.0-beta","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-F2sD7OZy+fNBtKwewa3p5nceCilMYfdlvFikySqYTmgLLl+g7d50c8RCFLkSo3Mor1eRnY+/VW4o40YDXQqazQ==","shasum":"1147b10cccbb253fc740cafb6d7901987c077bca","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.0.0-beta.tgz","fileCount":38,"unpackedSize":354474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdApC/CRA9TVsSAnZWagAAlVQQAJN3DxTWx4Uy86y64nmH\n6KBOfRhwjzxcQTi4q0H/IDagQHc/tGU/S8gI+Qv7RnTyCX6GKRgjxz3V13Wq\nPzp32VId+n1SB6vgK8dRW71VQR+XS8jw+egZTZLqsL31cwLb73EOOlOUyZST\nX/Z71EeTkMFsHQ81eLAWaMBs7iZgZBNOWgjgLWp1Z4FUvR8o0D2LZ/8lYr0J\nyfDqqox3ZTU+MN0dc413IBH1Aj42lsQpEPlXPScbchmnXKwL2EpUWaf8QihG\n+w3F3RI76KfYUMJhaDqvjRSpCg5zYt2ZXs5BgnGQUfrUOSsG/tJQIIi715jT\nyotzuARigi5wwWJVOYP7lLqWfBe8RFWOmDhr4PQ9yT+WR9T/uGq4J8l6UVUH\n7GMRAAFhAzDwHPQvEARMGN8wBqdXLqZAwzzIORLVRKC2cFB9sEaLZlx+mysb\nu0dkeV/z7M9b+w0ODce5wjzAlDIeBANvhdSI0a+fFovseBLprmLT/zYIfusd\nmTcPPpNYHrOh2LM2FOxx5DK1uTcUQMXIbQySe4yUG7w5v7XljkrlxM9zEakY\nRpdZQOHQJL5x5mxafuU/zxhecH7DvuCD6TgxYJYXLU/ljTlAe1oj199wgBlb\nKWATuJiRIaYrAnGrxs3J4k3IJUW5TQpQb//Sgg2EhymGnJUnmdZD3H/ilDEp\nNWXp\r\n=BueX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGGAYWFss72L2/pxMd/7Gj+ZTLBP/b18ehY4UXWeRj1jAiA740kGSmrBUzDVqQTIKbVAgjNGGejfdMPSRNamSi714A=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.0.0-beta_1560449214700_0.4577613125703337"},"_hasShrinkwrap":false},"1.0.0":{"name":"@simonwep/pickr","version":"1.0.0","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.33.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.3","webpack-dev-server":"^3.7.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"2922c77256284ac99db730cae954dd7823813ec4","_id":"@simonwep/pickr@1.0.0","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-50Gkn8HQd6cqOLt6WLm5XbOoDjdwj6eSrQJGieghA9vieIi5GsldpAVWrkBimeVioDHoXIZoz0e/D/yllKDJew==","shasum":"3004a530090d2cb1736b183f9da77f870bf63f07","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.0.0.tgz","fileCount":38,"unpackedSize":357698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdB70vCRA9TVsSAnZWagAAnzkQAItFm4rjFIbvBnvipGby\nSa5KaKB9u6SiMynRWObECryIrrWmCTHtYnDRs7kAt1CNQ7F3HlEWynHsPZQi\n+HoobN/P7kqNfuO23v1xyKCAWVu0UY/RCN1M7B+Fg4m/ZZl00ZLZasUwwB6j\nF+jAw+Q93bXKulu9b2U9ZoSVvK5NC4ABKYzE3G1tEEiG+/4zx319QDy22wAr\n0/Fi97RdHgVH5yrh7jMJsNzXeUjnaaxeZwf9hC9Nky+Bmz0Cm1214lENt9qC\nF3FpCVRX+96KvztwKaUMp7ti5zYUcMqTyxTRQ+/NWl/VKenOxyox+P1ukoOz\nMqO95FKJk4jBljpRFkY0lD0BL+8M9S706olT4ty+6IHo11XgtXpGT9G9/4EK\n4vZ8HLAmsSYdj3nzo9qiimCUIbJn3nKHk2JeOLC4hEoinDrtbiTWVZPmWL7d\nAtsQc87lIH7ZncMWDBHUv0s7HnOE+1Kz79LcbGPkJ+gsEtP8ZPmrQpm/s7t4\nWg/cF4ilWU7i7yGLd/sLSLusINJ47PVGiIUvZ0OITsbjMMVnNcYoGkuJED7Y\nW2eAxAop+XXcPNeDbUmduEKp6RanDIkMCcpw/egmtXzzhLhYuwv1xyNa2AP9\njvN2/WslH/koCByE8JyVBEtFcXd0pD3B2OP34cpKcSHh2fxOemyTTQ4zDhGj\nEzIW\r\n=ZrFs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCPr3DTJDt026mdDC1O1cecDrMSnQ3NWkrjdyfmiyVuRQIhAMM4Ii2BP4wiastee2t0A2T4qD7pw3AUqAVbhWrPbAnv"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.0.0_1560788270307_0.14406211729630836"},"_hasShrinkwrap":false},"1.0.1":{"name":"@simonwep/pickr","version":"1.0.1","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.33.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.3","webpack-dev-server":"^3.7.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"1bc3d891b15303aa695595f87c523e5cee6e32eb","_id":"@simonwep/pickr@1.0.1","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-Y2w4xDBcdtNXE7bonofSwE441q04mBPkloLAlIYqWKwxsPbrAAUrapHwkWCZybVkJ8/wH0o0B/rpfTS/bHQ+lQ==","shasum":"c8c9e4f9f772193fc1ec0f4b0de2b39721733e81","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.0.1.tgz","fileCount":38,"unpackedSize":353876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdC3WnCRA9TVsSAnZWagAA1HkP/jHFah+jM4fmSd5d/x9D\nARggwyU8JxseYHqMoshRWV4GsdAHKI3r3MthDQ3hBG9+Gy73soE3ugbpED7h\n9REE39iRJrlg6KKODeYcMB33KntyRydDzL+fV1xQZQV7CN+JnBo64tU/eUk+\n14IdWB80K+1qXyMKrTWcxshWr/G6kCpqfHAtcn+kUN9v0ocbaJTF8WH1ftx/\n5c1UKHXy3fWaZMFwcW1N22bpgPdXqp2hU1hR9eilMximjRgXzMBLdUsM6RxS\nWLNvKlJpxHSy83Io0epuv7YYaRxjTvQoBG4zqBFk3HwjzPKVN4xqJrktC6lQ\nzMan0TAX421yXTjlj+QsAB5nul/4F9JcJPbDWZ8K8K6tCP3ogBxnjF6ulAcH\nMlTel5g8IZTv+iRIPB3jy7nr7Je5K0K6LnwzhXjuQtPyw77dQdOkUx+SX2AT\n4i4xUrdBNWBccYWQCb/YfRxR6oJdxcGNsQ+Fq1NeUy8duTSkyuhdrjJoulHR\nZwC3U4xm2HuoodchlYi6yliGe29OVkgDOGkeE+B+Us+CNgpzlSDiXj1mevov\nJhJVX9BdXa+O8/xz3igdoEiBJmSXkra9YsQULWMzBbQF0JlDvX9dJD3mx1EJ\nt2HI8X6FRNttCz4AVae7+0LapKwJwxn9TePFDlve8OahvLOAi0Yq1/clxAEl\nNePu\r\n=TC3a\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCZN8PF2M104ThVTztzTVFFkZZv0MBdrM672y7ekpLDrQIhANwigZXUUFTm3abObtP6Q60OF10E/UzwtPBNgg5kLdHk"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.0.1_1561032102738_0.8694857242591079"},"_hasShrinkwrap":false},"1.1.0":{"name":"@simonwep/pickr","version":"1.1.0","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.33.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.3","webpack-dev-server":"^3.7.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"c08c21891d6437f7122b60058ede5f8ce6885ce1","_id":"@simonwep/pickr@1.1.0","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-hz0kKeOWqutkjAtu1wyKgHEGyd5bCYAgusOYFqAhFfUTrEkobdXmjvPpPT07dMO+294Xnqn5P8Ve6CH6ckPVIw==","shasum":"04aa069b0d72c44d069d2fb551af93825e051da7","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.1.0.tgz","fileCount":38,"unpackedSize":353879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdDQHDCRA9TVsSAnZWagAA1YEQAIlrMbSImG32s4RTgORL\nIX3Znox/TbB4o7cMUjNQC7LQ7o2LhBXeWtfwlZhcnHItk/U5Fg4tg6tbPm7n\nH0h98RaJylCz9vieUjZRdpt2Bwwb6hnUcL7Ug5/4SvaVQpLm2RiyRfBXFkFJ\n6U2dZFxzYqvMA7BQcU74vE7UK3bAyLwQV3wOMrApG7YSTyw8pzfok1H9GnRU\nVbPk7M1uEBtWtMLSZUqR4euoiwh8HQpzj5RIno2I24jEkB/R4fGpivG3Ifa5\n70C7xNCf1ZVUCEBVoywerycMmTPBux5HiZs3bmro8KGHcfvsah8r/Pm7/35r\n4xHhC0ghBGUSeahmgE1QY806WrOyeTDQ+DNnD3k3ege79417FXnzE79PDKUo\nm8EfUDh/E9RswGjOK/rogPuV9i+Wxdi3DjzhA5luRi2wWlnafW/1G1FX3LJS\nqrSZ1MUcHncN2tq2D4wOl748aStPbHMVKbOVE+ZvpEGu0K0apnBr3RUSQKtY\nDIQE/PV7jynWaGzUQa09WFSox5ZK4b4pQrdgkaSX+l8wVTplN+SOOxD7PdI2\nvHJpQ0LvHKWkMe/NzZ2blYXJys1MikfYlwzhr8lZoIFjwcyZTFLV+AxC1F/U\nq94zZpxORV89LUN+RyYNXrA88RccQgCfJB57VDc9CUOqnw3RQ/Bi4nEx+jjW\nSti6\r\n=99XK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZK2xqxXMmIdsOuI9LzwghLrTGokzY8McMLF2m/NHyrAIgb1MML4Nxkw2JvZ+7MP9gh1JnLbyYjrK6qoYnO89rCf8="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.1.0_1561133506525_0.7810815047852835"},"_hasShrinkwrap":false},"1.1.1":{"name":"@simonwep/pickr","version":"1.1.1","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.33.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.3","webpack-dev-server":"^3.7.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"ff5a7f73688427c63259107eb662e6b71a2c77f6","_id":"@simonwep/pickr@1.1.1","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-v+K95TeSihhE1m6y3aYcFwrZR/z2+o9GSDKrkhzJkZBa/YvINCss0yUcJO5MomYJ0hsMjMxWf7Q8i7KcWvwyJw==","shasum":"37864e7583ffed22a78e795e82d2e03390fe3069","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.1.1.tgz","fileCount":38,"unpackedSize":356141,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEOLoCRA9TVsSAnZWagAAi3sP/iwekJRDQFfmGhzhHOdD\nZWwZeSMKN7xpx5eHOInD1byqmDacPQXhS0MSYrffxxTAWNbPTzkl+GRhwOwn\nNZMYaFnss5gaD22A1GzBrgJBimCBnSOcg+LixkOPZSq3vWTlA2HvHaLnThY7\niyZp2XdcI3u+1ejAb1gdVohErfDcY+rOGiIse9eOc6OVijjqxQxSjlD/53H5\noV40iEb0YKrtJNgCMXrf4hW6q6T4U14RhZ6gUzn5kCivgIFAaNkzRjgRp2W9\n+Fhq0q6qVo0SAhpV5yQ3KKccYCFIFLQH64WXUcYXF7LV11AZHLP9vGMoWce4\nQdyZdg60062RxFEOS3r5YaX/httgcbX9E76stl0KVD1MtevaAR7Y25gGbSsK\nm+EyYKRYQQdlq9ki1gGP+3wQASDkn37sPC93OGqv+h/beWvoog5EMZ3xWpkV\n1TtzJ7SGSPKs4fdf823CjAIjMQKpA3v6xsbc1nhC55yoNyc4nY75XBr3vubC\nfWysx9Xmf53a9uwYdKSBy5cHTEXpRSUUtw0LLfWnEJzZx1rjNB+DPSoI8sVx\nuokQJF53JC0r92k5gJXXm6aDUQXRAUQr2c9qq9ZUKhgxtpzWe5u8hjqC5mj2\nWEXQ57K+oVIw4sAxijcuBQMs8shCIpkTsHEPgqiPjDcP4CTIfBT2ILO/7uo0\nSg1u\r\n=2TKZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBXJEGr7JqxIr2r+onCBRKFcfOANkDpkUtOm7uGrdxfqAiEA1G0zXpYS8cEzplma6BIw1dq0IFQFaxEWFsemUTU3Ni0="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.1.1_1561387752020_0.74773178116662"},"_hasShrinkwrap":false},"1.1.2":{"name":"@simonwep/pickr","version":"1.1.2","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.33.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.3","webpack-dev-server":"^3.7.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"d33271ae513b968e17190583f77d9b186c93cd29","_id":"@simonwep/pickr@1.1.2","_nodeVersion":"10.15.3","_npmVersion":"6.9.0","dist":{"integrity":"sha512-he9OLznmFJNV0qQ3dotkgDIIwQmjztCNwkIOu8bK+CAyCUecQhI9IQ4imT6MsxSlroEvV+ykeakFoQIflz3jMA==","shasum":"47c621150c2e1b55fb09cf176482707862c116ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.1.2.tgz","fileCount":38,"unpackedSize":357033,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdEiJkCRA9TVsSAnZWagAAXAwP/3jF6lMPefgqKOkQasZ/\nyG4CJ59Nxsy9jEe0O1EzN+Xvg1Cfi8p0WgHxz1iGzP2Hs3bvQRFUkmaM7UCi\nIrSzG9hte/tllw+KvVHoLGfb1JNPagn3kqiwxSMoO9UJKCiLCp0brZFPARRC\nVbTNg+AMmwnZFNYurCvoUPwSgESsEId26yRg/Baq2h440+jgiA9zmP/CYLuu\nS+6mMmvW8ycD+DDuhRgDO3eqqQmhy9XInIkdnRlicOTxecd7k7q6CRUHBubm\nzYrPatu8ZiQ7RPJcVbU3yYqX7i4/7ka7c8Wc7MDYgYA0i3yJPgQviBnJGtFF\nlPMO7mNAT4uwVylPm2+b9JOBEvPnrDL0eWc6sKprA1Ybyy2TLEw9KISAmkqB\n4nJEQacU+tjcASJwCU28DTnc8y33hAhQMVatnt7EY3LY7UFdYyvVrvziqQ3d\nzh9nD/96x0fR0zzvFCpjopWlVz89Jfv3SQG101GIylS2U+HNas8KNwKY6hzP\niL9nCImBAiIp7JL6Vb6ORU7atA/uWeuD4kDouI0ZmCK88tRjuug1nhtK9mrN\nH9ROeC6bxuIgzhokmolv9Zzohtde6eXrFKO8eUIwIsL9jNvbp7INwKkFOKhx\nwwv6s8jzfv8J4E+BuHI8iMI+ZY+zVNvAxSiVBSdtM7MyyNoD8hhy2/oAup+Z\nbHM1\r\n=nAbM\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFy9s4HOgdyv2tcIWDIzAQHmumB1u9UZCkcakyt63NXEAiEAjpkHsVWhnTGKtF/JXq+4rKsdcAZyTfdRLcXstrPMjIQ="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.1.2_1561469539802_0.864863288946286"},"_hasShrinkwrap":false},"1.2.0":{"name":"@simonwep/pickr","version":"1.2.0","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.33.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.3","webpack-dev-server":"^3.7.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"29602bebea84b16d62129809ec23eac21926e49f","_id":"@simonwep/pickr@1.2.0","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-pdJ5jVVHFe4NBEXkbLvgT35Rz8ximd03dJEL2K5XkvEE2IKCsvwln32jJBOf59R/38CCquURgCm8fdcDohzytQ==","shasum":"9fead37efe53e0afa89185a2a43177ac0d6b1d79","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.2.0.tgz","fileCount":38,"unpackedSize":362939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdFeEyCRA9TVsSAnZWagAAUP8P/i8lP7MdGJCxMQ+1Oq6x\n8hv5m8ZF/CCOBop1iBFiJjbufhw5JWTnPb1MlJFufhWxfeBwzHeHqb+5UzKL\n4Eqqm3jmAS8Zoqh3aKg80acFC2PRE5g4ItahexfscXYe11GGorsWwteHlPTM\n5PPLPUsWkJwp9gBI41aGZY7hM4P5vugXralNHeOwRjHYlCDarSRuTQN6Qj6a\noVVCrPsQGQ2hkj1dX+l/KQdIK/KI9Hi1xIp7p5/qqcxepxEDEtCak5sOWadd\nYg8zqbf4b37HEwcGUjZIiWALh62Ch0HflV2DxAOlhGWIxKD/8WObqIS/ywte\nzoPc/ReeXXbAIJGbhqQvZZRS/L5m7ePXGUHvM0NoHsUN41ec4z18JHbgAuYh\n5XyDNWwNU2oKnRYLTPXpLn1zOF+/ERt4xAkCtC0dHE4f+hzrwNnrlJZA3lWt\n2Eoa+TCtJWuQGBVikEtkFfeo+UFMMW+tDm3jAOqC+C1nVCNrhBYWV0rEb9og\nswcVELlbqQeHTDEdmwf6+vLdibEOyB/UptbjwtN2pyIPiKLTr9Hs+OlVLaWG\nrY476ww885JeEKUNLTdiRj3C+SkKiE/ZGhoRISPYvCbb4wrn7NH8P2FMjtm+\n4T7T+VAW5nDTjciHAxBPMqInnST0oClMBxOffca7ncWp78n9Eu3q+YVJJluv\naFOj\r\n=MiDd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDAtcGuFh7dytP3Rx07HbO/Lc96vpTRzt7AomdJZSQ1pwIhAJN8cP34x6KWo47Gype9/OkPezQ9Pq5FhIoOlAhCO6gK"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.2.0_1561714993570_0.8345507741101961"},"_hasShrinkwrap":false},"1.2.1":{"name":"@simonwep/pickr","version":"1.2.1","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.4.5","@babel/plugin-proposal-class-properties":"^7.4.4","@babel/plugin-proposal-object-rest-spread":"^7.4.4","@babel/preset-env":"^7.4.5","babel-eslint":"^10.0.1","babel-loader":"^8.0.6","css-loader":"^2.1.1","eslint":"^5.16.0","eslint-loader":"^2.1.2","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.1","sass-loader":"^7.1.0","webpack":"^4.33.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.3","webpack-dev-server":"^3.7.1","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"f6e2db1d3f808c4e44e88787a86daa097327c0bd","_id":"@simonwep/pickr@1.2.1","_nodeVersion":"10.16.0","_npmVersion":"6.9.2","dist":{"integrity":"sha512-jc2vqCkD1dHT7RUsYNcfb1bbHCdT5o/xdJrjlOnpUquox18J6NBMLKBJJJ5UIfIlFTXIct7y3z344eU5eM+oOw==","shasum":"ded42cad637f0dcc434019cc27394b0dca17e5bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.2.1.tgz","fileCount":38,"unpackedSize":364997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdIgk2CRA9TVsSAnZWagAAa18QAKQ7fCPstDjpyOsQRg/6\nDqqqksJ7RpI2U7yURXoWM3TUxjcL5LPBvltVcTKx+umgLhtMni1H7cPK4OVt\nthONa0G4zRinlc5j38IcRAdNSEjZo78TZaaafIgBAvF8O0csztmGpuMulEp8\nB9dsrd2lC2qzzmkoILTHi3fWmKFZZbqb3wX+k1oAdefL4vT6zcOED1UbeznA\nH8/P+eiuUl+reP4FDJVYzEpSm0EJvvMSnm2VIvK587eXcL0Hk241sXpRSaTs\nRlI19Wwni+IV8o2k4DUiQ3hUeRQFlpWJUxiG3DwdXOBDtvZJH/Fe1EWHXcBZ\nH9tcTlfxVRar0WHdXHCnhyKFuzLRd6rMyH12+NGdDhqp6n2hZmFdl4RyQNjl\nceaagMY/zqsyLH4EdEYPi2zZFDjyK0xqF5P5CNGxuo6kEz7Wrzwt1fkie0QK\nGnF5rqgSMaQ6UYC/0PRereeJ/F5MfYHqrQ/XCeHigUjiVNN9K6Y5w3spxpXL\ntGOHGqW8hgGAz8jcp6SmCt8NQDVmRJdk254JxRFu6DU5j7xGz9u5a0rQFiw0\ndwR0BvkZZLojQpWX4Zl9MaJN/9qhK1Ies+lZNogYLcfcqZJK0ScoujUSmt/r\nrIBG6clg8i4/jM4+afvo0qPHz1RcSUaRuLZ0QCXqGWMVvVKbmVZwoH2FlglA\nbxkf\r\n=XcPX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEPkXzRm8mQTvQjg4iTPWQjzVepjh0TX0eNkv9ggcC5hAiEA1jgcmkpQESPKFD838kkNI2a+duDH9Eb1hmJZXNQc50I="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.2.1_1562511669682_0.8993488187555072"},"_hasShrinkwrap":false},"1.2.2":{"name":"@simonwep/pickr","version":"1.2.2","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.5.4","@babel/plugin-proposal-class-properties":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.4","@babel/preset-env":"^7.5.4","babel-eslint":"^10.0.2","babel-loader":"^8.0.6","css-loader":"^3.0.0","eslint":"^6.0.1","eslint-loader":"^2.2.1","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","sass-loader":"^7.1.0","webpack":"^4.35.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.6","webpack-dev-server":"^3.7.2","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"01e98c4db84a706c9d364b4ac8174a62426b293f","_id":"@simonwep/pickr@1.2.2","_nodeVersion":"10.16.0","_npmVersion":"6.9.2","dist":{"integrity":"sha512-t3EUOiYo22SAuwlZuMbAe0Y6cj74Dh9bveRTGdZg0v8G/HXEPdhVjvSVC0gdZdmdQAuY4Hcczs2H9laApCBKCQ==","shasum":"750a5491320d2390688c0af7e91654b970adb081","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.2.2.tgz","fileCount":38,"unpackedSize":366320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLyk9CRA9TVsSAnZWagAARLcQAJds4UrWESWmVl+HUaPR\nGyr4HRfuKvrIvI4lHKoFnbJYJoyffFAe+CpUyaWNn47kM7o4K1gvN08Vvxnz\nnYHQUeCyWN6n+wKVQmHg0xa0WO0lH4YMCTKOwN9rw3fIOGqxlpahY8E9o9nQ\nBaJ/CWrxykplHvcHSvWccveM1R9QnUSwPxouuX+fvXtwarIIN4zK25fHM/s7\nkYHClgw1Yi3s9lTXyD3jNvWfsQoqamJk52wsrvH+zp1Cr6ihwhw8asOByxWe\noNdIW2hR8aqe2b4itgtGNmlLJ9/mdie25XguSSQTlKC1lA26ZLVUe1vGO8Vb\nEypFlR/gm6AlDAW9nyNaBXVjGM0jTxOHlAeuO64WvovbZJusD1HTJBt9qbO4\ng0wUQWpeHOv3Ie1T37jKhea+gIyYaUB5iym2Qjg5oYOBSF3hG55ut2mO1OfL\nat8g0EafO0sNQbEY+hEfvbBg5Kou6lotTkoIoynhNMPQvyZauNoQ/MoN0fIq\nC47rlZ98+QYbyVeja9V6fRxO9KHwkayt6FojheYqpPIiJHu8xTGjIbexuP9v\nBH8ivWxSo8wRAu1R7lCtwBaT5Ovtl6De8KXZB+Mi9EXaGbcvTbyWWZBh8YCf\nXOh+MZ65zWMGShn0XD+XxVurEBQ4tVYA8rIduvOAY7nmQzo6gPF4PF+faPYg\nfJUz\r\n=nY/X\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGP/bXuXNVDeHqbdRf6bk6n7cn+CB1RlP83l4haet5/mAiBuSjDOpNlVvQIfYgQw4xYEwgfRroP533168MB1RE9FIg=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.2.2_1563371836660_0.19854922251391627"},"_hasShrinkwrap":false},"1.2.3":{"name":"@simonwep/pickr","version":"1.2.3","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.5.4","@babel/plugin-proposal-class-properties":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.4","@babel/preset-env":"^7.5.4","babel-eslint":"^10.0.2","babel-loader":"^8.0.6","css-loader":"^3.0.0","eslint":"^6.0.1","eslint-loader":"^2.2.1","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","sass-loader":"^7.1.0","webpack":"^4.35.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.6","webpack-dev-server":"^3.7.2","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"475c0cb2aeed8a1e9b3bd04b7decc197f8ef95f8","_id":"@simonwep/pickr@1.2.3","_nodeVersion":"10.16.0","_npmVersion":"6.9.2","dist":{"integrity":"sha512-sazEiLZBOR4U+D39tEXFELx/g8gefgMi1TBke5wVJm5HMuanQvmMmx+Cn+Gw7kow9oHStbQ6zQhkS2sQCs5EEg==","shasum":"3ab48fecee33e39d0bba785d27e669ea25177eda","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.2.3.tgz","fileCount":38,"unpackedSize":363974,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNECLCRA9TVsSAnZWagAA+nsP/jdjxzvmITJ+N1YGFdQ3\nKXgTcHg90EquZhGpGpOsyTIqEQAzNqqclNGRKARoQxvUbu2KigAvBQwPJIKd\nFHteB4JHAb1hurFFid7r3PRNyR7f8CFUCQbpvZ6Br4DtCBr59+9ugxPhJtn6\nq18On7bRo8WfSFSCryFjTU3xb9BmV+MfcLmYgoUPORrsG+IXLdT6vW0Gh81z\ncLevFPO8IW7oBYDuPIyLxcVhiJ04I8LCFnQIhI4H9+bxdW+rBFywzXdtvrYJ\nbN8aIVeurK4RIsOPYJlkclIcNx6fscET9S9IYUhc8cUhKmqV8oTSJv8iredu\nc7/4xPe2i1wulUf4hTTiimhJKRHSA27ZoCIgjd200xE1CB4mqiUunwl5qMlY\nS1hLWxH2TkzOXfosixk99T87nDxAgsEZaiPXqWlkmDI2vSBnqshHrE7jWkAd\nhZ2WEjYu6x1fJruE/7NmzthJG0bE0zvRPphi9xwd3oCFv319T19+FMAGTEzu\nGbuUKjVlc2T9bhT6U+PazErlzRxr/YUECSxXCtFux/wPsYUqKWtW2J6M5B5D\n66qAarAW5xzTpVbmyPZTu2VWg4JQsur67eGZCj6CqGnTRSdYzn+eBV5iueqS\nbYtEDz0HxWswgqqw/C5YAtcx0H1Q5W3I66r+gFDm30wb9pW6aOQdyym6BaiV\nG6vA\r\n=YBT4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKDhxbY0uyqjxMijdcoV7Ur8WQaFfgIiEOaj3TlQHxJAIgDO8cFN7nxLrBRinFpSEoQjBc50dhvLILU9p+0sPMRDA="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.2.3_1563705482527_0.3023917228004871"},"_hasShrinkwrap":false},"1.2.4":{"name":"@simonwep/pickr","version":"1.2.4","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.5.4","@babel/plugin-proposal-class-properties":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.4","@babel/preset-env":"^7.5.4","babel-eslint":"^10.0.2","babel-loader":"^8.0.6","css-loader":"^3.0.0","eslint":"^6.0.1","eslint-loader":"^2.2.1","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","sass-loader":"^7.1.0","webpack":"^4.35.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.6","webpack-dev-server":"^3.7.2","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"95a17055fa892c453e96b42886b24814bb48c67b","_id":"@simonwep/pickr@1.2.4","_nodeVersion":"10.16.0","_npmVersion":"6.9.2","dist":{"integrity":"sha512-9NO0WlxHJnxpTH1a0kqLpHMpWArd4+UO+NKOI2FKrloqStg+C6AJJgOQor9P1EKJ1yueUNEI+DSba+hYe5LoSA==","shasum":"7bca5d3090f643df48e1b3cee00fc43f50adcd57","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.2.4.tgz","fileCount":38,"unpackedSize":366312,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdOwnYCRA9TVsSAnZWagAAfIkQAJ/b//8Cb4+Ze4q87QWC\nXVF4MIO4C3Wi0nJg7btTSWrbrua/kZvalDSX8+LM1ftL4BnOKE/wbBqtwFc/\nX9moOcQAM2kwvgc5TiNMx8SAWvkh8M9hCP4unJsmhQx2vqz3/Xb4uf2932ru\nz+e0nzq5bv4JmtZjEE89V5fI3efOe6xW9lHaybKYhiW8BTDeJozUtQAnTQyR\nudX/8n+A1O3orfsja+mGwP5zrTaGFyS1BDk3rFkgykZTjHng25aQsm3BLuhc\nPI3xGeLxb4s1xhp2WE9gFOzCg3yhH/QtrNiqICEm2GLFIq26oL28V1wqsiLy\n03ExGKbeg0mT5y3BRKQUodVdFy1rcZxuH1uj5R3f/kpNU6th/hqx6ONmioCv\nbaI1ozyl85awMteO7k2COKLwiTwXBFWe61xr6CBW4LKSGhPo5NMSH1i/2+/y\nPIMZrTBINeF8XJ++WprgHBFppIZHAOKYN1I+OflZL1MDLhiiP457aPIm6E5W\nwtf1lJpcrJB+zXeUU84O6h6514A3Hfyr3go9wYNDFLq4X4CVVXb7wfaQ5DYp\n3iOG3BMW3X+N/v/uSEYbCX+z9Kv87o1XwXffwYK5aKIh2KEgacvB+qa+fxKS\nwr5n0PUmC5y+y7X+27shlPfz6qFCokWDzcU2SFMDKLYCxYfikzmHg52l0Sac\nV7ra\r\n=IwPS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAJfbMA1nvO7xFvfQ1O3teQQglULI7J7Lp649EhkueD6AiB2mzpNK/MsfkpteyEcPKe5R7SuAhKkShTsUMC3RVg+IA=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.2.4_1564150231716_0.17144135645933556"},"_hasShrinkwrap":false},"1.2.6":{"name":"@simonwep/pickr","version":"1.2.6","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.5.4","@babel/plugin-proposal-class-properties":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.4","@babel/preset-env":"^7.5.4","babel-eslint":"^10.0.2","babel-loader":"^8.0.6","css-loader":"^3.0.0","eslint":"^6.0.1","eslint-loader":"^2.2.1","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","sass-loader":"^7.1.0","webpack":"^4.35.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.6","webpack-dev-server":"^3.7.2","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"8d0d9b8db8d05be2d4ddc6e5f398c71765c5680f","_id":"@simonwep/pickr@1.2.6","_nodeVersion":"10.16.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-a0Q6dgSdlN0VUzvR/9c/XSlskTD83ZV0kBDGqVZLphDUd+QdPhKzuyIVa+JX2UmU98w4wwEaywsDjpy+FW+uoQ==","shasum":"a00cd7a85d27ca182acbb49e0046dd8a7f38f116","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.2.6.tgz","fileCount":38,"unpackedSize":370228,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdQJO7CRA9TVsSAnZWagAATSYP/AsCMH70fGJ8iQwm/Qqx\n6ax4YQOjLOrI8h/U/Gr3MEJNdz4AlYiP6dn7Ei0diLcvi55mrJoxpQlhGC/i\n+vqAzjYpD5rGAK03RlaZXjjG/xFRXsc5BorxZO1Gq9teSSZa+MEUV4/5/Hjy\nJMYCT6gxPbSPJZZKvu8JcEufGg7WVkUIfBzZgemTHvt0dzNtaMWbt+frJbcJ\nkbhKXYJLZWcBq1ieMZG1vA9mHWgugqiFNj1tMzkdlBQoRw5u3l9Ad5kI/ZQl\n/emw9ixvZqUfop31boDE4KmIevp/hyCgp74jA2jXbSKD83HAnd/2ApCxtdZq\nVWH0gBCpnFIHwIgRg81Ifp288kT6I+u6vvso/8UuZG8+BllIGyascC925q/d\nrgFIyE+OrStzxgmwtz2zPu6m5zhqgxP+ovzj9P+1Fv4PMQwuvFz8voaairaw\nb4WhmPTaL3PKhQvSh+oTPOBiwR4uKcNgvQSLuCHSG1/8EYpZggxhmKhU5G5d\nxo1tSWk/n0eEZcRXjcLI2ivBICeBssRvsK5WONo0aGXetqXvbW8nFjaG3Srl\nH8DNhY3VX9lGfDVR+FKWLt3L4WpHvz1uzuiTRb0mpgwwzgz13tRv4u805bQM\ngsFMsjbCmTC5u270FvoJGSh9E1Ip2b/XkvKDxoINZDMf/3gPr8cODJEcsytJ\nyhk6\r\n=yH94\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzxGgFBxWFoo+mo0i4XXSghcsBHEz7Kk/FIOCbzYEVqAIhAN2fzv5o0EqAok5YHjgmx2V/9/FDX1uKRglPRWKpjNf1"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.2.6_1564513210364_0.9805617223284409"},"_hasShrinkwrap":false},"1.2.7":{"name":"@simonwep/pickr","version":"1.2.7","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.5.4","@babel/plugin-proposal-class-properties":"^7.5.0","@babel/plugin-proposal-object-rest-spread":"^7.5.4","@babel/preset-env":"^7.5.4","babel-eslint":"^10.0.2","babel-loader":"^8.0.6","css-loader":"^3.0.0","eslint":"^6.0.1","eslint-loader":"^2.2.1","mini-css-extract-plugin":"^0.7.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","sass-loader":"^7.1.0","webpack":"^4.35.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.6","webpack-dev-server":"^3.7.2","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"fce20980ca2ca08f95b015056f0a76fe30ccf8c6","_id":"@simonwep/pickr@1.2.7","_nodeVersion":"10.16.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-HorVCaAnSjNXy1q4bT4DpgZAtIouCBBWzHYX4WAyxrR4YolFhxAMMpWL2QNcc8wMVrDcvcQCevTSfGYyjzxfwQ==","shasum":"fd09a63a30cda77e641bdcf624ac34c40849c7f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.2.7.tgz","fileCount":38,"unpackedSize":370883,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTCO3CRA9TVsSAnZWagAAsPIP/iEoqCfeo4yU3o8Y2kUe\nqBvDGwuEy6vopANikg4j7tnUjFRsehCRnam9bPykhtscR00Iwyed2KeXXIs8\nUdes9wd9cal9zwGSbcDXaYbP46SrOEqmaEdRGrXo9f03M50Rb7g+7y9TDn+X\nmnmVuPy02vT081pxJKe+L3LNuFT6R0+CD9ei+nSr/yxU14fedB+XtmcMync3\nGNV3yjmZT1zRhfdd+Al218tDvdL4m9Ii3b3UsiQjtY/almg6Kd0t8fBhMaqE\n6wWFwBGb3dyjY6ggMHJ7T5Ff/PMclriuDhiKrmgnb8lHU+VZ4ZHrVi7/kcfw\n2RTt1plaEXzbOpehSct1ncJNEBAk2XYNQc6fkalyJSJXlqlsxD5Dz72qFuoj\noyMoFHl3XG601Kshiavi+589hA5b97Qt/5iFDAdrJY+u5Rl54ImD/vu8AKvA\nkFJcbXwjxGwQtoStdwYfSVRuoSORGfREALpAZspafWSzwmvTtgmkUabBbp3E\nSkwXIa3zc7Fw8sWuNS4n02HGH974XveME0olMpbnY8TITRGuGh2GzbOYq642\n/RC4VVjCCIpN65dIjlh2o5HIUl9YZJ5KMF5bBQF83Pkr8Cr3h+ZaIN+FBWtA\nwH767vPSbPtWgDvg5PDHsbSO1lOMTZPC5uSZnYh5GwKTmnD/OT5xbTW6EWxK\nNQWp\r\n=/cN1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCMqwzA6QYOoN/m4+ctXOSgwseVLPH901ZvEuiazXG/QQIhAOX4lOGJUqboDbcLNcNYFQYFFAK+bxaSMyuqRXLTuKk8"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.2.7_1565270966366_0.5236495329280078"},"_hasShrinkwrap":false},"1.3.0":{"name":"@simonwep/pickr","version":"1.3.0","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.5.5","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.5.5","@babel/preset-env":"^7.5.5","autoprefixer":"^9.6.1","babel-eslint":"^10.0.2","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.1.0","eslint-loader":"^2.2.1","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^7.2.0","webpack":"^4.39.1","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.6","webpack-dev-server":"^3.8.0","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"f31ce2d4302c66397aeadb1a53106b00497ad742","_id":"@simonwep/pickr@1.3.0","_nodeVersion":"10.16.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-qm8xHjdDGAr6WuNMAzUHjO3QKPKk+IkyLcJIJ+wNAhyFQ61eXLbn5wfG/BFwR96Plsnp5DhrHmUV5zMSaXyfhA==","shasum":"0b97a6b2e4c6e2db15b7a173d5d5f98d3d2befe7","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.3.0.tgz","fileCount":39,"unpackedSize":364482,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdWvetCRA9TVsSAnZWagAA2eEQAJ5l9tNN/WL+Qa+Rz9eJ\nAZIprFGbaV4IDPcMtiNu34HwKimGy5YNdkJWra5FuvT0vcSPkD6mNJ40Vt5k\nOlVS3p9MNMg+5p9QiaeaByBG5PQoEPOfyQ1cvsnKSDDcaUBP26swz7PmSwZf\n6ZpJarUk0e73/rgzlnKFKbf+l2Qh3AgX0kcVEGFzeAD9duPUpRLC2xPjo6qQ\ngflxmgqeb1nTQ7RmTkodikKiY8I/80wHqyCnoLMtvRkNUqR/o0RBQwPVw96R\njme9ueQsuRlp32JYX6iebYxxgKzjARk/QkqcwyhxlbrJNXxZpjS9UZNh1lLN\nhZF7rIOEYrOxPxNTSEvPQN31B2dr4UJTxqmbhm1r7nXA4awo+11DafKREnrh\nQaAuggcedGDRzpJzdc83qcVbC870i5+DQRb3CXNAJHljW8jMLBT67mWDKmj9\n3JnK482M72E5/xt+lTDTpkYU82BBmgQ5/OjW7c/4zwWXMDwDbE2U0OwwKfMJ\nMj0kq7v0yqWeGzVGjrd+OShV0LQ85nWfkzVNAsv3SVJOc1N9LF08s0JMpbkl\nGYp279biO3W4Ey6vUlx0X3OkE8zI+20Y9P6JdnKFQZU0UdU3tLDngzeG9E8w\n9z3xjIcGAe9BO1o0JPTs8WdiISut0A8yq8hz++zEM4UODeyh0YRe+oyhk0uU\nU8JF\r\n=EDnC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAVed54UILu+HZxb3bu6J+PLadW9/9OfqUZCgLDP2QYzAiEAvoEbNFfjpRbZCzKksn6rM6PCpGcgnB74Qms8Cvo4dW0="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.3.0_1566242733100_0.2569302293889548"},"_hasShrinkwrap":false},"1.4.0":{"name":"@simonwep/pickr","version":"1.4.0","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src"},"devDependencies":{"@babel/core":"^7.5.5","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.5.5","@babel/preset-env":"^7.5.5","autoprefixer":"^9.6.1","babel-eslint":"^10.0.2","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.1.0","eslint-loader":"^2.2.1","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^7.2.0","webpack":"^4.39.1","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.6","webpack-dev-server":"^3.8.0","webpack-fix-style-only-entries":"^0.3.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"4f911097eb9cd0260887c7bb74d7fc9ca61e19f8","_id":"@simonwep/pickr@1.4.0","_nodeVersion":"10.16.0","_npmVersion":"6.10.2","dist":{"integrity":"sha512-zLZYNvv07zbvs6LkCzci4dQMPu1ZmePt81vZbJcIn9yCZrg5rqUDa0d9a0uYPKnj1lO/vl7+O0+Oe0dYdkMT3w==","shasum":"cef5e24ea4197b676d8d5241b5b88116189eb731","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.0.tgz","fileCount":39,"unpackedSize":366744,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdX+4qCRA9TVsSAnZWagAAmHAP/jHku8onp5wJWdzb3nUX\nej4AEnXRXFvwiYUCAbWcJLwqaRdT9dusAzhGii6eWDJlecZeqP9kr/QeHeE+\nB+T7nABXEpmZfM0ACNvXAkO0OripbXQS4DLsmrN+LnXmuYQgqbfSHP0Pwgrj\nAuYXAAkTs5RNxrEZf0K0NRoTaSdvMXYga3aFKjFmVU2y4dbkTEeDDG/yREpx\n9WCRFrbdMb+sORNGlpBuxtxT61tQJGxXzzAP/2w27xJulJFlVWgKHtzq2J34\nm6EsSTwcV+NFcUeLVuTCRlzcuBD97w2iyCndpmNYMZk8vhwwd1RareJpiiSB\n3XTdnCL9nKIA6ekp7k572lG5fqrCtPQkTJaXx4YravGr/twjIHrjHR5tIV/w\n2KxGqVbn6wMC+a8kadgZtanO5A4FHiD5gQgZc6QYFPaXirqNye12bn6ONHqr\nF55ihTk9O81kyGI5V7iaUxzvdIJhbV0BjXvo0Pr8HU8Xe+sYK3uRXvtI2m2+\nfNaz51FOP5LqK9iewmCQLpuaXgZcxmui3Qunt2rXnjmCBExSdW4NJMzHUOUA\nApdq2GaqO4c7EC9OhVVc1j7Ndco4XuceBwB9FqQknqBTbK43Tl7VKQHmPI0y\nNNWK0hUs4mnMq4pTUllnDbWHLGvFwbyDfzHOYv7e0C2R2rmXcDW9+0ILJDMY\nurs8\r\n=ucWZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCfTv82HuJr1Gt3W5cGqlN2VtsDkUqxP+Hga9Cp31k6HAIgbrCG7h8zUfbpSRXtvCZVoLnVTCApDUPJ5Y/akGQ9EGs="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"toports@gmx.de"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.0_1566567977816_0.37779699395741084"},"_hasShrinkwrap":false},"1.4.1":{"name":"@simonwep/pickr","version":"1.4.1","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix"},"devDependencies":{"@babel/core":"^7.5.5","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.5.5","@babel/preset-env":"^7.5.5","autoprefixer":"^9.6.1","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.3.0","eslint-loader":"^3.0.0","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","webpack":"^4.39.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.7","webpack-dev-server":"^3.8.0","webpack-fix-style-only-entries":"^0.3.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"4c02cef08bac134c682e05bf130e934911579eed","_id":"@simonwep/pickr@1.4.1","_nodeVersion":"10.16.0","_npmVersion":"6.11.2","dist":{"integrity":"sha512-8odY1VypwWaacxJ1tCOxWR3DzokBeh4tjJX1QLXYmuM282JTszg8yWYO+GS9T465qsxCfTfFeuiosRjD5/klpQ==","shasum":"d7987bae2e7d1c8b02fd85d7e4f437d2eeef0408","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.1.tgz","fileCount":39,"unpackedSize":377077,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbTRfCRA9TVsSAnZWagAAjdoP/R7XTHtgw4Uiw/mlaSuK\n8PQjidBozChUSJZ4eoVmE9SIT+4tEuTHsQLMskwBojig8HkSJ+KznHwCejWT\nEudFVL8QSmZVrQ1bRRSBBtHEdhFSHXOjPQbwbuw7aifzkyNBPnSrpvWpC9yb\nknUsqKQqlCTWUC+B/Lwn3gyZsIkSMBPEBa9HcIGSit2cWhiNkLJiEcyhBFhd\nOylZvjm1GGOHLwlhd/8zLYkTVnOhwo9HMEX8kLtMFnGUASu/E7ispxsKi9b7\nEkAHb5lHJV0pj/6zOjYPJcVEqx+IUfTo5WgRIb2MHtOevY39vk41gmXFv8Au\nZIsvKtkLIt/qXsGVs93+xrgJGrmPrHVs+fFE1qW7AB73Y4/1oPXOO8CdEK/f\nbPgF/aBRO7h5oNoFXKSNW4JHqTz2FRnJ7WFXBVqsN/GhgLdIS7V1qXuiC0Ij\n+1gUUVXn+asrnhRdnJtmV3jxskMXfumO/rjDasjEsdQbYH9YYIo3YDXOPvHN\n/wXKizorV3C3weBwp2TJ8RZl48MDzwBLFgkiEohk8oH5NnN6u1qgCoP6BKzb\npxiCuL13lt6Z2165Tolvc4tZAdMt9JWyv04VbfSnieLCMAARLKRE1g8rMGfL\nnKaIc54CFGDZiKaBs4wNRVmGoKTOIFZEkfPYNgHODTcdYwMxxW8H6YHOMITZ\nDAuy\r\n=Q7xk\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICHIC4GNwhgK1yOiVTQ5TJcjpt2ZqtyfIyp9y2lGop1fAiEA0ltcS+IdnvL92vC1zm1szlWNHQvmpLsK7UB515SoCfY="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.1_1567437918020_0.6446307039837442"},"_hasShrinkwrap":false},"1.4.2":{"name":"@simonwep/pickr","version":"1.4.2","license":"MIT","author":{"name":"Simon Reinisch","email":"toports@gmx.de"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix"},"devDependencies":{"@babel/core":"^7.5.5","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.5.5","@babel/preset-env":"^7.5.5","autoprefixer":"^9.6.1","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.3.0","eslint-loader":"^3.0.0","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","webpack":"^4.39.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.7","webpack-dev-server":"^3.8.0","webpack-fix-style-only-entries":"^0.3.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"93834bb6ccadd4fd644bc2087b9af0cefea17d8f","_id":"@simonwep/pickr@1.4.2","_nodeVersion":"10.16.0","_npmVersion":"6.11.2","dist":{"integrity":"sha512-+gL7EVZPr5tL/0px6nf2b9kKa8TBWS1ZhP5r0LsRh4Ptys9a9ZwMN21SE0vYI153l8LK4KOzsOYcCzERvjRTLw==","shasum":"ed702a52c5b643fe61f5beddb3c68faa86eaeaa9","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.2.tgz","fileCount":39,"unpackedSize":379132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdcmHtCRA9TVsSAnZWagAArhsP/RJp51kCrq900PgxN2xR\npwQZVGwGX4BMG3PngsBXsgGXrTYaNej5pQpmJD5BDNVgUPvPtbPW6wprGhqu\njqPyjuW3ZzJ/zGFYZ4CPMN/cV4lalAhc+IUVq+ISBPSSQuvBXjoexReCu7CE\n2DU/BYD8jHIbICjresXObhdg8R4gwvhi5l2RnS8wqFujbr5Wsyeat4IAsmY9\ne+BHSSTY22CUsYEtI5aBtWBvhn4oIYBuh7ucSsWC6ze0mOWyXabTNgze+LSe\nsLppQDcWElBlHO8hidgypRdcw3vQKjR6aBpLuQWCOb09VetlanST05znr0E3\nPob/NMICAfMYBs0tV9dAJGNELJ0LeGpI9Y2AQw/sV4IIXybEzNXnA3z5XPin\nInoNn89kfXzXxBMN6dC38gtzsOxXsqAKN3riu3XVKA9osx7Fdm1/7sXRvBPd\nAHHG/vhMSHJjb+G+Z0EBO1NXKwa9Pm4gHLPl09phWjnpuk25o/7Fy3tVJ1dq\npTSJEBT7SvFQH+fHHdtH5UsZK7ZJnpsYL9e+I+JFW06VK3gJfnbfZHonenY8\nOM/m/jHD9aKyBwY+H11Abshspp18p8pj7ucfSz6sCn4y9/Zd4eOaJYRfptbL\nmhiqNfjmPIfs3WAI/h3eUmuvCEYy70SJ36oOsB4Y9Fgqp9Rb7CQOULvx4/pS\nuaHA\r\n=8jOF\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFAW9ewnesND/w1YTunndQxd4dNKjh7/lGWnoCC8qBF2AiEA8nA3O7Jvpz1C5i+4tmulhLTm7efRp1evyEPF4OZ4e/A="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.2_1567777260715_0.7682145396172184"},"_hasShrinkwrap":false},"1.4.3":{"name":"@simonwep/pickr","version":"1.4.3","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix"},"devDependencies":{"@babel/core":"^7.5.5","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.5.5","@babel/preset-env":"^7.5.5","autoprefixer":"^9.6.1","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.3.0","eslint-loader":"^3.0.0","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","webpack":"^4.39.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.7","webpack-dev-server":"^3.8.0","webpack-fix-style-only-entries":"^0.3.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"5a531261e69fba328c877928d2fb5b7c937665f8","_id":"@simonwep/pickr@1.4.3","_nodeVersion":"10.16.0","_npmVersion":"6.11.3","dist":{"integrity":"sha512-6fbVTh8eJ9zUrp1/c7GMHncV15biaBxMgfbA2IcBDMdpxstAdBemD1Ea+kt+SMYeweOHx9DoxZMTpqTgsmW16A==","shasum":"980a9300d6d53b287862137457a2d2694764ec97","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.3.tgz","fileCount":40,"unpackedSize":381616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdnNluCRA9TVsSAnZWagAAyrcP/2txAqjxnleQYTCaSyye\nTJ2HidP4LwyDvm0p3HqvroAItCMntqZnkktziQuqSaBQeDLaN9BOxTn2DS5e\nCpiI4zQ8RAFYpD2IVovC+z0gLR/cNt5satCZVNhhxinUF948OwTT6djS4ash\nbdHuvj4lk3C+6LaVV27Z0RhjXaQQragLONEjqT1t7nSPSs2IQ3+vp0wc40OO\nT+R/0KrMY+ZDT/9fR3fqEqHg8fXv/CN75AaEQ/evqeuhGsLMoBQ0iWNYOaa8\n6L3aDHi4x0jvyO2xO2fLNKSi/0P9R+v5Jy0klBbJbbEwChjn3wmI/97Y80dj\nJZvuPYWJY3ZZ9GWRSZnKY0XguDMC8eVD5NWI6KAX8z8nNb/Jjf9f6597zvKH\nSW+TvJVBV43tKWUe6nXynYyMJQbayUAtbRGVDCwPYA5lvFmxcXIxqfOIpmr7\n4FF+WkoAuscnWRLDAtZRXFKr+a98xPewr1P4YQm+gtdQ1woOcDYMM5qDhgZ0\necs1wg8XYLGX31fU6KrM2/Ye1V7JdnsO0NGE6LJ+bsMUkJDRTmvLkbG7ktyF\nhWAL/bTctrerZoQkUXvHadkDqhCUVa6Vo2ge4tOI1ih4gIOITqY49IkwjAud\nsTjvBpCZVdK6iYjQIi8qCKBHpTcIhxp2CKJ0BWOKi9W8Ysbh3wROsBtsC8Ky\nJ/qp\r\n=p15c\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCgHtmnvDkQdLj55tnpNFAXRiUm4WuLU10qFNAyQ+iNkQIgIIrxBhIkfdxx52EnfxiBRmPM3p1b0aUCrmkBux7xuGM="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.3_1570560365382_0.9290781061975979"},"_hasShrinkwrap":false},"1.4.4":{"name":"@simonwep/pickr","version":"1.4.4","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.5.5","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.5.5","@babel/preset-env":"^7.5.5","autoprefixer":"^9.6.1","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.3.0","eslint-loader":"^3.0.0","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","typescript":"^3.6.3","webpack":"^4.39.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.7","webpack-dev-server":"^3.8.0","webpack-fix-style-only-entries":"^0.3.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"c5750490ae5f59bcd0951a7c1fa42f596037c93e","_id":"@simonwep/pickr@1.4.4","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-era6HpP45wO+a0zwsHCJf1uo2W+Zpo89MMBO5XqgHKThuSdgkMJnctiKKHvFL30zWTSfNcQs1kjj6YaUmIp91A==","shasum":"6564e873318dea2d99aedc0c763c9f47d5e0d68f","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.4.tgz","fileCount":42,"unpackedSize":382638,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpYX6CRA9TVsSAnZWagAAzu0QAI+TvBPPOcT5ttxROoaW\n1FSOlLBa2WOrJLYFPTZry4XaLQfMNvRBKB0vFML3ZtKTjYx1ayIFx7g1w107\niflpyXDv10zZWyCSc7z5wFixmRPJDYiCXuusxN8Joaf3HFdOsR+Zq8txllUw\nvILBlnDlJKM+APzmbTErijrmLE3csQNrzpJkRSCvOu3gNh4Cd0+1tMp9lQIR\nLTUyP8m/0or/KoI/ssrcYY5R95lIwx9TJbd+2fAQJM+wpowin1PqT9uMEigg\niyc5a5uhHJJ1TDriRQjFt27wwzXEVGlFhASbvXgK6pdlyIrdWWjUepq8p4x/\nTG+p6R3c99C5D0TB7XMetozlmvobDfNSZYrmGRevym0t9Uz3hhuoqEbIIxJ6\ncsg36nA5GRTbTo+AMNez5nZBCiHoL/G465pIjAwZIDFeMVDJ+Vk9AJmumVPu\neyx9t1jI1Bqd5vOCvUJgrrECA8fcS60PHrWaVpoFDSu1gPXMVVUVD3M3koul\nPTyzxMydMk8q6pQEMkTrSRqgYqAjPJwgr4LmaEzco1+rhwnR2Alw9oVUf/TL\nVWu7VTFYe1R2ahhFh4Xs2kr3Y7Ebh08NRTREUshNwk3I9MVECVRvTDqjg5Vn\nPCO8Rw7cy+Vvng2vR8Dv5uycLfyoopUW+HWWC/n8t2UDBmKa6NWGE4eKTDOj\nETGI\r\n=jjM7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDdClpYqGLIQMxppYRAyfuNV7GYgRD+eQETe4GgUsjBIwIgJM0/Z8KS7M2BsrroA0iEi+HVNjyW/PVlJBWHhsKvlYY="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.4_1571128825909_0.7842146598096558"},"_hasShrinkwrap":false},"1.4.5":{"name":"@simonwep/pickr","version":"1.4.5","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.5.5","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.5.5","@babel/preset-env":"^7.5.5","autoprefixer":"^9.6.1","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.3.0","eslint-loader":"^3.0.0","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","typescript":"^3.6.3","webpack":"^4.39.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.7","webpack-dev-server":"^3.8.0","webpack-fix-style-only-entries":"^0.3.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"103e2bab33c5633511d156f5d8947899f3a8e239","_id":"@simonwep/pickr@1.4.5","_nodeVersion":"10.16.1","_npmVersion":"6.9.0","dist":{"integrity":"sha512-OWbzHbmxBctkZpMIY9ipsB/MzS1VHYKZuMI+jdThsyKnz1a0Es8IzTnQSclMk50dwgbaE5qmoxZnu+JrYKX1Ow==","shasum":"a1e04b87f552c32cf2245996b5f076040699732b","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.5.tgz","fileCount":43,"unpackedSize":382877,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpsFXCRA9TVsSAnZWagAAEwwP/1q67hNb2iynosYb+Mgy\no21nIfIFcno592udcu2I8AWinEnSLCmqKft3Jv54PXGTGaAUhq1FLMIYMSyM\ns9DkTqJ3Wp+WURCLYnJapkiL/k9lLwcNE8dh2CA8sv+Nmr1BZFND3lVQpsfv\n0GopbJIE3DE8AK96/PEsxXoD3Owdmo1C4o7c3VVDs/7OYarrFEODit2nO3pU\ndqATP0R9GOA+p6NYEKQDq4yuT0ZnQaIusR9PtmFZi52JHqixdiVtIreMBghT\nF97ritFjZuX6pRGTVsRJH4ujJ0RYn6fMddyezLSYx01kl75xDZ1zX/tptEwQ\neTCb0OOnIvQz7SPmTJTj9JUzpbxgfinBURHS1O4AY3MHim0ELZjfhGPYrAny\ne4FBfCIX8MUYfh1A7asaej3N/Cu2yxeSSWWsjDU4+EqLoZbT4L3uV+ZEJbHp\nMFqkFisBJ+omIXBWeDnGU33G729bGPsLoojcHjM3s6niVYxpdzBaXkoJ0p++\nu1DMW5bYKO3/ueeruPYc58KA+fFz9Zvvc+MNGKu6SuwTLzUXXLHAsE7I56Ef\nYpKVUHGNukL+i7CBIJvRFuBdhdnu+zO1QH4qvxGD8waKlCKbFix5tzuPZrcz\ndSsC164TmlbbiyNFPEbuAVDIQb9BHQRvtfzEFUTv7SOtMgtHb24bAOO0XGLL\naO3n\r\n=EdKr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTRd31TI89R+PhpxznvU9igrV8kCiqDCDv7DgvBI3XnwIhAMZGc72Lh4PdrMXOJvf+BjSbKLreIIH4oL++8g1RXtPR"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.5_1571209558926_0.520317786668195"},"_hasShrinkwrap":false},"1.4.6":{"name":"@simonwep/pickr","version":"1.4.6","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.5.5","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.5.5","@babel/preset-env":"^7.5.5","autoprefixer":"^9.6.1","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.3.0","eslint-loader":"^3.0.0","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.12.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","typescript":"^3.6.3","webpack":"^4.39.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.7","webpack-dev-server":"^3.8.0","webpack-fix-style-only-entries":"^0.3.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"gitHead":"4b3c75b2b5dbf0c8e773192141bc5352aef1e98a","_id":"@simonwep/pickr@1.4.6","_nodeVersion":"10.16.0","_npmVersion":"6.11.3","dist":{"integrity":"sha512-XFuoDrmLKrelxDbKaV5Fadqcm9JQ4XwnURDLBGlgy6Foh3lmr4D/X2YimbniETE7v8pKKSqaDYaFr8dDkIUfaA==","shasum":"888342b642bc9ecb712b5131ee5670da919051f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.6.tgz","fileCount":43,"unpackedSize":388830,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdsza2CRA9TVsSAnZWagAACzEQAIHZdzLv4Hkdl/YP5fk3\nya6aDeuDEhQYmjr9PlXQKK78kDusfpAgicqlDLq8vHRXcGK/GCnUyzWm+uoJ\n5FWh3uAlbWffemgd7O6mMoV2csgPWLjWJrHhFtUMueFtGs436GADXmbQy81D\nro+V4aBJ3CdfywJARqvJsy2qLR1X5Hxth2AinQUZXgw52GFlUXGchVhPB0MU\nsixRHwTcVNkYgmi3Ub7FN0/wK2qPBA3U+5kfH3tpnI8ArRu2h6HeAR1aVJON\nYuywEwkU0SArj5tIXdLyACQBN+eH8IJx5K3AXhNBhj6p1N+GmcpvEQZN3r90\nNgIDYL48yMPQ2IYE3XB2rXLcZLMZvc3dNcg9iMeCPeSCokgEjctKyyw6tzqQ\nAj/0prz/Pcen2+EOXDO4yw87t1NMtpaA8lJHfyi5V7LtEqNVn1DaSHk+W6+O\nNRtz0NW9hXH9udzuB7tLvSXcpxHyZBOItJ7XeSoS4jCrlV4rnB0cviaOIrO7\nxmvF2yp2h/rIVlX2CEEwwpgPqa5f4MT/4mFUNJv+o54nJfMV2zH7kh8t61ZG\nRT4t8qvrNlI/qEbN4gmPEYOKkH5w/C5HXpH9LQs7WFWt/apm/4D5dJwsaMOD\nyuLlY0vII07mgYRaEz+ro90ZplyekJMJK0TE+DH/LBIaqWBllZrt+XArmsyT\n2ngy\r\n=Eul9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD3D3GgCbx4okeEvHt31taKSrQ1rolIlCqWX0z/syGJkwIhAJHIorFPbzS5c2d9gVq6rcVyY/grFUrhTsXTNXq4nNFy"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.6_1572026037793_0.47497395085243777"},"_hasShrinkwrap":false},"1.4.7":{"name":"@simonwep/pickr","version":"1.4.7","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.6.4","@babel/plugin-proposal-class-properties":"^7.5.5","@babel/plugin-proposal-object-rest-spread":"^7.6.2","@babel/preset-env":"^7.6.3","autoprefixer":"^9.7.1","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.2.0","eslint":"^6.6.0","eslint-loader":"^3.0.2","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.13.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","typescript":"^3.6.4","webpack":"^4.41.2","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.10","webpack-dev-server":"^3.9.0","webpack-fix-style-only-entries":"^0.4.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"core-js":"^3.3.6"},"gitHead":"c396a5eab03641be3cd810b18619d46a933bb96e","_id":"@simonwep/pickr@1.4.7","_nodeVersion":"10.16.0","_npmVersion":"6.13.0","dist":{"integrity":"sha512-dnx46+3KiZJ5YNXoWDdaOPLZGPCOFsFsa5uT3Eg+lYCUw8yZ+UxOGG9kEbUX+HgM35bJvAnOfq0l1qEr3CLVzw==","shasum":"c65d51b8a7597011eed5ddcb072e3bc4f7e47ba4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.7.tgz","fileCount":43,"unpackedSize":622320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxY5LCRA9TVsSAnZWagAA3LAP/2yqKKb8417DnQ5voMh3\nxfw/Y9/vv14tIjgIecTZc/HKqy+03rbpuxxE3jUAizm5DR2+7jT/hBvTSk5M\n1FbyjUe8GI5Bp+YZ7Eazq5fjAu4Rgh6AHS9rOwfKGapV6OnMvRxXnaWP6NDq\n3exxvOwTHf8nEyTVfStGOHHalWci7ovET/CwS3GuNaS8rE6za00FP8YyDk1+\nai6qtJIOHl3x9OIHiKI/G1EgLzegAN+5aJTcA8zdA2ayXikl1zW7SAgdcpS5\nVIzvm2HzhMd/idW4UFQ2tMAB72XLdFc3XvB7SG+l7Dx1ufnQjrahFcaUnTnl\nU8i53pfKJ29WedwtBMR1mMtQi6vzq0zuiK2dxO7eWSP0brUT/v7Z4JnQxrmy\nf4BeG1usIfcW3XYn1OGugWTz5sVFW3ximEW/OUEFZayXrvWICxZKWQJUP+xn\n9CGdKtCGPC4qNWKaAuDI4SnXX0fQcHT2cadpDYuR5D0FliE1/cY879ZQL8Hg\ntXNRvJYf/hZAnTxmZjUzpjFuNGAGh+hkm3X3g/tOllkf8Mj5iRnEHX6mCqxP\nZXkToUV3+j1kZ6RcpTfH2wOncvxhf7aG5i6fTs3utisOPxLLgrRwkZcISmDB\nj8MG3c3i16fwNq1bDuMWjP+ZFaToaLZOav/kASzFLAH9y8mdiHqo6Un6dJmG\njTo8\r\n=wrK3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBv6tbWsVJovs7yhl+/kcpr21DDy+nhmFZZn6fc1gkjYAiBBkLpYmOISFXAtL8Nu8cdZwntaKzJ2WXmR65BGrzzLKg=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.7_1573228106772_0.773437563115245"},"_hasShrinkwrap":false},"1.4.8":{"name":"@simonwep/pickr","version":"1.4.8","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.7.5","@babel/plugin-proposal-class-properties":"^7.7.4","@babel/plugin-proposal-object-rest-spread":"^7.7.4","@babel/preset-env":"^7.7.6","autoprefixer":"^9.7.3","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.3.2","eslint":"^6.7.2","eslint-loader":"^3.0.3","mini-css-extract-plugin":"^0.8.0","node-sass":"^4.13.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","typescript":"^3.7.3","webpack":"^4.41.3","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.10","webpack-dev-server":"^3.9.0","webpack-fix-style-only-entries":"^0.4.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"core-js":"^3.5.0"},"gitHead":"7358d7e458f6abe74a8ec46c4fac76534dcec616","_id":"@simonwep/pickr@1.4.8","_nodeVersion":"10.16.0","_npmVersion":"6.13.1","dist":{"integrity":"sha512-fFBFUd0rhEnaxle/LXYpMkVtgBokCAT5mFVfBx5P4P7qeXNuvaAQQiq6j+17AKvph3KXyku8vMUpvlYGZTWMHg==","shasum":"876cc3791d70916e4f00e2c99aef69ae210f9c41","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.4.8.tgz","fileCount":43,"unpackedSize":623769,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+QeWCRA9TVsSAnZWagAAdhYP/1yNd/FvpcxXNXodKX8W\nlUQ4QhC5TDNzPXjhGQcS/Y6/xKdGAm9nc0Kmq34Y88FUP2PpAShu3gcGG+VK\nlVf6lJOANY78BQruMtYL/AANvRz2If282Nf5l2moF/Mfp+7aqJ0xeI6nvMeX\nJUdMSaZ00XDpl80tP2iS37cz0CCcVEhYZi5H2AtuYqYNwG3J8+hLt4SGn6D9\nOU3Zu9droOxsmgr7nN6ZJZdh0d97MbvF5m4atKiCwIthkHQz+pRndiaKw/6u\nCn8p8xEg2nqTJEK6DufQkjMImLrWCHFZNi8RJW9vgAb1qlnPYF/kDq2EqqRL\naymOOkFZ/59yE4JJH7AtuK+Hi9tS1o5REjWOENKKmXE9byrogGTDAJSUVHtD\nwLtQc5r614xzGxdQIs9VnEtknYWRhEZj1d2dAkiX5JztlJNfbXQIeJTd7uga\nYBEZIfugOCtGkdVMT/lU/D8fLbPK42Tl/IYJ1eObizBwMBbIdTPywXmbG7fu\nyjkvrk0l5sHdijbw89Bf83h5b1P031FJBMDPnuGRzc5wRpXWupUnumOgX8Ic\nR8GOMhyqtWQly1MNr+QzX0MDBGhmnAwGJocCShfjtRAyvCKSYY3BPgICEU2Y\ndqb7YFKPdQN6wjJieR8h6HnGDU/+Wj0nkTnoYYAf66u2WUlkjBa5lKdmFQKa\n0d8F\r\n=FjzQ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCEs6pguQnLMtWWrDUnetxWibxKG+n3hco8yz6aj8b0gwIgZ6QFW9gAyZXh6j9tjld0vx0AazXeRmiAkxX0Aof6hJI="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.4.8_1576601493685_0.3665800158109398"},"_hasShrinkwrap":false},"1.5.0":{"name":"@simonwep/pickr","version":"1.5.0","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.7.7","@babel/plugin-proposal-class-properties":"^7.7.4","@babel/plugin-proposal-object-rest-spread":"^7.7.7","@babel/preset-env":"^7.7.7","autoprefixer":"^9.7.3","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.4.1","eslint":"^6.8.0","eslint-loader":"^3.0.3","mini-css-extract-plugin":"^0.8.2","node-sass":"^4.13.0","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.0","typescript":"^3.7.4","webpack":"^4.41.5","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.1","webpack-fix-style-only-entries":"^0.4.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"core-js":"^3.6.2"},"gitHead":"c2d16a2eba86e246ac27880d6967267b0c368ec1","_id":"@simonwep/pickr@1.5.0","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-WamaJhF9XfhvQ+nG18T3SoJgetsp219FVvz4SVuIdyptpwME1teLY77/Hqq5jaRS4vNd+XsOuQuWzBKcGvF0Ug==","shasum":"d25277b7bdf46aa9619c9809314f7b0b96921b1f","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.5.0.tgz","fileCount":43,"unpackedSize":647851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFhRHCRA9TVsSAnZWagAAc3UP/1TSOfYWQnkPLwGmFid4\nvsD7Fx/l1Nr2UIct03bB5XReyFh6IhPJ7z9mEVrVxcY9b2X9YY+gglJreMmb\n3s86YtjSpLR5Sz+ZHFOKzuarToKhIU3A+PGBac20Rk/5gYTNtppnyhUZr68/\nwwSG+6b8/7NOXLMOX077mUK1Rd9fyucItdofyVGQ0giKmB3vcHsa6/RXMoXL\noGZcOPRQgET+3dRg286Y+w8WK4ecv9XTGvR5/+Yy12FO+1XcuRHwdukXMQJi\nhJPsG8NgeYiZeTmamVOhahkGphzhzs+M4ypkvAB4rC+Bs8WHrpbl22FB0Daz\n5V8PcVaaFf8pbVgxWvhdhiTx/oB7H+Pg+mYjI4owatS87coJY7Uks524LHB0\n18xRcLrgnaHKo4qEw8FDzREvg6UdPDNEMNsz/C3Lk/lqETNBbN84sbZqCDTp\nveFqfP/+nWzAbRUP0i6m38Ytz09EZlk8Sz4wyz9tHjoq+wsnZvRkMySafiWB\n+wSk5AjOCmOKXr/o6iellq+9Ujd6nbg/JI574WxDHyYkF+9YrS9ItHGVQms6\nIGbtHH+pk5uxercJUfFfsyvE4EKTz0ndGiWwskYxRff0m75Vi0/ClSzydXKT\n5rFj1PZNLEiWdx5rb37NpHpVcnRsUW7aJ0IIXuxjkIWDeHtIfwyDuUzJLu7O\nTeLx\r\n=rbYO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHfxK35xbldCRcTwtoLK2ly1oNkMzGTxn4Mi/5220Td7AiADIhlKWQqc+nADs6HbIOv171u80b2JaDJqUEsP4/DwpQ=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.5.0_1578505286772_0.92288883345753"},"_hasShrinkwrap":false},"1.5.1":{"name":"@simonwep/pickr","version":"1.5.1","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.8.4","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-object-rest-spread":"^7.8.3","@babel/preset-env":"^7.8.4","autoprefixer":"^9.7.4","babel-eslint":"^10.0.3","babel-loader":"^8.0.6","css-loader":"^3.4.2","eslint":"^6.8.0","eslint-config-simon":"^1.2.0","eslint-loader":"^3.0.3","mini-css-extract-plugin":"^0.9.0","node-sass":"^4.13.1","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.2","typescript":"^3.7.5","webpack":"^4.41.5","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.10","webpack-dev-server":"^3.10.3","webpack-fix-style-only-entries":"^0.4.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"core-js":"^3.6.4"},"gitHead":"661773c97c9b76613835e75ac3326daaddf5a3ff","_id":"@simonwep/pickr@1.5.1","_nodeVersion":"12.14.0","_npmVersion":"6.13.4","dist":{"integrity":"sha512-BMYt5RsW7YLNrUF7Jdz1UM0E04ROD0iv/Z/c8APFb74VH0Zs3HeLiLacPgPqLx23VesL8aS6Jin/JiTmnkWujw==","shasum":"884a82e4628f7460b7cbd73c6f9ae2f1980639c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.5.1.tgz","fileCount":44,"unpackedSize":644754,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeOuR6CRA9TVsSAnZWagAA/nIP/jlmLhDXvlB96fcwXuQL\neRe78kV+0znwgtMv+hVHvjhQOVqdodr2dXQPlPgHNHI5zXt4Y4rWdAu8hJYc\nopBKGoIhTTMHp0LNifXXW8L+CkT1sOLq2guVBkMumOjc1gjM1QsD611ZyqqC\nMV4wIbViU0nhy6eqZagNih/bsOEe+RZ4Y+j6S39/eHvd3e4Ymli5sAtO9TkB\n6Vxzag9P8+Vi7ihd2d3B9I99+Lae5lNikyE+RMSsIFX9FDGqgSyUdHWWq4/2\nPZlXZZcUKJAgPXX+84oLwR9nhnZhAM0H145T5+PIiYmvwBZ1oLkDI+oLudPo\nnrd9JWo+jhQhfvUZcUauS2uIfSpZmutj+Vjdvco56xCAw4sH5HG9D5oIYK6M\n4dsMeGDt7AjJ3kgLcwUeQcvFKLNi4WsRrzSC3m1sTpHoruIm1M2uIOALpSnc\nD8ja8LAniD2OJzwLnFqOlbUMpJukuEdJ0kSRFp5lARxF6xaUAjdAEPWpiQil\nme/Ki/cgxGFU4d7LAUd26z7Ik2K399QWoJlN0qfisulQIVl4EjtCIDMk5JOe\nxv2FdZgxTan0SZpnzGNX/3i93HRTM4wAzk6szAFt0PxWer7IIhkAQy9FLx6U\nCqpUGZR938JYWCTUxq4U6jgQzvsUUZBVFXiq+4W4eqGexF391VRi6worpFyG\nwvmL\r\n=aQA/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFiN7GLB1f9OfQ2wFFZ8SYVb55i2Aj6P+Z89SXWTMPDQIgdGBMXkTi/wV6xbhIj/jnVznsKfo+0Q1P5OzSduyFAzk="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.5.1_1580917881503_0.7707264509877092"},"_hasShrinkwrap":false},"1.6.0":{"name":"@simonwep/pickr","version":"1.6.0","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.9.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-object-rest-spread":"^7.9.5","@babel/preset-env":"^7.9.5","autoprefixer":"^9.7.6","babel-eslint":"^10.1.0","babel-loader":"^8.1.0","css-loader":"^3.5.1","eslint":"^6.8.0","eslint-config-simon":"^1.3.0","eslint-loader":"^4.0.0","mini-css-extract-plugin":"^0.9.0","node-sass":"^4.13.1","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.2","typescript":"^3.8.3","webpack":"^4.42.1","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.11","webpack-dev-server":"^3.10.3","webpack-fix-style-only-entries":"^0.4.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"core-js":"^3.6.5"},"gitHead":"4d1b5f9be92295115b9a7670ab381ff67efc8f98","_id":"@simonwep/pickr@1.6.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-hvAozlQuncF3s2ymVJ1JGLb/b94O8s7WNqKIA0sI7PIh8u8NozjAiQtdEdtI/v4rJ+HrXaznESOX0/xMayVDLA==","shasum":"bc5e14bf29acb8e97a3b57652f98dc8e2ed60d8e","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.6.0.tgz","fileCount":46,"unpackedSize":541393,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJespf6CRA9TVsSAnZWagAA8doP/3sTBA5Y5pZ8K3y+8NhW\nBm4S8B2AD4dcmHBqMG/nZZbmD42OVpi+RXBEpCi2q1d56EVgkXn6XRHzhyL2\nkugpyq7a54DrusSNLlwTCHwg8XIfeGPltuFOjWrC2mrCxzr7EqFTeTeN6JHR\nk1tRXPCfGLbHk3qKfxtKQ5vHskOSSpssmGV370+VRGMoXNmOZudJEGYZrRlH\nV3aFJi8SDcS9hUOpZ9hyvoM+kdQWPMh7WKvBf2LrB1+Y/0fKcSQlUfHIb590\nGRt8O7sV3nS8n2nyLlW4UBpQDdeElSTZi9vskW6mhyYz37VSQlx0JE0QbYwJ\nWQUUAt6RRLbzILEMRVpnjCiPCv1nrcouvIm0B9uUmC6NTnPVoKUXBpGyCkOZ\nc7p/3CDDZ3lSUpH5D/MpnOFYJUlGujgA8ZOZqCTwBfkqdMdGbA+IVPYhejQo\nFcM2VfkoL79RHFkjmROgsJjRJ59zEgug5bjzZ9TwTc+XVXRZajySlUS5QNP+\nJjdrJ8jkjRgEUoonKK5zZqMLB7QZcz1tFk8Is+AF8eS3L3zJMeaSzCgZDsdb\ngn+C8OAmiwGG3d2OCfFSzxMBOl6PIRxD+EtXS6yHad2aNwl7Fkn901CPd5nb\nO+MjWm0wGQ4SfgtW2ByTMkqYb6f92gHlgwBmh3hEfMchzC3Wm/n7skAXgLDS\nyQwY\r\n=P7TC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBXCE6CqXH/txfCiB2LOKeAFq8lgItLwXSKLfbB0D4seAiBo+I7b2YHOscAfCvPCtmROUALHnPX45kMUM2YO+EkPgg=="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.6.0_1588762617875_0.5005291222948112"},"_hasShrinkwrap":false},"1.7.1":{"name":"@simonwep/pickr","version":"1.7.1","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src","lint:fix":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.9.6","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-parameters":"^7.9.5","@babel/preset-env":"^7.9.6","autoprefixer":"^9.8.0","babel-eslint":"^10.1.0","babel-loader":"^8.1.0","css-loader":"^3.5.3","eslint":"^7.0.0","eslint-config-simon":"^2.1.0","eslint-loader":"^4.0.2","mini-css-extract-plugin":"^0.9.0","node-sass":"^4.14.1","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^8.0.2","typescript":"^3.9.3","webpack":"^4.43.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.11","webpack-dev-server":"^3.11.0","webpack-fix-style-only-entries":"^0.5.0"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"nanopop":"^1.3.0","core-js":"^3.6.5"},"gitHead":"1cc56c8e65cb6d5cc2cedf4c983dbbded70294f7","_id":"@simonwep/pickr@1.7.1","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-ftbskrPKAkRLYVj8IhV4Bn86g16It9Uq/p4G0FdjRz36pKKjW0JdxdDWDIVuAev0Urg8604Ho98js6JmjXdiZQ==","shasum":"7bdcccca2041967434f9d7e18720e85598601008","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.7.1.tgz","fileCount":46,"unpackedSize":662088,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6fMOCRA9TVsSAnZWagAAJY0P/35jhJGp6oCz6AdbTAs4\nCIuJJ2mNFYdCxXXjuXHf7KQum9+BvHOYQQr3KscZTyxJP9tEbQtb7Ac8c7W0\nKIgPF9JhneyZtSppZKx2ALJhLRHdu5sg/dFOqEI7JL0IKjad07WkMrRNKHUr\nyWvCGYsbndDa9V4XelzpabTSoYhtQdCf13P4WxEoVJRB5QiWo6LYZiRDMf8A\n1HDQ3bY3gm6/0g04ZPVb0y/iO1kJz5MO4b2GA4d473sURwpVjuZsAEbF0Mno\navx6P1n/eiVVEZJbaavqk2q8pmoeexQI241zVUUlKqXfcC2t1mNp7DVTvlOc\nxMJQ6PLAnISKwEHrb8WBXLH5sB02CIaZj7SiG7Kb9lWYBg1sk04YVRbsRzuP\nJ4nPUh8NoM5WVsKrunJnvVTY92ay8SVmR5sRuktBh0dwbKbnUGAK6LyTnL/l\ndakBR+vqNp+SRa8GiluJ8bRuVGJwdApHCZgKPuVHlh4PGbpdhN89EXFg5ybN\nWnJr4bIEE3wD5GYIG4qawgjIqvOwXTdbS6CAn/b881/CcdBTTzYYeModYcIM\nuv8tOcwM2Ps4cyYNs3EwEAzvqrVogrLDjTAjqpPOIj5EaGw06r9+IuMyXaUt\nAkuknzZisXtFn0dTYdF8qYQ2xkLf42PyTsz8LwagTwedF38CvjW9N7KEYrpv\noMdc\r\n=ASkN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDVGsLB2Jk4ixl0fZUNxTo25Awf5AwaitWm4wN/CKlWUgIgD+8mVJNarWYM+GFUF6qzkFhg65bYr2BFp1ZQAgeyxVE="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.7.1_1592390414059_0.9463830007105498"},"_hasShrinkwrap":false},"1.7.2":{"name":"@simonwep/pickr","version":"1.7.2","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src","lint:fix":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.10.4","@babel/plugin-proposal-class-properties":"^7.10.4","@babel/plugin-proposal-object-rest-spread":"^7.10.4","@babel/plugin-transform-parameters":"^7.10.4","@babel/preset-env":"^7.10.4","autoprefixer":"^9.8.4","babel-eslint":"^10.1.0","babel-loader":"^8.1.0","css-loader":"^3.6.0","eslint":"^7.4.0","eslint-config-simon":"^2.1.0","eslint-loader":"^4.0.2","mini-css-extract-plugin":"^0.9.0","node-sass":"^4.14.1","optimize-css-assets-webpack-plugin":"^5.0.3","postcss-loader":"^3.0.0","sass-loader":"^9.0.1","typescript":"^3.9.6","webpack":"^4.43.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.12","webpack-dev-server":"^3.11.0","webpack-fix-style-only-entries":"^0.5.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"nanopop":"^1.3.0","core-js":"^3.6.5"},"gitHead":"a5fad6e9586784216735de0af8bd447a4f8976e8","_id":"@simonwep/pickr@1.7.2","_nodeVersion":"12.16.3","_npmVersion":"6.14.6","dist":{"integrity":"sha512-XHmQKS1k1gUvB4kOj9W3DTpT5SQWDovSm3KuOtmlkHmezkF/WzyraPIk+vwroxESdugfqanJZFvgdj9lzHcEKw==","shasum":"99c73a3852633f749c8c187c82627a448b76b1ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.7.2.tgz","fileCount":45,"unpackedSize":660501,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDKIwCRA9TVsSAnZWagAAfrIQAJWgebOr5vSeZiuwKpcs\nYhtulTCV+9QU/LkED90RLd/nN3UwHsuUuy7Wh9YSi6gTedsOVKJmWczQFkHU\n6+AW7ag8YWzVu2XOvDyALJDDCAtuJ1wVm0HfTvBGDk4Vx0mMecFtxD3nlt1Q\nev+lvD6bOxzPSoJ8Kckm79I5Ptj90kzFVr1CPCiGIEVVM8JjRcekOZlhXwxI\nbZG6Qj40aP2vt/fsWxjaqBj/A0VBkrxykMse9zW6ML9sOcwFxAC96XXhPjLQ\nqKhtBZfQ6J71Z5vfq1Hre2gx/yGTaqk8xVrShX5JC3uNqjHeRZtccwjEZhrN\nBYrNq4M+yr6XF9+CJEiPNip6ZNr1XMHfQuGO0UeKFEkkY8bK86o8CxnBbGPM\nHsJAwk6IhQd0yiKJ564navT9qmak8zyFOlvTys2MLf+T4k+NbaszpaxV1SAX\nH+qma9fuNSYJ72vCijOXih7w/aHMAgxM0AN7B529FlbDSrCwpzizi2EhhWnL\n7iHBTOlmABDMkpV7Fgg8Uz5xoMiW+mkLMnCNnRYKtx6AVnn9MCszSM1kAdsF\nmLeO2ySpmNUPpXN8bkqDquDnVHkxMULU4/kDVkjNn5CcmgmfKfP+Uxv4cWlZ\nBqOqg8hFLfQ/ykHMdbIW3D4OjUVklPCv/mL3yhfFNmJMwz03fUM70Og6VN03\nFZLc\r\n=81Lr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDKD4Z1SP3QTSTd2EhAuRfZ8+dQuFqtFPz8kxF66a3ZPAiEAxn3LsphQetr9qvG4i0GK1X4MikhFIjUGTI+DU5NvmsQ="}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.7.2_1594663472323_0.1977107115737642"},"_hasShrinkwrap":false},"1.7.4":{"name":"@simonwep/pickr","version":"1.7.4","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src","lint:fix":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.11.6","@babel/plugin-proposal-class-properties":"^7.10.4","@babel/plugin-proposal-object-rest-spread":"^7.11.0","@babel/plugin-transform-parameters":"^7.10.5","@babel/preset-env":"^7.11.5","autoprefixer":"^9.8.6","babel-eslint":"^10.1.0","babel-loader":"^8.1.0","css-loader":"^4.2.2","eslint":"^7.8.1","eslint-config-simon":"^2.1.0","eslint-loader":"^4.0.2","mini-css-extract-plugin":"^0.11.0","node-sass":"^4.14.1","optimize-css-assets-webpack-plugin":"^5.0.4","postcss-loader":"^3.0.0","sass-loader":"^10.0.2","typescript":"^4.0.2","webpack":"^4.44.1","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.12","webpack-dev-server":"^3.11.0","webpack-fix-style-only-entries":"^0.5.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"nanopop":"^2.1.0","core-js":"^3.6.5"},"gitHead":"dee6878759c8c91a874d92e2d26882f8a694a9b3","_id":"@simonwep/pickr@1.7.4","_nodeVersion":"12.18.3","_npmVersion":"6.14.6","dist":{"integrity":"sha512-fq7jgKJT21uWGC1mARBHvvd1JYlEf93o7SuVOB4Lr0x/2UPuNC9Oe9n/GzVeg4oVtqMDfh1wIEJpsdOJEZb+3g==","shasum":"b14fcd945890388b870cd6db4d6c78d531f25141","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.7.4.tgz","fileCount":45,"unpackedSize":663083,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVTtECRA9TVsSAnZWagAAgkYQAIPlQB1va2aO6gW4lcpM\nHgPKwhfsUPwVH5hGVFHvbiFMe2981+qi1rEDIsArXJ2mRK5ShWXicLHBX/IW\n5bThs+63dIS9gXP+NfPaZnppscPEKxTlrmy+NBgrqu6fD05MEnviam+wBD3d\nx1sSXDYwIXDPAz396jIdgviPEmLXP11jw9VhBZtsv5/YATmKP0Wdwqi67Gtk\nIpkAVs2o4PXYH/cBoCVVg2yuHpcW6FWekmp1uBoBfc7FC6DtJtUjjD2UEPFs\niHfMkncCvp9X9cgwfXJkuBRgPqTi0kqTXvJ8k5w+Sv1mtR+oPh8HPfAJ/auk\nT9NpmuW7cQPAAX2uqsVC9xZBeAAKAdcArfrxlZZVOtR0VkCN1kbEkSU3wFk0\nn7p8dYdqv1QyzgS96ChSewhHxZ1HoeIAYrNknzk+Ghe3oygB+6FeQI/pZFmI\nI5Zuisr3Oy/jc/PWwu99NItccDnN27J9nwK3pAKp+TlV/uCnSnefCvvqZ4yp\nM5LYzbdK8J/TfmxBLyp0XPxfmTtb4+gJpiDyafddPAgz3SM+8GlU5NTgUcIs\nc8kOi/CI+hNiQ2DaQWAf0letxYvxkMWgDKQVDUC3KVmEYB7h0xpW00c4pKhN\nsOBYq4Y2ILrQ7U4VbzDaOuTsCJyupWsougNfIWrVyRNTD9RT+LUf50yVO7pW\nqgXy\r\n=G/CO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCw0XlIQhM2KniiuOpR+1Lki5i7mrMqnEZSksJd0cbnOgIhAMoByFKmeoiRSFIB4OpTopxVlBuGKLwvhtROa5cZftna"}]},"maintainers":[{"name":"simonwep","email":"toports@gmx.de"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.7.4_1599421251402_0.2392359501089314"},"_hasShrinkwrap":false},"1.8.0":{"name":"@simonwep/pickr","version":"1.8.0","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src","lint:fix":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts"},"devDependencies":{"@babel/core":"^7.12.9","@babel/plugin-proposal-class-properties":"^7.12.1","@babel/plugin-proposal-object-rest-spread":"^7.12.1","@babel/plugin-transform-parameters":"^7.12.1","@babel/preset-env":"^7.12.7","autoprefixer":"^9.8.6","babel-eslint":"^10.1.0","babel-loader":"^8.2.2","css-loader":"^5.0.1","eslint":"^7.15.0","eslint-config-simon":"^2.1.0","eslint-loader":"^4.0.2","mini-css-extract-plugin":"^1.3.2","node-sass":"^5.0.0","optimize-css-assets-webpack-plugin":"^5.0.4","postcss-loader":"^4.1.0","sass-loader":"^10.1.0","typescript":"^4.1.2","webpack":"^4.44.2","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.12","webpack-dev-server":"^3.11.0","webpack-fix-style-only-entries":"^0.5.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"nanopop":"^2.1.0","core-js":"^3.8.0"},"gitHead":"c1ebb361a2f31d19e3fc88355bf4f961b4fb591d","_id":"@simonwep/pickr@1.8.0","_nodeVersion":"12.18.3","_npmVersion":"6.14.8","dist":{"integrity":"sha512-VaSD7TwktOsro5nQ/FjRx5JAJ09k5CNfGRHacgVRxeVPolUQwelz1SjL8HAOKZwTSmcnIObptpHABQS4zgN7sw==","shasum":"adbff9a4f7f0e59dec9946508c5e481b7abae0f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.8.0.tgz","fileCount":44,"unpackedSize":662813,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfy2tsCRA9TVsSAnZWagAAyVYP/jz4s8e9jHSNiMUpyD6o\nHpkzPG42+1r17JfG4Wh0YOF58YMCMUOuA0GAmIefN5E6IKojszB2YqU0gVZM\nvjx3QMGi362NgdTckFkmRobh9HH1mPALgBc0YUQSYn28oSoL2MlVrqhzuvnJ\nmrl087ITm4znaQ7GnTMTY1KpKgsjADPV2jss/4XAKDTWzQgf2z8616Dblsbp\nTKpAmMTOxJw5zeuzd5h0exnXIbKIfppckal7gldoYdck5FQ159drELonj3Uh\n9zaWJiJj7nLHZtpvomiAyC2jhX1W766887rIZER9+MwpaOiIR81wHvcG7Adl\neLMYNpk1gJ7xK0u5iPfvB8gDaHBrntkdlP+jZRLkqvJzCcxWMK7xi2yp3dXY\nPwJeyo+9gKmheZuo2Xl2qPzU6wlbg9XUk+ccG4m+mabMVWCXlipLuVWGMZbq\nz5MySr4GjVnnNxJGtHtgzqeb0viaaLczrhw9kp1gB+K0Ryh/OwUhoPHsS3T2\niFZctM3eSdQSfIh6I3me0uGNrgAFTZ9WgHzZQCNaD1gY4Ys0yiXn3n6HkhtR\nsnx1J2RR9esFhUdcOeJlcc8jw2PKQb5TGmBOOUJWEg+fwzbnJ+3ZnQcZxqoP\nb8g3JmXEd0YainUyni597nwY/GQ+H+aCrmRsSnaQZcGBDoHZkhA0zWl1t8gT\nh5jP\r\n=cM3a\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICcp37/MYHg4K9wgbGkt3Z/Z8LIwKyB0YGeIbApwiNiyAiASBIKTBupnwARE4XeDXQ4kgu/iN/SDysOw5YMYMAvB0g=="}]},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.8.0_1607166827743_0.11266299589075279"},"_hasShrinkwrap":false},"1.8.1":{"name":"@simonwep/pickr","version":"1.8.1","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack-dev-server --mode development","lint":"eslint ./src","lint:fix":"eslint ./src --fix","test:ts":"tsc --target ES6 --noImplicitAny --noEmit spec/ts/index.ts","dryrun":"npm run lint:fix && npm run build"},"devDependencies":{"@babel/core":"^7.14.2","@babel/plugin-proposal-class-properties":"^7.13.0","@babel/plugin-proposal-object-rest-spread":"^7.14.2","@babel/plugin-transform-parameters":"^7.14.2","@babel/preset-env":"^7.14.2","autoprefixer":"^10.2.5","babel-eslint":"^10.1.0","babel-loader":"^8.2.2","css-loader":"^5.2.4","eslint":"^7.26.0","eslint-config-simon":"^2.1.0","eslint-loader":"^4.0.2","mini-css-extract-plugin":"^1.6.0","node-sass":"^6.0.0","optimize-css-assets-webpack-plugin":"^5.0.1","postcss-loader":"^4.2.0","sass-loader":"^10.2.0","typescript":"^4.2.4","webpack":"^4.46.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^3.3.12","webpack-dev-server":"^3.11.2","webpack-fix-style-only-entries":"^0.6.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"core-js":"^3.12.1","nanopop":"^2.1.0"},"gitHead":"08d7b2c89b5a21854cfddae9a6c6a7e5dbff8e41","_id":"@simonwep/pickr@1.8.1","_nodeVersion":"14.16.0","_npmVersion":"7.11.2","dist":{"integrity":"sha512-3Q5+INWW0Py+/E9hgy0cyD0/0w/yGZbkxam6RzFVFDOEHgAqMVJR+x9znx58/ky/ZIvE/78FbH189yIC9h111A==","shasum":"e136cbd9c345ddbb7d71eb14af544c798165d495","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.8.1.tgz","fileCount":44,"unpackedSize":659732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnO3BCRA9TVsSAnZWagAA+S4P/RHsbZiCfWYUI/RKPS8h\nhRt8dczqmCG3gVUsVDFwJG9zPhiZXeXTunEw/bZ+ZPzYoLmKIpheT8pwYyd3\nSLbjqTfbX8BXLqwqviTFkpMO5+MY2IJZaP45z+EA9g5FZykSwRnaq0rR9fA7\n87BztenImkvKdoxxh/QsxfX+CXbtDrIQY3JVWYfIH8vLlAO6128wby22ZuqK\n5ueOuti6sTaQvXha6kst8tQq5/gfo3tcqYSel3Jx/z1bzPuFYNFvBSpca+l5\nCaJP1T4wWTUY+s5lCvW/V1LMmRISCPz7JgH2/g5J4JZ3QP+W3tG/14G/pzjZ\nxGSeF01Gq0eZ05N1G9RWEzs10G9TOqVf/d5baKbdMBigynC8llWA7qMOPE2F\niR6oZ0F3gYtIstkFhlWcZB7PA27tslrdMrhoTcJ3u/6qxAmzc6c34s+/ivOi\nL6NKXkO7OthW8gz+6/3CmNvcx7bHHHH4Gbx+noO0++SJlf+StOtkpPy4P2Wk\ni2IOnZqZqI1xbfQZe9LuHcrzueH0Bm9JMge99S3+F0hVi5HpncB3T5uiAY8A\nXW9szTjttyF3Bchh7cyhqOOgkqpXBCk4P+JhAc5jHFy0JoEiSjuSWNHuI3Oe\n7g1KGMX4mLnWk3thF8vZHI+N9Y4HF57gu075Ij9UPVyrkpOyIuchiosoz6dH\nwGZt\r\n=TBze\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIG8k0tohwRQ40dFWMRxqCp/cAlEVBQf8qRuktxWZ/wUrAiAz2El8RkMGui8Q45LcQ9LiFVSX7jiplDl29WCLWtku1Q=="}]},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.8.1_1620897217070_0.5409303633049405"},"_hasShrinkwrap":false},"1.8.2":{"name":"@simonwep/pickr","version":"1.8.2","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack serve --mode development","lint":"eslint ./src","lint:fix":"eslint ./src --fix","dryrun":"npm run lint:fix && npm run build"},"devDependencies":{"@babel/core":"^7.14.6","@babel/plugin-proposal-class-properties":"^7.14.5","@babel/plugin-proposal-object-rest-spread":"^7.14.7","@babel/plugin-transform-parameters":"^7.14.5","@babel/preset-env":"^7.14.7","autoprefixer":"^10.2.6","babel-eslint":"^10.1.0","babel-loader":"^8.2.2","css-loader":"^5.2.6","eslint":"^7.29.0","eslint-config-simon":"^2.1.0","eslint-loader":"^4.0.2","mini-css-extract-plugin":"^1.6.1","node-sass":"^6.0.1","postcss-loader":"^6.1.0","sass-loader":"^12.1.0","terser-webpack-plugin":"^5.1.4","webpack":"^5.40.0","webpack-cleanup-plugin":"^0.5.1","webpack-cli":"^4.7.2","webpack-dev-server":"^4.0.0-beta.3","webpack-fix-style-only-entries":"^0.6.1"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"dependencies":{"core-js":"^3.15.1","nanopop":"^2.1.0"},"gitHead":"ef1c83050e76b03e083d9a9fcd76ed861982b8ba","_id":"@simonwep/pickr@1.8.2","_nodeVersion":"14.17.3","_npmVersion":"7.19.1","dist":{"integrity":"sha512-/l5w8BIkrpP6n1xsetx9MWPWlU6OblN5YgZZphxan0Tq4BByTCETL6lyIeY8lagalS2Nbt4F2W034KHLIiunKA==","shasum":"96dc86675940d7cad63d69c22083dd1cbb9797cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.8.2.tgz","fileCount":41,"unpackedSize":657492,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhQM4NCRA9TVsSAnZWagAAcz0QAJn5ZhRaeqICBbeHRh35\nFpirmJXSc1Ge8fMesJYKm4CfT+aeczfe/tMX7ZX+5F0tkG5Lo5o6Hej3U449\nQnYA9d1gMK8FRqYARulRf2LeaMaBgZ3E6vRIKg9tl9GX267Cjp8gp6LDnbB9\nY8OzHwMIgR46fZOiLk5xbOseJiAuUWSamou7P5x2yl5CJmlJDR/C9nIb/K/T\n7ACQdBWFnGsXKlqKF+DzLSGgPb4FjTf4tKlLYY/1QGNvoWT6tX1ZNjRGYSmV\n6FkfrcFSWlV1rrGV4qiqEJHT19msOVz4PWU9PwxGD3Ph3LmH4v+L5e6a6WmH\ncWjdOympKbUu+55akeeDSBBeFwh5/VgDYxeStft1LUTFS8lPiTpS92ktAi/Z\n7uMHxOz3UMoikH0AhyjnvPPANkqWTSpBOzOHMQ6Q7KDgJI6t8XdjqD8T5HBe\nXA62NBuGJVg5//tAryk/+pFCZadH/SkNkfnk7tff7UxMN2L7j9mpRL8VF0Zs\na14GcGdrExg3YSfFv5d9cJUDRgMa3RxvnvXPqUNVVv63lqlF8mMLyumdJ9qz\nBYwKvcmRT6WU+jKD59Q+aS+B30IGXuzyqck7pSDZ7Y11EuVXJc5RPN6ZCBsc\n0jvIKwBHfHaP8pfc+kN4FAOlyF6lBrPVZqJm1TpE1mXrHHMyE3S0AwEcfc0M\nJ8dd\r\n=4VSs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDg0s1Tmp0RXDr+665EQtiCdU01W31kzKGDD2O8bv4n3QIhAI3GxutN17pjSkPI8w2ZWJ5GE4RBkXwmNgYKFOXbJO4U"}]},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.8.2_1631637005742_0.47670325283715087"},"_hasShrinkwrap":false},"1.9.0":{"name":"@simonwep/pickr","version":"1.9.0","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","pickr","color","color-picker"],"main":"./dist/pickr.min.js","typings":"./types/pickr.d.ts","scripts":{"build":"node ./scripts/build.js","dev":"webpack serve --mode development","lint":"eslint ./src/**/*.js","lint:fix":"npm run lint -- --fix","test:ci":"npm run lint:fix && npm run build"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"devDependencies":{"@babel/core":"7.23.0","@babel/preset-env":"7.22.20","autoprefixer":"10.4.16","babel-loader":"9.1.3","css-loader":"6.8.1","eslint":"8.50.0","eslint-webpack-plugin":"4.0.1","mini-css-extract-plugin":"2.7.6","node-sass":"9.0.0","postcss-loader":"7.3.3","sass":"1.68.0","sass-loader":"13.3.2","terser-webpack-plugin":"5.3.9","webpack":"5.88.2","webpack-cli":"5.1.4","webpack-dev-server":"4.15.1","webpack-remove-empty-scripts":"1.0.4"},"dependencies":{"core-js":"3.32.2","nanopop":"2.3.0"},"gitHead":"afd6b18258342a5dfb66843ab3891b6900eeb7b7","_id":"@simonwep/pickr@1.9.0","_nodeVersion":"18.15.0","_npmVersion":"9.7.1","dist":{"integrity":"sha512-oEYvv15PyfZzjoAzvXYt3UyNGwzsrpFxLaZKzkOSd0WYBVwLd19iJerePDONxC1iF6+DpcswPdLIM2KzCJuYFg==","shasum":"1640651ff04e76b48d805dc186c6513087a704a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.9.0.tgz","fileCount":11,"unpackedSize":619029,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLvO/KbS+7BLpzVGnviZOFL4M6QzryXota/inYjFM91gIgMOxPNrMPSuBJyHC9zjHu3In1rzB4uL/Hrmw3JauQUSQ="}]},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.9.0_1695913373408_0.6228759142007965"},"_hasShrinkwrap":false},"1.9.1":{"name":"@simonwep/pickr","version":"1.9.1","license":"MIT","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"description":"Flat, Simple, Hackable Color-Picker.","keywords":["ux","pickr","color","color-picker"],"main":"./dist/pickr.min.js","types":"./types/pickr.d.ts","module":"./dist/pickr.min.js","scripts":{"build":"node ./scripts/build.js","dev":"webpack serve --mode development","lint":"eslint ./src/**/*.js","lint:fix":"npm run lint -- --fix","test:ci":"npm run lint:fix && npm run build"},"homepage":"https://github.com/Simonwep/pickr#readme","repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"devDependencies":{"@babel/core":"7.24.5","@babel/preset-env":"7.24.5","autoprefixer":"10.4.19","babel-loader":"9.1.3","css-loader":"7.1.1","eslint":"8.57.0","eslint-webpack-plugin":"4.1.0","mini-css-extract-plugin":"2.9.0","postcss-loader":"8.1.1","sass":"1.77.0","sass-loader":"14.2.1","terser-webpack-plugin":"5.3.10","webpack":"5.91.0","webpack-cli":"5.1.4","webpack-dev-server":"5.0.4","webpack-remove-empty-scripts":"1.0.4"},"dependencies":{"core-js":"3.37.0","nanopop":"2.4.2"},"_id":"@simonwep/pickr@1.9.1","gitHead":"8d490714fe5ebd94424d0637fccec970a160c19b","_nodeVersion":"20.8.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-fR3qmfAcPf/HSFS7GEnTmZLM3+xERv1+jyMBbzT63ilRRM8veYjI7ELvkHHKk0/du3lHp7uh/FqatjM3646X1g==","shasum":"10d86dab514b8888b2d6b90299a477f254067c43","tarball":"https://mirrors.huaweicloud.com/repository/npm/@simonwep/pickr/-/pickr-1.9.1.tgz","fileCount":17,"unpackedSize":621189,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCR+G2vuBlF3ZoiRwSnLUyaSXv2EmfSI5skDb9x+4DslQIgVXsVHtKnjiS61k5ns8gWeXU0BICHQBNyXCuH6yGsxeY="}]},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/pickr_1.9.1_1715351502834_0.4061410258276563"},"_hasShrinkwrap":false}},"time":{"created":"2019-02-22T08:28:55.514Z","0.3.6":"2019-02-22T08:28:55.922Z","modified":"2024-05-10T14:31:43.250Z","0.4.0":"2019-02-24T14:22:19.939Z","0.4.1":"2019-02-28T15:32:59.323Z","0.4.2":"2019-03-03T14:12:55.093Z","0.4.3":"2019-03-08T17:33:08.818Z","0.4.4":"2019-03-16T08:10:37.333Z","0.4.5":"2019-04-02T17:07:47.042Z","0.4.6":"2019-04-07T13:25:26.883Z","0.4.7":"2019-04-09T16:33:09.031Z","0.4.8":"2019-04-11T12:47:11.536Z","0.4.9":"2019-04-12T14:16:03.823Z","0.4.10":"2019-04-19T08:31:19.359Z","0.4.11":"2019-04-22T10:33:29.902Z","0.5.0":"2019-05-08T15:44:55.932Z","0.5.1":"2019-05-17T14:58:20.544Z","0.6.0":"2019-05-28T16:23:19.739Z","0.6.1":"2019-05-29T16:53:44.681Z","0.6.2":"2019-05-30T23:08:28.476Z","0.6.3":"2019-06-03T14:27:23.563Z","0.6.4":"2019-06-04T19:01:22.081Z","0.6.5":"2019-06-10T11:30:08.873Z","0.6.6":"2019-06-11T20:32:14.948Z","1.0.0-beta":"2019-06-13T18:06:54.807Z","1.0.0":"2019-06-17T16:17:50.495Z","1.0.1":"2019-06-20T12:01:42.896Z","1.1.0":"2019-06-21T16:11:46.739Z","1.1.1":"2019-06-24T14:49:12.159Z","1.1.2":"2019-06-25T13:32:19.933Z","1.2.0":"2019-06-28T09:43:13.675Z","1.2.1":"2019-07-07T15:01:09.868Z","1.2.2":"2019-07-17T13:57:16.799Z","1.2.3":"2019-07-21T10:38:02.673Z","1.2.4":"2019-07-26T14:10:31.837Z","1.2.5":"2019-07-29T16:00:22.791Z","1.2.6":"2019-07-30T19:00:10.551Z","1.2.7":"2019-08-08T13:29:26.521Z","1.3.0":"2019-08-19T19:25:33.298Z","1.4.0":"2019-08-23T13:46:18.024Z","1.4.1":"2019-09-02T15:25:18.169Z","1.4.2":"2019-09-06T13:41:00.832Z","1.4.3":"2019-10-08T18:46:05.553Z","1.4.4":"2019-10-15T08:40:26.094Z","1.4.5":"2019-10-16T07:05:59.107Z","1.4.6":"2019-10-25T17:53:57.968Z","1.4.7":"2019-11-08T15:48:26.943Z","1.4.8":"2019-12-17T16:51:33.903Z","1.5.0":"2020-01-08T17:41:26.940Z","1.5.1":"2020-02-05T15:51:21.671Z","1.6.0":"2020-05-06T10:56:58.164Z","1.7.1":"2020-06-17T10:40:14.308Z","1.7.2":"2020-07-13T18:04:32.496Z","1.7.4":"2020-09-06T19:40:51.619Z","1.8.0":"2020-12-05T11:13:47.896Z","1.8.1":"2021-05-13T09:13:37.264Z","1.8.2":"2021-09-14T16:30:05.943Z","1.9.0":"2023-09-28T15:02:53.724Z","1.9.1":"2024-05-10T14:31:43.075Z"},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"description":"Flat, Simple, Hackable Color-Picker.","homepage":"https://github.com/Simonwep/pickr#readme","keywords":["ux","pickr","color","color-picker"],"repository":{"type":"git","url":"git+https://github.com/Simonwep/pickr.git"},"author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"bugs":{"url":"https://github.com/Simonwep/pickr/issues"},"license":"MIT","readme":"

\n \"Logo\"\n

\n\n

\n Flat, Simple, Hackable Color-Picker.\n

\n\n
\n Fully Featured Demo\n
\n\n
\n\n

\n \n \n \"No\n \n \"Current\n \n \n

\n\n

\n \n \n \n \n \n \n

\n\n
\n\n### Features\n* \uD83C\uDFA8 Themes\n* \uD83D\uDD04 Simple usage\n* \uD83D\uDEAB Zero dependencies\n* \uD83C\uDF08 Multiple color representations\n* \uD83D\uDD0D Color comparison\n* \uD83C\uDF9A️ Opacity control\n* \uD83D\uDDB1️ Detail adjustments via mouse-wheel\n* \uD83D\uDCF1 Responsive and auto-positioning\n* \uD83D\uDC46 Supports touch devices\n* \uD83C\uDFA8 Swatches for quick-selection\n* ♿ Fully accessible and i18n\n* \uD83C\uDF11 Shadow-dom support\n\n### Status of this project\n\n> [!IMPORTANT]\n> This project might continue to get important security- and bug-related updates but its _feature set_ is frozen, and it's highly unlikely that it'll get new features or enhancements.\n>\n> The reason behind this decision is the way this tool has been build (monolithic, the core is one single file, everything is in plain JS etc.) which makes it incredible hard to maintain, tests become impossible at this stage without a complete rewrite, and the fun is gone at such a level of cramped complexity.\n>\n> Personally I recommend building these UI-Related \"widgets\" directly into the app with the framework you're using which takes more time but in return gives you full power of how it should work and look like. Frameworks such as [(p)react](https://preactjs.com/), [vue](https://vuejs.org/) and [svelte](https://svelte.dev/) will make it a breeze to develop such things within a day.\n\n### Themes\n|Classic|Monolith|Nano|\n|-------|--------|----|\n|![Classic theme](https://user-images.githubusercontent.com/30767528/59562615-01d35300-902f-11e9-9f07-44c9d16dbb99.png)|![Monolith](https://user-images.githubusercontent.com/30767528/59562603-c9cc1000-902e-11e9-9c84-1a606fa5f206.png)|![Nano](https://user-images.githubusercontent.com/30767528/59562578-8ec9dc80-902e-11e9-9882-2dacad5e6fa5.png)|\n\n> Nano uses css-grid thus it won't work in older browsers.\n\n## Getting Started\n### Node\nNote: The readme is always up-to-date with the latest commit. See [Releases](https://github.com/Simonwep/pickr/releases) for installation instructions regarding to the latest version.\n\nInstall via npm:\n```shell\n$ npm install @simonwep/pickr\n```\n\nInstall via yarn:\n```shell\n$ yarn add @simonwep/pickr\n```\n\nInclude code and style:\n```js\n\n// One of the following themes\nimport '@simonwep/pickr/dist/themes/classic.min.css'; // 'classic' theme\nimport '@simonwep/pickr/dist/themes/monolith.min.css'; // 'monolith' theme\nimport '@simonwep/pickr/dist/themes/nano.min.css'; // 'nano' theme\n\n// Modern or es5 bundle (pay attention to the note below!)\nimport Pickr from '@simonwep/pickr';\nimport Pickr from '@simonwep/pickr/dist/pickr.es5.min';\n```\n---\n\n> Attention: The es5-bundle (e.g. legacy version) is quite big (around a triple of the modern bundle).\n> Please take into consideration to use the modern version and add polyfills later to your final bundle!\n> (Or better: give a hint to users that they should use the latest browsers).\n> Browsers such as IE are **not supported** (at least not officially).\n\n### Browser\n\njsdelivr:\n```html\n\n\n \n \n \n\n\n\n\n```\n\nBe sure to load the `pickr.min.js` (or the es5 version) **after** `pickr.min.css`. Moreover the `script` tag doesn't work with the `defer` attribute.\n\n## Usage\n```javascript\n// Simple example, see optional options for more configuration.\nconst pickr = Pickr.create({\n el: '.color-picker',\n theme: 'classic', // or 'monolith', or 'nano'\n\n swatches: [\n 'rgba(244, 67, 54, 1)',\n 'rgba(233, 30, 99, 0.95)',\n 'rgba(156, 39, 176, 0.9)',\n 'rgba(103, 58, 183, 0.85)',\n 'rgba(63, 81, 181, 0.8)',\n 'rgba(33, 150, 243, 0.75)',\n 'rgba(3, 169, 244, 0.7)',\n 'rgba(0, 188, 212, 0.7)',\n 'rgba(0, 150, 136, 0.75)',\n 'rgba(76, 175, 80, 0.8)',\n 'rgba(139, 195, 74, 0.85)',\n 'rgba(205, 220, 57, 0.9)',\n 'rgba(255, 235, 59, 0.95)',\n 'rgba(255, 193, 7, 1)'\n ],\n\n components: {\n\n // Main components\n preview: true,\n opacity: true,\n hue: true,\n\n // Input / output Options\n interaction: {\n hex: true,\n rgba: true,\n hsla: true,\n hsva: true,\n cmyk: true,\n input: true,\n clear: true,\n save: true\n }\n }\n});\n```\n\n> You can find more examples [here](EXAMPLES.md).\n\n## Events\nSince version `0.4.x` Pickr is event-driven. Use the `on(event, cb)` and `off(event, cb)` functions to bind / unbind eventlistener.\n\n| Event | Description | Arguments |\n| -------------- | ----------- | --------- |\n| `init` | Initialization done - pickr can be used | `PickrInstance` |\n| `hide` | Pickr got closed | `PickrInstance` |\n| `show` | Pickr got opened | `HSVaColorObject, PickrInstance` |\n| `save` | User clicked the save / clear button. Also fired on clear with `null` as color. | `HSVaColorObject or null, PickrInstance` |\n| `clear` | User cleared the color. | `PickrInstance` |\n| `change` | Color has changed (but not saved). Also fired on `swatchselect` | `HSVaColorObject, eventSource, PickrInstance` |\n| `changestop` | User stopped to change the color | `eventSource, PickrInstance` |\n| `cancel` | User clicked the cancel button (return to previous color). | `PickrInstance` |\n| `swatchselect` | User clicked one of the swatches | `HSVaColorObject, PickrInstance` |\n\n> Example:\n```js\npickr.on('init', instance => {\n console.log('Event: \"init\"', instance);\n}).on('hide', instance => {\n console.log('Event: \"hide\"', instance);\n}).on('show', (color, instance) => {\n console.log('Event: \"show\"', color, instance);\n}).on('save', (color, instance) => {\n console.log('Event: \"save\"', color, instance);\n}).on('clear', instance => {\n console.log('Event: \"clear\"', instance);\n}).on('change', (color, source, instance) => {\n console.log('Event: \"change\"', color, source, instance);\n}).on('changestop', (source, instance) => {\n console.log('Event: \"changestop\"', source, instance);\n}).on('cancel', instance => {\n console.log('Event: \"cancel\"', instance);\n}).on('swatchselect', (color, instance) => {\n console.log('Event: \"swatchselect\"', color, instance);\n});\n```\n\nWhere `source` can be\n* `slider` _- Any slider in the UI._\n* `input` _- The user input field._\n* `swatch` _- One of the swatches._\n\n## Options\n```javascript\nconst pickr = new Pickr({\n\n // Selector or element which will be replaced with the actual color-picker.\n // Can be a HTMLElement.\n el: '.color-picker',\n\n // Where the pickr-app should be added as child.\n container: 'body',\n\n // Which theme you want to use. Can be 'classic', 'monolith' or 'nano'\n theme: 'classic',\n\n // Nested scrolling is currently not supported and as this would be really sophisticated to add this\n // it's easier to set this to true which will hide pickr if the user scrolls the area behind it.\n closeOnScroll: false,\n\n // Custom class which gets added to the pcr-app. Can be used to apply custom styles.\n appClass: 'custom-class',\n\n // Don't replace 'el' Element with the pickr-button, instead use 'el' as a button.\n // If true, appendToBody will also be automatically true.\n useAsButton: false,\n\n // Size of gap between pickr (widget) and the corresponding reference (button) in px\n padding: 8,\n\n // If true pickr won't be floating, and instead will append after the in el resolved element.\n // It's possible to hide it via .hide() anyway.\n inline: false,\n\n // If true, pickr will be repositioned automatically on page scroll or window resize.\n // Can be set to false to make custom positioning easier.\n autoReposition: true,\n\n // Defines the direction in which the knobs of hue and opacity can be moved.\n // 'v' => opacity- and hue-slider can both only moved vertically.\n // 'hv' => opacity-slider can be moved horizontally and hue-slider vertically.\n // Can be used to apply custom layouts\n sliders: 'v',\n\n // Start state. If true 'disabled' will be added to the button's classlist.\n disabled: false,\n\n // If true, the user won't be able to adjust any opacity.\n // Opacity will be locked at 1 and the opacity slider will be removed.\n // The HSVaColor object also doesn't contain an alpha, so the toString() methods just\n // print HSV, HSL, RGB, HEX, etc.\n lockOpacity: false,\n\n // Precision of output string (only effective if components.interaction.input is true)\n outputPrecision: 0,\n\n // Defines change/save behavior:\n // - to keep current color in place until Save is pressed, set to `true`,\n // - to apply color to button and preview (save) in sync with each change\n // (from picker or palette), set to `false`.\n comparison: true,\n\n // Default color. If you're using a named color such as red, white ... set\n // a value for defaultRepresentation too as there is no button for named-colors.\n default: '#42445a',\n\n // Optional color swatches. When null, swatches are disabled.\n // Types are all those which can be produced by pickr e.g. hex(a), hsv(a), hsl(a), rgb(a), cmyk, and also CSS color names like 'magenta'.\n // Example: swatches: ['#F44336', '#E91E63', '#9C27B0', '#673AB7'],\n swatches: null,\n\n // Default color representation of the input/output textbox.\n // Valid options are `HEX`, `RGBA`, `HSVA`, `HSLA` and `CMYK`.\n defaultRepresentation: 'HEX',\n\n // Option to keep the color picker always visible.\n // You can still hide / show it via 'pickr.hide()' and 'pickr.show()'.\n // The save button keeps its functionality, so still fires the onSave event when clicked.\n showAlways: false,\n\n // Close pickr with a keypress.\n // Default is 'Escape'. Can be the event key or code.\n // (see: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent/key)\n closeWithKey: 'Escape',\n\n // Defines the position of the color-picker.\n // Any combinations of top, left, bottom or right with one of these optional modifiers: start, middle, end\n // Examples: top-start / right-end\n // If clipping occurs, the color picker will automatically choose its position.\n // Pickr uses https://github.com/Simonwep/nanopop as positioning-engine.\n position: 'bottom-middle',\n\n // Enables the ability to change numbers in an input field with the scroll-wheel.\n // To use it set the cursor on a position where a number is and scroll, use ctrl to make steps of five\n adjustableNumbers: true,\n\n // Show or hide specific components.\n // By default only the palette (and the save button) is visible.\n components: {\n\n // Defines if the palette itself should be visible.\n // Will be overwritten with true if preview, opacity or hue are true\n palette: true,\n\n preview: true, // Display comparison between previous state and new color\n opacity: true, // Display opacity slider\n hue: true, // Display hue slider\n\n // show or hide components on the bottom interaction bar.\n interaction: {\n\n // Buttons, if you disable one but use the format in default: or setColor() - set the representation-type too!\n hex: false, // Display 'input/output format as hex' button (hexadecimal representation of the rgba value)\n rgba: false, // Display 'input/output format as rgba' button (red green blue and alpha)\n hsla: false, // Display 'input/output format as hsla' button (hue saturation lightness and alpha)\n hsva: false, // Display 'input/output format as hsva' button (hue saturation value and alpha)\n cmyk: false, // Display 'input/output format as cmyk' button (cyan mangenta yellow key )\n\n input: false, // Display input/output textbox which shows the selected color value.\n // the format of the input is determined by defaultRepresentation,\n // and can be changed by the user with the buttons set by hex, rgba, hsla, etc (above).\n cancel: false, // Display Cancel Button, resets the color to the previous state\n clear: false, // Display Clear Button; same as cancel, but keeps the window open\n save: false, // Display Save Button,\n },\n },\n\n // Translations, these are the default values.\n i18n: {\n\n // Strings visible in the UI\n 'ui:dialog': 'color picker dialog',\n 'btn:toggle': 'toggle color picker dialog',\n 'btn:swatch': 'color swatch',\n 'btn:last-color': 'use previous color',\n 'btn:save': 'Save',\n 'btn:cancel': 'Cancel',\n 'btn:clear': 'Clear',\n\n // Strings used for aria-labels\n 'aria:btn:save': 'save and close',\n 'aria:btn:cancel': 'cancel and close',\n 'aria:btn:clear': 'clear and close',\n 'aria:input': 'color input field',\n 'aria:palette': 'color selection area',\n 'aria:hue': 'hue selection slider',\n 'aria:opacity': 'selection slider'\n }\n});\n```\n\n## Selection through a Shadow-DOM\nExample setup:\n```html\n
\n #shadow-root\n
\n
\n #shadow-root\n
\n
\n
\n
\n```\n\nTo select the `.pickr` element you can use the custom `>>` shadow-dom-selector in `el`:\n```js\nel: '.entry >> .innr .another >> .pickr'\n```\n\nEvery `ShadowRoot` of the query-result behind a `>>` gets used in the next query selection.\nAn alternative would be to provide the target-element itself as `el`.\n\n## The HSVaColor object\nAs default color representation is hsva (`hue`, `saturation`, `value` and `alpha`) used, but you can also convert it to other formats as listed below.\n\n* hsva.toHSVA() _- Converts the object to a hsva array._\n* hsva.toHSLA() _- Converts the object to a hsla array._\n* hsva.toRGBA() _- Converts the object to a rgba array._\n* hsva.toHEXA() _- Converts the object to a hexa-decimal array._\n* hsva.toCMYK() _- Converts the object to a cmyk array._\n* hsva.clone() _- Clones the color object._\n\nThe `toString()` is overridden, so you can get a color representation string.\n\n```javascript\nhsva.toRGBA(); // Returns [r, g, b, a]\nhsva.toRGBA().toString(); // Returns rgba(r, g, b, a) with highest precision\nhsva.toRGBA().toString(3); // Returns rgba(r, g, b, a), rounded to the third decimal\n```\n\n## Methods\n* pickr.setHSVA(h`:Number`,s`:Number`,v`:Number`,a`:Float`, silent`:Boolean`) _- Set an color, returns true if the color has been accepted._\n* pickr.setColor(str: `:String | null`, silent`:Boolean`)`:Boolean` _- Parses a string which represents a color (e.g. `#fff`, `rgb(10, 156, 23)`) or name e.g. 'magenta', returns true if the color has been accepted. `null` will clear the color._\n\nIf `silent` is true (Default is false), the button won't change the current color.\n\n* pickr.on(event`:String`, cb`:Function`)`:Pickr` _- Appends an event listener to the given corresponding event-name (see section Events)._\n* pickr.off(event`:String`, cb`:Function`)`:Pickr` _- Removes an event listener from the given corresponding event-name (see section Events)._\n* pickr.show()`:Pickr` _- Shows the color-picker._\n* pickr.hide()`:Pickr` _- Hides the color-picker._\n* pickr.disable()`:Pickr` _- Disables pickr and adds the `disabled` class to the button._\n* pickr.enable()`:Pickr` _- Enables pickr and removes the `disabled` class from the button._\n* pickr.isOpen()`:Pickr` _- Returns true if the color picker is currently open._\n* pickr.getRoot()`:Object` _- Returns the dom-tree of pickr as tree-structure._\n* pickr.getColor()`:HSVaColor` _- Returns the current HSVaColor object._\n* pickr.getSelectedColor()`:HSVaColor` _- Returns the currently applied color._\n* pickr.destroy() _- Destroys all functionality._\n* pickr.destroyAndRemove() _- Destroys all functionality and removes the pickr element including the button._\n* pickr.setColorRepresentation(type`:String`)`:Boolean` _- Change the current color-representation. Valid options are `HEX`, `RGBA`, `HSVA`, `HSLA` and `CMYK`, returns false if type was invalid._\n* pickr.getColorRepresentation()`:String` _- Returns the currently used color-representation (eg. `HEXA`, `RGBA`...)_\n* pickr.applyColor(silent`:Boolean`)`:Pickr` _- Same as pressing the save button. If silent is true the `onSave` event won't be called._\n* pickr.addSwatch(color`:String`)`:Boolean` _- Adds a color to the swatch palette. Returns `true` if the color has been successful added to the palette._\n* pickr.removeSwatch(index`:Number`)`:Boolean`_- Removes a color from the swatch palette by its index, returns true if successful._\n\n## Static methods\n**Pickr**\n* create(options`:Object`)`:Pickr` _- Creates a new instance._\n\n**Pickr.utils**\n* once(element`:HTMLElement`, event`:String`, fn`:Function`[, options `:Object`]) _- Attach an event handle which will be fired only once_\n* on(elements`:HTMLElement(s)`, events`:String(s)`, fn`:Function`[, options `:Object`]) _- Attach an event handler function._\n* off(elements`:HTMLElement(s)`, event`:String(s)`, fn`:Function`[, options `:Object`]) _- Remove an event handler._\n* createElementFromString(html`:String`)`:HTMLElement` _- Creates an new HTML Element out of this string._\n* eventPath(evt`:Event`)`:[HTMLElement]` _- A polyfill for the event-path event propery._\n* createFromTemplate(str`:String`) _- See [inline doumentation](https://github.com/Simonwep/pickr/blob/master/src/js/lib/utils.js#L88)._\n* resolveElement(val`:String|HTMLElement`) _- Resolves a `HTMLElement`, supports `>>>` as shadow dom selector._\n* adjustableInputNumbers(el`:InputElement`, mapper`:Function`) _- Creates the possibility to change the numbers in an inputfield via mouse scrolling.\n The mapper function takes three arguments: the matched number, an multiplier and the index of the match._\n\nUse this utils carefully, it's not for sure that they will stay forever!\n\n## Static properties\n* version _- The current version._\n* I18N_DEFAULTS _- i18n default values._\n* DEFAULT_OPTIONS _- Default options (Do not override this property itself, only change properties of it!)._\n\n## FAQ\n> How do I initialize multiple pickr's? Can I access the instance via `class` or `id`?\n\nNo, you can't. You need to keep track of your instance variables - pickr is (not yet) a web-component.\nThe best option would be to create new elements via `document.createElement` and directly pass it as `el`.\n[example](https://jsfiddle.net/Simonwep/9ghk71c3/).\n\n> I want to use pickr in a form, how can I do that?\n\nYou can use `useAsButton: true` and pass a reference (or selector) of your input-element as `el`. Then you can update the input-element whenever a change was made. [example](https://jsfiddle.net/Simonwep/wL1zyqcd/).\n\n> I want to update options after mounting pickr, is that possible?\n\nUnfortunately not. The core-code of this project is rather old (over 2 years), and I made it in my early js-days - the widget is not able to dynamically re-render itself in that way.\nYou have to destroy and re-initialize it.\n\n## Contributing\nIf you want to open a issue, create a Pull Request or simply want to know how you can run it on your local machine, please read the [Contributing guide](https://github.com/Simonwep/pickr/blob/master/.github/CONTRIBUTING.md).\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/5a/99/8e24eb45e5b6a848d313c73922442a177d775b465502a91983be2c1e6c236a870754f3a3ce18477efd689c5227a25790455962c6561612b48a3c0622c0ff b/frontend/.npm-cache/_cacache/content-v2/sha512/5a/99/8e24eb45e5b6a848d313c73922442a177d775b465502a91983be2c1e6c236a870754f3a3ce18477efd689c5227a25790455962c6561612b48a3c0622c0ff new file mode 100644 index 0000000..67f886d --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/5a/99/8e24eb45e5b6a848d313c73922442a177d775b465502a91983be2c1e6c236a870754f3a3ce18477efd689c5227a25790455962c6561612b48a3c0622c0ff @@ -0,0 +1 @@ +{"_id":"function-bind","_rev":"21-9aa01cf26f7dbb16477c93bbb7628ab7","name":"function-bind","description":"Implementation of Function.prototype.bind","dist-tags":{"latest":"1.1.2"},"versions":{"0.1.0":{"name":"function-bind","version":"0.1.0","description":"Implementation of function.prototype.bind","keywords":[],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"~1.0.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/function-bind/raw/master/LICENSE"}],"scripts":{"test":"node ./test/index.js","start":"node ./index.js","watch":"nodemon -w ./index.js index.js","travis-test":"istanbul cover ./test/index.js && ((cat coverage/lcov.info | coveralls) || exit 0)","cover":"istanbul cover --report none --print detail ./test/index.js","view-cover":"istanbul report html && google-chrome ./coverage/index.html","test-browser":"testem-browser ./test/browser/index.js","testem":"testem-both -b=./test/browser/index.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"_id":"function-bind@0.1.0","dist":{"shasum":"4d356a3bbea3a1226d0dde4749a8a80087cda3e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-0.1.0.tgz","integrity":"sha512-4UP4tXl/2KpwfhzRR9vtQ3Ft5QG4om3n1QDCq5FkqnODDd2ca/qqXFiBdf/RHxjlDcjzpGL1ocTUyXrfXci1NQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNXonyKvW3aq2Dt5dDse7duLKV9Wq8jSqVk/93L6VErQIgPkMu0ju/ZNrI843cZj06HKkUJVzoM6j8ggH8kOZ75do="}]},"_from":".","_npmVersion":"1.2.25","_npmUser":{"name":"raynos","email":"raynos2@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"}],"directories":{}},"1.0.0":{"name":"function-bind","version":"1.0.0","description":"Implementation of function.prototype.bind","keywords":[],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"~2.14.0","covert":"~0.4.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/function-bind/raw/master/LICENSE"}],"scripts":{"test":"node test/index.js","coverage":"covert test/*.js","coverage-quiet":"covert test/*.js --quiet"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"2e324165faafc0211bea7ddc5ec54b97f884e350","_id":"function-bind@1.0.0","_shasum":"00e4e206738ad45ec0017d62a7ef77d9917ab2a2","_from":".","_npmVersion":"1.4.21","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"00e4e206738ad45ec0017d62a7ef77d9917ab2a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.0.0.tgz","integrity":"sha512-ZdHaPFa9xBJ0eBlxf+Ia/NQ7DQfEq26SruzXjpHJ1Et5uLsWnEGoHBD6LSaxshBfNTEGK0zAxCrHdABRcgo3dA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD5TMzEEuM2k3O29zQ/UDd4+YD0KJfV32UbGTlV4fL1iAIhAJvp8l4cCyTdxZdMmTEQIWhA18n5q+sdSFuLnrCVXcEP"}]},"directories":{}},"1.0.2":{"name":"function-bind","version":"1.0.2","description":"Implementation of Function.prototype.bind","keywords":["function","bind","shim","es5"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"~3.0.0","covert":"~1.0.0","jscs":"~1.6.2"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/function-bind/raw/master/LICENSE"}],"scripts":{"test":"npm run lint && node test/index.js && npm run coverage-quiet","coverage":"covert test/*.js","coverage-quiet":"covert test/*.js --quiet","lint":"jscs *.js */*.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"71784cd83079ccd7f20684e959e1958936a0e3ff","_id":"function-bind@1.0.2","_shasum":"c2873b69c5e6d7cefae47d2555172926c8c2e05e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"dist":{"shasum":"c2873b69c5e6d7cefae47d2555172926c8c2e05e","tarball":"https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.0.2.tgz","integrity":"sha512-v2124bSW+kLVmfLEHDpsTeQy+sLEg9gdD/1aVTO7jolX/EmBEq9+atKWYEV3w791Os5USi8yNyuUtiVEXMWiAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/fb09LXqi/S/XCiGGR80GFQWGnlb//2iDXvrTilfDrAIhAI7izsP+giJBxJFL5uX/9k+Uwe75W26i1/oIUkjTnwEg"}]},"directories":{}},"1.1.0":{"name":"function-bind","version":"1.1.0","description":"Implementation of Function.prototype.bind","keywords":["function","bind","shim","es5"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"tape":"^4.4.0","covert":"^1.1.0","jscs":"^2.9.0","eslint":"^2.0.0","@ljharb/eslint-config":"^2.1.0"},"licenses":[{"type":"MIT","url":"http://github.com/Raynos/function-bind/raw/master/LICENSE"}],"scripts":{"test":"npm run lint && npm run tests-only && npm run coverage-quiet","tests-only":"node test","coverage":"covert test/*.js","coverage-quiet":"covert test/*.js --quiet","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js */*.js","eslint":"eslint *.js */*.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"cb5057f2a0018ac48c812ccee86934a5af30efdb","_id":"function-bind@1.1.0","_shasum":"16176714c801798e4e8f2cf7f7529467bb4a5771","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"shasum":"16176714c801798e4e8f2cf7f7529467bb4a5771","tarball":"https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.1.0.tgz","integrity":"sha512-rdjNZR1BePD6g5bTgalqkSN9eMuHgB2KHOBupLM8f5TblXwiV8nSY31dygkdwLNFn1m2KAkjFsREUuLNcU1rdg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIChAIxsZ/Z+Uf2sKfvL7vSYyvIua0IhoERa8wsDlRDMpAiEAzdZkw5K770jnn0pTnBbjF5h9dkklqX/QJaDMU5+nPHY="}]},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/function-bind-1.1.0.tgz_1455438520627_0.822420896962285"},"directories":{}},"1.1.1":{"name":"function-bind","version":"1.1.1","description":"Implementation of Function.prototype.bind","keywords":["function","bind","shim","es5"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git://github.com/Raynos/function-bind.git"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"dependencies":{},"devDependencies":{"@ljharb/eslint-config":"^12.2.1","covert":"^1.1.0","eslint":"^4.5.0","jscs":"^3.0.7","tape":"^4.8.0"},"license":"MIT","scripts":{"pretest":"npm run lint","test":"npm run tests-only","posttest":"npm run coverage -- --quiet","tests-only":"node test","coverage":"covert test/*.js","lint":"npm run jscs && npm run eslint","jscs":"jscs *.js */*.js","eslint":"eslint *.js */*.js"},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"gitHead":"1213f807066d1cb8d39a0592d5118f4b1f03de4a","_id":"function-bind@1.1.1","_npmVersion":"5.3.0","_nodeVersion":"8.4.0","_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"dist":{"integrity":"sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==","shasum":"a56899d3ea3c9bab874bb9773b7c5ede92f4895d","tarball":"https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDsVxPdBe+3LZpIF8YZMP7chLM+i5RVRwvtzCd5Yx7zigIgHw6sg2uwy+ItJamfc9+b+XTQOi93JrtZ+8F6YNq3Jz8="}]},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/function-bind-1.1.1.tgz_1503906695005_0.1665907499846071"},"directories":{}},"1.1.2":{"name":"function-bind","version":"1.1.2","description":"Implementation of Function.prototype.bind","keywords":["function","bind","shim","es5"],"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/Raynos/function-bind.git"},"funding":{"url":"https://github.com/sponsors/ljharb"},"main":"index","homepage":"https://github.com/Raynos/function-bind","contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"devDependencies":{"@ljharb/eslint-config":"^21.1.0","aud":"^2.0.3","auto-changelog":"^2.4.0","eslint":"=8.8.0","in-publish":"^2.0.1","npmignore":"^0.3.0","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.1"},"license":"MIT","scripts":{"prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","test":"npm run tests-only","posttest":"aud --production","tests-only":"nyc tape 'test/**/*.js'","lint":"eslint --ext=js,mjs .","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"testling":{"files":"test/index.js","browsers":["ie/8..latest","firefox/16..latest","firefox/nightly","chrome/22..latest","chrome/canary","opera/12..latest","opera/next","safari/5.1..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2..latest"]},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"_id":"function-bind@1.1.2","gitHead":"40197beb5f4cf89dd005f0b268256c1e4716ea81","_nodeVersion":"20.8.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==","shasum":"2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c","tarball":"https://mirrors.huaweicloud.com/repository/npm/function-bind/-/function-bind-1.1.2.tgz","fileCount":12,"unpackedSize":31427,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAnYrMYyelTQQ9xaQa84pR8N36UHNo7fToz4G3Xhj1ioAiEAo0Wl8ZCzkWU1VC9qLQaMxOvLxcQy3YyIWnTLHe6hmCk="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/function-bind_1.1.2_1697137699495_0.5322546821621981"},"_hasShrinkwrap":false}},"readme":"# function-bind [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n\n[![dependency status][deps-svg]][deps-url]\n[![dev dependency status][dev-deps-svg]][dev-deps-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nImplementation of function.prototype.bind\n\nOld versions of phantomjs, Internet Explorer < 9, and node < 0.6 don't support `Function.prototype.bind`.\n\n## Example\n\n```js\nFunction.prototype.bind = require(\"function-bind\")\n```\n\n## Installation\n\n`npm install function-bind`\n\n## Contributors\n\n - Raynos\n\n## MIT Licenced\n\n[package-url]: https://npmjs.org/package/function-bind\n[npm-version-svg]: https://versionbadg.es/Raynos/function-bind.svg\n[deps-svg]: https://david-dm.org/Raynos/function-bind.svg\n[deps-url]: https://david-dm.org/Raynos/function-bind\n[dev-deps-svg]: https://david-dm.org/Raynos/function-bind/dev-status.svg\n[dev-deps-url]: https://david-dm.org/Raynos/function-bind#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/function-bind.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/function-bind.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/function-bind.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=function-bind\n[codecov-image]: https://codecov.io/gh/Raynos/function-bind/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/Raynos/function-bind/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/Raynos/function-bind\n[actions-url]: https://github.com/Raynos/function-bind/actions\n","maintainers":[{"name":"raynos","email":"raynos2@gmail.com"},{"name":"ljharb","email":"ljharb@gmail.com"}],"time":{"modified":"2023-10-12T19:08:19.863Z","created":"2013-06-16T23:25:41.232Z","0.1.0":"2013-06-16T23:25:42.888Z","1.0.0":"2014-08-09T17:02:51.069Z","1.0.1":"2014-10-03T07:38:13.045Z","1.0.2":"2014-10-05T07:23:52.930Z","1.1.0":"2016-02-14T08:28:42.411Z","1.1.1":"2017-08-28T07:51:35.937Z","1.1.2":"2023-10-12T19:08:19.687Z"},"author":{"name":"Raynos","email":"raynos2@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/Raynos/function-bind.git"},"homepage":"https://github.com/Raynos/function-bind","keywords":["function","bind","shim","es5"],"contributors":[{"name":"Raynos"},{"name":"Jordan Harband","url":"https://github.com/ljharb"}],"bugs":{"url":"https://github.com/Raynos/function-bind/issues","email":"raynos2@gmail.com"},"readmeFilename":"README.md","users":{"flumpus-dev":true},"license":"MIT"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/5e/7a/71d7cd9204caebfda06293ccbe1ae4785352fd16a312a23c034303cc9b1c82e9bbc4aa5cbd5010b185ab81179bcd876830589357ea80d5ecef8e338cf7e2 b/frontend/.npm-cache/_cacache/content-v2/sha512/5e/7a/71d7cd9204caebfda06293ccbe1ae4785352fd16a312a23c034303cc9b1c82e9bbc4aa5cbd5010b185ab81179bcd876830589357ea80d5ecef8e338cf7e2 new file mode 100644 index 0000000..71dbf0d Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/5e/7a/71d7cd9204caebfda06293ccbe1ae4785352fd16a312a23c034303cc9b1c82e9bbc4aa5cbd5010b185ab81179bcd876830589357ea80d5ecef8e338cf7e2 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/63/f5/d57870bf12ee1851be2b5d4a967e080aef5f8dea8091790b1fb26743da5fa4c1cff4675a3e738071911443c3556110a4b41feea1c55bca49d26a209b26c3 b/frontend/.npm-cache/_cacache/content-v2/sha512/63/f5/d57870bf12ee1851be2b5d4a967e080aef5f8dea8091790b1fb26743da5fa4c1cff4675a3e738071911443c3556110a4b41feea1c55bca49d26a209b26c3 new file mode 100644 index 0000000..c621655 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/63/f5/d57870bf12ee1851be2b5d4a967e080aef5f8dea8091790b1fb26743da5fa4c1cff4675a3e738071911443c3556110a4b41feea1c55bca49d26a209b26c3 @@ -0,0 +1 @@ +{"_id":"delayed-stream","_rev":"23-fbb445ffaf4b8fd4d11e28793929c6e1","name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","dist-tags":{"latest":"1.0.0"},"versions":{"0.0.0":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"delayed-stream","description":"TBD","version":"0.0.0","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":"*"},"dependencies":{},"devDependencies":{},"_id":"delayed-stream@0.0.0","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.8-pre","_defaultsLoaded":true,"dist":{"shasum":"4bfe02a4a905b80aff019c3edcc53cadef03db8f","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-0.0.0.tgz","integrity":"sha512-njaZcaax8SpmNUrrYVnabphUgJf1pO1rOXfGpIHBctHTkF68H9EyqXiZWFjtSEUjrZ8kiXG+63uftfCtovA4XA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBNZ21lHxFqH5WmE1QsBJ0v/X1nFIn1cZcjyKCp1yr27AiEA/FShvLFeq6VjMbhQcakzEtG3G4N2a9Cy1hIAGKq2gTU="}]},"scripts":{}},"0.0.1":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","version":"0.0.1","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":">=0.4.8"},"dependencies":{},"devDependencies":{"fake":"0.2.0","far":"0.0.1"},"_id":"delayed-stream@0.0.1","_engineSupported":false,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.8-pre","_defaultsLoaded":true,"dist":{"shasum":"5a708417b75b3ba0aa9ac02c5f0006e252c53c24","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-0.0.1.tgz","integrity":"sha512-X1noqInXZJ6TkZpDcd35XTGzrO/uheM6IGoo7aKTsQ2R7wGHz0iOBQYO+2p7mfKDjEhrwUcKaKIK3uJ64QpQ7A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID3ByFdtR1AnLrlqBTVMtOHHC0fijtuxiRtTqWZe6QMjAiEAtOmH58KBek9epU/mHy9nUr5I5B7x4UYiynkF+gm3A/s="}]},"scripts":{}},"0.0.2":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","version":"0.0.2","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":">=0.4.0"},"dependencies":{},"devDependencies":{"fake":"0.2.0","far":"0.0.1"},"_id":"delayed-stream@0.0.2","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.8-pre","_defaultsLoaded":true,"dist":{"shasum":"f122955bbbe3f930237111905801dee6b882b5f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-0.0.2.tgz","integrity":"sha512-P5W63pK/yOAkj8b3rdFk/EWUQnbEe0+HoSlVRpRNbMM/sE1rweoL3zY58GSpPjhjArEVORt5Fp7n55Z5u1x6bg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCodHG3xvj7k7vLQkq2LUsaegBnxyhK66DWWWJY3lQp5AIhAJPtQ7T9pP53sFjtWjwBLZPsagwv/ILxIbr9rv4hYrDY"}]},"scripts":{}},"0.0.3":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","version":"0.0.3","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":">=0.4.0"},"dependencies":{},"devDependencies":{"fake":"0.2.0","far":"0.0.1"},"_id":"delayed-stream@0.0.3","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.8-pre","_defaultsLoaded":true,"dist":{"shasum":"c504cc899c309fca4a2ac907c6b71957c5f1d272","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-0.0.3.tgz","integrity":"sha512-TQTloJQPm6omkjiFUU2053BEp2fJBR6MvV9I8aegEGr1qYm+Edx+8bSUYLqIkJrT3Dnr+QdivfcLhxU4TiFXzA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCh973x+MnmEbHptzfv4tb9E8vrrLFt+i83KcyO/cuBjwIhALj9NBYGVLzd+WNIG5SZOY8CJsL3ksEHiNl8yscBh9ut"}]},"scripts":{}},"0.0.4":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","version":"0.0.4","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":">=0.4.0"},"dependencies":{},"devDependencies":{"fake":"0.2.0","far":"0.0.1"},"_id":"delayed-stream@0.0.4","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.9-pre","_defaultsLoaded":true,"dist":{"shasum":"318e307e9c061635942f414ca460cc8143ed8c08","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-0.0.4.tgz","integrity":"sha512-Otq5+B7DSg1EcdpG3TOfYUtv9Um8YTmY77tDTGEkGz49NK9Vj7cLLXhJnQAC9SqF603HWOSjQ5cA+Vmq5C53Tw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFK5vj0TXhxgE8+sUcXmNhbP+w2FUBJZRtZQVXT36oHlAiEA73tX5MwhMtMB+xVql7iT2Igo45flAtEsLB5vNNws5G0="}]},"scripts":{}},"0.0.5":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","version":"0.0.5","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":">=0.4.0"},"dependencies":{},"devDependencies":{"fake":"0.2.0","far":"0.0.1"},"_id":"delayed-stream@0.0.5","_engineSupported":true,"_npmVersion":"1.0.3","_nodeVersion":"v0.4.9-pre","_defaultsLoaded":true,"dist":{"shasum":"d4b1f43a93e8296dfe02694f4680bc37a313c73f","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-0.0.5.tgz","integrity":"sha512-v+7uBd1pqe5YtgPacIIbZ8HuHeLFVNe4mUEyFDXL6KiqzEykjbw+5mXZXpGFgNVasdL4jWKgaKIXrEHiynN1LA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDhYBNqwRVyvnvbjxnOGtAs/u1mANyCUHRCv3rzEva99gIhAMEW/V6DB64aX2OSGDsu32xUof7F5B7D0peZsuzgCp0J"}]},"scripts":{}},"0.0.6":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","version":"0.0.6","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":">=0.4.0"},"dependencies":{},"devDependencies":{"fake":"0.2.0","far":"0.0.1"},"bugs":{"url":"https://github.com/felixge/node-delayed-stream/issues"},"_id":"delayed-stream@0.0.6","dist":{"shasum":"a2646cb7ec3d5d7774614670a7a65de0c173edbc","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-0.0.6.tgz","integrity":"sha512-Si7mB08fdumvLNFddq3HQOoYf8BUxfITyZi+0RBn1sbojFm8c4gD1+3se7qVEji1uiVVLYE0Np0laaS9E+j6ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2e3H6ZAPtRCN6Rjk6PBWH9r0PWbr0I3letXYlZOF4zAIhAK2BbNwDwsRTeJlf97rfse3ZKWGA0QxeG9Kp3hkWO5XW"}]},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"felixge","email":"felix@debuggable.com"},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"}]},"0.0.7":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"contributors":[{"name":"Mike Atkins","email":"apeherder@gmail.com"}],"name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","license":"MIT","version":"0.0.7","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":">=0.4.0"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{"fake":"0.2.0","far":"0.0.1"},"gitHead":"b419f294ad485b0328c4ceb94173b93ae3ab209d","bugs":{"url":"https://github.com/felixge/node-delayed-stream/issues"},"_id":"delayed-stream@0.0.7","_shasum":"dfe96aad0341e033178139c9eca5a8bd41c778fc","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.6.4","_npmUser":{"name":"apechimp","email":"apeherder@gmail.com"},"dist":{"shasum":"dfe96aad0341e033178139c9eca5a8bd41c778fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-0.0.7.tgz","integrity":"sha512-LL2MLughDb2lNHW38TJZ3LRM3yn8YFr9gD1FjY1OHBfB4cN0v24uIAdHqeC2uyEnMqtsvsPxMG/skLOjgDc3Tw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDATHj2fecnR2JZccuMFPGxGLerdmk8TsAVGjvYitx61AiBRI/Yi0QXO/VCGVqfmjW+MYwl9rK0Kk7x0+AThcw8B7w=="}]},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"apechimp","email":"apeherder@gmail.com"}]},"1.0.0":{"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"contributors":[{"name":"Mike Atkins","email":"apeherder@gmail.com"}],"name":"delayed-stream","description":"Buffers events from a stream until you are ready to handle them.","license":"MIT","version":"1.0.0","homepage":"https://github.com/felixge/node-delayed-stream","repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"main":"./lib/delayed_stream","engines":{"node":">=0.4.0"},"scripts":{"test":"make test"},"dependencies":{},"devDependencies":{"fake":"0.2.0","far":"0.0.1"},"gitHead":"07a9dc99fb8f1a488160026b9ad77493f766fb84","bugs":{"url":"https://github.com/felixge/node-delayed-stream/issues"},"_id":"delayed-stream@1.0.0","_shasum":"df3ae199acadfb7d440aaae0b29e2272b24ec619","_from":".","_npmVersion":"2.8.3","_nodeVersion":"1.6.4","_npmUser":{"name":"apechimp","email":"apeherder@gmail.com"},"dist":{"shasum":"df3ae199acadfb7d440aaae0b29e2272b24ec619","tarball":"https://mirrors.huaweicloud.com/repository/npm/delayed-stream/-/delayed-stream-1.0.0.tgz","integrity":"sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFNS104hxMHj6ggfFwKlDS+fkW7akHCxWzE/LW+sTFBqAiEAxvSeEJzWu03PAzAyNykkudaBtkUvVdsDua12o2B7hMg="}]},"maintainers":[{"name":"felixge","email":"felix@debuggable.com"},{"name":"apechimp","email":"apeherder@gmail.com"}]}},"maintainers":[{"email":"apeherder@gmail.com","name":"apechimp"},{"email":"felix@debuggable.com","name":"felixge"}],"time":{"modified":"2022-06-14T23:48:45.969Z","created":"2011-05-22T13:50:32.615Z","0.0.0":"2011-05-22T13:50:34.131Z","0.0.1":"2011-05-22T20:51:10.182Z","0.0.2":"2011-05-22T20:54:55.117Z","0.0.3":"2011-05-22T21:39:43.149Z","0.0.4":"2011-05-24T08:02:37.327Z","0.0.5":"2011-05-24T08:09:45.283Z","0.0.6":"2014-11-23T13:53:23.249Z","0.0.7":"2015-04-30T21:58:57.409Z","1.0.0":"2015-04-30T22:10:29.726Z"},"author":{"name":"Felix Geisendörfer","email":"felix@debuggable.com","url":"http://debuggable.com/"},"repository":{"type":"git","url":"git://github.com/felixge/node-delayed-stream.git"},"readme":"# delayed-stream\n\nBuffers events from a stream until you are ready to handle them.\n\n## Installation\n\n``` bash\nnpm install delayed-stream\n```\n\n## Usage\n\nThe following example shows how to write a http echo server that delays its\nresponse by 1000 ms.\n\n``` javascript\nvar DelayedStream = require('delayed-stream');\nvar http = require('http');\n\nhttp.createServer(function(req, res) {\n var delayed = DelayedStream.create(req);\n\n setTimeout(function() {\n res.writeHead(200);\n delayed.pipe(res);\n }, 1000);\n});\n```\n\nIf you are not using `Stream#pipe`, you can also manually release the buffered\nevents by calling `delayedStream.resume()`:\n\n``` javascript\nvar delayed = DelayedStream.create(req);\n\nsetTimeout(function() {\n // Emit all buffered events and resume underlaying source\n delayed.resume();\n}, 1000);\n```\n\n## Implementation\n\nIn order to use this meta stream properly, here are a few things you should\nknow about the implementation.\n\n### Event Buffering / Proxying\n\nAll events of the `source` stream are hijacked by overwriting the `source.emit`\nmethod. Until node implements a catch-all event listener, this is the only way.\n\nHowever, delayed-stream still continues to emit all events it captures on the\n`source`, regardless of whether you have released the delayed stream yet or\nnot.\n\nUpon creation, delayed-stream captures all `source` events and stores them in\nan internal event buffer. Once `delayedStream.release()` is called, all\nbuffered events are emitted on the `delayedStream`, and the event buffer is\ncleared. After that, delayed-stream merely acts as a proxy for the underlaying\nsource.\n\n### Error handling\n\nError events on `source` are buffered / proxied just like any other events.\nHowever, `delayedStream.create` attaches a no-op `'error'` listener to the\n`source`. This way you only have to handle errors on the `delayedStream`\nobject, rather than in two places.\n\n### Buffer limits\n\ndelayed-stream provides a `maxDataSize` property that can be used to limit\nthe amount of data being buffered. In order to protect you from bad `source`\nstreams that don't react to `source.pause()`, this feature is enabled by\ndefault.\n\n## API\n\n### DelayedStream.create(source, [options])\n\nReturns a new `delayedStream`. Available options are:\n\n* `pauseStream`\n* `maxDataSize`\n\nThe description for those properties can be found below.\n\n### delayedStream.source\n\nThe `source` stream managed by this object. This is useful if you are\npassing your `delayedStream` around, and you still want to access properties\non the `source` object.\n\n### delayedStream.pauseStream = true\n\nWhether to pause the underlaying `source` when calling\n`DelayedStream.create()`. Modifying this property afterwards has no effect.\n\n### delayedStream.maxDataSize = 1024 * 1024\n\nThe amount of data to buffer before emitting an `error`.\n\nIf the underlaying source is emitting `Buffer` objects, the `maxDataSize`\nrefers to bytes.\n\nIf the underlaying source is emitting JavaScript strings, the size refers to\ncharacters.\n\nIf you know what you are doing, you can set this property to `Infinity` to\ndisable this feature. You can also modify this property during runtime.\n\n### delayedStream.dataSize = 0\n\nThe amount of data buffered so far.\n\n### delayedStream.readable\n\nAn ECMA5 getter that returns the value of `source.readable`.\n\n### delayedStream.resume()\n\nIf the `delayedStream` has not been released so far, `delayedStream.release()`\nis called.\n\nIn either case, `source.resume()` is called.\n\n### delayedStream.pause()\n\nCalls `source.pause()`.\n\n### delayedStream.pipe(dest)\n\nCalls `delayedStream.resume()` and then proxies the arguments to `source.pipe`.\n\n### delayedStream.release()\n\nEmits and clears all events that have been buffered up so far. This does not\nresume the underlaying source, use `delayedStream.resume()` instead.\n\n## License\n\ndelayed-stream is licensed under the MIT license.\n","homepage":"https://github.com/felixge/node-delayed-stream","bugs":{"url":"https://github.com/felixge/node-delayed-stream/issues"},"readmeFilename":"Readme.md","contributors":[{"name":"Mike Atkins","email":"apeherder@gmail.com"}],"license":"MIT","users":{"mojaray2k":true,"ganeshkbhat":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/64/36/3e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b b/frontend/.npm-cache/_cacache/content-v2/sha512/64/36/3e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b new file mode 100644 index 0000000..bb4f1d5 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/64/36/3e6cf9b9cd34c5f98a42ac053d9cad148080983d3d10b53d4d65616fe2cfbe4cd91c815693d20ebee11dae238323423cf2b07075cf1b962f9d21cda7978b differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/65/42/9187afe4505a0089302d4d83d9277870f70371c7e04804e8a39e51bd3e7ac9b027128ecd70cb20fabc9a5a62d827cc3aca6114aa7f738ee917daf77c6c46 b/frontend/.npm-cache/_cacache/content-v2/sha512/65/42/9187afe4505a0089302d4d83d9277870f70371c7e04804e8a39e51bd3e7ac9b027128ecd70cb20fabc9a5a62d827cc3aca6114aa7f738ee917daf77c6c46 new file mode 100644 index 0000000..c461cc0 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/65/42/9187afe4505a0089302d4d83d9277870f70371c7e04804e8a39e51bd3e7ac9b027128ecd70cb20fabc9a5a62d827cc3aca6114aa7f738ee917daf77c6c46 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/65/fe/47d8ac6ddb18d3bdb26f3f66562c4202c40ea3fa1026333225ca9cb8c5c060d6f2959f1f3d5b2d066d2fa47f9730095145cdd0858765d20853542d2e9cb3 b/frontend/.npm-cache/_cacache/content-v2/sha512/65/fe/47d8ac6ddb18d3bdb26f3f66562c4202c40ea3fa1026333225ca9cb8c5c060d6f2959f1f3d5b2d066d2fa47f9730095145cdd0858765d20853542d2e9cb3 new file mode 100644 index 0000000..8090a39 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/65/fe/47d8ac6ddb18d3bdb26f3f66562c4202c40ea3fa1026333225ca9cb8c5c060d6f2959f1f3d5b2d066d2fa47f9730095145cdd0858765d20853542d2e9cb3 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/67/24/83ecd7fdd5a2c1d11c4be0a1ab28705797b11db350c098475ca156b05e72c3ed20e1a4d82db88236680920edaed04b8d63c4f499d7ba7855d1a730793731 b/frontend/.npm-cache/_cacache/content-v2/sha512/67/24/83ecd7fdd5a2c1d11c4be0a1ab28705797b11db350c098475ca156b05e72c3ed20e1a4d82db88236680920edaed04b8d63c4f499d7ba7855d1a730793731 new file mode 100644 index 0000000..b52cbe5 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/67/24/83ecd7fdd5a2c1d11c4be0a1ab28705797b11db350c098475ca156b05e72c3ed20e1a4d82db88236680920edaed04b8d63c4f499d7ba7855d1a730793731 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/6e/0d/7adadc231942a352dc74d34b6cec3aa310000fb61f436cd575172b4f7a06a8fca70e6d5cf9a143396b14d5f8fd7e19b95a9aed9b1df4dfade763d21b1c43 b/frontend/.npm-cache/_cacache/content-v2/sha512/6e/0d/7adadc231942a352dc74d34b6cec3aa310000fb61f436cd575172b4f7a06a8fca70e6d5cf9a143396b14d5f8fd7e19b95a9aed9b1df4dfade763d21b1c43 new file mode 100644 index 0000000..8463d75 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/6e/0d/7adadc231942a352dc74d34b6cec3aa310000fb61f436cd575172b4f7a06a8fca70e6d5cf9a143396b14d5f8fd7e19b95a9aed9b1df4dfade763d21b1c43 @@ -0,0 +1 @@ +{"_id":"is-plain-object","_rev":"26-ef4f1251c5c0e66bb4439084b2d413dc","name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor, or Object.create(null).","dist-tags":{"latest":"5.0.0"},"versions":{"0.1.0":{"name":"is-plain-object","description":"Return `true` if the given `value` is an object created by the `Object` constructor.","version":"0.1.0","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"licenses":[{"type":"MIT","url":"https://github.com/jonschlinkert/is-plain-object/blob/master/LICENSE-MIT"}],"keywords":["object","is","is-object","isobject","plain","value","typeof","javascript","check","type"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha -R spec"},"devDependencies":{"verb":"~0.2.6","chai":"~1.9.1","mocha":"*"},"_id":"is-plain-object@0.1.0","_shasum":"3ca7db022de72fd12007f1957beb59ea596b979c","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"3ca7db022de72fd12007f1957beb59ea596b979c","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-0.1.0.tgz","integrity":"sha512-pb50PSj2wtnl3sxe0uy8851298LRiZygwy48zRPwSIINOvDIZvO35ndeNTxFdNz5ilaWL37utyr3i+p9EeO4Sg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFBY+v+OxDBhePJsE3dhUng0cYcv++gsAwCrICj131zUAiBUACmOgjjP2rdqqHHzX1jYpwfsRNnxyN0/BrmQQqX8hQ=="}]},"directories":{}},"1.0.0":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor.","version":"1.0.0","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/is-plain-object/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"test":"mocha"},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"mocha":"*"},"keywords":["object","is","is-object","isobject","plain","value","typeof","javascript","check","type"],"gitHead":"48f326d18bcf8776c60cdf7c7859d2dc514e6257","_id":"is-plain-object@1.0.0","_shasum":"ff5f752db71c3328afd5e685eb6adddd3eaffab7","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"}],"dist":{"shasum":"ff5f752db71c3328afd5e685eb6adddd3eaffab7","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-1.0.0.tgz","integrity":"sha512-+tXodG6I903VrzqxqKAQjA7ti9niaR18pza7uWPLmUvQfsUk+WzNwnu4JnW7UNT3idAcNTGMjZtvdrYTJnWkUA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDzV2dnUoXi6ImXNKwg8orNM1gQTj07FcytTd1KgLOOBgIhAI33xZyqllAHWXsuR+cUlo2WvgXIDFWLareCSEzUi5EG"}]},"directories":{}},"2.0.0":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor.","version":"2.0.0","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"git://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":{"type":"MIT","url":"https://github.com/jonschlinkert/is-plain-object/blob/master/LICENSE"},"files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"browserify":"browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js","test_browser":"mocha-phantomjs test/browser.html","test_node":"mocha test","test":"npm run test_node && npm run browserify && npm run test_browser"},"dependencies":{"isobject":"^0.2.0"},"devDependencies":{"browserify":"*","chai":"*","mocha":"*","mocha-phantomjs":"*","phantomjs":"*","uglify-js":"*"},"keywords":["object","is","is-object","isobject","plain","value","typeof","javascript","check","type"],"gitHead":"b96e86b84e78e21108b1ea824a3e91af1e00164b","_id":"is-plain-object@2.0.0","_shasum":"8612587fa90279dc1b6e1cec2056f6c1df7abb2a","_from":"git://github.com/jonschlinkert/is-plain-object.git","_resolved":"git://github.com/jonschlinkert/is-plain-object.git#b96e86b84e78e21108b1ea824a3e91af1e00164b","_fromGithub":true,"_npmVersion":"2.7.4","_nodeVersion":"0.12.2","_npmUser":{"name":"stevenvachon","email":"contact@svachon.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"stevenvachon","email":"contact@svachon.com"}],"dist":{"shasum":"8612587fa90279dc1b6e1cec2056f6c1df7abb2a","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-2.0.0.tgz","integrity":"sha512-HwcxEMZP726Fk8+02WDquQHSd95nifNqIvT23+FfQh4LxW+spxD/E+ZLe5GvyCsDEjc/sH/8kWNeeHfajlR+7Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE+9gh7ASqgOtSc3k8T4iG3fKiRnWs/j/UEO0wAR4o8mAiEA2j03cH7/rG2/L/RxYv5RfAd9Gtafe0F7Lbkk9E/SwrI="}]},"directories":{}},"2.0.1":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor.","version":"2.0.1","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"repository":{"type":"git","url":"https://github.com/jonschlinkert/is-plain-object"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"browserify":"browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js","test_browser":"mocha-phantomjs test/browser.html","test_node":"mocha","test":"npm run test_node && npm run browserify && npm run test_browser"},"dependencies":{"isobject":"^1.0.0"},"devDependencies":{"browserify":"*","chai":"*","mocha":"*","mocha-phantomjs":"*","phantomjs":"*","uglify-js":"*"},"keywords":["object","is","is-object","isobject","plain","value","type","kind","kind-of","typeof","javascript","check","type"],"gitHead":"b96e86b84e78e21108b1ea824a3e91af1e00164b","_id":"is-plain-object@2.0.1","_shasum":"4d7ca539bc9db9b737b8acb612f2318ef92f294f","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"stevenvachon","email":"contact@svachon.com"}],"dist":{"shasum":"4d7ca539bc9db9b737b8acb612f2318ef92f294f","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-2.0.1.tgz","integrity":"sha512-F/FLn/qy/gwj4RWlHhdO+lc1ACqkIPqwxP9TlnsNJerkqvFNLlTQoos+1MxIklqdwGutrmzV6SUPiDrkiBpB6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD1Pal0Ari8VY/hYL6+UKzQHSmV5S1FXxR93uujnv6SpAIhAPRlK8UKxhA+/1sH9owDJ90OWMw/RssRQP2QdL+WtnCI"}]},"directories":{}},"2.0.2":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor.","version":"2.0.2","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Steven Vachon","url":"https://svachon.com"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"browserify":"browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js","test_browser":"mocha-phantomjs test/browser.html","test_node":"mocha","test":"npm run test_node && npm run browserify && npm run test_browser"},"dependencies":{"isobject":"^3.0.0"},"devDependencies":{"browserify":"^14.3.0","gulp-format-md":"^0.1.12","mocha":"^3.4.2","mocha-phantomjs":"^4.1.0","phantomjs":"^2.1.7","uglify-js":"^3.0.12"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["isobject","is-number","kind-of"]},"lint":{"reflinks":true}},"gitHead":"e6ffcb78603dc3a3826e75852c449639bca627ef","_id":"is-plain-object@2.0.2","_shasum":"1d9ab795669937de31998071ca1f701770b375a4","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.7.3","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"stevenvachon","email":"contact@svachon.com"}],"dist":{"shasum":"1d9ab795669937de31998071ca1f701770b375a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-2.0.2.tgz","integrity":"sha512-0LshiloqaVPchDPbWL/5j2pNXuveiywMgjSXzB8IPYx22XnWBuOoQr9yoAZvw1XUEwRDzejOnX0nELlObuKaxA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCuYXWLb/8Y1pPbP+a4N2LsbQD2l15n/YVhNrqVV6zwZwIhAIDXQEYVmMEEEonjH0dVp1XGzhl4YciEIMLSoQzMCD6N"}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object-2.0.2.tgz_1495914809154_0.5315580435562879"},"directories":{}},"2.0.3":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor.","version":"2.0.3","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Steven Vachon","url":"https://svachon.com"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","files":["index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"browserify":"browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js","test_browser":"mocha-phantomjs test/browser.html","test_node":"mocha","test":"npm run test_node && npm run browserify && npm run test_browser"},"dependencies":{"isobject":"^3.0.0"},"devDependencies":{"browserify":"^14.3.0","chai":"^4.0.0","gulp-format-md":"^0.1.12","mocha":"^3.4.2","mocha-phantomjs":"^4.1.0","phantomjs":"^2.1.7","uglify-js":"^3.0.12"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["isobject","is-number","kind-of"]},"lint":{"reflinks":true}},"gitHead":"6616250bedd50e6f2378b44637875f22178f7506","_id":"is-plain-object@2.0.3","_shasum":"c15bf3e4b66b62d72efaf2925848663ecbc619b6","_from":".","_npmVersion":"4.6.1","_nodeVersion":"7.7.3","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"stevenvachon","email":"contact@svachon.com"}],"dist":{"shasum":"c15bf3e4b66b62d72efaf2925848663ecbc619b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-2.0.3.tgz","integrity":"sha512-4QumWYGOyh/PBXAjqTavDrW61AXQMo9MddhHneiqHZkeql0uKV6ytfEPQuZFNf/hoaRi8ooNYFvQBC5tI3i8xA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFlolFswB26pz+eiUPbf2z2yELBC5VTgXVyEJwpYQ3J6AiEAr3IYV2wgKEO5wv0Z89FP0KAilxSpBZaYAysW97AvgUc="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object-2.0.3.tgz_1496153207864_0.18937807087786496"},"directories":{}},"2.0.4":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor.","version":"2.0.4","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Osman Nuri Okumuş","url":"http://onokumus.com"},{"name":"Steven Vachon","url":"https://svachon.com"},{"url":"https://github.com/wtgtybhertgeghgtwtg"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","files":["index.d.ts","index.js"],"main":"index.js","engines":{"node":">=0.10.0"},"scripts":{"browserify":"browserify index.js --standalone isPlainObject | uglifyjs --compress --mangle -o browser/is-plain-object.js","test_browser":"mocha-phantomjs test/browser.html","test_node":"mocha","test":"npm run test_node && npm run browserify && npm run test_browser"},"dependencies":{"isobject":"^3.0.1"},"devDependencies":{"browserify":"^14.4.0","chai":"^4.0.2","gulp-format-md":"^1.0.0","mocha":"^3.4.2","mocha-phantomjs":"^4.1.0","phantomjs":"^2.1.7","uglify-js":"^3.0.24"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"types":"index.d.ts","verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["is-number","isobject","kind-of"]},"lint":{"reflinks":true}},"gitHead":"81345df0d1700a5c285f379cbdca0e273388910d","_id":"is-plain-object@2.0.4","_npmVersion":"5.2.0","_nodeVersion":"7.7.3","_npmUser":{"name":"jonschlinkert","email":"github@sellside.com"},"maintainers":[{"name":"jonschlinkert","email":"github@sellside.com"},{"name":"stevenvachon","email":"contact@svachon.com"}],"dist":{"integrity":"sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==","shasum":"2c163b3fafb1b606d9d17928f05c2a1c38e07677","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-2.0.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE5xlLxkVCwt4n8oWPscuhWZsIE3aR2y0PyyzU5T+0ztAiEAgqSebo53ZeAAXDTOVEWqpSasxMpfZWaBgDvVfBr4WJA="}]},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object-2.0.4.tgz_1499812869259_0.27965074591338634"},"directories":{}},"3.0.0":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor.","version":"3.0.0","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Osman Nuri Okumuş","url":"http://onokumus.com"},{"name":"Steven Vachon","url":"https://svachon.com"},{"url":"https://github.com/wtgtybhertgeghgtwtg"}],"repository":{"type":"git","url":"git+https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","main":"index.cjs.js","module":"index.js","types":"index.d.ts","engines":{"node":">=0.10.0"},"scripts":{"build":"rollup -c","test_browser":"mocha-headless-chrome --args=disable-web-security -f test/browser.html","test_node":"mocha -r esm","test":"npm run test_node && npm run build && npm run test_browser","prepare":"rollup -c"},"dependencies":{"isobject":"^4.0.0"},"devDependencies":{"chai":"^4.2.0","esm":"^3.2.22","gulp-format-md":"^1.0.0","mocha":"^6.1.4","mocha-headless-chrome":"^2.0.2","rollup":"^1.10.1","rollup-plugin-node-resolve":"^4.2.3"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["is-number","isobject","kind-of"]},"lint":{"reflinks":true}},"gitHead":"340bc4ee0eba9322b85bbf732603c3f7fe67851c","_id":"is-plain-object@3.0.0","_npmVersion":"6.4.1","_nodeVersion":"8.15.0","_npmUser":{"name":"trysound","email":"trysound@yandex.ru"},"dist":{"integrity":"sha512-tZIpofR+P05k8Aocp7UI/2UTa9lTJSebCXpFFoR9aibpokDj/uXBsJ8luUu0tTVYKkMU6URDUuOfJZ7koewXvg==","shasum":"47bfc5da1b5d50d64110806c199359482e75a928","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-3.0.0.tgz","fileCount":6,"unpackedSize":9185,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcyLXkCRA9TVsSAnZWagAAd2IP+wfkoxXYjoEkwNWIUrfy\nzjhbQ5xnTwlZuNoPWZuVdQSYDwufCyh/zWeuiJjsCEkNT/z0QegPdK4PZFIi\n6BNti78yVazpcsonD3njnmoyrV5/8iXyI+C1PRo6nOO6kNHXx0JjAoLRAoVC\nDguYquTDhdo2WlQJ01ln8dSx9ueWQx5QMLE9lBXPzYmrtXbQcLd5Z8uXE4P/\n0vrkIuteL/p7I5RF2iFYjz4sEShk9W+ZNqlAf8Xsaa7yT2B5RRiy/ron5/+g\nLrnPAPn4954fWupxRuivAqgj3CfoOxx6Pl1D+ksK6sNywn6zB2fqTQm8vSLe\nsh6+BrX4ML34PA+2GSMmsv2+pU9Ksc2MwVJYzvIRQYlxMIza6rSMpfoJFiqW\nbiGyVf5+NSozNOnNpqxrv2OYIZnsKk+4ZL8kM5VrMnMAtB0IO8dgPO7uG/pf\n/CpqXJ9b9YKit5JnvuVksepqBIj+j2e40Od4E/wjsNKrIN0J06NksaVTmexo\njebkKSgAqGqqTPeeShtj44dF+Mdu8ChtBE5NYPLzJMDK5gslVb3/IdICzAwg\ncUXCgDR7KfoSio/4bCBB3sx+B4rCwcP3Eoi139qrQeXnl/OVCgINbd7U0u4A\nNIBq4uhTTb7ylFxJAcDBGPfqohPzoUc93pj+tClmPfF/+Bl7KBjZPKdhFI9u\nudtk\r\n=3ByD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFC4SrcnGkCU7NJNGUV9QLoPRhia1KiX3QwXhJIJWgfLAiEAokEdJd/9ak0gHre5uHzqbfOXJAFQiuCsBgzeoQDRBPM="}]},"maintainers":[{"email":"github@sellside.com","name":"jonschlinkert"},{"email":"contact@svachon.com","name":"stevenvachon"},{"email":"trysound@yandex.ru","name":"trysound"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object_3.0.0_1556657636003_0.8407783091812069"},"_hasShrinkwrap":false},"3.0.1":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor.","version":"3.0.1","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Osman Nuri Okumuş","url":"http://onokumus.com"},{"name":"Steven Vachon","url":"https://svachon.com"},{"url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Bogdan Chadkin","url":"https://github.com/TrySound"}],"repository":{"type":"git","url":"https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","main":"index.cjs.js","module":"index.es.js","types":"index.d.ts","engines":{"node":">=0.10.0"},"scripts":{"build":"rollup -c","test_browser":"mocha-headless-chrome --args=disable-web-security -f test/browser.html","test_node":"mocha -r esm","test":"npm run test_node && npm run build && npm run test_browser","prepare":"rollup -c"},"devDependencies":{"@rollup/plugin-node-resolve":"^8.1.0","chai":"^4.2.0","esm":"^3.2.22","gulp-format-md":"^1.0.0","isobject":"^4.0.0","mocha":"^6.1.4","mocha-headless-chrome":"^3.1.0","rollup":"^1.10.1"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["is-number","isobject","kind-of"]},"lint":{"reflinks":true}},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","_id":"is-plain-object@3.0.1","dist":{"shasum":"662d92d24c0aa4302407b0d45d21f2251c85f85b","integrity":"sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-3.0.1.tgz","fileCount":7,"unpackedSize":9457,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9v38CRA9TVsSAnZWagAAkbEQAJ2Xlwabzov0sVASU7tL\nzQZeGLp+nSkO6NsxaLstwPvOlcwwVyvguew4itIVLHJJ1Hc6c25OejfbJ8j2\nXvOqFWdmtBZovDMD0LzhLe9mEdE7dyLQeuNqcNS94GTaXi0LLRVcK1GxQEM4\ntD30mx2iEdgW7chgYmm/UD1jiRkiyMA8jOt2Cf76+dTxtkqXGAz4hoI6wsId\noH1274RbdaCjEqBmcfWWaWkhAdrb2B3XoWRkdyFAlG/t7kmAUPJ8hS/ztHal\niLCI9uoHs0RLYE+dOe4URvsJi/GJD8pmXVBwr1vWsHJoklWeTly/segTpzu0\njUNRjmNkYPtQq2gh/RVVkzAKWn1A9dQQqaEEp6HsYSteHgS8UVmcffiHMDtB\nak1sgV5wCGYmcB94r6v8wyZXKIztt+ouGJAmCqiSGE/tRxjwSJtvjmnbhNzV\n19+UmP3m/Yy/dQxW2pvRfSMttTWmJo6aGB4n4Y1WwiCDQ0bn3Ij0kQBgy1sf\npz/0yIEfi8Sk1NTRxYhaQ7Q4nztKbui7168X7CWgKetmF2eO4lDAfwArTqrZ\noV5TDctShs6mMWChaIYEB0f39ubmZjjwWArINB1k8sRoicULfiYRtZ6q3sSP\nC5P9ajP2fh8HYyn7C/dalPzirSFx+rT8AY6F34PoGqgg8uY7gS05ZmJTDSlW\nEV/9\r\n=X+uo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJQEDF9zTAZyiFeVOQ8eYMHxjx6eRVmXZhV8afoy/XwwIgPyj8lSg+Tj/sk5WR6Dz2xrObpQ3VafDmaPmBxrUVO3M="}]},"maintainers":[{"email":"github@sellside.com","name":"jonschlinkert"},{"email":"contact@svachon.com","name":"stevenvachon"},{"email":"trysound@yandex.ru","name":"trysound"}],"_npmUser":{"name":"trysound","email":"trysound@yandex.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object_3.0.1_1593245179588_0.38683699163270036"},"_hasShrinkwrap":false},"4.0.0":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor, or Object.create(null).","version":"4.0.0","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Osman Nuri Okumuş","url":"http://onokumus.com"},{"name":"Steven Vachon","url":"https://svachon.com"},{"url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Bogdan Chadkin","url":"https://github.com/TrySound"}],"repository":{"type":"git","url":"https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","main":"index.cjs.js","module":"index.es.js","types":"index.d.ts","engines":{"node":">=0.10.0"},"scripts":{"build":"rollup -c","test_browser":"mocha-headless-chrome --args=disable-web-security -f test/browser.html","test_node":"mocha -r esm","test":"npm run test_node && npm run build && npm run test_browser","prepare":"rollup -c"},"devDependencies":{"@rollup/plugin-node-resolve":"^8.1.0","chai":"^4.2.0","esm":"^3.2.22","gulp-format-md":"^1.0.0","isobject":"^4.0.0","mocha":"^6.1.4","mocha-headless-chrome":"^3.1.0","rollup":"^2.18.1"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["is-number","isobject","kind-of"]},"lint":{"reflinks":true}},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","_id":"is-plain-object@4.0.0","dist":{"shasum":"2cd131aa2dc1340ceaee89248f61823706457feb","integrity":"sha512-WipTQmPd1scuJUgwV/EZ1QbbOpEyHTQEXz4cJvrn+uwwgUtPcd3FD+yvAcKLYA8so2UsjNAq1JBu9rGgmGguVg==","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-4.0.0.tgz","fileCount":7,"unpackedSize":9586,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFjJRCRA9TVsSAnZWagAArSEP/0zl2FpPkI11JRXiXaq+\nmc5ciKkpKcuyOFga+lOoKPGM09m0xTFPIhNC968UtoGeyW+vw983F+hHsD3J\nQ+CibN7jmPUYASKdziI5iZj1/I2v2WNXQNPat3XTZEn2ODqzXaV+TVWMneO8\nNDCIXlCm/la8bWMK5BjEWxzybgPSnRNEw+oDOe8+XMwNJU8TO5XmWwOrtYnb\ndGE532K842tgVMRclfhWJVmK0PG9R+DNleiwZyFpEJYF2loZk1SHzMeFrdaW\nMN2rvGXrlNOcFaEnoDhtyJxzB/tOM5he+L1jo2QiRpTMF5BzA8U2Ch5d8+7/\nyO317xt0rmP5SHMEx2WJQ5t6Tjx5AuB3bkZBgJiQekvSTnUXPF2/dicgMbse\nCt8ulAIXWPvAwjNyLvM/FLFbr4w/NxuHwslKQwrYKXvkxQ11aVU1ENfnNzJg\n+XeduOHN+vSeFF3b1RKeV0AKqVaK5GfjHumZwYDqhMTLFy2bX60P7cpw5cVL\ntGk2cMPclT5hp9PT+/A8AqYbX1J4/6QENjqmfklJlmhdbm+vQIUXtr4Ratbx\nSElqBUNxiuj2H6UAiOfJZFOp+XZfiLmSvqMsJLoswe9pWJMBA6xxmFmL5qRW\nyjIeyxz/uY4gXlZSWVXgdR57hwd8HUN8Igyaepz8ulQ4zawyoPxOjPwNOHmJ\nITUZ\r\n=kqQc\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEUgfdCT4SIGnNA30Hu1QTtct1otgrP98p3wd3ZD0hl2AiB1CZGFUV28djSRpC5U3ahrZP8LkrU2hJtFSqHBAoG2vA=="}]},"maintainers":[{"email":"github@sellside.com","name":"jonschlinkert"},{"email":"contact@svachon.com","name":"stevenvachon"},{"email":"trysound@yandex.ru","name":"trysound"}],"_npmUser":{"name":"trysound","email":"trysound@yandex.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object_4.0.0_1595290193115_0.9493888596664919"},"_hasShrinkwrap":false},"4.1.0":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor, or Object.create(null).","version":"4.1.0","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Osman Nuri Okumuş","url":"http://onokumus.com"},{"name":"Steven Vachon","url":"https://svachon.com"},{"url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Bogdan Chadkin","url":"https://github.com/TrySound"}],"repository":{"type":"git","url":"https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","main":"index.cjs.js","module":"index.es.js","types":"index.d.ts","engines":{"node":">=0.10.0"},"scripts":{"build":"rollup -c","test_browser":"mocha-headless-chrome --args=disable-web-security -f test/browser.html","test_node":"mocha -r esm","test":"npm run test_node && npm run build && npm run test_browser","prepare":"rollup -c"},"devDependencies":{"chai":"^4.2.0","esm":"^3.2.22","gulp-format-md":"^1.0.0","mocha":"^6.1.4","mocha-headless-chrome":"^3.1.0","rollup":"^2.22.1"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["is-number","isobject","kind-of"]},"lint":{"reflinks":true}},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","_id":"is-plain-object@4.1.0","dist":{"shasum":"00196ad308ebb7de9d1fb57ae92ef1c38d5a740e","integrity":"sha512-1N1OpoS8S4Ua+FsH6Mhvgaj0di3uRXgulcv2dnFu2J/WcEsDNbBoiUX6mYmhQ2cAzZ+B/lTJtX1qUSL5RwsGug==","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-4.1.0.tgz","fileCount":7,"unpackedSize":8848,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFsqcCRA9TVsSAnZWagAAyIcP/2EOxdbMmCMKyWJOsPse\n+s6cj5zx8u0p6ZPg1MrXp8am9hNfZ12NIyuCUuJ/3vVfHJeAiP+sSNWrlUuJ\n3fyKi7AKddLkUarOU9h6hnNxp0K5CGMrfTPqsnG1HP6Z2gRinOr9CgHOjbPF\nRYbECybxV3uAv4JivKxfgNN+8UaZwn95LnA5DY+oq7/leR2dxnlSS3rh3UVS\nr/kGOqrb2PloXYPPPcO3nJsZWfboApgArqUkVENUPGIzIYiibCsMty/F7rIo\nnZPibVN5Rsm5ZbAtzxMRm8v1S9nHbfC5HEMtTNtkc0f/4LwFHO+G7KxyAMqK\ncTRHdOw4UQM5qUDggxWalf3DoBWA8jwxtJ2gHca+nTPExG7OOOh3x0qJUGBU\nnoRAe87DilT9uzgGVghgOPAoDTVXHAIwcwV6xab0hKN1kMGE3j9yNazwX16s\nFdCDHu8OX0k18bDz23xrKWw4TRrYU75RseQHkazRRr+mq9JzTzu03Ra3eEcS\n5RlOSz0/IV5ZlqooPLqMUxeTKF/fW1pwdpzQUXKoPze8nLAMqqh/fyNHEI0w\nc1uS3qTST24pNv6cCU0j3H7LaWjM5V1zvXolJeDmufl928DLweGnO6vaotQ5\nNQGi6bJzKXUxqzbpOWlaHSbaZrP+8hT/vI8jeM09ifsCKMJxSgw9peTLNQ3x\nF6p3\r\n=5d0P\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCs6nxgLJtbQAdT41zUF4T8z4F8LsdkvkSAlf33k7yyCAIhAKVb+gbr8kW4lmUnrZ6StinyM8TRSoRXbfoR/bbp7Xrh"}]},"maintainers":[{"email":"github@sellside.com","name":"jonschlinkert"},{"email":"contact@svachon.com","name":"stevenvachon"},{"email":"trysound@yandex.ru","name":"trysound"}],"_npmUser":{"name":"trysound","email":"trysound@yandex.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object_4.1.0_1595329180429_0.6450668912349269"},"_hasShrinkwrap":false},"4.1.1":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor, or Object.create(null).","version":"4.1.1","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Osman Nuri Okumuş","url":"http://onokumus.com"},{"name":"Steven Vachon","url":"https://svachon.com"},{"url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Bogdan Chadkin","url":"https://github.com/TrySound"}],"repository":{"type":"git","url":"https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","main":"index.cjs.js","module":"index.es.js","types":"index.d.ts","engines":{"node":">=0.10.0"},"scripts":{"build":"rollup -c","test_browser":"mocha-headless-chrome --args=disable-web-security -f test/browser.html","test_node":"mocha -r esm","test":"npm run test_node && npm run build && npm run test_browser","prepare":"rollup -c"},"devDependencies":{"chai":"^4.2.0","esm":"^3.2.22","gulp-format-md":"^1.0.0","mocha":"^6.1.4","mocha-headless-chrome":"^3.1.0","rollup":"^2.22.1"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["is-number","isobject","kind-of"]},"lint":{"reflinks":true}},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","_id":"is-plain-object@4.1.1","dist":{"shasum":"1a14d6452cbd50790edc7fdaa0aed5a40a35ebb5","integrity":"sha512-5Aw8LLVsDlZsETVMhoMXzqsXwQqr/0vlnBYzIXJbYo2F4yYlhLHs+Ez7Bod7IIQKWkJbJfxrWD7pA1Dw1TKrwA==","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-4.1.1.tgz","fileCount":7,"unpackedSize":8836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfGoXUCRA9TVsSAnZWagAAYKcP/3EnkUPC8tUbqR/CUOpH\nUYQhWAnCjNfSacMHUehZNN9QiauM8Rxcwl8n3/J19kzqt0nyT9wgWiu8+R+F\nHvTJlJyQ0ZbFdiLhE1gm1nx0/OU96OKJi7SkQtZFCRz0eT4tkNA0vVS8uTmT\nS1/LtCzCnpMNB7Iq3V/9RVmkUOV0sox9RiNXDle+aa3T2B87fJwfUzptKATZ\n5OcjbA6qqmECGPmDLNPFdpH9isfyWMUsvHRYGn55fwP38g/yMjZupFtiqWPJ\n22R2jMSTg/ni5yyTpEQlkjH/o2kaqmlrJsgaLX4jbK+hYXKHQzg0loE/0thi\nDnktO4ywGcdQpZnFn3L/WuAMwauAca81Otd4FfwvOCW8EiNhcXTk4EVpCs/E\nhgE+U5ClvIAW5c7SLBQhVV0P2FuaBUZ0cC9rWaA0i1ySPROKFsrcDaCAuS80\nFZ5NClxpLEO0+mosTZ/mAtGLeMHrLlmikizvmHXso2VJIoidmybc78/ZpOcO\nBzroS6/laUWhnRsvV1M0C/hOfluFg34P+egb/VcVnbskjRMaRI6Ra+0h/L5p\npv8tzLFLYmq1J/ggPd6yNrOwS3QGzE0ZuICo6hAXFETVKY7iLB0N471yScM5\nYaB8+luUuAVglF32P6SkyKp2mrqrfIvVoggzmamhodICoU3aLY/UiG6CdLny\nSt+i\r\n=rLPi\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC/YtEbBvZKERT2sxKDHXaQBz5wgcJhLf7FXZ7/9eynPQIhAOzLP2XIWOqGMkz56Osf19VbuqQ0c18vlFeLPCx3LVsS"}]},"maintainers":[{"email":"github@sellside.com","name":"jonschlinkert"},{"email":"contact@svachon.com","name":"stevenvachon"},{"email":"trysound@yandex.ru","name":"trysound"}],"_npmUser":{"name":"trysound","email":"trysound@yandex.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object_4.1.1_1595573715637_0.6347161567543831"},"_hasShrinkwrap":false},"5.0.0":{"name":"is-plain-object","description":"Returns true if an object was created by the `Object` constructor, or Object.create(null).","version":"5.0.0","homepage":"https://github.com/jonschlinkert/is-plain-object","author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Osman Nuri Okumuş","url":"http://onokumus.com"},{"name":"Steven Vachon","url":"https://svachon.com"},{"url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Bogdan Chadkin","url":"https://github.com/TrySound"}],"repository":{"type":"git","url":"https://github.com/jonschlinkert/is-plain-object.git"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"license":"MIT","main":"dist/is-plain-object.js","module":"dist/is-plain-object.mjs","types":"is-plain-object.d.ts","exports":{".":{"import":"./dist/is-plain-object.mjs","require":"./dist/is-plain-object.js"},"./package.json":"./package.json"},"engines":{"node":">=0.10.0"},"scripts":{"build":"rollup -c","test_browser":"mocha-headless-chrome --args=disable-web-security -f test/browser.html","test_node":"mocha -r esm","test":"npm run test_node && npm run build && npm run test_browser","prepare":"rollup -c"},"devDependencies":{"chai":"^4.2.0","esm":"^3.2.22","gulp-format-md":"^1.0.0","mocha":"^6.1.4","mocha-headless-chrome":"^3.1.0","rollup":"^2.22.1"},"keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"verb":{"toc":false,"layout":"default","tasks":["readme"],"plugins":["gulp-format-md"],"related":{"list":["is-number","isobject","kind-of"]},"lint":{"reflinks":true}},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2014-2017, Jon Schlinkert.\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n","_id":"is-plain-object@5.0.0","dist":{"shasum":"4427f50ab3429e9025ea7d52e9043a9ef4159344","integrity":"sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==","tarball":"https://mirrors.huaweicloud.com/repository/npm/is-plain-object/-/is-plain-object-5.0.0.tgz","fileCount":8,"unpackedSize":9158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfWQMLCRA9TVsSAnZWagAAbRYQAKQJLFQphXNDxc6H/B1u\n9dBvAqV0kSdebj3S054eyEsQXjJ+WZ2GTQQEiwLenikkNNDUmOkbZxNm2jtw\nzmaZM+RxrYgG8CkDvPO2Iq0KHR5RwbPi6JIiSG/mGb3NkFwCXjdJzFQCujrp\no9fWdALUFfEc3umG4OH4pz2wUkP8zU6RHRfo9lOtEE3zqkyLqHbPSPwfLGcA\nmEmsSPSTFg4+12l7iN1B7UFsyDuLlA2m/t/CLQaPBuum1jjjJpul3Eb4mV2q\ntsi9s8L63EafxM17xR8OQoGowAxw4q3gAADEtx/oR4jld8n2vu3TKDCeG0CP\nlZAEX8psMnqrx+CAiHY2NrC5sXKXx3z6e/h6g0MlJ74wlYZRZYLro+vQDJLM\nOHwfMcGzRKKz/ztHwMl5OaCIx1jURFK8YX0+VZi/VEmNom/LX9tUcpJm8heo\n+4uPTCo78K02AGlcvxNhpPwOI0KfgeZxVQff/D9ZU3AlBqTOqpzVsMAvNswI\nSCus5AV8kwBPyI2IIRZkmlJ5I5S0OS7CUlpJ7QFtaqQmHlq1uxZ2OF3Onrq+\nQa4HxsDPq1T1q1wGMnUJPGZKP1wWTSmQ94Uehz0IN4p7qo6+ifBr5nq6xpxr\ny4eALo3qYuHnQ0amaiOESVMw4zVbAh1f3d6Scp8uyjT22utICnNO0dioz5Sx\nM9nC\r\n=QWWU\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCk7Geh9U3CeUw2l/8l+DV8BI0RwR8Y86gVNGYF3v/mCwIgAJVlWH+CzM1p/dJIDN3IlN0Yg39kZwuJk3qNXX794vQ="}]},"maintainers":[{"name":"stevenvachon","email":"contact@svachon.com"},{"name":"trysound","email":"trysound@yandex.ru"},{"name":"jonschlinkert","email":"github@sellside.com"}],"_npmUser":{"name":"trysound","email":"trysound@yandex.ru"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/is-plain-object_5.0.0_1599669003462_0.7889028160747054"},"_hasShrinkwrap":false}},"readme":"# is-plain-object [![NPM version](https://img.shields.io/npm/v/is-plain-object.svg?style=flat)](https://www.npmjs.com/package/is-plain-object) [![NPM monthly downloads](https://img.shields.io/npm/dm/is-plain-object.svg?style=flat)](https://npmjs.org/package/is-plain-object) [![NPM total downloads](https://img.shields.io/npm/dt/is-plain-object.svg?style=flat)](https://npmjs.org/package/is-plain-object) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/is-plain-object.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/is-plain-object)\n\n> Returns true if an object was created by the `Object` constructor, or Object.create(null).\n\nPlease consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support.\n\n## Install\n\nInstall with [npm](https://www.npmjs.com/):\n\n```sh\n$ npm install --save is-plain-object\n```\n\nUse [isobject](https://github.com/jonschlinkert/isobject) if you only want to check if the value is an object and not an array or null.\n\n## Usage\n\nwith es modules\n```js\nimport { isPlainObject } from 'is-plain-object';\n```\n\nor with commonjs\n```js\nconst { isPlainObject } = require('is-plain-object');\n```\n\n**true** when created by the `Object` constructor, or Object.create(null).\n\n```js\nisPlainObject(Object.create({}));\n//=> true\nisPlainObject(Object.create(Object.prototype));\n//=> true\nisPlainObject({foo: 'bar'});\n//=> true\nisPlainObject({});\n//=> true\nisPlainObject(null);\n//=> true\n```\n\n**false** when not created by the `Object` constructor.\n\n```js\nisPlainObject(1);\n//=> false\nisPlainObject(['foo', 'bar']);\n//=> false\nisPlainObject([]);\n//=> false\nisPlainObject(new Foo);\n//=> false\nisPlainObject(Object.create(null));\n//=> false\n```\n\n## About\n\n
\nContributing\n\nPull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).\n\n
\n\n
\nRunning Tests\n\nRunning and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command:\n\n```sh\n$ npm install && npm test\n```\n\n
\n\n
\nBuilding docs\n\n_(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_\n\nTo generate the readme, run the following command:\n\n```sh\n$ npm install -g verbose/verb#dev verb-generate-readme && verb\n```\n\n
\n\n### Related projects\n\nYou might also be interested in these projects:\n\n* [is-number](https://www.npmjs.com/package/is-number): Returns true if a number or string value is a finite number. Useful for regex… [more](https://github.com/jonschlinkert/is-number) | [homepage](https://github.com/jonschlinkert/is-number \"Returns true if a number or string value is a finite number. Useful for regex matches, parsing, user input, etc.\")\n* [isobject](https://www.npmjs.com/package/isobject): Returns true if the value is an object and not an array or null. | [homepage](https://github.com/jonschlinkert/isobject \"Returns true if the value is an object and not an array or null.\")\n* [kind-of](https://www.npmjs.com/package/kind-of): Get the native type of a value. | [homepage](https://github.com/jonschlinkert/kind-of \"Get the native type of a value.\")\n\n### Contributors\n\n| **Commits** | **Contributor** | \n| --- | --- | \n| 19 | [jonschlinkert](https://github.com/jonschlinkert) | \n| 6 | [TrySound](https://github.com/TrySound) | \n| 6 | [stevenvachon](https://github.com/stevenvachon) | \n| 3 | [onokumus](https://github.com/onokumus) | \n| 1 | [wtgtybhertgeghgtwtg](https://github.com/wtgtybhertgeghgtwtg) | \n\n### Author\n\n**Jon Schlinkert**\n\n* [GitHub Profile](https://github.com/jonschlinkert)\n* [Twitter Profile](https://twitter.com/jonschlinkert)\n* [LinkedIn Profile](https://linkedin.com/in/jonschlinkert)\n\n### License\n\nCopyright © 2019, [Jon Schlinkert](https://github.com/jonschlinkert).\nReleased under the [MIT License](LICENSE).\n\n***\n\n_This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.8.0, on April 28, 2019._\n","maintainers":[{"name":"stevenvachon","email":"contact@svachon.com"},{"name":"trysound","email":"trysound@yandex.ru"},{"name":"jonschlinkert","email":"github@sellside.com"}],"time":{"modified":"2023-07-12T19:12:32.135Z","created":"2014-09-21T22:41:50.073Z","0.1.0":"2014-09-21T22:41:50.073Z","1.0.0":"2015-02-25T07:49:39.188Z","2.0.0":"2015-04-29T12:57:28.225Z","2.0.1":"2015-05-28T08:02:18.730Z","2.0.2":"2017-05-27T19:53:30.152Z","2.0.3":"2017-05-30T14:06:48.757Z","2.0.4":"2017-07-11T22:41:10.371Z","3.0.0":"2019-04-30T20:53:56.159Z","3.0.1":"2020-06-27T08:06:19.703Z","4.0.0":"2020-07-21T00:09:53.219Z","4.1.0":"2020-07-21T10:59:40.572Z","4.1.1":"2020-07-24T06:55:15.761Z","5.0.0":"2020-09-09T16:30:03.627Z"},"homepage":"https://github.com/jonschlinkert/is-plain-object","keywords":["check","is","is-object","isobject","javascript","kind","kind-of","object","plain","type","typeof","value"],"repository":{"type":"git","url":"https://github.com/jonschlinkert/is-plain-object.git"},"author":{"name":"Jon Schlinkert","url":"https://github.com/jonschlinkert"},"bugs":{"url":"https://github.com/jonschlinkert/is-plain-object/issues"},"readmeFilename":"README.md","users":{"dfcreative":true,"arttse":true,"rochejul":true,"d-band":true,"ericmorand":true,"flumpus-dev":true},"license":"MIT","contributors":[{"name":"Jon Schlinkert","url":"http://twitter.com/jonschlinkert"},{"name":"Osman Nuri Okumuş","url":"http://onokumus.com"},{"name":"Steven Vachon","url":"https://svachon.com"},{"url":"https://github.com/wtgtybhertgeghgtwtg"},{"name":"Bogdan Chadkin","url":"https://github.com/TrySound"}]} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/6e/f5/5341ed657da52bd68173657f3471ef4a2c3959de253e5c6344fdbcfd1e719d9254e27aab1b9ac2c77bead3d975aaa29bcbd0f724918a8dee4b269b9a5edf b/frontend/.npm-cache/_cacache/content-v2/sha512/6e/f5/5341ed657da52bd68173657f3471ef4a2c3959de253e5c6344fdbcfd1e719d9254e27aab1b9ac2c77bead3d975aaa29bcbd0f724918a8dee4b269b9a5edf new file mode 100644 index 0000000..d8f69dc Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/6e/f5/5341ed657da52bd68173657f3471ef4a2c3959de253e5c6344fdbcfd1e719d9254e27aab1b9ac2c77bead3d975aaa29bcbd0f724918a8dee4b269b9a5edf differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/74/60/97cbdf706508af8e68c8aa285a050363af2af3e6bb9e258ede1df4ddc96122478b6d629b1a8dbd78ae7f6ce5de0363811c63afb8f94fe66804415c979d90 b/frontend/.npm-cache/_cacache/content-v2/sha512/74/60/97cbdf706508af8e68c8aa285a050363af2af3e6bb9e258ede1df4ddc96122478b6d629b1a8dbd78ae7f6ce5de0363811c63afb8f94fe66804415c979d90 new file mode 100644 index 0000000..cec1913 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/74/60/97cbdf706508af8e68c8aa285a050363af2af3e6bb9e258ede1df4ddc96122478b6d629b1a8dbd78ae7f6ce5de0363811c63afb8f94fe66804415c979d90 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/75/e1/b63f425f8eb4f1979d171820f27c8f7b646542c48a5f29899fcab439e27e453bfd207c8112f02fcfb25ea45950e8962cdc69ac592674d2d1048cc6f9ec05 b/frontend/.npm-cache/_cacache/content-v2/sha512/75/e1/b63f425f8eb4f1979d171820f27c8f7b646542c48a5f29899fcab439e27e453bfd207c8112f02fcfb25ea45950e8962cdc69ac592674d2d1048cc6f9ec05 new file mode 100644 index 0000000..08d2877 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/75/e1/b63f425f8eb4f1979d171820f27c8f7b646542c48a5f29899fcab439e27e453bfd207c8112f02fcfb25ea45950e8962cdc69ac592674d2d1048cc6f9ec05 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/77/ac/b5f14c3b80745b6e9f212782af31538cc9a07f10856b9043392feed689327c7a4da69c3f8aa0c7563b4b41349d4a86eea697886cb0ff4078371a16429269 b/frontend/.npm-cache/_cacache/content-v2/sha512/77/ac/b5f14c3b80745b6e9f212782af31538cc9a07f10856b9043392feed689327c7a4da69c3f8aa0c7563b4b41349d4a86eea697886cb0ff4078371a16429269 new file mode 100644 index 0000000..db949a2 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/77/ac/b5f14c3b80745b6e9f212782af31538cc9a07f10856b9043392feed689327c7a4da69c3f8aa0c7563b4b41349d4a86eea697886cb0ff4078371a16429269 @@ -0,0 +1 @@ +{"_id":"has-tostringtag","_rev":"3-e000ca38bc06031d385168717b376307","name":"has-tostringtag","dist-tags":{"latest":"1.0.2"},"versions":{"1.0.0":{"name":"has-tostringtag","version":"1.0.0","author":{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"},"funding":{"url":"https://github.com/sponsors/ljharb"},"contributors":[{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"}],"description":"Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.","license":"MIT","main":"index.js","exports":{".":"./index.js","./shams":"./shams.js","./package.json":"./package.json"},"scripts":{"prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run --silent lint","test":"npm run tests-only","posttest":"aud --production","tests-only":"npm run test:stock && npm run test:staging && npm run test:shams","test:stock":"nyc node test","test:staging":"nyc node --harmony --es-staging test","test:shams":"npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs","test:shams:corejs":"nyc node test/shams/core-js.js","test:shams:getownpropertysymbols":"nyc node test/shams/get-own-property-symbols.js","lint":"eslint --ext=js,mjs .","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/inspect-js/has-tostringtag.git"},"bugs":{"url":"https://github.com/inspect-js/has-tostringtag/issues"},"homepage":"https://github.com/inspect-js/has-tostringtag#readme","keywords":["javascript","ecmascript","symbol","symbols","tostringtag","Symbol.toStringTag"],"dependencies":{"has-symbols":"^1.0.2"},"devDependencies":{"@ljharb/eslint-config":"^17.6.0","aud":"^1.1.5","auto-changelog":"^2.3.0","core-js":"^2.6.12","eslint":"^7.32.0","get-own-property-symbols":"^0.9.5","nyc":"^10.3.2","safe-publish-latest":"^1.1.4","tape":"^5.3.0"},"engines":{"node":">= 0.4"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"gitHead":"011dfc074077ece0eaa7aa740bb4d50623dec774","_id":"has-tostringtag@1.0.0","_nodeVersion":"16.6.0","_npmVersion":"7.19.1","dist":{"integrity":"sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==","shasum":"7e133818a7d394734f941e73c3d3f9291e658b25","tarball":"https://mirrors.huaweicloud.com/repository/npm/has-tostringtag/-/has-tostringtag-1.0.0.tgz","fileCount":12,"unpackedSize":10887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhC/zdCRA9TVsSAnZWagAAh0YP/2Jft8cAPNb3ledjiN+i\nk5EoUUy9qk+4tP0EDAEIV0vTEMze3J4i5nAI99YsXuGgwWjpLUWdvI9dxZwD\n4ycWRkA/b2YZk+uEVfSF8fqTO8E8WsCxSGTdO/AFj6MFaey65MtI2Qv1Agad\n9JtFpd2nQAyWQbNM16u5l4YQ87Xoov0m8vZilyprUBj9c1dgXej8816pWfxj\nJSdQCoiYgrCw5iIAQBu1NZXU8DDstypf6IsZFBraVKWnw9omBhGFjG+596ok\n/hfDlFByNhzOHyqm2bKwggO1jWKLxqapRXIqUoyYvSPe7uabhbGL7o9vynR9\n8dKejfkUxFTSdVoR+uCCxW/JTcP6IQpcP7P6jvIwE+SqUXpp16YBOXpaQT71\nyne2+aQMhJNjMgaBhDXRbKnQH9IBKL9a/JUja+ATWAAsWVGaOFitCclR8JQA\nIPY0ylCl+nFgzPZFWCWlcNP8AhmebnZaQiU0JJl2UcACH1H01HDvlTcrf85d\nUGBb6tHNACSRcmA9kzBLzPC3+xIiQDAKan72TtJCpcHGx3neWHfIlV9RtXaY\nw4iN3NUSvFnWo0Sk+bdgV2Lm3SfqxiCe+eIrnU8h1RGkRi0WDu4KwvB84p2J\nv6DLPmj7+IVth2LnvFFjssedV/dNOPpusA2KqsJ1XCaQImQFIKE9Ns2txH1C\n5cwN\r\n=76y9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF1IQW6z6akiZGUZ8D4cgtUGGJYWgczJ7wTQtLJy+tnAAiBtLLAbSDafCePYq8rrp0DQ3YxULeZRewPv+y9AX3hgsw=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/has-tostringtag_1.0.0_1628175581281_0.9026137242597037"},"_hasShrinkwrap":false},"1.0.1":{"name":"has-tostringtag","version":"1.0.1","author":{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"},"funding":{"url":"https://github.com/sponsors/ljharb"},"contributors":[{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"}],"description":"Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.","license":"MIT","main":"index.js","types":"./index.d.ts","exports":{".":[{"types":"./index.d.ts","default":"./index.js"},"./index.js"],"./shams":[{"types":"./shams.d.ts","default":"./shams.js"},"./shams.js"],"./package.json":"./package.json"},"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run --silent lint","test":"npm run tests-only","posttest":"aud --production","tests-only":"npm run test:stock && npm run test:shams","test:stock":"nyc node test","test:staging":"nyc node --harmony --es-staging test","test:shams":"npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs","test:shams:corejs":"nyc node test/shams/core-js.js","test:shams:getownpropertysymbols":"nyc node test/shams/get-own-property-symbols.js","lint":"eslint --ext=js,mjs .","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/inspect-js/has-tostringtag.git"},"bugs":{"url":"https://github.com/inspect-js/has-tostringtag/issues"},"homepage":"https://github.com/inspect-js/has-tostringtag#readme","keywords":["javascript","ecmascript","symbol","symbols","tostringtag","Symbol.toStringTag"],"devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/has-symbols":"^1.0.2","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","core-js":"^2.6.12","eslint":"=8.8.0","get-own-property-symbols":"^0.9.5","has-symbols":"^1.0.3","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.4","typescript":"next"},"engines":{"node":">= 0.4"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"_id":"has-tostringtag@1.0.1","gitHead":"ba6941b9021b04f26bd4ba27ad25881b4660c9de","_nodeVersion":"21.6.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-6J4rC9ROz0UkOpjn0BRtSSqlewDTDYJNQvy8N8RSrPCduUWId1o9BQPEVII/KKBqRk/ZIQff1YbRkUDCH2N5Sg==","shasum":"5d242715a441a1c9a46d543e6dbead8defdfc226","tarball":"https://mirrors.huaweicloud.com/repository/npm/has-tostringtag/-/has-tostringtag-1.0.1.tgz","fileCount":16,"unpackedSize":17364,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEQD0z8/EDu3xUfK0Hg35JMg0nJ8hzkFMhOMYyfldsWLAiEA9g35sZ0/MtEWQ1ZWxmtjKFKfntdzxeCrBPsmOh2+rlA="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/has-tostringtag_1.0.1_1706806405748_0.42161118170638745"},"_hasShrinkwrap":false},"1.0.2":{"name":"has-tostringtag","version":"1.0.2","author":{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"},"funding":{"url":"https://github.com/sponsors/ljharb"},"contributors":[{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"}],"description":"Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.","license":"MIT","main":"index.js","types":"./index.d.ts","exports":{".":[{"types":"./index.d.ts","default":"./index.js"},"./index.js"],"./shams":[{"types":"./shams.d.ts","default":"./shams.js"},"./shams.js"],"./package.json":"./package.json"},"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run --silent lint","test":"npm run tests-only","posttest":"aud --production","tests-only":"npm run test:stock && npm run test:shams","test:stock":"nyc node test","test:staging":"nyc node --harmony --es-staging test","test:shams":"npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs","test:shams:corejs":"nyc node test/shams/core-js.js","test:shams:getownpropertysymbols":"nyc node test/shams/get-own-property-symbols.js","lint":"eslint --ext=js,mjs .","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/inspect-js/has-tostringtag.git"},"bugs":{"url":"https://github.com/inspect-js/has-tostringtag/issues"},"homepage":"https://github.com/inspect-js/has-tostringtag#readme","keywords":["javascript","ecmascript","symbol","symbols","tostringtag","Symbol.toStringTag"],"devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/has-symbols":"^1.0.2","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","core-js":"^2.6.12","eslint":"=8.8.0","get-own-property-symbols":"^0.9.5","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.4","typescript":"next"},"engines":{"node":">= 0.4"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"dependencies":{"has-symbols":"^1.0.3"},"_id":"has-tostringtag@1.0.2","gitHead":"690da6a3afbddcf018aa162c42869dcf4f8375f1","_nodeVersion":"21.6.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==","shasum":"2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc","tarball":"https://mirrors.huaweicloud.com/repository/npm/has-tostringtag/-/has-tostringtag-1.0.2.tgz","fileCount":16,"unpackedSize":17603,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDwaEewk4FAepBQKCDj0seyR7ZKezvK5CJ0YvtztxxqFAiEAkN4iJZyh2p8ZPX79StbnsrdpN2J/uwZPWwysiZ1rbGw="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/has-tostringtag_1.0.2_1706823839933_0.6747160079598669"},"_hasShrinkwrap":false}},"time":{"created":"2021-08-05T14:59:41.280Z","1.0.0":"2021-08-05T14:59:41.457Z","modified":"2024-02-01T21:44:00.323Z","1.0.1":"2024-02-01T16:53:25.940Z","1.0.2":"2024-02-01T21:44:00.130Z"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"description":"Determine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.","homepage":"https://github.com/inspect-js/has-tostringtag#readme","keywords":["javascript","ecmascript","symbol","symbols","tostringtag","Symbol.toStringTag"],"repository":{"type":"git","url":"git+https://github.com/inspect-js/has-tostringtag.git"},"contributors":[{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"}],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"},"bugs":{"url":"https://github.com/inspect-js/has-tostringtag/issues"},"license":"MIT","readme":"# has-tostringtag [![Version Badge][2]][1]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![dependency status][5]][6]\n[![dev dependency status][7]][8]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][11]][1]\n\nDetermine if the JS environment has `Symbol.toStringTag` support. Supports spec, or shams.\n\n## Example\n\n```js\nvar hasSymbolToStringTag = require('has-tostringtag');\n\nhasSymbolToStringTag() === true; // if the environment has native Symbol.toStringTag support. Not polyfillable, not forgeable.\n\nvar hasSymbolToStringTagKinda = require('has-tostringtag/shams');\nhasSymbolToStringTagKinda() === true; // if the environment has a Symbol.toStringTag sham that mostly follows the spec.\n```\n\n## Supported Symbol shams\n - get-own-property-symbols [npm](https://www.npmjs.com/package/get-own-property-symbols) | [github](https://github.com/WebReflection/get-own-property-symbols)\n - core-js [npm](https://www.npmjs.com/package/core-js) | [github](https://github.com/zloirock/core-js)\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/has-tostringtag\n[2]: https://versionbadg.es/inspect-js/has-tostringtag.svg\n[5]: https://david-dm.org/inspect-js/has-tostringtag.svg\n[6]: https://david-dm.org/inspect-js/has-tostringtag\n[7]: https://david-dm.org/inspect-js/has-tostringtag/dev-status.svg\n[8]: https://david-dm.org/inspect-js/has-tostringtag#info=devDependencies\n[11]: https://nodei.co/npm/has-tostringtag.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/has-tostringtag.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/has-tostringtag.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=has-tostringtag\n[codecov-image]: https://codecov.io/gh/inspect-js/has-tostringtag/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/has-tostringtag/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-tostringtag\n[actions-url]: https://github.com/inspect-js/has-tostringtag/actions\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/78/2a/98dae9df64ae857b4d80c059431cb7e8c8416b78feab0700193082752ee8267cc895830583625a7562c46e81a3ed20260e69b575896c5774fd76bbd538dd b/frontend/.npm-cache/_cacache/content-v2/sha512/78/2a/98dae9df64ae857b4d80c059431cb7e8c8416b78feab0700193082752ee8267cc895830583625a7562c46e81a3ed20260e69b575896c5774fd76bbd538dd new file mode 100644 index 0000000..bcb8edb Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/78/2a/98dae9df64ae857b4d80c059431cb7e8c8416b78feab0700193082752ee8267cc895830583625a7562c46e81a3ed20260e69b575896c5774fd76bbd538dd differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/79/18/d0a5e27e5240f6b26b337261869ceba31f8457f1c1ad4dc68bc5e48913e30cf68587077a08c58882f4f988fb594c14a9b75ddc85922d7f4f3feab6c5fef9 b/frontend/.npm-cache/_cacache/content-v2/sha512/79/18/d0a5e27e5240f6b26b337261869ceba31f8457f1c1ad4dc68bc5e48913e30cf68587077a08c58882f4f988fb594c14a9b75ddc85922d7f4f3feab6c5fef9 new file mode 100644 index 0000000..e55fcdc --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/79/18/d0a5e27e5240f6b26b337261869ceba31f8457f1c1ad4dc68bc5e48913e30cf68587077a08c58882f4f988fb594c14a9b75ddc85922d7f4f3feab6c5fef9 @@ -0,0 +1 @@ +{"_id":"nanopop","_rev":"14-23d52b63ad3fa8cb8e6c847199f0fe86","name":"nanopop","dist-tags":{"latest":"2.4.2"},"versions":{"1.0.0":{"name":"nanopop","version":"1.0.0","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.js","lint":"eslint ./src/**/*.ts","lint:fix":"eslint ./src/**/*.ts --fix"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.2","@types/ws":"^7.2.4","@typescript-eslint/eslint-plugin":"^2.31.0","@typescript-eslint/parser":"^2.31.0","@wessberg/rollup-plugin-ts":"^1.2.24","eslint":"^6.8.0","eslint-config-simon":"^1.3.0","rollup":"^2.8.2","rollup-plugin-terser":"^5.3.0","typescript":"^3.8.3"},"gitHead":"6f8dbfa1a5176ea227edeebb170c1d840f4c6fa9","_id":"nanopop@1.0.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-Ohw+OtS3yHAAdLTK6/K3OV7kBFF+IapBU1Yek573zywTTBhBv0q8moK2fKaSYON/O06KRYsSKXSNHCSh8DZKgg==","shasum":"6f2f6dae602625868a4c18c390b5f7cb74ff393f","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-1.0.0.tgz","fileCount":10,"unpackedSize":40200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetXogCRA9TVsSAnZWagAAjtsP/A64Td8VS4NuCXjO2X7l\nG5lCAaHd+ODU36K4GCnAmNInwJ49hqhnHNEm8g1AWAqeuQGw/69eQG0BGFOG\nOCt9jDnybOtPTMTtvPTeR1JmzbuO+L4s8XyX5DhqLAfgMFJmaTU+Wxh1SROv\n+qFLoMJjfluDtbZKADj6pbftGNMlZ5gUkKGVICTgIaBROwdraC6zEOxa4szI\nbRiORel1WrpM9NKMFoMRYusGUoHN9x76lNDeLcKlkH0bmTXjtNGqCqybP06R\nArN3rRhX6dSq8QFk2Pox0BrPwTPSRKKzhT/hrSgN1zN2zy0I7ehe2dtfA3by\nVnTkrecEWe92ktfbNaU2ju2pQDgoBXcAWirxk6HiRud1nwnDD2M+GX8oMCvm\nRhgF7BLikdIEzZyW4NMDaqbDBKEnZnsyLpCYTzcAaBJCQuEhiBZ5XW5u8T7l\nGgoEqnCOxH7WKrclClfZ63f3lp4FRoV6ZlwqCr3lnV6+4VZp8ZkGYVye8nSA\nEZRlRR9xqUtjwhtRWGTz3fQn1UWYr5zQfsXgfONPAUQajNJ3yokVqLjD7+of\ny9LF9TqYqkZY+6DxoEz51mel3sLWSrK+7LW52ewwfn0k1D7NFs7iFNB6ANRl\neUvl3McMGgUziVygKT1lbViMLsqTAckVgjJeEmGN8euV491cKmzvr8nfDImw\nY9Dd\r\n=NYn+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAO0+UBCTQlORJo6hpW9X6NOIdk441WopANloYbe3MsnAiA9tU1fyFgqTDO4MXfA6P5kzhwB2YQMabFyKIFLfV99VA=="}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_1.0.0_1588951584461_0.4075464833446152"},"_hasShrinkwrap":false},"1.1.0":{"name":"nanopop","version":"1.1.0","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","lint":"eslint ./src/**/*.ts ./tests/**/*.js","lint:fix":"eslint ./src/**/*.ts ./tests/**/*.js --fix","test":"jest --runInBand","dry":"npm run lint:fix && npm run build && npm run test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.2","@types/ws":"^7.2.4","@typescript-eslint/eslint-plugin":"^2.31.0","@typescript-eslint/parser":"^2.31.0","@wessberg/rollup-plugin-ts":"^1.2.24","concurrently":"^5.2.0","eslint":"^6.8.0","eslint-config-simon":"^1.3.0","jest":"^26.0.1","jest-environment-puppeteer":"^4.4.0","jest-image-snapshot":"^3.1.0","jest-puppeteer":"^4.4.0","puppeteer":"^3.0.4","rollup":"^2.8.2","rollup-plugin-terser":"^5.3.0","serve":"^11.3.0","typescript":"^3.8.3"},"gitHead":"d5c3599670b47b53b86606ab9f6b339b2379c519","_id":"nanopop@1.1.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-dAW/h9DnCaO1prRtmYEE3q07BKDQVMaa+9C6e1kE1T3NyPidrrMn90DTr16Ij9HP8y4jsgeahFNVHv7GzSQ9Kg==","shasum":"8a4e427a90078c681c68793330feee4b80fb3cec","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-1.1.0.tgz","fileCount":10,"unpackedSize":38156,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetsovCRA9TVsSAnZWagAAYGIQAKHuHjRuhfurDkCbQjjo\nBypxCe6orDbMSBLIDVjZxUi+KcXsKL5g8I9uk8w3yFdambLczUxzusAqPBI8\nm9Ql03HwM4u6uA9YKI+xtQXWnf8nr5uZcxInUiB2uTpjokKzNLOEMaetYCHm\nfLgOcR447p60RbiuvF+H4Y2O2e+z4cHeF0aS0a2N5QQogZH+efqN2yIwQ3A6\nhH+GUIMBZQ5DTA9wdbrVNPI3FtWYwP646yOQ0cW2gN+rHbzE4m8Lu0XgxbnT\np1r/WZXwSMpCscQ+VXcqdKrch5Ks1/tunwn4I95TGuJIhohZT+szmeppKRkW\nvM+XWM/M3jtZltF8CcBLsQLUCHA8Z0vRaxhYTIoTwLJazGr6SObS02wdOkTi\nvp/H8m2sStjZR4g3vBSiLwYZmivRLmEs9ttFDsbMYVePvSTOZ+xLgvNVcUpm\nxQT1b+I/j0JEnj/iClu6dc7aI4UNMoW05NazvsTVId/sDZf9iQvtZOamERlN\nKmDuOsIG+6GLE2EBLK3YN9nLpkYJ7gTiKiNzhZGIMKHNP97j5XoKff/TQr1L\n7irh/Cra0RWEFUpmFP2hfYRnEtsouYTm3Lka+MR4EkHUzgnOTR0+89CQvoCf\nBRzywW3lWovBKedZ5sEtC0q0gBVde1w+QzuqTqsuILvEtNgcFvNauPbVDNLD\nvnid\r\n=Sa9W\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGAaajJ27f1P6s0XAHbiK33JbCOeLhdDcC0JjvcImivWAiEAkLqJ0vkAvofD23I4bZqKaPt2g2gTol58FucphitmNVo="}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_1.1.0_1589037614901_0.050941344912968756"},"_hasShrinkwrap":false},"1.1.1":{"name":"nanopop","version":"1.1.1","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","lint":"eslint ./src/**/*.ts ./tests/**/*.js","lint:fix":"eslint ./src/**/*.ts ./tests/**/*.js --fix","test":"jest --runInBand","dry":"npm run lint:fix && npm run build && npm run test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.2","@types/ws":"^7.2.4","@typescript-eslint/eslint-plugin":"^2.31.0","@typescript-eslint/parser":"^2.31.0","@wessberg/rollup-plugin-ts":"^1.2.24","concurrently":"^5.2.0","eslint":"^6.8.0","eslint-config-simon":"^1.3.0","jest":"^26.0.1","jest-environment-puppeteer":"^4.4.0","jest-image-snapshot":"^3.1.0","jest-puppeteer":"^4.4.0","puppeteer":"^3.0.4","rollup":"^2.8.2","rollup-plugin-terser":"^5.3.0","serve":"^11.3.0","typescript":"^3.8.3"},"gitHead":"10fc08010b8d2dea4fbb5da13b883965a2a3d24b","_id":"nanopop@1.1.1","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-8QChdBW0EwvGUID2ECNBAZdyrdxq8hWfFIopVVRmNp4Lm+DUGuYo7eca+YtfiTpZbkf2DGeuMomyn7cAfqJdRQ==","shasum":"a7b957bfd33e1e254a7311f610e128bde17b82d0","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-1.1.1.tgz","fileCount":10,"unpackedSize":38151,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJettL1CRA9TVsSAnZWagAAO1MQAIEGvARdKsSuDtViti+D\nxvpQONFfpuWqu7pIth4jwQUh2U2YdbycxkVoMaWNoLO1HuLo965YvurchfCS\nALFkLqQbpM62TunVk1E8I6bjhGXW/VoIbmv4M9rbwarNCgql4uPdTzsWmcKi\nQILC7fhHHI/A+t6B6agYhfgh6vBA3Vb/Q3uP7nrCQZ3PbhEqGWRJcwqRbn+D\nBZuihlgzDJlRWZLg4CqwqxAZGo84A1Q0+3O9W7yVa42svEaWJFE/eGLAfTXp\nFhegycNaxuP+2FC8aAEVK/oV2lYgmnliQ+NB0VCCDDhyuI+hpcsfwosLu5YD\n+GxYpsI2QevYNj5S2QYDbuY3YVkQgQ7QZxE9HQw7fbYNvHZSgRN+P2AFCQ62\nEz1RsOt3RgmnTHDDxw1CiW80awmJ6a9BT8i2+7OnKeL9qkfqJDhy8jr5osyi\nRin/WnXFdCfSt8FoO3OEfFnxG6WxFXQAtt4c5ck+UyMlTkKCIscCYYZ1II6Q\n8ZNmXkmRy4XDXX3sw3rFIBhYXbHqphBhRhOU1BhW7/Zb1NjxEjLoT/bcVQNB\njGLKjXQzqGr9HL0Lwkb1rM/9IWRJ5/3z8dYNPNCA5JF9I9XnA1zvHKVnu/TN\ny0D26mrvVm5IhNE4avHlU4IS/QIrU1ROzIr4b9rOLOfquJmsXwfLq1TMO94e\nkfqZ\r\n=+hxE\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID9hk1fheJRGAZdoUFyCIJL+uh1CfDVSvQIMRIIGspqUAiEA3DQDlOFB2TA+6tqOMs1ICc4knSWfpR9G94UqkDQDubM="}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_1.1.1_1589039861050_0.14222486613963015"},"_hasShrinkwrap":false},"1.1.2":{"name":"nanopop","version":"1.1.2","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","lint":"eslint ./src/**/*.ts ./tests/**/*.js","lint:fix":"eslint ./src/**/*.ts ./tests/**/*.js --fix","test":"jest --runInBand","dry":"npm run lint:fix && npm run build && npm run test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.2","@types/ws":"^7.2.4","@typescript-eslint/eslint-plugin":"^2.31.0","@typescript-eslint/parser":"^2.31.0","@wessberg/rollup-plugin-ts":"^1.2.24","concurrently":"^5.2.0","eslint":"^6.8.0","eslint-config-simon":"^1.3.0","jest":"^26.0.1","jest-environment-puppeteer":"^4.4.0","jest-image-snapshot":"^3.1.0","jest-puppeteer":"^4.4.0","puppeteer":"^3.0.4","rollup":"^2.8.2","rollup-plugin-terser":"^5.3.0","serve":"^11.3.0","typescript":"^3.8.3"},"gitHead":"908cbc4fdbd5b0673e0a7cf3f68eb6621698cc1e","_id":"nanopop@1.1.2","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-+CLTSo/z/uj41iG5SdB9LqQ2tNUOyUddu4ldkJs/mpYjYjM7kxV8iBxCapjo5OK0jGwJsFaAXvktAEjfFBJKrQ==","shasum":"f0179a4622d02090f276036cf147320d4c15f949","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-1.1.2.tgz","fileCount":10,"unpackedSize":40110,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuXVYCRA9TVsSAnZWagAArrAQAIZXYvHfuJn9ureZnSYK\nKTvO2eHZ9+ZvMp5ZBw1zBavw5AXJX43CgzQAliIOq/OPAD1OsiEIV4UjFetl\nZfqQKbVLDKfxb5g3wqzzo/qjY06+eOLUV1/cdb/jZSQNCZhTRIUbpGgF0amx\nmS/JxD/PyaAW2xBlzrwuwrxF72IAzlgloX1CpSPmB1w12F9P99bBgYKGqMTQ\nsuQ1rGDBfUcXYp+psugNoET32pDsjcxxocY6mKbZvyvy+0bfyrMj9ttpRM4z\nC7Cbf0Y77IJVpI3590f8eNtwJBCEYCWs+dhEJPIrNM1VbmdFVSi0i3whjAY1\noRus0X0qIpra6hZ7KclXZiMneGLUbZztKoobXngs+OjWfTzKzSvYmI/APtQf\nw9TvnLoIHUi/sqNDJpds2gMFZoB/AR0jifzdYBIn39eDCybCwzSe+KB+Z+hl\n5LxQAy1wAGrYdWx09B9fgdDpvL2NlDeWdJ/ybwkkKVurdAk8GAsuiLllvw5V\nlyUONqD1IvAoo+Fuilyt7GHEnAYrVk9V5oHo8v9uWZ2nkITCe7YMME5dMoV+\nASoe9Fzs/NREiUP6lYuvgVGRJJxb666UValjJljb5i1sr5DLkRrCqVy6IWr2\n/L1R3z5NQNdWjfHDsxnL4L5CrPaMA4UGu40ZizoJWSPCKlIm6NKLStgFlhbY\nmDX+\r\n=PrML\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD0oE1NVvG3JONk4YI3xPV33bWdE7j0nxkOjxmXDo2aUQIhAMHAdU6oLCGI+pTrosoAjhcbCRjBtrpa0qc2Kxbp8ojV"}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_1.1.2_1589212504400_0.08782661581114892"},"_hasShrinkwrap":false},"1.1.3":{"name":"nanopop","version":"1.1.3","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","lint":"eslint ./src/**/*.ts ./tests/**/*.js","lint:fix":"eslint ./src/**/*.ts ./tests/**/*.js --fix","test":"jest --runInBand","dry":"npm run lint:fix && npm run build && npm run test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.2","@types/ws":"^7.2.4","@typescript-eslint/eslint-plugin":"^2.31.0","@typescript-eslint/parser":"^2.31.0","@wessberg/rollup-plugin-ts":"^1.2.24","concurrently":"^5.2.0","eslint":"^6.8.0","eslint-config-simon":"^1.3.0","jest":"^26.0.1","jest-environment-puppeteer":"^4.4.0","jest-image-snapshot":"^3.1.0","jest-puppeteer":"^4.4.0","puppeteer":"^3.0.4","rollup":"^2.8.2","rollup-plugin-terser":"^5.3.0","serve":"^11.3.0","typescript":"^3.8.3"},"gitHead":"778970940d9e30522ef3877952bb8121f74818b2","_id":"nanopop@1.1.3","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-U5SqI9gMCnK4r/wp/GsVihCOUr7mW9+pAlJKqOSTW5hvcSPX/rg18tmSaXF9ATRZh6n3FkheVmfcK5e7/uY07g==","shasum":"15df3c106e4203c87f3d4c3d7b721e694ff48831","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-1.1.3.tgz","fileCount":10,"unpackedSize":39957,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuXbRCRA9TVsSAnZWagAA/KMP/0DOLsbWn1ElgV8a8nZO\n00xRL/JmeQtm9mzxDl2l7+ZIUTyyGcb2D+3BTqxpl9KMyGXYu2uaYpcHDOjI\ndKkFSnyosAYB4W+Zoi3I2NL5SV3kYySe3R4ocZAHuHNu4eb9MOYZPauEDot6\n9zUzvCqzQBhUPXBdI3YfO5bw3UVjplKSFbSANq0ZuMgLnSclh0itEn1daV9z\nQ46qnL+gUe5vHfQuY2tMCTpBobuZz9Bb2ATQ8NFBgJy4T0CDzPdkcNLtTUJs\nNHjeOmlMVA+onScNYMm25SY/HU67Hle1+iOnl3WCoGv792rS6Dmz4uZbgufm\nScFL7nMJGlLhrHy903QS7/uMJ5Dk60b6Udcs7s9bsCkoDr1Gn2Jx/crtNwlT\nO95PD5zJjYnWKE8EzruHw5pDG1sZ/sDd6Z9NkO4U+HpEwqemzbQ5RZ2ba4Fj\n+VXpBseMvEyECevcWeBkRN3USarWt5qmY9uIuP2KUdo2RdOHPYny+hFNYe7t\nrHiGy00e6o7OfdBlKG0v9kEnih6pzVwbIfxb2r5Zeyp4heBO7tfOgOw3KcM7\nPysIEYVhZBZ3+VafLnQQrHm35YOJ1xw3oykHAyOPinPqeBO6TvfTVoLgzN7C\nN7SAhb2FfyIFK1Jnt7RltjGCxSv/QSETyOSWZifa8Sc4KKxEYwUhBHZBzKwx\nCCXq\r\n=fTxx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGXlLVTG/7NPwiOJpo3DdIUBj119zBliSfOmEhj8k/jZAiBxORjlyDgNdOfBBfBu9s+8ivi04phkYC4jy+cfWRtzEg=="}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_1.1.3_1589212880821_0.7087489223708681"},"_hasShrinkwrap":false},"1.2.0":{"name":"nanopop","version":"1.2.0","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","lint":"eslint ./src/**/*.ts ./tests/**/*.js","lint:fix":"eslint ./src/**/*.ts ./tests/**/*.js --fix","test":"jest --runInBand","dry":"npm run lint:fix && npm run build && npm run test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.2","@types/ws":"^7.2.4","@typescript-eslint/eslint-plugin":"^2.31.0","@typescript-eslint/parser":"^2.31.0","@wessberg/rollup-plugin-ts":"^1.2.24","concurrently":"^5.2.0","eslint":"^6.8.0","eslint-config-simon":"^1.3.0","jest":"^26.0.1","jest-environment-puppeteer":"^4.4.0","jest-image-snapshot":"^3.1.0","jest-puppeteer":"^4.4.0","puppeteer":"^3.0.4","rollup":"^2.8.2","rollup-plugin-terser":"^5.3.0","serve":"^11.3.0","typescript":"^3.8.3"},"gitHead":"c077a1c47e043eadb568d7954f96ff19494d69f2","_id":"nanopop@1.2.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-9/OocWI9r5G7uzGmLPfg5x3eVGFtLkJ9KcYgRxUkhVZC0n99e03PxKQFDbqIeHAV2JNflsswO2djuGFd0HJuUA==","shasum":"dea84faa62d0ab0447ac6bdac8831c255c05a305","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-1.2.0.tgz","fileCount":10,"unpackedSize":37706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeuo3VCRA9TVsSAnZWagAAGIkP/0bnzgqEpPYO4biM0I/o\nVs/Fs1kqxf+C8jONyelaNitwNGjfL8AhkR1+7rsyTrKFnUZqpsC1kK6jdhiU\nYaCTSljSacdplPGTy+LupbZDOawsY8Ee/39hCHYt+UzRmI+5nQ+JFlz42KFK\n20yye5uX301++WeCgL4LfuyjJwjKVDQKm3thEFYt2uPhj8KEErM8y94AaZRL\nTL4XhxoKyvPkS3iHe48oyVRJtdrYzcTl/sY1lpO/Ekp1tYOJwAQp3tAkw3yG\nFNMbburAtR9YwQjneV8baPKrNtYRZBMIMp0kxkcVPpNDwTA3viV5nFkx4f4X\nD19KZ7LmhNmSPmHGNJkxw9x1etsi5otq/XTsfiwCBWP8BIXWc3Yfb6kljnbx\nvrW689qnYWAKT9oJK58Vs0Vu6Bi/NivAXRk9tT1OvD3X6Laja67Y/ALzji4z\nS5tCJA/Vb/NKANdAc8hLw5dj7rLBEF4vg2MNU9Wf9GrgGm3u6I72Uz/JBhFv\nXsD3FsexFYlmQag9TboBEH93Z7Hj4oBT+SXPLjqDSDqN/CF7hBu+mSssgQ6S\nIf5ofy6ZZHMtaOzxUuUYorhUBkdAXPoPB+o77i5D8whw5YxycISL/AbM2zPY\nntUhMDjsqGYKef4NXBfOAJhroFvo21kcQRmPVF5ER2Sm4DPyGMSwjBwncvMo\nd86M\r\n=oasJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBB+3uHT8Yqg/OZ2jtQu7V7Xf1wOqxxbLHueFNn1979ZAiA0pZZKxrPsNh5jebP5ivhtE/YM9mNcFUIguB2hPYWnzQ=="}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_1.2.0_1589284308639_0.19190785879661654"},"_hasShrinkwrap":false},"1.3.0":{"name":"nanopop","version":"1.3.0","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","lint":"eslint ./src/**/*.ts ./tests/**/*.js","lint:fix":"eslint ./src/**/*.ts ./tests/**/*.js --fix","test":"jest"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.2","@types/ws":"^7.2.4","@typescript-eslint/eslint-plugin":"^2.34.0","@typescript-eslint/parser":"^2.34.0","@wessberg/rollup-plugin-ts":"^1.2.24","concurrently":"^5.2.0","eslint":"^7.0.0","eslint-config-simon":"^1.3.0","jest":"^26.0.1","jest-environment-puppeteer":"^4.4.0","jest-image-snapshot":"^4.0.0","jest-puppeteer":"^4.4.0","puppeteer":"^3.1.0","rollup":"^2.10.4","rollup-plugin-terser":"^5.3.0","serve":"^11.3.0","typescript":"^3.9.2"},"gitHead":"539de9558a113ca6548a0d7d316ae8c65d7817d5","_id":"nanopop@1.3.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.5","dist":{"integrity":"sha512-DQDhHyPhKLKrXOjVkChsAoWh/WpKuVINDKl4qvFbguqokRJWQBSNSlPzMS+Xy3yBQKeQ39rICMB2asDvdUiVxw==","shasum":"831df018169fb0a699d55a8d70a2ecd82abe7d00","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-1.3.0.tgz","fileCount":10,"unpackedSize":39152,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJew8mwCRA9TVsSAnZWagAA0CkP/1G5C4drTCXPyPDjFD9d\nNj66wG7BB/r80M7hU6rgb/dT5+HERczh8ZGuPbXV0htM8NKG4s+EeG5cMBTq\n/EhH8WZdDzzawHN7ZawYgTLuzFdwKa5VImvvu8ETip9svdQ4r9iem7H1dfVi\nrAhHNlKqBC0k8983vOSA2S0gcg1FAvtx0MVDzT+fztPl0UtGv6J5WXQFlEW1\nyhvjlTkKkvhHM2t4TtJkoV7MhxFv2pakajDCwSR8SM3WMAfeHij6SMjUmQaP\nWpbjLj//v55m0qVIDmh9KoXYj6wqQqkSTBFD+MU1FrzaVz+QsDkRSAO2RScL\nKwgyBKRYDr2vOts3L+lT5qADpltcWwTZfNtt9H2KOd2nshqB70wM+mJWxUbw\n7WzcikFxozMabIl9BIDq8nfp+IsbEe7JbCA7BfOf2WoGEhFYYfocn2r/iuEj\n59OKpC4cz6jiTs+7XNWL/Qnyh0URd48n1qDHBhN4luTcRqIR2bV2EShKhfJO\n1TVnXL9cMtC2J9IqG/JyyrqfdIlZuXbGtq1dUHYO4vWeUPdLU1RQxIXPY5Mw\n7dDAPUFVn8NZLki/FnESuqC0K7g7fM7BBLrmU6ZjbVgee1fWxlmJ6jUcceWX\nI58HEeql2CpnfcH7B8ibE4naYoB/SNeSFX0dguQpSOl8SWaVLuCOtQL1YFcx\nDbou\r\n=18GW\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDYIBz5uTwtuiHLc4XbyDeVgZU8hVO21nBAr/7/chsHUAiBGhQ36K/wYyqlp7Jqs/l/pcWGBXATulHOGxe7Bmv3f8w=="}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_1.3.0_1589889455579_0.9377187912622222"},"_hasShrinkwrap":false},"2.0.0":{"name":"nanopop","version":"2.0.0","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","lint":"eslint ./src/**/*.ts ./tests/**/*.js","lint:fix":"eslint ./src/**/*.ts ./tests/**/*.js --fix","test":"jest","dry":"npm run lint:fix && npm run build && npm test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.3","@types/ws":"^7.2.6","@typescript-eslint/eslint-plugin":"^3.9.0","@typescript-eslint/parser":"^3.9.0","@wessberg/rollup-plugin-ts":"^1.3.2","concurrently":"^5.3.0","eslint":"^7.6.0","eslint-config-simon":"^2.1.0","jest":"^26.4.0","jest-environment-puppeteer":"^4.4.0","jest-image-snapshot":"^4.1.0","jest-playwright-preset":"^1.3.1","playwright-chromium":"^1.3.0","playwright-firefox":"^1.3.0","playwright-webkit":"^1.3.0","rollup":"^2.25.0","rollup-plugin-terser":"^7.0.0","serve":"^11.3.2","typescript":"^3.9.7"},"gitHead":"9186b3673c77ffb6cb146d61e570cdc3023a233b","_id":"nanopop@2.0.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.6","dist":{"integrity":"sha512-piuk/q4rbv/URzJrFwEmpRAHL2P+VO3jP13tKPUjVOVzd+O53W/GqYfCI4zqv/LyA6lcbwBB//XtitDJpnmYZw==","shasum":"d5ef16616d03da5028ae6601ca0e1af446a6b922","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-2.0.0.tgz","fileCount":10,"unpackedSize":42840,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPQc9CRA9TVsSAnZWagAAXl0P/0zzMSdMhnz3CDsY1s+a\nRZAx+jkYQ5BjubnqVKAJHij8unFme6LMjlbW5wAn40IPtx5lQz+VW2PxMRXu\nIBQtFih0HYg0lfjwjSO2plXdI1f66gWdqIcwwPImNbNsDTMbqKsaqQUbWv4i\nkpSlAn4p37ZEg79ffdekzmeNsWs9N1Zn+hEXLzt4cnA+UvFOzKN0tXGY81g0\nYG2kamxCIyx6dxT2GYaQOZq+SNrdyTNFMyT+FI6Flg+1idMP+pLeczikC9uv\n2bzvL04T3N8kjsUiqVY9cOJ/aam7Mu1hIARzDii2R+dg7ItZBs4DxgD6/BI1\n/uosXhZSeC9uc4fkcSrPDH384MM2MQPTaGf/gSAwt0scG0G1AlGTTWYUh8yE\n2K0aE8HpCFTf7MOgUBhdN/tYGoViCXWIGVnJlIl9yjPBV9dXPR6K5xMSN/Cc\nbnKddUSbLrg63i5cu15+mC9dm8snEw/zbkMf2Eb8dGnyvkHiB3yfQg/oJYb8\nkUtOeRcR1HPSTBGnIwWtmHNEJmRBNlWPmUZ9plq7NikYIRfMa4lWc72zPGBh\nCCL1NOpHTr3NSrekbDa9wCjpelKu/k8vGhhR4nMAzSeI+BSML1c0SDJOLO2v\n7B1y4UyLYV1oAQJi/AhjkyoEUoj0kXmgnaXxAegLTDbbWt3aXPqcpY3+rp2l\nDLIz\r\n=yFj7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCASQx7rpLfKDp6dbxVnGhQ8fJ5jomM0NG+71qC3bAnlQIhANokApjanqMGhMwC4RrU8cEortinSgwk1fuyjEFqZBic"}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_2.0.0_1597835068681_0.6113575625848517"},"_hasShrinkwrap":false},"2.1.0":{"name":"nanopop","version":"2.1.0","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","lint":"eslint ./src/**/*.ts ./tests/**/*.js","lint:fix":"eslint ./src/**/*.ts ./tests/**/*.js --fix","test":"jest","dry":"npm run lint:fix && npm run build && npm test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@rollup/plugin-replace":"^2.3.3","@types/ws":"^7.2.6","@typescript-eslint/eslint-plugin":"^3.9.0","@typescript-eslint/parser":"^3.9.0","@wessberg/rollup-plugin-ts":"^1.3.2","concurrently":"^5.3.0","eslint":"^7.6.0","eslint-config-simon":"^2.1.0","jest":"^26.4.0","jest-environment-puppeteer":"^4.4.0","jest-image-snapshot":"^4.1.0","jest-playwright-preset":"^1.3.1","playwright-chromium":"^1.3.0","playwright-firefox":"^1.3.0","playwright-webkit":"^1.3.0","rollup":"^2.25.0","rollup-plugin-terser":"^7.0.0","serve":"^11.3.2","typescript":"^3.9.7"},"gitHead":"e52fefbca50e82ab5fb64cd98aa35dead8699ed4","_id":"nanopop@2.1.0","_nodeVersion":"12.16.3","_npmVersion":"6.14.8","dist":{"integrity":"sha512-jGTwpFRexSH+fxappnGQtN9dspgE2ipa1aOjtR24igG0pv6JCxImIAmrLRHX+zUF5+1wtsFVbKyfP51kIGAVNw==","shasum":"23476513cee2405888afd2e8a4b54066b70b9e60","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-2.1.0.tgz","fileCount":10,"unpackedSize":43092,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfQ3MSCRA9TVsSAnZWagAAs7cQAJ2DVIEWCPkEwx4WcnwZ\nrir6NPUN8IsKrqgKQCYkg0RPBk9joGgKmrk1m8k2HYRJfH2Ph6qqEo7+fj7A\nbCdppMNxD7sjRslgSFECUae2ARrcgK07MGLWUGwbGOmmEzFqBkDLXJBn5BFg\nzXCa4G0ty0gKMM6m08QFqb4N8MK3hOeF4Gc0ORiaJTRhyl6X8I05px+33Pq1\n00lHvKZq5Xip+HBmkLdtcD/mB1TaCD95JKjt7wOFpHasVhtKBAexl1tS8pwc\nVEx8iPTUN9zeWpKDGzsNK5xx3N3DOucadvMxGOGeSjTgVBnFi7NLpfiutqjF\njSTVcjSKejmfNA3DPfzHlOHh2kiAaJDWJ2t6+RU/so6bNx7ss6tuRwCx3NdZ\nJJt06AoIqNMO55KtyVuUGykulxaXNHqBWMF97soIbeLKZVg14f5BFsDQ8HFd\nbGLhJR5zCN9EmpzTifXQ0cZ2P9nj5JX1v1PeEmV0XE3EXghCtCUMRIF1Tbkt\nbZX2EkJh49jYFQNQpYp1rCXPXho7tlKzdTa+ejU/uHPjHmDM/2+y/kr+f/68\ngzTtDTBlBf/eX/37q3MlfcB+4T6DLd3JZ2BeQX2h3mA6lQLKlkfXy9cqz3+p\n698rz6Je0lOfbjhbgFv62JguAuaAaZ2PmQXUP/RIySIT0mk+PmDijSM7NjEu\nU1Ty\r\n=Q6WX\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBv6OltJ3UZeN3t63ILTTINlv/h92bkAp4KQZG8W/onvAiEArYzoElQQy55u6s+M03TjapeL1nESfo5tZs/8FWlyxPk="}]},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_2.1.0_1598255890349_0.5769229107388707"},"_hasShrinkwrap":false},"2.2.0":{"name":"nanopop","version":"2.2.0","description":"Ultra tiny, opinionated, positioning engine.","main":"./lib/nanopop.min.js","module":"./lib/nanopop.min.mjs","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","types":"./lib/nanopop.min.d.ts","keywords":["positioning","popper","utility","positioning engine"],"scripts":{"build":"rollup -c rollup.config.prod.js","dev":"concurrently \"rollup -c rollup.config.dev.js --watch\" \"serve .\"","serve":"serve . -p 3000","lint":"eslint './{src,tests}/**/*.ts'","lint:fix":"npm run lint -- --fix","test":"playwright test","test:ci":"npm run lint:fix && npm run build && npm test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@playwright/test":"^1.25.1","@rollup/plugin-replace":"^4.0.0","@types/ws":"^8.5.3","@typescript-eslint/eslint-plugin":"^5.36.1","@typescript-eslint/parser":"^5.36.1","concurrently":"^7.3.0","eslint":"^8.23.0","jest":"^28.1.3","jest-environment-puppeteer":"^6.1.1","jest-image-snapshot":"^5.2.0","jest-playwright-preset":"^2.0.0","playwright-chromium":"^1.25.1","playwright-firefox":"^1.25.1","playwright-webkit":"^1.25.1","rollup":"^2.79.0","rollup-plugin-terser":"^7.0.2","rollup-plugin-ts":"^3.0.2","serve":"^14.0.1","typescript":"^4.8.2"},"gitHead":"c012fff67a2e1682cd166ea5296998a4d975907b","_id":"nanopop@2.2.0","_nodeVersion":"16.17.0","_npmVersion":"8.15.0","dist":{"integrity":"sha512-E9JaHcxh3ere8/BEZHAcnuD10RluTSPyTToBvoFWS9/7DcCx6gyKjbn7M7Bx7E1veCxCuY1iO6h4+gdAf1j73Q==","shasum":"bd1c25588a7beaf68865bc2df19db4c58c77dcc9","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-2.2.0.tgz","fileCount":11,"unpackedSize":45597,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB5ght+YM/e24zFNPQvtiIjL+HKHN10WCObynbeVB09fAiBCbRQuQ/SY7FqRnLb02VBO2lJQgs1zS044qLLYEvtePg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjE1KWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrf6RAAmQIvOZ8lsv4RK9R1F43N1fK1gLC/ZX7puUBWUFP7EUa+FTs/\r\no2gEmdah9Xo9h/EDo+rE76zjSMa9HHrABqP8xNNseq/obQx3twLaC2jjgQG0\r\nc183uPE87XcOwyb8u5URMI/FfAd412pqNDt2N/IxlqoNrQloKrMOpKa5AfHd\r\nW8Gr1BQ0HYsGYI4fPPuo72G8wWpSsJPsz1nbpUonfFNqmGmOOX457JARkzIE\r\nlDXvv+VvLIkvnbCGMc6ibkpBgX5XHOGDEZN0gC9NwQh8YqMk2nzyzu/lLz0v\r\n6HUAXDAapBlllnQ5A5/gXwTEt9rtNJHZZbMjzFU9oJN7o/MBvJN7PeaVNNz4\r\n4v9mPK25NYH7VpbhCbcc7QfdpHXLamzToiIUgVqVbySiaRyoyhQrs7MP3OIw\r\niSyVYoFwtRUWfWWSrKvxrZZSKEqI3sWgxv9fAZW0NfJqKwhzAQgt6LCBatMv\r\neTaEPG9b6srszCRnQ5fvRdYp/PssJkzARX0xr6kcOh/kgNR22we+8zDFjSj1\r\n5aYmFk89Ew8hhpzH17jNikb5g9hiDoVwh4GtbORqTF9x4JyrjpcvbocAcl7o\r\nr3fs2CtUyPyxJ8yuYcSurkMdPqvW04ASgcomdrK0Zk6EbUUhhljo+QTE3IGF\r\nu1Cuo4hbFL7PoH5sq1GAqnTgMqCgbsho1D0=\r\n=xSVV\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_2.2.0_1662210709904_0.8985028868344898"},"_hasShrinkwrap":false},"2.3.0":{"name":"nanopop","version":"2.3.0","description":"Ultra tiny, opinionated, positioning engine.","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","main":"./dist/nanopop.umd.js","module":"./dist/nanopop.mjs","types":"./dist/index.d.ts","exports":{".":{"import":"./dist/nanopop.mjs","require":"./dist/nanopop.umd.js"}},"keywords":["positioning","popper","utility","positioning engine"],"scripts":{"dev":"vite","build":"vite build","serve":"vite preview --port 3005 --outDir .","lint":"eslint ./{src,tests}/**/*.ts","lint:fix":"npm run lint -- --fix","test":"playwright test","test:ci":"npm run lint:fix && npm run build && npm test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@playwright/test":"^1.32.3","@typescript-eslint/eslint-plugin":"^5.58.0","@typescript-eslint/parser":"^5.58.0","eslint":"^8.38.0","playwright-chromium":"^1.32.3","playwright-firefox":"^1.32.3","playwright-webkit":"^1.32.3","typescript":"^5.0.4","vite":"^4.2.1","vite-plugin-banner":"^0.7.0","vite-plugin-dts":"^2.2.0"},"gitHead":"491358201a886f2cb5dcaf741d4c7715b3708d72","_id":"nanopop@2.3.0","_nodeVersion":"18.15.0","_npmVersion":"9.5.0","dist":{"integrity":"sha512-fzN+T2K7/Ah25XU02MJkPZ5q4Tj5FpjmIYq4rvoHX4yb16HzFdCO6JxFFn5Y/oBhQ8no8fUZavnyIv9/+xkBBw==","shasum":"a5f672fba27d45d6ecbd0b59789c040072915123","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-2.3.0.tgz","fileCount":10,"unpackedSize":47883,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCID+OqWZRrMvBUsBPRkqEFjoDGBAI5eJG6HmRzKtbv/ACAiBPReFKh2K02nA5tov/VFDrXlZl41zB/5gvNyB1nUUYAw=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOpm+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpyEA//Tz+26ohQ71Jlr2cdjfCksEaTs4R9PKdc5gDXQnAABlpOBS0r\r\nAR1Xy6kT1t23Vc+O+Td/X0mTFymbOD9eqs2NXYoceQl02esCLsEJ/5/qdI1m\r\nBcW7sf5+dbfmTAUArFMm5CW0fvbygrVnOZt6UGWd4cyb+daz2gcP/egFek67\r\nS/HWf1H+ar90vJuI6XxrWXO+siZKh9AyminkGJGFIRIAVoffR6yO5BIkDbBI\r\npDIIGFsSYoexjCkBsBrd0b26GuQWeijqTwqFg3xmASTnHcgLJ1x4PADAQGjN\r\nxU531JPcP2AzQmLjrb1wm89x73loQPHy166NpybC8drZTO+a1BACAPZpiFpq\r\n3EZPN9jkkV8NesJgjiei7Vxt6UkweJ8tsuic6FC8X4u8o41ko4tP3cFKlPZO\r\nASQOWQ8nJsX4wylhbfsF/hD4Hngxa6MC5l0tOvTyGAwZ0hIFdMGErd0H21km\r\nOYyr+IbnFg2xuZtIz/sx+P1BcAjVV/Cgr8nAEXbqDwoudm2i6ZYZ2CGjJoM9\r\nEYxK1zVIenc+LcE1KK45Bs4zzB77gHPqNsAMuvhPDfCug6wd6p8rpe9EmqSf\r\nEVyoeNOiMvI0egwXpLiOOzvMrnQ9peew3DZO4p3gy9jvdhD9orwLamIvIniJ\r\nYVdvYVUG6w4ER0wK4Kwwkr2noYcNl3L8c+s=\r\n=Xe5r\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_2.3.0_1681562046173_0.5677880696033244"},"_hasShrinkwrap":false},"2.4.0":{"name":"nanopop","version":"2.4.0","description":"Ultra tiny, opinionated, positioning engine.","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","packageManager":"pnpm@8.0.0","engines":{"node":"^20"},"main":"./dist/nanopop.umd.js","module":"./dist/nanopop.mjs","types":"./dist/index.d.ts","exports":{".":{"import":"./dist/nanopop.mjs","require":"./dist/nanopop.umd.js"}},"keywords":["positioning","popper","utility","positioning engine"],"scripts":{"dev":"vite","build":"vite build","serve":"vite preview --port 3005 --outDir .","lint":"eslint ./{src,tests}/**/*.ts","lint:fix":"npm run lint -- --fix","test":"playwright test","test:ci":"npm run lint:fix && npm run build && npm test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@playwright/test":"1.41.0","@typescript-eslint/eslint-plugin":"6.19.0","@typescript-eslint/parser":"6.19.0","eslint":"8.56.0","typescript":"5.3.3","vite":"5.0.11","vite-plugin-banner":"0.7.1","vite-plugin-dts":"3.7.1"},"_id":"nanopop@2.4.0","gitHead":"ca7f51f00254c003ccbba92e2156f405f74bbb0f","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-A/mitpZitCkPq5W+iRq9p2t9Sv+zSUdu8x+eF7twkP5F0d+QUod321IDB1RQD8QRiBWnW4PdT3sF1sFt/P/g7Q==","shasum":"ac11c8c5edfad8f1a1e0d02040464c60811d21ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-2.4.0.tgz","fileCount":15,"unpackedSize":51818,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIELKSUIUJWkPAtPP1/W8bSBAbRUIcd1D3qAjLXIaruNWAiEAkgSNSdh0HsRFY/BbKWWU2Z75PJF3oK0HW+4P7lyLQmg="}]},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_2.4.0_1705507508835_0.7848411287894592"},"_hasShrinkwrap":false},"2.4.1":{"name":"nanopop","version":"2.4.1","description":"Ultra tiny, opinionated, positioning engine.","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","packageManager":"pnpm@8.0.0","main":"./dist/nanopop.umd.js","module":"./dist/nanopop.mjs","types":"./dist/index.d.ts","exports":{".":{"import":"./dist/nanopop.mjs","require":"./dist/nanopop.umd.js"}},"keywords":["positioning","popper","utility","positioning engine"],"scripts":{"dev":"vite","build":"vite build","serve":"vite preview --port 3005 --outDir .","lint":"eslint ./{src,tests}/**/*.ts","lint:fix":"npm run lint -- --fix","test":"playwright test","test:ci":"npm run lint:fix && npm run build && npm test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@playwright/test":"1.41.0","@typescript-eslint/eslint-plugin":"6.19.0","@typescript-eslint/parser":"6.19.0","eslint":"8.56.0","typescript":"5.3.3","vite":"5.0.11","vite-plugin-banner":"0.7.1","vite-plugin-dts":"3.7.1"},"_id":"nanopop@2.4.1","gitHead":"2c6b08f7592fa38df6469e492844d05ea88dc09a","_nodeVersion":"20.10.0","_npmVersion":"10.2.3","dist":{"integrity":"sha512-hhtYHTaQPmclHHCWmh2EJpWQ9FCA47kj2r/vXqI0ACeMi/qR9qFYDQRSx+luami7qw1OkBR4luJqS6ADoC3FPQ==","shasum":"b2cc7eadec637c891dd449d054fd833450176f28","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-2.4.1.tgz","fileCount":15,"unpackedSize":51772,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDDcZlaugi6bGfd/GKvKbIYaJ5J4BYRFbDIVo4K6SuN7wIgDNZknVyde/GTg9rYQWZgLYueQtUppbliddfIQ3k2Yfw="}]},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_2.4.1_1705641198752_0.27975386266264346"},"_hasShrinkwrap":false},"2.4.2":{"name":"nanopop","version":"2.4.2","description":"Ultra tiny, opinionated, positioning engine.","author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"license":"MIT","packageManager":"pnpm@8.0.0","main":"./dist/nanopop.umd.js","module":"./dist/nanopop.mjs","types":"./dist/src/index.d.ts","exports":{".":{"import":"./dist/nanopop.mjs","require":"./dist/nanopop.umd.js","types":"./dist/src/index.d.ts"}},"keywords":["positioning","popper","utility","positioning engine"],"scripts":{"dev":"vite","build":"vite build","serve":"vite preview --port 3005 --outDir .","lint":"eslint ./{src,tests}/**/*.ts","lint:fix":"npm run lint -- --fix","test":"playwright test","test:ci":"npm run lint:fix && npm run build && npm test"},"homepage":"https://github.com/Simonwep/nanopop#readme","bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"devDependencies":{"@playwright/test":"1.41.0","@typescript-eslint/eslint-plugin":"6.19.0","@typescript-eslint/parser":"6.19.0","eslint":"8.56.0","typescript":"5.3.3","vite":"5.0.11","vite-plugin-banner":"0.7.1","vite-plugin-dts":"3.7.1"},"_id":"nanopop@2.4.2","gitHead":"5a5335b1bdb2f3dcbb0533c75adec781250dc606","_nodeVersion":"20.11.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-NzOgmMQ+elxxHeIha+OG/Pv3Oc3p4RU2aBhwWwAqDpXrdTbtRylbRLQztLy8dMMwfl6pclznBdfUhccEn9ZIzw==","shasum":"b55482135be7e64f2d0f5aa8ef51a58104ac7b13","tarball":"https://mirrors.huaweicloud.com/repository/npm/nanopop/-/nanopop-2.4.2.tgz","fileCount":15,"unpackedSize":51824,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCWvcBiW6iHZUTcD/+FClHYmDvEp9+p+8vNZj1iKdSogwIgavgd+2eRHXAP3sckBg45E/F5ujE26UmN9hhh/4wzkBU="}]},"_npmUser":{"name":"simonwep","email":"simon@reinisch.io"},"directories":{},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/nanopop_2.4.2_1706270976207_0.49982738649505376"},"_hasShrinkwrap":false}},"time":{"created":"2020-05-08T15:26:24.461Z","1.0.0":"2020-05-08T15:26:24.562Z","modified":"2024-01-26T12:09:36.542Z","1.1.0":"2020-05-09T15:20:15.061Z","1.1.1":"2020-05-09T15:57:41.139Z","1.1.2":"2020-05-11T15:55:04.499Z","1.1.3":"2020-05-11T16:01:20.924Z","1.2.0":"2020-05-12T11:51:48.754Z","1.3.0":"2020-05-19T11:57:35.679Z","2.0.0":"2020-08-19T11:04:28.796Z","2.1.0":"2020-08-24T07:58:10.513Z","2.2.0":"2022-09-03T13:11:50.063Z","2.3.0":"2023-04-15T12:34:06.394Z","2.4.0":"2024-01-17T16:05:08.997Z","2.4.1":"2024-01-19T05:13:18.905Z","2.4.2":"2024-01-26T12:09:36.377Z"},"maintainers":[{"name":"simonwep","email":"simon@reinisch.io"}],"description":"Ultra tiny, opinionated, positioning engine.","homepage":"https://github.com/Simonwep/nanopop#readme","keywords":["positioning","popper","utility","positioning engine"],"repository":{"type":"git","url":"git+https://github.com/Simonwep/nanopop.git"},"author":{"name":"Simon Reinisch","email":"trash@reinisch.io"},"bugs":{"url":"https://github.com/Simonwep/nanopop/issues"},"license":"MIT","readme":"

\n \"Logo\"\n

\n\n

\n Ultra Tiny, Opinionated Positioning Engine\n

\n\n

\n \"gzip\n \"brotli\n \n \n \"No\n \n \"Current\n \n

\n\n
\n\nNanopop is an ultra-tiny positioning engine. Hold up, isn't there [PopperJS](https://github.com/popperjs/popper-core)?\nYeah - and PopperJS is great! But there are tons of features that, in most cases, you just might not need. This library is less than a third of PopperJS.\n\n#### When should I use Nanopop and not PopperJS?\n1. Situations where you want **full control** over positioning, including handling events such as scrolling, and manual resizing.\n2. **Performance-critical** cases with lots of elements [...] nanopop will only makes changes if you say so.\n3. Poppers with **minimal footprint** such as drop-downs and tooltips which don't require that much configurability.\n4. You might have some special needs about how your popper behaves. Index exposes a function for the sole purpose of positioning something, use it in your own library!\n\nThis library was originally part of [pickr](https://github.com/Simonwep/pickr) - now ported to TS with tests and a few updates / bug-fixes.\n\n> Heads up! This is the readme for v2 - if you're looking for the first version head over [here](https://github.com/Simonwep/nanopop/tree/539de9558a113ca6548a0d7d316ae8c65d7817d5) (v1 is not maintained anymore).\n\n## Getting Started\n\nInstall via npm:\n```shell\n$ npm install nanopop\n```\n\nInstall via yarn:\n```shell\n$ yarn add nanopop\n```\n\nInclude directly via jsdelivr:\n```html\n\n```\n\nUsing [JavaScript Modules](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules):\n\n````js\nimport {\n reposition, // Core, stateless function to reposition an element\n createPopper, // Stateful function which keeps track of your configuration\n defaults, // A subset of nanopops options used as default values\n version // Current version\n} from 'https://cdn.jsdelivr.net/npm/nanopop/lib/nanopop.min.mjs'\n````\n\n> \uD83C\uDF1F Index is fully tree-shakable! E.g. if you only use `reposition` you'll probably end up with less than 500B code!\n\n## Usage\n\n```js\nreposition(\n /* reference: */ document.querySelector('.btn'),\n /* popper: */ document.querySelector('.dropdown'),\n /* We're using the default options */\n);\n```\n\n> ⚠ The popper-element must have set `position` to `fixed`.\n\n> ℹ Because the default-`container` is `document.documentElement` you might have to increase the `height` of the `html` element to make room for your popper (e.g. `html {height: 100vh;}`)\n\n#### All options\n```ts\nimport {reposition, createPopper} from 'nanopop';\n\n// Using a object and reposition directly\nconst nanopop = reposition(reference, popper, {\n\n // The DOMRect of the container, it used the html-element as default.\n // You could also create your own boundary using a custon DOMRect (https://developer.mozilla.org/en-US/docs/Web/API/DOMRect)!\n container: document.documentElement.getBoundingClientRect(),\n\n // Optional arrow element that is positioned between the popper and the reference element.\n arrow: undefined,\n\n // Margin between the popper element and the reference\n margin: 8,\n\n // Minimum space between the popper and the container\n padding: 0,\n\n // Preferred position, any combination of [top|right|bottom|left]-[start|middle|end] is valid.\n // 'middle' is used as default-variant if you leave it out.\n position: 'bottom-middle',\n\n // In case the variant-part (start, middle or end) cannot be applied you can specify what (and if)\n // should be tried next.\n variantFlipOrder: {\n start: 'sme', // In case of -start try 'start' first, if that fails 'middle' and 'end' if both doesn't work.\n middle: 'mse',\n end: 'ems'\n },\n\n // The same as variantFlipOrder, but if all variants fail you might want to try other positions.\n positionFlipOrder: {\n top: 'tbrl', // Try 'top' first, 'bottom' second, 'right' third and 'left' as latest position.\n right: 'rltb',\n bottom: 'btrl',\n left: 'lrbt'\n }\n});\n\n/**\n * Using the createPopper function to create a stateful wrapper\n *\n * Correct ways of calling it are:\n * createPopper(reference: HTMLElement, popper: HTMLElement, options?: NanoPopOptions)\n * createPopper(options?: NanoPopOptions)\n * ⚠ If you omit options entierly you'll have to set both the reference and the popper later when calling .update!\n */\nconst popper = createPopper({...});\npopper.update(); // You can pass an object to update which will get merged with the existing config.\n```\n\nCalling `popper.update(...)` or `reposition(...)` both returns a position-pair (For example `te` for **T**op-**E**nd) or `null` based on if it was possible to find a position for the popper without clipping it._\n\n> Tip: The returned position-pair is perfect for tool-tips to give them a little arrow!\n\n## Caveats\n1. The popper-element must have `position` set to `fixed`.\n2. If nanopop cannot find a position without clipping your popper it'll revert its `top` and `left` values - you can use css / js to handle this case.\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/7a/cd/54dbe613b73a7093154bc0015d4a968833241aab43c1826dd80f55b7429b27d4d0263b72928197eefa8192595bba36f2c7a07095fda61cb04e70881ec02e b/frontend/.npm-cache/_cacache/content-v2/sha512/7a/cd/54dbe613b73a7093154bc0015d4a968833241aab43c1826dd80f55b7429b27d4d0263b72928197eefa8192595bba36f2c7a07095fda61cb04e70881ec02e new file mode 100644 index 0000000..6e10a1b Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/7a/cd/54dbe613b73a7093154bc0015d4a968833241aab43c1826dd80f55b7429b27d4d0263b72928197eefa8192595bba36f2c7a07095fda61cb04e70881ec02e differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/7b/79/d17e07d4678acd18bdb7da05205f4e90372c9ecf4e0a76316b17e2d34683979ab3a014a0e0e0109db235bc1274faf5ea9d606991a49c223d560dac2696de b/frontend/.npm-cache/_cacache/content-v2/sha512/7b/79/d17e07d4678acd18bdb7da05205f4e90372c9ecf4e0a76316b17e2d34683979ab3a014a0e0e0109db235bc1274faf5ea9d606991a49c223d560dac2696de new file mode 100644 index 0000000..3e40114 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/7b/79/d17e07d4678acd18bdb7da05205f4e90372c9ecf4e0a76316b17e2d34683979ab3a014a0e0e0109db235bc1274faf5ea9d606991a49c223d560dac2696de differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/82/a2/1fc895b01983d25c03d36b7a75ef4f5210502d67fd2c5bf31b7646104481015b1b75d5fefd5beb3859f258cf7f724610c8873670fbd8dac587d1b8f9150b b/frontend/.npm-cache/_cacache/content-v2/sha512/82/a2/1fc895b01983d25c03d36b7a75ef4f5210502d67fd2c5bf31b7646104481015b1b75d5fefd5beb3859f258cf7f724610c8873670fbd8dac587d1b8f9150b new file mode 100644 index 0000000..3c12089 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/82/a2/1fc895b01983d25c03d36b7a75ef4f5210502d67fd2c5bf31b7646104481015b1b75d5fefd5beb3859f258cf7f724610c8873670fbd8dac587d1b8f9150b @@ -0,0 +1 @@ +{"_id":"ant-design-vue","_rev":"252-e90308eaf2c68eca114f462550c7d164","name":"ant-design-vue","dist-tags":{"beta":"3.1.0-rc.6","alpha":"4.0.0-alpha.6","next":"4.0.0-rc.6","latest":"4.2.6"},"versions":{"1.0.2":{"name":"ant-design-vue","version":"1.0.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.0.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"b76317af7048606b196ded387ebb8ae4457f8490","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.0.2.tgz","fileCount":2085,"integrity":"sha512-CUOPpWGmRAsKkOgfkF9hQhG7E/+30K5T5/WypQAuaXWvfZpoXRthijrLXQh3r0fvKNS6wsc4A7rsDqDlx80IJg==","signatures":[{"sig":"MEUCIQDn3T8agW7OVGxwP+NgIb/jT6NZxbh9vh7hs+KHUcp9FgIgCMxL2IABrTbA6cIT0iVxHJFeQ3dmF4kqlYqIe8rlydE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30550947,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZYfLCRA9TVsSAnZWagAAT2IP/j0zbEq7lOSear4aaqRO\nfuKW5dW/5tBGTYX358CmUcA3TIaHgV7Obag43fCygG/PKiyZa5ytv6WiHyrk\npDxsycCXb7HxxUR1rwtRekcsH3B1fnGtUniKc/QVh7dOjokj9ubqZtOBZ4gx\n3E3VqBb0xerjaPSoFufmwNuxP1DWvI01pZFCi/g3u1F39hXEgGjsk4nWabzB\nrtWwfshVHJILffUHWlOfdzQRDMmoTMYWIh7vFEzTlOcT0pclRNQ0IEnLMKON\nrFyfpo5H5PROzkPArLbvLMXVusTXduShSN89d3rCdgWtyohg28Pn6G9VpM1b\naOb4bna+ZJg0xrzQj/LkTq2MLOTIy1i5c68G2Ax0OGl6ZwsDGyeqqJ6i+Ayd\nmc+Al4rW5Ys7F0Y/bSGUM6EVpmJ/lO2HBVVfmrrmJ9rCT9VoClNE2SpLrKmf\nCoGhBdGsFHIfRZDfkxCmrUJlqz7FdnrlMncCj6+a3/kqnIhbjwlMMuZoFgor\n35hF9owSCsWmiAK4ayVg7psrLGfjXe5QzSDXCGq1LjBH4YJ15t+VJhcqyiT4\nOKFqAxizIR9I/pWOvMdf0QeqtVaAaQe/4fdaZnD52gEuJ2VuuePMQioKcJpX\nSTphwKUTSrLpmpApBx7yf5lGAs0XwwKuS5GwTKddGB9UO76tRfgCWpel1KEW\nMO7J\r\n=FE1W\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","files":["dist","lib","es"],"title":"Ant Design Vue","gitHead":"934840066334a465575e2708f80684135fe42da7","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.9.4","dependencies":{"lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.6.7","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.0.2_1533380554818_0.5234167559555312","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"ant-design-vue","version":"1.0.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.0.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"f47fe6fef6a4358312af013c607ad828f99fd5f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.0.3.tgz","fileCount":2085,"integrity":"sha512-BDoadNRBdaF/qNUkV+DRcUDpDhnwdWarIfaFMutWmYgKYXz8QTPTIGW9R9hwYTQc4csG0RHx9LJ+4tMHv3qI3A==","signatures":[{"sig":"MEUCIQCCZineMAWVRMu2TNVwXV4MckmbUoi+9g5IMw6AqCT/ZgIgYcXqDIdJCo7YEQ+JsPebxPcj4anxN9WlL0lBU56m5z0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30550802,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbm4lCRA9TVsSAnZWagAAaXMP/RBmpm9NbZ6k6tpDfh67\n/GC8V1IXwLwtCV2V2AG6SznzHIzhtKd9RxgcYtWA6DRBlENhsJgBgNY2JGge\n/ZUmIlmkH7auJGaXe2Gm9qcIx1vbBznLlnHSlQ+uZYLsfgLhRh0PPF8I8hsC\nK7RkhDjUK9nI1dPkILCCt52HvCoLcuf6r6spP8ZRDsIeeuRKKzC35qQYeXd3\nIy+Pj+jnB5VK2Rz2u04ODzXwfV2Dh0PDTNYGGm94YUX/z0rL405YqMW7DXou\nUOOHWCfWN6CylXRp0A/JnDunB1w7QtmyERjSGL+ihOZAKBWGsBKhZhOlLf6M\nH5/iyitBPJ6eSim3O6QLL+kKni0vxOIkpB883mbgaN/IruhW09mRNAYRR3pK\nnDWTB6e+p32gwhy+P2FHOYopSCc2rmNA6hKo+VmpjjM7ZaKsXbUl5vZ8Bi8w\n8Witu/GLE5LfU13sNFvA1fpFg55VHj4Gzq6+6ja86EgFQ0f0Cw3H+f1UI7Td\nzY93iLSEjyjF+TyURrHr0xWaOmeIJY3BIhnCKZ/lmVGdfHhweBTrx1/T8xfJ\nWaOURrKWBuNs18MODfMDlHMfsRQpr1sZjqCQg8NpiFWdtdYWHodHvoZ9XoGY\nTKinAKj3j7yT2dLsui5Z5g9KlPQH9ZJFpRLkE0FqYAFBVawbRlsPzxADvCkf\n14Mq\r\n=k2+Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","files":["dist","lib","es"],"title":"Ant Design Vue","gitHead":"579295b10840ed3f904956c9791fdc3e99f93ca1","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.6.7","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.0.3_1533963812893_0.09735392888872152","host":"s3://npm-registry-packages"}},"1.1.0-beta.0":{"name":"ant-design-vue","version":"1.1.0-beta.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.0-beta.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"250fab7caa493c9d5d9cd1149a928e104e608f91","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.0-beta.0.tgz","fileCount":2165,"integrity":"sha512-W5vuzsLifQHTeR7ah/Q5w6dkdkZmwmM6O6D0Ba4BMWZm8MrbUryt0AZwKqfobpD6jzsmyNgpp9yZc7TEo7pDuw==","signatures":[{"sig":"MEUCIGxaFYwpLIAHZjbEz73kaUQDLLRVbXveoG0S4Gk1ZXasAiEA5IgS6hW2baAxGR7vpTlrYx0xq+xonmOaB1GsZQZk5W8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32287948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbj9wNCRA9TVsSAnZWagAADa4P/jMIBRiQBMA0PlRJsIKE\nVY7r7m0E5bB1TB5vci03+0TWyQypmGozRh3nDyvZHe/SgpTtyYK5VqLah7cS\nqC9e7x6mPWqq1Y1olES84gaI/vcdgzWHQwTVOC2A+kFvWIjK5GMJvwMWX/eX\nnyV+L/3tZStUC+p8mW2elmWgWDYamnXxIHuiwGe7pQBnD2dnhRPosp9lf0Ds\nSPIE6pZ3ZwBLkorjvxOjL1mkq2ll8nm74ZcblhPRW6pd6E2/ZYn5TvePP4y6\neX/FW5uPfN/GjTCnes/3WD0CDNOELFLAQRb/cuX+NieZWEpOBERxTpCZEtVY\nuMWHeWDgXdotOjoo0AQRE/RbYyVT49PsZEXA9X0Y3yFQV7/vdFIu8CaeHKI6\nfvbp93BUR5hq8U8B0F+Koh7XrXOMLBrGVMK83KvfptBV/xTBDorl+mO43Jfa\n6Q5x0JuNlgGG/z21/Il8aXK/H4FIJZAY5NsstQLQ+DmcEVWSEqiPJ23sKFJi\nPT7vwHlwR1rdwIiuoAWa6iavTNSPil4s0vcvVYYMtC7qH36OeMNYKxn8LLML\nHEYjJguEECEPwC74gRewkkGs3fx8cBPeZeEgsN1H5Hy5rDfZZGe6fpU4nCZv\nXa5PG70xjJ66IZzRufadOl0mO4OMFcUy7Pl1/H7X86NGC15OKaDLpUv/I5xi\ntbcd\r\n=z5h+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"ff25efe185a282c381218c45f104d534137d2899","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.9.4","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.0-beta.0_1536154636429_0.609093282323067","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"ant-design-vue","version":"1.1.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"b4d629f9edbc77b8349ba8c1077c8b17826fa775","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.0.tgz","fileCount":2165,"integrity":"sha512-Av2n6ikgGdVCy+JNBZDkSK7nUqsX2BoxfP/LUwahPvIvCNOlkpqFN61cgnmW3K3UPlliO9yXr4XkwkpsiEM8Rg==","signatures":[{"sig":"MEUCIB1UHmFPmR2Ov1E9UXoUm5nMkeeUHi8mUlFcZf0yIclOAiEAuakux1iXUBsbs+nAnnPmZGOq5uXpM3yAxasfFTRB1oI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32341447,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbl8c6CRA9TVsSAnZWagAASUYQAJbCatMBPdMvZZIV+fMc\nv0PTdHhSSfJl42FsKRWNtbDCxCvnOxN9sgRycsGc9GKO4StFuy+G9icmCAlf\n0p5hHY4y7aSqecu8UZ1gwh0tRntJxquvADMsqxCGSv56wp/fpfxozlsgmqfE\nKDe9YUvCSLkbitHJeyqYXvESu+znAAkt6cm/pXd3tpqpx40ULogC+v/ULTcy\nS499FpscbvrKTQ9a3/V/bbdYSg1fJMBjdCJ+oxJAoDyjhUPXJtCDFwPqZ11B\ncFQc0cabC0dwEv0dBR1khcdgTMVEsZOQZjdBvOf8Gwd/VlfoRusUYxhIPTql\nUK6Fh+PL8nt+mavyteKxjIvRgY/GnPHX8g6DteneWt0Eg7/WUfQ5KwmpKCoc\nW6IBN2i1TwDz6lBTRd8PgieGiUUKEo42uC6rhoiyq0sRkYnO87aViwbweRqQ\ncLJPJGUlTb1Ruu3Zpvqz5goYKD1WZ8rE/IqZ6BQ77BKmyyEhoJP1IiPU2Zyr\nk2RrLKLGJzB+0snitWRYLmeA7ve4yFCWkKA1Az2eDrGZtslzgDycdNIW4lE1\n/nhJTdMjYU2S1OpIJPjbmv/6rc5Xs5P/uvo8fmaw7HFTjqjbwazTJ+dJpiUw\nJfz2eI80zLX5WBX6qYVTksBL0gNhCcntDMQoxZl6TXEAND86fgkdQLvIv9UU\nQwBV\r\n=5Kpp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"f42d1ea3ff2d9232d4b17a0d6577d99f67a91f5a","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.9.4","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.0_1536673593513_0.09280850405042029","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"ant-design-vue","version":"1.1.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"dbd221c002de06a741a17455d9f1e3677de88f31","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.1.tgz","fileCount":2163,"integrity":"sha512-b1t+A60AhnnJ3EDhjEOA2nDpOUOLK2GQ/W0XogKVaSS3FC+j0VFyaPNhReN1nAXZbEYqN6MoXDOvvifQBLIqFg==","signatures":[{"sig":"MEYCIQCpIFrZlFXE81UAJloGPvY3aGZL4dqC24TWMqaOI6MHngIhAJ8TQqrPDzsjuDmn3sfbqGgsXNCjRip45ZlVNUE2+cDi","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32295287,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbmnJYCRA9TVsSAnZWagAAIboP/RoXu8HG0TbrghXYKsC5\nm7FoUPcxLbohlDCVWpJEIvqbXMWqLHJr+ALegcme8ZKWUs7jGqgS++XlsuzT\nBNrxicrakfFmgD+E3pGpw8MFA3jvTe1vggu3PkR6ZloubrkPn+MDAAHzrM4A\n1+G1iv6PlCQlzQ9jZSkQSkCo9hIaMS0aGdNev9zYeXG1R53t/0aN7Hbi1uV2\nCpfnLDA5I01TeYvtieovwpjI1TNbL0c0llyjMcK1JFao6ZOKIeiQgtAPzSco\n41XLhGcWKXtEf7WUTAww2vM8TwKBhF8rNFiSPWPFr6oBsTcn80yEYaebr7CG\npsZBEzZYuLTozquW96XAPdPbDvXanb5Jo9XJV77eqEn3VajLNiK8s8Bp1KrW\n6EfuwbWgENn6rU8OfK840KLnba/mFrvCX05TB2LDxd1DGJhVeFz8utonbXKT\nzPGPcXw+4BamwOJW9Nyt7dtlTz32qKhyVxDhTdNOTACI0IeHOq8O2ctaR71r\nXQEDyK9pP/l/Qk3ZUAh4iSmOGL4THURhAu70eD8XsnPytbxdiliUUs2w7G0v\ng/GzhALRRBK+ixlkDVZKOdoHWdRE+M2PNvjALHxJ4LPZRjOuk2QNHT9/DS8P\nFRqISmLztbJoyI4E+q94zTkhYU1J1DDA9A4u90hNkbjbswizu8oiqlD5zh4o\nu7WF\r\n=KDN2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"48a8867448c1d86039c4a8659dd494f1e2182ec8","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.1_1536848471604_0.8853321880152001","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"ant-design-vue","version":"1.1.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"7fb8da01bee74eb9670e944ed8ec73d63b0a7ccd","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.2.tgz","fileCount":2163,"integrity":"sha512-wx1aYoVsBzOxbBlN3lZX5xobg6k/EF5nY900FuU0UeZZ+ik6Ih8+Rg9XoZQK3y4/Ys7J/lcWKMzFDWuZv4w3wA==","signatures":[{"sig":"MEUCIQDEuXP4eO78LtS2yiMvrX6Ve8Unbz7oHsTDYD5cbCoZtgIgN+n8ZSAwGiVQRX2rL7+Xir6PDbXq9SdaUe0bI5b2c00=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32353596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbn69SCRA9TVsSAnZWagAAC9MP/juxDWFmsQrPhnlbRdMA\npt2RxftVbzZkelRceFExbam8jypUoCwU+F7rRuYHoT6W0u4UiTCssPNbDkIt\nhUslyol8LHKngYN7/dQGkRLMOrQ8/MbJqmTmLvLuFsE3+hVEKsztlp+9wJUi\n0E5u6Enf1gnE8cRtKa7jz7B9hULN69CsJJ3MjLk6RzvUdtn/SWr2iXEvxgS3\nkhaHudsK+NByINcquD51k9Ttf+Dyef22F2c3IlkhwmGfwfQ2M8uF652ZQkHp\nL2fRpr4lc9VSXTM2n+cG5mrA02/x5VFH3BtUXYgHS8VcWTPxKMPfLLIwjn+E\n+fx+cP/0mpTj8Gpm1z5bWJclzhcb+TSjlSbV0fjPNUG3BRX8vDIJra6xuWOu\nGy9CU7uS83pUe3diTZdt415qcNZ0uuwXQsSyZ8NtipLn9pMt1lp1EIqjffbU\nPz4PjrcafGPh8I5Ya2Rc3Kns+1y0/rYE7NqHCh8RX2g1ZEloVgvdMJsh3l+Y\noyxA3btmvIF6qDcJGetuKjFALh8qmpzxr7xb4CP9Su7t+mtpx86MHu2AcHAC\nOdc0fZodHtBdENLIqbe9deCkeowhIVdsT64ziq7dWFqLe+GyJdg6Eq7vb8XC\n426j5bJAw2KWmgxeOwKGFZcfcH0BXRojZvzvKK6+RxRAJbTUlcgWBK/SL8Js\ndfKS\r\n=H2x/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"895d741760c1ec2b35bcec061fcb274dd6ce45eb","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.2_1537191761326_0.8214046200395317","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"ant-design-vue","version":"1.1.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"44d05c6d5991c4aca9202f44c4d7784d4f80403a","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.3.tgz","fileCount":2163,"integrity":"sha512-84uYZeegbFl5LVun5eR9OoU1sdsVCJSHQN4z1+rT32OqmOFVxb+sZ8QCmF90fE1BtnLbqeZgmMa3LGyI60qF1w==","signatures":[{"sig":"MEQCIGh0Y4xbfdkoVQic1odJwSr+0HiqDmBFccLCIOAYXHpHAiBvwa81KdqqDIhd4fl60He5mMqun9uk/kJeE5ARQlpDsg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32421022,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbpkfFCRA9TVsSAnZWagAAz2YP/jIcVEIg7v5YL6DnaTD4\nHpsYn29eQxFQpP+W0r7X6wCdCvsrBrMjct8bLLwhKh2A5mJRmEwSmchzgbT5\npoPvLPTLa+84XCPcX3KNvksGpJFEvCflrK6XFFJeZofueoqqZ7/RDp2CQQj4\n6HkeAVtICYcoC8APU7bho8HwFpxP/vIyMIPhS02aq4wKvMPhQECA4b0UfKq2\nFS/QsDRkHdaR0GisZo3772WlQtyQg+qmvq4yWAJIKEhiflUn7OcxHZkBrU1t\nTnSOylYlxRI4E9iu15Ky2/kRQbPYDdQc/zBBPTrkZR6Vv9+Xt0+ihN0UZpJc\ngoze4P1vixCyryjSXjVAPvqfdHHcG+XBFd+7KGexLbBfzAHHqVuNE0g35ZBW\nIVM0exwcFKNVFzeXPbJUAeOlgIxdOwQRF4FXVtwTYQgtv045nEHRqUpv7Rho\ndsKfSf06lWqWOndaubJe5l70950hI/sGkh+5f4XBdqyNpHFgIYTDhKE+Yz5M\nLnRSdLcVoKeOP0UY+TVKIJ97FjdVhsCahksMKRXN+5con7FUd8ed2EVQzaop\nlet1ZR3vtgpw0Vf94MP5sV6Vv7if0QUcED2ddLTicLcjTNOoEPL/3wjtIuXn\neukPqfrsSxFwrG2HHn/NTiGL+YHYMFzEdvg71GhODQRarcE5at4hYlrmEJJj\nDiQA\r\n=3tJP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"b7b362210a02393282452a983bc026d705aac6e8","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.3_1537624004095_0.17715360580755646","host":"s3://npm-registry-packages"}},"1.1.4":{"name":"ant-design-vue","version":"1.1.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"6a9ff898e72184c27f0d160fbd35058a42cbd598","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.4.tgz","fileCount":2169,"integrity":"sha512-YylH04Uk3wojCAPtNfTKMVM+8QO29VFUUCN7cy6L3dwMzCq7n9rvnKRs0IJnPiqg59CvVT8NMpNLtCzU/JkR0Q==","signatures":[{"sig":"MEQCIEb6h39ihojzfRyDN6yfSJOTmMCZuHZKnB1cwXDW+I4IAiBJCAFBb+xEtrmsvM0FGC52ukRL7Ziuog4Kv9DMcnNPKQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32522100,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbr0HfCRA9TVsSAnZWagAAm6kP/13L6wCiwYT3JvtkUxLC\nGTb2nSITjK8AqslCz0l7UuB6SDpU26p/qeEsNkDE2/sPYOWQBHRoGGEoLcGi\npMyjWachAtsPfKnZ15e7K4hm+b8Z406+vAW4nCvQvvQz5p3MokZh1Bizomdo\nr1QBFR/tAzzzdRmsil5fRRD99Z+C/0ne8oaT7HxfEfcCros5t3Xio1znBV/9\nqFlNlcQs/DCmR7xyhDpxZlbhsPiUJ8QlpBmmrQ5cCTpSW2DnJ45PXTI9mnOp\nFqols/+cOA3Na+A/s0cf9y5R8vrqxgRK90hPAWqr/t2tE6cmPFJiNXLszEmL\njXBnoxpeMVFE8fJoyxwy54LENbQXN/LO/H0DqDvrcw6fRsUPDqHWPP62EQnH\nD0IUTgc/HHBc/2v9o3UjVGmqP5Fqi4Mee1/qv7Uf3LjPVFiTad5kYruEJLRF\neszLaaA8BL29lh0kaJIv7JssxbZD8XmDxI3CVujnslQf0/53TSSTkx0tJCmp\nUfq6crN3myBGuK1JQ80w5KPaSS5pKY8QgUC44UX8ikCYQwULD/3ulfObRVFU\nQ+GaPChMvE4Qj1548YN5+NXk7/KthkCVF9ezA5ihJJZswgrNkGTs3xXBoN7h\np4t5QfQCBkNOs25U1yHeEAAeRkaAz0j4iRDpAGRFcZ9QjdD8AzYXGvx4ais8\nRXjn\r\n=pWbA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"328cdc853de9dd58d08b93f0e1f97491f092d21d","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.4_1538212318586_0.5433913860432189","host":"s3://npm-registry-packages"}},"1.1.6":{"name":"ant-design-vue","version":"1.1.6","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ec55979304fa995054528834713b8dad1e42861c","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.6.tgz","fileCount":2169,"integrity":"sha512-X1CJmWc0/pTW/UyDaaXEZXQ11m56AHdvnB7Ixdm7OXjdBh7J/fn7K+j4un4lgVEW7D+nxmkqBGw6M9cYUGMJDg==","signatures":[{"sig":"MEYCIQDZVYIvm+oYHoc9yeCAvFtDyW4JWZ57QzRQoBE2bbCcNwIhAKOwGFeyZw274SW7TXv0f5qZb9yPxC5KbB6MRbKXp3aO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32537650,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbvajTCRA9TVsSAnZWagAAvlkP/0lxZ1Wj2FnpxOtUfIBc\nTOsLGR27rGPO+rfGYvvgMQnnChQ2uTOLH+erN6KsvBnoB5ePFxYMa3T0PKC4\nmosOjGzZregZXg85YxFsUviYN0RuXKMc7HYmHch7Ivv96RfE+RSOkL/hy769\nNvqJSCXegDVZAY9X06gATqVjQnJS8HWwyvmZ7wnCSjh9ITO0MC3VbpxqTEeK\nE9jqsEUsucDTDDcHUbboMQE0smIeYTa9nrXkDGBte7yh+jIoP2PuiGMelFD2\nergLYKBhWEIHgXU8OnAGCIXseUvdrh8BlZIejlb2NjykEC05dgfICJf3ZSqg\nNcZNy8uJSTPmUGCl/fsrtwmB/RJXfP5uQjC3ZatozRWhDHgCKB31acTIIUIA\nK79WkeSpzkx9i9Sy3dfLwoiUJgGMDAG1klhnC638BGbCPOjpENHYE/dbA3qU\nMRh//rZ4zXu5Bv5v3/PME1jqzRT3yndK7Je6i4fztdHnMYypf5CYpknLLVDp\nJDzRjMouoZGudkekKaHtWVx6C84zI5dijLwXf8/0Yp797Karjo52TNLbuFeZ\n+pxoY+saZrZ8rYQmntznb9iY/r7EEQSJptCJD4BpQbRZwI1PhDjrvgT9GFfV\nTDCHy2+PVuMdwMNYhVHLwzCY/Qs+qEunAqROMQfkzyPjGJQPPmmEgjOsIt20\ndVih\r\n=i20a\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"0db7b0a4fd8dea3c5ecb0be71e24f63fd059d278","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.6_1539156178609_0.6980143030523474","host":"s3://npm-registry-packages"}},"1.1.7":{"name":"ant-design-vue","version":"1.1.7","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"19a9e1d53070cba93225c80145829898b003580b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.7.tgz","fileCount":2169,"integrity":"sha512-3lhP0rAY4v3ZwzBFqSJaBJ6Wmo1E6Z4kQ2m4+ph1OuN4DAW2oDw2KZZrZcqT9GscYUgdn1A7dCiV6MO+aJU5tw==","signatures":[{"sig":"MEUCIQDBYUpIRE39oJYK/vuUE30ZYbKc7/KWIpZy6s0c0sahCAIgIXMOiOG+By1YwwcFL3ZbFa6fS+wTtiX5ZrkQLOW2hxs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32548362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb1DPkCRA9TVsSAnZWagAA0TYQAKSyZVIxlys3xdfUe9/I\ntR+DD1nwTfrlWF27oaWLJiJyHmOFF00Fa/LOEYpREl++4MJPObz4JIVHZg9h\n9U0RJeg1QJovR5RMncA7jIarhjyt147OonqkzbDQetup6e6IohGyMn8t2LPy\nYzi0UMw8td1A+u0UOUUjQFEgNFE6N4t86TA2AaSxHmZv5LDKIwosV2xnQKHQ\nV73D9wwaG8sqNSoEJbf6o7dIcvfm8f12cvYmeZ88stp0SY7o861RMTfmmo8V\nujbC5+mx6s0y3SFi4FLARZoRiQZMs6YwwDhJhHdAHbZhBVxbh9TFxHH3Gdu7\nTpFC/lFkkY5TKAaZ7Al8vZISniHd2bz8Pld+gNAAfPiipDFx9sRMrqQvfuPk\nlzag7IXkVWya2sz3XboYmNcSHsWVzuPWMihBZ/WPA4zzFihzaoheq/2B5Nix\nXMJxWFecI4UtBjn+GIqRZ19gLJIWxrTAWverDuq1A3BvK6TEhAzo7LgHL+QN\n46vyEt58zKW4zWFAn5CeKZyAEpVlKC8/2bo+eqYrt6PIbM0hPHGF3b3YO6N2\nRlqtKUnPR2B4A3JQhQZVTiGUIMsYXlsaysESCziadggvCDslK4lr6BzvUFW+\nFisqzh2HDhPIjwF2qU/6g0hxSZZ1JQV815YP3KNgosEOP2kWSvAMGUymDUSQ\nA4vl\r\n=VBtV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"75ca6435aade95d939f2a5cbb696a0fbccfaab1c","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.7_1540633570992_0.7361528948148006","host":"s3://npm-registry-packages"}},"1.1.8":{"name":"ant-design-vue","version":"1.1.8","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e0f205a5766ffc42646716b877c9f6690ec2881e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.8.tgz","fileCount":2169,"integrity":"sha512-/chhcV5qJoBJbcd5zCfHLFemVxKW9/nsOCZxWlT42zbgZT6mK7L96YUO2Hz8YjD5PzGMafJKKjLKBs9IYjqmwg==","signatures":[{"sig":"MEUCIQDEOa283Qb8nWVY7ss3cgdlzstYcJVwZm9JgXw4W0xOiwIgSWp1ht5D9WAzlwUppJhT6vgoYgx0OW7aAhjTvzh3xxY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32550686,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb6A98CRA9TVsSAnZWagAAskcP/38aRJCNyvxBQzV6f8Bs\nQwfi0l5XzzduF2kRvZgx/lVjtuRLd1q5zCNhFUWQfl1357jPo3jjNcPo7mgQ\nOQaoJ6lyJxQw+YJIT433pSGtKzxhwNlefzAgBBGPVc/XtEOuPs8tqo4dSQqY\nnY2tAu0S8gGhmCsEIoeeE8sXdwRNUi7RvJUKRcNeM+oIawSYCkrYpp3v7BRi\n7wN8q7O5oyCXsTFWbZPDiobysafOus/RH8f5lU4KaaUWtnWqLbtRMdTmHCw7\nXulcdp9ZgN1/Y1B2E37N6KW8ibhBcRl/CtcwrhU0aoCkgMrutZ3x5lyvOwuE\nCB/mlupXZs9EuPKXaiJO2k6T+oT0h/A4thdwire3qi2BUQ0oc6MQVe7ubMcs\nnEuIqRFpDliWYM5BLf95uQL/U6yg7KePRrYrE9ZoCLjG1AOlalvLSSTGNZj2\n7HS48lJPDBz6bsBTDFqzooDBqZ55OYa1H8lcnkG2MHZWlAOjmD2SDnQYdgop\nDJkuW2V6/g4tFbnC/AfJ6oSFHgAXEbV+mqvfiXZKu4IgnZE/SikMsaaklNdp\nfYd9sqNgtNOHk4nThrUFg4316YIfm7gcGhFC+ihgSySc3tzyh6Hm5M0um63x\neckZKc0gD6Tb5WULeghVCvXdRa8daaU95yGWJ+c/cz/7w0PRo5naCRjgp2Uz\nYN6Y\r\n=2TkK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"1dbb9c14904cb1b2c03938f54d50a27195fb7036","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^0.2.1","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.8_1541934971215_0.11686279450712123","host":"s3://npm-registry-packages"}},"1.1.9":{"name":"ant-design-vue","version":"1.1.9","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.9","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fab32c2e6c25e6226c2dd957d66e68257b1e9b73","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.9.tgz","fileCount":2169,"integrity":"sha512-LkDFDzD1t1L0G6Ye3P7s554GWZwZ9Q5TOwcosPEjP3qumuh/466mjjySQkrLoXRZTnVkZv1ng296x32yeRWnZQ==","signatures":[{"sig":"MEYCIQCz+TarONpQrU476h6cHpELjeME6jMhmGGEvnN2Xrgb1AIhANHzTF+IH0BAyLh5dALBUQQYZktSELPhniHkxD02SVpt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32536465,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb/AdLCRA9TVsSAnZWagAAQbgQAIeowAhIJeZxvmEDaGTq\nu5SLqZvrIOi/pJ/BBycc4m/ihXIRfTHHmkd1pC5s5GEzljGPp7zm3CO3ApT7\nOkNgJoFeZJmetuK1r37MrjuyvGCfNg+k9WpFAxze1s2huZSw+2VgnTSAXVQg\nDDDW9Cj3aUODu3VO/LPAdMRIc77WSZLGFRE3PQeLHFithVpXPvuVtWhvuoWi\nx6tBuqQM7roRAoAUungd9rETL3sb8bNYnVd9Tt6yINemm5AGfZt43aa3ZunR\niJsu2+0XsIm2+vilNZ2ZkdDJaVbysdG8eQdvR2pGkxOZjMNw8HNwVNbrtFgv\nd7rh83V75YBFQRTBsBo6sBT/wWIuv81g8qufV5msV0WpSU43N5gENx6clSNv\nj1gD5kb79aweXyw8eCpVGBIB2W7bCjPJuR2nDXVClu2dsfu1ZWV6BXTu822y\nDq1a7rMAlAP734oN7wnjEfMSX082DKfYNIECatFNacnUidibant8sZGgnF5z\n9J7S5ziB1b2JY3EGEdCLvo28x+ibbgBG43tGqsyhgJ5ha6GPuc7Wj2MlwG2I\nlmReW3GAkvQl+V4vXyHWqnM75aboiQ5ZnyFN8PuguuJsa2w7HPh8/8EoP83Z\nemb6FTwaKoGQMnFFOr+Fsj6Ly7hgukkozogyLiZqgMpgOKSz3APu/dgP4SKB\nrY5+\r\n=rz9c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"bc4990833abb56b258c107beb16f06c657a6e508","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.2","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.9_1543243594415_0.2615461804621828","host":"s3://npm-registry-packages"}},"1.1.10-beta":{"name":"ant-design-vue","version":"1.1.10-beta","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.10-beta","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"6f0aeb3db2d512de8ab447a74ab7e51d39fcd434","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.10-beta.tgz","fileCount":2173,"integrity":"sha512-Vj5y9RCCpKkGCsRVqUaXighvEfAAMkQlir+uBCO08FgfBWM73Q8NYJ8RSehpt55ucdb3RE1fHmowzio3p6glnQ==","signatures":[{"sig":"MEUCIQDfLTuoIpwtCj/GMIkrwBaGCbhwmRPpkF4Qi9aeuQTRdAIgA0G60Hvml/8XXNpexhOafw7UZgQbapt8ShZb+JVSWjo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32656435,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcBTGBCRA9TVsSAnZWagAA45cP/2vluvJ5/w3rO/EGQ9q7\nXd8xIkpTcIJyGHzzdj4t9qY/QAPrdjOPH61N52iwyknGKlt+pWjKvSTSaChY\navxQ8iBY8QWZScrGNk+ac9OQQDRxR7hK0PeQ79IcVxYnl+hoRcQEGo+4huiS\nl9k27DbI4xkkN8w0vuHtPUjZLTwTARrLlsbjeN/hpUQNDMSqXJz9PdaiLnwI\nNKPiaEoyoUwhP47t4IQQ4ySKD8OxZ55oKWEyFSpZgTyUeIJUv0o5gpjhrBS0\nIOiW8g3hqxQKowDu7aYKTN8OTrSGtasXuuvEnnEyx434mJl1n2BLWX4JPoVU\nb1f109uIanNHuyyehA7bTgdT12hpBZ4GdzzpHjy32Ja+w05aTlCx58pYV0w3\n9YM4Hgr2CbgTWJdtGNlk8ZbV3eW9M2OdUEgCs+HNMRv8zfzH/RTTND65zqAf\n8tBSVTpLmeXA4Qga3PZbT3EiTaXF02wPgzluU1NCkZUO1mtI5xapyaK/+R5l\niBvGWOLKl3WTyaJy2wnAFh3MKCCpSdHHPuuw9nRwuXhmcaBv/k6kim50sNjY\nqpriVzhmIr7kTvuO1HplXo943VeWE+g2gNuTMING9mCtaShIe0xrmmKJkE5E\nSxxeI8Qoj79ayQQZ+5OhY7ZLQS5wGkp4d9/a8FM+RSJ1TjMIp5VNH2jjqkcm\nF5Rl\r\n=8MDw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"91251798b270d299a313ff0965c70cc263cef742","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.9.4","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.2","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.10-beta_1543844224254_0.8654821644167094","host":"s3://npm-registry-packages"}},"1.1.10":{"name":"ant-design-vue","version":"1.1.10","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.1.10","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"b9ebcbab6dc72e0576920f8dc3fe7498e9d4bf61","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.1.10.tgz","fileCount":2171,"integrity":"sha512-NJefmFr1WZO6HQVtENDyIquTYMx+3NLKgQdb0PY/U1+VYfnCw21TBl3eOLJTFDC7YKamnCH3pz0Ok0OKr7IVfw==","signatures":[{"sig":"MEYCIQCxNcagPpupBxcTPGChxOYSub4+DfP3DrVAZ+JMJ9dvdAIhAJSaznSJOPpJYrFIJgsPWE1bYWVMBbNOzrmzA1Ta9+w2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32662368,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcCnfzCRA9TVsSAnZWagAAKGcP/ApnI0kp1xKQACdYufrf\nRn1IYLkFiGy4FuvDNoCTcbj6CRccbN5BqsbWJ4myXSUmiTSlZmuDc2gWqjTi\n8O2Qw6Bbx+hGGADwgsIMZE3DWGuSpCDdxuE73ddrzPR0ue893YojC+0/WJAB\nkA3jOAJRwLk//ucWKzYWyZvbRpp4N6FDzGUrHCplthe1RZbUDGlnxdCkOnYW\nN5E0u9zXfgIffUI+zfRrhdLAntl7IH7wZ66R8rI5yjrlGtV3XV+YfOXpGy35\n4RViSpOUdovlImYHxDhy4u6PdwIUI/E3S4h7CLRFfPVXHiUoUss37fglCNJU\nDvADRaY7ndybRugAa/z2C+RGc/M2knl7pMHWVhDSC7oFcX9UyBNQcWjrYu2/\n67c8+roAWGmPAiEbGnuD01DdECxaZymy9ULt9F5jDDMEepfy/lkJ08moEhYZ\nFk6HmkF4elxzjkpqsvcYPdwu2p7VEadJZcyCjSK7NlwTHkeKn/+XynN2y7//\nmbe6U83CFd3hq3tBtHBKD6Iibow5NiqarJCK0N0SKaF+EEXPVykg7uDGJNta\nfzt4baDfjpy7I2TGN8LTzigfuld9y8cWnVz+nE36y5EZHydcdXhKfVbvk0XI\n+um19L0j9vgo59T/aVMjFPa1pVYBAAswDnAsvjviqYI5kd7fLMZvh0mtGQMD\nG4Sh\r\n=rqhR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"3465b28a7202cb0ac2444a91bcff8007644bea2e","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.17","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","moment-timezone":"^0.5.17","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.17","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.1.10_1544189938675_0.3667698193057698","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"ant-design-vue","version":"1.2.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.2.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ac0e7118b861c17861026208444625530dd03b2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.2.0.tgz","fileCount":2231,"integrity":"sha512-1KOuKAjQMOcB3kAIG5kErHx7F6BwyYFFdS8R6hfy4uFoTTNiZJ1o1PJS07/5gr0byBmsZhJZfZiqWmLFmjfeJg==","signatures":[{"sig":"MEUCIG9M3WKe/98aP95IYJt3qAwHR2eee8ej3pbWhxoPV83RAiEA1RudVb/pHCp36vZWe/BEixehZFGrOI8KOquY+t8SSqg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39748633,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcFjEmCRA9TVsSAnZWagAA7tMP/2PYi/vcpzDhOFpTGPdO\nBloB3Djwt0a8uQHrWv9sE9BSvK1Uggpnn+dNQKWtIe6hnF/l2MOBudXWEd/c\nFogomGeIjPL7NaeFwVQhlofv/DRKu9zGothigWmh7eicXJJA0x4wUDXF9CzV\nIZTBm7mZILyDtg1oPlIoLggTYV+ELMXwB4tt7Dc5Q/ayTOXMeOL/WNCWydwd\nGH3ds5jv5h7nv+lh/MZSo7lOFaDSXnNxjAGMiV1oybo29XT6dnpYsOEqpdqv\nGm+2Qf7/ICVww1ViPw/WMKZKlqrS+535p+yAF6sG1whfjBO/+4YWU1M8zAzI\nyVw9C43zG6/iWt98B6/fmRqYyLrl/IkAceCHjsGMiZ62wYgWcbhLlCUe9gSc\no+WN5eUvCgYWkwHit6Ag4/l3UsKHjgMKV5OYETijdJ0S6ZQeYClh+UkbSGbM\nD784rhYRtrH14U7jfKl2fKhTNsxU8xRHMoGkiNG92lnCJsj5fqC6WK+dwkTF\nCRmKQTWwwuXtxw0vHfj1mAYZnlxs9xUsd6Y3MSB5AcZXSqKhz5JcAPXSyVVJ\nSUSXXn2RcD0i3d0e80sFn4Ort9meLXmfBxOZKt8pOOz/O5cEYBKuNbHPCS8p\nE5hEpg2zosqUqWwu4MdMx8v6bvt8DWNPxoJz4seQoz2z1kQ2r5+zaCTqf8HP\n+Nmn\r\n=cll4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"b905d4f588aa06165cb4244d11144335d9c3cdf0","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.9.4","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.2.0_1544958244808_0.4082698473162414","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"ant-design-vue","version":"1.2.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.2.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ce71c62c6c8080372b07718df0fb405ff1863680","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.2.1.tgz","fileCount":2229,"integrity":"sha512-boOtRgMIVi3c6E4EOwrF1bn3KFvpfJv75RLa0tTCZCe7ghmlN+WF0QeJPaL+LaY8dUbO8xJXiuNutzLEKNhZKQ==","signatures":[{"sig":"MEUCIQDvx9tm6sgpUuXn6JdBt2Zgzk5yhX28TN4dmq76zy4WAQIgW7teSDfz5eM6LViJkbbmdpHNJKVS5D7mPdcIZZe+3uw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39695373,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcF6mCCRA9TVsSAnZWagAAQzcP/RtavWaTxZG9fvw8HA94\nnIxyMYwrKK56OcIARhYknHwQ97MQnzKf2DE1UwdU68IH7LNLXcfY9x9IMNAq\nTGeaunvTGc30Qh6p6xoBHAglwaKNuDoWxM41ZOZIzKJJoKwDvrfIg2HywCHn\nx1JPP+/NVuS9LOsLwD02QpTZyq9ucjwUSJhglbUZDyK8swRBqdlaklrR3LH9\nlJjCjywuYFp4bRhC7qZ9Domd4+qNFnbbsg+BlPBccq6BvkgkPzUl6Q3/GitM\ntPzaJHUCbFGnRmQu7EfzmbmaM1ZHLU33HZ8vkYCfBjeAe2k0rhxgDzmUtq9l\nePnrEFAiRG4a/ytnpiRJ4bSWmKd8la7Q3/ND9Kq5I5fMaHVQBv0Lu1PExCss\n8ljXQ3Iq74FI1sdbXxC+bIg1CRAKvqdyUiJ2getUiNkbWuULHpnTXCpdIRx2\nIqhgxc0v1TjrAtQF5ieE18tQaZxoXg7o5yRqH1j/N0ZunkxvufgopgxI4AKt\nhci+6IDD+e2CIuDOXLaLvqDDAtloM1G/ODhVUjQH7OlDHbwN4KuEgB3526Tu\nC5UdEupMwMZmeD+AShVJ/84Q1AGCL9DtAJBI+IEQ1a3gk5wZPmbGeFnibHBv\nK2v8HZYqWuW0bWUHWqA2FkTyljH+aX/memnsKSA+9tpv+KSWfOHEs/nhBQw/\nBrl9\r\n=yaSL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"34d5df2fcd3906215a36d1a6449331d6238b4983","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.21","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.21","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.2.1_1545054593680_0.6694122144238477","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"ant-design-vue","version":"1.2.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.2.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"6c55c7236fc26a251c02cb839f02892c358ebf08","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.2.2.tgz","fileCount":2229,"integrity":"sha512-8xUCymEbYf6i0dmF6lVg4BpIdbj01jEqfp+u/ZTn2XLGbIuOJYnE6aDmjkWEeejyM5/XuJx0cvapVBZXJKgtHg==","signatures":[{"sig":"MEUCIQCMk2LFacFhVRQ5pvB6sLPH299CdXBpYd4ExoMYivVKLwIgDfqEZGxhBZjFzvhmRdMhrnx/qmxDvuOIEjcDqZJdy4M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39726577,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGlQzCRA9TVsSAnZWagAA/ksP/jJmSWx8NG950HL//pnN\nmxYaghs2T+Kuw6HI2oEQHxz227Cwb7DPjak7ub0aug9awpjO742W+WXnAPpD\nGbT6Ix5kt9lUKiVShwDVqseWhBLQQ/svawdSKs3UW9chj1jZPQz5zqcZailt\nZBY4SLm+2FVtWJ6zeuliLpSOyBGjoXfEv7asbC/cH2W+meFR/kYdxKEvJT7M\nWN61uyhn/sieQ4MBOaQ1SjXTcprhGCFlRkRVcPk9KXYS4TbRLV6hiSugbxZj\nL/VFtWxeAD+PZ5mkGgOB8XcRtKWEpKxhwUXzlIsxhkcwrKz7W+O27RMnULAq\nkgEanaUKoXjSBDLFKaBQGjzcv2q3OANOr2V8zA+Ma/PvVw9odnSUj0H5Wy5t\noAaLiYEXwEMRUnM4tGsV5QlsE7pGNzaqjJ+73oRjlvrFEAlKf/QfvABT1PNm\ngm2pf7GxKsuzmE3CeEHAX3HTF8Bx8LGnh/vbrDOzCvRlBfyfEAmJ57MfYgEj\n1f7IgA6zp2ihpokxfKtHgPLdskU9jlo+UUVRxMiqR+da5u4IL/m4T3rFlyO1\nykK1HBEwp7kTSH6A2oXnJpIrWcNp7iOEmOOiOPHvgANScywGYIly80IZuVR3\n3511XEUpP1lZBhGf9CDwLyQSWcmlWpaKJTeRszYyUaYOsBKj/4VOZZqe4Ix4\n09DB\r\n=Tcbd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"6d32836fd8607d1a828a7076573e626dc6aac43b","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.21","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.21","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.2.2_1545229362734_0.9818487905163891","host":"s3://npm-registry-packages"}},"1.2.3":{"name":"ant-design-vue","version":"1.2.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.2.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"32364204f0830b393fa3c1dea949ada85490e9c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.2.3.tgz","fileCount":2251,"integrity":"sha512-P9lKJJ7JnxvDeXcyC95xKYz+uHfd3R+l4bbcbEJ7PlRMgEC9N+qRHusyQWhInZIgq+rgt7tNzCKzAyUN3qmFaw==","signatures":[{"sig":"MEQCIBNyKueIKWHq9V/bojxGjdoLcgYV/2/0Zkv/svk0SgYYAiBZO0l97M/Edo23/hT83uh03EeI3XXIPvn3m5ReaNzugA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39930701,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcIa+ACRA9TVsSAnZWagAAIZYP/j2XjiQPqfpzGc/z2Kbg\nQUGbstbojVKeL518KAYAul5IewQfkjHBh6o2KBxfuaOAnXFNFfVIXD8skKyO\nFJYet9VIqzOtx4B/JEB2eAcj3Pz3vxRRbVCBWTyhkhfXcyxeSsNV2ioRBO1o\ngB2ZjyUtztJXMV2UVTHSYObyk07h6RmOw51n/zEiUTU8mj6BvCT8son7xkM9\nJQaWP2GTjBoepx1G6Sj1Vzd+FBUI3ZJJ2pMOJ4S5qos91NUxT2Rg46/ppeXx\n3n+xho6fhHGGBak4rcc9XQTI1YDI7iWDpvEU0IkOjPWFWul8N25vURG69qbS\ndiRiDDwMcEKa2j3fQSTYdU3Mt91hvYxJsDoRidSvswnzXtCr/DWg8qJrUiDU\njv2ApolZWUVdu5WWrJN2ksYAQ4HkqYEoL+Wn3GkHtW5kcM7JH9rNRxSHk+nw\nLbOPHckV2WBaidyVrDKL594WonXyhenG/Uwk3txtf19faQibVDLgmd+Qe8KM\nf6+g4MG9A+i4iK4yHbX/aL8NpoDkMJ/j4LbeC6MG9rAsOCy3FY//rlfYziJL\nGYQ89JXzSQpIZia+nj0vhftf9DL6GusxWFSphvYv3SPYMVS8RLYnZAgCd6uk\nKASb8u11mgV/J3gnck/AUp/F4msvz/eJIkh93fnzMn6BpuQyriaR1xMvhB5W\n10SZ\r\n=fBxb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"6587ced47442ff128089acbf8ece1e0c186e5429","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.21","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.21","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.2.3_1545711488004_0.09417906217513239","host":"s3://npm-registry-packages"}},"1.2.4":{"name":"ant-design-vue","version":"1.2.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.2.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"20e5cc9ca29b03176f5622802afd4ab1652addb1","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.2.4.tgz","fileCount":2249,"integrity":"sha512-NZ5M1DtoX24DAbDQOXeptZNQSDYKgfhr163TVi/0cemd6FwraUEdABuA8swExg8qyXgKbH69mB9WDrt+WRgaJg==","signatures":[{"sig":"MEYCIQDu60l69AIykE/czmzXGWmO5jGUDT9wAuRqqOaREIDO2gIhAIUiFkQS99eSyaUvr3jn/oCCX0JJKOuDp4o+zZEeWVG9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39953027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcJ4KPCRA9TVsSAnZWagAAzTsP/2eWBrUYhW1eguRVtk2X\ntBT57/yqpNSLVsE4WOC2dfTWLJP2VetgdE8AIj+HzcZhiQv3api0IymhxtWQ\nxr1Zs4+/Cm1qNK+DouE4JJWanbo69ZYB9WY4b3MDaLDjRYSUslIKCvH8ebtd\nhTLIfE8jqK0ALRWVUVOLm2b0ucv2gyAyA5mtO2cGCg7rfYJb1KF6CQFoH71V\nfGdakBk9iSHZejJBLIoLNIuWChetAIY3AHL9EkmbqtAmxH7FrOvhimXgwE1v\npmgWtN+ANHLbKBTxuyllJscD5DsCm6IiEDSeEVkSbZuUTMFgsntv8r7dmGYs\nHhY053NltH9eZz6vgsrOI/n3Ew1ejVBUz+B/NjoliOZWwTCQJYjRIsxblYcy\nDB4oo279auWU3i/WIvHrcuL/4EO/kY666D2+Xr0XHpSRTgEnonaW7qp+mY04\neFRrhtMGQ/C1XeUPx1rSbQ/CpX1I54hgaMv0n08z4VmtsKnGuaEE9cIwv6dc\npn/usx7z36HGVXQeEnpxmVCJFpwoqmK9KBzvJsY0zUxLMqJ0qawTCeRepTQk\nUbRxZ/PiGFzoiZRxjOdZVDYlfOTj3VolVOnxj2vZPGwUsLKdmz6LurIudhzj\nprbJEYgMlO8PVB2EtVj9Avpu8b01gNUe3cmRVb4/9kN4zJJDGS/qxHs1/aa7\nRBrL\r\n=tFNy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"5ff56d033bb41ab8a21efb609643ad5871a0b385","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.21","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.21","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.2.4_1546093198279_0.44180802260605634","host":"s3://npm-registry-packages"}},"1.2.5":{"name":"ant-design-vue","version":"1.2.5","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.2.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"f991848124699c868c8dd64980e04a49b0086873","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.2.5.tgz","fileCount":2338,"integrity":"sha512-GtbO0wixJ7G3154tNRps7UAi0RiJMw/nrj9Snrra6qNW6aAACO9JMBaCI7ckvv44EuzMRuMhTLlSOyyAy4LYLA==","signatures":[{"sig":"MEUCICKa/wVLcL1jMtk6KKivR+xngyoxchJJ6oxHQqX4UejgAiEAsYPSVMt0ZzPfAMhAqtdNDc3BMs4psc6h2tDhDmZxh48=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40100851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcMgONCRA9TVsSAnZWagAAMFgP/jLrSO0kjqarN3SS8ppM\nlGpDngdnpO4Xrvnclvr7UWYxsKp/FXxRNI7vwDisZfnuz1/U9cqaodlAZwUK\nBel1DiVRSBGKsducNnmhfrGzlEHpGhI9b0YkZbW1ktT9KG99EgDkjtdbGzG8\nTU6Uo4OXBwNcRL/egC1Dp8EQQ48jbxG51RgTDmWWQYtJVOJ8itOPlXcqdYoS\nGjX0A4YEurfXDsLZnU3rNKRsEWO3Wie+cL0XnzNFWvRTfhIw5qnF/FdrJeiZ\nOsOpXhhz7TltG0Hjx2nH9KcCcBwG2QLP09ITFNg4cTwrIGuUsM+9jeQUj3y/\n7RVqZOmzu95d5Y1+Qfw+rkKysvqaGK89D/2TEJ0gfTbKTxy0V3MzlPYB8ksV\n82keAUoc0mYhU4laP/mGu/C5GWRnC3fgGbPUhAm7UNJu5HRsgkmnsDMYHizk\nplYoaPhSgfS3o1Ii/7UR+ooiyPB7X+azgUFB41uRYFBnZKB/3DYkaD0xqX54\nIJ9EcSDbsRNy5umJ0YUZCiCMsxJPDXtwlWNRzRKJBTIb69euMHPD4EHlcTmt\nnFPy8Hg4Z79T0HX8qH5rHBJDBJNG820sf8SeRB0I/v11jq0oItl9mOHkg0su\n2NqYJVPzHdUFH8LaUo8m9iSTBfudcOIlcVufQkCyZknu6IIEJ26TJMgBHkc1\nogW9\r\n=6U0l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"0e36ee1e41e78f04ed614f057addc873fb53b54b","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.0","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.21","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.21","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.2.5_1546781580530_0.055104483099783774","host":"s3://npm-registry-packages"}},"1.3.0-beta.0":{"name":"ant-design-vue","version":"1.3.0-beta.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.0-beta.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"80f3ce10102ea8b97827562b6cb6deb671fb6015","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.0-beta.0.tgz","fileCount":2402,"integrity":"sha512-zcVvoI9oLDcGg2GSzUmqecZyrCYPWH6fRGo1xG8l2S+N4szCfARedrc6j2y60ukNnds3wpPxJTzaQjJ/6ue+Uw==","signatures":[{"sig":"MEQCIB1NbGAKBoF1iSLhpBYIs5Zy6RfpIq2R2BzSps1Vpqe1AiBHJKVA3jOaGCYrJCOxFQxYTUQ/eEkquwaYQ6ICa7Ncrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40656921,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcM1WiCRA9TVsSAnZWagAAjYkP/3rwTs04ZPlGNjHMeJu4\nrXgTNDKddl4fuwTUixf340XccUL6aJprlD6pWbjsU5/H2q92U+zf8j9x2mQZ\n8BA8UjYg8y+x/ekzLNjBH3C3bA9pr9drIA2QpYGPWlcd/3BpuWiLCVAldIJu\n5Gpf9TAgEsDTqk1YRe9ufojCMXfV2J30xeceRb1eIZg/p663gNxzpznBlMDb\n+ULFaeJ+dLD9w5AyDHuuk0RPEXCde/X7lzJLwkO10aq9XFOB9HQPyYWSmIUP\nhblbi3rJnd8amEn6tzud2CQmYSgo+Dy5lFxdZRmQ8SGHk0cdhgHE1X8ufppG\nkdTFHXGTlGvqI2lLaeH682cQ4yIpwgftkHgw3L31sotvSnFwRXXrt6nalmom\nAsGbIh8eDN4qgRJWQJ8Cdtq24jxxH9jm7FVNbNXkCRYv5liJWneRPtW8TYyk\n3IBNVpawKUae33pGL2DjMcFUaXV62B9mawMH132iyQH31eaNSJsV5+y8tImH\n39Zl7gfEaeiH8Dx0bjDt05hRb1pUWo5aFvakr3agVnUsejmrjVMvYmii2Li/\nvQ/1uf1gomumscjoMzA3L9oIuVTuUgl0Kv1lHI0+i+UUtjGFqKaKd7Zwx3f2\nbHIpkwo6Krde6eDhco6ehDliaSZkpvPZNxbqei4ImAtN6Jpmlz6xJxMiisXC\nF6wv\r\n=S/EG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"98eb6b2a04f6519d676c31019fb22c9094a3c4ad","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.9.4","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.0-beta.0_1546868129517_0.7566506840523866","host":"s3://npm-registry-packages"}},"1.3.0-beta.1":{"name":"ant-design-vue","version":"1.3.0-beta.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.0-beta.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"bc40936f08f2bbdca6c3d041c668417e6a09a7cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.0-beta.1.tgz","fileCount":2402,"integrity":"sha512-PIzRgIMRt1+UoZEYLEZFcovNVYeZ8GQTwzGpAOYJ0WQ/IwzOlglwMgclI20X9/ymDy4XoxyaTzVx94msHi0l5A==","signatures":[{"sig":"MEYCIQCGigFGEBeXInUFHlUxoypXo0KOLWqk9DXFiBWM/l/YQgIhAIxbNUhYDbOKQfACmLaziJKMP07KZynKOeTBUeRSKfFt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40674263,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNf9xCRA9TVsSAnZWagAAfqkP/2ullwQ87cF0nq+efwMs\n3V5UZBQUDkG4fQmLExWBFki0g3TREov4qjRPNY263QNy9FNi5RGrxvbOx5vz\nVOZHw5QgD/DRoTRG/ApMnR3GXGzLOqpL6nXv0WFw3nSidTSWBlbbSUTUX3LO\nfNdsVw4hrg2vO8u0S2581DBX2aaQMlHojPJmentnZ8u6swW9JWuREMiBsNWv\n4n27qzFl1Yan1IAonGjk8ElkwCDPiMJXHBcvjhXD35BZQC/aHe/U5vSvQpVW\nxYHtMJA0Hr22Gap6Q1AWLICRfStGETHYUH09yYU8CJi0e46jdeZLutL677ba\n/+/QXRhVoaqfgpWubFKlHdKKS3ZxRAFSIFGS/z/R34rI1x9t2EySoHaZemZ0\ndTXFdU1wpmeJs689pGWxzKl/w7u13TwqGdU25CQ0EjNeQfwQobANj/USpLn9\nCOFGeM/aYArSb3RehELWAbpLfyN69Mw662BF3IJQNhyqvwH8c+3X1R4yLJBQ\nwEoOaTX2zDIv+Z29YkzG41/Dr32bH3FdWZE+0EeZxJZ9LNsN+rkm+r3GsrOe\nFsyYNIpvkYgQOyF8ISZvXkLZBjFvp1u/tP5yX5UHnNgDmy3kjSLQiis0kAnu\nNhK4Pi2thLfRZ/ArONOlAzqmLGHYOKvkB29eySgIz8splSTqFMFHK5ed7dIU\nN9k/\r\n=jYvK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"8a9964d1cc2431506d879d80eddfca3200fe72b1","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"./examples/**/*.less\" --fix --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.9.4","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^8.1.1","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/server-test-utils":"1.0.0-beta.16","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-standard":"^17.0.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.0-beta.1_1547042672401_0.978593879261547","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"ant-design-vue","version":"1.3.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"63cb2549464e37fff60fc552d96c7838884589dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.0.tgz","fileCount":2400,"integrity":"sha512-n4uKqbAEbflI+nEhUTYtRHO6rzXBuyqYQEI28C0gyPTrWo/hud7uKJwNSSv+k8TgYrfRA48xSyqe5AAl1Sjh5w==","signatures":[{"sig":"MEUCIA6R/9WdHoOwrOvsRF8p4XhNCIlYW87Tl0eSXaKIhUjnAiEAoYRQa5bh+8LCCar9Opxfuhh5j1gRiwq8bXhVGPKeYEo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40660810,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOb2rCRA9TVsSAnZWagAA3XIQAJS3VUVByyK1f2F/hXuB\nVqEC1rCLosOdi7HX1ZPew84TNfgGDbygDjdMPWgW/PNDwOS0SARzWdhFQDF1\ndV0gsps6K5+nPGVYMirS/yTdIKxOjMNjNdBMaRkIVZMVMDRIQ1NqMTRt+8QG\n+Wm8kH0DAyPBYPIjNtmSLRhrp0aHlDnm4THJX9x8EnQVx2bLs03+M8hBVPm6\n0JUWBlBry5C9hl/f7Tml0tkEKLdtM19PJwfveLOepck1FR2uJTAqFUBOfA7R\n9fJMtno/KObkWfbFdFakZTpqNCGnZMNWGvx+fbHVdc25S5I77QOxO4Qq5Zh7\nqSEg6w7d+f8ZDlZ0MIpl4D+iQSt2SnIyLoP4+bYvP5Fe/QDUFn5z+hte6Ulc\nnhOHYus0G0iC5ZCJ+zLaVWYe0rNAwg44ajlfyUglfxLGW96gpVm+d0DUoIAO\nJRb4znFxOuo+pdqcYWe1x1eE6He4+IXo4UBm3szx+N5ANImkpgtm6KFxJKq+\n0molWG4VE8txDQqU+8a/ZbOYSkKSmxx2I57A7xJ6xpIOQAZyQcXf8f/7r1Cs\n2voZJKQ0jEcAwvS+VSYVKMEi6swZC2jgI2hvFj9O0+25AQIBXBpAV8LFx9bI\npnW3Igyy4WPlcbuu6pTJIaMpnd6vvZ+BUSPlMU6XidNf03hPtr9o47B5Iwhs\nFMkh\r\n=UaEE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"1a6ba14d59dc104961aab0ec3b4df7ffc6381c0c","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.3","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.22","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"~9.6.0","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.22","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.0_1547287973772_0.7790346311303702","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"ant-design-vue","version":"1.3.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"1a66b6929ce285400cb5c16a3bc884d5fdab1afa","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.1.tgz","fileCount":2400,"integrity":"sha512-5vaGBbpWgJ1Nc6hZq/rVWsnO8gj/78w1aupYWyiF30txIGMyxGOlFvJ2ZY04i6Uz4Mlhti1ckvhi9n3CMyaqGw==","signatures":[{"sig":"MEYCIQDbWOJ2HGIsFn17rYwDEJKdzyfgOQt3immN3iTWlPUj+gIhAKW1TlxpcRKFdNVvwIulacBx6FvBg/FLPadJncZ9dKe2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40673871,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcPUS1CRA9TVsSAnZWagAAP+gP/3vyV4MDqvCE6q8WnIrc\niwfWxNGloC0u+Nz6Tubbd/v0uiiLFzyr1lldrPr8HHyF4MJANwdglISISkbP\nLt6ayRnyT7kD98B3zJWkhxfgXkbzapQDwhOX2LgTKkPy6uN0Lg0520Y6ArVF\nACqJlAk/T4r88wTiogW4dzjeeud2c4USygwq/2wcNzny92blN3jGgGZDD2mn\nISwOVE2buWjG3p8VpJ5K22789vz5Om1wDZhCAyQWr6dntg4td3NG7W/f0/h+\nHN9DimbMglKviYfz/LPTm0zV7B2c9MMgtf3uxFiQT43Zr2Rnjqb/9uOfrXvz\nlxhHLND7kWmNlbsMkmTFvxzVYvVybKMaDysaFZOO4EJa77BGCPskNl81qdSR\ncjXTyQJZ188QdTEvMHTDTQ0QZZfj3FRV499iJBDsyCwWv9To0UVak/M+SSby\n24tFQvW+Nl3ynEg83CfIm8gnbl8H6NRe5TZ2a7bU4XwV7RhWwuj0AaukorxW\nr2L6ouECHNN/U4xC1X8CRZdP939QldHIgCIW3g+bw4CgW1xLUPrHWCGRkKPl\nAf8cYygHFxp4EsSxLWEU5wpNs7m04aPLeyvEv4yMGabMUklXfo2UmqjYwvHL\n9Ou9G44O2ma7bcjZeqv7AD2v8Aqmnafuz306CPhGgwYGMrkXMVTW0nYmS+hG\nD6U7\r\n=Us8B\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"0f7d77830ad85ac2e030bd1fe5e826ad049bde49","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.22","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"~9.6.0","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.22","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.1_1547519155144_0.95210307187456","host":"s3://npm-registry-packages"}},"1.3.2":{"name":"ant-design-vue","version":"1.3.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fb896f6d8ce0d6272233f65f0d49f128c1fb9f2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.2.tgz","fileCount":2400,"integrity":"sha512-GHDVsh98j9lLgEcBOetOzYRBId/QgXz/Os0wQw6rIkT//m+lCgKBF+UBBfrZtBZtJ0EhTeZZE5ku5INHmEYwDw==","signatures":[{"sig":"MEUCID9srazjOHqUo/hueSapqBIbXVvFT4PRhQzEbnQjtsT0AiEAsFCLTimpQ4BNVLRAThZUk9MuGegEbDzrAd0Gyv2KO9k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":40673304,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQAE4CRA9TVsSAnZWagAAhKMP/3EFF1Blacocvt3N/4CJ\nGi07MBnlbHF77MB8dC4O6N8s5FmM9vHHZa0FpSUE6o/q14PrDJdhHTmsVCKl\neg1y1HgoTYXYYT/cFItjPATlj8wxOJSYycjMwT71EGbPoP5ZmuyP7WnPAXvG\nD+zYHq04l/fuUFUfWeT/yFFoJ3UqIvWGoQPoouuSeHjgg8s/Ej/zWcVn7lcw\ng0xunTLDacqg7V58wLg98ODXSV3Vxt7FQ5Cmns8rSmbl49pfOQE5NZva6I7C\nkoQipSIby8xtV1aESc9oZuZUhayDKJP+ObFb0fgpH1oXRanxrQetgEo98tdn\nKYaSAPrnidgvS4YLVzid7hKNCNPt2RmRbv8qZVY8RvUggMMQ3rRnLsA3w6lM\nWgY+PZ4HRnwjlCKxSgAf8I3eRfSxlrApB7gA+EXBdwynyoTRctlkrN9bZ9Ui\njTY+qy9JGzcikrsORMCRcJGp/GPcU14tuB2ZAYArY++a8bNMGOngXAU75qwX\noKx+oMWUHRRgAYefQfIaEFNnv1hZziFBbz+asZG6YboIDMqfR15DO5Mexws8\nLNG9QU/5cQhgOeKklq+vBmdkwh4CCltqyxNM/9xBA/jHEdbP7jtVNctWHRBE\nWRtr1Dl/YaOWGMOGCsdqA+TmsVXKn2ENHOYio7m9HIHzQKLYLevi48Fcd/Ld\nwjhO\r\n=Jrpr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"466ea96f863f20da0687474ff96b17169882c7a8","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint:style","lint"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.3.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"_nodeVersion":"8.2.1","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.22","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^2.7.2","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^6.0.20","reqwest":"^2.0.5","webpack":"^3.11.0","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"~9.6.0","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","vue-loader":"^13.0.5","vue-router":"^3.0.1","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.0.5","markdown-it":"^8.4.0","querystring":"^0.2.0","autoprefixer":"^8.1.0","babel-eslint":"^8.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^2.1.2","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.0.3","webpack-chunk-hash":"^0.5.0","webpack-dev-server":"^2.8.2","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^2.30.1","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.22","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","extract-text-webpack-plugin":"^3.0.2","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.2_1547698488049_0.22442806554812633","host":"s3://npm-registry-packages"}},"1.3.3":{"name":"ant-design-vue","version":"1.3.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"7bcb515077d1c7ed5c29938b84efc119ce9f598f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.3.tgz","fileCount":2404,"integrity":"sha512-BfdXoa7r6IbhJjexJXtL22W++JmeWtajzHKpptM6YgoutHF8J1mY2a2jvv57+HClHn69nJxVPKVbjabdznH17w==","signatures":[{"sig":"MEYCIQDx1WOZ9GvR6cyeohX6WXUZ1E4Zk8w+77fAYPyq1SD2MgIhAMF7q3hBu1g6wWnQctaU0h0aOYSp6kmYwshZYdw3D1EE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34912576,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTB80CRA9TVsSAnZWagAAyAUP/3DjU4iPKM988z3xROBP\n8jr/rHzS3r4JYZGOK/GkTdAZsLgYhOp2FXV1w8LowFQLwBqPX625Wh1fLa8O\nFOB1daOzUaOGXb96RQk5cYNKdBFgGzh61gXkfOdViysuCzYXDPO3uTwyFcqB\ntf3IurGEMcw6oyjtv9wfR3oh58evgnd9GWycMRX7RO4CAZ0tssWzbWM8OtD3\nZ0rygMILGDxQJlDjQXkuyg5Q6hMe1QZAhQ79LvFJtOByhqJ7U9f53sEfpTn1\n6YcuCcLa7q+NuoEHW3YYY8s7x0sVbjaDw1MlVZrfweuygHj7pSJeVmIsSdm4\nWZDM5OM4pXOC9mz82ZCXhAJjdVa5E8GA2BXxzR7sFU80J+uy8mQmTp6E9aPy\n4aTUXq0enMboHZhaCkJrRK855OeXOzHQSICsIoLuxrdtjggXONS49+Mn12AJ\nPAI5KorRCxYFZDNrq4LUCU8AK4ER8CjgdUx0hmmYdL9Sq8Dc5beYLn2OfHoX\ngxsrqpuKWZrnvRhSPNMXAVZWQgFZmFTj0QqrIFGOWwenwivqidX58tpwAVQc\nS9jn7m7jyUFsRbf7AlSVPC0nt4meywqXHGwqtuebpVZBy8vWvTPTGqbXZL9F\nUOhNS5Birb3dKVFsYt3+nZJwp9M/Mdc2RBxKRfqnpmGP1f871C8EIBhJ9BMy\n/NOi\r\n=FfWi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/antd.min.js","title":"Ant Design Vue","gitHead":"72d04b1e2436ab5647cb8e4cb886c379d12ad4e6","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","site-test":"cross-env NODE_ENV=production webpack --config ./webpack.site.config.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.4.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.10.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.22","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^3.9.0","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"~9.6.0","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^8.1.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.22","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.3_1548492595641_0.7606450236992399","host":"s3://npm-registry-packages"}},"1.3.4":{"name":"ant-design-vue","version":"1.3.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://github.com/vueComponent/ant-design-vue","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"64ecd26ebddf92235290c156a8039f020736129d","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.4.tgz","fileCount":2405,"integrity":"sha512-ZG8eVEpB9LJBUo102COuezbgrR6hLaOpI/cj7Bn698e/Gnf1CKGTfHIVp27YiltHgabZpTG1QlfB6wRqXk+ITA==","signatures":[{"sig":"MEUCIQCwBsL+/tRBE51EXw8WUEN3FI2z4HGHBLNUU/edf/ZtJAIgKzlRQ6uPU4p3QhCdthXNf6bgcqrK7LFOHESgxgWJwn4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34961033,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcUsPiCRA9TVsSAnZWagAAqyQP/2VrvGC0TuQKWYEB41sY\nM8OFVgiq/AqNnvIkyTVlvdhGoXiQusDDRuIITMqwpzHXpWOlCEjx2leVE4VL\nCFB00L4Igtts+bijqELf9riHwFXO7T9QVRruPB9oSNyVPOXzg9lSeo5fh9mM\nKqHR/kW6GnnB6zWiz2NSKY6kKjidDjmjg5x/6+Gu8TiI7jHUpoW73unahPLz\nkLtcqyvksLSCpwjU46vRa3dgypL28tTwJHvNZayywbuW+e9wgth97uXfzIU9\nzblahdULc9kYSSOebGm313P1tzONIgdhCQSfBmzvbrvgz3Wt010TCHXBo5dW\nAgz57jDMOyLJZSxpVraqEn51dG6bPkv6YVHdXDCy+DLQxAn4Uxa2XEkCBY23\nmAYO+Y4223CE4sP2Y7Z1FbPGb3S3M5X7WbSEteQDqUAfyafnLTszYk9a6WZ7\nAMhzYcv64Oxozo+giH4WqbyVPKC3dWx0TT53NXP/rXz2IHEd10q9jyVKoJCS\nB3XuTRAZgV2oQy1J1SjEM+vld83yoTP2epwF4+dVu8+Arny+9ACkFyaX/FTz\nQ4otk8mC5FiZ7cyUTj69Xz3pITdiY9zgChzpgTIeG61m4qZNNj/wfZmMxcwQ\nDbX5uDyAqbwG6eNEMtsldhhLHlkQ2gInjDw6q4+iKhJ8nJFb6Zf7e9B+jqjb\nuyde\r\n=GGBb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"a9f7963c0c6ec82d37bfe4435234c455e99d75b8","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js site-dist","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.4.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.10.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.22","glob":"^7.1.2","gulp":"^3.9.1","jest":"^22.4.3","less":"^3.9.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^4.7.2","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"~9.6.0","babel-core":"^6.26.0","babel-jest":"^22.4.3","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^8.1.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^3.13.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.22","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-vue-libs":"^1.2.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.4_1548927970026_0.5657197474345974","host":"s3://npm-registry-packages"}},"1.3.5":{"name":"ant-design-vue","version":"1.3.5","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"3b191e3eeef676a26b2816eb2933e95e8936d1ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.5.tgz","fileCount":2405,"integrity":"sha512-EPRdBv5UJAZfkpR+KPYB8dpwpDsfV94PiuFytTvaq8Vw8TolB61/a1xQYko+o8qv3DOohyjPGmUpINR8zyjueA==","signatures":[{"sig":"MEYCIQDJ4xjW7U1Bvk9bLSxM2RDn6SwSN0wo2/UTpYMuTsZwQgIhAIJosFrXk7LvXDh31X0hmnQusCKmkOvxIfZVUC2Bj5ov","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34971167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJccSn3CRA9TVsSAnZWagAAuToQAIvjZJsqIKVZp/l9Ac8k\n/IZy/f/ncbMUNoLRupuJs4UcoqhpYgb/jSkJy05+2CyowbPWQDwNZBo9PE+w\nYnu9pKJeSjUmcFYypJe6qZzErqmqIPDkm+jUYTeAFO0n6nLMMi6wtwMoYpnv\nMU4aldNX6bSjHENZV3Cq+/4JnMRk1U8G1EYvXXD4bDLsNQiHDuHLZGkEC4/v\nTBdqKDI0iJ+UC8o6KySsdW35dl0HxbSf/9urN6Rzlt9VLEss/prjyu8Kx1aX\nlQQuz9BScM6rseQ3Lk7SztCSvzaJILSttyLkuiQBbl4Hu9e2zkBy2mqrOfFj\nX0CKq86uysPsKWOUF0SwgtBcrp5fjmnde/W7wi+BwF4ATwSoKWu0MU55GTgQ\nqKF3zskfcZnVRD53VHVXoouz00KbC8AcorljStYzSllVC7sDIPFbnvLSdk4z\nZM4sIp6WerGHU2L3KFIBnGyytYDaZPKtZZBZtnVB+yCdCVVtuoEVmDiNaLdU\n/fqJXJYxXaTGD6U1wh7rPttJRXFdwz3Ipm/zKrbl9S/gpk+Xsgce5o3vC4gv\npi5t4M1BGJ74PQIxpN38xj5JFPjJ5rUiIo0oHdmiWjvAXcDDZWvTRXcklgQq\nlYP8tpA89jW/4bhq6Uewal7pScaMWKdC4Y33kZ2qI8xA9/i54LqYkoMPKFqG\ndV5C\r\n=NTDs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"b1465635e94f3496fa13ccd5233a15c893b3168b","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.4.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.10.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.7","glob":"^7.1.2","gulp":"^3.9.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^8.1.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.7","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.5_1550920182310_0.018854336332322585","host":"s3://npm-registry-packages"}},"1.3.6":{"name":"ant-design-vue","version":"1.3.6","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"6ef47a172baff0b082c3d1d66d38349789f60e33","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.6.tgz","fileCount":2405,"integrity":"sha512-x25yd8Xu2pPfchVDGetC5R63FovLWI/Ht3BaJ1ElWzgk1zaUYI1Q+I3AX9ma3PcFq95iIM74mO6iJYW61/T9yQ==","signatures":[{"sig":"MEUCIQDJmdlT6RV4l7SIhgTr1ZTn+zeeH5/Ct65VjJtkZ9Cr8AIge8T/lbFjR2VdO3JrANK587T6Adqmo9Z41Ly+8Qhawqk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34990277,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcje54CRA9TVsSAnZWagAAzb4P/ism18Lo9y3ua+FrjDd5\ncko6IPc1BB9p/onzvzKVZvd0EjJ1HXFKOsGepYIjuvu3PJ78yp/QQ20N17tq\n/cxxRJc81uOZd4Mxc5SHUAvzGP4MIbccTr0A6AwqNrsvq8LXn2/I5kSflrFI\noAk5SRs/K2JFzgJg1yw0obZCFVbhKSBfZCDi7T+RxfMXWOqqPqqPMGw1FQ1N\n1jNaM9wK7iHRywzdXF/u6cVSG54Ui83sB/nYD01MdGZ8zqlUatBF05CvOTHI\nDHmO8c6c4Ymp3ErC6Umj3a0Q7PnXxyIkhubYuJ704hSItxJTc9UFIOW2qdze\n4JvEuzfMLGsJnUIWi5JBMUJdFUMN3KAtjdCDoiRmrDywDPAF/qL86huK7JyB\ngVmd9393+GKICaCSz+Ys002SP0HiF8SkZUjbgYwn1DcP59rKkTOjSSR559v5\nUQ+i3vtjU1BIsl6TofueFIYW8Myjy7R30AfSiaIRsu8PlzMDMRt4AQeMg3Ri\nPqZQZN8T3k2WnRzM2ak9oap/hiFhfm8ZY4ZHr3NieEPRuuPrJ1N6I1n0kYIa\nUCu9rasJobaROuUhO76DJ4YASEWj5SJTODUARhtnHjl+vYEOrH/Mp4Xst3ux\nbhV66fRozemkXZ3CwK5aAFh12FiKhVDgJu7HuoLCMdqmPi7f1RKYMPr5Vh68\ntL/X\r\n=+PNa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"5c7a79fff7161bf396989acc8c30e31f1f3024fd","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.4.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.10.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.9","glob":"^7.1.2","gulp":"^3.9.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^8.1.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.9","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.6_1552805495050_0.5915844178554079","host":"s3://npm-registry-packages"}},"1.3.7":{"name":"ant-design-vue","version":"1.3.7","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"5e26c875ac636df1c20f076baa142aca62f97f14","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.7.tgz","fileCount":2405,"integrity":"sha512-PAbQrIrpmnonQohismGPxhSvwDmi2HKTfWjBpAItWsTEnXYqFzGHA7aytlutGTBRJjpyhlD6jpoiAnk/ocn4cw==","signatures":[{"sig":"MEUCIQCG4lkwfxTfueF8MYGffgG+4bR6TxHuOViveVrEOGrnvwIgWjeSlSMdvAfyCwq84U/8fpRJv+Ju3Fxe2kyWaJJwfwk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34991027,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcjwYdCRA9TVsSAnZWagAANtsP/iPRV+mGmHCXfidGmfkq\nmLXR7kfPHiqr+Zz9x20DdiCZYTOyd4pEUdD6zNzTnwIu1lUes8uw0Hm+S0Uk\nGbvQM8FdMGJqqj8K0yG4uA61f7x0+8wRFdTUvZFXN1bU2XY8UkrZm18R7mDG\nvTm51tz3SVsIncg1aX51bpiFtKocVfA8/e3mSIQiXW26/yNG47w+G9fxplM8\nex/haV7zmm1MGG2zuMsoHipXs2aCqMTIdcUpKuGYR7BvIacruq4kWj3X00sN\npbkWhH1AgdCu5fGIBBYAHHUIMLsdeCnbuIBBmpjh3kHSbOaY28YpxzxVs6Ob\nHXDon405ZmY/alUzetajLUpsmNd3hnHLsuqqXZAR93q8c10JKpsnpE3feWv1\nTwchpIzsBIfwgMCacx1UaNH8jbzaDod9RgEAvZKHJ4OxgVyc9cC2GFRvnk8Y\nflQPXUYSRf1BRszH9/D61QGbJ/jCv+VQIXcwUOqD7PUt3YMPNzWpA5uzTmnX\n9PjZYU9syAP1m/0rMtQaWa+frOrmlkZycw9t95ryFelksSG+RvDw4QUfzOO2\nGpK7EOw9/tzmmjzyN/kS3tdmnJFjga797xG8d1TDfD0CX26FFFyiSQQEIG1G\nbP0FdK0Eu8RfvewUgZ2FEH6i6qi2g3lBpuVwVsMe6WCuH4yOdTSfITsBVMfB\nrPkh\r\n=9ClB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"e10d2edf0a0e380a80c4f8848fda50a6de37a1d1","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.4.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.10.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.9","glob":"^7.1.2","gulp":"^3.9.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^8.1.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.9","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.7_1552877084139_0.5184991801488437","host":"s3://npm-registry-packages"}},"1.3.8":{"name":"ant-design-vue","version":"1.3.8","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"b8c9fc30fd658f134c09d7698f2825a342cfef5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.8.tgz","fileCount":2405,"integrity":"sha512-Ouhmayh9gi5mijvd8NG8JnusYvXXC1U4gfme9FFypIOLwwWrYjQOHBF0cdiwI8iSCKI3F6TmkIFRTJz1amvYRw==","signatures":[{"sig":"MEUCIBDJB//OAszOLxEvmqQPCDN5afBaotcofmMCs1kquWa+AiEAvdIhPpM49qvuTMu3tskpzPrEBDLAeOODQbz33nCIHrk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35289657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcpif7CRA9TVsSAnZWagAAjy0P/iSbjnNylkHOVD6AU8Ql\n2j/X5q+wuV8JxfTbA4L5cCJYq+ZqS+qNZpN9KFeLl9hjtKWamDkJb2CMsgnM\nRpj/H3JpQ+kWSUt/1R2OAO96GfYgTuNhB90sNVvYCfKRPoTI5jz2G6QIvI1b\n0uzr+Zjd6DvNXGJroDNVvqSWNTgVxi7HPPIXMfoUDLZLIFrXsZ7sUcpDsUL5\nppFXtSRmBLWK7ywX3cozr2dE5WuaXJ/X5NpfWdaSaulNVJXaXPpKuHr7Bjgu\nIge/CpV9EpteIIyPZqpFVJ1xO1lXuQ/C8qTWF+BUDXgsbpZkmESlcy9YzlFz\nEdsnJJRQjTr3z+RT1I/toSnrXLXgdP+MaqL9p/dKtJbrweGFV35fyboO/Rk2\nQRv3kaGXM6+EigAytinJn5jgv4XNMrCuYG9WtyFMDDh1poXR+Oe1zY53lqHc\njjpdHP8rhDT3MXA6Q+Frz46BGrL2xGgcE5L+GWsuG9FQxsxvmj9nIaeSZXyT\nIw1nOsTXxIlsnJw/AmaCNRIIfOXRxTvNNRnlOYHgCPG+KE/fsj2TU952B6hX\nDy9/YCB6EIXsJYfedPmXLcU45jUda9UK5JxBW99NgfHwpitteOn0hvBgudyu\nrVQbjiAj4dHskp8AEKIGv1W04dA4DXeW1gWJHaW+n8bgwLmYCEmwk09pRGHH\n0hT9\r\n=m2ZO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"2b1039f6bebc3a9f58179e0c8b76feae14f3c258","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.4.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.10.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^3.9.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^8.1.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.8_1554393082623_0.959671690919081","host":"s3://npm-registry-packages"}},"1.3.9":{"name":"ant-design-vue","version":"1.3.9","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.9","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"089b197be755b633196660a5ba97b6c8752c0cf5","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.9.tgz","fileCount":2405,"integrity":"sha512-Zw/5+4FyJI9PeOGW2uJ21/aaHAsyhAL+umNR2qHkKeTrmP2OJ6FXm00VNFTKeDdzSqAw8weiPfYT/0wJt1rqWw==","signatures":[{"sig":"MEUCIQCE872NjEuxyJA4viN9mzFjBWhPFWTSQ+2S7TxWyoOA7gIgcjMf/cfdTXGAiuuu4v9ylRF2RFT9EzgTdlZkEz6trOo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35325790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6klXCRA9TVsSAnZWagAA03gQAJALC0otIGyVzrUjtRxZ\n82Xnz2mvWVaoEN3K2uJAFZ+r0M6egeVP+vbyup9EVKPMuLMODOAqaNEUfNeE\nnLeP5MBqBcbSpNVicXNBKqkI7sKhR0p5xwoCD7tgGP2hCtsMQCnPunHE8UMy\nqGe4J9o6UBtOC8nNijeiO6T8CJ5s4nC0y6bb/ppPLXBhm2tV8B0hpFZ/wSlr\nT4gENhyiBEo+CMKE2vkIYs8TPlZFI4f9i/IRxuNCC5pt7+VZop2AC1BbqRGz\n/nZaCINOxF6YTUieF409uwgNEezOBJUPD29BfolE+qO5wzhNHFJ8D+qaZJP3\n/Uc1O4yXBSWMisnb2sNWixSiM0p2ab7eFZyUx8hnIddsUjPce1JhzIhIXapo\nnAg+cLW2ci54gATMTxz33KzFc5xhoIYL33I93PbARQxkD3udFPTATFdAHDNF\njzIZsldLzyV7ozh+XBhsoDOgAFusUH8xRUcSs2lDMNoa0Uv8nbGvyPyoHynF\nXyoK7b6Lsncvj+eqYSRrfIErPhAQMvMwMfACRjnmp27VLp+MD+6G3nQO/Hbi\nLBZC5XK0QUzdvPYN/bRCKA1vkBP5TRlFaISlbs5CwvNLU8n3REfl5oqsGVnh\nSjPWX1V1qoaTi++NMY5t5LcPAz7769XE8hRHH5/m8kuXAtZNKJudqqArj/mv\nruew\r\n=D5cm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"123462788134d89b727014892cd7bd0d66f62f1e","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.10.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^3.9.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^8.1.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-plugin-add-module-exports":"^1.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.9_1558858070560_0.039287845011764855","host":"s3://npm-registry-packages"}},"1.3.10":{"name":"ant-design-vue","version":"1.3.10","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.10","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"82813f90888f77dd0e56c8a71e14efa0f8d8e3da","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.10.tgz","fileCount":2405,"integrity":"sha512-C+2i0P1DirL+Bc+gpJI9Ys3FXWMza3E8bHD/OpkDnVRV4VegOBuy5eMJsmOzmiGJQM/WQBw8t1v+ma+xIasNXw==","signatures":[{"sig":"MEUCIDJm/OCBY8vMGK5l4OQw7OBPEZmA8luULOMvNfV38GYDAiEAhu2k3bxYW+3UJBBn5XJTo3zSlcWOykli+7oEKRlebHc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35017346,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc/7Q3CRA9TVsSAnZWagAAxJIQAIyZ0jNbALMmIwyqTipD\nF1D/au+3JRuxWvRJUGKHmwGJevtMIRYAx9Iy/Ux7ufnKoYkDO4Llv2DbKEWH\nNOMoQ7D5lDezGAmVHu7hEiY6+z+iBAwU0w2C6SJn9RXlxTveqlt0VNe7PQHJ\nIJ/7BtCmOvEe57MOMgJ6+Du2U3ntzlZ+HAIqbQGnvQlqGVIAJ6PaxTEQgd4l\nxWlNZzm6CzKsKAHKSd7MHEpjIZd6O9Lbrxau3xEHtEKlPQont0rfc9qYDf0w\nAxdXxjWgL3CzK9G/Xk5bAKbHA3W+1TAo8wEDRB+yU8nT2B03kcR4BSIpFmpW\ntgFcn1wIQQj6Tc094reYtRHYpD4wYUs/qta66HQxkgbcUwu4htpNLD7zzD82\n/sdGf+F3q5KmqsJT6qbOOZJf1hoyN62g/4Dt/75S58lnoSe/WIC5ih4kskuR\neqYcTQ5/qGyMcTi7hK81tKJ6L0DdfHy74LPrS3iiq/O3jQVwQBEAYRVexyj9\nOxSZi2tpLXrcmrqE/NJYzUk2UcRd+SgONNp7TeEQeHqJ63o8QZy+GxOaWlyK\nDpsqy8lqwd2s0hjgHCTp7Mqgk/pQlTZ2UcKseWWEgovBZUEJtRM85DKgQ4gf\ndMOiSU6pkUWGXWdyw//9AkIZ4j4Q43TJiKxJ69eQq9Xd98otCO3ZqpcToK69\nJCUm\r\n=OHrv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"ba42f255e5cb8d71672334091a8ef9cd10730e25","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.4.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.10.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^1.1.15","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^1.0.1","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^3.9.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.10_1560261686398_0.034085702036770416","host":"s3://npm-registry-packages"}},"1.3.11":{"name":"ant-design-vue","version":"1.3.11","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.11","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"77a00f795569df7b83233017888e8a2ba7a4b5d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.11.tgz","fileCount":2403,"integrity":"sha512-Cgux9iWBd+s1N/YBN13824qVBLnLCsWjluVdEoasgDGIckxM4OgM8j0lLxV5PmLZuoqflCD5F4LjoT1V/okZxg==","signatures":[{"sig":"MEYCIQDzoGbj2U3mnY/QNchUVY+u7lqirD2F7CMapIL5dgpf2gIhAMLpb8lJFamkVyys3jYMbrWK4/lfO/UrnghA6bGJ6pAK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34869163,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNS7jCRA9TVsSAnZWagAAVvYQAIa6tmEz0V1S1kT0w9JF\ndzECo7Jub8ZCkuRKbUwBRoczlayd1x/lcNan3CEwJeXdvTJSahUt9kyQrRFQ\nc3D46mzjVFcmG/dR/OTeZEZ8JNjkkhjGx9Vlt4kVWz94XO5T3TYu9j4mQAQc\n6yVO9MDhgiF+8BvsOpeVnG7VwIPVu05+6DkD7XP42z/xYqv7v/+757Ojb87+\neXuUiLxq6FE/rXXJ0Stn8fnWcJRlm9OHb6JOuz9EdrQMcV/30R/gCs/hAbse\nIakFEuj82hsQdmCDoX45jB3sblBFKn9RmW1GLnXD/C2xg40WNV0RXyUwi+Ws\nfGFlnSqWvtWscbDDBeF3Eal5nX2Zx/dpiVprkrIW/u6x7gmSgsat0WN+KPmO\no+OWJ/bU9VB4P/SJvyI0J3bAHnrlUxQZoLQ3YNkaH5YJRfd5Zya1B/Tfhhns\nU1rzsMzZSA9cEYNRXF9fhw/og1C/W3WeTlB/5axnj7Ek/Vh4fXfQlsgFjfdp\nQUcEjwyq3rrfK1D19EIDTJT/u2hBlBJdwTZggO3moZbyHnD4cl3ImquSv0tr\nBp8CEXXqo6GEIKNfyLohLVBT2+DSNEQyEftd4AFST6gyTXZ21rlqyNo/O6rd\n/TEOuRbWT14za6G+PVF4VAi8EMbi9A3aFfAq6OXtpSbTq/ENweykB1k8nLmX\ns89o\r\n=SMzt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"34343b2e8bd89d0e04ecb09121735de1035215d8","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","node-emoji":"^1.10.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.11_1563766498180_0.5720963454999535","host":"s3://npm-registry-packages"}},"1.3.12":{"name":"ant-design-vue","version":"1.3.12","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.12","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e73b377fec02f818f45552b7758fccc6aa68cf7c","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.12.tgz","fileCount":2411,"integrity":"sha512-hJq0oVEnsMPzGcBWfKK7tCQXzkjytQLHYQ96tss43+zfRGI4KBLv/Jd1m8XTBlgXPDdx4pTyKyclowu4/2TNIg==","signatures":[{"sig":"MEUCIDyD6HE1QQsBz9aeepb3sCnYNBypwOv6KFPwA/ARP+1xAiEA/5FbpjjOsrH7KYHReN2QVBSCcH1AuPO7FxaWp8Uzbyk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34880827,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNTLGCRA9TVsSAnZWagAAtq4P/RKZOCKaxFpWk3S5Cr2P\n26EY/W2OhU5VyYJKtzuF36hk1ivda7gLevROpglliGiq6Gq2hA0rP0WRdHYb\naohaV7m+W925Q2mffdF0ENjojm4QNToiLMZsIvFbMRun1HT7nZF/o7VKgf+D\nemEt5npaPmhT3zQtOoYuUsWYd3c5s/VzyibvlKbqP02GycbHrgAZhGdJYIlU\nOzdM46U4Gc3qzhKNW4Vtl+prtOyuF6jDYVOTZTWpZPqSDDMq5Lcek4WOXF2C\nIu9BX+I8KakyNdGQ4JSDJvN3KtTn84XG8e7EOLieWOwCXu5mH59X7/pxAHN4\nITGT7bwV5xdjh+1FFKnYe7nzs+wz80xIgNtkIT/ncVvNsa8Tcm4ssASgZrVp\ne+6rHQKApXxSq0oNyYJuI6fj2p49Sor7RgGdbwsHmAAAYkKnK5Yjkk/GhJ5B\nsXRTLYStEDOUjiiy5icLl+knThe0yedcWB78sLqV7UxDy4zShCDCOfMa3A+2\nZKiBGOilcZKfgy+gZhVZwIMu5i3UkzkSR7M7zeOsOuoRU8/Kwq8FPYq6XFza\nNbS9RsdGxYXS/Kk9Zg5DCALrJ6NWVudPX5lv3LhXr9x85Ob7JDYJbjOxeUdq\n/OQr9v1dEbjASf6GZGAqJM581+bqAepsJroICS44cnYl4qkKwu52r+mxuqMb\nFr2s\r\n=4lz5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"34343b2e8bd89d0e04ecb09121735de1035215d8","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","node-emoji":"^1.10.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.12_1563767493440_0.9631248175954101","host":"s3://npm-registry-packages"}},"1.3.13":{"name":"ant-design-vue","version":"1.3.13","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.13","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"63bfeba6c0b46101abf1cebb1ad1da13a46be932","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.13.tgz","fileCount":2413,"integrity":"sha512-PMPoVcnM5Ygn8CqdCmlPK9w4i/LdxwDkZ72knPMZ1hrHUcHfWoKxZG6NW2XxxyR0vnXheEAa/4ojNaQkEAbSrQ==","signatures":[{"sig":"MEYCIQDVsvl2Mz+Sev1NxDjwckgLTLXNEdErsmTjyfZCOzGDzAIhAOypghaeabOkhW4487Y6cj3uu9oNx8RPmen1JRFAGX4W","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34918179,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdNT/pCRA9TVsSAnZWagAAQFkQAI2RPwb801NuU8ZPZLLd\nVY2LZXV2eMfbVNxYv0sEIOM97IQi8R1rhnx6ZgcrVwqyQ5rhEHaAkWHUaOgE\ngDE0u2OLYqgrRN689hOZ2Nxey89aWJ5zWoQT+yBfxgqIUnBi5q9FknVsAsDa\nR6HCjISI1e+XT5LjY016dxwCbwKuQm4DLfesEkrxHRYITtAajD2Awt4nAs65\nMh+W4kb5YIJx/VBl3v53U9qs/djGM6D+LEmxWY5fdUHYqVRQoJF96MU3L6zq\n8vsWQ77vyPGYHudQJL9l8obJmnqmnhFtuebiL8t1holJWb/RDLKFGywTdr8a\nXY0hWO4FYBZU3YGFvX2xdEHtKNq8ES2R9c/aHvpFN1ZIKCaA7uzTFGAVs2yF\nZJi7bYOci9d+3YJwFrleSzI/bP6GwMrHXJWQceL7qFEqJIKZNKY11IiuwF7s\nFczRHJVYFV73ZksW3rR/zaj0DkSGgZK0CmEFO5wcIy+uZtxJahPnkvUm2FH6\nCz04nWnsi/XxBlOrPbbOMx8cNgVedd0/mzjXbnzpRGj/1yv3R75eOfv7yXM4\n/bmKn9TaaLMibnIyj12ujqVwS4KN0wH4D0Tm4iCsh0/GeJ/WUm8NXEMYowuA\nkLvUxKG6x3BWtk/duEzjvrhFL3X7dMJBYCty496uAtjyauDnn/iF/CxYXv3A\nkcat\r\n=VKCv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"c8d80d0cc8370948e767b917ab0db98307168232","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","node-emoji":"^1.10.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.13_1563770856411_0.8300509510165577","host":"s3://npm-registry-packages"}},"1.3.14":{"name":"ant-design-vue","version":"1.3.14","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.14","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"4bef079ec7a74e79a20c5c4fab7b0ab7fb3568fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.14.tgz","fileCount":2413,"integrity":"sha512-XJPEjUI8Siu6zZE1wS32gUHSimSDDE70i9gImbCCxyX0GTLf81FDDStreFm6nmb+2JQ307pvDqZSTtAEkwc8bw==","signatures":[{"sig":"MEYCIQCw4Q+Y4PWx/VFUqJmhUTBJrFjTJ3DT6mRA10lTJE993wIhALOrtj/6Grj8zlFyhKzp8yqA4ceMv3aq6hK3wtMoYNuL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34841043,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdUjM5CRA9TVsSAnZWagAAGfoP/31pPJBaObzDM0AyLgJy\n+qfnG7lklOZG2QStph9Oy/ktY4JJDmAiZFxFjq2/cSHUu5XtvChrU2lHvBBf\nSwlWB2nqvalyPPJvjesMxa+lwcD4C8/S3E3mMcyU0GYxU4UFUjmzaCM+CjTu\nFxEjrGbxPyg2mmnYdmKdu+7YWoqDbjXxvdiMIfLsA7tAYZIB6akTqdplp0GR\nUhAklpWsENsCqSUYVWYjzg363pSPCDDLcMkxtfJGDbMDa+UsBegT6veJITRp\nMTI4rgVdvGV+PE9q3YdAL4EcFrISshmI3edJiBySZ4vw8sljbz1mn2LjocBw\nGc/8560eXU48QXPpeZgotICoI2gEu0Y9w0gJWWwhu0nrntxiP5gY6AWoZCzi\nDSI3q4UXoUpCPdO3RR4fXREKsqV/PB4JJtssSwqy/QpZOqrwds2ZAtZICCcA\nHtOh5+wyPsQZKH5J3SXogBQEKdlub0O4lj9fkaZ3EeeJ2OUZD+5kf7f2z0+l\nudcgf1Y1iH8nL12K6gORYOtLRMeNj2dHKsmP1NpCqiwYsv2gipkQd2IqnZEB\nG5wcuhXxOam6n6SFny2qKn1wad1jPV1M64NKkLzt/zee7K88j2V4rrjE2ZU8\nwwUOvdrOkCykgC2gdB86tI3tGRObZSf3Z8Jzaf6n+3S80cot+dOyNdlzy0lO\nYr7U\r\n=XwR2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"e94a0f0eb73a423616c73a4438a7420595507ae8","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^1.8.2","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.14_1565668152325_0.851782150580704","host":"s3://npm-registry-packages"}},"1.3.15":{"name":"ant-design-vue","version":"1.3.15","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.15","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"5ab738963ad116a17600b26fd50244132f34cb99","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.15.tgz","fileCount":2413,"integrity":"sha512-6YDj9p1L5ZFiFN1LhcWQ5jUHuC7fixAvEO4z4Kvr1pPkzpS/YpFSfD6y/5VNuH4OcorvBDAO36HtC3duvKoiYA==","signatures":[{"sig":"MEQCIA9nFUm0zH5IOsA28jKNeorZMdkyeTzWmKhI8xi5XGIHAiAinCnz7Iqr5gzhY7W3ZN8+xvDj3TylavVrz3RXRQHTMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34699676,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdV81aCRA9TVsSAnZWagAAvF8P/0SNE84Hlcw4yJKeOmam\nBAqtt+CXgU1pxLqwfQ5tteAf0zGG98fitRufvWG23cH1KOTXQD1cosI4q4o5\nRgNaL/Pgay1iixj/kNIDkjm4QOumcIKLmp0Os5SopLwtyUxs9nVI2e3gskCv\n+IwnR5rlvKUoffk+rUopN2NTYnFx+d6l8U4GAiHTViHm57MnVeoMKCQhJCqw\nWDpAaQvBQeNVh5sVMjbCPaMLJCnZhj5loB8zsZuWjXyxqIinAwBeQbqCQgRB\n7BCofG7K3Ro0w8KlYJ4Hc2hA/IfTrf+0uJxTm8gat54TATkF4SYPoOSnys5m\n3rQuw+H4+YBFulwNOobJ0elv8/4xelC9VIS00+ZdCiwFLaxhj/LTXyrr02Mu\nrWY6TnvYWPfaJb1UnTgmvQHE83PbX/06YvPwZBwjBUCduhJB7DtK5IE1IB/H\nWP5TvfUUOxNIxoCqZw/+ryFl78wBngmfxXvtCWuGGnMntLPHbYwWdRdgMuN/\nMuOlCppFbsty7Fi40tCdS7Q0zjnhfPaRSHSuerqdBahJHA/NFPGzP35NMzAj\nFkTPe66VAgJ0odecfV6YixE3/nBZDghzGiJ1odp0kcvjAChcKeOQbFQRciaF\nuqhOTJB3VWtShz/1cie/o2crsP/ofEHzRq7DnQgEDuMJV1KY4Y+5OvZX7YwC\nqVhn\r\n=OLcy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"53e73ab6f8fa79e5187475f45f2ae2ed39ee5b03","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.15_1566035289498_0.29664535767172473","host":"s3://npm-registry-packages"}},"1.3.16":{"name":"ant-design-vue","version":"1.3.16","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.16","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"b18f7fa265edc7c798a5a65d15d92d72d3a0beb1","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.16.tgz","fileCount":2413,"integrity":"sha512-4HZNGaAWOxkD1j05aMp8gU8z99vrz2lzmfcrjEQqTgr0gYBeHOuxq7U+NvZGuaIonYz4h/DlbBh/HK4fKdV/Xw==","signatures":[{"sig":"MEYCIQDLPiWn7FN/jK8G2LTbDN4zt+AnlGRDzojls+U/1rV7twIhAOGmXlptluD6UEuLRHou8OT2hnrx7Yscb1CjLHhwlzSl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34701300,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdYpVLCRA9TVsSAnZWagAAKXQP/2t2H1dFdYsVH0Dq5Ytn\n8tI2Ruiovp4y5Zf6Oum/f4hPIClbCPPOl2HYF8Q55LUJilnD1Rnj4pDSIHRx\n17HtrDYawSftpobSpmuEi4jIqEf76krOooXRlU8m7YccXSUxThE1EdyOQdfC\nGQWfFI1H3KNOw1fHgp7hgi5ftytjShLtp+o7mtQVOdmc0oRnQFKAu4lPibTb\nTzD0W2HSyPw8VgDinW6KyxSJY1X823jD+bo84Zb1FDVAWT5AheImkYM5VEjk\nAPAXO+DN+Woq5VmYxHrG78VFdVuo17Y3MxgXh8kQAQ4aNYsTo/nYZihru5Ee\nmS/jjyyEdALQ7GHxc32YG7on6P6Vlnm8dibfefVanB8mIXJkATRnP1++Emgb\noZ/7mDE63l5kFNGrmxrjbrVVPXvUYi51u+FznUT3b/bOaYtH5vjRCapITyix\nCK0bK57+SAR/J6rto5aYVQI6NRAp7LYloX+STq0hGnIy+T/PT4WGORF3yC5U\nbK/EWMNxoPPgtjk5BCmvU1vwgYH+zQfCcljqz8B/W3DN/r8mcAedatB8ikKt\nEUyo5vCpdCHb1ucYfHlb7RY/SeJ/oao87Lx7QaRgZ0NGrQj29PnIUygaP5Tp\npYD5+XuA3lpmzkAtLOdHKrJNMVUxZdl/rUQsLHKm4bGg/XMX/IKl4qRDg+bJ\n73pX\r\n=tN3g\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"d459b20b204ced9ae16e93d4a3ce1756c58417c0","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.16_1566741834049_0.7846308527738091","host":"s3://npm-registry-packages"}},"1.3.17-beta.1":{"name":"ant-design-vue","version":"1.3.17-beta.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.17-beta.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9d6b26c4b6f840a196f3040741a9070a4ec90b2a","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.17-beta.1.tgz","fileCount":2419,"integrity":"sha512-Hcth1PN2+jOUs4CNImUxvm7O7Jr806z5Lkgz/DhPjbZ2VLEx8GrZWEfC/exxnc62J9v+owYB0HC4AJMgI6AvxQ==","signatures":[{"sig":"MEQCIF9Gxl5tZFMnOM+bNvi6hbReSmsjGhz68YJwZz1W6gqwAiAkA4wmdUwGTXP/W0R8f4umaFEmqWCzvp3Cj1pLqdZADg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34775333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdaMduCRA9TVsSAnZWagAAECIP/1MOXK/Dlf1g6EFmQMMs\nIWSy6q7lyjynVgZVEzylLp5h9eQqftUrYrd8x7yuaf6Ct03tC20pnO5CjMsc\naYg6hsWV7KDWFKYfhnj8Lx6HDebyZqrFEFLs+p+Ux8SANUsvXDjRovu6XgP8\nuQasd/UmysQDdtk/PLZKXjGpBo1tFZoOP/HGbhyj/v4skIUHgLZ5He2D4adq\n4mjNj+k3OZxrPQ3XSa/ums1j2K49saklduerakxGeGJCk36VqPpqfzQ2X0L0\nRJ+Yq2/JcONpOwbXQ6mtExlbkSfcsqYBc64nI2fkHk/+ydKvlfAjeRjz68Gl\nbDwEfRapnwGuX+qTFKt6I6gEOzJPqcTnaBX4OK8mFwFmmQ16if6eInDEKtp+\nCOU4G2of2tfXeKzrkXdNtaLD2gAZFcJpwNWfkQjdn0RvAxkmhbS1GtRNhC8v\nww1QeUpjls4BT4e5PUPkud2SUI0qbxKhtWJRVUG9RXq4dRY9HR3tCDGzUWxm\nMqlJFQ3Hd/4OqZyYPR0hrsxZ+IwECPB74yVDGx0wfCYJUtGXsdOadlniOhSC\nFTi1wz/pH4Nv3HdocZSh0txaViLPczat4zHemBBFNfkjv54KcX2HBefcGVig\njL2PZNpWIfqEMGDVJ0/V+c4QNFw0CThnLJXB76pTgHoK/yW2yecMhUTIfIIE\nGpEf\r\n=fQBA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"ae905df339dfb2bbf6191e156ce272e0255df99b","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.17-beta.1_1567147885570_0.22740408219168295","host":"s3://npm-registry-packages"}},"1.4.0-beta.0":{"name":"ant-design-vue","version":"1.4.0-beta.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.0-beta.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"a2c7d9683804101691bcb3c518e0114dc67efe6f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.0-beta.0.tgz","fileCount":2508,"integrity":"sha512-MZnb5Pwr4mlYoE2pHB5XMeL22pmPlKF7WkQszS18t7VygS9Q/gF8nJl94nebv6EHJRrKg0i/6Axh1gR0vXb6Hg==","signatures":[{"sig":"MEQCIBKj7jxd7+AnSpgzq/YewImO3sVVTOBNlUki1gNhwbyDAiAtNKaU9eP2OlbjnGFQqWO99JprR+b1lOOgYCbNHJcWQw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35940670,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdiML2CRA9TVsSAnZWagAAgf0P/jSrzghe76Oj2c9H6sv1\nbQiLkm9aepSVA1jIfpXqgx/ZagMsEh289e8OyQwvD9dq/GizemNV4RKz8SCx\nyCeAjuua22C+YMUSgJ1OFxG43WIdt6sq1VrC+Gq3dz/b/5p2iD+2fKHbyfAz\nXHY0r47yca2O9t0j3c2tNB6vvy9I1TpYgGSJIRv0nNs/eaxGmWOPFHt/b5No\nT/tbgG9H0V+IEk12q25KxcMEPgE7k3ZOiKUh+6GCp+OxeIQ4/Cv0jPao8BBC\neA/dETqOEIot+/s/60QkDdOgkRgGnYNmtmgZbFKqv99pN0/c5Sc9RAdVuiRG\nPLVQr4Fj+JTRPeJEkeGb5tF6afDYPf8QA3DVVylunUd218SEokZFaSskTTfY\noC42mZVwJaqB4pRyrBNiD93tnSJKwArLeHIvOMHXdooiX2k3W7xY+5M8qoNd\n3xJ7Fg7eL0wTDjJQtU6xZvIJKwxcnLmw4P6kuNQu5kb8jp5Wt6ae1KpgLA9J\neJmYPsNwj+I+Wnic7PLN1vo6LnyRSOuIoGNLhbUKy98b6SRY13fykK4RzOs5\n9HShVGH5eQCpi2eN7ig1gcOh1sHfa5i0Yc1wPrTlX+FULGtlGks+TwpfkH12\nknWdzvISB9fnaOqwo80nWGYBYPtf5+fgHP/N4VToLGLesF4LiT+uCwiWhgHu\nCRO6\r\n=MaTD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"a3ab0c26f28283ee58c6ee810b99ac7caffe5fd9","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"8.9.4","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.6","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.6","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.0-beta.0_1569243893123_0.20417814088764197","host":"s3://npm-registry-packages"}},"1.3.17":{"name":"ant-design-vue","version":"1.3.17","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.3.17","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"4c420fd53f5a5bc255e01c16aaf34744f143026b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.3.17.tgz","fileCount":2421,"integrity":"sha512-Yb19yCXmO/+lcJvZaiQs/J87xXZuweDEZkuKGACiW4UhcR8gP1d3q6wZGOekhys4ryqJvvuVZBQdbuxpH0btAw==","signatures":[{"sig":"MEQCID4t2QkuzphIMMc+fbGKzhmNBhjXa6zhYpwZpsTVdUksAiAcnArvwC3sVlFDA5vq2k9xD/uIJgnzR80a3+Nogz0O4w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34793944,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdkc4BCRA9TVsSAnZWagAAdJIQAJSz8/1MiAvWmYA77Tzg\n/TPGZuNA0aOhfMtPFPoT8mm3wkQfdmt5jvowUnZK/8cDvAao6SUlP/6SwiRB\nL4X4+wCpSZcD7ZozKP7EQYiXVRuThgtNtXTYjUvB/nfJtdSllezqzPiCpteN\n5koM4bdwvbxCwxRzLiE6UwlQ67FbToTFROgQopvNEIRK1Jo1W4k2sL8NxOxg\nECqW9nCvUWp+6QPJ8uY4rWK/QX5gF7HhxCxZdp2xhNvx2oeE/xXHPUZLzQoN\nrGE9p9Wlm+JbnLdeli7Xrttr/tYFeabhKA2Rho2dqhMbNGYKsQOXuChKhZGY\n0pCkkj+MicyPZzTP8tzwiW+JoFl6EqZ43AW8mG8icsO2+TY8Om2uF7StAEkg\nZaxscpi+8ittsbo0BB2+H7LQkw906WjZy4aQLYW6+gvkA/tAGf/DHhvKink1\nwODUePU8gy+z8i2/6GT+v/9+CDwIc0fZqSbHQZy3l/Gji3FgEkY0Svr1uRp7\nT2/0F56M1w/F93SdTfMgt3pbzBOEI9UWDeNsrvxUxR/NWEXJ919kxh+Eh070\ng9NhvVibpDPOKKMF0LaHcZgIv7I144kig0Vz6sbT9Rw42L4j6/X04HSGIGKF\nGst4MFJDj/j/S46MGizTwmvSoHEaGfZ56gqEnttt+ewlKtxv4i5p7rtGAbg4\nuMB8\r\n=cRL2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"0fb52376a902522a16a4a5b44098aeddad4e4de5","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"node ./scripts/prettier.js","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"pre-commit":["lint","prettier"],"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"5.6.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"8.9.4","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.5.16","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.15.3","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.5.1","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.5.16","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.5.16","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.5.0","vue-template-compiler":">=2.5.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.3.17_1569836544383_0.9952970207367717","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"ant-design-vue","version":"1.4.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"22a2d39b6fddcf8fd7d27f068419678e5d305eea","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.0.tgz","fileCount":2510,"integrity":"sha512-6iVozZtWuO8wIjLhwRb5xsASZcr2SkSmCTGi5X8q05P/gRWwQIJAOf1gVGLcC12Nik8JAp5UUgBytP+Zj6c6gQ==","signatures":[{"sig":"MEUCIQCcFxtYtgJ8lexw0XRda8GCc2CRQ9mum+yxLz7zc6L6AwIgX/guxlDHPu8XHZckYnGqs1tW7LVplQDOjMw9zzNeOcY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36020237,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpDtXCRA9TVsSAnZWagAAPrsP/1DwZD/dJOjKaoHR/Dbv\nY6jHqhniAIJONDUMjlBw2b+ID6gciwd4WXJSoor30oSGW/HMVuAK29KzPt9X\nnHAXu9KexBFX6N/8070/fStnXaLeKEFccFo/4XjyrsRlJ4UshKKkoAP0Ufq9\nspXpa8xg3yOoKxzSN/1bsVDvm/rgXCzezrF4W/T91LHIPqnt1Nypxq3tJhnp\nyWaoShLXAjrBinzSyD6KgNiv5BT9lQg4RQlVssu5jECU9U6ZXn6qQEQFaY9H\nMNRVxclmqoiZxTBUk1U6fMZeE5PCnMJVRIoKLGtuonF3XfQY8E9sTUFJ8Fuo\nWfGfzat9pIYGsyKmZtLcm79IDqLBjYg49SZnUsliHMiJDsuRIfxMthP8BBTd\nUdXVjup+ylT7DykYRtSfwB2l7JYFSkQt6TyFOlpZ1LpoflUhAYnQ/THXLrF0\ncpszFn2rAfkOCy9bLRSKHmcvT4vHTjoMz0/lt1P07RsRPTHfIZSIKAkWbs0m\nxRiYp6d9tHT/g7yN25r7BhWwQj8jSMtpkEef+lrsxzt66T7u01Dwcdi/CzOf\nWbMdrO3wxuymlM4BpgI8wofLfqzaRhJkd0xYndzfJvH7AJxfcZz85bTpToDX\nuWQ17E6vVmVpQNwlqDnOJHj69i4lYDEdV23b4BOMcZyhw+1HHpYhlu2XTVSk\n4IlG\r\n=r1CF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"4218f19021af417508c66f5efb737ef23682d535","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.0_1571044182511_0.48426099762808894","host":"s3://npm-registry-packages"}},"1.4.1":{"name":"ant-design-vue","version":"1.4.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"351078f5f5c49ebe03d45416c8d835ccd9607ce9","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.1.tgz","fileCount":2510,"integrity":"sha512-NhHT3m7RTnx1UWRNzHGl6cRVPocAlRBhQvT7HEtXVy+7e9JzZiR1oHgPDKzU2ruhgT/ZerAD1XxvyH+2lfShzQ==","signatures":[{"sig":"MEYCIQCiu+5uCCGb+DZISNOmypOXjHFNPyMyt6shYvIKnPG1xgIhANhWxWFj2jTKCiyd2ZO6s6JQdbxgt//Ct/t3UJoACbIX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36031575,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdqFI9CRA9TVsSAnZWagAALNYQAIT9NqyWXuuBAH3g15K2\nynE38gmtALFa5lOXx2PO2yBUrial6preYtfxK28mlrruUlyUWy/UIH544nDl\n4zaH14JKQpaNE4IXrdDUEqmFaOUQUZum/PdKe4GS1+sQVPcbJ+gXT7LZwOwv\nC3BVLYPP5gPZy/bxvOIUV9wQ7yKVwa5YcucWqDAmmREOebLaTu2x/EDVrSum\nyyyEcRVdLasfxDb3ZHRadZl7fzFalzmM3/Yx7rFPIiM2hwmM5Cx2Li9qURa2\n/+kOMZuu+LXeh24GqS0CfPSc4/frl2WXAaOCrLRqM6N7o7KQWy1u3zxyo4bg\nuhYLpTOcz0YnsdycluT84Vg/cFuYAEhdkxWH08xzIF5Qiv0U09FNBcDhkKoE\nJdIK87bwCVwn9OS3iwEFlsr2yUmjyRILmb07ElcAKtnsB9HXmUFmvQ3VwDu+\nZ6pU4n23/C9JEjYSKfK09lC3jNOCk0VWnF4KriJ5DtilGXw+3m33jtJ4vmTD\n6WqTBk8X5rhpslkbTWO57Zoa1I4PHNhRZbVgUUSW0IReBUsZ9tqSf9kkKUn1\nA5CrRC2kFo0A/CUKdPB44cx3w5qgStKRn3bsWsSOTItpsicrEE0ovFKjZYWi\n7VLZUHHo/PM35Pqo/iB1cQAAO+HfELA6Aww5aVNkjoZAgkzf22NPEbDFupK7\nsxFP\r\n=BsYZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"5a94354e7371b3783115bc86c3d2c3ffaa86f69a","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.1_1571312188352_0.29179964507484657","host":"s3://npm-registry-packages"}},"1.4.2":{"name":"ant-design-vue","version":"1.4.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"4151d4f98ed80910d542242aa08bbf396927f792","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.2.tgz","fileCount":2510,"integrity":"sha512-P1N3RNMFe/17yxM2uBfkOa9HbI4WomD1uLVcsL2slAJTdFu6PIA/+B7iCM3FNONhH9eiVlNGXmnrZbZFYpJ3EA==","signatures":[{"sig":"MEYCIQD25f0lQUQrC3epoERgkw/MEvR3ohT/1F46ba6DggqsJAIhAIS6dQRA4lQ+VDVXbAjybGRGwOwYrGAumFsXxdkM4KVb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36034864,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdrZJxCRA9TVsSAnZWagAAHxAQAKP20XkAOnYdS5DhX0wD\nhwFJA0MxdGnDt5N3uusUiXgzQJeNurozuc17g381m9zkPGDzxRwO2VzmtE7I\nmPr1TVpDtt9TrrimrBNI2eVad2/AbAeRD6Hut7rrLaXo+J35PsoWBoiWiu0c\niEcrj7rsSOevHsdenu4lPgEmurhdirvGt57ywoJQXWP+Hl8JpWM2ILwlNoIM\n6n4r5x5VJHQBdmLEiUPNKE+WRV+SY5ZMUx5PGGkZBJHJlopaz9l5jz8vh1X6\nysLJRUxtj1wKtjMYNcyKE8/3DMb/tMh8XfObq96ltV0ZUO0KzWD946ZjPiPY\nqf+whd9i11VlhTnRArQ1Fp/Ej72WEjuE+jB04GH0Cdk/hFHLEIN+2GCIkAth\n/Jy0vZBF+4RtG+5MntV3/vqTn4rAl4OdCuR0tYFHJGQ9fa41QtW+XtYKvmgB\nEZ/g+P8U4XS8Q94Locel5u5OnccB/q635bXT6T7DHQJaNodaxY2HV71hhxbV\nSXK+AxLNl2lXDjlCmyuYkYYzBw6fk+Fh7AZedXqqE5pfyGoSCsYmgvdGaIjv\njH/mecbvwPZTfrZ7Fy9Yokz0Scaj7LdBuK9oJSTjGbxWKWhcVeDCt4R9tp85\neZ49ZJuWoEHG1rZFDkRUKYAYTE1X7BQuwJaX+nxqbfBw+G5a+ccHF2E/ZN8o\nmNxK\r\n=hSS0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"a9622bd21aa1ef6aa795a8c599c2eb5c1f6bfa88","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.2_1571656304541_0.8508216041969761","host":"s3://npm-registry-packages"}},"1.4.3":{"name":"ant-design-vue","version":"1.4.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"33558ba04381d1f4621f8863729c8cda64f7f514","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.3.tgz","fileCount":2510,"integrity":"sha512-KZ1Kn/6LEzJJUgUa1S2j7sG/Y0RIlX0QHIvBQY+rMlc13JnM4kLvTN6L5OG6B7LRhTEKGFjfgvXO4BkgAh2VWQ==","signatures":[{"sig":"MEQCID61k24yIANX0ZAn2H0pgoxIUk9QFllNvXfnzrazxuBJAiAalrgPGNQ9nM7RUCq43AqDwy6MdmwfvgJHrN3TDMPWpw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36036751,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdrotwCRA9TVsSAnZWagAA01gP/Ra22EkZRd1JJwvxFeEG\nqbtatlX5x+juQlmXqtKb5zJuRInH8muPwSrS43PX/WKQbKkFfs23sBFRyHuM\nb0T6Jam0KYH5qOzJZvK+UNPXioagOSTdxm3xlpsoY7s9CXU1japfU7y120jv\nMYhNGZmkuthRFGU1mI1M5HQ9SHT7np3OWMH+C9H70gDI/ESLL5kYBqpTz9GB\ndsIzZ9gfEJ86wy9XN+dwrJYKTeXvi8UWfs4wKAzIGVHez904u7gs5dxM+tVK\nuZvYk75GVy+0JbR0g5bOvRnwn1P264H3aMC1Vnij6CE8Gc+LRmJnotac80Hz\nj73XkbkMQ4rTJlCCpATAPXCBEP61K7dp4Fr6P0DwbXIgJ7Y0n/NdaEF9hA5V\n68Ww3Y1110JrD3rzZ7CzFY00H7u+tO0M2ekgUIQkPX5hmw74h3n+mTgfysto\nZAF1SZTCg4ciOqQSbEHa8vpHlDyyCM+r3VNlKe3n0ZNqQ3o/kCsCjNHqlnEJ\n61qhloJvQkDf2eH1MRmHqoXWOb+OdaNX395i3YB8iuj6FPSU9O52bTHV2NNK\nvk0TpgKRm3hZLQewoK1WbeLU4PrnJZqvTGuB17MfG9ABBF8r0hWJ9mTlevXW\npqPpza+Pxrri1Ytuq8Ze83YReGADlD4wSaRF5lzi7sqMg3nbsiBBUbvVjfQ8\ncrjF\r\n=/m+i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"041839b90131d3a4e6a5663986b811d60d4e6ba2","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.3_1571720047138_0.8123608763879986","host":"s3://npm-registry-packages"}},"1.4.4":{"name":"ant-design-vue","version":"1.4.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e3950489324a870273928ed22f5dabf6284424a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.4.tgz","fileCount":2510,"integrity":"sha512-ASRR/rn+ONAeNWd96MzCpReZa4177fdwEBHpgPc/L0Bj/1EakJNN54JacKVXCXxnJt0VI2UXByfgUibpnOQwRQ==","signatures":[{"sig":"MEYCIQCbdSMg/GOUdMg3yGUlPxGHdh0x4PBybMZxRl5QJH7uAgIhAKEHpoK+jylEGkMezCKuuzrUz8lr1W9Dgjs7xxJjnDoE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36024559,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduVWXCRA9TVsSAnZWagAAz6MP+gJk0elfGPl6ol6CuQyC\nONLR1AqERzECdWNe8e9zkNfq85cwvX7RV2IVtrDPtsr4HMJpOjhQXL13VQsh\n+6SkGldjDBp5pCf0mqsypn2N/vukufyy1tYUsrakS8c6tofQHuzC24V6LWuE\nOLstweVa+DABE8OEYuFssuX7us7o1RrcRImmisqoZfToERbitl/HzBv21Cui\nQH96TxdBnUlqYZBfWGvWQSbXDsYy0WN5g4mP9hR3TRTZ+h3RcYzYKwP9rX5y\nszfG8Y0W7dAtM760Gg0s7EX9F2H3pRqfO56Gsl+x5/BhM2uTdEbgI9LB2R1r\n/mQ30ml+RDSRz2K+ur84WoLCFS7q4x2nC0gfPX3O9RusZ7lDUPzM1/i2MuWY\nVhr8HhpYIMRlAhNBxQGRynuAefLzhvCX6WtAPhLoxItcJWBQcGwzaR9FLz3J\n8Y1LNoum8ApSbqMkwZ1p2R1L9XzcEp/Dtt9g3qkTCaEdYUKL3XPztfJ8JUkm\nL1MDbZieRH2bdH/d6kV5meVT3AihOAIwF3e/lZ+FQILkCUh3qjpdaJNyF8pO\nXR9madwsoCAxa5rXsmiP2+KOHlqb8mKM3xB03LRXLuWUjJTOJVHSwIgHBVW8\niYPt8/9VSTwmpd1NlZIJCByJn6cKMFL4aaNLbSTQmYBZbHuP2DyjaTXTqz9U\nK7t0\r\n=KXh6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"52b66db19a0a141cb70d853b36d203f42de6fcf7","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.4_1572427158687_0.5708008649896923","host":"s3://npm-registry-packages"}},"1.4.5":{"name":"ant-design-vue","version":"1.4.5","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"552dfd60c066080ee7e997e0b0fbad6338212bad","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.5.tgz","fileCount":2510,"integrity":"sha512-gU6LE0mjSWGO2AEpCPS8S6ejrfPQ8vpcQjocW4NVUo9DsTzWsxn4UyjRVSWg3oB/cEXqFGRTSM524J1zTvfqrg==","signatures":[{"sig":"MEUCIA0Axj//1Bg7TbGSmA+pxq38q9FqegkZc5ULDP34VFweAiEAgR+XF8P8X91tlqpfMW9OFYPreCEQQctIF6nqbiHOcm0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36061071,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdz8IiCRA9TVsSAnZWagAArpYP/izV876D7SxNVTiBE27e\nK85SLX8xSvzNThN4COAWRQ/95aaD9NBThXHAqbSbscv8aPssGmNLSKLSo0FW\ne1puICOvRydgGvxg8IZ1HXMr2LRu8FaMIux3VwcdW3YPZpklJ+ykR/j/nzIx\nOsM83rWdnY3mBd8PwwUjizBGbEWMHtY2STzsjDCN9NEFm1QlXq5NE4irtYIP\nA/OjvS/8oSvWgxSRtBbVeben/Unfzs6L/iLP/iZ5lGXZmaQQF+M2Ool4dadr\nH/lcqpOKzux5UJq0ZmH4l5Xy5iurv/rQQZzcQWiYAPSRXf9KsOr1wJjzB6vi\ndeWcBlGAxYGFH/a1f6I7qnNxMFvMAO2RZfnK6WD0QAhqL4vM6P5kbNiSyTDt\n4YAwcM+wKKf02O+pEduqvgsAPGYWuSgoLFn/9pgPNCLrKNd8a3FvP1SEkflS\nC/x9KvC3wUQR1y5oGI8rVc3bUjBR6lySczHr5gRrjYcoTkGYYkrQltWkfz7K\nDudarY2zEQnAd5dzIj5jqq1DcbS/4Gu1myPD2dDl132NzcnO3YUaDFrkT+DR\nNA+frAIZDxYZNUkUjza9+q9YBgk4pRmUdjmltrLPmtc3MPl5j0COrcRr1xuJ\nz8mug58P+KZ0KE+/u+201FBoWx6WK4SGNtm7KS5cTCp2/SdXQcf5k7rheM7y\nL4U1\r\n=0tPa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"930e875228d823c16dfc67a8624a7925910a9735","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.5_1573896737067_0.5425741781474407","host":"s3://npm-registry-packages"}},"1.4.6":{"name":"ant-design-vue","version":"1.4.6","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9f01171332710d006d5dd5ca3b79b48e3eaa3331","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.6.tgz","fileCount":2511,"integrity":"sha512-01bgC8PM9zh4O5Xf6EHtrk6k3Erup+foVn56tRskQPBf634NhqKxvpKvjQqxeXQNhkCxFYJBO6eWT7gZeHSgUw==","signatures":[{"sig":"MEYCIQD68xhRSeyH0d4VGst78LiDzZN90T2lDsDR8+wL4r9sBAIhAOVDMELZHdFEflgWXTuAM1OLEPr31hov6tM46k6CAV3z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36065167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1UD0CRA9TVsSAnZWagAAw4UP/iUQZBJketmN1HgDwVsx\npiPsYHguXiSKFtt7nPSQB9gXuhgQ48RXPbICbB3Kgn6AIqc1hQ99C1S8hXq9\nOAlxxXA2XWxzyi+dxWxe4fBY5k6VGELDYkVgKZhi5PYL89GszzhubezxRxVQ\nkGN/UDFhpv08DtVMIIzgKKNOUwBF4unbfXYiACIvrtuJSnWzaSHrCl602ZOX\ntUTEgUZCcmMIfHw0gmEPmkNeC/CQT+MullN1FJVxU46uU8Rv93MmxGw3YPQd\nqCqrYvVjlCOty2g+h9L9LuB6oe5jmJQtjVCVzsbEdQtNs/Rn/tr2T6heq5Mp\nEFQR7NAUI3DAc4nXR015bwfcaRr70jVDo5YbA0VNjQAbnH9k9H8cvAGMxRyN\nX1dGiK6zPnr2qg1bf7U+ypTLvJnp/BjLGkih/JtNzs66fUI7OYIVDs0ioIQv\nLxtu42pnoletOgSdowYF7q+T/fUJ0kSq7t1lrMtO59Dsq2MGToJ0nKGgTaoQ\n6pb1z6z1L9PPmstt6XXtROHieS074AZ26J4z9pWbRUkKVMsG4sbxE/rlUvNm\nKhKXlgY32JW7tGBwO0g2svZbnJybLEZdrJhfSOE7PkSEtQvxArutOXcV1/G2\nF3dknzVfrejz4Y2eEki2ILkIMfv83aB1otxM+1Ton9Bgn9MzkNEefvVsaihk\npIdz\r\n=TMCA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"a527f6073eecd7aaf3ef3bbce0286b388f5dfe41","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.6_1574256883772_0.4695082374857955","host":"s3://npm-registry-packages"}},"1.4.7":{"name":"ant-design-vue","version":"1.4.7","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9b45306a12496630aa7bf507b468e6a369167832","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.7.tgz","fileCount":2511,"integrity":"sha512-QGsC36ru1UJvsfxZkZ0gjoHb/P2874nStKDOU8q5tfiLPJcCTYK0wMlP7m3RXBgbjqnjl2oBXnGPDrO/uC1ehw==","signatures":[{"sig":"MEUCIDHtbgVpZF/Ld5h+yYp3R5/AIRyPWspjsZTmG+PR5kJEAiEA1Qs/qYpMGbexAfCl0/oKNFC9SJHesk055mSnyuY2VBQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36082265,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3hMWCRA9TVsSAnZWagAA1wUP/ilCtBj1ETbdoIs4GUzt\nlf3zjznp7MUYmKgWseWDlFpWeJOooXfuK5JJa1Y8GxA4392J2uL0rJr/Fkrp\noqyfw3NXsHzpo9+Ohkk1cLkqN/G/jRzl0j5GK8pV80dmwswDEDiTRk2TGLid\n5SQFSaLSJ3+tP9IAs5njiNL4IkrodrAMqhk70gYUjErgeF33deNbM24cyX3b\nQnE/ncd7BFC2tOBaLTrDijxTvNTzViKgdS34wYJuRzySgRIKpru/nPS6ApPj\nTc03ShNbcLSEJm/hvv9b47bh0EZj8JsgDoMBPvSMRgHfXWUXYu2uFZh09GSy\n1WOIbP1HNuUc3TyL4UsRlhBh2JVqDcQqqe8kMIk6yDYxduc25MbZDSOtD95i\n5n8UlLUmaIz542gr6kUkuE3txWzKTK4hYW2w6TeTnedcbqE/p0CXGcWc7IaP\niv0HITBNaVuHqc09vUSr4NdyhE3dXMjJZUUSD6xxvfyT/F9Jn0iD7wzBDf7p\nKXUtK3RzLm92E3uK4jgcqCpPOU8Q726WZ5qWbV9TL+1+BcSdpk5CwxViLzzN\nZpEH234TAvdhdBm+jpQUzKfLzot1M94+Q7sBWxecJXb+rW71c17kVaQ5la2c\nAAJPW1nVdjuxsLv4jbc0mE1aQE7fEa2Aq0OBi77NdOuH3TSUBG+gWEiO6bCk\nAs/d\r\n=8IlV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"273b2f505d4fafdbbe769f602531a270c755a876","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.7_1574834966193_0.864403366830151","host":"s3://npm-registry-packages"}},"1.4.8":{"name":"ant-design-vue","version":"1.4.8","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://vue.ant.design/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"458b96e770d1762de7b11e144bca6c418c29d125","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.8.tgz","fileCount":2511,"integrity":"sha512-CVcJZP76q03h7/PSgMMPBzJXijS3UcVnOthWiYVAMP9zC6nVMBpaZsUGywa71muWBYbdGOFUVsI8VCyDxlzpjg==","signatures":[{"sig":"MEUCIHH3ybPCu5sHX0lRIHtVf3pVnI1JF3w/gS7dLJV4PxF1AiEAmMonFFJDd0LUwfsUSu+QD6jJQNwPOzUakUmP93abwHo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36082664,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd35bGCRA9TVsSAnZWagAAn/AQAJAo2pD4g3s6i/DKFm1K\ngVZU7kmTY1SgtUsZHylMq7Ytuay3c6SWRghzDSzewJRTaApzQrzff8evHKAs\nA3tOA7PelCwxdaVm8yZSp1v8PzglF5HDb+hMwgxbuy8hc/tRZK6Vzr6UX3Yy\nkd3OlNx4+AIxTkMBqBFprDVTCzpZq+JEV4yuDJWOGmsvNZ9x0CBvOEBHRXZd\ntG/rtIGsWN+a6vawjvrAq/p3xdPjAz3b98Pw3Uohwb314X4iCbkLu4oWSv6g\n7R4iqdBUrRw4lO9YyoDt6WYylWNZEjFWmX6jKSEKqvZ/Fr8FdHsXC/Pm3ixD\nB7SmxR8JVpoxqCuIMdibSmo8/pXfZdU9SgNxdPv4sFCFtG6K79BIgfKSNCed\nc+76O31gP6pdaP/jVmyvAMVh/C+d6jJEnE0VtsME82gV9lUGIdkL1kZ/6Kaj\nGomdo1orsmg8ZqDXsLPXZbTLRoBKg1HnBDDmpD45UTCYn9Ql54It2wyqc7kZ\ntJJS/wjFdRUzwX5rJ4+2pdTbPKiq28Kp69nm6KFSGzLwWDIAcP17cm+Tbj8p\nn4OeAGPNiFDe5GTVzmTvNi3rv2acxcWgXxufAtGlq/NLpehCD8PSWvsLfSOa\noBVtPU6Cv6kMHpnYG16KkMm9pj5d3dpZNUZFp7IefzhnSCgARiirv1Q28Gc0\nJmgh\r\n=L+wI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"42a75f82449e393893e4a785a05a62c2f832eb1c","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.8_1574934213346_0.5398321279785621","host":"s3://npm-registry-packages"}},"1.4.9":{"name":"ant-design-vue","version":"1.4.9","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.9","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"0dae556853ebbe5c28fe32681c36e170f8ec6441","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.9.tgz","fileCount":2511,"integrity":"sha512-aB8OnQ+sdHLR/jZhTpkz0qlZrgBZ/WCAPNWOcrtzzchJ1P45fZS4oJJ4vQngUGE4b2Ix5HWdd7pzgJS+T9oPyg==","signatures":[{"sig":"MEYCIQD9LQsPNuE5GKtyUIwbSabmYzZxF8TU7pATJ+uSOSdO+AIhAJVK6NYLQQUHANI+506dYLJk4830uqEaPkbpeDJsxvoM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36101856,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd72eCCRA9TVsSAnZWagAAswcP/1gNtMhRgv/n25dkOxiv\ncOcwbFtS5ytwo6v4Yq6hXXQDFr0o8xNiiVVGiNLLzq2ZB8PQOOTUg3u+XCJN\nbnO+gqFnM9uqJWBL6GAG4dfw5nce/+bUl75JHzDKi/W0yxNXNyk1rQyWAsui\nOYNiY9Y7GDriA0oFkjOUKOaPELmKZUXz48Qk/Q7dmTcmixiWop7VI71YLjc8\nxi1QJXQ14NCpIv1heBIuMuwurFRCY9OEamIBtbaoyqRwA1vQqfF+9pJgDz2J\nY8WGK112XnDl1IC1dsLzakuR9gZ5G2ugdVwjbP2p8OyFHddZdl3xpzJiEuCS\nIEVksBccGKEoH/1h5o36xVPJ/n/kwU1nVloOSn+5ssNt2wv379OKaNLb+Srk\nefX59RNySPkyXD/dsUMMDPPMScUs8vBoBx6w+ySlsd1xb9EA1UWMMoTdOpmG\ntigsZMp/tw1DoP/PNsPdRQ4SFtU7AebJJZcLq1E4b9qrBy0rMQf2g1GCGGmw\nr3oZIuWLq/RFhI102NVa4bS8J+bFhu7ltQSOvOdAgbvYe0Msy2UARHXg2fmk\n0jSnBafWRcUs30tJjjAiLriOOWHPbaQcFR+vtxLG820Yl79//FmMgcAJyZxg\nPRPgBL76C1v0B34LYV2+YURoeD6al9rZopojaDs5O4rme+AgT+CgKcooeNyZ\nWp8N\r\n=VROn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"2d5da3ea51df28c0f6025da32d80b9dab8d54296","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.9_1575970689397_0.5587116874484117","host":"s3://npm-registry-packages"}},"1.4.10":{"name":"ant-design-vue","version":"1.4.10","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.10","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"26bf3570a3c93d54bae571e98f29457b0fd116d8","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.10.tgz","fileCount":2511,"integrity":"sha512-8QuLI8vP7c7D0k/8m4VDQzkyf2+uhcUl5voFaZ4bbMkCpUxm/1uNp+FdbLP+MxGcV5Pv5YSYbakd8ucNCYueeQ==","signatures":[{"sig":"MEYCIQDdXNzcQJ1wHFtmnoMrnpSxk6Qe1O3j3PPBureyt5NwmQIhAJJzS3MMvI92K6H58YZst7Bw8BmFfh/LVueo/9tdZLjY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36102539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8Or8CRA9TVsSAnZWagAARl8P/0aNKlXOTN5Nk57ps+Ec\nCIReV4CTtD6Nrl+L+A2WVyKfIblVf7D/XZci/2Af022v5BH3qyKQmMdW46Vd\ngRQFux6wPLsTwF22NxdopwxII7DjwVDaQ0TZGmB6r5oUcq3agHe2QyZZ6iND\n8o2p+qWAxR0IkFeecdCWCHr7k0vlkSr9XzC8Avk3hB02KqxNRLJhxtjfV+dY\nbfNj/XcKOIN0JAe3x9tATH89nbBOpZY/Lw2N7z4fGNO//MNJ3DiIBns93Hc+\niQ7Ilh/o/8SJAqqdaeGvO2Fn9trP/hONo65SuptT7r+xZ3+2nsuJqnJQxGtE\nP0pzqR/Lb3ckkcQOGwqqwIVNy2Qvg2qV2LzEFsVSPh8aGfRe38E6XRSmrzI/\nVx7FVvini5gdZBnNI0EhMaAjBOdqblwnKcoe63XvIflfJhvJK+tGPozf2dZw\nUutRZ6YUUtO6KhxXv041qm/4cqGd1nGWx6qOUdnNDOlgOArF5GugqthLsjCD\n9QlIbU4piA7ZyGU71gmWu3HBnzDTWxQt8Wef/LBG3KfrYfv7C9bus9yebHk4\n0Aj2+M13d5gYd1NXpFB7aGFOdB8WcDdu2H8FTIYL3q4nZoN0hNZyAPMdd8lG\n2/0rdgJ3BAozY6O+NR/PHEcqwoCrCKTEWUpffWkTr5fvGw2k2mcaZsgyKrZo\n95ju\r\n=C7tQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","husky":{"hooks":{"pre-commit":"pretty-quick --staged"}},"title":"Ant Design Vue","module":"es/index.js","gitHead":"c835bb8f9e2ab4612450128145aa3d41849b59f8","scripts":{"dev":"cross-env NODE_ENV=development ENTRY_INDEX=dev ./node_modules/.bin/webpack-dev-server --open --hot --port 3001","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development ./node_modules/.bin/webpack-dev-server --open --hot","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","commitmsg":"commitlint -x @commitlint/config-conventional -e $GIT_PARAMS","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^3.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^0.5.1","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^1.2.1","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^6.0.5","axios":"^0.18.0","chalk":"^2.3.2","husky":"^0.14.3","jsonp":"^0.2.1","eslint":"^5.8.0","marked":"^0.3.7","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^2.6.2","semver":"^5.3.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^7.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^2.0.3","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^2.15.0","cross-env":"^5.1.4","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^9.10.1","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^0.28.7","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","pre-commit":"^1.2.2","raw-loader":"^1.0.0-beta.0","url-loader":"^1.1.2","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^3.1.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^4.1.0","lint-staged":"^7.2.2","markdown-it":"^8.4.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^1.11.1","rucksack-css":"^1.0.2","style-loader":"^0.18.2","@octokit/rest":"^15.4.1","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.0.8","@commitlint/cli":"^6.2.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^5.1.0","vue-eslint-parser":"^5.0.0","eslint-plugin-html":"^3.2.2","markdown-it-anchor":"^4.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^1.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.6","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^4.1.1","vue-template-compiler":"^2.6.10","@vue/cli-plugin-eslint":"^3.0.5","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^3.0.1","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.5.0","uglifyjs-webpack-plugin":"^2.1.1","stylelint-config-prettier":"^4.0.0","stylelint-config-standard":"^18.2.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^6.1.3","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.6","vue-template-compiler":">=2.6.6"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.10_1576069884204_0.02898985364604778","host":"s3://npm-registry-packages"}},"1.4.11":{"name":"ant-design-vue","version":"1.4.11","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.11","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"a1a277c164301182b2d472ab5900054b85d6cbb8","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.11.tgz","fileCount":2513,"integrity":"sha512-XwddZpasH8WuWSxvDHakSZSuKAMi1KVbLP49nWpYxCpAk/MiSTsMZvsmxA6BaSoRwSTJ57Y6WJJZ6fOJSR/nxg==","signatures":[{"sig":"MEQCIBaJRGrNU5JYfQHkH3rQIhLl7UMWt3FkN4Rv4TB4lV5bAiACprUWcy6lPozjfA1iRt3k+KmBc3J4KYtaVIMV9o7x5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36180866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQ4K1CRA9TVsSAnZWagAArFoP/A2o4Y2oxfwXh8+8tzMn\nRmY8y5bUmufeCjgzjxNVzNo3D/rbcH8Vt2ENgxALyY1aSmjSxrxnqCs1chxs\nrDXIY+Cl3vnYTL2IYOMJAMkkyqYzgIl7jNeZOhAUwurxIAT5bfJwmADKCPeu\ne7VLSN3kPFlPoHjLDJckU9XgzrQE+AMSBdVUQjVhig9A5UC51jmwlhfAb4gT\nJ+8scOfdF/SKpoRKDa+rwVjNSbkQKndG2td1MSpghdiJpG5giDgzE5m9Bj4R\nN6nhv2S1HlXSNNJyEiIDafST9z1cxTHU8jjadrXvwwS28ET0CXyMtWK+Vw18\nao8z6k3lt65guUqjUnlLE6ljTkC9L/wgAM9zWrOhn749Cy4N5m8qPM1oLp7r\nXwvsteorOyIOAXjroOIDudu9gITCIhtPspj0L/gcpm9no/nfa/VnZ7zIi9DX\nhNHra9hAahu5bds233ixTSwKadUHFi0AaLnhIFl2hvSWgnmd/IxYYHgideLJ\nMy2vpdT7uz8+N5kiPCdGmWP1up1bGsb8KKR9QMvuJJo2OTejxyaCRV865TMn\nhE2FocsnTGTUyIvSgXP305p9OKggNSQCvvZLwZNpjNWT7QJRSdNaGBZOsodB\nBjW/KL9/hjcxysG2XjKgHErqmk35XHpJgORbUF7zC+0SizLtGVu7XIK/dF49\nPEHG\r\n=lKJj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"f16bde4bb14371655b8e10f267d3f0ce48ce60fc","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.11_1581482676714_0.3108235396882435","host":"s3://npm-registry-packages"}},"1.4.12":{"name":"ant-design-vue","version":"1.4.12","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.4.12","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"61a9d28c54b19545d34b3680834bec5a481b4398","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.4.12.tgz","fileCount":2513,"integrity":"sha512-m+hWKF208DN8XX4s4BHCnh+XlUhJy8FUs13a9+jtZCoiQB2zpZdafJeu1LEcFaFlK7fxXfp61fWJJJm0S6ek0g==","signatures":[{"sig":"MEYCIQDSHHvuHnk1BIiQDYfJ4gkqGJwe4nFKUzv+faiVDzClxAIhAIK0i2a/69fI1e/6lqFm75IgiQJOMce/lMNsrBPmhYPW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":36180997,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXe8vCRA9TVsSAnZWagAAT0kP/jjKrgYvAn4x9boj2eWO\nIIcCUViM/2+yNc+OsJqBy/hFTjm+E5qnTPHyAbZLIbz0W96hx5LoSSg6ssV8\ngkjkatO8n8p5iqS2TZ5A4g1SVoLY/9PilYaUvA3xlOsqEAol4U1ki9zJxRGT\nb1tEIEG4mZ2csfnaXOW7f3n3KSfunnZhhMwW5di/H4c9iDYz7/bPahwimLH2\nwNzn1ef+awg83JrB6d8hEzmjVu5euseHC5j45PPAG1a3JKi0xmbk/lji5hkd\njZ3qxhNBSH20ObL3uqXlmtj1CwxEX9Y1NOXa5CgUvNeGmA44iyeQHSqIXEh7\na2PjbheqCKycgGoqsgu5auSk49tsPh8O9l5zuk5MVsOVNyNte/ZOyHoEPbSr\nEKxYDNjutnaeSoma+DRN1Esc+06QUYbV7dm++USzd51+HBMD3Ku35NdslSca\nkE884dh1saAItrwIAka2p9kTmozh6UzURoCk2Bf9OeUOMUybL3pgnWJm7YfM\nQX4tjuvBVGlCFhfd3a+ycqdk8IQPU9rTaX7ayGsCGAxtgCn2ukC5EGjCzt1Q\n6go7yj1L4sLXS59fPyrL6BjKH2gcWhD8YolOcCgkz6H9y0WXCQ6UomlUXjAR\nwNT5RdLaaITcS99Kq6HzQqBnX4NVDMjT5u0Wg9owfhqCy88bu/kpZGnq4NFh\n+165\r\n=AFgN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"b2b500f70e7e4bfed21d5ce68f29ef300e440572","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.7.0","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.4.12_1583214382367_0.18050300356249682","host":"s3://npm-registry-packages"}},"1.5.0-alpha.1":{"name":"ant-design-vue","version":"1.5.0-alpha.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-alpha.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"b44c777923a1b800cb4ca4f67828696e81dab10a","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-alpha.1.tgz","fileCount":2810,"integrity":"sha512-tOi7V/VPOY9e5YPrnl93nvJLegafEkvwcKAGNKfQeHnx1LNb2jSfIXpafFE5NL7+Hcn+Ou/NL1FbuAPdISNbyw==","signatures":[{"sig":"MEQCIDsT2DnBZOZ5PWFkvhhwdNdhSnPLdme8rxRmsh6LvHmlAiBF9gjsAueIJsvNVPl2vbejHc82YwYXxc9QZZXnaQMvAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39210164,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeX5dkCRA9TVsSAnZWagAAcvQP/jQHi1ZNMBCS37cZoVZl\nUFPIxPwIYVXRtPXB4erdS0/wMSihtbOx4y11v5kGufBlG5xe8CcxZU3ZlnNB\n7wvYPGapIHy8tp1n2pWIwv2uIWtbDcwJ4NCWchjXaEbPNOMrcDtfmG6O+B+0\nOoV+jWhBmh+8WfUzLQPDhcWLad7gljB9qLNbGB+VYn5JepgcSNd81IPaXz2w\ndb8gBJoicMAt09OJr4oMEp1bcPeu/FzfswvsheTnxY0IUBNOOHHsqihrSgjf\nVCHrjWrF819wCsNtu3JZtCK3BTtS6qN6a3PwCSWNk56YNV47yFbtXIsMjboF\n4VzP/KJ2AVwWsriVIlislcqSQeq1FgkKoMsxy2i+CqdfxjRByAlpjV7fSTRp\ni0gCcXxcE/xtGWDgxn8vg1Tj/M94XKK2ldAP2cRsRb7mC3XJPoaDnsyK/Rty\nAevHEwrTRujhMo1FYHhNqPdollGKg1hzIuxvd7WzEwFotVcYaZ9EbS0lqRYp\nVLfK+oxCaiu2gO/RJrj55fLf+xL3ZkCHH6Zaw3JnPY9UDwF+xUA26VIpiZlo\nHpEDQirCeKgNMLvdUuqqFZmRX8Tl0OMcHnhUIZTr0l0sWqKor+kTXk+dJvAD\nfGDNpecfF21sfNxJ785KDiXIASawCzurx/N/45SxvZdy2SViQ0REd/GXvbhd\nDmda\r\n=/AbD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"1572e8e70d5d00cf0b0c418e16ca0a9311160eb3","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-alpha.1_1583322980121_0.5554386597130379","host":"s3://npm-registry-packages"}},"1.5.0-beta.1":{"name":"ant-design-vue","version":"1.5.0-beta.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-beta.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9396e1bb4435c9bc5dc224e2bd888a000144a8f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-beta.1.tgz","fileCount":2550,"integrity":"sha512-Fv5vxO+qHakbjsswgZ70/bjiZK4FphdFxv31VjBJKfhA5Ud7K6sNqC0BVpYS8nL0BwxGCVG8I30efNdU3VifnA==","signatures":[{"sig":"MEUCIQChh3owhqkMPQFlnHIu9766EaRw3IzreYI1Zp+udTiBfwIgB9a9zlAjEFuPwhSj/cCO6MudsWNyai0n9tXYJoRU9x4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38649720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeZJgoCRA9TVsSAnZWagAALmAP/0SOpoxs6OKJ5nvt8jJ9\nTvympSYrTFGeHL2ezOXlEz+RVimt2LazNkevp1i2hwv/NErhsGiq8docqbhR\nKG2vF/GKWawHP8AgMY2NXwYKwzITuwmodigMbA/tiZxaOl4wgtmum7LbkFfJ\nIskveMagfJkdARKly9niFcplMhKVS85Cttz44GmCzs6GwAo9VAXoPG4ccunn\nR1e9e6MIHtQgKI7+q04kZxvgepoqNi7XsOeWWB6p4CMvqlwBqnJyUX5FFQ3F\nZt9iu79Tv/pwO/D5n8smfIf0un/VIceF5lv01cJ5DqvL3SRwmnJpVVAIHUyJ\nH1ry2JxUsd6mCwS8AGV+q1OD38rEGwLiqQVcW6JYWhc7CmI1H+dn7hKl20Bg\nxjTpY0H3+98OHlZALWPn3wmrF3D5ecrIwkv4jcTYN166HvVEcK7w8BKWaO56\nlpj5Td6Fm/ARPEtylFBN7QbSopp4C2nKE51lHQ5vpUMMA9qgDfhOXJHPdgJI\nG+kuF5ecM9/RUGNfzSyijQUIErG0MbhCBviOYuI2NCBVv39yGHrnI/Rm7wZl\nWjBnK9+GDH32Qfx7rvIE9w460zyQyGbGNk/nJmnTGnVWIoLVLnF+kmLR6/pP\nIQc2lyGz8rM/w+LnvU330rfhEbeQfMeTk3mDoWz4hHqQJcLnEF5i5It8QKNk\njM7B\r\n=njfX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"8ebfb5c38f055e25c0372bc90d2091b4dc777d96","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","copy":"node scripts/run.js copy-html","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","site":"node scripts/run.js _site","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-beta.1_1583650855475_0.834949217284757","host":"s3://npm-registry-packages"}},"1.5.0-beta.2":{"name":"ant-design-vue","version":"1.5.0-beta.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-beta.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"8d12ab778c6d378dc54b279ddc7156b8f24afc10","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-beta.2.tgz","fileCount":2568,"integrity":"sha512-MMFWJsFKyFwK75McA885AP0izHe78LZSoWK4+FhHJyKdFcx/T7E1LABqJct7bjNzIjST8mD8HLL0qJkUHFQbJg==","signatures":[{"sig":"MEUCIQC2W+dswMVPeZwzadcbdKutlVgcm18TBhJEYrqkNv3TVQIgeJl4JTSuHSnielfZIm+SKRC7OA58fg50wdjIiftbze0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38972379,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebaffCRA9TVsSAnZWagAAR0wQAJc2wlabnBeRGOxYC7v0\nJQMjMFebBXOpAB21qTo4B2VzWfaBcX8hwtohZ0qAaY6Yu4Xm4KfVPpJkc2Zh\nudVw3doFjDiI0LjoqStOskxlTy3WN6xMToInUTGTAJvEKQDUAgEHDamkpo6r\nvQkDuC+utRVzHLVQCDLwxHXZmCT3LXw0jq/FUuQvki02uAMO+AFsom4/NrIs\nHjuraWIYfW8/IG5tIUf4Yo2skfEJlWNlA6N/nSJ+t8DqxWWO1oD7oqFd8bcC\nzeGSZ5u4/EUaCEr46Ev3/BHr8iekyqSq7F3Y/hL/McYwCuTXE7nOCjB9JOOU\nR81DAhU2G08RXP4TrQvL0szafWTATPky8YZr+H0p4ocE6G5N/j6gT1yCeUXh\nBljPamp7eYzo/xuCQ6o4h4/FuwnRvz4rmQidynfBB7hputj90QVyz8OVmxcv\nCfzAt/b3JJAAlcmvzJbtm+SSs3usMKh3maFYgvj4Sjf3vwo6UbMuYnx1/eNO\nYF4B1QpyW5h7uog/G59lht/k712No9j4m4GunSKxzphd3af3kesGd2bnASc1\n5ymnFSUN70wTO3F0M4zg698sEqGX8nAQNyo8suF9949v5zkR7LcBFOHjI9nA\nJ0LfTrSWQvMq/jDHcikZox2RUTvOg2giQTh2yBt+8qGWR0BU7h/7NzG1VCOH\ngbWH\r\n=85lw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"8959f62dffe5daac4337c1be8bd77a5305e384a4","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.19.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-beta.2_1584244702064_0.7622269480140087","host":"s3://npm-registry-packages"}},"1.5.0-beta.3":{"name":"ant-design-vue","version":"1.5.0-beta.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-beta.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"17cd6d5a6ffd6424f733fd44ebe8d14f68e52618","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-beta.3.tgz","fileCount":2568,"integrity":"sha512-xnthZwom1L38qWsv+jPAydXVEvAo4h1AKpB93AkuymYia9lMeDYGsdRRsE7pHDasPNyncMRnwnZNEv9P23J0iw==","signatures":[{"sig":"MEQCIFwsnuXvddumcSUHdPCUU3zqexat++Zav3KJJ7CvSnn9AiBlg8KCoXxVXFHnjWWaHCFEbsAAoMcTR3E8lvlWyGGykQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38979530,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebc9zCRA9TVsSAnZWagAAnrwP/iLkYr8s1pPijItLHfAW\nS7TltNUCjLeOEJBj9+MLHm3plEdf12T4Yb6M7xjjSPvI7eaqhr1r/t/5MxOF\nfUf3fi7vN4K0SOLeaG980W3H+O/YFgCFGVRuGn4AWIFu24tZ016oHRyz0B8a\ntf1V+D5Lq+fPQdTqM8LfFrhMT60WgPdD4+WCR3637orfklR1IaAMjwGiau7V\nRuAyAVb9lHzi34LgMqdBk1Uit9mNHDJRWJwztUSqc+fDVJeM+g+9E7gdKAVC\nOhSoTGTm1qW1OIZPRj4hh+DFrqe9ULrYFZ6mDRr9FuGbr8okLBzY3o2QYzys\nrQLMsV9th6ygeC4x45YqOrcW/R5LTiICftyLgbioWhnjEhJN9Rvu36Cf7m6c\nUbknmrtrG/g2Az2hGHdpaJl12ercTZXjnoOC1INBdmeFVS2MCGbW7zzbqyJ7\n2HSpR/VSY1YeLR1h0M35puPpf6BhBIE7tcZJiNebsKgjQig8a3CjJJiLY2QQ\n6Rylf73AYzsRF70oxT6Cbhe18Nk6sjA+o8A4HBhX+OvbeQeUh3cIlnoI7tGq\nIOis2xjztc2eTrrI4ojmmeoTXb7lI4H9Tq22hyvRsA3QrQjV8KkX4iigMNM9\ny+hOPHYAozp6X20SnxrTYAk+0/T2bTUoGRPyMLpDJc1qsRDtFVuog+gswTyd\n8X5N\r\n=D/WQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"8e16df90f96e43af645e1f8e623b17a11d14ccdb","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.19.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-beta.3_1584254834515_0.6591486965433719","host":"s3://npm-registry-packages"}},"1.5.0-rc.1":{"name":"ant-design-vue","version":"1.5.0-rc.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-rc.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9d61afad162a3236bab08968e73738586e59f9a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-rc.1.tgz","fileCount":2568,"integrity":"sha512-wKeypoTlDwYp/pXiOsTV9hyxcWtwqxRetbyhKJF7fSq0uGuBrqVPfUGwyF12nimTnxitDTp+uJN1tgm50osjZQ==","signatures":[{"sig":"MEUCIBH7ZGljrVEuTFczy0Fj2fuHyrOuiJD2lze01DM+en3bAiEA4nQ4izPcT8n3xGFbfKO26F2+ggIW+Zoulk15US4I9Vs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38979506,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebdHXCRA9TVsSAnZWagAASekP/1o99VNOTQecihIo0M5k\nY266/yH/dGLlvMHrIF4Y2Z80FqbTlPqlLnQSWV4d2AWDPY15eueAhHEGWH61\ngod6+SpvBtheeQ6wg3JzPV07WHEoeb9uwzLFWtptR27oopBmqG5+4HkeGCVq\ni+zid/ug9J+p2M7D6VHzp032/YLNuE2RGSHX5EYvQToRiSXZCKC8bsjK4rJK\nmUXh04QX41ZXX0xrbXBWzT2liqSS+L0WSSFCPFHBjhWzzD6CBRhhUqzH+SKL\nfscPfZUiA2zv0UxRfif737a3diBQQbpVPn8xaP4KHAmJNpJnqJXbZ1OJq/aj\nh0wIqDTGh+42PZSQ452ztDOBgkcaa16ELXmFVZYXHflM77Ehphh8sSOH+bkP\nvmVynf8Q0+jIR1LfpeUPWLv+e1WY1A0QWOTgPIZo9bma3cj5XgjwLHH7I1tI\nZ3dG9iqXDPFOviEAbRAHQf/ACwDD5S+Q8yV8HHKogfH29vWw2UQhNIjwWBaT\nmyUxs3QMHeSRXDowXibSCW7an8igy48TnY7xV1PgJtk6DSIJL7K8gdWDTxTo\nFkG44XzK7I25tQS8wsKpsMTOpoMkRHrvwcgJIc7O8rGiuZXdF6Rw0KlgYBiV\nF/3MyXtxhmJV9yQqGrZNLaKOvh4IUIZZQ/JjwRbTJ7oe/tLV/c1cxQf2YMkP\nmQMY\r\n=4EWa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"21fffe10bf4b9fd6ff838408647c6052491c92d4","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.19.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-rc.1_1584255446700_0.4511912365188109","host":"s3://npm-registry-packages"}},"1.5.0-rc.2":{"name":"ant-design-vue","version":"1.5.0-rc.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-rc.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"88c8fa7a32bd61762205b2b4576cf14ab1da8b76","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-rc.2.tgz","fileCount":2568,"integrity":"sha512-LhWdZu6QaijO8ZpB5YxSfsSffGfEmAmVs5sAC6FwkbefoX7BPU+FyVVrmoPh1sN7YqDwGaw7fxwVUW7GLqyWUA==","signatures":[{"sig":"MEYCIQC7Wt3o6tFClG8EWuiuTurLfnvjAjlGv5zs+pNhIduT0QIhAPpSqzRx3qDdfIaJAJf+1FFKSiEx6cv3JVtMp31/pet3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38980515,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebv56CRA9TVsSAnZWagAAUhEP/R2kldTK7gW3UCWP2AeB\n/xsd6cV4sAFiZT+Ee2hzs9CPav0JNaxnXNNkr+FMSL32RDVdAulWGt7/Kr8g\nakpqVnTapZPJR/zO+N7jgWwLkfZD42a/CH7kUQItZAnn1MJQllcvfrG2hmJ4\n4EaCxaLpikobCwhDoB9jUi8eE6QpCiPFkBZfa65dcOsqpXtiQ0XkoxZRwyuJ\n8bqK1QisHlolDTO51cYEbNNbNFneFLqbTyXVqjLLJu6bHqfdb9T3Staq995E\n7mEvs7Q3uq9/03UbtBsXaQfLcA88IIwLf6RRLtf7HpYHMkFPvRhXJBN64NPt\nP0ztFwsszM7yG15F6SRix/tyR+LVOHbm1Kt7wkcp+h48BwIA5/3xgQhNReLG\n0cW83+79shhsXkEQyCksCzWWMbE0Wh/jKtUmEYyTThdLq+nJIA9ONkiJAEbQ\nIcpvHBcXc3Jg0b8zNdnRCtXslUjRRtmoWrqK3T8orYulb4Nhy66UuuQ7gdt8\nbspF9+A+gdaGKJ1RgbDyO8xrckmfLehheEbxlBNUfPr7QHqMX/WoNiXGlfYZ\nY6tFPiZziz/VMrPY2qoIDZ9INKDyY1tmmJLcCgpXKtdfkBVJpXcCxAtmeVac\npkhdR2o3Hof9GZ7e5LyyTMilZR+br+nHqDbsqo2fYMG/jKIk2I1BBlwkKq9V\nB+8W\r\n=NQKV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"3a16bb3ad49919f1349c682c2c9ccae79ea766ef","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.19.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-rc.2_1584332409556_0.4800444030678741","host":"s3://npm-registry-packages"}},"1.5.0-rc.3":{"name":"ant-design-vue","version":"1.5.0-rc.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-rc.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"8908e18a12c31fbc523714347dc6d7d5db5ca9a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-rc.3.tgz","fileCount":2568,"integrity":"sha512-nQ1Z5ZJChuIxGqL60roxqKEy/Kbu3X8wNsZcAgKO1TeMrkvT/liGvhryu5Wad4ilUzhxfy22r/ESDpYEKSMakw==","signatures":[{"sig":"MEUCIAl8TemfieDG+uW0zkf1GJVlUjViPuT1PenMHohA3htBAiEAgx4vWRornSUPwvUKNyq9cC68ApqCHKvdazrkQ2dhoS8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38978811,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJebw+JCRA9TVsSAnZWagAA8AAP/32Jx3Zz+c3iwNSnngD7\nBGHJbJtpvDMwBd4WFHRTWpz0p1zAuV3xvkdlJTpHQ0IciZ0XrD/OnAnx8AJ0\nZzcSNOOwtzT9p5x/+lAZ6pSwoNugsA+mBCzVgG0ElxHPdPUNNj0YReSfEi5A\nF/riiaE6WR7HJk404Z7qWMgKfkgE/fMK8oBeWiPcpBSc0CXQEgTJeZYkxtZn\n2eXDtXCFEIhfO5/wR0IK9K/6FrHm8kqX8OEWphzaGTDGX0Zti85MMidIn9Nw\ntq+91iel9FnL+ZQUg0B+cxvSkByClFHWDQ42JlPGxbz3u4FV51i4r0O3joMg\naxf91OE13YykT375Is27M8mVMn4UQeCKaAt7eq2+jo5PvJtm/OOOPQAh5GPQ\nOteY+pwSKyUln3ojXro/SopixkvoStCJu3bhVdfGKC5XtOkBCLhZGbOyuSnP\nGBrG9UajrOMBfZE68zMQ+5FOWT2O3pgM7aS8YgcrSOD1iTaXvw/MvYJ4aNwJ\n2XJkCkxFduwhmcmZSAcikBORqZnHCxxeQtUPOMvVpRZdsLrYSZ/vMugBqLkj\n1dUi6yNAYKoMf7YA6gZsNTUP2R5brrMfX8JGQ/N/4BcgaWawwLjHhfBIzDv3\nXziTRmgxcSUGHhRlxeMdmyjpFOXjse/HHTqoVAJP7ZvVYEJ+L6i4Qxz6mx8X\nkv+q\r\n=ulgX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"eac21b49fce4f0597099603693f123b6ee335afe","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.19.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-rc.3_1584336776868_0.9190544213727025","host":"s3://npm-registry-packages"}},"1.5.0-rc.4":{"name":"ant-design-vue","version":"1.5.0-rc.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-rc.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"01d9424c081468295cd0a588227a86c8a59d5b77","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-rc.4.tgz","fileCount":2568,"integrity":"sha512-fHUtzW8Qtbix6s+WvQGGhYEeBkaQ1OOL+wQ5z84EKr2rvKw5QMQJxkB9TuZ1d2JRioXG4TVbrWOWPnVLp4rbpA==","signatures":[{"sig":"MEYCIQCQEu+sRtQQ5TRwHuw6ZFOOTaHtBAVp5XDOwmoTaGPquQIhAM6GZH8Vn4RHvvxXHbTH2Te12fKxHXDCARpsLqRE2Hq7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38991981,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeb303CRA9TVsSAnZWagAAVb8P/3a+SFoAVCrklYyskA2I\ncVgE/nFo6gcZH/YP5m9qWh1SI8BN1tLyZMzaA28zdDte6VF3z4mFqDb1WSHf\nezrFBClvPC9eatervMZY7CSRxa6AjU/PGzsiTuQcDcH0e1ubd87KRND3ooec\nFGgKSCg47DA02+qwqhmvbHav7Rqkvazw0dhp5miJPi3VR6nis72u8tf7JCMx\nnUeuYhR3Tc9PFfjgURpCJ//cSZhK1XyZHj59Gynzei3NS2Na76wX6Hf5jolZ\n2y/I6UWHzhAPPE9bgCuF/tS0YSkWhfgzxC6VTx29cGiRV+o5SqIfT1HXP6Tu\naWJ9WWg1IyfMN5m3g796mknjeG2WaOGHYG/q2cDGPrStDTNdLTHUDahR+pZk\nQyffDIxn0tERw7WWgB0FQqcWLwqqlRsPIXjk+FHKK9859GWKNkGclVsF1sG+\n5qGfgC5MqLOGcNu74BdnKg7Y/CeND3IZJkN4nKEG5kVDx9WDNoBNH60iPWwr\nAhdCue4wWRPOFgUYtgEU37QwEGBh6mgAErA7Z6ilI7suJgB12xpNXE6wDqxr\nM5TPo0r5o8P5ufVPSYYlB0uBEUUSeOK7T6LLi92P8VttfuduGBbKQKWgH4tT\nq9ODZPsM6kOOSDUypgCjQYGocILW0qTfS+TcwZl1HpVOwnqLXW9o/XuO2IU0\nZDz/\r\n=94RP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"43c961c971f6b141675e5b84948014457169041f","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.19.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-rc.4_1584364854744_0.4935897676014176","host":"s3://npm-registry-packages"}},"1.5.0-rc.5":{"name":"ant-design-vue","version":"1.5.0-rc.5","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-rc.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"852224f02f85bd8ca684f2b4b491050c33276d59","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-rc.5.tgz","fileCount":2568,"integrity":"sha512-WHWBmbFhi2y7t1EVbkLO7mJ9+UjL0bAezmixHcRozwzxqL9tUhrIf6ZZATO5XVukpv4LpIMx05QLmHJbqBIeag==","signatures":[{"sig":"MEYCIQDCbJfN+O/OUYkrn2PhNdC3pYOSb4K88EbkTIbkETZ1CAIhALfKzdxvDHlgFELrflNBpf1f4aqXSa01MtJqRfP9GBIe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38773132,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJec4uCCRA9TVsSAnZWagAA9g4P/0Rk6p2F7l01unVODZjc\nQxNGESmjMP3EF3304tDPC3X/HbwGJGBmmklN2cr38Ox5USngjVIg/Rw1DOfR\ngz78aXScyemOMj9j1WQDUxOohprLwo7yYPj4mMKkYBl/61UNHc8/DHd4teU3\nPSzTJT1JQAJHPR8XP2iOu0cH/9tlBofcn9xVYmU7WiCyPhz7Iop1NEQv5BL0\negOePzSh3aVUWqdbGVLyeo5Y23qyM0AWU0CbdV5JWDjDLwf3QzUoEZ+4+T76\nx2WngXfxCFC/pVgBtBVy5bnfig54+otBxIroq3H23fybSficCtnz6d1swHXj\nCZlMH1JfcVN+wjGo9YTXfNaETYVHd09RF+3ouyLSZ8DnZcm1yujdFdXDUdgZ\nT4l8/iskBEGqiVOWOKXfXmWjxCW1lp2eNM7eZZhCQdhBHLSeiuoLs98avnEI\nSBB0LaUazUh58ujSOFOew/Ah6/xHmm7FM8SZa0OyLEH23brusFEWJGVwg8jT\nq2GpKkUmMv9MhRN/t74u3d927FWTJ2e22ainDQ/umB3aWtZOXrwSQmOvX+4F\nGu1DYZ7N8eigKgAR0PSPIshINVHOgnwS9x8x0EV8sZXXzQ2wwRQQhSmDzmJm\nT0uvZIU+uLhlnpmeIAbKwggwd0U06MlwOUXGcVF+KBjHgbm3ig5dKAnRnawa\nI3Py\r\n=ul2E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"2aa2094bee6cfb868705816e8455c1498d49801a","scripts":{"dev":"node build/dev.js","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.19.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","markdown-it":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","highlight.js":"^9.12.0","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-rc.5_1584630657772_0.7391533991722556","host":"s3://npm-registry-packages"}},"1.5.0-rc.6":{"name":"ant-design-vue","version":"1.5.0-rc.6","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-rc.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"a9616550e0386bf7a6b1bf00aae5cadc13159967","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-rc.6.tgz","fileCount":2568,"integrity":"sha512-ILUyMCKa2oYAaymlWNlT2gVsNBugUCLZl28pUR+RAWjxYvxxqh6PCZj6hO9gRRgdz5WvwK1Z1gi5ua2JROOZfQ==","signatures":[{"sig":"MEUCIATIHhh2+400HY5lwPu6UtPmVzOZDbGllPK4jrqekZZuAiEA35x+L6Dt6gF5MUFYOKVqaAH/NCE8AdoZySR8zmBZ73g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38776526,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeeM8zCRA9TVsSAnZWagAAkvcP/28dsx1zBXhNHg2WSTTO\n6qGiJRFivjxs1iEfvZQZVQkpKiymW0n3q79Ml17vAr1JH8J9gGt1VXOTVo8q\nnNgmDJSI3JiqW2teyRIQm/ne1ZPZ6d95eDYuBCMZV1qyZ6kyVokrY3sznsq9\nbta1/3qontHgHzVosbfHh+hFG6932NU1ulnc8YmJRzf9RFUcFRdY4nhyM6sA\nSwmqwfAn1b9GueIsd45H/DBj8eDlHXCopAP4njKSFy61AjZXJu5emLkyB2oI\nA2y0G5rPhl0GEKKYI/aalj5mXi8hSwcl9fSaC6yIjUQId8NgDu3eSZ+c2sn3\n9JK2ZL+GTXbOGHgxlxU2PcFGBmBXCdkuNqg2OT8u+TcwdCRX1+ni+0DgpuIV\nRhGBuXb/GwU1oS7ry0YdcsaptYgCf3OzvieBy6bUKYnEnpqpqBoBozGXoN+M\nSG/k9p1gTefHSTCTjryHiJDb+4mlBCoW07OFtGAWss+JvQQQpI7jROfq3hJo\nMhSRtK5cv7bMm+Nz88CqC4prKm33DJIwYIdH41RSg1HKbXLrhlTrWUykuVeY\ni+QZOJmz98nemdBI9GrLbUdpgV7ioofqQ4XwoXekaAyN8Y96EI2L+w8Wui5J\nhmVWaA9nW54WiRuuIIz/Mq50h10gG3FWq11cpPXYdBtiCUTJg+5V761Sf4Xh\nGrql\r\n=4PaO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"60bb3ae50c06255a3d150afa7a13d84121c0d500","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-rc.6_1584975666225_0.33296999292132967","host":"s3://npm-registry-packages"}},"1.5.0-rc.7":{"name":"ant-design-vue","version":"1.5.0-rc.7","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0-rc.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2e84cd91978a04cb005183655b8303112ee22729","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0-rc.7.tgz","fileCount":2568,"integrity":"sha512-SIk20myTSRV7b3HjstksGelhIO5l3OoqdsHSWUGmwMzm8zjdED9Na4vw8dSH1f0UsMbr85TLCQQtakywHpOCqA==","signatures":[{"sig":"MEUCIQDfmudPLabKw2mqNrR4bNbNVnk8mtU0//GeeGWjSLHOcQIgOI9QX0PXE+4nY8y8eoX4+PES+njRFOBvNo135myGaZw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38793162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeffAOCRA9TVsSAnZWagAAAgQP/1nK60Oyui87DUtyQv7F\nk1pQLUQfsM72IpfQieO5uL4tgBzIueBNs+kkg+UfwslJyxeCG1gaVM0K8i0j\ndoQNlagvOxCCmPantWeR9noVOJ+yGN0RoAEeTttGgJqICiQiIYzDpMenIQCY\nb6+F+3B3PQxMdqxVfPZkQRXwgogjEdERZcB9gReaJaeSnrMpO6EzjjQogRwy\n+c46/u3P7djkpVrup0OtDzBgqhVvqDa4lP8F3lSmSfLsJQAKtx1Nh3qTA18S\noeahh07s0aJFl5tofsGwNGDRpljvEYG9npefzVSW6CMKvgvyGjnruXMuHKtc\nCGpTWUAXb5/h98D9JceiLfDyljgBVUPdj0ti4NgWUhLFyGNZxkwqssNTg4Xh\nlUT0LVngOmb8FoSi7O7a5Tx32NQ7lTc4MQpB2VKQeKXY3lio7RhA7B1QLQNQ\nkxX4rf9u4BW/N7LKGBDkvfoDS2aS39tRDeKbfoKh4g/TNrHM58Z2Z1PBaCHK\nih3hUkaz/M1ewpcW0IGtkqUWHa9kmytgSCMhajKjVq4A3dhdRxuMLk+eTMp9\nGSEGhuS93UiNUn30+veC2pBf7dhmUCEwFFffUd1sPvm3Loo00PW2EPpQ8tsH\n50ZE/2C3B16XWcNXHG1RoN7x3WSzh1c/lgoYF2sZ6+7ri+zj0ww9UFzAaQpv\nHF7E\r\n=Dwl+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"ab29a0ebe407239e2e341426b983b12fcf3d8f1b","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^0.12.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0-rc.7_1585311758037_0.45534823121232426","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"ant-design-vue","version":"1.5.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2e2c5658cf1211be06fbee95a18eee02965e089f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.0.tgz","fileCount":2564,"integrity":"sha512-12+mTowYNZZhsXFR848BZRWGtZrWGayJx9j8Dv3gpgPBU4Abi86tz0hUSbnp8RXL6wb7xNcE9JoawNeE9Y83+Q==","signatures":[{"sig":"MEUCIGR1g9Iq9AwVHe+3TFcGUUL8F4wc7v5zhc9rGjOxdLmlAiEA+pDquzSvdEnCnrZgv/LEFA6KyX3yUmXjCebfHHWDxz4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38788236,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJegG6vCRA9TVsSAnZWagAA1LgP/1zvDOWVvWE5/fIoOM26\nQJcCcWe6155a3XqX4wHK/zghWeJaSpGhILiZl2xdzVugqu22kIXS93GmvV4c\nkSjsyjEauLvhNIoqdy0g7ondgtj7qcX04HsRw/6WmawJhX3cvTTPEEoT6o6z\nI8ME69rXqXGQy4QGQpAhz1Ll1b4jvfqz5SKwCxy+E17NpylKlX4GO8PukjuH\nrfOqcu0vPvR0UDnHBOvqhE6lS/Y6B27N7sxKtCy6aETJLGpf0uJgwGFg/THU\nC4NgzNmZxB29r72WrmcXF7hoLMPHkI9nQCdUMLlLvuqhFRjRQvCM2k6K8wCI\nOdlV6yEomLIHeYnICYAOnW5/KqCMG/FZLfgNzKiaMFzAELnlAMnIqnClpIz3\n8uFq/N9t2ZWinVL0QOMkMJ3kL43i4ogwGe5A97JgivxHOY0GepnlSXhfxXTl\nQg9zVSYE+xlP80hcqT+ptm3Kwmi7l0h4XyIxHh3qqyfOt9XzPkE1rys+RlO4\nwQq6oCefqr3x1Iv0vBY+ZTVA2MQp6t2ra6reuhlAvLdTJaTR+vMkaxQrOqCp\ntczgQyVgYWHaLegKbMb23Cj/309CKd62JSF4JvEN7/dzark+wQBziorYF6c9\nKGhlwik581GQj9WGe5Z2hRj6SY8sbHVlm4do24DX1c0ZvNDhKsKZ5uS0zwgz\nL+GZ\r\n=T5KE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"caa0a6489a20ee7a89588d3d2fec3776a053932a","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.0_1585475246227_0.466785810649184","host":"s3://npm-registry-packages"}},"1.5.1":{"name":"ant-design-vue","version":"1.5.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e8bdcf69aa29492a875f028745561b7908d9f17e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.1.tgz","fileCount":2564,"integrity":"sha512-d3ONYB0XfToRJfD0vJ1MquwIcS0SwX0v3NWqE2y4RZZ0VbK8hmCdPGeM2qO7q8D9ePqTeRow84BbPgQ/YZpm1Q==","signatures":[{"sig":"MEQCIF9S6WPrsMOVwCMoJ2R0nYahSi/kqybVCxl/V79oiwhDAiB2eilOg/iJLJUlLiiR0KH+c/gQtDwdcE4wkjfyV5ACqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38809764,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJehfhkCRA9TVsSAnZWagAAHCAP/3kgZ5Z4qVPCXzXNdTAH\nQWGOhJfoKe0qWDsRteOgviu9TbH8B2VfB4Xl2Xah6ufEUa3mfZOWcwKvtGbv\ndFcCaRkfI7NkIpZxZTkJ1jw4SFpbUUWfvnaOAxAkaXaNV++1ro4PqbH4BGD5\ncOCjZeqQQCoV3t3VW4RJGdSpx03YRxotXn/33ys/7WMrokZ5QJWhpE7I6m5f\n1tqgsG71Tam2WX8vKO2MGlqEWWhFEfYYVJkY8sNda9lPJ4vqtPJjdYL/M9Gk\nwSOCcUL5U9j2WJule0p+8xZoo6D8ppTlCAWHnz01AbpehFKePzo1cQAvC3vO\nHqHPYDjQVZdUjXxDHBMU6szw/7fEBWdlM7S6eo3EyGZti0P+O1QyLUsqWoB/\nEe92ULH5o1S9hyFIu1XrFGznROHEfa9whW5d5eKiQyot5caKlh6VOvpGr52E\nb/4Tk28OT3wPpyHmq+uFSEf9w6fHjXztM2CDGznnTrqCyGEA8jEnGRwRkAGI\n0YkOneuKBmO4SKsqbWgmPqzM+xyT48G1lhyMwH0/M4KLZCbcPFaSGAXgt/xW\nvA2++Qowe3fWC9D5WELGGXi1cnjBYYWwjb6SjHd5i2+lVrQVR80T1GOROhZU\n3MFjg1e8RrfwxagKyTUz9hZ97A3dieJHIALhx0zccG2ygUQ84hXUTI0Av9KI\nDHZW\r\n=zIZV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"4314d97632a12071859436a8329b7aff611cd143","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env PORT=3001 NODE_ENV=development webpack-dev-server --config build/webpack.dev.conf.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.0.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.0.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.0.0","eslint-plugin-markdown":"^1.0.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.1_1585838179922_0.6384926104021624","host":"s3://npm-registry-packages"}},"2.0.0-beta.1":{"name":"ant-design-vue","version":"2.0.0-beta.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2fd9f27e163d44a5edf6b45eaa0b69fa636a38bd","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.1.tgz","fileCount":2558,"integrity":"sha512-RyIaKOtp19EJ4H49l6VT2SHIChaxoEvQeR3k+XlYNC6jyJSrqa2fT6FxhPGLdco91BArVkDzGUHkj+5NFFs+dA==","signatures":[{"sig":"MEYCIQD2MJirVNY/XAdZyu/zoh6/qnEli5Mzvgi5FYcFTgpV3gIhAIdyAY1vfCeEaqmmHPiphqnq59tmtfgW2GTsWWfbz4ZD","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":35441688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeiqFVCRA9TVsSAnZWagAA1dcP/iSYI+DgLrr4SBRncEb9\nmnwz5UOlbX9eI076vD7TOUxkwpZxHLgPvmLTr4aMdhxxaG17emhPZPati7Ph\nvPwMATqomPJ4ZA1E5VU7PyCLOB76cB/+a7c5YPg4ZwKnCmxmGR8xW0brHBIp\n7WOQ/upnbNpFhKV6btRm8bs9G78uZ3+75Ksfc0PzOgSSG8HNBF8s4MEHyXDB\nyQWbc2a6Itf34jl9gDpRAZ/a+U7P6zjYZqVC065KrmH6hZCT/gTV9A8jOxBy\n+VuDEGuTXY9MkANMxM2BBeV7HqydI67wI7cpkliT7HC85dJm/ko8TiydfHZ1\nFU9WhsTufc9bGpXccRk/nnnE9mHJXdeD2KlnhpN+30rc//UDlcuW0sBtmJX3\njWXtE+66DStH2/vG1FZiUhetqiNPTwdV2hmQc9V+XZPXPMDORdk1cSfQ7bkP\nhGY3nGQKsB3pk0R4ZkmBXngZk/x5ISIh3hL9+fWucHjhrDP9D0KmzyaVhiA1\nufkDh0eawC0OLti9hTv2y2QBLowSPI17sV88RDnU52Vax5jYvsmCw/s8fy2I\niv8xlaNoT7A6TIPrLU/jqhjUel7jM9J1P8mLD3/Ku2GnfFHOdenIkn72l0lC\nwAbMC9QX+IhGjy6PqSsJi3LL3e1eAwISx52lyKTEExoBcBpbsnJZcskaiuaa\n6ErC\r\n=Telq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"60c248d1cb97dc0f9c03170bda716ba5dcc51689","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^1.0.4","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^4.0.4","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^1.0.2","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.1_1586143572720_0.9077431759478154","host":"s3://npm-registry-packages"}},"1.5.2":{"name":"ant-design-vue","version":"1.5.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"0943f17d7908de16e633da7ab7133fb856eedd2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.2.tgz","fileCount":2564,"integrity":"sha512-DmlOl+ld4hSQdEG1c2wAV+v9/Bl2aG+wBEnd1GJYV0LeOXaSrBGiIkZrmUrTrUL92yBdFO+OF25aFNb0UFMZOA==","signatures":[{"sig":"MEUCIEwzIjlWvtpWOML71TO0DY3aquHKkQ68Lt1JYar887rTAiEA732MNW4/a340NjOqzkl7NZNeMK1Wahex2Dvl2Xb/ilk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38823448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJejzgUCRA9TVsSAnZWagAAP6sQAJVKkgRA6K8IsxvTzLCH\nIWye0rpaLUYdBZ1579p/Wz4J0OA6yUIEPirSx+ExzCya6LmwPXxjnNOztgRZ\nAIAsyz0zviMMMDUP5mKhQs2uwLV+Heitn77/BIOjyl0j23JI0IsZ+Gmgs9k6\nO68qov7iB8CrdCJ4AsEbXK0e19v8Bdh3O37c99brV8x/4GjVyXZ0MroxZgmi\nCP9w/rSDV3ECQhbTpTQMD4NNpLXF/9RQdxrYnCQZLJRczhP//PP+tBAdsNyb\nam4ZQzEadKwnYbb8mYlYcvE8dHeOaypgfN3dwjtYa8AIc26/1t3Hr4zYSZE8\nEfHkeJpa1VREeMLa7uFnOVN0EDdaWCoqPKO4/RGpu8/m89zFqj6MkzylRxtB\nRBro5RtavQmIKsgC2kjRUFfjGyRSBNqho5PoVnLmUmEHKGU9OLJhTi2S0DUI\nvV7HQbIKpu1bh1SJ50j1SA9+u3YSqhieRy1eh+dGHtQgYauRWAar5cEnU875\njcmzRtC9SSJcRbSa4Q+1irhvz7vOVzDcETHUJ6yzUyaOCW+aPmXVcGXpKI2v\nj34uISjUwCjNvEBj7Vgz98fZfDzR0pqJED11VOBDDjQdmP3B84eM9dwGcCRZ\n3fEKI4l53FK8mlQervCn1wI6oYIwN3qlakDdPC1EvFIGWtDdxr+RamcsNwpL\nfr3M\r\n=EEj5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"dd5df852ef7f27bb99cb82156785df31e0bd013a","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^1.0.2","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.2_1586444307953_0.31270463842315754","host":"s3://npm-registry-packages"}},"1.5.3":{"name":"ant-design-vue","version":"1.5.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"777a43a76dd233efc72abe9704103dbb2a95c558","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.3.tgz","fileCount":2564,"integrity":"sha512-wphTfLb5AzdUVSxgYr19BH9cPegZvaHBHayrIp8JVTYCnCpzu8R9Qzvdobflq7XkU1W/W8uep8uIElG5bdHa1Q==","signatures":[{"sig":"MEUCIDEeCaP1z1D9t4xcPIuJ5BeprNL8ySf6A51R291UkT4FAiEAnpx/oIezMhkDnfW8kwWIaHwhDHxLTAuGAqMYtbxJyi0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38826537,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJek+dbCRA9TVsSAnZWagAAYLwP/iI/NuttU+h4g5PEIC6x\n7ZSua2p/N5H0W9UpX1tY7rVu+Oqw99toXybhpeLMqSQ+cLxaa/TofJ3hi6rY\n4nSU2wF/hqR1oAmtNifTAtfle/e6tgqthgHxFo/Xm6awdkzuFMozxj8293cn\nV9meACob4n2ExSOk/SpNYO+2rDqqYdEc12BXy7lQDpytrA+g0E4W+PAxSs/C\nkMyQOlOHSEya35BA0LlUfJWGhmb6VihkFKKUuc9iYlyevVjeSA39K+K9ge99\n2B70JMyiU1zrSKxDl9n5kuaIi6EYWu7M94nLbHP4+G4sem6gKfo4Gh293Gp/\nV3O10O6YiwBu1fhUZgNXErwvBgT81W2mGNFykpuqq6Srf/SiSTP8X12ifPPa\nptShil1IRXVF4doO1NkjoF24Q3n4AAsYXKKoQpHOztdfddU4uN+g8kRI5Rxd\nLE2qBRQhKjQ8lyvWCR8mpvLDZraqMyzBh9B7ICMPeagcu6ClwLQkLVY5ET9W\nfX8Ie8sLxW56YtdmOIHsw9uNfTSQn0IyhNqoyEVhYyTT/MIMvd9vNcGkPQXB\n/gPQo9zOcXSK4z83SCIB9VnZsXL+esNCPfjjGtwlycwX+UAf/IhiK3bqfNdA\nzAD1KHLajzqUNSmUFnzD272pHio937vGc86WWZp5/cNY0azA9TqkMm7f3aqN\ngctk\r\n=8MMx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"39cf47a9d80b38f2ce3ed9e16b67f85d796f1b13","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^1.0.2","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.3_1586751322231_0.8881866203150042","host":"s3://npm-registry-packages"}},"1.5.4":{"name":"ant-design-vue","version":"1.5.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"428473de9f6b22df63cacdfe07d5096258f871a9","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.4.tgz","fileCount":2568,"integrity":"sha512-NTM+YD/pfr6J3kjnew4gN8EP5uLp4bV3edof5MLnJB3lCaFfJRCxBIkL05Zx+Hx13chzdnhMSEJrTPoZFiMNyw==","signatures":[{"sig":"MEQCICvQowzU29MwG0lHFwwHiqUmPQ4fWt22ie/YpPQte8v3AiB5WSL09xb4P0mMRkjSUmQWVD8xjzUxQsZiEEhfrOJMcg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38844629,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeqopBCRA9TVsSAnZWagAALj0QAI2WtMxL3m5Sa+riBBSo\nWUo6UHA9Kqw1e7gegCO8TGvxz5B90gl5SU2zoCYTBc2K+RJrnmu9n0sBTUP3\ndl5a0ux9rNrAgru4GQFejyCTpSrBWMHY5yuoQLkkCU7InG3/4agqlzO3gtQu\niVqSsos+jCsD+szuDfXBllzd2xE1ukGwQtChfGlhVUvnrYBtaCetDNPyvChZ\n4bdUycTLEmftkex5RWf4KJaxHZttHDZekVVCM9Cjoiix3txC1hny5R6La7z4\ndU5eLGAYA7/J9leIUC2CLNPwKp80qctfNnxADn8w+fB2HZHF+J+QnOjCJmKZ\nk61EijjA+NQK+JWV2Lcfizu4iXUck00epy07pdNR9oq1wFWsQKsyEV05LeA3\nJQZQM407eyXzdcSkFgdjUmH1Y0ChiKSoYce+PB0PZHY/PyJoe5nhW78mI3mA\njRzrbdwIJ2eSOTvss8ADcAOgcSXL4Ibl/foZLGQFa98xSeXcvaVNNrua9OQl\nFhX3CZC9eUNcThA2a0RWCB/iTb6xDlO3jkTyjDd4OC2JJUoh2+YBfrWKqSgQ\nBe53NznrmdSXx8TPYcU266md8fN0LknLdUA/Q64qVWxKZyv/3sLpyZiBYf5Z\nzOylIwmVAYfxtZPKkL8/Lx/LVCgRFjqLJ9rgJ1gpdAOIRSLqmVbFwdYRBVQV\nFBSu\r\n=NxPT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"eddabaf5986085de45bcd4bf4894abb621cc4de5","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^5.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^1.0.2","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.4_1588234816140_0.5442115572709749","host":"s3://npm-registry-packages"}},"1.5.5":{"name":"ant-design-vue","version":"1.5.5","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"11e5fabedfb6f51ccedb3f7b1650d5f388157eb3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.5.tgz","fileCount":2559,"integrity":"sha512-g/61l+KkNyUeMNoct3jU9N3Y8DW4BVtV7JutWjKt0/1/K8jekId2ix5c/JHCgnZH2MluOdf5MlAy2gaqQwEIwQ==","signatures":[{"sig":"MEQCICRT6IFY2VlSIpWbW5UlSv0PxGfZc61pUz8IDCyj0/0HAiA57XtoFnRH9GHjljFSao2Adb0gW403PD8nfXZjy5hIIQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":25964314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetS6nCRA9TVsSAnZWagAAymQP/1rB2kSOIJPOnjZseaAz\nZt0fCs3v+n5Loop4B4sNvOVTVmIdqXXAePEdJTc0FgR11JVwe0ScaC4auny9\naNbhlQR4qvof60HQW/W3VBivSzg9CjvLhtvPpBOs76OFkeFZdmkEp9P0phBt\naJig3cAfVsoxz2u5TV/tlJBmxYZeXd6PTWqp0089l8jNlmAt38cunmX0CZSm\nxYAbCwioK5yyJcz1drKjYUO7UoNImBhsCM0yi+Q80adizzOixGCgxoDy1nP5\nzNA/Tp3gGXYzi5acucbAig7cJoHtIdMfsAdUhT//4cCyApsIUgqbVs8EiR95\nXQS5nLNgqIkGXLusGtKBXVx2w+/XhLUuChVHUYogwOFi7SAHMqOzAf9iyFYa\nPeXSzvC7cINZpN1hmkw3oKG+NWvYv/d21EFuswkYnH6LnWdEdbrMyZkkQp/7\nmanQfjQqPn2oznPuBDa9NIgCCu6kuoX8DydmQUwNk+ILni/XI7K5bNmQt7SR\n6trR0h/QiwsKw0MUxLHEBVU2jwNXgMd7olVfaLzkmUaLchtGCrw1qtsWRG+Z\nfM0wc1NMipapDIzeYlFNkqzD6VlCnRsFdo2Ie46sf3lPn16IINnCyibZZbWE\nEt3ULYkMVd9pUSS7trul0TFZhq1Ntu4hEllwZfJDGwA3oGsLNPcV8rRrMJ7L\nmdK2\r\n=Blp1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"2c92cfa3ed3e9db8db121580feb0b378ff4ce26a","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^1.0.2","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.5_1588932263048_0.703279239972969","host":"s3://npm-registry-packages"}},"1.5.6":{"name":"ant-design-vue","version":"1.5.6","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.5.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9aa64fd24b3c8845effb172dc8952aca51158d11","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.5.6.tgz","fileCount":2568,"integrity":"sha512-w+U2SnnOEhO+I/nIOEjFxI0IQ6tc0YKopvtkWVOKQ1y1Gjt/0H+DQxnhMZBcPKYUac3C0NUkPo60YTbkgQgnCA==","signatures":[{"sig":"MEUCIGlo/JkdehvlG/nLHwbBJ/6DMHURrt/ScQEE1gxiQ5pHAiEArAoMWyDEfeq0dae0Wnw6+Vuwy5J7D4JyypGvc2D9axg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38876427,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJetg/nCRA9TVsSAnZWagAAEFoQAIPpJoDO3n/uOxNKn87T\n+VzjENXJFjnY6exAGcSOuCNtfBuN8f0C8ZYVOWrshaOjcTXA/pU2GD4MdI65\nAmaC8OVfI/F+KxYLWQ3HqbsrUTp+P9sOo/GMCizvl06IErAOm08oSnM8She3\n8lcH0JVs2i6dZa01/nV1EZnrlaeuDS5iEC3ZxbSbcMsN4bphycgG7LpYbiWv\ntiMLte1dFBCnCRoiYtDvUDwWs4O9mA5JDD8F5KcbWtSv0TRA96JCjds8nVAP\nXNT1jmJM6B7gMtf22IV9xO7znGqw+VbCQkarikWYPWsTwku0Euh91y8Y9Tu/\n37DXV4oaFfLJRI76+qB3OTAS4aOJdWY4E20/s121eDceEQFlySRvHlz+1D0S\nLbtQ2RlQ8EW63bHF43QBcms5lWQc7mjEINKkSRy8A89z0FqUoWGtkoj9lGRq\nyLb3JyPXSKrpiJwvlRYAUNIkWxMHsExqjQQNjQWxSAn3okZvutIVOKZ4sblb\nTyVX24tTxMO1Hw+Z/xYSHUf4sUr8c8vZai+zrh6oIBYgKxWdjhvqUeFp4YAO\nzUK64P2XAtt/+tO5HLjHz21tfo4VHx6zz2Txnd+qeybUgjNKM0vemk8Nntok\nF8GEz9XTKVQdGwBPIRA6Qs6YZC44mrcfmMXkgNijbs0xTHid39XaN2W9jVxE\nEapG\r\n=QuYD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"90bfd4fc6a27c0820732620409b4a2d63d2209bc","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^1.0.2","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.5.6_1588989926966_0.3183130247672752","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"ant-design-vue","version":"1.6.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.6.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"673e09e3ac56feb14154a711e52357fb7518cc32","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.6.0.tgz","fileCount":2578,"integrity":"sha512-Mbm2woWBGUWdKEj9VHVI025BX5dMquL+9WCFyMjOBP2lAt0/kn0yA5ouuTk9NxgbHCo//Yuny7p6h3KpCHSEMw==","signatures":[{"sig":"MEQCIEHJK1+SwF3TiGLarJihTIVRO49cHxt1mYcXW17BqIWrAiAnJ/vntZwHZ8kC9nJUqunNj8cUpkO8y7Gmw7BoEO2LFg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38985429,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJevqT4CRA9TVsSAnZWagAA0x0P/2hCZbF6Ty9fErhXsWuX\n3YCC4x+Dhd4mY2mqaq1qEaWh5yCmdpBajqGe56lbEMyN9xISwGgY+27DocHu\nvZwruKTCWApl79w/8NXeRr6kBGjlr5ijRvtTdwdZQ19SWSfv2qvR45Akb0CZ\nYcU4lBVHKT6I3cfguHSn4GXpWLA7kjnj3EicsOV/ZmN+u1LgtXWBX26jQqyY\nELPNUXvrwyN2QFQlNsjA1lA75O5oPH40F5869nSwteWDSolOaci/G1UN+IFm\n8JRfmG2BFcpVuKyJ5Y6hn/i5KdX/pQdmNK8a0uGaCEk3gq9LMZJ9pRTsRrtu\nOk/WySrIzpDm5J0+IxZGAfqvgausX07cAe4UlTkpcixeGq+ruOZWFsa6V3/f\nCveoebfmgVz4hNVwtEdlPGChMWlAktIJAUeMZ4eQbKYZ6H0tXFpWRSR20hgI\nteyDMPeNfZVhL1PFQaO5Fd8I+yU+TId9TRdTuKv1ZqKQIGUdv5IgxEYqaJtU\nvhNXcAjKUvww/9u2szZKi6Rx35prtwwAsx0AXPT9XLXlbelnLyt3IDFimQ4R\naMNCczOu6JyhED0E35Cj+bhI3zZawDZH6duPZLcjFuMlgbzOopQzRmTFuTxx\n67aUpEKITTNFP6q97lYodTXn9pfj8NeZvmcwFPgctCMqgNnn+bxAu8SyAmDy\n2hZi\r\n=BpQn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"d499fe031e399f2912f717a4f6927835ce5adeaf","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.6","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"13.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.6.0_1589552375102_0.6171677461355003","host":"s3://npm-registry-packages"}},"1.6.1":{"name":"ant-design-vue","version":"1.6.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.6.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"759de873b9017c92bb31937777ed8f65bd4f559c","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.6.1.tgz","fileCount":2578,"integrity":"sha512-t/xbe8PirbwAZeb/bYC9ehYY5JBcuuVqQL+wPvguZL5+tBZRUlwujTwztep6VnBMzyeXWKSRy7BT5zNLmoFCXg==","signatures":[{"sig":"MEUCIQCZiW1zso/lDibp8elBjozSO8bXkmpl4NTlv8hor3mf+QIgaYHTgP5gPQDgf57oAaYUIhsNggPzeFCJELbF5mN+kww=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39031140,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJey2gnCRA9TVsSAnZWagAAj3gP/0sOFURQug1jigcFxZ1L\nO8xD3B+8i7KvFm0ueZXdDb3C9vMA9942RDiBe8sOO2xxZAnLU/w4eHV7Tswu\nF5KDLhnMxmUAvZRBxfTjA3DN1MHODxuMuTLvwlDy7+YLpYwI+U7SiSgZ8DXU\nadW4JZEuro+VNwvOmIjaroeSz78sZrJY0wT9LVl6CzQ7lme2nUs5cQymN+ZS\nZD7dzfQryieTkLXICCbM9ujx7jVs0s+FcLPFuEgVyGPYBXCCuLiqiEwBL5X5\n/CmoUHBSi9uP+63qj/ZIIe9/PhTE/D8OhOIIXgpDcR0FtsYhkFnqBsvVt9Uk\nNbLUSwZ7zw3KfBXr1fTi3UhYGAF9yDIdOOSOb4Q33bVPFfP8kaPqo8IZwYK8\nxslUmoo69le02mYWg1xlBM+Qrrt7ImFaH0VNStsOXj3YDv7KF4kwoM1iAfUc\ntv1b6sxykvgWObnfQ2AfEtVLV8bsAcgNgbFt9vTGJC1E9GVbLqJlFSWbWGdu\nfg9iLyFHLfv8s/zcP8xJ8hkwxXbDU+NLSxxteqi9fmwP9+ot09JTJ+1urC4D\nai9JbYrMphUvz5XRfo1P1oJnbbTvaH32J7J5ptZxPwwZO8OqqNOWaA4NfaQt\nvuTXuV0W7V0b3eELMD2Nkq7qOGm1/ot5riK6LcLf/nKM6p3L1qdOTGweks96\nGcN5\r\n=fh7O\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"970a72fca80f046a40dcb078c4eb9f385464b0ec","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.6.1_1590388774138_0.5532238190104892","host":"s3://npm-registry-packages"}},"1.6.2":{"name":"ant-design-vue","version":"1.6.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.6.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"983634caac9cdaca0b3a095b540105b4f76da29f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.6.2.tgz","fileCount":2578,"integrity":"sha512-VEwWomHxY+0rt0RKRd4FqrW+udCr7cpFt0GwVOCJPwIdulkZkB3GjK64GslEl9XtBp/rKzcorfAx4t1ues6Izg==","signatures":[{"sig":"MEUCIQDjirSwUB2iqfSoOO1gxTGFbbzmsw1Pqn7YDoUKCCG3SgIgJxiWg7Kc84rwCGYprKnfTj7THNtt7Ea8XXWqndvry5w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39031605,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1exoCRA9TVsSAnZWagAAHeUQAJeAilicpXT86Z767Pez\nb1X2DPd3I9JIiMwXtwlEeUYFI8RBQCJa7RfiG7HI5Mz5hDOWSSZQCbXGoUWQ\nCxOp0XNzPHIhr6fXjhC72mr2EqKiMBTPBzr7yrljdHY0NPWiIairtypKjNIr\n2qM5LKNdD6Wq3UdfPQ05IcAg3yfD/Bp816T95ASIuwRa2lDKniBfvWApmKmX\nFX0b+FKjcEkknx2EEFYelMFzyfsCbcKtsZga302Cyspg80qIcpPh5ImJOotm\n/DAqB98zs98F4XnzA4g6FO3uwSnXj4h5svVYrTc6nKhtOXmPNoJDOJekHp1X\nYYhFDo2IWP4afoqvpRC7EMA1JzPXl+ruWH6FMajNzcbh/Or72LMUwO/T1HWi\n2gioMh6NidN/ZsPcF6wg5EnVaVFMc8Yc7OjqNue1y6dBto3C3kgR6ZELCzCo\nCYrJkLhoPhaw+Q+FMkUtmGLliP/B0/xnCLmBvXkCrxYtfnhCAJsc3773D3aY\nRsILIDAqU1q8no2pH6mdhxewPpQAIUaIx4rtpae83iD5DwO1clb+xILIcqGU\n4bWIKzDd73i98GTSFdbcTc8+LJ8pE+Ab2+XFYu4Rrgwh5bT88lLDB7pHrwd+\n53kmHWcg/u4eNhCAUdJgHt2V0id+vGGMG0MHY6HnKQaI+mjbCFR+h5gLzLw2\nyVGf\r\n=DMRe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"5108f67c11edbc3ae3e26091d7b9eaabf82d0516","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^2.3.1","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.6.2_1591077991672_0.0813466089464634","host":"s3://npm-registry-packages"}},"1.6.3":{"name":"ant-design-vue","version":"1.6.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.6.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"48a16dfc2acd73cbd748a59a19bb6cedb45bfbea","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.6.3.tgz","fileCount":2597,"integrity":"sha512-Zt0z0SXzHCgow0chv4OA8lONxVOzXf7iLmZxdVHlsS3IaPn5n8QNPCzBUh3z0IXBdaDPiX9tjELQCXf9vdXdlw==","signatures":[{"sig":"MEQCIHiBU83QxH2AR/d66do/z+knmdvnbmzW3SnZcqGBdgpVAiB0phdPrGlP0PDwyG+oldU2sjRxebBnmsFjlYt4HQOeOA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39127351,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfAWjpCRA9TVsSAnZWagAA8/8P/RODftVqJLNp3v8cIO0b\nWw7ubd/P2wko0A9GKpxlYZQsDc7BrysooWa67STTTa8KFe/Y4uU16HVZcAM3\nLh2x9SozbfzDpgbbvTdpWYJ71kgJcPf7r7Vr66SvvQFm4vI8dDu2CLcIe9pv\nDKaxq9H7MWGQZJb5jJXUfqREuiKE2Pb5Nd3gm1Y/6FMyyuVi39L5IX+GBAOG\nNRb8VUlJ1FHoOqeM6Wv2j+I69UzCryhmpKNyT7iUBKl9PdAghl4bOCy+V95x\ncmofPtPBr0gd+2+IwQ/jWvLJRNFPd1gAyw3ePQV4Dk0EAPquEdW+lhFlmtDp\n+RQi1s5vhgRG3TaP9J+NHMpFAjEZG3H0BhUueOKF7dZWIL/56y6gQgXj1NUW\nCd6056T+C3U8GRLildVXyo51X99Ld2xZMO48/SIZIhTcCoNsis7eL6l2ad/V\nLa2L1h23869NQfy+3U1htOAF4YWcbyYsuEYwq3t4VG1Wr/yZONGJvvSl4vXR\nOHLFb63N3r6e4pwNlSqZSctLFUoE2Z9uIcEyAoLKIFhdJCeVqGMowttdSP+J\nvzuN4irPN7eNhSF5cIIt/EZpkNJ7JEaLqodSrymoDVnFVAXhx6IaqA37eZ9D\nsQfty6PxumuPrMbr/wwSKT5j0u7iT7r4JsQ3wbTmdDLvahXfeV0ovD//EXhn\nR31P\r\n=btOc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"5ade9604d4150a860ab8740532330af8cf503d64","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^2.4.8","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.6.3_1593927912669_0.21654522350341865","host":"s3://npm-registry-packages"}},"1.6.4":{"name":"ant-design-vue","version":"1.6.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.6.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"daba1ce6b357b6688dfe44a825864953a5c6c624","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.6.4.tgz","fileCount":2597,"integrity":"sha512-BQ37Vcw6itMIsa+UFr+ad4I3Tx6ZYAPnComvWXQwWqDuVIW4A0M5X+nY/pTTIaH9cPSxMse8KUSUu0ibuYj3Ag==","signatures":[{"sig":"MEUCIQChrx9nQuoscY/ydr6t4tDDmZSqAZrNATrXyL11hRh7sQIgJMpHFK/yrcWymDdkS5OlY3I6Nx/7w7cuO71Wd7sfQ70=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39146674,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFo2PCRA9TVsSAnZWagAAW6kP/iIi5WXipURyqc85eYs5\nu39zUkqHgqKFlqoVFso7YtNSQByvn93r9GdTqj0UZidHFajEX600Gt8xcyyZ\ns/Ud6RdxAna0cpGJcF6+S9V8WWTeF37ccvJhJ1KzlwWMFcjDcKCIV+rsmUVo\n8KiKe56Mq1jdzqNK3J+ibM993clEJ9KGG9+u3OwJi6A4S9qnDzj6TEAXg0I8\nkP15Z/8zstuG2SYPZTb02sHUHl5/gJUAS6Peps6WfksrGlQTBJXo8n3AXYm8\nCE8QBhb9Q33JuaIfRJFGwUB9c+YrcezmsbR/f9xbEI5D6dZ02a+WCjyVkoTA\n9kbOH9kxC0NPlRe/qMJrMCMHbmwTyyBjdvNT8U7U7BPuKa5yXBGI/rp4fRcO\nNPdjLKspOgd2ODbfKthifORTBDeXvsKUvExKBGNYyxtt1exQB73tcupqWtmF\nna24+23FEFMp2lHlV+1wv1zlUGwQJ0djwHL4agnvkPw+yV0VwznmcMJmjfvo\nuoV4QKpVFyKsDm8JdG7dy9G09ZkxGx3f+EjUD9yU/m1LshxwwpaTC2G7sySj\n8yGZnlJtDJSxPvj1+UqBzxn+Ju01Tj7NmfvoccpBm+Ic9wWruPAYRO4qIFsQ\nsdW+2BS9MHZFj0iH6AKrizUz0GsUe2b/lvKrFp41inWCmJbBjj5/sZZcBgHo\nTYAL\r\n=1c5b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"471a81beda0e476511ca50f74a51e275dadc1266","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.6.4_1595313550860_0.27998636264654553","host":"s3://npm-registry-packages"}},"2.0.0-beta.2":{"name":"ant-design-vue","version":"2.0.0-beta.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"56e3c2bff3b506e78b757a33fb9d1db628ac39bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.2.tgz","fileCount":3951,"integrity":"sha512-CNDaVBstv0O0Jj3oClU+9EdnLgEBAwxvyJFkqEGAE600xm4B+hbch30W0GYHwbQRCdGBeAngXH8u2RJt0c850w==","signatures":[{"sig":"MEUCIHGccahsefsSzXSEvE6C0giyR9KMIQqmSmSxEloxb0kQAiEArFvp2sb41FUGlbs6Cvsgs25ACppL/1UwE7Dwv5K3mdw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43714604,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNqeLCRA9TVsSAnZWagAAuM8P/0N4Sigx7B/vyj1EZw/G\n7/r4WQX5u4Pl70fWV4SP/7owVk5/tADB/oBNm5g6jlMq5sNkuxel5ZrydPrx\n/DfMpbEWRFoxGkI01Meta0b2m+8WQpaqQBXhBxXy4UyPk3pmXbCYYRqEwVi4\nSyhYHs7NfVn0NjCr7gjbm4hx6XLvDciKI7cKFnj/IPBhlE4mwuuoPHXLpZ8A\n5XOK0zgZ1agrmQkVKVkfeMTgfKOmudCJDZChaWgbrTt82IAsLRj9QHvhZe0b\naSGCptJveKRqR3CPKUZWQ9tnQBdzusM6yNMPHnjoAcPIIaFy119Cy2CL4tUv\nONc1/KIC2BCVn3enWn4iv3Hqu8kLJkKpqec4QToKQtF2otRwSyoEO5/uDBsz\ndrKcORhb+xkkiRuxz6lYoDPbOkXRb61Vz89+aAje1t2JwY7BYBU8xZVbdXP9\nnhXQ4Jruw/2KV5UqjyaOJg0EvHRN+AgAjsHIYIEUqlunqJq1xf0LDhbbYbAK\n/zOeymzkQJQh6FrpD2plp7ukaDJ51ePGhJnvBDSEVtbq8JszyDB8WrHVfG0B\nyT8xb5lRiOB9kx18hgD9R13tOBVFitWep4rdYHyBXVkL78t24Frd4gXKNEkF\n/egpL7HDSwPNkb5BnxuyT7m0GqxCn8Jusj5ZqGVF3TFB8sTEyYFhBoWMyBkp\n1aec\r\n=SeFR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"2891168a0faac4ffc947a0ff94eaac71036553af","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0-rc.5","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"^16.0.0-beta.4","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0-rc.5","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.9.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@ant-design-vue/babel-plugin-jsx":"^1.0.0-rc.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.2_1597417355293_0.6426815519388205","host":"s3://npm-registry-packages"}},"2.0.0-beta.3":{"name":"ant-design-vue","version":"2.0.0-beta.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e99ebab39e4e6a3e152fc8a3bd748118186cbaad","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.3.tgz","fileCount":3952,"integrity":"sha512-Buqk+h7hHveNss9aqZllx6KSnL1lZLlhOKQCBtJhkmLUQdNoq22ooJHAIX4SlDW73kjuIrqS6GwfhEpyzzSCuQ==","signatures":[{"sig":"MEYCIQDCHP6yy7RmPtMHbHRBMV8+LUJP0l6eNaJzvaoyN5KEfQIhAJiBvFg2OMJoZLvwvmaS4Nchgyv9HA2fYHXMIJEtQa8v","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":44044699,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRK/ECRA9TVsSAnZWagAAwkkP/jdQND+I+n5c+K2KrYJr\nrdj4+BwJZ6TI+vPMjtU0eNkZhWcShHB3e2hXSCB8NYNHS4raKuwgVNVIYRNI\nd8x31GvlBVFv1flaHzFA7YQic5CAhbBhUvOrZuyjuRxYObBOZ372vObN/+S+\n0lfCcg10TcxhNPceqbHK/Jr8sl7rhlEA+45Z9g3ezQIQtIg/lSaRMJ438VHS\no7ORBOzRgaJtc+rTRFPF3SWKtZ8/hISe8gA6vdi3E0b0Gpi3R1c7M28cklEH\n+WHL5OO01Op4p01m0KwCvq+SfaA89h5sQnlFHyD2OI1IshkjkoR9x0JS84+U\nNYOwxsUFdw15chIS73Fswin3Q0+34MQFsp0sZxTWM2gkxCly9kltoQyHbens\nCt8Ov7G3xoNMkXPzkluCHp3LDouSWof/GSo1YlgFNi4tCra+zVbZs4GG1L6n\nY+SuWs8fP+uBIMgh+Cq5BW+9+FCIPl84vPnTzsxUoYHcJfKEZAe8Mj0Ctb2H\nXbIL/dzSRXq+vhJmmY73R1uWyWyEsscJWWlFriF2dsov8Gnb+Sx7US4Ve7Sd\nP1EK95EoIU289obRNN710hnNd07KYHkj5hvBjzyYWIOEJHFPSPaslmU6okmA\ng5Rpi7rpgyxlD9G8MD5UEdFyXF0LK7ky0+5G+tlTiXYHQkRu8IPpIbiv4Sfm\nwJK+\r\n=keg5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"8ac75e4a739013d76025eac6e630bf2d6faf8a1f","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.4","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0-rc.5","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"^16.0.0-beta.4","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0-rc.5","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@ant-design-vue/babel-plugin-jsx":"^1.0.0-rc.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.3_1598336964003_0.38437419592279287","host":"s3://npm-registry-packages"}},"1.6.5":{"name":"ant-design-vue","version":"1.6.5","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.6.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"82f69846d921c220d04bb9ef9a6c40605e146e6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.6.5.tgz","fileCount":2607,"integrity":"sha512-FzLrK+JuJUq+g4vd+UjFFi13ZdSsb11EZFapisFXilJxpc1LxqyunZu5AP4nr9vFLs3J4UX2A6q+Rp/Fi6JrLg==","signatures":[{"sig":"MEQCIBom1hFTGDFiZQVc5453R4OMjr/eepgPHnLAmm4wjoioAiAPw9XgwOkiui9uqRBIPnnw/W5DCVzrqoDf7ci8XSzN5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39154846,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfRNMHCRA9TVsSAnZWagAAbdkQAKP5P73zVeBQ5ep82eJ+\nbAwf9GxpZ7Z6MJIkD6A1EIKx2icZ8GW/ayhvtpyxQq3pzfcUcP77uKuQy7w0\nQWuoH93wBeSj/ctWmJIUrxKdPzgi/xz1T18yU+SgRxpB01+MY2//K2Ya0kWs\nXkuwC6hzV0olkGo/lF4dbLbiD1YINuWjWEWEf54Geuy1El3cDUapVNB9bWEB\ncyq8q9nFfoNDV/r7UuUxgCOuq5/p2xxrlTNXrWwNpl35c0Q9GDUDdV9iIPN/\nGWR2vkPwuydCnl5ViSs3ggoyBs23J8Z91Nc9H5FtAGbswi5DEwS6drrqHgfe\nMvPBdsIbyCHFD0oCbf5KpFm4yHnuQEqXeWXekWnUgBe/6/CYoi8Q+UkwvY7H\niyc+Xc+og8sbc+b1tp/77m1D26L7OJqBASjO3rf9pFoUP784Xp/z3uPefrQO\nNxHe1hghSFyQEfWyXWlzU6EkU9jD31TuBPcGV0O3BLM061d07BdjsAZh1dxm\nrpPCDadfG37u0qZ/An8J01RsSA4D8r3wAY+ayaWdES4vBaNUl6bGLpN2aHV2\nUfEKeKRxIFATG8UE8VQ5a1adSpzS+oipxh1IDrON4KziQc+jpoM4VPzga60j\n64n90sIeAzovF9yf/vsuCq4b/7dmPJW6t55DG15JEApKo/3l8GZ8jMbc9iix\nnfEy\r\n=hZzJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"b690b38b7e4432b27d7fd43250725658afaa0554","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.9.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.6.5_1598345990751_0.31199747149547674","host":"s3://npm-registry-packages"}},"2.0.0-beta.4":{"name":"ant-design-vue","version":"2.0.0-beta.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"022d3cdd2a8f7284d1588617de64f0414e176e33","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.4.tgz","fileCount":3940,"integrity":"sha512-95pb0Bb/M8UDcsh3wAQqz7BPmPOaRN/RXZRek96dsd3HNWOf9a725SwwH2E68cGPOkL/3dJKw7kb2Z9FSk91ZQ==","signatures":[{"sig":"MEUCIQDlcW8ZK5TfMJnDkE3Ze6jU85eJDV0FRxI7HewHAXZr2wIgaJbblwgCjgj2lplwDI1oDuVhxTLQ81rw+6VnGL9CYHc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43688866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTKWeCRA9TVsSAnZWagAALTMP/iWxmTQyu4iSxyfMgmOU\nkYevrtA6x7j0wPTBdu7TNvuQXKLd3/eunxGOqgT2stSyZCfJMgSkeIfBuhao\nRt5BmyTTfiEBUXA7hpeVRZMwX12XRdrG3/J6AJUr9VyDiYBq5ouFqnrlPdai\n59YGoQZFyCWYxZm9HDpkfu2JwvB3VoQamMr2ML6fBVceiafMhM4kL8dkh7ms\nYL8ibPFldDjWFllOnmPGXdMYME6GgYIZTESO//ese9iImQuV20P0V70uaaT+\n8xBb5yA6vEOuB+7Un/gXMKGZF1RFYwD0duHan1z8LWgRI1onFiKpnPEvM7/G\n4+5+Om4P//RwdW0+yRRCiea7ybLgYhfkZrM3dUhXTV6fWyQ1gZ3bzneKlo0w\nmVO76FVQpxrpde7HXTn8C1VyAk2mNekEDhL6/6iYD5RRfrBj7cBxTqOUVllx\nUbSwivrEk68dO+verFjOFs3t0y6EMYQGTmsSqKfp+je2490Q5QzJsSPbnWak\n8IqFieDevqzBKAWX0bW6WjraXnJjKUTVTu/8sJvqncrqGzaMndFYG8Wv72wz\nzqA2yCscehGE86Z+MhIaP/LdQLW6mDxpVt6jTzrXIQhgs5RMRNp26NxvYwuN\n3Dw5t9ivjCYgyWDP2yB2s5pLPqUjc/ulIrv/GJt+g4sijGFwh3z6JuLv797v\nrfWm\r\n=1L96\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"c36a984b1b0dcd9cd3e9ca06ba2f3d2f75f31ebd","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.8","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^2.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.4","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0-rc.5","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"^16.0.0-beta.4","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0-rc.5","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@ant-design-vue/babel-plugin-jsx":"^1.0.0-rc.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.4_1598858653966_0.6137477763339685","host":"s3://npm-registry-packages"}},"2.0.0-beta.5":{"name":"ant-design-vue","version":"2.0.0-beta.5","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9a79a288aad86aedce2d93113d646b126f61843b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.5.tgz","fileCount":3938,"integrity":"sha512-+WIPjYJv7e/bvxBlpuH+Kid0tkd9xp8p7OHdYytiAA0Rah5VbLFIHVrEqcDUBcZ5b7YmDHaOAV+I8N0+l5dg4Q==","signatures":[{"sig":"MEUCIDv4Qa6tQwV7QSI0WymIODFJu6QWkHOv5WB2YNs3zePfAiEA5MhvrAULcPhL0vY+LkEcpdzYwVRynWoicszRLrnpNJ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43710618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTQ3tCRA9TVsSAnZWagAAROYP/0baEHGwVQsD/snWip0q\n7GYhqTB5Lwe68/Q+ZL3fenqYczN/lT0dixiW3vfu8dztlpF/JpVJawRHb9/S\n+Z89ZUeqJTcu1byzv0x6F2T2v2oESuDucLp7l3yJMNSmbV6+Ab1QTzoRbfW/\naL8bs592R1BOzD2W25dvf5WZuVCdB2lRtMgJWSIXR19gXoMH+ImWeTy7QDBt\ngFJsL0HZ4KGfBiYdAHULYKNxhgljDBPSW8wJa5ZLxyyHA/B0j0f7Zrj5+T5O\nAEfcXkSAKzgjIqanjDtY7YSSADarpGUVGzc9ULqScl0kql80/fqJwk7t/m8g\ne0pA3fXVmdU7tMDmCyqRDkpbcxlOsYcmo5yopBBGevCdNHfUcr5t7B4oAb2q\no80sYDOCljmlBz8Dy+i2x5Kk5BorLKQT5pyDMNIubMh3HmdscFqSlKHnQDgP\nxiETHY4n9jSWqHA1DbprMaOnnaLsdJPaOQApe/cCJ5Rv5uIVvuN3Y+oDGKON\n25g+GRoVJkOGlgEfDx5VAKMZHss37XBgaytmt1+hE05qQ+OW4BpsbEoeGjpL\niG2p2KMeLHUqiIBMI3FMwHj87DFW04TaQeb/Yez4H2GA7oxF2JeV+5tMfdtU\nmYALAgmzXd9EjQY0ZLKretJEnDsKeWGFmMdUl5gfIfnMd9OtH83vP8UAbUzt\nBhz1\r\n=+m//\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"8ddeab148bc5d9af382e474fd1a125fffd7e0bfd","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0-rc.5","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"^16.0.0-beta.4","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0-rc.5","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@ant-design-vue/babel-plugin-jsx":"^1.0.0-rc.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.5_1598885356214_0.9043952047912387","host":"s3://npm-registry-packages"}},"2.0.0-beta.6":{"name":"ant-design-vue","version":"2.0.0-beta.6","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"62a369e3a431cc9dd5c518fd8521010df905bd26","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.6.tgz","fileCount":3940,"integrity":"sha512-Q4zU/CZSoIBY8w7Gw2brYOzMxpxxkIBxsdd6a6v1pMU8kfpjloHeBFzhwTqR4ZccCINxqyzgHz0rfcjQEAmb8w==","signatures":[{"sig":"MEYCIQDZ6mxB2eyw6HJ5Y2b4VF3NZK2+pLoMQCjPAQ3L6M5pSAIhAIf9o+vbyvlfM/hcc53xJr6obsrsyJij8ktVEO/Erm47","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43703299,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTycbCRA9TVsSAnZWagAAZpwP/iElrV9uxyBkpFxyVAzM\nSI42FIpVJC9ddHPunb1kObKv4pNQPLuX0ldV7n1XOkpZ2Y3pZ7zBCx+trGsm\nSgdRGiL7HlpKXeo//8PgUaXi+F7XVQ0rSAndSzft+ZwbBg7xRiJ8Zocj56gT\nDEhXeix/rki+B3U/92ZYjhmN8f87r+L40OEflkO5kE96JQprR4R4ZAq6j64y\nSFfT0fc+gpkwLX/Us9n+xvXDbxlws5PSVXrrtMA0tj6b1WU+Vo4bkhfXh9yI\ngofAX3bwP/ukX+dRC3C5ViK5eCslSKzXx6nV40pN0w8BS/Eqtn103mdFQsf3\n1ZjSHK+zwhaGizBGk7TP36qibiMxa0GpEeIV8bHM55gC57/++nv+4fQ39bXl\nuoVx7iTniXEGKkoRTAXxEnVQ8oSs5bpdVSmi6KAzqBCDwhklzAJh4atgzrgn\nlQ5mnVBE+RaU/u3kISThsPdSBsmyc+Sq/N1y3z9MpaFskyx91711RUDSyFn7\nmYl9yAi+XKVDLh7XIxZd0QyAWu60tUJbqaGzTHtHC8jFuZyB+FtZ9XthQTM3\n+4yEqnxeu7CIqizgv3ZFXV7yH6uHkaKZtVuTRQvXEZcVDvkGHfjE5W0KLYK5\nFCIkQgZm8G3loxe/djgpfmOM1eToWIYoXD9fWy3+/rwCKBMGBT9LS/vlJ0Gm\nOtiN\r\n=iT5+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"58b66daa1e6fd385bd31035ae0b0b0efabc7f7a1","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.8","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0-rc.5","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"^16.0.0-beta.4","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0-rc.5","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@ant-design-vue/babel-plugin-jsx":"^1.0.0-rc.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.6_1599022874448_0.11738556825981505","host":"s3://npm-registry-packages"}},"2.0.0-beta.7":{"name":"ant-design-vue","version":"2.0.0-beta.7","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"f8c05b81a3cfc391bfa2ca443f4c6f000ab8c6fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.7.tgz","fileCount":3941,"integrity":"sha512-UE4KvfNflc9kt7AR8htXk48VlpWui84WcMTSOa2Ybm5XPX8suNk316J+yS1X/a9YFymsLDsjjWwzdNskGzbsaQ==","signatures":[{"sig":"MEQCIGW8y/1vOLgQmSjVFI83DJCDKMPqevzc9Dm3PVt1H+N0AiAZOSC95uOXZRD1FambwOSrumqpdEoXH/t06EzBe4tdrg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43548008,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVurwCRA9TVsSAnZWagAA6VcP/0ZmcfsSGeidneSnBB/c\nYb72cOUsKA/dDtTwawMKuV/LXLugrSH/w+olIsJXEqA4S+hJ0UxzKi77XWtM\noY99MTHPXVadpAGSz65gHztfhoLqIeCIB2P4N32AMoS8XQBiEe8NnjNX/3Kg\nBPOtImYmFri9n6xz5N2aKGUe2QYB2eQeSgB6GMB+LEhYxrgbz0R9CWeHUv8K\n6n9Mbnsu0D94o92c0CLclTGr0jfoObv/XnfipQtF4LOZ+IqlWJOzuzG8qEMf\n4YH9EZwEvasGcSCJTcRqxhVT0c4f0o9abN15Kf/EfX103reBcRZ3n2GLMYvT\n9nYA37SB/z4eLpBPionTrnWbhlvLWZz+m1lZsi4iH9hxDid+0AqkL0FqiAIg\nnggsawEqf3I57FHAXDW/X/Jk1BTdMI9Ohvt3+MIxsKuOlkdwNCXTQwnsYSZF\nS3inPwSh/BwPilJtsc+aySozZdVW+zMearypd4EvpyqZDE4qf9A918BQJlJM\nGMtcpGN8qTHkIEy1DAdivd25sNpfhK/DiKuGF4V6ZMtQJFsngfRxZoNF8XY3\nF4Z2UpVSX3sm27C1TieYkXzhu46Ea0srB/nSVmd020/iliTCCC1DKz1ODqbM\n5SM/7Gm4yCyGL6NQAVGH+xc2HgIrjfCvMsKJmIzTd9eDKhdzVu8Y+yuHZGd9\nn7oc\r\n=Q09i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"b25eb6742a361e3c442c1bcfcf51be69e8603939","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.8","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0-rc.5","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"^16.0.0-beta.4","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0-rc.5","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.2","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.7_1599531759676_0.8592174931981311","host":"s3://npm-registry-packages"}},"2.0.0-beta.8":{"name":"ant-design-vue","version":"2.0.0-beta.8","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"45724e6191df37c5746e4962e94df1ee0dfd7883","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.8.tgz","fileCount":3941,"integrity":"sha512-UOd4YjCcfWDNfklSURdDwM2Of5v8Xu4ZjEqSVIhcaWfd/fcRAm+UrCTpjd0dWPEBnB1iNcASNnI4vjOrTTR8Ig==","signatures":[{"sig":"MEUCIGF3S75CsQYmDtvxkb/TPEXb/Mi48LAxOQLtJFGi8+o9AiEAk15a27nikS3hc6K96vRfw+7jLxtANlAGeSGrqK6woYI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43548315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVxkkCRA9TVsSAnZWagAAUGsP/RSc4lNdxu5XqVZQ7fYr\n9VKhxOmbQUey+9D7EAuRAd3DbPkHX6eFXRu1ukXjcJdNefpjmbf6b5sQy650\nHESWj07r8XlGTdV2RiLNlUkYjZY9Q3ww0d5kN5HJXkTkP4OJHEXw5aAaW5lU\n91BbF5JGpB+EsF8/oHlZbIiRb/TvxsrlKN5jgwN2okS+V199R9lfR5QDIt66\nx1VwNQL8oKLVBoHaBM1HSYl2vLzD1FFUrhDyvq4GcJTFREEZRGL4hjX5jpQY\nyFbvtLnrpBL/OpqBlkRseKarnZU2u/STmNxfBp3AUCvEaantreiwZMLIrCl1\nj6SFzWRDZdJjBQQ8hw5cXSycpRqu3T1ectFOdJxemzA1IbR45jOkHbCqeW4a\n0vB0avv8jeS57CFksr4J5viP87gjabB4LDfTdS2zPSt63CYBnttgKs42RtAo\n3WNI9+aoKTY8X3qfk+qKF0+TCMR9Kkc5XLbWba5GVlBCpeQNgN7Jck1eSAwO\nNvMUoDVmiwUtf+QP3ysI+vWSziKr5kqS4/6tri9BFKe+24N5iWcMvJefh/Fn\nOPj50v7t55oq593WLczOqZOpTT1iLW+6kXuZgNX+Lq31ajGZ5NoixB/Gj6QE\ndSZ34hTjV5IqK+s4koWGlhZn7jLPSHggdOe1S5a0V2km+7RNVYn5HOH+JW76\ndURl\r\n=Ads3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"f84065dcd3e724ed2c038a295c22aa73e63f5e5c","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:types":"eslint -c ./.eslintrc --fix --ext .ts ./types","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.8","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0-rc.5","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"^16.0.0-beta.4","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0-rc.5","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.2","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.8_1599543588083_0.5948671523704787","host":"s3://npm-registry-packages"}},"2.0.0-beta.9":{"name":"ant-design-vue","version":"2.0.0-beta.9","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.9","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"8fbc84b84e4045a0b18c803b137dc6686198334f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.9.tgz","fileCount":3941,"integrity":"sha512-GteMRBSrJJVFpKHFECK46+U6f0L3nDFjdL6sMD8XojOlpGO6CtA1JueXvbQ7epWUcCWGtbFVh/rlsWeqttPBng==","signatures":[{"sig":"MEQCIGXKKB+UjUoHaWPXB1UgKJt+4BLlKRg64LKOLi4BOCYzAiAzkAQm3P3jnNKwpOPhpAoHPLsGQ1P6tPm1PN3yXDju9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43548315,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVy4WCRA9TVsSAnZWagAA42wP/2jiF+PAx+idcBmwWh2C\nwjBngpmwT2EqRisfX9ynVy3P8HO/kJzUnpOno1vk1JctqOZ/iUKPFbld36g1\namNPMVcKs4HuK/zJ1xGefgwey76u5uNmYQQd9oHXTxWmRslDQEFSCU2sL+Fq\nvh3ThPrAuefNhy2kq5szLV6UMqAw0pmQ76K3QA7Llb5Gs/kqTI/gX0LpLP5a\nHJ/DcLDwKk4zNFBuN1ky3cCzIzIK33MKZ3XMgWCbXoL3nQ7FOfp10QN7+pMz\n/JWg5cN2YjkHGxAN73QZIocbcWw3WaLGI37fYylBWSoJoofO+zTvmOe4abgZ\neT07GiSdkOiO000Yv6/FmRYhK2lNbKq5rsnKtSiwIF9vWBlhViNd/334zTQP\ncICCRN42oTezVaZrkjYzEZd1jtmhnKqb7SBGZ02Hto3z19FS9YnfNLjvwx7V\nqPesnLU9spxN7ehjp/k0G324LESwqdAi18G5sCt8TCfol5uC8DIDpOXY6GPj\nM5na8m3IK6eUBsKdEzPLeXJWpBgecvKIj244Fuc4yrGpqUdh034r7VmHEr81\ngoxcsUw7D8z3FOVwd7VEK7ThOa/t8FoyUBW3Sy6nOwvTyNksDya3RG5k5tML\nyGL9wygakWn9m6NVFW/gcsO3DNRc38okyzKasxU9OjoxZ9moGPTPyi2083sK\ng3iT\r\n=xZxO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"ca2bfbd3ef0daff1a16dffd877033c763ae16b35","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:types":"eslint -c ./.eslintrc --fix --ext .ts ./types","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.8","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0-rc.5","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"^16.0.0-beta.4","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0-rc.5","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.2","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.9_1599548949572_0.3248987025816965","host":"s3://npm-registry-packages"}},"2.0.0-beta.10":{"name":"ant-design-vue","version":"2.0.0-beta.10","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.10","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"66ecfe029458b12d276139bd7fe27a4624af3c75","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.10.tgz","fileCount":3936,"integrity":"sha512-32ZewKAvFBboluvBMsO7Y15LEWxnh2SO/J/h9Sq1qUEXqVt/HXwyg1KmFnSz2kc5j6Av5UtVjLu8rzHdZAOtTw==","signatures":[{"sig":"MEUCIBncvvn7VAgNA4bhFyKRpCbqgKxGTOB2ZlGbxYWVxFUGAiEAynNaidH8xERW01Doqqaa91r3/hyGPn7MjUNK7vtUZnE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":43589581,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfbKXDCRA9TVsSAnZWagAAOucP/1r9VP9U+Aif+cilXA+E\nxray6sIZCAp4rnty+E3jFlQ63gGVNUcSpp+O7X5La8CJX/qZeq2szDx24GLA\nUSh9Ni0kELSVai3h9NjNL13EyV3EDMsmQvMrp7N40jw+iRYe/CNgJ8JPTVb0\nzooy6LAUFZkGYADinDapAMHuxaBfwkZxlt/1h9pXGqCibwOMjXb8BMDV30ZV\n1c1Ffaco1woJa3n6+Y4vbO5KHcEdnRqssCfuUh6oQlf6ZBBJxrZcorlKVIJD\nvgJtJdG+jQGcw8FmlC73iKYMJNprDU85RuhxSzy0ofrZOioBhNcN+G6lBaSC\nLoAHshSN7/L5HgYRndZT9MxERd1dyENfGVrXY0B6Hd5kjDc++56gmmwT+8EI\nIc2bFsPWUBEQ8dEpSXvVQ7TvjMhFmGovRsKay3e52BUfREQ44OajWlgmtE9w\nCDUOYkAaoSvad9gcwudlLAr2jaHKQixKx6IExJPMsBjWk33lqDbPGPwIK+W9\nm1dLSCOOdbd4NkvUxdAQIhoeBP2FbTdiAmr8rqsk6YggPjP3+kH37tNLwhCY\nUdB2UhqdXzsPAroduJE4FyTJek9ScnvwukYoekslJDN+P9jZgZjhpU/LByQS\ns2y8l77TkoSASiDDtaLFlwnKlWUvLe5w5Mg5LEJSPjCuE/jigEd4/kSntg3h\n8FDY\r\n=2s6h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"b36043c241158df55340c489cf2e9580d1da6717","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:types":"eslint -c ./.eslintrc --fix --ext .ts ./types","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^25.4.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","@babel/cli":"^7.8.4","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^3.9.7","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.2","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.10_1600955842235_0.9990703531827982","host":"s3://npm-registry-packages"}},"1.7.0":{"name":"ant-design-vue","version":"1.7.0","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"7c3e373dcde4e68db25d9c699f5f39944976f4ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.0.tgz","fileCount":2623,"integrity":"sha512-3UmFNfGDL3zi3ilS2LklFaTBVtNptEQVKLa/biz13WgZE0Ks/6+hWCh6NSdAQ+WEZXYqJsXUrNh6csf6yfWUDw==","signatures":[{"sig":"MEUCIEPAdu5Cr8yV7uX37EjW7q/dv/MilW2629w7lq9mMmAaAiEAmBhZXc63B7Z8zqSLCfv8eKCtKLwy2hAEC+CbXxb12Yo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39229995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmQIqCRA9TVsSAnZWagAAiWAQAJM/MzJB1H7bFeEhyv0b\ng+KDJgVRVJ01wVBvXhFEhNJIPIRgbT5KxiMIKC8nc+I1cPpJi0FIIzek59KD\neajRFOVe/hba2ZU/GL3/1SjZjutQU1Vq3Px1KLOYHbKhJWBHkP2DNA5RyXHl\n12CCJWzncY7e7/8uf8C2lRT7Z1s3JQLjtQ2yKgLxBFQgCvhxLqdIX5lg0gMZ\nL54rSCec0RlfR13aWyk0XycvyuJXilTAap14MsYGBZBv8uP1/znemwq2AxDw\nfkoYJUXZSbl6lwrxinS7QkqIIkfOsNGJQJqCsi9NpaypFmAeWmSaqW/QB3pL\nMJeqM5ld/nzK8fK4X6UUM1j0qhYSgqsY7QILksCK3jfRnuRDJY5XndzlZaZF\n3Rn4XAnGHQB1qKjED507oE7U4cz6Jkzw9e8+Kd6xQvp6y9dkYO0TeY6+FNvF\nke3IBDQKLeMRWJSAzJSvLlz4AG75Rz6LXGdTD73LB8p6CwDplQEjqS7vE7sv\njDf5ECsMz7+iBl1AGNi4z01pTkeze5aMc2u2Fmi9FTHGJ6cE2GLetsKO8RKq\nVlXAfhAk7fK86s47hVaCBRMWPLJWeMfC4r5KayYFB6ckB9yDEFe9Af/5iETC\nZbFk02uWqPewRsKvAdtMKUEE7v2MRpZBPDk2OHP0iPAmM0Zf41EEPl29OBmB\nvEaX\r\n=5dZZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"a60ba677c253d995aa71ec01fc14940660da4717","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.8","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"10.16.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.0_1603863081932_0.8817178096664648","host":"s3://npm-registry-packages"}},"1.7.1":{"name":"ant-design-vue","version":"1.7.1","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e7977f92397efeb11733bd6131c16fdabcf9e784","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.1.tgz","fileCount":2623,"integrity":"sha512-oJizjG2qzt7yKDm9Jnm9DzNWW76+WHDUsy0bgpHnydv21aZW4DBGWE669XR7+w3XHGRV7BQlYKkvqWo97uyHZQ==","signatures":[{"sig":"MEUCIQDDn5ss8uXXT2Wig/HeQnYwu94qoohV1MGxU+/hNbA9aAIgTAKqsymUH0xuKjTyXLYRoH8lu2oFAtDamP+lcePoi+Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39259281,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfmY3/CRA9TVsSAnZWagAA/ncP/A3VPBc8+mrLHzeH1ahY\ncN0yl8xKBeSRPMYWQsbSaRNDrtum076LOTKPlDJV4tglj2Bev83hfOz/s3Cu\nzHSN4ySPibhsF3d5B8sdPyIJltsl3/2Sk4HUSyEgwOn3JKrYPhYjQFv4hm+0\nBlkwnW6w+o8W/Pi15ddyRamrve5iqp4PClW2HHeSj/Epm8bk5kYpLBOIsPvg\nXW0es7BzVK3I9AzG9uAgVg/8SvNRocDqjM6EPMd7AP73BYYzll65POkqEb3M\nMlH59lw43SXAU06krKmesp2BoPd0HUznsrr2mUsDH0G+x7KIh+qOw7JSYZs9\nMjOwzOBmGIViXqiq42laXVSp2IjARI8DBzGDU7LtOIf57gUKSDmXTesmcQh/\nlGtaQNY1y3sBTM5EPGE9vQcMt+/QJntUO+pBtmX6Pl5zS8L6n71qQ0ARcLTn\nC6YyB78fWyXJTaMZ3RNFhucnrtVU2tfkBnwcDDwoSFu00zoffSZMo8Yu7qyz\nvBy6tutF/J+4VebO2wWEkaOjKMepThQ4r/JCe7RHWBEad52ybaqUeQr9s1pF\nRmVdLbRNSwD6oj3Of4aGyIFonriEuvBSmXfYpZKH4ua0QBWCLNGb/U6XXQkH\nSaA7yQDDILLR8UEIziuwFYgf2YQxKOpfiGnqcJkqFdOUHiMQkPqKNksjoWVO\nVPRR\r\n=PNdM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"1aca897b9705869e6c1ad422deae8c13ee0da991","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.1_1603898878995_0.4269129184927045","host":"s3://npm-registry-packages"}},"2.0.0-beta.11":{"name":"ant-design-vue","version":"2.0.0-beta.11","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.11","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"00c9c7c3f2452cba6853380b8d36dea3ed160771","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.11.tgz","fileCount":4458,"integrity":"sha512-6jWT4w/AklYTH80tmG6EHhh7yPbaMFSXUHF14UZdQE+Cm7i5nJVJmRc5RkpmS8QiS3pmXU2UpR0zIo7VmwOmnA==","signatures":[{"sig":"MEUCIQCFj2+9P3qqpouu1Ud3f8YYHj++BC8qIhpSSMFobA/w4AIgVrWdV7ISKYSM5afmUbQoGSXcyYFPJ3zi5NEym3ktjNE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38920722,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfm9ARCRA9TVsSAnZWagAA2MQQAItsq6cud/ZI0T7tb5fU\nZ6FI/8ktbbGJdu8qZFENAEgcl+p0WlU2FTxAqbD8Ucriv4dygj69xL0Q+coY\nyz+BGyALXx5d0FIrXvGxAbnSg6ZewAvJLOQMMSN6b8V5BmT0GLhIBYV2N8d3\nArBmKBvnTPKynghobLYfeREY0f2zKaZ2hFCcJ8aQVIi9nqUhNIogCE1cg0Dk\nzx06JyJYGkRFBRdkDi5i+wuPasn5w5HGRysJ+k/0HGRmankI3tZx9F2XabF8\nr6SkVP4gKbSQtzmXvHWPn2y6Pa/T6CsxdNtQV/rhfKYxsyxAey1VfUxix7lH\nc8+MnZHLYiRAr5XQ8vpA5H2ejnUNwIlp/KOO9FYAhfXhg+xA7TizNulWhYy0\nVngwsenSL5cuiMzNfyacvXqisRMt60RF6bUp3yzXlDJ4tMXJPLe0vAxen/wi\nK0KZpsw+1jpCag8SoZOvUbSYaaJsdwRzHV2w1O3XGDR7PySFSZTfmnHIjizI\ntKNOSdPSmHYRTXa8KURMZ1ftNnxUbqGLxrpEVrPn1GhZvrR+gQPO4ZHkymta\nGbclS0wj5PwBwc7qB4GbMnX8C5LTc9CoaZcZM9o2KPK8taa04UhwitNbDwlg\njbFwjG8j2J2S/JRBrv0UvSb2Wj8E/kKkjJeaq5w5AhiQYMkq0TxUU7fNL05F\nbj7s\r\n=C+Kt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"a8e2e87fe1c604c81f046565232cd8c95c5a3bfa","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.11_1604046864560_0.019798065915353824","host":"s3://npm-registry-packages"}},"2.0.0-beta.12":{"name":"ant-design-vue","version":"2.0.0-beta.12","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.12","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"6a14f89f0024ebf10ccca7879464c2178345a3e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.12.tgz","fileCount":4460,"integrity":"sha512-XSVfXini3ltUnCFR2jDRyko3WHB6Z2jtqHn3oFS08L306DLgLtfPYcdmO9P700LHnISs8v6NLPKGRhXgkxiKdQ==","signatures":[{"sig":"MEQCIENZkmwInLsllLIiJXLEsku+UGS6254LiREih+YGs7OtAiAS4hicIk5e1O2u6BcTzZogxlLS5JRTwwIJAYkGSM0tXA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42192279,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfnrkTCRA9TVsSAnZWagAAD1EP/36EtCcXvVk6UuGzFeDb\nRlk+fnyWrTp2ppMqanVo+9sZuIHaSVjYsivwSoFZgBLwMNm7AXUayuDg7k94\nwNJcbzedeUGvBBbJtf8IUtOFH17bpUIN/rjKoIB0M01oXs3H0oT/E5i8pZyA\nwO8zwmROaymUc1uk4IvHceLn+YSpz02yR04NKEIUVvAZ2zv7GpMZaBftc/IC\nGFA8pcjMH5mE83l62zLoBGiXoniwL59CXF2FH6lNXbBIYKSWLFmw6hikhKXn\nukGLVOJz7oz4WBPxnaohRLen9/EAJrzo+Jr0WAjQCER6XEnub3o3CObsHGm9\nrKlCzbEbIt+yP7Dbio+dsDGIb5oHwWPveul6KCAJ2XpUqe7HYv05ZYLLvtiu\nV+HVyJMf5DhmpjzvKxLw1U4W6406XqqY0AuveTheaSQlMvIx5XS9t++dP0F8\nePsf1ps3PvzOP5exE6C6j1C8IvlRxSePmjcxb4E8eJ9OUBgYsZUADbpWScn7\nYCDsdABtwlP7ARWwXSS9GlDDU9v1Ai0IeOEWdzolRZ3OGDTQCBmojFUTy7bc\npNleMnaOeyV7pIA+NSQT5qenopSmrdepIjbFTIrVOt3JMxfrTYIKH0RuCz5f\nU3EwkutlfP4Yf8aNpi5Ia6OIPcbQ+CW8wbze8fItXBZNTY9iRjV+nCfedz0Q\ncFiF\r\n=qy+i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"bcb86428fe8b1fed67d6b78a717451eefe2ef589","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.12_1604237586965_0.3478871303414677","host":"s3://npm-registry-packages"}},"2.0.0-beta.13":{"name":"ant-design-vue","version":"2.0.0-beta.13","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.13","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"04f925bc5283d0cab1b7c608e055ca6949e49a70","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.13.tgz","fileCount":4472,"integrity":"sha512-VOSPqRfe66iR8LNaOM7rbGjttUBPXyv7s6U13rVfVX2f7iw7omokZk+wQMtU0w8so1cNY2gMPvYWkXx3/ghmlA==","signatures":[{"sig":"MEYCIQCry3AzDo+X6PybEIfy5oT3HxXSKnwq5hL0SXHiyCAuAgIhAI0ZMR7sGs2zQUPks46Yn3rs9SJ0rKNQEhDTTJNHp0tb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42311035,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfoB5sCRA9TVsSAnZWagAAdCsP/2Z5rtKrbQvEF/9rQ3NA\nwk5J3k4N77//9ztI3BxaAJqQ7haCSUMEwuIKPyXMLgIkLqmYzJqMkLKdgwbg\nBIKgCgGgljbOvFRnYcDV5jwOlyxfScMI0eJMMlqZnSZ+oFSvh3rZA5xeFy9m\n3tt3NtfqMxHhzbt/n6reG25vcjFC/Eo5X5CQqaFkh0U/vlyiv5rdEEQU6IhT\ncclZ8wbjoYSjG0yycmLl2N0fGI97XphVPpbPlPFuzwA19pNDsGb5VKRPjYi2\nqsuf//8534lufUdmtSKFGQNDhHoY1hMvaLkPE1XYF8Jg1aX+IGDkxdk3CxD2\nEhjHVLDMiHZLZ7fVbAmA6/qkDRyC40FNTQJPg5R+gzfcDVo9Kv6NdpvMIrhY\nLfjUzqxWvcbBCYQE/wABtWX9K0NcjP21RZO6cK96Y2+d1T+rJ6CpWVim90bY\nA4yPFWikEddj+XY+64R4dYPl6hHOTvMX7WzIfaqSfjJVYg/GWwBjG6n6CnMV\nzP7fXNeG+/F9f2DhwQcv1/O+rjeyyna8otv1NIoW5PcHh8bzMqYxwzbpIxa5\nhbXQMyHi/U5Xl/7odBPgb+zLhS71UgWqm89g0UkBeLi7HXKkOI15/Bbk1BjD\ncTbpdYufc2ByuTZ0DAJFVd0wEqTHo8h+NDLO+uys+4kgBH9OsGEHhrh2K7X8\nkHWG\r\n=9Yut\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"a007b4757aab913c7d60f7ad0e8efb0209fddb22","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.13_1604329068045_0.3865472222605657","host":"s3://npm-registry-packages"}},"1.7.2":{"name":"ant-design-vue","version":"1.7.2","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"aac7ff802205711631c8698e2a0c7b4e61dfd73e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.2.tgz","fileCount":2623,"integrity":"sha512-iVskTSG62OSiptyGQkvyhoeLlLMiqKtAOTcWZ7MmsMrj38h0TCpGtqSYS4/fwq4yYgyzloYSteBo8U8TrV99RA==","signatures":[{"sig":"MEYCIQDHox5TmwVveBSHykzfDreFxs64qujfLAACULOaH+18UwIhAKdcftmV3ZLbv1wt1waFtK1bYbSsv7uYznuxsf6QjYsB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39232232,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpVwrCRA9TVsSAnZWagAADZ0QAJGNWo6RDcs8ao+llOGS\nOMiAZKUsGORO+FRknLCWZSMi3ifLJKiRuZNPTgAhAQoR3ARysS2b078wX3pl\nXXa0KEcPlz67Ais5t+NgLQ6Zq2+ZS0cezRfInIPaT3EKO53GK7Q0w4pDvw6M\nPXKa75iTZG+0OhajdoNwdNPfxpK1sdaeu2vaVdFH4ErgkSkEVx3szBBsDLY5\noxXeQ3Fhrbov8pxOfp5XLLnQTdN/RT+DVDSub+gPSG1Rh1qL0NawSkM7XzVb\nAhd5IxHJiAGfgOM13b+SsTDAdmu344ZQPRoAds+ZOlXBTpps163Kqb2t25o+\nfXznm1sjFve0aN3CthTqABM126+n+Rz0ZkdTmZ5qzbecJaNEBJaWLhkzcsYa\n/PlTwJkCwsG157Xw0G6T+cpGAyFIQFZA0e1zBKdchQ562fp3zCFGp4oevf3R\n3dLiAablhBT6EK9vFApUDLv+SBNzwzVttXfBQabOJVM1k+I66hnBtcgBOrfS\nuKtDlJwLQKRr3WS/AC7XJ6PNkXenhJSbeip7fHQHWP28ATXEfnkE0t/ANNah\nfp75URI6gWtzY4N6bu7lAGJjhhX0f2eMEECDlMZKtuOR8cBR+itRADITE/af\nxXtleAk1gLQufwn/Izp/N9/kdHB/bVd3tYUamkP0XDuV/BxLPcPPg9x34lUD\n0dqQ\r\n=2tUj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"c57df7db0c5cb15af298ed9aac1694c0f77f4f46","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":">=2.6.0","vue-template-compiler":">=2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.2_1604672554398_0.3642303891226224","host":"s3://npm-registry-packages"}},"2.0.0-beta.15":{"name":"ant-design-vue","version":"2.0.0-beta.15","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-beta.15","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"3c787dabb70a33885d0e751e58f9a5610ed06134","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-beta.15.tgz","fileCount":4472,"integrity":"sha512-OxZy+ZYU3LauIL4Rhqwy441K/iD++Cit6upnQy5+LVUrX0PSObPqPqMWVpncbAmJJYTEz88gkvgGeYqBdzouWA==","signatures":[{"sig":"MEUCIBz1OYH5K38Zb2h62HpYnX0MLQvXG0lC+2z1dbUbHZX6AiEArjvivy2M1EuKIYOi9gsFw+YpfPxIiHzi5UjJ4WCQUyI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42515925,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfp5DFCRA9TVsSAnZWagAAY9QP/20BlWYOAwdAoeaJnvfL\nGvZzbs2ESKV+RzDQMtGitKHqnEceK4DQwXCZEHETCfazcuvTi58Irfdz+vAK\nBTBKJmONmgcXcowElHTxb6pROUal+sxgJONpHUUv4hZe9BHKFT3FJEN58bhb\n9J4iAj2dNBdyOQM0H1p88bULpPCYum5StNNjpY/yhMyK8gyAHuBSBLftVTR8\nmih752CcnZmV6Gkql9UP49OFBYMjwkG5cqsUm9Wc9Jxhk4lUHcNARSx0Y2AV\nJ3F3vsFEVqMVa99y0s6hfddYx1zWa/9+dvdN+LZrI8+uEt7u14DV7K/XPCsZ\n/RUXCxkYerquyhRORIlz74OtlfN6GJoSt0FXiOA++8Qn8ySy4hLn5OjMIeag\nF46/0U8gWiqE8WYvroB1WVb6tFpUtQPiT6IpBFzO921YpF9wQYaH7whP5aqg\nmoJG2umKdzz4mY1jcWGlwfruXBXyUw9eSRs6OcxgFMhCoQFXQjG/NBqOjCMr\nT1jdFbYt2yu5lxUbfBvsHDcaQTOLZ+kNjAV+lJf23G4ZZLH03qxtcrbwcIVg\nTvgbsjj7LYXPzb2Qb0bfwvy9MbtsfEdoq+i+kVfXoVNlbbyNwcDpPqMap76W\nsF4JPoWaK4gFGKQgQE/kw/XCdLuFK5X+d1z6eOy8si15rr85U42qyG6x8LgB\nMuOd\r\n=DLJe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"17c7cb30a3a1b93a51dd605e9468295f37a203b1","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.0","@vue/compiler-sfc":">=3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-beta.15_1604817092169_0.9541929587936089","host":"s3://npm-registry-packages"}},"2.0.0-rc.1":{"name":"ant-design-vue","version":"2.0.0-rc.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2ef02475f3aa4c1474f2fe3cf44a52c34787be02","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.1.tgz","fileCount":4472,"integrity":"sha512-iKXkFtTHarvLHV7LWmYh6g/Cmkv+xK+vS621A1Qvg37Z6lCGg3K9BGAizmklAYzOTiPz0Ltt63eSiNqYMGh52g==","signatures":[{"sig":"MEUCIHUaHoCQEMhIN4wxqM8grEzPcAxlL7hsbpUPos+qg12JAiEAn4pS5yRqlEQ7sV+cbt2aprh6OwAJb+dTtVIrQQn5BpE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42584579,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfr/SUCRA9TVsSAnZWagAA+kEQAJtMUjJoIh72vzfiHERs\nr7NXy7sptKOVY+WsWLIahlxGcGNr6W3lyJAixXYY+s6PiLKARzvWmmsJjfHR\nJYMOVt0jXQ2SGnj2L1h+Yl+6w+eBIUKRWZ0b/mG1T6cazEGV5W1Vqbqr4V20\nuOkfUp+WAPgKng9rLS5ERN8zKGjr1GM//2T0IQYmW8x4bop228w/NH1B5Dg7\npEeuIK0fV+ZKejET6524G/Picn+pLT1DkZoNWc90ZT5KpDvV7gwuxyH+4vCE\nYUqnRZM930lc2ZDtgjT2d/I3XT8MlfHR8gkJtEflta6UUABEE22gpjpU1bwt\nLunEhdi8lOfMCn64kEY/58wtYbWtG2kb7V0TcGCSkADD+kf/WLipYYKQ0hbB\nLTxpv3GIpmFrvX1hZlcrwv5r+MacvoMInoIlDaNG/FHxE3EUABVHntOXBEQm\ntxaCF71EoZEjHe15UZOuUXnDlmS3aHuvA8aUTZXijfPYDSSs2MQ4q/vjalaw\nZBH4nW2Xr1z5W0IbOA3bgXFThe/CZj14OsNLmCn/t8PhVKCcGmD2YYCo/D2E\nAayj+/a5V6Av8PSegM0dfTxSRM7maynH/Qxfzu8L+GxUw5pTSDw524RCIZxV\nyFdh8sygkpknstohHdso2i2dEJ0E4DaAPQ3bRRnWQ0vW1u2KvV/8NwpNfJFy\nfOr+\r\n=WsBx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"210dadc93c6cbb2286865411422d931e028e987d","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.5","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.2","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.2","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.2","@vue/compiler-sfc":">=3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.1_1605366932253_0.006006644753804746","host":"s3://npm-registry-packages"}},"2.0.0-rc.2":{"name":"ant-design-vue","version":"2.0.0-rc.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fd3b4a5a64fccbb53ed488a194317a040de2223e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.2.tgz","fileCount":4476,"integrity":"sha512-XA7X/7HHIveiTh41bZWGfoQ2Rys/rqWknK2zzdHwVnfw9ST3v+ciMKH0Uegyn7m14QL/EdUkC8zGsXpiSXqKNQ==","signatures":[{"sig":"MEUCIQDAmA8/qgU8aPbVpjEh69LoEYj4XTpKxrZ2ZL+nG24AcwIgGmB/Rr7B3Ib6aYUY2pY47aGzVQO9juBIqTd4jrWkQkQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":42711610,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfvSC3CRA9TVsSAnZWagAAs3kQAJzsayP8qXo1oU++UtGN\nOutbWLAqJvBY2qvEmmGPbJXgm9qRUqRhhL1v1Cn7416V4ZYxm3eWR8nY3BIQ\nWgZaoy52DQqjNs81/G9lf65WAjGV5JElde8W/Yq1ibtZG/3/pZLoeZZLVPpI\nrtdsooECGMDs7IQyQ55x6drlA1dlzwTvECOys6jB3Xs/Q9iRDF977T2kon96\nTFaJekHjGXjDxPtwCSBZ9+/PoOsbgOphzQb6T6E6pvNSy378lKq5iERBZpK/\nHp2eJDcPtRjL0ZSVOiVAXE/zbrlkoR27t2vjwDClYinEhWkHlju/0jhxQIyc\nCMx53WS/PbC4KpqLw92rgIeZq+w/Sjdxl5d//iDu1+dZpKIRy9A0gnhDa6OW\nMPtiAkaX+avyK1ziuh9Srz7Uj95Anhm0GA7nEzG9l1XWqjtXtlGUfsgNKf7/\nSDiVd3iSRyIlqvyjuuB2Ck2po6R3FSOTGHJ4UyKUd3MLU9Nwn+Ro9X2bQBAB\nYYM/UvJMzVCwFZ+8ycs/TIVQ9j2sOVlI8vYLnvtR4MdQKFCKbaIv2TK3WV5C\nwmxLkGdHkE+qxR5rUM4MdTFIlMiPvIUNYxLDmvcB3+mwDsFlUHs8aC8BIB34\nfefH+uLDwXYvWHlU3OXM9OZlBGk8b2ka5joExzNz4Sd1OPwqK73FxHpFIhYN\n15AJ\r\n=xugj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"335155e1f5d76659017078201d92b3f6d0bc943f","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.6","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.2","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.2","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.2","@vue/compiler-sfc":">=3.0.2"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.2_1606230198183_0.5173576681567984","host":"s3://npm-registry-packages"}},"2.0.0-rc.3":{"name":"ant-design-vue","version":"2.0.0-rc.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"22f81d0fc495d2aeff343925d5750e0e34106f86","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.3.tgz","fileCount":4476,"integrity":"sha512-dz7VOfxJZIHy7xCrMDBV8zYaVOyeuAFAxewWZy0StCWpbILqQWynb9sK4Nseh3N5ZMFPOD/e8FFiA9cXdNtEyw==","signatures":[{"sig":"MEUCIQD1ZTkRbpU0s/uAafaCM9UhoFWYTZ7qQuENP60aNxbf8gIgfyeae74QWnBRGLnRlqe8PAJIezbommQ5DOWD1yUxPhA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46506170,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfyzWlCRA9TVsSAnZWagAAwJsP/3CQzhYcv/vw0Vp/OEW+\ncpUkBUSFZwZEyposAC7pPtqgRiKOIGwnVbNq74BBbBBOS8JIJtzUExYPq5MD\nPw7cfjighzB7UWL7oLwM1GkD1AJ7Nn+TSrGOezSoIE4yAXqc6Vvx07ilPzrl\nIIM/uuWnjd+qvr+9EtbGOtYlD05ij1YZMrC4+GA7mZ2uA4P9S7EOZfdZYasI\nciYq3mfxAZjTmQJNZ6+jmT06N32jBtQH24OcXqTYCohxUtwjuuyc8U8CwW0S\n7NMGJmfvrzrL9FFPj7YYFevlJiksgiQenI5WkNvhdkaoeQIBcMs65nJe81cu\nxR1WeVrMYnOcCztBJbjcRSjTRojqdBapnwsxuVYNXcJ+Jnl/YzoTi+V5T7rI\nGIiAp1sU6tYfzPSoYE9bDrRmR9nfmIwJA0Mqlp44IcF6XDraCMkXY7Lgo+rL\nCk/wqonIjxyJT57o2IYEs6O+UnJkuwBGlgBzC5OUnjwxd2pP8u3TbW4Xh8P1\naoGOX0SusaeoBCYotFyyIfkCKOa0VNds6NOnMnQDy4VEWUTG3xwVgx4lqash\nU9v66vP9/E8UWRD/0gK320UKbjPnQEPXzkWK8nzmgWXFPBZR2QjKefW04Sks\nZv1RGGKX3rc67Ngd1kD+y0cLPzWJ6HWJFmkQ4OnzYgQXPnnCOPbe5Uefl//+\nb434\r\n=RG8S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"c2f5b3fa9fc340c9de9e309a460b55ca422235bd","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.6","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.3","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.3_1607153060516_0.8656386141839008","host":"s3://npm-registry-packages"}},"2.0.0-rc.4":{"name":"ant-design-vue","version":"2.0.0-rc.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"1f3da62be4ff09760db16545c0cf7ab0c303a4dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.4.tgz","fileCount":4480,"integrity":"sha512-vKNbCYrd0wFdlGeSwyCotbG47g2f7u18wEuHMW9BSmwEh5Hluf6nu8q4An+4CJ6imwtG3bIHPC5wlGtCxLMkbg==","signatures":[{"sig":"MEUCIQDqWAr6XzF2ryRTaa6e+xZ9WeROxAhvD6axfzGxeLPqZQIgAS0aXKproEjqJNsKJFxcQ9Y6DD6zfFno4IVLE5xGMQ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46545855,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf0hZ4CRA9TVsSAnZWagAA0sMP/R7gudPfZ1W3Dc7f1Sh/\nqrAPZmOl3tls4Ml0uE4bV0q4LOtN6TsUz2pLp3sLCFYyw5/RA/DdeaNzCyQf\ndhNq5A0XZYU5w/GHpwWOwrHbLlMKrneW+RdrZbevOrYoEGE8D9uplpdLlnKB\nxjmMNdOcz+ZaBoUKiPI1uDXqycGFyYrARmfKC8R/OgxPhJUzxcd3mAc0SiSB\nlkZCCESjKiqyKfZOWBNO4CaGEBkhz7YRogwh0QsNzMEo1BOCmjSTx2dGZJX8\nZFgCrlzL0etgr7O5ZlucQ9w0jmgW7mWXg0thT/+1xVwkTt3ZW4R0tp+FEfsu\nofkM2SfpNcddawXSYUug2w64HfIynWaTcBc+SREuDdkiAXjqhQqa1VNVx4op\nFKZj7rV721iqgbtn82x0oT24fSyEzXXXoavPILfoMTDWshg2PtEhrowWkeqo\n3t8SlwH/LMlaSz9iZWYLCzx1zwlwXQpPVoHAT7hCvmv26IcEOnIoDtOsoGv9\n2h7TB6vcd7qry57oGwEwIqqc+GmSAaUCfUXc7Hcf/tW7ktKTjowf0vzErLZ5\nxzcy2qLe+sqCkLtrj86/IcsRHYhuOZcxKp9ZDF1jlwWQkpCdY3NJ4WBVy8Z+\nmKdgCe44fCpqZmbW2vIV7WTOHOAbotpCaGG9aDW9Wv325iQyeu92wBy+S1N4\new4i\r\n=boik\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"fcaedc525a7fd6575865fcf56d8a3a99ff998f2e","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.13.4","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"12.14.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.7","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"1.0.0-rc.3","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.4_1607603831980_0.44424673610083665","host":"s3://npm-registry-packages"}},"2.0.0-rc.5":{"name":"ant-design-vue","version":"2.0.0-rc.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"cad07b4f9d8153cd399f1e374f438a2322b74b37","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.5.tgz","fileCount":4480,"integrity":"sha512-1gdMaSjxiYuqWvfUTW9kTEOXqxWjk7gjI5zWiCv24vJ9O04SvxWtZEY1Rfcp3FZJl37BP7LT1Ee1CdHTBk0/+A==","signatures":[{"sig":"MEQCICjUZj1/xO06i81QLzdHULeQhSQPJBOzHVUqwmWEyfALAiBb0/mDAtVrvkMKoNTfVARUDLlrgwo6lFyiCALN9tRMtw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":46867938,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1XReCRA9TVsSAnZWagAAIwAP/0e7kj6im/YeD/W1hg9N\npQ66fffNmlC8S3JuGQ+3ruh7EnMDk1rPohHWMCb7E2hyKg5YHsWslEEK/gDs\nr6zaM++OZzHmr1qHMxEzRzDt8sEUtoXUq2APW3yLcsLFy+5prcDozWLSAxOu\nDWg+ayAHzHS29I5mXcuBEkY2kstyqt28fJaudPmHUb7bbKpr9BefFhYx5IdR\nII+a6nHD2K3uS+P6ciDCmKbULHPsktKb81LL9xFOSnihofVl9l1CRP3DVlv1\nFQV/FODlmHicuIKI6oXFxjncQiQ1XrKBKVDaMyi6O4loZrsm4pRti67vTvkr\n0kj12xaQs1vMqdtlOcvP0u/p447BWnCX66U3UirsHq+CM/o842Cz8dIjVCVN\nQQ2khWbRxLGulF2yLX4ypiRu5n2dqumqgQCvBDSt8hYaVdWpj+VLWIFVBxwf\nN6wTjoWSt5f9FEcJgbBplbTcWtC1sFrtKXQGKVDN2BXPB45kErssQ9dIjIUM\nqcx2b9D2I+1i2Q28HSkkYIBwj60buob4BvncUYqlR0H7MfupkHlLF3y6+aaF\nOAKTaUGyyfM2x+IZW29pQW6BaEkTd7rxImEXrko0kEZWj3SwRwrH4XjLlvDz\nGAbIqb7PA3D3ERWQXuK87asQUrd8HSr76sfMnHPulLUcrnVNxmoa7Ebh4TKQ\ntN+V\r\n=nUfd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"1896bb9b772c567bd87a2d5861da4fe98529b1a3","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.7","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^3.9.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"16.0.0-beta.5","vue-router":"^4.0.0-alpha.12","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.5","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.5_1607824477433_0.5879501691831581","host":"s3://npm-registry-packages"}},"2.0.0-rc.6":{"name":"ant-design-vue","version":"2.0.0-rc.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"f25f61cde1c75c32a78b536751731c0b223b6590","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.6.tgz","fileCount":4532,"integrity":"sha512-NRxzIC4CSM56MXYHdg3K2oTc+pkcSJd6BJtIBCxUsbFfbBGp+F7ei7C1bQDdHHos3o/Oe2iqGwzfrZ7+Ot2Uew==","signatures":[{"sig":"MEYCIQDZPPm1Ha0ImLGczQofJ88XkDib0RHBoky6+RPjfx+sdQIhAIustejpsKE2ZJ9Q3twBHf7MoU7ATOgKcrqO2yv0jizz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59647786,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6KdTCRA9TVsSAnZWagAAbHIP/1kBs5Pvzb0saUi8HWCz\nKhW1fn51Qy8HO6LBbsBSTstYlUQp8IsFxDT4/2bbZN46IrpgAjvbqtpuSbBO\nXq4Gb9h2Buv4RnQLu+UtPrnTgCXQ9e2AlBhy2b6p4KfBI25lkNRkTFcpwe9A\n0t21vQ2buWP44v5y/z3Q6qYs1owJYEWrzwTwaZoraFLbIQyKnJUllzagq8Bz\nSZUME4LpZWVU8eKH7/PnMkAt+O1jIAhWiJNoedTEvMUIftKqryhpb07Z3Hf+\nEVpwmrIzC2V2vuD3/sdjzbuk7IpOQshyPP0iEHBfGnpTEuQ1VxqJiNPIwqJx\nMkH34eCSkNH8494NlNHGzdIt1tmdelVbK0bP0OMqoH3mRImziK5ALZx1F/OA\nJkFHF4flxTStmKHbO5rbIcjvumWb0suBzTdsSpRE8ZjhvrVrwARUf9bnjqLt\nQTnVJJVp55cQElBowP4BoBCQOmLKmlrayJP2FRn8KfyswvIB9bkEig1emPm0\nI0oI7yhrWT3W0BZL7XJjYNViRmv3sUGzS0hiGwnqlv6U54pVdoH57MifF1W8\n0s7Uo1GQvOkNnv6yHuHuLAPI2Ga8kSNXuaMQsAitGf99TvmID1z1OgnKNDs4\nibetmedAtkjDLi0MfRAyFwldQoUHGJhgRt54cJGz4mak4grmybeOae29ISoM\nF3vw\r\n=yZVc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"efa477a3b02eb78d6953785ed5663a764a648ab4","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"6.14.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"14.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.7","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.5","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^20.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.6_1609082706951_0.3801456147759399","host":"s3://npm-registry-packages"}},"2.0.0-rc.7":{"name":"ant-design-vue","version":"2.0.0-rc.7","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"5d83a7f13275574ec1fc1ea8c1fe8d9aa6de067c","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.7.tgz","fileCount":4532,"integrity":"sha512-QMStvwaLfV1Q3RaQ8D926aCkW6iqWBHXlNv7dBdTPvU8eeFXPaPKenLu1OTpSi+wpCncJqgumFOEcENPvh0nKw==","signatures":[{"sig":"MEUCIFR3Nplj5N07jfSSXcLHN1SASJZyBTeaf3raC/msHh01AiEAk2s/D7vXcvghDdxACGEezlrjpxNmpu8sgRBeM20PKAA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":59649481,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf6WMECRA9TVsSAnZWagAAWcoP+QFYUPMUCkd1h3vaBVGn\nIGtU9mSWRxQ+ZQBdzllUTuFdzV04kh29uNzQijVKtLe1/FfRVCQSulTL/MmY\nb4jDNKHbQKP9Mn9IuJvriJNeRhBBGCsiZ5wIYfn1ZFczzN5qyWdL+x1ebI/n\nkfkcMiYhGP9JeKMhWYGmT03G9oHdZJ95HsBFg1gls7F85IM3hjyFnT4EB83W\nX3wrfvevbdFGe9VzQgUnxZaXBUjLyFbqkA3EAl860CTusELSdO8fklBZVSrh\nUWS9e7xtgbR8jCYq6T+DwkasLdgnLQc+eASzOll2Ijs8tInBG/+GnAeezFfU\ny3k5r1bsxRKPFZrS0eHH07Jv2ccqv0sKErh9XUIttD7jRFbp8hjgkRrRfxBw\nemYou7XA6UjNqdOEiyxu/X03u0waMbZCEEzOqSretdN0tkN4hvxLE+KbOkc1\nA3K1WL3vcYqaTjeE45Omg65fgIwhD6VFGOvZk70Q1DFvi1uBERLRoJvmBps8\ngicBlM8zaWMYGEt24CybHx1yMYv8k9Ls0XC90kk0NpA8AL/DlDae7ZCYIHUp\nJfgN/sD8tYfHcf93pcStSRjc+HSgmJB7Dbaax4cm38KCBa5CSJtQjq4/3KEX\n8TXnRUKC6PU1qU4BpaVLZGPyS/whrg0rjLGw4MJExMkXcha3LJ4ySQBjZP2Y\n0C9L\r\n=qU8o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"711c394aaf88fcb45e2a81e82152181ae2fcca63","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.0.15","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.4.0","dependencies":{"raf":"^3.4.0","moment":"^2.27.0","json2mq":"^0.2.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","is-negative-zero":"^2.0.0","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.7","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","@vue/babel-plugin-jsx":"^1.0.0-rc.5","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^20.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^5.1.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.7_1609130755926_0.6112046772629691","host":"s3://npm-registry-packages"}},"2.0.0-rc.8":{"name":"ant-design-vue","version":"2.0.0-rc.8","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"0f219aedb27f1797228aab79fbbd8328a7389a9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.8.tgz","fileCount":4548,"integrity":"sha512-sPH/raQZhnzxUpFT5z8ONEvaf3SvUss6Llv9eBK05wqDTaj/+QSnJYflFGPZh4ScXGpJ4Pth9FMd+F0ogusGHg==","signatures":[{"sig":"MEYCIQDFp8A7SQPVCQhmooiwQGaGGFYkSqgRUYc8Gluwa74faAIhAPpB0niT4Ixn7woMoSCWQj2LstjpE27E4sWdeU0M9tdn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":47565824,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf9wovCRA9TVsSAnZWagAAjmwP/AsWRBVkhKvvKK+Cpdly\ni5B51TUUA3kgSuGjAlwtVGY5vjDXYJEobV+paDNdxK0AmXjNZeg8UKUbHIKB\nHxjVPMOq6TK/VNbf3mGakhQFB1tPFCBB7AnOq+BsQlC9bTNxQ4B4NRjeGcAj\nO0FNjQ7u5ajdXl95G7Q92II6Savyj1mL4F6RLf3v+Nyhu3tz+8+Sq2cxxkVO\nymRhKKs4PObYmrywQ/6or76aP6+n91zNRF+dSQTaBMqE1ld85XnCEFquXtX0\nKh8Y4Da5E5x8FFlOpI6hr3dtbJpOoZZisduGjCZGzAPSTrTzGs/Ei6e9hr2c\nfvIffE/L81FmDgEtAQUiCJqU9s5URZu/S9LU8LWkmAQXS6h3u0P7CaKX2wob\ny2VO1Jv4q15GCb6lRkzyCRSc2hkWy9nq4zaP7CXfXaUdJwGm3XuFntGIivHC\nbZhSd7X8maFa4ZxPQDdCNPvsFbmYOP97fwqfBxrt+C5eLdzXFoeJ3qZ2iCIh\nwrb9ynlWV9NmsY6iY2rvpUneQc4/ET7AtsC2XzoVvbtVTVcVH4Hda9TF3CM1\nj6a5fhNn4qMLTIeIcPBf2COLqp+vOExBaTIQzsF62gR3evbC47loDYat5EOY\nuQePou0iH0e1t3He1ztunVcpRmRu/kDcbrGX9p5UQ8TFirh9JEN6U33H/Z9K\nBcWp\r\n=e+TM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"648741265bbd6833a7d45d96fbe87df768b2c0ac","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.0.15","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.4.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.7.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^5.1.9","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.21.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","node-emoji":"^1.10.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0-rc.5","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^20.0.0","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.8_1610025519052_0.4021040536001794","host":"s3://npm-registry-packages"}},"2.0.0-rc.9":{"name":"ant-design-vue","version":"2.0.0-rc.9","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0-rc.9","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9f4d89b02bf2c6f3295633048001b2e13c229f1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0-rc.9.tgz","fileCount":4561,"integrity":"sha512-lnDKOXkaxWGnV3nEzSl0bggnM1F568sBMD2ctPLLctdhYBAKZQto+4my4p8RbLHfvZVE/xVDE80HYgufibTMYw==","signatures":[{"sig":"MEQCIFKdO5ZO5pAbqKzz/yGa1n3gpebnvCvlw4wX5jII8mX+AiBXfamWNkS5Ggf2d2yENvu0dKbOnqbkOPpEcpE9eQbx9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49599578,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgDRhpCRA9TVsSAnZWagAApVwP/1cC4h15sor3O+gmqx3s\nwUX5zpgUb2MHOGs0am5Qt/dqCYhhefmYmPmM2zooJWlIikzPvj0gZyjdF/C+\nUaHCEWfluhoERdUEvA7VWnYhusTvNOVcmy+5wcx6/zNav8Ntvpn/qx/u6FIi\nQ2kfmJSFe50Z68rtXyx53CrghPKW2y2eNmA18uRyk3z3HnpMxgHLPFdvVXob\nWQcmRRQQMioCDCOAd/S9Tfl5j9Tf1keHU1nsJ5GEHaRS7eaOdyyyar6aYshX\nAasL53+L/Bbn3HNHk0e/t9f8yMXBl3QYXWpFdAfjfLaPxcfDyPkwuBRJ3wrN\nmV2hnYSI6bc5dkHnqBYvnMcJaXi/Y/b+jVIJ6s3815meSDZAKM6dBs3UArSG\n2hJ//Hz8wKcVh4nmJKUBtbfBvNfs6x95axrm7KXod7+Z+/8FkiJKWr2FY/pt\n7GP29h2wf4QHDvW7g9fg8rmj6TPNaru/+hhgkW7zg4z9nzzeTJ9/SfHOJONX\npoyySVRDngjParVKzmQoFJs0JJ0OxoRtMsD87nhdhRYXMarvns9q06m4XrqR\ntUTExNk7jdjMYS1zHA8almCQpH5bqYzg8E/bAq8ufmlDlWu+UJLLf9ibMqDE\nRE/lffN1T/hp+zqFjbQal/lz0B3Hh1+Ra5cTIP8X+s3DoQlZvbu9gkoEYuk1\nPzGw\r\n=Wgrh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"295b3f96214fc3b4bdcb731492d52538f28a93d1","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node --max_old_space_size=6144 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.4.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.21.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^20.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0-rc.9_1611470952858_0.35308835986713794","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"ant-design-vue","version":"2.0.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"d30ec06938dc3b43b08a117818fab91d7b083e5f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.0.tgz","fileCount":4561,"integrity":"sha512-Uv35Z9V+8iT1PBO0QOqWHaVE4Gju94UfikL8NGxtAqy/yZDnTn8K2gz5n7PfQbB5oBqkEyn2O0mtOpUBUEXZ+g==","signatures":[{"sig":"MEUCIAm3rjfxcQYhtIzKT3sznf02VFLorzsS1GQIC/2buxmoAiEAxAGBysaxhB/nEgOdCgPjQ3eTUuzRQLTOYGPrhEgDr+g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49635182,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgHp/7CRA9TVsSAnZWagAAE6gP/RoWAgQVFpWw6onz1Qnb\nQC/dvwXL+3d9m8XvXDz0PFgcPmfJzwcw6msL+uroUCNfToru41Bo00RTKoEI\nd510pm8E3UO/HlCZeD+kfZBmY3U/fTrYLrJulghTngtstSL3YD+doYjjtoHb\nKyLYrGqyMr1boHGYrUePF1xK5kxINFX8O1wGSQS9MOa0o402srgv4UR0kTQX\nNyUse47c0tCXP7Yo6Xw20s0E5yiSN0wKz+kIOOpSKpeVF1AnSOiw8CjEtNp1\nznYUj5AwdBfkkueoOQIA/de2v47pBzBol+gdt55xY6RJYGQOxfZUegjW3Lpi\nHiLgJjQV5ETosrO8NCsQdjpS/hy5zIeXOCYzoEaZ+pbVga017p9LVUw+M7Sk\nb/5LeurDIWQG5k7PRHxFhxTGtn7wzAswBm+4EDiTo/1cE2LiQ9147o1962ig\nBG7x+RYtol0UN4MoLg9z9Wk2ZAveIWUq2v/sL+iFTwkYAAyLYcW2mZ53n/3d\nE+4RU/yauw9WrIqAcXAu411mZJb/EGI0SFjAoesgQTiLhvq1GZfVtc2vkjLR\nK/sl4TTsLb6HPwOD+NGSVH8MgejA5jbXeaJvxESEUBu0FThRxGVGgsYnWTQz\nXdPoi6mICzDcsNOQIhnCUYVT5Pc1JDsOMrBNCmBuODm2vXLRBEz20q6u6oND\n+/so\r\n=ewNS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"b61cab7746084e9d2717e078206f6e074bd881b4","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node --max_old_space_size=6144 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","dev:demo":"node --max_old_space_size=4096 antdv-demo/build/dev.js","dev:site":"cross-env PORT=3001 NODE_ENV=development --max_old_space_size=4096 webpack-dev-server --config antdv-demo/build/webpack.dev.conf.js","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.4.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.21.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.1","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","markdown-it-anchor":"^5.3.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^20.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.0_1612619771181_0.0360150481419077","host":"s3://npm-registry-packages"}},"1.7.3":{"name":"ant-design-vue","version":"1.7.3","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"92d0d438479fc26ce64e0bf203d135fc4f9fd5e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.3.tgz","fileCount":2608,"integrity":"sha512-OuJBZmpcy32OvdvP7iW1EqdqU6l/dta1zcQ/U0fep7EGksPviVK7ssifI5QMZFQDDsti0dYQhCEOZWUG0Y/xxQ==","signatures":[{"sig":"MEUCIHwSFzuiBU+RDxV5VU1O+xxwFOUpU0BEg+qG11dPnBymAiEAtvH7zl6lukC0ignmAPq3A/O+89dfYP/NfY2aEnrzPlY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39240160,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgK4BdCRA9TVsSAnZWagAA5/EP/1KQmXbqlsbOs63S0ZB5\nzakSCMug9ZxU6L4aT1iST+JB3tX75K5gs+FZiIiewlTP7aFn2G9IG9OP630E\nSp6pC+CoFKZqOTVvcy2rqj0IwreSeWgK1BpbfvlJ8Z7yvs7E9m3M5XtHujgt\npBxbHFH92QAvw3HBIhzXrrUJ0DodzR0uW1QbF/4eBQYDcgxM8NJ0DnUTCiTX\n9DWoQNkG+deblSUZWVeGt7MURZtl6oxvqBItvQ6EBvXINLXds1dfhW+wLfWw\nUk+Db7tZh6Jj/tAnSmCGWzksr2YTknA9sohGEN/1VPzXddBu1GxwzAOwLpBI\nuHqw/mpNppkuSNSGzTrE1V/GYA1U7HefsBjLvbbugRWBAizsNwmefHgFeSqT\nyRUl3pRiEhtqBM0AyO6pz/uG3zZKw34ovUAef/48DYDBgWoKGFHcdmpJK4Ps\nYKAxbhCwfdB4w1FKuHZW01COVZeGEtUWPsp4EZTMpO2On0iV18gErbj8WiIY\nwsoaueVxR4zTdKvHMWa69LJ/MvVELhjggacsUUJjCYUgaPGWXu8FnxOlDx3D\neBJieFBSJfzRmNxFgT9jjNtsGbf3Yw0CJra81JqqfwvUQAS8n4c733I11NN5\nnd0zTiYZdd0eB5xoodNwQ+uTv2FPhvojj9+o8BEMof17wq9P0LttbBynk2be\nucOf\r\n=L/ok\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"961524b0a7b4c011a134b7748c8d5c09b54f5fb8","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.4.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":"^2.6.0","vue-template-compiler":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.3_1613463644451_0.23089186789189098","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"ant-design-vue","version":"2.0.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.0.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"3a5964523aac10fd2b16d84d651145cd2b65f1d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.0.1.tgz","fileCount":4539,"integrity":"sha512-CFIF+srTui4ZwdKPBXNoFA9/0fkSpypanQeOts0PAq1vEuMLxUoZHapDDn7wzsxZH3sYLF+mvMp8gYMRkaNn+w==","signatures":[{"sig":"MEUCIDQ9vw4J4WUVNBPv0cAsGP/c70tKWI9nWekRHTGDLn3OAiEAy5zwmAd4twgRnym6u9IPOucgEyP2f92vTgxsYnzrlUA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":38392878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgOmZkCRA9TVsSAnZWagAAnQIQAJGposwBs6LYwFMthcxU\nMghvYA8ltuGj97Rq/TS32HB2X3fxiv01gIAjx7FGIJG/iIzAkxZHhHswcNs9\nKfugjyUmVXd3y83Ov89vEQkZFxNyKgiLhYHko5Qlu65G3/A9omV2qKABBoqW\ndKEnJl54vkGnf543Oe1RLJPUwfoCOSeallieXl8aYE+1FnBKeTsvrFeauxpZ\nd3ReJyEbVDSk2mtRdpgOy6nc9yCN/GfMXAZM7htavgMXylBT7ywbH27D0qQq\nugox7/a/L/6bLS0UflhBi5zk9nqu5geJf1yRF82HuMlQyrTPzuQqcHLPM9b7\nx/ltjsOegbiJ33IsoO71rWg5g67KuwdDVOqEAab+SIhFkGl6JZsr75DzdBD+\nRqDTt/YOW48oJPM+XpHa7THA5kT5fgjMtLjLc0ZZrIk4UjKut6002odi0X5a\n0IafQunL6NcNgMKFsoaok0k8uRg0qegHaWvG8gSZ/fz2X6ragMZiigBeaO1j\nQLmVviaAD2CoXKMusVInPZXhIkZfYtyzzsChQLIurDJqYIJjiVsUe2jyNDQ5\nPvFgNborHdKOLY4i2EFpWN+y3XcYb9hcmv3TbF4yPahRpQZRje1p7YHX0z/j\n6+QyoUg+c0XtpbNmNK07vyZJ7R7pcbeESz8CqTa79axaeOXJvanNqYilzeK6\nq+ZS\r\n=/h8l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"bf717f12263637d46063ac5f6dd1fd0ee9ef2b47","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node --max_old_space_size=6144 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.4.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.0.4","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.21.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^8.0.0","@vue/test-utils":"^2.0.0-beta.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.4","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^3.8.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^20.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^8.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.4","@vue/compiler-sfc":">=3.0.4"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.0.1_1614440035533_0.1322340266298463","host":"s3://npm-registry-packages"}},"1.7.4":{"name":"ant-design-vue","version":"1.7.4","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"854e90985dc0fa9ccc6d681c104560c00eaaf855","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.4.tgz","fileCount":2606,"integrity":"sha512-f9/4I34Yq562X70aspSFzw4BCuKRICzDvIocXpsYCC+B9+kjB8db246fpSMtV/1anqxcmGHf7Vh0XJ+ovHJKMw==","signatures":[{"sig":"MEUCIFgF2iJ/BqJXai48M8QWBH/zFW79Azo2heeF9s8aiW/8AiEA8fDyvn+2vh/CTE01DPOE4eJDpHPcxkyDd25XuRx8xLg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39212736,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgO7yrCRA9TVsSAnZWagAA4xgP/39WDm2dochTWUBh1Epy\nuwTOatR9j4jZVdu7cxM03GuC+qmO+XzzN2owTLVNVZEGxWQnhHirODhBYlWF\nqY9m+mlEgoI2Z/E9b1zd0r+o3PuZUZU0mxzgEjx4oBnefAxWouJ5ZQpXO3bX\nt4HByd76V3SVU2Xf5QnPeaP79igNbvhueJ0VbK/hce1lh9VfcjHxegJSp7Vq\nTqdt9h3QBARBIT3hxTvpVWmAeNrG4t1wWXVkAQcbmod1VN7+8DryB5c5SFFn\nXHJqYuVilcCv/l57BmYLPtjF0XZ++7V4OVNtpyKAc1IU1RJD3WXM4Wh8+0xW\n8fD8CIFKQYcTZUU9N09dHt/GNM670emndHwKlnb917+wPqjkzPNf5P5OhgHN\nZOyC1rfc7sDQKqJbMrU4ZX7J8DWrINb2f9NnqCEcT32pOafPlxN2cnQyYhhM\nLqjOIpQGP30bvXdRB6BAT4q2QpRB+gSWPk+a040V2xeHjE1QKoMEXyjXin/q\n0S4n9KYvyVD/oO9c3ZBC++R0AzhaooQIBZ/rL/1HQ5XlQiBalW9IMMHARmzs\nLVovl1XPiF/vtoaFef/279VGFvTo3Wa8mkFqUyi9drzPAMkHFM31Bg37NzbP\n/NoaDd0wpgULwbwyMNtq2SRVgBiFPYezAiHmNWJyH0YfPPMnaq7l1iAsQ8SG\nQRjK\r\n=k5qo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"48181af9d6c0a5613e2dd448d690b2b460edf3f9","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.4.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":"^2.6.0","vue-template-compiler":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.4_1614527657399_0.4541811934370892","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"ant-design-vue","version":"2.1.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.1.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2489240f638f39874281e237544b857ebce52d18","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.1.0.tgz","fileCount":4643,"integrity":"sha512-wzgwHRuwZrSvixccNlvas2gTWBkmfMrifbSsP+ga8VV6F0C6DdlimeFo+P99AxnVgpNVk8OUq9RVDQjb1UGk6g==","signatures":[{"sig":"MEQCICUffVyZ6GKJFBVXsotDx509yy10MskrCBGx1mZW96QJAiAIxF7VaUjm5rUSekjuvsqUHJA6JpnftQ5om7Z2NK/mAQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49523677,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgVgaNCRA9TVsSAnZWagAAJDsP/0sI07oteW8wcGgfC5+O\n6yKndPUCeYdtmoZRGebbF4Mmj2Z+lHntXS1Dl1GGAoiYAyjG8BnJbF52O1uI\nBjyoL7ZdKZU532DhguZZgGy+OHNDFiIJMiXcjpPj+dfGi/NHYe0onoOqn5UQ\nhGN0CVvUQ10sDEodeRzseVp0P9fXl06jcTGKVn4cArvfx1rgjXxITIz6cP5q\nz/WasUI2fyv1xCe3S4ZnFL0EBHEbmv2lBoE1eiioPQn/xC/tVvLsphln8klm\nsyc0ulNcd9x4ZDne0/BHg+bPpUK4RNGTo04cHo5GVc3l6rExaeKWwjjlobbo\n7yJ0w4ZaZOfDLlNALMIEuQUzG9QnbleHRj9S0zSc4URTIdPohlauWp7qBG5M\ny6/uUYo0NXOXerzJo/xHrtxjqMm7D8fdrSxLYrjKZMQuRPAcu6C8FfvZjSe2\nMW1+0TzhVIcyj4FZLsH++0FBltzyU394/nLNOqXAF7ZVzqMsLANzKSFUOgPv\n69f+jPJwpEFR+RrDlfoU422IIUGlZCrI91gCPY0v6YzwgnRgjcg4wG3UMj4k\nlK4YHgh64gXiE1bwqDaHxMzTtkIBqByk8eennC0pTMD4GDlMvqbh217104Fy\nrW+hmu50D6zs1ms9fj8dSTMaZKdRwKe0MlzShrZcDyg54HtXjBimyguaS9K9\nXaJg\r\n=5cIn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"e30077dd8334c5aaf2c094a46401f10e6f662ad9","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node --max_old_space_size=6144 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.4.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.0.7","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.21.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.7","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^21.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.7","@vue/compiler-sfc":">=3.0.7"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.1.0_1616250508113_0.3062711319535665","host":"s3://npm-registry-packages"}},"2.1.1":{"name":"ant-design-vue","version":"2.1.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.1.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"5c2f3d86177e197f6dbb167f691a9d10104e61c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.1.1.tgz","fileCount":4646,"integrity":"sha512-ohTEIBFRkODRTFXRHeizL/uKNOZY5+4r2y/GXiKEdvrxiTRgHgDNMWKsncG/+G6MXxOIe2Reg+r8jHS8nGDqtQ==","signatures":[{"sig":"MEQCIEp4SnoYKspi4vv/emTyStlr7W3oW5d5GcLtIUVcSM/rAiB02eTphW0GkXkqlxT52Wk+l4F1cR7gL/zEAI3o0ADxrw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49994845,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgX0L9CRA9TVsSAnZWagAA1cQQAINjx2KfOiDIGz/ojl6W\ne04km5cl7XzzZ3r/hclKzvbOP1V/UztAGMvXtDkPpCPHwSG+XZI5VgD2AmX+\nS1pZ1Q8nhusmtSi3YT8psF7vAhhLTLBrrqG9xX2ebG46eXp/7w0yJlu18fbf\nOu+UNNr2PqyIt1t8UmPatgEVPECRufDGhH7vpgbeVGALmJQP1TF/RQQ03ZwK\nINTxG7iDxa5Hj3tyueH5qs+H9oElkO0OFmOppKkOT0rM9wYr5e6QYFmxZ0/7\nJrlP82tnLGM7TMR1lbG88Y+Y0F3d7kzI2ApcbDZq3nLvP1x+L4rcTPEiLPo5\npp7pK21E2jBkB4YMYVEC+NMKMyPiu1GlqiccyD3XFP8n/mM+DaRqTouVObfJ\ngbnOIwVOJ9oZQzgZhRcAEOU/lEwlt5lnMWrPNNvJwL5YkwNnjYkz5Kz2zFUm\n0LvYPq7ehlniMe7M4O2I6ERtRyuzBf00pgEVgF6/lOggPbXL2EClKdvA99zi\naK8WS2+Zrq/PL01fneAKtyiOMD/9ony6qH/B7qTv+2V1GAnkeHq4rsRwspYt\nHL3AAiIfeWwVGqzIlchQR64KZEAVGfn4vYMMpSOeywpccGBAPxG8kArrODdH\nASPQXcihBuuKclcbjcR2rOOjug5v0+Iw6qlJATkl0uI3Iy8hEzdN0o3RYEuF\nmRJS\r\n=8oPI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"625c318a7fd4f710c1f0020506bea47473b1c9f7","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node --max_old_space_size=6144 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.4.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.0.8","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.21.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.8","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^21.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.8","@vue/compiler-sfc":">=3.0.8"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.1.1_1616855804702_0.770561183966775","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"ant-design-vue","version":"2.1.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.1.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2065d7e63199c0c584919458af57b6a0b597f677","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.1.2.tgz","fileCount":4646,"integrity":"sha512-gDG0wauGVt4LE63behrJaIcq4BB+dgs+dpj9jz17IgKr2MPYSEeKetU/x9Kk8d58cGonz4Ulncg7fBZJ7EljsQ==","signatures":[{"sig":"MEQCIGanbwRdNw1ILrxsWoBAD7h+Ns0NZjSK+QC+Vem63IzCAiAnkNImQ73X85r/lgDdUAK0TLusmg1t5NC9hG7r4naRrA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49994927,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgX91ECRA9TVsSAnZWagAA+v8P/0gCZ2Yomn+Ym4/1tRbs\nxUBqt0FOAcpH4By7MmZ8qoeoCktleBqeJ//jQdMZtQ9FY0OehBjWZiGNJeFL\nLusH4y8z3BG+H1hLfsshFVGQGAj+H+dARqQU2hVhBYB1LEMqNxP3iz/PNdIs\nZrkCTEklCTh0+2dFEndxkfRQm7kVgW1wxnU3ro7iWH8tzkk0frxZ59+8hRze\n6qkHQCrQJnDxhy+OxOxXn+tazrqizTD4bDxrhpYxJ5MNABpDjtFqiw5AShKk\nzvSfbJzYiZH6MQEZfrUrcnm7ofPgCs/DacEYSGm3x6mQ++XmRQY+6kGGbHxY\nlv3H70Fb91qZa74Mbb32gfeb48Y/OQ0JzQnPHIX/bzVFSMNhVg/gZr8UGfSB\nUv/ejvXzwdDAbJEqvA5sNPQqhjd6S0q3iS0Kn3Z+A/e3+V/EOcwKKHFlXky+\nq4rwgq6obL42UsL9yG/UrwMQPhdMItxlEmJA84wWDtg4DKmSJ3M3X0gUxahF\n9WLAxd0qtiKMgV1qMyd2cOTkdVnzHg0c5GeUDHeegGE9+Fy+Q7gc3WfScOE/\nnzht3J4rJgOxuwloJACgH907j9B1sqzsq9k0BCP7GsWK1L7kFawv0SU7z1W5\n6KQXH26XKtx1gt6n/0Vdt3wLuGDwRNuCPt+/J47dKcWjAwLyU91445pqkZfD\n+VOf\r\n=Xxql\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"a8b54e85124585de01b869bd137df48372bd1e08","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node --max_old_space_size=6144 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.4.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^3.0.9","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^7.0.0","axios":"^0.21.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^8.0.2","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-core":"^7.0.0-bridge.0","babel-jest":"^26.1.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.0.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^4.0.0","@babel/core":"^7.10.5","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^7.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.9","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^21.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.9","@vue/compiler-sfc":">=3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.1.2_1616895299833_0.7200029235859211","host":"s3://npm-registry-packages"}},"2.1.3":{"name":"ant-design-vue","version":"2.1.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.1.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"d535f4f88f7405c1c2dfdf27d0d1b39438b28a21","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.1.3.tgz","fileCount":4629,"integrity":"sha512-pJy8fiMXXkqrFaarTWdi3gkJWfkmR9xomdTj2/YCoU9lIXT7O++JHhamDQkUyHQXCj1OHaLwWp2POeNWS1gaUQ==","signatures":[{"sig":"MEUCIB/hsPbR/Ivs4BzuuNT0AZ/5ZO05RPeF6WMV98lpAj/2AiEA6qpUeDHp+PU/TRmWJfeVAsy0ZYxt8TjQfq2n13BFnSk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51308110,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghYvGCRA9TVsSAnZWagAAHH8P/jNzV7oAiiSR229Eawn2\nIqa4t55QIsLLPuIMwFwWLEbZ9jJjANatEBR+pLZCwAmovoZy8nUkClgGHOL6\nA5IFLrOYJQo9yv2iH+S2dbN8aR+NErUXfTpy7eNwFckemfuSvTyRFRsqIOwl\npgmMBiNgTKtcFC+qem+DlRysUeIhWFMajBfivHEPPmP0Ona7IraF4ywXc+6g\npGfgKU6S+LgAGxfjKBaoW0tXuunEfpXdQrEWWN6jlYJMo8KO9j0VLeNI7t/7\npgDXAmNopd3bgAclMKJ5IxLIZixKuCeAH7jZHzpnLQ6cSSGcPT9uN2zZB1Ak\nCR0Ik16EtbDSl5eSWEnnqy7P/E+7cRyWjJa4FmxoPwczyhgF9rrpmYBK2HW5\nrtJeKdCRPTUqZfNQ0O3UiqjICCXUsEzaaVHpaHg7Ni/u0DY9NJX1zvdZoPuS\nS8xzHppEgGu50aGeYRFCiEvBuhKttx0ldHGLwcAkAH9ZyKADLYFYZyxgi3NP\nmb98pxoQ7jU5IpngxqbwykLYF5u0aGGYyWUZDWAc1Bi0ajlfpdDhdq8RiEwA\nXvAtW87v+zPQMtd6UqISKOJE6sPMNgzEbW/n6eHTRdIuBY09WlO6MglPDxYA\n7iL/OrrgAmyeqetZwPZfENvrHc7nF2uvVtAT16kijY6S0iAYwCxO3oC8ZSUI\nkD36\r\n=RERQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"157d560d09c1ed1fb622de402b252d1c43bdf4bf","scripts":{"dev":"webpack serve","pub":"node antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.10.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.0.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.9","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^9.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^8.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.9","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.9","@vue/compiler-sfc":">=3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.1.3_1619364805544_0.1368171530417961","host":"s3://npm-registry-packages"}},"1.7.5":{"name":"ant-design-vue","version":"1.7.5","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e7ed04cb358adc56be02c7453d2db026d2c405e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.5.tgz","fileCount":2604,"integrity":"sha512-QVrirCz6eetzui+Dv/ujMqUwIr8e/2H+pKr4VC3mpc+cHkw6L9cBRJK7DhfO7GTyK4EWKkEH3lfLWlD/XjUoQQ==","signatures":[{"sig":"MEUCIQD3MKZdZO9zZMR+Z9XPyrJwPRI91zpktvTXTszPTSpkhQIgWWLYgssKoqSBsu92rX7ccy5B6k9fO6yW8k1S049YzCQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39084041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgl4l5CRA9TVsSAnZWagAAAAwP/iNB3m+/9PxyqL/LcATK\nPKumIb6caW9rcafApMpgqDWrdhALO+InsDygbvGC7gG6hc4OCG7RTR79ssC/\nupdDWtaS8c8cnKc4i1Zz50bZo4f3OQWRkwlXOdbFnpiAwlTCF9fy48NphjNR\njEVxTj+u6jfrD49s/JZpT0atsVPuEmU3g7V4oKuuI8lHneaCJBtNksFgNcLm\noJUizEtNjD2O5prMr/kNY6WzRPWzAR2qIcOwAetN3siQ12/wlxst5IzyUl0T\n4AmCvcFwAPmKiOP9QcRAdwXCSYUZ8VawQMMO+QSde2sVPBYKppq/jJvjhaI2\nhLZele88fAeuBhq2ALOILLwgcTCf7q/k1qSmZnGyMrW4MsVLA3+sUMjJK/Pt\nGRGVmI7qbmRKCRC2Wus8iHqeNjjqK/7WSEj28dzUfoEA50bix/G1bR1T4sy3\nkZQJ+CGjXwZHy6xPlpcFES6oPyOF0SPSPwAJdXYOCvwNvFu843mU3cxbSWWa\n9yrZ/YymWkpncExXQFdlXlSAnsNANcBW3ZukjWZjkUJI7tdg4XOp9xVC/uL8\nSO0a3zvbpc43dvkxLcsWJSPFWY8Byfr/AKicQyr9dVnzAtYSPTzHeViXbLig\njwLOUb7QkwbUI2c4uNHAhAv6HJ3TWzuOvTBTlXlS3jyvIegiktXQNsv616/a\nDvbU\r\n=z9Qt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"23fb9fae7c213f8a4e6cdb5820c0a8076e42df0c","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.12.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.6.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":"^2.6.0","vue-template-compiler":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.5_1620543864725_0.9971153179401604","host":"s3://npm-registry-packages"}},"2.1.4":{"name":"ant-design-vue","version":"2.1.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.1.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"631595573794abb3d359552d0c31f0ee1bd8bf8f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.1.4.tgz","fileCount":4629,"integrity":"sha512-Ikh5yyEkiGeWwSU15PND6BD6wWZ72q4ATmri1VdOr0/RSYVQ/soPLYk4Db362pvyNruI65sy1lzK5cGtzbqvMA==","signatures":[{"sig":"MEYCIQCMaxLWTexi/OLMHuhH21QyIWQnVu7KccpEpuRGD+mD+AIhAKzluzqKW+87wP9QIUAaFDFPzSnwTJrjxoKThBOYjxkL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51257574,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgl+duCRA9TVsSAnZWagAAm/MP+wZOdzZY0rddup+uFyMn\ncfJ34bcChMe10TyiqXklMD0v5yeuzoSb/ZSlW4lv8xKHePlSiTwQDmoXh2SC\nV8v+xYGCYO3pud8HFzCzVuu1GI0XLiC8dOdQwcg6zhg3flyG0IgNim2a6EIv\nBGvg/rf7wRjIvR3yehzdnP0hVecqfttrgZ2QJJpby53oHIHp0gXjLErOzDRE\nz/M+4QS/eG+6WyWR6Gl0WWUq+H9EFzEsY3czsfYXv8FF/ws0MPBjGvXsra8h\nwsuFDPhszW5Zz9qve5OfGZqevDIuVhkMlwSDIcXZ02bz0O+C8n1b2Sp5f4ZQ\nGnoZwtrRgl2RKGPz+v6a2mO67JnPRxftk9NQZBFBnHPrJJiql7COUuQd6yfs\nKdKRLBj/x4M4ppg8NhcMppWeFZ25qpnJe1+//rj1QuDmkFXLD0CGUCeRfjsn\n4//zFQ9HS5KT2ciGj8mxVjc1XP8J3VduvS9mgFN7RbMct2xzOLi2GJLXfZjH\nXOmBzzVFqWV8nUpXLjG7sn2RQrIAdclsaekFznjDAFSi0UxcLm0Vq35Xt4ox\nSwgmIZ9111CN5uUiXrnIPrCGw01ny98BwKD8XgOpTE787+fctJjcnmtOaShy\nbjIH7Iu5/WA08gTk9wvCv5fVGGD3YAQ4Nf8NLfui37aOkrb3UcezJhV0cYYV\nWe0p\r\n=8Njy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"726f6b4b2da48775ede1d71e51511e76919ef550","scripts":{"dev":"webpack serve","pub":"node antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.10.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.0.0","dependencies":{"moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.9","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^8.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.9","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","optimize-css-assets-webpack-plugin":"^5.0.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.9","@vue/compiler-sfc":">=3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.1.4_1620567917966_0.04587679941647371","host":"s3://npm-registry-packages"}},"2.1.5":{"name":"ant-design-vue","version":"2.1.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.1.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"3f907d430c8aa9e3e9baa6afa0ce5d8d6a1e2606","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.1.5.tgz","fileCount":4633,"integrity":"sha512-fPOs8it9mzBHQ3K6pbFALnDVCHhirxpqdD9l6tOM/jfsa0hoE1w0p/ZIdcFfqjpjPAT+4ag0WOUdOlHEn7ausw==","signatures":[{"sig":"MEUCIEJb6kSKv3JZ8Gh9B0nr4Ty99qhutNoLmGoC2FAOLuadAiEAvddgE3EjOX6e1qnaAo6H0Ms1AWZjsO/JLYoQ6eHzm5o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48408512,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgm3lUCRA9TVsSAnZWagAAFq0P/2YtTK1hwnBYP8JJQOPc\nIA8CZJzor2rx/9IXBVsiaJAlh/10aIEQ4uu8uPOT9cinRTxAu8ZA+8jdEXPz\n78ID3tQq8mX0LooUeA2VGKj9LVFiM6GdDXhel38PR72EOzk3YWtJT6lBpbPu\nCx1qpod40U7jF3njksd0kZEkLwMJ77HnCVnxkpBdjnWyLPzVYK4Oz96r9LZV\n61zEXcbNcQ5E2MTbGGYbai0/6x5ED/5KiyUJBb7RLwj7S6/8xClnm0SAkDdl\nu5okGaDt3wkJRMPXS/xn2KW+hZaDRGj/4iipggGG/rvHJhs99dosl374CC7L\nk9XkzsAwu9p20NncHgVCk9o3ZzBKfeUlGL1JC/uVNJ+5IZCYVuSahcO1KfuV\nuWOoLMwT4pzYay32/beBGTkW5CSvMHc64lnR6FENB+2/ti+rwiEpNu845yhs\nqnymjYmseCljfifFMGKPd+2zihFxOHML28i5JDhwwqNRaS6OhNfWXn8cYgLT\nFDhlUValkwUfuH9/X3qk4oVob0SHRd13Bfs8GN8jroeinOq0E+rGSKYVea2N\nJPjDV9VHCnZi+lu/MQsqKRQrEXJO61uDzJYeKPCBVA+WMdYA41tfRGuyS1PK\nQCEPqIX4wiy1OPlvK7KHM7cQ4WmWGzn3ZtSZb5B2lW35UrZKo49jGaXli8ij\npHvf\r\n=HLyp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"4e9cc5a75f7e1d8382a728482c73b22c5487c333","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.0.15","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.4.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.9","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^8.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.9","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^2.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.9","@vue/compiler-sfc":">=3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.1.5_1620801875311_0.2801056927500767","host":"s3://npm-registry-packages"}},"2.1.6":{"name":"ant-design-vue","version":"2.1.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.1.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"c51cdc858e1b1b8b569f5435eb487f53a3f1745e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.1.6.tgz","fileCount":4633,"integrity":"sha512-qICxb6Y4f7QuSuh/jbLhZA9SkUBnP9xYfy/E6yD7+1fg04aAzmRK8oLv8ETuGTrROVdSVeic9v/NS2BXEuuARg==","signatures":[{"sig":"MEYCIQDchT+CXZ6GN4jWIvBuFiAr8/upTDxnKUIXUFx2YeLgsQIhAMrN7VoLM4/KRFFgzpWkxZO1vk6Tk0AgZxhOkJzZh+bJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48405889,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgnNt7CRA9TVsSAnZWagAAXFsP/2bN2LJyRJTO7zHzvgwP\nUxjyxWphggwAJ4zbNwV8KCd3JSH8rS17PPpQyibHgIBos/HS+xLMKpOFMdWX\nVC6yIuWVAKC111qyEcegwRnzA/KNRVFPovEZmNt3Aj+aUJFEfHrSpM7aorUu\n5fNwkxWw3bJU6H0YTf2wEeH6nPnmHWPkNKNhqqMYBC+uLV1DMlvuUo4y2G6/\ngY8C4SnNzgY5/oNK3F4zggpVUnxJWyiT8YM9q2S30J5fEnGCNc+0srgvDfps\njVRgYC1EZWv5/mPwMBZ0HDspROjxowEtgiGNyHlQicsFCUmlLtSKzTzmX6RM\nKN3tf0n1090GrU61yYwqT3K5J7rrnAFyOYVE/YBdGh87jDX9KYi1lfRlF9Tz\nCRjDUQmP8ODpkoiBQiMtai1mQyEtAAzWBUqfyvZX+D2AoS1u+IM5As3qBkS7\nckxVzPwugtZHCn0BZ8DZ8t7X/vlpL70jOkGrrP1iKLtKYx5h/R6Ri6QkPKVV\nboSiboNT/Mr/99YyS4019QOSmjr5+4QcLjqtuJHAHHFqqFIiK/2FpjWFH2Zi\n9h7xEqVnZ4dD2ysj90jTrw9quaJjhXjIssL6QxBf4UkpymEJZVbiQfr0v+Wr\nT+RWc7v8yV8dBr5mdnX3TIDkBeMi41lHVotl42l5cLhvBHavGnzQT0KdYpOc\nUdvB\r\n=9WUK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"07b4150966411f32a36376f9f2b0c7615b0c148a","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.0.15","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.4.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"3.0.10","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^8.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"3.0.10","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^2.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.9","@vue/compiler-sfc":">=3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.1.6_1620892537724_0.670436381628047","host":"s3://npm-registry-packages"}},"2.2.0-beta.1":{"name":"ant-design-vue","version":"2.2.0-beta.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.0-beta.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"83efa579cdb26b8a3c0462948f5a5656f9adbb7d","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.0-beta.1.tgz","fileCount":4757,"integrity":"sha512-Si8Vok1WhG1CdWO9NKxtYG1eefl3jd8l9wBMAU6p4D3fujGkGrczcQHBnjPnDGIBzTuEtGqNZyBwLDmK01TgZA==","signatures":[{"sig":"MEUCIGvk76xpJJZiGtCUIa9jxUGP5E4rKwDTE//pseJTNFMGAiEA5AkORMzRmTk5DAJYOg2/ObtYfVQsub4S8HSCZzijjKc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52512698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvesPCRA9TVsSAnZWagAAN3MP/RsDKCl6TuoPQNYHEc7f\nzzLGRIEiwZs5g0Ghy2rasZ5Qr5MlUfEBuiC4J6Rp2ed46zdLAJNaNbnUZD6B\naiHvNwNnv/h4Rhps18EqV3Y1AtQeib0KqkNVsrYDsNT59BXWnDm4gk7iSnuE\nYKcwhUhkvYtiNLZ4sAdCfcBS1gG6w1IFAFfIRuLLzgIZWIn7NOOvgLzp47CZ\nZPyEtMGGcYdDsXD4gF1+vNrv6WDplw2dwlzCX81n/HnwTlQBPS/OUKLcNzjM\nluZfSUE9Zsa+YhM0khqnDIZeHpCnr8/4mvhcp9X1SLk9dJ6VxYo2xt70KcXl\npec7mi/SdMF8MrQADj1X7MctX3N8LDoJweZnW+6AGF2vWJymYpgz8V5C6fGi\nqmVXryg8c+ec/o5BxnAoAHk59vCC85RblN0jTEvpGs+2AUjRcFb6JtDKhFeC\nvzq9vGQv4OdQNpeE1BSmrmMUpiQzyNGvX00irhK+/9KLLlcc+bpEkN+0TEiv\n8+17cRV23Yllv6m+kr5U8hXzr+K59FhjBkDpJQW0fqY3VpeLbQGF4cyFHUDV\n6gFA0YdCXrSgmkQqYLNhrmcNzKv/f4P8lUukKqymgP/BkjW9qkdUlzdqaDO7\ndPPMlHwzyxwafFcbLu2L14J+vCMk0ai8TeSjEPZm4IqQmcNcf0o13hMA7bkf\noEbe\r\n=KjB/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"9e0df41a5561bba9f439d75cfba0263c5e3d0bd1","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.14.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.4.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.0.9","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^9.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.0.9","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.0.9","@vue/compiler-sfc":">=3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.0-beta.1_1623059214619_0.5198137524013118","host":"s3://npm-registry-packages"}},"2.2.0-beta.2":{"name":"ant-design-vue","version":"2.2.0-beta.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.0-beta.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"f6a97245a81e4aabfb792c3ff17292919a2112a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.0-beta.2.tgz","fileCount":4757,"integrity":"sha512-Dqpc1J3aG/beww/Hb8g3I+eDAW+zfxvQNFuyZBmlI7pKAIV6GZOOtQKI4oq8wsvxr32TP/Xl4/ffKN2Z03aefQ==","signatures":[{"sig":"MEUCIQCXqZOI+yzSqpf0ucmaPpNk/NZAvBHuOW4FogkSWnDW9wIgauStYFzK0VCopuQrBLv5Jk9XgLIdiwvCYWRenHSlAHg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52824012,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgvxksCRA9TVsSAnZWagAA1bwP/i+I2fvn2jwLnlQjTCgG\nInp8UXo3fHlBOMlAvH+AKhagLUJJN6sUq0dh5QO1dqkzfOPyrRvZMCtXTZAu\n9+0WY1SapawgoiIEes+06vlm5SrCR1ZiP9oRzADqLVjWxiYJ8U0hGHm92ml4\nMUGYoY6/HG2D6xzosyBHQoM/mxhX+6XKgjiAvzSq1akWhng9EterDSKjpPde\nTjsywTJA/9UO2CJ4SD8bzgaY0kPkWyunSdpvZwSkyw2lO7JRcF8P7AV7sxKx\nSO/A+apfK+NohqvoCKO/rTSSWzr4v09FNbnKXc8tX/CUVlbOW1pGysPNXpNm\n+0dEbPsk/F/90U59QnUyoRK9MOeGBeOFz+u00VPK8XdpQDEbSJFJrpQFnQUL\n8tBH7B1IlX5qajTSHRfsHXyobJX3nYeFUGq45TF6JC6Ca2phbY8laxuidvS0\nDaNeZJgMFqJrOosgFpDiNB62ic3xyAEYnc6qnBAs9bOoqwKW7ows8BUxLD1I\n+RE4VCbvadLQdeHYImhVBwkC968KGL5IESoeZ81sVjclHYPS4xc/mV7XCm20\nrFPOhIEBaCYExwdMkZgQxtz0kKeP4mM9t+Astx66b63UPuWMXxV9LQNbl3l5\no9sc4hkZU+7rmpCHCS1kC4naNNE7qa1LlYH2GWIoo2Lnxlsh/fDL4AriuOKS\nLMmK\r\n=YbLS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"7e1301ad7f7cad1949d3ce6e59acbd5a0c32e290","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.14.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.4.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^9.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.0-beta.2_1623136555933_0.8775072685596061","host":"s3://npm-registry-packages"}},"2.2.0-beta.3":{"name":"ant-design-vue","version":"2.2.0-beta.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.0-beta.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ef01b99b8b823a00ace4d373539bfd393b96a640","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.0-beta.3.tgz","fileCount":4765,"integrity":"sha512-bFcAZK4mUaiHQwYLof+quY/6X2HBwEAYXcEEe2bOzAZZ8o3dTalpkEBAYSIPAGuQ+swdWRGGgEMIVJoeyW36oA==","signatures":[{"sig":"MEUCIQCzo5qbZ2Fb11iJBPDJY78T6UHhXZkZegYIKbxTuPFX5QIgWN0y2Mhg9l1/vcFFZVyvLyYXUQKmj83F0Zwr8tOmsGY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53024544,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgw3BhCRA9TVsSAnZWagAA6IoP/AtydjKVOm9NValQH1pi\nnvUqRm4mNITEtOXSqnq9kyXwLcn/txpBP4op4eY5toa5xx2Piu2Fty9RDNkR\n3oIbPLsY7S53Z/wj7gnFXKlQNL8JSNwKVPwwnlBk//mOgae2Wa+lEUVN2K+9\nsKCKMu7b05PR4+juOIZwmMGZf8dt3nciiJPIn+y7SZEG89k2gr/dEqu9iiXh\nGzCELRAQv6VsayV2lav0VVu5FP0Sr1MKbsrT3tzaKwINFAmyEabCrjgW5oJD\nJZH5ZokK289/dz/RvDzanvqVu6+I/SR26XnTflphnlZXlYsWWb1yKDnJQJc/\nHwIYEaj04rF3auQepLqnxPwbu2EkW/94c1t4pbERYsJPrkX58v1Hx9iE1NTm\nag5lLo3Bo2KzyQOs6ukCO5G8cLa38RkGxY/MhOlpJLWz3rvX+9Q7pXVny5kD\nlvk9o5Gsj/xN3F4IyBCmipfWWwoqUbGBJ9oisl9k6qXztcUfL3QX6UUzYAro\nSA+1On5og6dQiLqLKkI/tkhoibgnAKeyKxwUYANssm7ZPbzeOJAwdVz25hTP\nuMc8u1gq59TilfHc6/buzcwEDBuYi0atLU9qUOQlpqyUJCMlTs3OOs3KG0fI\n9xr2oqlbXNuKyHU+A198+skEq3k15eQuqeQ/RHuS8bGX5t/sXEKr/6d1kJ7o\nG4vs\r\n=mxid\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"0dcdd92ba2aaa18945e8acee5575ba9c0a0a40b5","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.10.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.0.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^9.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.0-beta.3_1623421025370_0.44655602294860564","host":"s3://npm-registry-packages"}},"2.2.0-beta.4":{"name":"ant-design-vue","version":"2.2.0-beta.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.0-beta.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"acd4a62fa06dcae9bce60bd6a30b3bd32a249f6b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.0-beta.4.tgz","fileCount":4767,"integrity":"sha512-QDKKSeXVKDj/oKeZ24kXi8/ViQgugXpo47bZIGTK8njwgzYkMXSxuR5iq4tYPn7umtP4M8oWaV9Dt7qT3kds1w==","signatures":[{"sig":"MEQCIDq20jgezTNyPDaqdQ+6ikq5FIHcMU97MF3nFACYvde2AiBWPgSuOCyMVm05cFfY6GYW5gSzJi18puC8EU1vj7rcSg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53040184,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0DyiCRA9TVsSAnZWagAATCAP/1ORaqQLPVwRDBaOY7VV\nSbEHYkhGdmuSwCiLTQnuo/GA3zMbzyk2d6Tqu31sI2VkiVzAN71q/MAulV9p\nRnEq01+z7Vs/yelBmfnGdklyMMdBHx4x8wUnd3bJcZi+s6bO1m2TIBZlROIL\n5s173r3wTXY0w4ympgrwtUilQgmM8Sp+zNxQ/EYOEnsRrv3sT0fIpMiB0dpA\nKQNNtlyFEbPw9q4UMOsXxC29oG0xzCWEqwM+9f4xyzOoNU72uBpDGnBrmZdC\nfqqJ24qUK+E9LMLpaUSt4Pgenacdp5oAWzlPFrLzoXcxXldBRZ14QYbG/IsE\nqZ95Clvw+ngFAlddgwvf44YACxUcJ4mbsZM7QvzrreKcuGfPKRFyFuUQp/HD\nb/ohg7jLuUaex59NG86qL/G1YkoyDVo8fqPls6eMlVo3q4NCOFzaDfVyGb3y\nUYYK6c/EHIqDz/zodfsMtqozlYpHlMP+yc4J8lGYv4kwh34caq1ZXhtBZBr3\nzW3h3sNDOIlaKTIe31z3iiZ1YDJl7MggcCLl99xB5BBGIJ+Z6Abd5YnmFNh6\nlEJCC4WQjRccyY8qN3fWipNMDW3RlAZOdsw/Gk6E2aulP4ZqsoN4K9i6G2Tp\n+0R865IiV+IDlCruQAzbKIaaBAxTMxkB16VXE2ORSDniCzmNjVpF4c49bktb\nGHrk\r\n=VYDP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"3a93f198dfe2207dd327ab48ed7ccd5f3b4439ce","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^9.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^4.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","istanbul-instrumenter-loader":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.0-beta.4_1624259745956_0.1132361553621899","host":"s3://npm-registry-packages"}},"2.2.0-beta.5":{"name":"ant-design-vue","version":"2.2.0-beta.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.0-beta.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ecdabe06c0d168321c30525b822d322bdc9b443a","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.0-beta.5.tgz","fileCount":4795,"integrity":"sha512-g9OQC38j1gnunQ00Pll3bI809E1yuJBv5jz5fj+rv/OiLieqxPYSDKBvjZLOf7scMPJrPvo+Jv8DVlSpA3A7hQ==","signatures":[{"sig":"MEUCIQDEya8fRcPhXM+voQo8GJNUT190gccuQD3s0bfH+Fb4BgIgDXIIz8qIy6nVGkmOV6kTW9eu60CFto2uJpqmXnDdyhc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53243095,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1Cc8CRA9TVsSAnZWagAAH9IP/1V6/l0WLtGNSf9C+/+6\nQEhSsMtAxcdFkvMgbYJPZF9WLTtztqSOO1a1GTp8IVxFHbXWCb2STij6jXxW\ngqoymnZta4pttiRvYAAlPgHI6GWo69peLjuzPbofX5EDHR6L4+525H+KkSPI\nXQU5ynbQaV7R5Is8iyOjyv9bXA0BU9b0kgphE6Rhdx0VY9rBFruGPawVDjdJ\no4MD1htnfjhZS8kgg75xFk0Y8LZNMWls/oQS0DqTdf0HZHnTxYsHW2dPwsqc\nX2XoCi3ztrB+I6i5mUrNrdluFLMXgPaWo1rbeoTxUCuElHORH3kFRGUrJZC0\nhB5eCabSuibtnT7iJs1kZeifeQ4ypHCE5SVINtbdRxUiWkstlX6OG1oZoJoN\nn28hNP7YO9JmhqUa+cunL4ftOf9ClAxnnP/asf95UfgToeCOfdpdogvku/qn\nI5rUooHwLzzxFDmQxUojGNU2GL0JQCLXCfbVjY9yhTOrlO0VliYY20gUTuyh\n3dYDmSXaY63t78pfppRysk4U0Oa8q6ehh4l2NtKzlt+jMqk8bwX0O5XLF0CM\nLOzXKoQE1VBLCm8zMd5qe20QHSfZvkFhYPSvPFQRyoPOpBbSBcLnkij+xOLG\nNaEP8BVjcL9f4P0hiJPjoggAxWlMKBkaNAgc7I1YGddmwJ4QIjZj3RVFoKJn\n6UbZ\r\n=mNUp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"d7f6148f24b4db98006ac6d736c62a49a107c5e9","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^9.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.0-beta.5_1624516412212_0.4973739733625677","host":"s3://npm-registry-packages"}},"2.2.0-beta.6":{"name":"ant-design-vue","version":"2.2.0-beta.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.0-beta.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"14b20bc7723d9fc628c87870ee5ea4b78a220f8d","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.0-beta.6.tgz","fileCount":4795,"integrity":"sha512-t0hG5W62mHnFyxYf6rztQlaVZMpziyz7jTbeRibBp72h46kIrO3d+RdJhLJQs8T7gfPzj7jJmVq2KFn0s5QeVw==","signatures":[{"sig":"MEUCIQDe2zU2/0rCAqXHWT0gqL6l17UzGijqczSjkpf78uF82AIgJlCJ97tfu+hBt9bpB6oaNlmnuf53uDcSBRSTp+q85Wo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50729043,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1sp/CRA9TVsSAnZWagAAHQsP/2Pu3LtiF9rbD5AlAFGo\nywUt2D4iGfhzgly1/6HfIRtVL5P7qOr21m1o0+PMmSewE99+TFFgacsd/0aX\nL0992zz4MtjVevVK1xOfnKwGGA3SwXIbGYzvqVw0QFI+QH4qS77poWpGMy/v\nz5bfDAlkLuV/1RpdnDU1VVqFRMUjB6rKBXslCtd6ii28KDhtNinbNDPePsh7\nqxiHw0jJ8+nvBe7Kl3jmE6pA3tNjdvnErZba/Dvv0Raf4gwmJ+Rq4a/Zz7U9\nVOiOBgp9N3GXLReZUiai36quhsOpaEyUPmq7jMJudH1cSNqpIgF2iodC7Y8z\noknp3JVH2kQ/nsmCc5o39+C0UW4bHgmeKbdozCSLXuKV+7hVLX2fgOT+By6K\nJK3mxUBfFnyp24mPFDOH4vf/gjR3Pefl5WnrD6kQbbKVm9rmiQVeMULFWysl\n7dETWACIDx+g7V/T2l+NX6p/upfw7ar/6br/FSNLXy5vQDx+Tm/NKHhRiUfR\nF33iJbc1lzchQpeT5plN8DK+pxhHgJbydt1whMZ0BmcCo0T+ew8mugDsJeqh\nQURpM/UeOZL4hj+kIbqTZqvBfGFqZbr5nc1v0rRfO9CsgTQe87EuOP3pCS+j\n1u0JeYeHwO1BPiz1x8HaApAuPhNuT499Z8KlvmPHNbiuyWVoKa3cY/TbMA1Q\n2rIw\r\n=X5fk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"4a0fce5a0a705fa3a171dce75460e2c4b6edcaca","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design-vue/use":"^0.0.1-0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^9.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^2.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^5.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.0-beta.6_1624689278120_0.4183450832351274","host":"s3://npm-registry-packages"}},"1.7.6":{"name":"ant-design-vue","version":"1.7.6","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"976a84ff037c2e5f0586dcd697eafb8cf7983b1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.6.tgz","fileCount":2606,"integrity":"sha512-EOS6g/deT53xHxZDMOxedyBehXSNMGnxdOeQtDksmiRvCBrZs+yoFYoVOe9pmQ8EJ7XQLn8TMReiYbXi78kppA==","signatures":[{"sig":"MEQCIFQ6jjxSTapM/vIhsZK0iERph2+Dqv0clSRwuEb+icQIAiBuEKqw+FvK84aD6dlwFMnFNuSbVxLBoKEC5rciflFcfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39220515,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg1yeQCRA9TVsSAnZWagAASXwQAIL7Uypgb8ANmFALRO5N\nFiB6r0SrIYtPylTKk9XmzNqOrmMBDwQ1GdWx3/LfGdKrOAE3pAFvFayq6GqQ\ngjmGuk4B3T6W7Uch04KDjxHSDT9UHM9xE8pWYxnfqDyb1Ow21d9VCL0/8gQG\nvtLcs8vbxtHVFiforMmIFmtBBvI6I6FjB44e8kQyYjWWqSyHk3nkoyoQ0BBv\nnnwEA0SAz9obL+zP+aI3V84CorV+myABarP0RAoOkzAa0grrU4VdxrtiyKOq\nhccW5jYTYO6c5zFgBXMF81xnS5LRgZPJN88iyWJ1PDxYamOWjtXZvzpFhNzx\nfmfZjBu82Oq7IfPBvDe31IS1BgVUKHYuCjpxwqlATY1sP2RNL/fA92mavczK\ntZsrwWjW/TkNqO8A+hmwixIJYDrPAUf5TsaNMCMvsAxIhUQNDkzUTgPWsIT6\ntfqN0Zn0HSuFZadzfoZeb4h0pX4ohwlaksX3KUnQZ3MjjN997ttgFsxIJPk5\nn3uyJ5JxBsj9Kl/uCiSU019n+HIeEKmiRxaorfTjTWyHZpu8fVgicbZA5A9g\nRBlQlUlZK3c7DkR435mENXffPBVcNWFqJo8NM5his9F8dtspS2pMu/xhZkqX\nJXCKwWvwtSZORSq6O7bmuO53hmSVyxGNbnkfQn2YxEv1JfcIVslACjkMDdfb\nBb2+\r\n=2zBH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"e1ac8ce6f0468f65c1eb0e48050be0cc89b06171","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":"^2.6.0","vue-template-compiler":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.6_1624713102100_0.8921503767411607","host":"s3://npm-registry-packages"}},"2.2.0-rc.1":{"name":"ant-design-vue","version":"2.2.0-rc.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.0-rc.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"5e32e102c64f517d469c7af403cd6133b4ac8b45","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.0-rc.1.tgz","fileCount":4803,"integrity":"sha512-cRqOpPrw6aoW+1LmMMf8cFlVKzhBSrmZUCfEn8jA1yp7gp6zj+wGkhT9jz6NUfPWRXmGgbf0hXi0rHkhWaFAOQ==","signatures":[{"sig":"MEQCIHXQxPBLm8ETattQqOnxqaZyTLWZEs81MjqNxQsVw7a4AiA+fi0hVf+zwiufcpCxosdHcc4IJlSSgiqVRY5Tc9fV1A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49949007,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2t73CRA9TVsSAnZWagAAP40QAJWuwtB7vtN0ur5niC1S\nNqiR6ygdh5XvVl4ZJB5XIjooXF3ESrse6QGuNMDSkm/dThKlwaKjzKr+ZK/9\nhIUTSBROF5KZa70o0ZNxgcOPoJQ++y9btEPpBWl6JKKrX2HGMj+U/fWF4HZy\nlcG7G6qsX6f3Vqh88GFn/eQ4t590XcbXtLhD2hlwuak+SPgExnsEcD6owBI9\n7DhV0aZnlB6vN8yeEsFC7Uo/4rtKJFuYth6XrVeAkQ33N6dRwQPsfNv5Cm/3\nzYNc54WoKn0QEoRhcCeS06TpZfTAVqP/THzSX0p2SHCYXR3IPDftq0U351U7\ncWmV7HT9M/jvRwRE4QRA0TpB7VOU03kIrslUGIfitdqr8IAoVBbU296o1ogF\nfVT2MluLqK5lLilmq2KnYNfuaQJFUr6UNIvWDRB775ZzOuhXUPbFzD872Bsi\nezh0TZPh0O8IzkmAPMIN6TKRv/hOiVQ08OU5emCwZ/jlVrQV4ZqC38i/Nuco\nx9pWM4PZ1k7CaCbjutv1wGs10CB5prphVWDobclzbyj/W4HSdRp11vIW0h6H\nq6ag+MuZdKERayTWknfrvLzFu1+4KpVSUx71NDIJ1EKLwNKI38nuBfKVcmjf\nLQsfVENFK0hnCEBSPzy83HA5kQxsx1e1wAMWKaccbD4xkyE47PWyBOYspRpz\nRGAe\r\n=TT+2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"891f6dbb5afdbf5bf716e77961faa896137023ba","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.0-rc.1_1624956662520_0.3535785827967175","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"ant-design-vue","version":"2.2.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"a0026e14053de68b1ae8bb69cd1f5f7f93ceaafe","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.0.tgz","fileCount":4805,"integrity":"sha512-EswJ8+T+AgPGJ15ASywui1vwzLFwcEvbOHoNdn8fSe4ASnsvYLqQZq1f3IbKlcVCpOQl3/A+YcOLDlE0MMLnvQ==","signatures":[{"sig":"MEUCIG2iLs/H0iOI170h+M743B63ExnGpiUvyuVWtaoGyuMZAiEAn6MIb55U0cv6EIg/Pm8taq9df59x+OAv+xwtzJWkTn4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50476251,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg47BgCRA9TVsSAnZWagAA9DEQAIz30JUk7vzMeNY4CxJo\n1KTANdcBCM8hLO1QVB645+wR7ezCbmFDBfD6jE9gGTdDAPMQy3q1VBhWwKIt\nRazEjur5Tt4xfthkq8uy3Lr07Plajf0eFFMQUfWQrzVW7Dwn5z++b8Twbemb\nMNGdR1EOMeRKkFf100JI6/qFDTDvGPTiRVptYG/X/ewx0FKh71QuUwSJHEFM\nGnrB4R4pXuzFJ6FDP+//vZB6UJ/byhQxvy0aJ6jbzwLcJ7PRx+SujGJIQvkU\neswQyANAVCGd6BU9D+QfKl/+2rLYi5XLn/Cwl51gUEkVShrxYvsL6856FluB\nUlmPUsurJaUUQ2+ETAxb8gQWXsi31WROR9COwN6ssCxAaeIdHtLQnjKIiA1C\n+kIxdAIZeREh41buqVCbFKRt/WtH75YDWqi07YtdeGrTf7DmVkk4kO/NlloP\nbIbOmiY7weHyq8D7MCPLr2Gka1yCsxiE7CyEuIBRBBC0gla2X1abIp8HuaKW\nO0zk6lDCmshQcAGVn3iHaYLRE50Knxitc8QTotZpl2mYg5FT7klBMFRPMmw0\n8wHGMrhZzYMbIsbG5FNkd2kmlE95xhhkCkUEaEjvXnNd3YTR/GzXZVNIsrQj\nCDGeVqriZyAs7Q/gAbv3JjQECkTt3oaZ6p72ooJFLFotU6lVUjcnPzK4E8So\nZI1p\r\n=xzYz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"a1ffe2ae90dda54136280817ebd40128e34a6c54","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.0_1625534559548_0.2536616493310362","host":"s3://npm-registry-packages"}},"2.2.1":{"name":"ant-design-vue","version":"2.2.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"263716745a8a92673b4b3ba2d382919e38129212","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.1.tgz","fileCount":4805,"integrity":"sha512-pxcvVhxQ39JkWl8uLq+W51FIho4kJQve3BhnnlSTz8rcg6yctz6kH+ieOA20AWhkau+/Gk0X2rug2bjBpiA0hw==","signatures":[{"sig":"MEYCIQDx01RZzW/7MzMzk94Ur1amN6yZq6/ctq6jpTFe5Ng28gIhANdV6OFScQbVeKrh9QvS/JkIIzLbDWVqQDwPaLd00X9e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50473127,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg48peCRA9TVsSAnZWagAAqKMP/RNEcZ5oBxOD60Lrq/ms\nfZNi43Pt5MPRL4Lr19H52gRylRLfSzap36HMiFWlykcPqw3hw5+LXYBUPoKd\nJkDJhc0ZMdIU0TJATXPPDJdKo/meqJsA3ch1MRyVo0DR3ZXMsjmez2acX6P7\naGUvC1CI6V64Bz/ZRVp+m8wO9H1CYepbH4TIhs4kkrAHDrcSRBqBvxHG8Kmw\nGX3/NwCIikwcWfVmkZi7dkrPGLB7Wj6kI+ZFuwmC1Pu2c1Zi9k7RaYRHwXvo\nJZJwOugP49/k73XzzQxjNbXfC7gkd+aN9pBH0kbSN3PC7xTeRXOACu9fzr8H\nnJeplKBzS7upBTOavXnYdmwZ+cEozvoa6445RagLLr1fIVJclGf0lt810jsr\nFvKSbweel87/LoCl0ZyNrKjanyGsztggIqTPI9VkDD/tHzk8nB0SSkoWVhFj\nspdYiNFwUlXoIIWyfzPDsKIKbV2MeL545AZ6cWIxsI2+E/CybcayxP0Vk/c0\nyIlO6kws/mDDvqdtIjt6+EqP6Xj2rRg0pgBQ4RCwdWsJfxDoNY23xEUNKz0X\nO1NeOPoz0fNkmGAwj2uLEcxCtoO84ye+blu4nhSy7qiC8tkDNXWbK/D+pUzh\nKVRnFt1c/khMSU7FLOBK4EGaKFSJtAsckrOMFsCjZ9tGTd3qHwUIPr3CHSR8\n8Kvv\r\n=ACk8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"b7b433e98f785a334bb65b678031eb10d122f7b4","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.1_1625541212874_0.38163994116667843","host":"s3://npm-registry-packages"}},"2.2.2":{"name":"ant-design-vue","version":"2.2.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"197388583c4e0b8ccd9c50ed19831ede27c2b919","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.2.tgz","fileCount":4807,"integrity":"sha512-Gmed9dVw4oqYmuO3ubkXbRBadldE82XSt6Gqq3F2grvORKXYoJF/3CaMwfyRN81UaoRhWVTHmLeGLzuVpwJepw==","signatures":[{"sig":"MEYCIQCUAyOwtMENLUWQt5wPmoxtA4h7viQ2g/fYyZP8dU9r+wIhAI0Rry67xhLqWbOhjIvBBfW4tAkFyWqb2gYTA8Ll8/Bt","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50508084,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6vBgCRA9TVsSAnZWagAA7PwP/AimnudAS8uMZqLSJMBi\nW7BTQ+7Po2E1sVD33sLkApNHqJnoTzMhtlVkojhmxxYCKhUqIB9b4v+U6B3Q\noUhBAsOK0xNJa8Xf+KqFIeeo6q2h+QJTM8oER34YwH96OhSmSSFmue83HTEW\nSh5X5eZgRCBHW4cGKySuTveRY4K+37j9R5XEHqAiWqgi5f/ULLwAk4CaKMeM\nAOSpqQodssw59pu/HfgKLrOC1qZW0fPg8kOFEGgofE/7t9Zyu5miq+vA33Eb\nM01w2/3a1n+fy2KCCxYh31Z3IeVmUM8ghFcf2HJS8fxtO+9qoe6J6YHHjDaH\nn5cUUGfVSAko+0KKVENominwymhoGzUJqHBYaXvs4D6sB/hsbZu3adxejR3B\n9IiGcPPKNXRoVhjhxl+SiJwDH7qIx8vA/Ate6uLQI/79k1D4R00lzfejUZKv\nL8R99HhgkueYM0VNdwLgWHmFI5RK39o6EZyaHg6vsSfzDEbx/C7wdafWyFZ2\n6tEKwMxDOhqnLhyzGPG/fO4v781tcchKar4wSf4XbB2Am17oKuLSA8+ddHH3\nHhrAmy31aBuFEVeqM+Uc8nlvKQ9FeNvdnzI4/nGUWU+hnE77B4Fx0iRUZZW2\nNwlxW+ynBaaKPGQT6OUyx+6XD7fmivK8C2QManH7muq+nUUCr9JY5aWU84QA\nHEqa\r\n=M1Wc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"cf60f9c46f323c9405500d93fcb335d303cd7b3e","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.0.0-alpha.11","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.2_1626009695524_0.528575568553971","host":"s3://npm-registry-packages"}},"2.2.3":{"name":"ant-design-vue","version":"2.2.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"1fccd5f0143e24461c509848c7d38c2569ba6fe1","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.3.tgz","fileCount":4819,"integrity":"sha512-7A+dw9ESJic71g5AZPjVP65KMT/8LO8mEzX1XVrZfyevsiLu1P51Vw/tJ85dkrwQNeYvAaqq+hUE4LjKjDdVwg==","signatures":[{"sig":"MEUCIQDcxvGfONc9xMZeLMQHboQ/CKC+nAA1Vv6oZojaPnFA/QIgIeX3cu5rnz1fdVWk8f0J6ifReS7o364ZeyyD0oQDGps=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50672289,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDeu1CRA9TVsSAnZWagAAy0gQAJLjbdgMwKBsQK8w0AWc\nWmQnJ1ddwCw5qf2c7ciQUPP0ZAht8yajQJE0uhIIm9N06w9tq75o4lwDqHSs\nVPcSONmQKHYDn2XDRs1ka3XdvBDe1yin+wKaP5+9c1FZ1yEmsCvRoky0eZAe\noJ1tvbNXs5mi7tYMrfPn2tTD95pYChU0npwO4lA4jFeFZooefE2SvgpHuUfR\ng1QzgBtjAvC6ijNlKs+TYKhc60Aa0hHqrbpRTf0Uw02ReI6iWW1O5VynqSAA\n+2RPx2ajbCqY5J0QXtvbcxnDFlZVyKIA+S8WYddaSEDJnT+mirB9XO2RPWVK\n0S0WfzYAAo2y/SPWKb7K6K19qFvl0G7iC1uURcbQGeutoDUjZ6sdMK4Y1lzR\nLZNJPFjFcudRBRKFnhaQTLOzdMJCEfr48IDGjxgfEkVSiz4a+zPU9kx6bJo0\n8WjuVIXc8F3A+tDu/lqhzz0sF9Q9q3sAeU8V2lHadSTyICJFggbI7p1ffdoq\nN/rD6bBCyNRM7oIiERU1WxoJpJ6iKFUkwCViZWYhXm1acOxGGjWaKL3hTeeI\n+NQQ1g77cibeaS5Gim/Qjm2+A4I4Smqcj7hlAgllA/HhtR532z1spcxhMZrL\n9SfXag3smGLW5ds9ssiNCHU+/8GlBrQZOVBT4ja+Ec3ZosZgRQW8T1O3SYHa\nBV4M\r\n=vqpx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"257565b29d932f023f2289f550108cedfc531ec7","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.3_1628302261447_0.005393647464290829","host":"s3://npm-registry-packages"}},"1.7.7":{"name":"ant-design-vue","version":"1.7.7","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"621cca28c89e2887ec391e5c129c34d463f3803e","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.7.tgz","fileCount":2606,"integrity":"sha512-h7kG4pqUNtPrlADRfILf1XPmL61VupvR/JAyglsZ8uiv+QuWwhZExOrXrMIyuJ6p91ioO7qhd9LpO+XIMiTqNA==","signatures":[{"sig":"MEQCIEknPyCyzYwUPzXWRGvKmrydD+n2eIZigI/cJfRus/SDAiBT9DFgDaJNBQlsIl1z2jRJe82Vn+8Mc1/ICOz1O4NTnQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39271895,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDjZmCRA9TVsSAnZWagAAMagP/2PE1nL4CkWfURb+uH+8\nozPg5u5696sBNBM74GvJsG/jzULRGv5g71pCaL1HhnAQlMAFgHFXufsgbRu1\nabBlfJgHygXN4BxXAotlDu7bcTge2bSj6RCSxKQs4loahPrFv8wAwavJnr1u\nUh2zHlcwjKrgJ6GJe9E9wQUZaZNkKvQYoxUUpACB0Om0FmzVy6dPt8sGKaY+\nWLY5wUWGtJdQ1d0lOvyTvwIXzFAgJVsE3lfHmls+Wq8Ehwv2OxHgrJM0M4IL\nNfAQdKlzahHYo8BVxXu954LfQ4aOS7WTPYq9tyoOJKr6OJxnZDV4Xcv6ry2G\nE0ZQDZAiXy1RxQEU2lnkgbVKPAt+O441rJq1kWN7v29dykYj80OYDgTwcpa9\nLCI5AvCFQz5ifuEAnGb/Yhl/dQ39BK/rnSarQI6apAq31mjVJD0cZ8YxQQQS\nvKAuyKmGOH29zK2r1gCNncdBQUVQFhgWQWAql1BpbQv5ZonAO87wYRLELqxJ\nPUKzblnQOCnILnwHuqV4Bl3fnr/ZWQWjDkfUK2U5JIoDzhks7i+eduLydNvy\nKzMsI2zaxfA3QmXIiL92JAdHi45a0UHYn7eV0VCaeCZ8sZjiUV/nsVorndJ2\n0XvWdh+CKb4RqR5NIbtjVK/xgE76j4pNZhEafBcLzlp3UmD1XVrKkk/bxJhK\nBSiZ\r\n=Zhik\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"72b13122098c71430806ba45b029a59a5f167f3c","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.5.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":"^2.6.0","vue-template-compiler":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.7_1628321381640_0.7522106677431613","host":"s3://npm-registry-packages"}},"2.2.4":{"name":"ant-design-vue","version":"2.2.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"38cdfa669afd66170e14ef46d4727d33e2984750","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.4.tgz","fileCount":4817,"integrity":"sha512-iUtXc9OYFrrnLYu2gmXxs+cqB/lR0v3kBHg6N55hyEQ5deAwxG8O+j3Nn1nJkvvONxv6HWBbyL8nCyRkWdqINA==","signatures":[{"sig":"MEYCIQDKSaBc7efAvm6yy3Ec9b8Q86ywLjFQ1CX0PpPdZ6GB2AIhAM2ugcKJLzunOSF6crRuQZcQO8SDfOhvRPvsjzFTIAbA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50908989,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhEjvqCRA9TVsSAnZWagAATM0QAJHdNYv5YR0zE/lw2hbu\nJ1X1BvOTSc111hfNe8xqEWnB7qp0ZLnVJJZY45bqkyzt6UAUidnnBGl9JCxF\nwHASsyasg/wQinlLyLtgaB7MEQgXkjlcUqEa7On8TVFM7rtlMOAFazT/eAI5\nPhRSZww7k32O92PBzopWeQIhoePxp310UHx8TyeTP254ZZT0o/Z/GmLMUdYK\ntnNnX74NRWKZ6NgDROotsQMFcV5tTMNQErGzBiO6M/ImJhdov1iOWSFR36RV\ncVupOMJqNPG6IMovKiqaK77Um7js3cEqr4JUNugpus2dsE6r4WiapNsmfXii\n9O5seL4vnZceCOnj6koGGQBICGpof2lCtyb4/Ip3O05UlrnPeJ5kd6Jlp7l7\nRA2LBxsKMf6Ofix8Qk+XW7r8VcniESwVgwoI452Q6HZqDLWM/mmsHML4UUYL\nNPQHF9Vgoc3ogzuBsl/4ssO67Pa93fvliYJ3hidl54TDEVk7B/cOE59Blbtn\nDS9WPN9ooEK319AUDLkfQ76Ectc9oi8O+VZ6rZiMuyK0Ag2GBEOpiADiB+mv\nR93ow3trdnp3ByTB4eFmxFRxB1pVzzGm0JYy2E4CSB6R/GTynYWEcyw05gkL\n1oBNyNsm7fy5m3BI6vLyN2o22HxFWwnz0M/jWg2vRkxuWi3CGc8qX2+qA9pb\nAwvg\r\n=YvjG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"1da679de343898a018b37aee4e404c51c5919948","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.0.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.4_1628584937563_0.26259046836228617","host":"s3://npm-registry-packages"}},"2.2.5":{"name":"ant-design-vue","version":"2.2.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"c73f9d9a22864b2ec1c492141425f936cea4a422","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.5.tgz","fileCount":4817,"integrity":"sha512-QSkKRMfL1AbCnk/VzsuaRvxnXrW+ARmqNKFq7IkYqCCmNGXeJ3KR3c7uwX9EfMi9ltqNaexvfmbA3j5aJUzKJw==","signatures":[{"sig":"MEQCIFjSC69nGVStHKA1niE45YdaMKx+lAmTNUHyilH6nEA4AiAX+7Bh7FrYwfASlGLxGgg+bC2Ts6TUoSe22qNgXxj5uw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50916211,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhE5fKCRA9TVsSAnZWagAAUr8QAIXYTsWm4SkN5W5g4xi5\n/ig1FwSKQ78ps38qAHxlSjFmqXi1khCXoc9L5Vm07GplQB99EHHlt/T7Oaex\nmcRYFaj95WBk1HRsBEdvmdl2YZmW+j2WX92buXH2U1daaKg5s/uJhUMxp/6p\nGk+BkULTh/NCtQmEZ05+dyvyO9Wihq+nhO4n0nJq3uqenTn1ijdoyeayYdpH\nwokzqj/VEYLzHJgRw6EOFIgSFJUSUWuc+B5TW9S2+BzUsIIlN+Z5ov7D12+F\nTtk6n1mAuzokl/sDlz10iHfzqxXJaENNJTljCujtoNLRZU9V33+9mhmvzcCg\nT7pfcWoThwo4f89z5pK7yg9jb5lzJTmP+V27Gr+qGd789Nzyl8K+wUzDh9jp\n4sahSgKZ+0L3s7qJd782eGkPG+rQ6NQvr8CV6acAp6++I5if8+j/XiP+xzNT\nrQ81LD4+Yu4gnqmgqJAqMF5+jSz+ZRF7QXbxmJD3oigWmBrCjF2MRY4/FMt/\nXGvgAQYW/NsP07byb1PzJgVzjkUhrAFMXf4RAciVuBps+WE63RQfiHX9n7wa\nAC3TxEim6vtbJ5YaPE4PxCF72weROXRGYdNM7l0iOLTyTbhb7/7C67i5kBte\nI5/W59PaSVkR1a3I3y81ngTH6PYXonXR2Z6qzpMLfN4BGEmRwZ66hc4suhsE\nYqke\r\n=Xg6V\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"665e5919af5548d3700f0142345f98a1149386a1","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.0.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","resize-observer-polyfill":"^1.5.1","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.5_1628673994245_0.7738070013442659","host":"s3://npm-registry-packages"}},"2.2.6":{"name":"ant-design-vue","version":"2.2.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2acf45ea8bb2bb8a0e48a83fa9c6a827fef5236f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.6.tgz","fileCount":4817,"integrity":"sha512-WgZow4FtrsAZON01wv+ObuXWL1Elaq/fhPRdmOEfFx5f8azTDBYL75A8dVl59TNBKW8FdSGBTl9PZYzW5eO6Gw==","signatures":[{"sig":"MEUCIQCOdZ5QN9UNa2mItXWescxSt0WvImKjyKeCb3VExm4XyAIgGYf/Se8xgHkcPT+8wSgI2ZVPVCKVvKxagNOVTjYuavQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51168211,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhFNn1CRA9TVsSAnZWagAAypEP/1aDPROebDpLQsJHfONL\nRTPIvMVKRX3EKZ+PK72saCdOmLyOYCdL40gl8mBxIbAw218W0T6E/UD9Fifh\nxcOn282EgqFIvy1pP9sTk5UPyRV04hV4KCabxA+w/cb5B+GrPx6Jz13eVsbG\ndhIDJO1CF8nL/uPH6zBFbtQcvlQCHMG4PfZWsCoL1mGAOdexJxiepI0Fu7e/\nO81fUg2v+NvOjEr7BygS3mu+9FPw0AqLh25r/2nVdPWTXArziGsrgiDD9MPk\n8ejS8A41hu95bh152PiVNauN3ABddnjPbzMwDsfxGa49fynBRXPqM/dpHvuT\ne9z9fp99VILHOL4lOhDtHEtVHci2YgmNHAa4WE7wAEdwvQ/EqnMuj2MQmCr/\nEXps7bwEmZaJoeGh1V5YdZQbUEGS+vq706md0dgVwe2ulNmF0+6UQWOlQ5/7\nVGFUWTpy9vO98iVSWvWXGU4suP9lgX6LbXt7sw8KGL7y3Q1HIhBe3EOo3jpZ\nP3yMl2SyLOEJW3M7H/L0XcEyFqX8K84xcTR3HxM1uddTLqPUTe3HCYWxHGJk\nvSmfgPUN/ULAJP8gI/YFqRxzJVFypCImFja6cJ7fdQeYoTd+MButSHVnJA0P\n7tbjrts4tm7WtTnPQoTxBmgVNjdw+N7ocPpDPj5biN1vrdNDCQJ8Pl/WYla3\nMQHn\r\n=itPJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"6479864a6f02cc6940d8473259960ccb141c3526","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.0.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"^4.2.0","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.6_1628756468468_0.9468726123923736","host":"s3://npm-registry-packages"}},"1.7.8":{"name":"ant-design-vue","version":"1.7.8","keywords":["ant","design","antd","vue","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@1.7.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"1abbf86b68a4f5b1000bea0487b8031dc0001661","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-1.7.8.tgz","fileCount":2604,"integrity":"sha512-F1hmiS9vwbyfuFvlamdW5l9bHKqRlj9wHaGDIE41NZMWXyWy8qL0UFa/+I0Wl8gQWZCqODW5pN6Yfoyn85At3A==","signatures":[{"sig":"MEYCIQD1YgTUBeic9tcwvk1hw4lhi0Hb7/qdJTpPtUrU4P9WlgIhAPKci8kHQCFE2Ip+ijt4uwJI3+AUEc5hubtlv+9w4FSL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":39134510,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKE77CRA9TVsSAnZWagAA9ScP/ju0sQHsk+His2xHjkO9\nkwalfK0eo9OptlMZE7RiiMO6IzOaZa/rc+MEml7IiSL9V178kzJI/f9nrOY+\npdGTiyq+daXBi2VjZLhZdgsI1PdWQMGc/GByFSbW7RqIx6cSZ4p7JKFZw2CS\nhsgeV89Sxs3zjhAgz87JluOwfTewtw8ooR3eUBdB3sNedtwh0wRnNUq62I8I\nHlIqMzXY7pDV65xTWY5U2H4w6MJU/sxXe6NJ026lVP033XpPnQcOdXuR/6Oe\neUTPG/oeDLu51f7YNU9AO5fqMoUX5aJwMHF6xJOPhXzdqxf1ivm+Omtk0hec\nOaF9WjkSYT4MRvbiWzwnZS9h/SQCSkCPk0fhPiK/zne09ZQDAmmqMOL/5Gzh\nld65IE86GUa741GShZa1ivuV4nnQmWR4xXfE7WKS8RU01htMfwBZkab4WCRu\ncsC4HIcHCCrMeQqcCE2ifTIvejM3JuhCriqqWooLzIg2s8DjLBnUm9QXAhbU\nn68x8TWXA1G2O7qB72rXBNnzdZzL8a1y69IErzyoBJEFyY0LWNv7oaIuOnso\nrYb4S3EZmIK8p4h5O0m/M7PyJ9U6Zy3CBfKK+IeGW0jYN375J9kSBxdX1DkK\nMV7dPf+9+MzaEzGQEwUqdTra4V0kioj7uYTDzoUvrqtTfpwXi4ipBYbjMPfD\nMWLE\r\n=Enxw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","module":"es/index.js","gitHead":"2b1b81b6ff53adb218c75e79e9e469aec5c3c4ae","scripts":{"dev":"webpack-dev-server","pub":"node antd-tools/cli/run.js pub","dist":"node antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./components","test":"cross-env NODE_ENV=test jest --config .jest.js","start":"cross-env NODE_ENV=development webpack-dev-server --config webpack.config.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","lint:docs":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.md ./antdv-demo/docs/**/demo/**","lint:site":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue ./antdv-demo","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","prepublish":"node antd-tools/cli/run.js guard","postinstall":"node scripts/postinstall || echo \"ignore\"","pre-publish":"node ./scripts/prepub","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick"},"typings":"types/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.js","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.7.0","dependencies":{"raf":"^3.4.0","lodash":"^4.17.5","moment":"^2.21.0","json2mq":"^0.2.0","omit.js":"^1.0.0","vue-ref":"^2.0.0","warning":"^4.0.0","dom-align":"^1.10.4","is-mobile":"^2.2.1","classnames":"^2.2.5","enquire.js":"^2.1.6","ismobilejs":"^1.0.0","node-emoji":"^1.10.0","dom-closest":"^0.2.0","intersperse":"^1.0.0","shallowequal":"^1.0.2","babel-runtime":"6.x","shallow-equal":"^1.0.0","@simonwep/pickr":"~1.7.0","async-validator":"^3.0.3","is-negative-zero":"^2.0.0","@ant-design/icons":"^2.1.1","array-tree-filter":"^2.1.0","component-classes":"^1.2.6","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^2.0.0","mutationobserver-shim":"^0.3.2","add-dom-event-listener":"^1.0.2","resize-observer-polyfill":"^1.5.1","babel-helper-vue-jsx-merge-props":"^2.0.3"},"_hasShrinkwrap":false,"devDependencies":{"vue":"^2.6.11","glob":"^7.1.2","gulp":"^4.0.1","jest":"^24.0.0","less":"^3.9.0","vuex":"^3.1.0","acorn":"^7.0.0","axios":"^0.19.0","chalk":"^3.0.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^6.8.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^7.0.6","reqwest":"^2.0.5","webpack":"^4.28.4","colorful":"^2.1.0","fs-extra":"^8.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^1.18.2","through2":"^3.0.0","vue-i18n":"^8.3.2","vue-jest":"^2.5.0","xhr-mock":"^2.5.1","babel-cli":"^6.26.0","commander":"^4.0.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","babel-core":"^6.26.0","babel-jest":"^23.6.0","css-loader":"^3.0.0","enquire-js":"^0.2.1","gulp-babel":"^7.0.0","raw-loader":"^4.0.0","url-loader":"^3.0.0","vue-loader":"^15.6.2","vue-router":"^3.0.1","webpackbar":"^4.0.0","deep-assign":"^2.0.0","fetch-jsonp":"^1.1.3","less-loader":"^6.0.0","lint-staged":"^10.0.0","querystring":"^0.2.0","webpack-cli":"^3.2.1","autoprefixer":"^9.6.0","babel-eslint":"^10.0.1","babel-loader":"^7.1.2","pretty-quick":"^2.0.0","rucksack-css":"^1.0.2","style-loader":"^1.0.0","@octokit/rest":"^16.0.0","webpack-merge":"^4.1.1","babel-polyfill":"^6.26.0","json-templater":"^1.2.0","postcss-loader":"^3.0.0","vue-clipboard2":"0.3.1","@commitlint/cli":"^8.0.0","@vue/test-utils":"1.0.0-beta.16","gulp-strip-code":"^0.1.4","selenium-server":"^3.0.1","babel-preset-env":"^1.6.1","compare-versions":"^3.3.0","eslint-plugin-vue":"^6.2.2","vue-eslint-parser":"^7.0.0","eslint-plugin-html":"^6.0.0","vue-antd-md-loader":"^1.1.0","webpack-dev-server":"^3.1.14","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^3.2.0","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","vue-virtual-scroller":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^3.0.3","vue-template-compiler":"^2.6.11","@vue/cli-plugin-eslint":"^4.0.0","@vue/server-test-utils":"1.0.0-beta.16","eslint-config-prettier":"^6.10.1","eslint-plugin-markdown":"^2.0.0-alpha.0","less-plugin-npm-import":"^2.1.0","babel-plugin-syntax-jsx":"^6.18.0","mini-css-extract-plugin":"^0.10.0","vue-draggable-resizable":"^2.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^19.0.0","istanbul-instrumenter-loader":"^3.0.0","babel-plugin-transform-runtime":"~6.23.0","babel-plugin-transform-vue-jsx":"^3.7.0","@commitlint/config-conventional":"^8.0.0","babel-helper-vue-jsx-merge-props":"^2.0.3","babel-plugin-transform-decorators":"^6.24.1","babel-plugin-syntax-dynamic-import":"^6.18.0","optimize-css-assets-webpack-plugin":"^5.0.1","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","babel-plugin-transform-object-assign":"^6.22.0","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-decorators-legacy":"^1.3.4","babel-plugin-transform-object-rest-spread":"^6.26.0","babel-plugin-transform-es3-property-literals":"^6.22.0","babel-plugin-transform-es3-member-expression-literals":"^6.22.0"},"peerDependencies":{"vue":"^2.6.0","vue-template-compiler":"^2.6.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_1.7.8_1630031610735_0.5822591397086463","host":"s3://npm-registry-packages"}},"2.2.7":{"name":"ant-design-vue","version":"2.2.7","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"d306d478003862f1a4cec3d52edb99c19064730a","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.7.tgz","fileCount":4823,"integrity":"sha512-aUk9HO2/LpUrZ1Sf2lVx561VrNkZz/aRJ1CInyxyuIy4xksMywZLt6OOUazODWZyNn6LbPtRMoqiFrecXb+ceg==","signatures":[{"sig":"MEQCIEY8rTxm/XA9/Lw9H4lFVoVZD+yOfHyBU7CvNn/NXjuuAiBNEf7E1gOZ7ReSJ2bwf0SmOuKJ4KwXGtmCdmzWCdmdMg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51040409,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOMcQCRA9TVsSAnZWagAAJ/4P/3yICdS7/CaYRWoade3V\nL208c/ry399IwY8XrjMYvkLVALcEWdpXUuZ/rlXV28BFCim0DcjU2X87LXWj\ndSv1HfMMy0yvApSXUEcQJKWqIETFtVFlEYqI1Thvinv3BtzkHOOOlP6EoBRi\nuScMq2Hqlb5oAQJ0hifbFBrzixHmV52xspEepK49RWDPfcnKiXBVQSVDTIZb\nlONEoZioR0KpJmkkEv5cPd+Lw5wYEKWhGSEpS2zvYkhzD4tz+CVvkEgUHzFg\n6V46CPpvkhnFA/W0b0elCqwPF4g04HC2IsV/xbXXgeQt1Cqog2oWmTypHBxH\nCYa1lai82KJeeInfQYl24+bGcfKVOcDFUn3lAI3a8jJYJetLCRqIRVT0EP5G\nwEQ3wXvzcoonhXLTxD++xR/meMpnKK84+70+2/kVQLnNt9Xwnc23XkDw/Ij+\nRUGQZ8czcLclVzx4omPWMz4MovC5CnHF+9kGf4jtIloXYNMO0dzpAJPknDPx\nfQ7a9oALlvbktrr14qEwwUscRjJ/3yofDlkVZAqpI9bLAtlY6SB3frQpEUEf\nFkoNzeTc+u1XuPmI3z0te6KAE1CO46B91RDNOXrktAfeOE8IY6pWZoo86nyM\nST5xw32DK5LBrFNdwappUu/mmIuLCXUjGlDmaLoSePcFkDvJS3Zd5ucFFKFJ\n94R/\r\n=X9qo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"4a28121b912a445cbc2b2504b3b974eba093b2e2","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.7.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.7_1631110927542_0.5769071666926118","host":"s3://npm-registry-packages"}},"2.2.8":{"name":"ant-design-vue","version":"2.2.8","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@2.2.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fa87cf6842d8ee9a0d8af393ff4099ecc4072f2b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-2.2.8.tgz","fileCount":4823,"integrity":"sha512-3graq9/gCfJQs6hznrHV6sa9oDmk/D1H3Oo0vLdVpPS/I61fZPk8NEyNKCHpNA6fT2cx6xx9U3QS63uuyikg/Q==","signatures":[{"sig":"MEQCICPKaTgAbUKQVYks6ZqNMf8B3C4hlcUfnpES6yJCE18yAiAPF30uHqAZG2iBs45Hg+IhFrh7fl9C8v/2WrohIYCfZg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50610566},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"2e5e146f0c763cf0f815e8692b77cfaae0b88a89","scripts":{"dev":"webpack serve","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"eslint -c ./.eslintrc --fix --ext .jsx,.js,.vue,.ts,.tsx ./components","test":"cross-env NODE_ENV=test WORKFLOW=true jest --config .jest.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","prettier":"prettier -c --write '**/*'","test:dev":"cross-env NODE_ENV=test jest --config .jest.js","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.7.0","dependencies":{"lodash":"^4.17.21","moment":"^2.27.0","omit.js":"^2.0.0","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.0","husky":"^4.0.0","jsonp":"^0.2.1","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","rimraf":"^3.0.0","semver":"^7.0.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.20.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","deep-assign":"^3.0.0","fetch-jsonp":"^1.1.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","vue-eslint-parser":"^7.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","terser-webpack-plugin":"^5.1.1","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0-alpha.0","eslint-plugin-prettier":"^3.1.4","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.0.0","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_2.2.8_1631887691815_0.19688109240705542","host":"s3://npm-registry-packages"}},"3.0.0-alpha.0":{"name":"ant-design-vue","version":"3.0.0-alpha.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"4a6344947b0bb1f3f366711b5b02cb6db694e5c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.0.tgz","fileCount":5164,"integrity":"sha512-QRtQYhnXc5wOcfHH6ZUV5bfbxlfmLYGxlFK/qPg43lCbR1uqUTxcB5TWGRvG6vUZlzCk2K/zzDhk3jpSztWYbw==","signatures":[{"sig":"MEUCIGGMDCiCQ6m2SKn1P7ALiRPU38/NM4TCbF7wksQoPsteAiEAq4nJApRgqYXPvSxXuWhKCnPMq7lVruMTyJLB6E9LzLE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":50386101},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"c44f0cff4c8f4e9ec5ee72bb7c347e719eabd7d5","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write '**/*'","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.7.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^3.3.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^5.1.1","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.21.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^2.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^13.13.4","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.1","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.11.10","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.0_1632462925421_0.1696422427215707","host":"s3://npm-registry-packages"}},"3.0.0-alpha.1":{"name":"ant-design-vue","version":"3.0.0-alpha.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"40a5f6253ae54dc752ad90c7aa6501d042d18601","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.1.tgz","fileCount":5160,"integrity":"sha512-zEtb940ALSxIPTwILhMI1xADzBD1vcAsDbDwOiU8/ct1TEzGiMN1fSNW8/nZB3rSj9ZuViJHIAQfbFofvmuKOw==","signatures":[{"sig":"MEQCICqIIXAA/hB0Uv0EQtqyC4SxxxpzP796/3ZpGJ698N/HAiB4R3SNg62e0NzOAmyoZdfJU54W9THqB0BQQIR7nKlAwQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48183557},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"b78ccde9d9a324ad9cee47aba8bf3d508e0b6fdd","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write '**/*'","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.24.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.1_1633616493908_0.7013977311762254","host":"s3://npm-registry-packages"}},"3.0.0-alpha.2":{"name":"ant-design-vue","version":"3.0.0-alpha.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"1b70c17d39b97d5664d11eca3143bcf4fa6d73c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.2.tgz","fileCount":5160,"integrity":"sha512-eCT6kXgmPhwUQY22DaFzhblk9gkZWVQuEahY9JxryxPKALJlOcjTrXAYRJiYhVug1wAddHsXP3W1YHb9E1unaA==","signatures":[{"sig":"MEYCIQC1dcJw1K6KNNbOxy+Yic1S9sWJ/cKONvRBgfA4ue/prAIhAO7JJJX4w5IFWphPPC5l7MC45q+uD/W6HtV+VkruX4Ic","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48140964},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"c4f6eb603eb5406e774a0a9843a682e26110aebd","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write '**/*'","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.24.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.2_1633658405884_0.9000365828994128","host":"s3://npm-registry-packages"}},"3.0.0-alpha.3":{"name":"ant-design-vue","version":"3.0.0-alpha.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"72760ab65d4c0ab38b3c80e989e5675be4c33366","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.3.tgz","fileCount":5160,"integrity":"sha512-WcXO3k73Mgg8QOHZg28b1EcLUwyqZ7FSfGuFZgUx6LCwSr63EHG77b8EvqCCKeMRmviJ9BOfU1/QOx0zOCY+BQ==","signatures":[{"sig":"MEYCIQDukpxEaXg2azCwj7HcqffRwhupKQoxBYKHgxnT1lqPYgIhAJHNNOUqVoKizOx6RdNBbqvALXquYWITNqS/DT8btqKy","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48154187},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"bb03efcf7a21f8175a657e554561039d3d937b82","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.24.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.3_1634198017282_0.7070137596281927","host":"s3://npm-registry-packages"}},"3.0.0-alpha.4":{"name":"ant-design-vue","version":"3.0.0-alpha.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"03eddfed3bf5ed409b2814320b5a7143e676aff5","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.4.tgz","fileCount":5160,"integrity":"sha512-U4i/gDmDlyOK6jMJmaHXbi9cJIV3WZvQ1e1HIebkOOLy2fuFEgao1SuPWNxhjLwWnQAqGmNda/goeaqoheV+4Q==","signatures":[{"sig":"MEUCIGLdg8EKBq1sqL+HbLU1+Ew2bEBpvkuEaXuk0VMtXkWFAiEAkZzS0j2onP4oD1N7rmJ8IU1O4o4QLDtgjlHvP6BOtXk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48147686},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"80fe6953cea9b06bc10fa041de767ba88c6a4047","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.24.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.4_1634695535861_0.6575724820064208","host":"s3://npm-registry-packages"}},"3.0.0-alpha.5":{"name":"ant-design-vue","version":"3.0.0-alpha.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"c45675cce6b4085619458def567797ed5e43be80","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.5.tgz","fileCount":5156,"integrity":"sha512-HYdnsF2WqpAX7tL/9/cwJ0mP70KrDIG3+aUuiE7bkpTt43LTr+PIJWwP115sXswHB8cTaJmb0hbavekq5UC79A==","signatures":[{"sig":"MEYCIQDO/KefRIVIydrwahVVGt19J0YwPAgzNDQ88KOFzUeVKAIhAOWQySewcaiv7EJy58a+1W0iCqWYGDcoY51idZSup71m","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48137872},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"17a1ca5edf857dfa9000f6dd7d786a5f65beb0bd","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.5_1635254979737_0.4807044632612696","host":"s3://npm-registry-packages"}},"3.0.0-alpha.6":{"name":"ant-design-vue","version":"3.0.0-alpha.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2932aa642313e3e122d231d0502e2cfa9ba3a9d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.6.tgz","fileCount":5162,"integrity":"sha512-FgmVdjGfhgWahcAcYlLG9o2PlBFcq75G1Ds0r76aFVRG7+exn1fMGc3cfiDZG1Hb/l22aVUtLU5lwsujFQsHRw==","signatures":[{"sig":"MEUCIQDRkg1OFYIJGZpJouSL0BMLyqJ7wQukSsEt+NOYO2u7sAIgfferad/mnIW/5MzvPVYXsF/TTg3/RfRGC0DSUDijD0M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48233597},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"6b4a1c8f616492ae6bea47e12164c910e0e7aac1","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.6_1635318408037_0.7902717485640669","host":"s3://npm-registry-packages"}},"3.0.0-alpha.7":{"name":"ant-design-vue","version":"3.0.0-alpha.7","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"8f13457e767ec7d57a53e2a000557115c2caa478","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.7.tgz","fileCount":5162,"integrity":"sha512-hRALPoRp/YjscfwzTne1SRnBboOnJd8lqGLCdH+KnvwrEGL/nvFTHlUHK5q0lrFwG15GdyOqlm7ytgS6EAb5tQ==","signatures":[{"sig":"MEQCIHuEJ0V8jmFYkexZMNVzB8AtZzv+0Ns1zfneSQC1AskCAiBX2aUJMYc1Cwt5YJxjLc2E94ijotF24o7pfDTzbW3IDA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":48267905},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"fdc2012b9086a3d4ee6e7770be2399781c751548","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.7_1635499006365_0.36390235337999743","host":"s3://npm-registry-packages"}},"3.0.0-alpha.8":{"name":"ant-design-vue","version":"3.0.0-alpha.8","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"65816d1f44b83e9927b470105a30d31f9e92c91a","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.8.tgz","fileCount":5056,"integrity":"sha512-gr7mBdfBeSbuBJHUx596wtRw9WMs55wiejCTyYOPdBhM6Ec/o4WoJwKyQS8m8HBJo26yhmE/RWTcALEu0P41OQ==","signatures":[{"sig":"MEUCIG274HXQlblGVxINzWDDyFjexIw5XWXXcbv34Hin/4xQAiEAmhHMbUQzH+5kHSMekXwea92PBaCQZke9m1wAaSgUXKQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49671866},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"7b03f8a739b7c9f8ca69f58222aeaf6e19261677","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","@types/raf":"^3.4.0","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.8_1635575886240_0.5990421581157068","host":"s3://npm-registry-packages"}},"3.0.0-alpha.9":{"name":"ant-design-vue","version":"3.0.0-alpha.9","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.9","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"4a8f6e65ebdebc4f30dc07cca33f6b1ee036d425","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.9.tgz","fileCount":5060,"integrity":"sha512-kCzScUxsy/991EvQgo16Fv1ECuACK/9xZkzLCsicaWXTWCf757rIvns/E0WUggqTCO77A18d+y71qluVvRWraQ==","signatures":[{"sig":"MEQCIEyMAm2RQ3d+FX2+g3d1IaF1vtrsLs1haNy4p+5WkBsGAiBy0vArhx/rGgOvdbovhNhAB20/ey8fFMlEkPZrr0+FCw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49723922},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"6dfc8375c8eba3f48a7c1985e2bd35b53dff8d2d","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.9_1635928905604_0.5049382267568812","host":"s3://npm-registry-packages"}},"3.0.0-alpha.10":{"name":"ant-design-vue","version":"3.0.0-alpha.10","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.10","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"575e45ba635664a81ed5502e79bc75b77fe5dd61","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.10.tgz","fileCount":5060,"integrity":"sha512-t1ahn6detrzUlrsfnkZhMzIH+39lwSaaDyPMNJDfMcGspUPKykJ23O7HDapYzHroWyVU71f0Ut8MiRdVmVcX0A==","signatures":[{"sig":"MEUCIAr4tm7K0YkP4Nho0wMJtHv5vTeQBk41U10Dc/V+viKpAiEAkRPd8DMWKFQKmaSliAE49F58wVkyXpp0I1gFwkx58JA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49730426},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"c3400115dd4accf6fdf9d9f0720bb956fa18e497","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.10_1636097494716_0.33031052290724805","host":"s3://npm-registry-packages"}},"3.0.0-alpha.11":{"name":"ant-design-vue","version":"3.0.0-alpha.11","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.11","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ab8f34885b3a8589561d40e773f1c6bea4742d5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.11.tgz","fileCount":5060,"integrity":"sha512-cEbWtdoXYU6h5yUXBTbUzi3Zyh4JQDqRZI3n8Hkj0DeWYAM1SvWvQ7JhEY2Xnw1/3fjJw+j4GTP7lcob1e16wg==","signatures":[{"sig":"MEYCIQDe8KdUVCf70ARHDPubnVYF4kVTSpFqgChoIcDCh45IJQIhANawCdfrqYPnLCf8RZ8TbgTbfg3inYLDl4ILNX3yj+pa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":49733920},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"87a4007dd3b3330c516664a1a975d200ea7d02b0","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.11_1636383306892_0.881974110478821","host":"s3://npm-registry-packages"}},"3.0.0-alpha.12":{"name":"ant-design-vue","version":"3.0.0-alpha.12","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.12","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"b38501b37f7893cd7c11ef67295916514ce4e652","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.12.tgz","fileCount":5210,"integrity":"sha512-kwmfnK2hC5NZW5QbkdJ7bzogXWlt9YvKTU3bw53OP4BBUep2OcSbxwR8txWLQ3A9HFeb4O1oeWkSh70LoDvpZg==","signatures":[{"sig":"MEYCIQC/Rx1j12/ciWt+ttywHyuBbGh8b5o1r+EXFmLhgfgiugIhANobpoC2NVzudiHq757zHRZL14SJj6k/6LYbQIcJCpp2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51675647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhmQznCRA9TVsSAnZWagAAVMUQAJ4MQYZauT1sU4fNkLbc\nP0nkdbyfnlT9hdOPzqmMVoCvp0+3LPrKLbeFv/S8r7TfUqmMElm4xa14AeyD\nJImY/ztued2aU0q5X81boGjmkC/C44TDdKJaRGxONMrhteqSgcTI0OBzPCox\ncuOJjooSovsB81O8MdJrI2BHTfrhEwaVvD4eS3eRnFFY8olhF6euiogK8LrZ\nYA/2u9ggF36NhygD0DVLWz+N9P2p+VdWtlWhM9J17cd7MXkS+vIOFaSYrpzj\nOT0zP0v3TuDz3jUO0p0nz5deeRtA4f34iK8BFooTBynBFEUyNTB6XvFU/s8C\nHtf1d9ep/k4rgF+MEcskyL4YGS3L4ZcCqYmR9j5fHNYkcjNgeWvdOGrz5/Ms\n4koYc1T92014XGdw7i/EzkSeLpz/kjgEBgCx3PjBWPHPZowarEkwjsyZVI3f\nimD9NYfYUDCLjN81j16vpogcIHVl91bCbybvgPZ62TaEvM5TeGwWgg+IsyHD\nxZq3Lyn2P4dffqqNb3uNKXQ8+lK1Y0h6Tjf0ZZwdjrEN6BUYuMkuQBlXiobX\nfkdT5zPXUwqLbLuIXVZijY9pMj+FWEPU3PXsvivMq9q53mEIIawkS5t0QBLV\nEyNOgT6ywLKX/SBQa5dpjciGNw8rx3t/vYNZpVZJ4XYQbZ0cZm3bXuqYmjZi\n2TRk\r\n=y50N\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"51874d9cee2c4c67f6aebb84e756f0d8794ad8bc","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^7.25.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.3.5","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^7.1.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^7.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^24.3.6","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^4.1.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^7.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^4.1.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.12_1637420262520_0.12000116153994766","host":"s3://npm-registry-packages"}},"3.0.0-alpha.13":{"name":"ant-design-vue","version":"3.0.0-alpha.13","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.13","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"20641ff16928862b9c665238558bd6997e2db129","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.13.tgz","fileCount":5210,"integrity":"sha512-qILjbNRHXz3vJJZtG45RTQTiAL97XXnr6BwOfOvDiILK6UqsaLWCerRxcF8uUnqtcbj/zQSCU1Yb0OLb7a/sHA==","signatures":[{"sig":"MEUCIBU1kZOSJdo+gNo7qY8NxDRgvZxUus3/D8OmJZoMWadfAiEAh+32wo74c/8K9bJx1huEmwQQW5C6eV7a8mgus8J5WlI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52452714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhoxi1CRA9TVsSAnZWagAAjfoP/iM/l9jKjaAwiAFPW5rX\nsaWDYwf/3qVJoS7lX+z94dF/btAs1YCnzArXkdXEbqXYjFxNA3AeKVKStS0Y\nS/NKY+1Azw1IyPl+SH0hFxFgkxanYSQjudg+ignEByqhIhRMYHWjESyWdf5/\nfdoBB115rVKIR/s19mC3bv9yyEnQNVJrW6PKeYq8z0oLg0ZBomTHDy7KIIpS\nBD0aqY1lSwcptyegnCkQfZaCqMDQ00MV2KC91NmKgOBWrKpe7H6IjBkkXqVl\nqldfh3t2XEAdEjEUXi0i/IKM/Z0yUr0GGVtK4tBmMv9tto0u2sRDWQu0Fo2A\n3zncoYRfnbgmh1VTWjcHqurRMb+S106NPiOHAlUNXDjtUojGn6AMrE/2PpBp\nwr+Dzu4eSMdlc7SEX/Hmni4my0zcvqauRgEE14VHL9DezblXgi0gnqPlgHVA\nkPYyxIrUmIlcRpghaOxmkafAVumMBh0Z7m0ABoF3OgzpZ8nvd60blIGuEPuH\nCTrgD+4mxhSMJu4LvtSRdSHWGmtURwvPjohNZ/yru5lqYKpwg1UpY8oDs+T9\n9tkUuB3fgQ750OYR1YaB33BxbIk7wf8I0E6Sp7A9u/KdyMbeykKlRH+L9eZ1\nvrj4F/Qto947mlOVeAkAgJFgDEGHgXWPZaoEb7yThyoS6HJE1doKOn/jjB0I\n5CPm\r\n=+1a1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"57469f4be81a17c7003fdad57105c0d73f59fecc","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^4.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.13_1638078644635_0.4788061618443453","host":"s3://npm-registry-packages"}},"3.0.0-alpha.14":{"name":"ant-design-vue","version":"3.0.0-alpha.14","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.14","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"93fc2507f706f30363adcd2a16d16fc25c871751","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.14.tgz","fileCount":5210,"integrity":"sha512-PmK8I90CMEwij+wFU52nPFi5PgRNlEzyHoF7gB2a7fU5m248OhTorQ9Rv3QqBwC1kjp4a2GpaFR2uvP0Mbu70Q==","signatures":[{"sig":"MEUCIQDJ/BMLUaK9RswMJjmBKhZxpDThpi6IHDZOIm3/fheGzgIgDSjxHrCTOoM7wcCbAMD6jZfIOaIA2/tc/NWWC56m0b8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52593224,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhrF5TCRA9TVsSAnZWagAAHmkP/2qM+Hdn3OIx7HTzwOPS\nEMPoUenqU/lqqMvf94pm0tcru11vObO97gQcUozy+GRtVXftuVNK8tqqDYce\nE6Zs6k4+JarBKtK7hiUIWFmgB2SMbTiOi4lC0nDkfO0cDyR6pNf73zUDfHHx\nTY074Bf13vI06QT2blbpak++c/11UU85HiZZqwtDNoUUjxVmHIJt1AVv7YRZ\nryJfzfapDXdD0tjGsA7/gSBi9yCxOeDwSZ7MabWvnReZwG9NhYVjGtqVhvH+\n7gVnUa0NtZdvSC0PrLIS26w5bd1kQsMPcUR9u2IWA26qrQiL8I7t8X7Hxs6E\njRDRyxkQaUVl3OEbfbVmO8jyVJOZmPWPliEeminNpgr2ys+mHIozUMhQcdHb\njgq+Qrmy3+EGN0pJDbwk2hjb3mg6x7YDe688CFVXRLspwGXX2SFaWpWY9zO1\npTVYXHpLevv9TTyVlcbijVRGK2Epj6XNEYwki3UXs5CPRKmv0chmsaUXwFe5\n+j31tOUMKYcmCA3NHaxOxzbxRuMyR/hzM1P6w2K5T/skyaAb+bSCLERKLQJn\n2e0z86I/PUo4IwhMfJDzqT3QX5wWfDyYWp+BxjLoE8jsuZ55n5cYz0yEzOMR\nE7QVBj9y7BCstV9Gq04nW8h5XVLOlr7qwJBOZQELoZ2v6JKsnhV2dmtHrFmG\nkXis\r\n=sLWG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"3bb093cb23ebebc33edb3677152ed57b8f305374","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.10.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.14_1638686291273_0.5730880388844808","host":"s3://npm-registry-packages"}},"3.0.0-alpha.15":{"name":"ant-design-vue","version":"3.0.0-alpha.15","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.15","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"85830a995f51224d8c9ca0469bdd915c51fc0f34","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.15.tgz","fileCount":5210,"integrity":"sha512-stDsetOC6XE0SCMYqI3/07FN0eWoWCaRrA54guu3pt1rcpRKvoF78wShGEuAmjlZUdyYFBimSJ//85NbUZ2l/w==","signatures":[{"sig":"MEQCIH3H5CXhpDXz3zkD+E7G34RDVcU4734ztpq/hDCtBgQ0AiBS0pggoYpGyKXp4K8IBq/AVA8j6i7VwjF3o3P5ohP0Cg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52668033,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhtb2sCRA9TVsSAnZWagAAxccP/AlkxZorixRolJ1BJbQS\nDADBgVC942jN6oydXaLezcwxL6lb07vH/Nvkf4ruKfUt6ffaVRE2PmRVIhaK\nAGU7oDoWjv2Uv0AXScKlyEnsCSk13fZCUn3Ow0N2plN1y/Bt0/sxmuKUsFMs\nSy2wPE/WwazLsEtpOWVK+huxU69MyRoo0AZPhnJ7MrLmFJoOt6ep/IHB31eK\nexnzqoYneORzW8O/fpBXNK3QHhfR12Fn8CV6aRoLIM+Sg/pP8C4RXMBM0hR5\nPfWFbIVi0iRPxE4Du2sLWoU0qSFNBg9uwZ5Vnj6c0BFRH/wY/QNcZLVl6qkX\na6gLiM3kZZ8kvu/zSj75xF983CcBaZXDZFOrylK+9butQgQphSPWzEKJOQCG\n5Hdri5T/MtLaAi19xWgMCv3xhp6VkQM/RrRisJ6aH6qsAvbM8pq6b9MV1U3h\nUa1VUrWYsZH5gdUhwzWB0FlWwelXA0LN5HV8PhkAHbnvnP6uMmSe33hnh+RO\nWk2ExXXxBNa+vaQNLBn2Y3bzMiKV0Ph71Y+3PzyEnxd7PTfIcbOT5O9651hl\nHAXv4BLTdMxTtA9IqfhfrSkRrQHR9TUk788yDBlAB8ErHzanmEDw3Z4Sgmil\noCK7trFHYle0j0lmuCvzvgf+kts2EtLX2ZYKmX8tp2PkTAL97aNyplTFTQtK\nXkYH\r\n=Ngc6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"07ee74902330e12765883c2f070640de2f178b05","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"17.1.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.15_1639300524507_0.5830254559498202","host":"s3://npm-registry-packages"}},"3.0.0-alpha.16":{"name":"ant-design-vue","version":"3.0.0-alpha.16","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-alpha.16","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"77471826a67e6639386c0d30d54590d51a6c915f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-alpha.16.tgz","fileCount":5216,"integrity":"sha512-EPWt3F6SOfPXe+HyhOJXdTywdabbuzyARpnXER/zHfq0pYXeFPhki1v5re0afnrS7k6MR/BHJ6cJ1BRBeFqXhQ==","signatures":[{"sig":"MEYCIQCJHeed6HQ7M44F+LbZOHFHNQfGqUZ0boSnb+a6vY8mLgIhALdy7tuW+ZVBQ6XpCi6q+ztRseS+pAiaj0VwTnA1CPEM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":51418442,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhvpDHCRA9TVsSAnZWagAA8fAP/0RuMk686NKQQy9wbfYE\neCzNL8I6pWFDCmKVpyf3chstKB/MXeGq/Chj4A2Iw9KdtRRCR5xHCxTB53FB\nzj0skissQuJDREr3h4OICGKR7fhbxPkn0uKfFX1p9yiJlMi0lICbf+WC8xfM\nFABZ9SrafXWCm1R9B3sASuRvuF9xVPhvoCtRpGHO86oKTZW6bmDvrLLU6loN\nCHeQzaXhSLoWuRdE7ZvSZmaCCF5VFtIHcxAmCs1XXpmiFKVSwtMDFRLOJmeL\nLbj0uwMPs8LxB0uDfLs37QN0vIc65OYiGcPkK0ow8hBnEeUq/HaEYJBOmMBy\n99g3mLJN5SPACZd1eoGLst6jxcijbJKu7ndoF7y9j797cACz4Xs2ZWeTpRCU\neJKUg/l4Fpt4VvLw/W8JDWHj1ynSxK/qq8Lh1X1noxB/NFxyNOHJ6B8/WPrj\nXHxcOJbZ7HLjpaNKHUtcq7tiw7yWzt/fmL9MzhZ1d/O/XVeYpqJyg0s3HH8O\nxowGvaPJNuYQpU1FI5ceN+G+0d8tq8SkwN29PRpleDTeVuyQ50f5XoSZZC6u\nns2nkgq/K/EZi7w/mNZFmo8NP7ryUhcbSrkGNcoGx+WsCxHyc99Daun313hP\nn4QGwGoe4ew0Buit2yTDwVVDXCUumglG0jIupk1ZLo0LaXv+HLPa0VHaHGdf\nHYBJ\r\n=s3TN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"b77ca0eed7fb3f5264ccf63ba677399147abda01","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"17.1.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-alpha.16_1639878855425_0.18490564949519972","host":"s3://npm-registry-packages"}},"3.0.0-beta.1":{"name":"ant-design-vue","version":"3.0.0-beta.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"3c8959dcd2172c4b6d8ec540a820577f31b4a9e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.1.tgz","fileCount":5241,"integrity":"sha512-NL9g2YMwK7tKX41lEyPZwze8zfusX9mb0h6PMhZDmbn6xp21tLwqyPo74azl67ZvEbOxajHsdJj7WwOD8TG4Dg==","signatures":[{"sig":"MEUCIAd41Dkk36Zd3ZEIMKUgCM9+duCucMRJuOvRYE0z8p0PAiEA1IESQZdieIE5AmRu6Jkdoc+GJL11JWoX8JiAMi5rmk4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52138754,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhxc5FCRA9TVsSAnZWagAAamsQAIAezQLm+XStVLl8TD1G\nJwRRLeMJNfMdHAj4ZOay6D6/HBXtqil2+YUsDZG/T7q/8WTDN/HOxNdnkUSh\nHcR93dgz1ECCKBPbH5P95xqQRPtFPOzcEbl/9aRPG9oQdKrELYqeEk6mTsG3\nR5luOaQ0rTb/cbAXVLNIBjPwoIQ7SD64tG+uZPsZrdEsxZQFQ89KNr6Wk+Jt\n7HFdUbbL/BDl+pvZme4/4xDik3SgeGYizR3D5eV238gVBx5NrWpCkp9L1Xqc\n2cAjd8LjVSnDsorfmXE6JQnwUJi3JE+H1g0H1vF089ykAgEO2E/ZaVHvb5Yf\nUY8hPmK4+OQqe+1nZXbh12Yy6quDVLTpY469kdFC1D7sInf2Dkr5cssP5YP0\n9fZDyktbmTKT5+f+dOBeN/3dsgZ086/xL9pIEGex+HB39RZnZrKmcIi5YWhI\nueEbDckYKyOhVBQjdTt4XzyF8IABfKAQlYxRaIqb+D51tPHEK7vPBJBXB5Kf\nPohd0sgdmg1hH4ToBqjSP2s7N1J4BHnVq4LOuWGeyNmzExnV8ijknbqfZOoa\n1OqUdZOW0c+UY6c2lvznYYnQGmSXebVfbE+pin73Epeom2WiR5Y09PsgAdt8\nCjyINyA8xP5TzqUTd8H02qNh2vGvoOVMRGs5yo7oUp4txedgdJZVf9uUB2QR\nb2JG\r\n=edVQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"3791cfc37cbd5d18ca49242cd021744bbd78ca9a","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"17.1.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","deep-assign":"^3.0.0","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.1_1640353349479_0.5593411459092958","host":"s3://npm-registry-packages"}},"3.0.0-beta.2":{"name":"ant-design-vue","version":"3.0.0-beta.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"c072088e59d778c4a2d4565b22a5126220f64974","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.2.tgz","fileCount":5241,"integrity":"sha512-yzfNbjfUDg6lbJLGQm+qlF2tblIfr26fomurM/8/JjTZYZXT+Vuav7AEA+Zk8DmDOobowLwtYWDtDFGFj831LQ==","signatures":[{"sig":"MEUCIQDc2rDrgA1IoiNKPPSwS50cPyxWs3PvIaQ5i14nab/bcgIgVBUfjOieD8U83OXpztb2M/diiMTGFyRjd0L/Sqc//9k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52142205,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhySGnCRA9TVsSAnZWagAAV54P/0PKF6/rGDk7CaZZUPT0\niWjybsxb3PDh4hfOVZYiVuDqLlWecq6JVqcrW8wnLIPHWII+rtB79o7ducBW\nfeeqEXme6IAI+3mJcIpu6aU7SV/K9zzIYq/1PHyPTRFe8NHBQDndjY+X4YOM\nq+5xnh10zzmKnI1HtlCc0syXs7nKh5ZnM0V3IokAL/MDk3pAWksRSG586Ws4\n586rHxogqWxuJRAwlKKHQ3ddr1bfVeWnBv+BdWht1oIpv+JcyVVA+KyZK81I\nz55vHENGZWfkPmFF0c7KFrznqbLla9KjbW3x8DI49ekBTKB22VpoxE/4NaZA\nl4bctVQgrhJ8ihC4qTKJ7ySEDHRDSLrPaGD3prv+DbOb+56T8YLVgsiVoWsN\ng8aeOB8uhd4Od9pmKJZqABOXBnQLadXOlO8IPc/KxBDcdl+wy1Q9LTslvWNV\ntWVhRGJ08EaaPaWDgRdFhtntihOg2o5a1qgogFClRzk+5RUBIcC3x2OPdEm1\nLA6ryYpo5vSyx68iFG0oQ5r2XH1WItLjhw8IkC/7HwH4nVdWFA3pyoLBkGnW\n7EIfIKuVszF+VLibfsEdwn7jAxiQe2HEmtiJF59bSOBepnTwvIaeNey/t5yk\nXPJwHolPf/lvivch7e+flQ249VsXqfAIUbcU/0b+vOpJJt7xZ/EEruRq6RTt\nVJs9\r\n=zIiX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"8b2b402f73587f37f146d0555fa34eae20185c09","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.2_1640571303439_0.7573342193409041","host":"s3://npm-registry-packages"}},"3.0.0-beta.3":{"name":"ant-design-vue","version":"3.0.0-beta.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"f621a3ae736cbb0bf06f6109f1a7433b70397231","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.3.tgz","fileCount":5241,"integrity":"sha512-filLiMc7zk+0l1AZ6nLk5nOil77Tm2M5FJZzS9Ce79z6pSX5mffWL3r8GWe/OAwr0g/SPmefHQfwtNL7/N1smg==","signatures":[{"sig":"MEQCICUiUQ6iG+LpkU1fMbl1wQa4x/mCW2MfuF8BXHaZBbe1AiAGlgWMdLp8+LWuquG53G+fi7BkcN+6TaOzeEJxbtszDw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52136045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyXCiCRA9TVsSAnZWagAA6rMP/2UaT2GvCasiZAleB7WA\nSstaSP8BNhjwXAXyw9HWatpbQPPPOq4LP75iO4cwrtvZsCUHnUgiKUruvOIQ\nkWwbjclfDtoWhVhP5IN0cjUcVX21MUPwb4//0GbkUga0PaSEvmprL9Qoex6J\nyBrLKWsGx3O7Wc4/vQMTelavI9jSy0xVKq2xAykPix7axyDQbM1eg3KRpzEP\nPg4BXPGA1XXqWS99Q9I6fzqazcUciQmBcIzOQROsToXCBfI6b/1skB3AuDoj\nF3cUT5F5cUKuQeoAr4Sod1M8jri9+JIhq/zbcZ3SNR8UvVVlRujbXOWtT14L\nejcOebqfrXKsfgAUDsNPlyElVjrPZVwdPweMWK9cAm5Mlt4If0xI6/IRr0st\nNnW7RF9cnN48e1g3BhYAKJONhsd0aDqIMVCTHVnIN4uNiywMHwLiYD5UKyHf\nxN6yyv8ezQCY0d3zRuu3v2lWnc//lWbj/X5VyZpUPup2U3mRk9LhoC+w6Qy8\nm08DF9E+w1FUwkrxSHGU1c7Xdi0Pmmth/NbuT+vtfw4xFlFld9rFaiYmUkR8\nUuAz+4RQXXlld1jgGSC+KjaYxZ1Q9xKPeOS+Y2a8IcOQr503RXGvJ/fPreWp\n1uoe3lEpDnN9oISL9+/sclZ/CR4W7b2toVkvnS1sH9q/xV99V6IXHd3WC5bN\nIe8J\r\n=SFWj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"41f41875932738a8d97bc314a2c118748ddaa1af","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"7.20.5","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"15.8.0","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.3_1640591521829_0.9581146722382978","host":"s3://npm-registry-packages"}},"3.0.0-beta.4":{"name":"ant-design-vue","version":"3.0.0-beta.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e6f7861682875d77220d02ffe561b2b2022cd15b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.4.tgz","fileCount":5205,"integrity":"sha512-WUkA8LyXw35vi1OOHTzvtcet0lEhNGCQNF85zEOHpPlA1Xf8KWCricFeiA38fgg2AHWvE1mrVw/wqB1kXBJM1Q==","signatures":[{"sig":"MEUCIQCtCcUKw/s3SzIDg7v6Brsp+UCzB+VtamhopkjmUJX0mQIgBAxyh00fiR9WEre+TGD9dGsyi+lTet/IqYncb2B83t8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52036723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhyxxfCRA9TVsSAnZWagAA/n4P/iIjzXiJvCV7dHNs2bFc\nUFGxrNzHKlUVk9jcIxsfkpZ4r0HLVSMijOaU3dpytz7mz7p0e70M8OJA+3Ev\nTynWjUH/Vh54ea1ZW/4cAWwIkkm/2AvpTxiCo2/I2+ATr9Kc1KSKTjUo91I1\nMrh6m5NwKA9IHMCPD4bWwajX7i00wEtrhxbHjnGvDlsnaJw1nsrx1gCsREaA\nYs1RoCS8Dy51TfyhN3B8KhQuN2VhKF/Tw5ac1Y7u/1XYWLLwA1CXA1+4992u\nopGm64W3kxYLZ8YAFszgPVTgQRASfFvsfiDgiZ/bBbSQbUcaLmDN8xRGZQht\nN+yAxf0rP9oeNOQPMGJCR0+Qt9TFe+gYOoNTd9xxv2wmhjZxv05Rwyhsg4OS\nBMBhq7wDG8fvNx79VUSJP6VkSzVjKKXPmCvfTJTwpKNLuNyR97/9fmFFSDtl\n8BiCjuQl5prdCoY859dnJ9FUXczsmIlix+L/xc9biVDOIpDFTZmMFYqk3Jrs\nOcZvCkp9Ko9EswT+W3Gp79VEEvYbu6d+Tapf8xmFxSMioYpVCGL6fTx7q1VH\nL/69DqzO+0CVeizOhghxIhuFK2azslgEVT3cuLV/MMMYhiu5H+DXrq7f+q1V\nMm5tSl4Ida8CxaKOvxSIWQIcrH4GkcHx/Hq0uYH12f6JKNu/lKvs897VlgWY\nJZvu\r\n=5j34\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"f6725f86c2e01f3fd77e452eee38c8c6edfe15ed","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.4_1640701022827_0.6043423455200869","host":"s3://npm-registry-packages"}},"3.0.0-beta.5":{"name":"ant-design-vue","version":"3.0.0-beta.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9994ecedc7ad29600d85e73a754199d948869bb1","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.5.tgz","fileCount":5207,"integrity":"sha512-yX+JGkPlzXav56hHCg0aa1LAB9GQEEQ8Xfy0o7tc49zFH2v0Q8ekiWVXsvsiracLZgl7GcLm5HnEPp9tAy0BZQ==","signatures":[{"sig":"MEQCIHKB+A7AWHvxvCd+ZrIc5s8r/GKTXm/7LeuNtPLJammLAiBpU05OWMs7A3zW/Vy7gfq3wNhedAKgev2fQj7oLdauBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52563534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh07JxCRA9TVsSAnZWagAABSAQAI+BeYyJxFL9/ba4ZDS0\n61HPf7pjRImI1b5jokRZUh9f2hYPR17Y0ZKUJPwtr/dB0g2LaR0jt3jDnWN3\ns69+qXj2DaYG6iAV5SMf5bJFw4IFOM/IRscmegeszoHJ34N43w8/nuuUjf1z\nxnrjwYy+CHSSJ9k585bm/v6Vs8QhMfBiejAR8+0FmvUWG3zF0CAnLPMQJHZD\nlzJwrI4b9DVqkxQOUweBh9Eq09Au3SPX0AY+pVybUsEE07oWrTVf/g3zmSJ4\nHyVEtkH+Ywh4WLxamOYUwXP0ANbUW2y/dvmkRuhE6FcJUCqUVfs01cFHeSUt\nNY3fh2Bb8xJ341ajk+Pnp21WAqx6+NiSyspLbSys7vLriZJNUgI9Pkzmu0yE\nQ9bKEWApdVZk4NyKcL3EsyO+0OHJELALBW8IJCb5YzSN30J4W8pFXrw+4e1Z\n0QnV/jsvJjVJ7/Mn06qxLTgecQzF0GkcKrJWIdJa6puQjX7ouh7IVf2H2tQP\nBtYGNqYKxgA8nTgsobKEBtLoObrExNSbQpIIcL5U0YN4YXmc8RtLNEVbl0Wa\n8b3jITa5MsAhg4FICN37FDdnfdBqdZoTAR+5SpiDFxsynuQqCpaea434+0vx\nJdVXerCNCHSb4ZKdGKpSeveYyVHYRDnCdxy8CIp96MMKixu+vaXt4Ysfwu0g\n7vDf\r\n=ljno\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"81ab68f696df22fc921cc26199eb061e2f69d1b1","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.5_1641263728534_0.6811155538878186","host":"s3://npm-registry-packages"}},"3.0.0-beta.6":{"name":"ant-design-vue","version":"3.0.0-beta.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ee3803bcb8d62eddf11253a96d9af1d03a9637df","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.6.tgz","fileCount":5205,"integrity":"sha512-Bgyw/8DHDbdKN11gAl4weTyljdx53H9HIPBq/dU1FqrH0h6yu8RjTyRgZcDk2H0U0HGM9b/HVotOchEANhRw9w==","signatures":[{"sig":"MEUCIQDdgNfB48/Vk66z+SePIHH/zkxPSB0qH7TownRWFU7xxwIgcZ2rFhtP7ca7G2KEz6JEFjEkQP9YGlRyndeBPP5msxI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52572879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh2D6WCRA9TVsSAnZWagAAwzUP/2Ezxdjg6+7Aidd4nWnl\nN4bi/hpnZR3rttweha4Vl6V3++CfGLyNlJdfPgGBXCsgQngJjF2B1DmZDoCD\n1x1e4RJEBNR3AtTW7dnADIa6WUb7QuVnHtzPiqHLayFApelgjS2jlJKh/f73\nete+SUYHA38+nZubISsab2BPfJhn+Bl2t40YCZm/zcC4+pleTen06Q+B1MuK\nK+Bv3XoslnToPOwCv0+ENprOEkMgcxaV2Pkqxubf3ixnOzTS9Rm6NEjI8HQu\n0oeyEu7J8VHTjdYw7Yy/9j8f9HZ1raOc2Z3ierTVd+hjc4WRMweMdqPr5OY2\nxWRB/E0yXk3Ocd0TnPNjQkhoqzdVjMCvJ/z4Li2zs+m1W3aLy5+PA2GJdM1A\nE4fsiqqq2s1ioIiNXYxPGGRUxTTL5ccFJY8k7ITofPnpEYuySvfstuQ7MTqw\nGWc1I0quidy23iAbR9cdt34Ff6PB2UdoojcTxNFQW2ajno/CJ90Rc7L9V+sy\nXbRw7j6YHG1QaJc0y+ItOcoatHfnOUIVIIEU/7/fPSDMR5mkPQecyz3GZR5I\ndYy8UIjSWe1kUgEwWTNJmC6unbvP5Dfk2ih1mJb6vCxhmrBceKGKf1h4Vqco\n2Xhm7hKLPlYk2rWTxCttmWlR8TGCq+Kt26Xs8iuHda0a+nsvgD/BkyxA46lr\nTvlq\r\n=kelg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"7c9c95cc37f7918236d20324dd4d13e08e41c270","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.6_1641561749758_0.2745173006185","host":"s3://npm-registry-packages"}},"3.0.0-beta.7":{"name":"ant-design-vue","version":"3.0.0-beta.7","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fcb658975ebebee5a3b5c10d7c80b08e31a443b2","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.7.tgz","fileCount":5205,"integrity":"sha512-8ay9+AnleifI/Ji6DnbrBku1kwo3fPjNrxyqsBAfe573T4gML9AVpX2/CaJgc41ID9liJdNV8fChgVEckeVb1A==","signatures":[{"sig":"MEUCIBrXqVWT8IeC5Ep8mEORQucBQyvl/KGXfmIdz0N6TULYAiEAkxYCstQrJY0Beih/35O3ryHuijqGewoiHUb6eKVc3/c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":52567530,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh25tbCRA9TVsSAnZWagAAbp4P/i8r0sEudvPe4z6ojTKL\nwafTpTIUexd+06UT4C6rcHrwbZf+aCbTsMafcjwZ3e89dUOqPJGgG0oDrvA7\nkNHihPWLGE18AhG91jllVMp4eIl1nxRemdlGYrTYj5QRUKwtQeh8onbSPvVy\nvSgPnc4GrmHrvsYnlq0m0u8zRWBq6s77T2cYvAhPCbsyxM8kP9bP/cd4d+rP\nGGcgqNfjFu4FLDHbJ0t7bAXDfWG3AsOf2WjdGWaBJ6OlRA9bCVkb3tZnq/R3\nyMgiCgD8sGzhMGb3FSvhKiKumrsyb/6oJntZSsWdQB++hj7dJpQLURouWovz\nr5LFIW6cqNq5SGoX4kqAcHqftRxnIqC5ZsCS6TcuqKNoLLquDwHQuEsa595n\nZ3ft+I73IFtMYPeiNwxnVwG2ktAJ66b24apQxepRBQ/nfqOnyX/cxRgHWEP4\nDVnz6uoXXWnXadj1hi4hhE9DlLHcH3zrGNRCzLS2nuiDAf3wMau07SKaEhZQ\nvzBMYpDQAcbM63pIZ+3kk2GLRtCBl/YtHvrJD7Cwog8IF4A3Bgocf2arfNUC\n8hNXF7aBou1WeRTWtgfCec4gbfAStWnlhORpj62duPIVyyzY3SSvQNn+aYJf\nCPj/lE+y/SEca00bxqyQu58Laee3kBUP5SeLdEgEzL7nuCGiCbUTY0R//dsT\nFp7H\r\n=xADq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"dab6f90f81744678200a09aa261e5c64635fa882","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.7_1641782106842_0.6976275966022472","host":"s3://npm-registry-packages"}},"3.0.0-beta.8":{"name":"ant-design-vue","version":"3.0.0-beta.8","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9d47666833901eb8ec09646996abe0214ccd27de","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.8.tgz","fileCount":5239,"integrity":"sha512-3fgfg0pfIqvQ7VN5nKKZayqMH8V1T8nn+e3hWOz6QYdYa7gNydgm5GH+r8ZyhQitkmiAIYXbNDakcqrUdOPXOA==","signatures":[{"sig":"MEUCIFdyuNyxTOPGaVzcQqlLKBKkn8yuDtlPpjRYSGmRVOzfAiEAo5la7ydKXHy0IQYvsZuT/5sMZxqMDp0+MTVlClGPK68=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53722603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh6s+xCRA9TVsSAnZWagAAadkQAJ9AnpZNTiVNtpXK4Otd\nogaRWhIUbKE1j24GdHWSVkoRmdGVwR3iivyBa8O09lrW4pOWM8HX0m4ntJ6c\nbs7mvzbiyv8y8+dbRd1M7qo63D2H3iF+adSSPlbPjdDZbxaOoj+mys9t+Wye\nPdQOwCx7hhmlrSVC9ritNAgPV6y7Ve8XEm2L0wITn7Tweu4mzfkyyorwQvvX\nADSYYfmcdDQUqL1dn0mkfjK20WZWNyA0IogtPFQuoUjHJYJlA/aGGhpznL5R\nXBLji9DofXwir+njUG3H8e8yi7nbzHsBN6hp6npADNwZo+j3G8sRangMpnrW\n9M4lVZvbTi1wrhUZMvIDTiyQ9CowH9KrWo3zi91EWhIzUcxD4UfTNiMdEbma\n3I6t/Pvd6MPrKNSOo03S3q4aZJsTx3B/2sZEpwmx+bdNKnnX+FLMetmYBzt8\nd5Q0IOOQ+f8xoQzBRlTumtN89rJj0jFy8H55rcZFr8fonYFSz6fMR9d2hQWz\nZAHJQrgYeh+XhshWxyvfZVcKMw636NFyi3AKBkjXNF5+lKfFTPdCkpUQjBF9\noGeDR8uQVykI56tDrjCGiOGo/B7yjq7oQrKXqxkDGv1bsC/TkVz1OonX8pmV\nvOMbTBACB0HkSlWLEUtvJ41R/okJZCRQOXjWhHM8a/MxsGSrFqoj1fStwAkG\nOm+F\r\n=T3j+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"b88d97a3145f499736adf81e11267092cec96214","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.8_1642778543192_0.18918042459184736","host":"s3://npm-registry-packages"}},"3.0.0-beta.9":{"name":"ant-design-vue","version":"3.0.0-beta.9","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.9","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2febf71e6d9aacbfc88ca3ea6f857419269b42e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.9.tgz","fileCount":5173,"integrity":"sha512-5wRfrnj6n5E4Xrqd4A8DsnThCNa4HD3jUPVV9cDb4aH2C2a1QcuxNCXB0kvPUDJRyOJ4+6Qr547n0fCN+CVOhg==","signatures":[{"sig":"MEUCICI7ot07kTGFfgfETxGsTLilM/L2c3eMGwiWJ/X8KXRCAiEAzCk6JEq1MCx4A4NUzYJzc39TdnylplFelkYmdeRPMkE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53627136,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh81a7CRA9TVsSAnZWagAAvTYP/2Y0/USbryl2flGnu0pZ\nbInM6qmXX9T6Vuc0L2AJ6yV0DRRK0NYUiU5P8DQ2V+aPsiNdfWKLxSh/U8WN\nVbUUUNU53DVagZaPktXDj2HS6h7mWQT7i1kekCr45bAOKZiMotxnnvrt6eEI\nlFItybHmHxp95+OBmGnZ7665Y0FKPMWtUboxOzGSGTTpHmth2mOXaYD0ls1K\nbYwoW604Zuh+fMo4xwx9WICzijb1hbgmn7jCVbX/39xlAJ3iiXwRurOD90MF\nOaEb6HwfTlIpCN+4SqjvrRRaCEyJ0T5p0E7mUE73hel+Sw0AzdGXPFuFS87Z\nG+W9FGQ0mduiqkxfru+rFkGj5LG1lUjBOuR0bnke1H4Q70YeooMf+eSSefSn\no6dTCvLw6afvfR6lcJpFOZR6h+hqIDyNdyE+GlwAEh05fYUt+G7trkQjA9HC\nxo15YfjMdMBMp3moyoJk1ZlPSzDKbH2Q2gozxrwpvgq+OH5FHgO9jFWkQwXC\nGaESe2qjeVmZbf8rXwIVUwyl+IvL+PVu+JGQQsbhwUxtpOKlh0jXe8ZkmkRC\nrJS5VneXDvlG2ePoQC6eWOG8uuLfW2VCOC4MUDY8rURm0wvgLtudjzqPGCOe\njboHaro32iILxX4+1Q20fA0z0QPDXI35PStI71bTXZLnaK5PjjRt7sqcAGJh\ngQtL\r\n=y+py\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"34869eceb51f10e61d578d8444bf343d759070b6","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.1.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.1.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.1.0","@vue/compiler-sfc":">=3.1.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.9_1643337403195_0.36448904398719684","host":"s3://npm-registry-packages"}},"3.0.0-beta.10":{"name":"ant-design-vue","version":"3.0.0-beta.10","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.10","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"a8ee7c57bfbe298e26f2966fed2a3f69d47a8ea5","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.10.tgz","fileCount":5173,"integrity":"sha512-OTti+yNp0rcj01EnLNnsiuKhIcnOOmHrscdIeaO83nrxfiIi6l20Z0p9/7t8XyFgn1dPiJB1F/xk+1YlEAgkJw==","signatures":[{"sig":"MEUCIA86/L0m/oi3j8BUVVMTj4nydSH+kc0maYj4zuWbNR/zAiEAxn/ZNGd97MMFaa/8WolHKbEnqZDZ0GWzlGUJcBgIJEU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53627925,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiD1uBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqSkg//f693uezOYKSh3Rsj5mEGVnCs1d590lrXJQCX4oJ/7mQh4If1\r\nECelgj3aW0o8kkLh9pausdEpQYETTnnKMFitQt87B1gIJeL5aSJs/WtCHLy5\r\n+mEJIqkPFb9r8HosZJNqXcvd/lswDU4Dtj7xo0dLgFTf5kQFKrwfhQ1NBfqF\r\nHpzjdjmix5LyPmk73o1zNYZtAwTlCx2gK5g8AcYp1tmAkiw5yeorXb49KA3M\r\n83oQMBz6sQpsPVLts52ObQPcNoomcI+ZnEiNs3NadxyP0lS4D4jEfrnuyTrw\r\nhdWQVPcuggUH5kL3j1uE2H+Xh3jRlBGN1pFtBz49H4tJ4AcwBAX4RGxb/PJf\r\noJ3CLNIS9bQ25BwHVXOD4jw221I2NoqcCb/YjUSh6BfM3ZL4uK2fRx8uOyLZ\r\n2xY5EPF6Qomiv0Jkzcc8fsSnet4YBVYUgODDAPCGEq7DdDBVE6yqNju5+Epk\r\n17lS6W5x7YHchhENqSCDpW+9oquXTuqhgt4meQ5mPGnHpw8RhZXxAXceZYx8\r\n/NCbDmfG4UlRuxPuIDjItVUqx7LEDcfDAwlkOrYhNSBdYf2VV1oqM2pZas3L\r\nIL9uLP42DgyuWdyQH0swuHepTGJ6Yp+CKUfv6FqqFLWRPVhDSSKJgkbI7oln\r\nBS60svppz58Hb0f2rQTzbiXlFl87resG7Hg=\r\n=YiS4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"6056b751b663ebdf2dfd81789e2447edfd25f66d","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","vue-draggable-resizable":"^2.1.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.10_1645173632897_0.7349873140183878","host":"s3://npm-registry-packages"}},"3.0.0-beta.11":{"name":"ant-design-vue","version":"3.0.0-beta.11","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.11","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"d3515414286a3b28ad28ab44e59bf240ade4c5fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.11.tgz","fileCount":5181,"integrity":"sha512-WTsRRCg4yHuCDXwuGtkwe4w1hl8V9pNePxGe7/eu1qqBqeHtLhwyMSxXvGqJUt6iCEsykCByl8OuNE1AB9mpTw==","signatures":[{"sig":"MEUCIC8ElhXFsQXugVW3SfnzY3pcjNDS/+9Y8UA3LvkbEcjEAiEAsBmce56yvNcJOw8yMHTGO4TdJgrKxq/UfBtGFMe60cU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53747377,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHN4zACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqypg//aSErKLvjSLX09lQYGYB4c0DMI/BaXMoo02wrzWx1iMa0GFAF\r\ncngJdudyKCL7Wk3ks44xLdqqFuf+bXMIByBlhjdxf7MeRseB5Dzh2IYpRR8T\r\nFXYeG0D0Ug9OyWe/xhh/X6Q3Oiuk38uP6aDPYj/1DC1m0MuB4Qw43q7Q0HkH\r\nhnlUgP+ZxU+Vyj5k8uinYJeh0kmlXktuAl2gPPlkX3zgGA4K3Rh4ORK5erGE\r\njYxMhOomnnxDP9C3yj3D48rbyTaChib1QvIYyBsfip9Ic74uYdG5q/dJ4DKK\r\n+3Zo8xc4HK/LZ7PMcOYcX4pJVBzhRfV0qcKKL/9Ek3CDALWerCG33ru2OKIq\r\ncf0+vokvbq2L6w2guUg9c/6dzF7daYZQopeX8ZIKVPxGfdb6gC9j3RUTbUUe\r\nQfh2pG6QiZjLOD0T2y0u0aZeGt2ZhCJcMx/K37MM5+jWO+mepldrJl1cTmO5\r\nwpwKCP+nGeCJiaBRt3aG3T6l6sIBnlAYCTAHPB0jEJvcufu37EyyD553HVdv\r\ncytnh6g49qPqvJvxb7xdrMwI5mH//7qtPVB+PtLIEGcf9OoZbIt45112/ZNy\r\nDo8LocxFQusKLqO+WuI/hmbrndeZui7ww9Ga0uzUUFFf5BWNETW4xQXsjQ3Y\r\nEb3SCKYTBuEnUjROsEbn2ramD3/XBwltguI=\r\n=dcsI\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"fe0fc8084fd3db1eb5a2a5176465cea0c363cb83","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.11_1646059059210_0.018993829643259463","host":"s3://npm-registry-packages"}},"3.0.0-beta.12":{"name":"ant-design-vue","version":"3.0.0-beta.12","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.12","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"912e086329280a80c85aee690c02f91e59acaddc","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.12.tgz","fileCount":5181,"integrity":"sha512-mS6G72rDB+oLkYAI6Cxv9Q4xtfssAkRRmbvN1Bu3C4JMGvbNcFuq03iJvFnZt9SPwGiLpQHLXCtlFHL9/9Bkcg==","signatures":[{"sig":"MEUCIQDZDq45n3xTgeGxr93TziE8Kb8B7F4RHxyFUSbrrbAB4AIgT4KWZwzvo+YUFS8ePSZ7Oxc3e3AQ39WoBmjJ41S5V28=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53755090,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHwyNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpzdQ/+LZLyc5IaXVkl++V1MPNoU8DSWLPjkNcn7vI4RxY2CnfaDqUi\r\n9hzFtaFVCFoa7K7mQcfGClCL+XstxQixJnh7XSd71YVGuFbxtS/gZgpcQ7/D\r\nSH1J17XcCC6yPxghL8TwY95JiQnUNGqkfcNVvf2XxY3nZfBrQFvLSXI1CobG\r\nCcftVwAGGgJvvlmzM6xMY1RFY3SOUynjD9bGVXXhMbHeWdU6vnfYeaEMNXEd\r\nBGvQ07X6HgoPpIK7Vy845JaEi7upyduuOHIZrUCG0/fnz5/zPvT+/mlLCkSg\r\nZp2j5imECoVyR4EpxDxl+LfWySYM/U9Nqa7vEoC6kUtCwjzNAfPQ6xZibyM+\r\nV8QUspnrvL0idcqWL7s3/Ttzxn1ORhppTwHS5KxzcebZ7bjtqlxjSiKfscbI\r\nWoISFGJrKSRnvhH/93/xHEcZYXHvohGApFqaWCXoyUGrErkgQFs5FS5RGuQ5\r\nL5f0Gne/FJOs4HPpJrH9UtrhSZXu96ti+f/ip7LX/Kb/X1s7JlGR/rAPjYYI\r\nyHy7iaFCvkLAWniE7xb2WB/+GSwnB8dU1M3vSq9gT4yY8iyOtIDUY09bZ1TB\r\n77e8WLCwzt28bM3Qh7puyOiT4ie7gNi9GAZxGdko+hSruJM/DyS3hiV+pOIN\r\ni5IIQuoWJzeC8Z3knnxBF0VtpPesWHbIVtA=\r\n=z5Pk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"639a68521c7e16adc11d6637ff9f3e5f2df603bf","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.12_1646201997375_0.6925206430205466","host":"s3://npm-registry-packages"}},"3.0.0-beta.13":{"name":"ant-design-vue","version":"3.0.0-beta.13","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.0.0-beta.13","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"6c0ba3fe4b262e68ca96129e1b1671deea74a3a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.0.0-beta.13.tgz","fileCount":5181,"integrity":"sha512-+8AoxRqLaoP77Tt9eLvNwe3MY2c646APYEQ4Q/pSg5BWW/Jj2S5N+hdUSI1TZB19sEGjPdZ2wvdJxZppfyGadg==","signatures":[{"sig":"MEUCIEC39CLSRXMv6DLPupaMQn8jUweKyPT7PfuGRcHCizRYAiEA/1vtox3ZrPdl+7ePQw+ElAQpiwzpe4iZu5U742wLiUs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":53746446,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiIa4yACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrrjw//Wq33IUVmeuKze6adzBmSWW0AR8g8gcNJB19k2FLuWgEXG6oR\r\nkqPnapkVFsZOYWpxkiXtcFFiHHtG8hvIXFOtv1xPNkDsAxEBO3MamjvQfoWZ\r\nDbikFWOXDZAdX57xzbmVpsFZKy0y3Hf9Mnh5wT2AR51vIQTVxrx098FaVWtt\r\nXa54wzQgrOm4BVsiO/AO4zOZ30E+iCDkvxpYw4dupUF9F8+kqpe/CSPVWkD1\r\nunvLT/PISEILCLjPL6eMvkWs2EQerbFT9B7ksqPTnGKG/QARBAOSLy8LSXHE\r\ncThzzS9Ayj3LlHgpelc3oh8ioRRvh4ZUNUj7866HmsDYMJgNvVJI7Hq5rrgr\r\ngbEmprIzNyA9CN14u09JvHDVicXdhZAbBt51dPyveKcDqnunLt1ns3E3M1Dt\r\nAy5RHRkDkCSO88sod1kmO9CebuJWtSZsxnWACq/PZqBSTenc2Ir/W1lXIvPh\r\n+ulwqDXEbCalMVlvlpANN7cnKQ7W8M/eTb/mNtrvNZDWHldAXGax6v0AzHXn\r\nOBb7weFhrN3z5T7t2z6+RDrCMmLQ+trWVibl/NdUE0buwjXlRhhQa+JiRfTO\r\ntFZ/fUbYMq8N92peRhZMAmL+dTxmwsCtEfWSU9uf+d0bKa062Sa+R7E1Qwju\r\nZqTMndoTvwUatgA7jflrH9cIJPO1gFHz/vw=\r\n=SadU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"fdf7857f89cbb0a86d2b1be8b532eb1e301e5df3","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","prepare":"husky install","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"node ./scripts/prepub && npm run generator-webtypes","pub-with-ci":"node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^7.2.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.0-3","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^1.5.0","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.0.0-beta.13_1646374450421_0.9081898415317768","host":"s3://npm-registry-packages"}},"3.1.0-rc.0":{"name":"ant-design-vue","version":"3.1.0-rc.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.0-rc.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"8759bde685c747859160c474d67f8a51dacc3a6b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.0-rc.0.tgz","fileCount":5488,"integrity":"sha512-HbMMSEBBS5g8yNm/Ol4Kop48zNFEzTY0w/nZRq776NLX+Rg0Kko9ie93NZr6hKuS/d0bJNKll6I/WC5krIWsBg==","signatures":[{"sig":"MEUCIQDzf8glwGniAjfjPYmhxCVUpPQU8sjKkQuUZlQRL6CTQgIgWUZe5Xvsun0zQleGUUMAWI7rQIp3zMhDxmrbu+2Er/g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61772657,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiMEVZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrp/A//dt/sllyjx3cs4956QKe9zAk42KIX1KL4FmdGYxZf7fb9q4DM\r\nTlnt2w0UOKb/THp3EsuTEi+OvY8NigG+7aVFVgBiTesansd2PdWjgKOWXwTX\r\nxMVcHgpHZ1SvunL4ZCCt+Br6ZaRqSI6RzXtxOlqvYAVhTKQxxxNrQlUArxwm\r\nADYbxix/bkbKZelIx84Go9qnWIiwgNny1ezm/uhza9NhatzxZ3a/fZx5YABT\r\nZcHfgp2hEdw3wMWEjM0yev2emVR+H6zk0rMXmO3fLMbSCxDDS4XjReTMUEDv\r\nvkWF0bO4yZoKJIYObbT11H4lOqaviSXcxf1bYPUyrmdEmRtLDfCXazYsthzl\r\nR2NKlss/npJ9xHCfqHn1vHG/lcmprHVBgQoyiAJDK/b+h083BbfWGSZLYR2p\r\ndrA2kyslcnQKLjwFa36JlmstzdDUALXH+J/r82dUk5/CXys8E9RT8278fEHZ\r\nKcuOp53Dfprov88xrR54xOEN8N14Ghj2OhVutrUPqSx0H+cEY13Ks5AQzgrI\r\nJZllDlpIN6vCuzIICo0t3AIFJ+uhENPTzkNN+tVBWZD0t/xpd5nPvJescD0C\r\nGMWhNp4zS2a653sJrEjebQRuwR2Qg51QpyfMhPjx/EKhWpQ0S4B8tbLfgpPv\r\nOA2orkmHu8wro16wxNamr3XdBCdk7EB1LGI=\r\n=ZYwM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"8f47732b458aae67ae80a246fcffdfa0cd5dd6d4","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^13.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","querystring":"^0.2.0","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","query-string":"^7.0.1","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^4.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^25.3.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","umi-mock-middleware":"^1.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^8.0.0","stylelint-config-standard":"^22.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.0-rc.0_1647330649127_0.7794677334467999","host":"s3://npm-registry-packages"}},"3.1.0-rc.1":{"name":"ant-design-vue","version":"3.1.0-rc.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.0-rc.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"97cd336c9db01270e96600492ccec63fbbd99c5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.0-rc.1.tgz","fileCount":5498,"integrity":"sha512-k9vIYBuYetCqJEGn2pZS9cZsrdseu0uYTxzdmtdsRZjjE+m4l+6EZKis/apFEiL3/tO+phe5ZkveSrHTTN0TJA==","signatures":[{"sig":"MEUCICsNfcoI79IdFA1LYnYhdbBJafnm1F+A+0KexKYQwW/kAiEA871OEgJZUzMT95L7tjbEzV9Y0KNW/5HtqygZF60fMUI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61925618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiM/HgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp2QQ//chycvrsbOYAYrodnExF8/S5Ba1t/P/XYudlQgi/0CWvGy473\r\nRVLR3iqKQlbIeG62vCY9P2b5U03UUFCfpk/xvscngje8tThMZDLtFCH/waL6\r\nj5u0pA4LL9UuMzY/B1Ymtpzx2L/KPuSfN34ZXpp6E7Dcw8eDFhQnIoXQNH5x\r\nXaOeZkR0tr/9jGOjEQiRF5T+SfMaPtWrE4+83zvnBdV9IjzVsbqbUwnvtzYW\r\nGKCugbAViTr3QIRMbOeA7o5KtHRmUJJIDV9GVkcGAxuGxzL+rrxwEuDlzeyy\r\nJAvfp4khSlhps6TeUYIOUDgu7+esCDOoU43ordqJ5xzTWHidK1IKjMOXqZoi\r\nd2jl6kizr87zQb6CQ0S/zGCC9I3TRXpY8I/OmDvBKWNAH2+PIOYEsRSCVBzg\r\nIt57ANA3f9XkBpnKztLA16vq0i09nBDh4xjJ9oMJFPAf5O4wPRDIJoYDJATD\r\naSXK1GO6Rao2XizAOTKI1ukIhPKLFZia2WLIK9kgQZzsTmTfAmOhQg5TriVp\r\nL+EVoIVrEp4Q5Tj/ru+RosbKNLmYo1HeuTiG7Iu+eR8kVxrQet0Tr1SkrYyS\r\nh/vKQFlQnzhdQz0qfl0epaj+sj7TmXz9Q/OOet8QVnQTdlq8n96GjFozhRkH\r\nBZSr+PCEzQIUeY0oFNTBFrSd/mkXXu8FAC4=\r\n=pb/X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"9bd52d4ca0416f2d39b9b62e2f375527eeee054d","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.0-rc.1_1647571424400_0.6402912971626686","host":"s3://npm-registry-packages"}},"3.1.0-rc.2":{"name":"ant-design-vue","version":"3.1.0-rc.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.0-rc.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"3b133622fab3bf3c053e417f47484d03585ec452","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.0-rc.2.tgz","fileCount":5502,"integrity":"sha512-WZIvhgWsKyQnUQ+UTxDxsZZxN+DJCgGGOtfjO3sui6xroOM1YTaJzWXDSm9nvcJ7bWsrfjpZOGVBKG6JseFnGw==","signatures":[{"sig":"MEQCICGuPnDnXToM6Lg8PlMo4S/gPtuNVZ5gBP0duK17K1w6AiBruQ7DXfd/B8/KFYVuGK19IFOcM+PnQ+9NLiQS49/Dvw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61970533,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiNYsjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrs3Q/+LOiCel6nmW4WiGK/WZyau4SJ7PmqIWn7iYGknrR6qmNWEtJc\r\n4HDZjoq5/bO8n97/OAPU98z50ujuY8OA3tbD9Uyjs6JEB+gQpYkk0OkiLkDa\r\nXE4VRQySZDrQ+tHzVWu1lnpsr1/YfK7QlxFRw1RZk7CjJC358dM5Jcwd6b4J\r\n9EFR0V/rzkhzrqP5YBM0Er5MIiEUOouRo8LrH73lmMZXT8LKYHdluCpi2Fm/\r\nxCYF3Fh093SS1P4UtOHJoCi7MMfEiRyj1HKt39oBihxVppdr1s+9qfV/2vlP\r\nDh3PqYbcM3D5VJHktMZ9nZ4M4GV1VRwwSzU1EKvWHmIr1PG6L1o9j3pY+E7P\r\nm6hk5XNXKueHTk6u1NO0yD2nACArezSycd0+Pwi0gyVtLT5fqxipWHnNFRCo\r\nZZXxfCDwcF1PepYpZlrdS/cSQoUFPoI8kW9SHovU2bg0R1fbi21Dw0yb5flS\r\nxY/TvLehTrsvfC1jWfPveVJgfJytHAzcXDFwt9IhEEYIL86jF98Z6OOeFYD/\r\nwVDMQEhS07e7+hVQgJWt5zhKIKbszJCynIh+mXdV4Df6s8LbCxB+a30Qdl/O\r\n4eR2akUFWFZTH46Sbq7D45NkdidmgjefKi+GdpDIc9TiY4HPjrmeJXaKbwit\r\n28/ndU6In1+SfmgtHBHllO/0gdAw5q7M5sQ=\r\n=66PZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"17acda56550d73927b08da75ba7b47595c1fcdba","scripts":{"dev":"yarn predev && yarn routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"yarn routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.0-rc.2_1647676195448_0.8342192957672188","host":"s3://npm-registry-packages"}},"3.1.0-rc.3":{"name":"ant-design-vue","version":"3.1.0-rc.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.0-rc.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"f09e50a040060ce398446a90b2a9c41ed553e924","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.0-rc.3.tgz","fileCount":5506,"integrity":"sha512-aSEfNcNFdjOyBE7baK1pQDv+j8UU7OR+DnIWDWDEWfcPT/VIwTAWn8u1TwsWkq6XcOh6m/XCz22QBjWUJvWqMg==","signatures":[{"sig":"MEUCIQCn2Ez13Hua3gKlO5bocoXRE1SAiLGS/RTmB6TWOZGo+QIgJG0sbmFGRJ4TXm//m5JxB24T+GKHQkC/8d8n2qfZDYk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":62013911,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPIB6ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpyVw//XjJiTbXPEGYxDS80r5I8SR+DUAGT5hn2+4Wakc96NC1iLvLX\r\naOF4AmP1wrAlrW+IuZvfGndi3kP3SKqgGbxUFbzEAlAhSl6lTM+iMXgougS3\r\ni2+T4ozVUcUwuWhpp8qirrdDtZlh1m2qtP8rgGujx/5n0BThD/vPB3qHCnQm\r\ng+PtCrek44eOiliEtDxDEPJcXuu10p7fc5RCitMblH+ip2Ulzzfpngmjhkkk\r\nUDs/YyyvFBT/VuhsUTTsR1Vd8DP/y+J41Qg3A0Xar8e7Z05X5AYMXf4viTfU\r\n6BpX9F0dNN317e58pbSQmYlrBdvLpSBPdxh9AmFyCWQJSmPUrzSl7VjgOyJL\r\nig/nwE6uXh7XMTGS+oZ9D8inReMbCPHFCJfiMlpz46KRocxR+xmwAZApm7eG\r\n+QnOV2gqFfkPtG8DCv1KCpcKpktaSQoQOrohXQKv+40y9+bZNO24yIqJRaht\r\nFsPkNMrIaELLWO7VXQ9L0j1rOXsuXXXxQNONaq5RtgfcykVwiCiIX/L07Myd\r\ngWVAap9zOT3eKxvfrf0mKS7IEPRT7+lt999/62uRx5i/ZMnBcZPpZE4POj3I\r\nEJ/T5QSmJmTK05MhkfDKFTg8ab1NSQUcIboSYmfta2dWsTw372Nr3TBxkN/G\r\nAe5HpVtHbTrWZhIErtpaOSbde8LdScsPkfs=\r\n=n8qa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"12588250d5ee06031052739d926f0442e985a928","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.0-rc.3_1648132217591_0.29854223258241497","host":"s3://npm-registry-packages"}},"3.1.0-rc.4":{"name":"ant-design-vue","version":"3.1.0-rc.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.0-rc.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ac81b609608579ccc17f9095bdf910c27b260d1f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.0-rc.4.tgz","fileCount":5506,"integrity":"sha512-OfXiLF5yshdwJcAiW3rIYg49SwDL9B74GHo0+yqrqW+sZkVbezUy5wNAWlqywCvhT9exE8eclgCSlPJGmvyv2w==","signatures":[{"sig":"MEUCICiI7XS5m783F6rDYPEHPr7i3z5SvVtK0vOPLYBQldjhAiEA/0AEqcQH/TS2DydLg61VHssIltD2jiuviF6q5+sqj8M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61550293,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiPYUTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoH7g//Y8OtLa5hMi7tPt1XAsTcxMwt61866RIUIeziHnckIkN96nZ0\r\nAFEA8mHl4XwQkLC4kPq/CAyInpDkMt2bPU5C9vgdpKjhC5ozRZirEyBgWIA+\r\njWII6tojolwV77ETmhJCY+VcBVPycN74FwdD1r5R4sJF6YZK4NSTOzH8IjEv\r\n/Nd9DJt5mvw2Se++m7XDHKCjWxKPvYpQ57+MbBTAF95BNrSpqIsA7VvntdKw\r\nsCZgbYCz4aitiSMO8A/ikNrcbyR7n3ppQoIGRa8WrnMElAdi5estwICygP3t\r\n26m3uiW9C4BZ43vLaIhxRm3HBA6nqMkQyL1O5MO+Jw9ccI6/kTKfwa6III0Q\r\nwJ9PNdV2alREM6o5vQB2vr+LTUkQrJf8poQNi/8Ldn3IrftepIzDz1gn4uBg\r\nkVcg06wXbuf+Exq9BsqIQ5/5g13flAPzyTdjJSHn0nkM01tBBGkKqT6O/L6O\r\nhUwYcVseThCZGIj4VJuPVHoVxCD90ppGczrgyqfJ8bqPktEqNtLu5Og2IOZl\r\n/UDaRy48WS0bTYiUowo4VT0Pf+R+mHpD7hJIAVizmwDOau4Ra44nUPhpXZLc\r\nWfuu/Z1tnnmyDE/KeuuTvg38HgbnCsY8TNp5BqoSOvWlK8/EpZnN9bicSqI0\r\n1Go2QbCXWdYq9vyRZX2fYYdqjyPrsiXohrA=\r\n=Nwjw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"790f83f4a62c5dd23b50c751da113ec7eed93f72","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.0-rc.4_1648198931494_0.5853493498036704","host":"s3://npm-registry-packages"}},"3.1.0-rc.5":{"name":"ant-design-vue","version":"3.1.0-rc.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.0-rc.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"05d2d50cec5c73d978955ca7265e3f64bcfcfbf0","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.0-rc.5.tgz","fileCount":5506,"integrity":"sha512-ntHI5KqHLd4L2oT+Ab+K3vehnDoo26QVWeq1ml7d13uoYS6fLXlnCnrYcHyPGh5fstoaAqFcYm3eh6khcetF/w==","signatures":[{"sig":"MEUCIQDYBBwWxsLjws45HT6yVeuSkwiE2uuy+0jnxojs0uE4TgIgeARFjgHe0rCZX5VrU02ZBgZ11JkoKBGXj59dSh3fDgc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61429421,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiQWNsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmppug//Wq0/+erWzYEoaMdfTl+fEo047bTM1trlqsHVttwHDygHPdu5\r\noUUJhjWTPXJlKF2B/vZULM/8CER52gc/WvkF4HAgr2PaIyNKwhHZpT7bGZ7H\r\nZJdWUAZu8ar9dwmyiA3qvPXvW4uz/20ESJIGQh8TNxLFuvfZvPtp/Nt/B2wW\r\nDb3MnN49HTOrrls4MsxS44+t6pbulQXPAofivY1HJvQNuRwRZQnP4Ts/xVcu\r\nsBAATGDQamrOVXqteHCHG+0dk/j3lJxQgqosnDe5p3YQkg7r0ZDcMuPLTBnw\r\nRDqdq7PwHFvG0utSiuBENYpT8oSJQugtLYFlKrrMge8swWo/Z/gIf5ix3Cgz\r\ncGHdV2viER7/ox+qutoDCxtUf6CEtd1gSHmtKlVOEStIbbfbuOx4OOJf1zXK\r\nVcEkxit7hhVC9SjpjMBQVELJjKLhDToYTt4Pm+QNw+AUFcJ8A2+EM4Qckg/l\r\nzA4n+0Pak9778l6g6uH4PvgBL4lwOMGItDpghObhq7WeBJPoTFMM0qrKhHJF\r\nhUaZJWQSidnhgIXUz3ZR1bHYtUGsnEzzVJ4E4gKntt2o2XWPbJ+hyYbI+xs4\r\nfK87DRJNXm11EXrw+fnqaVDclIh/iHB842etVOo/RIZJbIOqnGJ3GaGBymd8\r\n5G2UQPL5pGrxOrCV3hC2QTuBf7XEPQKMQEQ=\r\n=mHRb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"80342f40b3276c1385a7fd81dd2df189f60f9c15","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.0-rc.5_1648452459899_0.9741850804484664","host":"s3://npm-registry-packages"}},"3.1.0-rc.6":{"name":"ant-design-vue","version":"3.1.0-rc.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.0-rc.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e508904eb7f6d4d29b104c07768b1c2c1a4f81a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.0-rc.6.tgz","fileCount":5506,"integrity":"sha512-gnJiN2nRFRbCAl+zCnvZSiIFVoXHGHbbLuGuOi5ZHc0QDGLoglQmsqL7s3oYBWS0i2+0e6MsYQMhVR1pyfUyGA==","signatures":[{"sig":"MEQCIA1vuTHYUmoplMGwXXVdIz8vOTQouIHQc2Qwr9zc9IsCAiBcQODXxM8PczbxhIMNlyhbKJV1td+Ug0Ole4/yUPnvJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61433677,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRw9YACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpHgw//Z5mrdKMhIKWR61k2ve3p64r0S6FmEq5v1mTQhpAusocJhoFi\r\noa5+rgZixwp3Obf4qhuqtiw5Ht3aHSV6hGL/spHqFM7P0ABqxrkmR0m+Vvsm\r\nFrvDk7VgOmbfEqlUXEeqIb2p0xfFCh5IpRfUE4HQerZ3g/2/NvGqQsxcy1fk\r\nGpdna7ZMRjlAtELxfEXO0yDR1r7/pbOGIxulTmSnX8wNPjbkM77Bp3T1Wd7J\r\nnriSN3wXGFfWiUTbLFPOhGw02PKwo1d3qXpbqGXL0I5BWfjokvHrAPm/OWTo\r\nVss6LlNPRQcB/rJ0/H3cr0qPXEwkdxwmW3x5GEYPi7K9iGJRchS/ZJpSKZFy\r\n+R80SwSZd1rnYQWTKblLNVoVOlroS/xGB0+cbxjKTXvFnKRoNaNBryDRpWvl\r\n3MWEHUlxX6zBpx5raaftV/vRIbROPMIi5r6B992KAE9JTc8p5MenyDcELKcR\r\nz4tSNqrUwSQ8cg8XvYSTD89WBYNcPz9wQlJhhdFC0SNnsm9nktF08qRvCohn\r\nj49YKEpENo1BLVgeHvBeqj4UqD5la0b7Ol5cfHWpajC+EtgTceDvbuzSPeB+\r\nuZ9wgc9XTUOcqBU7l6nEoc3wVaHgE1Drt0aIZt6VqzrTztEr81UAqY3FqhX8\r\nviUoszsjoC20Ke03ZbpHRgOkzjT+5qM+nSM=\r\n=h6g1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"327489603fe329b8642e2a81f808b3acfe5831bf","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.0-rc.6_1648824152241_0.5932941834296988","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"ant-design-vue","version":"3.1.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"4214bcc40550e0e2fc72f648a892c625be5389ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.0.tgz","fileCount":5506,"integrity":"sha512-PmfR0kkbdq8pmz9U7AriYjYmn7VvIk/RCFowwmiqdsGmYfGnOkEbAA6uOM/9DzTxuVoqmff+AZyHPhs8ZTBk7w==","signatures":[{"sig":"MEYCIQC66v1+G/7r+tK7UF3bDAjq44vmFcmdwHJSlDaebGTcDgIhAN/BgGxpETWLZpCY77z/Q20nwzLK6lIpTdQRxQf3+Bxc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61426320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTO2WACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmobgA/9EcI/YgQ8cA6dyF4J8f6uScl2wknj+BXhBz0sElinqzL8wnwT\r\n09FZy/M0c0dUBWjafyGG4Ojt6fRqx/IPkJKW0DkTpXEFCQSXLxYDFz4/wTNd\r\nFtazMsy6opuKt3Vf/rTQjZSWpzI3h7N4rwpDvC1+gl+Fqmd9BQnJALrKy7HH\r\nwl/QSlvW6jxdbj1aicWQ/ac4VsktiY6kzu8gdOwDMV5Vc5n+gprrUxsxKYRN\r\nfsiZC/0We0puz8Pb9HRKNfQVKM7F2J5cMriunmqTkFEUG0Iyj6nUic7FmLzG\r\nkd0eBHEUawSBWWekF5V2Q+R3ot08ebCYgLDKglGGHrAyAsK5dlLms24UNpA5\r\nH3+8+kgIXpu7NgNEFYjxfXaMc5srlAO0GNwtrlS7FVtnFD+kjWB/Bw7a6nyu\r\n9qKgDtDKW3sWK1POMMSV0KO2fHp/DJUQcVzSA/vU+Q3iol4n/8uQYMxK0C3P\r\nUSI/5VcHOp0LHyfwOW/cta+7QBteMCs8NvvbCk2qVJnPx2fTDdOUlstr+ZNt\r\nV0oD7MT6y9/+zEmdGhjhUucRmc/yt6i1VSB6aFqn7R5TvoIIqp3LVaXHRMrg\r\nQyMux7mT8qUPcCi2b6LOdXUAi1mQgduEq5VwgP+hWXCm2Bg1AMEhMnlIo7Gr\r\nPAPcw77PVsqKvFqstrJcB4HEiTTUeevMp54=\r\n=W0XK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"6d14732e2acc930d09187f6a8678d3cd1fdc5159","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.0_1649208726095_0.5331715883099974","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"ant-design-vue","version":"3.1.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.1.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"429368057bc445975b3e6ee498915d5bd66e0e87","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.1.1.tgz","fileCount":5506,"integrity":"sha512-QcnESmPllfyPy4SavOlf1jml/bdmzCIcCgYWRwl0WKG5jbuuOQ0vhgfUCC2rI6R+84gb/qf4/0qoZnWcEyQziA==","signatures":[{"sig":"MEUCIQCNwYei4tWeVIkCov95Plh1fxraXEdALDm/uqGcwwWA6wIgMnpdohalaZOkQnEwEl+jCnXwJt8XFFIkbAB3EUPIbcQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61435198,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiTVZsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqOuQ//WzsRe19kPFQVaYkJWblnLGPwXubjLtvUGCcQrYbA85FLG8/Y\r\nfOpdYMWZ6en/zduMV/tceE1Lc7J/rMUEvScyziwUnfIubfBrdSNT4/B8M1h2\r\nllIUhmDQOz71hASIN8UQDZxwhECtubS/Y2pGqgv9inuVhskuFkpaD+wdTWAx\r\n6MmZBdMy9gisoopAKWMJOv0cA1dhDntkVWSaDTWJk0+udS77/dr3BhbG4KKz\r\n5a98IRHqbVNwIAkqEm9Sbr+9dd6m97Uwu1gCDPr+wkZsBUNjYCbLnQl/k43C\r\nUV6Dt4vL16Etoql9ebObWxNIap/oGt0EE5kDmgLD2gvQn0zWLnSp2D024INk\r\nQlpuJU7pMdIRXhcRcSPBzNiqo8gS3dRqJAo+c5EszzCmn/Qc1kNfCvQ4vW7j\r\nElA/TKqY5cKyOJzaL3edxdylGDuaW5TSZw8HcgO2NQqCQKYPq7S0cc6zIUZZ\r\nvaSnpEazR0M+h5jmdcgn4xwR651zLcuZVBqGf4yBj2WOObYYNr0gZKynIlBL\r\npMVnS/5lM2LsKAu0ZWfDwANR49Q+na8GojAigiGAJWsY6U/gdzVmMZummME6\r\n4vMWnR0hNeYvd3lEouRnA7Nwb6NCL6AaKJ2s40c0DFttbxKD11SV3fWXC+Q9\r\n11k2AW/vj8tGcgL4SS5CrY/nMJV0qyuDM1E=\r\n=V5X9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"74f77de5d05defd6316ad3c1495594c33c0d453d","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.1.1_1649235564082_0.7103900736159119","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"ant-design-vue","version":"3.2.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ede49b1d3039ace98d0dae92b2b381512fe9094f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.0.tgz","fileCount":5506,"integrity":"sha512-qY9f/kF9YqfzV/vJ9/GKj7s1wmpCuNwWVRyQ3qsG8P4Was/u5WTKG5hz9huUY/cNle2nBTDacvMBIOkfxPeUiQ==","signatures":[{"sig":"MEQCIDiqVVlfJiM9geFr/HesAH0gy3gH79rtvyiAz6C2Mv/0AiAjkmES1c6fYZFdTgUVzetMeGByaM3JegCHDs7afU8KoA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61611402,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXi4pACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmremxAAjYtBKYJ+ASTgRoI/zax0Z8gwsQ51yJbtOFU7p5tFJ8CS9W5g\r\n8vxDMjtcPdisTNjZ4v3Dm10ycJb7hANfs7OJcGUAlc4V3r4Foyd9SXydjcZr\r\nW3SRBl52ENpP1Y4JSU7v9a9w+wBmuwld1NGcQqkBaKXeK/g09iPqK/HhrVhr\r\nNu/ELAC6pn3cxhDJGaehulu5ETGSC4o2OhyXWf4Np7KsfpkBH/tJKQHSYRIE\r\nR1gxzq3oeG7qTSOxn+qrB0TZdyOejuSPwPgG8rbcdB8To9ylc/u8LQx1lqQE\r\ns7ABa/2PdAKhyjYx0L31+SyxINvPgdtQqWM0p+9Q4nNdJVhSBNzQ72F/KEg8\r\nS+4EDdbXl344nq4NvNSrVMK1UuaMy90jwOHZRUtxt8onJSUunBGM23WCLhbY\r\nGouqGxB/1xCne434qxELvII9lHn2QZV8t7yJqiqGSRhh9LpuvC2O386EokPI\r\n2c0nK0lo7tuDbosDVSphGV4VL/tGDqZa3maR2yyhXQGENMxJKKD1Er/6Oxgi\r\nFMjpYl5kFDtsdwlgIq4Qw2tBBQ/sFyY0wgfG7AqpASj5XqSv3mD2Ssq/iUXM\r\n8LQUoLTDI66IbBZPCx7rzBmstD1M+3EZPRf9lZTEGEF8g5Zs6CIVEcjH9Y3m\r\ns26CRtgkDIYzXjrSRXqfw1J15DKw5zZ+2G0=\r\n=Pb/h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"722f3f2ebfac3b2da6fc015983c66ae916cbd5d5","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.0_1650339368870_0.07330390738367831","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"ant-design-vue","version":"3.2.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"026afa0d41504ff843904b6646447523a04e4434","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.1.tgz","fileCount":5506,"integrity":"sha512-zqtfKF4pnHf4AJc8nY81/ZkfpPMtI/uJAwrMOt8coA96tOoSKy2fqWPI/Sklbgfx4IS/PuRtpb8Cqgw/KxD9iA==","signatures":[{"sig":"MEUCIGmqfrM4Xco5vJxaNX8bNk37ed1PjuAoUbEhq9XxP6cnAiEAoo0J9RJDlEM88QLnck2v9dWNEqpdNTVk3knbl5bYAp0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61626906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZgnTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpfQg//XczeIXjvszaqASDcdcBqShbui/IPKoRhcWFFDDhCpB0rnWFD\r\nxiRWTUzwh7pZldp/4F6EX3afEu+MNjpD+glpmLenqszfY3snbqnAdTK7YWtO\r\n7o3X4Igy7qlJZfY9XToKWSMGoUf3ovBO27cf6ObSsXB6iSRjpBGQkRKKytZ4\r\njZh2fBdRod8mteyvAIS+M6WkNvV+HgRjypZp3/CC0CZhH8GC2Vtc3mJ1YUqA\r\nw8aVyaMc+X+h7Dd+f185BD9mdllqqUQWpDLsuHXvyXEUiciJLsCiJiZzmaGz\r\n/N1FgyFx9lYBVmegokOZRSZMTlZLwARHYjQ8auFKnoUVmOVqaBpqYL/qShUa\r\nhR/+tyffGwWcp1oKG9VO56uaj5r2pHJJvgBkrMMKPfmzHrNYUo+RSlNRqfBY\r\nrPhk2f1zw6VS6pfrguVQmO5Q1/lNKIMaiRdRvTW/fP1f+SKPTrx4EtVbHmwm\r\n4OCGW+cwvxV5xZRk5TtFsj/IvoL/Bq/MffvSYq0xddUyn5riWWKHy6wmDj3e\r\nRhj7DFoky09PDtZKPen5yZCQRXVk2KXG15B+2vt+LeNe8VsQ4whu/jWl3uRA\r\nEZRYfHO6yf3I8e4G4J39OyMJxxSVA0FmGzWv10QLS4ktlnW+oAj1A0mlIuv3\r\nxCMJCkIv1A4phS23onq0iLraw4PcjntColM=\r\n=j0NT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"98867b36aee91e14eeb4f81955e772fac35df17b","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.1_1650854354943_0.7692162531456002","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"ant-design-vue","version":"3.2.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"420aa56253845e27c48cbb2ae90e298f110b9326","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.2.tgz","fileCount":5506,"integrity":"sha512-PD9fgioIo+0PtSq8E6BePQ0eho83MsAlHURMePo6IFOPpdv0EE7AFeotOK/rUp1FOyb1fZc5tuJGL3MsJmfn1g==","signatures":[{"sig":"MEUCIHiAefZceBIvX2pU0oovFw8pjXZ9LLX48QNu7f8ZvT9nAiEA6F8fHT1dugvoY/lsxEEgehECcjl0qQAuUkQ+9eLBJmU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61625611,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZ2OWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3JQ//XqRYF9SbzntYjViSXs3SnFMWVh3lbdWuNFPJF6iDgINbiUpC\r\nJvQkOV7sOTUwh8r+Wi/M05AS8sqN2O/FFIetneg60jiZlf5Dfjs0q27C1Zdq\r\n5W3dOnKiOjO5Z23UbFmKBh4f2IzFDtL5yvs8pnSaQTOL/otsv6dggJ/9PcGS\r\noNBOYkGbX2QniOpf1YK1hvV2Kl0Vd9PEeEADsGppdtSURUJmt/eazBCZv/ay\r\nA9V5Bi8B2S9TBOkXjChuyPLjp8m5iRjx2Ig4B34o0Jyw2CSdraBBX0nz/6Sf\r\nGwV548SoDORiK1uqsmaz6R8JT7++rH0P7fXtSj2st7jTaeBND7F4mpmlRt6R\r\nsi8Ynt4Mp54IjTmRMpdWGlYSRZ3uB8zA/2btYqL7FLFF1jqrLdhWe7fWKJ/a\r\nUg2hdPtxOoCsS7FyIdlmrzGlvGBqsmGVKC1U2Sz7/TR5GABisPO4r84jSTMX\r\nJ5W1aP7NhAtx2lxpK3lX/Tm0NepUMk/3gpK8f6SMvwHuC0zXj4pH8WW4a5HX\r\nC4kkWsfGZHwE/SLbFCOSO5/yo6bAeLR94SS791nOL/ny8gsuYaCejY3UWaY/\r\n6F9VEEmBF7aVQk/D19t5+Pfnbzv98vwORyPUVO6FXzc7QAFfN9wMmbZDu7nC\r\nqd+9fncsjiil4o2/zv36QHebISnd0dR79fk=\r\n=+15y\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"ba041a767eebe4844552f743274baabd80bdb620","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.2_1650942870199_0.6759709239431715","host":"s3://npm-registry-packages"}},"3.2.3":{"name":"ant-design-vue","version":"3.2.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"adcee802fea8c4a10bae2fcd829cb82ecd9228c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.3.tgz","fileCount":5506,"integrity":"sha512-yjb+YKfh+61zrdY2DSLzrcGkU9ICn9NKWZJa4PzeA+xaZu/f+tjmaUFbI0K0FZgLQANoVM3FZKP/r/IaFlhlmg==","signatures":[{"sig":"MEUCIF7GHe2NUxlGk2KHVQuYPgEw8oZ0+Q45ypeUPhQrzU+hAiEAk49t2Hw392QHpNesRX6zuH97DU2Kfo80M0rXSwc8su0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61639323,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJic2tAACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9RQ//dZbJRLtpYM4or1uQwVMbieN2n5rMEAr5MkyRrXC0SeiRBWtG\r\nEyigvw0lbt/AOvwOgjtORHiWCGki40H27nHq+1JGYImsSO+Y2MinR/j9Ask8\r\nE/DWRUph1jwWgE9IvoaXxCpalN/Ov7fnoHPb9u5vRnafmKYEO2FwWVHeuJGD\r\nmCM22SR/K3u1EcoHY0tXoFD1mwfQ4lKwKXiL2usjh+MY+2rdaTVVj79EmOxA\r\nMDhmea5KkE2a+BB1Q0syqD2WFA+oJNnkj+PyIKT4/W5yrnMxJMqESeyizR/k\r\nFyZmtlPA4cp/lvPiW8Q945PbUYJdX/RxMhD9ibj44zeaA7EnbXRgjQU+lF5W\r\n+iX1HbNBPdEcqPc0zkrZ48Y1q9jLXx4wcDcMepwtE2Nytsbie9+CUP2pp2IB\r\nu+G702tBG1Kkzl6sKZZUH0Y6hkelQodC2G5uGGeXC/59Wk/1jnG0ZhJlUdgv\r\nEGrmJ42EmGG7Mgd1JkJ19L7xG4lBKCZhWa6krzU8BDJ04tNZUjJ7KGf8PiHU\r\nQuu93YjFJaejKG2wZb3sThfPb/SKQZHK5FfM9vDFZpK/Z1eRuVcXaFeaNP8T\r\nI599g3705SvkQJ9aniIoHoVD5/K9jLyC/0s9+q9Fzrxkp/2oPpNsXXTwhMP5\r\naMleNM/U3lvntLQdvewcERessa2r6DOHa3Q=\r\n=SuEK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"e4a7411ede989b4161f7c1b450ec9e73bfa0f259","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.30.2","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.3_1651731263713_0.11384519339030574","host":"s3://npm-registry-packages"}},"3.2.4":{"name":"ant-design-vue","version":"3.2.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"537801219c39351d0b490405e8802cb975fea159","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.4.tgz","fileCount":5506,"integrity":"sha512-aA30m1cDBn+dIOFGQvHn0AMpFiubtKgCAhN1jOX8NoyVyZ705Bf/5MI/RftQbsWY9CvVsl3QztAJZwA/Z6Bb1g==","signatures":[{"sig":"MEYCIQD+xPh235WGInoc77m0116fCi4sNfh9NCvmEIdFdt3UywIhAKGv7EFTWtFqSvoPgaGq52QgFxgjhyS0o69VV8+nuraQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61366334,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiivpaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp9dQ/9HQDWjxIpALJMFy2Kv5I2Ls+EuT6kyiC0k0eMLSBR7jkBkHZ3\r\nCxyXIASkQ9blJffFFkz3Trz9ovLiTKUjtsiYI6TVKjvKl0/TnbRAx3XNjNzs\r\n7NRJhT5loqKgqpeOL/AYtydioDtumah/5Keg9idqwv23rm9+IpVNWPh1tqe4\r\nOU4iwnhITS5YAT6x2X1MUzmR8emLpNjwqBakC1veFR/j3XtII2variiJh6yN\r\n8/C24omYL4r5qNj3saGkki74792mcj9dsGsPMm4yzvGW2dZ5fplroWlDZXXM\r\nOuKORxsFAjqBitZWnd/SLJGzWO1oVSobWiWUs3Y9YHuO+YhXhqo5TvA+y6jF\r\nIUCiNZoqiCQ6+9oztCGzmps3H3ZdugKvvhjpdAKeDXKE0Jq/ngEiX9H5QQUa\r\nwseDueEyfRrV/h1D5h3apZNM5yq1+wi/anqBBWIZNJLDE+PcRChmf87SxpxI\r\nZxB4/apdbnluYuz5FWT5IgMDsod07aMe9ZiRuaYtTv7FLsfC2Jn1DgH7ShBt\r\nTB4PfOoy5hCQVT33Hnf03V2czeYSvS9sSxH+yfu2+BH8Kpd7n7DgrI1ibpCa\r\nywBQUGwGBmAxLk2OXoQ/KJgDCCXphW32pPTQHMlPZSK9L4cKVb2AIgC6uf04\r\nF83LiEJg3NTct1XSSevJiLdU5rA1CRqicF4=\r\n=uIOk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"09ff91488c1610ade88d98d18bc23f4bfe6620d3","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.4_1653275226148_0.2617092902409617","host":"s3://npm-registry-packages"}},"3.2.5":{"name":"ant-design-vue","version":"3.2.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"caca06fdba370fc351f3408cb16d36c0baac9513","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.5.tgz","fileCount":5506,"integrity":"sha512-O6nxTHkRgqI3zIZ702hfBM4pamsYJs5ey63DY3BAq5zy1thLxcjjx4K4V2Zf9QtVQgsD8bgf6qb605P14GIqAw==","signatures":[{"sig":"MEUCIQDdDYeLzogXJifsQ/J8MLaJnv0Cb6y321XWUxTIkaZfegIgWeLPW2H1gj/Fol3vIQRWJBuyLvT+8kVpD4c0E/aeds8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61382698,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJij4nLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqwyQ//XMhhNIJmRVcMxndzFy96CCAAkh+Y8d1vLECF05AVuN6kbCMu\r\nVPUevB68fJyf1RDfiImzZHuQ1GWDgzLaKviO+xDgl9DVHoXbo5K7ujYqhrOK\r\nXPGZuLxTtTb8LflN66eOEtcqHRgCRiYr2Riigb3H7ggF6VMc1z6I0Sm+0izY\r\n9zBA1NSZCn5gCHkdhsOaMo99aGglQzD1XkhgUN+RqvFk6GhLCmLIS8D+siWt\r\n0j5i2HjYz1v63Vg/oFFeEulTuBK7nQB/Pe78b5gp1RnFcZZFCj/uCkFlWn6I\r\nT6l3aLdKFRmFPPO1/gF8NEi3igeC90qWN1kIHmB6dCY5DMdAmta+GuIWQkj9\r\nYZ2Yea7I5V6oe4nmBHJ33aC+3czW5IH/YIWPjpmVqM5QvEXr39FyPlQCGDCQ\r\nQR4I6HQxV4MvYE2PsAN34mWAN7sNy5AhFz5v+DTjPnibhl84N53gbiohg0C+\r\ncMAZjBXJ/PoWbSbfJDq2ar3IywShvx8OwNpEuBv6865eT2l+Lb8m7EIXFh2W\r\nlBtvsAhg0abaIdN2yBCOwl8C9MucdbZEmWWDvc3aju/Ufo82FGsZLbTk0pXY\r\nfYXOAp1MFoKVoSSzpzBYy9oaHdKeD97m2FRwLl6AIbayouUXg2J6kyYCEfgb\r\nTs9k0eYNq7x9WnVU5qBAzP/TqEL5Rvu1I0E=\r\n=daQk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"9b0fb707e2aecaeaefcf0d5116d4d4379fa61752","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.5_1653574091529_0.11927592282739785","host":"s3://npm-registry-packages"}},"3.2.6":{"name":"ant-design-vue","version":"3.2.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"90dee76a7b5b16ca055a586c3056f5c2ff77c6ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.6.tgz","fileCount":5506,"integrity":"sha512-KlLJ2+KAaEJcV6BjlL2qA0WnLBQXaUQ129e2tawRP2qWvaieNYtP5jsxkN7zu3jlGsS/y3XUC9R9bLl8ji+ucw==","signatures":[{"sig":"MEQCIA+pYibpTKQPZirbRwYzauwDCNiX36u9MUaroAWnNNvgAiA7I1TrD15uC8iscodgiy4eherVxGTvbsBNRUZNPXhJsQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61455924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJin0dSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpmQA/+Pc6VHUCzynHzHdKKq/97m0MqezgNM9scB8q6PKS5g/F7fuN2\r\ntlNp17Ve+abunn63HDzL7fe4d61G+v2cva2qw7Lu0TIKORfzKY4fgX9fFDEs\r\nG3XjL4kRx7cHTiKy1wcj8jj5XvrDmxBKmNAFr3z/Y7mAuv8CYaZMOo5hdTlQ\r\nybYSzVERIaPKZ8WaZkEpMM6Pln7k66RiT+HklcgAa3eJixfM3vD8TMordESN\r\n7gVrwm5ONQ53/1j1UwkiXmCL+/vtSlC01qcq8ZeFB1QoJMd+hC2kF5/qvgvr\r\nzSZuNaDLVsvl6y+4PWCzFTDZx5leCF6yuKBQPe1T1sDIiKY0ysOs4Ozak7sL\r\no+kEF1WaFJbls2zaAGskZe0MIVWf1/t2nRAyvGQLmeNnUvQX1XY4frivKnUn\r\nCr65dELvGmWUjEU/gJQf0utLDShMLWAsmT9D5BJhcx0HNe9CfzLMJb9ydlMW\r\nlc8fM/SRSt4D8JSy1f7aO49iVwmql0jsWVibNghLclo/ZI7j56G3z7aoyhiP\r\nKoloNA0rD2NNwiPewjNJI8wn8HNeIhd2/9z9ltoUdFeqBUkhExu/dnPP5SXl\r\nhNjuJXLRLerYm+4gQMZ/bK07WMT6MPaxKwa9aUu6prBd8Ar96QRZIOp7278O\r\nAujQeluiRxtMKjBX04g9FqUbPkxayRxPVjI=\r\n=Pc6b\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"fef42fd089957ded9b0050d8115af0243b92d80f","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.6_1654605649810_0.993578630012089","host":"s3://npm-registry-packages"}},"3.2.7":{"name":"ant-design-vue","version":"3.2.7","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e1623e1dd6ecc3bc7e10e0b0178a72e83a8aa5d2","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.7.tgz","fileCount":5506,"integrity":"sha512-+29ATxnVUgvIYxz2BAYwkEr9oBYmdzqMKijgq9woV+lqjhYaRkcTZl6h8VDU/iiVstcH3yYdKJbrqGJjl6ktSg==","signatures":[{"sig":"MEYCIQC8znBQSPAWmhah6TD3vh5/QIhaoTbWsOOWh9XA1cw5zwIhAKo8ikpHtkjyj2YWT/5Xuxcn82mLTtpg3m0zmuWXZk4R","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61462586,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJipqWdACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqCaw//f/DFXeqgEmt5fqvVqNhaP7owOn51+Ud6ln8dRGlEqDRwUWOV\r\nMG2ueYeINd+2TWasRhhXVx0Rwkg6OcUGfnNzq3XYZJcivPrs7c2TRss0fqVm\r\ndtcdPzagJAosyIHjBCjX4GOVgv0VoYTui3gNmZGSLEZPNBLh0rqg97EVkRTp\r\nHthnHs1BX6N74JozAU8z9zt3ovfuD73MoQcCRRhrR+AAVZI/5ss4iaMgq7y3\r\nCWmgUm1g3mr7UaSCM1bnaSyeR5gQ0MVQn3QBrlkKNMZdTVoH3qKwG/zZO16V\r\n+mEvXPfHs32FmnpP3bZfvoKdnsZNGQtYhOykJ0282nsJmGB8JQATgZaP2fUI\r\nEH3Qmf/EdCmCTZyCUJB9+ZasGRUUhEWh56AzbZ//E2AfBakYVZmZHW8KyPZk\r\nloV4SuqW+O7NWVtc73e1OnghBSFZRvEh6ktrSiN5UVI3DKvUTDh6yUSYh/pG\r\nCo4KqWIduMIdAYOZX/gIhYlij0wTDzx400Y8L7pr1Z6ILHuLmvXjqsQVHi2D\r\nfjzFDbW2rgjs5Hl1Th/5LLLR8GumbwZ5zDku1aBf5SpIPJyu93P/xKokDfwN\r\nzh4A+aerjXaFsT7bTBjwbQAvcmqNHue94DS3L/z915vaClkQkDZrWikJDKq0\r\naF5GwjvbHqZasBBhRQZ4yXRiDjiynr4+U3w=\r\n=fNu+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"87121e26320b24f0cf97a50c0810384c476ed972","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.7_1655088540714_0.5025163807266972","host":"s3://npm-registry-packages"}},"3.2.8":{"name":"ant-design-vue","version":"3.2.8","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"33c2e402a40996889e27176817bd96a4ae67da14","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.8.tgz","fileCount":5506,"integrity":"sha512-ZR3P+dLcOl5eSZEdmJrEH92hvE9GY2kWYNElJCubJaqs6J7uRcdpW4ad7ohEXrlLqv3bzaKacXK0izMWlhp86A==","signatures":[{"sig":"MEYCIQDHGc9JgSu0roTxlx5IrmAjj8IK71ZgPXvhnvmJH0XGWQIhAMRZ2IhZMxz7pn14v4ydRRIy66G0CY5hHuiIaHuaNCxq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61476345,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitS+bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqk8hAAmcT/cCKAgMiqlp6+8Z1+Ad4L73S9vCwlPnJyRAUZsbr3kENG\r\nWSbwtCv1nWYGJEnQIRb85KcaV26cOPwujKe2jEcljSMhYp7S1oSrFU8Gh0iE\r\nC261iQRUyLMh6YlTn2EZQz2kwGiq//qiekTxWmp6D+j4cqIDymsPVVSh93X6\r\nuYUpVYuR13+S97aulWoK91NYDymTyCnwZWxIdeGSGqw3aIf78hPjHbC15owv\r\nsc+U0HtKTj01wU21Ju5wLKyO+S6yxY+U4q0GW9PCzdj+w5gDMxQ1lPuYwrel\r\nNCz10ELWxJrWXS7cuWsaUSTSqpeOADvI0lQ4TvZms3JtPTOgb+w9SHeDeGHN\r\ndyr5lcLnbsz5uEpeBQ40bB4rN+9DxdGiDQABMzeMrImMqUjHQhT1a1dtOBs7\r\n90P9Al5hQ5U6qsJ7hTN9/3VUxVjbZfOZhxbc+vAvLDVg/7pRyljrr8LOTJl7\r\nE7+fg1wtoPDLFVv1w37SyID2V/jrtG3p+1XSw8N/aO5ob75EDEgk8suRMUXX\r\nuLGzIPMADyhaOr5eUBtoLauUBsmjaq7VVtwtzo6qr5jLAMKc7fJVIYetol9X\r\nTXKVoIPSH31ekIUZ4cv5dd1SLZISPTA5PttK8+fWod8/JgUd/Czng86vdJ0D\r\nf/3z93ZjveYhK6poxYpt+JeydkSxSVRv2Do=\r\n=ZsRJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"3003d67c4f537c39c58b135e6103e0572f5f3b6f","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.8_1656041371090_0.7189568925771035","host":"s3://npm-registry-packages"}},"3.2.9":{"name":"ant-design-vue","version":"3.2.9","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.9","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"0ec3d02912a3f8596680d7f7a71749e8f01288cb","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.9.tgz","fileCount":5506,"integrity":"sha512-fnZJpAf4tYAPGBALD9dv8VBmeqfJ+xPt87DfgY1/JI6x3hn6Gfge7voF1GkS0yVT0zLyzc2aTWkDVFWKB5iupA==","signatures":[{"sig":"MEYCIQC9pMjQIaY6Njx1X12e8yEffkuIvR+rOKJGWiRkexsHNQIhAO4POj36sSMrkaGpAbTzE3DjevR3dXrwi/i6Fq+GrXP0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61509052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJitml+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrvyA//amR1KBcO7AGm5de0LEJqotB4AXcrNYguH5FpaHdEZvM8LzEz\r\nV7n9wCZFBY5UTKlfUq3stdi2SZs7R0r3eyulhRasZBGbdft6WpSRF/Tc84Ei\r\nlQO0sBOYj+WunhI72OEyTObWwxRVX94yQ57rBtYh71YLd30QJdQg1DyrJhVg\r\nIKdY/X+8KOro5HfRtyIQXW0HIb1sASMpOELr0ej95ButENJWMyZqzPtHuErz\r\ncVlS8PDyjM6WChFpoEfAsfc+ic4lYH56GQNfCTB/CKRDoRCg0voQIznh2wfV\r\n/daP6IsKC6jTmInx44iVOIrc3t5VaJIqw6FE51F6zywAoNAfDzeS3I9Dsw24\r\n3OcXEm7kh92cor5yDQaQGK7snFy/ev0JxqAKVJ60qV234UsHsfTJYugvwV9f\r\njR9V2WQoUEnUSKH2JgcIxQRMFuG6LjoSKJPrYvRj0lrg0Us9FxcPSVsPImoJ\r\nq2hzU/HFWkAT0BZ89FxzTYbKITDa88FxqIdt4GPDk0RYOnQ4aQc1l+tIGiNP\r\nF9hcPhF+6aj80bDR6miPpY5YfCXZCytHb3B92+M+TP5tTQY5uI3VidLcM+kN\r\nlJnt0/vjyilhBZbVi0VIDlPQnUg9kbug8QEM/ZOooXKvxKCN8Pzic4sxeMTc\r\naPkr2ywr7GWEdbIYGTJsO9wpC3UPjWzkE8c=\r\n=0cp1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"module":"es/index.js","funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"4c0f6f586584b7ca5dedb9c5c27eacd4ff73f049","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.3.8","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^1.2.4","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.1.6","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.9_1656121725938_0.9056646840554563","host":"s3://npm-registry-packages"}},"3.3.0-beta.1":{"name":"ant-design-vue","version":"3.3.0-beta.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.3.0-beta.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"746fd9988461b1b66445e68261935236393d31b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.3.0-beta.1.tgz","fileCount":5560,"integrity":"sha512-broa3zH10z7Y3E8WlXvT/AC8VE8YjYQhtAWTrIP+rcjxD6TQrK2baTEapg0RiSUzGtmENCj6A6DcX2vjCbU1/Q==","signatures":[{"sig":"MEUCIAzA1C3BPHb668z355ZWGBRKS6/LaXuTOQVKCSsy7w55AiEA9oa7cD9szJCR4l2Q9Xyod+aMeuqe0i02CAEqGRQyUmg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":68895585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiwERjACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqp+Q/+KdEMY/zFGvx+FhFXKcmTXIIn8NtT1EM2/u9mYdLiqYEcayaT\r\nib802yrUpwAQE9qqf3vJ6jK/dEQlMEThMsiNw0nEWRSj1wi3DgT8lPDicx4P\r\nXJWc2eTQnrQbCFd9l23GHfzE1GAvQvIssipg7gdeOGqqKU+vyfOgVUp2fM9H\r\ncFyDan0ty7kxWhn1mpTIjtxFzQEz27dDCDoJzgEQlq0JPUN3pAZJNzPx5dbg\r\nGXSmSgtMlM1osS55dADkHZ5CoX4G5tYw7VTc4BfNAa+UX2ka5AEdsH69L+cQ\r\n8sr02zEHDRg6JrbmtLPtb3RRAupPhce0yDKU8fhDzxAe190BA8ns4yzs6QdK\r\nWdSKjed/39BTh8Rwk3QQi5aOtClYgOLMBUtbN7uzaHA4eU9K40gK1FwbNTcA\r\nve/rkQUBfpMgE6EOSobG+Pwe5vuZaAM6OSRCOD77SIhqsuUmcyJ9Dhh/Hdsh\r\nOdJ45T5DRJnAgSdnmyv6NevBYHUKI6bAOphgDWYMLY60mU4ofaGylLT70oLK\r\nUBnFVKWPJ0ZrjX/OJFCE+Tvcrmzl1EHnQ7HYnuWkm0SaOqv2f3RWnZOt8uKS\r\n8cb0CW1o0NwBTyMfAObs+OgMCcnDPkPKouWGUoE6f4jFkl+4Q4zqkRPbQDVl\r\nDzev1FTfJgOKAbeTnsGSbKJU2tUlrhfbgA0=\r\n=9cPz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"58e8fd3e2e96eb21915efc58ff9214594920cd0c","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.9.13","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","unified":"9.2.2","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^2.3.3","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.3.10","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.3.0-beta.1_1656767587131_0.7023568568270269","host":"s3://npm-registry-packages"}},"3.3.0-beta.2":{"name":"ant-design-vue","version":"3.3.0-beta.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.3.0-beta.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"661052523867aa2b4cd38d43ffa6bed495959710","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.3.0-beta.2.tgz","fileCount":5564,"integrity":"sha512-XnW0y/OvTRn2QJjcrgXXCs1z4O2I8RZSkOsDWrMPZp5r0ZC7df6UlU+4ktagvKiT0/ZoIq6Rb5rLRVYfGnJetg==","signatures":[{"sig":"MEQCIFYroZ5dtS3SLKJHprHS4EaymJ9TqLdvxQcoogufCAewAiBBAacLcW14wLKBfYA9ISIuZJcmp6P28zD1PUgdIO4FYw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77207253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiwFgFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp1iQ//cxDj1mBseZC7aTqwc4c8WOoaSrWI8jT46ZQz4JABHorjaEWe\r\ntW6AeWH0irP1ZqWqKxPGc5O0fQMQe+qRvp3F+Txa5ISeGK3MoE2nRA3uqh3b\r\nXUcyQ6sUzyhYVLyC1pWjpoZRzPbq/vaYczXk9Kjb0qG7D50DPBQCNyCd637R\r\nxYg/TjcmubcgM+M6KtNsG/AgXxKO5r4FWwGC9b3rt2b7D0sD9sOjdXtSZrGf\r\n8s/OjATmrygtnKWElPK5seaQg8q43CM4faOS+bLISpa/06u5xO6WypZDQ3Vc\r\ndkR0CsqyRjO2TklAUz0UneFHUJRalGArjhxHhYVTjEDGrp+F4gWlQv0CAvhN\r\nVhOGNhsJxR3ATlCUackj7Zi6w038jTVNxuytqASr7KoSQ6OVtxENLpaJzEeh\r\nwbWG0EPg4x3UzQ8hNf2mFQObP4UWNSC8SgxVok80QREEBqWFCTqWPHS42cAA\r\n/cmlftJDpxldzOY7sXj8uj9izfMFBvJmSvrrM2dat7svTAYv5zgbwwCuFtw0\r\n2Tk6cx0/UIhHEJx87HkV6Hakstlh1V3n0YvTMyTyS8CqfHrsE1EOvMrcGR9w\r\neRNjOeR+u0pWf7oHe647PHzX+GIFWgJC0sBDTBGOSgMXw510wNZ/JGJzEbDg\r\n1P9NaovXHdviQbxp0nu5Ad1RY2QhUUQ5MCQ=\r\n=257m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"9ea87fb973604b7b052d72cd759611e1f615ae61","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^26.0.0","less":"^4.0.0","majo":"^0.10.1","vite":"^2.9.13","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^26.4.1","unified":"9.2.2","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","vue-jest":"^5.0.0-alpha.3","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^26.1.0","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^26.0.15","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.0-0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^2.3.3","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.3.10","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","jest-environment-jsdom-fifteen":"^1.0.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.3.0-beta.2_1656772613303_0.8164443979167084","host":"s3://npm-registry-packages"}},"3.2.10":{"name":"ant-design-vue","version":"3.2.10","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.10","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"938260177126cf7ab0dc476dd9e3e9d06ab17bae","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.10.tgz","fileCount":5507,"integrity":"sha512-aqa0kjJzVQ74MfVw5w7rTOdJQL2JN9V/O6Ro+VQQMq/tY7q91JiomhI9TRKAK3tFdBDXJpUoBCVOsosbbxMzRw==","signatures":[{"sig":"MEUCIFoiUeTH5M+2LJMq7egGxrSGWPGoOh++LdDmIBeY6ShZAiEAyzx3NizLozTHutDAhJRLEc7T6obqKo0m+fDUtg6rOOQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61465274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJixuf0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqykQ//TNQmGf2OGEZNdx9MhG6cKDon/6z5wIBhgBsa6juR5Q4esPYt\r\nI/ozVp0Y9DCLTDys69eizf+xxYXDb/1WB7v6uxAeTwr4QEmAhL2a/y7KFEqs\r\naaHSFdn+KzilbodzqepkYGD/BP+TFZfGvDtAHMkWdKPRxu7P+X4ce525bQB1\r\nhnWULWR4Sz+5oCLcWS9AobXaOA7lsu3MlB6aOYmkp8YpNc9Pae2lJxfWltjp\r\nXylm2rieEqEADIuZx+NHTistGvkKNKNXTtQScLXvDs0WMWwNaQ+6V7veXCch\r\n5WpL/AfjnXFYhHzB4L5WvI/BCvcQOVIKCNaIaynDJA53p+UsopCrPdVwdVeP\r\n48hvflYck1VkMmJOxnr1RKVvYTqKtn2paA/QdjMuNAwQrvodCukqXkPfLh16\r\nVrR/pSySnZz+gvdFQVAF42qaRBvqHhbWFfk4CF1hcN2mLJYcDHyF3Pk0U4EY\r\nynwAxRdN1rmOz4z04RLzUMlU0V06tE25FbiAk7TfFWXO4QzPoBLhWFsN+tJ6\r\n1tUCWo35jV7OgxqRegWPFfqPXmWQCAEZ74dlvZ0mIL/LdJKK152NdP7zVdjK\r\nk1SQty7qnpHB+qcvlVHRuG5z+6lrZIrk1EHKIsx9Je7+bmupNw4UuFsXwWJH\r\nQ3TK9cwL+ID9yV2CZQyTjkoBmflH0Q8ZN4w=\r\n=bnoO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"8ef4d44787de92e171f3a373bb735f621dee398f","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^2.9.13","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^2.3.3","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^1.3.10","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.10_1657202675655_0.9107286063165194","host":"s3://npm-registry-packages"}},"3.2.11":{"name":"ant-design-vue","version":"3.2.11","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.11","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"034b2a2adef82a34440c10b90a5e02bcd25b376b","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.11.tgz","fileCount":5507,"integrity":"sha512-QKCAcOY5EJF0PepiVGA4X5PzUetYUvG5qALmA+2TON40pc2+brOEiVTwr3kjF9N+f7q4MpyiLPu4pIErwoajOQ==","signatures":[{"sig":"MEQCIDy3XUIS50EABUvX5qF9rdz2xma/mwSWjtHNjTcUS1mzAiBv7Nf8ubw/VGcjg9sZq1XLOLGq4AabJG1gak1JNDTglA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61481490,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8GydACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrvyQ/7BA3f/cGq/iyq6+llX4mRi39TvntH3yL0nYoK0EfCBlJo97yL\r\nda0Mc4KL6CkHjyiQ1h/uxT9mDwP9sIhgaW33F2+3ZJ7+pdi8XEZvNty5rgc/\r\nWTm5+Z7dgTq11NVFctVppBWxPCZ0pPM5UbDpL9EYYyFJcmQ4aYDA2ixuE1Fc\r\nfMsFALlWG7l8I3RM+cmH7Dfc86Z9MKfPW7+NxrziqwfJrdMKu/kJMumgLCML\r\n8PEixAnwh6s+dESMWrqpw5osk8eeOOE5GO+JmiHfglJ5Dr401nvrE1FKJ4uf\r\n8+j6GdwEjKl5W+G//yzdHus6eVBp2Cti8N1hKuB6udhmt0eO83obAaLAyOHg\r\nCCzf75mi/OIMATe3euTd1T+euVxmuUUh1DvrwSAKSt/2pA+Z+6xykxeMKMwT\r\nTpyGV0+JbwyjfwPb4fdHHeesBQorgJxRwgeC9eFEpzqgCdJ6+FtVFdbYzGdk\r\nMGPpJ0xOqkOHC6CT3620cI1GHi8xbMJMHKVqI/yivQkunn8Q1/Dk7tfbfOIg\r\nObf2HdOiyfWh6qaWud6DLCw3B3fsssm+3jmd6NXYU2VO9IqiD7tNTlTuumYZ\r\njCi5i8gicLCWVDl7b5tkeHKQ8ZZbF1Z/rutOg4VJvQiYjXqweC8cPALGetos\r\n7I6zxwAUJcymEYbFJyG6VraPDRreRTSSaQc=\r\n=2f2T\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"1d6a8916ccd19e2e84e2350b21445c0d9764a052","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.11_1659923612979_0.6287031794855786","host":"s3://npm-registry-packages"}},"3.3.0-beta.3":{"name":"ant-design-vue","version":"3.3.0-beta.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.3.0-beta.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"8f2ce68d79ded96367068564be26c71bfd77388f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.3.0-beta.3.tgz","fileCount":5564,"integrity":"sha512-xA7clMwKRw2S6E8etiq7FRN8qktRW6xr9HBuEuUDQwsbxLIy1kVKfiTbdbh+CklmasKGd9qvEJbzc65U/HJeOw==","signatures":[{"sig":"MEUCICiXQvm4kA7IeCheydF626lMDQd2R+3QC/JX1FTB8FzTAiEA0GcKmNMb8XzS0W3EhpTKvdmJI43y8uZlShcUbV9fByU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77207025,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi9RMwACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqs7w/+NgwV7NCzqkeLC+aGk3lDDU0e7nClWGMEor1gfe6BGR1toU51\r\n9lO3YbTuVoGNmL4p/orXg1rMaoxSKOM6F5PAZGOC9rMWcAKq1fa7sAqi3na9\r\nGSeAC6yH8OShVFWIUDF2NvVVHETm1ZngEJpBES6asCRmZFwT9GDz9faFWQHO\r\n8AaDWXLWFtl9S3BnyGU1hwPmKUAZeCLuMYHvrcpwr4Po43Qd3vBP9ZHeB1gU\r\ncScL5Hi+nEX2htsPw/H1t3PJRDY3MZ7WSKFhiliudujO1nVqQdNKbI5TnEdx\r\nEN5dl0MUNDyXM95Pt2NxiCIFM6XRVvMiZdneI8CJFW26b5uCPS70jybyLjOE\r\nOqWZuW6MJ6n/Bf1G/yynx+v7DtfUrQyaqNR4PFgq2+kctsbCA/5tmLrsbIib\r\nxnGbjJgwe1gRqkFm48PpAeW1NAHEdERKfF6ePzsBFotl7vzk+rpqn7ErJc8P\r\n977imJxSNxTFX7YhwIRFML4Zpw+ZbXnxIx2jjJmIE4njfUC8IEXjw6wfbDbG\r\nbylMSi53idDVlzqIYXcUHu1qu5iw3Ym6nK3+mzlfFlTSLTg1fMctDC1uoD1K\r\nZzh0sYqLuzwOzQBr+0ws+BhT+g8xDi0eGSEiFJy0TFkAXm+qVXqASoFrTDmx\r\nEFpPbMAL5S1RmVILi3q5tj9GXCSWqdNizV0=\r\n=HZWR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"dd604653730f392f03793ff594baa01c3391708b","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.3.0-beta.3_1660228400258_0.768447545080067","host":"s3://npm-registry-packages"}},"3.2.12":{"name":"ant-design-vue","version":"3.2.12","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.12","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"996361982884b1d0d82186dba67962983bc1fbac","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.12.tgz","fileCount":5507,"integrity":"sha512-CPsoWJ3t+sqq/EPINPXb4fC5/9iKkUdYOfK9M9kLKbXlRN3MAoVwWUbaFnUqc+ngtbEpn/d69hTF/Eh7MeWMhQ==","signatures":[{"sig":"MEYCIQCyFBd/zl/Ra8WKl4iG9pyoX/NmGGHrvL5lrIGoBQmUxQIhALnXDzqJVrphBSsoPyYwliU6L9YlXVKjKuOi8zqqrKt7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61460661,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEb31ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrFxg//Uie2QUKkY82VZUmYKMTnnOvoRgerIwpqsN0gur/wxjUbF2Vg\r\nw0/ZmUr+bkZGtCeAGDWLSFEg7XV+csVJSmusi5X35oVADm9j/llDadlFVBif\r\njw9gCFIEj4WQKS6RdoxYmkb+DfnD/RB1aEBXOygN8NG3IC+ExZ7oEHMGeh0A\r\nIInweE/qRfOOw0xTlPNVHBocLCVL0vR37pDd9a0rFy20fQPP1xrrLIxz25iJ\r\nOOIw6ivTT+THwZxDgqO/QQcVXn93XYfDUZ1ylG/o9O8sNWbvJIor/EWeJiON\r\nwatPKvlsU0xNrjzfW5Tw7csIws2trzToezdgKq4l2OuWkVF8Bn22rMzuqYBP\r\nTw2ONJjgRiFxYlURTVhMMtoao0vrHsL2qWUZTO54BHk+MHrj0UqIB9KGfVlC\r\nSAJBPILA7pka6aqeGskT+s2D9vN1boYstOOypUS1mmj+vLa/3Y2WReGDuECU\r\nNg+ZBSDzOrygMs9h2iQWvk0Y5UZR4+oU/K6FygTFV+cp4AFdfNBu6d4wjR9z\r\nlNFZNat+ZKJJAdJxRnRfjaWibKRiYEv3qZuDpf9x74wx386UZ200WUgQ3v1z\r\nJl6022yS31sGK/PQtwcyXwOMYnUFxYzmE6bO7Nv5Wy4I+/xEROrc+t+c19GZ\r\nsqzG+c+5o8SM+yE5qMWE4Ub2mhovvHroSGc=\r\n=xHQ/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"3cb1edad412fde485c07951eeb8f35710bdbc9d3","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0-beta.2","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^16.1.1","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.12_1662107124568_0.8012940131621062","host":"s3://npm-registry-packages"}},"3.2.13":{"name":"ant-design-vue","version":"3.2.13","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.13","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"2e2823d2ee84b83827816a5591c7bb7563852662","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.13.tgz","fileCount":5507,"integrity":"sha512-zO+0hhu5LN+UQOL9L+7Wlpj3WZcG6DT41OyuMJNS6Ja3impLNR2d1UwAVXr+eRdMd3TKd6dRc+KYn5/XTS9K8Q==","signatures":[{"sig":"MEUCIERn91YtB4l3UMcx/Gpz2SWYoZ6IbzEEZd/yf9a9qNvSAiEAnpq6xkWqgiwjm0cZdfm/5Fc6g1JBrf1Sg2DXBnbN/ag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60424067,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjQRxgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoWhg//f09pgrUDovvhWpc2UCHpJ+7NlQ5wMDUgcHIQ3NbaWZ4eq38/\r\nyD/kZH0ZLaz93DHj2Q80UMPEYpKgZmSR6JeDotQMC5EQkmC+rscfwuaMZxJG\r\n1CENJeHaU2tPVfCNGPc7CqFChzAyM9yOj7YlzwUMaUiqkyPMjA28h+NEIUvN\r\nsfVQGLKAnb6G8OgBJ0PYL6znlehrzXXYO62ptyJLIVKuaR0K78raAUMxOf1s\r\nhXOIrJ2Ehe0USKJgpvSTUD29Onp+deKv10/QJXZnTyyOvf0lkvwqkQUfTFvS\r\nrtguOoPnzWuF/oFE5T/svXKcnD6jUoGfzWGShIdTgwH76KaELTr/EaveUn5E\r\nGyaodoMnk01yLKB29Alj3rUAGau02UjQtiR780X0BxFLsGXd4gbA82Y5Yiu1\r\nrvjnJyukYGGETJU2FfvnO+jhWRQ8pZKtaT5STUV20dCCVeeNDXVd0nHRO0W0\r\n973yKYBVNqmmbfXTiaUWlpf3J3P1FjpiNHEY8dg0bEdOd8O3mfHslhaFyO8j\r\nulavprtHF+aemdz8Zh9sF/JpqJpcklEdStDujbl9eoSOx8TlqiqKYWIcsfU2\r\n6PFSEPfcO4DsoH6iEo/7ziqWeJYKC/m/I6UBAQmCgdRa5WzutqS5SYdjRdmo\r\nJXAQHKw/qh0WYWqtt1CKUHeHxsJEPP5G79w=\r\n=o+jA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"7923c25e4f743938feeda6190eba6a0db11bf60e","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^0.34.15","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.13_1665211488008_0.8863176299785787","host":"s3://npm-registry-packages"}},"3.2.14":{"name":"ant-design-vue","version":"3.2.14","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.14","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"04684ef9b855380059582a76bc9dd3c937f0fcc3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.14.tgz","fileCount":5547,"integrity":"sha512-v4qeZGpmONUOvz6lyp/fJVoVthqV16CiG1rGrUZVB2IgRjCy59y2/F+RA67ZSJmjGIvqsE+tLoPmjJ0HVXg9XA==","signatures":[{"sig":"MEQCIF7Lgh5eh5ts7t+EAi64HrvnqmT3WR0NdFcSu/5I4RRVAiBpA37lmVcgAxgWUcZn+aNYOGmYvJi7kXSAQkXpJlNgxg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60366085,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjaL3mACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqaww/+P5lmKklhyqWHGO3/qXyzjHhHKkiIczGWNA7lxYDrh6plPhSd\r\nGuZ6vKJEJvLt7sg2nBosvBFkldgs8JEJ67NocQ0u0ZKAPrffoInctr3xkv/b\r\nGk9sFWZiviOF2TQxqsOiIwYWzUJc2rSFEdQAVy/SG6GV/SpFF1OTFLEndJSH\r\nesO6MV1yGmeyDPmw698Q69+e/w+8P1S9MSh4194iTn/o+pNE3VstlUxjzJAK\r\nm81fGThuhVN6aBKFMvxJkAAdnSXNIvFPyHBwRTn6LKDj1a8pmyAVJyz58AC8\r\nrwwNsjNPXMuZ8dnyV8gqrI+UoFd9ugtKMs2HOsJqzdkKyyeXx760C10OT/Pc\r\nBreK9zFjXZ8qQIyYB+cko1kwksqOS4AKMRjoRHazFmcrtqL3mifVaHyKaZqY\r\nmM7uo/8mYNLyRs3PUDGAWZkvc9dbXmYtb5qFIqgn+e3bdQWUcNz+CTcuMyL9\r\nkPSxDklPXkS+1Z0p0NP5i6yNQ9GoY+Fk5yqFYdpR8wRJv3r98O+qg6n/Dx+N\r\nabQI+StroS4sc+Zjbmjsr4VQGK+xcJ0EU2dcCAiK01ZztkX3my7QDyoparU1\r\nrdqIzx7KcXbIiLguRY+WOmeWCdJEUzgS4i+peTGVrxz/IoWcSus2eSDqSMbf\r\nwezh/TY/VBkiBlhSsVMhQTyECdt4isc3a+g=\r\n=IDbZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"7c35bcfeced714792d7e041ccc202c3856deced2","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.14_1667808742121_0.4444981955487215","host":"s3://npm-registry-packages"}},"3.2.15":{"name":"ant-design-vue","version":"3.2.15","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.15","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"eab52877fa08a9e4c8cb311ea479a90203dcb302","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.15.tgz","fileCount":5547,"integrity":"sha512-sJfE7LWimSdAPe4dzNyQBrmVMnOTNQTkG9oOyr+7W8qIYrX8sYWyC68Nn1uum4KBJUSZUa/BU6dohvTG0urBhA==","signatures":[{"sig":"MEQCIDEsdq2Ax4M2hWNImcn3XLd31dHFxT5p632y1LkNOsbWAiAzhSj2UXF0nyC6jMxmRKKajc5fLes8O2X94a6zM7I6+w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60382089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjbHT8ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmowUxAAhfyQL8SNe75m2q6vhPQVGmrzdMoeID8bnAoYyNMb4DdRos+g\r\nJUdhOBKoZGIDiExfk9PE8JHbdywx3zx7IkSyHm3fGXp4G9Qido8goHagHbYt\r\naOdynaRHLDhqdauyJEi+3xIDozckU7HqXT76N9XAvP6/4valePhQuzHaIFRW\r\nJIcDoD7/SMJks8kSKsF/m30nNtJ3GdWTYZOEoRDn9xl8178PRnqIgKeCKKX9\r\nXZ1Xt2hvh1NRikS6TORFrB6Jci5S4E4GSJ0hwk544p1hMl07oOTngls5fd2/\r\n5b6jEQdiAwoYYKEJZngo5oO6BJnurosNPtgiYyJ7qmNdOfUH5gG0PNRVVC/A\r\nL9TSWlJJcm3IzjBs2sU2iXckAWFT/2RGVwXuMWg58ZeqSlxPkletDv2sPFOC\r\nAvuStYOD1yuL4IQXvZOdps1vxtlT4fgt32HgUJ3UqiYq96CisJ1Y/UfRPKLY\r\nbvXrFU+LefPUcIoFMJql0eA13MRVh3qO5Y124BmNFHPyLuPiW0MRHt/+IOwj\r\nX3D9nwJGvGBq+LGAxyL+A031ZXHn0m4i2BWSrq13WRI5YvN3FZ1XZNI4QimT\r\nb1jdEVo/3VehFhX/gyaZgBdpU62TLhwt2MfN8xkLhuwPtFiKJkCvrdpNzBzo\r\nr7KfLIIgBMK7S48TKTIdU9YCERgZH3KYj1o=\r\n=2ix2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"7246e628237b61db51f6fbea18987de49c7e65c3","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.15_1668052219730_0.7242311751761896","host":"s3://npm-registry-packages"}},"3.3.0-beta.4":{"name":"ant-design-vue","version":"3.3.0-beta.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.3.0-beta.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"7f465d316af3e795367c59540798a67e07b47ec8","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.3.0-beta.4.tgz","fileCount":5604,"integrity":"sha512-zrMkMa6/6v5gupeKSwjWoMvWjpr0KT3yEO/ma9YqRVaQbVM4zeH+UbVJmGgyRhk5qz2ngxatZ3BsT0Xa6iVVtw==","signatures":[{"sig":"MEUCIQDRtNBH5Riy39ncYK5GP4d9abkAOKpCb1YoGwmowyHiXAIgd41q47jGAJQ2QyeNZvk+UBYLIF2Va2uV0aTKw6+eRjA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":75658558,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiK03ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqO7A//Ra86+rOlu+4SDgBkiku2anIt8xFxysZajM3mE4MDnluishr0\r\n0jd2l3xZkdEq2tbhh5rgRzSpBiEca/YLAhO9E8Kc03DRXi9O/9UKe+/4NsCU\r\no2OwEP7PGSCIY4Atsa7tz8XJmwLsJTlYzVUB+fJJdhxZvFySwXAZ3cGPlsKN\r\nrxXKjGojaaP5MUTkF4hOGIKBiyZgFRUP/rfM1GhXTV4ewOhAOK6LaGTBIHmE\r\nppC1sVSbwQi06ImvZ8pylSLfPS1/QJXhosBwbhDF5I6FRelWoaoo1sRNRlvZ\r\n5aGMH4+DGwpAgIyx+Mspmc/oZ8JiYz4+bmxSp04PYvTSlY/HQAdDvG7tieZS\r\nWimHlbP+5McMYqqzZHAWScqGoSWzptqDDkVvFV1yv8JVNVmDttHF8ckpupNB\r\n8StxI37z0+OC7HvaXaIirP1/mydgGi7tTThIylolnigaobmOZmv+LGz/1VVg\r\ngOaRyBPMA174Ay4l5rZ1jtD+0lFCP0HDY05MKxYZoU8Rp1g8ExRxxb0A78GS\r\ng5N6MBs/sl1WXU8VEW0+JI8HdjUVMQvWLbK2CwiaK39cFwlsyG7tssO5bxWe\r\nx481xHy4bXaDSVwspho5sNHwLBiWOmzM8hqYQKZoQN2F6dhqsay3HsR0DmR0\r\nXQQfngl614DsuHjj62TO7+ieBhkyviphQcc=\r\n=rk9j\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"2eb071ce306b9db005160da31a4c65444ba7657a","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.3.0-beta.4_1669901623192_0.8854322376430164","host":"s3://npm-registry-packages"}},"4.0.0-alpha.1":{"name":"ant-design-vue","version":"4.0.0-alpha.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-alpha.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"5f751d2cbe6ca1c1f329e779894dc5b3e0fa33d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-alpha.1.tgz","fileCount":5171,"integrity":"sha512-u/kLP8VwY+W14kY6teJRQ6vqw+ZZTyxHCPYx+HU5Bckd+YNZxH+ThQLAWvnQGGkE91Whaym2GIvqdbYwhCGGPw==","signatures":[{"sig":"MEUCIQDqzOO1xQXoV1iJSbhQLoekwEyKW5GDeXlOmjbQkwEYuwIgK5WN3HenzA3ZkvE34hnMPXqQ1CywiuzG4hYv0Uu3tDY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78872736,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDzAvACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqx5w//Y+EqUj1YaYYc9tO4So5BR1Ul3Mton937VAekeIKRl5CVaeba\r\nekkWnnk4VYhMVh7rKfTXDAnJgJSaGzdBAKlTfskDgSoIgNMnOFhnTBNCnxS9\r\nvY7msautH/pQvnyclp6Y/pQg95THP3yReib9e2vdNCFenufkJwTBarCtlE39\r\nOCQDtlYw6kwB4i+kjB3LWc1q1km3yhapR2eBFFGGirddBu3eQb9FiG9qB6gE\r\n++BegltMkeYCke7EmYAl3e+0XFCj/K8msgxC2GWy0wbTdE20pXwoc9FHCxCI\r\nCro8mjLdgzbTsHtbNjaPVjv0dQT8ptEDV0kJbRUGtTxENw7+qU78a4ZL90df\r\n5NPBxYGyMAxR1hulDWMahhmngJilAPM6BI7sKJppanZWR1xt9R9S8WRCVCIU\r\naUsvoohjiXsgaRPBqSMrXkrbI5tGvL/8FMvtxfTWGioTWgbF/Kkywk7C11y6\r\nz7KxaxGYsDjOb7PHEIjHpfKQ9X0faqtUj11U84ldPnj/y/bv9s8wSFW7Crel\r\nIVzc4LSKiTB3DvI38EQHV4q3jqHsL0C0txZG7/iC/SpMj+LRHrefYGsWly+9\r\nEKnne2jd3/wtUFYJUUrGE6BeDInGUV9F7hTtBPA93qDFtyeSagp2n+7eM574\r\nZ90xZwdbnp2vO296o2ZjDOtUjavHSJLjG60=\r\n=TWR+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"295c417f49ccd624ef06261d1b5ca817e5bb0c1c","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-alpha.1_1678716974973_0.9303014667983291","host":"s3://npm-registry-packages"}},"4.0.0-alpha.2":{"name":"ant-design-vue","version":"4.0.0-alpha.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-alpha.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fea511a9153ed095f1bf00e3098f41d71c9a7f90","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-alpha.2.tgz","fileCount":5171,"integrity":"sha512-zzkhkzhmbcOcTalPjci2WrDxFkXGuFiHYBlYAPtSNbTh6eqN4qr3btNBaTuTbS/BWhzmtjfetZrLbf6uXhmjuw==","signatures":[{"sig":"MEQCIFEYIB/uxY/jn9FtEbrRgLAEbXzf1t0O2TCz8jR7l3kJAiBzvAe3qfs1biiYuZ/FtiZ0OA0Vmj++JCswLVXIhJg0mQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78872206,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkE9NyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrUzA//f05M56ugNlOGDYdpFVy+BN2Cvd/a4YlrWfilh6iLQF8A0/40\r\nKZ62sGxwKSvRgtofmWwxySBIROgtipJSppnpmOgAzBd6UI22UfOiWua8lW/u\r\nLuHSpkGkie77rNYcdT+M+DJO1FzqpRvsP+5W2Guk7ZbgxweNSRerCg7ENk3K\r\ni8GPTXlPZozT+732r2nkrZfW4wPAkM1RG97Ru8JG0bgtzQIopRDxSJGd5ehd\r\nKnHrrGB3cHAH38wjuAZBxbMTK0sFzp80lWMhBdSu1s7PIF2/hULfaErqvSFM\r\n5dMY1T9dlLu3fse5ieULyQNOxVwyXYXdgxSazEMjEGDo+W3TWM/EitN0cmFi\r\nbpB5fAkjljah5OW8+0rkH/GatDel2lzXr7uYObi5qFoYq4k5wKdgi58HKywC\r\nPIB1Tmu/D+5MXUEiQUoqvyMZNZfu6TVrsFFsrAxBENYeokDi4wE6Qby8AJJq\r\nZL3k/bB+kucJ0U4/+EDYHSKK3hmVSMWeXVvjAb+GDiYE3uhCymGVQZAgQZVE\r\n0BFkh1zEXRD1CaTpf2HSJMBF/eP+CqnxONTbmCDHpmJ5pvXIG7qrE4JDOh/5\r\nQlka8V+3ooYqpaK8XbPrxdA6iYVLuZ1TNMs7fz8AeX+xP+VWYyLGSt3WEQSD\r\nIBqkIzyVTAzRxcyR/5jHAaoZbR2My9lGCRU=\r\n=J8yc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"89314fb4d00c34e82d64ded43478bf68762ed228","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-alpha.2_1679020914317_0.8058613042576159","host":"s3://npm-registry-packages"}},"4.0.0-alpha.3":{"name":"ant-design-vue","version":"4.0.0-alpha.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-alpha.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"63c9281fc47c75d87f6bfe46b1a324953a349f67","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-alpha.3.tgz","fileCount":5187,"integrity":"sha512-ao+wm9nOWWBzxwze1+asXA6JFbMsnQsKdKgxqrjADOB8lI/OsPnqFP3uPAfjcmZteCSLo61kRnpUK0d+bPKTKA==","signatures":[{"sig":"MEUCIQDfbHGD8g3HJgJezZyQWkzMLNFebO/f/pgujxh9h9h9fAIgNzEra2/pEpd5390jQ1g2MJPJToA+iUczC0iIrxLh5TY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78894569,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkGVpUACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrz7g/9FS+uyWExjMiz/MeTaWnxYowwx7NGQ6YVCRDYwpQfg9vIqzaJ\r\nxE7nkaHSG36pIRavWAgG0eeS1DSlwJWMiwoYEyhmSYGOMFTBKlzQzXJVO9Sj\r\nqAR6zhZApnFEHRw1KbpU28M+CATaCAC3QeU2fh9W07+MA1BNP3O7KiB+rFGl\r\nNH7jrxwWoEokOQkmYlNFxNrFemNpvGdye99adZ/B8mazQQdCmu/sa6QWtgTh\r\n6KOjYklvbuwNuoHRz+rdkjjvHvx9lC1s1qojtEqwp4K9rb94Pn9UsqXsT8FV\r\nPIGff6dnxyXJz5bwYzDLcYbTe5s9vxCGWK8EjTunh8dBbpdDcxx84j70WD8U\r\nSivhp7eyL4D6TNXB3flza0s5WJ1xTp2TnnZV0zhnTTqv+uqLwkBSaJRKH10H\r\nlUBcACpBP4VL15NSTI51Mev5zQsmlKiXV3WICb9WX9geYSoBT4CTpmksnABa\r\nAYztF4Bq1rg5N0czK+GMx4E3DHxrERQmdS8SbCuP8hPTAest1xR0PbzFy60W\r\nQppimhNi8AhrljR0FOVBkk5s6Cl1eiHp4eGIzmXYRpLnKGwbwP9L4z3+Lxqr\r\nW9TX3ih08RU4ta5agXkyzncYs84cn3e7PNTXBNprBof7IgNc427tt1f2TdTN\r\nH546zA7Fn4NLB5iWIGemRVpD2Nd6QcbcVVA=\r\n=eeB/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"6d60eba2812e38c467b99862e348557a002a3e2b","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-alpha.3_1679383123671_0.7218975242090384","host":"s3://npm-registry-packages"}},"3.2.16":{"name":"ant-design-vue","version":"3.2.16","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.16","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"d79209537f93d6b87edff712b9cd50fbbea128bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.16.tgz","fileCount":5547,"integrity":"sha512-kBGxk4csoEi2iaWO62DpNECTnBLIf/CNYW8RdNjLPWo6TBWLQNqLchxRcg8KatOkDRpdWRaqdqeD5P+F6MDC3Q==","signatures":[{"sig":"MEUCIQD2zbpjUF1AUtIrzCGIy0e9pIzuMjy3OQvHfck8bmFuLQIgIw16cTyG9z0PMWEz1TgbLoCT7VqknIHfUiAG6pCTGKA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60428108,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkG+77ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqSEg/+LnB9csyKCAWq4Lx8Cmk1DqHUt4pBF1X6poeI4KJvygkS09vY\r\n/GCitFr3YjSbwLkOScorfrYJG8U0QFjix53PrG57f9iiJSYt4vFuyDZ6o27J\r\nsAFSQJX+O1Ncf3PJAMoBIGaou1cg18J/nhiKA8as0TkaGMtmsZeptP7qkroL\r\nZFzwNioZQpcTKOdtx4Ac6KiRtIFs4P4/Y1rKs1TXFYmZsikMEJauqGJAkoyc\r\nbjia/zDwcJIZ5UH3c+2oMMOEKnYBynfpYlhdlm1sWrfIEPF0yZkXazzUSpFc\r\nfktFqZG1vjKPxDYJY3ChJ5fhjEINetFSkWbDHe0b5RcC9xyGmCMIEV7fPZFq\r\ngSa+ZA/78+S5uCfKZH0a8nlrI2TU0fFDaJ/yC0wAvVRH1Uq4x9oMrY4LK0/V\r\nvw0zUsbmzhK8pQoqY1gsdChxPR3vrRBZBxELOtOoFdoWHAhKurLjamcHJZMi\r\nGQhtWxNXi6IX+AhmyXLgAgXvUVJKbKw6vEGKr8dC9oWDC835gVj2UB2iS4NU\r\nkROj4BdjG7ymWihc1hPUqqVLLVHnlNdrmdPAU+h51yCWdkHZmEowtfJcTzjF\r\ngRp+w3xzVfRXfUOh6s9Y930LmIJRXb4cXHK1awnQ4ozK7Vc7FS2WtVu1VKiF\r\nzQEJ2Uvak0F6JcHt4M8wtNaxiJ1Pq3iiogI=\r\n=hGG4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"051161f102e8d0bca89528c78727145caf6d2120","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.16_1679552251019_0.11584054766840435","host":"s3://npm-registry-packages"}},"3.2.17":{"name":"ant-design-vue","version":"3.2.17","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.17","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"5e6ec321820b8e5807e250daf488feeef2551e07","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.17.tgz","fileCount":5547,"integrity":"sha512-fUHC1PRF3/UTDu7WjaKq2awyqET2mGfEytNOjfbUrvq5Q4AzNghzJlCWh1saCuA+VjnRRBCYu34StZ44cDmbFg==","signatures":[{"sig":"MEUCIQCKutFhhp9O2PC8NggAZed/7w2RGLsDwMiMXFuyjpoK4gIgYMdeL7T2jkZzvYU333E91YNjdFXY0CTJgWhWXQSB/dE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60411596,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkLDhFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqItQ//cYPnLrTHMsKECsyrYVQbMumqPvB4/udoVKcDnbCZLYBCSjwA\r\n+X5Tjrfu4qRt5vfttoIofDiQIHioS0tkMzIDbLz240mZd0dB7mlSE7CXa8X6\r\nNNqD1oJoOQ1VBpAbTTyVSv2TBk6qKOY4A7hc7B8vS07bIxfdl7aFJ3Nghf8C\r\nGV2MysoD2B0r1h4cDDX6kWt1UHxWf1nh9kGyrxv3OQVCFBSSG1G3FVxmnVqD\r\nPgiCB5B6g+S7ovghFX1pcQhnt+pWzoYP9ov6Aghmv2innVov2dQELrQJULRx\r\nmDZXfW2qVm3Zd4pQmZfwtFKuS7DFrYFq7+mmnuBpDocwI8NbGVsj3xlUjmCC\r\nt/k/f2n2s91g9sp7xGXIUp8wuhicAli6Ooh31TQcUDsGZxfSAqsNPrObGtk0\r\n07opON4umSaKyC4nT+HjJClmCpXluiaSyCYMeM8cbdbp13HObxpdYxMJgv03\r\npbET+B0iTkGj9YvgaHovTf7dAiGbVeRFRQtrz9nt1l7+T9iLLPpBMSMvkp1R\r\nefYv2huIVcWkJTYiF2Tr7daRfMktp0E2ARr0GuBwrcNym2cSxQsJTsnppHHh\r\nIzj2UGY/JNcEmZZwpaZBgsl1va3F1zVCbSFHvSBGbWmlBm2eFGXIT9N/K3/d\r\n4OpR44zyomaAaJcjkHnTsnOpU81q6CQz+18=\r\n=/hDP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"65408bfd48c71e8cf153cd9e6606670a7f15970b","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.17_1680619589086_0.7482625837120611","host":"s3://npm-registry-packages"}},"4.0.0-alpha.4":{"name":"ant-design-vue","version":"4.0.0-alpha.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-alpha.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ff8af7c0871d36334b4e5a1dc5f1cfe44462a080","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-alpha.4.tgz","fileCount":5199,"integrity":"sha512-FrUc4L+u/Y6xjpWHe8kwkKjMSbQWHxApzDOXlMNP3CCZQwWy3pYxBlPDrcbxzZ1Pgaa0ELcCi5z/vCsuHDJCrQ==","signatures":[{"sig":"MEYCIQDkp6ekrkdmyeMsfjj/HRGWe0Ku2owB9nSs4eL9M2jj/AIhAPew2hKBhlIkKidi4qV8smOACFXrV/gjuPo+oU+doHse","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":79558263,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkLpOBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrNCQ/9H+GnrVJ9fhqoQ135eXYfR+P+yqkUqQxUoeCGFgL1dZXp4OkM\r\nIl3AoDisWz7vUyALMfFCt6xdt2YfhsbGCE/Y120Ctwicj0mQ2kw6EagY9KlW\r\nhrB6oSzkT3uHzR+OLd3wjGuufPK7e/w8LgjXg+bjI3r/ugAnHR5FGgcEXfNf\r\nnRK40Lvq/6j9NPOZom8PCeJP06o+s2I2wSFZ0F3TEtKZOsV3oLqk1eQ7j1Qp\r\nsHzKYKQbJO3/FTdqT0aDxUY9sS5Y+5WlO41SQvmFNVZMfeLdRPh9HfUuEKH7\r\nK2lZhPUf1JfItvWUIhoyc2Nxn8Blvie1qrPicO7xMOlOr3tUs/uaIcfNZkq5\r\nfKdqOP8Yq0vDTsPbPIKcUM661m5A37Ua4+N0nkuIVpWNjHP1Oib/Prtd+F3k\r\nXQuwiuWS/5oJiVDAjCWIwfnTrounQfnrxUUr3aSSoOUIi03r0zMnw862fI0g\r\n48fUmrzSOJ0awZmd5fuDtZ78cC3QRI3fxu1dm6V4IpX6o+dMpVOzYoLno+VD\r\n60BQBiXEAkPLq5o0IAt59z+G6Xb1IEHQ5qG+itGkSjlFBepBW8xfDwCQfxqO\r\nhvdVucQXr3gEJt9uuVS50DVIcIIeDX9DGDl3mxKwg6GCnrIMGQYNxa2FprH8\r\nOaX04d8Ta/iN1FlXOJTqVYvPpRGMbDYW/ZM=\r\n=Jo1U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"637656b0c39775d1be900147870394ff33c986bf","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-alpha.4_1680774017116_0.31221177861984417","host":"s3://npm-registry-packages"}},"4.0.0-alpha.5":{"name":"ant-design-vue","version":"4.0.0-alpha.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-alpha.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"1050a0e190a1047c5638b13d835e30119c3ee1e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-alpha.5.tgz","fileCount":5199,"integrity":"sha512-2R2YcI8mRxBdQdgN+OWALbYVi1vieXJKqMZ/OeGtc+vxU+Hv9BlYSpoRKckVYwgXNW73hzdKLjtdG8Q2PDC8MA==","signatures":[{"sig":"MEYCIQCU/RgHNQdTO4fAoBlDlZmsKGSgqBt5E87xPUR/0YaCYQIhAIvP6k0dyNQC+e+1qM4o/C5jJQstAWEBz5zpiyGr01mx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":81277228,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMXYXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnSA//XhUissryuJrMM5V1uOR+qUs+DWCfwsiH6qM1VfBM+E6hCGDZ\r\n9t5o//Mw1PvxLzHGKPilDcuPHQ3eLPJlh4A0SQo3EJivRafCgiwze48DTYaR\r\nnog5mwfv4kBfM8qAgUtj3E1rqxy6kY1PPueF0xWWb2s96NZjRkmgJX/cox8F\r\ny9HyJzQmR246UZrHD6QbjWkKSTIR9m94jyk9ttkEamcJ23MdpdTOzrY46bMz\r\nafkvslOnULbL5OnS3IKPC5iU8Px/GDgnexqX4azrvGuiZy1PmdBUs+y/AwLx\r\nneJuOB87AT3yjG+8Fo6lP18UoblTo+gGDKw7vdJ5XgIj/LcN/KbRsxJLfQlQ\r\nCSZ3coiH7vviTRqDs1jEJ+tDpdy97LjyF67C9Q8S7HS2wHbumiEq0tKrnQjz\r\nVEGg8bwt5Vh0vzCRvEmmFKe55KVLCPeRojThwIgbZQxBawEFzUuD4f9lB7S5\r\nu/kdaCxHDWeb70qo98h6D9PJZzX2IBpOqULWv0r8SbLZJHSWt1lu7NQSkcyo\r\naGvk8n6GrjpF6QtXRcSF/cIO/ZxFFY9oxqMjze+/mKiXHrR4hK1HJBJ+meIB\r\n4Moa2wC4xPiKeUxmIrJY4l+UVIUBXfYWgsKBimg/YiA0AsROth2ZYYuV0lCr\r\nXlyxFc0iaZRjcGWGC9ijUIxT7yekQbcyFyo=\r\n=os1H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"515ab9e38c2e714aace711b3c3f1385522f383e2","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-alpha.5_1680963095128_0.85164446805051","host":"s3://npm-registry-packages"}},"3.2.18":{"name":"ant-design-vue","version":"3.2.18","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.18","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9abb0e7d9349d2d370ebfd036f1fa310e3878395","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.18.tgz","fileCount":5547,"integrity":"sha512-8jqy2on2W7E2JQ/bxGsrHz6f/nwXLvOJV11Js1TIFJOlcHRKOzhomt0QArew88Tx1IL8KjXQbRHlN/h0qBdbLw==","signatures":[{"sig":"MEUCIQCr60vWYFgMZvPjx0ufwinW2Dfxsvt/GmmzZVGm+J8HpwIgCchtPfPyz9E1YqvY62MARC8DhputyR2tfoJzB+BaHPA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61272136,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRMYSACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsMhAAkomfSUOzB8uH2ZADsOHRqFjbiQldM1hpNCLVZKlOZ23v639h\r\nL9NuFFp8Kcv7Vgc7tsPLtrQ9NapKwqWmFWqhHGa6CZsp7gQQV+S7T8SdmtYP\r\nNfhOg9r27tGZ3xh9u2r3Lfxc6gpVf6wvUQTSMQuFqbW89YUTYhZZG8nkF9ak\r\nhxyKDTDsAppZjy9gculZVR2Ul8yI42rAs2fSH2Zq+TlO2Nouoq/MT3LbB5fB\r\nv/dpp/Gz3QPw9PZ6l24migjsiT7jg/TiaMDdcFBTOIjxm+ZSTmtBRahMKC29\r\nP0Hm91R0UsjlBZ/J6VNicFudXfvoUlxoj8fusVqRbrb2MekoZbAiHhmypnlQ\r\nGf0txuOW854ksRHu/EX9YuRNv01PbWpJvbqOZcOQTxEsfvuGL24QW39eE0+Y\r\naZQPvuWhYkqdAfxq5ml5P0NopfYRkrkK2/E9NkiYq0UpKumkD7fWgHoetKOJ\r\n92Kgoy0Dy3GjC6+w3RTaeS6Tn1tf7xnA4RHUh0gqSesDIwt7s04DMElB8iTr\r\nwDyHD4LEntJIkcDih5fGv+SnnYD33zDU84+7Zl73vIx3oIgPJozdp3SzR2Nd\r\nk+jmgBkuVtfVwMuK1CxPwiV0OIAShBTHNakSK0MhHTsfkpnVbzUnBMgEa0vx\r\ndy/Q3YClMR9CtfHIk57k53KPk8lsqGGluMw=\r\n=6deD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"12c9e0c3fb271906b43f5c27382c1a9a9a80654b","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.18_1682228753844_0.6458888249913426","host":"s3://npm-registry-packages"}},"3.2.19":{"name":"ant-design-vue","version":"3.2.19","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.19","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"b8f7c2ed81def0b8636fbd53608afb6db9db5831","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.19.tgz","fileCount":5547,"integrity":"sha512-weizTa70qNhyj8tOoplTcpt85OkVHpnreK2skdTmORFAGDGvF15zyoqCNg2tByzn2xxf2DloQQvZYKlN/i0CGw==","signatures":[{"sig":"MEYCIQCvYa52nQWEi522j6zYcbuGeSEm4JZ9ObLBA4yN/+Ku7gIhAIj4kCTPoveV8AkXle7hSJ1wAqZ6SU69n1R0MkSHdODH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61268123,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRRXeACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpdhw/9FWjIF3REj7zyiC4H4aNu71nG2fWNg0yBQ5KoM0YFDSWh8Gb0\r\n3PUDBte8Pcpjl1BNyLj/IeolmnmmfYm5RMua6yHwiwCQpBpclmHNV9QNf2oq\r\n1QWQLEodQNp/dapCEh0Q5PjeJlXpF6EXdCjrgiFt4EPK+/LneDTrbeJUUiTe\r\nEg9iTO2nJbYCjpzTi9DLRTDuaKA+8WKp8Stvg17SASqmpakaTmPJVYnr1ZzY\r\nWnRptorFS3YKWcSlRUZfWWHde/hw5AJPzKuK/Ce5ADSyfL3h1NhndKg/eZ4Y\r\nPZRhKjOVbbvjj5kBwFnD7yZrK0QigwFX8PmI3vODr3hheLV9/fi6bfmcH4z1\r\nbAykmoI4blhgAUCXe6A5NfRh6qMsSqgBiAh0eevoZEP0VPduIzkc05aqo3uW\r\nrsjJFDSo6+qSkNtnHn2bnvpr7+PxsU5Lyavoznxm7VeNmzGY1HcrNTa/IPBz\r\nBJTODhw4uCRJfSdEZ3n5PapmqykmlT+zW4ekzrYg1jKXrXUqDn76+GJjA9Sz\r\n04T5rbU8LeNJJK93+i7kBVjjw/A6H8CaOos/NfmAZA1NSyJV8cufBfAjPPKa\r\nneijZxkFUPrDiyPUZNtvX+kFDJ902eKVA+krit8rRB/xNZh1sry5i8O052FL\r\nyLATqdVbZoqp4en7mJCb2C8/7SaDQuolI+Y=\r\n=jHgY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"ca0d8cc7c1361fdccc69e44f09439e9d568e41f7","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.19_1682249181760_0.29265231478923437","host":"s3://npm-registry-packages"}},"4.0.0-alpha.6":{"name":"ant-design-vue","version":"4.0.0-alpha.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-alpha.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9252f6e0de691a579b86c130e199baed1b42079d","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-alpha.6.tgz","fileCount":5190,"integrity":"sha512-H9m6RpuspQpo4JYZ1YzJAZ9mPgmE8JHmoSgajOVXQ5RHsIzi1Zi5sbpLTVH0Otcw1q19/1UfvIRkckR2oOMk+A==","signatures":[{"sig":"MEQCIBH5xWbBrzxRl13TRlXi/zaJcdpDvvyEttMgf1Hh5KQYAiArulYYlOzjc3FcHA6Wd5Rvt36PDvwuF3ImLDmPOwKqAg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60782106,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkRRjtACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrM1Q//c2NI9SEqeHcky29mN6im/IcbnrPQpJ2ozmaKPvjJoVK6RrJ8\r\nSi/dRP7cDg2n81lr5g276wohmF5GaA819FwXDmXikE6h8ZGewqWLbpLZJ3Sy\r\nUF7uPXxFjN8gkNUWaOxgue0NmKxBfycgKFdvuVvgTa1QmaElZ8TzJL9Z/FwA\r\nlq9poaNp83gvg45Kj9wG4TmBhZdxAoHlw/gTfJUX3EPaf7zoVMGu4SGgp0Uu\r\nkLek+JAZ7RKOLcqwxLK+lDIKRFLb20YUGOF1tBwM0gOc+k6WypTeiOPTZtCi\r\nStyYdAjwM9qQGmfFkXQPaOeCjGIyKSqTGCWBUaXLrPZ9gCNZV/2fTAzpQpch\r\nPekteurZ52u4nYv55beSXkdmajTZsllfqiqlxEcWO8dzv2L5vTj3GNNYlGIy\r\nQ2EPkMKnixwaXesEYKYwQmiAZYJISQxc2fq0sdzU+BZgja462EXOfn1yBiph\r\no5gNWbpvOM+rLC028PxlfshlIty38BUvTbXgAGceyHFGsy1Z9TF2TrdAYu7W\r\nofz1T9sAI/qDfyId1MI9ow6WwV36ZRsDTVCirQsAHoaGedfgA3+yjcRS/dAx\r\nBXGQo03wDyZsZpzq5DaCT+uHL11SUrD2kFwg4UKoSnDFu7pPWWLu8QSHmHqn\r\n8kvz/XjX2nIJDcCAdhi4tskE43wA0+ZQF8c=\r\n=kuk0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"43009f0c5965c3eab35bbfffb5153f661dc40b9c","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-alpha.6_1682249965060_0.1869374403066697","host":"s3://npm-registry-packages"}},"3.2.20":{"name":"ant-design-vue","version":"3.2.20","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@3.2.20","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"552f5f08e2acbcc10bd4089145d4cc2b15d4cfec","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-3.2.20.tgz","fileCount":5547,"integrity":"sha512-YWpMfGaGoRastIXEYfCoJiaRiDHk4chqtYhlKQM5GqPt6NfvrM1Vg2e60yHtjxlZjed91wCMm0rAmyUr7Hwzdg==","signatures":[{"sig":"MEQCIFUfHvknbbOeMPZ5HJe7r8uld/BcZx1gEy+gIqb5JyX0AiA2lYzGaAnVTTD1naa306uKF9oqmZavVrbZ+l2efAxmMw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61270541,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkSo5BACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqTVw//Zehb+hhxS26vEd81goW3kYTda3Mt1ovhCA04H+ovYoMyvFmG\r\n97iYo75kOHksqGG1Kev2zCiL0on5Xu57Fqnzl0JBYAn5EGV6p+pgdQMmH78O\r\nqHqmNeOCgcDk2iPo5/LnGZg702tqBqDd4ekLIonghpfSUucGzKhpWWU7GYlD\r\nhX4C+7+9QMkrUcUx0sGYGRTJemWJSlPDpWk9GRSnv+RrzIFvrfWzhMcIZ/ZG\r\n+Ch831xonp7lbB7fSLkpTf5dFXfRAMmBNggj0y5VtTJ5c+kOyItid6unioMg\r\nI8TcGqTc916c/hzK0hb8EaxCOHNz/iF20S30uJGobclGks3c/wJS9qT8U0NJ\r\nNqKZa9ukelspcJysx7JhejCqHr6rCZeMUxuWcIQBSK9jpAVhgL57fkqpzt1w\r\nM4uo+OuapiRyPpnRhUstXR5svaQ54CpnNxybGPFngrkQkEmOAp31JOw37tTx\r\nA3yBiXa5Mb2ShW6G05iI0R1JCfwHWc3LXHkbzdZzy2zPMymeypgrWH/Mzn/b\r\n7eQrNp10SOD/1X2xLrvFAkpE+RdT1S8rpmLFoYA+HgCasJeKQZHLHHUdkK63\r\nnnyczgAt81xnCDsuCB3Y/Ht0Wdjaf0mAPEwCipSnFmtvarnNt/SPl2mVCUNj\r\nkrEoZOLctDPvfuY+6ydHWbWpCl52y9zaKL4=\r\n=Y2Ro\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"ccf850552d957bfd3341cd57502010d392756a3d","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"npm run routes && ./node_modules/vite/bin/vite.js build site --base=https://www.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js"},"typings":"lib/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","components/style.ts","components/**/style/*","*.vue","*.md","dist/*","es/**/style/*","lib/**/style/*","*.less"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead","not IE 11"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.4.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","array-tree-filter":"^2.1.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","typescript":"~4.5.2","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^2.18.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_3.2.20_1682607680632_0.6944670412722267","host":"s3://npm-registry-packages"}},"4.0.0-beta.1":{"name":"ant-design-vue","version":"4.0.0-beta.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-beta.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"4a28169b2c49b59c96a56abe841340b1592c71b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-beta.1.tgz","fileCount":5206,"integrity":"sha512-NTu2bWaN3G6ulfE0cxn3ikT4JmEXhielfQ4U/Vc/zqrreMkfrSa6L0FwtizawSftJ1/RiCcUlxNf+w7kUcSDrg==","signatures":[{"sig":"MEUCIERiLdNA6fwrJTF2+C9VzAaxWTvpUwNFp6lbsmPpt00GAiEAohccJMgDorZUDX1y9FyosKrsecUIho1s1VgEVp2VPfQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":60886913,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkUgp4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpLLQ//c2dwSvxecaF4CoLOHOBbU1QaRGt7XAny0EwurR1qWILvbzRh\r\nPzhnnomyUSCB6WcpNr1+rUfyYej2Ip7gYhYWzK1QS9Urq1oo1ZYVhPrTRVmO\r\n9SbZD2BTfbhdBPxn4RRmWmqYfRjIoDDT5IilV1Q/wdUy5mEwFox8amxdyQs2\r\nYslgPpaJcQRNAZs5awRMCm14Cr1W9cPF4yOb/6kaI2DDJ4i8DyuGuT7xvfKe\r\nOnBo7t7D4qIPkITF7Ya+djkb9ayt4mA6/Xukrxi15BiyEYR7zIGMLwrJriMu\r\n4U3cfg04lijxFB20yI0tVZn7I97zXkKvhgyoqCnnFuxBtXCO8ZeX4gsQphWl\r\niOWaXz1RhcDdKNlUzWTVLXcWpPUusFkYvMaupblGZLLTuTbyg7aCq1t3fO+H\r\nFx/mDyRbv1h9BGjvLeQHyNa3AL4J41SB7CEw7zUpPxuiRwh+ksg2ZFyxcCSV\r\nppL/CoQM0JzY4hpwRSnVrh68RShzfqxF4yDqU/RnW3onyJ4VeD3DjrJOrBzB\r\nBkpFAj6Tm2WFI7RbV8iiwOHx+gT7ZSGokmMNiu7TgqivjE5M7rNe+TAQzdoc\r\nhwmStobyBtv2pouSJ+6YjcnO0UTpbPm/feo2qfEVBiV/IM4nLzuTxpYNya06\r\nEvYpICNdK3NXl2ZHoLUPIL/S4TkZ7nPYb5w=\r\n=YZtl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"db469657619fcac659ebd7bff25e0e89c5bcbdcb","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-beta.1_1683098232263_0.34941917577899595","host":"s3://npm-registry-packages"}},"4.0.0-beta.2":{"name":"ant-design-vue","version":"4.0.0-beta.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-beta.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"810f2272ef1e65968c07da6e8e5fd3ba847d634c","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-beta.2.tgz","fileCount":5242,"integrity":"sha512-59C9xVjpfos4WtpEQScrw20mOv7Yx/HBivnwVvVmoVmZYHu1Q+SkGjH6nIvf97kTqgsDRmb2y+pF0xMtBRXRJw==","signatures":[{"sig":"MEUCIG7LMzgDjHl8UCVDi5dsEXeB4g50meYosxmpsmkKbCSzAiEAudkU94kYe50vo1br2DuIXRBnTsNUZdSVOHydlny6epQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61400472,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkVIEbACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpAgQ/9F9wmShJuRWKTnw8+RDuWlnQUo8MsyhkCIpmx7luqG6idonBl\r\nbVdobPXsNFlVroLSnJPw4n6uSwZc6DVbpypwBJxaRNYICoh0TNeB7un8ev5A\r\n7y6pxbeLfqTNhz1vv1kxAxV/aGsXYIbC5vCZXj80R89x0Nq3ujLyQ7xrRdEz\r\n/Xgys290d8R0zWEXlS7O7nVQ3aRbAOyvC0SJmEI2LqMCV+do177lMuiTO9ew\r\nEVfo8v14yhl26c90aq68OAdR+iv0+GMPi08uuLHDgJr0FiHd+YidtSRLf53w\r\nGJCmstuYDKQpM/DAo5rYyZGPyh6IsTA3CTHPbVvZCg3KCgWbBWpkh1mVl/XX\r\nJGIeSNlo1iZhf9iotF51yQ/woo8OryTiQaSNn6MM9JFybReZ+0Gz7G6Y/STA\r\nsC9k/v4qgiPfTEMuUj+BDQKalLjBNfHFYNnfJC6F4tCVjrVqLP0CF3StBu50\r\n911kJtiL6Zpl9Pt5yoVP1IdfjI9/Dv5KwXR71FxlgGeUJXjIL16ba3RUFHYy\r\n3WyMsaxRBUtN96Ln+dqxsqy+d7PG6RjSje9XCD9GnYptcNxNqIzxivQZic9T\r\nyYiZJG4sd+beTUp79n1nRELRpZVlsig4WomEmV7Z1SKe7qPOi5ewQMZSh68D\r\nQQP5VB5mbXD64kYsovD49Kj5wLD2G7yKhz0=\r\n=NlE/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"fded418b8a03eaafecbfda20ffe28f904c0238d6","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-beta.2_1683259674620_0.4313893058445948","host":"s3://npm-registry-packages"}},"4.0.0-beta.3":{"name":"ant-design-vue","version":"4.0.0-beta.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-beta.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fd0b7aa511d105c5ac8a9eef4bba832f59afb9df","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-beta.3.tgz","fileCount":5242,"integrity":"sha512-Q0kqtmc4JmFWxLzuoxFCiKPsHW0BFL6JGXFhBA8nVXH1YHA7fuCgifvkDGp63qPExmSeeZXOScQf8gyZYhBFSg==","signatures":[{"sig":"MEYCIQCpC4xMO7XxD3BcPYIyKYKyVqtALjRxoU5CbfwgmxyaOwIhAJYLiRr6+EJTagyt1DZOKGZ545a9YQHiqk3aEhsw+UO6","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61403614},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"f2f7cfd94da0de908039c09b743509035ce4dc64","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-beta.3_1683533779431_0.967764291096427","host":"s3://npm-registry-packages"}},"4.0.0-beta.4":{"name":"ant-design-vue","version":"4.0.0-beta.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-beta.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"a52090d1b5f6219999a2870efe73ed7fa1878896","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-beta.4.tgz","fileCount":5242,"integrity":"sha512-7CCtStK1jydXgQJvPIg+qg4zzhiLyITl96QjFWPvVLvhhsOneadWQpE1ebHdMhb3DlKeJPRSOUEQ/v8/U9mzgQ==","signatures":[{"sig":"MEYCIQDb5fH7WkhvkZF6Dc6ZdAI2xGKG85wUNZQMZ1J8KWWtJwIhALeQnwpjKvInlt2UN8V8HOFzqiEvFC6+IeTPReAMlmQg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":61405330},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"0d24755ee3a169a25e1b69d012b9193e480bae5e","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","vue-antd-md-loader":"^1.2.1-beta.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","vue-server-renderer":"^2.6.11","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-beta.4_1683535539105_0.8112561813103389","host":"s3://npm-registry-packages"}},"4.0.0-rc.1":{"name":"ant-design-vue","version":"4.0.0-rc.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-rc.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"53cd3ba0a460b08cd68db4bf60e38e2b7a18f7e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-rc.1.tgz","fileCount":5302,"integrity":"sha512-zXnrpYKE7rK+lzOXoFA1ThJ5RpSXWOzBIydlB8mr54nuGTDGQVPfBifWTcw/xilkmxN8iSHd8B1mRKYEM6JL9Q==","signatures":[{"sig":"MEQCIB4PFNh3Bsa0N8wZTvGWecFYazX8P1lwhGv1uqsA9iskAiBVhGNoxQwibGwI2L7y1j/U32tQqWYWcy53eQeQx3YnyQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58261379},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"d49082008ea51f4077957ba043c38b996f7e18d7","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-rc.1_1684462985897_0.20503907292385914","host":"s3://npm-registry-packages"}},"4.0.0-rc.2":{"name":"ant-design-vue","version":"4.0.0-rc.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-rc.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"21d8236a96336cb69d01041d97487d5c432b8848","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-rc.2.tgz","fileCount":5302,"integrity":"sha512-4VO5q5ZkJ4g1eUS/HeuPkXvURPpDoVU7LcoO/oPH+lEq1jEpZIxf40BJvU+Ie3NGdi7o9BH7byv2lYaZ498m2A==","signatures":[{"sig":"MEQCIApPohWjrN9OVkMqwbssogIoqoDYGfBvqoCXlPSJzfB1AiBgdfhBys0eKwVE1CejQ6/2mmKHUqcqG1CQ/AaLEX50ug==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58261427},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"96f940d8346fedd1cdf48cae7e10e50d70fb74f1","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-rc.2_1684569468050_0.9997227921917453","host":"s3://npm-registry-packages"}},"4.0.0-rc.3":{"name":"ant-design-vue","version":"4.0.0-rc.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-rc.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"0909c6053a714626a547d7de5894b814d9976e24","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-rc.3.tgz","fileCount":5302,"integrity":"sha512-8ItchAq0Ior3X+TvD1uDLx24qtROFKQoqdKo/f2PnLMcv2qt37pOBLAdG3pgzImYBNcpygIEzmByn+LU8Fb4Sw==","signatures":[{"sig":"MEQCIChVQnMB/XqBkMAfrMrU/jp02jgMLH0HpcHKYa4PijiCAiBPj9Q9xKqJf0JfyEZ7Cc7K1DYZu5+1AmIVEdtpQz1ukw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58257741},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"64b9347fce87291d74aaaaffda734ddbb7936ddb","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-rc.3_1684573379316_0.9425708130483792","host":"s3://npm-registry-packages"}},"4.0.0-rc.4":{"name":"ant-design-vue","version":"4.0.0-rc.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-rc.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fb03ef8de04959222d9f72f3f03b0a16b37b0a46","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-rc.4.tgz","fileCount":5302,"integrity":"sha512-WvdGVHa6TdQ8mtt+/ePs/5Yu5/Lmjj1EwcRC7ZqMNtDVSz/odNokW7EkIZo7gJ0O/BPd2dIw49m0bzAj1RUixg==","signatures":[{"sig":"MEUCIF+7IacyE3PkL3kXwCkoBO/b6U9LH2I7+gjmQV1kney/AiEA4iORfCqci61yNOdaESPr4eJ0PTaqaLapt0omp13Xuz8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58258259},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"42cb6871ee2da777cf371bd76a8becd6bb923fc3","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-rc.4_1684824265468_0.1748882205833353","host":"s3://npm-registry-packages"}},"4.0.0-rc.5":{"name":"ant-design-vue","version":"4.0.0-rc.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-rc.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"7fb54446e8ea0f64d5bd179f2018bfc89151644f","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-rc.5.tgz","fileCount":5302,"integrity":"sha512-r1n64cXwQqpd9maxGvT1Oz5tWNeBArVvIvskl/f+7B39urM5l8C2IjmuvZuIDbKYwnUmOEtYlDxEzAws3956kA==","signatures":[{"sig":"MEQCIF6Nc9fuJqSnsvq0eq6cmzBBqDghcilc8SWl4fbL1u3oAiAE2G1F4nxytwZGsx7f+BtmXGRY0NPRMPAuabpXSNmhog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58283036},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"45ede0853b35920150129d210271e2b924e88f5c","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.1.2","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-rc.5_1685024631595_0.3539073578228775","host":"s3://npm-registry-packages"}},"4.0.0-rc.6":{"name":"ant-design-vue","version":"4.0.0-rc.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0-rc.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"6230abdc449771007831435890adaab28d35dcc1","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0-rc.6.tgz","fileCount":5302,"integrity":"sha512-j+GAhgC1p1+nmQVbaEeY2miZ1h+8jBLlxTESX93MwcshVaYTkZNhiyddtl92VvEDJTedzuX+1oT3TP5wG/+tHg==","signatures":[{"sig":"MEYCIQDR/Pl/IzfUXAAiRjJLDPzahGRkxyHwOogf6htwvXhqHAIhAP4wfW8XcQor9zXdm68a5m2/55xHxIA4TsoyRY5WxTn7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58355475},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"058e8ec54273d73aa527b0008e6201dfb4ecfa6e","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"9.7.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0-rc.6_1688391937114_0.9361542261944151","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"ant-design-vue","version":"4.0.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"82ea182d44530d7663c999d9b4d594206524b21a","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.0.tgz","fileCount":5302,"integrity":"sha512-6V8DxHPv3HJYDdv48W/KFOUjeZDsYJhFlk13HFSKCJSR2MQs4YnPIAC+rWie9vYcVEKbO+cQDqiOM3cBoHMNUQ==","signatures":[{"sig":"MEUCIBDywczi+Z3IC5WUFDvDN9luoCPHdhwO5awZqC5gkOKkAiEArw7IDT5Aa6o2PJKx9lpceydNzOeNXjx3hDkgtoNII6s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58356508},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"a2e50dc43e75ce609c11cf6f5f6cf20deefa32bb","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"9.7.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"16.13.1","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.0_1689307520328_0.8745101971330251","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"ant-design-vue","version":"4.0.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9d85cee91ecba39f11439e8f174d72ba548e835c","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.1.tgz","fileCount":5338,"integrity":"sha512-/gZEB/e6166hlqaYfSAJLgzr6zAPuVimITYx+OaifMaHYcxKOvbISEFTsDnn7qRshVYHFyUL2HIyN9sSrWDP3w==","signatures":[{"sig":"MEUCIQCxMyf93PAmYKGAjPCN0vlfOh/cIktyy9szMQp3kZ4K1AIgEWL5BE3pnrbmLjsd+4grcqD7IAIGSKFzLqxcVeS9sh8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58513998},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"6c13c964c5a56a440cf47aba9a8484ebbb2f3a1f","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint -c ./.eslintrc.js --fix --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^8.1.1","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^8.0.0","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0-0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^6.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^9.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.1_1692687492365_0.26182939505776925","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"ant-design-vue","version":"4.0.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"83d96dc05d4f9915e479981feb98e4725db444ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.2.tgz","fileCount":5338,"integrity":"sha512-4vD/mVXne1avmYo5j3V9bqAlMfxTu2D+k0j6dTN++OJZOjkuaV3waMLP1EJY0nj1xl0qUV96u7OD5xgTYfdtBQ==","signatures":[{"sig":"MEUCID92Svr5QRJxMY6j6O+IScziWEO9k3YoWNwMx0VXSMtjAiEAhBMlW/s4EGSaObhH/TxGKOE62AOz56f78YAGjiMM6bM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58477891},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"089548ed743851908239d96bb6c94c5e061d23a5","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^6.1.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.2_1693440615644_0.0026978395780623554","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"ant-design-vue","version":"4.0.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"0f283c4507368ce4fb658effece3d890394f8c4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.3.tgz","fileCount":5342,"integrity":"sha512-fbgZbbirLx7rc19ytaGxApwS01CKLRzvEZmH0TVF06niQA9ekx7xkvfQGlmiSaCs4b8nWZi4Bo7gUzRNRt5YJA==","signatures":[{"sig":"MEQCIFXtA7kbwkcYQwYobD1QYdL2fxRQ6Zo4dOFywvpfFt9vAiA4fOTFEJ7AxwlyJPqmYWAuRYwLBEt946SKfuPNFFALBQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":58618499},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"83d6c937654467c99be4603f3a3c5b4d31af8130","scripts":{"dev":"npm run predev && npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"ts-node --project tsconfig.node.json scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","ts-node":"^10.8.2","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.3_1694315356059_0.1592497409189293","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"ant-design-vue","version":"4.0.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"9ce717d6a17842cbf2eec21229da30c75cf1fe95","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.4.tgz","fileCount":5347,"integrity":"sha512-AtGoIylQAU3bw4s3dKgYGrsI+CFobzGultkHiBEEoqmWLBVlblLlcSHagIjWpSqWwYLzJchwsIUgD6f5zXVeig==","signatures":[{"sig":"MEUCIB32qtd2fogj6EvsrCi5E2L2UtPmUecJxgjm+Z5oBI7bAiEAy0QKOLkfAyrZANFPYJnwh+ySGr+8qBI9F2zGQeZ8nbU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78318997},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"6f89185fe14a0cc760698d92a1c3161278e36013","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.4_1697444653145_0.589031880651026","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"ant-design-vue","version":"4.0.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"836d69e842448737a7cb09df69dfa18d6b218a00","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.5.tgz","fileCount":5347,"integrity":"sha512-wZnT+on4fHWuoCABZ3f0ASN36nothzYsZ5Nn7ICwdwl/tJF/DmMnAqkverXqi98GVO1DQArfUs7jwNcR3b8DNA==","signatures":[{"sig":"MEUCIBHjlammP7E9bZI3lODn5HS8HoDmnyDFwSBu+sASfHkOAiEAhGzkvm/NBfxK8TZk301wlPW9aRrxplG6sDcdaoLLM4w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78334668},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"bf917f36ebf38e586e098f0bf0d6a4a463455eda","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.5_1697541021378_0.646293634915643","host":"s3://npm-registry-packages"}},"4.0.6":{"name":"ant-design-vue","version":"4.0.6","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.6","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"308ded25f4ee7e4582dccad4594aee4a000abe2d","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.6.tgz","fileCount":5347,"integrity":"sha512-6kh3b8Ito9SAbOKTW0wyfcCnd859uhQQlttjo8RjMj6YjLK52yNO2TdgYRwed06scUm5RwEnQ2JKMxYYoeG1MA==","signatures":[{"sig":"MEUCIQDW+qMxU35UKxtZMlsBR7hZiWoEIzBuruz2NQ3z7PfTogIgDaTQ1Blj5Jf3ZbJAiWjlEzn2G3xB0n3P5La9vFnzFRc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78334251},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"72b8d09b9293f8bcc84ca4786670b2c8e551785d","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.6_1697555215248_0.008594699137811412","host":"s3://npm-registry-packages"}},"4.0.7":{"name":"ant-design-vue","version":"4.0.7","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.7","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"e4ac41853aac7c5d7cc3e0be884effbd90dd34b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.7.tgz","fileCount":5367,"integrity":"sha512-oHTtc1GZkfENZTkt2aDvjaD4yoRsowYvCOmxA6+5AGqm5uz/datdJOXsq9nokIhC+vrAMhk6JQVFZ2hh7eU6Pw==","signatures":[{"sig":"MEUCIQCTBhmMUgSAy2UeEWuuCrHeb3zLw7jnEagZ/fHjmDEM4gIgH1T3rdgMYXHnszT4gKcm7eEj9gvO63LgUKct9wUlB9Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78543323},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"e36257171918d47b1e47cd6e78730ee8fc7a73c8","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.7_1699670525005_0.6269204098152783","host":"s3://npm-registry-packages"}},"4.0.8":{"name":"ant-design-vue","version":"4.0.8","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.0.8","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"fa86910c6c3afa3ad49224b51c76ef1fa0589366","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.0.8.tgz","fileCount":5367,"integrity":"sha512-SyPgbiPqxgXWHywxcstJN+j9N6PoZf6y5Gvvdbb+9od+uizmh2A+TnXmIHVJ44D1V1+YjXPz1EpLfIpxqDqu9A==","signatures":[{"sig":"MEYCIQC5xfJjVFwesje54chAmWdhT+LqoB15fIgVml5WmcJrIQIhAIfrnjVyf9nWP8SndhSR1oVNUedWYh5iHUQRWqyT+HzJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78572588},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"8696e0103995cceef81ea2512db535440e796b6b","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","@vue/compiler-sfc":"^3.2.0","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.0.8_1702887980552_0.8982154927893018","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"ant-design-vue","version":"4.1.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.1.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"ec8d429cea7173775bc86ff083631897d5bdcdfb","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.1.0.tgz","fileCount":5367,"integrity":"sha512-sVQAfTCxpGRfFykM033/0ZWfNWbsL8EsqhBP9knbP4Ptc52zG57mQsCPWvq6Cj3yqmDJW6ykY05v0KB+5rAPXg==","signatures":[{"sig":"MEYCIQDV2a70iFmIFQQG889MWy05Y177cdM37q9qdMJ/58A7RwIhAIXJXr9MY8o9uG6jGAUOhozdaadGTeJrNpQ7ebYrNjKL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77896456},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"2eed8e62ec97f0c2491fff44e9830989e76577e5","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.1.0_1704454451533_0.3713872116233008","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"ant-design-vue","version":"4.1.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.1.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"8df771e0d7c46784ebe46f5c81df736783bc8d5d","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.1.1.tgz","fileCount":5371,"integrity":"sha512-YLhDHhGvegGEczxDqIiiZIJsTHh3dge5Rf94n17sp24gAcey0hDaLtYWM0Z/+N8EheAcM0w3fePvYGMxwGxSDg==","signatures":[{"sig":"MEUCIAx5nO1yyHDoeJVJK3bbGQY76U2He+HW2ktMcMlGDgMlAiEAtdWGi7aGUgD13Bvg4fKAlCUurMBHMFFSI/syCPiurRc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77927089},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"9cc73011c56836303d112aacd1c2f94f71c7f022","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.1.1_1705412719240_0.07610403208898342","host":"s3://npm-registry-packages"}},"4.1.2":{"name":"ant-design-vue","version":"4.1.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.1.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"f1da53d6d7177fc4460aed2861dd64927d58d680","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.1.2.tgz","fileCount":5371,"integrity":"sha512-ynFkDJLlHgumeK6Hr1UZ7PvQNZ1uBcri/pmejBdS3kRqHeA5VRsxneYDwa8YxA+uYB5YfT2jpYsSHsiMiCjRGg==","signatures":[{"sig":"MEUCIC4JCfk8QfNB9WQ9DqYJjNXp9IRrOT8Vf8IuXRFbQ2HGAiEAicHxoLFYZS5nryBIt2sNog+iKY6UGKhXfbR2ti9l30Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":77927691},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"4a2f95fe8822d82924702c275e2e3f240b0e28db","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.1.2_1706589855811_0.807184967483142","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"ant-design-vue","version":"4.2.0","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.2.0","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"d7899733624a2646238c8baa18227914ff493846","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.2.0.tgz","fileCount":5367,"integrity":"sha512-tw20aZn5Qv/xtJze+BMPNueS8pETBeuO1UWqbBQmg2/wp9WmtetsbEcANBg1QERI6E9ikSrQ2Yr9xlIyIJEYdw==","signatures":[{"sig":"MEQCIHpnOqZ8lrqSRDHx5ZuehUgiAIU7G+Vj/2kRfE5w69dCAiA8r/yYeLibNnp38R5zq5ByBuOSx3writwe8umDgxxNuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78048714},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","vetur":{"tags":"vetur/tags.json","attributes":"vetur/attributes.json"},"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"9d7c171940029c22c6ce957e39b6e67c27bcb89e","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","object-assign":"^4.1.1","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.2.0_1713772568789_0.09970496690856168","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"ant-design-vue","version":"4.2.1","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.2.1","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"c44d55461b3d57ecfd2fea54c36b584d271804da","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.2.1.tgz","fileCount":5363,"integrity":"sha512-3u6fmfCEJ5AFTsYhogP8lJ/vcqiAJO16o+gGQkWYRGLl0NxmY4hje4cPyv+pcxpeJgcG0vNEmkb1vVHKcnxd+g==","signatures":[{"sig":"MEYCIQCLXN3+B/FdETPVXvRcniy5PoNOOLLQdj4UTXsTCCWf4wIhAL4XC2GKmrPAJlo9dGgVHAMFemFn3SEhYl+q+mVWDhmF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78046927},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"9a45b35511a9e3a90840cf9850ebde6dd6069d63","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"qs":"^6.10.3","tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.2.1_1714009491306_0.7785623375150137","host":"s3://npm-registry-packages"}},"4.2.2":{"name":"ant-design-vue","version":"4.2.2","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.2.2","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"4e8f8f55aea4d68c6c7a64fe703ce5c0af959ede","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.2.2.tgz","fileCount":5355,"integrity":"sha512-6Mg63//f8+5rE/yZEv7lfzGn8IXr0lPyhNNLAxJ/7Mc4lq1SiDJcHxR2gGEaNZxFzz/gHoryqBVhUxkMX7EOhA==","signatures":[{"sig":"MEQCIHYODTB5wNmM6x13Shgu+WpXlSRBfMItUYkVnHJVaPeiAiBs7pVmxvByLJ6NKYVtOjfsLzZCVu2MMvdL9uLjS5SaaA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78119555},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"9118d6cd426c70d99ab4bdf7039b07484fbad047","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.2.2_1717640472310_0.7702007908219459","host":"s3://npm-registry-packages"}},"4.2.3":{"name":"ant-design-vue","version":"4.2.3","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.2.3","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"accb26a680b6541b9a03668996cd52a4f9735075","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.2.3.tgz","fileCount":5355,"integrity":"sha512-kqGyWvZtFlSInFP93Ow6wS8LzEsxxUgpI+ZY5jQQkuX8WAcqdwXCA7IcHMpECW6JB89DZMo2Bw85jUg2SjlgQA==","signatures":[{"sig":"MEQCIArc6l2WrbzkdGA2E1s2n7FkH9RJccXXDYJuhwYKpwL4AiAQExkbu9d49GmnIbbyv6d39CnLNkQjO1xnSZzoNcUU9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78127825},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"4492086aac8dfc419b957b1c98ae3885ca8c2b6e","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"8.12.1","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.4.0","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.2.3_1717982676281_0.9368877916944931","host":"s3://npm-registry-packages"}},"4.2.4":{"name":"ant-design-vue","version":"4.2.4","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.2.4","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"1a230261f6a893fdb1834a24f0effbfda5f7c3d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.2.4.tgz","fileCount":5355,"integrity":"sha512-leMqWgH4EJ4oq8NEouy6kfHT6DMv4VaWJ0/cS+jd9A1LUewrZGKLuLtn+cz5mk0vIRXUHuMYMqpS6zEUuZ/whw==","signatures":[{"sig":"MEUCIQDR61VsbT+wtmLS4pJhsoRsE8d9zOjw/CNhRT71bL8PAAIgIGsnkr4Gg11ukT421vlEdmLQ5bzL0dZDFlyqV0uu4cw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78164882},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"49d4b3166e759f41adfbe17a07d446a86f7d7840","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"10.7.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.20.4","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.2.4_1726227409820_0.07182444634288165","host":"s3://npm-registry-packages"}},"4.2.5":{"name":"ant-design-vue","version":"4.2.5","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"license":"MIT","_id":"ant-design-vue@4.2.5","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"homepage":"https://www.antdv.com/","bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"dist":{"shasum":"53ed82c0900f61a915911e036038b76756baec26","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.2.5.tgz","fileCount":5355,"integrity":"sha512-dh5CBXSaxJZBFQBd156sOUuZPfxI7pZsNXDYpHNBt/JyKZoYlbetRp/nJmSragS2Oo0mVC23Ote+TQSGc0TX6g==","signatures":[{"sig":"MEYCIQDn+J1AdNamxDbX3vXtK/YFhJZisXmkinsHscRVyR8UUQIhAJYZ+aFHG3/TejS8aIK4Ii2bvT7SW85095Muy3VlmLTa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":78167857},"main":"lib/index.js","title":"Ant Design Vue","unpkg":"dist/antd.min.js","config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"module":"es/index.js","engines":{"node":">=12.22.0"},"funding":{"url":"https://opencollective.com/ant-design-vue","type":"opencollective"},"gitHead":"e46d537d45e7741aedef795e620ad7c82ed8d7f7","scripts":{"dev":"npm run routes && vite serve site","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","tsc":"tsc --noEmit","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","test":"cross-env NODE_ENV=test jest --config .jest.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","routes":"node site/scripts/genrateRoutes.js","codecov":"codecov","compile":"node antd-tools/cli/run.js compile","lint:md":"eslint --fix *.md","predist":"npm run version","prepare":"husky install","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","version":"node ./scripts/generate-version","vue-tsc":"vue-tsc --noEmit","fast-dev":"npm run routes && vite serve site","prettier":"prettier -c --write **/*","pub:site":"npm run site && node site/scripts/pushToOSS.js","sort-api":"node antd-tools/cli/run.js sort-api-table","lint:demo":"eslint --fix components/*/demo/*.vue","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","token-meta":"node scripts/generate-token-meta.js","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","pre-publish":"npm run generator-webtypes","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","pretty-quick":"pretty-quick","prepublishOnly":"node antd-tools/cli/run.js guard","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","collect-token-statistic":"tsx scripts/collect-token-statistic.js"},"typings":"es/index.d.ts","_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"web-types":"vetur/web-types.json","repository":{"url":"git+https://github.com/vueComponent/ant-design-vue.git","type":"git"},"_npmVersion":"10.7.0","description":"An enterprise-class UI design language and Vue-based implementation","directories":{},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"_nodeVersion":"18.20.4","browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"dependencies":{"dayjs":"^1.10.5","lodash":"^4.17.21","stylis":"^4.1.3","csstype":"^3.1.1","warning":"^4.0.0","dom-align":"^1.12.1","lodash-es":"^4.17.15","vue-types":"^3.0.0","@emotion/hash":"^0.9.0","shallow-equal":"^1.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@simonwep/pickr":"~1.8.0","async-validator":"^4.0.0","@emotion/unitless":"^0.8.0","array-tree-filter":"^2.1.0","throttle-debounce":"^5.0.0","@ant-design/colors":"^6.0.0","dom-scroll-into-view":"^2.0.0","@ant-design/icons-vue":"^7.0.0","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25"},"_hasShrinkwrap":false,"devDependencies":{"tsx":"^3.12.10","vue":"^3.2.0","glob":"^7.1.2","gulp":"^4.0.1","jest":"^28.1.2","less":"^4.0.0","majo":"^0.10.1","vite":"^3.0.0","vuex":"^4.0.0","acorn":"^8.0.0","axios":"^0.22.0","chalk":"^4.1.1","husky":"^6.0.0","jsonp":"^0.2.1","slash":"^3.0.0","cz-git":"^1.3.8","eslint":"^8.3.0","globby":"^11.1.0","marked":"0.3.18","merge2":"^1.2.1","mkdirp":"^0.5.1","moment":"^2.29.1","rimraf":"^3.0.0","semver":"^7.0.0","ali-oss":"^6.16.0","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","esbuild":"~0.12.29","postcss":"^8.2.12","prismjs":"^1.23.0","reqwest":"^2.0.5","ts-jest":"^28.0.5","typedoc":"^0.23.25","unified":"9.2.2","vue-tsc":"^1.0.6","webpack":"^5.0.0","colorful":"^2.1.0","date-fns":"^2.24.0","fs-extra":"^10.0.0","minimist":"^1.2.0","mockdate":"^2.0.2","prettier":"^2.2.0","progress":"^2.0.3","through2":"^3.0.0","vue-i18n":"^9.1.7","xhr-mock":"^2.5.1","commander":"^6.1.0","cross-env":"^7.0.0","fast-glob":"^3.2.7","js-base64":"^3.0.0","nprogress":"^0.2.0","stylelint":"^14.0.0","ts-loader":"^9.1.0","@babel/cli":"^7.8.4","@types/koa":"^2.11.6","babel-jest":"^28.1.2","css-loader":"^5.0.0","diacritics":"^1.3.0","enquire-js":"^0.2.1","gulp-babel":"^8.0.0","is-windows":"^1.0.2","raw-loader":"^4.0.2","tinycolor2":"^1.6.0","typescript":"~4.9.3","url-loader":"^3.0.0","vue-loader":"^17.0.0","vue-router":"^4.0.0","webpackbar":"^5.0.2","@babel/core":"^7.10.5","@types/jest":"^28.1.4","@types/node":"^14.0.0","codesandbox":"^2.2.3","escape-html":"^1.0.3","fetch-jsonp":"^1.1.3","gray-matter":"^4.0.3","less-loader":"^10.0.0","lint-staged":"^11.0.0","markdown-it":"^8.4.2","umi-request":"^1.3.5","vue-request":"^1.0.2","webpack-cli":"^4.6.0","@vueuse/core":"^8.3.1","autoprefixer":"^10.2.0","babel-eslint":"^10.0.1","babel-loader":"^8.0.0","docsearch.js":"^2.6.3","pretty-quick":"^3.0.0","remark-parse":"^8.0.0","rucksack-css":"^1.0.2","style-loader":"^3.0.0","@octokit/rest":"^18.0.0","webpack-merge":"^5.0.0","@vue/vue3-jest":"28","esbuild-loader":"^3.0.0","json-templater":"^1.2.0","postcss-loader":"^6.0.0","vue-clipboard2":"0.3.3","@babel/polyfill":"^7.8.7","@commitlint/cli":"^12.0.0","@types/fs-extra":"^9.0.8","@vue/test-utils":"^2.0.2","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","less-vars-to-js":"^1.3.0","selenium-server":"^3.0.1","stylelint-order":"^5.0.0","vue-drag-resize":"^2.0.3","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","compare-versions":"^3.3.0","remark-stringify":"^8.0.0","vue-style-loader":"^4.1.2","@babel/preset-env":"^7.9.6","eslint-plugin-vue":"^9.17.0","markdown-it-emoji":"^2.0.0","vue-eslint-parser":"^9.3.1","@types/compression":"^1.7.0","@types/markdown-it":"^10.0.2","@vitejs/plugin-vue":"^3.0.0","@webpack-cli/serve":"^1.3.1","eslint-plugin-html":"^6.0.0","eslint-plugin-jest":"^26.0.0","markdown-it-anchor":"^8.0.4","remark-frontmatter":"^2.0.0","remark-yaml-config":"^4.1.0","vanilla-jsoneditor":"^0.15.1","webpack-dev-server":"^4.0.0","babel-plugin-import":"^1.1.1","html-webpack-plugin":"^5.3.1","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","vue-infinite-scroll":"^2.0.2","@rollup/plugin-babel":"^5.3.0","eslint-plugin-import":"^2.24.2","@vitejs/plugin-legacy":"^2.2.0","@vue/babel-plugin-jsx":"^1.0.0","babel-plugin-istanbul":"^6.0.0","jest-environment-node":"^28.0.2","markdown-it-container":"^3.0.0","string-replace-loader":"^3.1.0","terser-webpack-plugin":"^5.1.1","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/cli-plugin-eslint":"^5.0.0","eslint-config-prettier":"^8.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-prettier":"^3.1.0","jest-environment-jsdom":"^28.0.0","less-plugin-npm-import":"^2.1.0","mini-css-extract-plugin":"^2.4.5","webpack-bundle-analyzer":"^4.4.2","@babel/preset-typescript":"^7.10.4","@typescript-eslint/parser":"^5.4.0","stylelint-config-prettier":"^9.0.0","stylelint-config-standard":"^25.0.0","@types/postcss-load-config":"^2.0.1","ignore-emit-webpack-plugin":"^2.0.6","@vue/eslint-config-prettier":"^8.0.0","remove-files-webpack-plugin":"^1.5.0","css-minimizer-webpack-plugin":"^3.0.0","@vue/eslint-config-typescript":"^11.0.0","markdown-it-table-of-contents":"^0.5.2","@babel/plugin-transform-runtime":"^7.10.5","@commitlint/config-conventional":"^12.0.0","stylelint-config-rational-order":"^0.1.2","@typescript-eslint/eslint-plugin":"^5.4.0","@babel/plugin-transform-typescript":"^7.12.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","babel-plugin-inline-import-data-uri":"^1.0.1","case-sensitive-paths-webpack-plugin":"^2.1.2","@babel/plugin-transform-object-assign":"^7.8.3","babel-plugin-transform-require-context":"^0.1.1","eslint-plugin-no-explicit-type-exports":"^0.12.0","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-optional-chaining":"^7.10.1","duplicate-package-checker-webpack-plugin":"^3.0.0","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","stylelint-declaration-block-no-ignored-properties":"^2.1.0","@babel/plugin-transform-member-expression-literals":"^7.8.3"},"peerDependencies":{"vue":">=3.2.0"},"_npmOperationalInternal":{"tmp":"tmp/ant-design-vue_4.2.5_1726745503375_0.1575279541754544","host":"s3://npm-registry-packages"}},"4.2.6":{"name":"ant-design-vue","version":"4.2.6","title":"Ant Design Vue","description":"An enterprise-class UI design language and Vue-based implementation","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"main":"lib/index.js","module":"es/index.js","unpkg":"dist/antd.min.js","typings":"es/index.d.ts","scripts":{"collect-token-statistic":"tsx scripts/collect-token-statistic.js","token-meta":"node scripts/generate-token-meta.js","predev":"npm run version & npm run collect-token-statistic & npm run token-meta && node node_modules/esbuild/install.js","precompile":"npm run version & npm run collect-token-statistic & npm run token-meta","pretest":"npm run version","predist":"npm run version","presite":"npm run version & npm run routes & npm run collect-token-statistic & npm run token-meta","dev":"npm run routes && vite serve site","fast-dev":"npm run routes && vite serve site","test":"cross-env NODE_ENV=test jest --config .jest.js","compile":"node antd-tools/cli/run.js compile","generator-webtypes":"tsc -p antd-tools/generator-types/tsconfig.json && node antd-tools/generator-types/index.js","pub":"npm run version & npm run collect-token-statistic & npm run token-meta && node --max_old_space_size=8192 antd-tools/cli/run.js pub","pub-with-ci":"npm run version & npm run collect-token-statistic & npm run token-meta && node antd-tools/cli/run.js pub-with-ci","prepublishOnly":"node antd-tools/cli/run.js guard","pre-publish":"npm run generator-webtypes","prettier":"prettier -c --write **/*","pretty-quick":"pretty-quick","dist":"node --max_old_space_size=8192 antd-tools/cli/run.js dist","lint":"npm run tsc && npm run lint:demo && npm run lint:md && npm run lint:script && npm run lint:site","lint:components":"eslint --fix --ext .jsx,.js,.ts,.tsx ./components","lint:demo":"eslint --fix components/*/demo/*.vue","lint:md":"eslint --fix *.md","lint:script":"eslint . --ext '.js,.jsx,.ts,.tsx'","lint:site":"eslint --fix -c ./.eslintrc.js --ext .jsx,.js,.ts,.tsx,vue ./site","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","codecov":"codecov","routes":"node site/scripts/genrateRoutes.js","tsc":"tsc --noEmit","vue-tsc":"vue-tsc --noEmit","site":"node --max_old_space_size=8192 ./node_modules/vite/bin/vite.js build site --base=https://next.antdv.com/","pub:site":"npm run site && node site/scripts/pushToOSS.js","prepare":"husky install","version":"node ./scripts/generate-version","sort-api":"node antd-tools/cli/run.js sort-api-table"},"browserslist":["> 0.5%","last 2 versions","Firefox ESR","not dead"],"repository":{"type":"git","url":"git+https://github.com/vueComponent/ant-design-vue.git"},"license":"MIT","funding":{"type":"opencollective","url":"https://opencollective.com/ant-design-vue"},"bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"homepage":"https://www.antdv.com/","peerDependencies":{"vue":">=3.2.0"},"engines":{"node":">=12.22.0"},"devDependencies":{"@babel/cli":"^7.8.4","@babel/core":"^7.10.5","@babel/plugin-proposal-class-properties":"^7.8.3","@babel/plugin-proposal-export-default-from":"^7.8.3","@babel/plugin-proposal-export-namespace-from":"^7.12.1","@babel/plugin-proposal-object-rest-spread":"^7.9.6","@babel/plugin-proposal-optional-chaining":"^7.10.1","@babel/plugin-syntax-dynamic-import":"^7.8.3","@babel/plugin-transform-member-expression-literals":"^7.8.3","@babel/plugin-transform-object-assign":"^7.8.3","@babel/plugin-transform-property-literals":"^7.8.3","@babel/plugin-transform-runtime":"^7.10.5","@babel/plugin-transform-template-literals":"^7.8.3","@babel/plugin-transform-typescript":"^7.12.1","@babel/polyfill":"^7.8.7","@babel/preset-env":"^7.9.6","@babel/preset-typescript":"^7.10.4","@commitlint/cli":"^12.0.0","@commitlint/config-conventional":"^12.0.0","@octokit/rest":"^18.0.0","@rollup/plugin-babel":"^5.3.0","@types/compression":"^1.7.0","@types/fs-extra":"^9.0.8","@types/jest":"^28.1.4","@types/koa":"^2.11.6","@types/lodash-es":"^4.17.3","@types/lru-cache":"^5.1.0","@types/markdown-it":"^10.0.2","@types/node":"^14.0.0","@types/postcss-load-config":"^2.0.1","@typescript-eslint/eslint-plugin":"^5.4.0","@typescript-eslint/parser":"^5.4.0","@vitejs/plugin-legacy":"^2.2.0","@vitejs/plugin-vue":"^3.0.0","@vitejs/plugin-vue-jsx":"^2.0.0","@vue/babel-plugin-jsx":"^1.0.0","@vue/cli-plugin-eslint":"^5.0.0","@vue/eslint-config-prettier":"^8.0.0","@vue/eslint-config-typescript":"^11.0.0","@vue/test-utils":"^2.0.2","@vue/vue3-jest":"28","@vueuse/core":"^8.3.1","@webpack-cli/serve":"^1.3.1","acorn":"^8.0.0","ali-oss":"^6.16.0","autoprefixer":"^10.2.0","axios":"^0.22.0","babel-eslint":"^10.0.1","babel-jest":"^28.1.2","babel-loader":"^8.0.0","babel-plugin-import":"^1.1.1","babel-plugin-inline-import-data-uri":"^1.0.1","babel-plugin-istanbul":"^6.0.0","babel-plugin-transform-require-context":"^0.1.1","case-sensitive-paths-webpack-plugin":"^2.1.2","chalk":"^4.1.1","cheerio":"^1.0.0-rc.2","codecov":"^3.0.0","codesandbox":"^2.2.3","colorful":"^2.1.0","commander":"^6.1.0","compare-versions":"^3.3.0","cross-env":"^7.0.0","css-loader":"^5.0.0","css-minimizer-webpack-plugin":"^3.0.0","cz-git":"^1.3.8","date-fns":"^2.24.0","diacritics":"^1.3.0","docsearch.js":"^2.6.3","duplicate-package-checker-webpack-plugin":"^3.0.0","enquire-js":"^0.2.1","esbuild":"~0.12.29","esbuild-loader":"^3.0.0","escape-html":"^1.0.3","eslint":"^8.3.0","eslint-config-prettier":"^8.0.0","eslint-plugin-html":"^6.0.0","eslint-plugin-import":"^2.24.2","eslint-plugin-jest":"^26.0.0","eslint-plugin-markdown":"^2.0.0","eslint-plugin-no-explicit-type-exports":"^0.12.0","eslint-plugin-prettier":"^3.1.0","eslint-plugin-vue":"^9.17.0","fast-glob":"^3.2.7","fetch-jsonp":"^1.1.3","fs-extra":"^10.0.0","glob":"^7.1.2","globby":"^11.1.0","gray-matter":"^4.0.3","gulp":"^4.0.1","gulp-babel":"^8.0.0","gulp-strip-code":"^0.1.4","gulp-typescript":"^6.0.0-alpha.1","html-webpack-plugin":"^5.3.1","husky":"^6.0.0","ignore-emit-webpack-plugin":"^2.0.6","is-windows":"^1.0.2","jest":"^28.1.2","jest-environment-jsdom":"^28.0.0","jest-environment-node":"^28.0.2","jest-serializer-vue":"^2.0.0","jest-transform-stub":"^2.0.0","js-base64":"^3.0.0","json-templater":"^1.2.0","jsonp":"^0.2.1","less":"^4.0.0","less-loader":"^10.0.0","less-plugin-npm-import":"^2.1.0","less-vars-to-js":"^1.3.0","lint-staged":"^11.0.0","majo":"^0.10.1","markdown-it":"^8.4.2","markdown-it-anchor":"^8.0.4","markdown-it-container":"^3.0.0","markdown-it-emoji":"^2.0.0","markdown-it-table-of-contents":"^0.5.2","marked":"0.3.18","merge2":"^1.2.1","mini-css-extract-plugin":"^2.4.5","minimist":"^1.2.0","mkdirp":"^0.5.1","mockdate":"^2.0.2","moment":"^2.29.1","nprogress":"^0.2.0","postcss":"^8.2.12","postcss-loader":"^6.0.0","prettier":"^2.2.0","pretty-quick":"^3.0.0","prismjs":"^1.23.0","progress":"^2.0.3","raw-loader":"^4.0.2","remark-frontmatter":"^2.0.0","remark-parse":"^8.0.0","remark-stringify":"^8.0.0","remark-yaml-config":"^4.1.0","remove-files-webpack-plugin":"^1.5.0","reqwest":"^2.0.5","rimraf":"^3.0.0","rucksack-css":"^1.0.2","selenium-server":"^3.0.1","semver":"^7.0.0","slash":"^3.0.0","string-replace-loader":"^3.1.0","style-loader":"^3.0.0","stylelint":"^14.0.0","stylelint-config-prettier":"^9.0.0","stylelint-config-rational-order":"^0.1.2","stylelint-config-standard":"^25.0.0","stylelint-declaration-block-no-ignored-properties":"^2.1.0","stylelint-order":"^5.0.0","terser-webpack-plugin":"^5.1.1","through2":"^3.0.0","tinycolor2":"^1.6.0","ts-jest":"^28.0.5","ts-loader":"^9.1.0","tsx":"^3.12.10","typedoc":"^0.23.25","typescript":"~4.9.3","umi-request":"^1.3.5","unified":"9.2.2","url-loader":"^3.0.0","vanilla-jsoneditor":"^0.15.1","vite":"^3.0.0","vue":"^3.2.0","vue-clipboard2":"0.3.3","vue-drag-resize":"^2.0.3","vue-eslint-parser":"^9.3.1","vue-i18n":"^9.1.7","vue-infinite-scroll":"^2.0.2","vue-loader":"^17.0.0","vue-request":"^1.0.2","vue-router":"^4.0.0","vue-style-loader":"^4.1.2","vue-tsc":"^1.0.6","vuex":"^4.0.0","webpack":"^5.0.0","webpack-bundle-analyzer":"^4.4.2","webpack-cli":"^4.6.0","webpack-dev-server":"^4.0.0","webpack-merge":"^5.0.0","webpackbar":"^5.0.2","xhr-mock":"^2.5.1"},"dependencies":{"@ant-design/colors":"^6.0.0","@ant-design/icons-vue":"^7.0.0","@babel/runtime":"^7.10.5","@ctrl/tinycolor":"^3.5.0","@emotion/hash":"^0.9.0","@emotion/unitless":"^0.8.0","@simonwep/pickr":"~1.8.0","array-tree-filter":"^2.1.0","async-validator":"^4.0.0","csstype":"^3.1.1","dayjs":"^1.10.5","dom-align":"^1.12.1","dom-scroll-into-view":"^2.0.0","lodash":"^4.17.21","lodash-es":"^4.17.15","resize-observer-polyfill":"^1.5.1","scroll-into-view-if-needed":"^2.2.25","shallow-equal":"^1.0.0","stylis":"^4.1.3","throttle-debounce":"^5.0.0","vue-types":"^3.0.0","warning":"^4.0.0"},"sideEffects":["site/*","*.vue","*.md","dist/*","*.css"],"config":{"commitizen":{"path":"node_modules/cz-git","czConfig":"./scripts/commitizen.js"}},"web-types":"vetur/web-types.json","_id":"ant-design-vue@4.2.6","gitHead":"4a37016f4e3f829838b2e2b3cd128af220d67be8","_nodeVersion":"18.20.4","_npmVersion":"10.7.0","dist":{"integrity":"sha512-t7eX13Yj3i9+i5g9lqFyYneoIb3OzTvQjq9Tts1i+eiOd3Eva/6GagxBSXM1fOCjqemIu0FYVE1ByZ/38epR3Q==","shasum":"e4ce6944457cd1cd61d8b3fe52793ab58b94e337","tarball":"https://mirrors.huaweicloud.com/repository/npm/ant-design-vue/-/ant-design-vue-4.2.6.tgz","fileCount":5355,"unpackedSize":77953156,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDEi8qJ6YTqVTJcAHBrmkVYiU89sqL7cPuJrmFKba3ODwIgN5e/uABOkM3wJsFOBYKlduF3qkYrGh/RUAlU9zfveSE="}]},"_npmUser":{"name":"tangjinzhou","email":"415800467@qq.com"},"directories":{},"maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/ant-design-vue_4.2.6_1731315646410_0.9133125406078193"},"_hasShrinkwrap":false}},"time":{"created":"2018-08-04T11:02:34.816Z","modified":"2024-11-11T09:00:47.060Z","1.0.2":"2018-08-04T11:02:35.494Z","1.0.3":"2018-08-11T05:03:33.266Z","1.1.0-beta.0":"2018-09-05T13:37:16.843Z","1.1.0":"2018-09-11T13:46:33.989Z","1.1.1":"2018-09-13T14:21:12.125Z","1.1.2":"2018-09-17T13:42:41.846Z","1.1.3":"2018-09-22T13:46:44.608Z","1.1.4":"2018-09-29T09:11:59.111Z","1.1.5":"2018-10-10T06:37:03.337Z","1.1.6":"2018-10-10T07:22:58.935Z","1.1.7":"2018-10-27T09:46:11.429Z","1.1.8":"2018-11-11T11:16:11.665Z","1.1.9":"2018-11-26T14:46:34.892Z","1.1.10-beta":"2018-12-03T13:37:04.712Z","1.1.10":"2018-12-07T13:38:59.079Z","1.2.0":"2018-12-16T11:04:05.508Z","1.2.1":"2018-12-17T13:49:54.156Z","1.2.2":"2018-12-19T14:22:43.333Z","1.2.3":"2018-12-25T04:18:08.421Z","1.2.4":"2018-12-29T14:19:58.854Z","1.2.5":"2019-01-06T13:33:00.996Z","1.3.0-beta.0":"2019-01-07T13:35:29.970Z","1.3.0-beta.1":"2019-01-09T14:04:33.100Z","1.3.0":"2019-01-12T10:12:58.832Z","1.3.1":"2019-01-15T02:25:55.564Z","1.3.2":"2019-01-17T04:14:48.461Z","1.3.3":"2019-01-26T08:49:56.105Z","1.3.4":"2019-01-31T09:46:10.521Z","1.3.5":"2019-02-23T11:09:42.750Z","1.3.6":"2019-03-17T06:51:35.438Z","1.3.7":"2019-03-18T02:44:44.546Z","1.3.8":"2019-04-04T15:51:23.159Z","1.3.9":"2019-05-26T08:07:51.253Z","1.3.10":"2019-06-11T14:01:26.827Z","1.3.11":"2019-07-22T03:34:59.225Z","1.3.12":"2019-07-22T03:51:33.968Z","1.3.13":"2019-07-22T04:47:36.852Z","1.3.14":"2019-08-13T03:49:12.774Z","1.3.15":"2019-08-17T09:48:10.073Z","1.3.16":"2019-08-25T14:03:55.133Z","1.3.17-beta.1":"2019-08-30T06:51:26.024Z","1.4.0-beta.0":"2019-09-23T13:04:53.597Z","1.3.17":"2019-09-30T09:42:24.911Z","1.4.0":"2019-10-14T09:09:42.970Z","1.4.1":"2019-10-17T11:36:28.850Z","1.4.2":"2019-10-21T11:11:45.011Z","1.4.3":"2019-10-22T04:54:07.548Z","1.4.4":"2019-10-30T09:19:19.347Z","1.4.5":"2019-11-16T09:32:17.917Z","1.4.6":"2019-11-20T13:34:44.225Z","1.4.7":"2019-11-27T06:09:26.563Z","1.4.8":"2019-11-28T09:43:33.735Z","1.4.9":"2019-12-10T09:38:09.949Z","1.4.10":"2019-12-11T13:11:24.639Z","1.4.11":"2020-02-12T04:44:37.230Z","1.4.12":"2020-03-03T05:46:22.951Z","1.5.0-alpha.1":"2020-03-04T11:56:20.532Z","1.5.0-beta.1":"2020-03-08T07:00:55.961Z","1.5.0-beta.2":"2020-03-15T03:58:22.563Z","1.5.0-beta.3":"2020-03-15T06:47:15.057Z","1.5.0-rc.1":"2020-03-15T06:57:27.130Z","1.5.0-rc.2":"2020-03-16T04:20:09.997Z","1.5.0-rc.3":"2020-03-16T05:32:57.411Z","1.5.0-rc.4":"2020-03-16T13:20:55.605Z","1.5.0-rc.5":"2020-03-19T15:10:58.358Z","1.5.0-rc.6":"2020-03-23T15:01:06.976Z","1.5.0-rc.7":"2020-03-27T12:22:38.600Z","1.5.0":"2020-03-29T09:47:26.687Z","1.5.1":"2020-04-02T14:36:20.488Z","2.0.0-beta.1":"2020-04-06T03:26:13.168Z","1.5.2":"2020-04-09T14:58:28.410Z","1.5.3":"2020-04-13T04:15:22.736Z","1.5.4":"2020-04-30T08:20:16.890Z","1.5.5":"2020-05-08T10:04:23.445Z","1.5.6":"2020-05-09T02:05:27.357Z","1.6.0":"2020-05-15T14:19:35.556Z","1.6.1":"2020-05-25T06:39:34.745Z","1.6.2":"2020-06-02T06:06:32.183Z","1.6.3":"2020-07-05T05:45:13.135Z","1.6.4":"2020-07-21T06:39:11.350Z","2.0.0-beta.2":"2020-08-14T15:02:35.670Z","2.0.0-beta.3":"2020-08-25T06:29:24.360Z","1.6.5":"2020-08-25T08:59:51.176Z","2.0.0-beta.4":"2020-08-31T07:24:14.295Z","2.0.0-beta.5":"2020-08-31T14:49:16.684Z","2.0.0-beta.6":"2020-09-02T05:01:14.797Z","2.0.0-beta.7":"2020-09-08T02:22:40.027Z","2.0.0-beta.8":"2020-09-08T05:39:48.484Z","2.0.0-beta.9":"2020-09-08T07:09:09.871Z","2.0.0-beta.10":"2020-09-24T13:57:22.750Z","1.7.0":"2020-10-28T05:31:22.370Z","1.7.1":"2020-10-28T15:27:59.353Z","2.0.0-beta.11":"2020-10-30T08:34:25.178Z","2.0.0-beta.12":"2020-11-01T13:33:07.285Z","2.0.0-beta.13":"2020-11-02T14:57:48.448Z","1.7.2":"2020-11-06T14:22:34.840Z","2.0.0-beta.15":"2020-11-08T06:31:32.554Z","2.0.0-rc.1":"2020-11-14T15:15:32.602Z","2.0.0-rc.2":"2020-11-24T15:03:18.592Z","2.0.0-rc.3":"2020-12-05T07:24:20.924Z","2.0.0-rc.4":"2020-12-10T12:37:12.503Z","2.0.0-rc.5":"2020-12-13T01:54:37.766Z","2.0.0-rc.6":"2020-12-27T15:25:07.347Z","2.0.0-rc.7":"2020-12-28T04:45:56.411Z","2.0.0-rc.8":"2021-01-07T13:18:39.468Z","2.0.0-rc.9":"2021-01-24T06:49:13.379Z","2.0.0":"2021-02-06T13:56:11.548Z","1.7.3":"2021-02-16T08:20:44.837Z","2.0.1":"2021-02-27T15:33:55.859Z","1.7.4":"2021-02-28T15:54:18.810Z","2.1.0":"2021-03-20T14:28:28.606Z","2.1.1":"2021-03-27T14:36:45.230Z","2.1.2":"2021-03-28T01:35:00.198Z","2.1.3":"2021-04-25T15:33:25.952Z","1.7.5":"2021-05-09T07:04:25.154Z","2.1.4":"2021-05-09T13:45:18.287Z","2.1.5":"2021-05-12T06:44:35.864Z","2.1.6":"2021-05-13T07:55:38.621Z","2.2.0-beta.1":"2021-06-07T09:46:55.166Z","2.2.0-beta.2":"2021-06-08T07:15:56.396Z","2.2.0-beta.3":"2021-06-11T14:17:05.836Z","2.2.0-beta.4":"2021-06-21T07:15:46.412Z","2.2.0-beta.5":"2021-06-24T06:33:32.656Z","2.2.0-beta.6":"2021-06-26T06:34:38.784Z","1.7.6":"2021-06-26T13:11:44.266Z","2.2.0-rc.1":"2021-06-29T08:51:02.924Z","2.2.0":"2021-07-06T01:22:39.959Z","2.2.1":"2021-07-06T03:13:34.601Z","2.2.2":"2021-07-11T13:21:35.864Z","2.2.3":"2021-08-07T02:11:01.836Z","1.7.7":"2021-08-07T07:29:42.196Z","2.2.4":"2021-08-10T08:42:18.679Z","2.2.5":"2021-08-11T09:26:34.843Z","2.2.6":"2021-08-12T08:21:09.318Z","1.7.8":"2021-08-27T02:33:31.399Z","2.2.7":"2021-09-08T14:22:08.296Z","2.2.8":"2021-09-17T14:08:12.156Z","3.0.0-alpha.0":"2021-09-24T05:55:25.837Z","3.0.0-alpha.1":"2021-10-07T14:21:34.262Z","3.0.0-alpha.2":"2021-10-08T02:00:06.363Z","3.0.0-alpha.3":"2021-10-14T07:53:37.746Z","3.0.0-alpha.4":"2021-10-20T02:05:37.034Z","3.0.0-alpha.5":"2021-10-26T13:29:40.195Z","3.0.0-alpha.6":"2021-10-27T07:06:48.512Z","3.0.0-alpha.7":"2021-10-29T09:16:46.762Z","3.0.0-alpha.8":"2021-10-30T06:38:06.593Z","3.0.0-alpha.9":"2021-11-03T08:41:45.892Z","3.0.0-alpha.10":"2021-11-05T07:31:35.300Z","3.0.0-alpha.11":"2021-11-08T14:55:07.348Z","3.0.0-alpha.12":"2021-11-20T14:57:43.005Z","3.0.0-alpha.13":"2021-11-28T05:50:45.046Z","3.0.0-alpha.14":"2021-12-05T06:38:11.656Z","3.0.0-alpha.15":"2021-12-12T09:15:24.882Z","3.0.0-alpha.16":"2021-12-19T01:54:15.758Z","3.0.0-beta.1":"2021-12-24T13:42:29.878Z","3.0.0-beta.2":"2021-12-27T02:15:03.972Z","3.0.0-beta.3":"2021-12-27T07:52:02.245Z","3.0.0-beta.4":"2021-12-28T14:17:03.246Z","3.0.0-beta.5":"2022-01-04T02:35:29.014Z","3.0.0-beta.6":"2022-01-07T13:22:30.318Z","3.0.0-beta.7":"2022-01-10T02:35:07.207Z","3.0.0-beta.8":"2022-01-21T15:22:25.940Z","3.0.0-beta.9":"2022-01-28T02:36:43.609Z","3.0.0-beta.10":"2022-02-18T08:40:33.293Z","3.0.0-beta.11":"2022-02-28T14:37:39.568Z","3.0.0-beta.12":"2022-03-02T06:19:57.846Z","3.0.0-beta.13":"2022-03-04T06:14:10.735Z","3.1.0-rc.0":"2022-03-15T07:50:49.618Z","3.1.0-rc.1":"2022-03-18T02:43:44.782Z","3.1.0-rc.2":"2022-03-19T07:49:55.862Z","3.1.0-rc.3":"2022-03-24T14:30:18.184Z","3.1.0-rc.4":"2022-03-25T09:02:11.939Z","3.1.0-rc.5":"2022-03-28T07:27:40.278Z","3.1.0-rc.6":"2022-04-01T14:42:32.781Z","3.1.0":"2022-04-06T01:32:06.514Z","3.1.1":"2022-04-06T08:59:24.399Z","3.2.0":"2022-04-19T03:36:09.346Z","3.2.1":"2022-04-25T02:39:15.349Z","3.2.2":"2022-04-26T03:14:30.561Z","3.2.3":"2022-05-05T06:14:24.270Z","3.2.4":"2022-05-23T03:07:06.587Z","3.2.5":"2022-05-26T14:08:11.963Z","3.2.6":"2022-06-07T12:40:50.222Z","3.2.7":"2022-06-13T02:49:01.098Z","3.2.8":"2022-06-24T03:29:31.516Z","3.2.9":"2022-06-25T01:48:46.378Z","3.3.0-beta.1":"2022-07-02T13:13:07.705Z","3.3.0-beta.2":"2022-07-02T14:36:53.680Z","3.2.10":"2022-07-07T14:04:35.965Z","3.2.11":"2022-08-08T01:53:33.512Z","3.3.0-beta.3":"2022-08-11T14:33:20.746Z","3.2.12":"2022-09-02T08:25:25.060Z","3.2.13":"2022-10-08T06:44:48.378Z","3.2.14":"2022-11-07T08:12:22.524Z","3.2.15":"2022-11-10T03:50:20.191Z","3.3.0-beta.4":"2022-12-01T13:33:43.665Z","4.0.0-alpha.1":"2023-03-13T14:16:15.573Z","4.0.0-alpha.2":"2023-03-17T02:41:54.893Z","4.0.0-alpha.3":"2023-03-21T07:18:44.163Z","3.2.16":"2023-03-23T06:17:31.535Z","3.2.17":"2023-04-04T14:46:29.634Z","4.0.0-alpha.4":"2023-04-06T09:40:17.655Z","4.0.0-alpha.5":"2023-04-08T14:11:35.772Z","3.2.18":"2023-04-23T05:45:54.319Z","3.2.19":"2023-04-23T11:26:22.154Z","4.0.0-alpha.6":"2023-04-23T11:39:25.484Z","3.2.20":"2023-04-27T15:01:21.078Z","4.0.0-beta.1":"2023-05-03T07:17:12.871Z","4.0.0-beta.2":"2023-05-05T04:07:55.108Z","4.0.0-beta.3":"2023-05-08T08:16:19.846Z","4.0.0-beta.4":"2023-05-08T08:45:39.506Z","4.0.0-rc.1":"2023-05-19T02:23:06.308Z","4.0.0-rc.2":"2023-05-20T07:57:48.414Z","4.0.0-rc.3":"2023-05-20T09:02:59.792Z","4.0.0-rc.4":"2023-05-23T06:44:25.890Z","4.0.0-rc.5":"2023-05-25T14:23:52.062Z","4.0.0-rc.6":"2023-07-03T13:45:37.593Z","4.0.0":"2023-07-14T04:05:20.880Z","4.0.1":"2023-08-22T06:58:12.803Z","4.0.2":"2023-08-31T00:10:16.078Z","4.0.3":"2023-09-10T03:09:16.755Z","4.0.4":"2023-10-16T08:24:13.733Z","4.0.5":"2023-10-17T11:10:21.925Z","4.0.6":"2023-10-17T15:06:55.866Z","4.0.7":"2023-11-11T02:42:05.441Z","4.0.8":"2023-12-18T08:26:21.109Z","4.1.0":"2024-01-05T11:34:11.996Z","4.1.1":"2024-01-16T13:45:22.338Z","4.1.2":"2024-01-30T04:44:16.187Z","4.2.0":"2024-04-22T07:56:09.281Z","4.2.1":"2024-04-25T01:44:51.707Z","4.2.2":"2024-06-06T02:21:13.146Z","4.2.3":"2024-06-10T01:24:36.796Z","4.2.4":"2024-09-13T11:36:50.368Z","4.2.5":"2024-09-19T11:31:43.892Z","4.2.6":"2024-11-11T09:00:46.901Z"},"bugs":{"url":"https://github.com/vueComponent/ant-design-vue/issues"},"license":"MIT","homepage":"https://www.antdv.com/","keywords":["vue","vue3","ant","design","antd","vueComponent","component","components","ui","framework","frontend"],"repository":{"type":"git","url":"git+https://github.com/vueComponent/ant-design-vue.git"},"description":"An enterprise-class UI design language and Vue-based implementation","maintainers":[{"name":"tangjinzhou","email":"415800467@qq.com"}],"readme":"

\n \n \n \n

\n\n

\n Ant Design Vue\n

\n\n
\n\nAn enterprise-class UI components based on Ant Design and Vue.\n\n![test](https://github.com/vueComponent/ant-design-vue/workflows/test/badge.svg) [![codecov](https://img.shields.io/codecov/c/github/vueComponent/ant-design-vue/master.svg?style=flat-square)](https://codecov.io/gh/vueComponent/ant-design-vue) [![npm package](https://img.shields.io/npm/v/ant-design-vue.svg?style=flat-square)](https://www.npmjs.org/package/ant-design-vue) [![NPM downloads](http://img.shields.io/npm/dm/ant-design-vue.svg?style=flat-square)](http://www.npmtrends.com/ant-design-vue) [![backers](https://opencollective.com/ant-design-vue/backers/badge.svg)](#backers) [![sponsors](https://opencollective.com/ant-design-vue/sponsors/badge.svg)](#sponsors) [![extension-for-VSCode](https://img.shields.io/badge/extension%20for-VSCode-blue.svg?style=flat-square)](https://marketplace.visualstudio.com/items?itemName=ant-design-vue.vscode-ant-design-vue-helper) [![issues-helper](https://img.shields.io/badge/Issues%20Manage%20By-issues--helper-orange?style=flat-square)](https://github.com/actions-cool/issues-helper)\n\n
\n\n[![](https://cdn-images-1.medium.com/max/2000/1*NIlj0-TdLMbo_hzSBP8tmg.png)](https://www.antdv.com/)\n\nEnglish | [简体中文](./README-zh_CN.md)\n\n## Features\n\n- An enterprise-class UI design system for desktop applications.\n- A set of high-quality Vue components out of the box.\n- Shared [Ant Design of React](https://ant.design/docs/spec/introduce) design resources.\n\n## Getting started & staying tuned with us.\n\nStar us, and you will receive all releases notifications from GitHub without any delay!\n\n![star us](https://user-images.githubusercontent.com/6937879/261937060-e0501ab3-9388-4712-a25d-3f2ba2271865.gif)\n\n## Environment Support\n\n- Modern browsers. v1.x support Internet Explorer 9+ (with [polyfills](https://www.antdv.com/docs/vue/getting-started/#compatibility))\n- Server-side Rendering\n- Support Vue 2 & Vue 3\n- [Electron](https://electronjs.org/)\n\n| [\"IE](http://godban.github.io/browsers-support-badges/)
IE / Edge | [\"Firefox\"](http://godban.github.io/browsers-support-badges/)
Firefox | [\"Chrome\"](http://godban.github.io/browsers-support-badges/)
Chrome | [\"Safari\"](http://godban.github.io/browsers-support-badges/)
Safari | [\"Opera\"](http://godban.github.io/browsers-support-badges/)
Opera | [\"Electron\"](http://godban.github.io/browsers-support-badges/)
Electron |\n| --- | --- | --- | --- | --- | --- |\n| Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions | last 2 versions |\n\n## Using npm or yarn\n\n**We recommend using npm or yarn to install**, it not only makes development easier, but also allow you to take advantage of the rich ecosystem of Javascript packages and tooling.\n\n```bash\n$ npm install ant-design-vue --save\n```\n\n```bash\n$ yarn add ant-design-vue\n```\n\nIf you are in a bad network environment, you can try other registries and tools like [cnpm](https://github.com/cnpm/cnpm).\n\n## Links\n\n- [Home page](https://www.antdv.com/)\n- [Vue](https://vuejs.org/)\n- [Ant Design Of React](http://ant.design/)\n\n## Ecosystem\n\n| Project | Description |\n| --- | --- |\n| [vue-ref](https://github.com/vueComponent/vue-ref) | You can use the callback to get a reference like react |\n| [ant-design-vue-helper](https://marketplace.visualstudio.com/items?itemName=ant-design-vue.vscode-ant-design-vue-helper) | A vscode extension for ant-design-vue |\n| [vue-cli-plugin-ant-design](https://github.com/vueComponent/vue-cli-plugin-ant-design) | Vue-cli 3 plugin to add ant-design-vue |\n| [vue-dash-event](https://github.com/vueComponent/vue-dash-event) | The library function, implemented in the DOM template, can use the custom event of the ant-design-vue component (camelCase) |\n| [@formily/antdv](https://github.com/formilyjs/antdv) | The Library with Formily and ant-design-vue |\n| [@ant-design-vue/nuxt](https://github.com/vueComponent/ant-design-vue-nuxt) | A nuxt module for ant-design-vue |\n\n## Donation\n\nant-design-vue is an MIT-licensed open source project. In order to achieve better and sustainable development of the project, we expect to gain more [backers](https://github.com/vueComponent/ant-design-vue/blob/master/BACKERS.md). You can support us in any of the following ways:\n\n- [Patreon](https://www.patreon.com/tangjinzhou)\n- [opencollective](https://opencollective.com/ant-design-vue)\n- [paypal](https://www.paypal.me/tangjinzhou)\n- [支付宝或微信](https://aliyuncdn.antdv.com/alipay-and-wechat.png)\n- ETH: 0x30cc48515d8ae9fefa20ab87226ad7e8ab9c3bc2\n\n## Sponsors\n\nBecome a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/ant-design-vue#sponsor)]\n\n \n\n## [More Sponsor (From Patreon、alipay、wechat、paypal...)](https://github.com/vueComponent/ant-design-vue/blob/master/BACKERS.md)\n\n## Contributors\n\nThank you to all the people who already contributed to ant-design-vue!\n\n\n \n\n\n[![Let's fund issues in this repository](https://issuehunt.io/static/embed/issuehunt-button-v1.svg)](https://issuehunt.io/repos/104172832)\n\nThis project is tested with BrowserStack.\n","readmeFilename":"README.md","users":{"flumpus-dev":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/88/2f/c83bdb9a9d27b1e740494a30604519b7403092088989b816417e6bea8b09a943de3bba3f776b9bd1eae58ee0dcc1cfde52b12779b29921c585ad4e8f4b21 b/frontend/.npm-cache/_cacache/content-v2/sha512/88/2f/c83bdb9a9d27b1e740494a30604519b7403092088989b816417e6bea8b09a943de3bba3f776b9bd1eae58ee0dcc1cfde52b12779b29921c585ad4e8f4b21 new file mode 100644 index 0000000..1feb969 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/88/2f/c83bdb9a9d27b1e740494a30604519b7403092088989b816417e6bea8b09a943de3bba3f776b9bd1eae58ee0dcc1cfde52b12779b29921c585ad4e8f4b21 @@ -0,0 +1 @@ +{"_id":"dom-align","_rev":"71-3bf12bf9550619db0aed2a86beedf2a8","name":"dom-align","description":"Align DOM Node Flexibly ","dist-tags":{"latest":"1.12.4"},"versions":{"0.0.1":{"name":"dom-align","version":"0.0.1","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","author":"","repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"precommit-hook":"^1.0.7","rc-server":"^1.5.4","rc-tools":"^1.1.3","expect.js":"~0.3.1","modulex":"^1.7.4","react":"~0.12.1"},"precommit":["lint","less"],"gitHead":"1d45e4c10c413d66b3beea484b3529c1fa59598e","_id":"dom-align@0.0.1","_shasum":"68abfc94eaa21e9c177a27178e091f8692ebebdd","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"68abfc94eaa21e9c177a27178e091f8692ebebdd","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-0.0.1.tgz","integrity":"sha512-RFdfJZXPNVG6kVgnlAfW9KmMdLg4/eTM3E69E7Op0/RlDyvFtPrsy+rDzrzuzW4n1JTYkmkyxfQjVro9C4JS4w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBtQHAPV00oqU/qZO8fJRYrJ11pFg5ShEmVnWlHD4cNAAiEAlRxZ0OKGpM2UOYEbwuqlj+9IG/HjWlS040JS4CjqD8s="}]},"directories":{}},"1.0.0":{"name":"dom-align","version":"1.0.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","author":"","repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.4","rc-tools":"^1.1.3","react":"~0.12.1"},"precommit":["lint","less"],"gitHead":"326b3a4282c68fb09702f1d198d4cfee48f64653","_id":"dom-align@1.0.0","_shasum":"0f8fc028ffdc18b495da726d6c69d79289a93883","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"0f8fc028ffdc18b495da726d6c69d79289a93883","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.0.tgz","integrity":"sha512-rSpfJXS5WOZ3mbiorjLo5/6NxqSRvWU/4XzvwIJ+NJvzWefBWbqY7HCfm2muMx0lnsLLiMAQ2BhnuhYnnloRxQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCzcPr7okfM6US2+mdtci5ZvoN4O4qCK+lLYoAm3Odl+QIhAJ3pZBCVD8nKD0PXOn/EaoqvbDXIiDpsCz+W/LEt8VzC"}]},"directories":{}},"1.0.1":{"name":"dom-align","version":"1.0.1","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","author":"","repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.4","rc-tools":"^1.1.3","react":"~0.12.1"},"precommit":["lint","less"],"gitHead":"05ecb8b3116a683ada3b89cc0c6f4e9720e90bed","_id":"dom-align@1.0.1","_shasum":"d5e5e77436a2e3d2513fd1972e23f54a39862bec","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d5e5e77436a2e3d2513fd1972e23f54a39862bec","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.1.tgz","integrity":"sha512-gvonokBbLUQpAwTNdbXMg8beggU0XHtTi0ZVVt0pjaqL8J0EYvvrFM/0Wt1XnIyWSSt14od7SQdbK9H+onFv0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBJJ0KNLwbwSzS8X9KleRwSzimO4BrR4PANF2cqCC3s2AiBl5sPUNffNBIrFQtkqkWQdFJz92+70nNmqSJWUAbkHbg=="}]},"directories":{}},"1.0.2":{"name":"dom-align","version":"1.0.2","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","author":"","repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.4","rc-tools":"^1.1.3","react":"~0.12.1"},"precommit":["lint","less"],"gitHead":"0ae6bd0ba291ec66f9b19be5dabfb9b3c8eec466","_id":"dom-align@1.0.2","_shasum":"2059ecc16d8ed6d67669262ac1827f84f66da992","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2059ecc16d8ed6d67669262ac1827f84f66da992","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.2.tgz","integrity":"sha512-iflFKTNQbKEXSbGreVeSDPnAgh2QyX6CdMYXNnlRRG+tTExf4i006ECGTvuapMVWDN4G0rDgFRLv8OCfPb+wRg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDQGIGvT9+Qnm9MW+clDD/gEwWhzweI5j8mF+WbTWUfDAIgXNtMdxcKyH0DuktgKkN0u+bu2zx99vzDdnhU2cCRzi0="}]},"directories":{}},"1.0.3":{"name":"dom-align","version":"1.0.3","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","author":"","repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.4","rc-tools":"^1.1.3","react":"~0.12.1"},"precommit":["lint","less"],"gitHead":"15f5b727ec35d22707e344571e4a6b27e34f7cb2","_id":"dom-align@1.0.3","_shasum":"0552251824566efd8fa21171cd9539b97f6f2dc8","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"0552251824566efd8fa21171cd9539b97f6f2dc8","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.3.tgz","integrity":"sha512-n9oQc8IRzC/1wTZSrdKMfLMLddvavBSvrvI6T1w5zA5lAXE0UOvYEN5zBCUhH/vEfSgR0EPOTlGytE71omB/jQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCIxEw7M9iygbErWOulEB55VnJphIMBlexKh7rrtdRcUgIgYLPxPzwqE5kDmw9kztr0fWnve0uxZcg2oM5dvWhIB2I="}]},"directories":{}},"1.0.4":{"name":"dom-align","version":"1.0.4","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","author":"","repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish && spm doc publish","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.4","rc-tools":"^1.1.3","react":"~0.12.1"},"precommit":["lint","less"],"gitHead":"5270443f964f6ad866b76b09075c42ebaf494c77","_id":"dom-align@1.0.4","_shasum":"2de89b06d91c73327ebf920dc25619bae3075fed","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2de89b06d91c73327ebf920dc25619bae3075fed","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.4.tgz","integrity":"sha512-TSQWh3D43DO+1S02IMmj0ARDuVWcGh0MQuH3X4zIBzVYjiGlmA3gwsLDhJGU1v9OD8vVxXGxEL0b1ThBLn+8SQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD13zC73z1wR7VkcGdWkHyml66+tNKcvp6nsUGJdNpdKQIhAKwZkwA4nq1EgBuYde2kLYbhXjcLcFb79gUhIAYYBPgC"}]},"directories":{}},"1.0.5":{"name":"dom-align","version":"1.0.5","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","author":"","repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"~2.1.3","rc-tools":"2.x","react":"^0.13.0"},"precommit":["lint","less"],"gitHead":"34fdcbcdd462321808873131745ad6e65e1c9e05","_id":"dom-align@1.0.5","_shasum":"09976312d369d40a8785b8ba28a504b53c47300a","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"09976312d369d40a8785b8ba28a504b53c47300a","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.5.tgz","integrity":"sha512-uEtwgoP9FdRX/9aO1rrJaclWDo3WJ0xWd3Odh/v39+5rRcB2wZ6kio+focE3oUZNIr+5f7AssO5vQ/9KpL/3mw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBdqKo3UQqxmX6iLmOpHGjiWHnUYg7HG5lRrQbrTqeKgIgHZteAS67msLhCd1bGrYK2QeS96wyBBXQsyquTydjQmg="}]},"directories":{}},"1.0.6":{"name":"dom-align","version":"1.0.6","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"gitHead":"c4a3828f5bf97c7f1dbda1e51f3868b1c682a629","_id":"dom-align@1.0.6","_shasum":"515b7e3d6cb9f66062ab0e7903aa9d321f61043a","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"515b7e3d6cb9f66062ab0e7903aa9d321f61043a","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.6.tgz","integrity":"sha512-HnBTk4qIVVcbhCu+3TPZnfxI1VLkV6sAu0ywThhWGJdjPEdbL/eq49CCxLIMnWbtPzlvn2p+EEaiRJhpEpAKvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDvZtTx57t+XWW9xmaBslxrKPJZR6G2SDCZxAHPXUNnYAIhAPt0yvr3K9kNZjVVrW04LMATps6Ja22pwsjggk8EjHzj"}]},"directories":{}},"1.0.7":{"name":"dom-align","version":"1.0.7","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","spm":{},"config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag && spm publish","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"gitHead":"c4a3828f5bf97c7f1dbda1e51f3868b1c682a629","_id":"dom-align@1.0.7","_shasum":"08a438de0de7717a7540267865835a46dc1d074c","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"08a438de0de7717a7540267865835a46dc1d074c","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.7.tgz","integrity":"sha512-VqPqmlmrObPHWVvjnI1J1+cTd+bo3SC+YtvmscgRUR4zasqXKWiNSODHnIR9/02iYf6b4D32YHRhIgjJCkOjXA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG32We59S9D8brHTgty/MVs6qERJ+G8B2xy1SH4q2FDlAiEAkkPmIuBqQb/EJMtGWT0MkjDKiC79hjm74mRyptAAMvE="}]},"directories":{}},"1.0.8":{"name":"dom-align","version":"1.0.8","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"gitHead":"db2329625661372576a489be7bef428ccb6997dd","_id":"dom-align@1.0.8","_shasum":"7ebea95c62a5ab4fb0a7b36c24dc2918c159a27a","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7ebea95c62a5ab4fb0a7b36c24dc2918c159a27a","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.8.tgz","integrity":"sha512-vObIGCa3wO8QcnhtibY5GOe8PQVtR5lfccmTLoCC+RcyyqSj0Uhu1MnGSu8e9ir0AQDBE74rZuWj2eScuV5aLg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDG9zsK3HDmnCdspiG5n4IXhpDPdygNFLBM6MNuDvdcnAiEA1hlUlsZnmFzaTqmTVn+Uss922RHL8AcsUPtWp3yIAUo="}]},"directories":{}},"1.0.9":{"name":"dom-align","version":"1.0.9","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"gitHead":"9c09c9ed947c3261f142046e9a0331cf48689a31","_id":"dom-align@1.0.9","_shasum":"79cc343645a27544c8fa983e79882954c388917d","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"79cc343645a27544c8fa983e79882954c388917d","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.9.tgz","integrity":"sha512-y0YgIJXeldD9hXTzXfiGywD7FkWGgkwkvl4n6egrQanjAlFPjcqOFgHVPQjKvAShFyKHN2wsvW/LxBaJqmtI+w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBqKigYjdVd3AQbmVXUo3xrsj0z4HIGdKr33+5OpyuYLAiEAvstqunmIvbgE1aENlsPXTVBY9pkt2Ugcomh458aHiGY="}]},"directories":{}},"1.0.10":{"name":"dom-align","version":"1.0.10","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"gitHead":"ee05f680c86d393d037a8bb2a38c6f7b2a1680d0","_id":"dom-align@1.0.10","_shasum":"5123ab1b903bfae8d5fc21e2e5bb6dc7150bf7bb","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5123ab1b903bfae8d5fc21e2e5bb6dc7150bf7bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.10.tgz","integrity":"sha512-MOsNesKSqLAMcUNBJUxKROJ0PMcQgm58D3QdjzXzYReoCrU+xsJse0atmtlma+lTTYaHTBjIYZlCwllW50NsAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG5coGYyM+GfFVzW9zCD+mb6MOz+oHk+BfgHpNdcGe8QAiEA8jNZPPVxWZV3MePuuw8jIkjyJNNHrODUGKZwqxCSOgQ="}]},"directories":{}},"1.0.11":{"name":"dom-align","version":"1.0.11","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"gitHead":"8ca0cc2fbe1316a190475709876cbee1bfe7dd27","_id":"dom-align@1.0.11","_shasum":"7a1f6a36a80e606c722ef3fc17011f2abb0addca","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7a1f6a36a80e606c722ef3fc17011f2abb0addca","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.11.tgz","integrity":"sha512-bGTl7TLgCX0gRv1I6k/IeX+rLiXNk/HSd4dlbws/y0h0w7YJpvQYh53Eu34nB2cxKwARU1a/8x/21lE1ZFcvRw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCBmWRl3XlgNHZ/eFfHNVYnm1zoL8wkS7gF/6A7QnHwkQIhAKT0Ph1YA7u5AC6zq5WwR79ztFEv9KszvOSRo3RCdL61"}]},"directories":{}},"1.0.12":{"name":"dom-align","version":"1.0.12","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"gitHead":"32a8887208393cdc2206a09e267c3c1e00667559","_id":"dom-align@1.0.12","_shasum":"bf2216b2c8b13e6a85087467f0a77c5630cb1086","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"bf2216b2c8b13e6a85087467f0a77c5630cb1086","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.0.12.tgz","integrity":"sha512-Ga+hKF12kW1o8HRAiyneMZBw4NDbXvvRcyZO/Wvb0Ak9taKhW4Q/XVG+n/lQ6vsNumAxl4zfZ01aprA5brFImQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDIAB/aJ15M/iRA0jslHhm9H6gbekxKSdmOyEYO0IZq0wIhAO14X/49cPI8ARPxuxXgHz/brEcRQoPvYG1CMNSRTXQJ"}]},"directories":{}},"1.1.0":{"name":"dom-align","version":"1.1.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"gitHead":"7b6847a37fc6692dbd87b203edcbc0f70e74bed6","_id":"dom-align@1.1.0","_shasum":"7120bc0c3537ebd53de559e42619542e881bac90","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7120bc0c3537ebd53de559e42619542e881bac90","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.1.0.tgz","integrity":"sha512-zBUXheHfWKXgoD9ENCJ59Qg/0S4WqHyqkFJ1gFK1tI/qkLoTc9sOGQWGCdF7+pBcifGMzMY9yfdl4cAQ59ibhg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAT1UYC9GOoay8QWcpfLX6bjPhloPTbKvSBYiJ/I6GjUAiEA8xedhqi3okKBTDI9RcBs6qbT3iLpUvy720aX9hdnpgc="}]},"directories":{}},"1.2.0":{"name":"dom-align","version":"1.2.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"pre-commit":["lint"],"gitHead":"30cec25c13041695622b65920811bed0a46015b4","_id":"dom-align@1.2.0","_shasum":"e12b3d704dd85f02351330fbcf11af2043b23fae","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e12b3d704dd85f02351330fbcf11af2043b23fae","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.2.0.tgz","integrity":"sha512-AOMZV+h3YnFyI1JSF2hV9DgtX01S25STQKCJ1FAOOeQOdSWJhlkMlRmY8boYVjhIp2+ROTbG/W4OQCmRVGrsNg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDClidXeKheUbXPCMznbMMKFLP6jeS2Q3TvSFLBBFlhowIgGIoxZE5bw7fr7/2sLNu26BRqv17xHW+24oEgbuRT19c="}]},"directories":{}},"1.2.1":{"name":"dom-align","version":"1.2.1","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"pre-commit":["lint"],"gitHead":"fd5a305f08de6244809e1a7f86c034217f860442","_id":"dom-align@1.2.1","_shasum":"2a76688476eaa2411d96af77a4b0d42e556de38f","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2a76688476eaa2411d96af77a4b0d42e556de38f","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.2.1.tgz","integrity":"sha512-JDWH1pbDHJ5e0QnKm8M55/V9fDqJsotPprsPyLVKLMNLB+AtnVkco86d4xJxLXI/HtAPgfm76RoLbBiif6Dx9A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID5VxQBBbIGWCEUqNovS2GJy5l0xL8NfU+qUnCdvF2ycAiEA3O6oMhHLRgkJCjGWKWTJBaUxsIIFhWMfJ2PzQUfqjjA="}]},"directories":{}},"1.3.0":{"name":"dom-align","version":"1.3.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"pre-commit":["lint"],"gitHead":"33bb470d9384f4695f1dccff7712ed731e4683a4","_id":"dom-align@1.3.0","_shasum":"598d1484134014bb851c9458847cfc296d23f585","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"598d1484134014bb851c9458847cfc296d23f585","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.3.0.tgz","integrity":"sha512-qY5OYj2kkU5BEfTB/qAzyM0QH2d2wXFBA6brEMFF9MSWjbvT4kVc5WPZOdauiojh4zjqYAZxcIJlKshmm9fcHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICXDgNDyexlkD8EtkJte0yO3I42fSFGh2Eg6fF4IVxz5AiEApw7W6tFOnUCsw3TMEeUl/KlceHtNriy4RkImwbJ+x04="}]},"directories":{}},"1.4.0":{"name":"dom-align","version":"1.4.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"25b000931a3d3d5b73c0a6b79285c6057b1c4ef4","_id":"dom-align@1.4.0","_shasum":"1cbb087b7c54f44e043d0eb0a2cbd9ab841305dd","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"1cbb087b7c54f44e043d0eb0a2cbd9ab841305dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.4.0.tgz","integrity":"sha512-FAWMaHDit1IE+SSFv/bc7aAenm1WOTCjFOnywrtdHCGjL/xNt4OqZIA8ADePk6HqmwSJEaUNgLAvkCFIN3DR0A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCKDYKRuZw3pfuUmvOxEUA8Gzqda7IjbTMbYoQCaH+mrgIhAI1l2HbWymcCy8UFI2mNQ5M8aLPv1bTGpPTYSoNMY+9D"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-align-1.4.0.tgz_1460140385608_0.7800721195526421"},"directories":{}},"1.4.1":{"name":"dom-align","version":"1.4.1","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"4983805895105d6ca707a1df84fee61b9aed44f0","_id":"dom-align@1.4.1","_shasum":"50d6f10eca1d2c901005fe130da3579a20068da7","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"50d6f10eca1d2c901005fe130da3579a20068da7","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.4.1.tgz","integrity":"sha512-XBIoZ3I71ySbBLjBnw2CRSxtXpmmuV8rHY1AQbrc7TEWqk+qUkPW31iINzRXvjmhZSaHsGtuo6fDhGTyJzwZaw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGtNoc2lPwZoiE8Pz4b1BSUs4poBc6KDKLPxJs4R+NiyAiEAgQZFpJYwF/dayxghG4gRRoiVfSJJF3JRaeAiGe8I90Y="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dom-align-1.4.1.tgz_1471322042529_0.8370013735257089"},"directories":{}},"1.5.0":{"name":"dom-align","version":"1.5.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"css-vendor":"~0.3.4"},"gitHead":"7fe15d84c2188ef9c67b3dfab116ac015d688b4b","_id":"dom-align@1.5.0","_shasum":"3185304167abb4602406600f369510aee9a8279f","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3185304167abb4602406600f369510aee9a8279f","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.5.0.tgz","integrity":"sha512-U9B6y8ABFyxO26bLSWoZb8tV3KJcez0zeNNUiomMxkgoI2Ggk3DSddICHPDFmxkhK63XMa23tCLj5kWlBQX2Iw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGslANfocswzlyuxrjjkO0l81OQF8u0BPeCGsLc9FdRvAiB2M4VZHVUoM/TDoIVwFdf4XgFZK8fjFx0+9D3Qbz8CnA=="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-align-1.5.0.tgz_1471334797335_0.8957095362711698"},"directories":{}},"1.5.1":{"name":"dom-align","version":"1.5.1","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"03779bdc7821f76edf170eca105dc5c3f2503202","_id":"dom-align@1.5.1","_shasum":"596083aa8fe0d5848739584473138a54dd55ff5a","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"596083aa8fe0d5848739584473138a54dd55ff5a","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.5.1.tgz","integrity":"sha512-DCwzwuECm1cdQeFY30RfiSCURG90EG4veIg1CarpQgpnjoMBYotvFHtdGZHmJ6VAbTZ4z6+0KqFLZIMVBw77Rw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCi4dYgIfW9oW2ML6ZDXaFy8FTJEchyyETE4rIW5aDRTQIgcOytcS5laYJWTsWgQ7uTe/KZSY8zEbdlX0WGzPOC5Qw="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/dom-align-1.5.1.tgz_1471351562567_0.7974273625295609"},"directories":{}},"1.5.2":{"name":"dom-align","version":"1.5.2","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"2cc0a91fda10ccf760d4e484573ae8c5cab1bd33","_id":"dom-align@1.5.2","_shasum":"bceb6c109a3442ebc001c04c48cb37a9d5e96df2","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"bceb6c109a3442ebc001c04c48cb37a9d5e96df2","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.5.2.tgz","integrity":"sha512-cthqIGUodaVdCVpR+I4BBPHT6J4nvS9eA9Gmbp3YZvlCqtL/sRcxPJXM+oiqyp4IrO2nCFnjWhCBlqYx6ZjgCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDtZ0CdyDQAbXGxfybR+ciqL5AHYJ99/0FPmNd4oDIUsQIgI1RwL1FbR7wAgOLnVuSwFrLignDuaAPIJVgL4FFa9K8="}]},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/dom-align-1.5.2.tgz_1471351781989_0.9674819689244032"},"directories":{}},"1.5.3":{"name":"dom-align","version":"1.5.3","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib"],"main":"lib/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"717bb8bb9a8e48a9468915bf9d65480e9e78876f","_id":"dom-align@1.5.3","_shasum":"b906b616822a5e599f579ec8505e367c51da7588","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"b906b616822a5e599f579ec8505e367c51da7588","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.5.3.tgz","integrity":"sha512-5nd0iey2TKVovlEowatNuBRhx28ASXhxCg7d2tHQQI/wleoVrLWiZIftGXiuGHn9cDMgBTzwLaueoI82jLt25A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCsT7NhOyBgxuTj0WKXKuQaJKcbryBqwu4zFBEDl3y9GgIgd9Q35vj/h0tIE1WTH8g9tpppWnG7Pxh1KSjNRgfFeag="}]},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/dom-align-1.5.3.tgz_1484108516924_0.5731805083341897"},"directories":{}},"1.6.0":{"name":"dom-align","version":"1.6.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"8e5eab0b729f6ecd15ab091dac98a3a65733ab8b","_id":"dom-align@1.6.0","_shasum":"10afe5b3e0b1befc5b6e1395a3d720d0254c88ce","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"10afe5b3e0b1befc5b6e1395a3d720d0254c88ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.6.0.tgz","integrity":"sha512-MHx4NYXjFw1a5qt2X9D5DMN0hT9mU7CrYZfXBWNwcrFyBSlwn636FfxuyrQLZd1rqDIAXK1IB/0Q+vnWGy+X9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC4MLoYO4S0I2tNoo/mcpS5/KkPmDy3M466G55v1Ikm6QIhAMGOewrpcED1hC+5UJAzQlHbCeGk0wPUuOxeMwwI6oKs"}]},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align-1.6.0.tgz_1495777001110_0.244850606424734"},"directories":{}},"1.6.2":{"name":"dom-align","version":"1.6.2","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"37767070d3905dcd9422fa207c1e191929d68b1e","_id":"dom-align@1.6.2","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-xCyF9pFKqoSClFUb7ATZbSHGAi70fNFGZ1k9ijLmFo2jM22ef4AKEVGvETzGFMQRVZT8vqJSmQEG108uabKlMA==","shasum":"b14e64917c25de6b4055227339b4d64f4b7db885","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.6.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCY9ErldJ2fHPVqkxnUch6gURXHgzw8sTNv7krqCZW1CgIhANTQF0e+/rTDRvGBbXYJWif5cYdn74i6guqKdMXSuXom"}]},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align-1.6.2.tgz_1497321592957_0.9760329122655094"},"directories":{}},"1.6.3":{"name":"dom-align","version":"1.6.3","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"8e1cd72e35ec512b9c40e294ab5aa2beb5c78db6","_id":"dom-align@1.6.3","_npmVersion":"5.0.3","_nodeVersion":"8.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-lCjIj5yavAQxl6hTQsb5fFecidk3GHTTDjipHJhi+46TA/vpotSWKT/IKoIonJbmMzVQxHydjq5jT/NuVGnh8A==","shasum":"3017bcc87f02547b1f15b458649a8d94a71f5903","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.6.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCO5JuMc4gzxO8eLIGaYtxzxEjTNsWrhh195fiXD4b8QQIgcu79lDHpORfkqcXKZA8547MgUa8uFgZ16s+bpRZ+TjE="}]},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align-1.6.3.tgz_1501840351521_0.11717418720945716"},"directories":{}},"1.6.4":{"name":"dom-align","version":"1.6.4","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"6aa8cb64eabe73082f2a94814db52abb98bc20f2","_id":"dom-align@1.6.4","_shasum":"7702a40352ebf29f31551296756d08dae2b3c3fa","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"7702a40352ebf29f31551296756d08dae2b3c3fa","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.6.4.tgz","integrity":"sha512-OYgNeqiqzHpnLlEGcLrpCibu8udbZRBFOD7Qb3TuXdHRqHfVbmCxfYR852ImYEQGzJd19YcVI8vZPxd6qIpDyA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5if0suCVQGENsXZvmg+40syct8UhI4uxqB5QZqWRXTgIgBfMNZpg0bdX0KccRo8QBBabRSE/a2JPC1dEXevmFfWk="}]},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align-1.6.4.tgz_1502961626242_0.6504129930399358"},"directories":{}},"1.6.5":{"name":"dom-align","version":"1.6.5","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"f9574b1e9add193504cffbf91dea52ffaa352f85","_id":"dom-align@1.6.5","_npmVersion":"5.0.3","_nodeVersion":"8.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-f/JRwEZOv8Dfsv4yIy4s7LRNwmiD80PlnYSa9fJfLaYinUSjrChdNvDvXRZDX/+CKBZWCsPN1Co0aM38xy4RpA==","shasum":"48890ee37563dd43d3b580b75cfb79a6ac8fa004","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.6.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG6CnF6RDRQH59tu4mRru0C3Pl9dcyYJZuom1Dtd93L5AiEA9PsJiEk50eRx7dD81dvUU3+BM9vjZFoZhoYoIpEprKM="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align-1.6.5.tgz_1505810405781_0.6877992497757077"},"directories":{}},"1.6.6":{"name":"dom-align","version":"1.6.6","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"01fece994046e812bdd8224b4016373d57a7500f","_id":"dom-align@1.6.6","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-yBCGmhzj6SRaeAJlFUK/iMDh6bBpQE7EuChyPnrV8LQFV3vo3XghZw2lgHgj/8o9USFunVlvJ6YXfQWVdGnV8Q==","shasum":"cceef0e30a07e7036aa6d00d1297a2fd91c3a091","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.6.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAF/4rEJUkOt+4b5VXdNwUmmzrDekVMxatxGtN6/lBVFAiEA6bvdTUzIg8ol4SFcuBHYjhdHi/pCjcu4wVKnE0ze/WU="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align-1.6.6.tgz_1512700789708_0.11159344017505646"},"directories":{}},"1.6.7":{"name":"dom-align","version":"1.6.7","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"23331e79d423bf04da48b7d3e6dc936235fe9741","_id":"dom-align@1.6.7","_npmVersion":"5.5.1","_nodeVersion":"8.9.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"integrity":"sha512-FrHttKVCqdHaDyVjygY+8kRhcNOJEdvAkc2ltppJUz71ekgpzIOuLgsOIKVqzdETI2EocmW2DzF+uP365qcR5Q==","shasum":"6858138efb6b77405ce99146d0be5e4f7282813f","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.6.7.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFTwYsy3hZbkIWQJnTfyGEOVDOKHcR+hU7DPs3lHoj4SAiA0Niu6KL3kv6FLAkewBdvwifpDHxVq2DtZBA49DT6j0g=="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align-1.6.7.tgz_1515658158333_0.051879401318728924"},"directories":{}},"1.7.0":{"name":"dom-align","version":"1.7.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"5bca69895f829fdd5bba6e5a3fb0c9ce1cbc4faf","_id":"dom-align@1.7.0","_npmVersion":"6.1.0","_nodeVersion":"8.9.4","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"dist":{"integrity":"sha512-1W9FPVDQjq0hauchk+AhImFhFnTKj6wa5THY1kuxZbN5SvZXhYMlpwqBpO+7J4Lzae+Hyt0DO9zWp/dTywfuQg==","shasum":"95a8f91a8c6aaaef5908366c1c2c6271461bf2c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.7.0.tgz","fileCount":30,"unpackedSize":86048,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbFOntCRA9TVsSAnZWagAA+9sP/2pjvVieZ6qyJhYV2ETB\nfaXO+CyTdm3FlvsOctKi/0oxcu/1sOGFXxMo2QEBshgGqpmB9DcqEeGMM3bF\niBLg9z1q+qFg1idd3sv0otegimhzbP/u5YIe4RVaym0MRw1rx2gjf3alOrP0\nLeS3my+nWdWU09KQXLWmOECRV4Nxq6jgTDrVxd3TObkgXuIurz0UgmxEXeUY\ntokJ5JnkiVHrOzf8bFuoR/Fy/KstI6WJPWQEnhlm2qx0GYq6afEYN9PJiKHU\nI3PSopaRxI2cd8TEcAFsnnbjx9LYqwfxfowfUOUWbhw5MMOd2KWqX7kRuQc1\n4mq96TuInbilJtXxXs7JCOYaAmo8e/R9zlSZuix03KdG9F7RFnianuwoNBrS\ngvWDbIkqmv+noCxp17hw4LNHE/005UwIFHZpMUfSJJtx4aPCKxlVDBj6Zep1\nMx1aj8XeZiVxmRWlE8PRTChiXo1eJvn+/nusNIzqyjF73xcgZe6iVrdfjSLP\nz8F8xkXwTAbDFVmvscapS6RiVVdYPiL3ofzik6NnKxR1W3ETc5boLzWwuhZw\nubovAHcs7uFl9H4ZdiTJhjl8Y0ipobsgeBhw0csu3dzj3AM1ulHK7y+YaLrm\nlbPtCt1RTr9tTIdth4wKs8QWiEscaL/0vPrFy+w+oL3s7MaF3/zg1k/V4JdM\nw6HU\r\n=kr2i\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLpCDQ40KzVKZZbNhHPXmZQvSjdqBKfzm6DMWhAiW9PgIgc04gm65XuAr684Rwk/gezcMHnJHJ36XQP4TUtU90gEQ="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"smith3816@gmail.com","name":"zombiej"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.7.0_1528097259582_0.8410575886088012"},"_hasShrinkwrap":false},"1.8.0":{"name":"dom-align","version":"1.8.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","files":["lib","es"],"main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"2ce307832e29ea296b177fd8fe3486e975a9677f","_id":"dom-align@1.8.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"dist":{"integrity":"sha512-B85D4ef2Gj5lw0rK0KM2+D5/pH7yqNxg2mB+E8uzFaolpm7RQmsxEfjyEuNiF8UBBkffumYDeKRzTzc3LePP+w==","shasum":"c0e89b5b674c6e836cd248c52c2992135f093654","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.8.0.tgz","fileCount":30,"unpackedSize":86716,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMJk+CRA9TVsSAnZWagAA9MEP/337ctZC7KMyElkym7dF\nqh1Qu0bkpiCk4fkzpmPwJ3WXmqWSrz0SOgHkv30seiZtByNjaNmG4G7Q4yZ1\nG1dOjKji3pBv+lf6ve1SYPxY33ikVcBnQO3Du2EUSmHppwHf2HUMqoU9zh0X\nizGD99WetCwBMO34bMDVQO/sVWuV/22AzteywEzTdyEyaMxuKBi7E+z+9Utv\n7Dma8Lge9h0X3LG2jIZeAfs7GumfIWoyeUQHsdknxEMAnNnxLLdk21FG4Qzm\nyKgpTwl+18ynMWOAoWTRtuV9SFT1pq9lqXnbaPW1lsnq7QshTV5dewCoYk36\nx3r5+nfRnynAITINdWGFNo05G8Z7jRgRSiou3fSlk9X9oShM2dsdvG7soqj+\nONT4C3OYGuuFd4r/y9bWFMvIV2NJcHfJ66w2ZQtivBBXwy83JFy0V2CJ9CAk\n3DwGhiyqYY60KFrnPTQk3OOKjavP/1k+IlEpkEWiZhKaSHXON/bc8wII0Y7H\n0l+wA6oMCp3PpPzASnUXyYQZt79QDbeJ4T5aiDrg0J/Hd2sWFsULY4mVUv1O\nfXKugv2i6xxGhWZKvslZfv05yvArJIC4Mh6xA4qXr8/xgwU44VwVSdAg2IJF\nijWDN9yggxal5kS0CyuaQ+zRwEp4xvijGrQfrf6C0G166NTQBNLhNAK/yczB\nmL9t\r\n=rnpP\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICi3L47XCikMK/S9JNJjYGlsvIFgLobMFzPxDHgsv9iQAiA2aGEgL7E2fWkj4ncLzvpTyXbg/8TnHh/ZIX1k3Q4D9g=="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"smith3816@gmail.com","name":"zombiej"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.8.0_1529911614792_0.2822016519085164"},"_hasShrinkwrap":false},"1.8.1":{"name":"dom-align","version":"1.8.1","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"e93de10191b94f245c1fdfe3d130fe7fd5b8e2d3","_id":"dom-align@1.8.1","_npmVersion":"6.4.1","_nodeVersion":"10.15.0","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"dist":{"integrity":"sha512-0EPUDSr/Cha3IlS60bFTVj1eq7weXdzDNpdQDSfjsqAeftNPIW27wxmXpglboh10C0qV7/FdOvhp278XHkiM6Q==","shasum":"50c8e41e5b0b4446fdcc22adf7ad53fb12e9a00b","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.8.1.tgz","fileCount":30,"unpackedSize":87587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcd83QCRA9TVsSAnZWagAA2jUP/A2azIk9R7oeDX7w2ns1\nrKDOWvw9V+nhGtvQGqHi6VfpyKq5zWl9kCEuoRBZJxQAKmfSqR87vNuLGmVK\nypPexppurO+eQQWo2oJ6lTfeRx7Yj7ORa4RfRLau7KLgx5mnBw8wWzRSG2tZ\nTCPEMmabh+woUznrRJNJHkRqRAC1byp/bovldZ0vT11A0zNBrkpcb69valxl\nVMU48VFG4+ZsGD16Wni3al28y2g0Mew1aadds9BPS9wNlhO8EoZGf3UdEHFC\niExWN1CR/rkTVR67oC9PSQtoIy/2JeA2WLtAxB/7fG9gPg4oUA7iiPMJhz1Z\nnJqo1xecQjnEpmrcZeE/L6/j2KATFkFXB1aNjp4q/bFnMpUp1c1WTtqKiCIz\nPHe5lAcZUtA3WkhRvn2joUUqufE0Fsa+dCI3gSLXCc7MY/3Mif63QNQSv/zy\nyCydzsNENzpQCCShKUI2fxCprHCMTsM38jOBmrBZTHXEGivgvvAC5ZuNHMGa\npGpMr4z4NGdJvYYvexvnh2cWQj0vHzHBJOAGv2BCAV3BA5Xc/WasR/j/cUKJ\nKBPDf+Kw/tdaayTmRkKCT6loe5C+0LG7zXBxIUdptDDpWJl6E3OAJZxXMOlp\nPCSwffzMPWEuoJuju5ihLlVpR0gddGUTtw6qAadqUrI2unM9mZ/GhLap0/6R\nSbZ9\r\n=IZ+8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDP5t+zgsWJ3httb7n/ktbsE1vjSzUmyoW4HWFZEI3+5AiEAoAm1gKUhSGLVXNc/iSac5Te8SvTusb2BbtxYGnnPk1o="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"smith3816@gmail.com","name":"zombiej"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.8.1_1551355344216_0.2206567997777389"},"_hasShrinkwrap":false},"1.8.2":{"name":"dom-align","version":"1.8.2","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"98bcb1874f90a8725064f76449f85d9a452dba23","_id":"dom-align@1.8.2","_npmVersion":"6.4.1","_nodeVersion":"10.15.0","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"dist":{"integrity":"sha512-17vInOylbB7H4qua7QRsmQT05FFTZemO8BhnOPgF9BPqjAPDyQr/9V8fmJbn05vQ31m2gu3EJSSYN2u94szUZg==","shasum":"fdcd36bce25ba8d34fe3582efd57ac767df490bd","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.8.2.tgz","fileCount":30,"unpackedSize":87601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJceeyqCRA9TVsSAnZWagAAWY8P/3N6Tk9D6XiRPJmJ6U9S\nMq4UjvLLx7wz7KOiMpJFgZm6K9QfDjlEc/3IEJm+uoLGvjkuVOumkdvnoYTK\nJYjVR3IVLI56kPSkQZP6DWDYDENzEz0/VjrzSBjlb3LqLcbaY7kMX+oryDlg\n4aehkdI5lYJxXIZVQatPJf6HYn5B0U8RO9rQkih9JM/jMRoj1bbPTWF0HBeQ\nORJkFFJ3SyFayS1xp/1HSs5YomYiz361LCO4ol+yChtlOeL7H9RhPGmEZpW8\nLuI1gSQkY31ZDDn3j77Iu8sE3zfdBU/2RiWTXORnnWmaQT5uiLRpJRX9hV/a\n29+RFeuyL2U6XPtVYZ3Ekk84rmf0W1Sk+eLHdDadnJvkcpmfIr5UNfy6UjJe\nmM2ytsQHkj5DKviGRP2t/SrYTZjdM+BCYXZ3labEKbKUAZYZ2LbmTH9k0YqO\nzciiq99xIfnyqipp9q47ImEh4FoVqSdL/qk1mLpn/zLAeXGJPgXb758oL06H\nsRC+ngSKx4049Ka0xSyuZlEAfmK5qdn5eCENy1OkL0+0ZIDb4e2M70LFSdsT\nVOJOwpJBL5oEGUu5h/nQUq3MnIXj4Cy81FkBODyKUOaY6WXbMuNctLjXmX0L\nc/Aa+oL23pCi/0H5iq15oLHhJHj9s3G0djnTqOMGRbNKF3ZAdUgUMt5vqFJJ\nxnbH\r\n=OaXd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGRVXxAmPAfHxdK/mUhdGR6wify5y4e2okykIq+C8PaxAiByFpELYMmrfkbd7H+WxPLSype5nWZXZDMizTmlXW1xwg=="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"smith3816@gmail.com","name":"zombiej"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.8.2_1551494313447_0.293351125007592"},"_hasShrinkwrap":false},"1.8.3":{"name":"dom-align","version":"1.8.3","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"gitHead":"05db5252d1857e9685de5aa8967b91d8067fdbf0","_id":"dom-align@1.8.3","_npmVersion":"6.4.1","_nodeVersion":"10.15.0","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"dist":{"integrity":"sha512-thE1qB8mvtRZgwN4+IGFz1rv7zVsr08c2/IEYtOJIeTzW4YDadIOd5nQ4BpiiAvUWg55xTeGq7zLTDxDYWDrnw==","shasum":"f1fc197228109eca24f04cc6ad3b06f6eb8a54bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.8.3.tgz","fileCount":30,"unpackedSize":87649,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc7e2fCRA9TVsSAnZWagAAbdQP/iK0kia5CG+qzmmSik+L\nY6JBxGLspqQpKAZcIT5pKYEWsJSZaZf/VWbSMlfxgtAWINUN/Qmzw43AAlH9\n+XVyJhm//ZRkj/15T7lBMT+9I0BGIjnNXQRWcSD5eB9i7WQATNAHDUdLdWg4\nPAb+cM/MNse7mhMMKJJrxJ7AT6ze2fMw0/7fN8ITdiUk7QCxAtXVbZ1KJw//\nXkbDemwBA0cutTTVAK3EyTdekS1w56COdEoBVdTKwKTENGo6NB1dleUaul9t\nRI59fVAeCmYbVBcMPoMNcpXGi/I8bKtfJfrhgkYUPs8QI7BPNoKrgdhug1JT\nIDmjD/b3G8ztKwRAYJTxn594hlz9Pdm0FLYEQJNXuA0R+ekF9vNbgUI+yqri\npSoBV5pK2ry0sYGF5cceCXzRPV+KWSRStmiNACHScLfHNuqS/F+ows9b4tWM\nqqHL1CaWxXSsbDmXRmYdz2I5BqeZTBksb290Gv8DTDH9Dq0mL01bMhYcfIMn\nwBXhF8nEdM/HXHNQRmJsyeX1v58QEZ1JVWfRLo4wl4FopbUfP56ASEb6RqlF\n4q9l8RfdGzYNpz4xSmR+YKTnEpCLvobQIrKiP7TVyNuLdT86rK/3Bgy97HE5\nb+Qtacj4nm/a9snobrR7XzBGb87LGPuBsrv5A0j08/3wh2+HM+o8Rf71O61k\nn7ic\r\n=OpMy\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIACqntoTsAzdNCVnonl8ufoP1oAaMzxwn7PNAbfugPdwAiEA1cFiI3/7IpXzhemHSIDN9alF0GZTlT/fH3PiJhIry+c="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"smith3816@gmail.com","name":"zombiej"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.8.3_1559096734931_0.4521155158026908"},"_hasShrinkwrap":false},"1.9.0":{"name":"dom-align","version":"1.9.0","description":"Align DOM Node Flexibly ","keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","main":"lib/index","module":"es/index","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"licenses":"MIT","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-test run karma","saucelabs":"rc-test run saucelabs","test":"rc-test run test","chrome-test":"rc-test run chrome-test","coverage":"rc-test run coverage"},"devDependencies":{"expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"pre-commit":["lint"],"gitHead":"562fcec15201b84794510dcb2be62fdadf3325e5","_id":"dom-align@1.9.0","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-HvPfXISxoU7dKrbqS4vIFa1hx88wD7VdKaZ7sHWeow8y76tuzsxXkiPGbeilemLXrTd9cWbPqR4MOl4y3dkcXA==","shasum":"27339be5a2301e7d8470bdee54575c835c981654","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.9.0.tgz","fileCount":30,"unpackedSize":88471,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGd1wCRA9TVsSAnZWagAAqfcQAKPFUIyrfc7Z6hSNywv8\nqETEr1R6X/14KZ6fBo+bUyuyH85v/1CH3cvRneCTBARQO/ZHVI6zuj9HipBj\nrAJ+ZRFS0YHdBI9pt59w1IJXIMs3l9lUW2vJs6uOZx0WBv9my4+WhEfhkgwf\nA/pA0b9SiRpBYpqyW/t0sy8SP+LIjHse0t6zqAJ+nEWch/Ip2Ntk14dLVBxI\n8ERAPQB/m28CePKv+o+qTzUrTJDlAd0deT4dcnrCFQQb15hWmg/44FTYgJ5e\nLAviiya1YHukJzrURHzmsPzdQzJZKEhQ9VHuBQiiqyBa0gZr2NHnUdZAX+uZ\neHkOLipEAQfR5ymcxIJ+0xbjc9Pfl2PXGAAANSRaa1dhUbCh76zHQPPqzet0\nx5ScpOR68pbpoPRpZhSNVD7q1DEi1KBKKKTAMFCxCHP8WMEkHuSrN8tVWx66\neYk0bSwu2c0t+xuTUwLFHfPbSAmVyNAxXftsXnLTaNr7Pl7PpXS19K4cKZjy\ntk86nRKkNz1ZJSovIMYIPyQ2E6GY/bjn5t4ZUqffMZV8y9BOnYCeRbrNQDq0\nMY2UL9/RbLgi2J75OOM4oghhxE+hZWChuihw5Tbh09ywV+heBEK9AQxHSyoR\nWinelolBUDMgxRgIeiAUApTMbpYpVg2bKwGNX48jXmHhgih7/AdMvbByubUH\nK2Aa\r\n=5KBv\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCeZ8frP31yisN6vsHpBYp2JweWJIqb7H/Pwtb5e4P8IAIgV6QV07DImqq00dckLdlhYZqEid/u3CcPNXU//docAhY="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.9.0_1561976175997_0.7713721515261858"},"_hasShrinkwrap":false},"1.10.0":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.10.0","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{"create-react-class":"^15.6.3","lint-staged":"^9.2.1","prettier":"^1.18.2"},"devDependencies":{"@pika/plugin-build-node":"^0.5.1","@pika/plugin-build-types":"^0.5.1","@pika/plugin-build-web":"^0.5.1","@pika/plugin-standard-pkg":"^0.5.1","@pika/types":"^0.5.1","babel-preset-env":"^1.7.0","expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"esnext":"dist-src/index.js","module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.10.0","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-6nHmKCdQLMqo6I3Gu+aistJu7fhif0w0k9J6VvJy4Gz2wX+P+yM1KDmy/5pcH2NyZwjUsWbUOuzUvIvOVgue6Q==","shasum":"7c583f888a2830f04b1d7a3b86d55c5b7108abaa","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.10.0.tgz","fileCount":19,"unpackedSize":120918,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdO84GCRA9TVsSAnZWagAAeJkP/1+1zH51ks3GlHeN5VWs\nCkOj3v3+0bbvlrFDlxgkzZixwuJgZ+JBV8YX3E7BQrnjE6vb7jSTwwYUi0fC\ncPjm/uMe51iDIJM06kEvAONxb1q3fV4aiy4y1iysBQONwiEFnTsObSA3ALTd\np7OmdBzrgf6CC6q40sPrXiSCjpM36E57UbabcWcCznczHvn68ORI6eeeEXbq\nxjvY6z5NiK+4iWWUSlAKvREaIXkpPQV6hOgyMSdgCjLFkkZznNuATcjdSB6s\nevlxvZwQcBoFUmxSzCHyxSFIVIzwbLobGlo+EFLK+GlDB3oXa/yZZ0rZx9TR\nj0FRtVDVa1B11NRwQHawWvr8EZNv8FG8i7HoFwKLDNguF8m03AK2jvlt+Ayi\n61ropx7ZakCh8XRy9l5vFp7diPRtsUlEVn6cGIctGg2HFseUqtDmVfLf0cDr\nJiB0U7fxynFgaQVPUz37UYlS78OmUiYDgp/sBW5skjeQJMUpgiJ6+SnjGqAN\nvjBVHK9/384guwyA0ICUYWwVB7TOFbyah79ZwShLcEo1JaevnSJ4o3YZ1769\ny2k782oyEGYRqzJ1GncDGmu2tB7Hv5J2Kfot29OM6pqgbgaPRDaEGbvwtEhc\nUTXGuhcHgufqPXNgzNmu12qwY6kO0TMt9qi9b/KdYYwF+DWwNpfBGjmaafYz\nfHNe\r\n=QahP\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCK6L7SMv9HPQ0w+oNi8AhRgtbRrQaU/wNhLhR7/NsXhwIhAIo2n7NJdZX14Ih1WXCOXxvQkIGVeVRx6+pn96agUCqL"}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.10.0_1564200453824_0.9514642046230455"},"_hasShrinkwrap":false},"1.10.1":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.10.1","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/plugin-build-node":"^0.5.1","@pika/plugin-build-types":"^0.5.1","@pika/plugin-build-web":"^0.5.1","@pika/plugin-standard-pkg":"^0.5.1","@pika/types":"^0.5.1","babel-preset-env":"^1.7.0","expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x","create-react-class":"^15.6.3","lint-staged":"^9.2.1","prettier":"^1.18.2"},"esnext":"dist-src/index.js","module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.10.1","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-qztehcEqIwxjz0bEn2CuF6zgSGmeorTrAuWyYkhatGpOOAO93Blbt4UjV9YZSM4hPS3ZkFFC/qU6Kb9TD7JiwQ==","shasum":"515e7469b78a69ab8ff0adb5f866d0840467a6bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.10.1.tgz","fileCount":19,"unpackedSize":120916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdO85xCRA9TVsSAnZWagAAULEP/iv7ebSjFiQIIjFdUXUX\n7cZggWe91c5+ryt0DX61VX37m0G5UnEKXzT8vOvKoqgKP/PA5vgut93G6ijp\n2Pm/Aw5UMUFSaGxWi8JlnuCYOnK8UNXY8qi/Vqahkc+QwmncSo16xGHlGCDU\nbsA005oMMVSuLvI3g5xilqCX/ckbf45J9QmfjLBeqdPZDK9ewQudCI1B55ym\nhZI5OpYur2u13dGa0KX7s2sODryhwicO6A+m7LCdsJykkCJM34zL3qef67iQ\ny3HAkKJpJgVBfSIEdMSEEvIVxssiKrartea7yB5C364fnxjH0PvysSmrLBnc\nrgUmAfQjbf3m2jU2JyV6kV11WyLPXt6dXBMlK7wIQbr/p2BKv3bqGHEX5Z77\nhyavED5SYyk1l2pNIVp2mlXX/mv5OZPbb5MDTWBBl3JnAv2SgKBtmb+6ZTTR\n0e5E1PB1OZu4kHeJkDpiCvomFM6KVGsvH92TNNXNajAhYFXsXxBuna3uf6hs\npOgdDIh1DwTgVUUEcOMg6SpxN7toYmBBUOROSjkZ3Dl8rEf/dc8B9ChVO8NR\nZO0i1AxJB9+lCnvTw2uV4C5irDX2wPt2zd0EBS51bPjD2nalJejPOmKe/mAv\nhJN1X7d684gcnZx17H4TgSzy+ztQyESHdS21OjNqHHZCf9nWAvD7JmYAKAaj\na4Xj\r\n=Q8W1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHdJYvs+Ka/H/pLid1+rkqG0N7dSGZdRcTYuePWR48HaAiA3L0Kv2ww27qyC9KGi7dm24HSWu/VBf3auswlLVOJl+w=="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.10.1_1564200561313_0.330832044113504"},"_hasShrinkwrap":false},"1.10.2":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.10.2","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","pika-plugin-build-web-babel":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","expect.js":"^0.3.1","jquery":"^1.11.2","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x","create-react-class":"^15.6.3","lint-staged":"^9.2.1","prettier":"^1.18.2"},"esnext":"dist-src/index.js","module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.10.2","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-AYZUzLepy05E9bCY4ExoqHrrIlM49PEak9oF93JEFoibqKL0F7w5DLM70/rosLOawerWZ3MlepQcl+EmHskOyw==","shasum":"540ea1c9e20462bd11b9fc28c561dc8351ece4c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.10.2.tgz","fileCount":21,"unpackedSize":278770,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdUSgJCRA9TVsSAnZWagAAfx8QAIaMjV0TaH47lyByJtiu\nOwiPweZ+T2ud26FOkaIVqAj9CFIQ/duWKGarJRxEA1UnBRuTIciaDGSTFDcl\n4xO5xUnCKGNIQC3R1tL5yNk/tVAu64pfrAGtZHW0AamxUMsnoe2iS3DVP8xd\nXQPPtfWzHcqUFrTHGSCBE6KcHlHgHRQScPLjS9+ha9tH/vVoeSyN84XhQhUp\nN4wmH5oaqpb9SQIrq5UW2p3gFX2Tot3bso+Vn5fi6znuumI6zo4HH5Z42CYn\netcknPAsSbKaXGEmZmDsgRXDoxUO+jR/EVqsL/rx2tUO+eAHkFH9rnEj+Wsp\ntu5dYQ+SB+PPTFQmCPWpkTsQdLO5lQF/olErKQGdH6ZgtV1PXxOb8t6QRojI\nwQff4+Pt0jSjx0s2xzDKqCz+zmTrS8jrSA3gSztJdb8KToZo0p21zTznu1J4\nQTvqjkjVTBalESeJudJGUQO1Zuvd+4dyVpILVI8kFyGEK6+Hy6FUIIPQcHpB\nLroxAenZw6N0tnWkj9r9Jvwd+UHs4dQ7ASHCkaPEaWDzB3oG/A8krf1foPaL\nrs161bgArvhnUhJfxZXC0baFS3K9tM0MCkr6V3KlqD2Vz/INBjgPXQ74yDa1\n9eZgRIkyUQvfvPhi8wIfoMRH00XUzJ73FCrLJ9lpb8w0lbCsHax2xHayFwB3\nyuKU\r\n=mJjC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDjvagY5k+/YFuccXWA5mrZh8Nti43cjxotBK3ITbfciAiEAhITlUeIiVdcqXzHin8SFHs4QAL/i/VvCCFVJdMQp5Mo="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.10.2_1565599752490_0.8136298422986394"},"_hasShrinkwrap":false},"1.10.3":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.10.3","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","pika-plugin-build-web-babel":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","expect.js":"^0.3.1","jquery":"^3.4.1","pre-commit":"1.x","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x","create-react-class":"^15.6.3","lint-staged":"^9.2.1","prettier":"^1.18.2"},"esnext":"dist-src/index.js","module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.10.3","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-FuT64AYyZR55Qb4wuI3af6wWYs3zPQr7Wmr7ETS9cFtvuyY8gMJ/O5NvK1IZpLRmcX8JhXEpbzn+2vkZ2Ja+JA==","shasum":"8230e21d6aecef589a0fe1c7a719b2529ff197bd","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.10.3.tgz","fileCount":21,"unpackedSize":278968,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFaEzCRA9TVsSAnZWagAA9SsP/31gQPDvwt1WcgKK98W3\nZt/4WSD5LPCALTrFIudxOLBocjxnWjR5uYwWrxFs5CY6orU9bxbKWT42fI0h\nv+2WVEpFw0lNr5uxa+DfkYn2RSCfgeUXXiEhLkfZp62sqLiGI/PxeUtUVL3t\niIz869L880d+s7G8VVCRYJ4VwW2Ci5AComExW/2mugDNs0JopePYVsKyac+A\na4or39/8D+HvIljlywxLjgMxPryTd8TIW/sBrSi9wAhjJPc6ZbRUiU4kASGD\nXfIJpeVLCetUJcP5iwz8SSEHlBIVajp/L1M+NW6BD0lVy91WsigOAVuxm1Y5\nUYe8nypfQqzKk3bG9eXygQ1iqXa3RgZT+9APYpjNUiuYFgQ59byA6O3qK3M0\nWsrwkVmKGgs/0LtMcucYO6Lpul+E0wwn7amULd/eciN4LklBBFHxAjb3IdfS\n+Js1evLPDCD/lCZ0u9RLBJxt67rWvgKbdxFN7rdvIAT9QZfc8i51kEHlRdxk\nY1/jLhxnfUcGHbc0Yas3tTh25cPC6n0v4acN/UfToXeTKBV7mU6LrdEFdEFg\nbZ5tDuEjGMCbPSPPdO3UN7zEnBBTtSoFpXjqNTltVBL9seIemzuHA+rMWcmA\nQojkH72WG4oonby1prW3eaY/7FnU1U4QVEO28kYus90vhrnxe6ZdVyKfmM92\nhiLr\r\n=utUp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD9RETdCGthiMRpCn16wJzdOQvA50IpG5KQYHMwiXn+kwIhAM3teUIPv1qEYU2Fa2xTXa6b59L6cN6ZqsIFPOxlxqxW"}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.10.3_1578475826583_0.03410819287307332"},"_hasShrinkwrap":false},"1.10.4":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.10.4","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","create-react-class":"^15.6.3","expect.js":"^0.3.1","jquery":"^3.4.1","lint-staged":"^9.2.1","pika-plugin-build-web-babel":"^0.6.0","pika-plugin-clean-dist-src":"^0.1.1","pre-commit":"1.x","prettier":"^1.18.2","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.10.4","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-wytDzaru67AmqFOY4B9GUb/hrwWagezoYYK97D/vpK+ezg+cnuZO0Q2gltUPa7KfNmIqfRIYVCF8UhRDEHAmgQ==","shasum":"862ae4de0d11d6495c1c8ee1b195427e7caa727d","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.10.4.tgz","fileCount":8,"unpackedSize":240055,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFaHICRA9TVsSAnZWagAABeUP/i9M63sKhC9dHIJwg5rR\nCCwjjSX0pcUOYeGj5Pe2nYivk5rkPLXXDsM7OSFWnqNrbQdYsHn4rOFo+TfH\nwjU1C6epbiIUgvDwKB3NlgoN9LrujboEGuUnTdSDGlcTakMf+Y6gFOAIjLE8\nWVejZ1doDZu6JQwshVjmUE2Hoi4X1ommIMi1nzjju0ttTl6JpezmkMW76vfq\nzpyp9C1IRKwxUr0o2pMwfb4OS7mIM1/29BmOLRLlHwf5Y6118v8ZK/YWVGM+\nF+VsslSeQKdN7iE6L7HkVuGuYB1U/PiSKpS0yOwArIML/K9+QKTd7ejsjXFd\na0lZlTcTdsphpTBENoukE77RUG8LKPYmK4ZT3fIkav/m/UF89abb1BJgS/1I\nbmkPsKYqHtC9tWhjhstBYW46fymXNIv4+Ml9ZMfoz5r1/ncK3m8T/IyxAomg\nyKYGNowPChXD+vYs4n4eYVJFiW/29VxIJeQA67sst+vsn858vxDyzR5fj3AW\nvqNmKP/Qg7hGfzjgDPfWsV0CUFFCl+mQx/puTq636/rWNzvBya7RSQDS6SmH\n3gx9efXwOJoRipXqprAK5Wgw0jFBC+HADssGNiTf+J2cDMBh+YR9HZQJFC6F\nGBZnspkNuWY6OwCDkzjTgM54SGMX+1xFfT+gLM7RYwve4wxVviEnMpQs6o/h\nuaZe\r\n=JR1V\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6GxrFaqOIlF8rXqIJQNvQacR7frBzgHJixP+tIEnArAIgTlTJPrBo+RjGpdo/TOiO1PjlEtVj8G9r2K59Osnqzk0="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.10.4_1578475975911_0.01731406038316896"},"_hasShrinkwrap":false},"1.11.0":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.11.0","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","create-react-class":"^15.6.3","expect.js":"^0.3.1","jquery":"^3.4.1","lint-staged":"^9.2.1","pika-plugin-build-web-babel":"^0.6.0","pika-plugin-clean-dist-src":"^0.1.1","pre-commit":"1.x","prettier":"^1.18.2","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.11.0","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-c5xlri+XyxfgIGjJfayVIXo6j8aYh1jMlNlONh1UPTeGMW8T2kRVDcJMm2SryyPQ9i6FtjWyEnpDxT9SENXZBQ==","shasum":"209c6f50bf8140b89311574389e5cf9283a0c0c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.11.0.tgz","fileCount":8,"unpackedSize":240933,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJea4kjCRA9TVsSAnZWagAA//kQAI8qmRc5wmKNCus/z3tO\nc3MBm/Jmuj4MRwg3l0b5j+IxbzpYE9c3z8Sf2v1JHlY29laJWb2a81CwOay6\nCKNVNhQ/YMYh6U4w8HRw9o2+6g9rMHDV4Bvj05UOCIijRem9c6WxtapOKSWw\ncqckJi7UmulyR+Ug2vKeDXvXdIbVu5AKXElYS1LRGP7J86UtTHwjxaCdKejj\nOHlL2FX5yWPVm6kr6tQq3eaoStq1wFxuYAKoSEOLlxDQuQc0yBoNwKPAxcUW\napQc2lKChXnZIz6q028ACmQ5aa5HNk8LHGUf7+j6WcSaHBGHEqAZSN2ge7y7\nDLbHoriLbDkDKh0kZSRDfu21CZ7njgrWIY2o41Gra/q3gWP0g+LYAiV5ssXk\nNYWkqIyQb9pE++0V5/h2EIxNtSwb8dp402CR+FhalKiSBORgIFGOUIpmKXZV\nmao53htbseKhQ1TACucP0UUbhtCICy0Syxo9FbNUYDwz7+u0Kb62b0A7WvHf\nt0iI3GOm5SPcjaLEGynFBQe9uVfB1MCieXrIekoCzEA485yHRgE/+/3ngj13\n5qDKvEE+bjLpC+JPezQOOjDtgZQk1rTQF5rN1VkJY9jPcmMCqBz2NxFGBz9r\nD3qBEDPmReChvFUt/qSZqvA+HTssfaAloHshk8Fn5NxX18ENBvEjwmc+XQNa\nSphI\r\n=XCBe\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFvU63NfKoXFsy2cNyEOQy3P0JMJ1/VPgoiSFxxdqG+NAiEAyhdNlgtNZhE0NFG2Iq/xvxKgJFVu6PsvP2zVOYebAI8="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.11.0_1584105762814_0.1174683298031951"},"_hasShrinkwrap":false},"1.11.1":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.11.1","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","create-react-class":"^15.6.3","expect.js":"^0.3.1","jquery":"^3.4.1","lint-staged":"^9.2.1","pika-plugin-build-web-babel":"^0.6.0","pika-plugin-clean-dist-src":"^0.1.1","pre-commit":"1.x","prettier":"^1.18.2","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.11.1","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-hN42DmUgtweBx0iBjDLO4WtKOMcK8yBmPx/fgdsgQadLuzPu/8co3oLdK5yMmeM/vnUd3yDyV6qV8/NzxBexQg==","shasum":"7592be99a660a36cdedc1d6eeb22b8109d758cae","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.11.1.tgz","fileCount":8,"unpackedSize":241480,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJecJ+vCRA9TVsSAnZWagAAmH8P/3ZiAuKKrfUPZpY4fkBo\nfwI+nXH35ayjR7670XrNza5j709JDLuOcX/GyX9vBMjoT1uBZpuV/YkMviku\npTJJC9YFednZUKHXah5gAO+ievIx/fYP893fS7C5JkSF6tIN1IsPwX5GUbMZ\nbcLPV1CnRWgibaKZ/aMVYYCOMrylYRNwgQ5wHdN++Hqc4Mi2pZbcK8F9Imos\nIUauDMvhjib3uu+QYU1YE4rycoULrV+vDhMKMKkCXSveIw6lsAvuxdv59g4s\nKJCXzs7xdAoKKXWbH/k1ymcxrQyE31FzoSTilmJl2KOYz9lBLSlQg0u9Tm58\nY2L8qAyOyX3iXIwelfbG/O+HBhQ8XGGDlUPzSrS+TfdwhlfIV6SiWn3ZHXiG\nTtNMWugzZbzF6hhyus/fb8tyQdnld+SjKAUpcgQ83lfWIM4xUi3E6LPpbK2c\n4wrt2yeTf77SXFJJQviIqjj+N4ShvyEgJB9oObudv9kTcTAfoNlXIBOXJUh0\n96EkkqDhUDl5/hofQjIBH3NmGyF9L4AH/ChrBhqNiSHUW9H5ApFn5QczL/bt\n2s3r0ZjAAENayeTWRNXMxiP4hLUlhsqwloS/m6XI7/meBRQ+LYki/aXpeTnA\nIKWtJkx9l/twZc7DbEdXwevtsjVWI5mDU30R+Labk2gjvpHrvCScFG3koFM4\nkgmY\r\n=xFlB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCkOwkQEjzCjtXj0kF9rt+PM6yzIEkeBGSPyi5qVYrJYgIgDWDnAOUISrtweA3XWwh3W7hwhISc2ikvFkLCBHKWa/4="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.11.1_1584439215168_0.14927905654368523"},"_hasShrinkwrap":false},"1.12.0":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.12.0","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","create-react-class":"^15.6.3","expect.js":"^0.3.1","jquery":"^3.4.1","lint-staged":"^9.2.1","pika-plugin-build-web-babel":"^0.6.0","pika-plugin-clean-dist-src":"^0.1.1","pre-commit":"1.x","prettier":"^1.18.2","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.12.0","_nodeVersion":"10.15.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-YkoezQuhp3SLFGdOlr5xkqZ640iXrnHAwVYcDg8ZKRUtO7mSzSC2BA5V0VuyAwPSJA4CLIc6EDDJh4bEsD2+zA==","shasum":"56fb7156df0b91099830364d2d48f88963f5a29c","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.12.0.tgz","fileCount":8,"unpackedSize":243369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJew0NLCRA9TVsSAnZWagAAdx4P/ilUpPuN7WIMq0AfzweT\nCc4Z6TXph0/PUUPwcXvDwCLNQsNmn+LwCgqJNfuK2PO3sIhYrTaSesYHV5AK\nHvXKkGoaIOU9gJp5tfzdHX/2rPtqzS4Om3Xg1rL1Ecq8d50qrGgTB3jYv2le\nqblnm1enyEKZacTYCDoxO8BLYkxa1FABRytCZznDZf+7QgruO6z2Q+mIeKO/\nwZ8ATKPsYWOvlfFpxbbpDANVFNd4/0MjLbAKo+ppbC79CcXwaFPUCsOn4Cgx\nY9d2JRD3yO6qtJrUy3Dd6KmNG2CKUaDSjc/dCHPNmGPzF52IrcHXwTVTBu20\n7IbKi0XCyngv+Q81N8CALmAJ2MQXjgKsWk1n1culTk0JlYT1oXJF3RJElWCD\nDsCOApQaDunIY3tXLnJGMXQmGtK16TELTKyB9xtmAPabKZDB7b71qwvY8irc\nPCMrTqbQqYoFrNrxtBYG4G7evxAq6Kl0ME2SWTQnY0p/DGiKOeGk4kB46Kht\nQX1+3eyA2EdEYZqURoAAIc15rXr2ZIaUsGPTSDjnC5dOa8SvhOGWgb4dB2co\nU4SFZ0Nk/aD0nNIUR4FpyeQd97SIzpHgBD4I4vWOvQSJX95U795WP9E97BYp\nKkVXrhPzDSfWA9qDpla0+/3pciz/ozm4CbvfEJGmcLXNkBOsd+++xzYzFvCe\npup7\r\n=NSUG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAS8XbfHn5fPMIQdWb2uPWYTw5gKaHPckPqgnal53atDAiEAg1BRo+SPDXBBPvAsJk7MYk0zh9g3SoVG+NfBHOAOT30="}]},"maintainers":[{"email":"afc163@gmail.com","name":"afc163"},{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"},{"email":"smith3816@gmail.com","name":"zombiej"}],"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.12.0_1589855051298_0.4912355658444727"},"_hasShrinkwrap":false},"1.12.1":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.12.1","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/pack":"0.5.x","@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","create-react-class":"^15.6.3","expect.js":"^0.3.1","jquery":"^3.4.1","lint-staged":"^9.2.1","pika-plugin-build-web-babel":"^0.6.0","pika-plugin-clean-dist-src":"^0.1.1","pre-commit":"1.x","prettier":"^1.18.2","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.12.1","_nodeVersion":"14.15.1","_npmVersion":"6.14.10","dist":{"integrity":"sha512-CdTD9EdA5WviP8oO3n+okOm0Xt7dSuWxRTLcJiW0memwUr3Tvz66JDDCh9cb50IZFHXvBmLoyX454uJU/EVg+g==","shasum":"aedbc2c312983b46ea6b7a4d636617336a490ee9","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.12.1.tgz","fileCount":8,"unpackedSize":252534,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgi4FNCRA9TVsSAnZWagAARCEP/Aplm2QUGb+ws4kwBOq3\nN9rpMoioLxfzVhe+qyN22RT8NCMc4Tlh4LYG5/rk80QEGtSyVLi2Vt9PB/aO\nFpBkzJ5obqHityHy/2EZz3/XgC5EEh4QXEXsbP1wK8DgDz741m7Bo9Izxt7W\nrOqyUQtlR+DVtPufudwP9Z4La3860veqkESuDqGZpbKbT7FMII23gjSujIx7\nVpAduhjW2H24cvALAIM2oMwHDmjckUSGnhalHRDAFgoUdqrsNOCiBa8FjINB\n+5AS5bgfCDWAnK+n5iHZr9wQ6cY1c1BrBBYm9dhzcNORUO55jKQUZF7tYj2/\ng2iuXJc3IWRgfGcx5ZF1uTTl9fNQGMJnA/cTYMEWW2afyXEOoFhqhxSqMInf\ngHj47hLzq4PDkK7fRTa55eooX1pFzocxMvFnTRoll8dfa/5H3BsPuNZXk3mx\nM8Lhoa95ok3EfH7QNsAIcfo0HID+nmBiSSleMOU/6NVAOzO568yUf1A3dRqr\nn7IsbosCbbc5pJeQIAn0vXpaxL1CBrVIqZpYmonwj91Xju9mW0+mry89m0E5\n83N9arxRDv9wuBCE+kgWAq/wBDqRylMUnNYgwXmJM7PXjA6LPevJx9/bAiYj\nJVC7Gu6FP8bWihvKlpc+7NEyKGuVSJ9a/1ml9iuceKhwj8NwrZ6Nb7o0BdzJ\nZmUJ\r\n=qXF2\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXdHA47D3ejZHbDqShtiQVyH18SPsQytJKhDW9rLvI7QIhAIZ+cK8iwCpEj4++hCScmWanMHJ0DtioDarkkrkutHMT"}]},"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.12.1_1619755341003_0.16879044545938804"},"_hasShrinkwrap":false},"1.12.2":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.12.2","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/pack":"0.5.x","@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","create-react-class":"^15.6.3","expect.js":"^0.3.1","jquery":"^3.4.1","lint-staged":"^9.2.1","pika-plugin-build-web-babel":"^0.6.0","pika-plugin-clean-dist-src":"^0.1.1","pre-commit":"1.x","prettier":"^1.18.2","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","_id":"dom-align@1.12.2","_nodeVersion":"14.15.1","_npmVersion":"6.14.10","dist":{"integrity":"sha512-pHuazgqrsTFrGU2WLDdXxCFabkdQDx72ddkraZNih1KsMcN5qsRSTR9O4VJRlwTPCPb5COYg3LOfiMHHcPInHg==","shasum":"0f8164ebd0c9c21b0c790310493cd855892acd4b","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.12.2.tgz","fileCount":8,"unpackedSize":252957,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgq4OpCRA9TVsSAnZWagAA2CYP/jfNuf3Xmy5/dMyO/+kd\nggHpqjT5sT7Fqfvrfyn/xaihrEDL0vDQppPzc5g/+bHMn9/4z3hroduS9DlI\n8QJU7tncgg5FfVMfWsZ1bQzltQUeO/ys/iKnYgOu2NL0jDrJ6WUbLv+/WLC5\nwbDdBkzT2PR0zRTi5Yl9iZ5s8X4EGn1LrbzErdF1KciuUIZDJBp3EOwUVE5r\nX9flXDutRpRmGjlw1TpTETJcA1Pk34vNq0huBfck2Fmal1/YrFnb8P5yAZo2\npX0HIPJt+TchD7mfYUmwbpcCZ+nNKEgy+dXAX2XJykD7zvu20fmBFchGQv6F\ni1sQjRmVOKM1Me91M2GFNHdcmkvGDNzJytF727v+xtkfb8pUAdI6a/esb2Cc\nGXpuEStscDMdXsLOGAA3jiEaLU0kNhkTfwp9RyEtXZzCBPu/6Gtw74hP5SQq\nPnCyxOafEKD1aqvYPQz6z2dajOS6IGfrhly5rSlUzwkvzMi9gPy10r0a8cRf\nPMr+yxsJq23G2EPBM4doiIf44opLDbxL833hvQjfUWNaum0FesZOz2OUmNJ+\nrylH7pFd6q5jI8VmgXadjk9rwDQZPRlUjDgc98C/IjHfJWZZOdQ3+2CPyyFg\nP6WcGgmvSf79BpDHqfunxQ1g6DOSAZxyFFAov/3POFmG0syMD17iWgp9oaSg\nkBG6\r\n=bSy4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAoxf/h2foAQwfICPCpt/8thJy41s2bPFZNkpzi67oKWAiEA0tPdRF1C1vQifF5csWsZG49wvKrtNczA00FOWfAvm+Q="}]},"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.12.2_1621853096809_0.7828806069354826"},"_hasShrinkwrap":false},"1.12.3":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.12.3","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/pack":"0.5.x","@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","create-react-class":"^15.6.3","expect.js":"^0.3.1","jquery":"^3.4.1","lint-staged":"^9.2.1","pika-plugin-build-web-babel":"^0.6.0","pika-plugin-clean-dist-src":"^0.1.1","pre-commit":"1.x","prettier":"^1.18.2","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","gitHead":"a448e5a2311551283ed4923a8a438c46bf733124","_id":"dom-align@1.12.3","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-Gj9hZN3a07cbR6zviMUBOMPdWxYhbMI+x+WS0NAIu2zFZmbK8ys9R79g+iG9qLnlCwpFoaB+fKy8Pdv470GsPA==","shasum":"a36d02531dae0eefa2abb0c4db6595250526f103","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.12.3.tgz","fileCount":8,"unpackedSize":253355,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7sIFNUVLFLIpJc5qpsuz9gCemN6Wx7lHxFscEaKvKxwIgcDoxRGFSpYrXherz9cJA4U+k8/Zx2ACpdAh8v16rMsU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaDwLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrolA//Zl9BTQ5rFLF/AAMyBOq1ttE8zSzTDj7h4QspWqGW5GpggnpQ\r\nyJ+McXEp75rX5n77lou7bLko0yoErrPspUalxW4bDASnaLIMfJPk4zk1hMU6\r\nBZcPZ0rEnjlUR/qGYzVncxs+5ytzG6eXVkLAJSjOeCzwgn73YCsWq5298p+1\r\nKV8m98llVAbkQcib9aOb8YUjjx3u7NzTlA7pAnra1OyTHzs1SGxr2jW2WPuX\r\n1CJWxIcp0LGW79pm+0cMZUXfVmw99RGo/hdoFEYbeAtuQxgvkCBRfLDayxe9\r\nMrS6PLSkp1cONgZkAmMM63h6edTn9xYxHII/svVEkM30571SByGlE4eTqDT/\r\n6QY9wJ6NLhYKxe9SMcR3rUZTrmqvGxWJa3ropqC9o0JBZwKd7rNnOlK1gPYM\r\nbLfZC0cnuN0DP5Zs364CyXNnleX8CEBWeM3wUUYDNmKNcsgQakPhWuWLpZU+\r\ndTcImdeqgRq0oqfvAFZ3OFpJ+4V6BfiSHlzapUXgF018XCcJtNSBW37OnWHC\r\n7nu+TE8313oeRDo/FJ1VJAe0uv0zd1nLNYCc+E/b5Ppc72G2s+SNtGkSf8/k\r\nZ8hp3YBgttz42MJlVWkJONQwMpbg8TPJo1gwda8F2CpUGOcy2+STgBtWgR+8\r\nwi6BJCIQJLmOorIUBoRh6avtMRZS90dg/UE=\r\n=brAM\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.12.3_1650998282987_0.042463848706233875"},"_hasShrinkwrap":false},"1.12.4":{"name":"dom-align","description":"Align DOM Node Flexibly ","version":"1.12.4","license":"MIT","pika":true,"sideEffects":false,"keywords":["dom","align"],"homepage":"http://github.com/yiminghe/dom-align","bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"dependencies":{},"devDependencies":{"@pika/pack":"0.5.x","@pika/plugin-build-node":"^0.6.0","@pika/plugin-build-types":"^0.6.0","@pika/plugin-standard-pkg":"^0.6.0","@pika/types":"^0.6.0","babel-preset-env":"^1.7.0","create-react-class":"^15.6.3","expect.js":"^0.3.1","jquery":"^3.4.1","lint-staged":"^9.2.1","pika-plugin-build-web-babel":"^0.6.0","pika-plugin-clean-dist-src":"^0.1.1","pre-commit":"1.x","prettier":"^1.18.2","rc-test":"6.x","rc-tools":"6.x","react":"16.x","react-dom":"16.x"},"module":"dist-web/index.js","main":"dist-node/index.js","types":"dist-types/index.d.ts","gitHead":"1f8f6c135c9e41cd8997354a44c4a3ce377600d3","_id":"dom-align@1.12.4","_nodeVersion":"16.16.0","_npmVersion":"8.19.2","dist":{"integrity":"sha512-R8LUSEay/68zE5c8/3BDxiTEvgb4xZTF0RKmAHfiEVN3klfIpXfi2/QCoiWPccVQ0J/ZGdz9OjzL4uJEP/MRAw==","shasum":"3503992eb2a7cfcb2ed3b2a6d21e0b9c00d54511","tarball":"https://mirrors.huaweicloud.com/repository/npm/dom-align/-/dom-align-1.12.4.tgz","fileCount":8,"unpackedSize":245555,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGs5hyrWUp85beLGFTyKBGhg1X2Je0n+iSqPhUJKyGdQIgICgQi20kpMWNWySbpX8H+MO6p8ybEOMQeUAmzCGqZZQ="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcy6aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEGxAAmVNkwod0Dh1uk8SLAA07XeHH7uEXE5o/u5GuG4B4w1fhPWtE\r\nAqzGqoijwV9CD7rivMj5FyL1Xav6dADZW9nX02vR+v4833u2oKOyf6Ra1g/z\r\nR6LAWK8ErHyfELSoFzAgvkD5Cxtz2kW9k9ufMakr/dEfPK0d1yp/ukxWb2rn\r\nz6cgyt5TnX3Zleu0TGdT40w39qjvSB2ceXVdIoN6tMZCZWrQIpA1b6XhAkHc\r\neujKAFZl18UakJJrAtqwpHxvPwpwIZyfHbJiy1cH2mBMv1lN82n+JZfFsXdJ\r\n2cfWVNZcgMP+xyETS/bLAQJpCtJN36FydXF0YRKMT29xBkjbe9Bhigf/I4BA\r\nSrCoPXTzmbyjZWD2Dya3eIdzA0OTsn4WVC8aW8mXHclFg9MlpH3L/keXPb3n\r\nKScEeae0T8I3KLy5iWBP5XKFlzSnPq4s7t3W/NkiIgPn1awHEK1NZz0ckT8b\r\nfaN4XhWe3orQzDcfIk/WZzoDKdNnVYVcyNfMLRqq6lNcQJp7s9FnulP/PDBq\r\nW3+8Ffacg7F7R6CnLjCFp5MNnW5iTeK+QlIqutBKhsO9U4f73ePBAivxDLYZ\r\nY16QmuKEaP5NJmQnC2GBRosyVgsfF/oyXQftpwE+a3zSZ6g3MUgQAogWbTQw\r\noI0p3yniziPO6suysPFqZcgcGSBnE+14yms=\r\n=2ROB\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"directories":{},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/dom-align_1.12.4_1668492954210_0.7237654981017212"},"_hasShrinkwrap":false}},"readme":"# dom-align\n---\n\nalign source html element with target html element flexibly.\n\n[![NPM version][npm-image]][npm-url]\n[![build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![gemnasium deps][gemnasium-image]][gemnasium-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: http://img.shields.io/npm/v/dom-align.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/dom-align\n[travis-image]: https://img.shields.io/travis/yiminghe/dom-align.svg?style=flat-square\n[travis-url]: https://travis-ci.org/yiminghe/dom-align\n[coveralls-image]: https://img.shields.io/coveralls/yiminghe/dom-align.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/yiminghe/dom-align?branch=master\n[gemnasium-image]: http://img.shields.io/gemnasium/yiminghe/dom-align.svg?style=flat-square\n[gemnasium-url]: https://gemnasium.com/yiminghe/dom-align\n[node-image]: https://img.shields.io/badge/node.js-%3E=_0.10-green.svg?style=flat-square\n[node-url]: http://nodejs.org/download/\n[download-image]: https://img.shields.io/npm/dm/dom-align.svg?style=flat-square\n[download-url]: https://npmjs.org/package/dom-align\n\n## Screenshot\n\n\n\n## Install\n\n[![dom-align](https://nodei.co/npm/dom-align.png)](https://npmjs.org/package/dom-align)\n\n## Feature\n\n* support IE9+ chrome firefox\n* support align points and offset\n* support auto adjust according to visible area\n\n## Online Demo\n\n* http://yiminghe.github.io/dom-align/\n\n## Usage\n\n```js\nimport domAlign from 'dom-align';\n\n// use domAlign\n// sourceNode's initial style should be position:absolute;left:-9999px;top:-9999px;\n\nconst alignConfig = {\n points: ['tl', 'tr'], // align top left point of sourceNode with top right point of targetNode\n offset: [10, 20], // the offset sourceNode by 10px in x and 20px in y,\n targetOffset: ['30%','40%'], // the offset targetNode by 30% of targetNode width in x and 40% of targetNode height in y,\n overflow: { adjustX: true, adjustY: true }, // auto adjust position when sourceNode is overflowed\n};\n\ndomAlign(sourceNode, targetNode, alignConfig);\n```\n\n## API\n\n### void domAlign(source: HTMLElement, target: HTMLElement, alignConfig: Object):Function\n\n#### alignConfig object details\n\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n
nametypedescription
pointsString[2]move point of source node to align with point of target node, such as ['tr','cc'],\n align top right point of source node with center point of target node.\n point can be 't'(top), 'b'(bottom), 'c'(center), 'l'(left), 'r'(right)\n
offsetNumber[2]offset source node by offset[0] in x and offset[1] in y. \n If offset contains percentage string value, it is relative to sourceNode region.
targetOffsetNumber[2]offset target node by offset[0] in x and offset[1] in y. \n If targetOffset contains percentage string value, it is relative to targetNode region.
overflowObject: `{ adjustX: boolean, adjustY: boolean, alwaysByViewport:boolean }`\n if adjustX field is true, then will adjust source node in x direction if source node is invisible.\n if adjustY field is true, then will adjust source node in y direction if source node is invisible.\n if alwaysByViewport is true, the it will adjust if node is not inside viewport\n
useCssRightBooleanwhether use css right instead of left to position
useCssBottomBooleanwhether use css bottom instead of top to position
useCssTransformBooleanwhether use css transform instead of left/top/right/bottom to position if browser supports.\n Defaults to false.
\n\n## Development\n\n```\nnpm install\nnpm start\n```\n\n## Example\n\nhttp://localhost:8020/examples/\n\n## Test Case\n\n```\nnpm test\nnpm run chrome-test\n```\n\n## Coverage\n\n```\nnpm run coverage\n```\n\nopen coverage/ dir\n\n\n## License\n\ndom-align is released under the MIT license.\n","maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"time":{"modified":"2022-11-15T06:15:54.522Z","created":"2015-01-08T04:54:22.247Z","0.0.1":"2015-01-08T04:54:22.247Z","1.0.0":"2015-01-12T05:14:45.443Z","1.0.1":"2015-01-12T05:19:05.091Z","1.0.2":"2015-01-22T12:18:40.473Z","1.0.3":"2015-01-22T12:42:15.285Z","1.0.4":"2015-04-28T12:12:25.742Z","1.0.5":"2015-04-28T15:17:08.563Z","1.0.6":"2015-05-27T03:35:35.033Z","1.0.7":"2015-05-27T03:38:16.581Z","1.0.8":"2015-05-27T09:13:05.901Z","1.0.9":"2015-07-16T10:21:24.353Z","1.0.10":"2015-09-03T15:01:11.922Z","1.0.11":"2015-09-29T07:12:53.011Z","1.0.12":"2015-09-29T07:40:10.743Z","1.1.0":"2015-10-08T06:03:03.822Z","1.2.0":"2015-11-03T11:14:56.689Z","1.2.1":"2015-11-03T11:51:20.619Z","1.3.0":"2015-11-16T10:34:22.735Z","1.4.0":"2016-04-08T18:33:06.095Z","1.4.1":"2016-08-16T04:34:04.998Z","1.5.0":"2016-08-16T08:06:38.861Z","1.5.1":"2016-08-16T12:46:04.092Z","1.5.2":"2016-08-16T12:49:44.560Z","1.5.3":"2017-01-11T04:21:58.879Z","1.5.4":"2017-04-06T07:16:43.192Z","1.5.5":"2017-04-11T08:40:02.064Z","1.6.0":"2017-05-26T05:36:41.210Z","1.6.1":"2017-06-12T06:22:50.058Z","1.6.2":"2017-06-13T02:39:53.096Z","1.6.3":"2017-08-04T09:52:31.686Z","1.6.4":"2017-08-17T09:20:26.382Z","1.6.5":"2017-09-19T08:40:05.972Z","1.6.6":"2017-12-08T02:39:49.798Z","1.6.7":"2018-01-11T08:09:18.590Z","1.7.0":"2018-06-04T07:27:39.740Z","1.8.0":"2018-06-25T07:26:54.852Z","1.8.1":"2019-02-28T12:02:24.364Z","1.8.2":"2019-03-02T02:38:33.623Z","1.8.3":"2019-05-29T02:25:35.071Z","1.9.0":"2019-07-01T10:16:16.147Z","1.10.0":"2019-07-27T04:07:34.017Z","1.10.1":"2019-07-27T04:09:21.480Z","1.10.2":"2019-08-12T08:49:13.295Z","1.10.3":"2020-01-08T09:30:26.712Z","1.10.4":"2020-01-08T09:32:56.237Z","1.11.0":"2020-03-13T13:22:42.926Z","1.11.1":"2020-03-17T10:00:15.374Z","1.12.0":"2020-05-19T02:24:11.470Z","1.12.1":"2021-04-30T04:02:21.142Z","1.12.2":"2021-05-24T10:44:56.957Z","1.12.3":"2022-04-26T18:38:03.336Z","1.12.4":"2022-11-15T06:15:54.431Z"},"homepage":"http://github.com/yiminghe/dom-align","keywords":["dom","align"],"repository":{"type":"git","url":"git+ssh://git@github.com/yiminghe/dom-align.git"},"bugs":{"url":"http://github.com/yiminghe/dom-align/issues"},"readmeFilename":"README.md","users":{"monjer":true},"license":"MIT"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/88/ff/7aaebd0c649fa99743ab3771878acd11095ae72776109653bdaea72bc8156feb634bd6e337faeedc0c31df97fd7c879ff6206226964d03a94e73f745a53c b/frontend/.npm-cache/_cacache/content-v2/sha512/88/ff/7aaebd0c649fa99743ab3771878acd11095ae72776109653bdaea72bc8156feb634bd6e337faeedc0c31df97fd7c879ff6206226964d03a94e73f745a53c new file mode 100644 index 0000000..bf8c104 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/88/ff/7aaebd0c649fa99743ab3771878acd11095ae72776109653bdaea72bc8156feb634bd6e337faeedc0c31df97fd7c879ff6206226964d03a94e73f745a53c @@ -0,0 +1 @@ +{"_id":"@ant-design/colors","_rev":"76-4690b9aed9926a1b47c6326fbc37b4cd","name":"@ant-design/colors","dist-tags":{"next":"7.1.1-0","latest":"8.0.1"},"versions":{"2.0.0":{"name":"@ant-design/colors","version":"2.0.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@2.0.0","maintainers":[{"name":"bang88","email":"sqibang@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"4ff5d94300aed96563e8f55dcdec4e6d43241040","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-2.0.0.tgz","fileCount":11,"integrity":"sha512-BzkbBp9wIDT452Xsf1d6VS/RANg+weYeYCKSNEEVBqiaYxrDp8D9bi2AqeJl3mJcGMYfQCLh7KiDd2TxJHNNAg==","signatures":[{"sig":"MEYCIQDBHghQp4SFRJRBNCaTGLfvX+J+pJPZwXfXxLEfR8D+1AIhAINvklT9sSn3sm6p4YsdgL8hk68QEtGrOmrbavFPCRvr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14462,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcH5OFCRA9TVsSAnZWagAACsgQAJgZOrIEfm2J7oAGOMH4\nqQvbriXfbOdafLsv7WabQW6AXwrgx58+s/ffDRqjwDbdVSTbzdLf2QmAX8YZ\nFAq+/3xIzGb04y7AcGzqJHhFqBQWVHbosADg28SM7yXFYh8oGE2pvLnjrBfV\nSxjOAszGn3eqWaPYyKh6t6oA7N0kDbD5avi4lVnHdC0D1I3dNI+UXnHoagTP\niIycn5mEpsgSKAYobcVIdlXvBmYmfg8lLNaECpSYFGCjit1TjQRkXT5u9mCY\nMlFi0I0ik9HGfZx+kIrcYFjc44xgkok3UeOtI5lFrkXuWu+Mp46+edFCOPoh\ngffm0v9y8TXWavuw8/65x9j3JoEiUGkXDiURvN0gTbn5kyWOJ4F9P8KF4MqB\nuQd+Numh3VNl2M5xIuy/rL5Py3hFdIfn7UnWwUL10RlZZidP/xI9/riEOrdV\nFW7d7fTD8aSzjIamGxMwwJWsn8X+OogjB6GG+QYY7FFB92giVEGSD/jOk37a\nURph/D8bqtJE+PCpQCauWvkJ3jnYDab6SysXzqN/8od2MJlLOI5Q+9jjodNX\nNpkpMZSfKXDqEFo3IdOC5VfbR1Bbg7Ix1KDA5uEIwa/4sYoUhB2ndUKisJMG\nZgQ6MpXPsRM6e47Qnb8YvehT/xvyLIWX+wPM2i9JEDAtfiPpAJG+WXt4MxKY\nrtgC\r\n=Domj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","gitHead":"6ce23e454c7a6c5f48d21c9899be52d287e63581","scripts":{"jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint .","test":"npm run lint && npm run jest","compile":"tsc","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.5.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"11.1.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","eslint":"^5.11.0","ts-jest":"^23.10.5","coveralls":"^3.0.2","typescript":"^3.2.2","@types/jest":"^23.3.10","@types/tinycolor2":"^1.4.1","eslint-plugin-typescript":"^0.14.0","typescript-eslint-parser":"^21.0.2"},"_npmOperationalInternal":{"tmp":"tmp/colors_2.0.0_1545573252655_0.6873181566052557","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"@ant-design/colors","version":"2.0.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@2.0.1","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"a316e478e31a0cb25d699284c44c9272ff289d94","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-2.0.1.tgz","fileCount":12,"integrity":"sha512-m+oCYUM3I6W1uH9/oTWcbzO/aY6NqiS+KL0eWiPTZbp6rIO8YoUHvPlBNHmNNgGT5iX5xOdRcCohewWPqu5U6Q==","signatures":[{"sig":"MEUCID1ZouqEFMWUsKCSR1xYH6KY+Q20m/POta1O1l+xT1nHAiEAu22g3LXdqIg58EZkyK2UwrwU/vG0cqW5ypPwpCsw7G8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14794,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcKhmVCRA9TVsSAnZWagAAPZ0QAI1YYHpzFPB6Hjf4bncc\ng5O46eWAxN3sCkMBk00Hdm7LwdvwwebypxeQQQca7iQWKiky3whyssBxdiXz\nHoq3CgZHEI9XRlBLWT/hm1IUtWgCd7ztRhOiq3szgyCXNyuxkny7nAI09vuO\nhCaBZw/+wcX3tRmt+RcHPbTtpMgzla2WDLixd68q0EZ0qetuVJvoO9h4jUAa\nFLKieFYnGak8WK58caPPtcz5VOD8/6xua3bJILY4tNxVqElOKWu8t4uQUITE\n/0PLMSziCIc49THsD/GvmUgSaVIwzYp8A4T76yWC84O3cNRbvfx/3HFU7t8O\ncDxqrRUt7srl9ae38n6KIR/l2wl7IMyRVrakn/t2DZRCJo0KXuL1OrlohLLO\n0Yd6tuBRMaKNB+UgA7Li6nse4HdbYOH0ZlYQh2SCY+YwJiu0jv7bxsAcFSbA\n0S3ThUvFMI1eAHuUZEEuUqtjuc1dAnsJZHVmKHVGDjxduQ8ZGDVFLQnOb/ao\nUmrbV99usa09dlVQZYdGArP//dFS9ffxz172fePJaujvn9xftmkiAHV6rokc\n/Gn1n35D1tic41M/mQ3xeFyH1TmtQbsQ9FIjq4Omiig31Ecbf3UgIc6mQCDI\n8QtN5pWH2/NPtQL0erXqmndixxGxEzUvPQN0+f5Drcyd0/3Zgz8iCG+bXnSk\nO4LU\r\n=GLjX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","gitHead":"72be5c9ae4bcbb09867d9eb69b7d1c82710659ff","scripts":{"jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"tslint **/*.ts","test":"npm run lint && npm run jest","compile":"tsc","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.5.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"11.1.0","dependencies":{"tslint":"^5.12.0","tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","tslint":"^5.12.0","ts-jest":"^23.10.5","coveralls":"^3.0.2","typescript":"^3.2.2","@types/jest":"^23.3.10","@types/tinycolor2":"^1.4.1","tslint-eslint-rules":"^5.4.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_2.0.1_1546262933088_0.7908680541481468","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"@ant-design/colors","version":"2.0.2","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@2.0.2","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"7ae81391c8527b67de90f5d508ee1b3102742054","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-2.0.2.tgz","fileCount":7,"integrity":"sha512-ioyb4wtCn091DTNr0wZCG+rhq3AWDiahwS3WD/CeG3RN+RRPbR2eaT8O0NxUHTg+KsdtpJoAa5cOtSeMmoKtMw==","signatures":[{"sig":"MEUCIDoJykEx/ZxlR3j5soawHidme24KpaviFfuMpXcFrHVxAiEAs64MKY+6jROJEvsn8o60F0x8sEdV7Tze0kV4InWwcpI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11030,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcKhnTCRA9TVsSAnZWagAA0nkP/3PfBdMWCozNJZcECu3c\n1F1z38ooB47nP8WTQF0lj5Eur8E071sa1uVUAe7IS/3HJUTvIjVxAXdEL0+t\n3C/LXFrBZNJ4n+UfxfAXmSDG7ymIYFXMQLbB14/cczbWlrhBcFf6FxNTVHxm\ne+847qtaWDrwcYl2gE9aLDkSASpf/Gwc3FEifI2m9CpgNYpa8wUVV2nzftbl\n66sHDlvy64/O7fgw24rOYICMwg+QY3ue+3W9KIrmxN7nvN6xmGzdLpzuyT+P\nZTF8Q32Gi91SFx0KBZYMnOE77tvKxV3B/ee0a7PdrkZM0ukc+9HoSvHX9Giz\nCPwBV/J/b7j2ba1X1Y/GLFnHbs2ImSQA/QNsfgKXFtBH8yoPb8Ftj6a2EJVK\n4esM4vpLlAUJIn4kLBIHG5OsTxvCXIq/lOIG30b5jZlqOCJyMhCsehNR8QAU\n2tp7PR04H11/2TMcgziayjbvn4Zo1J/CpSfnyHUQ0nf/yukNlnUSfoczCxcx\nOEbW8uGFBEC0VUETHrLrxt7+cj3eVfq364YtWBylSFo5m5CKftzCRoCoqNOx\ntsRtmGoADIQO9t05sy/9viYI3gkAYxSDJsoUGWwZESHHv0mtgMrwsO4RVf9W\nA2QSO3rRPfzsO5R6IZGlI4iosI/mJY7l76KSAzLrcs7mI3FIvljq6fc1FaY4\nDR3e\r\n=oS37\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","gitHead":"72be5c9ae4bcbb09867d9eb69b7d1c82710659ff","scripts":{"jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"tslint **/*.ts","test":"npm run lint && npm run jest","compile":"tsc","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.5.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"11.1.0","dependencies":{"tslint":"^5.12.0","tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","tslint":"^5.12.0","ts-jest":"^23.10.5","coveralls":"^3.0.2","typescript":"^3.2.2","@types/jest":"^23.3.10","@types/tinycolor2":"^1.4.1","tslint-eslint-rules":"^5.4.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_2.0.2_1546262994945_0.09119376074154495","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"@ant-design/colors","version":"2.0.3","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@2.0.3","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"50f77e5a0d7f49a9229918c6ee4e2859d6cbae06","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-2.0.3.tgz","fileCount":7,"integrity":"sha512-TP+5R0XX+3QfPr87FISuy2/8Puxk8V26jYbZ8Q8bokPWqu73uR9CixDdhNnKqK2r0C7wBUYQc25lFUV1sTpCjA==","signatures":[{"sig":"MEYCIQDQHhXiM4Q8vrjEL1S45K3W0dmKy2Qub/SeCbzF8D+o9gIhAMeDg2d8Rl/3ill7OJpejgsmHuOPvvn7rTn/t3XAaq5Q","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11058,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcKhp3CRA9TVsSAnZWagAAetEQAIk9K4X/jitD1qc4mYN+\nK+YNkfdt7aDncECYcOaoz2RJEBQzrgF3fNCEz84h7QT4M2YnGu7qYRR3zr5n\nwIXEdd7pvOR8dMc2HP5fyutAXqVdmpVaD+VKYWp1aQ0qrzPSFHhfYuB/PcFK\nFirv/W0f7RGsLTyzoqg59/XOHiG6pP0qsIheBqbBs+bwY0fRBApoD0nAZaDw\nhu8oDm1i4H855ylI2R42BOOjkVO1wyrhABKNCWgdROQtL9eMIGVr2hhgtgiN\nEzc0JrmQh2FxBr67ZU5LH93qz5FJH0uYZpQbrzVRS3dzrDG6u5U72ZSjcRjl\n6iJF+btW03cgP7UFKTnsbxANFp1dFBPNMJnyx1d2fXR58ncNitEMhEo6+mbh\nLaCsWPW7yYDnUFXNTTGzU2U+KtHa9nUFpb1x+S5wo6qsay0JKQLMukY26aDL\nG2f5cDGscjX+GRmA7qmrw7tlV69NWlRTRfa+fPB4v4H5D4rvDoo2/X0qZ+Q5\nNFJSYK7s6QigxgWz06pn17B54WSsakzY+s1cLH27cYwrS4EYRq8ZRk/zR4JV\nWYDc95WZd1d3EWENouiY7KtdsGxYPx5kunW25Dzpw5AgxoW5qsjbQ9Qcvnit\nXod+DkOEKd0DzClkI/Mt3x9kAwR7+OLMDfwV+pqm7e4j6lNQP+PgM/l42nWZ\nws6N\r\n=NScv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","module":"src/index.js","gitHead":"72be5c9ae4bcbb09867d9eb69b7d1c82710659ff","scripts":{"jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"tslint **/*.ts","test":"npm run lint && npm run jest","compile":"tsc","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.5.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"11.1.0","dependencies":{"tslint":"^5.12.0","tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","tslint":"^5.12.0","ts-jest":"^23.10.5","coveralls":"^3.0.2","typescript":"^3.2.2","@types/jest":"^23.3.10","@types/tinycolor2":"^1.4.1","tslint-eslint-rules":"^5.4.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_2.0.3_1546263158579_0.1283605836295878","host":"s3://npm-registry-packages"}},"2.0.4":{"name":"@ant-design/colors","version":"2.0.4","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@2.0.4","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"6f3b93c6f947bf01f9d616343950d6e20fb11c41","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-2.0.4.tgz","fileCount":7,"integrity":"sha512-LbqCI95RbOyKTELtbLneEWT0tykWro5436rdy79SlNubaO/wkZ3Wf5BEIsj51l4ImH9iSyqrfyjx7qVL6aq47w==","signatures":[{"sig":"MEQCIQDon738Zld8FhgbH6HNHPbcej3E9LJmeDHxnHn4tjKbjwIfU78z738Wi++SsdLjMA8XT3y34gK6npch2QlSjumgjQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11033,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcOr9ACRA9TVsSAnZWagAAP/YQAJAl8D0/VBRjzLL1hj6E\np3tu0ykCY0D84ZHLkzQae4yG+yP6Eg7kBZAQF6xEV2qf8R1H5VuYH8T5wy5I\nwtPEAQep8VGuAjkw+Oyp6rY5j1Px8Nahe7c+oK7k9r8sqwL2hfswThWIFYha\ntX2UZIwlc/abDPIhBok6U784qgszCWfaNOQE775u7+WvWvsHH17YPL1U1NaA\n2yFdWcZgukHrnLk2bbOB3qB8/ltLMaYLdW2FDLvbUVMtxna3vtNvXnrneM0d\nxmsusEHiv98Qa2Iik5wa0EdisMVEjReGxpJj/lyLydABw/gmihG2wvnkDX7G\nEROzRaFLGIAyMK3yv+HzDib+dAr8j4KPZPc8XvMcMgvMzo47ShLenvmBiGsT\nHiQy9ccKjx8Jtngn9yLWsFrVR84sPtc0arCZK6QSF8uGIeEACYJOZ2mqPW1o\njysaN/WBcd3XYUmGyWdHgSoH7cnIxPj0JgOjx5Jd3ZFQtv+zQty4xr6/y23s\nB7zIzZvFBIRDOowL3OV7wUtqZJPZmryOcn/pN9zjrx40wBncEzgNzLPFdaga\nYeDOd6mGwA9Tnfcai++rBGscnDmA1ondjQsd32fmkyRr1dHpjJoK887Duw84\nnn+1LpnnHfZLIDYrK37O5D3JqvUjypZlId7aHXr3gxZlY//3iJxgwOWESh95\nkdIa\r\n=0wzk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","module":"src/index.js","gitHead":"cef9589af56d968e1657599fe0af200fddcd29d2","scripts":{"jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"tslint **/*.ts","test":"npm run lint && npm run jest","compile":"tsc","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.5.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"11.1.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^23.6.0","tslint":"^5.12.0","ts-jest":"^23.10.5","coveralls":"^3.0.2","typescript":"^3.2.2","@types/jest":"^23.3.10","@types/tinycolor2":"^1.4.1","tslint-eslint-rules":"^5.4.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_2.0.4_1547353919511_0.7891260909849089","host":"s3://npm-registry-packages"}},"2.1.0":{"name":"@ant-design/colors","version":"2.1.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@2.1.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"3261ac02b59203cf75711b0c00cc7dc213cbf393","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-2.1.0.tgz","fileCount":7,"integrity":"sha512-y6E8/ZqqD86MeNp7qD8yrrFsCOeYl7wQaZxZYzztK6gZ1IdIZ8FAez9y8MVIH+AZMkc8opZ/hZ0vG2mDryZbeQ==","signatures":[{"sig":"MEUCIGxvoxz+g/oLkYSf29FYOf17fggU9sCtElkK67KgT+/CAiEAxGWGf5pQecICzsFx+AOTJ3JX8LWSsjfXNeBdg2yId30=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11453,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJch6CfCRA9TVsSAnZWagAASeUP/ApEuOZaZSUOfjqXTrm3\nozA56oTiQnhqhJlXu3tJcKtV7Pp23joCcNp8iGkww5CNNHR5MBERgtV+kWVo\naR+n1bjzVFLsDrPKCABo46VW9OGY3ThIrfyGDurVVmauCcAsXUQ+jdIKoENt\n4my8Jl/XztF4G0x2K3jAQp76z15w99I23ZiA2CF9agcrygYyAE37gvKrxTO+\noMVxjzf7enJ5PiI1ghlRjGpJ3rBA/liznaEQsoit19IPpXAzC1whIvhSQOBA\noVZwtYlBMzYui/hXLLCLscGDhE9Jub3eQaLFc2Dw+LS/KoqDPR821m1xU3dG\naF14D2svBJmGNBfXg37zuZj5qZLYyKOORkyrY8WxnUdCS7WC48LcK+MKdneK\nfvcbGV1+jvQIrrCWLmsXpGcQKgdoXc67cXuoP4XNdW2MvlyoxQrcN2GlDtT1\nEXeZrzJYuHEIdH2usotDWkP0FQ0vZrYKOfA9mE7PTMrxYlaRtrLSx4k3fzAd\nDmCjf+t4UbTLDNLfngyprsG0KQQycQ1ViwIjQLfAUZ0z49jxZKU26b+OHYHW\nLBoBdlosMX+RajUYJSvAYrluTnbtUaofJkzjP5EgYr0OpFUZS/0nnU0Z6ELb\nJy+eUPFehwS9FoE5NLcn+B2OtpCQokGN1Tz5oxYTL5GlMy/ex/mdqStqyZLX\nW/Te\r\n=+q69\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","module":"src/index.js","gitHead":"c5064353d550ffb21f914f28540963b02c69f426","scripts":{"jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run compile && npm run lint && npm run jest","compile":"tsc","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.7.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"10.12.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.1.0","eslint":"^5.15.1","ts-jest":"^24.0.0","prettier":"^1.16.4","coveralls":"^3.0.2","typescript":"^3.2.2","@types/jest":"^24.0.9","@types/tinycolor2":"^1.4.1","eslint-plugin-react":"^7.12.4","eslint-config-prettier":"^4.1.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^1.4.2","@typescript-eslint/eslint-plugin":"^1.4.2"},"_npmOperationalInternal":{"tmp":"tmp/colors_2.1.0_1552392351216_0.23639054891901368","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"@ant-design/colors","version":"3.0.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@3.0.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"a7afa274efe699fe0d79c112eda7496ebbd6a3fe","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-3.0.0.tgz","fileCount":7,"integrity":"sha512-PLc/WwtKY38HRxNvZglNgIMpdmKkgwBngT+bM6EEsM9b6T091FZhwk3Hwk3vIvXwt/HW5WyDXfIm55gT+0nl9g==","signatures":[{"sig":"MEUCIGu13BSC7ZYp++jdRQKLntyeAztu6KrWvF2sKpyuVoLCAiEA/uGGHbNcSvVhceinMQqABDV6K9LDqdKmWE6xblrlIhI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13201,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqz+6CRA9TVsSAnZWagAARlkP/A0oWMCR9Qb7gWbFfdJi\nvELoDj1wROMN7+PkQUxo6HqDthbghkVrvT9+pEly3K9OW4uZqwh+6ITK41iR\nFlPGh7abfQW4g3NLfmtqxVzMIADYcJvOvO8BBRlF9Flan4QYt6MDwy9gbbs4\nR/MGjP6F6VULIWNjdQUBJH+u7BY9F9unswiitYLH0iq8HfM3fenKruHkkc0D\nHQN2OsRD7vYm5rgf3C2Mr3zpHlbSMHCa3WvE+90KgLHwGg8hTcHn+Ir0O5L6\nsQ/gweu6yH7wMvTkiWy5i3LJBNj3y1IUBt0N6mxixeL9Nh1mV32IE7GLbrEL\nSBc9pCPhnjZEgqqrIHdtfykngrmlewVO12419pWMgVupfK8Yxe50291z19AS\nmKU9++Zg3E+fRZGVuCqDog7Qr5or2bnaSOteiqdftWnxnRNEbmnohKUNtiGW\nnaty7TmPJSK7fYPCXMRC3TAuivDrhTcD7tIo0ImTPfyWW1IEwkYsdhCX9hE7\n8RWawk2qFtCjtVwe379eu0JPkyrv8+40sWbr+sNsizgmZoaA7FPiAk4W88F4\nPwqiV/EnZ3s4qmsC9v1kQBXImlvApdKz11SQX/yfNOXSSsgNDO9a04b6LwdA\nUoNBRjBwBx35Ad5Q9KSWbK7D5+oof3kREUFRQQ4JDhk7SAkPenpTBRfqfa1i\nN2bG\r\n=CLm8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","module":"src/index.js","gitHead":"b61e6dd72dbff1fac0dbf9d68be1c100a41011f2","scripts":{"jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run compile && npm run lint && npm run jest","compile":"tsc","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.7.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"10.12.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.7.1","eslint":"^5.16.0","ts-jest":"^24.0.2","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^24.0.11","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^4.1.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^1.6.0","@typescript-eslint/eslint-plugin":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_3.0.0_1554726841759_0.22311194811678714","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"@ant-design/colors","version":"3.0.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@3.0.1","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"4bedd9faf73a8eda734a3e74f1476707282f6ec2","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-3.0.1.tgz","fileCount":7,"integrity":"sha512-VmFxjS185QZLnPfOyUdAC+DGgEeQakSAs2bY3zPb3TZyLGLCGwxjtyTz6ZF8+3WpZIKy/F7+lR5via92NnpU4A==","signatures":[{"sig":"MEUCIGm7oWI7MBNxkja8mINLtVDhVAzFrG843nIC3nfOMCPEAiEAiT7ZszXAQtERopV4KfF1hHRGwv2c3jt5Ys6X4ylMrTM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13240,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcrvVuCRA9TVsSAnZWagAAZ2sP/RAq5KaQaaskB4bQu6fV\nEVJ1R52ni2aJfFOTxoUfJxzgD1Xk5sxIKTc45nk2NHGl8YI/YiZqHqXFMr0D\nKkxBLTxulijisVILj3Gy5qclZMfWDfQH9h0E6uiptyPF9D0vUyHcJX/r0WaS\nqVrlR8vM4klQovlqunUg4aO4nrWDjqpDmmRs4Uaa+/wdiDUKWP15DMHOnCeQ\neqHcZiUAcNDuJdCn/jm6tpuzJ0xQhHAyxRfjE+zTc5ZZHOmPEk1zAn2LEQhW\nntzy/TOXM8zSKbJRUhokVUqTPQabu2WpldicBhgbwe9rcWVT5sHGqK1K4lFk\nMSE0lbnevzzXuyVuwaOf+vNLqF7SOFHqHZhD41Aj2HgG7eZXq9cOfF9z0NOX\nj5MbDoXggeW5B2XlT1NhaVpOxhTMwZJVwgUNA2dURZW5loLsjdkm6cDWg9i9\nk/wJfWhsWXfu/AIzW0yTINgHX0E3x+3galPzymeILqEZZZ2dXu9arMoXV06f\naAAgQ5cDPE2LfULKchX03QtyipKxU+g37g0llee9kExl5w9kSF7LsO1Bc+ax\nuZETobeHp3nl3/YqnlDFjlGw+GCOxHk5AhR5O6Rfs5RSHEczvIaln5AXNW9D\nlM9AjQciC54bZ2SpVd53Pn8FIjuh8pUm2q0ZYn840n0993SJUB6tBEveT++N\ndWfp\r\n=p21t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"src/index.js","module":"src/index.js","gitHead":"d9e915375a5b3c7e1c66c7f9026170a0f734def3","scripts":{"jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run compile && npm run lint && npm run jest","compile":"tsc","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.7.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"10.12.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"jest":"^24.7.1","eslint":"^5.16.0","ts-jest":"^24.0.2","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^24.0.11","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^4.1.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^1.6.0","@typescript-eslint/eslint-plugin":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_3.0.1_1554969966219_0.12064177488703431","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"@ant-design/colors","version":"3.1.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@3.1.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"b7e2cc61a4e86d3d109494034acfb1222dacaa3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-3.1.0.tgz","fileCount":7,"integrity":"sha512-Td7g1P53sNFyT4Gya6836e70TrhoVZ+HjZs6mpWIHrxl4/VqsjjOyzj/8ktOuw0lCx+BfYu9UO1CiJ0MoYYfhg==","signatures":[{"sig":"MEQCIFRh7UwJf25mT5+P7yarVOqidWWDmNePbP5ZLSBizbX6AiAiQxMz0Tl827mKpttZlD8UbMQfTtaCagkkQPLhAOKBhw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10711,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc0lEoCRA9TVsSAnZWagAAkngP/AkgE/dS+Cfsg4eV8cFt\n0Css0VlpigdA5QJ+AR+EDDgH4LRTM2WmMNN1ZtNJo+LgTMu0Nu1svMw/EkDy\nz4yPS5ZCE4TRpKExLh96Jbvq8UA/OrMfdiVt7HtVgFk+S/k5J4X21/xn9M/8\nVuF/lgaJ/atfSrQ75ykeh19qCujKIkcMT/Fc/Bq8HNYzmnGVuD2PSpYDBgZp\npUpx576KH3bW9EQuMmWXWvT9VIEN5Xj9NAdVhpLhsalJArZYFnKfLvv7TBMo\n1M8V2azjdxNstLX0t/9onl9VHn2OgdGCxfEArHNoIRF3xAC+A0P0FxynJRu1\nuEscoZLfHG1aZ9G3KeLkxUBVGN8ZImNF8VjNirThtK3AknWCyhRLseXlT7BR\nRZAF0lkFPRl4U/uzOVAYm1yBtkAS6S8WMPGuwMcImAKOyNuclr2CDm6GdORx\n3VJ4JO32gz0R/Aa82HORLeB/8sU2sq9Eelj2ghZbeuRJp22nEpJTmTilO5iL\n7u8S9Gdw6CCvHlWFPR58j5FaPWuBicPwlVg9YpDi6fNDelYYbKOuug7T9iLx\nxTIVO4qkMuMAWdFgWvui1q7/l7FCOnzP97Cs/WjRScahq8FlNMvaC/9ojWdg\nushqXiKoFy3/4UAMbyv6sSbEXY7kGj1iwyXLfzIX9ku9UcHlnswwu+gsLVxP\ngp61\r\n=QQfH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"lib/index.js","gitHead":"057087534649de08cdfc71a9c59b9126f220e13e","scripts":{"tsc":"tsc","jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"gulp","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.9.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"10.12.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","jest":"^24.7.1","eslint":"^5.16.0","ts-jest":"^24.0.2","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^24.0.11","gulp-typescript":"^5.0.1","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^4.2.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^1.6.0","@typescript-eslint/eslint-plugin":"^1.6.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_3.1.0_1557287207844_0.08795559430906486","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"@ant-design/colors","version":"3.2.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@3.2.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"2b170942ee8b007186a883451317d8cee3a72be8","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-3.2.0.tgz","fileCount":7,"integrity":"sha512-EHqKv0TEVwEAc9J0qi5sbix2LXOg3wq2ZrmnUPLuH2ue+L307A8PrhXjJ30knWzedzm/KOX+YxsXGwESid39AA==","signatures":[{"sig":"MEQCIEe4JWs6TnT64PUEwaPNroxI7CqfHbGUMEV1OS1fWVkwAiApjFmz7iNmXhUJtOtHewpWxQLrTlL6cUcF2GiUW+t/Kw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10710,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZezxCRA9TVsSAnZWagAAkZMP/j3QNB26PEI5rIZonBDB\nJin48vsyTaI5K238sLWW+Air3GZ9Y0H+v6UkI9HeAK0H3ORww8NHilpgq0jx\nPTJJ7l1pG6sRlZQHguv+aC5X0riOJh+UkWZA+IQYjhk/3JluZvqEzFbsi2cY\nra01fUsodZrDYl4RD7ZLLOVqrpDJvAi31njod2g84pwlZIaaEw8VLjL3hRrC\nA0dv3DZPxlqTc0qk78zsnE8kPmoKKCguwz6j37bf9gAdRi2PuPP4Q6pSqOic\n5jJkXTctoTVPIzMGVpPqtgiyNglmGzfViQPFpT4dh4IA9lLB3Ikm7TI/KVh1\nuyyVYPrD3vaSPl4AXRqRo2sbIi8nNMz33DCvINcb6yW9uUrFTLNvHV3QpAHe\nLYR6dsfSeOF/p5hTqaVN052bWir4bDnppi4PzMSfZ4xfLWUg/usMMm8nmyot\nLqZidbhlx9I5zPXnLDdZ941EfUF6k2h5qLjNcrqCFSTXH/fBIVtsXF4zq2at\n93df37JiNHuC8pdB7uuMjHFhHPzhjW8BymfLI1RCylFJHUhLSe2wtwItm4IP\nYN5nejwss7Zk9B2nksgHtHQnt/jPsuR8KvfkfpdzV7q5KciB68eEPXjasqqa\njgqJxuAI4MroL9dF63BzB5YOkOOEMH0v+g34P1/0RX1jh1eK4bxwovORh4V5\nZg14\r\n=AOzg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"lib/index.js","gitHead":"aebf49c5eaf10b8262f03c433e1a025e3d3b988c","scripts":{"tsc":"tsc","jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"gulp","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.9.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"10.16.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","jest":"^24.7.1","eslint":"^6.0.0","ts-jest":"^24.0.2","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^24.0.11","gulp-typescript":"^5.0.1","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^2.0.0","@typescript-eslint/eslint-plugin":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_3.2.0_1566960881048_0.1743673545666018","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"@ant-design/colors","version":"3.2.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@3.2.1","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"ad86cbf2d1a0039d01586aa73a7ea8a7ce0455a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-3.2.1.tgz","fileCount":7,"integrity":"sha512-ibJybOcR1+h2IEr0Yxx4y/Wcz8obEtKvl2EYvxh8ugMkYniGSItpLKGzKNyyqzOaum5jb6fVCyH1aR9VkdpFRA==","signatures":[{"sig":"MEUCIQCsf1AZVNOF2jknHi74hqDsufJ1pxYXfMUZPm84SZNRnQIgdYBgP8JsOmxkfM9X/QC+k5CE6aiDBfAoO03F+d4p994=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdZe1ACRA9TVsSAnZWagAArssQAI85Xqvcjpf3fTChO4dl\npoKsZJWQRCb148hMo6HeDw7ZoU4U/UBuk0Qemw7/GQe1ecJQL2MKg6W/rAPw\nQX2LMAdAN0EszWdFmwF19AREtPorKjYEoeNtT0xFP6Z6yuzUcGqJMn2uHmmg\ngaoDm2up9axFd4IRA69c7ckXpOAAtiOOY47xo7MJqrAvcVWWKkMEXGRO9Q0c\nJaZAKQcvSR/JWNnVaz7TXeODaAQTYz3tevwQwgAAPqzx0qSSYVz0T81At/yV\nQI6RL1h8TtSnQ567o7FiED8/w9PC+g1YPcroxX6dSnilcbH7JOJzlRds+nDY\n6TM+q/TFAbXWo9YBUUrWD/pY0eJsgWYzR9u3EUaQSH3T3j650yrTrS647+VO\nknV6xGgUvzLdrhNG5U3ykqagyhUzTwK5lqtl2FMA8bl3w8l7MGsTKm+tklXB\n0Ee/y791qXJtLDmAJSwxb/70eZxd0Rf6TSRFxddvl6XHumzo7PCFEVkQRLQJ\nRAhfnc1rXzn9Abu7HO7KC26shfUvwtfiYK7EYPaUrMhkUx9xvNzSZwUZZNO0\n666hItfPje59ApLz21DauJHfv33S6n1AQxGeufqZ0pZZkWornB90VFutLN0e\nj+AAG0rY6ofp2YLFGd91+pCktnQLHWpLTChtpYTnSct9WqQ152gwhpwwFksY\ntkAr\r\n=LKG8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"lib/index.js","gitHead":"62a18339de4d9bd73400d980235f7907cc72a5b6","scripts":{"tsc":"tsc","jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"gulp","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.9.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"10.16.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","jest":"^24.7.1","eslint":"^6.0.0","ts-jest":"^24.0.2","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^24.0.11","gulp-typescript":"^5.0.1","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^2.0.0","@typescript-eslint/eslint-plugin":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_3.2.1_1566960960232_0.07239517765431325","host":"s3://npm-registry-packages"}},"3.2.2":{"name":"@ant-design/colors","version":"3.2.2","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@3.2.2","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendzhue@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"5ad43d619e911f3488ebac303d606e66a8423903","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-3.2.2.tgz","fileCount":7,"integrity":"sha512-YKgNbG2dlzqMhA9NtI3/pbY16m3Yl/EeWBRa+lB1X1YaYxHrxNexiQYCLTWO/uDvAjLFMEDU+zR901waBtMtjQ==","signatures":[{"sig":"MEUCIH7VSEtM/kE3X7tNEBJcihFeYwdi9eHXrQAGqjF00lq5AiEAh7NCpZFN9mT2ntW5ZzjgybKB6kuiTq1Ays9A3eA2K+s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10851,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdgx6QCRA9TVsSAnZWagAA0VMP/je2hn9shpqKWzjWxjyU\nINROA3RAxylMknXP3z5Fi2C3RUPj1BkcKRr6/OL71epEZ+8nxRq8h9RMWMHh\nIN48AH21reFjP/wx2OxsU/ckvPYYP8MTPKIhAFgWOgakE8UHpstqnA/ZCcU+\n93LXy8vP+UI6lJcHuQYMbgT2TepeP1zl77sW0skmiUT1Y3bJU32dQFYE07ti\nAFlLKSLI1xZtcN/DRooi1IJJW+nfCaNZx36QfU5oJOsKqRqA8ZY0CJ7yjfGb\nDFXAUxjbgKFewTw15t3n0tinryua5H66Hzcajx6ffMa4ENyEyD+U8VP6UjEM\ncBiYqSfdFcwDZXnyNK9PMiAUe6xLMSO1lIOIqKZjfdDlF/QJS7sdeHWSGYA5\nin5WZpxiOARt89x5ekEu+nF6MSj3WftCWJuoecV+pP8qdyjR1IU5+tdNr/Dl\nCNNOT9X47To1YLwu6UjTilBpBpKyRjXPNfpTbxeFLWYPND/Et8CdYpwezuH7\nBUP6VYLS50weJVN6rF0+GX/P5HReshXTX+eEzqk5YR3aQHVFG4G+ntAzY76k\nrA/jNghJkYezxP38ZbQsljo/RlY5ZbVq0uEfPg3eISlbIxZdcSUqeYlE7mxb\nIVuO/iw+n+CvRvOuQ3ne3eB3nU6GU6a26MBAz+jwlZ4jkp99iQz6y+/IFfhR\n4xA0\r\n=5CJl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"lib/index.js","gitHead":"992c0c4cbb9dc4f764e6909e394fdee365c8396b","scripts":{"tsc":"tsc","jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"gulp","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.11.3","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"10.16.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","jest":"^24.7.1","eslint":"^6.0.0","ts-jest":"^24.0.2","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^24.0.11","gulp-typescript":"^5.0.1","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^2.0.0","@typescript-eslint/eslint-plugin":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_3.2.2_1568874127581_0.22168837405164332","host":"s3://npm-registry-packages"}},"4.0.0-alpha.0":{"name":"@ant-design/colors","version":"4.0.0-alpha.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@4.0.0-alpha.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"43cc67e9f266e31a199856cab61443c98191dc23","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-4.0.0-alpha.0.tgz","fileCount":9,"integrity":"sha512-su3H6TQd2d/OgkEtS+qoY4lYrA9Lp0tUxeU+qIHfDl9MftmQlbCeXiR17p9V0Z4bU1PNIYkAdqieVMdhD0cc3A==","signatures":[{"sig":"MEUCIHCYnzvXUzyBiaBbeSZv+JKHJXgJic7QeqLbZjCTQ7XTAiEAyzlM+AVagkg607A+gK0IBoweV/69tRlWwy8wpVLq6wA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12801,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeA0AGCRA9TVsSAnZWagAAlhgP+QEUa5OXmw/ZDcs6FIZC\nh/F9GCLdneWVrwj9qtTn1fSlJ6s028Wx4ikyYUNrl/+AYVKC4G+WTf23JyXu\nP9Rk6TeozhD0gRjLS/KKRVBooWes3luA+DC73uiXDX9uZvimUXZUcpZIT22E\nDjAOOVTJQW8ELiQDRCe61eVo4j1mtGJj/KtrQe+JOE7d/K0T5aga5Oc5uy58\nsX7L7AjZD046yg3rmoRurtTcP++H8kDlskI7QdDzv2CjZVHUXTrCH85wsD/f\nf8urdqCJBSe6P0/zAgpZTlTdznpe6n8qE1Q/axsbjtHiE0MvMxEHsf5zGEia\nUd4qbJ86RYo7DfrmMqiXnFv8mebkJaUDASZcZSbcmSiEbIRIe+reoEy1QQ29\n4OwEOLdvlSmd+mJYY/Si2eBQgnj+u9QbFEIHhdyY1g3i/FZZVQNu5tBa9MHR\nUjzVKFWK1eO40WNu5oODnR/zt99Bzo+EphIkGyU+djp1c72q2eXYLOY4Pnrd\niXWEt7r031Vti3C9BoHx+OwnTPtMrG0oMNfHB8HZS/S4v0TzqUmopo/12FLM\nu3CwOWU+It3iEy8npJAFxnFgHsalpm2+FozZX7iV+kYbBj7T9EhUDBg4NJe6\nE6vqfbrpy4GQsZfnrkhSHH0pdR4eCUuP5ax9MAzckiObffCoaeIfZdnPQOO6\ndXba\r\n=vWCQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"lib/index.js","scripts":{"tsc":"tsc","jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"gulp","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"ycjcl868","email":"45808948@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"description":"Color palettes calculator of Ant Design","directories":{},"licenseText":"MIT LICENSE\n\nCopyright (c) 2018-present Ant UED, https://xtech.antfin.com/\n\nPermission is hereby granted, free of charge, to any person obtaining\na copy of this software and associated documentation files (the\n\"Software\"), to deal in the Software without restriction, including\nwithout limitation the rights to use, copy, modify, merge, publish,\ndistribute, sublicense, and/or sell copies of the Software, and to\npermit persons to whom the Software is furnished to do so, subject to\nthe following conditions:\n\nThe above copyright notice and this permission notice shall be\nincluded in all copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,\nEXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND\nNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE\nLIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION\nOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION\nWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.\n","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","jest":"^24.7.1","eslint":"^6.0.0","ts-jest":"^24.0.2","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^24.0.11","gulp-typescript":"^5.0.1","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^2.0.0","@typescript-eslint/eslint-plugin":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_4.0.0-alpha.0_1577271301614_0.9987176278915859","host":"s3://npm-registry-packages"}},"4.0.0-alpha.1":{"name":"@ant-design/colors","version":"4.0.0-alpha.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@4.0.0-alpha.1","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"1b0287c936c786cb3a95b55eba40586a13ba5f59","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-4.0.0-alpha.1.tgz","fileCount":7,"integrity":"sha512-eh/EUOGpqyaHZtZ0Fx+mDmTIIMSCvypfFmbhxNgP0QeEBFL48lxUCQNYdYfNHdDrIK1Z1OP/DBlx8hc515CpmA==","signatures":[{"sig":"MEUCIQCveyJqfEkYwySiKJn1H4hkyW9BYB+8yktq8VraXXEeygIgTCeSLdeXmYYIBhCZb1ZL1EUU50iP3feRObNdCOKcR7w=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12764,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeQlq5CRA9TVsSAnZWagAAvv4P/RlFSmnHGWd7M4RyY6up\nueCY26cGNfpm1c44LINMsMCx2ae3DdrbCPIkf3HwWAbSiP3tzJ/ImbVivWBS\nKrj/I5BwR+ngDU7fgTsZF0cvsyH/67Ss+4f688CHZsF8pENGgw1NjKDd6PXQ\n5AFLbsNaTuBStyZnhzDVhXXXtKZkjAXsbhpGET5584bhhliVOJAbI3vhhFx2\ngMR6645QuP6achzlLNdhPpivsyKhNKFe3QqRVP0BeZBJBZaYt9rfKU3PR7KA\nr128iTIoElcd1c9w8Guo0lTWpM2mXprB+w1pnZcRSVSZhExxJqJ7kdlGgM/b\n9CV+rwlIYe4icylGKfyigGT/GkOjUYqsnohCImztQscyhqTGLmt75vf33CTW\n7XOfWSncbgOZFiwRs5aNuRhJGvEWBvvJW7lT2J8Knd5ECskeJTaanp550/wq\nUwqKQfyCjSH4ewNPTKu2WyxpO0FwLO6yBofiuYM16qZMjGMNCB4jOM0TE91q\nvRtU0NHyHDOBd7xgJTr+E70ovsRelcf3ViQvoqJmvhP0iOzcZQDnJaDlPUvj\n0NEnwYv4CWywz8krSooClPER/HMmXc+OQBZZAV4U6QksgHFnWCUqgM90ObDQ\ny+XNBJyxuRT0FJqhqD5Du4y6o1fHWc8Izq5OPKTsH1W30nax4ZElFDzl0fYb\nkTKW\r\n=4qHo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"lib/index.js","gitHead":"d09ee22b0ffa63958f19a8028617cedec937e2fd","scripts":{"tsc":"tsc","jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"gulp","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"ycjcl868","email":"45808948@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.13.4","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"10.18.1","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","jest":"^25.1.0","eslint":"^6.0.0","ts-jest":"^25.0.0","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^25.1.0","gulp-typescript":"^5.0.1","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^2.0.0","@typescript-eslint/eslint-plugin":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_4.0.0-alpha.1_1581406904820_0.23769836377595976","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"@ant-design/colors","version":"4.0.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@4.0.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"bcc1183b1fdfd1587d4e655035b3fc47bf3a4ab6","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-4.0.0.tgz","fileCount":7,"integrity":"sha512-XDb3Yc70UylZiSIGhQ+y05BJk2XXCCtxLY1UHESZ/5tGT5hlYfJBJik7CSZOyg+sbs5UHdVZpywk+LJDEXyqew==","signatures":[{"sig":"MEUCIQClLrwKEOGa988A2hxSMdF3DgTMLQySP3GCCcWl/OcJ+QIgRuB7odbbJo+UMvk1x5CASfgM+yBQlOumF4wZmpFUv0o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12756,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeWRU7CRA9TVsSAnZWagAA3C4P/0cGmjQv621g1KNWSyBx\ngppRvc7pzkUA5VchvYF+IvyBmdeozoCRN/RqrAuD7NNKWwEMeGqchHBcy3jQ\nKLNGyzSahkYTDgvDT8RJG/RsrsbkQ23CnMTsWi6JavX7aa8wugPo1ji4fXC6\nqSzqBEiwpt9s1CfVo7ZdlM6W3XflG46IJJbug8XT354G8FN2ZYz7fvgbF83V\nxIDm8Eso4Rdy3RmtU+02mY0jI9+PTm1VAniDUPvcbkVqxQt7SEaqk8c1JD9F\nglZItFWIKvotq21gtM4U/I4LI9AaURjXizUOodKOQ4wt2XXRNejAHaXQURRl\npL9aIWhmWJ1gtwhl5FsVcPppZvkDVk2t4kKpv99Ny9NXwEfXaPzYIUHS1QA7\nYUDcLZseFtZ8BMS6Rta2V6MF7Y9JOSBA6lb0QWeocVWShKx/4qFtpRfgESTb\nNFwSMpWp+7K8gHSrIa3yKO+5afKa+iV6k3oJdJzAwfqszHz86pNbToU6GFDd\n2AgEheBk7Ej/xsAA4zoW9KVLsbJe9SxFk/YdVtptvo12cKjv5b6D970YcNXk\n6Mtc/ZMh85kUnVshDgPRYHBb5+9E7hAcIBPImJLg/nBceIibazSTOXvOwSKs\n3SZFBFpKnaZyCWI1BlXT19EoN6ruA8o3nBIJPu+qJe7QEZ/vYF7SsfHDBBo2\nctiK\r\n=rmUd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"lib/index.js","gitHead":"3089a2ccc6b4f0bd9abfb5c71ae8b598baf36600","scripts":{"tsc":"tsc","jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"gulp","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.1","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","jest":"^25.1.0","eslint":"^6.0.0","ts-jest":"^25.0.0","prettier":"^1.16.4","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^25.1.0","gulp-typescript":"^5.0.1","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^2.0.0","@typescript-eslint/eslint-plugin":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_4.0.0_1582896443319_0.5567745978286154","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"@ant-design/colors","version":"4.0.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@4.0.1","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"6edab85c6d1ba51accaed4ae64fa934dd5ebb498","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-4.0.1.tgz","fileCount":7,"integrity":"sha512-7+kmbxCHw0l7JAKCxtUdaR7WxdeGX5i51EAds1eYfSPHi5f+RbIl45tglnCnjPlrFY5o0sekda6BrTDphjajUQ==","signatures":[{"sig":"MEQCIE8Ei6q0e2ClYyU2lhBuaGaip9GSJICw8yP+g6AyWJ5SAiBUeI9JYI6J7zlaZYi26zJyaELJ8IAm1yMgbstqUENVOw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":12823,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe6tcVCRA9TVsSAnZWagAAGMkP/0WBjsvUu6ps0OrJjG2P\n/2wGu3RnsQBNbHORN76fdrlu9vHD8YnZHrteNDoIpPU8IAfIiMD28ooq2fCD\nqgB251CJF5jk8EECCcm73W2+J5vhPN2rAipl0D+iNRduuHGd27RP2BW/EkAM\nHtwvwxeg1V0EKX09HTzLWNEKmMr6misgDB7wLycNOSa9kkhqz81TsHzh3FDE\nQSot4keH4UOwtAWRMwvHoseAxyl1qU5m8k2In7jCwsvSXFC8kY9Uf90f8VC/\nUNgNQ8/+x9/rwmuY6yT7F1nHeEQdu34YN9oxOygzDcNXD9WDWipzc/hoPgSP\n0AkU0b47PAv1t0j4UYhZ0RA46lOA9uRfaB3Uh6YXdjKGbOKdkiAD5PwmgOKZ\nYds8G4OlPaiPCTuBQ8pzrOudvhn0fQmXDKCg8GBODDIlvwd8j7AmSQEG2tBX\nz+rbuNn8xccPjZUK1FR2ZMhuXoIWlFGeP92hYiqjBGuRdjPQS6tWkijI3wzj\nwx0g2upOwiKAyltgIDfiTyJp825vIJhaO+5HfmVu81HM8nfzIt1L+hDJFIiO\nBwABD8lfOpeUAvIIpuiBC5z7bJH0VEk88vXM0xKuYgeyg4nArz+W2GzzfNoD\nvhe1mmjkZOIBEBF47RkOTB8/sBkZDaGvF5xyKJ2I8+cDi85uxQB3+y4T7Hb5\nw6hA\r\n=7D1H\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/index.js","module":"lib/index.js","gitHead":"17fa5ecd04b2a88be4228b1b5ada7769d286898e","scripts":{"tsc":"tsc","jest":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"gulp","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.5","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","jest":"^26.0.1","eslint":"^7.1.0","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^26.0.0","gulp-typescript":"^5.0.1","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^3.0.0","@typescript-eslint/eslint-plugin":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_4.0.1_1592448789183_0.8208464941280187","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"@ant-design/colors","version":"4.0.2","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@4.0.2","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"e26ebc6dda05d7401d7aafc4a62da3061555d121","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-4.0.2.tgz","fileCount":4,"integrity":"sha512-vxFzw50wNkrwVNWqHkRY4BAyFk3DQmcT2jXjdb4GDSRra5oZ4/pyIhwLUs6e2FeuU8ZsoxoUMlMBp6MgOEbohQ==","signatures":[{"sig":"MEUCIH5OWlX4+GRhxHLvdQp7EYXBsxIyJodDPOnNGjgXpb5mAiEA2RqDy2kmhPDm3aqH7GhUylb9eeuAaozNAW+zY3v9cSE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":10695,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFr/OCRA9TVsSAnZWagAA1dYP/R35Q4Vq4S8VMLW/ebvt\njirdrWsHqtAjjhetXLW8qrT2TizWjYf+YeJFRSOxm+iLOMigx3v/5aHWi3/T\n0KDjohVqx1SN7aoLNVBezcaultN8z7e9kmvkQJVNYsoMtX9yE1dpT0pgedxt\nyCTupJJpvH8tURRGJcvbWbQyvYC1MdL+6qAXwR5cXrVu4FcU/ARC35BichRA\nO60X+MMF3Ye0YxJse8ZTrYHc4U5QHpBQiN5feCE4cmloJj4XplSVRu95GfWM\nFXOh0PUTb1kKfRrr26wQROt07tDTFQ2IqWXerLoex5PTk/486cnfUIB1PJGb\nradIad51jreRyalPOscQ73CQ7G1xdx1HJzKuBdLNRo323l4DR19xwJlq3nhD\nidqS6bBilmCqWDgZm3KdkC3DxWIyA+x4qJCqV1fxb7EWEC87HPxLXG7XDdM+\niVAhxnCQFlb21nmprkCyv4+zRn0WSTuRp7NNa6AsCPNVgtX5064UJF1CfVkZ\n/UXU9B6ZgivgKgKF2hhIYF+YD6f+NrV0IjCcVYEeLseCO7FnUeKTcRohDqq1\ndhStLiRuapl6u6cSRnRICwtFqky7OXo9UKKyajHQVg1AxGL+u7wtCcF2ozrq\n556ymcXvf04F5DTuDiUzXTNA7VIsdGfkQ75+f2GIsH26iDs3rocBWByw1SUb\n2wI4\r\n=Hi23\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"3887d81132bb41ba10c372261d44bf4417a0d7eb","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.5","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^6.3.2","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^26.0.0","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^3.0.0","@typescript-eslint/eslint-plugin":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_4.0.2_1595326414463_0.38232655551546624","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"@ant-design/colors","version":"4.0.3","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@4.0.3","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"d5f5edd4669e8e9464277d53174b754cea139e1b","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-4.0.3.tgz","fileCount":5,"integrity":"sha512-N+L9Femz0afCwnd48fTGcGX7jYfxIdUfYUVqEJh/4uYdYzW0j8nw+irqHfTAaxVhjBVKdIGdrmh2uhpHR6UmZA==","signatures":[{"sig":"MEUCIQC4cIGMdxxTKXA6Ro6DWxTLlkqemt4qVNVMc1tBrBTTagIgaTmestu8tEjG2m5chG+/tW/Us5jIVZ5+olTCYgJxBPA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15338,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFsCdCRA9TVsSAnZWagAAVYkP/jqJBHvsGDcOxgpntIPF\nyvKnt7EqwOW/MJz7X/+d7a3fQuHBYsjqJm+IicTtM9JMZZfASqYPReQeProI\nQopzMco//mGNh062z5ieEICIqLrX+xXeqRu8Kmalh5nqsR9KP86T+cBGVzmd\nytpKLLaO1BrXkqpntEbwc4Nh/tJHxuUfHzbYGyDk7gJmWPaiCqw6KhppHBZR\n964CzAMB6NkmXdo4meoYC8fS5XGM+Nk8pD0sGgvOPOtdS8iGyE1Bhs7XTuUg\nGtjAwLCoBTmzJleraH5xE5hoiKYir41B53sJ0xE3+xXxFgqEmRe5/LPc9jkF\nWjpwx2oahZJ5qClyJliUhriv1j1R54u8mh/9eikS0s4YuFwcYzYisp/xh6n3\nfqo7m4+o2CQLHidE/e+pqwXCbhCZaT9G4Ltc0yM/g101pnt2+KHSnWJj2bxP\nVGE+HB1R7Y40GorBFVL52OzZkFZndz2w+L+S8laCo4BXWe3bxkLTdRH/QgG+\n4T1zxv1pytLdROk0aHqvxWGyLsfpxeNLSgNV4tjg1EYDr3IQ1kig1mtGxXMb\ndDeK8HxEVK0uqgyb8amuDIfmsxx6bF4ORKuJt4PSQgo85B6ZUIyYceJ+I3t2\nuAHuq0sFrqSMfkoD+/UzqHpufFiOTZRO7mga0VgC0YQAZCtN777BTsQPF1RC\nIsac\r\n=Uaih\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"d4223ff6df686db278a514617c48fb860e9ddd4f","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.5","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^6.3.2","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^26.0.0","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^3.0.0","@typescript-eslint/eslint-plugin":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_4.0.3_1595326620757_0.5713911669097742","host":"s3://npm-registry-packages"}},"4.0.4":{"name":"@ant-design/colors","version":"4.0.4","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@4.0.4","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"f3c494ad089ff62741bc8f424175db97c6fb0fa2","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-4.0.4.tgz","fileCount":6,"integrity":"sha512-RBwNDlAFqkts8cg7jh3olBdX+mIEZng3JyESMjfX4guFoAyfD254tJJOU/LgxT7n9BPikmNyMTp/d/88INOR9Q==","signatures":[{"sig":"MEYCIQCmlYxmVoM/4YXTruZEH/Kvr248/mFrKbzXmQIEYUIEcQIhAOwF11r09MCn093JcH/C6slq304GxFvCYH7Pva3AG6/2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfFucICRA9TVsSAnZWagAA5LQQAIMlE8TSndB9OT6HUIlh\nXjit7mzU0M8QAFSCjKrm9Q5PvuBkORGKL1VL16ipQwmThBQWAdaPpYu3Cgrl\nKLbybnwsY9jr86pvsw4z9WlG/LmDYvwcay0cWCDFtNGNStX1qYfxdZyzzPNR\ncoUIxkywTXWu0WK+864oOZjo5ppB6zWt69bJZXLUCKVqrcsdsmPZCv1rbSie\nUgAiMBFUxTY6Oodqjp3MnKqNTLZzh5pNmyBBInAfF9yB8Z9yQUvToM0EwWJg\nFNqRDuDpvRf937AhWLbOHVJ9MyrXs+m9g8WfSPDg1pLriGFTBASYYGp/iDiQ\noyi9jnGFlWua/KWuOP2IBHQSpgoN8RxpSSbQkjh/sQ1tv5eayecE/p+uRDUc\nY4/Fj7kVXUy2d+fCZcYO/bOm8DDTkNpsHH9v94JgZcL3PnboYUpHi5a9u+tr\n5reFjlJtoD/GQRMbm7MHnTpawnFrk3ukRrqYtK//zBwUzIw2RFTTueAWiFZy\nVlLpxwBjXvPqWrN4Ykel/LeZjBrzoqPOcrbz9aT+CTfmu5n+l5GUxbzR+O8I\nqmv3sr7jy0/h7yp+bHZUjk4ZhGbwG1I2o8X6N8LoAH/SiceLQGvnvfNTu4tx\n5KYISm8f3ycSQQbv9TBpueI+qMI1lJ2NMsJOF2/afbwwDoQU3r+CYWMYkAOE\nAjKT\r\n=X5MK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"b1b1cc03f82d73cd2db783bfdb1c3dbaf61b9b5f","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"dist/src/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.5","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"12.14.1","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^6.3.2","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^26.0.0","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^3.0.0","@typescript-eslint/eslint-plugin":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_4.0.4_1595336455896_0.5091539978094106","host":"s3://npm-registry-packages"}},"4.0.5":{"name":"@ant-design/colors","version":"4.0.5","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@4.0.5","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"zombiej","email":"smith3816@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"d7d100d7545cca8f624954604a6892fc48ba5aae","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-4.0.5.tgz","fileCount":7,"integrity":"sha512-3mnuX2prnWOWvpFTS2WH2LoouWlOgtnIpc6IarWN6GOzzLF8dW/U8UctuvIPhoboETehZfJ61XP+CGakBEPJ3Q==","signatures":[{"sig":"MEQCIDUFCtVwYFz9OiWTWFBEvMsPIYp8quFCVAPEZD7wRKyfAiAJQ9bA4TiGZxnbdkIDtjl13lwCq1l4ZJoxiCHT4PsubQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17047,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfKlrcCRA9TVsSAnZWagAAOPMP/2nDqRIqd0XiCVwGBL3I\n6bflBZZAOkJ4rDrWOJZhS6zatIixYtS7V0JSz3DHSuCnwurst0JP3bwmpvCm\n23nqJuOHvY+ba3RNz9OZIr88vUtuxb9CRJ04eXdZEyNcUiuBBjFDvY86TaYh\nPvv7tgg65bAilGCCxeN/WryN59QfVbmzl8ChzKeTAhAkOXeJIfmsdhZ468Ml\nluikiLd3HHqmFxxgQ3XxpgaOOfjUzwGU1LlTpmxTZEkJh51wndFL0f4gD2+m\njkr7hLEEEpQGD005o1NnqccbkdlcL/oCa47SGZ5yT3SJPkzzk+0cmy04DRBL\nTBCRXzvHk52dESnJh9F8gGETArsjW0LsX12dfNuA806keBIPS131kbTahOW3\n5NyN1SNVu0vZ3mSBUSpOTgVmaxNlyjr5IsNehivDFYPhgIvN2ZMlXemPRLur\nNpVn/tELAzBLNaiuIl6HFgpBDi6T2AVl20Z7OsnIQyxTlBZh6kLp8P8h3Khw\n8WOqgFjIAe04W18u2VOGAdVoE9qnbohdI8pBgtrtBcWc7wsKUhAAc0UYT+vl\nznuNvbHvxw563rTvEmMc/mTijjYDWRcTo2aRRFSC7LjOA1+bhOfbjlKj9N2X\nVX9pCetrdeBGO2JOw6r8x2zoEIQcJ/p63e//rZgjqIBpV2GSOOERN9mFFzYj\nV41s\r\n=7jNe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"029e690c7ec0df4080ee2557ed5642e3f99beade","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"dist/src/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.6","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"14.6.0","dependencies":{"tinycolor2":"^1.4.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^6.3.2","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^3.4.2","@types/jest":"^26.0.0","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^3.0.0","@typescript-eslint/eslint-plugin":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_4.0.5_1596611292314_0.9797388451529268","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"@ant-design/colors","version":"5.0.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@5.0.0","maintainers":[{"name":"carrietan","email":"12mytan@gmail.com"},{"name":"mmmary","email":"1084406753@qq.com"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"duxiaodong","email":"duxiaodong@darlin.me"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"46b73b4cc6935b35fc8b84555e8e42c8cfc190e6","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-5.0.0.tgz","fileCount":7,"integrity":"sha512-Pe1rYorgVC1v4f+InDXvIlQH715pO1g7BsOhy/ehX/U6ebPKqojmkYJKU3lF+84Zmvyar7ngZ28hesAa1nWjLg==","signatures":[{"sig":"MEUCIQDuMjYT4HZqz458xNarEnFftl3CyrXA/Gro1MIXEYlpawIgaAHugdR/CZn10q+WIOxkgeMHBIj/e+ihiWyve2fawMg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":17005,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfrLPgCRA9TVsSAnZWagAAM4kP/jqe5Z+UI56GA9xJY8LQ\nsQFFwpvpcixP6eC8AhECk034aE2VRIzFdeV+wGsqPBS/9ImCwGTh75KGoqBn\nlx8WR1LbVFkcpXQs3p84dbiMH4wU5AOaPcObU+rgDdOjkv944rbaxFLDtvhZ\nyeX8Bn7/9p+PhhhYDBjw/8KBvuL+9ed+S/5cCjqFpZ4rZ6RIrjycroZoUau6\nvmxA8SiIyfWaOkLuFcVaZyyXSRYsnvPPknt7Fo8/kEj1IeBDsob78bZT9ArI\n6bHD/wK4+a3wXVrnw9zKyHRUmkBM+bAnxvtqMDqYffmJ8J2ecy3tTICDhizh\n84UCqz3GHvLf2qPMHzW5VRH0DKod+BDLPj/1G+TO+/3BM1FiIUs1p2iWBI+8\nVY+ifgw17u6AST0RbUj5Jh4MVFzp27txlsOUIZi4Cr6vwHawaiBVmKcq3Er2\n3m1x8i0rLUIBnMAYzgAQW3KHWfdg9RCDNanAOfn4AruVX+bbLrrCn62qNoQU\n5lKl9hDG96N5s1hWK2pwJkZYdgvHDtAvpCCR6Vj7wz2VlzRJnzDZLxbXRPpk\n7kLZheQe1sI+SwP5Z3LDWC4e2S/Ey/6EA9AKxEo50w11D5Em7q6aJj0wUkcf\nS7igCPybIJOBhpTxRvqijYhnJZMviiwcixZvv2IuNojY/z6Xj/4UWYCpwwIx\nlF0N\r\n=PIeg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"a22a400c1a7bf407c06808915ab6e4efe80326e4","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"dist/src/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"7.0.6","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"14.6.0","dependencies":{"@ctrl/tinycolor":"^3.1.6"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^4.0.2","@types/jest":"^26.0.0","@types/tinycolor2":"^1.4.1","eslint-config-prettier":"^6.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^3.0.0","@typescript-eslint/eslint-plugin":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_5.0.0_1605153760116_0.9535341083864515","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"@ant-design/colors","version":"5.0.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@5.0.1","maintainers":[{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"duxiaodong","email":"duxiaodong@darlin.me"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"mmmary","email":"1084406753@qq.com"},{"name":"carrietan","email":"12mytan@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"09670f2f44a7473d7bc01be901c48ec10f12c7a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-5.0.1.tgz","fileCount":7,"integrity":"sha512-x1TUaRILaqy3zgFNo+kIqOa3eTYPt81H1/3E4dCjDP4Qvk/xaPEizLDFdRUcIx0cWwyu2LklwfyLHWpbYK8v6A==","signatures":[{"sig":"MEQCIHX/inUhQkDNr3ZikSk0gJKFKK9uIT4EhVXegZ+5iIy9AiBHswz9pRCdt0NshfSLEmJRL/8L+seBNEN/hrNA9YbWlA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16970,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf1tKiCRA9TVsSAnZWagAAGBoP/i5SD0fB25qmDG9MxJR5\nQSrezwb5HzlBjGB0+uKpgepP3wPci21i1u7iPbxjWLq+IXMgJKqwynjiodPp\n4IVy40PyVGa1e7aHtdQgGmok+YILsMmkpkah0PEjOhcSRynLW0refcvXRmDQ\nxwXfqR2ivYrI0uDD4Us1BmkGOfbm7u8xWPUkN5SfiZp2jbplMidVbLjMRFS3\n8c0ZznEtQPMYDcUkHrqTx5XGT4zZsHpR//QXQJP1l9F9hFjntMUzETThB0Lr\ndOLf7RqRLJlpJWxEIP4+3HALNwDeFV9Q8tOa4WqLKrUTT6ESPm98lDjOFeW1\new5fkVC4534eR1JoeQ0JPchevQPZ481aPdz61hocx9l3Ortt5iNoIzoTx1rT\n1Bx5EoztNEFnq/YhITDcjWOozQTGNXx2ge4XiphIZiVn91fPF84KXQkr/dMv\nTsUeLP5lYvcG7XTwrirwFk0Lqix0V3Eda5mFpGW8jmTz84nM1DqyTEwNwy9W\nxGw76ZfFasgKZbgUXF75hOF059+Z2KvKPfVFybZSVSyJGw4VuLBaEaRk4MwK\nuhsbhKNnIRYUx67ByX0L1J0DY9ZQ+TN+YU5x8OG2guMPkJjrCyzrEXoF+3lF\njFOAvrZmXN9aINk19LBoOGgap3ijf77ydUVoeNfICdTT/BrH3JXcJsExvHXs\nTaIx\r\n=dWFS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"aec928befcfcbc63d87c79507f193d2aeed5ae11","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"dist/src/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"7.0.14","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"15.3.0","dependencies":{"@ctrl/tinycolor":"^3.3.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^4.0.2","@types/jest":"^26.0.0","eslint-config-prettier":"^7.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^4.7.0","@typescript-eslint/eslint-plugin":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_5.0.1_1607914145947_0.3151225597529417","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"@ant-design/colors","version":"5.1.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@5.1.0","maintainers":[{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"duxiaodong","email":"duxiaodong@darlin.me"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"mmmary","email":"1084406753@qq.com"},{"name":"carrietan","email":"12mytan@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"7bd7096c2d34c401a4473c8344f275f3a11db161","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-5.1.0.tgz","fileCount":7,"integrity":"sha512-aESiQccf57mO/+td+RlFy3OGhv72Z49AvwmqJK3nfuH8NdVjfpxBSAamnAMp/7yYBZkdQTUvpCI4qfG9eLsJmw==","signatures":[{"sig":"MEUCIQCubb7rmdI/f0xt+RFuND/RLbyknmovsWEuD3pC6U+IWAIgCncMu4NCIAjf1Q5vOaVu9S4YHBKUcKlicFq9WApYjUQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":19015,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgIpKTCRA9TVsSAnZWagAAulQP/072e1JiH6EdcR3ZnrNT\nRuMiJ6LFhc6x5uHKhi+joahnw1MFeEGqnDA/x0Rz6JVF+/kjeNaLxfq6gVnz\nnGEWdNhY/GxBfsDq4FCMum3SmIN2RsJnZtQ4jB8xC0POnJxw1eiyMP7u/2i+\nJLMPrWum8VHBvZ3ekm7jmdROllro+BUuXn9w5WMI6V7ncDuX8aCr4qFKocXE\njv7ZQkwsjNQlyUn+N+VL3xCLKXPRQSiCzsNZeTWJ6SePijVZUwjrIw92l34x\ndTJ5f2YQLEBCOqaXJjM2UOVFEakekHhOyo6RADqyIhKFzeODsrOe/DlMxxBQ\nDH7cnGZko1h8VtIlZYhyBf8jJrcQBGawHBEj4gxQkjen+D58RDq/iKKKu6XD\n11I+dltsUf1ylbi/ebyWVbzrYJISM6bwpvPWqB6eDtJqFWp0SRq/NxviGZCo\nXTSk6KCgIg+0XpOpYiY9F5cC6Ge8J41UTktPKxx0z+NJ7vtQBdWCH0scvHZ2\nOWhEsQfhCas09T0deJ/4WAKOo20OLhqjej0iDhN3lvShAENFx1HWBM9MDWw9\ngYo/SHqd7Mh70RcS3lIqAaJoCIhOr1tud8pmSp3IxXZmGGK7j0NsKZWnumAP\nN5GTnCO/0BLfExeRL9EgBecCHqeUa9Uoy57Is1ECKOG7Kd/Snstdf/PCmnpo\n7cco\r\n=yyfs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"6edb6823c06c579d69c68280921b0b1237233b73","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"dist/src/index.d.ts","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.8","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"14.15.1","dependencies":{"@ctrl/tinycolor":"^3.3.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^4.0.2","@types/jest":"^26.0.0","@babel/preset-env":"^7.12.13","eslint-config-prettier":"^7.0.0","eslint-plugin-prettier":"^3.0.1","@babel/preset-typescript":"^7.12.13","@typescript-eslint/parser":"^4.7.0","@typescript-eslint/eslint-plugin":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_5.1.0_1612878482947_0.16449987567116087","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"@ant-design/colors","version":"5.1.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@5.1.1","maintainers":[{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"duxiaodong","email":"duxiaodong@darlin.me"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"mmmary","email":"1084406753@qq.com"},{"name":"carrietan","email":"12mytan@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"800b2186b1e27e66432e67d03ed96af3e21d8940","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-5.1.1.tgz","fileCount":7,"integrity":"sha512-Txy4KpHrp3q4XZdfgOBqLl+lkQIc3tEvHXOimRN1giX1AEC7mGtyrO9p8iRGJ3FLuVMGa2gNEzQyghVymLttKQ==","signatures":[{"sig":"MEQCIDbHawFClzjcCX9px+j14AW0tm2zau+SEakveIMk3HSSAiBVmvJlNf5H4uIawuFxLIz0bGNxD9btqn3pr8fkT5xJSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16970,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgI1D1CRA9TVsSAnZWagAAfl4P/0U+BrpPKOcKqn6KBmm7\n/tKZlNiLwqdYC0s9iTQhK1k7D2uqDYPxKL7tgYgT1JGBAzEi9/5v1oILPThC\nR/xq6BIk7VS0uSqkDaDRkx1nqmLf5oo1xyxn5vux4hnvUokdlbu3syMHbjOg\nAwMisvAK18SgwXDlfeheqt+Jm5+0PNgcEVs/nYX/15+0l6APjj4jjyrpBN/4\nwbop8M9BathXL1O47Aq2WbZQsre2OCDirVzYxii3ddmv93XRs9KDnNlpJ6yi\nO9/RnPk2UVgvAzj9xaCPROP3B1wenLjMr2KsQrIfTjH7PQKaNXB1wCdiPq9C\n6t1xaRV2+e/XLdDuLPAGLuxOPigCblKSWqD6Z8xEwGvb5ST4+4DpLE7EaApo\nDEUiwaBKhkQ85ks+7EVGNu+7r1b72PwvusPiUPjH+kZkwD0ScEyWsDIn4ulq\nlNC7YBTVl4azwmBqDQv91U+jXlHWu+8eniIX1GYI6BB1inI7ja0K+nRXlL3Q\nWAoK0lafJSakTddCr5xRYufb4/cPVUwn2MVmQQp4rNRDHlsiLRo79JW4L6WJ\nMFuEYMz3IvMdRKgmzP1ladzrXbsXniUId+VUZM36/a9QD/dEtidGnv/mQgfw\nZecXaHILuqvveNihbWh+6h3MH9UCu6t5LXg/oN/6FtGqYkJDhEMljT1jJrNi\nwyRX\r\n=TBQT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"15c102d837479d9cb88b83a42ec254c9a9b57a72","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"dist/src/index.d.ts","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.8","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"14.15.1","dependencies":{"@ctrl/tinycolor":"^3.3.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^4.0.2","@types/jest":"^26.0.0","eslint-config-prettier":"^7.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^4.7.0","@typescript-eslint/eslint-plugin":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_5.1.1_1612927220673_0.5032023046876108","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"@ant-design/colors","version":"6.0.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@6.0.0","maintainers":[{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"heskey","email":"hezhiyu233@foxmail.com"},{"name":"wilsoncook","email":"jackzcs@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"wendzhue","email":"wendellhu95@gmail.com"},{"name":"tangjinzhou","email":"415800467@qq.com"},{"name":"bang88","email":"sqibang@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"gongzhen","email":"gongzhen1027@hotmail.com"},{"name":"dahong","email":"darryshaw@gmail.com"},{"name":"ycjcl868","email":"45808948@qq.com"},{"name":"kn9117","email":"1175863618@qq.com"},{"name":"esora","email":"tygyh2012@gmail.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.com"},{"name":"duxiaodong","email":"duxiaodong@darlin.me"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"mmmary","email":"1084406753@qq.com"},{"name":"carrietan","email":"12mytan@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"9b9366257cffcc47db42b9d0203bb592c13c0298","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-6.0.0.tgz","fileCount":7,"integrity":"sha512-qAZRvPzfdWHtfameEGP2Qvuf838NhergR35o+EuVyB5XvSA98xod5r4utvi4TJ3ywmevm290g9nsCG5MryrdWQ==","signatures":[{"sig":"MEUCIA3gct8+mY5pwkKw4HbhhZiKkbI8ZLCGqVuuTneHGQG1AiEA48ern4pEWi9NGqh+7Ed3kqUL0C2BH3cFnunHLr0XS2E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18771,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgI3ElCRA9TVsSAnZWagAA0MAP/2jTcGO+oNBk02jONTRw\nYsZexI6yC+yfbNSMTJM9QrTaJqboiabA2Sg/m81IgM6VVIE1KVmC5sZfLUaD\n/Hqg3Y4janiGkh6YCRXpDmTMcbKRMpYw6BujDSp3YxT+29gWiS+mIFPoBhTd\n6/lVyUyZTBnAruNs3Vx6tMzoUwYGyOk6yvfuePfBXyF64eFQ51owN8EQ121Y\nV8gfihWZ9Bsz8KfCgYQxvgsRTvBcJMkWvmPnIOVVKFYfNKzVSxAgVdWtcg/8\nruL7Mhde+d7XUX6y1yqjAlJdCzSHTzDZV6w0DnS0kZQnG5oh0AnPP+z34ozd\nY8HlydO3MhFYhUXhLmyXrnnGPDvaLfMI7Vcb4X5CvvAckeFYL9lrlRAPTxFW\nGJ224joN6mz3qFFDT5whgk79uCQ1kNebtNM+6+Pxem31m0zRkhZbbOuSMijD\n3+crvqzIB8pJKbOLRviuWQXOOnDxan2o8FtJj9tq02+d191LBKbi9PUaRpFz\nTbLOW4XAQTIvv5QLPOJAcbI2mLgcEPfqDhwNM2ZR/ffrQESalMEiciZpwTNB\nqnbBvrxw22cUDqDIcahnxVLvli4rlmSahvMUhAN0sBGwgzRDuvwzc+pVGNH4\n6FCA84gqs4X+KNyDWPrCTkBpf/L+uizsHh2SzxjZEcDDfl0xwtb8rniH1f+O\nKHBK\r\n=i7Q4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","module":"dist/index.esm.js","gitHead":"821f1cf74a4ee2fc816f07c6cc762fcaf439c208","scripts":{"tsc":"tsc --noEmit","jest":"jest","lint":"eslint src --ext .ts","test":"npm run tsc && npm run lint && npm run jest","compile":"father build --esm --cjs","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls","lint:fix":"prettier --write '{src,tests}/**/*.ts'","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"dist/src/index.d.ts","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"6.14.8","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"14.15.1","dependencies":{"@ctrl/tinycolor":"^3.4.0"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^2.29.5","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.0.3","typescript":"^4.0.2","@types/jest":"^26.0.0","eslint-config-prettier":"^7.0.0","eslint-plugin-prettier":"^3.0.1","@typescript-eslint/parser":"^4.7.0","@typescript-eslint/eslint-plugin":"^4.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_6.0.0_1612935460616_0.43473586684321663","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"@ant-design/colors","version":"7.0.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@7.0.0","maintainers":[{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"eb7eecead124c3533aea05d61254f0a17f2b61b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-7.0.0.tgz","fileCount":15,"integrity":"sha512-iVm/9PfGCbC0dSMBrz7oiEXZaaGH7ceU40OJEfKmyuzR9R5CRimJYPlRiFtMQGQcbNMea/ePcoIebi4ASGYXtg==","signatures":[{"sig":"MEQCIEm9qmrGtxOQE3/Vc/E1A6FocezJFQBMrn7sK47SN3AZAiAD7Cbcj4RkRngZczCKdxFpNALX25mOu6/61S8agVebfA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23774,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJju4LmACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq0Lw/+KTtsFIZ4606huRqA/abXSgFaW2qnvYMIzGNpTXUcg2lxHKh1\r\nQDejw5fruknEVf+gjD+2IwNOn6y/ZYdZfJqluk1Mp4UHWP20xqc9Oa78UQU3\r\nbbqfodond4UlFlhZRoVr3sHqQsilH/h2ui5UtwLlX5uyG8Ezg5n1tIfm9NSk\r\nU2aZRczR4EZqeQkCknSR4fcQZmvBzDEYDhm34hxIKvOGcHP4XMIk2xarpdVk\r\n4mPJ3WlS12trAXhGL0sLJfbcNZ+Ng7Myon+9X7Zk5gcGmwJtWPeZ1whnRTHB\r\n5SbFWkRu1QMl6zLPJhaMD6p/Y7Fj6wcwjbGAYaPM7Q8nPUgxI/pPT99fm4mJ\r\nQm6fl+sOHUyP6N3Nfa5IGn6RLYdcDyMaGbvhNy9eVdyol091TY6XZoPvbcjo\r\nbnOVmYwFN+T4zy5n6HU9eX3tXqhUoc/daz38mjznWURU4NfUcfUr59H6eaFN\r\nD+TbB8Vdz6XdUPCQ6eh50YZfJEcYJ0SZ7FAfGOv2QwNO6dSSNsfPZ8fOt2g/\r\ngqYBTT27c2jpiOt5O7eKIG22NbXpQ70fTm5oHVZLSOlo1iJWXAVP5MTgukEo\r\nlS5lMMmD+sWT0zA2FY2Cm7ysu8toUEwg2tGN3eo+HNyNOFmDhDVUo36XIWWe\r\nJmWTX6PVX/G+c8SAqSfUvEKsW4/MNpXMGxM=\r\n=Lm7S\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./lib/index","module":"./es/index","gitHead":"878ab5b63fe22d8eb79f5461598ca1003da7a634","scripts":{"lint":"eslint src --ext .ts","test":"jest","compile":"father build","coverage":"npm test -- --coverage && coveralls < coverage/lcov.info","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"es/index.d.ts","_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"8.11.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"16.16.0","dependencies":{"@ctrl/tinycolor":"^3.4.0"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^4.1.2","ts-jest":"^26.0.0","prettier":"^2.0.0","coveralls":"^3.1.1","typescript":"^4.0.2","@types/jest":"^26.0.0","@umijs/fabric":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_7.0.0_1673233126254_0.9746053350465076","host":"s3://npm-registry-packages"}},"7.0.1-0":{"name":"@ant-design/colors","version":"7.0.1-0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@7.0.1-0","maintainers":[{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"55c067d0a8eedee8ea4cabd52e76eeba9977b030","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-7.0.1-0.tgz","fileCount":15,"integrity":"sha512-ZNhPV7z8S37Qh/tSsxcS3ejxWwJoUcvIvIjIggMIfAzZfjOA5KXKNR9ximbuZ2uqH3VPxQaIqIVweW/7Xkteug==","signatures":[{"sig":"MEUCIQC3PH3/M6Sbh1KW/D0HxIruMrRlpLoi2x55xNGJftC0OAIgE8LtoGojaEOUO2EygHCIb7ri6tG2xz02SsVtvEAwxnM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23618},"main":"./lib/index","module":"./es/index","gitHead":"164c16367ad169c4851d088704943eed78cb6094","scripts":{"lint":"eslint src --ext .ts","test":"jest","compile":"father build","coverage":"npm test -- --coverage","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"es/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"9.5.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"16.19.1","dependencies":{"@ctrl/tinycolor":"^4.0.2"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^4.1.2","ts-jest":"^26.0.0","prettier":"^2.0.0","typescript":"^4.0.2","@types/jest":"^26.0.0","@umijs/fabric":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_7.0.1-0_1703858873280_0.2871539605420672","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"@ant-design/colors","version":"7.0.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@7.0.1","maintainers":[{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"5f4cf62fecbd7e91a11a25d78c41cc2d1444e5c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-7.0.1.tgz","fileCount":15,"integrity":"sha512-SrZBQcrXNmrH8TJPXZReYcXs4jSqkwNS3EEhpN6esBI9sNX70g5LZP05/uSPjflkIt2orvjivQ/ywVBqTbHZ+A==","signatures":[{"sig":"MEUCICK6S40itijnNr306r4WvmwOFQS8Wdf+30lsQIRxjqoCAiEAot7xQEYlGmwJLxh77y7Lxrh0ZAdaFuqsrnOtRZDtYZU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23616},"main":"./lib/index","module":"./es/index","gitHead":"eb09df77de02afbc6b01e798cea618cb33c252ca","scripts":{"lint":"eslint src --ext .ts","test":"jest","compile":"father build","coverage":"npm test -- --coverage","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"es/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"9.5.0","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"16.19.1","dependencies":{"@ctrl/tinycolor":"^4.0.2"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^4.1.2","ts-jest":"^26.0.0","prettier":"^2.0.0","typescript":"^4.0.2","@types/jest":"^26.0.0","@umijs/fabric":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_7.0.1_1703863869865_0.041107163076081976","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"@ant-design/colors","version":"7.0.2","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@7.0.2","maintainers":[{"name":"madccc","email":"1075746765@qq.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"vthinkxie","email":"vthinkxie@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"vagusx","email":"onlylae@sina.com"},{"name":"wynterding","email":"wynterding@gmail.com"},{"name":"yutingzhao1991","email":"yutingzhao1991@sina.cn"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"rdmclin2","email":"rdmclin2@gmail.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"c5c753a467ce8d86ba7ca4736d2c01f599bb5492","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-7.0.2.tgz","fileCount":15,"integrity":"sha512-7KJkhTiPiLHSu+LmMJnehfJ6242OCxSlR3xHVBecYxnMW8MS/878NXct1GqYARyL59fyeFdKRxXTfvR9SnDgJg==","signatures":[{"sig":"MEQCIBHXZO+ZGt5BJfdKbR3VE9XPsnl3KLbF8yxCF9CHsIkOAiAv5p2/cP6gjynDoUeHGTXqpKpdjxRW1eWLWMg3aJ5XvQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":23616},"main":"./lib/index","module":"./es/index","gitHead":"aa1bf9d039efd596b5ae0b161e40e4aabfcf9f49","scripts":{"lint":"eslint src --ext .ts","test":"jest","compile":"father build","coverage":"npm test -- --coverage","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"es/index.d.ts","_npmUser":{"name":"madccc","email":"1075746765@qq.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"9.8.1","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"18.18.2","dependencies":{"@ctrl/tinycolor":"^3.6.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.0.0","jest":"^26.0.1","eslint":"^7.1.0","father":"^4.1.2","ts-jest":"^26.0.0","prettier":"^2.0.0","typescript":"^4.0.2","@types/jest":"^26.0.0","@umijs/fabric":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_7.0.2_1704187237932_0.0016965686897882915","host":"s3://npm-registry-packages"}},"7.1.0":{"name":"@ant-design/colors","version":"7.1.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@7.1.0","homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"60eadfa2e21871d8948dac5d50b9f056062f8af3","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-7.1.0.tgz","fileCount":27,"integrity":"sha512-MMoDGWn1y9LdQJQSHiCC20x3uZ3CwQnv9QMz6pCmJOrqdgM9YxsoVVY0wtrdXbmfSgnV0KNk6zi09NAhMR2jvg==","signatures":[{"sig":"MEQCIGomcM8LQHT4RieJg3p4wHsC2SdAk995d4abRVtgpzqMAiBB1jt8QK14t3G3xONKn9pep1iUiSue5QgGy9A/CwZ2EA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":34446},"main":"./lib/index","module":"./es/index","gitHead":"fc25b163ee4360969e1a369b439b9e15eea7ee4e","scripts":{"lint":"eslint src --ext .ts","test":"jest","bench":"vitest bench","compile":"father build","prepare":"tsx generate-presets","coverage":"npm test -- --coverage","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"es/index.d.ts","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"10.2.4","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"18.19.1","dependencies":{"@ctrl/tinycolor":"^3.6.1"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.7.0","tsx":"^4.16.0","jest":"^26.6.3","eslint":"^7.32.0","father":"^4.4.4","vitest":"^1.6.0","ts-jest":"^26.5.6","prettier":"^2.8.8","typescript":"^4.9.5","@types/jest":"^26.0.24","@types/node":"^20.14.9","@umijs/fabric":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/colors_7.1.0_1719902121429_0.41008382170436763","host":"s3://npm-registry-packages"}},"7.1.1-0":{"name":"@ant-design/colors","version":"7.1.1-0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@7.1.1-0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"madccc","email":"1075746765@qq.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"b86fd115b090fefd972a5dbaf1ff63edb138203c","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-7.1.1-0.tgz","fileCount":27,"integrity":"sha512-tOBxBlvZ6fAoVeIJjing8EEmSxXsYlQVp6tJmA70fnUyLutV+VzVVkD96oMjRWCax26h/In3VoGcuDbp1bBDMQ==","signatures":[{"sig":"MEUCIDRXtpM1y7RwcSXmOAF1uowR8hNztTu9QrGa0VOpq65pAiEAm3cSRVANZETpJCe9dWI/roSGy4lSSDyMCqBbzhdjhrE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32707},"main":"./lib/index","module":"./es/index","gitHead":"0a7657b205861d4d994a4db67ee55300bbb747e1","scripts":{"lint":"eslint src --ext .ts","test":"jest","bench":"vitest bench","compile":"father build","prepare":"tsx generate-presets","coverage":"npm test -- --coverage","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"es/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"10.8.3","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"22.8.0","dependencies":{"@ant-design/fast-color":"^2.0.6"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"np":"^7.7.0","tsx":"^4.16.1","jest":"^26.6.3","eslint":"^7.32.0","father":"^4.4.4","vitest":"^1.6.0","ts-jest":"^26.5.6","prettier":"^2.8.8","typescript":"^4.9.5","@types/jest":"^26.0.24","@types/node":"^20.14.9","@umijs/fabric":"^3.0.0","@ctrl/tinycolor":"^3.6.1"},"_npmOperationalInternal":{"tmp":"tmp/colors_7.1.1-0_1735638495565_0.7941391359232879","host":"s3://npm-registry-packages-npm-production"}},"7.2.0":{"name":"@ant-design/colors","version":"7.2.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@7.2.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"madccc","email":"1075746765@qq.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"80d7325d20463f09c7839d28da630043dd5c263a","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-7.2.0.tgz","fileCount":27,"integrity":"sha512-bjTObSnZ9C/O8MB/B4OUtd/q9COomuJAR2SYfhxLyHvCKn4EKwCN3e+fWGMo7H5InAyV0wL17jdE9ALrdOW/6A==","signatures":[{"sig":"MEQCIBhQzTpDstwauM8Jf1VillDxv3MWx7EHV/xki+LNjWw1AiARBvwddh+ZNwV+16yn8GXM7PNYZSzNYuELg955btoseg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":32705},"main":"./lib/index","module":"./es/index","gitHead":"7dcf68845da6851aa7e5e5f26e24fd87469cb853","scripts":{"lint":"eslint src --ext .ts","test":"jest","bench":"vitest bench","compile":"father build","prepare":"tsx generate-presets","coverage":"npm test -- --coverage","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && np --no-cleanup --no-publish"},"typings":"es/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"10.8.3","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"22.8.0","dependencies":{"@ant-design/fast-color":"^2.0.6"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.7.0","tsx":"^4.16.1","jest":"^26.6.3","eslint":"^7.32.0","father":"^4.4.4","vitest":"^1.6.0","ts-jest":"^26.5.6","prettier":"^2.8.8","typescript":"^4.9.5","@types/jest":"^26.0.24","@types/node":"^20.14.9","@umijs/fabric":"^3.0.0","@ctrl/tinycolor":"^3.6.1"},"_npmOperationalInternal":{"tmp":"tmp/colors_7.2.0_1735657409581_0.6200863571233635","host":"s3://npm-registry-packages-npm-production"}},"8.0.0":{"name":"@ant-design/colors","version":"8.0.0","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@8.0.0","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"madccc","email":"1075746765@qq.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"92b5aa1cd44896b62c7b67133b4d5a6a00266162","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-8.0.0.tgz","fileCount":27,"integrity":"sha512-6YzkKCw30EI/E9kHOIXsQDHmMvTllT8STzjMb4K2qzit33RW2pqCJP0sk+hidBntXxE+Vz4n1+RvCTfBw6OErw==","signatures":[{"sig":"MEUCIFfV80kAXHCOeNRj9gDZyGAepcjccsJBtojG5aED21SGAiEA7FxP5GcGaQAHi2vU+eoYdCdMR3MQU1QbHFDXRx/2jnY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":32382},"main":"./lib/index","module":"./es/index","gitHead":"23feb791d573c05e57f5427e0a8f3c474b508a66","scripts":{"lint":"eslint src --ext .ts","test":"jest","bench":"vitest bench","compile":"father build","prepare":"tsx generate-presets","coverage":"npm test -- --coverage","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && rc-np"},"typings":"es/index.d.ts","_npmUser":{"name":"zombiej","email":"smith3816@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"10.8.2","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"22.5.1","dependencies":{"@ant-design/fast-color":"^3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"tsx":"^4.16.1","jest":"^26.6.3","eslint":"^7.32.0","father":"^4.4.4","vitest":"^1.6.0","ts-jest":"^26.5.6","prettier":"^2.8.8","typescript":"^4.9.5","@types/jest":"^26.0.24","@types/node":"^20.14.9","@umijs/fabric":"^3.0.0","@ctrl/tinycolor":"^3.6.1","@rc-component/np":"^1.0.0","@rc-component/father-plugin":"^2.0.4"},"_npmOperationalInternal":{"tmp":"tmp/colors_8.0.0_1742519890661_0.36270656873455165","host":"s3://npm-registry-packages-npm-production"}},"7.2.1":{"name":"@ant-design/colors","version":"7.2.1","author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","_id":"@ant-design/colors@7.2.1","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"madccc","email":"1075746765@qq.com"}],"homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"dist":{"shasum":"3bbc1c6c18550020d1622a0067ff03492318df98","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-7.2.1.tgz","fileCount":27,"integrity":"sha512-lCHDcEzieu4GA3n8ELeZ5VQ8pKQAWcGGLRTQ50aQM2iqPpq2evTxER84jfdPvsPAtEcZ7m44NI45edFMo8oOYQ==","signatures":[{"sig":"MEQCIAxC6N+LtrI35gGCl541kn/1Hb1ZRFWlDL0QYUgRETA3AiBECfIktssU7U4xKmQxWlmrJRA8ofFtjJxKZ8kC6XVzRg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":32314},"main":"./lib/index","module":"./es/index","gitHead":"7532510f52308322d41b82c5dc177b800465c5bf","scripts":{"lint":"eslint src --ext .ts","test":"jest","bench":"vitest bench","compile":"father build","prepare":"tsx generate-presets","coverage":"npm test -- --coverage","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","prepublishOnly":"npm run compile && np --no-cleanup --no-publish --branch=antd-5.x"},"typings":"es/index.d.ts","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"repository":{"url":"git+https://github.com/ant-design/ant-design-colors.git","type":"git"},"_npmVersion":"10.8.3","description":"Color palettes calculator of Ant Design","directories":{},"_nodeVersion":"22.8.0","dependencies":{"@ant-design/fast-color":"^2.0.6"},"_hasShrinkwrap":false,"devDependencies":{"np":"^7.7.0","tsx":"^4.16.1","jest":"^26.6.3","eslint":"^7.32.0","father":"^4.4.4","vitest":"^1.6.0","ts-jest":"^26.5.6","prettier":"^2.8.8","typescript":"~5.8.2","@types/jest":"^26.0.24","@types/node":"^20.14.9","@umijs/fabric":"^3.0.0","@ctrl/tinycolor":"^3.6.1"},"_npmOperationalInternal":{"tmp":"tmp/colors_7.2.1_1747758150835_0.05618005403711068","host":"s3://npm-registry-packages-npm-production"}},"8.0.1":{"name":"@ant-design/colors","version":"8.0.1","description":"Color palettes calculator of Ant Design","homepage":"https://github.com/ant-design/ant-design-colors#readme","bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design-colors.git"},"license":"MIT","author":{"name":"afc163","email":"afc163@gmail.com"},"main":"./lib/index","module":"./es/index","typings":"es/index.d.ts","scripts":{"bench":"vitest bench","coverage":"npm test -- --coverage","compile":"father build","lint":"eslint src --ext .ts","prepare":"tsx generate-presets","prepublishOnly":"npm run compile && rc-np","prettier":"prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"","test":"jest"},"dependencies":{"@ant-design/fast-color":"^3.0.0"},"devDependencies":{"@ctrl/tinycolor":"^3.6.1","@rc-component/father-plugin":"^2.0.4","@rc-component/np":"^1.0.0","@types/jest":"^26.0.24","@types/node":"^20.14.9","@umijs/fabric":"^3.0.0","eslint":"^7.32.0","father":"^4.4.4","jest":"^26.6.3","prettier":"^2.8.8","ts-jest":"^26.5.6","tsx":"^4.16.1","typescript":"~5.8.2","vitest":"^1.6.0"},"_id":"@ant-design/colors@8.0.1","gitHead":"89b4a5b7e989b792610087abe855bf4a2fb1d322","_nodeVersion":"22.8.0","_npmVersion":"11.6.0","dist":{"integrity":"sha512-foPVl0+SWIslGUtD/xBr1p9U4AKzPhNYEseXYRRo5QSzGACYZrQbe11AYJbYfAWnWSpGBx6JjBmSeugUsD9vqQ==","shasum":"6b5444f2ab4061c7b1aa4bc776adb023b0253161","tarball":"https://mirrors.huaweicloud.com/repository/npm/@ant-design/colors/-/colors-8.0.1.tgz","fileCount":27,"unpackedSize":31976,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQDPTzOv7dujvFrpbHetgALTJHVNduFJybdyekLhh4zTawIgafUX+ZrRxkwQInUIOZJngmubzW9fILwxNuPuEqVlQMQ="}]},"_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"directories":{},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"madccc","email":"1075746765@qq.com"},{"name":"ranranup123","email":"827743388@qq.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/colors_8.0.1_1767613571408_0.006387733170468701"},"_hasShrinkwrap":false}},"time":{"created":"2018-12-23T13:54:12.552Z","modified":"2026-01-05T11:46:11.858Z","2.0.0":"2018-12-23T13:54:12.800Z","2.0.1":"2018-12-31T13:28:53.217Z","2.0.2":"2018-12-31T13:29:55.064Z","2.0.3":"2018-12-31T13:32:38.678Z","2.0.4":"2019-01-13T04:31:59.677Z","2.1.0":"2019-03-12T12:05:51.357Z","3.0.0":"2019-04-08T12:34:01.883Z","3.0.1":"2019-04-11T08:06:06.338Z","3.1.0":"2019-05-08T03:46:47.963Z","3.2.0":"2019-08-28T02:54:41.202Z","3.2.1":"2019-08-28T02:56:00.428Z","3.2.2":"2019-09-19T06:22:07.727Z","4.0.0-alpha.0":"2019-12-25T10:55:01.797Z","4.0.0-alpha.1":"2020-02-11T07:41:44.988Z","4.0.0":"2020-02-28T13:27:23.462Z","4.0.1":"2020-06-18T02:53:09.363Z","4.0.2":"2020-07-21T10:13:34.613Z","4.0.3":"2020-07-21T10:17:00.852Z","4.0.4":"2020-07-21T13:00:56.023Z","4.0.5":"2020-08-05T07:08:12.437Z","5.0.0":"2020-11-12T04:02:40.320Z","5.0.1":"2020-12-14T02:49:06.085Z","5.1.0":"2021-02-09T13:48:03.057Z","5.1.1":"2021-02-10T03:20:20.811Z","6.0.0":"2021-02-10T05:37:40.748Z","7.0.0":"2023-01-09T02:58:46.430Z","7.0.1-0":"2023-12-29T14:07:53.479Z","7.0.1":"2023-12-29T15:31:10.148Z","7.0.2":"2024-01-02T09:20:38.156Z","7.1.0":"2024-07-02T06:35:21.595Z","7.1.1-0":"2024-12-31T09:48:15.725Z","7.2.0":"2024-12-31T15:03:29.773Z","8.0.0":"2025-03-21T01:18:10.881Z","7.2.1":"2025-05-20T16:22:31.031Z","8.0.1":"2026-01-05T11:46:11.548Z"},"bugs":{"url":"https://github.com/ant-design/ant-design-colors/issues"},"author":{"name":"afc163","email":"afc163@gmail.com"},"license":"MIT","homepage":"https://github.com/ant-design/ant-design-colors#readme","repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design-colors.git"},"description":"Color palettes calculator of Ant Design","maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"zombiej","email":"smith3816@gmail.com"},{"name":"chenshuai2144","email":"wasd2144@hotmail.com"},{"name":"arvinxx","email":"arvinx@foxmail.com"},{"name":"madccc","email":"1075746765@qq.com"},{"name":"ranranup123","email":"827743388@qq.com"}],"readme":"

Ant Design Colors

\n\n
\n\n:art: Color palettes calculator of [Ant Design](https://ant.design/docs/spec/colors).\n\n[![CI status][github-action-image]][github-action-url]\n[![codecov][codecov-image]][codecov-url]\n[![NPM version][npm-image]][npm-url]\n[![NPM downloads][download-image]][download-url]\n[![][bundlephobia-image]][bundlephobia-url]\n\n![](https://raw.githubusercontent.com/andreasbm/readme/master/assets/lines/rainbow.png)\n\n[npm-image]: http://img.shields.io/npm/v/@ant-design/colors.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/@ant-design/colors\n[github-action-image]: https://github.com/ant-design/ant-design-colors/actions/workflows/ci.yml/badge.svg\n[github-action-url]: https://github.com/ant-design/ant-design-colors/actions/workflows/ci.yml\n[codecov-image]: https://img.shields.io/codecov/c/github/ant-design/ant-design-colors/main.svg?style=flat-square\n[codecov-url]: https://codecov.io/gh/ant-design/ant-design-colors/tree/main\n[download-image]: https://img.shields.io/npm/dm/@ant-design/colors.svg?style=flat-square\n[download-url]: https://npmjs.org/package/@ant-design/colors\n[bundlephobia-image]: https://badgen.net/bundlephobia/minzip/@ant-design/colors?style=flat-square\n[bundlephobia-url]: https://bundlephobia.com/package/@ant-design/colors\n
\n\n![](https://user-images.githubusercontent.com/507615/55726820-43e68400-5a43-11e9-8541-b0fc28b78f37.png)\n\n## Install\n\n```bash\n$ npm install @ant-design/colors\n// or\n$ yarn add @ant-design/colors\n```\n\n## Usage\n\n```bash\n$ npm install @ant-design/colors --save\n```\n\n```js\nimport {\n red,\n volcano,\n gold,\n yellow,\n lime,\n green,\n cyan,\n blue,\n geekblue,\n purple,\n magenta,\n grey,\n} from '@ant-design/colors';\n\nconsole.log(blue); // ['#E6F4FF', '#BAE0FF', '#91CAFF', '#69B1FF', '#4096FF', '#1677FF', '#0958D9', '#003EB3', '#002C8C', '#001D66']\nconsole.log(blue.primary); // '#1677FF'\n```\n\n```js\nimport { generate, presetPalettes } from '@ant-design/colors';\n\n// Generate color palettes by a given color\nconst colors = generate('#1890ff');\nconsole.log(colors); // ['#E6F7FF', '#BAE7FF', '#91D5FF', ''#69C0FF', '#40A9FF', '#1890FF', '#096DD9', '#0050B3', '#003A8C', '#002766']\nconsole.log(presetPalettes);\n/*\n{\n red: [...],\n volcano: [...],\n orange: [...],\n gold: [...],\n yellow: [...],\n lime: [...],\n green: [...],\n cyan: [...],\n blue: [...],\n geekblue: [...],\n purple: [...],\n magenta: [...],\n}\n*/\n```\n\n```js\nimport { generate, presetDarkPalettes } from '@ant-design/colors';\n\n// Generate dark color palettes by a given color\nconst colors = generate('#1890ff', {\n theme: 'dark',\n backgroundColor: '#141414',\n});\nconsole.log(colors); // ['#111d2c', '#112a45', '#15395b', '#164c7e', '#1765ad', '#177ddc', '#3c9ae8', '#65b7f3', '#8dcff8', '#b7e3fa']\nconsole.log(presetDarkPalettes);\n/*\n{\n red: [...],\n volcano: [...],\n orange: [...],\n gold: [...],\n yellow: [...],\n lime: [...],\n green: [...],\n cyan: [...],\n blue: [...],\n geekblue: [...],\n purple: [...],\n magenta: [...],\n}\n*/\n```\n\n## Articles\n\n- [Ant Design Colors](https://ant.design/docs/spec/colors)\n- [Ant Design 色板生成算法演进之路](https://zhuanlan.zhihu.com/p/32422584)\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/8c/80/e2bcded0296e3ea887e3e714a7e567a569cc6e0438a8ae91d86e4074a880993db238088e3084ab6a07c68cd4dd4dadce8a8822156492210546b5df491d77 b/frontend/.npm-cache/_cacache/content-v2/sha512/8c/80/e2bcded0296e3ea887e3e714a7e567a569cc6e0438a8ae91d86e4074a880993db238088e3084ab6a07c68cd4dd4dadce8a8822156492210546b5df491d77 new file mode 100644 index 0000000..495b372 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/8c/80/e2bcded0296e3ea887e3e714a7e567a569cc6e0438a8ae91d86e4074a880993db238088e3084ab6a07c68cd4dd4dadce8a8822156492210546b5df491d77 @@ -0,0 +1 @@ +{"_id":"vue-types","_rev":"113-c75dbd3f3c45e2bb9ee9ca74dedf33a6","name":"vue-types","dist-tags":{"vue3":"3.0.2","beta":"5.0.0-beta.2","next":"0.0.0-20250820071348","latest":"6.0.0"},"versions":{"0.1.0":{"name":"vue-types","version":"0.1.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.1.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"dist":{"shasum":"2778e354136de5ef00c29e73bd4cdf39066176b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.1.0.tgz","integrity":"sha512-8f1BofYsMhjMMA6WhSMYVIzzL+bfT9x8IArjAIKshRd5o87PKkxvGzdLozuyeYa4C9eJlif8Lk+H0jyEOaubwA==","signatures":[{"sig":"MEYCIQC2ELAocHkU3q96LMFLlZYVkmpHuIQhPJaWafIANM95lQIhAIIXn7esw46zm+exGIHtcTkiWWd0js23jAq+cFfCXO7F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src"],"module":"es/index.js","_shasum":"2778e354136de5ef00c29e73bd4cdf39066176b1","gitHead":"4de07ff859053db10ba64c4384b9ae8837d0275a","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"_npmVersion":"3.10.9","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.9.1","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","babel-loader":"6.2.7","babel-runtime":"6.18.0","karma-webpack":"1.8.0","babel-polyfill":"6.16.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-transform-runtime":"6.15.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.1.0.tgz_1477669278441_0.3968394894618541","host":"packages-12-west.internal.npmjs.com"}},"0.2.0":{"name":"vue-types","version":"0.2.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.2.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"dist":{"shasum":"8f893f5038ff56f30475fa3da8f53fb98c402395","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.2.0.tgz","integrity":"sha512-bnOG2mL4uQoLEIKauDyIq4P6hDkr6l0xKfStD8VValsZ0Ue8tsspW1zY/l6wIISOMljdUaqDaMRcRpzsgSZzPA==","signatures":[{"sig":"MEUCIGt169zw9fgS1Ebt0v1a2Lc3HFBpBhQ54AErxax1UtuuAiEAz1eu5xXzQ8SmjZEqfDBY7Id/1R8nnSafTNJ5yUQAopI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src"],"module":"es/index.js","_shasum":"8f893f5038ff56f30475fa3da8f53fb98c402395","gitHead":"3ed7121c42b759df0e4b368c9255965e86415e8b","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"_npmVersion":"3.10.9","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.9.1","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","babel-loader":"6.2.7","babel-runtime":"6.18.0","karma-webpack":"1.8.0","babel-polyfill":"6.16.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-transform-runtime":"6.15.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.2.0.tgz_1477670163043_0.42925416748039424","host":"packages-18-east.internal.npmjs.com"}},"0.3.0":{"name":"vue-types","version":"0.3.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.3.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"dist":{"shasum":"b0049cbd2c00cd8081be781ba77421f2f6e587d1","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.3.0.tgz","integrity":"sha512-WKmA8jO31RKEXXeDtpn1SUBkvq0teSHpm6/fNAA3Oz4nh7DQGwPGzXIAEcdpl5ugeNMGRIZbtWrF5/4LxsjG7Q==","signatures":[{"sig":"MEYCIQDR2Iw3NjD9LHi2JulAVr1RthExM8j9WTuXt/dycF51DQIhAJtoKDcv/S+P2eVnBMjc0l0w8AJ88YjAP5msrVH4aPU4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src"],"module":"es/index.js","_shasum":"b0049cbd2c00cd8081be781ba77421f2f6e587d1","gitHead":"39c6a22abf41d404c2e263d7fb3f6b3917af1e54","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"_npmVersion":"3.10.9","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.9.1","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","babel-polyfill":"6.16.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.3.0.tgz_1477748641228_0.7186208600178361","host":"packages-18-east.internal.npmjs.com"}},"0.4.0":{"name":"vue-types","version":"0.4.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.4.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"09be378d5fd910891bf33e6e8745fa3f4b19c128","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.4.0.tgz","integrity":"sha512-SbBu/JWcoO9FMvkrMgR4UrpcPG0EFBF0kaoQXQv2OnubAFRCyIT0R5fL/7PRMe4XywV5QKoszE0wKvks3L4uzg==","signatures":[{"sig":"MEQCIEFX9722P90JqSe4SBNciIiAa6efgDsZOZsxoGy5mD9CAiB7zWT794uW8pTqE274DsCjvdEKLCFDctUQbbwux4wDHQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src"],"module":"es/index.js","_shasum":"09be378d5fd910891bf33e6e8745fa3f4b19c128","gitHead":"553c08505bd723b4792c04c20ef68affbc4065f0","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"3.10.9","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.9.1","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.4.0.tgz_1477749778145_0.6888070323038846","host":"packages-18-east.internal.npmjs.com"}},"0.5.0":{"name":"vue-types","version":"0.5.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.5.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"a8b82fba346d74d972ff48d46dc498c845b6a7ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.5.0.tgz","integrity":"sha512-t7Yqn1hAlo6TQGr7qroXPZP4nBDDoBxxC8qvLp4Cq1PyzDitDn9E+iEjtsUTeLfPbwXc6LeDoP+XF7I916UQAA==","signatures":[{"sig":"MEYCIQD/J++ckuKF22WgqEvB/rg+/6xaQ/lcNZpyd0pSsVbnbwIhAJVCfXWLLuU+9himn8l2+1YgiBcqKhElvO1X+n1efr5w","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src"],"module":"es/index.js","_shasum":"a8b82fba346d74d972ff48d46dc498c845b6a7ef","gitHead":"d0f99f55e0a679def0d4596cfd1c99bff7b2003a","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"3.10.9","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.9.1","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.5.0.tgz_1478857519319_0.5795847631525248","host":"packages-12-west.internal.npmjs.com"}},"0.5.1":{"name":"vue-types","version":"0.5.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.5.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"697d113e22f4395fc2903c6e9b59c9135bd6851b","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.5.1.tgz","integrity":"sha512-2xvMyVdCoNJ8o1czmfdhdyefk5zMJ2xFv18KOTaGdVIfuiobz3cnZjzIqY5EuLjxj+1HRqTY4BtctXkdRJXFAw==","signatures":[{"sig":"MEQCIGgLsfVQbwFfN7OUqZvP2lz4QbqsD01tWbp06G3ISpoQAiBxokhmkfjnGnFsvdn+IBQqyk/+JWVcijxrkinpl/trnw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src"],"module":"es/index.js","_shasum":"697d113e22f4395fc2903c6e9b59c9135bd6851b","gitHead":"96f4ddd786c5c4e5fb4c1846e4a027ddc6b843d5","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","server":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"3.10.9","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.9.1","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","express":"4.14.0","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","serve-index":"1.8.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.5.1.tgz_1479115693479_0.45489502139389515","host":"packages-18-east.internal.npmjs.com"}},"0.5.2":{"name":"vue-types","version":"0.5.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.5.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"6fe5a7a2e63821d01eacdffb24e8a9b349d981aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.5.2.tgz","integrity":"sha512-IoW4b+o77q8pXavXYbMPNhMaSfgvO9nwmLXfCRmJkGWcwfSNAZlhYARRTO4iJYBuRxJMABkbyjHOWdo/qC3Pyg==","signatures":[{"sig":"MEUCIHGHtln34YoBgndNLQqznFqwnw4w3smYF2n28UNy/YQBAiEAulHXDVqqBzl/AG87mb7czqK0YSBCg3683H86ma8F+8Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"6fe5a7a2e63821d01eacdffb24e8a9b349d981aa","gitHead":"352470230b0738bfd2b4bc67230099ae1bee857c","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","server":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"3.10.9","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.9.1","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","express":"4.14.0","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","serve-index":"1.8.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.5.2.tgz_1479115920853_0.11566721461713314","host":"packages-18-east.internal.npmjs.com"}},"0.6.0":{"name":"vue-types","version":"0.6.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.6.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"1c47598c94d43f6dd3ffa5c62af4c41be71314dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.6.0.tgz","integrity":"sha512-bEPifFZffQ0yjjYd3IP0X3rpdoAfPLYiwN1s0OZ+5b3oTHmTmUTsSIpzvfhAPCttzQ3A5+N4dWD9Sby1aXjF6A==","signatures":[{"sig":"MEQCIEzPtugNud9v/DWmzr4r5ToJuc8LYgJcyspTrbYdyho9AiBGDPyI5ROt87m/IQFCkIzFh2/eV6zjdFjFnejWaCdVzA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"1c47598c94d43f6dd3ffa5c62af4c41be71314dc","gitHead":"0b5d96772802927833a22a6c8862ec112d62cd60","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","server":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"3.10.10","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.0","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","express":"4.14.0","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","serve-index":"1.8.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.6.0.tgz_1488211802240_0.20968188531696796","host":"packages-18-east.internal.npmjs.com"}},"0.6.1":{"name":"vue-types","version":"0.6.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.6.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"a5f9fd96590a5c4faf091d7275e699c1e5702f77","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.6.1.tgz","integrity":"sha512-gm8iYl/+HT8m4UVT9uqvGWrk308hqccS6m8NXKZYiO6ewNiSoMX6nCmQf15Z3ggVAoEkj6vYQSCoVZaWZr9awg==","signatures":[{"sig":"MEUCIFFowU98R5CaFgAB0yjOX3VDdVSaGmwS5znvjz/cvYQbAiEAqcRb9okWIy3f3ZJp0oLeTXz1kBAfVB6nlLzSSVAeh2Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"a5f9fd96590a5c4faf091d7275e699c1e5702f77","gitHead":"c12457dfede3d0dfe370d793d103c9513f94ded4","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","server":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"4.4.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.0","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","express":"4.14.0","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","serve-index":"1.8.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.6.1.tgz_1490888121124_0.21559531637467444","host":"packages-12-west.internal.npmjs.com"}},"0.6.2":{"name":"vue-types","version":"0.6.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.6.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"efa5f6281086a79e0bf6f0a7f7ebf39bf5509d85","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.6.2.tgz","integrity":"sha512-awsCD482eY9Hyk58SPKq9suGgtbg1gpBu/7tCh8nBDvTPly07uYI41nqQ8aXSbu9Yja2L91x56YNv7QOlaQA6w==","signatures":[{"sig":"MEQCIE9DaTzmjJOoZ4NltVS7r0hmoMpbImRKO93PMAHX4PtDAiBSMx98si4oJeLxSaIriPgIRe1wYNZEd40wgwjK2imO8A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"efa5f6281086a79e0bf6f0a7f7ebf39bf5509d85","gitHead":"6dbcf2e429328b84c463ec04f96658d9e1bbf425","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","server":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"4.4.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.0","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","express":"4.14.0","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","serve-index":"1.8.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.6.2.tgz_1490890089629_0.16229961882345378","host":"packages-18-east.internal.npmjs.com"}},"0.6.4":{"name":"vue-types","version":"0.6.4","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.6.4","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"98aa1ac2e7059661c92949a6c6849a2952c47664","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.6.4.tgz","integrity":"sha512-l6kjZ60b1KxcaNCqFgBEaQCJB5eQqS6kLLqyB/BzDPdwKp774L/pbcA+KyE/ahYA84L7qoHfpwI6jcPxulIpFg==","signatures":[{"sig":"MEUCIQDwGkzf8GuNYlHcGnD+d83xhUq22RaWaPP0CMlJK7xs5wIgQxeKgxwt5w57b7Sq+hKfHfIQf9gesQ9cJ815g2yVQ3U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"98aa1ac2e7059661c92949a6c6849a2952c47664","gitHead":"5e4679849b5ecbd9edea48f2571d5942b115c0c1","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"4.4.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.0","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","express":"4.14.0","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","serve-index":"1.8.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.6.4.tgz_1491230011038_0.10556208249181509","host":"packages-12-west.internal.npmjs.com"}},"0.6.5":{"name":"vue-types","version":"0.6.5","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.6.5","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"bb16d084f3d6fb0036a16b13a32e459194e3ef49","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.6.5.tgz","integrity":"sha512-8HmloGu3I0BcGvVUUKqtgSJbLXzhstl0gT+fKIM2a6WHOLlCow2BYQCSEnLJGz269lrbnHwEHT7KIGk+7tCWog==","signatures":[{"sig":"MEUCIQDgXMX2PsK78FQ5yNBPLvjmMEQxUHl7OvJLH2n/dSJ2jQIgNO9uG5uonzQJ+znt1rohtmTCnhi/T12OLfMsfcA8Cts=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"bb16d084f3d6fb0036a16b13a32e459194e3ef49","gitHead":"296b601f8092c838182d7fe9cc1117ef7f2c483a","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"4.4.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.0","dependencies":{"object-assign":"4.1.0","lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.3.0","mocha":"3.1.2","eslint":"3.8.1","expect":"1.20.2","rimraf":"2.5.4","express":"4.14.0","webpack":"2.1.0-beta.25","babel-cli":"6.18.0","cross-env":"3.1.3","babel-core":"6.18.0","karma-mocha":"1.2.0","serve-index":"1.8.0","babel-loader":"6.2.7","karma-webpack":"1.8.0","eslint-config-vue":"1.1.0","eslint-plugin-vue":"0.1.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"1.5.5","babel-preset-es2015":"6.18.0","karma-mocha-reporter":"2.2.0","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.0","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.2","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-0.6.5.tgz_1491234830214_0.9658586590085179","host":"packages-18-east.internal.npmjs.com"}},"1.0.0-beta.1":{"name":"vue-types","version":"1.0.0-beta.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.0.0-beta.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"87d5d816286ca1238ffbf6fdfb4e26c03cd6d8f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.0.0-beta.1.tgz","integrity":"sha512-/Lo2rWqCONaAzWFbIP1qDPi2RwkJM1f1DM29vsvUs6aU5yS9fA0EgB4R0cHIir7hZWhWYboibfPTXEM6e+F0pQ==","signatures":[{"sig":"MEQCIAsViT1FQuEdoYU6eSkccXZIfON5O4uKVsiLftQ1rT7zAiBtDNNxToZIC5inbK2UlGTlE8qt5fsiJ/Qz56+rS77RCA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"87d5d816286ca1238ffbf6fdfb4e26c03cd6d8f1","gitHead":"2f5328013822ff6925945816b91cf8cfee150c59","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"4.4.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.0","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.5.0","mocha":"3.2.0","eslint":"3.19.0","expect":"1.20.2","rimraf":"2.6.1","express":"4.15.2","webpack":"2.3.3","babel-cli":"6.24.0","cross-env":"4.0.0","babel-core":"6.24.0","karma-mocha":"1.3.0","serve-index":"1.8.0","babel-loader":"6.4.1","karma-webpack":"2.0.3","eslint-config-vue":"2.0.2","eslint-plugin-vue":"2.0.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"2.0.1","babel-preset-es2015":"6.24.0","karma-mocha-reporter":"2.2.3","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.4","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.0.0-beta.1.tgz_1491298960561_0.7058957156259567","host":"packages-18-east.internal.npmjs.com"}},"1.0.0":{"name":"vue-types","version":"1.0.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.0.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"906fbeb81fe30236366ee83e503335006ca19f4f","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.0.0.tgz","integrity":"sha512-bJoGAWWOmAopS+g99hGX0l8IWilnk7zqGC4Di0tZHUc7X8Ty8PZbjF2f5S/D2haWjeSNHU+Bn4wOhpS6KNLRNQ==","signatures":[{"sig":"MEUCIDz7YonHb5+Wx5tVdAIY1sBKN/t7HMGNQVpffQplIEhCAiEA/fUcgtJyRBG2caGz76BWopSPiwnmS90L/EdUJ6xX53I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"906fbeb81fe30236366ee83e503335006ca19f4f","gitHead":"b135780318a25cf6be665178009671907741aa00","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"4.5.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.2","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.5.0","mocha":"3.2.0","eslint":"3.19.0","expect":"1.20.2","rimraf":"2.6.1","express":"4.15.2","webpack":"2.3.3","babel-cli":"6.24.0","cross-env":"4.0.0","babel-core":"6.24.0","karma-mocha":"1.3.0","serve-index":"1.8.0","babel-loader":"6.4.1","karma-webpack":"2.0.3","eslint-config-vue":"2.0.2","eslint-plugin-vue":"2.0.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"2.0.1","babel-preset-es2015":"6.24.0","karma-mocha-reporter":"2.2.3","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.4","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.0.0.tgz_1495910735422_0.38300911406986415","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"vue-types","version":"1.0.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.0.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types#readme","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"09e66d9afb2cd3872acb9d0e3c78a77e08baf8c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.0.1.tgz","integrity":"sha512-ImyOMZOOdPW+UWfiQ2iNOXvZnHdDV14IhLaseArXe44ZP5p7M0KhEScNd6vTD2VQA1/vgT7Q050NQrWkoT05Eg==","signatures":[{"sig":"MEYCIQCija4DjRiT8k42BMyr76vEoro542rAuo1iGZUN9517RgIhAJK+whYXbXjSC9M8izX9AffkYUX/omyQhGwib9BC8l/G","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","_from":".","files":["dist","es","src","umd"],"module":"es/index.js","_shasum":"09e66d9afb2cd3872acb9d0e3c78a77e08baf8c0","gitHead":"0fc2f46377715daeab474c913d8ed1e602b63879","scripts":{"lint":"eslint src *.js","test":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:min","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=cjs karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:min":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=production webpack --config webpack.umd.js","build:umd":"cross-env BABEL_ENV=cjs cross-env NODE_ENV=development webpack --config webpack.umd.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"4.5.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.0","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.5.0","mocha":"3.2.0","eslint":"3.19.0","expect":"1.20.2","rimraf":"2.6.1","express":"4.15.2","webpack":"2.3.3","babel-cli":"6.24.0","cross-env":"4.0.0","babel-core":"6.24.0","karma-mocha":"1.3.0","serve-index":"1.8.0","babel-loader":"6.4.1","karma-webpack":"2.0.3","eslint-config-vue":"2.0.2","eslint-plugin-vue":"2.0.1","karma-ie-launcher":"1.0.0","eslint-plugin-html":"2.0.1","babel-preset-es2015":"6.24.0","karma-mocha-reporter":"2.2.3","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","karma-chrome-launcher":"2.0.0","karma-safari-launcher":"1.0.0","karma-firefox-launcher":"1.0.1","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.4","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.0.1.tgz_1496060405678_0.8750407702755183","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"vue-types","version":"1.0.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.0.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"8a6504deaee92dec8ee75a38ed52fddc7f066c98","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.0.2.tgz","integrity":"sha512-njmWYJIy56mkuesOhAMdZezKKOIogZ52y3H4qAcN2cHtoenlBdh4DD0BMXN+QGO5lGKrrGnmrrTsGh9tdXyRZw==","signatures":[{"sig":"MEYCIQDPwbc4pfS0DrzDPKtCxZMfmOZo4JLdW7gRLKgqjzeg1gIhAKjbZJLLy1nEduulRWI1jwB4fMvly+D4WyXuznWvITMB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"f68df02cd5b8e36d5454ff4185efd92b0ade5095","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.2.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"6.10.3","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"1.7.0","mocha":"3.5.0","eslint":"4.4.1","expect":"1.20.2","rimraf":"2.6.1","rollup":"0.47.4","express":"4.15.4","babel-cli":"6.24.1","cross-env":"5.0.5","babel-core":"6.25.0","karma-mocha":"1.3.0","serve-index":"1.9.0","eslint-config-vue":"2.0.2","eslint-plugin-vue":"2.1.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"3.2.0","rollup-plugin-stub":"1.2.0","babel-preset-es2015":"6.24.1","rollup-plugin-babel":"3.0.2","karma-mocha-reporter":"2.2.3","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.1.0","rollup-plugin-uglify":"2.0.1","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"1.1.1","karma-firefox-launcher":"1.0.1","rollup-plugin-commonjs":"8.1.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"4.0.3","rollup-plugin-bundle-size":"1.0.1","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.0","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.0.2.tgz_1502895903883_0.283496260875836","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"vue-types","version":"1.0.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.0.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"4c8b5b70494d4702e04bb0d09a1e99321bd23496","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.0.3.tgz","integrity":"sha512-dm8QC9SpaiIJDf6QqWT5qp6or2awoTV1Zm+K+x1fSUNkKxV3J8cVEEAi3yRKks+Xa1rd6wKV4xtTrCumkAEGig==","signatures":[{"sig":"MEYCIQDjWH94iUFoz7WivJqRVZeVySUYwW8YfZxQLqmT1SV2PgIhANCO1H+VH+qPf/NAUUR1aqNpoc6KGJsRbFrbv373PXij","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"cebab28c12f4ddceb6a1d6306ca32734240d6618","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox,IE,Safari,Opera","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=cjs karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.5.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.9.2","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"2.0.0","mocha":"4.0.1","eslint":"4.13.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.52.3","express":"4.16.2","babel-cli":"6.26.0","cross-env":"5.1.1","babel-core":"6.26.0","karma-mocha":"1.3.0","serve-index":"1.9.1","eslint-config-vue":"2.0.2","eslint-plugin-vue":"2.1.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.1","rollup-plugin-stub":"1.2.0","babel-preset-es2015":"6.24.1","rollup-plugin-babel":"3.0.3","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"2.0.1","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"8.2.6","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"5.0.2","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.0","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.0.3.tgz_1513875538136_0.17660692194476724","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"vue-types","version":"1.1.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.1.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"11de67b8291c6bcc5f761f0d0e334bf8bf7c096e","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.1.0.tgz","integrity":"sha512-B3TUUkY4TXH2q2AuluRGNtP2eORhSsSJnmyTe/A7djLYaQegmcDS3+AUJ06OnMKbIXe0V6aljnfKaO180M61jg==","signatures":[{"sig":"MEUCIFIhO/miYYBCnCVvwUrjxHT6BqKZm5XWCtp0dyO7LDVWAiEA2lV4yUgBrQZ/qOOYuracERj5biOMCEHECPXnRaUjDn0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"b065ac80103349a5e7e2e8a89b68f43ce2f13bf9","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.5.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.9.2","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"2.0.0","mocha":"4.0.1","eslint":"4.13.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.52.3","express":"4.16.2","babel-cli":"6.26.0","cross-env":"5.1.1","babel-core":"6.26.0","karma-mocha":"1.3.0","serve-index":"1.9.1","eslint-config-vue":"2.0.2","eslint-plugin-vue":"2.1.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.1","rollup-plugin-stub":"1.2.0","babel-preset-es2015":"6.24.1","rollup-plugin-babel":"3.0.3","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"2.0.1","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"8.2.6","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"5.0.2","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.0","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.1.0.tgz_1513881070156_0.8524417777080089","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"vue-types","version":"1.1.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.1.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"9cb9d59d0121de29394406e4ef89a0633adc19c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.1.1.tgz","integrity":"sha512-rghQreXpkxdB6ODwcxo/9tVM+3daEYqaM0h1v8ZmB+2ffMDxHR3mwTYrcHt2pb6TqKTmT4H/wfmitDV9lp+mKA==","signatures":[{"sig":"MEQCIDHgdC5K17BB1bu3aijhSTvcL3qSpMOrfhfa833QgfH6AiBpAZ439Jn5dn12XY0dM/geXVs4ZPjcuDt9zhheYKQupw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"9380e8873363c0aa3db4abfd9e9fda9d94bfb83e","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.5.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.9.2","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"2.0.0","mocha":"4.0.1","eslint":"4.13.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.52.3","express":"4.16.2","babel-cli":"6.26.0","cross-env":"5.1.1","babel-core":"6.26.0","karma-mocha":"1.3.0","serve-index":"1.9.1","eslint-config-vue":"2.0.2","eslint-plugin-vue":"2.1.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.1","rollup-plugin-stub":"1.2.0","babel-preset-es2015":"6.24.1","rollup-plugin-babel":"3.0.3","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"2.0.1","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"8.2.6","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"5.0.2","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.0","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.1.1.tgz_1513881389338_0.5929292514920235","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"vue-types","version":"1.1.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.1.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"89564a46a64aff3882295902e99abac2d67e09c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.1.2.tgz","integrity":"sha512-wII4jhxm+CTVkfk+JO9q8DzT4oPvoS4/tGzfqnwNV6OWq1r2RwmremCbzMz3JBH+VxcdQzz7Cw+YSIneq1p8XQ==","signatures":[{"sig":"MEQCICDbiAg3zkiEf46y1ouUDKHFmxq2LbgUKZtQRxcoZbnBAiAmzyQZEYtrjPSMKJrSzpvqV38biU3yW0hGldxma9DMCQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"b6a0ea0648ea1ea2bd28d32c255022790ecbbac0","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.5.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.9.1","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"2.0.0","mocha":"4.0.1","eslint":"4.13.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.52.3","express":"4.16.2","babel-cli":"6.26.0","cross-env":"5.1.1","babel-core":"6.26.0","karma-mocha":"1.3.0","serve-index":"1.9.1","eslint-config-vue":"2.0.2","eslint-plugin-vue":"2.1.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.1","rollup-plugin-stub":"1.2.0","babel-preset-es2015":"6.24.1","rollup-plugin-babel":"3.0.3","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"2.0.1","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"8.2.6","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"5.0.2","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.0","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.1.2.tgz_1515968150060_0.07766140252351761","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"vue-types","version":"1.1.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.1.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"114e7b9baf4e041d88b6fd3708f159dcae6400bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.1.3.tgz","integrity":"sha512-tcPj4GgJtY0R2jVrHJ678dHyX+B0E4HGaC5lXGtMHOcU7HgtiFJl5jDmMnzSWG6fUB+xOA7e0nVdf+Fiw1BMwg==","signatures":[{"sig":"MEUCIFxu9yIv58btAdDCnnXqV5bZDD5S20lexr4tJ38RAEqtAiEAx6ih2c56iSvMC/POcjo2ELsHrZ+dhvJk+gpey+rzDKc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"3c80aba0bbfbaf68de88e4be607f524784403b18","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.5.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.9.2","dependencies":{"lodash.isplainobject":"4.0.6"},"devDependencies":{"karma":"2.0.0","mocha":"4.1.0","eslint":"4.15.0","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.54.0","express":"4.16.2","babel-cli":"6.26.0","cross-env":"5.1.3","babel-core":"6.26.0","karma-mocha":"1.3.0","serve-index":"1.9.1","eslint-config-vue":"2.0.2","eslint-plugin-vue":"4.2.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.1","rollup-plugin-stub":"1.2.0","babel-preset-es2015":"6.24.1","rollup-plugin-babel":"3.0.3","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"2.0.1","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"8.2.6","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"5.1.1","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.2","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types-1.1.3.tgz_1516193098405_0.9884764056187123","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"vue-types","version":"1.2.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.2.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"8569232dd27d9d541ded745777ddc7d414ea66b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.2.0.tgz","fileCount":13,"integrity":"sha512-NoAYINHlwgH6ErNn/YgIjLiHaiIUJLFhMxbGTOagQ/8qC4Cim02gCqbJ1q92HbE1V7ZuBrpDQd2At5RrtNeJOQ==","signatures":[{"sig":"MEQCIEyIxCSKCwuCw16TkxlH+kMufTBFp40Ju9CWh9tzxwTyAiAuggakGZ6VsWEzrdfYAWWrStNJ31KytM0ClMNry/dq9Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":122935},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"c0891f4418c18686b982ac32f714e9da27d4736b","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.6.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.9.4","browserslist":{"targets":{"browsers":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"]}},"dependencies":{"lodash.isplainobject":"4.0.6"},"_hasShrinkwrap":false,"devDependencies":{"karma":"2.0.0","mocha":"5.0.2","eslint":"4.18.2","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.56.4","express":"4.16.2","babel-cli":"6.26.0","cross-env":"5.1.3","babel-core":"6.26.0","karma-mocha":"1.3.0","serve-index":"1.9.1","babel-preset-env":"1.6.1","eslint-config-vue":"2.0.2","eslint-plugin-vue":"4.3.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.2","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"3.0.3","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"3.0.0","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.0.0","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"5.1.1","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.3","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.2.0_1520314963464_0.11483656236841622","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"vue-types","version":"1.2.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.2.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"37777385ffccc0dc5b7ff7b7fc2fc62489550494","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.2.1.tgz","fileCount":13,"integrity":"sha512-rR+KIa8OaRoWa7TyFPEQ1lk9woVEiFPcDX0PEqxNC3C35hTjv3udxN+aqyL4UM1dd5DcSRCfPlFVGNIGWwWpNw==","signatures":[{"sig":"MEUCIFx2rkX6AlnnF5BagM14g+PVR0SMxJJiOLJgOeG4XsJiAiEAlFY7ZmfeP5WFMocExGMhzi9PRzpoCELtswN8YO2Vsd8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1133181},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"f7c5aeb284befd4931a1587447ac86e397bf554c","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.6.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.9.4","browserslist":{"targets":{"browsers":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"]}},"dependencies":{"lodash.isplainobject":"4.0.6"},"_hasShrinkwrap":false,"devDependencies":{"vue":"2.5.16","karma":"2.0.0","mocha":"5.0.2","eslint":"4.18.2","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.56.4","express":"4.16.2","babel-cli":"6.26.0","cross-env":"5.1.3","babel-core":"6.26.0","karma-mocha":"1.3.0","serve-index":"1.9.1","babel-preset-env":"1.6.1","eslint-config-vue":"2.0.2","eslint-plugin-vue":"4.3.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.2","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"3.0.3","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"3.0.0","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.0.0","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"5.1.1","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.3","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.2.1_1521441062569_0.0308524921767539","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"vue-types","version":"1.2.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.2.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"fc32401f69a881f1be81b648ba6cf5d37671a45f","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.2.2.tgz","fileCount":13,"integrity":"sha512-QpOoDOtutCWn+U/G2/j6iyGSo5om+geGu5WaLoBA9+8a7qp+feGiqa6AhsWMJaojLSlDe4OTCstnh5y4B/VjzQ==","signatures":[{"sig":"MEUCIQDi3nLyVXE5WC7DmG8VphmI2FzKYaA9eUTIAcnQ40WkBgIgF0YTrBa/SASfRYAO+BKXr1/rgiXDvdwlz1jfwp9ODiw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1133181},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"c7976196006501c78cc38c378c1f5df8089b59ca","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"5.6.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.9.4","browserslist":{"targets":{"browsers":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"]}},"dependencies":{"lodash.isplainobject":"4.0.6"},"_hasShrinkwrap":false,"devDependencies":{"vue":"2.5.16","karma":"2.0.0","mocha":"5.0.2","eslint":"4.18.2","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.56.4","express":"4.16.2","babel-cli":"6.26.0","cross-env":"5.1.3","babel-core":"6.26.0","karma-mocha":"1.3.0","serve-index":"1.9.1","babel-preset-env":"1.6.1","eslint-config-vue":"2.0.2","eslint-plugin-vue":"4.3.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.2","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"3.0.3","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"3.0.0","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.0.0","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"5.1.1","rollup-plugin-node-globals":"1.1.0","rollup-plugin-node-resolve":"3.0.3","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.2.2_1521450853845_0.6751757659832793","host":"s3://npm-registry-packages"}},"1.2.3":{"name":"vue-types","version":"1.2.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.2.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"550777d60e459c9c4c54a5a0f0f97dc981bbab9f","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.2.3.tgz","fileCount":13,"integrity":"sha512-dRglSI0PZQTpFJUgmig1gUjB09nr9pD/dLBj3u3/PSTs/R4Lahj3efUqrw8GRPwtM/xtHP7+p4xM/t/j/ZVvFQ==","signatures":[{"sig":"MEUCIC5SZWz8NcON85zT0zVXuDC6DksYy2vX3Wblt1cV+ukaAiEAzG8EMI6Y2xERn9hRjTbw0sqQpWb1SikFxLFSLnCsnhY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":127930,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+PTRCRA9TVsSAnZWagAANxoP/Rs43Myl5AldZQZj198S\n+6AEWZPPP3hW5Opj08HJ950zWe+6JKAbLyOS7kKtUoDSIilP7nar3c+KaHm4\nYMLiu2kmwj8K112dSOO2SxkQftYWvQieMy0IFzhE7EtEDyN/kYnPNSULy9Mk\n82uE3cQ5XIXTU7H0R5HvuoVWu2xdAq9USNHKkvVhFFFdbqdUPEX1i0R2DGPW\n/maCsznJoyA+SCT1Kh4NjXSFJ1PUedH0rOv9vVj+2OUrjTTcnhZ+jx9LqRex\na9Jzfryo2masTUXtbbUFg6t45JglcOktc2iGpWjtB5DDgEc3nqCGKxyDC14u\nRa+S99Q/UPJL3U9PmACKDT/askJ1s7vdKFFlP27tGZ1DGi0bXDo9cDWtqIBk\nu5RJ7rJmxHcj8qrUTrJAmI335Jrj//LzGh8Ys3Tua17lDevGkFXgGtFKPFg5\nSHv+jOTL3dDwTbrBZoDITBkdH57k4FgLadITFusjDTSG4icrKCbWfQWnCQqB\n2d7meuzVpeubUAH8zp4AiokjXVIWXvF5hf6Fd5wKxmUmfqrYV+5Nz/XsMsu9\nJ+VIIWkBLGTx0ECgaaPtwQSl2VfTYzw5BQO5Owq7zNLl17zSTtmttQxGt9BH\nCci1zYK2FadtPnl1P59Tc+aiHNQ5z6pVNZtc7Vi/WuOK4E3e26F8hnD1Q/J9\nTdl9\r\n=6baX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist","es","src","umd"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"0a7789daac51e943f98c74c35bb723dd807955a3","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.0.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.0","browserslist":{"targets":{"browsers":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"]}},"dependencies":{"lodash.isplainobject":"4.0.6"},"_hasShrinkwrap":false,"devDependencies":{"vue":"2.5.16","karma":"2.0.2","mocha":"5.1.1","eslint":"4.19.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.58.2","express":"4.16.3","babel-cli":"6.26.0","cross-env":"5.1.5","babel-core":"6.26.3","karma-mocha":"1.3.0","serve-index":"1.9.1","babel-preset-env":"1.7.0","eslint-config-vue":"2.0.2","eslint-plugin-vue":"4.5.0","karma-ie-launcher":"1.0.0","eslint-plugin-html":"4.0.3","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"3.0.4","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"3.0.0","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.1.3","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"6.0.0","rollup-plugin-node-globals":"1.2.1","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.2.3_1526265039555_0.8473623797188512","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"vue-types","version":"1.3.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.3.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"9f71882537a017b285269c9584beb16c6c03e630","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.3.0.tgz","fileCount":16,"integrity":"sha512-XjV11tZdNNfUbIKzZZuJ5SdV+34PiXk1Weac7pxJVCCDF5Nzp5N0ckVFscN5v2iB49IQ//OuCQOMXLTcwZX9kA==","signatures":[{"sig":"MEQCIDJdYcN6nRgaYLi43Wgfb5/MR974QxAOXbihloJOeYuwAiB2avdv/19lV/sxCRZ2NefmZ96sf7uwb3WdWzcx1Z4hCg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134118,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbDmMQCRA9TVsSAnZWagAAcD0P/07Y+z0R/ah0pVidrHwS\nlPnMqYm3r2r+JtVVedE+QcpKSM4yGd9A8I2coIKWWvTL9+4/U/iffvCbEenp\nXFk5Q25uanjQ39H9198snYdhtLQoM1RQ0XUQNcje9qU9x4IUPf5LYCIQZSe9\n0drhBKX/8PCg5UEQwfrQBCRx2MyaMrVEVYem7hl08uB57RtV+g/YZX2Xd1DC\nfmin2VuoVumy+CwR0dpvBZEucI9bV2vnFA7pROvYpN/4+TKJCYAD83Rl/010\nTS+sr2DkiAatoGden5DeyX3QvU0PW4FOylcYTFSj2K/pCChc91knUjybHgLi\np+FKAGPpouoURafbjJmWqwthx5DSkvLd35YhEi/AIeb+6rNKx6t2oyWttNHn\nVNHi/fOhpZThVHADX9ve4tEaaijq0kFT2gg5jWnRrODmFHSAUUgQld9OEemR\nptwXwNfryWt+DoMIsm6syFljbCHzksFqjyXq37bHj0bfMoxhh5K/rFQ1D8td\nJpNB6XrVIBepL9xDsSr1nesIgky4dgleWHj2GlVwbS7FO4PIdrY+atUh22xq\nd4/600PgTK61XgKcSLBLH9+vR+d3qbMpDKEem5QnpJmQmph+Tn2ASUttJ9tl\njSl7MuyLBywB8gnmuKQ+szm7dfX9yByKNbkNJykZzrVfd+SX83ui/u19quH9\nDlz5\r\n=LliN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist","es","src","umd","types/*.d.ts"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"864eb0bc4f3af4d19dcce077e2a9e34e9f5b4269","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.0.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.0","browserslist":{"targets":{"browsers":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"]}},"dependencies":{"lodash.isplainobject":"4.0.6"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.5.0","karma":"2.0.2","mocha":"5.2.0","eslint":"4.19.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.59.4","tslint":"5.10.0","dtslint":"0.3.0","express":"4.16.3","babel-cli":"6.26.0","cross-env":"5.1.6","babel-core":"6.26.3","typescript":"2.8.3","@types/node":"10.1.4","karma-mocha":"1.3.0","serve-index":"1.9.1","babel-preset-env":"1.7.0","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"3.0.4","vue-class-component":"~6.2.0","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"4.0.0","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.1.3","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"6.0.0","rollup-plugin-node-globals":"1.2.1","rollup-plugin-node-resolve":"3.3.0","@types/lodash.isplainobject":"4.0.3","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.3.0_1527669519653_0.9812742712504436","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"vue-types","version":"1.3.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.3.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"e6674220ba2826c132044059adc2954a94cb153e","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.3.1.tgz","fileCount":16,"integrity":"sha512-ifeFd5R7A+8trUxNCueJh4kyBywZA6Y6Y4F6Bx8dbD1cB6St13ybdPJSN0Ubsj0ie00gtQCCz2nvuyBPSaiOPA==","signatures":[{"sig":"MEUCIAKYDuCz7qX+r3q7ngb5IYrLaDAZ/KL9dg81AYDsb5HCAiEA6KkSOwanuH1rgIlNgPMXYj+cc4f4k1ma8acogu1mq6s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":134309,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbH0NuCRA9TVsSAnZWagAAf5sP/AmMimY9KguC82HmlADW\nvv4Y103Ny/6rMvVRFAFwT8Ceos2C8YQVtYnAngD+2ueCqzH8OJp1J26EhcWP\nkKd23XvLG3Sw2AXGgl+s5zErPBtWUp+mWjHYW65EzbHbk0Y0awa7zWwsZs3V\no1xNSJsdvlhzOphCtNwPYG9PWJGJQFxqa5gsdKFGWHMKT7knZ8OGEQ8/eIeJ\ngwQTwXKyCV+jc/IwBqWEDaVMK+UBAUXwRyol+5caRlxK2lacxJIfrW+T8+4A\nd2hgAIwMs+MdoovYBF0eAwuDDj5sl7WHW5ZD5KkAS85Sjr63PfOfTo4XGc33\nEDlACAOZnRc/jwQ68VmWuYBhGlr87fj6oTEdD5FOE5LCcf4Bhe5lLDAOW4z5\n8P90+Q5NxZIpIRnRmYNoae9BcWCGU6dynAmgX6j3CpJj7FztSQEhV96XIimq\nFfgPDceqno3gYOFXAe26Q9nblZJz1/jllS/fHByyDFxYMWvF6GNvWKwhKVLm\nKDKWnmNOkjHhjKq9kFMnU7qw4gWog4iayNsEGr9NEArfhZtOE7ZaS9hlr/qa\nFCoEoz9Cxe0arNTqDQ2e5+DafxfiaRdj1o2BGdO1RBgj4WBsSe4wqWAuzL1R\nsRjU6/b9pAlWEV85y7sf/MPXpv8M7hA90cxf2vXaNPOQmLpqtVrV8bbifET7\nq055\r\n=TUmy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist","es","src","umd","types/*.d.ts"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"d5e55b342e09c12b9ec0ffd98b8378e970cef7ca","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers PhantomJS","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.1.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.2","browserslist":{"targets":{"browsers":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"]}},"dependencies":{"lodash.isplainobject":"4.0.6"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.5.0","karma":"2.0.2","mocha":"5.2.0","eslint":"4.19.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.59.4","tslint":"5.10.0","dtslint":"0.3.0","express":"4.16.3","babel-cli":"6.26.0","cross-env":"5.1.6","babel-core":"6.26.3","typescript":"2.8.3","@types/node":"10.1.4","karma-mocha":"1.3.0","serve-index":"1.9.1","babel-preset-env":"1.7.0","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"3.0.4","vue-class-component":"~6.2.0","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"4.0.0","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.1.3","rollup-plugin-filesize":"1.5.0","karma-phantomjs-launcher":"1.0.4","karma-rollup-preprocessor":"6.0.0","rollup-plugin-node-globals":"1.2.1","rollup-plugin-node-resolve":"3.3.0","@types/lodash.isplainobject":"4.0.3","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.3.1_1528775532045_0.5818593350899273","host":"s3://npm-registry-packages"}},"1.3.2":{"name":"vue-types","version":"1.3.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.3.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"d28b8f7ce2d74536025eaf6f1904fe9ec965c127","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.3.2.tgz","fileCount":16,"integrity":"sha512-nDxexHdChDy4Aj02nvQ6A2NmdGQOXlO6TtYonL6KHmkk4DIkbE1+nBf7gh1n4fcTMvidKWCQht6EUc1XBfXO7A==","signatures":[{"sig":"MEQCIGzHqaecFll2HTV4XPQvGrzHHwPdTMmMZweMhNOdOv1HAiA2F1E9LAHFy9H+oQV3TDQUj/Q405QiHlwzB/jYmwog1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":136591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbL3J3CRA9TVsSAnZWagAAZ3kP/3PgXeJootisUCwGeLq2\nNXGmKHf8yjhqhSxVCEJEi9tKZbQb5w1ffv3mp7ivPmMJq5wu8COapMhMdyJM\nsayF4DURI3M+wQymmI51lWR+dB/yQEPaPKH8RxMO2vP+m4vG4B/qyXQn9Zyc\nNnIrdmSSW32yeexaEu1MttyXzw6XklTDNWaKy178pr9ewta/ZhkQy6y7n0gc\nOrW7AfK3EalzSQGMoyS2AR19DwKLsvQanOq/GQsCN8LWpSOjAc715AxExniV\nJtXOH4NCuEtGsVtaXgM7VQAhRSLe0gu2hB+CPjHZTpHNE1TE0PiTnh+4giq/\nv2RabXi5PCd2g+p2RkUp44+GJzMMxNcmQSA4qxjaoy3xT00zV0H5A+yWj/Ij\nCSpbKaEkhlI0Up5mnzKoki41nC5OLmP/OUt3BfVkspsp0UIbLYhjkSUpD3sO\n396lo+jRJUyYkcdDjwnMD240ziNst8bdH4CvREQ9AAtJoA0iPXhSUDy3s2ic\nb5nxQBDZLIOuq+Pu9R+q02x/VvJr3/48fIvi/3TkR+BO5q9Q2MACxg50hFe6\nBL3wIst4YHPSxp9oIW7CEaU+RYgJ0U4ZMdGWJDR3lfnMUdn4YRlJ26cupBgM\nQPdPiBOoyAFocft7/WMhNXK29SZ/wQE3Xy7ddVp4vwoJvdFE3eHt96qQNXQA\n2zPS\r\n=epwk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.js","files":["dist","es","src","umd","types/*.d.ts"],"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"5769a2c3b502e79499fbd1de6a4c2542b7ea4d7e","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.1.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.3","browserslist":{"targets":{"browsers":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"]}},"dependencies":{"lodash.isplainobject":"4.0.6"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.5.0","karma":"2.0.2","mocha":"5.2.0","eslint":"4.19.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.59.4","tslint":"5.10.0","dtslint":"0.3.0","express":"4.16.3","babel-cli":"6.26.0","cross-env":"5.1.6","puppeteer":"1.5.0","babel-core":"6.26.3","typescript":"2.8.3","@types/node":"10.1.4","karma-mocha":"1.3.0","serve-index":"1.9.1","babel-preset-env":"1.7.0","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"3.0.4","vue-class-component":"~6.2.0","karma-mocha-reporter":"2.2.5","karma-opera-launcher":"1.0.0","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"4.0.0","karma-chrome-launcher":"2.2.0","karma-safari-launcher":"1.0.0","rollup-plugin-replace":"2.0.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.1.3","rollup-plugin-filesize":"1.5.0","karma-rollup-preprocessor":"6.0.0","rollup-plugin-node-globals":"1.2.1","rollup-plugin-node-resolve":"3.3.0","@types/lodash.isplainobject":"4.0.3","rollup-plugin-node-builtins":"2.1.2","babel-plugin-external-helpers":"6.22.0","babel-plugin-add-module-exports":"0.2.1"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.3.2_1529836151788_0.8795907830736147","host":"s3://npm-registry-packages"}},"1.3.3":{"name":"vue-types","version":"1.3.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.3.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"90ac9244363f16dbbc22f2ce28e732b6605dd3ad","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.3.3.tgz","fileCount":19,"integrity":"sha512-JOFyA5iLRlUVScBbBxDksniFp3Zheg53sAmJ0rPXI/+/KHQMOIx5gWgj/azFXZuQbf8a/cEROhHJVrEcQoIS3g==","signatures":[{"sig":"MEQCIHTcKIv0qEhiawTyTPT5e8W3+GoSyEitfe0Hk+E5xC9HAiAMaOTdKyjJ+QvmvvXK7NWq8hvCXEsD1jOE48eVjn6Adw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":149935,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbjLOKCRA9TVsSAnZWagAA4h4QAIVSI6qZX7xDPHEEugY3\niugWYH7Xhw8oOQ01leXJ2nDvlIgf8oD62XvZUzHFXWXU1HEeICtfP5mihTxF\nxE1QK1z5uVag+8H8F29bUXo4aq84ryk8XzFaeHuNmFkzx4m+BlD7xwVrmBPx\nO73+IuVU06gnnj/THgQ42JzLKoYnwuR3eyROA8dQQzJZcBhEe1nmqPu/UIwp\nvafX3lQh+2V3V9ykdVMY6OrGAPJCgXTZ1DuTWChlhbupM5ClsyiWMwbs2Ba6\nyZsjybsiWJ7g1oNohbqXur0WZTHCK9v1E5kcZqodhYRnI3WfBlYSPKLCUYGY\nOeqTkBCvBTNm/Z1zW016V3FgVMz0sS2ZhPz54M7fAqZ2oFE7BiAOVj3EkHaF\nZu0RNNcvAOSQjS9wfRbzSuFZ0BrDlj6yTpD5cnVqT6XoviWUGEYvdtwArWKg\n757UnW3e0htgiIkk4bgN7AsrwipCccJANBRqJwy0sJWRUVUlXZs0Zw+LJBE+\n/kuwiUFdOg2Io8rU3YwFsg+9knjv/+4KpP1Jj57E8E4BPiHkU0m7aQhp9qIs\nllUy+bRrB6LU6yIPGMbcM3sJlKJj2Rsxy9zXQH6wwGe1fuSb1BCFgEVTkSZ8\nX9I2H9wNzCFgVtWqyLGGnZaBFTJkNB2rYaSw6a2b68GBiEdBp4KmQIEe6wrH\nMW2X\r\n=gmsr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"d940604a16ae0b46eab28086341291216077abb7","scripts":{"lint":"eslint src/*.js test/*.js","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.4.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.2","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.5.17","karma":"3.0.0","mocha":"5.2.0","eslint":"4.19.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.65.0","tslint":"5.11.0","dtslint":"0.3.0","express":"4.16.3","cross-env":"5.2.0","puppeteer":"1.7.0","@babel/cli":"7.0.0","typescript":"3.0.3","@babel/core":"7.0.0","@types/node":"10.9.4","karma-mocha":"1.3.0","serve-index":"1.9.1","@types/lodash":"4.14.116","@babel/preset-env":"7.0.0","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"4.0.2","vue-class-component":"~6.2.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"5.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.0.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.1.6","rollup-plugin-filesize":"4.0.1","karma-rollup-preprocessor":"6.0.1","rollup-plugin-node-globals":"1.2.1","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.3.3_1535947657754_0.8156219144170922","host":"s3://npm-registry-packages"}},"1.3.4-beta.0":{"name":"vue-types","version":"1.3.4-beta.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.3.4-beta.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"20681dc13dfe92fcb203bbff46e9c1e87b65541d","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.3.4-beta.0.tgz","fileCount":19,"integrity":"sha512-eZp8mDa3GGQtOOFcteC8U4xpG8G9Byk/qDppmf6QuInDTsbRtae8Wnd2HNVxD9WTGiV/foMrH20wN5r0qODSQQ==","signatures":[{"sig":"MEUCIE8jF2V1BNlfTVVTpXd9gEICLaj46zhUhQsLQSnyPdnSAiEAv6cbTdJqwpeYIAPnQOJMV/rYouI6I59qERx7QmVvOrM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":149977,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbtZ71CRA9TVsSAnZWagAA+0MP/jvzshpuMKsSetFLufCP\nLMX0zwRAoxzPFARcgoxnrmXrG2cSIEbnbH4uGZdn/n/rwGt3KG8jaZpSaT/K\nSPtdd1SAQYVi7Gd2a/efv8Jh7U5VKSItBJxBdhjCxKyVZiJMDIzOZ4ToSKlP\nXb+w5t7qFnYGZcDzbtt69mepo5xTM82odjjZlMj/EJyjpo06+l1QvNlXUSL1\nsi335pLcztKyv5M1p0vS0yA+Rugcy/rkIQhe2ibzRT9CeNyvnQ88asQR+wDM\nVFK1OkP1PqVvRGy6bo3iBAQhWccyyGHqcE30bsZb5xRBq686YylhPj/VM0Az\nZnzZs05IO6w5bz/8k+oPYLzctCJ31rgsammH99qePpXKOGDq+l3TvAes0kTn\ngTFqDpqpR71A58oCHFHg4UzNv92GnOKuM6N9XJYOUO1k0In/66n6P4ccfoky\nE7YKxuaDOnp9gkdKi+OMx42an+Zt0vLkFG77NPd7EEtejK8pbdrfDIG6SFA4\n5Yb8csACdBHU/rlvJnSDgM/WUkvEbCIxXCIhEmr8lBAk36QL1taxAQtqT8Md\nNQjeplqINdJbLrSnWHXXZopMDI3jC0Hi+J+EbJ7jffLc3yv7QIpTJa3LZUdQ\nb8UoA8ARVbL5AtPZK+Zn0ElmATG1lmJlnfgYzT1ANqckl0AA9zEjUCjA6K4H\nQy84\r\n=8Nom\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"3408dde4a7a830dba6e08fa761cb1ca156d5ecd6","scripts":{"lint":"eslint src/*.js test/*.js && npm run lint:types","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.4.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.2","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"lodash":"^4.17.10"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.5.17","karma":"3.0.0","mocha":"5.2.0","eslint":"4.19.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.65.0","tslint":"5.11.0","dtslint":"0.3.0","express":"4.16.3","cross-env":"5.2.0","puppeteer":"1.7.0","@babel/cli":"7.0.0","typescript":"3.0.3","@babel/core":"7.0.0","@types/node":"10.9.4","karma-mocha":"1.3.0","serve-index":"1.9.1","@types/lodash":"4.14.116","@babel/preset-env":"7.0.0","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"4.0.2","vue-class-component":"~6.2.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"5.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.0.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.1.6","rollup-plugin-filesize":"4.0.1","karma-rollup-preprocessor":"6.0.1","rollup-plugin-node-globals":"1.2.1","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.3.4-beta.0_1538629363971_0.7209695438609947","host":"s3://npm-registry-packages"}},"1.3.4-beta.1":{"name":"vue-types","version":"1.3.4-beta.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.3.4-beta.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"aa8d2026927c57c829b4d621031095e018414a4e","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.3.4-beta.1.tgz","fileCount":19,"integrity":"sha512-L9GT7DPu3EBfj67I2ebchaimCO5JJdKsvvqSPd5ToQTMWJOyJMwTJlq7ip1NcTlYA1R1HdJdPYlfJktD6ab/jQ==","signatures":[{"sig":"MEQCIBUExfYJdql2b6E6uETeEMjONlxFB2TDpAGulGmgbzSOAiB7DZC0DZqr6AX5NltVLO32CmtKB1Ff20GDyd6MesrAxQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":149995,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcEKC+CRA9TVsSAnZWagAAPqMP/2nDyCjuOis3EWrxqgrf\nU1gS9DmtMUnITAR+0uwkfDpbG11oY7dr+jTCbykMGHhFx4+g5Tc3A/KO59AM\nm7wiZf5oP0Uz70ne+dsveO1rYflkhLCMEmRnHTFMSvbx/B41HVu6SewiPZLS\nsRH98Ve3tp3U8EwPa6fHRI/p19jSHsnhpzChZkZvV1C9xWLEBGEh/rCnCldF\n2X6yaU6fWz03Jqei0+QuqdgrpEqWoSOLyKniRTkZjysuCFEIkKduTQROBQlR\nl2OSUIpWlKFI8xyo+LxAhX3cAeHCeHaCsLQkHu8iimYGtg+D/ELIVUk/Xuu9\nw23v8wUrxyCTIHDnULsyl5esvgSoDJeFIYgt0C2GFeWT0hVzNgU1h0r1SkLH\n8zP5sMVAPRCyA0E9wD7wuDRjahEs9uK56HHmzCLk6dUo57AcleZPuyFuW3VZ\nn83C5Yu2gtHWRhqW76Woffkzh+rtjWUsaV16+6CcGTb8fvO4+iGF7iQViH4+\n1hjTH79cK3sYTtn0ITh+EGuyaptXASjDgVHskACel50TPF5HHZFjAEEoPIEK\nNLe1HRG3xtP2ZcaPsIS/dIYVmRema3NWO1wmkdGl3w9SRcA1f88oXAjHJQAb\nBfiKrGQ4jEmIUxzWwwkVZ3z4oqJkdaxD/lDIcHHkEr7chhgExaAYmMnK9Zbj\nGYc6\r\n=Q8+r\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"01d8a1ea21d2a37615b82672df4a5341e9cfa79c","scripts":{"lint":"eslint src/*.js test/*.js && npm run lint:types","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.5.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.13.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"lodash":"^4.17.10"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.5.17","karma":"3.0.0","mocha":"5.2.0","eslint":"4.19.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.65.0","tslint":"5.11.0","dtslint":"0.3.0","express":"4.16.3","cross-env":"5.2.0","puppeteer":"1.7.0","@babel/cli":"7.0.0","typescript":"3.0.3","@babel/core":"7.0.0","@types/node":"10.9.4","karma-mocha":"1.3.0","serve-index":"1.9.1","@types/lodash":"4.14.116","@babel/preset-env":"7.0.0","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"4.0.2","vue-class-component":"~6.2.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"5.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.0.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.1.6","rollup-plugin-filesize":"4.0.1","karma-rollup-preprocessor":"6.0.1","rollup-plugin-node-globals":"1.2.1","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.3.4-beta.1_1544593597775_0.2880806237372229","host":"s3://npm-registry-packages"}},"1.3.4":{"name":"vue-types","version":"1.3.4","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.3.4","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"78c53ddd0007e209d1502d76cc51dd5b7e1d5fe6","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.3.4.tgz","fileCount":19,"integrity":"sha512-c8a0wShFBSOkPUWTtv/OKi55cEAScTTQx/kOd2EuahSyMFPB8f+vYQbsn9RvTQylEtR3ERu9G/em6sGb9Nvmbw==","signatures":[{"sig":"MEYCIQC9+Ae6DOFmE9HlWaawLdmt3DACXAdbExiQ41pPLf4xSAIhAO34f9wzGdvCzkF4lw/ODXm85+tJ1ZmVOaGpSOFgpxQE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":149976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcE0F2CRA9TVsSAnZWagAA+mIP/idDY6uuXkB8sYWqSDxI\nnpzmZkO8Tg9eMksG7WAUKovDyUH26iczpKh0NIiQ6YvX6Y7GFkGXIJOGVl9M\n30UIA0PAyg9MDCsrgY+3sT6V7cucfSkXJaDz+h5LYueBieVNNuxJjcaOY6M8\nO95TYUGiyx1SH/Swzxp3EH5WnPdn0zNI7+/8aNKs2d5GXuaHotq/wtniihGC\nJikeYUygQBe5cbVxoLqFUwRv/rVaJpklRh7yhDSs4LCulOPmOwtAgEauUkLv\nlkiQ2pYvPosros11cgsJTdAj7yFXklt3gsJbUwBVao0YRJDpvyH241yspA9f\nrK+fLmDzpmcPBj5EK+FogBFosNdwv2dl/UgsUH9G9UFTDV9itv5edT2Uscse\n2YqOUVpoo+BukMaScVEENaBo1bK14oNAEPiG29J6WnqdpdM1tVwzwKy/7CQb\nTXGnurujzkm2cSYNhfgntaIxav2/ZUjvUAaY4vRaw+U2kONht84p3/NqWWjI\nAK9ItrCokTO62FB3mN6WqmMZw9owiB+bdhp1lIKY7wKnWf639Zta4uhP4Bj/\njoAOQgrWSEBYqb05u3ZYMwtzbF4qD/nsRL24yDNHN47COUsGaQZULYtYknoR\nl2QRuLePjugGlxQ8vg3qELy4Sy9ZPEWr2gStN6K/rbgFWCC3j42Y1h05wvgy\nVEqj\r\n=QF0f\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"76c042d659f358a337d0c40fed1c0cd3198cd31f","scripts":{"lint":"eslint src/*.js test/*.js && npm run lint:types","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"node ./server/index.js","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.5.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.13.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.5.17","karma":"3.0.0","mocha":"5.2.0","eslint":"4.19.1","expect":"1.20.2","rimraf":"2.6.2","rollup":"0.65.0","tslint":"5.11.0","dtslint":"0.3.0","express":"4.16.3","cross-env":"5.2.0","puppeteer":"1.7.0","@babel/cli":"7.0.0","typescript":"3.0.3","@babel/core":"7.0.0","@types/node":"10.9.4","karma-mocha":"1.3.0","serve-index":"1.9.1","@types/lodash":"4.14.116","@babel/preset-env":"7.0.0","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-babel":"4.0.2","vue-class-component":"~6.2.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"5.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.0.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.1.6","rollup-plugin-filesize":"4.0.1","karma-rollup-preprocessor":"6.0.1","rollup-plugin-node-globals":"1.2.1","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.3.4_1544765813622_0.2562256355816168","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"vue-types","version":"1.5.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.5.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"ed7988896bdb4fb1fe47df293d289e5c36d7d418","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.5.0.tgz","fileCount":25,"integrity":"sha512-sXtq47f+KOlknfJC5k+m+BsMB8vYeBWTO0fkRt/GDYONlnRSnI2Uz4WnLhpLWUKdckgeHqGnyS68JAAn7LQFPg==","signatures":[{"sig":"MEYCIQCVnkn+1K9iR7bn5LB4C3yj6bsChbt7+kXgDmxLd0nClQIhAL1lG12pLxdRBTbprpjQo/87wrwNs43713qxSCUN8re9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":175627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZObICRA9TVsSAnZWagAAYqEP/Rq/v9WXUuOdfzMiXw0W\n2f43/zNbgFce/LfDOr7CDr6iujkEhDCCBSbDqvGFIJCowasiGOQ1byXUn5K+\n16wEpamfsiWM6IQHmm2rSXn/phgtaZcCRpCfDh40yhOGER0VASH38akrUcRp\niHIR57/wTZmIHE8H390/YDdeIHYULtasKe2tIu6/TS9e+o2bHHp0/gQVaOaT\nv1BZSJ6eGdBDfwkzdXuy6timI8llSOdaD8vob9IkMirNZODunFEIa3I6R2XR\nMcaeEDu5/RSUsSJ0HjVP4OD8718/zaIQsww2E7hXRfmT3SUOfrzblEqORvWl\njjQpTdqqag+Tb42lvhj/FhVbzuiVORiKVeu18h/QW+Jqap5qdIICDPg9YBDy\nvWWBMTBjJHwyP9s7dQ94IPeobdM0WbTzbHFOw3/p00u7avJWtHyohM7Rs3vP\nPxFdBacZ/DEb4WAiwAf90Y67ydPqXVl2VXPvnXGPHVWQLUglLqKPDNCRKVdS\nWkPimX9MoO+Off5K8yMFQ7kMbbFlU8eYVWWUq/y2nMdJT7tlKxM/8jvI5WJy\naqg0KzEGRKNmeDe7iEUGwkn+nlRyetjk3+nZF0dbrLAc1Chy3LjsyHi4kXl4\nn5ONIPi5YFVBD+8TGCCUWcGm1QX5RiG0glI/I0TDtDBKJ5RFnUgP9ktAH9OE\njSYG\r\n=QvNY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"67c332f46fee6f1b8c14ffd257a79d8f2d8e42da","scripts":{"lint":"eslint src/*.js test/*.js && npm run lint:types","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.7.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.2","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.5.17","karma":"3.1.4","mocha":"5.2.0","eslint":"5.12.1","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.1.2","tslint":"5.12.1","core-js":"2.6.3","dtslint":"0.4.2","cross-env":"5.2.0","puppeteer":"1.11.0","@babel/cli":"7.2.3","typescript":"3.3.3","@babel/core":"7.2.2","@types/node":"11.9.3","karma-mocha":"1.3.0","@types/lodash":"4.14.121","@babel/preset-env":"7.3.1","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.1","rollup-plugin-babel":"4.3.2","rollup-plugin-serve":"1.0.0","vue-class-component":"~6.3.2","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"6.0.1","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.1.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.2.0","rollup-plugin-filesize":"6.0.0","karma-rollup-preprocessor":"7.0.0-rc.2","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"4.0.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.5.0_1550116551718_0.4225562073506848","host":"s3://npm-registry-packages"}},"1.5.1":{"name":"vue-types","version":"1.5.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.5.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"23cc0e3aaa63153a650fbaa78c9003d7d0eed0b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.5.1.tgz","fileCount":25,"integrity":"sha512-l+/Rf/WMj3fEokqO967g2jXN4Isg84LhfOwrDMzkKjsxVBV59b3RDKdNtoMcptatF7kmWsSz4SnHKZIHQpBLog==","signatures":[{"sig":"MEQCIBBwXok7HlUett+2YD6wmxykdXAo1ckfLGvrfeuF6tU3AiBHGiS3Kkl9pWCBZWowlnDPJn50R3K/t2cveKWH1+9szw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":178313,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcoY+aCRA9TVsSAnZWagAAf14P/j7j6M8HyLBe3ue8yLCG\n3AQ746LryLPcBsFmnlaz10cQ8Rn6Fx4V8tOR26pCxt2Ot8uEs3jo1z1vyOUV\nBmgS+/pmo8IUNMvyGAVz1AVjm0ywlDvyeZaFc+3LmJW1hlp2yWB0iBWFAULz\nCuxnMJz59qN4JDtloi3cnzk5Jr4ViP3EZgZ/3UdYzr2lYJDlUDOdb8itCA0t\n1GQg44+HKjxRunPsv/ONC96OCgW1+kD/UQxGUsw5DKScgzb/6EP85KTpuAtY\n/yetmGOPZUHTL9TdXcVcmOSzbMXjdJLZylNi1TCnektTy1zEh5dqnzCwgzIa\n0apSxuZnGQqHFXHvl9X/cWgp89LM1NwGfx3cOxy0UrSuEabsrZJJt+ImiApG\n1c7MkJm79KTlnnHazeag3vMV6Q3G4xVnvcGp4GKzKQEGKHcrysXE2JxjlRlE\nMuuxZeMwTSOWbVICWX2WfQvJrY6bxjKWoEQkHGRtfSRy+YGLuQ7aJ92RjelK\nzLFkizzlFBP0S1wv2a/sJIh04LF0v9jYMh1UkiiYizsCPvKkSsuNYr3++OLQ\nhujStbOB6ro0J7tjfKj7wupPM50qHf3d5beakDLZB44BBdqO/vuWLFRVhAG8\nPInR4wjQSuH2R1hPA93SupzGYhg8FH0K8URBavNVgAHIxaE3HN8Q3AFDhSKG\nfkwS\r\n=DoTY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"c976c2de2733f713bf7783d5a73e484125474cbe","scripts":{"lint":"eslint src/*.js test/*.js && npm run lint:types","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.7.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.2","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"lodash":"^4.17.10"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.5.17","karma":"3.1.4","mocha":"5.2.0","eslint":"5.12.1","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.1.2","tslint":"5.12.1","core-js":"2.6.3","dtslint":"0.4.2","cross-env":"5.2.0","puppeteer":"1.11.0","@babel/cli":"7.2.3","typescript":"3.3.3","@babel/core":"7.2.2","@types/node":"11.9.3","karma-mocha":"1.3.0","@types/lodash":"4.14.121","@babel/preset-env":"7.3.1","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.1","rollup-plugin-babel":"4.3.2","rollup-plugin-serve":"1.0.0","vue-class-component":"~6.3.2","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"6.0.1","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.1.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.2.0","rollup-plugin-filesize":"6.0.0","karma-rollup-preprocessor":"7.0.0-rc.2","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"4.0.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.5.1_1554091928847_0.2142518386061818","host":"s3://npm-registry-packages"}},"1.5.2":{"name":"vue-types","version":"1.5.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.5.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"a43509b183b4f1d310662ad2fba1e95be835acfd","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.5.2.tgz","fileCount":25,"integrity":"sha512-QWCzUrQfujrrEQKD+PswRkTlEYUXTG/EahksSLDfPILPZGERqtsGPQyDYP7n7qVwI/53ciYe3Z4/nDtqGVRSbg==","signatures":[{"sig":"MEQCIASSY7DnCLrJV/IBOHkbo8+iKhyyzyCRQik3B0KI9O9tAiAW6L7k7cc3/QedJPNh/8amSx8VkZ8RP/wVY1RJersPbw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":179427,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcobVzCRA9TVsSAnZWagAA7E8QAIpVdFkJGWjfnA313Hwy\nPuNaXta+Lawy1QC3IZjEu8YfNQNicKiV/9TRR44YoWPtdQm5QotFjyPSQ7Qt\nU+SdFGED0oLB/RIl/zuZpxrXUOQjGkT73oepR1fLPnx6aGhe1ofiQH2AxVDp\ndLPDdFBWgbH/KEy1s36oWUYa0gSnqqP/mxrNuJy3ojQewfAKAuShtcXjCeKx\ndBH3vx/4JhRSh5fNsbAPtEt59NWxQImlwJ1pjTyInTOR1e0bgjfIeDNT44MB\nI6ATEK+03NSbnJMYOYhLDYuhqNWN0u+382dMG+cAcGJ/O/OC2jiMTuKDx3+s\nNkdslQHbqB/2EX4KuSPPY2L73sXec74gxYtVrNp4D9m59OHBQcd1Rcy6qEaX\nXXv/T31HvLSh5qJGsDGF5RbXCrEPIo66lyqoSbQAYzMSlGIA8mfAwOtBqBf8\np6RQ/jTvancG8I5VEPzLvcu9FbWntzHF8USazjkmK9MA85vdiGXFZ0QQXbcB\nx/0a6HxKPaD/8uNv4FIdEGDnyhgZo9hjSROYqZSvvkVHQuK0rxzzjiHr2M8j\nHsHz0dJS2UkMkp8MYulBFYx9iMEdNAeNA3JNSTxTBe4R8JyUtD1r+sAt8UXw\nFsWMGE+vpRDClNtslFB3UxjLrKfUJtjv/fFkydN/zIouwEDqg0rBpJIOdaU1\ni9kf\r\n=kpBh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"02546aeeb14f80b83c1e90910f263181c8efb9c4","scripts":{"lint":"eslint src/*.js test/*.js && npm run lint:types","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.7.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.2","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"lodash":"^4.17.10"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.5.17","karma":"3.1.4","mocha":"5.2.0","eslint":"5.12.1","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.1.2","tslint":"5.12.1","core-js":"2.6.3","dtslint":"0.4.2","cross-env":"5.2.0","puppeteer":"1.11.0","@babel/cli":"7.2.3","typescript":"3.3.3","@babel/core":"7.2.2","@types/node":"11.9.3","karma-mocha":"1.3.0","@types/lodash":"4.14.121","@babel/preset-env":"7.3.1","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.1","rollup-plugin-babel":"4.3.2","rollup-plugin-serve":"1.0.0","vue-class-component":"~6.3.2","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"6.0.1","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.1.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.2.0","rollup-plugin-filesize":"6.0.0","karma-rollup-preprocessor":"7.0.0-rc.2","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"4.0.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.5.2_1554101618773_0.24276339255184198","host":"s3://npm-registry-packages"}},"1.5.3":{"name":"vue-types","version":"1.5.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.5.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"b51fd276dac93d56bb2903b11743fb0027ff6345","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.5.3.tgz","fileCount":25,"integrity":"sha512-VHeAqjIAC5+RtQEzOVLAIKhCngXKFXcggAQJIO74VTCBqbviCHUQHkx0ZxiUAWBeoCMVT4U+SKplvEX8ENkkGg==","signatures":[{"sig":"MEUCIQC1Uxn76qLWTCy5uhWnRt5+glTS1hZIeVfvUptZUhF/3AIgZlq75QW7+cBr6lYRTbO6CGs4bWTrtYQP03+NulV2v8M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":179427,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcorQCCRA9TVsSAnZWagAA+24P/R3XJobeGfTL7x7Z8AAq\nLJFLy0mPvXqEfqO3UdPabUQJmzMt/iIH5WmIKuO87lxu6Z+bki8CUaLQlVIi\nf5XSToch3zi3cIjou5QBMsI1i9QbDjiOl17nj35ENP6yfJJ/51J7gKE5M6op\njlpIjsu0ZoDB8Whcuo2zMmoImOYL4r61zgVN+AuZwYlv51I7RYmyg6rwnC9i\nCv+AG/7dZ5kXvk/7wUSHmLBPJ1CI4cZU+YeZOJLeeRwpCuze1T6C5WuzOEvw\nKPo4cveklGpjun/h+LmIL5Yfl9PEikkDeFouRDu/S1CLcsiMdOkGqV06klzi\nD8kfz0pbly7pKi7tFczgXHGpf20LpH9+9G1fH2jnbHaWypb0PMYTvLEqzWFU\nWEUHGbKr9YuV6DYj4/r7X+5k6ILQ22sU5eASa3SH53yIzsf3UqX/+WnWj+fN\nh9F2ZG/OqI2QvuEwLelZtR4GS+u2ZUAG1w7Jbly/E9xR6UQKFwIVvLhCF3Y7\n8V6B9tr8El0+xQVKy0rLK+Wc6PGp5TZHti8XDQnImbSAYpLhyc84BmIG0hj/\nBRzEzyg7i2PKrhERURn040QHb0unlGjik2t7dMx5TGnSONjjTyq2tE/Ju7Ha\naX5Fh1BRRH4ItYlGc8MN0T307VQjfPAZozdVmuI5Yk7Onde21qoLx8AKSFsL\n1g3T\r\n=6caa\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"716f1a28d727c5fadfebdf0aeb2e884615156225","scripts":{"lint":"eslint src/*.js test/*.js && npm run lint:types","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","test:types":"tsc -p ./types/test/tsconfig.json","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.7.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.11.2","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.5.17","karma":"3.1.4","mocha":"5.2.0","eslint":"5.12.1","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.1.2","tslint":"5.12.1","core-js":"2.6.3","dtslint":"0.4.2","cross-env":"5.2.0","puppeteer":"1.11.0","@babel/cli":"7.2.3","typescript":"3.3.3","@babel/core":"7.2.2","@types/node":"11.9.3","karma-mocha":"1.3.0","@types/lodash":"4.14.121","@babel/preset-env":"7.3.1","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.1","rollup-plugin-babel":"4.3.2","rollup-plugin-serve":"1.0.0","vue-class-component":"~6.3.2","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"6.0.1","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.1.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.2.0","rollup-plugin-filesize":"6.0.0","karma-rollup-preprocessor":"7.0.0-rc.2","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"4.0.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.5.3_1554166785116_0.7574884530426582","host":"s3://npm-registry-packages"}},"1.5.4":{"name":"vue-types","version":"1.5.4","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.5.4","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"2f1a89cf997ac0f0066eafa127779d7e1b69fc3d","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.5.4.tgz","fileCount":25,"integrity":"sha512-0pYRpmAlTHRc3+pT5tV+CDSm0tw1UlAV34YGXxXyQdTcDe1eVmy4eguuMhmPpkKlAn0Xd0idw5SgGJVREc/CwQ==","signatures":[{"sig":"MEYCIQC9WQgV4CreQ6sFQS28QzJ2gANrDlgF3cVvBfA6T5Vt9wIhAKRXZ7AolNZAWL9fXq7tm4pgzBfBk6FaAFUL2TAUcv2J","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":179543,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHsJJCRA9TVsSAnZWagAAVTwP/RFAt6WiAwouCZ4e7/8w\nqMB54wte6uM83NPYJa7xobeT+pvj+44LJ8KLpYYEdrMwcFVJH6VcZxpbnbbP\nkqid1HAEAzooBYMl01wJBspJ8HDjagYpQKmEqYPJCqzPBecfSoI6+sSLZU+3\nsASZuGqNg089OJ+okMWcqRMvCxFRyHnzWLBeXsEhjD8S6Et2OFkgF0Zb2ZWb\nyo9iUjIsQc5iEFUNVV8hXu3tooB5BLq3KgSsr7Y1OOJYPataQp1XCFJ40W8h\nlhlxV9bfQQ5sUbrtVc9ux4DMP2j8w2DeMs5ei+uNzaeqRtu2z0k9p/DMRlcb\nAZngp+pT0wlYAeGFfPBc1CjOQxGturHSI4I7SD2j7ic7cUtrdKA+wZQdKEQ3\nrrndtdMjbJnFr7dvsIiiyUKXCfpjrKZib6M0lxAi4BY8VYrPpZg0DiD1DDeP\nLj1hrpD2HbjdZIcw5zdk6DCd9EtpGCegA0Kq+vNWXZJWXocMaCEWtCyYV4Yx\nLuU+rE23HUrAYacKBTK1qVRfKZT4Ihp0U7J8Vb9uye/MsRC+UtYLHTQybqQZ\niIyyBhF8gb19om7VqVJsykBUKjJB6iGsdPuW8KrRMx5QTTIKz4NC/4frAAHj\nR4kPqxsnotPkHyait4goK0acw0Um/wNT/YDtGpRzNf5HTr8a5P2ItmTto3Ku\nLQCQ\r\n=woZ0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","snyk":true,"unpkg":"umd/vue-types.min.js","module":"es/index.js","gitHead":"e466eca2ae5068b2778a6dee9db08fa64883f9d8","scripts":{"lint":"eslint src/*.js test/*.js && npm run lint:types","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","lint:types":"dtslint types","prepublish":"npm run snyk-protect","test:types":"tsc -p ./types/test/tsconfig.json","snyk-protect":"snyk protect","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.4.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"8.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"snyk":"^1.189.0","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.5.17","karma":"3.1.4","mocha":"5.2.0","eslint":"5.12.1","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.1.2","tslint":"5.12.1","core-js":"2.6.3","dtslint":"0.4.2","cross-env":"5.2.0","puppeteer":"1.11.0","@babel/cli":"7.2.3","typescript":"3.3.3","@babel/core":"7.2.2","@types/node":"11.9.3","karma-mocha":"1.3.0","@types/lodash":"4.14.121","@babel/preset-env":"7.3.1","karma-ie-launcher":"1.0.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.1","rollup-plugin-babel":"4.3.2","rollup-plugin-serve":"1.0.0","vue-class-component":"~6.3.2","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"1.2.0","rollup-plugin-uglify":"6.0.1","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.1.0","eslint-plugin-vue-libs":"3.0.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"9.2.0","rollup-plugin-filesize":"6.0.0","karma-rollup-preprocessor":"7.0.0-rc.2","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"4.0.0","rollup-plugin-node-builtins":"2.1.2"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.5.4_1562296904538_0.7380798044120869","host":"s3://npm-registry-packages"}},"1.5.5":{"name":"vue-types","version":"1.5.5","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.5.5","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"f7c520d5c260d74dd1fad43507d2c24d3b24fad6","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.5.5.tgz","fileCount":26,"integrity":"sha512-QR0UBeSSFuaSXru+0wZtvv+8wVuZcyjRpOUSJjKr0AFHAixDPh6g2r9WNW3ayOPLQrYt0CO2B/ljHdbYmTxgqA==","signatures":[{"sig":"MEQCIB8nfzX1zvdGmLh4zMgjLZiWDeG8Mnbui2EgHIlSIaYDAiAhyh8/nw71NLWtrEucqeS1HmOsabPoIU1c3Vs/tzNCVg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":182634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdHt7PCRA9TVsSAnZWagAA37cQAJFEZi1NOS8bk+/Ch07p\n0kt+OXRyB4Am9b66JBG0e51uHp+4/SpKnKBuZsHiguTZxHMLQw6AURhdj5jp\n460yvRjOrFRL6piqZj5l+8Rifi/mFj/yyH6vC0YgqpM3C7uROEaBLT8Vl18D\nCYvcr8rrwOvw5OTD0m9+kDnOOORdohZ68QpYeSzMrkacO2079uH9zHJhw5s9\nq9iZPinSDWR/MMwU0zft1JTFssoQT/sK4p6ybWiQUx0eHtcq40btoDN/mFuf\nwSGcI3JLFbFbRZiK6E793oio1MitiGG5NaY631QZmGKlJD/3PAOqZTaiKH4w\nGt9Ch54GzGBmUDDUM/YwRGzJJsePRvzwx8mcg2Jej0G2kAEjrJc8Rr7/lKQM\nmd/DeIqG8qRZ/2N4f9n6tiVtgVpYkrpUQ5Fb+NijyHjIXELaXvX6rk++x9p3\nJ0AnwiGRmLyH4Wf/KfSdo5SvdCjN86QAbeWOJtvvlgeSV8UNZUGua+wv1WE0\nZ/bCrJOVpkGJ2FT6HRe49R/vP/TKg2QItx4bEW083ByzMQrLLa7oxImapTqv\njfnv701c70h+kd90sHnCRQTcorB9IRlUbLvm+iFY38YHHNcss09dJnCZRdHR\n26SLEzD2PE0rdoB0mi6kKPWqxUDL3QLOgpsyFh+Qq0DX0dipcrNgEMYU1OON\n5pD2\r\n=9d64\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","snyk":true,"unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"d726df099185cc8040d11f6a74a23b804a90b20a","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","prepublish":"npm run snyk-protect","test:types":"tsc --noEmit -p ./types/test/","snyk-protect":"snyk protect","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.9.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"snyk":"^1.192.0","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.16.6","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@types/lodash":"4.14.135","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.1","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.5.5_1562304206919_0.02616845148370084","host":"s3://npm-registry-packages"}},"1.5.6":{"name":"vue-types","version":"1.5.6","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.5.6","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"721e89b5a4ba1b2fe199cce2eae4e48629e50920","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.5.6.tgz","fileCount":26,"integrity":"sha512-kYwcaCETkdPKhKpw+92POfcm0BRzkxozxXfgRX2+0QlPf/tn3tAJlVQMac4krmxXcYqeoctXw54hs2f1cwX1Cw==","signatures":[{"sig":"MEQCIFDhxwmfhlUUl6mBLs7DuF/7tQ7+sia5t5BAPwdvMnJDAiB3uzQsx77HJUVhdG9imyTbpKdGDv1MkIO8pIvlTrK18Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":183229,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdJpdmCRA9TVsSAnZWagAAGaYQAIpifldi/gs3ZD/2pVpl\nlQN3ZhPk/Fk6/3wlYVFbiZoH9QM4/Urm1qyVxK32w7cqgqndpH3sX54jsX0c\nZyhGazEXlJtdgy9E0gH0UtlSy8mGavjdpPNyf9WMG8fNBcAJUe6FlZEulVfP\nEXxaa2SNDsUk6tDpt5pv8jUsYXWObTCWUVs4awmmxd/n+QraqQV/ywqxkcp6\nmluTef1gZ4nk/xx1h1G+EIF+GJ0/+4aslcx1v+GUJKwbWIovwThlquqrCSVj\npkp9+py8q4kmtTbJaXsxe4MT92exmvY0cFx7qdfxT1z9VTLvvWW7U1uqRKcI\ngp6V2gJTpiHxd1bCeMyrwlG77synQHAj258HB4ErKTM90gRRD2kFv09Bxwkj\naRW1J5h5AVeFhs0EhXrdGCareQxHEt78/8+7Jmg+RC5LheztjZa/DAMdo53h\nq6d31f69Zm/5kmrClJpKeU03Scl+2AXOg+YnEPeIIJ6AXhFB7+Pntmqt4R2C\ngiN+BsU6RB/vgA4WsvYDiyjr6nqmX1qJTrKKX9nX3Z/I9WTMNOzymWCwx8az\nMa/oYk+C3LVACsS7902sfBA07nT/qkEhxFBtnCT419Nqpmsqo7zYi9gkHKpx\niPzErDTGcFF72fywlDvW0IV7hBCi/PuCOGckwgOzPpZdFixNcLXPjAVLajev\nXaBx\r\n=ZIGN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","snyk":true,"unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"1ddb47c6247645a650314119649ce4223eac95a3","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","prepublish":"npm run snyk-protect","test:types":"tsc --noEmit -p ./types/test/","snyk-protect":"snyk protect","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.9.0","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"snyk":"^1.192.0","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.16.6","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@types/lodash":"4.14.135","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.1","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.5.6_1562810213387_0.25815558179453824","host":"s3://npm-registry-packages"}},"1.5.7":{"name":"vue-types","version":"1.5.7","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.5.7","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"72508bbaab45b1c959491d58d1737181f9ddc956","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.5.7.tgz","fileCount":26,"integrity":"sha512-JibheLfDfqKCrLyCAdVDkGS3SKdBxegyH5Yr2tznANj3WVUqwZPnoVbRd6d9Sww55zpvh9QzKApuQr44OifNXA==","signatures":[{"sig":"MEUCIC8yXTagxpWmTlHx3nlHNhFEA0KcY7YXkjH8S6xkc+5AAiEAoSSHNOfS6VZVvN5eMSP/xF24hNi6NaQ++6tVsb2gNCI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":184413,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdLr3JCRA9TVsSAnZWagAALgwP/AywCJy+Lt4At6PSBoem\nptw97ro87QVa5kdfXuk5Ec9deAKecgJqhDGJAVDrogdpUoKdaO0/1wFVrGLz\nk12dzlzWUcsOpkD+3wj2clnKPaJOdWENpdHY7QAA9owmtdesDhZk/TKspp4W\nGWSPqmX//8uMpt5wYwx5wAy4LMwZf5eIoXGA6ZfrFUcqnwcsLOBqFRhCICsc\nRwkt4RgCeFZsGKFTV2MKZqycfmxbrJYakbAvoYKjKGYop5ENdJ/tQSzoOSAM\nF9akDP9XJ8tTEFrI2T/QrV9Vf7aDSi9cf57asdJVWAUFj8s4eAwxA4N7G0I0\nePC01H1qBdhXU748hoDFRTBEp07ioYazTMFSbKwVLUGPxrsqSsl7rFjEUO48\nXJ1Md2YwQBAtW1PdbVMUf14dEUF7yxpwimEuetsuY3Zljogya0EfiAW2ff9T\nIa74fQru9KhXMXVgMTh+EAR44CWlur1FtmPIa8jJZbefYlZAIiV8boaLqIuE\nZSSGwz13tbumxx2w28ktMLb0+pO0XiSp6Iwb2cRmwIghHrhVAX5v4Ku/J7t/\ne+INPze/oSvSamPTJgfjNF26EFHeDnWsNX4/U2ZIagJDqVRhxJy/5OiV1Eol\nq8QsTDflM4MD5PxZ04m/z3TpdAls2vlg2SVZJl7tvsjes9XFnlpepIJHaJM7\ntIUR\r\n=HpHB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","snyk":true,"unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"b73b64312fd60ce5c6ff17575f8c2151f4df72b9","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","prepublish":"npm run snyk-protect","test:types":"tsc --noEmit -p ./types/test/","snyk-protect":"snyk protect","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.10.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"snyk":"^1.192.0","lodash":"^4.17.10"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.16.6","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@types/lodash":"4.14.135","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.1","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.5.7_1563344328449_0.5104120297616077","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"vue-types","version":"1.6.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.6.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"d803cd9755f4991717de9f8d222d654e9ce06da7","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.6.0.tgz","fileCount":28,"integrity":"sha512-G8j5tAgD+yGbq42+T33jfYO+bSEI6qIrIkx1NFLwE8GAE23kEeuXMVEhX8cuSA0O+YR+WRb3+RQEMcz5HUgITQ==","signatures":[{"sig":"MEUCIE1aDFxfyLSZXQBxZgp0Y7rh7Cmn0Sd2qmup99I5KleLAiEAhkCGfxsAYSXrwCgy4GC0tTjLI2g8QmmoQQQL0ZzK+go=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":175390,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdR8ZBCRA9TVsSAnZWagAALfkP/AojEmLxOWsQ4N3bHgj/\nLoyygNCw1u9Efh7u4z3j+JOIHKJIl42lllOyVaGdXj0+iXDH3TJH+EilzU/F\ntle6FBlWoevikkLDJmPq+7kmU2jboP2i9RIArDr7qu1tXk35c6CWlRUqenSu\nS8Joz9OddcaHdi/qhAMzipZmFGQcOh+2SPfXqn6e8VL3YIgJDlC8cmQdlP9x\nmyJ1SkWNj7rquF/OrhvST+wEbqtU9dBeh6WiK8MuMAF1UWjslZGhAeiN+f09\n2tNkjdVWpo+Mt2DWVlA/Og9jYUwDF3JGDLWPIHJY1bNsAtecm3G69lFHf7Iv\n5NEtHeLHYshvxYCwWm81OaNYZCCuM0HDkYqBgInFwLd0v8QpEnJ68P8JvA6+\n2fg1P7L2iTzY3TSLo4SpR/JlHa8fxEIFXnWdyuq4cSum3C8Ow/hCBqxo1TG+\nB8o2odfSHb5xev66gx9KfazpWGoiOb2cggNUohbne2nFoUhS2FVjWBo5hWbT\n2FGVLMuT3oWiCEOray48xCkfaMaW/1TZQyBuxLrqd4xrFBpw5prwTR9pwY9b\nF61qqN6SB2w/NhjBqOZad/v2UfQTyH1SVy7JCP1qRAvAGJe6j/SvaPfWzkio\n6WVZIAqJK4tbBumrrS21LaWMdXmcfi4gmihQTRkeWkII3wWuCS33GGvEDhwM\nt3VG\r\n=7SNx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"cbc16f4df6fcd411b2c4e393ef1cd9881bad84ba","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.10.1","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.6.0_1564984897101_0.6999829588439099","host":"s3://npm-registry-packages"}},"1.7.0-beta.1":{"name":"vue-types","version":"1.7.0-beta.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.7.0-beta.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"389c67186782ddd4cd14181edf03255239265830","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.7.0-beta.1.tgz","fileCount":28,"integrity":"sha512-TGRoY5TffU0J/tlHnOy4pNEuoXc1j/y8znjAC6T0FiVYnorGD0DiIGc0GWPQuV1gzZgMtttnHfoXH1QgtFNnVg==","signatures":[{"sig":"MEUCIEgHtHRQzcKIPRvs5i7sZpm9y3oGKpxQqkzOjcQUMxidAiEAv5z/+q1Z+KanjBQbf6Eb/uCEQaGdyS1lH1zWXMX3iSQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":186215,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdbJ3eCRA9TVsSAnZWagAAkToP/AjDMSUKoWyeeffrB+SK\n2wV1o1RrWfJpspFNPNq/oXHqjbFQiuKIRzLRtGS49VPqsMhpNWjQ5iquEsZ0\npUv2WiXyWCV4Mn4c/t4a0mkbENrUzDYI+OAjBiMsBTbNezlNAsW1/kvZHdDs\nmCPHFLi1PUWwlPV3QI3ESVpz4Aj1ltbmahhUzmdl4vg772L6yIDnbDCBVH2K\nGUw8fz264NLv2DOeqZEre+E7CMkxi3v8Q5LjBmzjivjfxrV03kLhunoY2ddG\niL30qOxfv8sACf8ALcEVxOdH64ozH79eV9elRHwbzBj3UsfOn8QvQioI7zaN\nYWuTWi0EZAsMbHKNHY9QTdnqx5+oHT3g8dq8IV0W9Z7w2DeePKKCI4Ea7xv7\nSycUg4r5cdd1A+3safpgolIHF/x+4ZTL7/Zrg4IMt/h7s7+zULDD9Z0Y/IkE\nFsDbNZAPKxu0I0NTgsjQfMfUiUHaDNGvb/iof+gyj8ZO2CB8eYFh0zUGF1UN\nfRpaUQMp60zyvdZUaQ8+OaFk5UAEUobsJfyc31MGcWFq7TI/Z21lqNrJBIWs\npnzdsBT12NRixQ/Wiz2TOLXJ5MZ2P7W4uPKAg+/ejBZ4segRoWp1wFTv8Pp8\n3TAu1fLDHxYWmx1IPW3i82WwF8gpH0B6HIco4EHqEhL0y2oNsMkaE5sL7TqO\nS8DT\r\n=wdKj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"4d47c9a1611981e32ab6daf81017a8ba3f953704","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.11.2","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.7.0-beta.1_1567399389517_0.9690993127212169","host":"s3://npm-registry-packages"}},"1.7.0-beta.3":{"name":"vue-types","version":"1.7.0-beta.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.7.0-beta.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"412e67dd1db3a31c777435edb00afac55122661f","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.7.0-beta.3.tgz","fileCount":28,"integrity":"sha512-IdhQHsC6t83vuhO5BKSXcg7T2bZiS4BAitBUgGFiZZaWKO/DDYYzJPrVT0wSe6udTCwXwGJ0v6YJRVqAjM1ywA==","signatures":[{"sig":"MEUCIGUkAZMzcAtPUWnWLvLBAulxrJ9Kn2QztZbpk6N1Kih2AiEAgclE/oyYWBrVFQ7pueM+rRoVA2tt2IxYp2kjEp02mRM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":188446,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdr9hpCRA9TVsSAnZWagAAq4sP/i076VXDfCN0f71GxXf1\nmN+VIJpoxtzpWoNZ5sbi6tJtnAPobYyVw7hMBIbG1cUu4QKtwNdwl4Uq+0/L\nTtT6h+yuOL134AnrYr3xF//MvzEh1Ry1f389LNuhQmZrc9lq+LUfI94nbbfA\nO21Ggn6Enf/r9BtaZLEo94YwlKIuCF+tpvjr3DdUYWHtRxrEZ7jPOV0qWjZ8\n1CwPV1XhT9hjRftRKRRkCynahlUZqZJX8j5Omd2A3NItihM9KVpbixaTsBW6\nwjRHuI1BybmWztqaRSOTixh/IPcqUigSt+dLEKJLGnH2gQC/wgcPk5rd5JRe\nIL+Wmk2d5lgG76FUATCaJ1LwU21cqTu4YbleJzx+ng5yOCMVANwpSYC+6ik0\nYCLVAMrrWqkr/aMkdHBIQxH8NWjzAF84zGuMh1V26E6L+FsjsoaeECQtTcUI\nFVCboIYtdim3ksLk5LYEdR56U7v7pVCILq9uWVPuVCnC+uhlhXReqyhWWnuq\nTkQ4CP/SCaL+aelAPJPGe10mNpAjNLJSzge29jnoz1/fFekd1lvV+x3myL67\np9qFCaMFPwZHq1vHu1YAr02FwtUBii1Fxks/D05taPT5LVjQfKWNuhZZuwJr\n8gVTo02mn7GrjT3WgOXV1w8NRwJFi0zZ4z5cIqJXCniktUZy+TVlP1FD+eXC\nnS0C\r\n=U2Vu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"079538d3d8c63b25d9f2504f3973af75fb5d344d","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.11.3","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.7.0-beta.3_1571805288677_0.27408856483134647","host":"s3://npm-registry-packages"}},"1.6.1-beta.1":{"name":"vue-types","version":"1.6.1-beta.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.6.1-beta.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"b064c7dc4e9ebd08a7a469e376b5df822888fe48","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.6.1-beta.1.tgz","fileCount":28,"integrity":"sha512-OCTOfF3pBN9VUncCK+G5pUZF9iesmyEMSiDyOQV+IriDIgdqe939yIndh79olbBEPk+0sr9TOr56QZwOzUgJoA==","signatures":[{"sig":"MEUCIQDXu6H717C7skOYP8iqQVMAT0vVW7EUvkn5ZiU1YbzcmQIgGYZzkClqv5Dr6vZvWyBu2rBpYeSZndDcEipLZAbrcw0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":177801,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxPAQCRA9TVsSAnZWagAAHMYP/Rvfx+PWbh4h19Ho9JRj\nDvznCmj/9ObYqQ8Nhj+TvlpJfJvNuSpJSQ65aPpXs4sazpXGjDgG9ZveRwzz\n3YH+aAQLzKym74iijaomf2qkEM2AKF57Gt5USeLGIijqbENVHW0wp2SQxYbY\nSyQoOOE2SDzqceRzxeqD7K1YNegp96oqHp4WNhrQ7lAJLyf5onkRlhn5fsg2\nMO3xKC4Sy2PPdl21e/3V24dnofq575Ozp4ggpbZxM1vGCn3e7RLSxESAQGqd\n3qvEXoLUKmvbOG1Y6OcLY2bhrd012dolskzBy5d/QVllQftfJ5e+A4+82kuQ\nvEbC9MOB+Rx1KTs8GQZUQzoBF6UUL5W57hCBXlezI+AT6EFMcFFZDsuMggIg\njnEhQO+m7skpx1gvk0dw06ulTzRIYDseaZYX2Buljz/yuSch3s5F+8pg3qC/\n5wMsjNrIWOhMBSPZ/k5V+zlySvNaFY3hddsUxTU8kvAusW0Qkc72W45VBeS/\n1cSsOcjOWmCkresEbxkzMOQvcgYVijvRIak5482UZNYUH6VeFCp+AxlSvXn/\nEbtnYtXSmDTQia2VqvUpU+DMTbezjcOkaC3yj0aXqx1i6hl5yC0FSVowwmv+\nt8heoM8adrh5eStE7yJOTPKmktR5xx9qyTAp4n+IyAK76kg0ZJVaG7181kl7\nIH1b\r\n=sGbr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"2e7458f400a177a3aadcb809b568d6846288ad01","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.11.3","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.6.1-beta.1_1573187600289_0.6874151188829722","host":"s3://npm-registry-packages"}},"1.6.1":{"name":"vue-types","version":"1.6.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.6.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"ea92701ead0f55ce99b7d5f67e496d9040681fad","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.6.1.tgz","fileCount":28,"integrity":"sha512-6k5toqXki5YM4r3TD07U+wLqgb7PAplmUGe9Y9Ww1WYr5i0iHkwBATHr1eGPp2i/J4DBpCCzGy5hNS06sBPSmA==","signatures":[{"sig":"MEUCIG4zMK713XvzqKSgiz1fPWUIYgL291Doh7JqiapQEMaDAiEAqBqdHG79oFswQhSGzWtMcbb2NSwnUQ6QIr/owTxc5Q8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":177773,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxRVnCRA9TVsSAnZWagAAuzUQAKB/xLbLjDMwyrTlyKN/\nTqRgmUqWeKnN7ZpPC+TQuyBDDsBA7atmiAVFvKd1j7X3W377Tq8uc+JReTGp\nFXsD8RrK/MDo+9I1fSNcfvfsDOrZj9mR8JBT8i6VS73iPQZcU41FS2Fu+Mbq\nzbtU9UpIKAE1OU8zLANlCSXsqbVDtyysg+x578FS8FOKx8NxcwlJbAtJ/f+y\nxQuHpRG17SksKgdlx8JgLAVorkLJeKJP7YfxCN+rwKj67bTHr+Tbix95qpF9\nX6Ofh2pjwkcA1N3uEQW2TLv5cFXbSACBzlLO1R0CHKijJvxIZcSZta/zcVM7\naoE2OrD9+LFlHtyWlLLgp5aqzddwoToooJ+/S6v1JwaGkIFJyBpAGZQjt1NP\niQoNvGYGDsSKw+uJUx+lUBT2A1s+1DfMV2Z7erI46rAV3cbwPc9v+6yRkY97\n13JLEsVHceybEcpiOrmaFk8RGtmpArgiAsR/Aby8VBmiiNgsyL/Uk2nenN0Y\nErvtF1qmSt9v0xpeKxCzYBxxl71CbQzHl4RGMzYpwzueWRp84ljybraZPA8f\nzmuQKxHT3PbLzsA6xTgh62FR1DtsTvjL70ylGnlOoeu+Ggtqbd9d7CB5ycPC\nzMaIBclJJxlAeLcDpN5NneZPJoUM36IqfQT9tsY2wGN6T2/+kTruockbE0wi\np/lP\r\n=LdUl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"b1235764c25e5174196a46edb811a56b41978c42","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.11.3","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.6.1_1573197159157_0.9224425707517019","host":"s3://npm-registry-packages"}},"1.6.2":{"name":"vue-types","version":"1.6.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.6.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"2931b000134a8e1e7f02b02bca1ab4f8f94f7004","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.6.2.tgz","fileCount":28,"integrity":"sha512-C6/YZH8u/Gffw75RYRvAujmSP6U+QhIOlbX6M0ao0y38ZXqzy2njUlWQlmVMbkEaQeZvbHq0ViBg+2FdwnJBbA==","signatures":[{"sig":"MEUCIEC7019Lz3DJT1Rpk7Zp4CkxB5d4xCloDreD9EEBeU9aAiEA59KjIc4VgMaOxGix6qh/rUB01YZetXUdW2NI3xPKcSU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":177768,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdyjFlCRA9TVsSAnZWagAAfQ0P/AqLGDUbsOwz7yfGeU7r\nImI1SoGssE5T+d58ibnkVc08fCnSC8k/Mr2wxbbt4NuY/MtrhxiNISfo92mJ\n8lgN9ettCMW3LRVQgfVN1top5JBNY8LybPeRLBDINcJ+CUq+YopcBEpBHcjT\np6WbT1LWd8clON5gNPGqw0eO6WHXwsOwLtAc4wSp2dwz2a8eTeQjGqCVpAck\nNoHi65svKe9yxIq0iHeWPZisRG5W/dEw+wmaF6RfF6MfjyzFGTcNFabnJuV2\nxuxbOfoBQ1ECMXri7OmdOQz1o87RBKZmaTOU4ATylpxrPoA+ui9rX9kUsRup\nRePY1EaAVUxNwnTsA0nVe4tVBxa8Q/fNVXYwPVL5AfoOo2qzrWsmPnY8U4W2\naYBLscZiTVYzAbwILI6xG55gBUDEUy2/Xq1eZWaUrwKumsmKrRS5WRRBbiAj\nin/rSKLMCLu4z+yCdPb4TDUMNha1T7/kHjshzmxUNDgCQX9TaeiIbcSe2fwE\nyIw89UvcARagE7IL+cHBcrs5hNtHCA31l0GjThpDHDvM3NkqrsLNiCv8bY7J\nhOcgfMNlBuRehzWhjv7DL/O4rAI9tKieRaz1yJu4bcfQFNOnM7Li6qm+tsXo\nmLjDsFpWzR31NwZZdnNcbQ8xV59bcDt3zFSyrMcwQjglQq+1JoXQ5590MqvS\nx7yc\r\n=R7xp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"03c39321632844388acf24c02281148079eb493b","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.11.3","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.6.2_1573532005243_0.590822464041078","host":"s3://npm-registry-packages"}},"1.7.0":{"name":"vue-types","version":"1.7.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.7.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"07b273342aba7cc43d9460d9c4f4a4cf5eeb00b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.7.0.tgz","fileCount":28,"integrity":"sha512-MbhuWukmcBJHdfXAdLerbP29i3j2HAJoKwEv7No2Jh/YNl9dOKsNBfvMOkf0SS8VCuWd1/JBX4NnGaGUojbkUA==","signatures":[{"sig":"MEYCIQC81oH61Cj0DSVDCCZ6Z/slBV6ODbcgtqCa54DaFEsSoQIhAJJ7/NgVRDz2Z7bfiwUM9yjf3wxZBJpaW4BifymtmfGU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":192412,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3L4TCRA9TVsSAnZWagAAv5EP/iXESL861kzub8YrJu/I\nyNXy8z+143D8sp+PVhrCdqNC0jfneFH5I08nbTwRY6dp63PC+uVzUF4V6OeR\nubCzg0e+s23q4JlzSOeaW2YkdXel2Mw+CUjDENwgC4cbBIBizWb67w7aoCe4\nkSKx3ytM+/spxtXUDB9+nDFNHFBKpjQNABU4OXoE7Z1susl3uQMLhCV06TaN\n4Mi5xYniUb87rESUgmGtGeuwtBNR1oSf3beZxb85aNehHauvp3802zFGq6p9\nq/tfGRKjUBdl7SUokP7PExlfDFrJEZZqMmAV2quLB6w63uWctNoNIt2Pkymj\nKnnT6bWNdMc8eNW29ADuOCfiaOz5LPRj4+8DXYprkXFNhXHrTsfBPqKQLUUe\npnrOx1CkzwaKVa7S59yjmsXGvcOa+oUBxlmTEJrHLOMhFjGjzoKVRc8sSFNh\naRPRcsNKKg7pld9jMK5g0tieemm22/xSFsvYeCfKtkmUHI28r2xZcEuJjrtG\nLQsqfIBEqMZTq7Gs4QnP5gfu8Z+SUH35Kzi0bfnAYfg59vitqky5NjctHQMc\ntouyzgoufXh+uYJro3xP61DnQAZE+6v8pRxBppyaRLdE/pFMytkNNp+x6GYS\nTBxVMOhlV1B8qVtwPvVnSNDzpb/1IhH/zvmIv4tQZyUcp3NjGLOZSd9GOLig\ndNLd\r\n=YDhQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"97a7536691129f0fed00a2d1ca38156b1af03c7f","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.11.3","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"10.15.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.7.0_1574747667222_0.7454419352729633","host":"s3://npm-registry-packages"}},"2.0.0-alpha.1":{"name":"vue-types","version":"2.0.0-alpha.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@2.0.0-alpha.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"c7c6719ee48cac26add3f9f29c5825a8a48e0797","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-2.0.0-alpha.1.tgz","fileCount":42,"integrity":"sha512-/Q2SPOsXxcVU/PCZeHWLflxj1h1NH9f9Ub5A7WMIvDkeKLZBUDQq9TGGEpmOiacgl6D/1W8zavhwByjcHG6whA==","signatures":[{"sig":"MEUCIH9/8fz+y7+VWtoZtbiOn03Ep7EItQNaLjwgiGAnhlCxAiEAkk1IO4XvN44JSzNKqs6ZTVpm0tkTAZM2p7criLIaduA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":232060,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe5xcZCRA9TVsSAnZWagAA+PQQAJEkwjtBC6vmOF+7egZu\ndr2FRbp2uFW9iiOprZkgqhpPWvXWxmhfcM7WkcOKwx37xRP4XdRsQpkavh6d\nNFjJNeNt7wW3uAenqDLgqfLx7ZpGhJ1i5wz/XnnC6oGUdl3Mon15C1X4rUF2\nxd+uewN9qanJP6waMlkygI9DuL31ii23yjWn0ByJH2lxpkwac0z25L4zBOpk\nbp5aWHR31NtOGLLPL5qwZ9CN0DewVT+lvIwJu6oPBCImH1JzVQDvp4weqCpy\nfRj+kJY0FlOFuhUF37roLTmP/iljFV+p5OHO4pmIZN4M9rkrTc0bJ3+qeOPE\n1xedlOO9aS/OLSGomzKH2bW7Spv8VYAboWSLa8xkc7CKD/eKZ7WCzOzIpRoR\nhoi0GAhHDdp+zHRQ/ClgzllUzdWa9ayrSOa3LSIKAitij8ErX6deL0vRbbD8\nQIDhyV6qpjAAjG37B8DaVNkYLW7DkqvmpfilkgbSuhqn3p/V0v2KEwEXM0hr\nqxCKkyAOeZ2wRlcDJQu8/QXYPwQBt2mrwWToQ53/zCTqAVXmj4Y28QmwQk7V\njuLanOheAiZrs5Qz0jjTqcgO+FQ089+D/6HcgxB0tIRcZZkyybh7XnZsWmjW\n1NrYpfdj3n6AU4J7jYqSe2tWiJVX7nbHqVs/ef6xyZbNadTXR/p/qIXq4utV\nYemq\r\n=9Qew\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"a96092ba33a9b9820dfc62745b1915172dc29f48","scripts":{"lint":"eslint src/*.ts test/*.ts","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:ts build:umd","serve":"sirv","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,esm,cjs","examples":"run-s build:examples serve","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:examples":"node ./scripts/build-examples.js","prepublishOnly":"npm run build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.13.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"5.1.0","vue":"2.6.11","karma":"5.0.4","mocha":"7.1.2","eslint":"6.8.0","expect":"1.20.2","core-js":"3.6.5","del-cli":"3.0.1","prettier":"2.0.5","sirv-cli":"1.0.0","cross-env":"7.0.2","puppeteer":"3.0.2","typescript":"3.9.5","@types/node":"13.13.4","karma-mocha":"2.0.1","microbundle":"0.12.0","npm-run-all":"4.1.5","@types/mocha":"7.0.2","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"4.1.4","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.3","@typescript-eslint/parser":"2.30.0","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"2.30.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.1","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.1"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_2.0.0-alpha.1_1592203032470_0.35459872031483264","host":"s3://npm-registry-packages"}},"1.8.1-beta.1":{"name":"vue-types","version":"1.8.1-beta.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.8.1-beta.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"c40168d6f26de32b653b6c06b04983552651795b","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.8.1-beta.1.tgz","fileCount":28,"integrity":"sha512-nn6R+GOTq1NRVuZYl9JvvYkPXLltsAuNEa6Wl5F7t86Ns3sOulnoHaoyXqbdtOhE6QY4r8HV8hHIiq0Ywx4N7A==","signatures":[{"sig":"MEUCIQDjGykMshawAFXCM4VgtwKH+fCNJAxZwfGHhCJjqfpTmgIgMBTD7udvuyPoQTt3hunYxTmD2adSmngw9zjoQQQHmKA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198028,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9D+aCRA9TVsSAnZWagAA9kMP/30np5jq1pV7FjrZS3rg\ngrYHhntQgnk4hUhh+agim27iwoXhxiEJxxkem+EZEDe0+IKM3Td6vACO5Z4g\nHgv9XZnevSAH/sIFPqr6SME0ZUWyznkGIEd2O/5ZnrDKYZvyCBlyiGLQDT/I\nKBLIhn/nMysHy1sNydwjsiK47/KMzNUxA308ufc2+TUJftfyBe9nqemcV4O8\nykk4B+kf8fol539DzJdcTSTLOnMq7+cmYWEFm/Lwa985JRCmj2vi/TMHKBFH\nfdbdpSWcffLwEWGGIEEHBknyeSoj8hsbjkeObtM6vkxbaG1x7mzSMK4aPnoJ\nUNsDzSn+Takt8po8bGoe5LJy0CpqmLngswee3BGR37EjSMB1K6uJJ/RGe2Vt\nMo+9mhliMsOr0xpfqpGny+itcoaj4idNJ0nQZc0C0Cpm/QhtUM5+dI0fV2zA\nlfThRCKDwGZmERiB/9SQksdkKOFaB/S9oBj5/fv6p3velfWAChN65krKb7r+\nZuX5m0DWo6ye0cn2Xgg5gJR6AVy2r6aYJjcSknU/0p+hFr2AFMwK9zawZXOS\nPkQo3s7URZnoqGag2KjOMGyUKa5N2bUHz9zJ8JPJQSVo1CnngDa/qqvdHNqp\nkw+DWsoD9m81Gu0HyiUgUBKFyIUpa0jTmzQJnMsgah9Vc4hYgNULRxcmm4HA\nixxv\r\n=9mbP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"5f26b693baa76275f2724ccf0f3853d0e5c1536e","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.13.4","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"12.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.8.1-beta.1_1593065369919_0.8695066263189544","host":"s3://npm-registry-packages"}},"1.8.1-beta.2":{"name":"vue-types","version":"1.8.1-beta.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@1.8.1-beta.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"ba271a227d93680174f2d68862faf65a77c6b7f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-1.8.1-beta.2.tgz","fileCount":28,"integrity":"sha512-l0T0eE4FAxecpX9DoFx0qBybF1R+F/tjeMM53DvMLYjidgRFGy9fc8MDxaYL8mtiyWWw3wRpKPpfNuX5Rx/Hhw==","signatures":[{"sig":"MEUCIQCFkhSf/fDqaFPve3FyVSIWcGusaqCxHH+h8Zk9vkFykQIgLxyFnVMqowyr88K7jMK+Xvs/5MJqdjLd+/PZSJ+AziE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":198200,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe9Ee/CRA9TVsSAnZWagAA8GoP/iYz+qFKunmeGXJ9hvJB\n+uT6l24IoxGbLF16KIifmi/BHUHblW2JDYRg+FNub1337DjskKqcDpYudZji\nIx0WrZx7t8wWutcTkR0Gq62ECh16aNJnvlARr32UHcYDRDB0LZCZ4FW8rF8T\nM40d7qeNclOVFlKqjP/VDkrJDlEMssL8QksCKOyQzlOBLNwMFI18xfScLAxA\nm0y9f1SOL2KnFLkS1mrSTYt7xpMb56UxmFH0QWFXxiejJSkmKjFHQEwCLAnr\nk9+m+hSc0DKWi3S0WtAfnDbKXjKSE3E7lcNEbk9gFe/cWmGc168hPuQi02TS\nieRUMhnviJBlPgb0DfCdFnMYC+vIJQ7qB7ZSWQ1ehQWEO5e4xF9oM2uHc8xb\n87LySLF/OPfSJP8DASmW7yJ/kI7MNkTVjoYQAxcMR9dEN83xJy+NCPT7DgLk\ngkRYbEenhwWwfMMYbFU8FG7z2nsWwqP6upv1aXMLe8/GbDLrlGwlokoOT0rQ\nfZ85lHZk6PBQHOjUCNtiJpy6Lxdx9cnXV91jpEBI4VUi2aAh0fZ0S8pvk81d\nvDDgiZwh9ZQ2+RBldmxn+U4selu3w5MO/qB3SENsSoWCHm2Ce0rsRQ8HDvk8\n13HwDohzUjIC17l+9vfmguKHXvFZDahI5aJenu1m5qhsf4oZn7GUGcea0Ulm\nSrNz\r\n=80l/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/index.cjs.js","unpkg":"umd/vue-types.min.js","module":"es/index.js","engines":{"node":">=10.15.0"},"gitHead":"ace49faf01ef0795e31e5d0e8b5e449edafd221d","scripts":{"lint":"eslint src/*.js test/*.js types/**/*.ts types/**/*.d.ts","test":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"npm run lint && npm run test:types && npm test && npm run build:cjs && npm run build:es && npm run build:umd","start":"rollup -c ./examples/rollup.config.js -w","build:es":"rimraf es && cross-env BABEL_ENV=es babel ./src -d es","test:all":"cross-env BABEL_ENV=rollup karma start karma.conf.js --single-run --browsers Chrome,Firefox","build:cjs":"rimraf dist && cross-env BABEL_ENV=cjs babel ./src -d dist","build:umd":"rimraf umd && cross-env BABEL_ENV=rollup rollup -c rollup.config.js","test:types":"tsc --noEmit -p ./types/test/","test:saucelab":"cross-env BABEL_ENV=rollup karma start karma-sauce.conf.js --single-run","prepublishOnly":"npm run build"},"typings":"types/index.d.ts","_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.13.4","description":"Prop types utility for Vue","directories":{},"jsnext:main":"es/index.js","_nodeVersion":"12.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"vue":"~2.6.10","karma":"4.1.0","mocha":"6.1.4","eslint":"^5.16.0","expect":"1.20.2","rimraf":"2.6.3","rollup":"1.18.0","core-js":"3.1.4","prettier":"1.18.2","cross-env":"5.2.0","puppeteer":"1.18.1","@babel/cli":"7.5.0","typescript":"3.5.2","@babel/core":"7.5.0","@types/node":"12.0.12","karma-mocha":"1.3.0","@babel/preset-env":"7.5.0","eslint-plugin-vue":"5.2.3","karma-ie-launcher":"1.0.0","eslint-plugin-node":"9.1.0","rollup-plugin-stub":"1.2.0","rollup-plugin-alias":"1.5.2","rollup-plugin-babel":"4.3.3","rollup-plugin-serve":"1.0.1","vue-class-component":"~7.1.0","karma-mocha-reporter":"2.2.5","karma-sauce-launcher":"2.0.2","rollup-plugin-uglify":"6.0.2","karma-chrome-launcher":"2.2.0","rollup-plugin-replace":"2.2.0","eslint-config-prettier":"6.0.0","eslint-plugin-prettier":"3.1.0","karma-firefox-launcher":"1.1.0","rollup-plugin-commonjs":"10.0.2","rollup-plugin-filesize":"6.1.1","@typescript-eslint/parser":"1.11.0","karma-rollup-preprocessor":"7.0.0","rollup-plugin-node-globals":"1.4.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-node-builtins":"2.1.2","@typescript-eslint/eslint-plugin":"1.11.0"},"peerDependencies":{"vue":"*"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_1.8.1-beta.2_1593067455305_0.886166950956325","host":"s3://npm-registry-packages"}},"2.0.0-rc.0":{"name":"vue-types","version":"2.0.0-rc.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@2.0.0-rc.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"c745e833f0c82b5f9578b0559b95df3209dabd1a","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-2.0.0-rc.0.tgz","fileCount":46,"integrity":"sha512-kgfX2/MmoEMVBjGL+HqPdMbVcRyDndXkiCMsMuhCr6wnTI+ynY2nFV6TqYaWi7t09/hT8n7kXAsYA7d47C4pzA==","signatures":[{"sig":"MEUCIQDe91+XFR9gOSzAUicRQeYjWHsNRPjwl/mPyvutXo/tkgIgNal2adsiYcpnKM7DgnsHRP9gD99TW5kaGHZvO3/CEDY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":307887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDsBKCRA9TVsSAnZWagAAv8UP/isI25EhDfFLgQuLGP5E\ncuobsZj0I0waT2NyocRq7tPR+i6A0WLofrAT9EKn6EGqQEnHpzCFxjVu1OZZ\n5toso8bJpdGKSCgtHIuA7sZrXO40qs0Y0DzRSG1XSgwB5LVW2r7zyL1ypLjJ\n/9j94OSyS2V3xa/kXdNdp/91SflK4N7u6u69OHx1YRurCcsz/64DLY0zJyoT\nIrfNRDmQxqoAKQfw0aXGDEPfc6qHaeHrQDEnFKixSoNMwxvr0JwnsPkVrtPd\nZE/jUwh6iXE9gVdkW/3BEH8OCaDAJirukSM2lWrLDVsPgjWg2Gno5JU5Ya2f\n90UopGCIzIcchzNkE8PgovJ8XDG8MvjxEMQcdlfk5DvD56Uy9jNX17sJ66QJ\nItVUikAgYSQ9adba8qx7Rpnt0Jg1D35BdukMzqVd3skAhioNd8Dfapt6J842\nxovS1jyzUx+IYb9xSqAioxwAWr0l/xmM1+AOVa6DGGF3wFOmrT5jewSFQ0+b\nZTqEQvfGg/bYYX+tE0980vtBXmTmQPilWJYcKLI9mYSobqcNFKxFJ9PkdAXV\nD9PqSJyyXqgwwZUZwRVIDXl3vxlOBxB9p43YTm+lR5XyBpF4tUZsU/zwlsG4\nT8v5U94/Y1TAhQEwU3qtHSfyYh4Fk3PyCDj68g2GaR8AVRhU7auLpDQo5hHC\nLY7k\r\n=TcvV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"72d03a75e96c3a6afa587d8ccf6983fb9084d506","scripts":{"lint":"eslint src/*.ts test/*.ts","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:ts build:umd","serve":"sirv examples","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es,cjs","docs:dev":"vuepress dev docs","examples":"run-s build:examples serve","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:examples":"cross-env NODE_ENV=production node ./scripts/build-examples.js","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.13.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"5.1.0","vue":"^2.0.0","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","sirv-cli":"1.0.3","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.5","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_2.0.0-rc.0_1594802249517_0.9704293540113356","host":"s3://npm-registry-packages"}},"2.0.0-rc.1":{"name":"vue-types","version":"2.0.0-rc.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@2.0.0-rc.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"3afe23110b23210aa9ae573c0ff46a060e256b4b","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-2.0.0-rc.1.tgz","fileCount":46,"integrity":"sha512-TjzivrTx76hgYWfbUY7uf6Cr3p/WBJQcIiAjY1fPmVaUKLCMngFDBx42Bs+Isbm6qHXHgwj/3t+AHg0zpJ8pzw==","signatures":[{"sig":"MEUCIQCL/nJIcJOX/mPlRU4FhTKQLMfSOWMsweJpHstx/dBsKgIgaihPC+EpVZ7gVIyyLcLCMXiqe3iRf8FxQ5AOyJMkKcU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":312685,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfJP1oCRA9TVsSAnZWagAAzGcP/0HdlpYMfGkPoqzUd58Q\nx9lFOKfQ3I5Ih01sC70Vz5J2MpPQGKCffmUWd7/63s2avD6AImAVFcgVp5fH\n1bBkbSwwXJgO1UI9kGRVl6menD+HCYAR8bpaaxHEEzUGjYeFgAFLRpCUyRaj\nODQzrDe9m19eWsDh+f/8BN1Dxq2tRLG874tsCmibYox/a6EPyAaBvNCuDvRR\ngHtpEeu4KFD48FH0n+5rUX0o8eOE0yermrJk4uSifVP6nj+dxdY0vKDbfos3\n2ZYEl3WzQ+Bj1LS9NVGEoKwoTEFeYGor3OIxBgz4i0Sgw4uN9XkLMy6BoGjT\nCdEPhwsAu4S8dPo6qLyPBG7TZcEanJrxBMd3HOJjUJ+A6CgPPtJ2DtVbV2/8\nUxEaL/u2J/GNzQT4uHt2opOF0kyl8FScMF0WztnRzrMEsc6gqsIaDY8gmJJY\n2bzRlBFMX3CE7dgfcuQk46bjtvd9H8n86FBmWCHSWPB44NOR40fiCOKaM7MP\nxAtacoLEezDCNEqPQI/qEuC8vLjOPw7SWX1phzrDrkcC71SMWGjPoqa/xvnL\nz22QmC83PkuIYqWpOBDpSPJ+lp56VoVPcj4iJlCilqCQtQnum3IJD9HDhpy+\niLDPdZ/iPouyiduvSQ2Lr3b3ciqydwAdofAaNDqqX2UUQqBVp3QZbLiA0+C1\nL7CM\r\n=cg2k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"b88c3cb1e6cac8747abf84827efa853ebcc5d2b7","scripts":{"lint":"eslint src/*.ts test/*.ts","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:ts build:umd","serve":"sirv examples","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es,cjs","docs:dev":"vuepress dev docs","examples":"run-s build:examples serve","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:examples":"cross-env NODE_ENV=production node ./scripts/build-examples.js","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"5.1.0","vue":"^2.0.0","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","sirv-cli":"1.0.3","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.5","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_2.0.0-rc.1_1596259687810_0.7446919295059837","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"vue-types","version":"2.0.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@2.0.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"74d05c8964621762004092b9fe63eb9bcb7fdf6d","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-2.0.0.tgz","fileCount":46,"integrity":"sha512-GYQfidsC6uyKIkGscyOxJV0S1cLdmzt/ELEeSL3kmCe7+ZDhQDPC1jLIStnZUPUZY1+hcM/NBpI6/13P1o+2DA==","signatures":[{"sig":"MEUCIA+V9IP0a9O6LK6Ub4DNWIphKNZLuXFBTpvwaspU0VY9AiEAgzlWgFiQeYEiDEnZaKWakxsHrZDspIGdBMscXQsfyWY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":296189,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfL8PKCRA9TVsSAnZWagAA4zsQAIwJLRXybOgUy4vnaM4/\ngOEy83rjFNYrXfBpRPtV5sOzVz0JbX/4AL1OT6zQQAPVsFQb+uV8xwj7XPrP\nF2EdkF8vNda+o9hg2uLMVUME1R6+JSO4YQdDEjR4ixEgA+MPA4MOjANGVN3c\nKOnI48GRiQpJNlnz+xJBtYi0Y9B8E430IKcOSN17ucu5dh+kRtakdx3hfCY6\nO6OPiqJCkD9c/CLV2mHacb93GQZ4DtXKJv0R/VxRKpvmvO2IEeeKJyhiYM72\niWvuMYMop8XnBHVM/vbTaB2AbTnPR80QFfjLRS0bMO8tXz8G+YKuEWqmbEk9\nxHlv45UYVwcJI5wmzO8c6Q9lwCvsvcjOuemJ0ekhZmBtVXTDbmcnY2CjpqHZ\nwx/x9Vsi8s1V6yThs3lfUvS4hlLKaND6Tr3krhQxxSaYchr7MFhsL7t+bMDf\nfK3s7ZWMVzfNeB9goodlTV90tOyba4/TLWQJbAU1k1N7ydg6dvlxxHWDrTO4\n70jk4c9OC6ml3WZw2g2Tfcd9oCRufdzfiPEqNJ+uYOFyR3f0Jc275x7SsUfL\nY0mRiBBMzNkFiqegHmU+SZH+o57qZ+moy31QGN9t7nl8T14krjaJYlvYDK84\nPZN5a0gtVs7dOk3bbNPQosFYhWoUeD5xGTup2OoxNBaFpGECkywCkn/G7ZbE\nb/fc\r\n=RBq0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"0adf67bed9580f1e8afb2a7f160cf04fb1f643f2","scripts":{"lint":"eslint src/*.ts test/*.ts","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es,cjs","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"del":"5.1.0","vue":"^2.0.0","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","browser-sync":"2.26.12","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.5","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_2.0.0_1596965833607_0.5818698073502979","host":"s3://npm-registry-packages"}},"2.0.1-rc.1":{"name":"vue-types","version":"2.0.1-rc.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@2.0.1-rc.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"dee4dc2db72a7816c8aae69f9b9a939a367800af","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-2.0.1-rc.1.tgz","fileCount":50,"integrity":"sha512-d2oDkEqMSoI/eVlVp21lYDrxPaPAHS+dUt39zRAbXcATYOw7SWCaxtAvMxyYKzEgdM/3+brW8Ryi2ZMZzqqhSA==","signatures":[{"sig":"MEQCIHbai2ZuRX+Fl9y5spmCN/6rV98287yaN7dH/3Jh+776AiBu3Bhk9rNzyh+NRBB5lWiTsnvFq1T/Fi4vIuZItC/kMA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":298057,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNTDMCRA9TVsSAnZWagAAOBgP/0Pybu2NgD/+VgIE/2wS\ntuukz+C0Om5dlZ3so6cmCL6yPwYNAcGyYohx+LXHpuLdglEUrIbqYNX7adk4\npDzvVfiCMrOlOOR4tiEUX848HmPdELC8h7uJWHInnr6yktoBeTizQLHaR3Em\nhOZSQsWM+m3ldYi763QsFGzWn59LpBCxE+qOQXsM5tk9CO/06ZnRW1YmgTNq\n1As0CRzI7E++Mur6b4qvAgbopo+2E6GSG4s7yFB/wB6h5qJY7XijY9FZESF5\nlzTXYtCcaxZNhGkK0j8eOB1FlQrAi+G+qgtDJDJsq8uEb8H97Fj6f/N+eiiH\nFaLRLtJF5zyiraFbhSrQvJ9rYMVSaY00jmBXPVOdBzVDmbPgN7rETVAdgPfl\npQvuV5NjyViIMWZhTddkTbnL5QZjZbzmz0AVorKgw/2dW/F8j3MIWYuWpMzn\n4eJl1RSvOisTMyTb+X9YWQ2XRxDBkiGrQr5i9CEYb+CrPJOHUxHg8OviRnk6\nb2NyIZeSxjntSmcG1g09m60jBNVOjB2NkYtlABalwbEV1yrZDUulioKo8h/7\nZ1KqI2PrxzldtcdzU1WKUeaTauk091+y6RXThj/4++cXKwJrqX3XA5n+Zqgg\n6k55i+wLyXjWJp+Lqetuq3bwmyfJijZwtOgqUXfoX4HFMSpqTAgXzqB5rnTl\nekMv\r\n=Cqd0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"a8549889806b0cfde065e1dd7016c15316a5891c","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.13.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"5.1.0","vue":"^2.0.0","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","browser-sync":"2.26.12","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.5","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_2.0.1-rc.1_1597321420040_0.46813850382644384","host":"s3://npm-registry-packages"}},"2.0.1":{"name":"vue-types","version":"2.0.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@2.0.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"bb17bf0f407a77d92eef4382be198e0d2f175682","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-2.0.1.tgz","fileCount":50,"integrity":"sha512-aagbujhnqfTvIa16Ncc38EQRsSTuTWvbMYrzscblJ74G8ghfg0p/+LM732ZsTnl6pQUe5THpZ5Cko0hCBfYy5A==","signatures":[{"sig":"MEQCIDo8t2up2Ljf/vIQhE2JHtBnq1GYEcfg8ILUpPG+9gkUAiAreXfJf+MiqsF0O4x+sZReHiyeBAveoXe2+e4Lui0oag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":298052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNhatCRA9TVsSAnZWagAAf7MQAKFJWEcejFI3Bj8CUMzp\ntFwq0e9WTkUGIWMUKFlhoBfFV4K4Y0qprQQ7FOaip/a/bf0Upx+hmkvsL2VQ\n0rMUPWrRK+c8pverKdlcb/kYx//f93Earz76I0YKshkrkT8f3gLthFKzBqNk\n8QPCGiR3r+32S/WmszYglb6k8B6hGsXMX2XZXe8Nc5mw2h5QbLuVWzfdIIkM\nhM9/rC/QwbFXI35y7gJEmyoKt9B3Bt+W9zx5vqIvqvYOYJMisPZ4gmebZup1\n9skIkTqtk/iAM8viW+E5NTHovehcIlVzd9Esj06VOuwPvaST0we/3H5ubTuG\nh062QJFISV/n10x25joZLH3D6N2xfpqfQffK2Yryj73KvTAFrp5BgVJgRPBU\nQwyHvyl2rCjR2BJBaCrU8p7dyUOKf1UtIDk4kNRYmyofiF8+XN1FAckwtECW\nTfMmUHHW7z6gZNAeXOlCtfGtWC7ImP/7Falh9prQuff2oVZ4h5Yy8t0HnnMv\nhPA4ECZMs49p2g1lDuuYTxzaixp0L6jCXuKXMk9spX98azQ1EKmTsu4k4p+b\nTe86NgF7GEbJzrNpm7ZH0CWS1xyJ7C3PlZrLDBQAv8E/RmTL6KgAeWOghrBE\n7y8aMuVeOaCtW1JNtI1UZrKokSlm99y5Iyay6KNz8u5MD92KlKfgbY9GqCNS\nQAfX\r\n=JJsz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"584227f25a0df2fb670902bcf1831c5c5a485f40","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.13.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"del":"5.1.0","vue":"^2.0.0","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","browser-sync":"2.26.12","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.5","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_2.0.1_1597380268539_0.7727617769038209","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"vue-types","version":"3.0.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@3.0.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"68d11b0af6a5906e3cb0c5f0aa1008c8af4fd827","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-3.0.0.tgz","fileCount":50,"integrity":"sha512-xzq2D7zLGbzn3bPQ0CWWYx4W78JWdGYZAFfRkzxz1aTm9DaNoH0qxYDiLXBofBEQ5X78l32uIq/G9INQ2E8X/Q==","signatures":[{"sig":"MEUCIB6WCfiJSrjNMbpbLnEW2bZniJ/vxBQ8ohGgKtWVg/TZAiEAhu4W3i6tDlVyqGyBSRojWUKBrMd27OkBLcxww79ot2U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":297104,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfVFWVCRA9TVsSAnZWagAAI8IQAJMhUKSYJXgcy5ZYomyB\nSx/Ou075/B9IXpoCsDi6R8LrdjPAQvsg5vhY9BBPo+NXwCrt4I1VhlZ16jBe\nogW4KIQKK86UuN1E0K6MN78q+KR+m8Xev6jVbhYqzqOGSoVqF1IZ7lybi2Yi\nsTbERWEfs0h4bm0neOE30UkhNDx8EmPsrM+OKV9ffzAuLQVGX3EJY9nqb6SP\nD++bgFt7cjj2Jo+tjXp0ax8OapoRQCP6Nmph2qJNIWb3+vvJLdiyh4o4mZ1r\nlNJp/KU4mLYzck/XzsRWu0askTrqVjjkemu0vyLJtUxNC8Ke564AknCX5tQ8\nbT0VCoAoEa+OJomi1eAlVgaFB9yge6rciJ3HSXSlEvLaAicHunXfrlcVUWNQ\nXW19tMkX5EnFJffSt5CbDaRTSD8s+oJW+JKExztYQzPxWi6yVLHXG03SrvSI\n9j28VYrbLc9bNCsE2ZdLcG93wFxFYG/EF2Pv7mSvnYlM5JXGB4OKvA7d5N+w\nq3GbKBL5cny7FKaRKqblMTotOP1XHbykmt2DV2oUBbbE7FmYt1qRXKkncqQU\n/Sb8a6e6ZNuF8nYsxw3w+TPMKHLAPGMiIMR3bNxofppnyaoqlgaX1sN2WhGK\nJ81lPq13xY4RnGd5T5s4n3+oaB4g7xNGLwGOGimgLT5j56vAXy2hxZ1wKtM/\n4X3g\r\n=8h6w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"6f1ffc00828c018fe2fa3dfd05c18ccaadac9123","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"5.1.0","vue":"3.0.0-rc.7","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","browser-sync":"2.26.12","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","core-js-bundle":"3.6.5","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.4","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_3.0.0_1599362453182_0.07992470387265604","host":"s3://npm-registry-packages"}},"2.0.2":{"name":"vue-types","version":"2.0.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@2.0.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"a995ba3f22f6a1a81bd1d04096a548fcea97e11e","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-2.0.2.tgz","fileCount":50,"integrity":"sha512-YXhDIGS//wc8NAGnMP6CTZ4AkU8PNEUzJ3hXAD+pKzdce+ea6JIfsqY3EWhzJopWPmlfyooTGHLZ7w1Ze/sRzQ==","signatures":[{"sig":"MEUCIQChBfzcIfcb1vUxlzf4aFLNjNOfLRSt/inARUvNMSIs3AIgSW0TFgiw2re6xPYcya3GvLbbRIYBeEr6DZ6r6aubzPU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":298597,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgX8HCRA9TVsSAnZWagAAIQEP/j7yGZWBlsuHRPuNUTFD\n2d8vQakeV7fN+dyRauWLL/mumDVz89WoWrRo4sZ46YHMU7hfrTrgy2bGz0ax\n0MEuXkwfVfRfojUTvP94doNGHl8nc+AIbGiLW8gtv4Tt5+q8U0FyHp3wJkXB\n3rJWQKzMErv6AFtAYNvem8ogUZmUSyUgYLAulW0FKGLd1GYUUUUi648BoG9i\nWT8AvlQUvS1/eCMUd5qRBnBmW8VZJGo9Q/xx3vWFk9IXa/l5XEF2XmFQyMa8\nNWJdSeLfZC2x6dvj+N1zt/MU4NJIIjA03jCPnsRjwsLOkUgU7Ji9BxHniV04\nfbbOZHCEiK6VtUWbXHEPk+Eg1sQo/Ve9hbFH71uzAf3tKYBrTNF1jyh3SwRX\nyRZcE35fS5lhuU2HxrhT2WfvqX9wyttraw8Eqau3u20tVVBoEQYphOc/f3M0\nFhcdxkRyxIOhSQtin0jEC5cn2t+lAdRgLuknqVE1fCzVZoyBgisrzKlH1yf6\n+1/zRZv1MqbjTaueHVOcL9KlgauACizKgrtHA9w3o+ow3jqS8FbpaGWjklX/\necSsHxDClzAILr8FVg+XJRLGBGj0pZSplJS3oMB3b1U7YS91u1+iT4x0uEqp\n7vzvd+Gr9iNOY0U1bXXchVfiTeQHXNZUWJbuSR/oD4uwYjAYePyErd98J+GR\nS4c8\r\n=C4sF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"cb547a44650227fca88db312833e3fc50b6cfeb0","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.8","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"del":"5.1.0","vue":"^2.0.0","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","browser-sync":"2.26.12","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","core-js-bundle":"3.6.5","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.4","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_2.0.2_1602322182550_0.6023759541481237","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"vue-types","version":"3.0.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@3.0.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"20e9baae8673de8093d0a989234695d08d544be0","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-3.0.1.tgz","fileCount":50,"integrity":"sha512-UbvbzPu8DNzZRfMB1RDTFKBB6seMm80scMFdP+GkKaw00EugC3cjq9AtlS4y258vDkpAe9HfqbRO4cp63qVHXQ==","signatures":[{"sig":"MEYCIQDCIoOA2kbvrW1SXddPTmWOaEBdRuj/1faf9QsC5KBNdQIhAN+3Lug1FTiYaEgzkBwWbLE3iy/6oyrhpuFnCwajiFUO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":297617,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfgYM6CRA9TVsSAnZWagAABzMP/RcRxBvPkRO6ZNFjqK8A\nIDPD2fm1ce4lYWVG1Ki3H6q/LTTqKtMPZF4CpwlggreTESeFhYVlYikJDlbv\n9VsapaKuVcb7uf2dpJClsVbVSfEzxGgRIXw5ah1LszH696m1Im4mdwbvfpFb\n5eN7p70AwilocnFC6Dhizaep1t3HJJDG0oWguyyhZCMZSOolcweO8jOeOeEy\nEAdOxHKh3V6yfxFWPL1vk6fILNtKveTWeLyI5/7ojmEoTu16Dc1gtyuDNLcY\nKXaZTqp2R5gi04cRvnjIzLIEplGDjE7/Hu6xtApDQAVrGDZVnh0TzZSVyFwb\nbCS8pR6XoV6Crfihr4lN/ut3oXMucBEF/qxxiAzJ9XKl0RKvHTx0NnGfrv9h\nazlavQu+JCMyadOd9XfqFjKEiUilb64ntmlooB+LQk+eQCZb2UUNXRAmBk4k\nwZ94HEfDW5Brf8ZimOj0lpFPd2PXFJs1AQLBumXLnnhE41MDfTZKbj9R0+W3\nVF5+JaXPMSWoIbf063SXt1I5jkPlWLYI/LKF18OBF/QH0tQcboEK9vrNcnP7\nS4pWJsCnCjT+ubzzszRwYATStoHy6FCOYnMG1keCIjSbJggSVAFgLOlYfaeP\n6w4Y+5M4VB/ETox2fmbZpl1aFgPHVM1Lkg2+M/2DdUlhw1o39Z24ae9mddFZ\njwQ8\r\n=Fmg+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"e9c1f12c01a284744f4e72ae2a32ea64c4e5919e","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.8","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.3","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"5.1.0","vue":"3.0.0-rc.7","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","browser-sync":"2.26.12","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","core-js-bundle":"3.6.5","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.4","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_3.0.1_1602323257683_0.4080029024302294","host":"s3://npm-registry-packages"}},"2.0.3":{"name":"vue-types","version":"2.0.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@2.0.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"d4d3b124e8ae09e2d58785054451a6eb7e672d6d","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-2.0.3.tgz","fileCount":50,"integrity":"sha512-pLTOquc/x5uvVLZBjEKwC8e3eni17wv9M/2XdYbDQ/93pk3vW6eXvoynMw0ACBvHad7GgQ92F+D+C7d7e5msBw==","signatures":[{"sig":"MEUCIQDSuIVroTKKetBz2dl9znPeUalSGwKXbtCnOgt6VCRZOwIgDGFfEFbIltzDtpfV92VmyVZcTGKrjtgRqfM/vDJx274=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":298597,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGO46CRA9TVsSAnZWagAAiDQQAJCTfW3igHCt+cWJcwtL\n59iL2L6min2NmP8jjITIN/YU7x0gzEFUuLIcOWgPnstO1xf+sgAGX6lg7E30\na6B7SySVA+CCu9/4zny1pihQScZuU0syEtDghiP6CnBrbGRghbwHmWohCIYk\nEdyb5JeL1Txrv0gAl9sdLWj1SFsA8KQl/J1aZer7kDsrL+NxczEPaXohD4kI\na5y27uW/1Z2agUZw0afoJRae1q2AdNCNH70OZ5yoC/B3wMjGeB6VArWW+TvH\n4Q5SyXETQrbZyunCHkHRK7F4ky67bPDYa7wdEOR1e+0BoPmcssQmhYMy1xdj\nSSUosMvrgwBX+PKYEJav6Id+0xDJSatVMj8Dx2QbsD41nKAqC6jxzWyFimXX\n3wZJMEi1bcOcdFqO5j6Az2V1m7dtrJfp7FM/NLMzWIIZHHsZNumtmwusRm9L\n/r3A1+w5p0mJZc8HOPBkbTD5iCdy54R6S7y4ziSEP+q3GaoXkabdoo1LRv4v\n5aQDtQ12PT6E7gUtsg1S75bGVuyn382hboJbtM7exwK2uMA7Duf6IfhbpjZG\neVI0e/XUtP3Rgpd9HNNhYyX8lnAzBEU9dRJGwKNWxUWGH/pXEyi3gIEHKpop\n3k9m0ftRA3mU7RBxTjw7t9dJdLwTMnVFFcown2naJDB+cmIRlFGH2kGWeOjn\neWg+\r\n=o3xb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"f29af9533d478b792a059ac69e3f7c27568de840","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.13.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"devDependencies":{"del":"5.1.0","vue":"^2.0.0","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","browser-sync":"2.26.12","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","core-js-bundle":"3.6.5","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.4","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^2.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_2.0.3_1612246585991_0.09707722786402884","host":"s3://npm-registry-packages"}},"3.0.2":{"name":"vue-types","version":"3.0.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@3.0.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"ec16e05d412c038262fc1efa4ceb9647e7fb601d","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-3.0.2.tgz","fileCount":50,"integrity":"sha512-IwUC0Aq2zwaXqy74h4WCvFCUtoV0iSWr0snWnE9TnU18S66GAQyqQbRf2qfJtUuiFsBf6qp0MEwdonlwznlcrw==","signatures":[{"sig":"MEQCH23kvmVUJDzNOTGWRO86vSigm3IHrJWZcmWB4xzbLOwCIQCfKeybdJdxW+BV8lvKJFcXdlPaHwEhObV1cFV8MKgA1g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":297104,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgGPAuCRA9TVsSAnZWagAAbA4QAJZewvqPo1pjt1vn7QlA\nIG9zNG863Ht/OAt6dDyXxc2XS023/Ms+EpAewlhaLjh9KvAb44z/a5kB15tO\n+YCuDtULHV9HeaPCR7s/eQa5WAhVOeh8nNA+j8imsoXT1QaMjwpPagN0CX+f\nLg/27fH7JEFCL98MnayxnIv4vAledhGwWQdCmgkj9MwUJtMPfPF2viOgR6eJ\nrELX+BF662GB1aczIpfHQj/HxNMYWPeOehCAj69Ab16tPcdTZ1frIcsZ+K/G\nvI+jwKmeAvUBKQdO/dEbGdS0CKFR2gyIal9L7G8ZSMXKMe4nIHQWimt0dWFQ\nfsr+1HjgXqOmQga6/AKsHnaQvwiXcpN8u6/mIJieiYag1rMuIaqdM9PwesXJ\nFPKwd6nfkrGuHW4SjyMifgbh6pWCAg5wgF+F26PpkQXT22+Dn8lXa/5vwHKF\nULBdJDTsNEL01Zc9ywhZw42h7QLMU06oTijUksAyLx6IF99AVucacLvNobKI\niPHd/ytUC8dB3aKbUJHIWGJeVC5grRbP5wWHhj3sz3hlyIRjbkDnOkcF0pmg\nN4Of73BKijwV5Nw3fJWNTiqEvTLt81uFBtszbfYhgH2HYhgCjBRVgc2mDASO\npGDFR7A6XZrEoFzdPzhK1I0ZEfMa6gqBQ+9v6EtC5+As+lHLpAgFMLv6RYlu\nVZsv\r\n=IwEW\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"cf8140564af060aaf2c0e7fd753eccddd33c2b62","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.13.4","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"12.16.0","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"3.0.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"5.1.0","vue":"3.0.0-rc.7","karma":"5.1.0","eslint":"7.4.0","core-js":"3.6.5","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.5.0","prettier":"2.0.5","vuepress":"1.5.2","cross-env":"7.0.2","puppeteer":"5.1.0","typescript":"3.9.6","@types/node":"14.0.23","microbundle":"0.12.3","npm-run-all":"4.1.5","browser-sync":"2.26.12","karma-jasmine":"3.3.1","@types/jasmine":"3.5.11","core-js-bundle":"3.6.5","karma-typescript":"5.0.3","eslint-plugin-vue":"6.2.2","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.3","karma-sauce-launcher":"4.1.4","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"6.11.0","eslint-plugin-prettier":"3.1.4","@typescript-eslint/parser":"3.6.1","karma-typescript-es6-transform":"5.0.3","@typescript-eslint/eslint-plugin":"3.6.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.10.4","@babel/plugin-proposal-nullish-coalescing-operator":"7.10.4"},"peerDependencies":{"vue":"^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_3.0.2_1612247085707_0.1836584431052648","host":"s3://npm-registry-packages"}},"4.0.0-rc.1":{"name":"vue-types","version":"4.0.0-rc.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.0.0-rc.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"eba1d51776892fb0a1d77d668d676fe8507a8488","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.0.0-rc.1.tgz","fileCount":50,"integrity":"sha512-+LRvu6Kr0sqlHA6qsS461fWVEmoFlyc69KruZAN+FUz1eonuC5x28Vsmm7ae6xaDzbUX5ncXkDSo3ikVtMahkQ==","signatures":[{"sig":"MEUCIQD49LZUF6RJcJVBe3AF8a5ettKl28YPLxGqGJ6SvCBA5wIgO5Y2NTOPzx26a/wS1YE3OZFbDl9pqrnjI4K33AUOkEM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":295720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgd9TpCRA9TVsSAnZWagAAYG4QAIqZDdOeO+Mb12r+tV5r\nLGhhVIeEyhGpeJawtDrXuO6PEg+qfvmhmmijvdkwT3HHVt8lXMZd9Dgc0N5g\nlhY16eeRAn9NEC8pAoEVpban9RzC3IPxPh8C4zU2ztKu/3LuWFf5Qzumzsvu\nhtdEO7Yt9vtVkDy/0qyv7jIGGVq4+2XqTF/psT7SayD6OsGX2tlqgOfZXWS8\nEoQQYQ6jMmfa2NpaLG9yHg2A88ldaCEYZdC2rkUMqZASXTDellrDsytvL3KJ\nAfjDm+NtoJ4X4ucBP+WKxXo0DPQdiaVm7LNLR2ttPM6pWqddTzfx0yHI2awZ\nrwUGj3vsf4zFGV9SLYJ4WjD55aevgqimsa++238x3oIs91k8Ji4nRACaJAsz\ngYTktpSSvMiLtUIo2wsNp9yiLFLMxrWOqVhHMNMKdDtrmxLmMSHuNyvLEY4w\ntlPrRt/dG+s+17YD+V+o4Ho6VMq8HKgm5NcsmtSl3vwfEeZvX3xmRsABAarX\n+HBG1Y5lu+fvQRlVCOc8noIskczl/kr4spWBw5HORC2TVt2+JmIktWp+n5cv\nZJyGQhIFxYY4ZXNe9mYJRTFJtbnpN3tFc3CvGUETm+03uto31KgaNXi8SKJQ\nDyXXySdsUrUB4xJt8+iNb9iuL5im7sO4mWOEZYFO/AQMDT2jolKtq7XWGE5O\nTL39\r\n=XcAb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"7a1dd524e890b232a1ca3f7ee7f14b1ebdef77a7","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.11","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.15.5","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","vue2":"npm:vue@2.6.12","vue3":"npm:vue@3.0.11","karma":"6.3.1","eslint":"7.23.0","core-js":"3.9.1","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.7.0","prettier":"2.2.1","vuepress":"1.8.2","cross-env":"7.0.3","puppeteer":"8.0.0","typescript":"4.2.3","@types/node":"14.14.37","microbundle":"0.13.0","npm-run-all":"4.1.5","browser-sync":"2.26.14","karma-jasmine":"4.0.1","@types/jasmine":"3.6.9","core-js-bundle":"3.9.1","karma-typescript":"5.5.1","eslint-plugin-vue":"7.8.0","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.6","karma-sauce-launcher":"4.3.5","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"8.1.0","eslint-plugin-prettier":"3.3.1","@typescript-eslint/parser":"4.19.0","karma-typescript-es6-transform":"5.5.1","@typescript-eslint/eslint-plugin":"4.19.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.13.12","@babel/plugin-proposal-nullish-coalescing-operator":"7.13.8"},"peerDependencies":{"vue":"^2.0.0 | ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.0.0-rc.1_1618466025181_0.804363301131152","host":"s3://npm-registry-packages"}},"4.0.0-rc.2":{"name":"vue-types","version":"4.0.0-rc.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.0.0-rc.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://github.com/dwightjack/vue-types","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"dc5c462ce5f84b589cb8104a2db0c8d14e2fd1c9","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.0.0-rc.2.tgz","fileCount":52,"integrity":"sha512-4CHAlDjEwFWwsu6HG3FwFsi2irrC/fitJ+rygfn5qYpx19WJNL0P2GV7uPPh5Qw8jVHx0CQtrMM6TcTe48eoYw==","signatures":[{"sig":"MEYCIQDZanAlFlvxznPJyFPtiYsIhJg1KBqCSutr2R/urDrDFgIhAOCxApObIe1AJ7H33yVOYM8zpCwFPOOKtRcYbaAtjkgf","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":298452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgd+EZCRA9TVsSAnZWagAAAtMP/A8pfQarZP5BfyqhqV9x\nIxk41Yh7tfNjSc3ZKi17ost1GtKiGtNy5J40KAnmgVyPuItcqS4qE0aW+FE2\nYxUh2uZ+RnpeWmVVl9ogHZTeI7cMKVvug7OGKomOhXoXFh7Jck9cO+TAHErt\nhM1IzEk/b5nRlGvaRYyTvghlua5dws15BKOOeXGQ8s9NJallLO2WgnK0DZDd\ncgXJlA6jlKD41gJjXOCtqUqKhgs6joCAxg7ozU/tRof6msgBiR2xigFtfrAg\nB3TgUKUfreuALYASxDMRxiWO7SBBH+nVQ4/rMCeSY67adPpvNC2QWvWmvS3x\n/1CXM55roM4HysKflKmspRF8Ldw/ZaSrAKGjF/jKMg/BUjAKBngfp6Cmk+aE\nuwvFBzyF9Jq+f4lKFaLr7HA2OAXsxejLilXsF4oIQOeMaE8nP3vY71wuneaK\nAoltB6ssGEDMfMqDjbAfUht0AGanpTMh0VPGROPLT1wfZbG0Zih6xJ30cjrG\ndfVxEzuWZpuC/dSJ6RmGkpg8oiTTta6LeiXaZ1shT5pTG3ocPP/qjMVwANAU\nhw8xX7Ms1xhhVg8KV8UD9B46xQWNWg9aIue8YdB9HNDaL3Yb05Kb9oDtWmJq\nuGqTeMUSDcIMWeDccgDB9AZoTbk3UmtAev+copshQ8MZUFOa28Pc1FPQpzQv\nt6uv\r\n=4GJS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.js","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=10.15.0"},"gitHead":"61807ea484d2171093c06774821c70b573e1edb3","scripts":{"lint":"eslint '{src,test,.}/**/*.{ts,js}'","test":"karma start karma.conf.js --single-run --browsers ChromeHeadless","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.js","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.js --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","test:saucelab":"karma start karma-sauce.conf.js --single-run","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.js --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.11","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.15.5","browserslist":["last 3 versions","Safari >= 10","not ie <= 8","Edge >= 12","iOS >= 10","Android >= 4.4"],"dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","vue2":"npm:vue@2.6.12","vue3":"npm:vue@3.0.11","karma":"6.3.1","eslint":"7.23.0","core-js":"3.9.1","cpy-cli":"3.1.1","del-cli":"3.0.1","jasmine":"3.7.0","prettier":"2.2.1","vuepress":"1.8.2","cross-env":"7.0.3","puppeteer":"8.0.0","typescript":"4.2.3","@types/node":"14.14.37","microbundle":"0.13.0","npm-run-all":"4.1.5","browser-sync":"2.26.14","karma-jasmine":"4.0.1","@types/jasmine":"3.6.9","core-js-bundle":"3.9.1","karma-typescript":"5.5.1","eslint-plugin-vue":"7.8.0","eslint-plugin-node":"11.1.0","vue-class-component":"7.2.6","karma-sauce-launcher":"4.3.5","karma-chrome-launcher":"3.1.0","eslint-config-prettier":"8.1.0","eslint-plugin-prettier":"3.3.1","@typescript-eslint/parser":"4.19.0","karma-typescript-es6-transform":"5.5.1","@typescript-eslint/eslint-plugin":"4.19.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.13.12","@babel/plugin-proposal-nullish-coalescing-operator":"7.13.8"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.0.0-rc.2_1618469144628_0.6076828026203647","host":"s3://npm-registry-packages"}},"4.0.0-rc.3":{"name":"vue-types","version":"4.0.0-rc.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.0.0-rc.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"f11b6783c7747d3dcf1be90f1d1ab366aab992dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.0.0-rc.3.tgz","fileCount":52,"integrity":"sha512-UhG/e+lejQ7BeOIvCk3/rhGCNEQe1uk4VdgbByJIIrUr42SfhmIdZZubG6a/U+qJwbm0WSIeW0CbkpO5Z5ls8w==","signatures":[{"sig":"MEQCIBIl3+aGybbV0FFg5vi80pwBICYG1MkICrOVyJr6ltPZAiAiRKjHb4E5gW8fVfNgrFWPAAIf7VTp3T7PDjWPWJK3rA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":301426,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgxFx2CRA9TVsSAnZWagAAbpEP/0zks/7nEHL1HgY8TYyY\nThEojgvmWYByNyTWJwIslD8Q/eHJjutUNDlEoVsFaooxn7QoVYG4FipoGXir\ngyTHg7ymEYApr/V0U1vhI7TE1ZvX4f6IIKtT9/EQ+s2xX+APxPvUwhriVnQP\nK728+9Q+3WWGW1UIgEmqfeL+Ld5TmKPIrrm4Q5ZMLiW1kMGU+p/kLY9CxGEf\nimFiiDdbAncp5d6lq9lPjtHoYsCRX5vkKW6wSzIlbFr+UcE+a8MTe0v8tFdr\nrEOfeE0adi3xErhSnq/ZheSH+Cz8nD1u9FzX3eJ+jChfgb+HnCJJIGBz59nc\nxyYhEiv58ICL8UiRZ4NSNn26Pe59VVCV0kLJFyBuVWNct00gVIwYIJJIpKjr\nAizuGN9+nzMx4SuDvtXh+8BqZA9kmH+2uLfNK07rS5qZNy8mZ3Qf9oeGCNbp\n3snsQcgfIOs1gAkQugSESF5WCFCRipeyq0cuJT18qKz2GpvQ7zZS/5A7VWNk\nMk1n6Ym8ipHbmX1YNecoUh9KffBLUqSnAzc0YZcAGL1r+uSHdkNnE8TPvABn\nBjUSqQLvnyoUEtzZEybIaD6wC2l6ixv9NfzXN9F14hTnL/RpJV8dyGavzd2t\nxfkXa0MOeXeaKTXKWzTxT8GE1CeNE/DyN2wnlAWZTkxY6hFp4Alp6seEohEU\nak0+\r\n=Ahx2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"default":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"default":"./dist/shim.modern.js","require":"./dist/shim.cjs"}},"gitHead":"7b1d4900a7cb990972d3ef46007aa35053060f96","scripts":{"lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"jest","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.cjs","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.cjs --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.12","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.16.1","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","jest":"27.0.4","vue2":"npm:vue@2.6.12","vue3":"npm:vue@3.0.11","eslint":"7.23.0","cpy-cli":"3.1.1","del-cli":"3.0.1","ts-jest":"27.0.3","prettier":"2.2.1","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.2.3","@types/jest":"26.0.23","@types/node":"14.14.37","microbundle":"0.13.1","npm-run-all":"4.1.5","browser-sync":"2.26.14","eslint-plugin-vue":"7.8.0","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.1.0","eslint-plugin-prettier":"3.3.1","@typescript-eslint/parser":"4.19.0","@typescript-eslint/eslint-plugin":"4.19.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.2","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.2"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.0.0-rc.3_1623481462437_0.4724406538957038","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"vue-types","version":"4.0.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.0.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"da13ccca0f979d3cfd076ce3a2b7050a9627ed5a","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.0.0.tgz","fileCount":52,"integrity":"sha512-CGJ6br+FhK2OFgPzagVQxf6icQ63OVrOFjw+ekmb4bnTgn/FuKkjdlOqybOdq5aot7BF01yPoTczGD+fEMpKRw==","signatures":[{"sig":"MEQCIB+lp092QoUjLq2g4i4fMrHd/KnagOPEs6EreBhfOLhAAiBxndHN5rdR8fqPABBJCdmiEddpy5EQILtfGHPByG2xYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":301425,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2D9XCRA9TVsSAnZWagAAZQ0P/0fnUiNujBdgQXIpU4dx\n/I8nBbuQAJurygYLWiAjKY0RDM9413Wx6IZkfj7tdMRgqus695yW7XsK64cz\npThbf7RaGRCrn3B3MvnYDJmnMLCoysv+g4AKJi/zVAalEr8M2DtbTIRn8LyT\ngs4xl6SIebEVwkoUBgU+89j4g6fhCebM8xrQGuhDFZS08VGcI1vBGIKq8cF6\nF+TV/6MGqMc424LtT3WKVFvi7uUdxfbrM5KFBM6N2Yw6OEuEro0JfON04+QM\ntzewRacqDiWv19cxI2zOM2FZueQ5vPMVnY6JmCSq+8g5tt3AHC0yUaX8dPwn\n4cQK/EfAitti/ETQeylNqJwHA32NZa+xk5RxywHFxtbyOCDyE0Y1iJKtc8wz\nAWQkJWsTjhHnypf8n+WyM2aR7RE84D4pYmpnj+HyTU9Pq46ovK69NcY1h22A\nv3vXI646AiP+mJ45YHK8FLQktL0hnT7zdgX8ukgy0Hmhc29wZPJR/7mDSA7B\nDTugczUgwNo+kpvXBl4Y/Mx2eoHlCXhGuTG3WJf09weqTEYckK/LEFCFxdLX\nadKDUd8ncKeCekti2T4+3G1bjuKgbKMyxTLq7ihGjhgUzYqwmB/gVvmTr305\nkWRIsNvbGUMb1HE9m2xI8UgXxWrFCfCRd97uepsrRywCrvRlbj2Z6H/qbtBv\nLXrw\r\n=vZXi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"default":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"default":"./dist/shim.modern.js","require":"./dist/shim.cjs"}},"gitHead":"f02772e63e96844b755ba20718f6eea34998fefa","scripts":{"lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"jest","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.cjs","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.cjs --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.12","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.16.1","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"6.0.0","jest":"27.0.4","vue2":"npm:vue@2.6.12","vue3":"npm:vue@3.0.11","eslint":"7.23.0","cpy-cli":"3.1.1","del-cli":"3.0.1","ts-jest":"27.0.3","prettier":"2.2.1","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.2.3","@types/jest":"26.0.23","@types/node":"14.14.37","microbundle":"0.13.1","npm-run-all":"4.1.5","browser-sync":"2.26.14","eslint-plugin-vue":"7.8.0","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.1.0","eslint-plugin-prettier":"3.3.1","@typescript-eslint/parser":"4.19.0","@typescript-eslint/eslint-plugin":"4.19.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.2","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.2"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.0.0_1624784726756_0.3351748800161931","host":"s3://npm-registry-packages"}},"4.1.0-beta.1":{"name":"vue-types","version":"4.1.0-beta.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.1.0-beta.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"85e3a2b806ec6297498c980cf71baca754bb7f8e","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.1.0-beta.1.tgz","fileCount":52,"integrity":"sha512-ummNTH7e/ZZvuJL6aXswcScPbuksj/XMaCYrHTxgaNhtMf5iqVDURfZ/GMPi5ImUhy13GLhHph4s/0ihuR4byg==","signatures":[{"sig":"MEYCIQCz/wCXgDiFK7fwDqBjNxE7U5f6snHLarUK1+NMde1NWAIhAL4q2Tz//97cwd0I0J9LJLFe6VKwVeDsV815zhNdnue+","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":306820,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg6UyqCRA9TVsSAnZWagAAG8QP/0MUZffB/Mbm1g27lgdU\nl8bkWOU/wVkW980A82qF/4vIzLyG07RmFxjeJGpKDcbFuACiuQPP2h5Gt2HZ\nr3nJBYY9w7p1NZlmZqzgTQZm9cuX42KhoNYXJD2QGzss9Kg0H5N+M/X09JwK\nh7jhbfjrYPKP1rQn0nvl9FfjQKcXO6NPZsMLEV2eenyW+Y6Miq8+vslH+vQP\nnRgR/P2hZM5wlJLYY27neBLn2YM0imNdFwqsk6wIS5ECjUpa5XPK6ufGOZmK\nrOh3ebIkBr+TDW4pnxh0NPgQ9JTR1THS07hrfQ8pXw0wfl08agZIyq3BJh9O\nhg9mVbRGLsIyt7I87RbdHLzlVd4H1m40r6x4hyFvzCVxZEVOrmaJg1Sz7Go9\nS8MRxL9U4JkzA9i4UUyoP131bIG7g0Uok+oSW0FobKpPiPY/WrB85M/H24kV\nk9UdgdXpEJHRCu1+pHhqFQNn/A5IiC+NuW8wjeGmSNZiLes2sylsT0elNS16\nb6E0zXg3NelbIyOvei7YhV1EjKdkZUrw8P5+yiAGHdKWGWtUtvnSevXZpiUF\naMN9//rssTB3UPXKYpkQDwM/kocUM4BIOFZaLTkgz0B4wgolADIsJc+dw9Ab\n8YJrQz7cFC8D3mSXAajvY9jFiwR2sbKYqGdi1fx7/hXs33KZSbqwWuXmd8dd\n9yDq\r\n=PKEx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./dist/shim.modern.js","require":"./dist/shim.cjs"}},"gitHead":"b8c199d8a06549242772c3c15874de6c9d81d65b","scripts":{"lint":"run-s lint:*","test":"jest","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","lint:examples":"tsc --noEmit -p ./examples","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.cjs --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.13","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.17.3","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","jest":"27.0.6","vite":"2.4.1","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.1.4","eslint":"7.30.0","cpy-cli":"3.1.1","del-cli":"4.0.0","ts-jest":"27.0.3","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@types/jest":"26.0.23","@types/node":"14.17.5","microbundle":"0.13.3","npm-run-all":"4.1.5","eslint-plugin-vue":"7.12.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.28.2","@typescript-eslint/eslint-plugin":"4.28.2","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.1.0-beta.1_1625902249756_0.5077789627106479","host":"s3://npm-registry-packages"}},"4.1.0-beta.2":{"name":"vue-types","version":"4.1.0-beta.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.1.0-beta.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"ee3e95d8a9338d0b1d58884ab1ef5647fecc159e","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.1.0-beta.2.tgz","fileCount":52,"integrity":"sha512-bcCzqcwVJCk8LqmdyFATMQYEMyLpgAHdujPduRVhU5hiA3sN0zSluUZw3AgYynanl7wzOUn/KVhGPRqI6ZVT1w==","signatures":[{"sig":"MEUCIQCCZ+yZ6fcEH6U2yyEigR+swHwNVhfpLwXYgB2EeOWwtgIgQ2/v8Y7UrF+sRcVegAs04x52+fxy49WdBDuJfALIwrc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":312444,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg9hcmCRA9TVsSAnZWagAASh8P/3atZ5sfQzsH4vrVPdUp\nrHJSCvJBq9AXc5GamRoI965QP/raL2PL668qYdSZFYuYdVlhgkrR4KzTTgqF\nWjIv4O0WPNxR/C3IUdLWz1EsIjPzrVnibLMxP7z4kYJCQsDuPaJLXQS+ylQt\nVIXtkdl0v0tGzfNaSa77W5yqoTu3m3nvKqgDWYfEw2Y+Z9UchS/WzYIak8VY\nzrgmjx35ShvejYFsA9GpbUc6aXhxPvi+4Xrs05WuggK/f17lrKRVWA090kmt\nUlCjmGm6oFogfwVzI2/rr3Nye7YmG/rahzanv6aVHBN3bWRLdadODcTqrceW\nlqkEg6hGuGgp0jfOCu8X56y5q5CKW08wwVm6RPdtiHDSkJKMxhz9cWTWabS+\n2kx2Gc1mzzzO4EpKzfyAg01n856yHzbOoRcWIP2zokSToj5gvs/mXWYFaBKU\nXOSMl/GGyUJA4GjVlNfFYsBlq9rSS5YLn28BwNiycvAZHMkUKVPgr7oSrZ9Q\nuicsvMdn2qD06F6hF7mQrHn4WEbpfTrjz6/s2EqeyvS9ti4IC+vP1NJZIX6i\nPaGRVWGeAQ9+Cx3p9AvCqUZ1/AukYS0x0b4VVIu1ZUkNopUaeM4SOkS4bdBc\naMOenOhzAxnCCI//3bycyXPE/VnT3TkVPwW6IpzYiLb+SRTtxmfst1sTjvsn\nt6Rl\r\n=TNwL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./dist/shim.modern.js","require":"./dist/shim.cjs"}},"gitHead":"e5eb45a512c17742a55a1cf8daedccb6ff2e4b5a","scripts":{"lint":"run-s lint:*","test":"jest","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","lint:examples":"tsc --noEmit -p ./examples","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.cjs --no-pkg-main --format=cjs","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.13","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.17.3","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","jest":"27.0.6","vite":"2.4.1","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.1.4","eslint":"7.30.0","cpy-cli":"3.1.1","del-cli":"4.0.0","ts-jest":"27.0.3","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@types/jest":"26.0.23","@types/node":"14.17.5","microbundle":"0.13.3","npm-run-all":"4.1.5","eslint-plugin-vue":"7.12.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.28.2","@typescript-eslint/eslint-plugin":"4.28.2","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.1.0-beta.2_1626740517945_0.325768646592417","host":"s3://npm-registry-packages"}},"4.0.1":{"name":"vue-types","version":"4.0.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.0.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"023aff15ac890d7823aacdc23fc4ac8e6c37b290","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.0.1.tgz","fileCount":52,"integrity":"sha512-prSJ8K4hBmwdtG9cupF96wDKxtLZqjGpu6Q6R9yakcbRWz1Gf+c4oUMq7j6FwAf0TFkZ77FfU7wgdWLgyZ/9Bw==","signatures":[{"sig":"MEUCIQC84LBTx6dwJZ6VO+MVOsB7mr+rJMG9f7zaxgitw0h/cQIgdhBTPHE4p//2Ir9RMA363y6SuU1wpmC6a3oNhtRhlmU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":310709,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhALr4CRA9TVsSAnZWagAACnkP/1XsIHkbtb0K2e7hPT5Q\n7ZwEy7WRETgui//+mp1fUJR1DzfByYDQpFEgSrKoiAgLF1ZAmHHZMNtX60LR\nKtqQuzfKgXWFuEizSEC4C1Q7jwkaiTdhmnK/HBut80mDbr/4bm4n/I8/cHCA\nX+AOnLMT4Dq9Jk1f8srQQG5GJvTvXHsv3tdU4qGnkE0Qjeb0nJj/IYotY29R\nfomi/kGiou6alr+WKIG9Kj0i2CqeoSeArQjOuSabiqmMw8V/gS6jzlv9fWj2\n45DZDm6XHaimUt/DuhPfckQlLfXihOUuHP4+IjDSews0vrMRuGKzx0t9QUGk\nYsLEQPCu9zTj9YNDbXKgmhAwW8mNocrv1OShkgLIOVBnujoXxaPpolUUAQKI\nuSSScbjmFKBZgRa4LEWPt06p1b543TvZl8/XakMJNsKVWe4JhdUXop43hJyB\nArrpd81ni/vV9c7qNghUgaQ9rCsHZ7gTf8b5ox9nrtqu9Y38vYQXlgIymkVh\nYPZywrZXpa5ZlFx8blNuLH1lF2zy0fqs+cwHs5SvhIk4g9VKlkeKfy7s3Ztr\n6l23U8+b4ZXZnQJaH6vKjQlU8srCLD7otfcNngCsqkwTx9Vl5pYRVbZ0Cz31\n/VnGbEO3NaK3cvrxabtn2ilL5HNJj0ym0EuCFUK3rtx6LgF+a9ETzpF2Az6o\niKsW\r\n=SWhV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./dist/shim.modern.js","require":"./dist/shim.cjs"}},"gitHead":"1b972ad16b5313d1efb524dfec3f9537115ec857","scripts":{"lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"jest","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.cjs","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","lint:examples":"tsc --noEmit -p ./examples","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.cjs --no-pkg-main --format=cjs","prepublishOnly":"run-s lint lint:examples test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.13","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.17.3","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"6.0.0","jest":"27.0.6","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.1.4","eslint":"7.30.0","cpy-cli":"3.1.1","del-cli":"4.0.0","ts-jest":"27.0.3","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@types/jest":"26.0.24","@types/node":"14.17.5","microbundle":"0.13.3","npm-run-all":"4.1.5","browser-sync":"2.27.4","eslint-plugin-vue":"7.13.0","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.28.3","@typescript-eslint/eslint-plugin":"4.28.3","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.0.1_1627437816561_0.3693288221302269","host":"s3://npm-registry-packages"}},"4.1.0-beta.3":{"name":"vue-types","version":"4.1.0-beta.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.1.0-beta.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"c9dabf748a079d29317da0bc0f605737389efde2","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.1.0-beta.3.tgz","fileCount":55,"integrity":"sha512-IzU2NxeAKJ2KO9QRJE7Uw2GGN0SdlfbCNTjgOveH4v5qd0S1XXQOQOHX6qeWgxskuaEQ0+ISA4GuB0FwG3/4wQ==","signatures":[{"sig":"MEYCIQD/xzc9M3UNepeLtb0r8IQFqRWbibEnqyYYhC7rzsAdNgIhAI/M5eDFf01MRkKiT7SOeiufapZpjzh7BDIfjLwmC8dF","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":306514,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhDhphCRA9TVsSAnZWagAARcIP/jkmL8PxGVsulLH7I/Kb\nU2cbWA4K15Q8ixH5GOAsuMCQQhY1Ax6WgWTVMMX/VKuBhosMg2DIai1V9jAU\nIPJP0XlPrBU/DGdrwsqI/u2xTV6AnJGdw/vWQji2Njc2yeXjCCmU5RhHoM1w\nScyobwfGhbMZ3Jtxak2WfTZ7FgVZHN2I5UZnAvQ20zrXwL+UPB+n4haJYupF\nbfGcr2lqPpJxZePH/PboMtRTH/marRJ/Lb6etDQDdwW1sBIskw2kjtpmJuQw\nTVknN5uUq51sQmYDNFMt2O+6GogfYx70KSkuSy8/Z8y9SWV16q9yT5jCHe6f\nEmrA2hmXYUGjz0EFPESMdIWMahZJjWeOhL92dYiKkiE7TnuOKIRL6/6PhFXI\n9o2f/Rh04ub5wWQcFSEVtocy2BzclY5wTjzoEPh0dUnbib/TUl7Sq3aexxi+\nc37v98aAkQkgZ1JUJyY0azL9/gRtlgoR6kIiQuuaWvcundCMC1xZeDIoZw0d\n7PC/wOBRXgDVQzck3sj6jKjj5q93IsMKfvRZZ+qA6vUShxeqv5ALDocACXH2\nHjJhYC+FLK0FDOXRvFoQHCkARektmpJHzpFPMgPi81+pAmxHkrKT/olP17k+\ns56pU6p3w1oAGkP7tI8MprbB4dN9bL4pnerw5ZJw67c360MKOGST/cJ6TZ9d\nIrCv\r\n=JCGv\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"c4975a06a6a1219d040a25e339b42fcb84e428a3","scripts":{"copy":"cpy src/*.d.ts dist","lint":"run-s lint:*","test":"jest","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.12","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.16.1","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","jest":"27.0.6","vite":"2.4.1","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.1.5","eslint":"7.30.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.0.4","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@nuxt/types":"2.15.7","@types/jest":"26.0.24","@types/node":"14.17.5","microbundle":"0.13.3","npm-run-all":"4.1.5","eslint-plugin-vue":"7.15.0","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.28.5","@typescript-eslint/eslint-plugin":"4.28.5","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.1.0-beta.3_1628314209222_0.1196877641480194","host":"s3://npm-registry-packages"}},"4.0.2":{"name":"vue-types","version":"4.0.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.0.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"aef6ed1ef92f1347e2e5d3ee05553453b7c86722","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.0.2.tgz","fileCount":52,"integrity":"sha512-DimV9K0BPMYCs3iE52L8LzktydLU3DTYLNnWg11l3C5DFIhrQd1m6tP/37glyrFDFM48WdYm7rOOahYnLFdIhA==","signatures":[{"sig":"MEQCIC8SDFLkLzJskU6X2vM1rMWdMujObV5QwnAOH61PMAUhAiBsjL95Ja5PhWEuXIkHMw68ng4NGFrfmiLf0Wbh6wAD/Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":311878,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhD2pdCRA9TVsSAnZWagAAy6MP/jJUk8eXl4oUOBTKXh5s\nzGohMcAzL8IhxDAd4BvEGET2ljYWAT9yhJbQEzirG/sTpjtlr8vRkr1+vCdy\njM8IZQDOgXdurKGYOnpHtvns8XFuaRUEhYT1ajFJd3QH+zpE2ulyiue+BSQn\ncDvw/2gyO5wxCcfIwZaXiYLHSAnDW3nuxoHzogS2THjd+LhLHKCurqBkp82k\nBxE9bjljjt+QOvGUdFHw1mUMj8ctxpKFOOsOWqk7nw/KRXxSrKh+rHmzXnEr\nkh9YQqpYa7hvyC3KF9PxfXp77TFvAtQLJCaiBb9fJ4cyrF4rbve+5cQYV09J\np6ClfGCmbOcmsPxJqZ4P5khGCTHqGjB08Ik7eVBqmzD0y5yjWkXoRTp+Rzua\nqWr1V7RZEGuMmvOSiT/+ql67jVV3ibz2X8vxrdgNCtBsdhM9c2O5g3qoSWyP\nbB220tPyCbqirpDmL9qtnik+IcuisuwuiyIOgjyLYeQZ7sNXWl6SAN/W5ayH\nhvQ2VhVvsbrfiBv+7TzWG93ojWQ1sYgmsVqETC9ctxhAsIMK3e8OLIm37L/u\nUs6zLhns10VHYWzZ2mryrwg+Wt1RiJdqcek/08qpKT0V8GB9P+qCKyD/q5Dw\n1jOezCRx7KF0D6mDj14XLtMwNJI6SCMkk00BNpHOX3n1J7p8rqym/ZkrBEI4\ncrkz\r\n=5V7F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./dist/shim.modern.js","require":"./dist/shim.cjs"}},"gitHead":"1b9258ad1f4fa33eb2c51da702e72a7d9d51c544","scripts":{"lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"jest","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.cjs","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","lint:examples":"tsc --noEmit -p ./examples","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.cjs --no-pkg-main --format=cjs","prepublishOnly":"run-s lint lint:examples test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.14","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.17.4","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"6.0.0","jest":"27.0.6","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.1.5","eslint":"7.32.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.0.4","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@types/jest":"26.0.24","@types/node":"14.17.9","microbundle":"0.13.3","npm-run-all":"4.1.5","browser-sync":"2.27.5","eslint-plugin-vue":"7.15.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.29.0","@typescript-eslint/eslint-plugin":"4.29.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.0.2_1628400221400_0.4626683876224553","host":"s3://npm-registry-packages"}},"4.0.3":{"name":"vue-types","version":"4.0.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.0.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"0e0a3b88dd426b39bf161442c573b44ed34e2bb2","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.0.3.tgz","fileCount":52,"integrity":"sha512-Yn/TNUaYhkC9ezET5aYJuvxDzPTfEWPIvvRWVjgVAv9vuJG3VTLoTsgJvF4KmdyliBzMum6yoD6uUYVG6245yg==","signatures":[{"sig":"MEYCIQC25FPrkjHkVe2PFEfCqhJt0lYrFHfNhXFceweJ5ht0ywIhAICLJLu+kqI2zAi38TG7iIyzS+e8PUqNjtsHTGz8ku/x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":312121,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhEIypCRA9TVsSAnZWagAAmtQQAJy2EEaLvSFAEigFAnl0\nToFOYL0B+svyAsfL8LjbX7odZznOq09xMucPqQAC/2UPoVKGVgX/lmwmOp0/\neK3SMbLMSVQCBVviosJSfahv73jrNm9ZQ9ASBJ8UDcGsLnOsFdMdqmtjNDIZ\n0F3mcbUEq9KsiqfsKaQyd139/CGErtdoXMx0CXRAji8wHe7mo2Cj+XrcGNHL\nddrB9DG26ayXZx4tRCj7N9DC7QPUgiA4iAETCFyUzTbhZaDEe313Btowm3fn\n3iug/c1iMBCYfrXcIjsQdXw6fBgux+RUHfepEvFiJ91GNFLv0+xGlWtESWEl\noI2oaieurFiYzA0AkaLYCZkBMbrjXPdteY1WbpCsjaIELgK48eTcXvrT9c0w\ngibRtb1zEFShLrYsg6wI+JzAHPqot8iq71CBCKqaS2/RzyeqCzh1P/nAKMtc\nXSjCIX1OaCmGJkGgnOz+5WV0jp3MD3f0SwkERmXiM4VGQe2RdAnq/MxkVigJ\nreDN2o6Hsd+NalbqDVTVBIrZGTFlj+uz75PxpIWrZuRKfOVfv62JaCFvRF4J\ncbXxixKUEJUSmXQ1EfnluA+4i7fZJsqYK3RKGluQkE23YPiV9X/vIPT6Ir5k\n9o+7VIb/sFYwsfgZ9bZvSYtwM+fg4dnZs2hCFxkDBRcLAcw8caw5Y6WPgv0V\n1XCQ\r\n=XG9c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./dist/shim.modern.js","require":"./dist/shim.cjs"}},"gitHead":"a85e6ef93ba693726c0de32e564a739c39403f26","scripts":{"lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"jest","build":"run-s build:clean build:copy build:cjs build:shim:cjs build:ts build:umd","build:ts":"microbundle --external=vue --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"cross-env NODE_ENV=development node ./scripts/run-examples.cjs","build:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --external=vue --tsconfig=./tsconfig.build.json --format=umd","build:copy":"cpy src/*.d.ts dist","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:clean":"del dist","lint:examples":"tsc --noEmit -p ./examples","build:shim:cjs":"microbundle --external=vue --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o dist/shim.cjs --no-pkg-main --format=cjs","prepublishOnly":"run-s lint lint:examples test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.14","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.17.4","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"6.0.0","jest":"27.0.6","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.1.5","eslint":"7.32.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.0.4","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@types/jest":"26.0.24","@types/node":"14.17.9","microbundle":"0.13.3","npm-run-all":"4.1.5","browser-sync":"2.27.5","eslint-plugin-vue":"7.15.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.29.0","@typescript-eslint/eslint-plugin":"4.29.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.0.3_1628474537588_0.7211494003976104","host":"s3://npm-registry-packages"}},"4.1.0-rc.1":{"name":"vue-types","version":"4.1.0-rc.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.1.0-rc.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"51b063a4ed182b3b35271d67ad2bb62481ccd949","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.1.0-rc.1.tgz","fileCount":55,"integrity":"sha512-29MY1bNpee4cU9y6bfKc8bTMQ0x/MJWl6zEOlnOdBRckPCeuwrGDJxNSsjW/dEwWvZX56wjievLLOWLTkyJU1A==","signatures":[{"sig":"MEUCIQDBb/RrIrQwToXeMraUE2P2tf8CRRJrsWaqGQxCZzXuuQIgJu05oqgeSYx6q+ey2dlK01WmNMytQ96YStFMXgZzuK4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":307678,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhEJKyCRA9TVsSAnZWagAAdHUP/3+hhkrudYDR+ek51ifG\nDtWqfdDHHpMdut3EiS2mpYucz3XOXDCwO+Z+J+ZBOgFDqCQptGScVoNwx7US\nEjyVskGokHrNz3zTuAeSccoq1Zstly3v+JCLyNZ+wDwplI1lWw9Ev3ZSfVzU\nal1LmEaXUwPZdIc+crc6qyBlRkgWJ8/xeakpIG6it3gWo6KIvpq7YS2Ngkrj\nTqPgWzn03nJltLH/UQwlZlrujNSlnEU5UdYXV4iUJJw5y7N7RWTZnAW3LDuQ\nI/5NcwMaB7J20G542k+eYmCWD8wlOt4q9CVnabL/DLQ+PNsay64WahQnMI47\nU0ipXYToejKNIhk046dn9gWw+cnfAFIkG/PA2V1NHNfYJ6uqyyZ5p3LJgx1n\nPrpMgFoNnBgrnVB3EUfmXCO2dbQ7uXoOSWmXwsYYAVO9Rk/Yj9n7M/WcJx5Q\ntlUYyH0psKch/Rmj/i4P9BKsHDBa2KGhLjugxQR38qMfxQr/Y0FzpC8BL6xf\n7vItaqwEQTYxuQ+CjyAqVUfZV2dHnoOHWrhh6nAdahxRqcAPX8pBbYO03l/8\n8GdvK9o6g4+HNGccNPGxA28SRrx6JAZG/MY909UdeJkW1sl7uFmHtdaeqgEw\nF5dy1dHe/dtTlafP419KrOlZS+7sRmTrWcx1VSQzLKxCyjhtS3Z3EKGVsJhz\nds6e\r\n=IF0I\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"c6fb6bbd0bf81d29fb786b11b2304d86c707296d","scripts":{"copy":"cpy src/*.d.ts dist","lint":"run-s lint:*","test":"jest","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.14","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.17.4","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","jest":"27.0.6","vite":"2.4.4","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.1.5","eslint":"7.32.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.0.4","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@nuxt/types":"2.15.7","@types/jest":"26.0.24","@types/node":"14.17.9","microbundle":"0.13.3","npm-run-all":"4.1.5","eslint-plugin-vue":"7.15.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.29.0","@typescript-eslint/eslint-plugin":"4.29.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.1.0-rc.1_1628476082713_0.6199232039839235","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"vue-types","version":"4.1.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.1.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"8dcbbaccf9d5c3815449ac7cb8ae5864454cfff0","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.1.0.tgz","fileCount":55,"integrity":"sha512-oPAeKKx5vY5Q8c7lMQPQyrBIbmWQGael5XEHqO1f+Y3V/RUZNuISz7KxI4woGjh79Vy/gDDaPX9j9zKYpaaA2g==","signatures":[{"sig":"MEUCIB4z/e320rwtVIghgQsfj3dOR0k6rK7CiS1eC8gSgaC/AiEA3WT89GOpBqf2YGEGgURBVcmp+om6SA2FPq37qE/QwF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":307929,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNX+eCRA9TVsSAnZWagAA4pkP+gLt2sQGzvuOXKqXzUSg\nXJpWYs8TEgbLd830jYd4rBf0QsXJapLtiE1V6DTGn98O6XSZQUqCiiTESu0z\nOeovEByc0hZGGmHVo8cnWyoboseFbwVW1vE9CZ+Px3jCPgzcXErZj34htTr+\nq+Si6cvvN3xzT1wVk8TdVbEMwk3y+WDnyakqkp4EjUGhMM7LSzYXSIDNKtFx\n5wIs3iKM4YbxwI/EEgJtQBaFIh9nMPrdFx+kS5lewdAAAaUrdSvT35JEEGWk\nA1Wh4Mm/oB9x/I5snDrkXsGS73oGvN6i+tnzdhA3xQgIKQiDbxctXyfw4lz5\nQcJYwE2nnG72nOH5VKBWwVahibiYlxNmHq4h0QDFNah7ZAdbJ2dOKkI32wn5\ndIP3igH7SwK3TveBDqXjMyu7yrhA5TCmul28yVlsUFTWXUG/qY+/Skm/fc3d\ncwW9VcskiGWV5xob+Vbki9rfLZMNlV1mBF1GhCU3FIORadPY3IXprI2/gAfN\nEQpmRadL+y61ep/i4vVwej/jzdgGvee/7JSmfegomoRnaNczkybmTxe85ELV\neWjhFYXB/erkDYliXXuo963y+KTJtj6gX4D+OVmdORok+Ghla+D/ld3QHZBP\nUOLbsh4F0DL1/8Gm6GL419Vbzla+m60NEdw76WiSgsJ/xHkLmHP/6LwmUFh3\nCtYr\r\n=hjtz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"20f2869df34939d9290ad2d121ef7828ac854766","scripts":{"copy":"cpy src/*.d.ts dist","lint":"run-s lint:*","test":"jest","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.15","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.17.6","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"6.0.0","jest":"27.0.6","vite":"2.4.4","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.2.2","eslint":"7.32.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.0.4","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@nuxt/types":"2.15.8","@types/jest":"26.0.24","@types/node":"14.17.9","microbundle":"0.13.3","npm-run-all":"4.1.5","eslint-plugin-vue":"7.16.0","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.29.1","@typescript-eslint/eslint-plugin":"4.29.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.1.0_1630896030444_0.4734509835794334","host":"s3://npm-registry-packages"}},"4.1.1-rc.0":{"name":"vue-types","version":"4.1.1-rc.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.1.1-rc.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"5217c52a48705831b3d638ad0d7422385c2be943","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.1.1-rc.0.tgz","fileCount":55,"integrity":"sha512-6SyIjl307sdUZ33CK+KvxNLalrg3V/en+kzvypL2Dw2MGMEDpbMTwXo6LafJxkebIkBIR+pI+NF7VFmQzpITbQ==","signatures":[{"sig":"MEQCIHqjcFl7d9rz3p+TqXS/piBw5HuUykUjFBYWwC4wi92fAiA1k3zZvv4YJurAINRtccD7OzD2ar/+VDVH3GDdSrZoZA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":308290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOId/CRA9TVsSAnZWagAA+dAP/1rC7LjteDqu/3vKa07p\nCuodfulL6EYs7BGFlXcWkLxcTgXQsP8Pl+OCAFzk7sdDEbYNfoWtBu2ohqEg\njiuFEJeU6LXYuV1DKqlaNpM2Y/EMoiGUynYoT4zxoU44HM062bWn+JlM9GLJ\nGrZrYmITWR+qx6K9iS2bNr/q2zcjgjbnW4EAm9a8gu0xF5peyrtt3h9kKU4r\nyeTWCKxSF/7NSL6gOmBFSdHze0bvhqlT2X37zm19UCaZ3vdaw7maOgWf+v+Q\n3iE7Y0CoT54l1EWmDI3DYlv1TPRBwtgnf7ACi3YMrilv3bzUxK2roqurk/le\nRsRek1G4RVQXynK7Ec9XAg90C4Uo616dp1sslSeqxJZnKDIml4Bxb0qT/Bna\nDc3nbXLbjk23oudNLWtHX2U0yISILmTMAaWlO1QEjHmS5aLtOfbcIl0SEk2w\n4bs3bJK2qn3pT+OXTKXLfDEI1oQMXxD5CQjeIxFDvJbXK7vSCTLeGqEINhPy\nnOGF5hS4zmtxLfYQnyquylZoxKgISHsVIER4fz2KZuG18VwJ6lyfTsQ410kS\nYK/G5Caf+5Ym9EI67T8sYE0QxteaJBnzrsOJTBUXhhugsAWgyNZSeKwxFB9J\nYpOui2YDiWuBXHUJ6djFDUHsUWVABRwSerXEmZqCpf97eY+mdNW5Po0l6/Ot\n4Q3+\r\n=2Flw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"1fa1191eeb416515378cd1b2771de1abbd0f852a","scripts":{"copy":"cpy src/*.d.ts dist","lint":"run-s lint:*","test":"jest","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.15","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.17.6","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","jest":"27.0.6","vite":"2.4.4","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.2.2","eslint":"7.32.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.0.4","prettier":"2.3.2","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.3.5","@nuxt/types":"2.15.8","@types/jest":"26.0.24","@types/node":"14.17.9","microbundle":"0.13.3","npm-run-all":"4.1.5","eslint-plugin-vue":"7.16.0","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"3.4.0","@typescript-eslint/parser":"4.29.1","@typescript-eslint/eslint-plugin":"4.29.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.1.1-rc.0_1631094655485_0.39888133859841046","host":"s3://npm-registry-packages"}},"4.1.1-rc.1":{"name":"vue-types","version":"4.1.1-rc.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.1.1-rc.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"b5b486516fdc2fac208ce6e8f3e50fd2d4e4f135","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.1.1-rc.1.tgz","fileCount":55,"integrity":"sha512-ctXPKQIz4Rrl8hA6Hp3Av6lMvfc7fo8wkzzRFLtmcOQd8lQjcObUYSZeXCaSAVct5tKpO/cGZTwZktbycdgmiw==","signatures":[{"sig":"MEYCIQDBmn3u37+h+LV32K+qdb0nBL2ekbislVtDrVq5Sn4psQIhAP18wJXOBcXdqGKxzr386CCcRdkZWWG91CcXOwyLmkva","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":308900},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"42329dfdb192fe764928d2aee46b99ad4405f536","scripts":{"copy":"cpy src/*.d.ts dist","lint":"run-s lint:*","test":"jest","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.15","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.18.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","jest":"27.2.4","vite":"2.6.3","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.2.19","eslint":"7.32.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.0.5","prettier":"2.4.1","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.4.3","@nuxt/types":"2.15.8","@types/jest":"27.0.2","@types/node":"14.17.21","microbundle":"0.14.0","npm-run-all":"4.1.5","eslint-plugin-vue":"7.19.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"4.0.0","@typescript-eslint/parser":"4.33.0","@typescript-eslint/eslint-plugin":"4.33.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.1.1-rc.1_1633570864942_0.7240025242760286","host":"s3://npm-registry-packages"}},"4.1.1":{"name":"vue-types","version":"4.1.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.1.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"7d7a4e4a01249a51b6da3faa301248c2ea5f5b97","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.1.1.tgz","fileCount":55,"integrity":"sha512-Jq2GZ/w6rExJbLA/h7nHBFLciu+YNekgox0DB64wN1snZ4IIJMq+qnqp1/vE4fc7vEjZcP5KGhLzkkSjIHLRzw==","signatures":[{"sig":"MEUCIBO2UoQ2o1gf+/rpLMEmgr/pj/ov0QvSxp8BbH2Z0oP8AiEApWW5naoHL4bsWwbMOMbo8evag6Ep3fICYuLMxvAgY9Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":309266,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh3Ag5CRA9TVsSAnZWagAAyu0P/R8xEwE4JOnRMMDbvIr5\nfoOIzWF1EUlMlgHnkImguBZN/yehTULSQpbpc3g+iobZi4IGcoTAjExqfNYY\nsSpgBvS8tNuZNbuS+ESDxs6YK9D5ol9wRWZjqV9lzi+UDOkdOkKi/skk41g5\nDN9OTlh29l1RYEon0GcicuSLeZriFiUqJPmbL+1KvEeb52h5C8RGQueI/aCu\nVdI+ZMMi7CywFySdQ10YftZeZwwyUKVHoYqL2dxfsVXNqoQCcZYAw8b3YOKu\nJIZXGXnHYP4Ym154f9Nlbe+3oZE1rVNno1vOIUkgDHXfn3qirn+S+WLDQ5YQ\naJXNXPZ0Zp0izqhlCaka+3nZD0R63NpDDkjWIEKSeqN5/MYaq8cQT2jXzJop\n2ZXdI99ZbnqmT8HTQi0hRGwktxHHBhmp9q4xYeoXIZpMsS7iwCzcqV4i0+DY\nEO9YQS4st2k0FH88wIZIGUoqlH7GXHfgWRDC+53gwQXs6HclHVVhAKZ0GvHo\nr1c5Hs78NFhcrd1hsQKDUPNJn/t4dH7tDusFEmOopGUvutckSFfBV9nTmxgZ\n+aO0iQWQmxHZZVayqpPfIE2JGGumi+y6wPnOB6xB3BL6csAFdF8V5Ypa1Vn6\nkSZ/1sxSjpoyRNTLuBcQ8PvutXE6uQx+pjK6Gn7kcuJ1HXeYoF7zFzeM5LGy\n8Vzv\r\n=NoSG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"df463cf0ae52a428e3028fa0f0a793779feee64b","scripts":{"copy":"cpy src/*.d.ts dist","lint":"run-s lint:*","test":"jest","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"6.14.15","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"14.18.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"6.0.0","jest":"27.2.5","vite":"2.6.7","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.2.20","eslint":"8.0.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.0.5","prettier":"2.4.1","vuepress":"1.8.2","cross-env":"7.0.3","typescript":"4.4.4","@nuxt/types":"2.15.8","@types/jest":"27.0.2","@types/node":"14.17.26","microbundle":"0.14.0","npm-run-all":"4.1.5","eslint-plugin-vue":"7.19.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"4.0.0","@typescript-eslint/parser":"5.0.0","@typescript-eslint/eslint-plugin":"5.0.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.14.5","@babel/plugin-proposal-nullish-coalescing-operator":"7.14.5"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.1.1_1634179966854_0.650876041790748","host":"s3://npm-registry-packages"}},"4.2.0-rc.1":{"name":"vue-types","version":"4.2.0-rc.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.2.0-rc.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"27008769ddc669bfa006d93aa78ee321e2ed65e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.2.0-rc.1.tgz","fileCount":55,"integrity":"sha512-6ufbn9dbqHf2p12rX0JnD2E2VEItnmKwrTZTl9IdcPu8R4BG3mSKb7//EjS0UCHihdz9qJbCXmmGHkHm+aDeRg==","signatures":[{"sig":"MEUCIQCbUDWaunIwfjyPCASb+1lBdZbITqHhC+EaxNJJTFKWmAIgNXOaTi13usmN9fqNQDiQ8hM7VWp2Y7FDIU0nc7xO+4E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":312424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiH0E4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqD6Q//dT1jPVHB5QMpX7RytHs86XSuejnAc/lqi84RX0aPpiDaWduv\r\najHhc8bsXqdcSncAMKsSFws/OzfarzLDn/oDenBpaGIAK0s0Y2tJluc+NYuk\r\nA4ZT4E9GM777Id1zRA4bokTcG0dzWjtf31Y3DO2NbCOhzwe01/yX7LLlGutJ\r\nSMmP6hJOvyw2sj6YoJitzSpfrquslg4pD/oPfF8XBxeN8FO/hS9IiKg7X0au\r\nERN3gsRj20o2CxmE+AA1ik14U1i3tjGAhXkbx8VRbpmPSQpttsOWODTqL2kU\r\npIepqkQFh1F8XzP6zZjAmpwRnHVZTFfNiOfWkEo1BWbX6hTYqk3vwMmye5+x\r\nXsBZuwWbzUPoinrhX/35fE/s5KScuwjqExcsoUyrHXIjrlIg1zWeRPzsVy/H\r\nOdasnvJxcLYeOF4Hxv9NNnlgcoRktRy+nWgE9f7jAFqn0H3KjLIWA2Wjtkvm\r\njGCX6DKvYwbheed/+jio5uoWgCrsrs2adaxr/ImFn80xIBxfAFHYnPMWuJ9/\r\nNL4N6K8ZyRpM/OJhfbMZFnyHQigaSkK666yERkWjBWFtrZIMD6FAxSQ5ahB/\r\nLztmBbBmzKOVJ8WF9tFCGjU8thuB6CzwazqLFh85EvwDaak+NH5c8ZPPR163\r\nj3VB54icdgST24F3hEckEN5zXRPOlPxGtFY=\r\n=TQkM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"28e1d3f2afd41ceec55b3dd9367a2518eaef4a76","scripts":{"copy":"cpy src/*.d.ts dist","lint":"run-s lint:*","test":"jest","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"8.3.1","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"16.14.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"del":"6.0.0","jest":"27.4.7","vite":"2.7.13","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.2.28","eslint":"8.7.0","cpy-cli":"3.1.1","del-cli":"4.0.1","ts-jest":"27.1.3","prettier":"2.5.1","vuepress":"1.9.7","cross-env":"7.0.3","typescript":"4.5.5","@nuxt/types":"2.15.8","@types/jest":"27.4.0","@types/node":"16.11.21","microbundle":"0.14.2","npm-run-all":"4.1.5","eslint-plugin-vue":"8.3.0","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.3.0","eslint-plugin-prettier":"4.0.0","@typescript-eslint/parser":"5.10.0","@typescript-eslint/eslint-plugin":"5.10.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.2.0-rc.1_1646215480456_0.3975929437702246","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"vue-types","version":"4.2.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.2.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"db054e242a099f006c84d62fd4ab831767accf18","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.2.0.tgz","fileCount":57,"integrity":"sha512-iMllg63ZQ61DP7C2ZR1Ez7D6hqcP5/pcNP9SgXg6Nmrt82r2Mx06+xEw7GRrrysR6Sfoh3w+TLLflMTk6I/D0A==","signatures":[{"sig":"MEQCIB/iGj2DZ1g4Q6i6pKDNcST7lAHUURFEYO/B6cgOMhknAiAn8KZ14FztoIKy1r4Ysn5ekxAteu3c4CZFmQs9yxiKDA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":313213,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi214pACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpnLw/+JeI2Wgjl4Wn+PBgK6oa+D4zqWcGX49xt0MjrofmH7TldNxXt\r\nM1syEWBkU9/TC/OqtJxmvecYNRHf2a4YQflcFlFhdtoIINYoejI/H07MWf+o\r\nyaG19gxLDSGkTR12m/SWhkg+tAOABKgLWW8eD76S2dRiCS/bvxk+p7wzalVh\r\nFNk6/TgQAeJGmRuxFybA8/KeNoQrHLEXRlocZEeIJO3asU/lSR13SHxG+KKh\r\nh2CKJJQa9VaiuIEfeIWgg7MW7GPi3AOY3EOglg+cLF1Ldfag0UgeSz9EF4HY\r\ncezRZwBPuwd+CpxEqgGEW5pDBNuivnIrdcVPsluUcsV3oRD3Hd6c7OOVFNdH\r\n/LYWgj9aAgGaRNJCjFJx7XAoanvKN+2Pjd/wiJDAoqXznA9TGfh08XJJxrIV\r\nlkr3OC4M2xoMd4PnmX6+owjNC85+GSaG45iYSvrxeafBVwZR18lMHhTE5yQ6\r\nJchn252MM8GsZagc+laa3JOJRzkQfVprohMpvXEGKN5VnJrmyznqWbOtAruA\r\nmtb8oxaawaMrr2h0fMJgknHgvyQPBoUzBBUbKeKuA4Wj3AJiKdJBOANMt3ZR\r\niqVYYZRyAsN7AojgVo/qZuGQZEP1B9nhN98A6UHwcQLbHS995FU6pSPCFaEK\r\nQKyrDs2irOtX+pZ74qRS+YA2Ps9cxNbZAMk=\r\n=1VxO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"ed96f724a2c678a0adacad0f64967ccfa96754ba","scripts":{"copy":"cpy src/*.d.ts dist","lint":"run-s lint:*","test":"vitest run","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","docs:dev":"vuepress dev docs","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","docs:build":"cross-env NODE_ENV=production vuepress build docs","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"8.11.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"16.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"7.11.3","del":"6.0.0","vite":"2.9.14","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.2.37","eslint":"8.14.0","vitest":"0.10.5","cpy-cli":"4.1.0","del-cli":"5.0.0","prettier":"2.6.2","vuepress":"1.9.7","cross-env":"7.0.3","happy-dom":"6.0.4","typescript":"4.6.4","@nuxt/types":"2.15.8","@types/node":"16.11.45","microbundle":"0.15.0","npm-run-all":"4.1.5","eslint-plugin-vue":"8.7.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.0.0","@typescript-eslint/parser":"5.21.0","@typescript-eslint/eslint-plugin":"5.21.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.2.0_1658543656761_0.6138170423863882","host":"s3://npm-registry-packages"}},"4.2.1":{"name":"vue-types","version":"4.2.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@4.2.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"f8f7e5fb42d4a6acda6d92c9736b510e5534c753","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-4.2.1.tgz","fileCount":57,"integrity":"sha512-DNQZmJuOvovLUIp0BENRkdnZHbI0V4e2mNvjAZOAXKD56YGvRchtUYOXA/XqTxdv7Ng5SJLZqRKRpAhm5NLaPQ==","signatures":[{"sig":"MEQCIGsOvLBKSFfCwfF7HV6cLbQbapqMeOWUH5yS2Mokqho1AiBo5pEpYNftAQL6qIqb2blrRJDKQy0bU0oUj+6xHbPw7Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":323803,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi52zgACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoTSw/+MlPNDXx5kyuYAg2O/N5cIiGFPntjiHWByo4ticFl09VUIwDu\r\nqqLfnQyhjpHqoYFSxoWgpu5WVv/HJZWI4ll6TyydY+lK5ImZdR7/lMeL7ket\r\nvHchix0wR4S3fUdwnovDyv+jQpdfOdJ6CaNR2FrDYO71uSu8+7LtDVDgaP3d\r\nDBvVUwLmDRs/XiwqCwhZ2JaIuY8hMdpfbm9qUDN69jCavexx5jATI6HZpLm+\r\naxIzgcEHWOnWQdWMa4BGdYGnZQrDv0mXewNjzpXipnazxLOjYseDNlP2/w/+\r\nblQI4uM+O5SGm5oQroLgTiKMU+0OV4yaMUnjOPG3VTKTBhsHlOSWwEaT7F3H\r\nqH9KUij0nJtORBZXkWO9wJgIg5FL9OksEtxF3CswsLOQdb40EwuP14LrNlGJ\r\nD78TqJlTU2iBuwJ6IMe8KarkNClpRB1u249GtqWgS3XLGQpJp7EE/CA0el8U\r\nXP07tHPL5+IBFpNtKk+nIbPnZ9hua0qexZFTShusitGjwabE99TILf7YPKv8\r\nsCTF1qYLukJeI0McljXVZY14FSNWYp/4gDeldC13VEHw2j+XbIlVgujMj/v6\r\nAXtaHt1BCzfoLxrK8OJvJIohjZ8YqIRQaxPtJxC5VMWXlQIZ/C8ZHpgW8nRx\r\nUH+2/rn0gtfwyUJz5/UCpVZsGyQTvmy82f8=\r\n=2N3J\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"f8448fca0bf0cb84d5b28dad4da04a4dd3a1666a","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"run-s lint:*","test":"vitest run","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"8.11.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"16.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"c8":"7.11.3","del":"6.0.0","vite":"2.9.14","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.2.37","eslint":"8.14.0","vitest":"0.10.5","cpy-cli":"4.1.0","del-cli":"5.0.0","prettier":"2.6.2","cross-env":"7.0.3","happy-dom":"6.0.4","typescript":"4.6.4","@nuxt/types":"2.15.8","@types/node":"16.11.47","microbundle":"0.15.0","npm-run-all":"4.1.5","eslint-plugin-vue":"8.7.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.0.0","@typescript-eslint/parser":"5.21.0","@typescript-eslint/eslint-plugin":"5.21.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_4.2.1_1659333856464_0.6762558337280973","host":"s3://npm-registry-packages"}},"5.0.0-beta.1":{"name":"vue-types","version":"5.0.0-beta.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.0.0-beta.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"3f613d75584b9db2a70fd0b5ae6b02a452a0bc0d","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.0.0-beta.1.tgz","fileCount":40,"integrity":"sha512-k+8kop9PvZ5MC9190LpifH8QHZt+bs3wmVsCTgQXTh2HsJTlS5ze4wrDalstRP5+vCi2I6sn8bgOAyw+NSgoFg==","signatures":[{"sig":"MEUCIQDaf9V4o8HJuqDLFl9Pwsf4BGFChxMkS40XV+lsJgnUQgIgWiBIfmdT0lXVu9+LAAAsE5LGpeCclMXAf3/ai0SLPio=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":289173,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi8KMMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp3nRAAg70+e6bv/RzmUPGB3/LSO10d0XJxfiVuZA3Nr9nQIcvzRsPw\r\nj9DtDwuwbdQzXISJ7DMMuFUVHUTsPcK6bQKX0rtZ1xx3BR6fsiy4CG5OasI5\r\nMznp5ZAJxfzsPx9n/h/Thhw8z0JWKv5VdNK43QFLOdeaftYAee2y7kroOh/I\r\nB9gr4x4eMreozLzpE/HF8MI/JT4mMuHOe4VeQq5PIfyUycla+OAkTwwOjRu2\r\niq4NWdI4y040Xq6gQhfEiKrtmAG2/+S27dlIB301OxRb0k2uWB8BPYRvyGwx\r\nzk6KDP0zr0mfR8oYJ0YvPJbP4rjwdTCbRQGQ9iYuxRHInb4Stf5RHcabZycB\r\nlN7ApxqrJgxXuPXWqkx9NLyUcXC05oPXYA4L3fpH/QoFjWcZZokeKecU3twT\r\nFQ4+H0LKvqBpsxm9d6+HYx1XvzBzAV8h2Q2ds0H7/tRuJk5Ytlog7Dw0iU+o\r\nRYdNgVQTlHAJiFQLEzF7DtMbP8Ec+32hjVGgSVSRtJhlBBnPWyZ6d3ijhifK\r\n1vEQq6WV4la19O/QdWk7Vt0karnR4jqRj51dlfab1FwWSph7TGIs7qCbc7Hf\r\nMc6kByLn+xMuwfrwsapgV9DdT+/XHT602CwhOcMXzSWZhee9OdamOl9tnn+5\r\n8GO6ypGLUSPMpiMcD0Bwd2OiM0XgVpb/u+k=\r\n=yb6E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=12.16.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./nuxt":"./nuxt/module.js","./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"27280fc0d231ec20fea27020eb7d758bd7aea5a0","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"run-s lint:*","test":"vitest run","build":"run-s 'clean:*' copy 'build:**'","lint:ts":"tsc --noEmit -p ./examples","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","examples":"vite examples -c examples/vite.config.js","lint:src":"eslint '{examples,src,__tests__,.}/**/*.{ts,js,cjs}'","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint lint:ts test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"8.11.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"16.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"c8":"7.11.3","del":"6.0.0","vite":"2.9.14","vue2":"npm:vue@2.6.14","vue3":"npm:vue@3.2.37","eslint":"8.14.0","vitest":"0.10.5","cpy-cli":"4.1.0","del-cli":"5.0.0","prettier":"2.6.2","cross-env":"7.0.3","happy-dom":"6.0.4","typescript":"4.6.4","@nuxt/types":"2.15.8","@types/node":"16.11.47","microbundle":"0.15.0","npm-run-all":"4.1.5","eslint-plugin-vue":"8.7.1","eslint-plugin-node":"11.1.0","eslint-config-prettier":"8.5.0","eslint-plugin-prettier":"4.0.0","@typescript-eslint/parser":"5.21.0","@typescript-eslint/eslint-plugin":"5.21.0","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.0.0-beta.1_1659937548061_0.18898111081531188","host":"s3://npm-registry-packages"}},"5.0.0-beta.2":{"name":"vue-types","version":"5.0.0-beta.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.0.0-beta.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"0920aae4607ec0f48b4f5533dd02d1bfd2a79362","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.0.0-beta.2.tgz","fileCount":36,"integrity":"sha512-eRg3KbHCHGdJ1Y6js3Ql5Bm6I/8Z7uHqFOd26waw5ghOqGWMrTAHv3QTPdnkqePHeRn4+XVCtWwu5O6UiSGtkA==","signatures":[{"sig":"MEQCIFVTy6b9dbpqOybByNow6jz+Gn/oNzUguG/wf+X/XyCbAiAM2G0pN7sP9OPH/55J5FrnVMff+EMah2gcJeS2ddX9aQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":283005,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfGr3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoImQ//Qoz97uBvkUNzCQJJGShHkMgdyDyRray/b4tthlelXLCNJ7SB\r\n1Djkxs4PR8BAstS52XKPWYw1NlDft1fY5Y0kPz1jluCrxTcphexgf0TSNXsU\r\n43qskVR0OJA1sMr8s5Licr+RXaOX7N26SCwOR9C1MQm3wCLhsLqe2YIJHiw9\r\n2jquUguT1xrQhflGDrMem4UxpQi1hxa2OoG8iTKETdpvF24KKZaws73yd47b\r\n6ybLbvotJTZmDaYam4/cQPAvdLeqG+YJqmpWM47sU0Ncw2aQZQU2IhlQ5nfv\r\naQr43SXkDuJlxcBcfhs8pYd3rxj6x6bgVWlHzR7+xDGKU4uuutHaUk7JhWzX\r\nWcpBkQVlDGujD6v8m2GiIZKRbZCGss34Aggf6s/2fTFZ3viSzhbP7cUcERRJ\r\ndxzepExc1M1at9/4a5bLoqwJDlw+qKMfdJnTpvPbMZEByv4/BnH5ycf8V9uj\r\nxocGthSccKAQ22dK542t7DSObfWPMu6C25EJkd/MoDDTSo6PsWzF4ukFEhJc\r\ny9nU+slSDlgZ4BKwvF3A5dTIdiE8g2EzLfI7ypT02GeQkwmki7doX3iBw91l\r\nKHFKe4HNa8ondrnd3GMr1g1WjYY/fD9Oi3HTJXQdZqRWjRHC1e/axlAWLAhN\r\nRyzVm+ULYUUd+qs/umigwWgX0O87Aw1u0Sk=\r\n=czxA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"9cb9db7ec2d57502f8b7db5694c4a5bfc4c17926","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run","build":"run-s 'clean:*' copy 'build:**'","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"8.11.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"16.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.1.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"4.6.4","@types/node":"16.11.68","microbundle":"0.15.1","npm-run-all":"4.1.5","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.0.0-beta.2_1669098231336_0.12890589307438138","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"vue-types","version":"5.0.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.0.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"2c75082f72aecdb08e16c1327803960dfb12cd26","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.0.0.tgz","fileCount":36,"integrity":"sha512-giq56UtZRugrJXAO71croWBrYlhBrtvRZPqBqcng3yq4D4NwmwZdTeJu/x76aoUAAghJ24CvALoVt1sc23IaFw==","signatures":[{"sig":"MEUCIQDj8fwSVb+WlwOzPOxRNiE5G7S4SaLoMVB4R1qYJ0HBUAIgY7wA+aEFg++Kl2zajnBY4fWLBZxDp7WNXBEO+mvDqu4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":282998,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfIt/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoZCQ/7BDNXU8XRJh9m2XG+h+Sb3LRbITQXc3iyrrXE2LtrjQWc5aGW\r\nKr3q7rJLbD+pJHTJtM1qTiri2GU0p3KPEeQEHDxAL92jjFC2GDzUTQeIwzRR\r\nL2bQprEOZY6cthIVKqu/iaUCcJvZW9o3bp56p8saOo/QbHtPdemJ+kJETnp4\r\n8a69VOr/iq0CAeXOKaSegN/bSaGIiApiQRMimUdiS0i1n3JkNznvthNnnnHc\r\ncD53PpkGZ+BnWhQbEkK5euflWP/6xB/Iymgi3SZeB02Oy6e0ebzvZTc68Lo+\r\nKLMiwHV0kMmsgm9ITbTARY4dGeJntyK2nGMoYmBLJ5iU4rSx2+azLX8k+l7w\r\nBUkJ8axT437oa61ITU5PIN1G5yWA7qQAFPTBfz+euUoXkP/N98vtKODowE87\r\n95xyuY4N1mB8d3qRs0m29CO4vctG6hdwoyheLtJvLA1E3/NASeQdJ8vjWmyk\r\n5RwBj7Z4c5D+dDpL7BhBxUatetJuFxW6yKgG+2bT1Nfz5MRv5maUOeAZAON5\r\nqF4B1UmgW9AU2ld7QjiIsI+lYs3P2Fhy7kcb2uYXhbnR0TXyz8RTk5T+4KQe\r\nzokI7sw9uYZpayc67Anh3/Fl8zXAp9d/oTyVtTxjFneTSeKsP6t/8sU1pdXN\r\n2vsr8NxdUYnC9+8AX/Z5v3jFFk6HbzlIZw4=\r\n=ma9Z\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"b2254dc65f006fe0664d578990cf62d6551d0761","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run","build":"run-s 'clean:*' copy 'build:**'","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"8.11.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"16.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.1.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"4.6.4","@types/node":"16.11.68","microbundle":"0.15.1","npm-run-all":"4.1.5","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.0.0_1669106558801_0.3084340112714421","host":"s3://npm-registry-packages"}},"5.0.1":{"name":"vue-types","version":"5.0.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.0.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"296d9939b3743f00de0ff7bb78fffb6c44ca3d6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.0.1.tgz","fileCount":36,"integrity":"sha512-pHahh/Ht+mxAhSGXfFe0WQidZukYUoCevPoQtePpONrmNP+OjX3/ps/XjYLgw/Zbv4rks242eiVJcjE3EELsyw==","signatures":[{"sig":"MEUCIQCHY+N8v3Rc7SEG2JnNp8jQxrW4cMBf9aiG5UD+Wp7TYwIgCQMw93MWArhOaVh+gsadoe9tLthcyuiU9iA8MVCD9Gs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":289531,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfb/DACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmplmg/+Jdbuq40bREx4FE8RG1flB2LkzN7skCS1NTm6wG3/ILAoSUaU\r\nGUMdzDPvdlWR4vuR6UKUEFoMJMOYGQjNzn/FrjUGqbN0Y9x/Tdzk4w315tqd\r\nIMrgOLwYRyQg2IXlmEHR5LkQ33QDA1XD7uHmK/wbQhJ+joZQfU8/0a6RSrBT\r\nWSj04ICUgUf/GA8Hjpdzq7k3lnmmUcJzF2l7JziIGpPinwWIv2CtyXgBEN03\r\nW2BrQTl5WgPpaP8es3q+H7bTQ2CBAAr8VtDC6OoJYoMwAU4+lq3lgSAuJ0gM\r\nyKaUZJ1WZmFh8SKIdRgFcMbAIbFDTzHkq7hr66Zcg8Q9QW2DE0weJSk7UpjS\r\n2B6j4mMXQtGIPN0zkXCt6blhkszaxO9HRFJJmbCt10f09J8LOHHU2blIa94I\r\n6Tvx0qg5jvgJvc59H6XfM4QagHGZMuA8GTSnD3lDgcv39D2h4NsyiK5+jRX2\r\nlH1wICIJCij/eirDsQF4WjjT/uQXF2XDU91KPDIkRj5Bs3soiC5sy5R8YpUx\r\nMF4Hj+1B+7jxIlU451ZYCL9LKAABKEjfne0ZscKBUePENNTIIxzCIDNDnvMY\r\nYgkZHJ8ELt2sCceENp0wGDECczKEvQUS+deZKgMqSAboDJj9i92ry0gOMA1d\r\nA40+nVY/vyju7oJ1DcIN6XEzp14dW0w5sNc=\r\n=19vp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"0ca3503b99e8a6b2a43d9c6df3b9d9f9badcecda","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"run-s 'clean:*' copy 'build:**'","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"8.11.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"16.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.1.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"4.6.4","@types/node":"16.11.68","microbundle":"0.15.1","npm-run-all":"4.1.5","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.0.1_1669185474845_0.48516996093472287","host":"s3://npm-registry-packages"}},"5.0.2":{"name":"vue-types","version":"5.0.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.0.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"d04966bd416510db878f23030014f424a2e6378e","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.0.2.tgz","fileCount":36,"integrity":"sha512-+/5hnQ65XOYqPs+tEUF8GGTJX95UFVH0wPQo71IJJYh5TKMfik2tGKTLkZ42JqAczANA9hGu5FrZmPgxn20nnA==","signatures":[{"sig":"MEUCIHx2YSNvb4DaSWwTA56Wa+2bdqNJsbDveKFHAK9Kg+eFAiEAtmZGSrD5gRcRX9BYGoB9oZo+Lrhz0Gp3ErHmHvYnTkQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":290587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjo8qTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr8eA/5AdQA06sEkVZlzcy/XRMjLvvZc/fv4YvCBj0vFcWb15L1dXt+\r\n3GjjbX3O1U8Z7MQ8Kjokcfw+MMNnbsmmuJ+5HmSYL1O6nss+RJEgD38b7FPu\r\nyC/fZ4nA6xgekfBzhFFLF0Kmk5ZAIYr5irJsN9XExqqHTx1udxNWmJv97f84\r\nOYfwfJwho9rpcGvq3eUPBzExcIiCuVIoFWmgEjtit9nL7ie7DPCUzYReXMnm\r\nSJmSZ1FHvhezPwPi8qxwp59eMM8YhN45k9Fu5d5g6WLGbQIFlgD3mmidcaeQ\r\n5o49/Vz7PzmYoHD0t4JWKavr0JEFEnJ9Ia6de++qHf/UJkXOWBTqGp4btO7l\r\nGbwXsnHA4L0ubWoTjVSHwneg9jFR35zjPlISv4U+Rn724TC2EdvGYAW+81P/\r\nJLZZm1yuUmZAUWTcYPcvC1ZrljC6Dx6JrDOMkjuIBcFZYs2cK/BxYitLPPzG\r\neS6HGbQgH3vtJPAQXF2jUPErBEsLd3IdIOreiN4YOeqFAtObamvA0vAV15Sq\r\nin/5raJNIG5OM4duiqvj2tLZpdASnqdEJqgu7YT5J1c2h0YlI+V/WbZ3ofcu\r\nrTfFFUu91PVCxF1K0MNAXLtU30HrM3jiIqpITmhEA3QHyyWIne/eQ4oKyyGA\r\nZJP3hph+ZcRDg78Oplu+0ppdCGSDsHf9X+k=\r\n=cSAR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"3035a93e6ad5e003463f4abf101980eb80958106","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"run-s 'clean:*' copy 'build:**'","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"8.11.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"16.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.1.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"4.6.4","@types/node":"16.11.68","microbundle":"0.15.1","npm-run-all":"4.1.5","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.16.7","@babel/plugin-proposal-nullish-coalescing-operator":"7.16.7"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.0.2_1671678611295_0.8268858382831754","host":"s3://npm-registry-packages"}},"5.0.3-next.0":{"name":"vue-types","version":"5.0.3-next.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.0.3-next.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"5a4ad24a6a8359ac70deff3115a4a6a0d0dd9520","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.0.3-next.0.tgz","fileCount":36,"integrity":"sha512-lzxckbAYP3AgWnBTaTJ4AwcJARlXwLrH57autbUickdHzr41WtJ6yDSw9P5o5PAMoWo+CeyCgCOcdjyuCvxTJg==","signatures":[{"sig":"MEUCIQDEuGcpKyCxRsUYKXuHkuEXaTPu1jVcjVNuWYQk7//TvQIgMgdExFB5xSdvHhW5rtX9GGivjI7yG5Cqhj3DjzDjiH4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":295611},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"a025af4d6cb9ae3a4c8d0d85e061a3af7c0f40d2","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"run-s 'clean:*' copy 'build:**'","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"9.5.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"18.15.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.2.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"4.9.5","@types/node":"18.15.13","microbundle":"0.15.1","npm-run-all":"4.1.5","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.0.3-next.0_1684120171912_0.3991282918668302","host":"s3://npm-registry-packages"}},"5.0.3":{"name":"vue-types","version":"5.0.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.0.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"4a86a0491a94f52ba27cd0a2b926a25a6cfb25c5","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.0.3.tgz","fileCount":36,"integrity":"sha512-7+yOUXlRrpkJ4mtgmB6nIfDYLdLmxHQ/IMZR3hsEziYnHK4Y/Rf+rlCIg1rwNnlbyTiDf4v/vz1LEumo3RgwrQ==","signatures":[{"sig":"MEYCIQCMeW6j3xK/Yu3iKxxVZcucWVan8r47iIUPrU2QjA5XXgIhAN1w1rLlgPKXEXublYlxnT8K7Y/xNzsCSLaF6MW239sE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":295604},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"ee5a8caeea72c3888429c7e12a170372a647259f","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"run-s 'clean:*' copy 'build:**'","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"9.5.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"18.15.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.2.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"4.9.5","@types/node":"18.15.13","microbundle":"0.15.1","npm-run-all":"4.1.5","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.0.3_1684120352514_0.3733879001938014","host":"s3://npm-registry-packages"}},"5.0.4":{"name":"vue-types","version":"5.0.4","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.0.4","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"7840ed82cb8ee9572a9db6e553e66c83fafb882d","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.0.4.tgz","fileCount":36,"integrity":"sha512-ksYUQpvhk1Xl/K43OPkcm54VcX4tvxQoNYjYLk+n45NOocDsg9+DnviPq/KfDLjGs4P23iAosFPR8JSzuh9IPA==","signatures":[{"sig":"MEUCIQCZMVJNHZezR827BdS/cH66rrTJHIp5gIS5d6NSnBYR8QIgdfWTEC3voc88tL7c/GsGV25UK/E4gJRcI3f62JhyUSg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":295474},"main":"dist/vue-types.cjs","type":"module","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"gitHead":"b106148ca9a3fbb604d36b6685b9e8408d35ba1b","scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"run-s 'clean:*' copy 'build:**'","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap","prepublishOnly":"run-s lint test build"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"9.5.1","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"18.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.2.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"5.0.4","@types/node":"20.1.4","microbundle":"0.15.1","npm-run-all":"4.1.5","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.0.4_1686811068779_0.1990098959777178","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"vue-types","version":"5.1.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.1.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"680126b3338afaa633753448816efd19adf6614d","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.1.0.tgz","fileCount":37,"integrity":"sha512-oCSq5MawTli+Jqaf07sCZgJr/FcDCFF5U/VE4WG58S3EAPxqi8nZlbrQ9I50rD5MZdJ3fjgi/IX1tVLL3QUFzA==","signatures":[{"sig":"MEQCIGIfYKSoYxMkOVQXqOCyBm1bDHQQVcWLbjObBkSoA/nyAiBT5VdvKVBeSuxf3lrOg6Zrmap1kCbkrQ66Kswh9f/guw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":297670},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-5.1.0.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/private/var/folders/hm/70y4t3rx1_vdwmcvl3lscf180000gp/T/3c3596ce79c0a87e560c1a437ec56765/vue-types-5.1.0.tgz","_integrity":"sha512-oCSq5MawTli+Jqaf07sCZgJr/FcDCFF5U/VE4WG58S3EAPxqi8nZlbrQ9I50rD5MZdJ3fjgi/IX1tVLL3QUFzA==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"9.5.1","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"18.16.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.2.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"5.0.4","@types/node":"20.1.4","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.1.0_1687497639379_0.5764302034419133","host":"s3://npm-registry-packages"}},"0.0.0-20230720044845":{"name":"vue-types","version":"0.0.0-20230720044845","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.0.0-20230720044845","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"8c584eac251a21fc39195cbd859e23d75e8abbb1","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20230720044845.tgz","fileCount":37,"integrity":"sha512-d1zKF57yr4pHx+70N7APMT9B4vSRLXSaimSpBeThPNawUBZxuk75LfmmhLjCZ7uvnHG2i2Teb2IkVMNVgwYtPg==","signatures":[{"sig":"MEYCIQCrzN51+oQc4Gl+nt++H9Wrn8Vs3NSoIC802mq7JLxmrAIhAKVKE2V1wDN86cRlsveeSGgKaAhlOyLMlCO1F0ayETQH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":297755},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-0.0.0-20230720044845.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"type":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/5084adc257f4eb7dc757ba213a753f74/vue-types-0.0.0-20230720044845.tgz","_integrity":"sha512-d1zKF57yr4pHx+70N7APMT9B4vSRLXSaimSpBeThPNawUBZxuk75LfmmhLjCZ7uvnHG2i2Teb2IkVMNVgwYtPg==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"9.5.1","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"18.16.1","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.2.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"5.0.4","@types/node":"20.1.7","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_0.0.0-20230720044845_1689828560479_0.8176438112109237","host":"s3://npm-registry-packages"}},"0.0.0-20230721024211":{"name":"vue-types","version":"0.0.0-20230721024211","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.0.0-20230721024211","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"491670ad4f9d084396f2ff56ea678e1ef66f008f","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20230721024211.tgz","fileCount":37,"integrity":"sha512-u5E1GBCbvnrR1QW4XAXygVAkURJz1ZT31+mjwQNX+5oakUGGpQGA9F7IHPvDZhHX4p0NXcdcNk+3RK8Zv0CnjQ==","signatures":[{"sig":"MEUCICOH18/0OgyB1JskHQ7y44aysuIc4Y1r3N1MFYo2ecydAiEA41nvSd37SWMEZ3E8+iMvODmwz/PxCFf60KCGFBdM7iU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":297888},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-0.0.0-20230721024211.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"types":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/c979d86c846292cc4721ef07ed6232da/vue-types-0.0.0-20230721024211.tgz","_integrity":"sha512-u5E1GBCbvnrR1QW4XAXygVAkURJz1ZT31+mjwQNX+5oakUGGpQGA9F7IHPvDZhHX4p0NXcdcNk+3RK8Zv0CnjQ==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"9.5.1","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"18.16.1","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.2.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"5.0.4","@types/node":"20.1.7","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_0.0.0-20230721024211_1689907364436_0.17996609090135052","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"vue-types","version":"5.1.1","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.1.1","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"1052b85f440a90ad4ea8249d5aa6f231b92d062e","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.1.1.tgz","fileCount":37,"integrity":"sha512-FMY/JCLWePXgGIcMDqYdJsQm1G0CDxEjq6W0+tZMJZlX37q/61eSGSIa/XFRwa9T7kkKXuxxl94/2kgxyWQqKw==","signatures":[{"sig":"MEYCIQD8j8DmzcNthTJaeEIDVvzY/RWvlAUT/HeOIka2rTt2fQIhAIYDDafitWwQ9r3ZPFtBZ0kvOrIkR9Dgjc8vuCwvUZt5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":297873},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-5.1.1.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"types":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/988ec0229264ab972080318c5c610f5f/vue-types-5.1.1.tgz","_integrity":"sha512-FMY/JCLWePXgGIcMDqYdJsQm1G0CDxEjq6W0+tZMJZlX37q/61eSGSIa/XFRwa9T7kkKXuxxl94/2kgxyWQqKw==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"9.5.1","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"18.16.1","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.0.0","cpy-cli":"4.2.0","del-cli":"5.0.0","cross-env":"7.0.3","typescript":"5.0.4","@types/node":"20.1.7","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.1.1_1690346829276_0.6065462235283536","host":"s3://npm-registry-packages"}},"0.0.0-20240502090343":{"name":"vue-types","version":"0.0.0-20240502090343","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.0.0-20240502090343","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"915e4872140cd9b67205e7c37e5fd36ae6ad53ab","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20240502090343.tgz","fileCount":37,"integrity":"sha512-X1g2f72JhLxV0MmYYpHcQxkVR4f+lVpJR2NJGDJilLaxWmOgpiaqNfScMdtP6X2lceYU21qKAZ/flKutyg6hxA==","signatures":[{"sig":"MEUCIBU5MTf6WbTqkx8TJtcpqZZrrXzgO55lV5eo9i+dirb0AiEA4ZHhnj4+ViC83S3xV9qCTtLhjnFIsob41GD/x+V38y0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@0.0.0-20240502090343","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":298179},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-0.0.0-20240502090343.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"types":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/383f7e76c424beff27756cb00ba25800/vue-types-0.0.0-20240502090343.tgz","_integrity":"sha512-X1g2f72JhLxV0MmYYpHcQxkVR4f+lVpJR2NJGDJilLaxWmOgpiaqNfScMdtP6X2lceYU21qKAZ/flKutyg6hxA==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git"},"_npmVersion":"10.5.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"20.12.2","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.1.0","cpy-cli":"5.0.0","del-cli":"5.1.0","cross-env":"7.0.3","typescript":"5.4.5","@types/node":"20.12.7","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_0.0.0-20240502090343_1714640648047_0.5159869883907231","host":"s3://npm-registry-packages"}},"0.0.0-20240502090959":{"name":"vue-types","version":"0.0.0-20240502090959","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.0.0-20240502090959","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"caa1c93ad0d67764873952441685c69256f34b20","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20240502090959.tgz","fileCount":37,"integrity":"sha512-NNMHyCuDykte1DWU5a4ETqfrZeB9+u5Bz3y59L02QutpSSQF6f4rR+6k3bBX3YIw0tWazinWJtfmKCYj9pMMKw==","signatures":[{"sig":"MEQCIAWJRtzPgPacgid8obklUIC+rhrEswpKlqsqSxnKMveKAiAJ8scpbv68swP3IEg/XZJWckfR+kc2hivY2SWv8QY8Cg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@0.0.0-20240502090959","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":298213},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-0.0.0-20240502090959.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"types":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/dc469feacfd9dfd859f21e83c48900fe/vue-types-0.0.0-20240502090959.tgz","_integrity":"sha512-NNMHyCuDykte1DWU5a4ETqfrZeB9+u5Bz3y59L02QutpSSQF6f4rR+6k3bBX3YIw0tWazinWJtfmKCYj9pMMKw==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"_npmVersion":"10.5.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"20.12.2","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.1.0","cpy-cli":"5.0.0","del-cli":"5.1.0","cross-env":"7.0.3","typescript":"5.4.5","@types/node":"20.12.7","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_0.0.0-20240502090959_1714641022625_0.35757052810594825","host":"s3://npm-registry-packages"}},"0.0.0-20240502091121":{"name":"vue-types","version":"0.0.0-20240502091121","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.0.0-20240502091121","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"d1f811d151f702922ca35f5357c4c8338e255012","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20240502091121.tgz","fileCount":37,"integrity":"sha512-+KydsJhbaBdsHAeMvUYU/YModEOEex2H6+EqPN3dg2RrsQKK2AJqB97FDIW/EsLKwetcgnX6DtkZxXWlGvUmvQ==","signatures":[{"sig":"MEQCIAfqbHgJFpWsdgM0X40ir8uIKGrwMwJY51p28q6EyfxYAiBjuvVF/0DNjqj3Df9qMxULvJrnHzm+TDEt4ar3FFhMog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@0.0.0-20240502091121","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":298213},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-0.0.0-20240502091121.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"types":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/13c5f4c4a8a05afff8532d8344ed2ae4/vue-types-0.0.0-20240502091121.tgz","_integrity":"sha512-+KydsJhbaBdsHAeMvUYU/YModEOEex2H6+EqPN3dg2RrsQKK2AJqB97FDIW/EsLKwetcgnX6DtkZxXWlGvUmvQ==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"_npmVersion":"10.5.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"20.12.2","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.1.0","cpy-cli":"5.0.0","del-cli":"5.1.0","cross-env":"7.0.3","typescript":"5.4.5","@types/node":"20.12.7","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_0.0.0-20240502091121_1714641104845_0.17791597005276238","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"vue-types","version":"5.1.2","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.1.2","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"8733d8c52e5e95fa9718e3d362760d1516320c87","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.1.2.tgz","fileCount":37,"integrity":"sha512-NdwLhEl2hn2PRsHb+eYgwBfimFZB2Y0s11YqFRX0VEMrDZZvzPXYxcUJ+aH7AIHyxGc47qdgakVzcjw6bZElBw==","signatures":[{"sig":"MEYCIQCk3YrFh8Z17buA2wtUICcqXFrcL6Xw+pFM4yWqzPhEJQIhAJXympX6o59NShWCEpGsxQZB+ahAd05l0yAvB3MeMgSc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@5.1.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":298198},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-5.1.2.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"types":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/edf778945b7d7e911df03533060187b9/vue-types-5.1.2.tgz","_integrity":"sha512-NdwLhEl2hn2PRsHb+eYgwBfimFZB2Y0s11YqFRX0VEMrDZZvzPXYxcUJ+aH7AIHyxGc47qdgakVzcjw6bZElBw==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"_npmVersion":"10.5.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"20.12.2","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.1.0","cpy-cli":"5.0.0","del-cli":"5.1.0","cross-env":"7.0.3","typescript":"5.4.5","@types/node":"20.12.7","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.1.2_1714641865521_0.9619556011171331","host":"s3://npm-registry-packages"}},"0.0.0-20240701051251":{"name":"vue-types","version":"0.0.0-20240701051251","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.0.0-20240701051251","homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"5993a0f35d60d6cd3ac21b9358582bfdb4c8a407","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20240701051251.tgz","fileCount":37,"integrity":"sha512-Q06gZgbgveG2DezWmOY45WTtPm7Y2rQtOb+puM2B7widI70Ve0WFqQJYAkXrWZgkzl1lp8NtDFEe2Ibnzd1MjA==","signatures":[{"sig":"MEYCIQCtz8U4D34Gbqb7MrnReL4ou9qgEr7YiL0DWR8rBfD9wgIhAK9xl+6cSZQ47TNmWvPa9PoHdx5o4Ci2AuNMFwT0pglR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@0.0.0-20240701051251","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":298129},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-0.0.0-20240701051251.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"types":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"},"./dist/types":{"types":"./dist/types.d.ts"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/3a406fdcb13f04e1fd4af0b179c66309/vue-types-0.0.0-20240701051251.tgz","_integrity":"sha512-Q06gZgbgveG2DezWmOY45WTtPm7Y2rQtOb+puM2B7widI70Ve0WFqQJYAkXrWZgkzl1lp8NtDFEe2Ibnzd1MjA==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"_npmVersion":"10.7.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"20.14.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.1.0","cpy-cli":"5.0.0","del-cli":"5.1.0","cross-env":"7.0.3","typescript":"5.4.5","@types/node":"20.14.2","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_0.0.0-20240701051251_1719810796314_0.8805643760782387","host":"s3://npm-registry-packages"}},"5.1.3":{"name":"vue-types","version":"5.1.3","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@5.1.3","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"f1476d2dc1d8cf8be9a723595e866aedcb0f2fb3","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-5.1.3.tgz","fileCount":37,"integrity":"sha512-3Wy6QcZl0VusCCHX3vYrWSILFlrOB2EQDoySnuYmASM5cUp1FivJGfkS5lp1CutDgyRb41g32r/1QCmiBj5i1Q==","signatures":[{"sig":"MEYCIQDmjUAmRXdm+ofV0OS2255U16/ExdiaKd/jhKb6Ezu8fgIhAN/UzdoGmNIL8eobmMV2BOKNjiavcL0ygr1LO072+PZW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@5.1.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":298114},"main":"dist/vue-types.cjs","type":"module","_from":"file:vue-types-5.1.3.tgz","types":"dist/index.d.ts","unpkg":"dist/vue-types.umd.js","module":"dist/vue-types.m.js","source":["src/index.ts","src/shim.ts"],"amdName":"VueTypes","engines":{"node":">=14.0.0"},"exports":{".":{"types":"./dist/index.d.ts","import":"./dist/vue-types.modern.js","require":"./dist/vue-types.cjs"},"./shim":{"types":"./dist/shim.d.ts","import":"./shim/index.modern.js","require":"./shim/index.cjs.js"},"./dist/types":{"types":"./dist/types.d.ts"}},"scripts":{"copy":"cpy --flat src/*.d.ts dist","lint":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","test":"vitest run --coverage","build":"pnpm run \"/^clean:.*/\" && pnpm run copy && pnpm run \"/^build:.*/\"","build:ts":"microbundle --tsconfig=./tsconfig.build.json --format=modern,es","build:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/index.cjs.ts -o dist/vue-types.cjs --no-pkg-main --format=cjs","build:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json --format=umd","clean:dist":"del dist","clean:shim":"del \"shim/*.*\" \"!shim/package.json\"","test:watch":"vitest watch","build:shim:ts":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.ts -o shim/index.js --format=modern,es --no-sourcemap","build:shim:cjs":"microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.cjs.js --no-pkg-main --format=cjs --no-sourcemap","build:shim:umd":"cross-env NODE_ENV=production microbundle --tsconfig=./tsconfig.build.json -i src/shim.cjs.ts -o shim/index.js --format=umd --no-sourcemap"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/vue-types.modern.js","umd:main":"dist/vue-types.umd.js","_resolved":"/tmp/dabb1ef25cc6e06eabb9e7d1461dd933/vue-types-5.1.3.tgz","_integrity":"sha512-3Wy6QcZl0VusCCHX3vYrWSILFlrOB2EQDoySnuYmASM5cUp1FivJGfkS5lp1CutDgyRb41g32r/1QCmiBj5i1Q==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"_npmVersion":"10.7.0","description":"Prop types utility for Vue","directories":{},"_nodeVersion":"20.14.0","dependencies":{"is-plain-object":"5.0.0"},"_hasShrinkwrap":false,"devDependencies":{"del":"7.1.0","cpy-cli":"5.0.0","del-cli":"5.1.0","cross-env":"7.0.3","typescript":"5.4.5","@types/node":"20.14.2","microbundle":"0.15.1","babel-plugin-transform-node-env-inline":"0.4.3","@babel/plugin-proposal-optional-chaining":"7.21.0","@babel/plugin-proposal-nullish-coalescing-operator":"7.18.6"},"peerDependencies":{"vue":"^2.0.0 || ^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_5.1.3_1720487714433_0.9459039990391616","host":"s3://npm-registry-packages"}},"0.0.0-20241212014929":{"name":"vue-types","version":"0.0.0-20241212014929","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.0.0-20241212014929","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"23d9aa201d02e4da8b2ca7233de08d9b26a8b1b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20241212014929.tgz","fileCount":26,"integrity":"sha512-skIOc6sbBg2Y1iuGU1/ckMhMeJVwboXpK2GnM/YkhSd0cZkDK/FCGodCXx0ROVw2zhzZQ46X22VA8vusYvRjJQ==","signatures":[{"sig":"MEQCIGh0QXt7b8weSYrnwXTHKmmywta1E1/EJhktrxBUxIdiAiArfI3UkONNAqtE9qNwhA5a2dICbsZz+R+6/sOCzje7kA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@0.0.0-20241212014929","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":228221},"main":"dist/index.cjs","type":"module","_from":"file:vue-types-0.0.0-20241212014929.tgz","types":"dist/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.mjs","engines":{"node":">=14.0.0"},"exports":{".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./shim":{"import":{"types":"./dist/shim.d.mts","default":"./dist/shim.mjs"},"require":{"types":"./dist/shim.d.cts","default":"./dist/shim.cjs"}}},"scripts":{"lint":"pnpm run \"/^lint:.*/\"","test":"vitest run --coverage","build":"unbuild","lint:js":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","lint:type":"tsc --noEmit --skipLibCheck","test:watch":"vitest watch"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/index.mjs","umd:main":"dist/index.umd.js","_resolved":"/tmp/1748da3b1dcb716287b93b6c788b783f/vue-types-0.0.0-20241212014929.tgz","_integrity":"sha512-skIOc6sbBg2Y1iuGU1/ckMhMeJVwboXpK2GnM/YkhSd0cZkDK/FCGodCXx0ROVw2zhzZQ46X22VA8vusYvRjJQ==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"_npmVersion":"10.9.0","description":"Prop types utility for Vue","directories":{},"sideEffects":false,"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"devDependencies":{"unbuild":"2.0.0","typescript":"5.6.3","@types/node":"20.17.6"},"peerDependencies":{"vue":"^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_0.0.0-20241212014929_1733968179432_0.17197500562931478","host":"s3://npm-registry-packages-npm-production"}},"0.0.0-20250212054805":{"name":"vue-types","version":"0.0.0-20250212054805","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@0.0.0-20250212054805","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://dwightjack.github.io/vue-types/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"dade7679d035361c72f3be155e1a6272e7a690d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20250212054805.tgz","fileCount":26,"integrity":"sha512-GdJOBhwbzsd110zyUpqNV8L/W2ZLCBJCXf5xKUPXzjUN49b6IcY5LVY3DpYPeo3NIJZLZhU7GG7Cyb2RCpZefQ==","signatures":[{"sig":"MEUCIBid7sGi/8Mu/uBsZMr4gOVn3lRbllZq7fuaogyWPmuxAiEA8DYmQdQmpd6UB2qHIJTqYTjknd66L4z2Ca6R1e9vQ8Y=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@0.0.0-20250212054805","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":228222},"main":"dist/index.cjs","type":"module","_from":"file:vue-types-0.0.0-20250212054805.tgz","types":"dist/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.mjs","engines":{"node":">=14.0.0"},"exports":{".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./shim":{"import":{"types":"./dist/shim.d.mts","default":"./dist/shim.mjs"},"require":{"types":"./dist/shim.d.cts","default":"./dist/shim.cjs"}}},"scripts":{"lint":"pnpm run \"/^lint:.*/\"","test":"vitest run --coverage","build":"unbuild","lint:js":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","lint:type":"tsc --noEmit --skipLibCheck","test:watch":"vitest watch"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/index.mjs","umd:main":"dist/index.umd.js","_resolved":"/tmp/04014d1a3d0ba1b644d1e19caf024410/vue-types-0.0.0-20250212054805.tgz","_integrity":"sha512-GdJOBhwbzsd110zyUpqNV8L/W2ZLCBJCXf5xKUPXzjUN49b6IcY5LVY3DpYPeo3NIJZLZhU7GG7Cyb2RCpZefQ==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"_npmVersion":"10.9.0","description":"Prop types utility for Vue","directories":{},"sideEffects":false,"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"devDependencies":{"unbuild":"2.0.0","typescript":"5.6.3","@types/node":"20.17.11"},"peerDependencies":{"vue":"^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_0.0.0-20250212054805_1739339295820_0.37423110415707295","host":"s3://npm-registry-packages-npm-production"}},"6.0.0":{"name":"vue-types","version":"6.0.0","keywords":["vue","props"],"author":{"name":"Marco Solazzi"},"license":"MIT","_id":"vue-types@6.0.0","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"homepage":"https://vue-types.codeful.dev/","bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"dist":{"shasum":"3a9be5624491d5936652f3d1f2469ae3f53c6a94","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-6.0.0.tgz","fileCount":26,"integrity":"sha512-fBgCA4nrBrB8SCU/AN40tFq8HUxLGBvU2ds7a5+SEDse6dYc+TJyvy8mWiwwL8oWIC/aGS/8nTqmhwxApgU5eA==","signatures":[{"sig":"MEYCIQCdePXqcaNrm4hQqYAPwEEVO8bdzyKFu9lCNeshoWiLogIhAKgI1cnI909G8XGJvVkoglgzLwsEUkr/sC2C4lIxmZ7l","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/vue-types@6.0.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":228231},"main":"dist/index.cjs","type":"module","_from":"file:vue-types-6.0.0.tgz","types":"dist/index.d.ts","unpkg":"dist/index.umd.js","module":"dist/index.mjs","engines":{"node":">=14.0.0"},"exports":{".":{"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"},"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"}},"./shim":{"import":{"types":"./dist/shim.d.mts","default":"./dist/shim.mjs"},"require":{"types":"./dist/shim.d.cts","default":"./dist/shim.cjs"}}},"scripts":{"lint":"pnpm run \"/^lint:.*/\"","test":"vitest run --coverage","build":"unbuild","lint:js":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'","lint:npm":"publint .","lint:type":"tsc --noEmit --skipLibCheck","test:watch":"vitest watch"},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"esmodule":"dist/index.mjs","umd:main":"dist/index.umd.js","_resolved":"/tmp/0538ac31f9adacc037da4a59f8c4a40a/vue-types-6.0.0.tgz","_integrity":"sha512-fBgCA4nrBrB8SCU/AN40tFq8HUxLGBvU2ds7a5+SEDse6dYc+TJyvy8mWiwwL8oWIC/aGS/8nTqmhwxApgU5eA==","repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"_npmVersion":"10.9.0","description":"Prop types utility for Vue","directories":{},"sideEffects":false,"_nodeVersion":"22.12.0","_hasShrinkwrap":false,"devDependencies":{"unbuild":"2.0.0","typescript":"5.6.3","@types/node":"20.17.11"},"peerDependencies":{"vue":"^3.0.0"},"peerDependenciesMeta":{"vue":{"optional":true}},"_npmOperationalInternal":{"tmp":"tmp/vue-types_6.0.0_1739756385563_0.8468212559149333","host":"s3://npm-registry-packages-npm-production"}},"0.0.0-20250820071348":{"name":"vue-types","version":"0.0.0-20250820071348","description":"Prop types utility for Vue","author":{"name":"Marco Solazzi"},"license":"MIT","homepage":"https://vue-types.codeful.dev/","main":"dist/index.cjs","type":"module","sideEffects":false,"unpkg":"dist/index.umd.js","umd:main":"dist/index.umd.js","module":"dist/index.mjs","esmodule":"dist/index.mjs","exports":{".":{"require":{"types":"./dist/index.d.cts","default":"./dist/index.cjs"},"import":{"types":"./dist/index.d.mts","default":"./dist/index.mjs"}},"./shim":{"require":{"types":"./dist/shim.d.cts","default":"./dist/shim.cjs"},"import":{"types":"./dist/shim.d.mts","default":"./dist/shim.mjs"}}},"types":"dist/index.d.ts","engines":{"node":">=14.0.0"},"keywords":["vue","props"],"repository":{"type":"git","url":"git+https://github.com/dwightjack/vue-types.git","directory":"packages/core"},"bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"peerDependencies":{"vue":"^3.0.0"},"devDependencies":{"@types/node":"24.3.0","typescript":"5.9.2","unbuild":"3.6.1"},"peerDependenciesMeta":{"vue":{"optional":true}},"scripts":{"build":"unbuild","test":"vitest run --coverage","test:watch":"vitest watch","lint":"pnpm run \"/^lint:.*/\"","lint:npm":"publint .","lint:type":"tsc --noEmit --skipLibCheck","lint:js":"eslint '{src,__tests__,.}/**/*.{ts,js,cjs}'"},"_id":"vue-types@0.0.0-20250820071348","_integrity":"sha512-XzqxRHamEhUU822spXWJB8Mt/h4nFYpORyme+N/tj25EsGEO6Efpc4pJ2vV2o4qoNp7qaTKYQIHqothqV3RTPg==","_resolved":"/tmp/92a43b9a8fc5c7f91ec5133e95fdec78/vue-types-0.0.0-20250820071348.tgz","_from":"file:vue-types-0.0.0-20250820071348.tgz","_nodeVersion":"22.18.0","_npmVersion":"10.9.3","dist":{"integrity":"sha512-XzqxRHamEhUU822spXWJB8Mt/h4nFYpORyme+N/tj25EsGEO6Efpc4pJ2vV2o4qoNp7qaTKYQIHqothqV3RTPg==","shasum":"1ed28364872b9927df2ef48d99b29633ba52b72a","tarball":"https://mirrors.huaweicloud.com/repository/npm/vue-types/-/vue-types-0.0.0-20250820071348.tgz","fileCount":26,"unpackedSize":222029,"attestations":{"url":"/-/npm/v1/attestations/vue-types@0.0.0-20250820071348","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQDAPmoPp/qU2vDOYAB3vapGv8o8m+ZSZatRCRSEXRt+ugIhAMVArEsk5peqUDZD6BQZsgPPdcQFSjjAnVZCLbjrcGF9"}]},"_npmUser":{"name":"dwightjack","email":"marco.solazzi@gmail.com"},"directories":{},"maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/vue-types_0.0.0-20250820071348_1755674041366_0.7877387346901865"},"_hasShrinkwrap":false}},"time":{"created":"2016-10-28T15:41:20.319Z","modified":"2025-08-20T07:14:02.010Z","0.1.0":"2016-10-28T15:41:20.319Z","0.2.0":"2016-10-28T15:56:05.848Z","0.3.0":"2016-10-29T13:44:01.768Z","0.4.0":"2016-10-29T14:02:58.721Z","0.5.0":"2016-11-11T09:45:21.426Z","0.5.1":"2016-11-14T09:28:14.010Z","0.5.2":"2016-11-14T09:32:01.439Z","0.6.0":"2017-02-27T16:10:02.936Z","0.6.1":"2017-03-30T15:35:23.252Z","0.6.2":"2017-03-30T16:08:10.721Z","0.6.4":"2017-04-03T14:33:32.947Z","0.6.5":"2017-04-03T15:53:50.864Z","1.0.0-beta.1":"2017-04-04T09:42:41.310Z","1.0.0":"2017-05-27T18:45:36.554Z","1.0.1":"2017-05-29T12:20:06.809Z","1.0.2":"2017-08-16T15:05:05.024Z","1.0.3":"2017-12-21T16:58:59.197Z","1.1.0":"2017-12-21T18:31:11.213Z","1.1.1":"2017-12-21T18:36:30.413Z","1.1.2":"2018-01-14T22:15:50.163Z","1.1.3":"2018-01-17T12:44:58.514Z","1.4.0":"2018-03-06T05:25:19.415Z","1.4.1":"2018-03-06T05:31:08.568Z","1.2.0":"2018-03-06T05:42:43.652Z","1.2.1":"2018-03-19T06:31:02.762Z","1.2.2":"2018-03-19T09:14:14.103Z","1.2.3":"2018-05-14T02:30:39.679Z","1.2.4":"2018-05-30T08:27:30.089Z","1.3.0":"2018-05-30T08:38:39.737Z","1.3.1":"2018-06-12T03:52:12.887Z","1.3.2":"2018-06-24T10:29:11.888Z","1.3.3":"2018-09-03T04:07:37.867Z","1.3.4-beta.0":"2018-10-04T05:02:44.198Z","1.3.4-beta.1":"2018-12-12T05:46:37.900Z","1.3.4":"2018-12-14T05:36:53.807Z","1.5.0":"2019-02-14T03:55:51.854Z","1.5.1":"2019-04-01T04:12:09.020Z","1.5.2":"2019-04-01T06:53:39.123Z","1.5.3":"2019-04-02T00:59:45.299Z","1.5.4":"2019-07-05T03:21:44.763Z","1.5.5":"2019-07-05T05:23:27.020Z","1.5.6":"2019-07-11T01:56:53.575Z","1.5.7":"2019-07-17T06:18:48.660Z","1.6.0":"2019-08-05T06:01:37.307Z","1.7.0-beta.1":"2019-09-02T04:43:09.779Z","1.7.0-beta.2":"2019-10-23T04:31:44.360Z","1.7.0-beta.3":"2019-10-23T04:34:48.858Z","1.6.1-beta.1":"2019-11-08T04:33:20.392Z","1.6.1":"2019-11-08T07:12:39.351Z","1.6.2":"2019-11-12T04:13:25.420Z","1.7.0":"2019-11-26T05:54:27.367Z","2.0.0-alpha.1":"2020-06-15T06:37:12.673Z","1.8.1-beta.1":"2020-06-25T06:09:30.208Z","1.8.1-beta.2":"2020-06-25T06:44:15.503Z","2.0.0-rc.0":"2020-07-15T08:37:29.666Z","2.0.0-rc.1":"2020-08-01T05:28:07.969Z","2.0.0":"2020-08-09T09:37:13.801Z","2.0.1-rc.1":"2020-08-13T12:23:40.180Z","2.0.1":"2020-08-14T04:44:28.718Z","3.0.0":"2020-09-06T03:20:53.313Z","2.0.2":"2020-10-10T09:29:42.700Z","3.0.1":"2020-10-10T09:47:37.885Z","2.0.3":"2021-02-02T06:16:26.198Z","3.0.2":"2021-02-02T06:24:45.895Z","4.0.0-rc.1":"2021-04-15T05:53:45.325Z","4.0.0-rc.2":"2021-04-15T06:45:44.786Z","4.0.0-rc.3":"2021-06-12T07:04:22.674Z","4.0.0":"2021-06-27T09:05:26.934Z","4.1.0-beta.1":"2021-07-10T07:30:49.873Z","4.1.0-beta.2":"2021-07-20T00:21:58.162Z","4.0.1":"2021-07-28T02:03:36.846Z","4.1.0-beta.3":"2021-08-07T05:30:09.420Z","4.0.2":"2021-08-08T05:23:41.544Z","4.0.3":"2021-08-09T02:02:17.713Z","4.1.0-rc.1":"2021-08-09T02:28:02.869Z","4.1.0":"2021-09-06T02:40:30.651Z","4.1.1-rc.0":"2021-09-08T09:50:55.639Z","4.1.1-rc.1":"2021-10-07T01:41:05.114Z","4.1.1":"2021-10-14T02:52:47.037Z","4.2.0-rc.1":"2022-03-02T10:04:40.618Z","4.2.0":"2022-07-23T02:34:17.082Z","4.2.1":"2022-08-01T06:04:16.638Z","5.0.0-beta.1":"2022-08-08T05:45:48.233Z","5.0.0-beta.2":"2022-11-22T06:23:51.534Z","5.0.0":"2022-11-22T08:42:39.078Z","5.0.1":"2022-11-23T06:37:55.097Z","5.0.2":"2022-12-22T03:10:11.428Z","5.0.3-next.0":"2023-05-15T03:09:32.053Z","5.0.3":"2023-05-15T03:12:32.757Z","5.0.4":"2023-06-15T06:37:48.957Z","5.1.0":"2023-06-23T05:20:39.574Z","0.0.0-20230720044845":"2023-07-20T04:49:20.651Z","0.0.0-20230721024211":"2023-07-21T02:42:44.594Z","5.1.1":"2023-07-26T04:47:09.412Z","0.0.0-20240502090343":"2024-05-02T09:04:08.275Z","0.0.0-20240502090959":"2024-05-02T09:10:22.837Z","0.0.0-20240502091121":"2024-05-02T09:11:45.012Z","5.1.2":"2024-05-02T09:24:25.688Z","0.0.0-20240701051251":"2024-07-01T05:13:16.549Z","5.1.3":"2024-07-09T01:15:14.652Z","0.0.0-20241212014929":"2024-12-12T01:49:39.649Z","0.0.0-20250212054805":"2025-02-12T05:48:16.081Z","6.0.0":"2025-02-17T01:39:45.768Z","0.0.0-20250820071348":"2025-08-20T07:14:01.564Z"},"bugs":{"url":"https://github.com/dwightjack/vue-types/issues"},"author":{"name":"Marco Solazzi"},"license":"MIT","homepage":"https://vue-types.codeful.dev/","keywords":["vue","props"],"repository":{"url":"git+https://github.com/dwightjack/vue-types.git","type":"git","directory":"packages/core"},"description":"Prop types utility for Vue","maintainers":[{"name":"dwightjack","email":"marco.solazzi@gmail.com"}],"readme":"","readmeFilename":""} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/8f/ab/d6cdfac655fc97c607be3b4c79b21e9cbf10288346bfe1175dd8adfacc2315e5e27effeb4e0278113bc70e0cc3566d545d5659866502f6612df247c6c850 b/frontend/.npm-cache/_cacache/content-v2/sha512/8f/ab/d6cdfac655fc97c607be3b4c79b21e9cbf10288346bfe1175dd8adfacc2315e5e27effeb4e0278113bc70e0cc3566d545d5659866502f6612df247c6c850 new file mode 100644 index 0000000..e73c212 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/8f/ab/d6cdfac655fc97c607be3b4c79b21e9cbf10288346bfe1175dd8adfacc2315e5e27effeb4e0278113bc70e0cc3566d545d5659866502f6612df247c6c850 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/93/32/80f45f1a8f4696a286aa8f0c9875b7d1aa86c06b686ba52cfc636eb5e02f68fae9c3ba44fdde8ecd5844844c197b469d188ec7d0a0c8e9d45bf06aa101df b/frontend/.npm-cache/_cacache/content-v2/sha512/93/32/80f45f1a8f4696a286aa8f0c9875b7d1aa86c06b686ba52cfc636eb5e02f68fae9c3ba44fdde8ecd5844844c197b469d188ec7d0a0c8e9d45bf06aa101df new file mode 100644 index 0000000..15cd16f --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/93/32/80f45f1a8f4696a286aa8f0c9875b7d1aa86c06b686ba52cfc636eb5e02f68fae9c3ba44fdde8ecd5844844c197b469d188ec7d0a0c8e9d45bf06aa101df @@ -0,0 +1 @@ +{"_id":"proxy-from-env","_rev":"11-9d50cde977f80d83459e2e037cd93240","name":"proxy-from-env","dist-tags":{"latest":"2.1.0"},"versions":{"0.0.1":{"name":"proxy-from-env","version":"0.0.1","keywords":["proxy","http_proxy","https_proxy","no_proxy","environment"],"author":{"url":"https://robwu.nl/","name":"Rob Wu","email":"rob@robwu.nl"},"license":"MIT","_id":"proxy-from-env@0.0.1","maintainers":[{"name":"rob-w","email":"rob@robwu.nl"}],"homepage":"https://github.com/Rob--W/proxy-from-env#readme","bugs":{"url":"https://github.com/Rob--W/proxy-from-env/issues"},"dist":{"shasum":"b27c4946e9e6d5dbadb7598a6435d3014c4cfd49","tarball":"https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-0.0.1.tgz","integrity":"sha512-B9Hnta3CATuMS0q6kt5hEezOPM+V3dgaRewkFtFoaRQYTVNsHqUvFXmndH06z3QO1ZdDnRELv5vfY6zAj/gG7A==","signatures":[{"sig":"MEQCIDkKug3LBrDWTHLFdqkC1n6borV8SM3VilbzkWxUNF+YAiADzmv1E4Y9h3PlOiAfViyBOFhgGFJ8o+yphI7LTh8sjg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b27c4946e9e6d5dbadb7598a6435d3014c4cfd49","gitHead":"46bf283b345b5526ed38d5cd29eadb66879ca690","scripts":{"lint":"jscs index.js && jshint index.js ;:","test":"mocha ./test.js --reporter spec"},"_npmUser":{"name":"rob-w","email":"rob@robwu.nl"},"repository":{"url":"git+https://github.com/Rob--W/proxy-from-env.git","type":"git"},"_npmVersion":"2.9.0","description":"Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.","directories":{},"_nodeVersion":"5.6.0","devDependencies":{"mocha":"^2.4.5"},"_npmOperationalInternal":{"tmp":"tmp/proxy-from-env-0.0.1.tgz_1455829607680_0.3209165702573955","host":"packages-6-west.internal.npmjs.com"}},"0.1.0":{"name":"proxy-from-env","version":"0.1.0","keywords":["proxy","http_proxy","https_proxy","no_proxy","environment"],"author":{"url":"https://robwu.nl/","name":"Rob Wu","email":"rob@robwu.nl"},"license":"MIT","_id":"proxy-from-env@0.1.0","maintainers":[{"name":"rob-w","email":"rob@robwu.nl"}],"homepage":"https://github.com/Rob--W/proxy-from-env#readme","bugs":{"url":"https://github.com/Rob--W/proxy-from-env/issues"},"dist":{"shasum":"3ade4afe2debe279de8421afef60fdb179ec410f","tarball":"https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-0.1.0.tgz","integrity":"sha512-UL8tCBZHp5AUAyYJiXEZaVzwpK0zN/vXkPjK+VQ0KzA3jU1UdUpAPTuBdHyQMSyaThUui5m/WLLIoWtZjMMDrg==","signatures":[{"sig":"MEUCIDhrJZbkEonoHgH/qIFVEkPNhGixzGjive+pG7KMIMQAAiEA4qkifxgMWXsQON5ef4KoNFdY5wLoakjlHwQjbD7PnF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3ade4afe2debe279de8421afef60fdb179ec410f","gitHead":"4096700204437c8926756fcda4d86610eed18643","scripts":{"lint":"jscs index.js && jshint index.js ;:","test":"mocha ./test.js --reporter spec"},"_npmUser":{"name":"rob-w","email":"rob@robwu.nl"},"repository":{"url":"git+https://github.com/Rob--W/proxy-from-env.git","type":"git"},"_npmVersion":"2.9.0","description":"Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.","directories":{},"_nodeVersion":"5.6.0","devDependencies":{"mocha":"^2.4.5"},"_npmOperationalInternal":{"tmp":"tmp/proxy-from-env-0.1.0.tgz_1455884285734_0.5764795215800405","host":"packages-9-west.internal.npmjs.com"}},"0.1.1":{"name":"proxy-from-env","version":"0.1.1","keywords":["proxy","http_proxy","https_proxy","no_proxy","environment"],"author":{"url":"https://robwu.nl/","name":"Rob Wu","email":"rob@robwu.nl"},"license":"MIT","_id":"proxy-from-env@0.1.1","maintainers":[{"name":"rob-w","email":"rob@robwu.nl"}],"homepage":"https://github.com/Rob--W/proxy-from-env#readme","bugs":{"url":"https://github.com/Rob--W/proxy-from-env/issues"},"dist":{"shasum":"c5f529b41d2a23f1f81f7ee258974fb80885a6e7","tarball":"https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-0.1.1.tgz","integrity":"sha512-COoSB26cBQseMl9DaIt0L0cAlvuk7QfcIZpf/9v8GtAS2chFCulYbeMZbm4uLwDUe/HlUet+oAxSern9i/OgmQ==","signatures":[{"sig":"MEUCIQDZpGBGSSyUCYziM3pyeyf5cC0aN8Bi3rUTrjpI8dvh4gIgfltFtWs0jL0fHYUmmTLm3+2VH0XMZ9CQ1tj249slA7k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c5f529b41d2a23f1f81f7ee258974fb80885a6e7","gitHead":"6266d30c373153b55ed46a97aff81250f0433e68","scripts":{"lint":"jscs *.js && jshint *.js","test":"mocha ./test.js --reporter spec","test-coverage":"istanbul cover ./node_modules/.bin/_mocha -- --reporter spec"},"_npmUser":{"name":"rob-w","email":"rob@robwu.nl"},"repository":{"url":"git+https://github.com/Rob--W/proxy-from-env.git","type":"git"},"_npmVersion":"3.10.8","description":"Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.","directories":{},"_nodeVersion":"6.8.1","devDependencies":{"jscs":"^2.10.1","mocha":"^2.4.5","jshint":"^2.9.1","istanbul":"^0.4.2","coveralls":"^2.11.6"},"_npmOperationalInternal":{"tmp":"tmp/proxy-from-env-0.1.1.tgz_1476736991549_0.034898495534434915","host":"packages-12-west.internal.npmjs.com"}},"1.0.0":{"name":"proxy-from-env","version":"1.0.0","keywords":["proxy","http_proxy","https_proxy","no_proxy","environment"],"author":{"url":"https://robwu.nl/","name":"Rob Wu","email":"rob@robwu.nl"},"license":"MIT","_id":"proxy-from-env@1.0.0","maintainers":[{"name":"rob-w","email":"rob@robwu.nl"}],"homepage":"https://github.com/Rob--W/proxy-from-env#readme","bugs":{"url":"https://github.com/Rob--W/proxy-from-env/issues"},"dist":{"shasum":"33c50398f70ea7eb96d21f7b817630a55791c7ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-1.0.0.tgz","integrity":"sha512-F2JHgJQ1iqwnHDcQjVBsq3n/uoaFL+iPW/eAeL7kVxy/2RrWaN4WroKjjvbsoRtv0ftelNyC01bjRhn/bhcf4A==","signatures":[{"sig":"MEUCIGxKyZKlAqPX61lgjPBQ4To1Ho2ZuupukYNRvXwNhstGAiEAoZIG36Xu1RkUOmg7KFqozKF3YkgO+GHslB1+sgh+EPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"33c50398f70ea7eb96d21f7b817630a55791c7ee","gitHead":"bdf563343ff76e88402e1ab0b5040515b71502b5","scripts":{"lint":"jscs *.js && jshint *.js","test":"mocha ./test.js --reporter spec","test-coverage":"istanbul cover ./node_modules/.bin/_mocha -- --reporter spec"},"_npmUser":{"name":"rob-w","email":"rob@robwu.nl"},"repository":{"url":"git+https://github.com/Rob--W/proxy-from-env.git","type":"git"},"_npmVersion":"4.1.2","description":"Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.","directories":{},"_nodeVersion":"7.5.0","devDependencies":{"jscs":"^2.10.1","mocha":"^2.4.5","jshint":"^2.9.1","istanbul":"^0.4.2","coveralls":"^2.11.6"},"_npmOperationalInternal":{"tmp":"tmp/proxy-from-env-1.0.0.tgz_1487931977410_0.9466661661863327","host":"packages-18-east.internal.npmjs.com"}},"1.1.0":{"name":"proxy-from-env","version":"1.1.0","keywords":["proxy","http_proxy","https_proxy","no_proxy","environment"],"author":{"url":"https://robwu.nl/","name":"Rob Wu","email":"rob@robwu.nl"},"license":"MIT","_id":"proxy-from-env@1.1.0","maintainers":[{"name":"rob-w","email":"rob@robwu.nl"}],"homepage":"https://github.com/Rob--W/proxy-from-env#readme","bugs":{"url":"https://github.com/Rob--W/proxy-from-env/issues"},"dist":{"shasum":"e102f16ca355424865755d2c9e8ea4f24d58c3e2","tarball":"https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-1.1.0.tgz","fileCount":7,"integrity":"sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==","signatures":[{"sig":"MEUCIAhI5LHXgkZS39dNhkqODm7knrj64zEVqh+OBgtRaTIiAiEAmu1f+Ax+02HZu/qyday6T4hLr9+FNThJIWv4Bz4JWK4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":29452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeXyH4CRA9TVsSAnZWagAAksUP/1xI1JdvDAAo+FHuPEF1\nRLwWvI/lKVM/2ksapJNiJX0Xpt/rCBKOdSPfR0DpXVAmuaP+9JGLSd9Ac5fT\ndCikeI/SsIiRI3HpHthF5z5Aa2UD9MIX9y9Y1XNRw8TsqsX4Jvy5178vhV8D\nJD249+lDXrjwNMibMkRLPWvSFmpRUmY8E81mXm4x9stRq82abs2dEWURmmS2\n9ATjxT/jG+GiL4YXPLGsPEUbBavoL7q93E7M8VlJaOOIfEXV6HqpMvQdW/cU\nSo2BOsJhzBW4utWuxaSjJsdxQk5Uj6PAB84UeEeOpvI1NKimR4WyZ1i47c4s\nx7Zg9Rk8RsH02w9K9N3Ix76wsH4DQ6RWRjRWkLGMu16IyQSJ4wdYAKEOBr68\n5ADv/BCwnOMLgXI+UnH8VskTV/eJ2tdIXvr9anvTj3F+3CDEkeqZ+L2rPy8B\n4P9nEGiWsMGfWtkLKmFDk/wCOo4uvm2Q/lymRN846lh7xI5xGqAzq2ylMOap\nGTM+WTmaRdAnWN+aj0TeLjura3SRbZv0RDh1yJ7KFbfto5tLpYAJcfRT9hTb\nQ4cZSpeFDh3mSkuoTbEk9MWviP2HKu8kyYPLwpb/u2w0Dj0EYn8NjMDcsp+8\n4T8IAWfGOJiSDzirvUbsbj1ZgezYHeMZ7R8mqngj/L/u2FIvny/wEEBoUaNb\nGsyR\r\n=2zPU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"96d01f8fcfdccfb776735751132930bbf79c4a3a","scripts":{"lint":"eslint *.js","test":"mocha ./test.js --reporter spec","test-coverage":"istanbul cover ./node_modules/.bin/_mocha -- --reporter spec"},"_npmUser":{"name":"rob-w","email":"rob@robwu.nl"},"repository":{"url":"git+https://github.com/Rob--W/proxy-from-env.git","type":"git"},"_npmVersion":"6.13.6","description":"Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.","directories":{},"_nodeVersion":"13.7.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^7.1.0","eslint":"^6.8.0","istanbul":"^0.4.5","coveralls":"^3.0.9"},"_npmOperationalInternal":{"tmp":"tmp/proxy-from-env_1.1.0_1583292919676_0.18466952575605178","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"proxy-from-env","version":"2.0.0","keywords":["proxy","http_proxy","https_proxy","no_proxy","environment"],"author":{"url":"https://robwu.nl/","name":"Rob Wu","email":"rob@robwu.nl"},"license":"MIT","_id":"proxy-from-env@2.0.0","maintainers":[{"name":"rob-w","email":"rob@robwu.nl"}],"homepage":"https://github.com/Rob--W/proxy-from-env#readme","bugs":{"url":"https://github.com/Rob--W/proxy-from-env/issues"},"dist":{"shasum":"3f9786a14a3c1f73a5a9e10f70fd0cb81e27eb4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-2.0.0.tgz","fileCount":7,"integrity":"sha512-h2lD3OfRraP3R51rNFKIE8nX+qoLr1mE74X91YhVxtDbt+OD6ntoNZv56+JgI4RCdtwQ5eexsOk1KdOQDfvPCQ==","signatures":[{"sig":"MEUCIEokq7qfAWNGGwHJoIq4Zvx2xkhvoeu4x3QvulDb58n2AiEAiFD8qNQKjkFQIU82ASRNsodvMmj/+zePGD6JigHomMQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":31145},"main":"index.js","type":"module","exports":"./index.js","gitHead":"f4d1be891d62de174d46bb1fd01ba58e376d739c","scripts":{"lint":"eslint *.js *.mjs","test":"node --test ./test.js","test-coverage":"node --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info ./test.js","test-coverage-as-html":"npm run test-coverage && genhtml lcov.info -o coverage/"},"_npmUser":{"name":"rob-w","email":"rob@robwu.nl"},"repository":{"url":"git+https://github.com/Rob--W/proxy-from-env.git","type":"git"},"_npmVersion":"11.8.0","description":"Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.","directories":{},"sideEffects":false,"_nodeVersion":"25.6.0","_hasShrinkwrap":false,"devDependencies":{"eslint":"^9.39.2"},"_npmOperationalInternal":{"tmp":"tmp/proxy-from-env_2.0.0_1770607222644_0.7787215475205844","host":"s3://npm-registry-packages-npm-production"}},"2.1.0":{"name":"proxy-from-env","version":"2.1.0","description":"Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.","main":"index.cjs","exports":{"import":"./index.js","require":"./index.cjs"},"scripts":{"lint":"eslint *.js *.mjs *.cjs","test":"node --test ./test.js","test-require":"node ./test-require.cjs","test-coverage":"node --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=lcov.info ./test.js","test-coverage-as-html":"npm run test-coverage && genhtml lcov.info -o coverage/"},"repository":{"type":"git","url":"git+https://github.com/Rob--W/proxy-from-env.git"},"keywords":["proxy","http_proxy","https_proxy","no_proxy","environment"],"author":{"name":"Rob Wu","email":"rob@robwu.nl","url":"https://robwu.nl/"},"license":"MIT","bugs":{"url":"https://github.com/Rob--W/proxy-from-env/issues"},"homepage":"https://github.com/Rob--W/proxy-from-env#readme","devDependencies":{"eslint":"^9.39.2"},"type":"module","engines":{"node":">=10"},"sideEffects":false,"gitHead":"570ce3a4279d83af3ff13e7600a347d01c453394","_id":"proxy-from-env@2.1.0","_nodeVersion":"25.7.0","_npmVersion":"11.10.1","dist":{"integrity":"sha512-cJ+oHTW1VAEa8cJslgmUZrc+sjRKgAKl3Zyse6+PV38hZe/V6Z14TbCuXcan9F9ghlz4QrFr2c92TNF82UkYHA==","shasum":"a7487568adad577cfaaa7e88c49cab3ab3081aba","tarball":"https://mirrors.huaweicloud.com/repository/npm/proxy-from-env/-/proxy-from-env-2.1.0.tgz","fileCount":5,"unpackedSize":15643,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQC0TVWmsz3LYt7f4GZsdRq+f+EWV7qBr2VQc3wuOpJO4QIhAMnKjVPwjAksINEGppzLvKDlNI4qDKisbocnFXQiPHnv"}]},"_npmUser":{"name":"rob-w","email":"rob@robwu.nl"},"directories":{},"maintainers":[{"name":"rob-w","email":"rob@robwu.nl"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/proxy-from-env_2.1.0_1773513167766_0.3427019055310345"},"_hasShrinkwrap":false}},"time":{"created":"2016-02-18T21:06:51.722Z","modified":"2026-03-14T18:32:48.065Z","0.0.1":"2016-02-18T21:06:51.722Z","0.1.0":"2016-02-19T12:18:09.827Z","0.1.1":"2016-10-17T20:43:13.490Z","1.0.0":"2017-02-24T10:26:18.024Z","1.1.0":"2020-03-04T03:35:19.815Z","2.0.0":"2026-02-09T03:20:22.842Z","2.1.0":"2026-03-14T18:32:47.942Z"},"bugs":{"url":"https://github.com/Rob--W/proxy-from-env/issues"},"author":{"name":"Rob Wu","email":"rob@robwu.nl","url":"https://robwu.nl/"},"license":"MIT","homepage":"https://github.com/Rob--W/proxy-from-env#readme","keywords":["proxy","http_proxy","https_proxy","no_proxy","environment"],"repository":{"type":"git","url":"git+https://github.com/Rob--W/proxy-from-env.git"},"description":"Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.","maintainers":[{"name":"rob-w","email":"rob@robwu.nl"}],"readme":"# proxy-from-env\n\n![Build Status](https://github.com/Rob--W/proxy-from-env/actions/workflows/run-tests.yaml/badge.svg?branch=master)\n[![Coverage Status](https://coveralls.io/repos/github/Rob--W/proxy-from-env/badge.svg?branch=master)](https://coveralls.io/github/Rob--W/proxy-from-env?branch=master)\n\n`proxy-from-env` is a Node.js package that exports a function (`getProxyForUrl`)\nthat takes an input URL (a string, an instance of\n[`URL`](https://nodejs.org/docs/latest/api/url.html#the-whatwg-url-api),\nor [`url.parse`](https://nodejs.org/docs/latest/api/url.html#url_url_parsing)'s\nreturn value) and returns the desired proxy URL (also a string) based on\nstandard proxy environment variables. If no proxy is set, an empty string is\nreturned.\n\nIf your application makes important (security) decisions based on the URL, be\nconsistent in the mechanism to parse and validate URLs, as differences in URL\nparsing behavior can affect the outcome of proxy resolution.\nStrings are parsed with the standard `URL` API, as of `proxy-from-env@2.0.0`.\nOlder versions relied on the (now deprecated) `url.parse` method instead.\n\nInvalid values in environment variables are not handled by the library\n([#41](https://github.com/Rob--W/proxy-from-env/issues/41)).\n\nIt is your responsibility to actually proxy the request using the given URL.\n\nInstallation:\n\n```sh\nnpm install proxy-from-env\n```\n\n## Example\nThis example shows how the data for a URL can be fetched via the\n[`http` module](https://nodejs.org/api/http.html), in a proxy-aware way.\n\nwarning: this simple example works for http requests only. To support https,\nyou must establish a proxy tunnel via the\n[http `connect` method](https://developer.mozilla.org/en-us/docs/web/http/reference/methods/connect).\n\n```javascript\nimport http from 'node:test';\nimport { getProxyForUrl } from 'proxy-from-env';\n// ^ or: var getProxyForUrl = require('proxy-from-env').getProxyForUrl;\n\nvar some_url = 'http://example.com/something';\n\n// // Example, if there is a proxy server at 10.0.0.1:1234, then setting the\n// // http_proxy environment variable causes the request to go through a proxy.\n// process.env.http_proxy = 'http://10.0.0.1:1234';\n// \n// // But if the host to be proxied is listed in NO_PROXY, then the request is\n// // not proxied (but a direct request is made).\n// process.env.no_proxy = 'example.com';\n\nvar proxy_url = getProxyForUrl(some_url); // <-- Our magic.\nif (proxy_url) {\n // Should be proxied through proxy_url.\n var parsed_some_url = new URL(some_url);\n var parsed_proxy_url = new URL(proxy_url);\n // A HTTP proxy is quite simple. It is similar to a normal request, except the\n // path is an absolute URL, and the proxied URL's host is put in the header\n // instead of the server's actual host.\n httpOptions = {\n protocol: parsed_proxy_url.protocol,\n hostname: parsed_proxy_url.hostname,\n port: parsed_proxy_url.port,\n path: parsed_some_url.href,\n headers: {\n Host: parsed_some_url.host, // = host name + optional port.\n },\n };\n} else {\n // Direct request.\n httpOptions = some_url;\n}\nhttp.get(httpOptions, function(res) {\n var responses = [];\n res.on('data', function(chunk) { responses.push(chunk); });\n res.on('end', function() { console.log(responses.join('')); });\n});\n```\n\n### Full proxy support\nThe simple example above works for http requests only. To support https, you\nmust establish a proxy tunnel via the\n[http `connect` method](https://developer.mozilla.org/en-us/docs/web/http/reference/methods/connect).\n\nAn example of that is shown in the\n[`https-proxy-agent` npm package](https://www.npmjs.com/package/https-proxy-agent).\nThe [`proxy-agent` npm package](https://www.npmjs.com/package/proxy-agent)\ncombines `https-proxy-agent` and `proxy-from-env` to offer a `http.Agent` that\nsupports proxies from environment variables.\n\n### Built-in proxy support\nNode.js is working on built-in support for proxy environment variables,\ncurrently behind `NODE_USE_ENV_PROXY=1` or `--use-env-proxy`. For details, see:\n\n- https://github.com/nodejs/node/issues/57872\n- https://nodejs.org/api/http.html#built-in-proxy-support\n\n\n## Environment variables\nThe environment variables can be specified in all lowercase or all uppercase,\nwith lowercase taking precedence over the uppercase variant. A variable that is\nnot set has the same meaning as a variable that is set but has no value.\n\n### NO\\_PROXY\n\n`NO_PROXY` is a list of host names (optionally with a port). If the input URL\nmatches any of the entries in `NO_PROXY`, then the input URL should be fetched\nby a direct request (i.e. without a proxy).\n\nMatching follows the following rules:\n\n- `NO_PROXY=*` disables all proxies.\n- Space and commas may be used to separate the entries in the `NO_PROXY` list.\n- If `NO_PROXY` does not contain any entries, then proxies are never disabled.\n- If a port is added after the host name, then the ports must match. If the URL\n does not have an explicit port name, the protocol's default port is used.\n- Generally, the proxy is only disabled if the host name is an exact match for\n an entry in the `NO_PROXY` list. The only exceptions are entries that start\n with a dot or with a wildcard; then the proxy is disabled if the host name\n ends with the entry.\n\nSee `test.js` for examples of what should match and what does not.\n\n### \\*\\_PROXY\n\nThe environment variable used for the proxy depends on the protocol of the URL.\nFor example, `https://example.com` uses the \"https\" protocol, and therefore the\nproxy to be used is `HTTPS_PROXY` (_NOT_ `HTTP_PROXY`, which is _only_ used for\nhttp:-URLs).\n\nThe library is not limited to http(s), other schemes such as\n`FTP_PROXY` (ftp:),\n`WSS_PROXY` (wss:),\n`WS_PROXY` (ws:)\nare also supported.\n\nIf present, `ALL_PROXY` is used as fallback if there is no other match.\n\n\n## External resources\nThe exact way of parsing the environment variables is not codified in any\nstandard. This library is designed to be compatible with formats as expected by\nexisting software.\nThe following resources were used to determine the desired behavior:\n\n- cURL:\n https://curl.haxx.se/docs/manpage.html#ENVIRONMENT \n https://github.com/curl/curl/blob/4af40b3646d3b09f68e419f7ca866ff395d1f897/lib/url.c#L4446-L4514 \n https://github.com/curl/curl/blob/4af40b3646d3b09f68e419f7ca866ff395d1f897/lib/url.c#L4608-L4638 \n\n- wget: \n https://www.gnu.org/software/wget/manual/wget.html#Proxies \n http://git.savannah.gnu.org/cgit/wget.git/tree/src/init.c?id=636a5f9a1c508aa39e35a3a8e9e54520a284d93d#n383 \n http://git.savannah.gnu.org/cgit/wget.git/tree/src/retr.c?id=93c1517c4071c4288ba5a4b038e7634e4c6b5482#n1278 \n\n- W3:\n https://www.w3.org/Daemon/User/Proxies/ProxyClients.html \n\n- Python's urllib:\n https://github.com/python/cpython/blob/936135bb97fe04223aa30ca6e98eac8f3ed6b349/Lib/urllib/request.py#L755-L782 \n https://github.com/python/cpython/blob/936135bb97fe04223aa30ca6e98eac8f3ed6b349/Lib/urllib/request.py#L2444-L2479\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/97/2b/b13c6aff59f86b95e9b608bfd472751cd7372a280226043cee918ed8e45ff242235d928ebe7d12debe5c351e03324b0edfeb5d54218e34f04b71452a0add b/frontend/.npm-cache/_cacache/content-v2/sha512/97/2b/b13c6aff59f86b95e9b608bfd472751cd7372a280226043cee918ed8e45ff242235d928ebe7d12debe5c351e03324b0edfeb5d54218e34f04b71452a0add new file mode 100644 index 0000000..cc1d1e4 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/97/2b/b13c6aff59f86b95e9b608bfd472751cd7372a280226043cee918ed8e45ff242235d928ebe7d12debe5c351e03324b0edfeb5d54218e34f04b71452a0add differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/a7/5d/96966b3e905d9c89179f9badcfc13efe42fb82bec064885a5b8304d38d4f7b47352dbebb2cd4971540e9b4a04fac4aff578b69381661724def8d23872341 b/frontend/.npm-cache/_cacache/content-v2/sha512/a7/5d/96966b3e905d9c89179f9badcfc13efe42fb82bec064885a5b8304d38d4f7b47352dbebb2cd4971540e9b4a04fac4aff578b69381661724def8d23872341 new file mode 100644 index 0000000..3c0512e --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/a7/5d/96966b3e905d9c89179f9badcfc13efe42fb82bec064885a5b8304d38d4f7b47352dbebb2cd4971540e9b4a04fac4aff578b69381661724def8d23872341 @@ -0,0 +1 @@ +{"_id":"es-errors","_rev":"4-df089f891c962764c4960eba2190445c","name":"es-errors","dist-tags":{"latest":"1.3.0"},"versions":{"1.0.0":{"name":"es-errors","version":"1.0.0","description":"A simple cache for a few of the JS Error constructors.","main":"index.js","exports":{"./range":"./range.js","./syntax":"./syntax.js","./type":"./type.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run lint","test":"npm run tests-only","tests-only":"nyc tape 'test/**/*.js'","posttest":"aud --production","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/ljharb/es-errors.git"},"keywords":["javascript","ecmascript","error","typeerror","syntaxerror","rangeerror"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ljharb/es-errors/issues"},"homepage":"https://github.com/ljharb/es-errors#readme","devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","eclint":"^2.8.1","eslint":"^8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.4","typescript":"next"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"es-errors@1.0.0","gitHead":"5835d8c23d2f619428b0ef0bd05ef08ecb72e728","_nodeVersion":"21.6.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-yHV74THqMJUyFKkHyN7hyENcEZM3Dj2a2IrdClY+IT4BFQHkIVwlh8s6uZfjsFydMdNHv0F5mWgAA3ajFbsvVQ==","shasum":"1936450fb8cff7bffb969335d0e55dfca7279aab","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-errors/-/es-errors-1.0.0.tgz","fileCount":14,"unpackedSize":10370,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCYM4klVhIBx+i7N9nTQ2S6/NLapA18SUy1BFX2Xu14MgIgT7LVJy/cN98YDlzUlR5/p0fVMefGKh+UNxU/73K34vM="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es-errors_1.0.0_1706982425537_0.8078971843530083"},"_hasShrinkwrap":false},"1.1.0":{"name":"es-errors","version":"1.1.0","description":"A simple cache for a few of the JS Error constructors.","main":"index.js","exports":{".":"./index.js","./range":"./range.js","./syntax":"./syntax.js","./type":"./type.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run lint","test":"npm run tests-only","tests-only":"nyc tape 'test/**/*.js'","posttest":"aud --production","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/ljharb/es-errors.git"},"keywords":["javascript","ecmascript","error","typeerror","syntaxerror","rangeerror"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ljharb/es-errors/issues"},"homepage":"https://github.com/ljharb/es-errors#readme","devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","eclint":"^2.8.1","eslint":"^8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.4","typescript":"next"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"es-errors@1.1.0","gitHead":"0d313ff157891c52a9058ad32f0781826714c024","types":"./index.d.ts","_nodeVersion":"21.6.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-ka/z/Hxav2YGgkzSwOp1ugbUk6fgIX5gI69PfRHCvODD+LuVOnV1jHPBWXBNPZqX0O900p2I+IdM9sEbac0BNA==","shasum":"acecff0a2153327941db643567274bffa880aaf6","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-errors/-/es-errors-1.1.0.tgz","fileCount":16,"unpackedSize":10841,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDFwy7X9wWvPJGKyIlg03rnLovdBOiJ5Zsd9Yiy007rCAiAX7fdrKHVy4Nz/UUSOaTSw9khqnNxXJjd8/TBFmW930g=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es-errors_1.1.0_1707116315017_0.369220664386797"},"_hasShrinkwrap":false},"1.2.0":{"name":"es-errors","version":"1.2.0","description":"A simple cache for a few of the JS Error constructors.","main":"index.js","exports":{".":"./index.js","./range":"./range.js","./syntax":"./syntax.js","./type":"./type.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run lint","test":"npm run tests-only","tests-only":"nyc tape 'test/**/*.js'","posttest":"aud --production","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/ljharb/es-errors.git"},"keywords":["javascript","ecmascript","error","typeerror","syntaxerror","rangeerror"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ljharb/es-errors/issues"},"homepage":"https://github.com/ljharb/es-errors#readme","devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","eclint":"^2.8.1","eslint":"^8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.4","typescript":"next"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"es-errors@1.2.0","gitHead":"af93ecb57181ff073a54ecbf98ce44eaf67ebe16","types":"./index.d.ts","_nodeVersion":"21.6.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-RK1K0AOWJaoi12wgFsZn9egKajnMZCS842+ieXUnOykJo8tes2jeAYTEgrLsgtMpGQry8GleQF+ySbhQuDtpOA==","shasum":"5eb0e7072b870a59a9a3fe4c073f53e0dfe16fc4","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-errors/-/es-errors-1.2.0.tgz","fileCount":18,"unpackedSize":11363,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGXDRxfxAXGyzETslBM27SVjyW0xw6qZ3DA5cODirLpvAiBdcBlVmcISwbjrv1RVUpbD4VrdchHc9g4FJ74Y5IBHww=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es-errors_1.2.0_1707118443629_0.911362692049142"},"_hasShrinkwrap":false},"1.2.1":{"name":"es-errors","version":"1.2.1","description":"A simple cache for a few of the JS Error constructors.","main":"index.js","exports":{".":"./index.js","./range":"./range.js","./ref":"./ref.js","./syntax":"./syntax.js","./type":"./type.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run lint","test":"npm run tests-only","tests-only":"nyc tape 'test/**/*.js'","posttest":"aud --production","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/ljharb/es-errors.git"},"keywords":["javascript","ecmascript","error","typeerror","syntaxerror","rangeerror"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ljharb/es-errors/issues"},"homepage":"https://github.com/ljharb/es-errors#readme","devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","eclint":"^2.8.1","eslint":"^8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.4","typescript":"next"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"es-errors@1.2.1","gitHead":"060e1a50cc1002e2f527ccc62a5ba6fe1fcfe382","types":"./index.d.ts","_nodeVersion":"21.6.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-pxzkrX6Jf/KtJH+qn7qyy8XQjNLwcLiU2gL6+gozhYXKBE8DoTaeCn3Tobb324QI6Fe3L8FuaVUMUaWtnSCRRw==","shasum":"84e6f247b599ad90c3c6a5a9aa29f0d76e431586","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-errors/-/es-errors-1.2.1.tgz","fileCount":18,"unpackedSize":11620,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID8/vFN3EJsy5tLcYx0CCRsVqtdAKXnw07Z8HniCiipeAiEA+e+rvMLc7mJeO/8UoptmPkmDIJSnD3Y/Z9C6mV30sls="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es-errors_1.2.1_1707118542227_0.4165144148790261"},"_hasShrinkwrap":false},"1.3.0":{"name":"es-errors","version":"1.3.0","description":"A simple cache for a few of the JS Error constructors.","main":"index.js","exports":{".":"./index.js","./eval":"./eval.js","./range":"./range.js","./ref":"./ref.js","./syntax":"./syntax.js","./type":"./type.js","./uri":"./uri.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run lint","test":"npm run tests-only","tests-only":"nyc tape 'test/**/*.js'","posttest":"aud --production","prelint":"evalmd README.md","lint":"eslint --ext=js,mjs .","postlint":"tsc -p . && eclint check $(git ls-files | xargs find 2> /dev/null | grep -vE 'node_modules|\\.git' | grep -v dist/)","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/ljharb/es-errors.git"},"keywords":["javascript","ecmascript","error","typeerror","syntaxerror","rangeerror"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/ljharb/es-errors/issues"},"homepage":"https://github.com/ljharb/es-errors#readme","devDependencies":{"@ljharb/eslint-config":"^21.1.0","@types/tape":"^5.6.4","aud":"^2.0.4","auto-changelog":"^2.4.0","eclint":"^2.8.1","eslint":"^8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.7.4","typescript":"next"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"es-errors@1.3.0","gitHead":"5599cf0ebe75cc3685445f83ca80207a357fdb12","types":"./index.d.ts","_nodeVersion":"21.6.0","_npmVersion":"10.2.4","dist":{"integrity":"sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==","shasum":"05f75a25dab98e4fb1dcd5e1472c0546d5057c8f","tarball":"https://mirrors.huaweicloud.com/repository/npm/es-errors/-/es-errors-1.3.0.tgz","fileCount":22,"unpackedSize":12324,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB9oyZ1iz6ddiQ0hSHcteY+wIu25XXiptEEQhkkx3bYGAiBWZenaYPP6g7e44zJTox9VjnaLBcI86WMLI6ZYGtQXXA=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/es-errors_1.3.0_1707120351218_0.3446157096886493"},"_hasShrinkwrap":false}},"time":{"created":"2024-02-03T17:47:05.536Z","1.0.0":"2024-02-03T17:47:05.695Z","modified":"2024-02-05T08:05:51.669Z","1.1.0":"2024-02-05T06:58:35.184Z","1.2.0":"2024-02-05T07:34:03.799Z","1.2.1":"2024-02-05T07:35:42.428Z","1.3.0":"2024-02-05T08:05:51.479Z"},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"description":"A simple cache for a few of the JS Error constructors.","homepage":"https://github.com/ljharb/es-errors#readme","keywords":["javascript","ecmascript","error","typeerror","syntaxerror","rangeerror"],"repository":{"type":"git","url":"git+https://github.com/ljharb/es-errors.git"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"bugs":{"url":"https://github.com/ljharb/es-errors/issues"},"license":"MIT","readme":"# es-errors [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nA simple cache for a few of the JS Error constructors.\n\n## Example\n\n```js\nconst assert = require('assert');\n\nconst Base = require('es-errors');\nconst Eval = require('es-errors/eval');\nconst Range = require('es-errors/range');\nconst Ref = require('es-errors/ref');\nconst Syntax = require('es-errors/syntax');\nconst Type = require('es-errors/type');\nconst URI = require('es-errors/uri');\n\nassert.equal(Base, Error);\nassert.equal(Eval, EvalError);\nassert.equal(Range, RangeError);\nassert.equal(Ref, ReferenceError);\nassert.equal(Syntax, SyntaxError);\nassert.equal(Type, TypeError);\nassert.equal(URI, URIError);\n```\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n## Security\n\nPlease email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report.\n\n[package-url]: https://npmjs.org/package/es-errors\n[npm-version-svg]: https://versionbadg.es/ljharb/es-errors.svg\n[deps-svg]: https://david-dm.org/ljharb/es-errors.svg\n[deps-url]: https://david-dm.org/ljharb/es-errors\n[dev-deps-svg]: https://david-dm.org/ljharb/es-errors/dev-status.svg\n[dev-deps-url]: https://david-dm.org/ljharb/es-errors#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/es-errors.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/es-errors.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/es-errors.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=es-errors\n[codecov-image]: https://codecov.io/gh/ljharb/es-errors/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/ljharb/es-errors/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/ljharb/es-errors\n[actions-url]: https://github.com/ljharb/es-errors/actions\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/a8/06/51bcfcdf7561ed7da99e1063f642fb9ff37f0d85eae0477e68f84b95c81e57bd203df31a1de6be2eb6f8b84c9df2c267af9b6f7483d9ec086e4caf2add59 b/frontend/.npm-cache/_cacache/content-v2/sha512/a8/06/51bcfcdf7561ed7da99e1063f642fb9ff37f0d85eae0477e68f84b95c81e57bd203df31a1de6be2eb6f8b84c9df2c267af9b6f7483d9ec086e4caf2add59 new file mode 100644 index 0000000..aeff253 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/a8/06/51bcfcdf7561ed7da99e1063f642fb9ff37f0d85eae0477e68f84b95c81e57bd203df31a1de6be2eb6f8b84c9df2c267af9b6f7483d9ec086e4caf2add59 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/a9/dd/f1a13501783ae6f739991f7de2c80f3674091c139e61a171249ce4186c7d39ac0bf7d724af5aecad2c9e3a33e7ef26646d06ccef45211ce469ebf79642f9 b/frontend/.npm-cache/_cacache/content-v2/sha512/a9/dd/f1a13501783ae6f739991f7de2c80f3674091c139e61a171249ce4186c7d39ac0bf7d724af5aecad2c9e3a33e7ef26646d06ccef45211ce469ebf79642f9 new file mode 100644 index 0000000..80f5aa4 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/a9/dd/f1a13501783ae6f739991f7de2c80f3674091c139e61a171249ce4186c7d39ac0bf7d724af5aecad2c9e3a33e7ef26646d06ccef45211ce469ebf79642f9 @@ -0,0 +1 @@ +{"_id":"has-symbols","_rev":"11-be2020b00b7958b01a41a76a09e5b397","name":"has-symbols","dist-tags":{"latest":"1.1.0"},"versions":{"1.0.0":{"name":"has-symbols","version":"1.0.0","keywords":["Symbol","symbols","typeof","sham","polyfill","native","core-js","ES6"],"author":{"url":"http://ljharb.codes","name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"has-symbols@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"contributors":[{"url":"http://ljharb.codes","name":"Jordan Harband","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/has-symbols#readme","bugs":{"url":"https://github.com/ljharb/has-symbols/issues"},"dist":{"shasum":"ba1a8f1af2a0fc39650f5c850367704122063b44","tarball":"https://mirrors.huaweicloud.com/repository/npm/has-symbols/-/has-symbols-1.0.0.tgz","integrity":"sha512-QfcgWpH8qn5qhNMg3wfXf2FD/rSA4TwNiDDthKqXe7v6oBW0YKWcnfwMAApgWq9Lh+Yu+fQWVhHPohlD/S6uoQ==","signatures":[{"sig":"MEUCIQCraijP8TUgset3RP/0apBanH6US79uNIP6cuXhcXO2XAIgcC1SUirdAx9l8oZX/ALh1KkxopaC+SvsCad2NUwNfMs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ba1a8f1af2a0fc39650f5c850367704122063b44","engines":{"node":">= 0.4"},"gitHead":"e4a5e7028c87d509902ff292f4da3ea45c7c50cf","scripts":{"lint":"eslint *.js","test":"npm run --silent tests-only","pretest":"npm run --silent lint","posttest":"npm run --silent security","security":"nsp check","prepublish":"safe-publish-latest","test:shams":"npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs","test:stock":"node test","tests-only":"npm run --silent test:stock && npm run --silent test:staging && npm run --silent test:shams","test:staging":"node --harmony --es-staging test","test:shams:corejs":"node test/shams/core-js.js","test:shams:getownpropertysymbols":"node test/shams/get-own-property-symbols.js"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"repository":{"url":"git://github.com/ljharb/has-symbols.git","type":"git"},"_npmVersion":"3.10.3","description":"Determine if the JS environment has Symbol support. Supports spec, or shams.","directories":{},"_nodeVersion":"6.6.0","dependencies":{},"devDependencies":{"nsp":"^2.6.1","tape":"^4.6.0","eslint":"^3.5.0","core-js":"^2.4.1","safe-publish-latest":"^1.0.1","@ljharb/eslint-config":"^8.0.0","get-own-property-symbols":"^0.9.2"},"_npmOperationalInternal":{"tmp":"tmp/has-symbols-1.0.0.tgz_1474328796481_0.2780582248233259","host":"packages-12-west.internal.npmjs.com"}},"1.0.1":{"name":"has-symbols","version":"1.0.1","keywords":["Symbol","symbols","typeof","sham","polyfill","native","core-js","ES6"],"author":{"url":"http://ljharb.codes","name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"has-symbols@1.0.1","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"contributors":[{"url":"http://ljharb.codes","name":"Jordan Harband","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/has-symbols#readme","bugs":{"url":"https://github.com/ljharb/has-symbols/issues"},"dist":{"shasum":"9f5214758a44196c406d9bd76cebf81ec2dd31e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/has-symbols/-/has-symbols-1.0.1.tgz","fileCount":14,"integrity":"sha512-PLcsoqu++dmEIZB+6totNFKq/7Do+Z0u4oT0zKOJNl3lYK6vGwwu2hjHs+68OEZbTjiUE9bgOABXbP/GvrS0Kg==","signatures":[{"sig":"MEUCIQCCFSo29lhXirX0Rs+Cuj11qyhheYjpANIVYXAMEcNrhwIgGt53b4yRyWBuEHwcnk8h23iA8dpWARLe+Ojp9kyWxO8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15474,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd0I28CRA9TVsSAnZWagAAt2AP/jan/+oerqF7TJJ1/7C0\nDib5YuePKj9dBimLNNxyNbDCo9+XGPPXoDd5OuGVQ8hePAe0pFxsenbtyT+Y\n+empPCZMrgUJfP7Umo6FYPE7EChp7ES7pPua2oeoKzMhK3xH+sBXj9MQ60Al\nunwIhq1k0idyeHT/9iJegP+wGF5pDe/EZUVbzt9r6JU4WhCNopdta+BZwIRP\nmE/NCdPjZ2jHbjYVJlT7b7uFrA4KXtRXtaJKhy97biek3xfgP4WLKvRaPTKo\nlTXtw/UXk8L42RYfJFlIJ2nyLeorwS6QObZPi9tB8BmIogvrSjthvcVL6DSN\nWJTjxpu43zbRS6mHK5nBAnXcshB/mvM9E8hTxrhG2jfSwAR3RexMLsOqgEsH\nTUTxRdB4Zox0nUD7rSahulvEtjl0bCRwo+oeuNfNDgf34sAjhIsaBMzH1rQY\nuTI8DKB4s1wKbth7YWUvacPay0+vvIbJnq4AMjoIDXezAKdDVIG6zB5rt5vN\nPxaAnRkB2htFP8MEHbqAvhk2ibqGdQvdVW2QPeTjDc7bXeymiXI93nrZyiw6\nq5alXDWN8ubB8A9A7HvKa+XU3dsOoYW/Ypx/h/ca17m0Gc0LwfJ2o0lC4sLQ\n3akrlFDjuBdlt2tWWzCRD5e7av8jJZ5C5ZKBeRkL2Xod4iyMFAD5wtefsXvR\nELxD\r\n=shCA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"132fe9ce5c2e443e0570606d4568a242eb86b5f5","scripts":{"lint":"eslint *.js","test":"npm run --silent tests-only","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"npx aud","prepublish":"safe-publish-latest","test:shams":"npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs","test:stock":"node test","tests-only":"npm run --silent test:stock && npm run --silent test:staging && npm run --silent test:shams","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","test:staging":"node --harmony --es-staging test","test:shams:corejs":"node test/shams/core-js.js","test:shams:getownpropertysymbols":"node test/shams/get-own-property-symbols.js"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"repository":{"url":"git://github.com/ljharb/has-symbols.git","type":"git"},"_npmVersion":"6.12.1","description":"Determine if the JS environment has Symbol support. Supports spec, or shams.","directories":{},"_nodeVersion":"13.1.0","dependencies":{},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"tape":"^4.11.0","eslint":"^6.6.0","core-js":"^2.6.10","auto-changelog":"^1.16.2","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^15.0.1","get-own-property-symbols":"^0.9.4"},"_npmOperationalInternal":{"tmp":"tmp/has-symbols_1.0.1_1573948860346_0.7408930604026625","host":"s3://npm-registry-packages"}},"1.0.2":{"name":"has-symbols","version":"1.0.2","keywords":["Symbol","symbols","typeof","sham","polyfill","native","core-js","ES6"],"author":{"url":"http://ljharb.codes","name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"has-symbols@1.0.2","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"contributors":[{"url":"http://ljharb.codes","name":"Jordan Harband","email":"ljharb@gmail.com"}],"homepage":"https://github.com/inspect-js/has-symbols#readme","bugs":{"url":"https://github.com/inspect-js/has-symbols/issues"},"dist":{"shasum":"165d3070c00309752a1236a479331e3ac56f1423","tarball":"https://mirrors.huaweicloud.com/repository/npm/has-symbols/-/has-symbols-1.0.2.tgz","fileCount":14,"integrity":"sha512-chXa79rL/UC2KlX17jo3vRGz0azaWEx5tGqZg5pO3NUyEJVB17dMruQlzCCOfUvElghKcm5194+BCRvi2Rv/Gw==","signatures":[{"sig":"MEUCICmk/GnP0bgLMLKwOsqmi85pgPZF8i7IN0E1zAWz8kQIAiEA7agW7tNwD7vJ3WADcThU+35O/hHKm2DzykwgXewNWdU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18056,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgOnPHCRA9TVsSAnZWagAA+tEP/296p4+KYc4qJLrX0uxY\nDA8r08WOCWwnIEHw6X1O12XSFB4d0bMTA1vIZEAl/GosbM4wvVdO4JWYaxL+\nAe8m2GxNjz3KXswq4SELhwf8c6xk3Q294qHiUeByfvxK4OwfyKyZ7iI4YnV/\n4jT/FE+AOlNqdAO3izGfm94UW8X1g/6S2X82JTxKngl1/YoAOraEjtD+XF2f\nPTcL4SmyoL7xTTMtPEOSXRAB73Y2KeNbFC8Ee1r/vU0C62MscsFD6Whc3lH4\naxT1ccSUO8YUftLzdMJY3R6jqF8ZKAx7rYdPPDEkm4fJ/MAsw9pQKKf71Dnf\nDAYBAGsFByUVGraRgWXx01w6NnVNbHqBBbLlTK1e0JpCvrSpkFpX/kfERpEB\nhaFUc8n7SDIeAFgBidagI5HYHwbUmlPkZ46NXZcL0xLMx8SNXyRvImsXOR5m\nnV6ReVLSJP/VmTFYjOVuFsteXU2Ot7ZtnHy/eOP8WXYuWn02CuqFC+i8xFxn\nEXCqT3wC1ObdFkV9E2WGVQpB6U2UoJCiRQJO0KjP+arqcS22zL+IXDgGxr/a\nw8f4erWtCTSJquDY9+P7VCSbjGTxfmkunAXUcwMCEiVfLc8wwrg+vHJF3Sgi\n2QqXRdNu1JKHGXfnpnJm1rj2oZV9/5ZjYQFB+CeWM70TyKrYeTgysG0pa8y5\nc8++\r\n=JCcn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"32b16a3809db3bbb463df501c3984a333f1979f3","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"safe-publish-latest","test:shams":"npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs","test:stock":"nyc node test","tests-only":"npm run test:stock && npm run test:staging && npm run test:shams","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","test:staging":"nyc node --harmony --es-staging test","test:shams:corejs":"nyc node test/shams/core-js.js","test:shams:getownpropertysymbols":"nyc node test/shams/get-own-property-symbols.js"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"repository":{"url":"git://github.com/inspect-js/has-symbols.git","type":"git"},"_npmVersion":"7.5.6","description":"Determine if the JS environment has Symbol support. Supports spec, or shams.","directories":{},"greenkeeper":{"ignore":["core-js"]},"_nodeVersion":"15.10.0","_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^1.1.4","nyc":"^10.3.2","tape":"^5.2.0","eslint":"^7.20.0","core-js":"^2.6.12","auto-changelog":"^2.2.1","safe-publish-latest":"^1.1.4","@ljharb/eslint-config":"^17.5.1","get-own-property-symbols":"^0.9.5"},"_npmOperationalInternal":{"tmp":"tmp/has-symbols_1.0.2_1614443462507_0.38046500905605685","host":"s3://npm-registry-packages"}},"1.0.3":{"name":"has-symbols","version":"1.0.3","keywords":["Symbol","symbols","typeof","sham","polyfill","native","core-js","ES6"],"author":{"url":"http://ljharb.codes","name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"has-symbols@1.0.3","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"contributors":[{"url":"http://ljharb.codes","name":"Jordan Harband","email":"ljharb@gmail.com"}],"homepage":"https://github.com/ljharb/has-symbols#readme","bugs":{"url":"https://github.com/ljharb/has-symbols/issues"},"dist":{"shasum":"bb7b2c4349251dce87b125f7bdf874aa7c8b39f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/has-symbols/-/has-symbols-1.0.3.tgz","fileCount":13,"integrity":"sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==","signatures":[{"sig":"MEUCIQDwzczMy98ycY151XrPoURp8chFzfXRYegRhpOydLT8UgIgb/6c33xTl81h3biIUwEWPJAVPlOf6E2AEaWCvLmPOck=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20603,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiHo7dACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoJTg//VKZyTT/GxVMPZNQFC6Q05AQ+zwFmm1ePSsyP3+hebhjz0KMZ\r\nZh8Z3oaFj53lk6p6hl6wJgJh8v+4H8tYi90zewuk2/sv/r4gS8KKOJkEU5hS\r\nExpiO/FlpW1EBW0kHcPOLiYkyvhm5iNX17o0qUXw62EVu9pFdzLuMLtoVch9\r\n0RC3armyFU5YXjpr4lQCbHCAK6okYFFh6BGQYB0k/to/o1YZ3QijFZ7cDlyl\r\nUSH33b6VFsD9gVT6pVYGmhwPfbxrUzvgpmMeJqdL940V3BgVDu9h/lXFDpvC\r\nyf9vmUEiVkcxeiIbJuusCQjMbPT31uYDaAYY+W+v4pbD552jb/7Gm2ttl1uV\r\n1yx9J3M5aKbjZWMVfRinlfGoyUIs0rpxhSsQTp84skwPLkXC1YfODYNhy4+o\r\nVR5GNTIDDOB4i4y7lGVvx7Vd4ySP+Tz9YpmFI9ZrCnEVXggUn9y+PU8R19UJ\r\nrOVAYikVzsyC5PT9PKr2lvITXDb8siGUNt8YmJhZupzv3K+I5sEojmpqCGvP\r\nW748lmzXQAFYUY/BL1/zChahtp6w5mBaX79uF/xO7h/owukFCK2Y1Seyz4HP\r\nFzn6kDQM+TcUD9GlOhy1OsSLVhuK+gbGupNtSG52OaR9JVtmxSzd83TujaTF\r\ncDmeevwmNQi4Gnt70AILlnaCxXanGrp0epk=\r\n=B5Gh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","engines":{"node":">= 0.4"},"funding":{"url":"https://github.com/sponsors/ljharb"},"gitHead":"444dc14d035df9891743a28cbc5d6ecdb0cb3b01","scripts":{"lint":"eslint --ext=js,mjs .","test":"npm run tests-only","pretest":"npm run --silent lint","version":"auto-changelog && git add CHANGELOG.md","posttest":"aud --production","prepublish":"not-in-publish || npm run prepublishOnly","test:shams":"npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs","test:stock":"nyc node test","tests-only":"npm run test:stock && npm run test:staging && npm run test:shams","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","test:staging":"nyc node --harmony --es-staging test","prepublishOnly":"safe-publish-latest","test:shams:corejs":"nyc node test/shams/core-js.js","test:shams:getownpropertysymbols":"nyc node test/shams/get-own-property-symbols.js"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"repository":{"url":"git://github.com/inspect-js/has-symbols.git","type":"git"},"_npmVersion":"8.5.2","description":"Determine if the JS environment has Symbol support. Supports spec, or shams.","directories":{},"greenkeeper":{"ignore":["core-js"]},"_nodeVersion":"17.6.0","_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"aud":"^2.0.0","nyc":"^10.3.2","tape":"^5.5.2","eslint":"=8.8.0","core-js":"^2.6.12","auto-changelog":"^2.4.0","safe-publish-latest":"^2.0.0","@ljharb/eslint-config":"^20.2.3","get-own-property-symbols":"^0.9.5"},"_npmOperationalInternal":{"tmp":"tmp/has-symbols_1.0.3_1646169820978_0.6668045837242529","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"has-symbols","version":"1.1.0","description":"Determine if the JS environment has Symbol support. Supports spec, or shams.","main":"index.js","scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublishOnly":"safe-publish-latest","prepublish":"not-in-publish || npm run prepublishOnly","pretest":"npm run --silent lint","test":"npm run tests-only","posttest":"npx npm@'>=10.2' audit --production","tests-only":"npm run test:stock && npm run test:shams","test:stock":"nyc node test","test:staging":"nyc node --harmony --es-staging test","test:shams":"npm run --silent test:shams:getownpropertysymbols && npm run --silent test:shams:corejs","test:shams:corejs":"nyc node test/shams/core-js.js","test:shams:getownpropertysymbols":"nyc node test/shams/get-own-property-symbols.js","lint":"eslint --ext=js,mjs .","postlint":"tsc -p . && attw -P","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git://github.com/inspect-js/has-symbols.git"},"keywords":["Symbol","symbols","typeof","sham","polyfill","native","core-js","ES6"],"author":{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"},"contributors":[{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"}],"funding":{"url":"https://github.com/sponsors/ljharb"},"license":"MIT","bugs":{"url":"https://github.com/ljharb/has-symbols/issues"},"homepage":"https://github.com/ljharb/has-symbols#readme","devDependencies":{"@arethetypeswrong/cli":"^0.17.0","@ljharb/eslint-config":"^21.1.1","@ljharb/tsconfig":"^0.2.0","@types/core-js":"^2.5.8","@types/tape":"^5.6.5","auto-changelog":"^2.5.0","core-js":"^2.6.12","encoding":"^0.1.13","eslint":"=8.8.0","get-own-property-symbols":"^0.9.5","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.9.0","typescript":"next"},"testling":{"files":"test/index.js","browsers":["iexplore/6.0..latest","firefox/3.0..6.0","firefox/15.0..latest","firefox/nightly","chrome/4.0..10.0","chrome/20.0..latest","chrome/canary","opera/10.0..latest","opera/next","safari/4.0..latest","ipad/6.0..latest","iphone/6.0..latest","android-browser/4.2"]},"engines":{"node":">= 0.4"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"publishConfig":{"ignore":[".github/workflows","types"]},"_id":"has-symbols@1.1.0","gitHead":"270f0a67b5f4cb12715e0a84e672aaee64d1b4f1","types":"./index.d.ts","_nodeVersion":"23.3.0","_npmVersion":"10.9.0","dist":{"integrity":"sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==","shasum":"fc9c6a783a084951d0b971fe1018de813707a338","tarball":"https://mirrors.huaweicloud.com/repository/npm/has-symbols/-/has-symbols-1.1.0.tgz","fileCount":16,"unpackedSize":23409,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF8x/EqV+UP9DHENsIE3EVXyr+eJmruhJMX/I20Kir5qAiBXFpPwfPeilfKB2tA5veWAt3IQCKUoZvQmWlBnFqJaCQ=="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/has-symbols_1.1.0_1733157257422_0.9728260191448548"},"_hasShrinkwrap":false}},"time":{"created":"2016-09-19T23:46:36.740Z","modified":"2024-12-02T16:34:17.942Z","1.0.0":"2016-09-19T23:46:36.740Z","1.0.1":"2019-11-17T00:01:00.460Z","1.0.2":"2021-02-27T16:31:02.668Z","1.0.3":"2022-03-01T21:23:41.133Z","1.1.0":"2024-12-02T16:34:17.679Z"},"bugs":{"url":"https://github.com/ljharb/has-symbols/issues"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"},"license":"MIT","homepage":"https://github.com/ljharb/has-symbols#readme","keywords":["Symbol","symbols","typeof","sham","polyfill","native","core-js","ES6"],"repository":{"type":"git","url":"git://github.com/inspect-js/has-symbols.git"},"description":"Determine if the JS environment has Symbol support. Supports spec, or shams.","contributors":[{"name":"Jordan Harband","email":"ljharb@gmail.com","url":"http://ljharb.codes"}],"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"readme":"# has-symbols [![Version Badge][2]][1]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![dependency status][5]][6]\n[![dev dependency status][7]][8]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][11]][1]\n\nDetermine if the JS environment has Symbol support. Supports spec, or shams.\n\n## Example\n\n```js\nvar hasSymbols = require('has-symbols');\n\nhasSymbols() === true; // if the environment has native Symbol support. Not polyfillable, not forgeable.\n\nvar hasSymbolsKinda = require('has-symbols/shams');\nhasSymbolsKinda() === true; // if the environment has a Symbol sham that mostly follows the spec.\n```\n\n## Supported Symbol shams\n - get-own-property-symbols [npm](https://www.npmjs.com/package/get-own-property-symbols) | [github](https://github.com/WebReflection/get-own-property-symbols)\n - core-js [npm](https://www.npmjs.com/package/core-js) | [github](https://github.com/zloirock/core-js)\n\n## Tests\nSimply clone the repo, `npm install`, and run `npm test`\n\n[1]: https://npmjs.org/package/has-symbols\n[2]: https://versionbadg.es/inspect-js/has-symbols.svg\n[5]: https://david-dm.org/inspect-js/has-symbols.svg\n[6]: https://david-dm.org/inspect-js/has-symbols\n[7]: https://david-dm.org/inspect-js/has-symbols/dev-status.svg\n[8]: https://david-dm.org/inspect-js/has-symbols#info=devDependencies\n[11]: https://nodei.co/npm/has-symbols.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/has-symbols.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/has-symbols.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=has-symbols\n[codecov-image]: https://codecov.io/gh/inspect-js/has-symbols/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/inspect-js/has-symbols/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/inspect-js/has-symbols\n[actions-url]: https://github.com/inspect-js/has-symbols/actions\n","readmeFilename":"README.md","users":{"flumpus-dev":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/ae/92/72376db629622f1c9fc5e775d266fd1997f69c72a1d1f1eb7592968c4c3fdf2c2471b55f225fc73333363bb1566ea53237cdc51383c7b2712da4345f65eb b/frontend/.npm-cache/_cacache/content-v2/sha512/ae/92/72376db629622f1c9fc5e775d266fd1997f69c72a1d1f1eb7592968c4c3fdf2c2471b55f225fc73333363bb1566ea53237cdc51383c7b2712da4345f65eb new file mode 100644 index 0000000..a5e6878 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/ae/92/72376db629622f1c9fc5e775d266fd1997f69c72a1d1f1eb7592968c4c3fdf2c2471b55f225fc73333363bb1566ea53237cdc51383c7b2712da4345f65eb differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/b0/f5/38b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be b/frontend/.npm-cache/_cacache/content-v2/sha512/b0/f5/38b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be new file mode 100644 index 0000000..99e170d Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/b0/f5/38b95edd625bed589c70c311c3d0fba285536213b4f201b439496c43081f66518bce82ba103b061040e28f27c0886c4fb51135653a82b5502da7537818be differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/b1/34/9f063a17069f3d26f20a21e7eac3b53608279bb1cef892263a6b0886a202ada1219b823604fc6ffe97db05dcc5853cd73d21ca0e0b83837ca1dfc459a9d2 b/frontend/.npm-cache/_cacache/content-v2/sha512/b1/34/9f063a17069f3d26f20a21e7eac3b53608279bb1cef892263a6b0886a202ada1219b823604fc6ffe97db05dcc5853cd73d21ca0e0b83837ca1dfc459a9d2 new file mode 100644 index 0000000..70d7fae Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/b1/34/9f063a17069f3d26f20a21e7eac3b53608279bb1cef892263a6b0886a202ada1219b823604fc6ffe97db05dcc5853cd73d21ca0e0b83837ca1dfc459a9d2 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/b4/4e/344913b043c6cb44f95c2624c754a142cf1631ae5223a31b46d8000d293f26505e552b9258351acf2aa1ac2294d64dc40bd2bbba46fa54da42e749f074c7 b/frontend/.npm-cache/_cacache/content-v2/sha512/b4/4e/344913b043c6cb44f95c2624c754a142cf1631ae5223a31b46d8000d293f26505e552b9258351acf2aa1ac2294d64dc40bd2bbba46fa54da42e749f074c7 new file mode 100644 index 0000000..269c730 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/b4/4e/344913b043c6cb44f95c2624c754a142cf1631ae5223a31b46d8000d293f26505e552b9258351acf2aa1ac2294d64dc40bd2bbba46fa54da42e749f074c7 @@ -0,0 +1 @@ +{"_id":"core-js","_rev":"446-810c956919423f1f78a4c0c1c8b195d1","name":"core-js","dist-tags":{"beta":"3.0.0-beta.20","alpha":"4.0.0-alpha.0","latest":"3.49.0"},"versions":{"0.0.3":{"name":"core-js","version":"0.0.3","_id":"core-js@0.0.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f4e1c0cf19c8c5b287d9b53f91efe0bedecb0c0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.0.3.tgz","integrity":"sha512-55bFsI/+YMQlpqGtqZboT9aT8GYoBe1WzOrwkNLsGcaQorpam5NQjDNFApEuG54oYD3KymZgyJvz/fWHJnx1mA==","signatures":[{"sig":"MEYCIQCr+0qUB0oibk1Ss7e76xXOvL5Qwsl3PIiwsmjETlBuQwIhAOqKP4AgbwXjiUl5CB6EgtUGLJHcG7Yu7xSKljA9/qIV","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.3.14","directories":{},"devDependencies":{"grunt":"*","LiveScript":"*","grunt-livescript":"*","load-grunt-tasks":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*"}},"0.0.4":{"name":"core-js","version":"0.0.4","_id":"core-js@0.0.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"a91325d6a70d70130d7ab69e7dea8bd38fad9426","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.0.4.tgz","integrity":"sha512-09HwCta2snFhE2lzbXtaPXgilCr/Nv/xIZB6zc/+Etqgusg9bmtClNyKW0bhvmiRFVPvaM00FfxheFFLZzQ4mA==","signatures":[{"sig":"MEUCIQCiDjt65EsCEzq56qiMYuKMKkfvS5II7TfX6TA5qBvPDwIgHcm7ZfBBtXOwilDwSjH+8oOuZtzjfAbuJLgtYfqOl14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.3.14","description":"Blahblahblah","directories":{},"devDependencies":{"grunt":"*","LiveScript":"*","grunt-livescript":"*","load-grunt-tasks":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*"}},"0.0.5":{"name":"core-js","version":"0.0.5","_id":"core-js@0.0.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"dbb38b5db672b4e2608e6696e5d3bf3a1bd34623","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.0.5.tgz","integrity":"sha512-OXqm0GYVsdhtI94xzcH6KLbaFOjv8iN0EeMivf7B6pfCtk87gU5j8wdR9W0+Ljfcr8ClFlhXayq5fUJ9xhAsCw==","signatures":[{"sig":"MEUCIBKV+Z/7ISRBzKfHXdmqWrlNKEtdFktMuq6HO3OW164VAiEAwSzWrPaiHqxaf+AZK7trRlIknPJQc0YkgzEG4r1FXiI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.3.14","description":"Blahblahblah","directories":{},"devDependencies":{"grunt":"*","LiveScript":"*","grunt-livescript":"*","load-grunt-tasks":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*"}},"0.0.7":{"name":"core-js","version":"0.0.7","_id":"core-js@0.0.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6cf89eb404a465daf7a87126c2ce984ca49b06dc","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.0.7.tgz","integrity":"sha512-MZgy20Ijy7hI+3Y9cMy/91mouprgHDxu6LesJ/wfUH8t2MjXeXi4dD2AX0l9UfDWeG48FUgn7+MrSH4m+A/MLQ==","signatures":[{"sig":"MEUCIQCMqmzmO7bl/n8WVFmRUBHE0R87vlawrrIVBsKhIB4usgIgT11EtToNpHQtRkTWFO/ryYsJSe4WbgaOF+q7aKo9MeY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.3","description":"Standard library","directories":{},"devDependencies":{"grunt":"*","karma":"*","LiveScript":"*","karma-qunit":"*","grunt-livescript":"*","load-grunt-tasks":"*","karma-ie-launcher":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*","karma-opera-launcher":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.0.8":{"name":"core-js","version":"0.0.8","_id":"core-js@0.0.8","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"536814a9fbc04690dbd9ceafb6a6eabf5dc9c8b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.0.8.tgz","integrity":"sha512-Jbcz9K7+Td+ZH1CfOFobSYDsarM4QF4IbO7MkrVyFpeKxeCpi2nfdrfSpkrc9MxkfbJQhfWGSYidMmvdJl7BoQ==","signatures":[{"sig":"MEUCIQC2N88N4gaJg5Gb5uwhJf75gVmIZqt26H4++3oHxEcy+AIgDZmxGYF4SuqvliIGhDGXQ6NUb1h+HH1ElNVb/z7oLXM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"536814a9fbc04690dbd9ceafb6a6eabf5dc9c8b1","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.9","description":"Standard library","directories":{},"devDependencies":{"grunt":"*","karma":"*","LiveScript":"*","karma-qunit":"*","grunt-livescript":"*","load-grunt-tasks":"*","karma-ie-launcher":"*","grunt-contrib-watch":"*","grunt-contrib-uglify":"*","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.0.9":{"name":"core-js","version":"0.0.9","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.0.9","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2399247cbf247536d7b3383380d93930f4a09afb","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.0.9.tgz","integrity":"sha512-eD1MophaF3b99j60bTk5fdELApolr9gvpMJ5ngAB1Gkyb88kcGa2nF+jQysJXGLLAh+EbobfDF4f5HHGtXRhVw==","signatures":[{"sig":"MEUCIQDVkuOPLdNaIcbIk6x9FucfgCtnyNfCSZxdSGRn402fWgIgNjvoXo1DwPb55uETqxj2Av+pSo8pYfPk5+6TxPhnmx8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2399247cbf247536d7b3383380d93930f4a09afb","gitHead":"c44b5dd25c2a11ce19912ad9a3d5b628567d6e2d","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.1.1":{"name":"core-js","version":"0.1.1","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.1.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"114590095d45e4eb514397cde679eae5d76b9f4d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.1.1.tgz","integrity":"sha512-0yoyo6z1gcemh1s77xjDVR8yudEFJofa/loK12o9zPaoELA95y9uI0RFYoehKmBPy/hYdvDhhJTpXybS9OpOFA==","signatures":[{"sig":"MEYCIQD8MJvRAypUkLoD6S9IkRwapsXy6a55NJ1tGSzDmBp4xAIhAJfospL1u/zFKNwESJsQwxObyL48aNuzt64ky3GJB6wU","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"114590095d45e4eb514397cde679eae5d76b9f4d","gitHead":"60e55ff12eadae08f73ecfbacb6d7d57915f9e89","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.1.2":{"name":"core-js","version":"0.1.2","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.1.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1bfd6e8d4e6a93e273340e76c5e80d656ca6c0c0","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.1.2.tgz","integrity":"sha512-FJDdiM992TrGXvsH0V3+rEY8IcoUUCHJ44BUCRHHCBxcNPtndfm6O2SpJhqDJpVrzfe9WfIz0jx5oYwb8qfg0Q==","signatures":[{"sig":"MEUCIFTT/txLbU/23dvYMNDLd4AWItpzmJtbc6+yIE5GTsjOAiEA9UvAcY4zMYoCr8FB5R59LVFAVqVgQDr4j4u0LDQ10BQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1bfd6e8d4e6a93e273340e76c5e80d656ca6c0c0","gitHead":"27f8322e2d101f33dc7a98a1d38f67126bd5a86a","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.1.3":{"name":"core-js","version":"0.1.3","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.1.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"4965597610e68baf59c431b332fbd7d3d1074acc","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.1.3.tgz","integrity":"sha512-mQUHPtUecOH5K4/3mWqkCX2KP+zlqlu+VmmQc5fDYIXKe9+eP9n25/zK2U55HGxz3ZOMqgJdDpHGfxQlzxHDUQ==","signatures":[{"sig":"MEUCIQDyOl1qLkrDLPhGppvIzcWuSK5L5tY1yT+J3sI9yAEjpQIgHjjutBa56eKcsPSWmKY204MQa5pDJRsTzOhloIoTNUU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4965597610e68baf59c431b332fbd7d3d1074acc","gitHead":"f2d5df8d272dfeabbecc6ff398530a648bdcab43","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.1.4":{"name":"core-js","version":"0.1.4","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.1.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3e8bcb90d6d34746d3c434ff37afdecc18ad1271","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.1.4.tgz","integrity":"sha512-/pZjetxaum3G3x7rKTCISqBDZH52lBo4L2ieNiMTvoJ01jfZVzrAR4SXur1kin7sE7OHVTaAH5wjhzr4AaZqiA==","signatures":[{"sig":"MEUCIQCVvRTeWve1zsoivteT8TeEjSSKeNTYqLuJD+vZhgFeoQIgTVvI3DhRvWe2awjM2B/2Irhut3RC1i/sS8x9qfZcLr4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3e8bcb90d6d34746d3c434ff37afdecc18ad1271","gitHead":"751f5a70773016da6bfee2f4b7876fce217104eb","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.1.5":{"name":"core-js","version":"0.1.5","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.1.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"24fc7d9a08aa333057e8668454371e6b90713d2a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.1.5.tgz","integrity":"sha512-s7E8cNVQFRrQwYVk4mB7ZAZsPS/bLs0fNDneloOZzGJ9wjwBO91L3DRaN4bLjSgUF7GlRa5ajZUJOlmFKZbw5w==","signatures":[{"sig":"MEYCIQDVOMBWa2LzJyK23kBGNkGOh4ssyt6GueGSXC+QGvkfkgIhAP7m0GHn/IZevm8XYjeH5atqEPd0dyhIMfmWS+i/njSu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"24fc7d9a08aa333057e8668454371e6b90713d2a","gitHead":"25600fab9fd84dbb51068859a84244179201c661","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.2.0":{"name":"core-js","version":"0.2.0","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.2.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8710e0cd5a898f5a118ae627729f0c4ddf92c600","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.2.0.tgz","integrity":"sha512-SCltwaq34NDGgmF3563Y4QmxMnD8UrXONJPP3t4dtbfuSRgG5Tl54xwZg6NGczzPA14crGZFsfb653TG0r+7nA==","signatures":[{"sig":"MEYCIQCcUpdL5Grw4y+dYugIR/9aduU5+m87XPrVAoSbpMRobQIhAMbYstAa8W25d6WwrT55m9kDVEIe87FUmfHuMs26IQyX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8710e0cd5a898f5a118ae627729f0c4ddf92c600","gitHead":"40de2aab09c78ba6a4cfc6f66aab2d989638b49f","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.2.1":{"name":"core-js","version":"0.2.1","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.2.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f5d5ecf3065d4083dded402629834cd5c7630669","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.2.1.tgz","integrity":"sha512-7lbilCG09uWj3u/rmYHUhLTK50nPghIsk4mhbj6X4D0gXbCeeuiJkA3ltM5b8h7grc6xmvamZyXkyjf6v8PsJQ==","signatures":[{"sig":"MEYCIQCtgrnvHjISX3TCsS0XAsA/W4dheDbmTPUZvUMszuyblAIhAOeLx/tO5dtq9cLzIzSwBxto5CrMGGAogsf+clO7IjXG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f5d5ecf3065d4083dded402629834cd5c7630669","gitHead":"280fcfe4422cfa34235a5a7667d578fddd2a023e","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.2.2":{"name":"core-js","version":"0.2.2","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.2.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b95ffd5dde7b1b17c861909485e691503859744e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.2.2.tgz","integrity":"sha512-GC+t17tkbyKr4iao4QzRsjKkX8H92PBpyGfJDvV5WXXUCtDyMssChFtfGFzTh2rQEDoQiHFboedmFjy+amd03A==","signatures":[{"sig":"MEYCIQDcn9UFRyLNHTsxJIFRZjJyptdXncoSNg5MprdxVFrwVQIhAIiYRn/IFQeShkCYdMAiCRJngSfNAsawCoGpNlTHLfBb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b95ffd5dde7b1b17c861909485e691503859744e","gitHead":"30fc135c56cc92d63f55df5b37e038803f2de37e","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.2.3":{"name":"core-js","version":"0.2.3","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.2.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ac2f3255f53fc6fb16709e1deebd0247c90b93f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.2.3.tgz","integrity":"sha512-3mp+1rteJcVgNk3+oZeUqb2JSQG/w45G6cTSh2d/2EemQFotVxnxWceSijGstlisJ8jKWkXBso46LXJtN2hksQ==","signatures":[{"sig":"MEUCIQDI6XUWBUrAHY966kNFRQo/X3KkZvojaG/lSO/XxLBb0gIgJOciTjIAcbbOL//Q4w5IAwVuWRz44DC2n6vxphe5RiM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ac2f3255f53fc6fb16709e1deebd0247c90b93f8","gitHead":"52334df9c651851f12f01fc990714921b182d6e9","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.2.4":{"name":"core-js","version":"0.2.4","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.2.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"54f05951c9e33b16275a6be2da48258910baa012","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.2.4.tgz","integrity":"sha512-geAbdZ5CZCjTX4MsB0qax49KSYIjellJyzukURE9hFU35a7OmExovmQ6WMQhUzes3WiruVttiFOuj+Kjvb1BEg==","signatures":[{"sig":"MEUCIQDnsJs+WijHYLoMFqG8At0RjLTf/3qSEBTTYcxL3S87VwIgA5/ehtpZxQKzm4DfDBRvd/Rb8lzcLViwmunLSSS9UR8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"54f05951c9e33b16275a6be2da48258910baa012","gitHead":"c954109b96edb2a8e24d97e94e45e2196886403c","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.2.5":{"name":"core-js","version":"0.2.5","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.2.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"35f880367ebb2c4e6b0ceb1f7e34eec30a28e947","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.2.5.tgz","integrity":"sha512-crDwfLikgTeMi736lBMf815i99oTRq8TFHtVTBOjj/hSLk75j3u5rkJ30iA4TKedb9Osjss0+XX4xQ2EPRWdZg==","signatures":[{"sig":"MEQCIHb8CHW7uCRf8ZCvwOIvQS1V8IKpNJQdFmWi9ig7WAFdAiAfB1yLYA+c7HV222/O6Iz3FiItFeQqIhy0KdRDJYSztg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"35f880367ebb2c4e6b0ceb1f7e34eec30a28e947","gitHead":"e5fa6eb9912b67bff6f15677af902b4455af979c","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.3.0":{"name":"core-js","version":"0.3.0","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.3.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"82009e91a14b4266c58f81a5be9499d9d958f29b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.3.0.tgz","integrity":"sha512-i2GONPH/Tdq7ujSB2bjqNo75RESMVkmcyjkP+2WGvkHybf7ichDW7pdBLxzECBtIuiT43a+idggTRvyTKo3znw==","signatures":[{"sig":"MEUCIQDQMwcO+J9xTImrlf4tWso9W4nJi+QTROLb/j3+Za1BNgIgPhii2QwRoxVEbdjW+IHKcOez3TWjlgT5c/sAaUjGPzA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"82009e91a14b4266c58f81a5be9499d9d958f29b","gitHead":"cbb75eeb2e1d8061c626608ca61193b47a425f80","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.3.1":{"name":"core-js","version":"0.3.1","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.3.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"cd89200e0402bd8900bbc515b56f160b18a34b4b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.3.1.tgz","integrity":"sha512-QlYZt7PP2zzZ8oqzdB6BxzbsbiIZ7KkkKWES2fBFA7Ioey5F/wEUJ24JJP++H0Rr+9KHBuQLCLgk/vUFhMASMg==","signatures":[{"sig":"MEUCIQCqqAWYvWa8VcbqE3Mz5EfULZ5slSLahGO9ReEzDFcW8AIgTnjoB8MwtbQbdzV+36YEHV7orGOCG9VAvKMBtljqk5I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"cd89200e0402bd8900bbc515b56f160b18a34b4b","gitHead":"c4eee1575ae4152d8a5e00f0d59b53b859c469c3","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.3.2":{"name":"core-js","version":"0.3.2","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.3.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"a36ed7cdf516288fa6a331da6bbff2b0d56615f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.3.2.tgz","integrity":"sha512-47DaGrVuoIA6wHOGGEhpsoihgIl+N2De8p9M3bxU978eEKy9FEDRWHnLDgdp6uLZSmKIIIRONyim8ThpWcsfIA==","signatures":[{"sig":"MEYCIQCFN7P9+I5blRzWp7nqPEoA6qi3v1eRLfQ7BQhueQgp0QIhAKe/+8usqYdYMF3gq1IPE7kKmbB3U+tRSguzR52GTPGr","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a36ed7cdf516288fa6a331da6bbff2b0d56615f7","gitHead":"6cc70610ab78a379f142bbd25367f4345faf88ab","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.3.3":{"name":"core-js","version":"0.3.3","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.3.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b1c88a674186598c664fb0dbf7afe9e33bc8556c","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.3.3.tgz","integrity":"sha512-bZSnFmPoqGkLnhNx1/BkVBod3W+53oNSIMlzEAhB8T4ZzE6hf738S30yqoRCPcAevfamfSaj79cbvjnTLyWRUg==","signatures":[{"sig":"MEYCIQDuQ3m76F/e0kXsGMVnHeJaI9fD3wEnok2GKT7Aov2kYgIhANOGKTjCoxu8tp8vh7KW877/rzV52LtanWzeakSUSnhZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b1c88a674186598c664fb0dbf7afe9e33bc8556c","gitHead":"50e4759747fd477578d81ac418153ffff46a392f","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.0":{"name":"core-js","version":"0.4.0","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.4.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f9be410adb5b53f200752d0c918e0d7191e3f4cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.0.tgz","integrity":"sha512-kqYzUZqBfvXB5xBBewZx0X6ieqIRIa4S7Gh/FECkkQjA8V3uYmFFnKOl2F8ij0FwElnDyMYvDBumUH5hmCgjgQ==","signatures":[{"sig":"MEUCIC2HC2twb1TwGWytiDVbGmIvMudRylkSjFGcOXcx65HjAiEApHqq/hvhQFmPQhQF4WTjQJE0IWEnHbk9pw5iy3laEj0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f9be410adb5b53f200752d0c918e0d7191e3f4cf","gitHead":"0047c9862ee5f68b39258d0d0f7e383f055bb147","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.1":{"name":"core-js","version":"0.4.1","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.4.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"dd86d304a366f892f7651a26868a3154449abc96","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.1.tgz","integrity":"sha512-kwIvj1ImKJXHlutOIOx8LXNVo4WWay90H0pk9URTEtFRd3eJAEnJ/fht10okqKn4v/42dvLRBhISBDHe49plXA==","signatures":[{"sig":"MEQCIGaT8wgm1MH7x3UpJsPgASxRdP2Mdbfukw/5NjT23lKKAiB74WHemFmHxpY50BTJ3xVSmIXJISSinJ3m/vyF9cCQZQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"dd86d304a366f892f7651a26868a3154449abc96","gitHead":"c723557ebbd29f078ed93f815055ef0c2cf69a5b","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.2":{"name":"core-js","version":"0.4.2","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.4.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2831457113f89e4672aa215c93b2d1bf1d6df505","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.2.tgz","integrity":"sha512-OViAzlYEHbVbQOzjKt8byhaKtLQVw3sziD3dE7KM2thvyezO29OLdKislewXqhDq2BQdz2S8wQd1VvgxRxjYCw==","signatures":[{"sig":"MEUCIQDGn2TvOAVZuoo+mVf8KzZbNOzl2qrFDEJwaP4hvTu1qQIgIVL5u7EoRNpqc3HB9IauC7rMriOCZMB2znP/OLFhVWM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2831457113f89e4672aa215c93b2d1bf1d6df505","gitHead":"968f50de5b51fc97c932da010149654cede7b8e2","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.3":{"name":"core-js","version":"0.4.3","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","console"],"_id":"core-js@0.4.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8fb8f386d58ea31364f1bfd01167377d224a7f0b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.3.tgz","integrity":"sha512-oDF8h1+9wdTiReOtI9wYPFz3qyU5TrEQkJvN6kVbLgSTpL/AIYhresydPkogRStUtW0BVMdvO23VagM+R0raqw==","signatures":[{"sig":"MEQCIFL7PQ20iWBMdpPl7l39jrmxuojVMbpQE9DfD7XEKSFDAiBCDrPlWBpvMOivOyOGpzDJCZ2t5Sdt0cDODzXwtxu1jA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8fb8f386d58ea31364f1bfd01167377d224a7f0b","gitHead":"0be6165d187463052adaf3a6ec2e818832a7b96e","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.4":{"name":"core-js","version":"0.4.4","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"_id":"core-js@0.4.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ae713589e18c569cf71dbc172efd2779e4034ebc","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.4.tgz","integrity":"sha512-0nkG9YWGRy8K97DAkYl6nZj2ULqlFto1pYhMdn8Bs6+18kYyD45Yw0MZe4gyRUbUQJSbHh3CsLzlG+9SRMa4GQ==","signatures":[{"sig":"MEUCIQC5z4jb/eC5VjImnCfzgL6qA70y8+xCHbfkGL+ku+E4FgIgeC22JJotVoIdrSftWuF4jBzIQdiEBWvaIn/VN3WytK4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ae713589e18c569cf71dbc172efd2779e4034ebc","gitHead":"f398278fd221579a5e31d493fa0a3b4efd7e5e31","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.5":{"name":"core-js","version":"0.4.5","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"_id":"core-js@0.4.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b6702b018de4691c1f1c04dcdf9742f8d9cd346c","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.5.tgz","integrity":"sha512-7wpXN9sgWragd5In1V1wzI1QW4tNFxK5+BgDSNkSKcETAD77sEUNbNYZyMU+fd6vCVO8ASi/jFPcv+9orOSHfg==","signatures":[{"sig":"MEQCIAwDScmGZ3aDyL0pAFnFkSoTXfctqroAdHNCdK7LGjD3AiAAisUdSdhwkHcmbuFqoX539pD8Z61psNkjzpI7eyCbRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b6702b018de4691c1f1c04dcdf9742f8d9cd346c","gitHead":"9e90c836b1d6413dc64dc63f7a02d4da130e0bb3","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.6":{"name":"core-js","version":"0.4.6","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"_id":"core-js@0.4.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b5517f6e64cdce74487f5bc2916fdb14a19178d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.6.tgz","integrity":"sha512-V/o9FtD2GtxrOTrww+7F3nIDXDnFTWIptgfXYg2VVMhql03iJFaUKcELpofo79zBrD9/+mQmnUNtycYvOQqiwA==","signatures":[{"sig":"MEYCIQCAUtAEL+jgU3H/1aY95L2l9h8wamiwSffEahx5UM4LagIhANLb48tdgbNVe0ttRfZ7wsk6l8Wx3YsHOjNsVjxJs4h0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b5517f6e64cdce74487f5bc2916fdb14a19178d6","gitHead":"a7e68969b40c7da76ee8993063259efcd09c7bca","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.7":{"name":"core-js","version":"0.4.7","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"_id":"core-js@0.4.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"fb093880aa229e90e365f141bc2b7b733a7091bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.7.tgz","integrity":"sha512-yPhtF4yFA5UH8Q02pMW5U2fmH7VMuCclY5LLSVBk0cDEziAnil2y2Ngw7Iz0Rx6JuJE5iG58VImTqo/OB+oWdw==","signatures":[{"sig":"MEYCIQCt1+bZhIrdPpqkR1nZMkd5F2GuOyJIWtvjLAlduv1GzwIhAM9+qsrA4GFcwYMibCnx1Lwun7YT7gL6lCTvuISqFYF0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fb093880aa229e90e365f141bc2b7b733a7091bf","gitHead":"2caccaaeb701fcf4fcf88ed6a3e31f6f8e40cc26","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.8":{"name":"core-js","version":"0.4.8","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"_id":"core-js@0.4.8","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"aa9207a661aebc4f102cc9334ac50ce94fd29718","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.8.tgz","integrity":"sha512-M3SGi1AFEnnYSKosMgrvG1n4dKEIkv74km+PrYAw0OCPDn9joWqPLkcfsaFZyX4RNHLl2ul0UZ7CKnvwM7c5wg==","signatures":[{"sig":"MEUCIDJM/dpDLYEFG7dctwl+oowclr8S3H0nn82NZG81Hqj7AiEA0DA6mrIaSKVLFEazXB4dpyn/izCxPJbaWO1Sp3M2zBk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"aa9207a661aebc4f102cc9334ac50ce94fd29718","gitHead":"0d5575c68e3dac6469c76c91ad0de3b787a74218","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.9":{"name":"core-js","version":"0.4.9","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"_id":"core-js@0.4.9","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e1721aa812e5d64f29fa7a5ad3cdea7de6d93f2e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.9.tgz","integrity":"sha512-ySuMCoZNN/RBRWeE2C5SYqSk5OzECvv0NP9CBS/OseyuVwvrQyj6FF9pr6bKAz8qxT+rgccvagFCaWeNInZ2rg==","signatures":[{"sig":"MEYCIQCD7nFOO/prOo3I9ZPgpo1qfp8ybN7WhVSz0wC7yYjjVQIhAPsSzLP1i9X5NSYOw4zxSUprNarpcioRwm5+nFKyMpIa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e1721aa812e5d64f29fa7a5ad3cdea7de6d93f2e","gitHead":"d87ce9b8bb35eb9b7fa3f86d3fbb1884bf51e843","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.4.10":{"name":"core-js","version":"0.4.10","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"_id":"core-js@0.4.10","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"4fa7adc298d1c716371e639694e261761a24074f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.4.10.tgz","integrity":"sha512-suenoMpQefVOUij0YVUUm/pXg/8pqXLF8WvqRk3a8CLpO1ZbIZCn/t1t6NklG3pS2XI5EPqnsacN1NMoLE0TeA==","signatures":[{"sig":"MEUCIQD3E8OopP7yHDIUqcWOzStvXJuK/iV3R4HxmuKwOApxBAIgQFXXqZ0o7q9SbBNQ9bIulK5JwagkXUuJsgEc2wFcQ3s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4fa7adc298d1c716371e639694e261761a24074f","gitHead":"f7ad3700494c695aef316288ab18e42a315b6192","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"1.4.28","description":"Standard library","directories":{},"devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.5.0":{"name":"core-js","version":"0.5.0","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.5.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e92e960b82a10a19b5d0896290f33d64242abe01","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.5.0.tgz","integrity":"sha512-gI2I104LfpSRHYfprYyQpM6+y//jAVzIrIgoOGmokFpiLGs9GActV+/+17SPtzB8FVdQLTRRojply2wkymtWXg==","signatures":[{"sig":"MEUCIFMDDhUDZUEPYBqu87fA9gYpjsF+C5DCZJ7WYmginZ8GAiEAsvDcodJh4NErmCCGMdUOm/EaPvQ0gRtvK6Eke22DvI0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e92e960b82a10a19b5d0896290f33d64242abe01","gitHead":"027456bfc5a9c81d963c1ceea840499d4e7d24d9","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.5.1":{"name":"core-js","version":"0.5.1","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.5.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f9f12c7990aee671b8d69356e06217877d505a83","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.5.1.tgz","integrity":"sha512-Krm6M8MVAB9RzZsJzlB3Fgl2pi6uZWxpCc3dwBxWV+STTJqEJOzd8pPNDBxSVukKNV0rQdH/dopx4LcfMNWvNg==","signatures":[{"sig":"MEUCIQCtKDJrCpMBzv8a4WsmNFU9Wd3e55h9xnU06wxpZGnxWAIgE2ZBaltldGR6E74QDH8UhSuEQ5/4rICg3XxlYF1lKag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f9f12c7990aee671b8d69356e06217877d505a83","gitHead":"81922fac08c43b32bd44b4a5646eaa309c14f14b","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.5.2":{"name":"core-js","version":"0.5.2","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.5.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"37cee659e183e3f09f997434650ac1b60cf0ea1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.5.2.tgz","integrity":"sha512-fBLDgIGR3j70gAJ4PDqu2JL0sv4XedAovLDaLAu5GmxkcydCKjHPKV4U+0U38MzIruhzLYFRJi97r1st+KSDNw==","signatures":[{"sig":"MEQCICHaU1MjpUb23ErjOcD9uI5u5sEmeDcYRJC8X4DqSL1oAiAxgT2TR6qX23GA3q9lLbBLBYnjJNFjz1VtJmE2lbD3Ag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"37cee659e183e3f09f997434650ac1b60cf0ea1e","gitHead":"2c1ba5040d401c152ae0ade847b6e154efccbfb7","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.5.3":{"name":"core-js","version":"0.5.3","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.5.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d4b329871a8bc025c481cdd2570dabc51abb5345","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.5.3.tgz","integrity":"sha512-WRB2b2DY8MserOJo7vxvzNTwAbcP9qSJULGWA+8eZ+5Bl6DRUppXzNt9LjTg/rsHK9O0RPJh3+HKm33qkKXeuA==","signatures":[{"sig":"MEQCICLJPU4+O4md/sbQcKkKIFxIGiMj4DhPPA2yuAYzXXghAiBEPZCrxP96Ud3B8k2cs5W4LZ0ahBJjOmBgf5EWX1OaSQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d4b329871a8bc025c481cdd2570dabc51abb5345","gitHead":"721d89001e962950976c3875bc230c77abec4c4d","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.5.4":{"name":"core-js","version":"0.5.4","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.5.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"04a9f2a0bb21946d98164634b4a7b990a3881296","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.5.4.tgz","integrity":"sha512-2aXgi6NSK3KDi+teS8rVlSn6UqWWWdjOkrhMKAgjR9JY9ns9/UZ+tcsRiTpGtzkNgqNmCL1Em/sKKJw7S2Qz8Q==","signatures":[{"sig":"MEQCICDV/2Qsdlk3iCTkuN506Td7BAYX8O3tRjMOHdCyUhUIAiB1T7U/9fUV5f6UApVp6+jzFfUyj6S7KZ6QNO2uq9UIRw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"04a9f2a0bb21946d98164634b4a7b990a3881296","gitHead":"1da83f881b0bdde2a453364505cb94a021bedc83","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.6.0":{"name":"core-js","version":"0.6.0","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.6.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"49dcd01ca323c5fd475b1826d96cb5ff49b631ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.6.0.tgz","integrity":"sha512-cjgw9N8is/Tnzjq07YlR6OfgsSXVev+0X6kkg1d9FGuEAfMzD+Eft1nInCc87jL5kQtSGQrkuKbH3sYDt/Hblg==","signatures":[{"sig":"MEYCIQDutNOw1wiNKE6DFfhwTleHNeTdkLgjriAuJ78UN/5v+gIhAILRxYsX+jH2jq3zrDMmEB5N5MUSDxkapX6nM3AqJ0Op","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"49dcd01ca323c5fd475b1826d96cb5ff49b631ec","gitHead":"e207ef3087a900c956bc5bf4f27e534e3293d9fe","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.6.1":{"name":"core-js","version":"0.6.1","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.6.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1b4970873e8101bf8c435af095faa9024f4b9b58","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.6.1.tgz","integrity":"sha512-ANdRS9QdyvvVCqMD7gvDhgI5T+/t5FELQB1ZLN94oCDXTJLwt4Q1o6Nbc1wnVrhl6QPyJ5mv0k8hMCdAFLNbLg==","signatures":[{"sig":"MEUCIQCdZ8f44T5+YSa66/xbsXhzQWL4MPB2+LRnpLikXTr8VAIgb0FHtMSNXiU+N5DaF1TqaRWAYQ5T8PFrDBjiM5Rz8Ak=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1b4970873e8101bf8c435af095faa9024f4b9b58","gitHead":"26fcc125a430e5b8f8860733df281a1387c9aaab","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"*","LiveScript":"1.3.x","karma-qunit":"*","grunt-livescript":"0.5.x","load-grunt-tasks":"0.4.x","karma-ie-launcher":"*","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.4.x","karma-opera-launcher":"*","promises-aplus-tests":"*","karma-chrome-launcher":"*","karma-firefox-launcher":"*"}},"0.7.0":{"name":"core-js","version":"0.7.0","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.7.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6ddd1387bda9e36e8ab07c3023d36e49fcf246c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.7.0.tgz","integrity":"sha512-FUlud03GlHN1qX+m9CakpmPqGK1nU42iWVISWZecr6F/lcVI6bZ7ChYYPoMK0Mr8XG4xW02P+quGbn0Ui2TSxw==","signatures":[{"sig":"MEYCIQDKNuearqgi/7yfnI8PcuCCx2vYYXQsxQ2k15TNE0n3IwIhANVC6Dnijmw+jzSCBtYLAcVJqYSMnmcKnStVGQFX5Xd3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6ddd1387bda9e36e8ab07c3023d36e49fcf246c7","gitHead":"1cc2e565a771df62759c00a31bb1ec68e8c79a90","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","LiveScript":"1.3.x","browserify":"9.0.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","load-grunt-tasks":"3.1.x","karma-ie-launcher":"0.1.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.8.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x"}},"0.7.1":{"name":"core-js","version":"0.7.1","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.7.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9e96488059e787134fc08f2c8f928e07551428e4","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.7.1.tgz","integrity":"sha512-ImlWOaJXIkQfF2BySyd9s0kzpuwerb2Do+vCW/IVTrKRmnoZf2z9YcPaD0mVrgWViLtyvCbFqHVg+PkkfUzMTg==","signatures":[{"sig":"MEUCIDSKRhE9hpHNR2uHJpHhFnMdsGmCfAQsWqwGbcDcLCrVAiEAhsNgYOvsz4TNJRJyBDhXSkHVn9RPx5CE5s8Ht6QeXj4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9e96488059e787134fc08f2c8f928e07551428e4","gitHead":"f0589b2872c23e23213f855863e3803782d1222b","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","LiveScript":"1.3.x","browserify":"9.0.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","load-grunt-tasks":"3.1.x","karma-ie-launcher":"0.1.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.8.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x"}},"0.7.2":{"name":"core-js","version":"0.7.2","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.7.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"132c4f67f0c4721ef9ff891b88db8d6dc743a7e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.7.2.tgz","integrity":"sha512-xecmRjXfkJrZ5JaDH/soYxZXSNVcVUwjUXgk8z+MNbVa7fpbB0iexyvxUpX0efUxqvB9BLKXBnJJTRI8l2//Qg==","signatures":[{"sig":"MEUCID4hiwS2en8RWzbeCQG1IV07yLb28VVUp9ACNvVd4lguAiEAuW2TpkpY4y2BdkpV0TraA8G+AcJo5AcyRiIqiVfGgbU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"132c4f67f0c4721ef9ff891b88db8d6dc743a7e8","gitHead":"44785c3c2791208e7b82e1df04a7427e362141bb","scripts":{"promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.3.0","description":"Standard library","directories":{},"_nodeVersion":"1.0.3","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","LiveScript":"1.3.x","browserify":"9.0.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","load-grunt-tasks":"3.1.x","karma-ie-launcher":"0.1.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.8.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x"}},"0.8.0":{"name":"core-js","version":"0.8.0","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.8.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f369c3a4b89b00c59d92f3e07765900f082a1d25","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.8.0.tgz","integrity":"sha512-M+e3INQ+Jyhg9eSn45i4e3+pRCYikn603DQ8N7goUPaYf3hncpQiAVH4QuVvWyvaFt7c05UML5138Goc+Pto/A==","signatures":[{"sig":"MEUCIQCPMA2xiPkCd7iQE9b0ebK5bv6vgzOZy9y8KSgbD3em5gIgHoDB8e+ymhYhIxfe7Cr5NrEs8UAd91OPX8zrZw6uC3U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f369c3a4b89b00c59d92f3e07765900f082a1d25","gitHead":"46dd9ae92d06f67f7bd38f3bcdbb6ab05f93af6f","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.18.x","LiveScript":"1.3.x","browserify":"9.0.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.8.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x"}},"0.8.1":{"name":"core-js","version":"0.8.1","keywords":["ES6","ECMAScript 6","ES7","ECMAScript 7","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","console cap","abstract references","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.8.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"15d81691a7f391b20a6eab693ffe84def62f80c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.8.1.tgz","integrity":"sha512-txqSZ+XFnENIRki2eDSL2YgTPiJ4FD5wSaNkEoWqRbzq8wmJxApT6pviafNUxAt5dUlv2Q39DSJXUMniEivJQQ==","signatures":[{"sig":"MEYCIQDziOBrWIIHcACqVSIE1RWJPsiTIhBz3hxH2qBeULIikQIhALUdWjYuKMfnQH8OXqGXGfkTZYutgEo8rStr4vq6bJpI","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"15d81691a7f391b20a6eab693ffe84def62f80c2","gitHead":"b2079af06ab3d875816482d41a3197ecf23951e9","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.18.x","LiveScript":"1.3.x","browserify":"9.0.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.8.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x"}},"0.8.2":{"name":"core-js","version":"0.8.2","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.8.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e1757e8472988be3f38e8289c8a582060e016503","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.8.2.tgz","integrity":"sha512-jIWlaM8FnJZvx4bNOvp/4YYc/3alpkOO8z4SPFnhp/vdJOUMNRCXeVkv7gbiJbCo3yQDjDpoEwLJje/S+eEkgg==","signatures":[{"sig":"MEYCIQC/FsMmB2pUHz5iGJrQWqpzf7ARQlEJSmxsrcHZR9PLGgIhAOOXCoBoMbXQubgDKpcMK7ut2iQYflUKHw0AYYs0ERo8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e1757e8472988be3f38e8289c8a582060e016503","gitHead":"815d8927dd5bd05819dfec0f720a654e1c980312","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.18.x","LiveScript":"1.3.x","browserify":"9.0.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.8.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x"}},"0.8.3":{"name":"core-js","version":"0.8.3","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.8.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3053499af01864221395ce9ab5743d9850b7b943","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.8.3.tgz","integrity":"sha512-BHK38gFvKbp67rpK4OE8pF6w+zGCfOtHRA3ng7IMpsXThI1yScytm3kA4cf7XzQXJrP1AWrFP7S2QZFp7nDNJw==","signatures":[{"sig":"MEYCIQCf9PbnkIcstVQXqQCfJ0EPLljv1NJGvD3UsANAIimj6AIhAINWvOAXUMFylpE9PnZiJNCjy/vm4YJ3ABNPZ6Jf3QpM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3053499af01864221395ce9ab5743d9850b7b943","gitHead":"658ca70798a268caff3c6e046da8e7104903bb18","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.18.x","LiveScript":"1.3.x","browserify":"9.0.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.8.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x"}},"0.8.4":{"name":"core-js","version":"0.8.4","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.8.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"c22665f1e0d1b9c3c5e1b08dabd1f108695e4fcf","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.8.4.tgz","integrity":"sha512-bboLSCHSSrHT9qQLaHhD1agFlnX5KWvvxjCVX1s4byHJupu6tlA1cIyB4isyPKCG7BPxV6hOyA9JuZSFeYLw6Q==","signatures":[{"sig":"MEQCIEJXWhY3lG3iVUU6blTJvKWYkObz81gKBWrNdHYs///dAiA4ThPQ2aURV2BcUMcTN7GqXPOH32m7P5YOM6c/jYEAtg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c22665f1e0d1b9c3c5e1b08dabd1f108695e4fcf","gitHead":"3bd0d73858f42c99f5a1208070c284d9f35f31b3","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.19.x","webpack":"1.8.x","LiveScript":"1.3.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x"}},"0.9.0":{"name":"core-js","version":"0.9.0","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8e08ef8c7cc54722a56967e0053c126f5771e7f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.0.tgz","integrity":"sha512-g79w6JM3/HdyStLqjo5BhHZ3kwoJQ5MgSm7C0cx5FD30fOR/T807LhPzy7KPZPKo5FQv/K4ksAamEQXmhhRxZg==","signatures":[{"sig":"MEUCIQDWEGLrDC80kcWnZGN65eTZlX0yNdPXVC0DMmbhz338+gIgcdvlui4HVhPaPqUTt2o0cnLq3ynNg0k0rqr+EUzF0rs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8e08ef8c7cc54722a56967e0053c126f5771e7f4","gitHead":"34533afcd007cfc3b1eda37602a4e5c7158934a2","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.19.x","webpack":"1.8.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.1":{"name":"core-js","version":"0.9.1","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f3093629e411dd8e2441d687582d50a78ab1fe48","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.1.tgz","integrity":"sha512-VprbdtT7Nu2IzrAo5GCgfIpkpyPuDGNaKOJmjOnK+vklg2w+gobjG9zD1B5JA3yqXXWF3Ym8YPmkfDED6+qSDQ==","signatures":[{"sig":"MEYCIQCgK8vDLy/bPWZDlkoua3qmY7OMK4cm6g5HLBo54DvZFQIhAIEjlfe0y+2GFFWIa8MvKgrdFzE5TBhdaGb8jr5UxGrj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f3093629e411dd8e2441d687582d50a78ab1fe48","gitHead":"ca3d3dc8257875d22995a11655b1c4cc64f981a3","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.8.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.2":{"name":"core-js","version":"0.9.2","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8fb07c81170269e431f7e378b5a39106297b1dcd","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.2.tgz","integrity":"sha512-a1CGpBhnMbKwqsH6xasIR5JBpB4ZWzSI/vorg649m0HIOUPS4PjJXpoGECBKkXN9gutSiUSsYHLOoI2wT0JQ7g==","signatures":[{"sig":"MEYCIQDreNpIVkEZPMREU7Jj/ItWCguC9ECMBPS9MOF7EJXUYQIhAOmdjH5aomFC1WI42z8XQdY1ABH6iO4r7IHJTLxfZ08u","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8fb07c81170269e431f7e378b5a39106297b1dcd","gitHead":"066cc1cc56d22bc0016f6d61c47b161f4eaa8f5c","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.8.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.3":{"name":"core-js","version":"0.9.3","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d699e05d0814ec39eab844e2ffafb41cfd3ecc44","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.3.tgz","integrity":"sha512-12t3lq3QcreDxQFszWqRZUijlVzL6anFqRXid3CdM8AQ3MjGZ/ipUz0HWCDKg/MN+E94wSBJeQxrpr+W4SrtyA==","signatures":[{"sig":"MEQCICCGNu0Pd4HjfJD77aLnXGYsxDaa0N89DAA7f8vOnYqIAiBN4kSgbbReTvMqFh59AFZeqM/WmMg3RWYPmil7JYocbw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"d699e05d0814ec39eab844e2ffafb41cfd3ecc44","gitHead":"06a151a94f0d23047c5a1e209719ce923dafd9db","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.8.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.4":{"name":"core-js","version":"0.9.4","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8dd2f6707662e94bccb2373f88deb9371d67cb59","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.4.tgz","integrity":"sha512-8O2m3Bd5aGHF8Krq7JZcYu5y352DPSGobyI2zSvE+DGu3PcugemztShGLbz3aQ026VUokGxIwuELqhpHJyojqQ==","signatures":[{"sig":"MEUCIQCDKgcnoUOrM9UzqEBmBK3t1fI7p0204q8uAe/qW2x8swIgCOHzUL1PgJZ2QWI8YL/plg3+OKYxazdwsTzFuKgk+PY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8dd2f6707662e94bccb2373f88deb9371d67cb59","gitHead":"d287492b07d6440d249400da10d720c752255b1e","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.8.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.5":{"name":"core-js","version":"0.9.5","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6382dccfcd8e40d1d505e6dc6dcc0838b4a4ec5a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.5.tgz","integrity":"sha512-+z8Gx0W67mwm1HV4omc7kFyUlglwbxy/lI3h0IBND9MjnA/c1CFcbaqQHol5jOezLWParodfcEQmaqWFU+LVqA==","signatures":[{"sig":"MEYCIQD3GKkdpkECvwW4YONI45ndMMPgfnq9wJhRRBhAKAU+TQIhAMLuyBTJ0AIzLfaBafRoVvfcfCsfC1eJhJMqz99e3mZ2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6382dccfcd8e40d1d505e6dc6dcc0838b4a4ec5a","gitHead":"cd1698262511ab872ed3ac71a7b52605b64df825","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.8.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.6":{"name":"core-js","version":"0.9.6","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"cde6fcf07f2ed4e6b6841152836e3872feee73db","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.6.tgz","integrity":"sha512-uNoULlAK5XJkCk7Zh6VZGngMFDwPw43iDHA0NFnOKlySlqpTbrj+fw5vrZ0hAhb1FE1O8acb+0jUwiUmwcNnvQ==","signatures":[{"sig":"MEUCIFsMT/zd7t2o3C4ugAZlbRCRVQpulq9THSrsJCchicC7AiEAlwIUjFhHpaVPXF1ZD81SrLyRYVUnggXEr/AZbgKs89U=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"cde6fcf07f2ed4e6b6841152836e3872feee73db","gitHead":"da2e002d801f4e064ecb6feccf6cb30ae40bd5d4","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.8.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.7":{"name":"core-js","version":"0.9.7","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8b7da390cd0c0bf120cabd6a64e1243fbc0596e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.7.tgz","integrity":"sha512-3UyHrJiNW8fRx9uJrnH1dQqpieNV7oCYgHXMpoUTWaUal4VHNyHpYj/9D0bi3rFO8Cmh28uotYfdqzbauLH8mw==","signatures":[{"sig":"MEYCIQDcw4+ff9ulYN15S3eEjHKbv9+KRI3wrOBwu+7nnURrOQIhAMR24UUoY4VznckOOP6+qxKWvO0Rss0XrWlOJvgJNDoo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8b7da390cd0c0bf120cabd6a64e1243fbc0596e0","gitHead":"8bf237f975a186f678ddf38256f85b32784ad81a","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.8.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.8":{"name":"core-js","version":"0.9.8","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.8","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"c584308ffd747964218d9a1b581ae06c8e3010ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.8.tgz","integrity":"sha512-pBjv0uC3dklPfLFtCQ0cG42HTEmVKszr8BwTxkZTwNlIGAPFBvFUoYfIMy7vF9eLrpv402kHvM8v6WX6PN8fFw==","signatures":[{"sig":"MEQCIGEGZuRB+VYH9JTEhBBjsfMO6eoDrb9FmG64U/0IuUjIAiB4qN762NbrFE8L2WGx63XF0fD9sEoABi4cm9KohT/oLg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c584308ffd747964218d9a1b581ae06c8e3010ed","gitHead":"bb1f0fb73bc8dc61c9b2ebbdeaaed98ecb06808e","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.9.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.9":{"name":"core-js","version":"0.9.9","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.9","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"14747a751c4305cb9baef31ced7ac0f29db292b0","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.9.tgz","integrity":"sha512-dD6Q87CMtV5PATtfgDlNl90D6/d/za6FBiBeWbEziRqXTA0fdo2ZCR0yJ0gyAhMsvBfuQfOl1dBDSsYjGBIRQw==","signatures":[{"sig":"MEYCIQDDqvLyeDnSKxA5BL9Pc4GHExSoJkw8WEWav81JkyFC4gIhAJuG8HzlbYqnOMPOhw+NtLZpxs1XZO02Cin31eS4gqlL","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"14747a751c4305cb9baef31ced7ac0f29db292b0","gitHead":"786e909eb37da744eee71aef2ce9437bc5c8f85b","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.9.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.10":{"name":"core-js","version":"0.9.10","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.10","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"961bec2ab11cc30eb45d5a0ede9a021df0a0fb4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.10.tgz","integrity":"sha512-QlqIkJd9j7gubCm2Cb5G0JGLwsGtb/invTnXq/ITQ6as4Vr823CX6Owgi7UxrB22g2voHtCbJhYtcDDQ9U4ENw==","signatures":[{"sig":"MEYCIQCFIPlj2byXhdVwZ1jL4tCOhOA0WNnjQ2K9yBQDidJ8xAIhAJztPt3cMrYKAgJplSx9ie84FgCV+SooH/wryfC0oaKl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"961bec2ab11cc30eb45d5a0ede9a021df0a0fb4a","gitHead":"648bb79be57a0d8c465c9a1bc99ad8c0f185d11f","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.20.x","webpack":"1.9.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.11":{"name":"core-js","version":"0.9.11","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.11","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0333c30c0bd85a4b2fff1da6578663775b3045d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.11.tgz","integrity":"sha512-sUcZHA1LAxjU+orALW4jtZGaxQERAO2kRz7Now7JqxKufXuY6ZpbJIpccjyalCQVRYAB2G7cGTf9Nrv+RzIyIg==","signatures":[{"sig":"MEUCIQDXXT9y9ptYS5axinp4rb8kXiZ50LfH8/sLq1OF36VQGAIgB+6xmfDL20ad/Y/HS1omyr4GQ1FdE9xcelHxJUfyJhk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"0333c30c0bd85a4b2fff1da6578663775b3045d3","gitHead":"05b4836bba45aec7af8536d13ace6f4f68cd73e2","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.21.x","webpack":"1.9.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.12":{"name":"core-js","version":"0.9.12","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.12","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"de9ab51243467698d6b7abe45420c2accc23474e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.12.tgz","integrity":"sha512-mpEijbGoaWOKUTEyUPQ86d1+ADpeeH8WMyvGmNNjV1VdKXrXfxil5HrgTJ96xxyPrN7ItKzhxae7QYXmsETaSw==","signatures":[{"sig":"MEQCIEwMpj3fweihp4VWin82rYKEEWp73WjbZQYf7wa9uhoIAiBrvXa1KeJfrI00+l+Omb7e0jboRTw9tcJteLqnuXlEgg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"de9ab51243467698d6b7abe45420c2accc23474e","gitHead":"218201829d27862a2ace3d0aecb7d3b85dc339a4","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.21.x","webpack":"1.9.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.13":{"name":"core-js","version":"0.9.13","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.13","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"16eec125ae9427b6b647d0adbaa12e92963ecb62","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.13.tgz","integrity":"sha512-AtE/kI8nab7qihfc78Zf30QjjLzs7zdx56MovlDn8ZTCmbXBtMgR3uKIobF3deQRKeS9UeHdAXbhaQRjjDggHg==","signatures":[{"sig":"MEUCIQD9LQP0fQ5e27jm21Y28vk+XEJ7GtsJ5Bxdjac9j3NvMwIgCp+ad3aHztRSX2Az6ms2UaQwagestXHJqBjfVjthCKA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"16eec125ae9427b6b647d0adbaa12e92963ecb62","gitHead":"9dfcfcfd4f5a58e1c3bb1d42fb2cdcbaaaf2d6a9","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.21.x","webpack":"1.9.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.10.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.1.x"}},"0.9.14":{"name":"core-js","version":"0.9.14","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.14","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"a079a4dabc8da7a2a28146d0efed248d86cbee47","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.14.tgz","integrity":"sha512-e8dHHYLwn/snvEwMoIrpVqZHGTjUOo8bs4iH8x8KkaPaWYikFY9yGZfys8wKZSeQ/2AiCb6tQuqTiE8OKGZZuA==","signatures":[{"sig":"MEUCIA33Wn8nEDmlsQintCPHYuNv6bC0PXtlHcTtepzkUUccAiEA6qVITgRVQ3kjWyo3kpkL74pBWXXjo0s4CUsh9fWnpVw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a079a4dabc8da7a2a28146d0efed248d86cbee47","gitHead":"c56966c210f1249e5c160478c40da2822de2038a","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.7.1","description":"Standard library","directories":{},"_nodeVersion":"1.6.2","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"^0.22.1","webpack":"1.9.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.11.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"0.9.15":{"name":"core-js","version":"0.9.15","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.15","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b2b75ba45ebba790fd2c2a3dd6e4c90d6f3977a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.15.tgz","integrity":"sha512-Oul3OdGIeH+T/SkQ2hCh95szkmxnPPUewxG1ZkRH6tSAwQ5g+1kl5XZCG9xLwnLcbzWghPt1XZhSSmUwQaZArw==","signatures":[{"sig":"MEUCIQCik1TCjLnWsT5MvPbr2olKCvzMvCOl0ug8if6V+tNcfAIgNbQNDY8FFvFOuHdV8kGhoCAZnGZ+sSN1XsXoBKkuYGA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b2b75ba45ebba790fd2c2a3dd6e4c90d6f3977a1","gitHead":"35eadac77ba4987f972254a942b05c378959c013","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.11.0","description":"Standard library","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"^0.22.1","webpack":"1.9.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.11.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.1.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"0.9.16":{"name":"core-js","version":"0.9.16","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.16","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"c62751204bd830ecb596b90744adefa58aab5df0","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.16.tgz","integrity":"sha512-QZpQGCtlB+us3izOgQ/m2LeUKnaXIV0EYvzvXiuYe16Ipz9hJLDcnKQ38zBT4uOWDKq9QRgYszHszRUgSG9UwA==","signatures":[{"sig":"MEUCIF4zEmUSLgfwT9fAMOuDkoFozfrqfWOE18KddQG9T05UAiEAmi6zIQnK5ni+ZORZwguK+xlF27DC0Rm/kI94yY5Zbgw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c62751204bd830ecb596b90744adefa58aab5df0","gitHead":"a4d472ff6852a9f924ec071cf29c2c747c6daf75","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.11.0","description":"Standard library","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"^0.22.1","webpack":"1.9.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.11.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"0.9.17":{"name":"core-js","version":"0.9.17","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.17","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"4b846cb8c0dbba85a8cc93da3338f440906ccf8d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.17.tgz","integrity":"sha512-vUMgD+L8yKQ1cv8Xo0EIpApJc53oUKyw1oEFwQ61lwdYc3GuoViPqJ5EZdNZnmEDXtcv/TIiX27wqqI9ZIa/Ng==","signatures":[{"sig":"MEYCIQCMVZzNIrdUrsMDwZ6jgYFfIY+oxvhcoOMO8trrPzMi7AIhAIGIPEfKZ67DlN9a5Uvo1UPRHuF+xVG4sBIc+hH8rzyM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4b846cb8c0dbba85a8cc93da3338f440906ccf8d","gitHead":"01b50a7b9496e89851f5a229a0a26f2335c202ee","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.11.0","description":"Standard library","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"^0.22.1","webpack":"1.9.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.11.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"0.9.18":{"name":"core-js","version":"0.9.18","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Dict","Promise","Symbol","Array generics","setImmediate","partial application","Date formatting"],"license":"MIT","_id":"core-js@0.9.18","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"13f458e430232b0f4ec1f480da7c2f5288e9d095","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-0.9.18.tgz","integrity":"sha512-5j64XDadPQy+mCuQBKY/+Ra61jZLhBxDjpPKqn5x4f9XN/WanVQOWsN0RXytP3s/w8+dfq8BHBJkRClccip5EQ==","signatures":[{"sig":"MEYCIQDL3Uj8tt/QBv7m33ZHXRfKzUwZ/R/PPLCEiaa+tC7U+QIhAM83mdS2Y2LbMzQxoF+EpmfC5BwfRKVsWMeDdjlxhti7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"13f458e430232b0f4ec1f480da7c2f5288e9d095","gitHead":"e60761932a660074c10ed5649f332ab06b6919a4","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.11.0","description":"Standard library","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.12.x","eslint":"0.23.x","webpack":"1.9.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.11.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","karma-opera-launcher":"0.1.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.1.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"1.0.0":{"name":"core-js","version":"1.0.0","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.0.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"5f871c64bf47c5e80bbbf9f07fdd9dab0608fd69","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.0.0.tgz","integrity":"sha512-QrvpDcPM15HZjBjunACM+SWqylbTjt0DA4uzXSJriPVxeHD89fT3k6lRtQ4EgwyM0eNScPskpBmeylvjra0jkw==","signatures":[{"sig":"MEQCIFihkoiNWtf32UdEvmXQIhshKcTfGMnLgugkhCrgxx3FAiBuzam14YKSRL/Vgno+5Fg9/tcst7jw6Vqze+cTJLnX7A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5f871c64bf47c5e80bbbf9f07fdd9dab0608fd69","gitHead":"a6f288e8fa62dc1826f9f86b5cc49e2767b727ee","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.11.0","description":"Standard library","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"0.24.x","webpack":"1.10.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"1.0.1":{"name":"core-js","version":"1.0.1","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.0.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"82d2284b718a03bf8bf2813d5c17177c6adacf08","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.0.1.tgz","integrity":"sha512-zJjMnWELJrSpquUFc5MD9dAvFitwDmrBNAwOjQu+z4y+e8kyotQx/x6vLRxIuy0AFtKNKbNG9uRDaGM99U8+1Q==","signatures":[{"sig":"MEUCIQDoHH6Dbw1mexc8Ks2czStn0NIXDWnOJ6Kcv2k8FamRggIgOCmDtQVSTkHpcZIB9XCou8GmCJgWwluvEmeemejaVxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"82d2284b718a03bf8bf2813d5c17177c6adacf08","gitHead":"9f5fa6afa396d92ea166e136a33da90be3919d91","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises_tests_adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.13.0","description":"Standard library","directories":{},"_nodeVersion":"2.4.0","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"0.24.x","webpack":"1.10.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"1.1.0":{"name":"core-js","version":"1.1.0","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.1.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8e6cc5e4799c11855951300c282c1c88f52f2b9d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.1.0.tgz","integrity":"sha512-Z1y+3cDohs5kYUYfb6IM5+8apt4aiLsiiBO2P8e60Xc9St34DccHv0IJZG9HyzcEXRQQUeLfjEv61JZ+rrKImw==","signatures":[{"sig":"MEQCIFTLDmXXcYwhm5AarKTKu5G66NaVh7sXZvFlA5uPEPRuAiA+uD3basdl3hs8EHT60gJ/k8kLjYkCpD7PDS3AhefDrQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8e6cc5e4799c11855951300c282c1c88f52f2b9d","gitHead":"c9b2dbdb2d9c7cf01c4a9b504b4ad722a4cd95a2","scripts":{"lt":"npm run lint && npm run grunt client livescript karma:lt && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.13.3","description":"Standard library","directories":{},"_nodeVersion":"3.0.0","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.1.x","webpack":"1.11.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.1.1":{"name":"core-js","version":"1.1.1","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.1.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3ea0867d9bcd2076ef619e44075d3e7239453060","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.1.1.tgz","integrity":"sha512-h0r/74V1PRoF7aPLe3zKWsw8ryFt5LeRvTgVEHv8gYJjdx+KddyS2GyE6Wtd+srF6VGzyxB1NIAkkdCWBd8IFw==","signatures":[{"sig":"MEUCIQCjjnvBgJLmpvPWBu1aOzTwiJUMPSwXDMH0iZm8I0YoUgIgUPU1mWu10SJ2srTzavPeGHuL1qJtBqSFZlDAvPpIUZ8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3ea0867d9bcd2076ef619e44075d3e7239453060","gitHead":"84dd361666804271a8fa2640478e1d1315c5343e","scripts":{"lt":"npm run lint && npm run grunt client livescript karma:lt && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.13.3","description":"Standard library","directories":{},"_nodeVersion":"3.0.0","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.2.x","webpack":"1.11.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.1.2":{"name":"core-js","version":"1.1.2","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.1.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"05a009ad3abbd44895f32f03ba77062297f5cc7e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.1.2.tgz","integrity":"sha512-2UQvUlwj8DuvX78hcS6W3ewwpFwr6+SMJtmnqeOeG1Qj+bKl2jXhYWakka5teEcfju1fQiOxUuw6dSY3CURqoQ==","signatures":[{"sig":"MEUCIAQf1tHujhBJDtBnimX1tGVBHhwKPHd1n8Nuoxh/e++GAiEAivsGEpxykaGKVDnSmKOeG/7qJvew3LWXOfBULtZ36vE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"05a009ad3abbd44895f32f03ba77062297f5cc7e","gitHead":"f7bd05b31db2d63b068cee7adb6335b01ef6b8fe","scripts":{"lt":"npm run lint && npm run grunt client livescript karma:lt && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.13.3","description":"Standard library","directories":{},"_nodeVersion":"3.0.0","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.2.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.1.3":{"name":"core-js","version":"1.1.3","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.1.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"01b32e3266048d120c3b061756948b285700f970","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.1.3.tgz","integrity":"sha512-e8MciYkSPlrZkPXUqfCaSnXiQgGu1Nekp1ZxMR7OWxbiaZh9hXTQeWo8njCogu9FULc8j+jsvYjIbmtKoNXz4g==","signatures":[{"sig":"MEQCIHtje5uzckUg39d64dnYMpTtYznQXGz8dqvMOJxYE2uAAiAz7YtBK8dVcgIWLLULCJf515N+mm1GMxyAFZtiEHbS+Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"01b32e3266048d120c3b061756948b285700f970","gitHead":"31440ba436945fc231722ab71a23c13ccfa25b01","scripts":{"lt":"npm run lint && npm run grunt client livescript karma:lt && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt client livescript karma:continuous && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.13.3","description":"Standard library","directories":{},"_nodeVersion":"3.0.0","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.3.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.1.4":{"name":"core-js","version":"1.1.4","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.1.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e0c75b4505ac3d2119db508b9a9ebabb368bfea3","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.1.4.tgz","integrity":"sha512-zJ91CatAeAxNi+ewVPOltfZXmLyq4o0/g7v6Trx2TI1GC4UKZmfK0JlDel42fG9tEJQ4xeyMkYUXmi6srT1hXw==","signatures":[{"sig":"MEQCIFHwDH0w5pbki8EfFGvR8KGhXQ5Z2Nv5Jys37oc7/NcnAiBLh+yzM1mud0443UljM5PIf0e4NTH2kdi/h89Vod56WA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e0c75b4505ac3d2119db508b9a9ebabb368bfea3","gitHead":"77902780b95f958650ec48b4dda934712952d630","scripts":{"lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.13.3","description":"Standard library","directories":{},"_nodeVersion":"3.0.0","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.3.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.2.0":{"name":"core-js","version":"1.2.0","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.2.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"62b37f6ee0e6f991df0c1bc6c1abfe834319dc9e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.2.0.tgz","integrity":"sha512-1Qj33P6Q0Qdfo0xOad0Wh38HKTwpLH4v74A94p1BCgagBXoYtihyIU4VpCGhW2OmAEi9lS8vXZvAKve+isOiiA==","signatures":[{"sig":"MEQCIC0KuqSnhuYausPFVcLBONXml1ZLbYbHupFaWdTHSCPnAiAObhyqiC0b3qnVwUToMVjOZBY9hcxJrTiXJ3pcZXxF+Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"62b37f6ee0e6f991df0c1bc6c1abfe834319dc9e","gitHead":"69651bee22f74a049e219e200af4abdd09bfa884","scripts":{"lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.14.3","description":"Standard library","directories":{},"_nodeVersion":"4.1.0","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.5.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.2.1":{"name":"core-js","version":"1.2.1","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.2.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9b73151ce01498da09f75629810718065d06b700","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.2.1.tgz","integrity":"sha512-+WVmKdJIzKMALJdcDnjxpKuOJSLxsDXu/MOgWNOn4cbparxi1Vrqn5Cw+r8GZsoTT/9lRt2Mv5Cxr4EwdfyU/Q==","signatures":[{"sig":"MEYCIQCWMEg59YFo7IAVmdbB5zC294giBzqiDRiRkMC3z94A1wIhALLx7OwpfYxLVQwoVta/Qpndoevrdw8KhG7xFUQfMc5O","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9b73151ce01498da09f75629810718065d06b700","gitHead":"02da3db84b593a4c731c73b9907afb993acdf362","scripts":{"lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"2.14.3","description":"Standard library","directories":{},"_nodeVersion":"4.1.0","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.5.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.2.2":{"name":"core-js","version":"1.2.2","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.2.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f45eede52485579b6026c8a8628472b9f7960cae","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.2.2.tgz","integrity":"sha512-7LLWSk093DLscc2A6tKA2CVRF/9VMxov61XT3GpqnL80e+ETyE1xIxH+nWnOsa48m9mIzg+7l2nzeM9fvJBBmQ==","signatures":[{"sig":"MEUCIDa1Hvo8bkQ94siX9rv8gVMO+xe/5D/oLmcTMXXuYR2zAiEA0s8y5oE//Ml3ggfwUppiDU8uqbPWsCIWokySTvxt5XU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f45eede52485579b6026c8a8628472b9f7960cae","gitHead":"928f8a7c5b3ba96e23fb7c2931ab1b1d0b7e3d26","scripts":{"lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"~1.7.1","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.2.3":{"name":"core-js","version":"1.2.3","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.2.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"4cf03d1c84f9cf6cc94a37dac67f345f6ea9209a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.2.3.tgz","integrity":"sha512-SdaIejTEpnxNIotWtje7roCIBqelAKbuz6zO2aC2YH/pFvA5UpZqnmzN5HuidMt+LC8ZiQdQSi+LszFv2FZK2Q==","signatures":[{"sig":"MEYCIQD6b65KP1tYbgJGR++zx5I2J0yDkTog5YdsD230Db/3zAIhAMN7fuhtumZA7nLM1HGivIhmszDoGgOTgUjIw2qJMixv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4cf03d1c84f9cf6cc94a37dac67f345f6ea9209a","gitHead":"fb0890f32dabe8d4d88a4350d1b268446127132e","scripts":{"lt":"npm run lint && npm run grunt livescript client karma:lt library karma:lt-library && npm run promises-tests && lsc tests/commonjs","lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"~1.7.1","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.9.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x","karma-phantomjs2-launcher":"^0.3.2"}},"1.2.4":{"name":"core-js","version":"1.2.4","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.2.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b4cf44d4dc7f906d3c2d7ba12ce8c067de4d47df","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.2.4.tgz","integrity":"sha512-Psw42UNA2dvDjlxrkTH+ComikFaCDPpVW/JQIjnEXfxO3mcq88YjDG+Pt19ZAKBhJO3eXdQli3OiKzJQDLrkcg==","signatures":[{"sig":"MEUCIEPHOyj5sXdKvDEu2+PqjeUoJshM5JHoKDJKXapON7OBAiEAiSQG4tm8knY6AMR9BUlIzbk0TesjH6ee34x3tHCnQ34=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b4cf44d4dc7f906d3c2d7ba12ce8c067de4d47df","gitHead":"ba0d44f5c7cb993a861d4558dc29d0de1b89aec6","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.8.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.10.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"1.2.5":{"name":"core-js","version":"1.2.5","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.2.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"020ac0f22d85045d6877c2010284236cf117a606","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.2.5.tgz","integrity":"sha512-9IcfQB2SH08rtJoipktloVj+iXiRzEAovZ8lzejDh5rxj0u0d7AMjm21+gYCwN1GZiGglT5Q1MzKCDtj8Svr/g==","signatures":[{"sig":"MEYCIQDF/7NqVtdiTGhDnf5aLp0CsJmnGtDvHcSCgHBoJLqZyQIhAJDFyhZJbghhWfW0Z3AxUJe+UicyHl3+pvoWqNjC7aBA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"020ac0f22d85045d6877c2010284236cf117a606","gitHead":"3e36cc001a9d1a929cdd62358cd282a408b0d93e","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.8.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.10.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"1.2.6":{"name":"core-js","version":"1.2.6","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.2.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e2351f6cae764f8c34e5d839acb6a60cef8b4a45","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.2.6.tgz","integrity":"sha512-TUf3jrdcsgHu2qhCR6ve4hC4VHtZ5DWF9vKMn5tPi7MEyAWR4Sf2XS7Ogm6F3P7enSRTdqlW/E85DOFKCKs3fA==","signatures":[{"sig":"MEUCIERXKKqddglD3ES5Th6LVnvIJBz20MF1VEBXNSrwqHTRAiEA37aTGVAgDN7EdogkTPJj+YBWfh+gnoWW2B+LLU04OZ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e2351f6cae764f8c34e5d839acb6a60cef8b4a45","gitHead":"280a87d5b3fdbc067c589b2bf960edb1ea12e03c","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.9.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.10.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"2.0.0-alpha":{"name":"core-js","version":"2.0.0-alpha","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@2.0.0-alpha","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"93726eab4be3627c8fbc8d889a8a41571a9487c4","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.0.0-alpha.tgz","integrity":"sha512-QoEavqtJTTUVja4Pm+ps8lqwut0KaMUPIYEV69Q1xH5JkHtwNVXykiplrSkcuc83QKvulsPAi65f36x1xqOWJQ==","signatures":[{"sig":"MEUCIQCOuRJgpJDd7Uwo1eiD+IjwST0qhO5PDAlfUQ6r8ttuxwIgQ83fC3axJrXMZldFn3hu7eu/nnKFZNPljsaOsY5MURk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"93726eab4be3627c8fbc8d889a8a41571a9487c4","gitHead":"3483ed3cd3cd51436b7286bb7635ea03d5ec2045","scripts":{"lint":"eslint es5 es6 es7 web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.1.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"1.10.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.7.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"2.0.0-beta":{"name":"core-js","version":"2.0.0-beta","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.0.0-beta","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3bf6419183cc117cd0aef7adfb4fcbd24634702a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.0.0-beta.tgz","integrity":"sha512-PPOhX79NzsUGKbNTMrX7LlfPBFOslsB0+jjPU7yJdkTMGusCRjdETYXucpt63jX0HN2wEFPVzsTjLzJVMMz76g==","signatures":[{"sig":"MEUCIG+A6ews77Zm5mDS8bn1BSWewglVC5BEHFjCzjCkBgheAiEAkh4mqitXBHGZrBxfgGfh7ogjd+vXAEeiK3RjpWVYYus=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3bf6419183cc117cd0aef7adfb4fcbd24634702a","gitHead":"c59edd121f4c3a51a0ee6332d11b727a28e577f8","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.1.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"1.10.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.7.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"2.0.0-beta.2":{"name":"core-js","version":"2.0.0-beta.2","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.0.0-beta.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2af7dcb531858e2a3dda7e65cc2e92178179d006","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.0.0-beta.2.tgz","integrity":"sha512-SLqRIlzQ46uEMsTw668sVk10TzUxUTs2Z1g8sSzfS3FufEjttYRtR+Cw4wGA7eik+g83Cpev15aJQwrX/Iagng==","signatures":[{"sig":"MEUCIA4mKxQla8F7AYd1afpkQoTVpsxPtUVmNqPBwpPkgoRcAiEAvH6lhIN5ipdhnk38suGb7miEFyEkiWbWURTSx7Rf1Rw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2af7dcb531858e2a3dda7e65cc2e92178179d006","gitHead":"485b92f3fca9b6359be0429c44ea8517b0b39871","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.1.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"1.10.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.7.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"2.0.0":{"name":"core-js","version":"2.0.0","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.0.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"bc834a8c48dd62a176145f4866ba8a93e2e3ddbf","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.0.0.tgz","integrity":"sha512-RGkCOUzpAuILxdtKc6VWxbJuRRYhP/XkHPiKkVLMX0wgf7BtUrCGkq9dgf3607LxAqCxFHeKMYNgTBs7iCuPew==","signatures":[{"sig":"MEQCIFOz9kMa5Y4Ex+oyhDp7cshqa99NadvySh3debmmv7X/AiAwtUHg2ywkHXMilJqwxAxM2Ec/+gVAQu/Db3/bACyyag==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bc834a8c48dd62a176145f4866ba8a93e2e3ddbf","gitHead":"0160b946fe94c16a6c85e46122fee7daa01387b6","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.3.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"1.10.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.7.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"2.0.1":{"name":"core-js","version":"2.0.1","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.0.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b780faf79e9b00482cedea30414766f4d910cc44","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.0.1.tgz","integrity":"sha512-JmncsTtAOyED6b4n/4FYZMVIEn5ALGlpmaApZGtZoM5f9fng4WHmDbz0oHDP/EDGKyZUFyATpvTHt2DQUV1FKQ==","signatures":[{"sig":"MEUCIApUpc8zJgEez3dIY332xtS8VPX4jiR4c+YzfeHvTtJ4AiEAiTXQhLWFcfdNcvRVmLw3CrvuwPXY2iQaZDhN47AS5t8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b780faf79e9b00482cedea30414766f4d910cc44","gitHead":"668c14a6874cf4c2e39e6b3009ce6730be415251","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.3.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"1.10.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.7.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"2.0.2":{"name":"core-js","version":"2.0.2","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.0.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"585e02db59551d41c81ee1fd0d0e9312c36beb80","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.0.2.tgz","integrity":"sha512-iM2q/ixFSdbECouOxyYtSnQX63zM7NxtGs5vOVWVGZEMiak4qNtvWQROM7Lvn8W75PjnaGYkefmHCUYbSeZiwA==","signatures":[{"sig":"MEQCIHn3heG9lL36aT5vAhDmq1X2jgZE4IexmNTSP9DkniDvAiBEmpMhR8Rxm6CDk8atnCi+auM9bWw0y92CEUJi8IIiGg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"585e02db59551d41c81ee1fd0d0e9312c36beb80","gitHead":"9c5801d6d63e82d634b0fbcb843640ed715f5c00","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.3.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"1.10.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.7.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"2.0.3":{"name":"core-js","version":"2.0.3","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.0.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"50875bfd128723373b8400f6bfcfe75134548cd2","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.0.3.tgz","integrity":"sha512-kzAKvoxFWr1OsrydFpVoHcuY+p0BfBQ2TTqyiRY0kVu6cBAmwddDiPMzquzKvPeKpocmhLnnxjQQEV9Eh9S9xA==","signatures":[{"sig":"MEQCIEqwuK9ofUuN/Zh6cvJoBxOqaygHb15rNz8teeooSg9tAiAzipFlSNYwTZG7cXbEDa81r+wUp6pN4cSdwc8p1n0JFQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"50875bfd128723373b8400f6bfcfe75134548cd2","gitHead":"ab92628889374b727c9a792c70c51a7f527e3af7","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.3.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"1.10.x","qunitjs":"1.20.x","webpack":"1.12.x","grunt-cli":"0.1.x","phantomjs":"1.9.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.7.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"}},"2.1.0":{"name":"core-js","version":"2.1.0","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.1.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"61ccc74db6358a5e311cb5757f8511838b4f356f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.1.0.tgz","integrity":"sha512-1rbyjz3ZvndSwYAsysAkmjF6BjiWWByE/wnGW7o7clGrQa/AKVdWAVP5uqGi8/IUJDhgvx0RFSQiq4e8wXqXHw==","signatures":[{"sig":"MEUCIQCM9AQX4aHbXZlQWau3R43c/KO8TDAM8lBGkn+eDHzhjwIgKsLmDJSKeGmWamr6OmYNnClqAF8d1T6KRT5PwMM6dD8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"61ccc74db6358a5e311cb5757f8511838b4f356f","gitHead":"bd87b8b71f3a0833a2fe93f01092766527a016de","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"1.10.x","qunitjs":"1.21.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"0.7.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.1.0.tgz_1454974345705_0.6095059337094426","host":"packages-6-west.internal.npmjs.com"}},"2.1.1":{"name":"core-js","version":"2.1.1","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.1.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2cb9efb834cb04f56bb0d8e521b0540a5aef528f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.1.1.tgz","integrity":"sha512-Iidz1rhLe/GI5Etd1uyGU4mV1L+bJARwNjzFLoBAqGScmJsWZ86po7328wlUP41mDbkXd9OQ0q3uxsbWOWouzA==","signatures":[{"sig":"MEQCIE5+vm+OU7KsUo/LQqZur+HGei2d+yE/Z0ozkWnJbUtsAiBCWvj6p34KeL1UIfErNVobcLggWU7SXGa0oAF1IbJ6ig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2cb9efb834cb04f56bb0d8e521b0540a5aef528f","gitHead":"b4cdd5b230511e735372971e39397aba3703c54d","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"2.2.x","qunitjs":"1.21.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.1.1.tgz_1456114159476_0.9208594844676554","host":"packages-6-west.internal.npmjs.com"}},"2.1.2":{"name":"core-js","version":"2.1.2","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.1.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6604594580096db09897dcfaa52c2a4d9243a420","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.1.2.tgz","integrity":"sha512-lQBVJFBuM3KAvZWDrU0Ghs53XSb8ajjRA0v9POxXgoS6cPHtGB6+L5ug+uzAzUIxflI9KGoJoNfc8vbST4pSzg==","signatures":[{"sig":"MEQCICnv0dfXW5wq+UYr+Bk1S38FO/XSpNc5Gz14Issl2UZuAiBnS6zk4jYtxdbIYu0FWmkudHDRxVXDcKgT5V8DGLUGRQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6604594580096db09897dcfaa52c2a4d9243a420","gitHead":"7cb0ef6b399dab4b5ae5ec14d139afe2ed367367","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"2.2.x","qunitjs":"1.22.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.1.2.tgz_1456721128316_0.963237741496414","host":"packages-5-east.internal.npmjs.com"}},"2.1.3":{"name":"core-js","version":"2.1.3","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.1.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1bb16b99bf8e01aa7bfd06d1a6c402b5b61154a8","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.1.3.tgz","integrity":"sha512-cbVh8GDcSBPIL45iLJOcmSl5CLA2ArVpwR+x/a8BLYr1OF9h52Pf5Du1pB6H0Cc/dMd2+APcg62NEfWqHe+QYQ==","signatures":[{"sig":"MEYCIQD/YieLbm1hsywNIRn9KkHGjBRAo3XmdMbbdGH+E9/syQIhAKy0ZOt9ysHDJUUjGytROrtpkiHfUepdrW//dGXd8TtW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"1bb16b99bf8e01aa7bfd06d1a6c402b5b61154a8","gitHead":"2447561217e9512960bf140387320777e27975ae","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"2.2.x","qunitjs":"1.22.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.11.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.1.3.tgz_1456766761961_0.8116176498588175","host":"packages-6-west.internal.npmjs.com"}},"2.1.4":{"name":"core-js","version":"2.1.4","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.1.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"44195220d94914aaf9987c7599afab263a51f75a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.1.4.tgz","integrity":"sha512-392X0I2CehZla036BSOBnF0KlWwKwqSH4bXIk9cuFtFnYnz7UmCIwqZp4O7y7+/Cg/lH1uuN7P+R/Q0muXVt9w==","signatures":[{"sig":"MEYCIQCc/+QcUJmUgmzaWFgZ4R/hly0YxLb87IDFh1WcZiTsNQIhAK109mK3XLeI/UINlVdUX7SiEvzxmqounhbD8TIJTShh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"44195220d94914aaf9987c7599afab263a51f75a","gitHead":"b2c2ad9d728d8e9b196ec3ab233d34455988d1d8","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"2.3.x","qunitjs":"1.22.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"1.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.1.4.tgz_1457458619149_0.716871778247878","host":"packages-13-west.internal.npmjs.com"}},"2.1.5":{"name":"core-js","version":"2.1.5","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.1.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9610a059abc2624e5be18b6e624dcb6a4ed4b46d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.1.5.tgz","integrity":"sha512-8E65/CbwO+3dRdwvaDbgUon1rnxjRLjbyqNI/p58hQf7kicAG0Z8mQ6hoerLqGysRIH7oEtYTXg7Iiit7GW4pA==","signatures":[{"sig":"MEUCIA9n3pz92J99aJBb63auTXrEeuPqlcCh7wz+XOs6fI1/AiEAkq/VCDs4yauoEvi4WlXzqv0nVxUlS4K9OkEPfGHW8GU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9610a059abc2624e5be18b6e624dcb6a4ed4b46d","gitHead":"4369fbb70d05e61e2ad990b179e377f4c3090031","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"2.4.x","qunitjs":"1.22.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"1.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.1.5.tgz_1457780265197_0.08655733079649508","host":"packages-12-west.internal.npmjs.com"}},"2.2.0":{"name":"core-js","version":"2.2.0","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.2.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"72d4ba20c0011999d3a343cbf1c1b1d4ca5e53d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.2.0.tgz","integrity":"sha512-emPdqAP2+ISLv0L+R+QWZkqG27GDDp5hd6zV9yiYAIlWVVqPQMqA3ADZPYgAD69i2JVI/9Y+8qQ36ndMsLrmJg==","signatures":[{"sig":"MEUCIAXbgeH9YIqJuNIZXQNscEluAU12yNr4bQjQ/5lWoYKIAiEArGJigckxJm26YwrM4YjjCswv6x0uPhO0Kecu7ilsIJk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"72d4ba20c0011999d3a343cbf1c1b1d4ca5e53d7","gitHead":"d67e2fb94fc638bf1aebf883088e4bcf49d31fa7","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"2.4.x","qunitjs":"1.22.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-uglify":"1.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.2.0.tgz_1458058029293_0.05631740274839103","host":"packages-12-west.internal.npmjs.com"}},"2.2.1":{"name":"core-js","version":"2.2.1","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.2.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e809840c0650ccae87209b4b2f13ed2d2f9e4005","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.2.1.tgz","integrity":"sha512-1XHeCQgZtBhV0vAYWUIcm/7LXJLa5q+eVneWtjtYZErCHYm77l8QIrh4q3dQYKpMhOOC5jQlGzFMjSfmkBBU1g==","signatures":[{"sig":"MEQCICpwMmmzLBUuaLDf7p1cl8pOMngpsRehlckSNwYYApfEAiBvQMwaCJcEXF3F7mJxvnQRQol6L0yL+A+njtZdQ9ddig==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e809840c0650ccae87209b4b2f13ed2d2f9e4005","gitHead":"e482646353b489e200a5ecccca6af5c01f0b4ef2","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.8.0","devDependencies":{"temp":"0.8.x","grunt":"0.4.x","karma":"0.13.x","eslint":"2.4.x","qunitjs":"1.22.x","webpack":"1.12.x","grunt-cli":"0.1.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-uglify":"1.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.2.1.tgz_1458326248766_0.554607120808214","host":"packages-12-west.internal.npmjs.com"}},"2.2.2":{"name":"core-js","version":"2.2.2","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.2.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"79a0f3a9495507641a5bf7ce275fa494649180bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.2.2.tgz","integrity":"sha512-EseBij0ZQoiTKCUqhBxWzx7t3x8sYApmc1SC2HvWEFr84tZExHfJx4SBTibGYiYZqmn1mLDtVT0rEnvCX0Bmdw==","signatures":[{"sig":"MEQCICg/ioDTFXTlMY/TazyouK9AAxmODgni9MEb2eBlrxhxAiA8uVlVTqY2vuVOkqxKd2QPBmX8qQt/Gp25y/EcFUDeLw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"79a0f3a9495507641a5bf7ce275fa494649180bf","gitHead":"1165b27889a9c01e7f3e72e27c250cecb7c31487","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.8.0","devDependencies":{"temp":"0.8.x","grunt":"1.0.x","karma":"0.13.x","eslint":"2.7.x","qunitjs":"1.23.x","webpack":"1.12.x","grunt-cli":"1.2.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-uglify":"1.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.2.2.tgz_1459945191242_0.08103835000656545","host":"packages-12-west.internal.npmjs.com"}},"2.3.0":{"name":"core-js","version":"2.3.0","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.3.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.3.0.tgz","integrity":"sha512-N41UFUZNqoTSGUSyL7kiStAkH31Hxq197A4Gp9MxTZfAd52pXod7VM7kWiRP0J0YpQDeaE4SLsb+2OGgtgvUEw==","signatures":[{"sig":"MEUCIQDrb1PnVRk9gUm3L85edMlkbYVHgxkbtbvLqypEs2ItZgIgO3PavQTli/UR1uce+LjnpJ/dNNGybqHSDwyrqP8BHc0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"fab83fbb0b2d8dc85fa636c4b9d34c75420c6d65","gitHead":"b5ad27939bc50add2d2079348b11e68b1f8abe7a","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"5.8.0","devDependencies":{"temp":"0.8.x","grunt":"1.0.x","karma":"0.13.x","eslint":"2.8.x","qunitjs":"1.23.x","webpack":"1.13.x","grunt-cli":"1.2.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-uglify":"1.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.3.0.tgz_1461447306660_0.6458090427331626","host":"packages-16-east.internal.npmjs.com"}},"2.4.0":{"name":"core-js","version":"2.4.0","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.4.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"df408ab46d01aff91c01c3e7971935d422c54f81","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.4.0.tgz","integrity":"sha512-CEd3PdZ9qG3nuzmN8fuwDexPFHpyLF1DXfnVt1uvlE6BO3ItUjCeJIiIuozpVq0whsg2f1Hpblc668pn1k94WA==","signatures":[{"sig":"MEYCIQDqBj0PrTkSO8j88Uk5mWLdBa7e1kZYLADFDNZegoSxhwIhANC1B444o2SoI2CaEih+iUC/EY6dk41Zu0CZVYqn5W0o","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"df408ab46d01aff91c01c3e7971935d422c54f81","gitHead":"a08b6d46ea3f02a33b17df552e73078b42c5b78f","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.3.9","description":"Standard library","directories":{},"_nodeVersion":"6.0.0","devDependencies":{"temp":"0.8.x","grunt":"1.0.x","karma":"0.13.x","eslint":"2.9.x","qunitjs":"1.23.x","webpack":"1.13.x","grunt-cli":"1.2.x","LiveScript":"1.3.x","grunt-karma":"1.0.x","karma-qunit":"1.0.x","grunt-livescript":"0.6.x","karma-ie-launcher":"1.0.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-uglify":"1.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"1.0.x","karma-firefox-launcher":"1.0.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.4.0.tgz_1462671379729_0.5747277433983982","host":"packages-16-east.internal.npmjs.com"}},"1.2.7":{"name":"core-js","version":"1.2.7","keywords":["ES5","ECMAScript 5","ES6","ECMAScript 6","ES7","ECMAScript 7","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","Array generics","setImmediate","Dict","partial application"],"license":"MIT","_id":"core-js@1.2.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"652294c14651db28fa93bd2d5ff2983a4f08c636","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-1.2.7.tgz","integrity":"sha512-ZiPp9pZlgxpWRu0M+YWbm6+aQ84XEfH1JRXvfOc/fILWI0VKhLC2LX13X1NYq4fULzLMq7Hfh43CSo2/aIaUPA==","signatures":[{"sig":"MEUCIQDkfPLm5I7Kmc7Za8cLM3EdXrxfHUpt7ysXrQKT4MIM7gIgWsXJobD1R2HzFCXhaBxoG8V8ethI/yuZ6rOkeeSNRbE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"652294c14651db28fa93bd2d5ff2983a4f08c636","gitHead":"11a0a09335b8afca5b489d3a503093d6f1fedd42","scripts":{"lint":"eslint es5 es6 es7 js web core fn modules","test":"npm run lint && npm run grunt livescript client karma:continuous library karma:continuous-library && npm run promises-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.9.5","description":"Standard library","directories":{},"_nodeVersion":"6.2.2","devDependencies":{"grunt":"0.4.x","karma":"0.13.x","eslint":"1.9.x","qunitjs":"1.23.x","webpack":"1.12.x","grunt-cli":"0.1.x","phantomjs":"1.9.x","LiveScript":"1.3.x","grunt-karma":"0.12.x","karma-qunit":"0.1.x","grunt-livescript":"0.5.x","karma-ie-launcher":"0.2.x","grunt-contrib-copy":"0.8.x","grunt-contrib-clean":"0.6.x","grunt-contrib-watch":"0.6.x","grunt-contrib-uglify":"0.10.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"0.2.x","karma-firefox-launcher":"0.1.x","karma-phantomjs-launcher":"0.2.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-1.2.7.tgz_1468790518791_0.19032412697561085","host":"packages-16-east.internal.npmjs.com"}},"2.4.1":{"name":"core-js","version":"2.4.1","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.4.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"4de911e667b0eae9124e34254b53aea6fc618d3e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.4.1.tgz","integrity":"sha512-W4Zkayb9VI4zr+s7ReDSgTTaV9KWB4L997i8/mkOV2kY1c7QGNj91k8X0zcr8Tl24oYF6kiBomCDSYO4BvQQdQ==","signatures":[{"sig":"MEUCIQCPoZE5pLWUGHG//xt1e/1WIrCtgu2dlgouJ01Tz7YiXAIgIie6YBoa8zNKZP0g8JtSop79ZKJkL0EdVSHemzBlxD0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"4de911e667b0eae9124e34254b53aea6fc618d3e","gitHead":"5e106f64c726edf2849f0babc9096ce6664b7368","scripts":{"lint":"eslint es5 es6 es7 stage web core fn modules","test":"npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"3.9.5","description":"Standard library","directories":{},"_nodeVersion":"6.2.2","devDependencies":{"temp":"0.8.x","grunt":"1.0.x","karma":"1.1.x","eslint":"3.1.x","qunitjs":"2.0.x","webpack":"1.13.x","grunt-cli":"1.2.x","LiveScript":"1.3.x","grunt-karma":"2.0.x","karma-qunit":"1.1.x","grunt-livescript":"0.6.x","karma-ie-launcher":"1.0.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"1.0.x","grunt-contrib-watch":"1.0.x","grunt-contrib-uglify":"1.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"1.0.x","karma-firefox-launcher":"1.0.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.4.1.tgz_1468791807265_0.5941079026088119","host":"packages-16-east.internal.npmjs.com"}},"2.5.0":{"name":"core-js","version":"2.5.0","keywords":["ES3","ECMAScript 3","ES5","ECMAScript 5","ES6","ES2015","ECMAScript 6","ECMAScript 2015","ES7","ES2016","ECMAScript 7","ECMAScript 2016","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.5.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"569c050918be6486b3837552028ae0466b717086","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.5.0.tgz","integrity":"sha512-mAPLSnIVZAwVEf8OZtnNcF2BL1d6DHV3EvIWj46UDBYNAqLxx7mLLpQxe8/1vtrkzt1KIyjmOqOG3pa+bZf7Fw==","signatures":[{"sig":"MEUCIQCu3efDuOHWyg2waWnWrSfLT5Hyqf6SVEmX7vVLruzc9wIgC6TX4P2TKC6FACWezQyWxs3bHwYK1+DwOZj36oLU0XY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"569c050918be6486b3837552028ae0466b717086","gitHead":"63ae52d7625b5ba9bf5cb27558e7d0ae705e39e0","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","devDependencies":{"temp":"0.8.x","grunt":"1.0.x","karma":"1.7.x","eslint":"4.4.x","qunitjs":"2.4.x","webpack":"3.4.x","grunt-cli":"1.2.x","LiveScript":"1.3.x","grunt-karma":"2.0.x","karma-qunit":"1.2.x","grunt-livescript":"0.6.x","karma-ie-launcher":"1.0.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"1.1.x","grunt-contrib-watch":"1.0.x","eslint-plugin-import":"2.7.x","grunt-contrib-uglify":"3.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"2.2.x","karma-firefox-launcher":"1.0.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.5.0.tgz_1502029820484_0.05132471746765077","host":"s3://npm-registry-packages"}},"2.5.1":{"name":"core-js","version":"2.5.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.5.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ae6874dc66937789b80754ff5428df66819ca50b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.5.1.tgz","integrity":"sha512-Ekp5N+IEt1CpSSPii9pzpcvf9Wdtoo8ksCO/y5imsopL77FTidtti1WUfnmXmjKL72AV/MgL7DucrbaDiQ3+NA==","signatures":[{"sig":"MEUCIQCvsn6NQWC0rJ7ji9+NAFs7M5VZWPNY7nWYD0QWMgAheQIgCZtWaVzEqxMP+2zgoj+eKROx3RxDxh4mHURl2NSo6F4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ae6874dc66937789b80754ff5428df66819ca50b","gitHead":"a3616d74c0b9b9409d580337e04c32da6e3877e4","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","devDependencies":{"temp":"0.8.x","grunt":"1.0.x","karma":"1.7.x","eslint":"4.5.x","qunitjs":"2.4.x","webpack":"3.5.x","grunt-cli":"1.2.x","LiveScript":"1.3.x","grunt-karma":"2.0.x","karma-qunit":"1.2.x","grunt-livescript":"0.6.x","karma-ie-launcher":"1.0.x","grunt-contrib-copy":"1.0.x","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"1.1.x","grunt-contrib-watch":"1.0.x","eslint-plugin-import":"2.7.x","grunt-contrib-uglify":"3.0.x","promises-aplus-tests":"2.1.x","karma-chrome-launcher":"2.2.x","karma-firefox-launcher":"1.0.x","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.5.1.tgz_1504201976393_0.7931635268032551","host":"s3://npm-registry-packages"}},"2.5.2":{"name":"core-js","version":"2.5.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.5.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"bc4648656e7dc9dc80d7d3c7bbc172d96e744e63","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.5.2.tgz","integrity":"sha512-hLDdk2eAQRlGk4pqNVFHnuUU7ey5u+WqydPCyR8RtGIFxB53BUgblRUSnNKdmnVaGKjpN+6HrC7mCqYK/juJAw==","signatures":[{"sig":"MEYCIQDPych8umyrG/4tG7MvJePACsTrudKN9d7IWBe0bYmO2gIhAOKFKQXAsWmNwOu7FjFFaoB48o9NB/pt+ZGdNJAN2DOd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"bc4648656e7dc9dc80d7d3c7bbc172d96e744e63","gitHead":"a03fd191eaea071fa56eb6a1a806470272deb9d7","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","devDependencies":{"temp":"^0.8.3","grunt":"^1.0.1","karma":"^1.7.1","eslint":"4.13.x","qunitjs":"2.4.x","webpack":"^3.10.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"1.2.x","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.8.x","grunt-contrib-uglify":"3.2.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.5.2.tgz_1512822233837_0.22957206354476511","host":"s3://npm-registry-packages"}},"2.5.3":{"name":"core-js","version":"2.5.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.5.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8acc38345824f16d8365b7c9b4259168e8ed603e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.5.3.tgz","integrity":"sha512-1fhTiNuC8YWzCl567b1K2mQqRyHvQtRlEuNY31t837BFNd57oMvElJTsM5IrIooczeG/KvssBbJi2ZZASwyMIQ==","signatures":[{"sig":"MEQCIE9s1Bj8u0QBzrIJD+s6JNQpcKQ94mLgrbEeAlzYJt8yAiAoS5VTE45gR7lT3yQHXilN9yoMSowafIgpUoHMlRDiEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"8acc38345824f16d8365b7c9b4259168e8ed603e","gitHead":"f96b8d8afaebda5f49ac213627218f841c8692b4","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","devDependencies":{"temp":"^0.8.3","grunt":"^1.0.1","karma":"^1.7.1","eslint":"4.13.x","qunitjs":"2.4.x","webpack":"^3.10.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"1.2.x","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.8.x","grunt-contrib-uglify":"3.2.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js-2.5.3.tgz_1513024623897_0.7395965217147022","host":"s3://npm-registry-packages"}},"3.0.0-alpha.1":{"name":"core-js","version":"3.0.0-alpha.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-alpha.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d15091690ec1ff7d5815afe3556ac73c0a43142e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-alpha.1.tgz","fileCount":778,"integrity":"sha512-N8JMfJ7cs+IWCUqi/uUBuav1CE2AeAJnX5BSzaZMXih9a09mC+f00m49cfjnwFZWJKfPpqmC8X7aAWo7LE3ebg==","signatures":[{"sig":"MEYCIQCXCSeT5Hxzd6AyI2ufDyJa5zR90nHslOanVGyDuftBfAIhALImnBToYm5CIfZdVWLiRKcAhBTxokCIksMOrZUXWFW7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":392945},"main":"index.js","_from":".","_shasum":"d15091690ec1ff7d5815afe3556ac73c0a43142e","scripts":{},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-alpha.1_1522022600827_0.22447097569235153","host":"s3://npm-registry-packages"}},"2.5.4":{"name":"core-js","version":"2.5.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.5.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f2c8bf181f2a80b92f360121429ce63a2f0aeae0","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.5.4.tgz","fileCount":1473,"integrity":"sha512-lXzWZXAh6OGAjNjtjBVZPDFruWIgP7B+m/wFssG8hyYCZ/ogJ45VjXoySqUNPNEOCBZnDwXulFhcmUeQf0XRgA==","signatures":[{"sig":"MEUCIQDJq0IDtaSgXvkZeBwleTy7bBiLibv2H6hHMAQjD+4OUwIgfkrUehm5PNpEyA61g+5REqW0W4/d2SvsKV7jySe+cJ0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2168837},"main":"index.js","_from":".","_shasum":"f2c8bf181f2a80b92f360121429ce63a2f0aeae0","gitHead":"f1e504bf803d777bc1c5d5c0221e6f9bc4f2ddb6","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.0.1","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.9.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.5.4_1522167391795_0.054923374457907626","host":"s3://npm-registry-packages"}},"3.0.0-alpha.2":{"name":"core-js","version":"3.0.0-alpha.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-alpha.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f152d0a2c4c7f65e23df80ceb31dbfd9fcea2273","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-alpha.2.tgz","fileCount":786,"integrity":"sha512-WpXUFkjLVYopnkf4+a31VGx1wKfM9r0s/25iLMSDwlbKbEsPiuNMs+gK/uffRbG+eP9OZoXS8Toekd7Jl/d8Ig==","signatures":[{"sig":"MEQCIGg4Jmc+VjGPxBKvvWiey8DSHoMyYEG3ABSoOPk7vjoiAiBATXehXSGHDSqgPgAP5CmhLzROkQnjw7heV9NCAuTTtQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":394161},"main":"index.js","_from":".","_shasum":"f152d0a2c4c7f65e23df80ceb31dbfd9fcea2273","scripts":{},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-alpha.2_1522169460355_0.6240594631129088","host":"s3://npm-registry-packages"}},"3.0.0-alpha.3":{"name":"core-js","version":"3.0.0-alpha.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-alpha.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9a8339888acbebced1b70062641e6ffa4afd2f7d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-alpha.3.tgz","fileCount":786,"integrity":"sha512-ux7LONgjvL/gZj8XIt2V8Jlps2JfOxe4oS0h8MG1lC4xHh9l84pawQDKhwRI5nZCKr4ifZEPB8uMK0rnxuHZag==","signatures":[{"sig":"MEUCIQCb9MGf21oO0+h/nhSN86cEGA6OZBoO8v1pev0SdD+GCQIgMhfh7TJbLqhTdBBHSM5sBFKa53qRZH50Su9JlJfZZFo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":399680},"main":"index.js","_from":".","_shasum":"9a8339888acbebced1b70062641e6ffa4afd2f7d","scripts":{},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-alpha.3_1522444619563_0.7155207055116084","host":"s3://npm-registry-packages"}},"3.0.0-alpha.4":{"name":"core-js","version":"3.0.0-alpha.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-alpha.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8eeb0ae59e4dc2058f23430fe9da58a3e76e3d4b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-alpha.4.tgz","fileCount":787,"integrity":"sha512-ORY9LxKWk+HpEIbmatr0cFvJh5Z/qks4vnBwCYOkYGo5jWjAWVe1TdXA3uop8odPMBNpoo4xd4a83k0TI2Zm1w==","signatures":[{"sig":"MEQCIDf7C7e/sjbNcT4sEYqnVjY5vf/Fp35bivWPCLBdkZicAiBPPiERCcPw4dnmf5hhhU0Yrp5I0YL+RRHscSp6A3M0iw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":403226},"main":"index.js","_from":".","_shasum":"8eeb0ae59e4dc2058f23430fe9da58a3e76e3d4b","scripts":{},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-alpha.4_1523232972471_0.14260068508228296","host":"s3://npm-registry-packages"}},"2.5.5":{"name":"core-js","version":"2.5.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.5.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b14dde936c640c0579a6b50cabcc132dd6127e3b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.5.5.tgz","fileCount":1473,"integrity":"sha512-EdjKFSeiq7+KRpLyCc4xRYDG0OJklnX35LrdRr3Ee+w7GPpM910YtgBcHFzYoMkBAESc6UlIhmkh96Zy7DGUHw==","signatures":[{"sig":"MEUCIQDo0PzNpGf3FqdWAFqdvqVC3Dk7lBWKJkFzhJTxhLmzNQIgbTgchkb+l1cGacuKGsnruLX6YOfwdibfBhGauOlDBaA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2175992},"main":"index.js","_from":".","_shasum":"b14dde936c640c0579a6b50cabcc132dd6127e3b","gitHead":"d180ba3bca970e216db5b86bbb647aa9da3f4db6","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"4.1.2","description":"Standard library","directories":{},"_nodeVersion":"7.6.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.0.1","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.10.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.5.5_1523244509934_0.12000236569532774","host":"s3://npm-registry-packages"}},"2.5.6":{"name":"core-js","version":"2.5.6","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.5.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0fe6d45bf3cac3ac364a9d72de7576f4eb221b9d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.5.6.tgz","fileCount":1473,"integrity":"sha512-lQUVfQi0aLix2xpyjrrJEvfuYCqPc/HwmTKsC/VNf8q0zsjX7SQZtp4+oRONN5Tsur9GDETPjj+Ub2iDiGZfSQ==","signatures":[{"sig":"MEUCIEGg8H5gnE63ClwlLMjtt+48JRXEwjLC4CqKO0/1b3fQAiEAiYH9kAwLBXUJKWVQ4gelsUuVxfednhVhemtN5xTpoH0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2181757,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8FtlCRA9TVsSAnZWagAAdaQP/2FCDRwxhLrwfvA1X7jh\nIR8zOHu5nE6eKDrbIjUjxmIuVLVX6ea0+S35STx/+aPIjpFcCcI2CLX79EKV\n/3ABwnXB6HBSBIZ46HXITUFsOPWmCQsLkEvjtuT049uE4B+dbpHSkJzHUQEW\nTrtrZymgSptch5xNNtR8rRAz2dlUVxMbACs2B80wuLXV0jp3cIurPWTFY8LY\noHFTRLYC5E70agsDxuyd8/06Ef5y5sIO6Lwe/ypNQBAFneney3Q6FeHOygWo\nY7DOtPNafeFrjm78TPJ8d6r09ruBkx0R/qhX9utNydAvnhiY8WTxwQmBuGID\nyDz5qXPAB0MPpmZ/B4sq6kZlZxnZsucUnhugdBhBtP6/kMbmpaDnm3kpYLyY\nPk7Ux6RhPZCpg+4pV9a6XFrR8dCZxzaNPAwCfxOhWswhmqnoXWavPvG1Hc4r\naJnzwe+jR1N6qsKUGnjxumFu0WTL7vfNdGMP5K8Lna5asSy4ak0zhYKaQ4G7\n3Pyr7uCzW2piwQE8aJarDIg0Uc7F2ttnzw5FcqCCVQekdOrWInXBhNgJPObo\nNB3nshzliVptFSMJnPUn4OC63ordcMHO/GX8EtZlDamD9Qf7NKkR+hzvewID\n9AupIZHqMCBMUZU3LHqMh/LLebDYnKRfjOh6eKX9X1pHo94TE3YYCcuCXq3B\ndhZ3\r\n=apiM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"c31ae34cc460413061cf3edd21516aa6a4c114ba","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.0.0","description":"Standard library","directories":{},"_nodeVersion":"10.0.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.0.1","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.11.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.5.6_1525701474176_0.12489555265171703","host":"s3://npm-registry-packages"}},"3.0.0-beta.1":{"name":"core-js","version":"3.0.0-beta.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"014e07a170e1c9ce53e3c56de189b7eb3da8eb6b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.1.tgz","fileCount":809,"integrity":"sha512-vTxwsNJJGeq/NeKjj8AbqtVq/NyfqbxnwCzLhK4ypg9SjQmMNVgUT1cyuy/zpfwshGYfNB3f2gJnvdBqXnmofQ==","signatures":[{"sig":"MEUCIQD2AxxKwxy5/VGPaPEfoU5wjJE4vY9gSoX743FwFpUg1gIgCmtJ0MjX4hylocEwNQEOGSrruIFwwFTSnGxzb6BfJjw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":415634,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbAH8NCRA9TVsSAnZWagAA7f8P/j/BO6X25MWZEml8pA1t\nG2+U3H1ysJsbfXv7LoBRzFJIojdo8Vut5juPdrudahbarweHQmEAZmRIhbj7\nFfNWo/5bj53e0p3eQoyR2fm9EiHZo+Cx2nOBpr1I4klaAQpgXvGZ5YzeGZz8\nE0rtfMFG1uMpk4NZXbhdofjk8YmIKJ/yUEMpL/AGbzfpS2QXdxeqMQVCYMv0\nCOfRN88KZ7mrVWIJRkS8ZMoWBG1pYf9k+rEHYSvAxhxHNVPkOzJICxUTrsxR\n5E18uchPkMttU1iioNAhjmjH1htnvX1Djv7knkOQkuXBRMXV38B2lzwlv/pP\nN088x7EjMjgyXt6SR4kwZHYGUxM7HdFVdwOw4J2nzt0cEDQ90rQmAHn6nsdI\nCV40QZCeloVrBfiq1DhLPtezUWB/ekY9N07DnH/SmslZfB9w/FSc/LROtENt\nrtfq1N0asdvhQaqAthZlG1o4oBMkBVx0nlUBok9IFS3jmAh4kheKyOg3f1XM\n5+NI0p2NiwNn2VrdpmdS10Mj3ZV1uTowx582OuXKddMerV7lZEKvNH48oUXh\net4GQs+WA/CjyA/veeBoXfUNfjcTPgBjwC4wvZxMi4WMazOj9d/5MH6NvKKe\niAQpFkr0zz98SuZ7YnMinUPDf3o6VVcq8LOCgAaiR1XmVZ/hNS5dz7V8o4D2\nyPRs\r\n=FrcD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.0.1","description":"Standard library","directories":{},"_nodeVersion":"10.0.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.1_1526759179704_0.16417631987406334","host":"s3://npm-registry-packages"}},"2.5.7":{"name":"core-js","version":"2.5.7","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.5.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f972608ff0cead68b841a16a932d0b183791814e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.5.7.tgz","fileCount":1473,"integrity":"sha512-RszJCAxg/PP6uzXVXL6BsxSXx/B05oJAQ2vkJRjyjrEcNVycaqOmNb5OTxZPE3xa5gwZduqza6L9JOCenh/Ecw==","signatures":[{"sig":"MEUCIQCMa4bPzTPCjrNMC7Vlu6UuVBbQZbjUR44G5KfRGkSWVgIgRfRlwvjuOBDZvD8kFEv1fpEa0dhCud+ZYxdJK5N7/9I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2181855,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCUfxCRA9TVsSAnZWagAAhJ8P/3cptN/Jlktr+0cTcg/e\n/kpz8uidHUzCWgGH8X0qISGtEmtPOu6xFQi75Xg4a21OXXtQ0WS1AtIXWfqo\nNXLcMnZaHjT2QfYn5MewC7/+nIfjmNwy0Bv1cOZgglH7omCIsvGqPLdNZ3B5\nrFqjg3q7FJPXPC8NIkikWkQsVva1vphcCed66pAgBz4FXminpf2Yy8cLAlGM\n64szWKFk6GEV0c+Yb+8bxsL5jysy2mwp0PEl7fgGcjex0pbvGA0w4ozNB7u3\nZQfjh0lDZPo5dFZg73m69fVvF9IzAVw3pUTEEHeEZGvQRdLH1M/CRhVE81JS\n8RC3t9AOvgS/45R4XG3Y5CIBvulPwNoHeg+3sFCfSBBj5pP6Do1G3nu/qBjx\nNBXRvfspvKhwu4uL9Zw7kAp84JwFxF1eJdYLFSgSLmRf+HC44XtWwob3kuFz\nrXxB6/wBqKkDLAXw5gGIPyETnoRWhPWnc+sJMUkVPvJqKfAUUS5gfHNWV2sy\n1G4ulWQ/Vcdn0ezjSNIKni+fH9WjsyKrBUChrHVMNTxYiijPhBUav9Yl9yEv\nOsnfelubPRKRciVFjWiwVoO0ZB25cUM6EX8+movWAE35xk6Eveb60/T501xD\n6YPiFKR7fUliJEx6qu8UkhXNTnRVxXxOQVCiyiMrGV/LOlztbn8cQk7GG1QI\nONvk\r\n=c9bs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"5bbe230036de55b7f969487da9f3b15e5839359f","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.0.1","description":"Standard library","directories":{},"_nodeVersion":"10.0.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.5.7_1527334894361_0.8329534430915642","host":"s3://npm-registry-packages"}},"3.0.0-beta.2":{"name":"core-js","version":"3.0.0-beta.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b6b95f06ea818026b9f6b627a8ac4667532f0dff","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.2.tgz","fileCount":809,"integrity":"sha512-OJBSVw/GDqpoyF7g7xs4LKE89awGL8Bz5lQVJerBGmGty1hmFO4PoDlu4GhZQAbN3hFSoqz8ICMvQ5zbH8PVxw==","signatures":[{"sig":"MEUCIQCT5XWqHerp7ak5B3m9qd3Ha0PS6sxo8JF+RrlQL6dV7QIgYicS5UIp5euvDmEbftWYRONhy922/kR1F1UTN61vV/A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":415795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCU55CRA9TVsSAnZWagAAFncP/1btPs0sf38tBn3sD4mL\n1oHCDRrERGza8iJ2/pps8u4478s70ZKl01QOp2Hn0YA2+PhqkUBVRft3tvPV\ncx0/QTrzqecDzTL/IHtMYJ3rXJvvoIcrDkstBMTgs5uxSdxzb+sBfw6dHkho\nfmvtrQKX5xtc01zQAJMt92MkxkXAoum2wiNQalVjCRU03PcMs5/2Jz0jvUp2\nvAxB+BYa0h8fY+pgesp8s7lHHO7ZabvK1OXYq2VIPyukcDJkIP6cGosr4yDQ\n38fH1sab8CpixZu+TTBWiqF9XpV3ZUw3zW65esUmYwfX8qclJD2d78YxZcMn\nvd7zPj/9Y4rNXwbw9o4ygikW8+vMF61q5FryK4d0aAiRSCL5t9H0gKOyOiAC\nL2q3dXVwpJOleTTFFpMpM/T3+jjZCmU0Th1LgLXolV24XDvIWXWm8hQmOrPa\n48ulWJACke8VkNa1nDwPGT0wKq4QfwGA7ho8iZk8BjPu0Ug4407KRIhz6Vw9\nTxnJ70MGOoFitgJwejeT0TC5Bi1mSuFNNZtfcaj4wBDNnVbmvX/8PC7oJuQH\nZt3wQQiYsgc8YwLHRVnK1S5VJUw2uh+HH340NGOdXQR8ck7JZqcSI/fc3BXA\nle+nDRezVODjMXwiGYBqVXZTnzKaXoV3+HpMf7SzDXwUL63ta0Ug+tAxgUqO\n2ig2\r\n=ZTYe\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.0.1","description":"Standard library","directories":{},"_nodeVersion":"10.0.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.2_1527336568441_0.8476056960246605","host":"s3://npm-registry-packages"}},"3.0.0-beta.3":{"name":"core-js","version":"3.0.0-beta.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b0f22009972b8c6c04550ebf38513ca4b3cc9559","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.3.tgz","fileCount":1082,"integrity":"sha512-kM/OfrnMThP5PwGAj5HhQLdjUqzjrllqN2EVnk/X9qrLsfYjR2hzZ+E/8CzH0xuosexZtqMTLQrk//BULrBj9w==","signatures":[{"sig":"MEUCICDvMPoOKSNRuBCFW95z8DBIFgWVgIKsVCl+jNiIJjFuAiEAos4vYxfuLj9F0tlVM8ow/82YhkBkxdc9OJNPiKE48QA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":411479,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGN4nCRA9TVsSAnZWagAACzsP/3/jyPZZDxLA3FWZCY6k\nPRyWxr+oTqxNNqLYjvyzrADwpgOXmVdb425K1FuPMNA7qyAfKO2UXrfvfAsF\noU4SwPrIswnWchuxj31Uh9GnGykmBqZLsmkQP8WsGJ9a7+0Vawb4Ny7LTutz\n/GKKj2fLbVeA87BhLFfF3N5atrkgwuxicA++ucuub+iOH1cbbpO6T/9IR7Wt\nVr0HMgbguTKD03T4N9yqNK8XPOFXo3nkkL5LtHTnfYhq5KLnq/sH0Ldkf1vM\nC3T8R07SS0YgrX90V5OFY794luBMSGfjS3SCaAGhBF3/MndGhMCnYtV629/F\nbZlKguhGLhlxq2R/iPvIkcQQ0kbultSIShW3LrkJi8KDd/I8TXnsjX9PzmA/\nzWLBbf8BRammiTPgGsccfAHhwH+tYFGU20/9ro1Rv4QGZfmoklCLgvjaDQ3y\nLiyTZDEyuotqlQqeb47O0OIR3AqOcsrjKiRgwGcWzLGtYkL110adxMCRrwgO\nwjpsWBSWZUy7DzW/dvhh0ls8S/wINx0OFoaUAlCeOuy1RbMvJACngC2kbHwV\nJlzQp2tXAHob2EghkLFE9ehDk2zK1gHosCKrJm2LrHrM60n8cZ4cW4c4Sryt\nhu6PYeNULyiW93huh1Cpr5LRBBUKuLS0UYrJJ0kbHW3cqspfMI7avM+BP3xe\neRJ2\r\n=ZohR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.1.0","description":"Standard library","directories":{},"_nodeVersion":"10.0.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.3_1528356390458_0.9962482814578018","host":"s3://npm-registry-packages"}},"3.0.0-beta.4":{"name":"core-js","version":"3.0.0-beta.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"7443c32990d21198d23de18acb061a5e5bc9f549","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.4.tgz","fileCount":1125,"integrity":"sha512-yz4iJCkkSQLQSLHPGUln6r5ZBkLPzZSvHG0g1nfvcdnmpIe+KE9WOb1ZEEf6EEaEmjp9Ol0Kw5J5vnoIWc5eWw==","signatures":[{"sig":"MEYCIQDkgoa0/um9Qu5JS0RZ6wJ3bTLaZrMTo6RIateoUcD+ugIhAOQQQJ94O0sUtpz9fLBVQAT1Z8C+osvxFfu9y1GBAtW1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":442134,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcBgW2CRA9TVsSAnZWagAAjF4P/3X5WMdrzMKK2nuRlC4K\nDCWmo0nVy/QKIMtg49HwedUWcf2vJQoWWanWFl8pbXEsAMTEM2+cLlkyks9z\n26+8QUFhj0RQpbbyplWP79DohQ2nCqJv0RvBYThveyml4Fc56msbwl9/kCf2\nce7CxmjYvUI31sS6LCN27dET0E7DVHHsYzkROEmqs0NGS+xgyrkBFKA3LkGM\nYM2/zRL0jlkADUKdm9b5swlwVGAJpZ8RZDHuXHJrirsOjB8umioMLgFEs2tl\nPLcu7n0536kHph7NjHfkDjSMwCPl3xu87huqxDHq3SmI+229h7WxrucMydCM\nCeCyp0/2c86DyLUg/CfNhHf/gkWGyNiddn64LdfnOeezWQgW/ZtbRDMVeufJ\nZKiZEsiO/rjovLQ3IG2XARt8qS132zyBEkNL3ezXf6Ktu3RL/CJSgVwdB/pS\ny3oIk5qXS1vyeKvkLwieTfEBAF5lwQBmRvUjiDn9Zr/OVZ/A0Al4w4CXzNaz\nxsELyPNR2QXxCBuzpuCxuGnN5TQByyqczka1mYYOdyVY+r4eLKrm4lfJ6zF/\njRQA7nkJoy+HWlDuII56AqCO8Lh4LBs2TIeSzpp0d2gpmW6Uj852dKcUBJzM\nJufeAE1Z2+wWaAeHgTt2TVc9B+KxrqYR0ZVRkXK5ngbMtfqrogCh5b5P4bpr\nG85s\r\n=z4XB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.4.1","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.4_1543898550089_0.7106175777929418","host":"s3://npm-registry-packages"}},"2.6.0":{"name":"core-js","version":"2.6.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1e30793e9ee5782b307e37ffa22da0eacddd84d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.0.tgz","fileCount":1484,"integrity":"sha512-kLRC6ncVpuEW/1kwrOXYX6KQASCVtrh1gQr/UiaVgFlf9WE5Vp+lNe5+h3LuMr5PAucWnnEXwH0nQHRH/gpGtw==","signatures":[{"sig":"MEUCIEtuk+aXf77ba7+vogyqYeIJ7M0czLjEm3Krdk9cZVt3AiEAorSoh1w9vaiKvM+fx7iT+XDzBZ5ErmsNKcJ0ZYR58lg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2242795,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcB64ZCRA9TVsSAnZWagAAgv0P/ioT1FA6s859gfOOX8Jj\nG2BLY76CeuP/P4YJwHdHDzBJXCheHI55hzeba1hut6Lsfc+AlbCDqrqvD+8t\nkQggQdoRIZS4Azgjk9xTChdyzPUZmkVLTo1ncUFHkbtfga0jwRGkq/H8Cp9N\nPOfUkubn/ZjAN3ME9KzWXRWW8BZ6BXXXDXlOicRc2gNAx96kwV0EpbiLYcJ/\n3vbGO9MWwV01AEX1TumEYegl/4gUUqk32BVkFIv2aJUTLL3OuFWbfqsRK67L\nS256HZ3bnLjgOs/xfpV1tNQSJbfQVXACLm4+CZoJ3bARUF5iey1cCl9BbmtU\n0F4GPcCEgak30991+TrR4VTKNv2IghKdauUYxQSWVteXN1QEQVe+VjE2zs49\nnFb+PQ33k4pWyjMOql9lQpiLOqhZuEpF6gmVxtrMXbUqH/TzqxcjqmB8zbu1\nUOK84hx1X4+86ZVHsCe5rCYd6VQ8Yn4CafPpebl8P7IvyKZApN+pCbkl71G7\n1fv0Q691qTw+P5jCpr3wfb/WBSLGWrzpJ0jgD0z1a6xZ86pWZOYb5mrn+m8x\nayOt7wCdh44wTVkWJZMOFkm6OKJnDHcCTqq/6wj/OWKvf5nf2gOOrW3BewKQ\nZIDhnryMIYAoICuSK7NsNOixEoiUY2PTBI6jMhKd0h+o5CzmYkAArBdiEKJG\nNMe4\r\n=MTUF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"f980318866f5cfb2933493c81ba89e1baf0f33c2","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.4.1","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.0_1544007192687_0.5355510611260672","host":"s3://npm-registry-packages"}},"3.0.0-beta.5":{"name":"core-js","version":"3.0.0-beta.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0d09e0cbb45eedef427e72cc1d7725602805f909","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.5.tgz","fileCount":1139,"integrity":"sha512-lv/UPXe8QIvAX4XEgz3u9gpSbYr0Et6gaVhwMEH6SN9Uk+aIhk9IMwQUa35pymUiA4t2THPOaqysDJtX4jcm3w==","signatures":[{"sig":"MEUCIHMWRMQIx1rz6IUBRxeCy0zgOvAupcRwrzmBdhG0l+EUAiEAoTGcizJmE1RRT2Bnf54xfhY8P/5VWTzDrFiuMfwdheI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":493621,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcD87FCRA9TVsSAnZWagAA4tUP+gI0bcKMdvZKGWawmVMR\n3yu2891mgcfpDI/r6ynONFsbcAEYK9Uw0LdxUoQvtBNLIwu2UCPVOlyM4xKI\np5Qhek7cMNhu6cgdISLxJ/oFyOlOtyTDaeVf+w28miwOvHGNhcVcTdqVbATj\nYiWON2UO+Ky4G4i3mcZQJyVNa5hZo1eQp6QXlkAAxtUYoc8PnDo2Qm69EnyS\nHxILfhcxgCf+pNAcs/s87SZ5dtFuJqjFdFul8l1KKc5TmROSHfGFcUhEIAxE\nwtkX1Z9CHsD6pU1jNHNccP4QUDZ1h7HovItKh2cs0BrmONqw1x2wU+Yrsm8g\n+ieC7r3yhm5TRCvYxoQFKpElc6cWAdj93q4nE10weJM40Pgahih9kI+LvuV/\nj4vvd7AuEYFzeSNKn3ACz0AkCp7NFuZcbC8GTb++iOwSZ9psBe+9xbkR+aSv\nihiOrxfBnOpSkEiqs5aE36tpbdkEEMJOYvT9SBsCdC/GDybVjn0cL+BxqmMk\n7hFEli5WYSy2ekPxsScbCCZihq77SNbedTjmJtdzes2FIHYjlvnbEZ9d4dqZ\ncDmsqHGg00zcfHE6yksk/nEjcQAMOAb7JZtREA7D99Ffoe+iHcNuT9xMJoXm\nl29Bb2Jvol8DOoAUvyhd44BFxCQKzYb13+sd6j+mxrcXmWOEiVJnweky/emt\nbq3c\r\n=gdsK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.4.1","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.5_1544539844720_0.35784865944092537","host":"s3://npm-registry-packages"}},"2.6.1":{"name":"core-js","version":"2.6.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"87416ae817de957a3f249b3b5ca475d4aaed6042","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.1.tgz","fileCount":1484,"integrity":"sha512-L72mmmEayPJBejKIWe2pYtGis5r0tQ5NaJekdhyXgeMQTpJoBsH0NL4ElY2LfSoV15xeQWKQ+XTTOZdyero5Xg==","signatures":[{"sig":"MEQCIGkwpIm+uvltvpYZx0V+aI/OM6ikcM8KtBJ6OMEKJ2yAAiAK5JtNy10Fz3kvAu61esWvFGZPN21leMPqykve4MY4XA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2247929,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGMUCCRA9TVsSAnZWagAAGPMP+QD/SvoAzJ7F0PovsKRj\neLOIcsZypyutFGwVtHhwKD8uRwIm/36GdqJCApS9OH0EOVFH7SVCvdzwB/qU\n/cd9kwNAy2OtikydS9hyQ5dDrVr9LEcRJrxtcK4fJha1Qtk8QSC/dLunI9LE\n/dG1tHg8DjxMm4Qc9eVViaohg5t+zV8iZebA0NNhVn75n+9FcBC1MRK0vLmW\nQEUTQSByj/2WGHnhNZew3O984Ky8Yf5r5KjNKORG089bFAgRNWsx79Ij+E/y\nlcKiqP0STcMd7vy6q2z2uNefZ8Rpl/7Yh12Pam4EEARxD3GoasmTldXB9JKN\n/iVz3kaWcjvgmDeTmqlXkyoyEP2HLSeMDNVL5u7I1+WdXpBPhxbk1AOTJ/Bo\nseDZmFjZUTAI3f2GO6v+79G5PzesRzWe3W+6bH8rib6OOVFN+yOvdqxy96UB\nhYzwHGP6e0fyOEG/DUKhxBfbK12Id4lBY8Azmy0Y4JBXdcwSpbCJTmIomaN8\n+oEzH83aRkGm9bg6/DYRrWWWKoY5De8qNfd6VKGoHa2aAmnslV0cNoAKNbkp\n9yeVXNYHmt/8SXjK/dIlZk2ykcjTYPHCOfWZr0yyV9JxB9bLGh8GJFne7YLB\nsCRnB99PgV8nRtEEGrNUEKCqEhqFWQ4bJw/yld6N3ki0/Kh2tiRpca71XZT5\nJlRH\r\n=wMbm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"a5def74435d2e99ac0b5ba2053eaccaa3a3f1fba","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.4.1","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.1_1545127169676_0.0610095816327163","host":"s3://npm-registry-packages"}},"3.0.0-beta.6":{"name":"core-js","version":"3.0.0-beta.6","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f1ee6c8bd9c1941f992fda01f886b3b40ceb1510","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.6.tgz","fileCount":1144,"integrity":"sha512-06k0SnRTdYGlTNek5vAqfxbQjTtMM0zC2xJ79T1QM5UkZS0JQegrOgDiGh43n1QICnOe5+bcvS0zOGTm2C7rBA==","signatures":[{"sig":"MEQCIQDwGTD3ncv+8DX6tt8AivRwsLCLpe8kOuI57bJG087Y8AIfFz+RHnlt4opxmV8oZmRSSoAJ8ybB1K+A/bBwQWK5Bw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":495470,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGM2jCRA9TVsSAnZWagAAYc0P/3Cf79XWwyw+zRvE7a05\nsEYGvVmKqfJQMBO7NghUEr46Td9ps4OjldayAUoR4rK5b1xdGzGR1PKnpXjF\nxsVNTPN1qm83Sm8tTmsWiHszCIJPA6dGH0+qk9DJco3vE+Hvvgsf+zOGLr7w\newCi/oDL10+gmzBrwMEoSknRASZzp0DvqqGZl5qJd1NCW0Xhgj4/2yqFBqBq\n8kRNfTwFHgyhjgI6ik8jl8IUz0+c0khOh09UlXMmLVoPps+KD8c19OlTpRu5\nzapJqSEWB4dkPXigt2cs2Wriv4vEIbDlrzABwMFm5KzB6IMk7Dhx8GwrJUZx\n4kMexPiO5Azol0+0LpVcQhc7BujrXz6PUiUACk1d8ApGpPAES+Fc+4gwpBic\nAHNWx3LYx1SNCRQYMMzre23IvQY6AlIFyC8ZKG0UUaNriADqVcCQdDCkZ3j0\nk/032FaEc9ueolRudTREowZ9VkRGZtjh5xMOtHhzfeRpWKe7hamYL2D25soZ\noNae2d4nnKsrpychHd/WMghviGT1698Q/QN3bqTr6VP1D0RU/xCmJEiFT2rX\n5gaPbJgpBvYmYwVtKzZHu03w74LWupiy5rTGgU1cXuW/+9HY+sE00zoIG7QX\nE13v9D8tai0Z6md7hpr1z7eTre0hfrKtnvTJhl+rEC+fwSzKrEhJRDVltT80\nA8dU\r\n=Dani\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.4.1","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.6_1545129378679_0.8193234313841677","host":"s3://npm-registry-packages"}},"3.0.0-beta.7":{"name":"core-js","version":"3.0.0-beta.7","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d8bc953adc4805e81dbfc73c18050f6ca78d547b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.7.tgz","fileCount":1143,"integrity":"sha512-Tf2uksQ1zuzoLbjWhEej9/iSAtjwtqzuXAGUidO7PNuUN2uPCCnJoR6YmIO3Ibq6vuGNzH6wt+3pLHrl7wEIYw==","signatures":[{"sig":"MEQCIB3SjXGxN+3MO32A+nUlBpdfQY+2NnxezjpmyNZlT2j5AiBjF2qtjV3Sx2X4+I0+EXGtQrVgOqjYRPHMRnl873zmsA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":483364,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcJCIHCRA9TVsSAnZWagAAoVwP/1xpwEsyS23bz84JhjZF\n13m3gwy9MiEaLqNoJgKVNJKCVou81g9HZ4rD27rXR3JYV/2hdURHXRpqO7Dc\ngc63bm34xY5EOTLzf1oBOTR8+lPGYYe0ib7oR9FRtqSS//IEmlTH8Tc2c86i\nGtpSNbysByqWKkM6uH+jSS2qKfqJy26F2KxSSnH+9eZi66MoipkLkQhHfss4\nlbhLEUpC+vS4JMkVgDVSVF0T7mJv3zeCbq9Bi6G8sRZ+DFM05FuZIenG7Eid\nk942lRB8LPN2kXQZXSqzH7LqXtZp4EezSX5ErTslsO74R1BfFr918Trza9M5\nROUQ0Dvy7fZIkLXwQKWVwT7TpOQHgpbwGDxawpLMZYa+9vf7SuUr/YwBdHY2\nPChK4sR6C4OwEaP/bkGcAD1HBrqE6AivtdaE3mCtD+Fotapowl2Kw57hp+l5\n7/0R/PyuPeHoTEQ/AE8AXwUHl5yXF+2/1I+IY2QF2DOTXeyO5rCsmXNnInD6\nKU5+d4TLlCNNIubgBpS0rgb6mKx3o3bnmF7ziZo7ToWo/FkqZyEZ5PIRBqFV\nA2EW8tITvYL6HSIGIw5EoRoZvulKTPda//IrFLPbCRfEXWz4aJcrkvHLpADH\niJPS6HufJfxf5l9d4gD0rtnhiOSgx/KL4tPKpqAHNjaJ85KUudKk9R4LUxn6\n4Dpz\r\n=RU7k\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.5.0","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.7_1545871878339_0.6085445920333512","host":"s3://npm-registry-packages"}},"2.6.2":{"name":"core-js","version":"2.6.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"267988d7268323b349e20b4588211655f0e83944","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.2.tgz","fileCount":1484,"integrity":"sha512-NdBPF/RVwPW6jr0NCILuyN9RiqLo2b1mddWHkUL+VnvcB7dzlnBJ1bXYntjpTGOgkZiiLWj2JxmOr7eGE3qK6g==","signatures":[{"sig":"MEYCIQDEgb9C4txyyxuLw9x7w9HLR3402pZdBvEru6ytJtC2dQIhAOmHgW71y0yqCiFCpG2DcaQQGIWZ5b3U+5BWQ1zM0yuo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2248070,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNvDwCRA9TVsSAnZWagAA4xEP/j0bsxL+L1o8Ljm5ubAF\nJWMPgwlHad7WOiipB56MAAOtHMtdB34b4YOMIxjdQbHEnYaqSRDJfANnVQMk\nOfQApgBl3Lh8t2rY4kFIwDW4W0d3WTOSnETeNTw6S+X4s8KxVsiXd1dGHMuy\n0WiuUxjL03PG8+LCYkw2lQvVMKE7o+DT0UmOb7GgTrrPyyEniz+sILr9VcQX\ncswxgxl9y4YiibthFOegtT8eLt3F8Bxp8utbC/2R3h4TH7pQAJ/zXk/R+ink\nIVJxmO8HPaPiMWh0n1QToMozh3pfsJkvkJflTQ7uqSPaqrFg3GE8+XMuj9pq\nQkjrUur3yQApGFbEYW0crJNDkN8zEtE1iU/gT2bytCy/w+/8kuWFQV226y3c\nVxjPBjbH9cMRPlK4AzCh4XiW9RRu20zk3EAi7AvEQxFR1USZVjj38LFc3szt\n9J6oD4t3RkQudv5WIp+OEWEBcfWP2j5/G+ASTN5J6eve1EUrpzzwywMLr4Wd\n3sRmDePvID7KOB0cl+xAqo6k+mExKR5S5XTDhnVke5LNv9gZMvyzRO0K51FQ\noHYhcOfkGoQIlHq2ILMRIIIH/hhlaksTJ8StVCNpBRQaXAz8CCWPwqglBwe4\nRRGSFH+D+VsUYkzEA8hmh5j0iVVu8kB+QkAg9UZXBN+QDsUyYPXjsIlxmSSx\nPXsl\r\n=OmL5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"99ea4e25f1e4705725a1acd464f4872fb577926a","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.5.0","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.2_1547104495064_0.6891567137284675","host":"s3://npm-registry-packages"}},"3.0.0-beta.8":{"name":"core-js","version":"3.0.0-beta.8","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.8","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2b0b5a26e01cb176c9197d84d1f05911bcd66f53","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.8.tgz","fileCount":1145,"integrity":"sha512-ex9wpitprNDuK6bPRljFW0z0IBatqtmqeuZ1HpcFcSkdOQSGNu3XdZSTshEuAIeYgLarHpw55P3SQlKAnXmpuQ==","signatures":[{"sig":"MEQCIFVEtNRvhOOQY9vVvA/csTjKT5pI68Gc0rqu4D9OJP4qAiBHoUCVa0oCKg63ki4EeqdLG28fc7b7XObPGaFG3/cGgA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":484314,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcNvXnCRA9TVsSAnZWagAAzuQP/1T9Bq7k6AgB9G8lqdTi\naayFdSHrSjVUisIgeVPTJObREJ3BN5daBx5UIK3B+eQG7/mQOdws9arq8dst\nHEqbdQujhLZ3SODc8bM6qa8C1udH6Elx+RJY1e+zTtUJPq+olERihUPYIvcZ\nomrRgzCJmPBWcXkXM86RXWr676n4fJxdzt9hsdsb13yCCAQ44UwX3tlWgs5I\n+aWaclu30YPDWEOxaxyzV5CiVX5tM5HrU2m6R451xnSpwKGPOgttfzRERr4r\nytIrUN4rp/VWh/cePJEy4lsZKUMv9inySjT4p60M+PUaTf0/7Wyv5/HC0DrK\namx0TqwK0SVy8tR4LL4ZcZd5fb5fOT7mVr7zG8rLVcBg9zsN+m1B2OpptLXx\nQpxEWTubrqRWrBd5amjphwXISgYfeSrBYqVw3LrAp3l97dEuOIEPa1nuNm43\n7Tca0ppVBVAzximAo0CfI55t/d1I91U4wnOvmDataJd1jG01K77OziRCW6cK\nfRviJoZ+nKT0l5Io46SpNjs7/pXlA4C6Er7sCml8aX3tYvzyO7fS/00HPTYy\n2hp4cFitnS9RILSb7o0oMpo68fbUxcuI1iGxFwlf0J4OEaFBTOGRBIhKv7CS\n5mCF+Lx0dYEFhklQ43fgaQQmpWR6LEkNvwPykIsClIAWL9hoVO8VTVWbplPc\nZGWa\r\n=yBXX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.5.0","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.8_1547105766460_0.10845342124174828","host":"s3://npm-registry-packages"}},"3.0.0-beta.9":{"name":"core-js","version":"3.0.0-beta.9","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.9","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1897789a5ef0ee1190d54777f35f80c38c077633","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.9.tgz","fileCount":1147,"integrity":"sha512-OGLbGro2f0s8UXVyu2s9kIW42pcuRoNEqJsmn8a4rAOO9G5A2t96l++rf+4mHNw9GKrbdozZ9G5ieDKOBl68zQ==","signatures":[{"sig":"MEUCIQCJO+3ZLjkPDzqHxjJYDdGnY0UbseqPnlgZxu2or6i1UwIgIdJmiXP4xKAMRN/ZgpR4HZIL1JsRioUCHawoB4zy48c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":490193,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcQFZWCRA9TVsSAnZWagAALHoQAJwMYbTfMQxDS4rgXFe8\nuLR6BWVO0kYgD+XB+OwM4SW6nJeSb1T6qXnMCXH1j4n0m7EuFeptldKNoM9P\ntT182wHvvjusKt+E7yUnYVoRMM5qm5BIJrug2yvGqum0ap4IaGl11gytveQ6\nFwlqhwoy04h8RyAzitnCiCvd6WPsL7WQP8bevhRrvAe5mUCpS7hl/NxHMQrt\naQAj9ElFhd91zeIK2Q5LlgmfMA/AMEVrTWwegOLokJCqXloU7KFc1sM6rkda\nQAVa0h2NBLKBvwOmIeRwNeNcXVQNDYZCs+ayzE8U47s6WVHrSW07IzqTofyc\n3SAwx5665Qdv3lekYCiQyiGXius2DKpRYyNfHP3TuU0pC0nJAC2jqW2yK9Db\n9vxkzz3pLWdjfQQjqqMl73KT7jiBzkiiuoYiPWriBTp8Foqh3PS3NV7YhLM6\np6sXGaxvfSa/Fi09y76VuHiPHmr1TNaRUNncAqKFOH06BIYENe2y/GDz7ZK1\nUjuyDi7YeYAKvh+0BKqktOzfgoP2XihI2fsaon2nkS+JJlf/RXJQN7sm5hk2\nRRaHv3YiEZ2Q92YuQku9MIXb3l803z1oHLFEkNElqnd4jC27ZDnPKn9UUFPi\nBK/RzSkFNYoZS1ibE743oI+h+dQScyVZNqKUyCsHbf3xlylXxCByMMsqY+ws\nrQov\r\n=R+Ip\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.5.0","description":"Standard library","directories":{},"_nodeVersion":"10.12.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.9_1547720277643_0.46063776806217294","host":"s3://npm-registry-packages"}},"3.0.0-beta.10":{"name":"core-js","version":"3.0.0-beta.10","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.10","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d96684242a35710ed7892ffe43e18beec6afef15","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.10.tgz","fileCount":1147,"integrity":"sha512-ATpwQnGp5NQu42Y+D5dz/W0rt7RzkGIvkG/IiL1BKuTb6FLg+VrXGnK6cgw7j2OEFtUKkAZRq+wIbzd3jyJ7fw==","signatures":[{"sig":"MEUCIDdm/JAzaNWbTL6C6GJGYtJ6YU7KfRDnDoyyN2Ic+xFwAiEA4ukYWLdzrLaQcG/vNGMsQiAgwP7Lx9GbxDT27Md+6KA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":490836,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRnSxCRA9TVsSAnZWagAAbXgP/RPQFjiAmnioy6FLKj/y\nWzgA2YPWpLrqUex5J7mqzV6Ri8Coml/hGN52YpewcT2O982LTbdzXh/vurDH\nMrycjRHXBix9t66T8McXKVRZcieNdvEGICKr/ZwNRFqSQ5gywna1+fj3xKU8\n7JKFi4l+dirBtgdST7bhidynmtqtcUW2tI167TLY36B2EE+pxqn4v/xvuix8\n7Cpfniw4UReOzy9o2WgXz5gL4fnXKnI3nHK5Ul7j75o13/c9inZhmOyiAHEd\nL1GcB4P8fp+t2ROvPsMb1Ab0IQH049LFZuhbfkDpFGQlxFfB1PH7imiBUYC/\naN1UwxmIuS98mjMuhJVukiGxuHe3dF5bZUo6e91/DV3G/EMoK2RE3EGawtFa\nrFNri/G85rTRRdsGh9F+5R/9erTB+xGJpkwjBa6H17kn8tLt39lnKuzRfcLG\nVkSQkMubEOhEats9By0jb8BhkLEaqV+bx/MeAWNKYrekLhI1ASoYgnGxO55w\npfb5TsHIE/2gvd1fkxFG4fimadAaz6Vs2cGGy7N1JqTWZUyd0Lw7/pyP5PFk\nMPUmdqYNRt+9Za5nwJ/vJs58py2hdWZ+n4sMq3aRy/sIOmn5rDKfiNVd2HZ1\n6G0J9udp2bivmU4F7mcyf16r69pSaEQ2vjXZe9scOErGSG926KPfqxvgKf2Q\nN+RW\r\n=Yi99\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.6.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.10_1548121264774_0.34131318631224317","host":"s3://npm-registry-packages"}},"2.6.3":{"name":"core-js","version":"2.6.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"4b70938bdffdaf64931e66e2db158f0892289c49","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.3.tgz","fileCount":1484,"integrity":"sha512-l00tmFFZOBHtYhN4Cz7k32VM7vTn3rE2ANjQDxdEN6zmXZ/xq1jQuutnmHvMG1ZJ7xd72+TA5YpUK8wz3rWsfQ==","signatures":[{"sig":"MEUCIQD0V5KHmcnnSXQsWfV4PNl+hD1DwlmEqudhyPzp0G8yEgIgO1wa7t69AHU/Adngulda5DdF8BSWYU8Q7P6Uhzb8cDQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2248431,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcRwR4CRA9TVsSAnZWagAAXVcP/0iuu6vt0xPNrnlHfd2e\nxzsWzPE7UZumPTOhIYiFexeUvW6Jsqo2kPEcMqqD88RSa7XMabv6gtQp5G7i\nWfbrhoOV1cUaUaAhCPUPy1BPa5xqOqCmD8oIcIz2VWtD7f2E6Re63nPbnUeh\nvTZEd/k/7zSShawOo0IV0UyEPif1chR/1fvOrit2LnI4FSfaLEGmEcLcWulK\nfY4jRfWzSaBUdZwgGw9aj+96xXDv+cnCTUmHY3JCKCmlc8onLCIT8WoO0fh9\nZqgTTwiPHnBNnJNkN4NoiqGTacxWzNx5k1q1VwPPvnKczrw+jTfS7VminbFt\n653lj5Z9jI/Jh1c4jvQwcTtnGY85vEBKP5eGidMdJrRZSLaXo+74nANGEm8a\n0v/AFnuI+rVrfx85MCaBrUzhbogJgIRUifNoJrRBZkmQ/O1z4GbdEj+9/cOX\n5lxByY1l/wefChYa3pb2U6D4LkQoBFjJ4lEEjE5ufQwOVo59so8HRa+APS1E\nQoWb2sG51STolfS3VWoCFUCsFgfKKVMY9OiiUr8jFaM0lloUgPv08gO+WTwF\npbYD30Jq1gt4OdCEfWLjso3zueO0a3nEH0b9KC9UBDHr4JC3Bc+A4JlgqjX7\ncnU0r4Ba4dxbhbBCRSLlj3xAcDIOAkHsV6plf4Px1W03a/LdjGE/qJ/7T7fs\nSzf7\r\n=85VY\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"ea6a01b83b1c6d2bcddafcb8bfd207ef11052932","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.6.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.3_1548158071081_0.5474378799760458","host":"s3://npm-registry-packages"}},"3.0.0-beta.11":{"name":"core-js","version":"3.0.0-beta.11","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.11","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"dac9d000f562194cc8bc7fe142be0d70c8c910f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.11.tgz","fileCount":1147,"integrity":"sha512-Q1gGAIqiFfR8ZqjrJw4gzjDrP2JsLacNQzUKUfqvcpg974bCQrPaT4a+HNbznQm5DabCIKw9fGQotj0dgdsMRg==","signatures":[{"sig":"MEUCIQCP/y8eSZWyhaycJPngfBlqgr1xoES2Lzexb1itZlSFnQIgNA63PIfObtvPYBPb0hjTwHOK8l+VdIu2mrfbCLOLp9o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":491198,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTj5wCRA9TVsSAnZWagAAa8EQAJJvQRLh+oCCfq6EuMkP\nbqIT0ROa+8mTQxCsCXPos8zLVUzxX2VCMUxuea3IRUl2ZGpbIgsIl6vC9QTg\nhMEYu3yv8vbBI1iKzU/4WXBDGLxBc6bdQKMaYsE35ikOLwFYWwd/yxaFh0gQ\n/ydnblEFcdFoCSthyxM871KeTrfDGG6YjFuG5f5oTHxixm+NQXMQsOOKgcFy\nPdvNAHafVFJktJcD4OfgWky+JXMpkLOKLMn1abG8w736sfuu77hb5X8xyK1k\nW38DSbxkD54hLtlTsdAHFWOeoFmlck3lwqvCA6BmN/b7saF3DwpXys5FRAB0\ndXGzqCgwSi+d6uCNqt3oIuD94CU7oSuNgzNeqw9Y+ZSuCLF6YVbUItxJ6Nan\nl5Wd3YOOOkMkDqtqm6CMghXrdAb0MjVxBiHPu5ho+DoZ/y+0dz2388UAomJa\nor7e+cNEUUdErPUxAtB3r1L7MpM9ixwWVhrsvWeCqyEKb1f7cXLhqSd1VdkV\nL7y+/DPdvWQjO4NFiigbekmtApvgfRFG5SHtp25U8StbCBhQEobWr2CEz3Xb\nDDS1UKPQPEFfA03gOkzxBiOetI3a8sTMZDN5ozippeh4Wgn6hyPKj/irrYza\nbdr/IKGJQe+vtyqxaUGSCD+jFMvzB5FxLFm1YLJHg2jAHsGU27qrzejm0/op\n78/h\r\n=KkHi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.7.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.11_1548631663557_0.7981554753111413","host":"s3://npm-registry-packages"}},"3.0.0-beta.12":{"name":"core-js","version":"3.0.0-beta.12","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.12","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f3efd5e3dfce5211b726dbc4f12e62a30444eb4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.12.tgz","fileCount":1160,"integrity":"sha512-YsdTMrj2elZlLqANyuMZl/i30et6QErNPkft2jeHLJeqR2BIl+v25v4DJRcvWcVXhYfuYpXyaUdlAkABJz7iPQ==","signatures":[{"sig":"MEUCIQCDDTgqW3Sw9H26Ut6JJoRbPHlhGQ9pW3ybL1Bk/JCRpwIgN5eq4eUXDrw6IJRItBYSevpl/GoQFwGvKrZQ++vGiGY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":493469,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcVQTbCRA9TVsSAnZWagAAS00QAIirWOngicCcB7NWrZXx\nJ72JBK9PUtXJWitlSjAbNshXI3/cUIIgMRNoP4pVlSqPYiHHazWNrEqUqwN1\n+6gQm+GXr2TodihtALRLQjp0mdBtmTRNXhbOcv53exnzmfuL5CSwibvIzZUh\n351SRejvkV+q0hDXhtFtEi0bvrQoy6KCk1X2I4mQ0tkf7MnVqPrjJRc3JUIO\nKAuErFHbyylwVBzmWV5+BMXZSgHqEgX6uuCCGtgF/TjTJLGpT3nDpV7FvN/i\n405GJukH+2V8kbHwcvDK/+4MpnxWEZpymmed9qSX6+MAlkO+fUV5KUxpHXZS\neka7sRkdIy1dBnvusegRoH+9PiVCFR1DsXMp7BMhy6PxrfKSWn2R6KCE6L2b\nCbZ6uJrvLvRoMJWWga17wQ1LWfBg6AuYFtKQJQ4zSLwqEk34pkVPb9XLXoXc\npxg/5IIsvoaphVevgjm+h8hr/J+5Oyj/kn8VUWxr7GhLk9gLmYyTfhQeIrbE\njPnm2ewGkfLJxK23cI8a0ag0rfjdpa2ZR6ylf1tEsoV3ggXrcqtWGk+XuHDQ\nYFDdmfVBAroWSB9CpQoVtKTJIscAe0B4DmpVUFJaA8p4C1te6VAmijME+zKR\nRjgFYIR9GkXCvofi9wuX72LXGqRFDNnaXFxQBU8kPWsMcR9UWtFTy1ZVMTFH\n2Fev\r\n=hC6E\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.7.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.12_1549075674970_0.18424111745651128","host":"s3://npm-registry-packages"}},"3.0.0-beta.13":{"name":"core-js","version":"3.0.0-beta.13","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.13","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"7732c69be5e4758887917235fe7c0352c4cb42a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.13.tgz","fileCount":1573,"integrity":"sha512-16Q43c/3LT9NyePUJKL8nRIQgYWjcBhjJSMWg96PVSxoS0PeE0NHitPI3opBrs9MGGHjte1KoEVr9W63YKlTXQ==","signatures":[{"sig":"MEYCIQCBsFGOr5qXy0wEdiHiYPBg1b1aWvhEPAyrIl3dt5uMxwIhAKvvRN/vaLyOIs+zc8UYYu5LMGmE65dtpr2ZcWyHIWuM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":527754,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWA84CRA9TVsSAnZWagAANrYP+gJInpXIuTeklGeUf6rQ\nLLiVbojp3cPqEFnisx+Cqe02Kk6fjtKI0hHKTxEOLugXrVGhqp4gZtUKYs22\nA2eQLxeBNIeZcH2tsYOp6wZsYdw8X9QT71vFiRzpWIDluia4J4QMSLwsmON6\nVJp/NjCQcsIYSD1xLqcYgPkQu57MUqBDCJi3BYXgEudpdvlSLKxHgORI1MLW\nmu0vOmw1k1Qea5YJ/xfiTt+rqYeNL9Gj/vcVxY7Kim3ASuaqaa4SNBRql1ln\n+VDyCTnWtjREdltB5jdOiYzGZZdv0Zx92C6SdacAXwjhXYvgn7aW0Sv0XQt4\nLtmnqiJ8N1TOHA/4GTtKRSlumI1W6Qv3qDXL+pTWDK+PNhcka6771F5S6rof\n9srjtYwHs4w19VT76Xtt5oCHuk3Qwbfp88sG9fxK3QIVZK7uD8Vz//A7Er07\niyPvXq95RWGnlNR6KEaPO1s43EbVwnDEfQqbBb49+uV1zeZDwTmgX5fN5zz6\nWU7mtotv0+9jTJNJ9tlGoWdI+vfOLUtd8UmNrYDDqrMnM4wGbp9SjGMSZTJ1\nbo2z9TIgejZ79/x5FrmANEymj5aNdd039FzPYPl45xSabJo/7o7X2udEDmW2\nfjB7aZcv8yfb8OgaVLm3ZDYCm1bdxIuy5idmGtV9kuOGl3iw8ZrBz9RF+VQR\nE2bH\r\n=Xj7F\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.7.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.13_1549274935431_0.9953460033447712","host":"s3://npm-registry-packages"}},"3.0.0-beta.14":{"name":"core-js","version":"3.0.0-beta.14","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.14","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d436d6d794763a208d3b1065effefcd4de789d13","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.14.tgz","fileCount":1576,"integrity":"sha512-C3QIpn2g5dBi/y7lxeetqYNSQbeEetiqPEALaT7q1Mv7STPn6eZHy07j651FU7FP/wlyaDtUTThQOqSu1A/pnA==","signatures":[{"sig":"MEUCIQD9klesqSeq/LAB7yhSA9XM13OY0AR9vlJs+Iz7UMDCbgIgUTH7m9/2ELQ+TPzz2GYG8eWJgsBSAC9mgn0i2gx1wXs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":529779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcW+GoCRA9TVsSAnZWagAA53YP+QAlm1SpyQOxc3IpAjWy\nIJM1ToMR3CTWx/P7jCq/bgtogJv4+z2AibWEVINiDDgrmhCCL6XnqC4EglcP\nxkAK5tThHX6fKZMLEVFi9qY/dx5XvZzEDxY2oyvqyIq9LABqtr+PyVegmQ7V\n0daBfTVjgACO+oV6MUhpN/gZX8MPBFQ4L46APCYHzjnIBmDIKHgSQAA2pCXA\nR9gUJ2rYwr8Q03+0LlQ+9rhe1HM86jCVdgivX/Mrnqjtasfl2t8oCeeGip9S\naU5rok9ztvtEi/lpfIEi2WP1G81+npLYTQgY72l+RA+VOoFN60vYMCn0s/lz\nmWnoPx74ELrfZBTV1ZO2KGMDSL9V0RXV622Nu30ffbSUqeyouUyCAYvuhwLM\nJYCP+N/XxO9F2niD42Bedu6jzP6Clp5cm/ORqRianmePpAe5kjaVaAT7vuND\nh7nLqPM3xs4m8wxli0sFyTaj2e7poiTpUUctJCcyWKepPu5kLyfHh9CJxvdT\nB7UtCCNVtM0KJQ8CWi7n32qmxJLBJT2JWOxUHBdZEGqu0oHXg4dWlQISTW4a\nqGmEsSJ0fgScEYmSfbVpPjSvIxyEepWbPRPZNmzUIPKe+9akJvn8XiBvQ5LC\nd1Flz+zqRoGClpXat7OQ7tdzPSGOg/BqDydke75/sj+gGyW7ZuQTb7+2KoCz\n9BXW\r\n=/9pD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.7.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.14_1549525416188_0.7258819859196461","host":"s3://npm-registry-packages"}},"2.6.4":{"name":"core-js","version":"2.6.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b8897c062c4d769dd30a0ac5c73976c47f92ea0d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.4.tgz","fileCount":1488,"integrity":"sha512-05qQ5hXShcqGkPZpXEFLIpxayZscVD2kuMBZewxiIPPEagukO4mqgPA9CWhUvFBJfy3ODdK2p9xyHh7FTU9/7A==","signatures":[{"sig":"MEYCIQCIu0wJjFFEyAODOrgMH1v5x1y2akSOkkzl2xW3NXx3hwIhANeC+dViIIKCzEzhAJqeOH16HzQKMQyJJ/LNLfwsBPrg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2249969,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcW+/rCRA9TVsSAnZWagAAsN8P/0gwi8epnBTDgKsS83GI\nT7JH8DemkK4ESxkZ3lk9f1KpmPKJ0EchFcM7VhVR8HwAyiBjuBhMnWqQGs7I\nJXlq1Qg7rcZbE+UfS3t8kuswBSgfuxsHgcoo4WOx2MX4zQK4vcMzEL+j7jBe\n/lu5zo9iefCs8aqApSNoETd0xsnYXfgk8p22an12EGVyd2gc21sVevW/EVJe\n1cLMAUKzkckubxVKwyAz8xsknc3nRPSqBzdAPl7czMh752vYfR969Rcdm8+A\nz6ieW9onJ4CK3Vx1va3CFQjHhxyxtf2nSezi8pg/hXOLfhgEZXBF+1J9fhsz\nR7Y7brGmwgqM75lOzkhT7+/5kHefYJuCOiQVEabZ56hU9y11ZzKOEwWoFJga\nGR9AlfXQH7I1Ga8/Ghaeil8v/NhDi3AKZ6hLEKKgPGDo/G8w2EDBY8ArnxRj\ncj4SfbUxZe1+7pBG7MyS3d5Ref7N8Y+H0t676fEFNkIYKhRq2ms+h8pDlUgu\nmk01LnBxKGHSt6TAnm2zDbXMJe4c2yLSd9ROTJvGkA9R8dIHiC3F9/SqXDfA\nu2vSsv6MNVCgUz7E0FMI7C4MGHqYBbsFgPSQFl1+QczDSpidyRbuF0QOQwTl\nrFiCCGL9TQxexJTB1/XZ8/VaOijpxm3LGUkl+tIXe05gCL6sYW8PVJfuBg04\nZ68F\r\n=zxeo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"8d954edd385259e684f34f89a2a5a661cb122e32","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.7.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.4_1549529066171_0.3366269223831033","host":"s3://npm-registry-packages"}},"3.0.0-beta.15":{"name":"core-js","version":"3.0.0-beta.15","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.15","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"265c4c74c73b571f81e46c38b381b7938052aa3d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.15.tgz","fileCount":1576,"integrity":"sha512-1d9F3F8Dpm6lLym3CY/U6m3/dQ1u+9dwXgrd9LrcEaV1qx8lUg7ugWPLOQoZpoIwCWH8zQ0RwMswOMFzfusK7w==","signatures":[{"sig":"MEYCIQDySBaVc7owIgzN6F2K2ShBHvJZ6UURWkBW3n4Vr0GoqwIhALRWGKJcGOwA76G0uKTu72IErKkpSw2PesNeWqYx82ju","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":529891,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcX0K6CRA9TVsSAnZWagAAsT0P/2+nagsMhy0ifxEbW1do\nEGq0DUVNCOpoBz4HrXL2YXLhsJRj/HowRgwXqmEpaN7azvX5/bRZVDRpLhho\nejmlLudSK0Wbn7lLD4w+Koa6Qnmn4UfW0ZfE9CaYO4OzcCsjHqOEGMJR26ZV\ni+MNFkzfNESTw7j8MC/iV7QSinlYNCgh8XthSvCbhVoVxm7bfV3Q4ulEcz6o\nz0yRaL3s2tkxtkEsai5gKvgNNwWvyk6ICAjZFKbX2a+py15tUhaEzvITc0+Q\nw4CwU7wDesYeLgOEXkDmc62NWsR2tZc+sY0gBiOyRlPBoJ9ruXX21qtGqnHB\n/5N1LKeCUnG1qBdII20FczGnNZbBVV+6uqApUxmVFnr7B0i5G4sJjNlE2aRC\nEoSQ0iI39B7WtB2B00urQz2blU02lb6VkD5NBKcWHk4LGi+oMEBcWeYL/aNt\nSXoL3iopx3Nj3EaPL2gH8DvDilRY8M+ijWBHXP4WMvtcsaqeCHi+weA7wdOG\nbWT3awenSK6Oir0b0t0fiuzih4maqAqZni64sXvQe/nJ+6wobF7QMM+S3DBN\n7pu/3m+pWVZQyKCpTctEYllBmH/VxRHGTVH+2Wfbtn6qA7GIkb37cW1+jrBX\njc+YUglbbudw8G+fLCQ2DJsqpNy5LAKH4erLGfhUDJlN1siYBltAWb16Y/cK\nOXIN\r\n=hgC+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.7.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.15_1549746874207_0.6166127052236536","host":"s3://npm-registry-packages"}},"2.6.5":{"name":"core-js","version":"2.6.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.5.tgz","fileCount":1488,"integrity":"sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A==","signatures":[{"sig":"MEUCIQDoBkELaj1vExLuAvYFUXPKUCgh6CJiOYIt7gskQCQmygIgOoLvyMg45hPGl1EjkE/M7whxxFR0aJvpKWkKF7+Am2o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2250833,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcZpAaCRA9TVsSAnZWagAAyAYP/0Qp0TZZJh2JBithey7C\nlbzTfcdhv5V/UGGTCUu8WjO2oR1t4S4asibKfbEb4i7NHNWVjH1kW5Quc8bq\n0ePdCWwMpAfBw2MAHxmtxKHdvUWemUc+BI6iZkz7gFHd63buNUYqgCRaNKOZ\nl8f7597lNa2Cceaw/ad10snjtZl8aQp1WFzbVUQYo5JgfU9ksJDr0UnSr6HJ\nkejBPp5tTiNMgz/KQDNMrTPF9+2PH0B++++Zpl+DI/kw/U+HMEReQIvFEIRy\nkBjLZx+iXnJ/q5MJM7PGJCgToXGEf67fO1DLqDXjC6AGQCNRNbgE6XBRobRO\nFCbcEYX1XaP9RMCtTQRyTYCv9Hu5le1K0RDUTDeXvDyyTVRY2J7e5DHh2MFi\n85UJu4rvab/mtGg7/w8Jz+yZKYEFbj9QNDtGCDGGjz0InOXAOdXKkPtT55/h\nkT57kQnqa9aWdQEgEY5PoNz4A/iLA+RtJvEBZFIVJhc/glgUqE390tyDKauY\nK2ZAJ1hpDwAiIiKRcLQCSO2wlCm1Q7SMLptNAEcQ0h3jUXQAum+pvXJuQkyd\nuJHLcsVoM+TT3GdpgkV9yK4Rjgdjhl+MZ/jx6k9CMErtJ/Tom5SEhHYZmNIZ\n8RQ6A3PFvx7Ims9YtI8uG+pJL4YjCc8jMsFbIZQwpybV5Lf1+hDqFbt34vPv\nwz3T\r\n=st+q\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"e778e8026aed8a58f93f1ee4e3192cd1a7d7bdf5","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.7.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.5_1550225432839_0.21371223900911152","host":"s3://npm-registry-packages"}},"3.0.0-beta.16":{"name":"core-js","version":"3.0.0-beta.16","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.16","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"18d39024b1c4883d42323d042237616c3b754af9","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.16.tgz","fileCount":1576,"integrity":"sha512-qSXQ1pp8dl6IGA5AiyZqiZOSsmZgs0TheZNK47oDpn9FVrtYL2pOpOneec/B0rw05jCtXkVyAxN7VSYWggsQow==","signatures":[{"sig":"MEUCIEoNsygnNy2GjrPKoVfJyOf71lBjRJW2ohqSp6NyQXIzAiEA8B9dlQ8cs+p7qMv+KSdhzzCcqSWViXW/MkmbAyj1wMk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":529681,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcaxdtCRA9TVsSAnZWagAAmXwP/jDY6Vps7gEi5dotl7d3\n6ZBuM+d2EfvUbMa2yRf9TMCm2/C3NCeB3RpcBAZ82S87E/GyZTBvzHgN2zoP\nZadSQvU/hpf0roqE8HijWsvdobULOZl4mI9Mqo/Zhdlp0Mnst8tffoJFDqjN\nc8Xk1UThVVqtinujR3OX03r8aP6H8RLSI7LMcgzp0m/SuA6BSR/XhTBTvUeI\n6+GX4tLc7IHKozLwjGlC+LW55SBFY5vl9Q/a/W4mUbHW81ehPjmVfvi1UUwV\nSosYpeEaMXgLhBRNX1eNky8ZamQnNrYykQ2Qx6s2PzAjLNwzkxez2+qZ9+RH\nQSawKHaohZvB2RgGiddsIgPW+kvuwFG3WhuoJ7k7MiU+sBovYsIwQsHj0ox2\n062eVDWNrQWVlAS0sFe+goKBJozIs2RaZRZAJLVlg2Qpl42Nk/3P7PEms+05\ngDiorfmPVxtvm2rDi6/6Z7gsBeOUwlzbbgO3CqYRHAcHu/AF3kV5pnoIIcDS\nnUu710DVxtoSAxursgSRNekoB73O25SKMg1BuFPVia/8JOt35Z6lhCio3sL/\ntrAf3y7eJMH+qJgJEiFYCZcScaIbXzmKO8wcoNtnSsZ0xbNkXU/COEh9RxVd\nDtWhRaYl3lTLQvjFhvam4oFX3fYcFhMj2uk2DLVLnczoUGYjntCFppd4nyXe\nwY+t\r\n=ps1L\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.8.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.16_1550522220629_0.06431407474034745","host":"s3://npm-registry-packages"}},"3.0.0-beta.17":{"name":"core-js","version":"3.0.0-beta.17","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.17","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3d87d18fa5ae6a558336768acd940ea724ae3330","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.17.tgz","fileCount":1578,"integrity":"sha512-D3fMKOHyGHKS++wLOjDKxRqXy6oja1CiMyPmFFshvIxVYUa/8VZr62uAIpBERzwjap7NB9R2I4olZ1LcbY4p5w==","signatures":[{"sig":"MEUCID1ZfX05YTLBRAwDpd7BVoHzbI0E7WgQEtFkH1bBSpegAiEAvsILA1WcoKrXJE1mQgIsL3HW6roTt6SqOZZ9mBis0oU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":531696,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchCx4CRA9TVsSAnZWagAAU0QQAJvvPVlNffV12CC/pm2i\nxuV9zgeRj0oHfE9jJgyuE/UBNDasxwcjz/BrTS7WKTnZ4NBcP9/dpWq92lew\nS5NdRPr4/+hfle3hmxtdM4XG3dU+u759VVnfPT59lRHKKj5Erue2kq/2tscW\nMF9ySl8v7upz24RzimRNeh+zKV6efxXKLs/2ZasiAgiXmiHF5R3BViapoiDm\nhGsnoVwLz27I4hhwCbV6uelfgo1VUs7QEzYkJmYdSGxnPHf9ZeZEPKs2GUDF\nr6IFGmuEhnOSC2q+ofCB0CeXfSTuteg5W3jjeeQZIzet+TWINdd8pdZZlQqi\nGHKqM5oq+kJ0KmjJtquWjCh8+aLGWrRErQIlxNF6tiiy5voAf+6VIFdaL7ns\nPalyDGGs+diQEQJmFzmUlYnhbn4uALR3RkJg6A844L620eQ6vVip70jCG2N/\nerMPVp49nKL9BYFLjaRgt0Z7n86oa5MfTtX3pHSGSSH7pN8Aw6oAhPVR6bp2\nHPzrKUnAWPZ1StjxE3CzyCAq3nEcJsXmGHR/YjcK3p1QFgaumXPjmNkYlOLx\nTFIHyKs4qGBt61mudTywaX5osYOLd6+0a4GNEvEkbNZ+CeZSEv2hGpf31JIT\nuEQ27NJTKPS1PfvNHMhbT5I/8CSqvJQIYo6yz2Pmb6YojT4ryKEyio5zaOwd\nyD9j\r\n=+jD1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.8.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.17_1552166008068_0.12474522945822275","host":"s3://npm-registry-packages"}},"3.0.0-beta.18":{"name":"core-js","version":"3.0.0-beta.18","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.18","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ca39828fdd9994f4eb73c5813b85499b4efbf376","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.18.tgz","fileCount":1578,"integrity":"sha512-nZ63TVKAsZPL+OBsSKDHk81en96pFTXq0huaraV2tMjrhh19nkLGS87df0EKUnAI8ZRM1CgTrrXWFPkvZtxyZg==","signatures":[{"sig":"MEUCIQDQ0vyB0viuXNhYmfQv94YrKfNQdByCwYb0sv79i8zqzQIgJkR6nrMSny0jf1sSpFYMAyx2p1K2nMTgoR46wyZC+fI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":531712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJchDsvCRA9TVsSAnZWagAA8asP/3/Nv52r13RRRe8SpUhp\nDGEtGQHKEcjjT+fp3rTBG6QwSnqLC8iWirq5zsXa1TEzt+RZzpgHgEpIhXfC\nMosTYt46rmza0/woMmwnaQomgOHKWEihOgL/z1s3/G9Hfrr91sfIrcAEUC3E\n54lnEiUKfYuEZus7VLXLl33HJv/5phaMPlXABSmwtYhWIhayzQXIV5bXCGSw\nJnaebRabHERHJQjpwG3IBpc97STWsis6OAS5xV3ME1RhqPXPB5qw5EGkV8c2\nyMj8zapv/o5NESqzwb0V8NtXDR5qc6S3fSY0ifo18W7A2kkBN2cCQwcrJWSs\nFAKq0rX8dy+kZpQzxPh3jQwZWkYIfnebFh7n6IENg5I2ovumLQTzfpeuksBd\ngyWEPzJ07Sbf+1USx5CyFvtpObZJbeA8OBG65wM124SXgbyHAXBQBgOsDe14\nhczhdJT6BJyZ9K4zZZRO/32Obcs16TY2N+sgKmeoGC78rrwAaaWzfoN1aekF\n8BGh5iR2oG0DljyjIv3nHE3+IkZ4fsgXv/T0BYvhBXuel7Tgsuhqo/7hz5cd\nvIdZXObQ3bKBoOw5b5y/WENdfXhmviriPDtUl+KZSVsM3K0GHxOGWdlNIWoU\nFkZvE0Pvfc2B67SDPpkx1a4F56+6miTn8lqZmhRn8UdLVi7oHyaTPeXq688k\nIqG4\r\n=T+xL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.8.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.18_1552169775246_0.20135534384580067","host":"s3://npm-registry-packages"}},"3.0.0-beta.19":{"name":"core-js","version":"3.0.0-beta.19","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.19","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"fd1a36d72f2f0df4ca0acd17b00ee86a8ccb52df","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.19.tgz","fileCount":1578,"integrity":"sha512-cKfu2Y7iYIwb4oFClsg/ilwC5n8P38OmbxCIzjbhv4HFe2PkisLoceV6wRmYRITvaNr5r69iWC51NIRZQxCwfw==","signatures":[{"sig":"MEQCIHNVDcx2lmQC2qmRFX05PCwnJs8ZX+CbgjBmugyItkhuAiBnd2TdWrRZgLSf+AxlzTRcaqE9vrGmSiOmRPjVJNkeXw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":531720,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcir0oCRA9TVsSAnZWagAAz78QAIcxEp2KyaqTzx6Z2GX6\nviPLHrGoQ8bSNA69Z1md7u3j9bxZya0DQmAxnNI6CKhvWrZyXX6jEc3BI8+U\nGRBG9HuVkpi2wd0Hi86xGC4i3i3Y2aDHgc6QDOf9HIjSuKXytRzbcSYAYgnk\nSPJOLjzrATeJC5uoYM/lbhRywvRJ+EM2B+PxIuPQqx95WgNnmqfTjDGW2udI\n5mvh6zF385A3bqGM6kurCyEM5oSxyPMgS4BBnUa3xSAqDJ4kHVqEsXuyx1r4\nR4RNRLnIGEHKA8UtI3XzRS0vD0OtOIjPhgBu7qu9j7GcXfpVntAdKKML+88U\nEF1NJ7mK+DmQ5pbNXkj8e3u2CjAHkMi6JDWGmVlBkRoi+OnVNTo+uB4R9rIT\nmL1Kn6MsPH1LDtf+1cozv8FBEfpRIS1WR5rlRcSgcFsHW0K9HBdKvTPMK1xk\nZwPlx2NjKf3SEyiO9/oY5Lgk8jqcpywT1BNvgoBVvsJBPB8s0CQnCoo7AkA9\nZbKD1gwwC0YY0tvExokkCP0v/QaekVRJWvHYg4byihMozpw/V0a+96MsyD78\nMIqR1KvYA1EO13dm3cXMdstU0cA4MQp7ZqsfLbWvBEeIs+rzgwG8FHY/Pdb1\nZP1YKJLsRxXodT5kWlyPWuiUM3gJ8nhjFAANBKJLGgJ2kiMg8xef5kDxbigI\ng/6w\r\n=ximc\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.19_1552596262983_0.7963362841358328","host":"s3://npm-registry-packages"}},"3.0.0-beta.20":{"name":"core-js","version":"3.0.0-beta.20","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0-beta.20","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ca78e676a8664b93ebbcb9b3d3f5264492633126","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0-beta.20.tgz","fileCount":1578,"integrity":"sha512-d0KT/ygTcAtOGelPSRKL0oY5MLwFfF96tBOSAMWyww1uZnYkHvMFzAasq4FDVl8L3TjXMH9z+tNT0ce6kE4Kbw==","signatures":[{"sig":"MEUCIDRnHXGyog8GYuWmNTf2m+fKbkN6aE0X51oE3GcOpf5sAiEAk+hCu2XMdP9ul/cFdnRFp4coB9sr3cznvQPS+CeE+jU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":531753,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcjqb0CRA9TVsSAnZWagAAdJcP/0pFHnTZIYn6/sPkHp05\nwrEgKgLIkoEq+tF9TWk0X3LMuaN7NFeHdLqMSOQ8HNdmg68Q+lf7t5ltqDzG\n1/9mOqxXW+ws7Tal0GDjTg+ZiUvJ5T90m9xB0BXBPp1Mqi0i/OK8Cm4FHWew\nl70TSWJaLC2iOyVg1Qn/q6NjKWRPwD55QYffKqy0MNorI7ruXvzzEHn4J8hk\nJbnXQtssS8kirsVR2wWg1+za2KNMH2hnP2GmgP/nFIXTzHjRziOOIh2KrXgW\n/I0xEdy8o9zgYOvIT/DsCiGQMe+cEqvZLhOfSJcdZqFFiX7X85VTGYn3Tvml\nrVFraqdFSRNktold9Oetf43NiLzL91LMZIfT7kHA+rgNcEshSd7TJIsuvfQn\nfKFJxXCCNEWdBDaswgRIk02NG3WeKtf3bMvUAfj4glaYstjr/6mdnxyRTQyF\nXKm+LOilHvVHoozvqTr7cNWd20NCyO1xv1nrGsUzUWS+tzulVrL9dXgAWTPB\nVCFLzGG6EC7heLWHR4LqBIVPwAG/V7xvVNA1/lqsl6chm2s2XuMlp8rJrGvR\n5G6jht6JZEZ9NuzHhUX7SkgKpvvHrDuaoiHHT1qbYLcw2udnS4wV0KnpStoj\n3S3yj9edNmshNyMYcQo56G92UkuTaVa6omWsC0DzLBvdRbt2MrnHMwMswhZU\n9USC\r\n=Ogjf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0-beta.20_1552852724123_0.15691862167926174","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"core-js","version":"3.0.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"a8dbfa978d29bfc263bfb66c556d0ca924c28957","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.0.tgz","fileCount":1578,"integrity":"sha512-WBmxlgH2122EzEJ6GH8o9L/FeoUKxxxZ6q6VUxoTlsE4EvbTWKJb447eyVxTEuq0LpXjlq/kCB2qgBvsYRkLvQ==","signatures":[{"sig":"MEYCIQDk8XVacUeyZMFt3Xcoj6+X7Mv8QZRm2U4aChiaqBKhFAIhAODaR/w4msLbtfsnNQR1gL/eiYz1rgaayq1hVqKIKaLB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":534417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJckUBWCRA9TVsSAnZWagAAnHIP/jlK81Uwtebj6kFaJ8eU\nttvy9SGQ+Dj3nPzBl5I6oo/rBOYbGYYkmUYEWsd5h8Kwpnt8Hlc6b7Mxyvbg\nnpflSs/gPed6xDh8w32dqptH+ueHIjN10LGZEcRSw9rnFtmnyhU4bJPPHfRz\n2dzQ7WjcI+8+GDLgg/CljpF4ZA/rbEJmcFJOJbcEhc511+hxTBfWEEEgOpLa\nBunKddAi2W3eG1yB1P2hEgNLz+IY7JKA/HnAH7UT5J4uS9yreCsPO8f8L2xq\njyxmj1U0aZQta8oST2eUuCf+eJsl0w/2TOG4ugBBMwxbcuUtA+gA28ki+oB+\nSEi4GNRLAL1wD6YMH3WfQHshmUDmGQsKeWhDs3ljVIFEk8oi+PEqtPF4D2oQ\nJgZM2bifiSJs92m/MQURchZeUiC7Y3hNX2LSL5S8eyt9P4s9ncpo2Qey8wts\nCZ/AZY4nLY890v1xSAc+uIHq7sPtfkwjVqaTJ4A1sXntDwTiPb0bTIBLxjvc\nNBLkEAkHuWWQQ3HxWKjCQ+DtbOvCXOk9bbtvPpRYZQJdzZ4P39QwcLmxlNRt\nc1uLBtQOge0J9mO6ygHGUFRea/6Pw9vgJbO76D9LioeKqYj8nVVSomGg75so\nKBK1GFMa2a2TWq+fW+1/2OI3VmOP31uW2Fu3UtZQr8N+H0abjqbYXOzxXvKU\nfWtc\r\n=u+Bh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.0_1553023061781_0.2508246663411511","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"core-js","version":"3.0.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.0.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1343182634298f7f38622f95e73f54e48ddf4738","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.0.1.tgz","fileCount":1579,"integrity":"sha512-sco40rF+2KlE0ROMvydjkrVMMG1vYilP2ALoRXcYR4obqbYIuV3Bg+51GEDW+HF8n7NRA+iaA4qD0nD9lo9mew==","signatures":[{"sig":"MEQCID3MmA3Y3Uv9ZiovYrUj4eYEaDO6pAWhsQy0G174/878AiBa3ENlZFYm2OtRPFiFdbqrzucU6FKBy+tFZ+344VEG6g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":534530,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcqFLVCRA9TVsSAnZWagAALUkP+we+0bDP9EfJcyLW0ER+\nFGB6r/7bDeeuFyBPBEtO2qk0HOTKczpHy26a25TXzP4eJ70Rp3QSdU6rJOgg\neM6IqJsW2hMmKposfNaQCHzya2M8Ri1yIhAUexmRoVh9qatcSppmbYDGolmi\nbQX7i1lDXXgoB4YrB7aLEjy8ldXKLSFBMhaYFTXBM8PBLxmQc2Qu7XGA/Lcr\nbtqp7U2K0mH1fysODVAtTKzlVA+W2JcKWRJFshPkqT3zjy+Lst4SCR+6Mcrw\n6CbGv28r2LPk2eUnV1Uzw9kaeBaLzrdWNvOFxMjuZba2s7cBaWCjfmEQ3cgU\nVF+xGAT/vx+SpeZOF74pNHYHymsmYD5p2DoxNCABCKxq+qcrdnUCK5U/kD1d\nNqU15wOmBFO+/DsdNyHAWJxI5PKcqWgHSWLieom3Ebl3fNvjDUZnqKFxZt8B\nfgFRzwstyinn3lRxcPCxAmsGF66NdeqdWbMCcYXx38RtBP2NZKe+eCXx5sJo\nid/B0qCFEo8jpgYIvqoMJAp2pvfNadlCc73qRL0gZdVgB2YCkU3f2ASEsFlz\nCCmpFrRYnoU3BXOvveQtWAdBAKc13qC+RONUBHEB9iZO7JOuYcbNUZ4BsRv6\nLjBlMpTfQViL1O1JBv/UjPxhoO/BE4hbHyfki4vhWMbrTowCRALPRW1qbLlv\no8Q3\r\n=kMkp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"11.7.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.0.1_1554535124188_0.8910861832439492","host":"s3://npm-registry-packages"}},"2.6.6":{"name":"core-js","version":"2.6.6","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"00eb6d6bf815471cc16d8563edd7d38786dec50b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.6.tgz","fileCount":1489,"integrity":"sha512-Mt/LaAym54NXnrjEMdo918cT2h70tqb/Yl7T3uPHQHRm5SxVoqlKmerUy4mL11k8saSBDWQ7ULIHxmeFyT3pfg==","signatures":[{"sig":"MEYCIQDZXB6A4mx73USLQqjlFzM9HAYyKvKgTmLPtRgEuNlVEAIhAPyh9n/KFkdzxQCQiHrtI3aJIPo/Nbv47R0GNjCOa4ef","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2258866,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4aadCRA9TVsSAnZWagAAjJQP/1qritG6KW4HzLCHA7Ce\nHvqAbzJD+FC8FYMkZ8oSHeMTtSMoegJkxQHlM3kW4D27F2/NbCOH/8foHlOn\n/0i4mmjmUhN8bGcLeh1Ns2GAP3tcIlT2ZbNhBYLGmH2GOD2o37BBsAPOPgoa\nQEO/efOUThRskpjIYwjKg5yEi85wYy6FCA1HVV/jGLFhlg5zBX4IsckZ/56B\noWKrgUipqvkPqghN/LQzmRI3AEWRdgbKolp++uHinEaxd4sxrliNDXlVF8E3\nR0EM2C2wiv3H/Jfp2cT7XqXGdf+qsSRuRyEq3Zknr0ZT9PaOBQ8Zr2sQGju2\n643aw0KSDMwsS4laKshr8qaWqfZphYYqrBqi4BXcYWIJ5XqTmnRtfshCoFMO\n3NhYw+tJ9+txjFcXDv1iloSgCxgm+M5gRneJR/UbTQjZhml7w1CuuHlGrqur\nSJgJF+bEd0DX0H7SbHNS5d7LkMEY0AC+CCSQ+yDV1LiQVs6Lrmg1b8wgD/VL\nroqPkJA665FQLCX5VVvpma05vWod6bltD8HxG8AnC31AOFNNinMYaNykP6L+\nQOx2SXgTql9Nqe9Q6AEX8+2PgAt+CPjgNshiAJLjYisCr9mSC0aYL7FIk19B\n69ixYJ/oJXzkhTPk0PZE6uZ7HrXcqitlOvxkC3oTs9KFsBw+QnZ5Y8ylHs92\np+4b\r\n=m+3X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"883f5fec37d48f0aefebf5a96910ede0cbb00ae9","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","postinstall":"node scripts/postinstall","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.6_1558292123775_0.6261391527892599","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"core-js","version":"3.1.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.1.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"7118f0dad99054204b6821c1f82e67b42cc21628","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.1.0.tgz","fileCount":1593,"integrity":"sha512-EyF8cMvUWRDWRLmC3+i50D1DqK4aFZWb/6PDPP2QfX2r0zXkgR2V9wt7jX7TRM0Qdj/3f6+JQkqfCaGkSj92iQ==","signatures":[{"sig":"MEUCIGpk8hRblFrWP+GRfKFaK5GtSY6hcSJtTTkyxnjmOI4kAiEAwP5sQRL4KFhZgETwP22X9yT7koWb+E7lCCgvfuzkiog=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":539696,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4a3NCRA9TVsSAnZWagAACjAP/jhckxBbIg18y1T3Gott\nAhArWMlUfF3GHwerOnFL5DfO4QTN7NcUVqXwi6+MrCbCiUGZ+gvV3da0X8sU\nxAUrR41x/KFEU0tSk/edKgD7CuBHRNltjYNfQo/Fx/g07MiIRj9kvauhO+Pq\nfjsr78eFs1w0c+R2Dxv+nDzSHZwSdxgLmQiOyqiZykciGk3fhhfSZNY5e7NW\nPBVyotDeZYDRgh/VolmsiOmQ+UR2MtgrYO8+YA51SSTNP8ezL6aFOyXO8gs9\nMsFlkq8qQ52DvNOmhfsDzTCPfPelQQ8BT61GQlwNTc0Y2DpvCTNrzKNuwF6R\nTuapZ+rgLit7dU48pGlCOxGgEo3mz2hrKNCikBWvEz0/THj6/4K6X0FM0JT5\nqPAuVKwcKByScqWbeDXCxbzPIWXKHwnDxQ8U7Igfs0/AEdvi/oxzmOPTkLWd\nHb06sKhIk34klysd+b/MLxM8v4qUvxQX89KvOiF5INSM2d5EBV8l+8qwRUCX\nKfW+hlEiwXmT8HXljDh2EwXJd9+LIVZiqJAiAIG7ROw3Ep9sM5nDe0nHOCL/\n+kN3eU3naOQb92HA7eqARjQBfKhwlPk5oFOYV/4YsKOBVG6oj2tyVAEMonqj\n71kLOHXsxyohmPbvnQ4lMWnhyxVIlRUuaidQfwCHRZ98R+6bbaMWVT0p31AO\nxExQ\r\n=Ojkn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node scripts/postinstall"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.1.0_1558293964884_0.07592393869434266","host":"s3://npm-registry-packages"}},"2.6.7":{"name":"core-js","version":"2.6.7","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"c2b19af9b50ec49c356ee087d6155632a889e968","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.7.tgz","fileCount":1489,"integrity":"sha512-ydmsQxDVH7lDpYoirXft8S83ddKKfdsrsmWhtyj7xafXVLbLhKOyfD7kAi2ueFfeP7m9rNavjW59O3hLLzzC5A==","signatures":[{"sig":"MEQCIG9WoGDGCBRLQgDDZnGGjz4n0KJVj76SRfW9goMwG9cjAiAGe1qy08+nXN1FcncmdGYjX1UaI1qEcA+r7M2GyYDsDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2259253,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4wxCCRA9TVsSAnZWagAAHvgP/2mSJUgHGpPmnY+599s+\nPRXOE4KQzfX39Q6nQbCR3NiMXURevr1IDAn8ZkxMGBGBFbnE8hGHHkoWLRyX\n5kYi53Meniudv0JUX5erBPEJSBEP7nQmIoISjacLzyeH+/OO8PmP3xTZ4hxS\njCDCWi+2tRJGwJnHpgnHh3WI+2TjJLzLx9sBH1hCJslWE/RKrhrDfrzZVvsG\n6XRYYq7ih4rucaOQ+h5hihMWwC/kpMcOZ+46l1l9MX7NzYYWv8JSrB5VZD1M\nY3r+txbQXlc7S4peubwAmH556Ooi74eAl0goqYlhvBF+rVDncEzIWbuTPOqr\nKG7Cvj8f/Eaoke7yatpZL+J8nAZCvnKl2AGpm5oX1GCELIpBBRNiAQzB8bed\nU28APpH7W/9vZXGjRJCET6nHoeWRNSsmwSQco3ovaG9GrSISfOM8JD3pFT0A\nFtK1dtcOx6LQBQs51XdFJDetIksQYd6RZMCn8m/OleSetO0vd8do6EbON9Gs\nlgdjB80oO2vznV4YyXLuh9edd+j4nF/Tc5NJp+SXrjGF8cVM9k/bzP1qH794\nNAVsWd/7fGI5ZfgzNaPrwGIr/xMFYhXmxnf2ToOdjxzSG6+B0LeR7FuiNr8Q\nyTVKHcylTXz8js4g4B5j7TlTYoHjDoy+otrSFk62z7tDRZ/+k391K4EmvRnW\n9BUU\r\n=fvJw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"d06694db4209b7cfd48027cb8660c767fffc36b1","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","postinstall":"node scripts/postinstall","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.7_1558383681514_0.3428704561078768","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"core-js","version":"3.1.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.1.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"502ba6e7c15300de20a372b390f9fc9039db76f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.1.1.tgz","fileCount":1593,"integrity":"sha512-OddJJmAMN6czmPEtp1ScHFWq4RXzH1iWJFGL8CZ6UcopeBzCMjo4Slv0UoLW2hhny1/wsDowm6xCmBCWQ1azkA==","signatures":[{"sig":"MEYCIQCeeZFTI8xvydZAkZLShrCvWfZobMmt6CEelaFqjfJuoAIhAORe7hP8bIh/qQHmZ22huktiQKUYWqIoJKvIs/SoHWzn","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":540467,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc4xDrCRA9TVsSAnZWagAAr4kP/19jZow7FCFA3pZ4jKQ6\nyt7lrrwSu8RnpQvq92hdcmxR0rZTGpeBGFemvBhXE+hbFNSCsrLFWFY8GTFi\nZlKSRguiYS59REK44xkdektRkaSMJ7KBnDe+f0Gi1ds4f65ofG4McCfObbq9\ntTiWVLleq4yzKml341BJU+nU9P+QkxyyM3RN63R+VxCzcHgfVYHij0b8cQOj\n0vuFhowQAitUQjqrXrUPydIxsJnVLEEHyQQb1NhfRHjhtN33Bj3O2gx4XrZ3\n4uilA31313qAEiXgVE2Ip5RP06ugU7pqwtKVwR7Me3el53MLspcOA5cc86Mn\nsVr+XHrgoK1cKy46TNtqVfe9vTojZ+MkcjAKKXJ6xzNy6fZ5mhP0f5m30chT\nDQM1dfuVwHLk3gcOGr+7/v8sNZzJJ2+Jw/OLZ7MARFppZ6t5MPV3vpgWqo1y\n5TSvXUq7xV8w7dTT9kVmehIA6LJHC4Xqbpw7Z2YsDZb1SOVaMKciNKvUl2sO\n+LYleuY/9kec9BiogwuEkfGQCvHU+aNqXb1hMv1XR5A8pXM7/0YOZIJkMFoj\njxCzdxRahhO0eiJ0z3SJvaccLBitfDWGHdVa1tW/CLicZtMV8nohPzFgRP8/\nLaLhHI0H7rm5HJZx4O4NSaPf8eKBIwmUlkk8FX0kPRCEpSexmQq8wCypk3gu\nqkPS\r\n=LqjJ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node scripts/postinstall"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.1.1_1558384874695_0.19382348486857737","host":"s3://npm-registry-packages"}},"2.6.8":{"name":"core-js","version":"2.6.8","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.8","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"dc3a1e633a04267944e0cb850d3880f340248139","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.8.tgz","fileCount":1489,"integrity":"sha512-RWlREFU74TEkdXzyl1bka66O3kYp8jeTXrvJZDzVVMH8AiHUSOFpL1yfhQJ+wHocAm1m+4971W1PPzfLuCv1vg==","signatures":[{"sig":"MEUCIQCH8WBcu+QgUvyTL8cguCyQTLyo9W03v/mK0lmxFapbAAIgG77FHT9gRFpfLVgN+Wi1efLiUiyrY8k9WzwycLTdYoU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2259460,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5HjQCRA9TVsSAnZWagAATb8P/Aou0HbZdzqHcHB7P40R\nlPDM3kcs1CY0uLThRxNPoonz6KGfzLcmPmaKF2n66ISeIKjQAXt6Z3YCpYit\nx0OmmmOQsbr6lMNOeWWkfKWC/jaMBjZHqbQ2GWLlwpx2xxoO8TGjk0YGalEM\nhUZCFKnSAo3Vp0vb1TbtAj7ttYtX5Nwd0TNz/3jA6VjlbWIKCOz0ZzQtA7rB\nJEYQ5EBC8J+KIJm9W3439rznhe8jasS1G4TS3DzqpzKEn/zl/OOt1JhHpwZc\nbaQ6bp4AOwxhMhC5R1sbEsxmt3vbLOz3+XTZ67XJx3FWrYDwYxYGWH4iNFn8\nptpNkm3crG8+lnlf3sgvHlw/dLPurKbjXQ+QDu1KyZdmaPQjzAfxfuLZNzUj\nOsZ77ObsGpIPobNZu/CCCfTLiVz3AVIPEimidiHzZc/ESRK51sb6UMfW4036\nmeZcnigqZBVDkybh4Ne6c5CyBSOGJxa9UZJdufhqjHT1KXqNI1gQgGSA87Ed\nW50/efQATv61LSQtRxpIPcrvacuHduObn0I0/pbfN29dAJYmyRklC9SSvFr6\neArNJg6bSwd8I3YquqHvGGD4Ld4r3JvP8aMfo0KQOIU8cP/8x1Jf3Jub9gWC\nhbLhWVK2H/qTTDrtAhodFWVQrlT6cMKhiAROYp7lsMpB9qITi6w1Vqxx/Wzm\nqYM7\r\n=rO52\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"bab1a285ffc3914f064ab56dbbc2377baab421cc","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","postinstall":"node -e \"try { require('./scripts/postinstall'); } catch (e) { /* empty */ }\"","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.8_1558477007477_0.055318662218806214","host":"s3://npm-registry-packages"}},"3.1.2":{"name":"core-js","version":"3.1.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.1.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2549a2cfb3ca1a5d851c9f7838e8b282cef2f3ba","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.1.2.tgz","fileCount":1593,"integrity":"sha512-3poRGjbu56leCtZCZCzCgQ7GcKOflDFnjWIepaPFUsM0IXUBrne10sl3aa2Bkcz3+FjRdIxBe9dAMhIJmEnQNA==","signatures":[{"sig":"MEYCIQCbFL6kJXvmvhDRKsvnM3sdiYLWdY01hEkGq0hfRPqjQQIhALLTcE3sPew4z1OWx/RLAubVeRLz9w5Z6b3kraGzDcsk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":540522,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc5Hs+CRA9TVsSAnZWagAAoSMP/RAzaxbBGMdLBVJRkbCF\nmgO3u42Q2H7TZ2am9cLxO2tGFDFT4hCfmOb1EeszDTHMtgottpdKPGaCivx2\nL8VHTwkghOe8gmk8vcn/AlsgXjjrzmOOcS8NsSrHZbEdfdFOT3mVpQhqi1QR\nXzr7+oTUbLki8LRGM2BLVC2AK21hhK/uESG/9nRTZKzGtKUpf3B4pHuGOPR3\nWZr6WCD3JvNR6rz/XzFIr4Mi1smxnTlxWx67NqlqdaK620B/jrRXC3dufztX\nLYGcmyGY8rXrV1l5q/ezxkZePTlXcVBlffKoTm/7XpKxadDvugWXHXWpvv9r\n21kDJssi+yQBjqrR/cP59HqYwewhi6VwAyPIyrwAzUkzVUHL/lacEKOQb7hs\np+M8mvJYYZ71eRBgQPUfzvevpS+9eL/NxffHtRk6lrDKw38cd7dWLwKLFWZC\nli1/A8XIBfrRvIS4+IyITFrqpDavf5mprzHxHNzT3ndq1jErF3/1q4ytv8g7\no+l2MmqeRHrDPpJrTjQWbz2lccSnj7lZXYCIcU/ujST9Sfoe0MndYS68489D\n2aqpdjTcoKkgRzA77ngAUnjt3BFTIodIs9RUN8rraMMNe6DLl2XjwanmsL+U\n2PNQqHpv47RTyhjDoQQ4bLGmdp3lpTBFqpA0dkIJckMFHEYbLAcoSZ310ffm\n/3FW\r\n=Hhhw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node -e \"try { require('./scripts/postinstall'); } catch (e) { /* empty */ }\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.1.2_1558477629264_0.034556309996188306","host":"s3://npm-registry-packages"}},"2.6.9":{"name":"core-js","version":"2.6.9","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.9","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6b4b214620c834152e179323727fc19741b084f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.9.tgz","fileCount":1489,"integrity":"sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==","signatures":[{"sig":"MEUCIH0NMvVgPF7cU0VcAM7XOvyrh4kDObgF/iZIdlXvX9A1AiEA9uDUMbWcjxfJ3nrBnW4elWoIiBh0adAhlkeW9BzmRV4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2259924,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc694FCRA9TVsSAnZWagAASNUQAJm05aYOXuRaPztHACgA\nXShT9cULAtCEWOzx2epzL/2RqDSN3SapXxEho1+emnKJ1wfNDUDDSbz0WNF3\nOCRuTAJByifBLFTCyv7IBdis4TVlKiiWBsTmMribMIBAFRqanDo5QfdaRDJn\nLbe8iIa80SCcAl2A4mTjIePybAzGeMr1ro6/ZAs8pBJUkzDWqcUNKLDH1IDx\n8LWGew87mv1SE2qYd6OBKcLwLJhDQMFeLTuyKV3LNnpig8Ptw20JU8xvmBeh\nL99SqjUcaqsytKnOgxfDVsEUd0MUSbBllRqGZnFRXan0hP0DzaJ4Z9ihTJhY\nr6MWnvA2CFhJIMmtqORPM9aS/nqdHaU4LFDRBDbZNwFk5ve+8FjHDPL13ZNG\ndnHGPZABxoTNxKoqXw5DhhgqBZlmSYxMg5txNDJVrLGCXBXLYTlGoqTegWfS\nDy4j5zGc7iJodgmbXh0zz6A4rkltNc3vH90AeSeDeLwGVDuPNGKMoB+kJKLW\nWN27lkMybv51xNJbtQ8hV6q1g4i0/pzKGpObSFYtGX60M6AxOIGwFEGqQJVb\nilVcIROOmWcL3BH7pIQDvw95dDdWf68vD8ilfklZV0834ZUIiH1mFpEe0V2c\nZknqQCq3GES+7SNFc/Bber6BAf4iNXSWkCkdJ19kJo8BGvM6YQLBucU8V3y7\nEUYT\r\n=dsSH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"6a3fe85136aaae0e3b099c96a05a5ceb1f515a50","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","postinstall":"node scripts/postinstall || echo \"ignore\"","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.9_1558961667994_0.7058907097218095","host":"s3://npm-registry-packages"}},"3.1.3":{"name":"core-js","version":"3.1.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.1.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"95700bca5f248f5f78c0ec63e784eca663ec4138","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.1.3.tgz","fileCount":1593,"integrity":"sha512-PWZ+ZfuaKf178BIAg+CRsljwjIMRV8MY00CbZczkR6Zk5LfkSkjGoaab3+bqRQWVITNZxQB7TFYz+CFcyuamvA==","signatures":[{"sig":"MEUCIAlYqqvNXKIcYYiqEaMjXcUZNJlMjeJe8v36PIK8ftUCAiEApIKMApHWfLZ5+/Ms26x4LhmaWXpKxSAfJyi4nIfeEFs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":559670,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc6+CXCRA9TVsSAnZWagAADhEQAKK3Zits4rLML9L4U/OD\naLNJ5ZP2uSDIEIi1ysYqOVOBFz2FobwFSxOCeDIVo1VkKaFlb6CtvQPTVXSh\npCKT073RRBzPlWG68kHEQXvwh8uwar9+E+aiDXkj8+f+h8JHOyR6gWBE/ZSh\n1s1sGhBIs1xtqTi+1grUIQRXtaX0yH4xn1RwclGvV62FaORJz8uoOFg+2Fp/\n/pHnbuO8TOTw1UtBe144glTMHW8VXqD8+baYIH1wq+w0smKyuKAjOwxS3uXv\nzF0M6JpPpamfw2UfI2ylkgobaq9IhGUnZyFjR1rKUWgfGPvFHDSggCxyFZRz\nC4Yty4+mXHuQgrlgRNeVQ2rjSopHFyEFOSQyOygpDOLoddciINpmFuCvyu+D\npzpt8q0pxX20ltxiBtbBT/KaV1YHiHAycTZWtSU2Fk4KKipZMKLsjqzAFqzI\n/tkneffzRhM4C3GRaAW73r71L4Z/1NxfVAukyBKobPEZXfBmKDjGe16MX/p1\nBiDfeww100hYqJ1+BVlq7IZFkm7IfTDGAORoVCZmOTh/qfoWvBXZABZQvo53\niRkMOnx/tWTsGO+SnWngKxhCgi8s2ron9CUYB4F8nP6SZmKfoWfp991JcaEQ\nAN4AzG4IRI2ZNcPFWyi39I/dxT4wv4GvUEob12DSHSaZmToPIi05vQAoF02F\nMNWI\r\n=Ul6v\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node scripts/postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.1.3_1558962327233_0.4575589137940159","host":"s3://npm-registry-packages"}},"3.1.4":{"name":"core-js","version":"3.1.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.1.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3a2837fc48e582e1ae25907afcd6cf03b0cc7a07","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.1.4.tgz","fileCount":1592,"integrity":"sha512-YNZN8lt82XIMLnLirj9MhKDFZHalwzzrL9YLt6eb0T5D0EDl4IQ90IGkua8mHbnxNrkj1d8hbdizMc0Qmg1WnQ==","signatures":[{"sig":"MEUCIQDacOn0FAtsWDUVkxz9yfAFFcpcIDe+c4nscrfanV2ErgIgR6Cv/JXOTyiHgGCrjYVQr1ew0at6IbLLCaQ+yc5jN1Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":565545,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBNzxCRA9TVsSAnZWagAAMMYP/1VX6h+XYAGFOqB/jsfx\n7NhcaEIc5nL1Nd1oABHobjrF656ljm/lB7r/7bSsUgAOa7vkDiovfAwMR9VK\nhrKVB5hApy+lKfyU/GDfOhUIV2BjMQlotwnk41Oics0EEqZ+8iP2hfA01Yc9\nz1zSwvoy1VjcKMnxoklERjDV76tV5bueW1KiXn74ftLXeLa2soZUkslMDy1G\npnCy0an96XemwBku9VNuejs1TLtcNHH5J1fsFKq8V7r/l0piMj69k4SWb+Ay\nIhKEP4KqChxApqXCVatazhruP4FNbbVGCKrGvzcQArf1Kjtzw9WBWDiQn2qJ\nkzDaNssmWEJKBp1KNV8wDhp5ZJpvbD3aDsd1PFvK4ibw5lzGwZSK/XDDrnrt\npcaYHH5aRv/OC+Lu4onh3Mu7u/a5xn00ttQxYRZQXwxZAKO7xaucxgR/tvco\nDZuiqPeed0rcb7xW+Yd8gH1zAOPnoUEbolOzsM1iCHvSfOubHjBCk4XtF26G\nqvpxO6MLXeZsmOEctW9MZeRxQKkQtEHwkPV5Q8ldjq5ENJWWV3ufA14TL216\nzC4B1uTlIS9fvKTJqoyh7LsL5Gu1CnUvVCjMnJagY5Bcr+G/MpZ/xbijm5gI\nuzZDis6NwYULNoN1tfPjt3979/6VUfrxsLChp9bABCdo1ivK69CKTVq8EUyz\nAsAs\r\n=s6er\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node scripts/postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.1.4_1560599792172_0.9948796742707071","host":"s3://npm-registry-packages"}},"3.2.0":{"name":"core-js","version":"3.2.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.2.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0a835fdf6aa677fff83a823a7b5276c9e7cebb76","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.2.0.tgz","fileCount":1604,"integrity":"sha512-gybgLzmr7SQRSF6UzGYXducx4eE10ONQlyEnQoqiGPbmbn7zLkb73tPfc4YbZN0lvcTQwoLNPjq4RuCaCumGyQ==","signatures":[{"sig":"MEYCIQDyLotjvGfqnJ0IJHQRY2e4Tg1+6nJ56O/OOIRW9lY/HgIhAMGTLHSVpBzRukQTnlyKyCy7bsL6Rm6LPXnK9cOPeLPl","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":571700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdTJyLCRA9TVsSAnZWagAAZ6EP/0z+7iMfCkypuM73tLjd\n59xGckCeLF2kCXfl6HOfe8795xBdJ/SWQQ/6wIv01aENvYk4F/H5RypZ19KM\n5iYgNV6wAnSCf6FN2AF0bobhsbQEwkDUMoXrR3XVJIDqAJc/Wvkc+rhl/QRc\nweuXe3VZUdLUVUpCAD6KJR3A/o7uecoOqni0Ulfr6Kng3WOiIJxmuo7sMr/B\noxStqnVsJ/aSJKUBI5oFDlUQGGNd9u5nSZB2uVvSboNWkQCtEfX0n8AhL3km\nqf3oylsvcvqNHqEPdQXGCD+9uKvQB4gD5t+eHeF5CnZkMyaPVbU+vj2ea00t\npM6/MjJOmszc3RQl9DZiSKYqu9iZzsbdgkNqOdGFTCF8aYsQXJA6cMly7yd9\nPRHDvZmmy33wQGEem4C+b7NMoarSTgd3xvxxGETaoExEycjSVQv8DOAWWuvU\nlhMx/klGShA2LW/wSjHcJQam3ZnEeM+p8h7OK4GCmgbJY00WZ7OlOlxDWFXc\n20i6aVCxZAkGpUpfw5sT7xia1i0CpcFnqQFDYQibjduvYayi+hG9dJ9CyzOn\nWHCXdjItHgUtfEsdgCRETk8xiwNY4+dYVloj9fg7eCsXaVoOya1OBwkyZQCm\ntysrF0Mcf4Pj5oRe3yEZBhupObg4MoSadJJQhQuBJUtiZtWAhl0bKiq36YYg\nEoi2\r\n=sGrR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node scripts/postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.10.2","description":"Standard library","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.2.0_1565301898026_0.25150483000543167","host":"s3://npm-registry-packages"}},"3.2.1":{"name":"core-js","version":"3.2.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.2.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"cd41f38534da6cc59f7db050fe67307de9868b09","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.2.1.tgz","fileCount":1604,"integrity":"sha512-Qa5XSVefSVPRxy2XfUC13WbvqkxhkwB3ve+pgCQveNgYzbM/UxZeu1dcOX/xr4UmfUd+muuvsaxilQzCyUurMw==","signatures":[{"sig":"MEQCIGLuFRRpSQxz/W8SmOz2/HOQL3bQcX4I+EfnA4Fde8d/AiAy5Qv+EO4u9q62kAmkQs62DZleiOmoMa7Q3acGrjJXuw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":571737,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdUVqCCRA9TVsSAnZWagAAascP/1deRMd1sfcHsd/UPNS0\nVgu/gnWzOzKBRiPwnSM0jyucEAUV1DIpra+2gXf7SZmecgCX2qGvD/27SoWZ\nf9CMT0JhOGNGcKSsRLGWoMrOlHQGCUa0tCv0IZu3d8P9MijbZ+dFeWTp5oXa\n4cYg8bx5999st0o07+rukvCKZAWRJhTz8yZtQc38/2filbwELekAw1o1a24F\nqnrDf5XoUzZZoAA7aoR7a//+YmQcG4FH1FmnMnCE+f51TN4qi5Wi5H5RvCz6\ngh/6Ls6Bd0TNrBxPOmt1pwjdhTM3SOKwMgXVxOjAwlaNz80y/L/GuCg8Txu9\nZvCzSp1GhqFLzAVoCslV3admzoyjImt9lBTgUg+RyHM4e9OtE2L2HIHfsDUY\nwW/3djvraep+xOob5MhbregQLIugLvGyLpjIo4Hfxva7u6SDIHSS1Fd3fBoo\nVsxDPMsMw2gbJm0rrx2MJ/g52f8+mWoazRBqFGZZ+FcYOtif+MABEy/+3gqe\ndFgMRpsihnXoRCGnM1gY3TPZoqW1WaGpc92+azCU7pEw3pEfy5XnLfUIpKNF\nWI8weKuUF4BMt+alOUWWusjCEHv5ZY2N59M9+lE1kATm+FChaxvTK9QzYlc0\n4rEo5jFb23lE/aCo7hR4a2u5TnwanEVAgl0O8T698JhWKrzL7kKOiXVb6LQO\nJb8F\r\n=cF12\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node scripts/postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.10.2","description":"Standard library","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.2.1_1565612674187_0.09031490347591231","host":"s3://npm-registry-packages"}},"2.6.10":{"name":"core-js","version":"2.6.10","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.10","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8a5b8391f8cc7013da703411ce5b585706300d7f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.10.tgz","fileCount":1489,"integrity":"sha512-I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA==","signatures":[{"sig":"MEUCIEy6E43nVkRYNNIJNHIkwNWCBSG6qs6WPVLyp9xIwyBuAiEAvcQjLbzPMjv9d1oitMz0i6NtJDWMxVUW7dGHOfPw2Mo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2261112,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdozerCRA9TVsSAnZWagAADccP/3/3xTCq6Cc/zkSY58sa\nll3tgQAAwjZRYYUAmR3eeW/2XniBg5FvsDxl/WF03rgZ4j9oqt4Gj4QloF7U\ncji18ly/BP6nVLnf4zoM1q6RQG0eJ858KADTtkyh5x+DFjxvk9O8iFO3Gid8\nH2uUuARRST6h95rYgOkXt2AIn+imE2fwkNIhC+Ur8MZiz/2jY2nPoQVXIZ9J\n7oUVtzphmw4Tal9HyhyW6TyPqq8o3ByToHMozLSujQ6yswa345lWVdbozKw7\nA2yEpqB6jK6V2pbtvK9uR+mTBmIwv8klq5OQVINkIV13mGoPnIHdEOaueo9X\nq4gxBmmErqFUr1PAKk+WMvZuOBTETGkYViRiVvigZwkxL9BV425yy1qY0sgv\nfNbwa1TCX0YwNroF4C3JuHrgLRY4c4Vg2rHdDV4gLbKij+A93AX6gdIgpLJ4\nezB9T/U1KicYaoGcfBAaayjex7e/8lApuaASs9qVaKveRgYaQxEgG0wg6KMK\nb+vRpoZMctHOM36YnbBV/DmUD2RMIMl1dGdQtt0R+14YzBRvjNwHWeLlZhnl\nanq5DQOgBRHMI6P1Lt+cifgkTbBYQ3OmoEMPVzxdNJLtsxZZo1tvPU/MBjf6\nz7Ah70a1Q63qZUAjYJNe+asHESSMW4LW7wpFQhqXmnwbTorJPAJZJGh61Ffw\nKlJ8\r\n=g20o\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"24d1eaa1754587b3b271dbdeeae9a0b042aa013d","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","postinstall":"node postinstall || echo \"ignore\"","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.11.3","description":"Standard library","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.10_1570977706906_0.2406702236276279","host":"s3://npm-registry-packages"}},"3.3.0":{"name":"core-js","version":"3.3.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.3.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0b9eaca911b4a488b43f99f992c08cdfc8684b4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.3.0.tgz","fileCount":1675,"integrity":"sha512-a5Xeh/HsTymwFSwZjiW53UguRL73XAV6SjfESRtwwK8FLfchDCbquerl0Cvkmxo6SuCHOM/BaQFBRAwMFcoqQQ==","signatures":[{"sig":"MEUCIQCWwH7W9woawKEVO5Bt8VcKTpkCBslvVisEHMPoBe99+AIgckxa8RB6HZ69dmP+7eqwKDw3vfkrV6U6oJvsLilkbv8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":622384,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdozfqCRA9TVsSAnZWagAACBMP/j0rKAI4kqfMcgLxbJqS\naHAxlpIBOZxyMoP1mM+LJ7ZoOCXd6qQGrzSpcoLoAL+xgSx/qNF7Km8JxXFu\nk1tkCKE9xTPoMLOg1/mBwXo5m539e2sp/+VumYhRV1jbD9Yoyr7cNFIBDQJf\niR/FCyWfuGXD8SkcppbGSOijkwcMlCatjL5pgbWxI2x+Uvb87HLvfq3rt62y\n/YGpHlNnAPlZGsWpA1Q0bhDP1EI7AMPaPdLTTJkZiSr8RUn5FBOOl0Hhhjox\n/KH5ojZMQvQvaIOjjAfkJc/YbwcohQVK68V6CrG8GkrOxkCVoWY0gD2xQ+Io\nlgKkRbL6CnC2zd4fhE/popEY5CtSqLlQ9O/nkmVaIQuM4oljsZxh2efCo2q8\nuA0PYeX7ksXy6S/0ZmGRpc4PLV+LTBmTrjsZu72EPeTBtd8RVKUm3MTGZwlx\nxzwvgcjd/CDGfYEOWY1ggxKQmvc95TAI1sWe4f4z/EPptlrqDAnlRY38AULn\nIi/Pbtv6bLDA/UcqhpaMPRrw7aLg+PgST7c+YMFz21ptcuoE7Z6u6yBpcvys\nzndxdCFPhvpDFjUxhK4TlyNLtuepPkyIF65cuXUcdt25oS4hN5PS1CZxUSJS\nfn+8v+O2WHh3BmM3UEX0DlWDVkYt4qXxb7fFNqbLeoFA7sy9yb4T4HtyRuP1\nsr7W\r\n=HEzf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.11.3","description":"Standard library","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.3.0_1570977769323_0.8456977965629113","host":"s3://npm-registry-packages"}},"3.3.1":{"name":"core-js","version":"3.3.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.3.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"636a3dc323c3f9ba618e74c5900366e19f48e959","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.3.1.tgz","fileCount":1676,"integrity":"sha512-1PGI49Lz5qYo3EBz0kymSfJgTvn2G/c03lBTJ7PO0R1liQ7Yd6E570odu5p4CxG/WB0yUwCmAWummo79yOQUcQ==","signatures":[{"sig":"MEUCIQCXq+GdEsbhJp5yOM1U4vY2JAdn7S7Y8msziFjyEgh3YAIgHomEb1mVOc5EOLrGpQi2o6y93/NZfhVGDqUqXxi4y/M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":623448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdoz1LCRA9TVsSAnZWagAA7bEP/2n9KCZpSqwdcn1yoRPg\ni5k3IchtS42tltNQt/KSCQ/UHUyMgmyc9rAMrZ9iVu9TpETQWY7JCuah2qp4\nlMIaSL7P4a1WvlC5FB0UwwsSlCsXqQDQJqbrVZa48wp60aL5dXkPO03MrGHG\njAqM2I5CZ+JGPuzswDy+VT9NX53lQN3YD9h7+qk6TecjHZJ1PayTxf5CMvQn\nzz775UCvguJqenTWNRVqVryp9uy+JTqYy9KTKoA9T/Fu/lY0A5mo94S4yCIT\nVy5goFmKA2N+/DKeWXYH+/fexkb9LBikJp0DuxfQhyuAgtl+OrXNV7fqs18b\nKUugll/I82kTQ5vY3z1O3nJ0TBEgVWAbY1rrhBVEVkYsY74k7shC2rhCGJ+i\nylZykf5a58SzznrH2rWm4tkhcLwz8lLjw+OnwTsVkycID53p8gxSxXxvr2kS\noHO9N0zw0r+60V3PqccocduDmZFArYCIt8bOlHLHBthUiq0dcaGCe8t4pPKd\nP0D3HaLCSvfJvqARviyhPtvqgoSTe/fIweCvYg4yui03sWd9gLAZNZL5HLvo\n9ZT1zxREh3FW85P8lyvhERyw+3r2pfGSjarpAcgDeoCXzImJL+N2C1j1MYiV\nKHPkwfnDB03JYdNIqUaWhB2+adRqEbzxbRAvqFag503bFnBI9QV2rJVXyyQJ\nA1NE\r\n=HxjK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.11.3","description":"Standard library","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.3.1_1570979147101_0.8808504019773069","host":"s3://npm-registry-packages"}},"3.3.2":{"name":"core-js","version":"3.3.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.3.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"cd42da1d7b0bb33ef11326be3a721934277ceb42","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.3.2.tgz","fileCount":1676,"integrity":"sha512-S1FfZpeBchkhyoY76YAdFzKS4zz9aOK7EeFaNA2aJlyXyA+sgqz6xdxmLPGXEAf0nF44MVN1kSjrA9Kt3ATDQg==","signatures":[{"sig":"MEYCIQDo3qCGfc3AhNAFIjTPS57hakhQ5uWjjsTVt7rxc5P8PQIhAML4FxmEotk05v2hJMWTPTDK/Zq4lU4YmyzfwWTrEe4k","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":623448,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdpHrvCRA9TVsSAnZWagAAnnkQAJEuW0QYfY1KmA3aettM\nqYdy1jdDhrrSXShUhgHXlh/Vr2HSYCEidjjHV9O3PtRPJELzWj39yM+p1m6E\nViGDCsj2YTokNLM+q6yfIyUc57l2m8zT1CxkCl/qfLJip/zxSbSoqj4ESfWu\n9i5jBPAHWzeBXZw3RKgs08702AML/FP6hM1YnQ56F7F9X9ewl+OEYq1E+MR+\nyTZxXK1qwf0Yztcts2AAfhH/0mocjzAgbDnwc2KXz7AwBnrWKed9u6KIkMDn\nm4j5/jeer8SnmCSw6GCIwl91LN9mJy21d2bsJHidpi7ool8ROfSCk0M730yg\nSoGD85tEwkpSjUW1Xu5fVTBf+pQtHgbEbqATkSrht2eXcCEsgEh6Od7W/uC2\nysEbgYENlXEe4HkqRwPznoy0BN2+pud2iWZsTL3+vkBdxtYh3XR+aEYJWZbw\nNd5JbXgdiVZi9zWWOYeppE5nPyN/UsJ8iG3sy56M90y5WbVpHLLe3swdWiBG\nfLX7IEJb48Rjt6SNwWtzoztrvt0PQVF1RjVoaz8UAtVwrv/C5DNSiEujudsM\nPCg8bBWgd8aB1zMTd4231sC3+agvEgqdCxD9ak0C4u/02Ek16zVMGJ3MAADF\n+Dm3AM2naxpIwOFaS6jHzNU9Ok3NqO51IAC1tinFFyuDW5WHnjVJISwjtfZA\nDME6\r\n=A6zT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.12.0","description":"Standard library","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.3.2_1571060462803_0.5578836329207617","host":"s3://npm-registry-packages"}},"3.3.3":{"name":"core-js","version":"3.3.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.3.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b7048d3c6c1a52b5fe55a729c1d4ccdffe0891bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.3.3.tgz","fileCount":1676,"integrity":"sha512-0xmD4vUJRY8nfLyV9zcpC17FtSie5STXzw+HyYw2t8IIvmDnbq7RJUULECCo+NstpJtwK9kx8S+898iyqgeUow==","signatures":[{"sig":"MEUCIEyEOl2HKKsMp36odQFzAtsAkj9P7k6CoudjqF5OaoGiAiEA4zfg/EKJ35FjMl8H/J28+UEbbgWLrDEpMc+LhLzFEso=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":623434,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdreW+CRA9TVsSAnZWagAAdHIQAJ65D9SU8AeIZ4yypMb9\n21CiOPTWVz+o4oARY3gmLBqUUS4c68kEdCNtkSm6tDxDH/zSFwtbS0v0ZGhy\nxCeXqoMEW5ieh0JXPa9O9UXX2G58OTX71XeABzJ2GJuQ3UMAVyqCMY/sSh73\ndE/GNpfBio8/zGx+j1yMLgF/yhUni+Ipkv8gKY2l3ZwBmq7Tx8Gb2BARDATv\nVmRDNs5KHS02Xufa+bZMVz/pLOusahyr/do9O1+1liUt5uNP9eIUrofgGFTn\nn2OIFljjnW8NmAw0BLfnJOIfOPi1+uGs6Coho7b+M603nZvgj82i3pFClfCo\naVZtvZUjHmEOlbptNS4Zlw7cnlzysVl2NVlZbHjvM2qkQwJf3ED8T6wwCtw6\nZljxkr3yFkFmqjce+48lTdYysKSghZFtfVpY6GhfRPt27Ux5SJdgwvBoTGEa\nfMpW3+Bdd2CfcF0E2PXBjzU4/IFO+B7afpoNaLrr/WOnOrnH5KyJ/D8eh0sG\n59SIMFfv1TYoEpAhpPSEfhkHCZmSIynmBgttxdFfnh3sXcOQafw3+AilLd7B\nsHd0zKRC+tDHQNm5+81FS35PUV9KPQBbOxEQy1syxxwhHGVlRAWAJrdC4orT\nS8F5H18eDMZVo3FwckimlC5SUbe6DLfkRwYrgoKQ4ezoZHGsHg2t4gCS2ruH\nEWf6\r\n=T6UE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.12.0","description":"Standard library","directories":{},"_nodeVersion":"12.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.3.3_1571677629892_0.13214610955785244","host":"s3://npm-registry-packages"}},"3.3.4":{"name":"core-js","version":"3.3.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.3.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6b0a23392958317bfb46e40b090529a923add669","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.3.4.tgz","fileCount":1677,"integrity":"sha512-BtibooaAmSOptGLRccsuX/dqgPtXwNgqcvYA6kOTTMzonRxZ+pJS4e+6mvVutESfXMeTnK8m3M+aBu3bkJbR+w==","signatures":[{"sig":"MEYCIQDoK9OG8ei+RrfsuhuoGLK3bLZ4U+q9jZz2QWFbL/9cQwIhAKNJ0f657xdyVgWyP163332Pe7mkZ77n9tLsGinuUs65","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":625672,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdstdYCRA9TVsSAnZWagAAFoQP/R6ZJyqmXPP9ItYGb09f\nZ/Cuoe6pO34Z7wJva+0j4ZsjJEJ5QDKaoeJLBZT3mfUMHMRqZGAgM/2iKtu3\n6J9cvLG5SKluEDh8mndqDxN0r6An3/EAQItXQ2ShiMG5E8R4fFhj22PTQSqn\nkGoNE+PCwB8gp7nKvB0Y9gAKHIkmSOL/nP6cC/VD9GW8Pr23NHbUh0SNkafG\nR79M7Fq40rznzw9GO5ZQrbxDtCzIQwvqVVm4QvNI2ipHGPtUb9D+NXVPgtKu\nW8XuLSOO40eTu375UNHdHKUO5WLlPZn2IKJP5h6jEcceouhdmBgNYcqYAO6G\neyelDGpbMdsIK30W2wmhnYEJdH+AF8Z6DSbfDCY9F8LTonjP62VpPDX0iaNt\n/JDEXkgrOR8pn+NXs2TZyjSM4QlZ9MEyU0T9GUmskhTGYyExrEqc81kJjoBb\nZdkDV/c3L5ObUXr8yUiDJv+eMOZPf2iVT4c575RIqMH+5fJ4MiKeJ1POdGNU\nCD68kb0dlK/9Hogb1ubi+/Cca6RQ4QY94npzu8Or0Pl1NhvC2Q+Y2ueI/YkV\nNE75oKoOuGHSa9ltZtQVi/cdsz0/53gtkRTqAELJlmeqo/HsoleZu/seVgh5\nsInGl053FkeXXKXKA/g5TZMeThapxACq7+LsogHkWETsqE3SlaYVugkmTgqn\n/Mw1\r\n=98WG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.12.0","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.3.4_1572001624174_0.6726288540594108","host":"s3://npm-registry-packages"}},"3.3.5":{"name":"core-js","version":"3.3.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.3.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"58d20f48a95a07304b62ff752742b82b56431ed8","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.3.5.tgz","fileCount":1677,"integrity":"sha512-0J3K+Par/ZydhKg8pEiTcK/9d65/nqJOzY62uMkjeBmt05fDOt/khUVjDdh8TpeIuGQDy1yLDDCjiWN/8pFIuw==","signatures":[{"sig":"MEQCIAELrEz2oRmjgI/mGjcbyLiYIx9wVqROLq6sxZ1N0kyEAiAm0WG4EuFlACvc+R52UOL27hM/HCkc8OZumxOZgUFfeQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":626843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdtyWxCRA9TVsSAnZWagAA6l8P+wZQ8XDVmXC1IQINHpAE\nz2PK4BAXtuibE7MRHVKAmBEs2xzlmEkiSDY8lJJs7E8bbGxVYa/ImTVKNiNn\ntOXKnFykT/+MILXG30REQzPAuoK+5qqJm6w1sttLnpO6LJEaWCe+CtkUS1lS\n0OYOisL+ccUTTQHvqZDe80F/V6qaIVAL882Eo/JD7HKvpSq5jZMZELkUTPLK\nPMK/C1IYPP4W+SH+Srk4fSgRHz/wlIQt4iEKIcfHtx5m6KjwUAkc+grPTb0y\nqp7EL+xx4WQhoYUEh3JivshJlRKkPaWYyMe+YgEgMxn4ggkRYj4bYaX6WZJ9\n0c0MdFe6vIo0EbDlOo6m9+nCv3dXrlIrPZrw/PyDg7HbGEJAU7TNnPSzFjH4\ncPq3M620cEi1OnH5GKgQ0FkkKtrkbkGLWYF01cIr1QfiaLB/u3BpJLPFCUbT\noqWecA5O+DkM5elqrfKrrzRZsKfSVTM/wx3W3LzgERvC9aydk6lgwgQx5yWq\nrp7PK9VxD1TE4HBZlDmGrXid1zxw/dWdM6LFWZzC6nDM1YuqMK6YQWmnLRs0\nBo879xsFdB2uyqPFVOz5XF9xElhkQpedhxJT2jzszWl7/ZvtO26dvdziWpvP\ni4+5WhfBE055IbJLwRlE9IDvAiWeB1zKr9rqh98SZPz3MFyelb9OGzklut91\nwThD\r\n=cMyr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.12.0","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.3.5_1572283824328_0.8256540441005329","host":"s3://npm-registry-packages"}},"3.3.6":{"name":"core-js","version":"3.3.6","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.3.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6ad1650323c441f45379e176ed175c0d021eac92","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.3.6.tgz","fileCount":1677,"integrity":"sha512-u4oM8SHwmDuh5mWZdDg9UwNVq5s1uqq6ZDLLIs07VY+VJU91i3h4f3K/pgFvtUQPGdeStrZ+odKyfyt4EnKHfA==","signatures":[{"sig":"MEQCID9OxVrKQWovMVXz0yM86CuwZ8dq2691BFpClF1O55iAAiA303AnQp/QXPPW3ttzblGJ4UDYP2IAgDw0nKOzUh0yUw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":627437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJduxTfCRA9TVsSAnZWagAA/iUP/28KCeLkGnGrRKKH3H1g\nMw5CPqFOMRKtKV4r8d03hqUXtDf1wGFW3GF21LY0s9VAjZttERRTki+3Pw8P\nCxa3YBWazmyGxXUXRsdO8akD9+xKkd8hIzl6osafG5/Zl9n78YYx97ZpC8IW\nE6NINmfk7rdBRaD2U3A1QFQJCplOHW0zs9q2XieljjlIXsMSXqB0N2el9ybU\nDtr94xWBQnJrE0spAy5TfFSmBaQLIRvVDnMocezgpgiLUk24czUVyCyf4Oyd\ntB40fwqYPlqVe5u8A/1JXqsNPT+g4U2e+OgBjUgcVa7Iioehg+0rey2oMboj\nRsFidWa6MdZv+kIcHhrUE2wzxByxgmORHr4/zkwHdDFmikMkWhbMu8n+sF4a\nTmc1LqH208frER7jzIq0wM03ov8OaxDQ0+G9ztZxhkijLm7+5FuvUx435hVU\n4CkMoMLjnpEt0WYfd1L00NADUWJuI4eDzWN+Cwy3RHvsgGc0170AdVn5TGt9\n/2qbilnd4JYBhHSUiJoy0jFGxkvl4B/45IXYlVB4TSPSqAZGM7KolmNvSS7J\nixeuHaozXRUKUTQ3T2nXfGiOZhAZ8tZB+rclvYJSYibA7AW15OcMHiGrQdZW\nlLeoDr2WPcwlU7f6QuCtdUNQ3qKDJAoxwLxEpyvW7xznu3RVRX6DjpycDfZV\n7MNo\r\n=863m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.12.0","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.3.6_1572541663313_0.05537781804803821","host":"s3://npm-registry-packages"}},"3.4.0":{"name":"core-js","version":"3.4.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"29ea478601789c72f2978e9bb98f43546f89d3aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.0.tgz","fileCount":1678,"integrity":"sha512-lQxb4HScV71YugF/X28LtePZj9AB7WqOpcB+YztYxusvhrgZiQXPmCYfPC5LHsw/+ScEtDbXU3xbqH3CjBRmYA==","signatures":[{"sig":"MEUCID3oovrO2jSw1qipbcZOSc502E4O0e3ihxIQCLalAsqOAiEApT7gEVZJoKNqO+laD+LpPgcKVZ1tmpwYyLuCZuY5vzk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":628800,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdwz7mCRA9TVsSAnZWagAA+V8P/0uBH/XBwBTMkKpATRur\n6bNMrIfsWZgEl/NgXNnnZC2XXUnrdjDrRmiFoyOKqaUSDzhc//qYGVjlR8iX\ncxLOGXSJjvUMiS/QrXY+NZiFCU0H3QrHmA09OIvFO4J7AjRZ3coz1UDsyCjD\nQjAgpso6KDrVs1pSzNkgMU2+4U5QxtwoP+yk9BWu+5VPpDRoiv3ww56aIA62\nHJwUiXA6kI1Sx6bnYQGCgBFM1h/UENEzSD7a76qQZ1NUQcQtL3fQZ7YhPWO8\n2xg5y4rn282Rd5QGKt8tuQxavZP15ipjwodjJCN6zRFIyz49+OHsTg10P2zN\nGVeRWZ461w8r79H7pJHZvk2rN66yfJYHmzDdwYyjbmZSbra1nCFfi/vatZHN\nfHRTDP21lKrxzM98XxDI0tIA6eHCVTV2/iePeomqwFyt06FNKEpvMEx1oOgo\nS5UijcoQ/k4qGVLfhabKQhpZOmtw9JJVxD9+IvPwhOZH7KRR/bK35diSDpGP\neKw5THhCaw4tb//eMOCZK/BC1lUoUzZ6WIIrjV1N0X2ZilYwwApP/wPibNz4\nP9NzW4HlByJN9hZSOu14KKpW2WrOJN2r+1Z5U55cRH6qDOFysir3EAf9hGsS\nVigc8+eyXCx7o1dVxQS5BTP5BeWubWB1XjwPn2SNfKz0Wmzk+IYvuuL2kT+2\nB30S\r\n=GY5c\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.0","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.0_1573076709509_0.7371576730146092","host":"s3://npm-registry-packages"}},"3.4.1":{"name":"core-js","version":"3.4.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"76dd6828412900ab27c8ce0b22e6114d7ce21b18","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.1.tgz","fileCount":1679,"integrity":"sha512-KX/dnuY/J8FtEwbnrzmAjUYgLqtk+cxM86hfG60LGiW3MmltIc2yAmDgBgEkfm0blZhUrdr1Zd84J2Y14mLxzg==","signatures":[{"sig":"MEUCID2fsBolpgyB98X3JwJjC2VMjFDYaeuR0bZ+ZgYPYi5+AiEA22DdVfvj3A1Pofw+ngWtqoBb8cbk7lPRE5dTpLQqKD8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":628890,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdykGsCRA9TVsSAnZWagAA7d4P/RmftBaxhs+YlbPuePAe\nd2ZvGIjSp97zv1wWAVp5Pv3H3XdRo1GgVNdHMGTmd1yxVsUCSuBZY+RGuGCD\nd82MWn/I3FthvWIjHjnGj/IuzzwJ6E8h+wFNSBUcbf6+bTX1YW8CZgfGsjHb\nDLAoJSWgocAd8+rTLNUYb12ePNL8UuNhmPsgCE5U8jHl9KnWo+H4uYoysz4i\nZtfgacJLRL9B3/m+HzfxKRtgo7C5o0KIr63WJdLUuSk7UpFgaz+jVzbazOaY\nTYN/ZxUWG0bdkAiiQG9RLLg8GSbvj0Q9uaLOK98EfInL5M/b/sFx8TR7YNra\nvpStrywBol7JOUndEeYHP2BJ6rVqVJFaLI1I8hvCmIt4wvsfyCrmDWh7K4Pi\nYe1hYvxobodHsvLl7x07jZUB4ICnBzXWtEAgRzZybmUfT4HJgfy+Ju6rixJi\nz2TnyEryqutTJPloUKO2oK/G66NJeZt5U8ejK/xcV12Wilz/XVOo614QwoKJ\nQBcCKeW3o2f96Df7J16hkeQMMX0ePfJwb3NtU5LdBGcBmWn0mCvjXo0HlPZz\nWrdXiHXvMUJ7ryRO4LniW3paFmatVlvIGQ5FWaNYxdqyGpqsJF6j68U29GEE\niAwNqqKy3jeyfnUSkiCLiz4jfyzig1H+GCqL3zvLmOkpE/oeBnS8RuouzCgF\nSEBJ\r\n=jUbz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node postinstall || echo \"ignore\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.0","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.1_1573536172035_0.17169819491144267","host":"s3://npm-registry-packages"}},"3.4.2":{"name":"core-js","version":"3.4.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ee2b1a60b50388d8ddcda8cdb44a92c7a9ea76df","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.2.tgz","fileCount":1682,"integrity":"sha512-bUTfqFWtNKWp73oNIfRkqwYZJeNT3lstzZcAkhhiuvDraRSgOH1/+F9ZklbpR4zpdKuo4cpXN8tKP7s61yjX+g==","signatures":[{"sig":"MEYCIQDP45EgX4oeVC5KM4pc29ssYZTwoF+q9RQbve6bHrjXCQIhANYwflF+7uKcvKqZM4swQFJ0wEqbmIjnBDt+uB+mYKoS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":629879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd1t7XCRA9TVsSAnZWagAAxTwP/jiCUObdAl7WJLHtYHfs\nIe/88nCOi41zazUAyzv3MmIqf0rF2KJDr9bvkDLq3BCZ/HXAXu3T1kxycE3N\n9ZMR57FIf5IIBaq4LLmYRB6J1gX7PU2/nFPSwLwZ8P7fFXgDscavxY6aCyZY\njipLBorem6F905lXBA9r03mhjP4J5tG+zV/lRIa4gWZ2g9wa78YsY4IuZ1jO\nvEn9aIwEuNionFguf05ejJlCKYFsgUo2L+n+Hqw+odr4KfyT2w/vS4LrUEbr\nKiXVd+Dj6ZJ/ujhepLldLnGQq0DuM5/BrKEeLldst9KEcSBIsZ3GUyOFTVHG\nciivP2X2HPyojbgrexJXcl6Hsor61VwAJIuXq/xRdF7huBKJttcX4FXIA4l4\nkwmGQm9XbQsXVWGPQTwssK8d8W6xZJBm1tSW5H4a/ytym5fFyTWsySAiETfd\n3PlKImYl5MZPBTZipE9hU/Q7o/G/7nK8p4C4cFyR1b2wIZyibNgWoRzKujtb\nqclYk0S5YEWfw4W3+VpRYRaC+UyiGTh5RbvrquHLugZ7DklE5mczv+Rn2FWQ\ngxbev+bN/agiInhif2cFp3IeOAf3DpRhHLTb/cckvpb70puogO4jKR+7z+dd\nmggow5x0zCzYmOghefJRRKtr5jsqNA/Dk39iZWPNK4tgi/yp9gDn4Lvfdqn+\nqayh\r\n=Rva7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.0","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.2_1574362839314_0.5578477449548973","host":"s3://npm-registry-packages"}},"3.4.3":{"name":"core-js","version":"3.4.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"09ea102412a368d5f73d24f082e41ac90c633a49","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.3.tgz","fileCount":1682,"integrity":"sha512-BVvHidX8uAmLCYPfLpXTEex7jz1uZJ1mW+shhIsBdA716O8Fg6TOwSgenSyO/bvEtnGdOTpKRZPSh4bSVI1k9w==","signatures":[{"sig":"MEUCIQCr5OF4d3seiDQb76V0E5xO1qJYycKASndWgd1I4BGubgIgIfMg3OxJvzNjHV65jZkEgTD3PCpl+XB91vUiW81UJY4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":647038,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3TCNCRA9TVsSAnZWagAAcHEP/0GAeqAuI655lwEacHcP\n/xzou+sa2s98Bkf/k1PnAmkMAp/N7APK58lg8euzWlcfqOnCrBTGHJOwwOoQ\n+XManiB3XimyJdcMpV6JImgIa34Q2vELdBrHSO4nxhNqPKmBiTuJKQNSaOBv\nNJaodwu0FS2gTKfvjdd5x89sZ/3LbJ7UlirHFNL+vEBeKp1mzFlCCakvT3bI\n7p6S+IhWAByxEFU8WmWUw5KjL1vDjqv79JRw3FWBgLBaJx8abhY/96FOVLgo\nx3SAxZCgf2D09nvp1zO4uY8RJr1X0t6aN1S4AVT8sXVv+29ZgHGQHcmR9KL+\nGdMLt54acXgdRJLLM+PT5TkxJE32na2CDBXvgHbdk6rcLR6qnMCR8sp86+d/\nCv7wKO/OnEQAQlSiLI86VB5MgBacDzRwEDwbP5GehlKCYs+Qn/l43mBCNMfM\n/G0BFkt8wTGO8Id2h3u3Fv01CVcLXb1sgy0jMQkdDWuCW23PEcwI/Qywe+L1\n3ldapuG6W67ejFaTH+6M4Ywy262dy4KhAvOiELANBtj68ScB2hpwrdJmdcXS\nvFRSgWh1+xtKgESi6eXXwnD0SPZSjpod/i9sJ8S/b05mUiYR0SxwYcyDvsJY\nGr7Pd5MpaiuY6rBN8fp3BpFnk/A9KV7uL9/pGX1PccsUXHkzGDpa/jV/rcpc\nu2fP\r\n=O0ba\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.1","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.3_1574776972392_0.4249494174608217","host":"s3://npm-registry-packages"}},"3.4.4":{"name":"core-js","version":"3.4.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e3d422f8a51adc4cae2bfa04cef26a5ccc046d29","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.4.tgz","fileCount":1682,"integrity":"sha512-vKea1DrcLA80Hrfc7AQgfoGvEaByfR5mH08t+zuWOWY94TFBmabdEL56mUbcijvadG9RxsXR2gUUFrfj4/iTcA==","signatures":[{"sig":"MEYCIQDeSyAsuovBlUTB+SLCGyQanEkE+8ehvils97/0xAxcYwIhAMgrl3CDIqh6bJ/z2JnyMuzsFc/vokLKyYbjQuRxNjua","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":647606,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3hVLCRA9TVsSAnZWagAAgSMP+QD4oq7uSYgWokLuRomm\nF1gJDz1XR5JTsRUcOWxiWrl8EkE0iss1m8u5AHUO3vMdnOXR9CxPB3rLoXa+\nK4qVprYACeclzO9AdjSu0UkLviq2tAARY16Y6YylIUQsxswIOpHc6mEA84Os\nAy1YWBzMQ3Rb7jy4yUYctRz/KF1a6M49NCzLf+q8lgP9mEWC7CA2+JbzuUjG\n9CAFCmrTgCgP+Jr71n250RPjcrpn3r9apZ3FTRc0qAhTw+20Lg7W1hvKGVaZ\nxfdML99Z6z96EIM2Qy6Nq7F2gYjn0iApKUMxGdInav74V0u4N7JOWVTrmG9R\nsfOlgCVxmTqOfIPDfxUbc8MoD3FcRJu7DaZ6cDQfnVnPifuKOp4//xbUEGAk\nz4u8uj4t8kmbF2JHUCUWHvIL6K6LK6lE9hmkKDn/MX/pi7w8LzS+zv/485YQ\ncdpAiiWekRzzQLpDVlU8ra6cDeK5HkVPK8UBq7pfZsRGnmhLx2lPbhNGyRBi\n6nMQkIVVUxxRlDfA43stzU4KoyJiRsecbZpyTO+lMBcMMunEGH0uxCX0Gapj\noPll1oH6dMddkeA5YDiPEqN/YD1HO1PxEKFXe15FPvFPhM3ZIQtS/mTFG50J\npBic8QFptOEE1qemWXOMEYgRfs7ElW26+yQ84UQ7/ly8Gk8fdYXPLtvP1m9v\na+Pt\r\n=cHyp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.1","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.4_1574835531333_0.6306335520981206","host":"s3://npm-registry-packages"}},"3.4.5":{"name":"core-js","version":"3.4.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3dda65611d95699b5eb7742ea451ea052d37aa65","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.5.tgz","fileCount":1682,"integrity":"sha512-OuvejWH6vIaUo59Ndlh89purNm4DCIy/v3QoYlcGnn+PkYI8BhNHfCuAESrWX+ZPfq9JccVJ+XXgOMy77PJexg==","signatures":[{"sig":"MEUCIEhp6/MxUqUVakawlTVjxX6dpKKv7F7zKXJ25JwWm8uOAiEArmKDDthfBX6HS0jW9Dw9LI3N2qgHC0+gGybPQKqU2ks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":648732,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd3vOACRA9TVsSAnZWagAAaSAP/35+DYkUTN7vhFP6ddFp\nwIqYPKNDFyCFpNE5thviagRh/z/n4f2Ck9z4jJNof00Dw/9rHiSGRgCzgiLN\n5x9hS3vZkfS1S/jOXL/98RKboWouFFNyjKXps54L4Cls9Z24QvaRcSefKmjl\no4KhTrk0ROzAx2Bo8p3K2rJTmXbJPNKytki4hNi2rGvR69vLLccRwot5Bztv\nTJnLEyzKISJrkmh14mqp50spx4rk4D21g28rcDcrf449UXfdzcsrhxv6g16k\nvVAbiPjLE0NR4bpRgc3Cq7qkXFsdN/8M9QILBtCKgIR5L7517l8VsBJWG41b\nB00TBVA9UTX5u+UAFaFDaSU5FnNvhF9gWQGKXiKl/t1Rsmm/MckO6e1gsp41\nj95deZKzmeq44adlfKXMn5JNzG6Nx7akZzbhtgBqFMePsc30R9pAZT5Pdq0d\npAa7ZGpwAkGUj95SC+FRnnI4+Xrxxv+FFfBxYmDVbghG8oJ5PR91uCdQw1AN\n6ddxWU44TJLJWbs5dOWUQBr+ag8jNVvtK8MfKEdzq9d8QM4GNsIwfEtHDTUs\na0sZ6f+iW8D0W24zOb/3FUztOLQDUoDDGzPkEle3YUhRh5kW/HekyUQ5Iw1L\nlifHNtAV0PFuVZAWcPx+4j9tS3L73jLkHqrGLUGrHhGGvbcm/Eo4o8GXVXSH\npVMm\r\n=oEwX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.1","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.5_1574892416115_0.7521878340915535","host":"s3://npm-registry-packages"}},"3.4.6":{"name":"core-js","version":"3.4.6","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9d40e52bb82bfd87f186b27bedb50f7fec0e22a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.6.tgz","fileCount":1682,"integrity":"sha512-MO40uOm6V8O1ALTK7MmjYBkQgeAyy03rMspzpBJ8C5mZUKQtHTDMNeF282wX/aXuUekL4zXjgPsfs6tDp3GnwQ==","signatures":[{"sig":"MEQCIDEde8zkHWNYE9mIKMkC0WrGsDgpFuF2vruNGi8D5X8+AiBFzaGNrIA28409QA2GLWQEQ6bd8oVKo1sApZUPuTHoGQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":648900,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5UlTCRA9TVsSAnZWagAAf9AP/iIQ2OD9aK97LaQCM73L\nwI+1YhBpyNMwKwTAPglYIJbrHVBI3KD7COT9paM5azWvGJOCD4z7vjuvDlo0\nx1hPzwigQToOA830djN5jFpCC3c0TU6t2TgPJUFTp7SPoyi7vZp+IzAuuBOT\nB0UVANZJTNbDMajuUD27ExrgAAhHIah9bBk4KACqxUvwOilAVeKJFkHt6FlM\npo17c9Mnvm/PAJuq3Mktv+kz1rqrzeuZiyiTdAwuEZN/KQUJEio+zwUlCB+n\nfy6BWOBy9DPndGaKBlZyCI19CNKneCCwGcTfDuIwQsAk50+poKR6jGrxZ6ml\nCMLS6GE5wM1Zrr33s6ptefvsSy1PudSkvnz46VwukgE6pZJxQ+AjUcmb8gqy\nPZ/sNq1z0wm2428BljavNw8WtqrbIRFd7+/EYHOG0oWiFfVXb7Oe7kksXhkL\nMnICU+THXuN24P+U7NfPL1vWEchb8zv4yeCr84/yVrtQC8FVwZ/knRursZwz\n4PgbxrQz+5hS16nrUArTdWqtzoZvIYWOykC+k1o2yBmbl+FGVxBMFZ/um9cc\nwFyjssbsmNjy9QIw8pzCn4Ce4t3sOEurDXjRvkuDE5kTkYqrKyxdjmtbYkyq\nhvmloT+3KzUxyyEkgh1BLIxiPNuN/NhJBqUEzWybtuPjGRb3tBFHoN2f/x4q\nwdqg\r\n=Z44m\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.1","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.6_1575307603025_0.5027279499196511","host":"s3://npm-registry-packages"}},"3.4.7":{"name":"core-js","version":"3.4.7","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"57c35937da80fe494fbc3adcf9cf3dc00eb86b34","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.7.tgz","fileCount":1682,"integrity":"sha512-qaPVGw30J1wQ0GR3GvoPqlGf9GZfKKF4kFC7kiHlcsPTqH3txrs9crCp3ZiMAXuSenhz89Jnl4GZs/67S5VOSg==","signatures":[{"sig":"MEQCIEh57JcMrdvvLR8bTP/q34uVMxEr/9SERqYQStIFJnwsAiALKoZoZAt7RkWsDxxsfcm3oHCwOtG9CRh6w78KKokrEA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":648900,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd5VCUCRA9TVsSAnZWagAA7ZEP/RQs6ivkdlY4l6Ej9y48\nnZRlXWJp3TeNzhHLaZvyQ17KcTjx8eKBVP42hJI2xMHvcvLkKsXN97Mrvz40\nIM6GunVDu/SptXdy28K04Uf7dG5JWwFxSfhSW0ivfIxApjUcpbUDN7Iu0Eyu\ncNPsI9O/6vcvKYkVF6vZCVhKSTCYsa45OSGgONlfiaJVGn91ijfQKDOmPArm\n+geYslGwFXKZMo7eV25zf0YpRYQAVOKgZWLAY/IIVe/K5JjQRQ0idZUD+oE2\nI8H12CCK0qU2DxAHLH0YMUAEMKxHb5SIKesgTvbzlcY7TeyczeuE28LMRALZ\nv/sSs6o+u8yict48OGL6i2RdukR7Ql1iHg0UInrp0p3OvSGPZ5uNkpdm8bK9\nuo3nwgRAbxVB78BQB+355q/DLCklGG7QWmorQJ1ktitDnvdV901qLu0o0iPO\nABXPgBjsRPTR8vQfWEOgQKBScyOa9VOJMOI25J4AG0NHsdy5XX1LLe0UePj0\nKHfQjpG1OoqoQSETsvefbCfl1oQqIJ9wijndFGDQ+d83v4LGT18Vi8Tfi6EW\nRYrhVfaLVHXEnStDYNh3AzfhTu9bESKLsP8MV9jCzDccH/PRE7eb3+/jYVxZ\niwSffAaUIDV5RR1+SyPKo8E/ONQ/NA10RjxzhEPQBAaKkkMjNfH/R6pwPF+/\n3iDQ\r\n=Hgfs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.1","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.7_1575309459765_0.9078824255798212","host":"s3://npm-registry-packages"}},"2.6.11":{"name":"core-js","version":"2.6.11","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.11","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"38831469f9922bded8ee21c9dc46985e0399308c","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.11.tgz","fileCount":1489,"integrity":"sha512-5wjnpaT/3dV+XB4borEsnAYQchn00XSgTAWKDkEqv+K8KevjbzmofK6hfJ9TZIlpj2N0xQpazy7PiRQiWHqzWg==","signatures":[{"sig":"MEUCIQC5F4bBAapxSWWcI9b5OLJtb64b0OvdhkZdPjsDc6c9GQIgXKESiL70LiPs1rv9TTapIZ6MntaODstuV0Sr0RwN0WM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2261591,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd7WT7CRA9TVsSAnZWagAAhkYP/30sVphDQQn8D9uA+zBU\n0Z+g5AxurpkK2m/tQLf23gbwJbdRNCnGkzgrSCy2/NGNUxERc3JpwDWXKd+e\nK42+SQkzEFiTH01M0OGejHKbZk2E7SLkNWiw4zg5/PypggzpyakVKekEfmo3\nFMaQA5bflvMSpH8voUkzqw0sMTjYbz5tNdTae/58Y5m936eKbotGp2/a0x7B\nEERqFDJcbso/cMAun6dLJT6ANCli3JPyS4OANh4FjLkPXYzZ8sBqAukqqUH2\nDkbnkPzvbhfDk99tKTs23jphCqEvhdkkApOVYsnYSdbEuvfwcLHFW99llBF/\nA8UlKwxnvTkKi5UkrmYkba9O4Cb2Qoo5x0kv/jUqKLXgEJ9SUF1NotkiRUNp\ngIRukaKUq9c7d5ZODJhwTGj+uOk2YnxxuBf89EgOSLSlQtzn2CxSqfuucfpI\nG5I4Cpft5hUoYGDvqJ9LhO9uMfOZEuZHgpHJMtUHi3L5DlvVXYKCNby7EBWO\nZFtyi3kaDltTq07l2gq1dHXKEzRdWPX7hWrDmh2KKBoYUe03mXULkDYq5KbS\ncnYYRuPjwIAUm2BWuawuG+ctKkO9ELUXPVNOYfkBs7na9ME+hjP+AYTZ0geO\ndwupQLTrqNqjXz9/4fYzpkvgt6se4hwVy9zP3CvHQqCXP9U5UHjHrXuS/MGG\nf2qW\r\n=CNIl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"4cfb0ec4b92e509172d94171426736ab471b25e9","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","postinstall":"node -e \"try{require('./postinstall')}catch(e){}\"","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.2","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.11_1575838970680_0.849511184379298","host":"s3://npm-registry-packages"}},"3.4.8":{"name":"core-js","version":"3.4.8","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.4.8","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e0fc0c61f2ef90cbc10c531dbffaa46dfb7152dd","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.4.8.tgz","fileCount":1682,"integrity":"sha512-b+BBmCZmVgho8KnBUOXpvlqEMguko+0P+kXCwD4vIprsXC6ht1qgPxtb1OK6XgSlrySF71wkwBQ0Hv695bk9gQ==","signatures":[{"sig":"MEUCIE2qWI8DrGjepiX5PsRxXiKGiQXXWvaVY4Wxyn5R8zUVAiEA01iqc4+XiKRQFw/vFp1WbBV0LOCO1oadwWu44jzr5ks=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":649052,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd7WeKCRA9TVsSAnZWagAAdRwQAINWa+NyloZedaZjj6eS\nkVBCFOi/Cr0S29AEl7SSBlx2QQUD9LbZsbeIh4xsZeCD9i/qfABvNKFp9kKY\nf+LFEOvzsaPDdWY6NT9UX62Tju1AWCzCZs5VOUprBP+8JBJBzZzfaFp3gXKy\nBIKIxvXe615Nsy8fwlisCmHAItR3+T+TUKvniN0vR35bEl6F4NEPEVDU5XO1\n3rd4pxU30ltDQSUhk/yPSO+rR3efoztt+GTIFYFSDbowrlBRH5ClR7pdZs+A\npwvdhmA8LXXFqIQQfNP4Ck0Gd4+ayHWKmhVn8lh87v/QzFCRZ4D2dw2JBHTR\nUrgzQBj4plcDPyNlpRwUXzG17eeLrXRwzeqkmhkcNfv+lY7gAyX6AhDtcbyq\ncPMekf0N8wDduBkEWSCDfmFDIfXCFL2s2urAlWjPpQi7zkAJLocEVQZZFD1y\nw1uUA3a28bLEymTdVwX9vFcf8KkBTKp8FquLCw2arj6JmVBsIFiyj/yWvKik\n2i7Ndcn+QHRXTXEiinKcfrXP9CDw5iLn1AOU8g+QAHHbgCIzEO28DGAtliEJ\nxOtnfNMVZAjVIxi38McswRP7uFcryMJmlrwS+txlELtK63OCAvPclu69blTJ\nk5LaOPkWHtOtcU59Iv+NclBMvREwxKv3a5/ENwNJmtjWe7G5/0aOlvzIjuVI\nOzpb\r\n=JocE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.2","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.4.8_1575839625374_0.5238631056439771","host":"s3://npm-registry-packages"}},"3.5.0":{"name":"core-js","version":"3.5.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.5.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"66df8e49be4bd775e6f952a9d083b756ad41c1ed","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.5.0.tgz","fileCount":1690,"integrity":"sha512-Ifh3kj78gzQ7NAoJXeTu+XwzDld0QRIwjBLRqAMhuLhP3d2Av5wmgE9ycfnvK6NAEjTkQ1sDPeoEZAWO3Hx1Uw==","signatures":[{"sig":"MEUCIESJCjBuvOCWlXzbJGX0vnkaHh2oZ+uc41GAFWsJkx0+AiEA9dPHzI2JbLQlD2hm2nKN/DUskb2TH4/1TkjLabcY0rA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":652195,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd8ZDMCRA9TVsSAnZWagAAnJUP/i1fsipGYrAuIn2hQZlJ\nmPY2Ui1Et75sV6qc4uvRQVGzdYT4zQktRaCvPBX+3N8NLdoc7ZfNxOJ/A0m+\n8NzG7Mew9Yc4lvmgaC1ndlD4iS9gIBE5uB944znIM78EmW79BsqtAfge3MuZ\nrCnI7hMQO6UT9KrlyJhH3P16SkaBVZckPlSv8SeT7lT8OY/agoYOWlZ+oa81\nzzELFcKjsVyvG1ovBTxLygX00XLNhtMwKPuVJB4AkLaqNXuvKBnDCYh0RtlH\nDy/j1VGWrPg5iPJOwnBzG6BJ5oawTBOlCr72y+RBRkqNSXUU8sxNCRJ+uacT\ncg1LHOnkr8CldWOdU9wSujl9WNIWdHi68Ns8skH1gkcdpLgWsdoDjhxLUdZU\nFfAQg2lYyILp7NOnsmLfxX794rxZLVC+68LsUrComsXpOweMxrenhPRGzJfC\nHdda3JiTk6gXpRkHVB3d2QrpzKusxvAU5fU3fxnNWeiDA5TYtWQPM9HUPxnm\nwMtenju7/PEyh90xosxN130BfFou/RnzN7hfQIW0fKORbVxGGCDmkUyQ54WH\nwdkTEOhwb0AzP7F7Qq+tqyu327f7qUPBoeGlQ403ZPJFXFxngs87VNM99Ovj\nFSQZ+5k7I/c/SGavFagPMrLK4fmbiAi8zixjxpymi3sXANB5ktQThB6asWaG\ne+Q7\r\n=fU/l\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.4","description":"Standard library","directories":{},"_nodeVersion":"13.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.5.0_1576112331496_0.3662159852786604","host":"s3://npm-registry-packages"}},"3.6.0":{"name":"core-js","version":"3.6.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.6.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2b854e451de1967d1e29896025cdc13a2518d9ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.6.0.tgz","fileCount":1699,"integrity":"sha512-AHPTNKzyB+YwgDWoSOCaid9PUSEF6781vsfiK8qUz62zRR448/XgK2NtCbpiUGizbep8Lrpt0Du19PpGGZvw3Q==","signatures":[{"sig":"MEYCIQDsn6/lKvW/odZJjBCw8tfInRPNK0v3XUPAitNLBOfJdwIhAJijAtrU7/88rnp4bvCzAhrTm2r8UIM9OiU3ybM4HWAP","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":658505,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd+rYVCRA9TVsSAnZWagAAF+YP/0/8yrqS5H0Qxl0gaAIR\n/qg+ehCBUMZo1cxFnPyn4b+dj9xNcbOvTAETDVhXYUzE8cmdKzmnO8FWoB5+\n2Tw28W0CWRthBc1TeJfuwlB4cI0oNAi9H3kI9B2WR2ZLJpUxS0Gr9zO52OC9\nNvC+IIaEELlvPreFw4Tfi873UJx5CvZYzAt76HZoRo+pUaVwSkbFxy3YK/lX\nKmzrnZxcbB5lfgCQwVLXTvB94sBa+ZB6q/RdDlpIdx/CaSH3Ej8Ch9w2EhLZ\nmvFa61W9V7XhKek9EfGGneR/oYR6OQCN2491JEbK+Gw21hyv6eL7RpoGOh61\n6q8HosciUea7CVuhqR+OA8jwKVwHJnHksPQshVomWIHqofD36iyvt776nFoy\nF8gvrgT8WmNqGDaVYD9co0cAnpxb13ullTvxfZddnSqSV1OKI+TwDzZUFU67\n7u51VXwKV1jPLASwsYUJ4i/MiYFynmNFBw6OW1tFKJLLrIPpYpf5GI+tCqui\nDgQ4+Fg1xu5wQ2rSsw94ZFlf+VDkRN7astjThaLgLaKE4OuYdb8yPLRbiCxg\nLsVJbWKAKUI0o38jj8Xyg149htuCwpwdR/NHcPcWBUeqfXiNfAxhJE3JWxs5\n1zqMo2mIuazKV12Xyz9lutAbIUue+FkhjNccRdutwyiiHs5iBfkY8lF/jWr0\nVw13\r\n=I2Wj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.4","description":"Standard library","directories":{},"_nodeVersion":"13.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.6.0_1576711700761_0.5014536146859261","host":"s3://npm-registry-packages"}},"3.6.1":{"name":"core-js","version":"3.6.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.6.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"39d5e2e346258cc01eb7d44345b1c3c014ca3f05","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.6.1.tgz","fileCount":1699,"integrity":"sha512-186WjSik2iTGfDjfdCZAxv2ormxtKgemjC3SI6PL31qOA0j5LhTDVjHChccoc7brwLvpvLPiMyRlcO88C4l1QQ==","signatures":[{"sig":"MEYCIQD1vyDPNfmoYSaxCqSlzVsjD0tq+DfNMzY0tKDEyBZR8AIhAP6DL+8+GTnKzwa6JAM89DN4LIvqQYDCdXlSi7RqGgwO","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":658600,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAvwgCRA9TVsSAnZWagAA0cwP/RIwDhnSUIhA9afMuT5B\nqOS3Cn/QSqP/5frh0SUMjUqjeETc5cLAW4b/coVt+BHyPhe+VTtq9ySeza3N\nlao3arYFZF5AmzwCVqFMxZw/8mK+1c8DgNYN7qm3JJwU0lTJWGQMf8EgaM4v\n5V9+5SBJ6GpOHB3OCEwMXJrz0jZyyTdD7njNn/FxKKa+P7KakIHkQPwAyPJl\n58bNP/mwWiM+woAyY+z1asFdUPlcYNCoqDlDI0BwGYScVQAPxx0gbXKtpfLy\nEBmDnPrjwBSRn/hTkEUawPPvJh+L48avP+NuYWF9dtz1UHByKSyCy3GKOJCX\nebMjbkMfA1OXAfHuCw2q7gubh8Vhf01+bRU7o35c275szUg83YNaxtik5S35\nZBnhTDUN/FKLY0OctxGpJLc1xpX8rBtjnCjDTkB5qZtQ/togpf62HgAtyfrz\nRm7VODYJU5PSedww6YH3QpZpCLFiNQu8cUbdTUrj6B41l+sgVzuZCKt0Hd15\nPE70OAqpAuaftQS2xQPDABPUGl1h4wtNCvB4v91DvCXiby43jik8pKwHLCyU\nKmXRq0sGsY41IZ+R5/BqXrBM84dQ+ZmQavU/hiwW8T5j9KLDfd+A0yvZDghw\n6Sfchek1xL+ungj9/8poG85cHxvtOAi0icP+uEXL4hxjrAlnif6Lnf346UTo\ngtvK\r\n=X/3U\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.4","description":"Standard library","directories":{},"_nodeVersion":"13.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.6.1_1577253920190_0.5846063966794597","host":"s3://npm-registry-packages"}},"3.6.2":{"name":"core-js","version":"3.6.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.6.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2799ea1a59050f0acf50dfe89b916d6503b16caa","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.6.2.tgz","fileCount":1701,"integrity":"sha512-hIE5dXkRzRvnZ5vhkRfQxUvDxQZmD9oueA08jDYRBKJHx+VIl/Pne/e0A4x9LObEEthC/TqiZybUoNM4tRgnKg==","signatures":[{"sig":"MEUCIQDiQV2LXZQ184I9GLF/BjlMOwAMROr4uheBCzVYNLeGtQIgKb0HoBUglxgagrzKfxkb75K7ZHZTjmbUNQaoq5VM2Fs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":662618,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeE2/iCRA9TVsSAnZWagAACbMP+QGl6lobyznLdffpsxGx\nxinPrZ4BNF7BMYkm5PmT6axvKddYZGMFIWXr7vnMfV/sMA4awXv8MH64xUWD\nW3iYedDjkPPSBjuIpvLXat/GptKnp/EBZZJttvpyMVpkPztPd8i5XKPib7ZD\nAw47yvN4ONmdxGrxU56pq7wTrIf4te6WRxBf/vIFxwrV4EqA3p5tewicvkdg\nqV9zTWx1SPS2/WP59gKnsMMcHqfgAllI9BBhrnh8EHveblhWexKaGgD+TUYN\nAc6vM4+v/azmjXf2mDOo9edWQ+PlYo7JmEWKgQPYsdHq7RFnUsY0EiN1FCor\n4MA6VXo1Zd/nw9YmpeY9YhrBjBp2QKk0HkKkrJ164Grvy4Y+vxUmdmuyxxO6\nJhMc1dgw1Z6bQI1gUvy7g8fDvBPW0uJDI7NDiTpnDi7P3r9w3cHjzBxhqbin\nsWdqBe63/KhDIHSHUAdyYShmh6kVlklxkm+iAi+oB/P/M7tvXQe2n0RzYg9P\nZ0D04UKw/774VRguigAOGUkAAqz6tbcZaZMAnTqjM63anI9BdLNek09XD7R+\nR6w2DampKBDGFLXfuLIK6b8MrM99yo4RPs9jWv9ZMgzwtBscz6VEFjCx+5o4\n4FeVvfyuC83EP4AvLgbC5fuusADOAWw28HjgTcdcQbqu5jZ5m41iJI+d6Ac1\nNV0v\r\n=6SDq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.4","description":"Standard library","directories":{},"_nodeVersion":"13.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.6.2_1578332130131_0.02552511188918971","host":"s3://npm-registry-packages"}},"3.6.3":{"name":"core-js","version":"3.6.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.6.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"cebda69dd069bf90066414d2b2425ffd1f3dcd79","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.6.3.tgz","fileCount":1701,"integrity":"sha512-DOO9b18YHR+Wk5kJ/c5YFbXuUETreD4TrvXb6edzqZE3aAEd0eJIAWghZ9HttMuiON8SVCnU3fqA4rPxRDD1HQ==","signatures":[{"sig":"MEQCID43ogwBHUP84enJapS6eJjXEHss8Ug5FqGjbLkwabK9AiA611Lki/yx9dh/zqNv9gRnLbPmgNGiSw/KQ3tYx1qF9w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":663400,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeGQdDCRA9TVsSAnZWagAAQF0QAJtVP6SaQc0x9KJcfF8f\n4iVmDPgoVT/Kx/Y4Ga4h1Ml555dusgpYuZvMuiexb1Lz9oEUfaBUjcuuavgj\nXaSNNdlybiaC/Ndy7Nxdq8JgrJz8Q48gebzzwJUSnYPAZQN83LBCowoAakxg\nnW7OliBMjeQesYHqPIVgYP+QqQYJ6uRUVL6s88FQ0Ek/gF2DLsRonbcLSaCU\nPBrhtkNj+9nkWKDUVh2hRsZMpgmDjtqrRU0Dy2tijB1fwVE1tvPLmOlGMVyD\n38UCPRDwVWz158Ews2qsB3FgwTjyFI43ljJIX2lZRm69n9xr/ROW4+W51MA1\nvQ4nO61IfdbujwVXHGULs571WGNQ+gCwfxRrwPPVUw3GpRYhhI0JCkbeLGh1\nBAKf1SpooupKju9JPaCzMz2+S6xs8GUYwv49gRpI4PH0ED8/pjPJqAGQ/i0Y\nFwpEB9jeiE1hYSxi0QoeGxUun66+VB5uH7gTcBnqS1kl9ZNt11+Fove+aioj\nhTZbc2mNNQxg/m+Td/jAVGJ3Hc6mPH5LJ64OA0IdqQysz1hggY1XsImFn9jd\nxIXdqVUaISd/Km+Lw7E0y3jc4XQkxjjC2vP0gcCC5tZJSEx9fTSaZmivaVFI\nupR2YiBtCBFXS26G+s3Nakl6IBEB77AmyuRwfGwRyyiKZwS5HTBshJ/RwChG\njQAa\r\n=0/pm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.4","description":"Standard library","directories":{},"_nodeVersion":"13.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.6.3_1578698562589_0.5483596607228163","host":"s3://npm-registry-packages"}},"3.6.4":{"name":"core-js","version":"3.6.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.6.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"440a83536b458114b9cb2ac1580ba377dc470647","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.6.4.tgz","fileCount":1701,"integrity":"sha512-4paDGScNgZP2IXXilaffL9X7968RuvwlkK3xWtZRVqgd8SYNiVKRJvkFd1aqqEuPfN7E68ZHEp9hDj6lHj4Hyw==","signatures":[{"sig":"MEYCIQDR+ABFiEyUXsdGm/Xkv8Rz8HvD4TTtMHMqBevluQnW4AIhAKqy6DHzf97p6BAwQsWnMtNrurZLnJb7dCPmI3SkHnRk","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":663601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHPjACRA9TVsSAnZWagAAFOwP/1FrK1xsow6dBFHLmQrm\nH6r7PupYkrriBSXklD7Bo97Vg1+JB8+1sBsh2NZVWNBmAMlVvo+UDTd3N5Sv\ngR5SduUvUbvS/A53jJBNWjTfCnaUn07SBDjNOoVvMCxY5jvzGVRFCCdl9wWk\nyt5UnrtwCJ9QMS5srJ7EUU+3Z1RcadvgHVpoQ3g45TfjxPRyzHvuh4ldQMfH\nL1k3twsS2LPWyJyQ/GSXzCLob00xmkRk8d2HXkuB9PQ+xJdtKWgkHmZ3TB1x\nQ4ifkLsHKP20tcx8pYzKQGLzdOUpcANJS/vpFQe9HTfoMCPF8tieAV+Cr3b7\nEaZp03TcOeXgn7BBv0I9TkOZu4ReXPelOGlUfmenztI7r/QmQrg8faCrS2iC\nYbOjMvksMQ58cL0lDi+BxgpRe5xd8C4VJu9hhNlXL99FWWfFjjH1wn5oItsQ\nLI1/M8WeCYc38LT/eWWongwzzg4ANbOX+SoScetOxlKih7BQbqau4xLMuG6B\nTULbZf5vMbymfRl6yZCK9h2+/cVQ5blgmKH7/qgBbQkvcLzkA0SnbLzM7XP3\ntdDqsFz6+lAx2b6g8WjON9MhUYdLU6wMauaoVlj25QQZfHa3m1tnLprcfrB2\naj8t+RZr55bcLiR7ZYt4CC3rxyv7eoO8kzrzBDTTmDh8q1OuLRek0zwB2j3H\n2BNu\r\n=RGQA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.13.6","description":"Standard library","directories":{},"_nodeVersion":"13.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.6.4_1578956991905_0.9159614870900872","host":"s3://npm-registry-packages"}},"3.6.5":{"name":"core-js","version":"3.6.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.6.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"7395dc273af37fb2e50e9bd3d9fe841285231d1a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.6.5.tgz","fileCount":1701,"integrity":"sha512-vZVEEwZoIsI+vPEuoF9Iqf5H7/M3eeQqWlQnYa8FSKKePuYTf5MWnxb5SDAzCa60b3JBRS5g9b+Dq7b1y/RCrA==","signatures":[{"sig":"MEUCIQDqTSxpAdabUjFd3jfkCrw9X5dhwVSrByorgl/RRVstowIgItvRf1+pXGDmK+iOV2QYLMg7ETUp7qCKSQPMr0L+DV8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":663758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJej09LCRA9TVsSAnZWagAA2jcP/2Nfp1eASuP90zEJ8CFl\njRk9NxoHcVcbSCx9MhCFnmRmvTuxAuoMjMSKCdw2myt874brUVMfi86AHvbQ\nSEFxzpgQ7KG4mhb7232V8gtzTtoqH4bz/fRV/XnCemkxA2nrdTN043EpcN/B\npeVogcXTZs7v12F2QX4IEWhcbrHi78HBT2JKH6x89YH49oJpZxHZW9xLeSIG\nA9rK6mOgHadQt4b3JQsjdvIMaFqEumvdLLU5aXV+Nq1i8A6DLB39YFAqbCbI\nUVReqIeW1BG0kc64lv0ewgRc2I0fGRnjJYv1lexE5sb6bwftIzpZ8W8lqGJ1\n5OzpEzpedS8oqQXy+g+IJ6+KT7jsC942Aza7Nx1r6Ouy95Jl1XvoVTKgNWo/\nsmt5RqmlonNCmZGb29ntdYnGP/GZsaVEil0t6bzn2UXJ4bVD7xV9PLEWVjAy\nUQ97mp24nO+SWbrhkxV3T3sBSFlWzftI3TaM4J7b1NtIAFoEsZDmVInDcuD/\nOp0S/9AIrhGVQt7MCC6B4YVco5DrU19wuX6989qD2drCx7NLUgEbG6Dp8GGy\nrXzMlkKWMhBGOHL0MqvUUA3eXDLugSM4MdhMcS5BMwrH0md756JJ3SE3NCSj\nErL4xsaQcBa+7ioFcr7ppE0chOfXbH7G+teS6+VE6ouua/Cr2Or5qWeBhazY\nTErE\r\n=qlEN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.9.0","description":"Standard library","directories":{},"_nodeVersion":"10.16.3","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.6.5_1586450250990_0.46053099175033196","host":"s3://npm-registry-packages"}},"3.7.0":{"name":"core-js","version":"3.7.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.7.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b0a761a02488577afbf97179e4681bf49568520f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.7.0.tgz","fileCount":1723,"integrity":"sha512-NwS7fI5M5B85EwpWuIwJN4i/fbisQUwLwiSNUWeXlkAZ0sbBjLEvLvFLf1uzAUV66PcEPt4xCGCmOZSxVf3xzA==","signatures":[{"sig":"MEUCIQDSH+qm1u3o7TdL13Q729t255lDi6MwNk2iEUh4ggTYegIgd0wGYNsZBPaMuLAKPl/Ne8XIuJVeP/cL6d1QJSEmjAU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":670898,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfpWeWCRA9TVsSAnZWagAAWAoP/38vYmEwhD8BbH5eMruR\nBHnbTLqJ1uXntLvKoFCmJdYBEhybKud0JhsTi11if4Q4z2xqzbw697OqLXP5\nycZL4aQUkHWOBgmY83UGc07aO0nTRRfmEe9Zkknwgv4yDdRJB3CTZOiXJRqT\nAVKlSk1tjyziqk81lnmjYs4xdlVmhjyZZkDCqR2RvKKq0exo4ZtbaF6EzHuu\nznv+QMr5hdFKoTDAMpDU0QAGiVvKsDF/13Ha1LZ+7J82/Pwz4TR44YGJ4vNg\nS3oFLJQYSmnvKwJOuf9L2D8d5fQg17A/krHQXodMAovOa7DTkOQrUWg59fb8\nZlzrJ15jOgpP9v3jrq8bX5NIlNf0hBHFc5uh+yHvUYiMI3bXfda58SROZODE\n2Swv8/KDyYo32qrzsjvSwvcH+6pR+OIThqQIAn1YTf2EpCzxYbEatovYP6nc\ns5t3b5l59pTv7isdjX61lNdnpRQkWChIqz8px9AYkwUoULlA5TBJqfvjym9+\nAXBbrECs364aaAK//x8ga2m4cqelywdARyyR9qHoDCktrinEGE4z/OGaayVz\n9BVuqf9uElNuG8M0uIJG9SIlTTEUxCG9LziivQL+JeWqmSG/qtlzIRkccDW1\n+1FW3N/BzEHfFs+RF7Nj99YjUZKM7OW4076OYBVBEvW2O6YPKL4HlD+Ou89J\nz2rg\r\n=QZZw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.14.8","description":"Standard library","directories":{},"_nodeVersion":"15.0.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.7.0_1604675477634_0.06370894181466835","host":"s3://npm-registry-packages"}},"2.6.12":{"name":"core-js","version":"2.6.12","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Symbol","TypedArray","setImmediate","Dict","polyfill","shim"],"license":"MIT","_id":"core-js@2.6.12","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d9333dfa7b065e347cc5682219d6f690859cc2ec","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-2.6.12.tgz","fileCount":1489,"integrity":"sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==","signatures":[{"sig":"MEUCIHeGVvIQqgAjKoz8bYFp8qHMaD+DzZdEeVrWxMWmpc+zAiEA0dQhgdE/rBgkFNWVyxC2c0zkOFetS4IvOeJwau18b2E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":2262779,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfvp2vCRA9TVsSAnZWagAAjmsP/iWroPVBc8GJGZmMH6c6\nprU0HRrk3liopyyVjRVmrYVI47R6fRywB+vvK1qift1NUa0exZASufOY+Jdl\nkmYI4+40hZpHNMzjPfkfGEtDkMhC2MRix8nZHOCnbfltBEiES5Y+VER/lPEq\nl30ZP31kIN6/h9Pku32enJ9jWV2kf28FTvq1vxgMYBfLo5Bu+dL45oRbXKMu\nsSdhxKP4ux3Mhlw7TFCBtEgyNdOk191+owfZNEcaNci5piL6NMwte0XTv/oL\nMFJWHiPTQU2q5tJomwFkRWXXtIEYkYeJWBrGqKbO8gr79+1R8K0GHsCt6/fv\niYaLY6/psjvRRBqtcJ4LxheG2LxWl61HHcM84Mo83sfDXCs1c/CLTgRp2F+k\n8JQTA8PWcIsc0Kpw5nVybr2FAnXaEtacyVO9bY4Xjf8l1ODycvli3sHl4mOJ\n3Xf1yRnMCGXWwd9xEsFJTf3Xg/6s1H9+zGA7EfoaXkuZcx5FngjgUVjYkvgx\nmW9orRxwi/NItc2L+v5sPjonpq2llp53jg4HMTlikvSxHuius8plPRAZriIK\nNcEZmoTiC+QNqmAVrS3Ict+d42U8k5aDE3LsoMPXEumSnS0OfB8nQay1wMkD\nNeIXPND6v+kh1rfvl//SQeZ89ytgHBFmFYbB2d1XANYxABKcEk/ljNlEoGpw\nJJxs\r\n=BGEX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"ffb783b746849c2b14258e6bef6106f1dcab2a66","scripts":{"lint":"eslint ./","test":"npm run grunt clean copy && npm run lint && npm run grunt livescript client karma:default && npm run grunt library karma:library && npm run promises-tests && npm run observables-tests && lsc tests/commonjs","grunt":"grunt","postinstall":"node -e \"try{require('./postinstall')}catch(e){}\"","promises-tests":"promises-aplus-tests tests/promises-aplus/adapter","observables-tests":"node tests/observables/adapter && node tests/observables/adapter-library"},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.14.8","description":"Standard library","directories":{},"_nodeVersion":"15.2.0","_hasShrinkwrap":false,"devDependencies":{"temp":"^0.8.3","grunt":"^1.0.2","karma":"^2.0.0","qunit":"2.6.x","eslint":"4.19.x","webpack":"^3.11.0","grunt-cli":"^1.2.0","LiveScript":"1.3.x","grunt-karma":"^2.0.0","karma-qunit":"^2.1.0","grunt-livescript":"0.6.x","karma-ie-launcher":"^1.0.0","grunt-contrib-copy":"^1.0.0","phantomjs-prebuilt":"2.1.x","es-observable-tests":"0.2.x","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","eslint-plugin-import":"2.12.x","grunt-contrib-uglify":"3.3.x","promises-aplus-tests":"^2.1.2","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-phantomjs-launcher":"1.0.x"},"_npmOperationalInternal":{"tmp":"tmp/core-js_2.6.12_1606327726943_0.9898538618434194","host":"s3://npm-registry-packages"}},"3.8.0":{"name":"core-js","version":"3.8.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.8.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0fc2d4941cadf80538b030648bb64d230b4da0ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.8.0.tgz","fileCount":1752,"integrity":"sha512-W2VYNB0nwQQE7tKS7HzXd7r2y/y2SVJl4ga6oH/dnaLFzM0o2lB2P3zCkWj5Wc/zyMYjtgd5Hmhk0ObkQFZOIA==","signatures":[{"sig":"MEUCIQCYn/aNpVpwdEw6u7m5VMAsHnLbysGMMtG/cNpZyn6ZjAIgY0UMfdETFow0fQQJ7GN5BenWnRbFLTNaFIzvXDyRg90=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":684594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfvqBDCRA9TVsSAnZWagAAvqUP/2/7g/OirgHxPkSPmXqC\n6zvIBkHcNmLo8MYdiT9I2sCZz6yh5oSlvJeHFueIp6/2eYIS9taSfUjhUVEQ\nP30DpmWe+l3SyJvOJuvcsLocXs3Lo+rJHtw3g8dOtE/M9dnMUHA8fsUwxBPS\njNU80Qv8KXl3MxPh7eVuDMNGvKt9zLL+hocemDEioIU9RqbF0myyqiNrm6wq\neswoi6svfhgn1xC3roxTdXDDljMM6sV4w+0FQMQPWmEtN/Vm+IhqT4pnKTEG\nWa6nndZj02ZAb0bS/VpSo9Ly3qIDZyB1/Kbx1vWyIPVVQJh96ppXb9ORMkUV\nanLO0RS3G8LAXwqRE//QyhhMiDcO0zS8aeBljOWUbLENLQxNDl99dRLQ6xrz\nnlW3p4KPDtMdK5+3EjaMpbUjGwUeAmCKRCFxpHAFkY5fDTR8iZ+ScgrKi6pQ\nOymYMXYNwfNEgCPi+eRslOCckmfnGjCtkBLYHShvYib9t6IGOpZilyygSQmX\nMMQWoHXJNSIcRqLyeFM0qGEKoBkECUQJRPsnrb20SRFePck43c01KFrMSnyB\n5j3Vu9xlYU0Fbo7DXNkXG1wbnbzzHGbMt+CIC68HFSFyCMf4GWzw+wsIXicD\nJzzRPuDNTEo3J8NzJRnpUkTvbqoK+Gu0vdhbaqDuG/AJeZrMUPD05FZi/aIr\nKAHW\r\n=7Zfk\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.14.8","description":"Standard library","directories":{},"_nodeVersion":"15.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.8.0_1606328387062_0.282089851097034","host":"s3://npm-registry-packages"}},"3.8.1":{"name":"core-js","version":"3.8.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.8.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f51523668ac8a294d1285c3b9db44025fda66d47","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.8.1.tgz","fileCount":1752,"integrity":"sha512-9Id2xHY1W7m8hCl8NkhQn5CufmF/WuR30BTRewvCXc1aZd3kMECwNZ69ndLbekKfakw9Rf2Xyc+QR6E7Gg+obg==","signatures":[{"sig":"MEUCIQCdeU0wv91Xmhu6qyvjYgT/Mvt+lWQRlXUFwBCfgrnTQwIgaQmGxVKm/9ZsUkKJ03759eZHsBvSvSKEivPKca2ZKYY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":684887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfzDIVCRA9TVsSAnZWagAAqS4P/1yI4vSoKyx6PHpMYvXP\nx96KHi28s1LpgbsF7IA3omo5UQj1T5Uc0/bDYZFIFBuCD+RoT8zIDNiAAWlB\nFGlMaXZ+b9QYJAvoorT1KQGsG48IDnu7+WSJTa8WdC3VIoMpWJUo06Um1GJ6\nD7C03TYNkC6kKdqvsDPIOYL2MB/b3IBqJbTUe5pNW13L+M1miYs9TeE7Qlra\nmi8z2WphivqPdpFA0d450CcIkXY3vWyiz568qU6fic72wX3tMm6rR/cK8POi\nkNlCEcOitpHRHMbDRwvoHYGcnL/lqxoDBc+2XQqGp5y4uxgCv1yIiWXzxgrK\nhLpBAX5XCvEsC16PnDrKzmI5+RPKgqbcnfSjAXwG3x8IJs/3O/eOpvVLDOLE\nQARW4CFAMeJpO6MspQsO9z1dHnILsAuPJzgqmJzTr3oSiiptlZ5E4z50K1Ed\nkh9LExP6mlzGcs8l1CI/Xdz3UaqNRZAB9ET80D9rWRAxXKg2RuV2uc9UVXMQ\nJrKBJN8hjbkcHgGnh4/J4QQ0TGcFjvx+wbGNi+cTly53SpCAns9nCayRRBLF\nbs0EKc1f5BVblpM3pBUIDELt+VtO0Y7jlf/O4qQiVgtEHQ5MTeLkwxT9dgpd\nV9IX2zyV0EwVtWBae2l1J9iHOSfQKWGDjdMfe4/hg1+jO+McBuezl6LT/5ZE\nRfx0\r\n=BRS1\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.14.8","description":"Standard library","directories":{},"_nodeVersion":"15.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.8.1_1607217685037_0.31276573525832285","host":"s3://npm-registry-packages"}},"3.8.2":{"name":"core-js","version":"3.8.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.8.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0a1fd6709246da9ca8eff5bb0cbd15fba9ac7044","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.8.2.tgz","fileCount":1754,"integrity":"sha512-FfApuSRgrR6G5s58casCBd9M2k+4ikuu4wbW6pJyYU7bd9zvFc9qf7vr5xmrZOhT9nn+8uwlH1oRR9jTnFoA3A==","signatures":[{"sig":"MEUCIQCO+N33CmQlPZZkFTLb8W89INMtj647oD1+ofZAJVmBmQIgbBLl/u2hgG4zjKYHfCDZ0KLNzbWg95RxiGFdC6QudIk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":684764,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf8dOjCRA9TVsSAnZWagAAB+wP/3P/v6Y3+w3D24vcc975\ndmAf2ydfuqsM6qu6dQuWMMnKsSulGSKGZjUnsVSxTgYVvpAW6CA9ju/i7Tts\nq/LmHgKDwtbT1fL4cadI8rqBINfoZ42JfSKPQKKYNj/XgsSFNRF+wtHqB2+k\nowm3smT+x9e/bRXYta4SpbnGtJYxKrbqFLYt77X5eOz7VDlLVCv5W2axjQkV\nWsy2yiRHg53xZcu2i+zfUZfwLOtNP2UQeD2YiaiMcKV9FkCYgV2bYz0GN3eC\n9JA53Kt+W5MPkqHmuEK7G6buhpPKRkwlqmCxQ/msd4fzBEPWlIhotHuAeI5D\n6TLDDMac/BowkerZvz+dU+H/usubggETQqszYZ11dwilnIO+WYlTzUPOKBft\nzrhSFlytaOj6NTnf7WY9DKXh4zooxWUtbonvoS/t+KpZd01ecZ9W5ixXXtwm\nIfAWPYCjXDqvuL9U0WD9WsHVXh3x/gwLR4X8jPGIIKSwVqwhWjbG3dnUICmd\neSrwp+CVABb9yAqT77XlzQzq32/ZrcQjPlXlyqWy6N/XyxMeee5YACbnpfpc\na0oB5gYHMROKTX5lqJawZpgT7rnKkkftV8otvGvy7f/J1QKidNijIt+im/el\n4wv0O95DyS3VoKw+7pn9hx27uYPanAFtggwNi7co7g1Qzlq2GNZslw9H1Gbr\nUpYU\r\n=sDsZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"6.14.8","description":"Standard library","directories":{},"_nodeVersion":"15.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.8.2_1609683874520_0.7379279056874635","host":"s3://npm-registry-packages"}},"3.8.3":{"name":"core-js","version":"3.8.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.8.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"c21906e1f14f3689f93abcc6e26883550dd92dd0","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.8.3.tgz","fileCount":1754,"integrity":"sha512-KPYXeVZYemC2TkNEkX/01I+7yd+nX3KddKwZ1Ww7SKWdI2wQprSgLmrTddT8nw92AjEklTsPBoSdQBhbI1bQ6Q==","signatures":[{"sig":"MEUCIQCxV8qvgLf4a5+awfM5ZpFQQx+ya8vt+9ixXkrYHfqaWgIgfzKy0k5qUf5gZI25ZsRDMAu3ntA3cIrUMrmIrSzWJ30=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":685080,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgBoVhCRA9TVsSAnZWagAAg20P/2WCvRObqq905dGbZQLY\nlRYD5Z1+m/C3o08j6uCCFpsach9fnXuaeJGhmFZ//WUymLB6DdfmNSTnG7db\nlS7EpV3zApJGhmRK9m3VWbKg2s6gnirKZsBUPgpI8Fm2t0sXr5+TmaFQhWXT\ntrrI971yhqLTZqlNlgH6NFehv8l8zgkmE1Q+cQR6gDXo08eB7P62hopELLEz\nMj09FAqfZbf0blCK4CbCrWnQtpDdbTr0rrSv5Z9emIuBubyBIn6kvdAirK5O\n28T2+T+QjPmXn5LOs0/1nWbcNZ3jWp6S1MR77fpcGr8mth7XOdeKZdt4rrwZ\niZ4fNwhZzyc8mkJMKDNXg6vc/5InwZoCUf8ldlxOTBTsgJocEpc0yvgKEgY0\n2Ld8TILh2FPiHuq91/n7yYP4eQxoB+JW6Y30AFyLQ+yPx1m4qJm2lSjZuiLo\n+7wdkKbjj83GWgzHjeINJfzFxYMXOGJvmrdExcA+SyB1RVxz6l6Wacz+XbIq\nJuQ0bZDQb6QvpCjf6gb94QBOZTDn17LivkaOUdvmfrtVxcRtwBSKVbRQPary\nb/TMqah9oBtG7X1pYw/fdgjPh5C3APqiSRZtcmzMpid+wpAymjlNZMqhOK/S\nW7wpLXH3kGJmY1AuuRDvr5C7afrndTeGMjuBSK99VMJHXJOaq6UtbBUEB6iA\nKk69\r\n=P2sO\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"a88734f1d7d8c1b5bb797e1b8ece2ec1961111c6","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v15.2.0+x64 (win32)","description":"Standard library","directories":{},"_nodeVersion":"15.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.8.3_1611040096971_0.5059561640845804","host":"s3://npm-registry-packages"}},"3.9.0":{"name":"core-js","version":"3.9.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.9.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"790b1bb11553a2272b36e2625c7179db345492f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.9.0.tgz","fileCount":1771,"integrity":"sha512-PyFBJaLq93FlyYdsndE5VaueA9K5cNB7CGzeCj191YYLhkQM0gdZR2SKihM70oF0wdqKSKClv/tEBOpoRmdOVQ==","signatures":[{"sig":"MEUCIQD6UKJQB1pdql7ZtGtXr5pEQ9tXFGMixqrJOSMemr5a3gIgIsUWPR73ASvIgsriy0VwiGBBSRQwZFl/+qjLPcUvolU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":689042,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgLqHQCRA9TVsSAnZWagAANAIQAJPKhcMIH4qnRqYaq7kq\n8GeF8I5bKJAyntNgWNFGIPkayo0wmOucjd0o64Znin59D1K0ncyPt0kJKFTJ\nomjDDs7XMBAEIJ6YrphEz9XGo7l7ZZdVnsKZfBawSfOzGS7t2s4RSLBbU9Ba\nc+7ga1ItPWnx6Ris4c5W69BQ/UkXBcRCqMOPDG2moCo+H4h4//tGiwaxouCH\nGZMueslFKwtvqbdGZ4Vh3F4vBIGXUfTEnNCJnISwNlxhmkZFojHDsH5lZpUC\nvG62NDIeQGatZ3l7hXmeWM9FoeBD09aY8IdBvZmdIrvvDKfINB614l3Wiq82\ncaibk9f39Wg8lI5VX925NdzGdgo8GkZsQN3M2HQ9LG5/x7QI3JmMyxt6idHc\nEnEb7fBu3rUlqR4PfhvUQgN3M9TBwYyqK0gn0SRTUr1RyMN/Kv6NY4t+Zcom\nuU9xz1bAobzYZQxMV3N6CwDcECrp24WjFhp2uex1Ubp239i8B9d7gHuCe4tG\nkn+EgSp0+qAsk5QqkCEOVoGJcu8UIMxmWKkf29DoO8vkASCOgSTGIHHG+fij\n4opw5D0rzehbk86GVf+Z7zfPqI2ddsfBEVnUQZc1pJ3g+oU15IFemHhtf5ex\nlh7I0hsAmD1+slhWpjoST4dp4RSAnURMdigk0AYcitqp2NYBov1OaRVcZoLF\nzZFB\r\n=qgYr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"37970c09678489b5663bd051342c2055f6982f37","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/3.22.1/node@v15.8.0+x64 (win32)","description":"Standard library","directories":{},"_nodeVersion":"15.8.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.9.0_1613668815417_0.7102913518539458","host":"s3://npm-registry-packages"}},"3.9.1":{"name":"core-js","version":"3.9.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.9.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"cec8de593db8eb2a85ffb0dbdeb312cb6e5460ae","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.9.1.tgz","fileCount":1771,"integrity":"sha512-gSjRvzkxQc1zjM/5paAmL4idJBFzuJoo+jDjF1tStYFMV2ERfD02HhahhCGXUyHxQRG4yFKVSdO6g62eoRMcDg==","signatures":[{"sig":"MEQCIG8HLcmdKd04Z8hkXdbMaI1FgfSq/yMqIBJ/kc16MqQzAiBYpELUulBU9P1dyIIiRgdM01rAVwNT65LWAV1mN8l/XA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":689543,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgO+IGCRA9TVsSAnZWagAAfNUP/0aqE6cRKDYiBWrG3ERK\niZWp+DgpPcYFRMuNZV8GFBvT28K/9lZm+KTYic2xO8SNERJV5zqIavrptPY9\nAqFVYMp+CYh6rgf8AyJz0Q65MMwTzli3jpm8pWqcqsyamCGKFLx8FYbuPFsh\nXaqgvAMsKE7d3qBrVTN+76Rom2dakFS7CWW3N42lBhRQ0jjH9r/bfVDthAiH\nf8VR8F699B0UYg2H1uIxPlDXOJeNthgbPK8bZOxPIueycnpqKEETWjWook7C\npTROGRbRa/PldnxnviGjNmV6MaGqHj1cOjSfttZSvVsSqlUS2VpCOTE18txC\n61a41N75dHQECfIykwUZVPJhm50j448pFZOO5wGcCPp/jmeb3wy055QFpMkV\nEWfEvcd5hDjwuBjDH9uHhhK7zljwf0W9e2ACTjS9WXzdxS/hIdil6Z9Vw4lN\nAUKx/kIsLLDZoX9SIeGNtW+MA8mapsJ8+LER7t0pNDftzBh/1Dl0vA1yfMrx\nRv6B05UxrhC9A0iJoctTC0ex4ppULAFTXBxxsKqaxVzLS07Hgio5uuoN4BnU\nJY6mOHORvdsvf8820Gix8aCdbNbMCV5lS18Stw5qsKHXfersem6sbK8ErX+V\nUU/vOouIKMtLwzhklNAHl9nfbuguB1ykT34k0pNpJ8IrevWHgrYQ5XMn/ha8\nnsvM\r\n=Wt5w\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"50073b34ee7373eaa8c9cbbcc7313c5236a2f83e","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/3.22.1/node@v15.8.0+x64 (win32)","description":"Standard library","directories":{},"_nodeVersion":"15.8.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.9.1_1614537221241_0.41057819165006837","host":"s3://npm-registry-packages"}},"3.10.0":{"name":"core-js","version":"3.10.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.10.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9a020547c8b6879f929306949e31496bbe2ae9b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.10.0.tgz","fileCount":1771,"integrity":"sha512-MQx/7TLgmmDVamSyfE+O+5BHvG1aUGj/gHhLn1wVtm2B5u1eVIPvh7vkfjwWKNCjrTJB8+He99IntSQ1qP+vYQ==","signatures":[{"sig":"MEUCIQCp1OtMSG2UjlD0RYqENX91jEXPaE+YPnlpKVbegrrNswIgCx1vT30ppG5Na996bdaomt+faVuR64KFTTCuIb/6qco=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":718740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgZC4ZCRA9TVsSAnZWagAAPPgP/Rj5Br1KkY3jJfAIFqiz\n77HJp2M3eWPNdU8FmuiKeCtCK8Ob37w5T3lqPdMGYwqo357ecLsPetge9ojl\n4p1MLAeEKjP7ktzEPcon6VNNCMvjgbltypyRYPTRboccX8mJG9FfwT9CNvPt\nX4Kgnn8xGQL2cN8mcF7sjiyChpIyKihICJ3r6jR7U06bZ89wI1ouor1URi9m\nJT+gDCWRElRPnf7dTA6P1sbbZSz1+B+U5bJk92p/gNNGVosRkZ7Ud/NCnWU0\n5zdbrHN9oGO+NZnQLiGMEOgv5mSkyCYaehJXXofI3PcXl/ISJnYQ/49u2Ng9\niIuqcTl1QbBX+Mlw1e8UE0F9VYO2DfK498uS8+bRV+vsPRDSmChmdpesAx27\nTPWo0vYRuERbPC0Od977YFh9RnL/AvDrK+A9jtzABz8UkQ/nU6dINX5FVPG4\n9CyQbuS99KcesAhd5dlpYeMdbQ7NgeZgDCx0KiNPx2mULil2HmfA1/L2lNoP\n35ezpc6X7icULjYOIk7fVNP6+u2UmLc9MbhZE5KD9JOAU/ue5WCLRZdnxuS4\ntgFMf7bq+wszpCPMmYyhP1IpJqgqnPyOdZG4FoDIWqSWGv9L6segIr5oPAeQ\nASQLF8kIlV+xKZpQaFGXqj72TpeVuLwP5zsk3bmsQmV5/DUlPga5PkqLDWHm\ngTQx\r\n=HqC9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"bb9b7f58458914e54cb4dbc130374a4c0487fca5","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v15.12.0+x64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"15.12.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.10.0_1617178136820_0.3380665105645677","host":"s3://npm-registry-packages"}},"3.10.1":{"name":"core-js","version":"3.10.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.10.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e683963978b6806dcc6c0a4a8bd4ab0bdaf3f21a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.10.1.tgz","fileCount":1771,"integrity":"sha512-pwCxEXnj27XG47mu7SXAwhLP3L5CrlvCB91ANUkIz40P27kUcvNfSdvyZJ9CLHiVoKSp+TTChMQMSKQEH/IQxA==","signatures":[{"sig":"MEUCIQCePMujlWKPM6hMfAtw5bt9xLou5VWYZ+4HYCJ41mJnJAIgCWe0TEVVGdbKSg7Xi1z5PmAEw3ukJhJpNroWZH5Td3o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":718386,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgbgJKCRA9TVsSAnZWagAAbuIP/AoPRcU6EqVZTsdIXx5I\nlPjsOCu24APAXWPxY5DgIhLGdJg+bL+rsgzENDla7UbHbLc0tDLcuBsTw1CA\nu0u7U38Q178rXnN+5ReC6Op210nG8KthpSV1YNfkYrw/PdfDO5Aei4dyFJOQ\ne5QUJa6RMK8K6WixJ09ftHXge9ymtZFcAuyS31cPW3t1RbgJeDSOrDLb+gkU\nLJbvSgarTrb9oeL75rAZ4AE5OMUvRd5kkQV0MqohyGcl9X+bnDEYt4jhi37s\nCdVwd5SXgnf5IjYSfbHAg9VNdlBt/d+HWsxO8q6mGN29V/FDtAEMTo3lIyFg\nMouIFRhE3RyrdNLWdUpjgL/q9z0HD2wDAqJO8vubcdknysH9PSAguCgn8lXO\n/4xNpSgEiLWzJqGI/mF3CCqV+KFh8IUGDLVBfy+z0fsudkCM+cM2bp7TS2Db\n6nNxqYA5jt0thMQgzur9OG3OtZwtxp3q/MMZC6IuGk4tRmvoZwRrmQFIsnZ5\nsX0ZimGcAU3k2OwF2zPxPYpY/TPct3WW/YE1ZZj0wc7npati9jZkesu4PQT2\nJIr6vtFMKwfRJihAg/iLM3FLZSlm05UBjHozK3aQdW5Z5MDFKZZgafBY8LOV\nf+p1RBmSm1nuI+d5iBOZJoDlxJ7egbSnnbtsZ8aR9IsQn/NLfzW67kxH2Viy\nmnYN\r\n=j8WD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"dfa44ca9098d22d057f3a516940a0f5e35617830","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v15.12.0+x64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"15.12.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.10.1_1617822281734_0.2931609306086158","host":"s3://npm-registry-packages"}},"3.10.2":{"name":"core-js","version":"3.10.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.10.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"17cb038ce084522a717d873b63f2b3ee532e2cd5","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.10.2.tgz","fileCount":1771,"integrity":"sha512-W+2oVYeNghuBr3yTzZFQ5rfmjZtYB/Ubg87R5YOmlGrIb+Uw9f7qjUbhsj+/EkXhcV7eOD3jiM4+sgraX3FZUw==","signatures":[{"sig":"MEUCIQC3/kPe1G8CGNJcf0s1oFQuAISKL8g6PsnFAuqal64IzQIgc1/63NcDat6EAoW2FPlliOcnRNg7BHZKlyog100HUCk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":718627,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgfbfpCRA9TVsSAnZWagAA8EMQAKDBntnTYO30i1cO2AuV\n8jkugq7S85E2N8xr8sSqAQeQRvP7wStKhqgkeXxSV+uKlGRmvAb0p+A7zNoY\nqKjm4EUaDcpPfwRZsnjj0q2b3hfjfZDONrjKC69Vh7n3dojFN28A6jm0QUO+\ng0CU1Jof9NOHyhJiAPaou21VjdYc1W469MaphRYDA+B5+0aKG275wW9K4Gx2\nRyfhXcXeuNX/87EBRMoYZ79lb+kmA7Iq+h9mruVkrE0EPSWFSiz1uXv3tI8D\nyYr6UY4yGIySl1ro2kxZF2sda3vvfcxmjKVkTcFT1MQCUVsUjakbAISblitG\nMZ5d576pK/GVzuV5RD9/2PGTj87STtDCkUskTDmt5J6V5395eQe+96r02dLs\nQavNOEsELE4u1AU+XrjYZtKXmxR99ZP3WCBrbB2coKeFCECbvNryOsz4zY//\nNSyTPGzG9PxZytKB0UNN1YoAciMhjmfiWOIofNFxiCwVsJxkLrgxEj+YKDsO\nebRkP6IX7z1wZPp0tnsgqvys88uHaz3YXPkhdOCpThmi6FymOEY5Qwl/WcWg\nedIUNkqv9MJbEilWctcmmM33hp/DfoNC78XIi2SdtEGpI7YXGlokQJVvOwKU\n4+QZMap5Y+FZHKGRYmrRkmSazBlHzFowrPKzV+oqwDDMtP9uGkMR2x6fi7dD\nQ5GE\r\n=8jPb\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"871050326809b302c67e4fb4e0e4007a2db7b8e8","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v15.12.0+x64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"15.12.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.10.2_1618851816903_0.7871965786002448","host":"s3://npm-registry-packages"}},"3.11.0":{"name":"core-js","version":"3.11.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.11.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"05dac6aa70c0a4ad842261f8957b961d36eb8926","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.11.0.tgz","fileCount":1774,"integrity":"sha512-bd79DPpx+1Ilh9+30aT5O1sgpQd4Ttg8oqkqi51ZzhedMM1omD2e6IOF48Z/DzDCZ2svp49tN/3vneTK6ZBkXw==","signatures":[{"sig":"MEQCIDliY3RheJe8ublcw4r/e7vJPnuOhXH1HaFaZSjlcJjSAiByWeviJ2v3/DPKGd07qDDKLVqilC8MI9rdmiS4znqwIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":719399,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJggVLhCRA9TVsSAnZWagAAv1YP/2+3hXBAXGERI59N6bDn\nBv6Vbhadq+yJRNKiKrKcSK11djdDoOdKTjUnM+dmOpa0moaxgiyogpm8Wvvq\nNODyJRLqpUsJMCCbWfDbcQr/UoZI3+dcjsdGapTQBgNYkU6xK0MIAOqTX7h4\npKPLDG52lcDpZ5IEKFITKu4WIbQXKdcXqyCc1TZcMMrqCyX3VCUkFhZX70b5\nvQ5fsIB5bpsnJSDQeU/XARM0yEYWkhz58tGvfHud0JMc0CBdJgU1KAhmzSIj\nBqbc7tqRZGBPu0iVWro8jul7cBdMfvuFw2YfVYLQICufbp2gtLg4xCxPCKop\n98buJLHK+9XbISKddp8baSTi1RlsgzTJ2iby/B8Jvkp+SDBDS3/u7no2uDCG\n7CigNSoQUcMGT+oyfNf0QvRYHTBinvXyYNbJjw4cZjr/5fwIandMplTCeXvF\nIkY7e7jO8pK38Hq0kB1hl+5QWR7EUeTSNAyEbMphjjIfjIqN+6BhuMJw0vIi\nJkp5cIOIpjTPKgIQZlN7Mviy+3dapldjCb41Q73RddXZHPQfpTTe1CVXoSM4\nAYxFX28eVVAf7m0WOJQxNmWxaHbFSjbW/UmBg9DOpzdDJaENnuv7zzKidga+\nog55DpGc0xA3UHhRS6dJMFPpBN0/ASZJv1GSShO07BErcMG2x1ivAqlH7gKU\n08Jr\r\n=57Ey\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"e94a771bfe1c88f1c37c4fa05505e82e84739493","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.11.0_1619088097098_0.33610841122586343","host":"s3://npm-registry-packages"}},"3.11.1":{"name":"core-js","version":"3.11.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.11.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f920392bf8ed63a0ec8e4e729857bfa3d121c525","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.11.1.tgz","fileCount":1774,"integrity":"sha512-k93Isqg7e4txZWMGNYwevZL9MiogLk8pd1PtwrmFmi8IBq4GXqUaVW/a33Llt6amSI36uSjd0GWwc9pTT9ALlQ==","signatures":[{"sig":"MEQCIHjP0PTzAAFNl4LJkfPkXlVR7yb87Kuk/TiAjpf028WzAiATbd0CrdgVW8pF98ziHHC+a0QBABeKI/aXGULxT4fusA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":719653,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgiW4kCRA9TVsSAnZWagAA1XMP/30ufhQEUaTtgQs+Mwiq\naeB3CqUUYrF4nAcMFbVShWroUX/qLMKM1zQTxee2u9uCxZ5HQ8CmwtlBpSTh\n6QJsAfFtVSo9iIuMfwFrOcL4B1ZP1BY0rz7p9bjp0R+u+15K6i7rl/5Gqu5N\n6xs+mRjg+TsKgCTCdgukMj2QrW7h8iVjkU/0XBDfc/WsBQWqfLnZ5EBY8J6Q\ntCIG6NLhI4VyQYTaeVq4I7hw/0e5xr7n3Ks0RcWpXidGJZinOex/9Vj8MkSy\nSyKE3VbF9w4Rzndngl94CGpEEgo0CDcg2PjMravWvTP7QSBSAg8O0ynd0jir\nEHaQKhnxtaRBOUEEjvh5/t25Ee8TrYTcBNonWH2DVOkItteLpascx4wXXtgH\nnYzdGNL+isfyhCvLeaP2HqOj+NE3JlyCS0OllJf+ZmzXnUbuuP/yLHsd6m46\nbPQt6ugOiYd9T/qy61nEa9OYBqNsCZFYjAr17IvwWalcxYPXdpqldImZ+Vkj\n0BizUxFGOSlPeN7xUhXumiK4us0TGDXYrSTKCYhkWtgfHfJdwwfuBCFO/zgP\nJ0bdRMx60p5nr8uGG3nTzFsAkyh1Wqom4vKSQqvD2AqqqVbuBAigEa1AdqtA\nzaqGNyYVk1ztVdHWezOvzmQH2JfaxmhnovxISeL+xY/sfVLo4ZAGpeLNjdAQ\nsnDW\r\n=NKan\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"1e9c4fbb22c7954d50a4db09d40d5c7648bead88","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.11.1_1619619363465_0.15585503952222024","host":"s3://npm-registry-packages"}},"3.11.2":{"name":"core-js","version":"3.11.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.11.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"af087a43373fc6e72942917c4a4c3de43ed574d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.11.2.tgz","fileCount":1775,"integrity":"sha512-3tfrrO1JpJSYGKnd9LKTBPqgUES/UYiCzMKeqwR1+jF16q4kD1BY2NvqkfuzXwQ6+CIWm55V9cjD7PQd+hijdw==","signatures":[{"sig":"MEUCIC7A79Qt2jvBCCbGPtuJJ6kLutA5flIuAIG5NOoRxN7yAiEA1Z2efVPG7lYcNwQMi0PkpJBA3rqmLFnS/BrV54hTLzk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":719948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgj9RvCRA9TVsSAnZWagAAxXEQAIj07YrIRm/i6rS2rDu3\n4PDhcKKEXIfHOH5Ja4c4zyiOSuVnv+w1j8WVzNmAWQ4z9Nh79es9Tz6Nheon\n2APGVOnZInL1veWlQ9JKtNeqZoVYmL3umQA5cFdtdinFjWoLoBHBZHn3NrBi\n1uaSZ/kNRCaHptcSqtmCGTfXPQYmnJzvVcvRQCanmTKoPMWSP3/PBYb+NvoU\nhH9GLl7OIiavV8qkJd9TMmJLbMXIJOoNQ7R058P/+JRbvJWVWrH+36NkP9ga\nWny7pve9Ccsecc0b76r/PZQ94s3Ym7yqgrx4XuYrVY2zmzJloZKB9Dj9VWtL\niGW2swnWsym/zgPp3Ap7NWKoN0UafHo66tiDy7iyb0juX0Wuo/RxzqweT7kc\nA1qcUIIzxdHmO5rH/RP7/bJTuc7TUwjWNxXu0f9VnOaQWPigl+gy/oW+IGFn\nXHnR7mDfXJWplNiZ8urVFASofSR3dcq2FXOBzhBppaCRWYv04Tc+NkMOm0iw\nVzKA5IRgou2BmpRgbKrLQXj9F4l44+0QT93PqueybX9GxVsVGNDqNSbU723v\n0kO2HtxhVDGdMJxLcWDrLrKVGvrorSsSyOITZb7ZsweEz4QECaD+jxGchcc8\nP35Vr2DDkmnMpVEbbAocdLX/j0VcgD6sQ6R4rKBBfRYfOFjXR7PbRUdrFVAJ\nLMN3\r\n=K7Hw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"040f7836ad467dae5a0b849b02442a3ed2607b18","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.11.2_1620038766886_0.4029457051285539","host":"s3://npm-registry-packages"}},"3.11.3":{"name":"core-js","version":"3.11.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.11.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2835b1f4d10f6d0400bf820cfe6fe64ad067dd3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.11.3.tgz","fileCount":1775,"integrity":"sha512-DFEW9BllWw781Op5KdYGtXfj3s9Cmykzt16bY6elaVuqXHCUwF/5pv0H3IJ7/I3BGjK7OeU+GrjD1ChCkBJPuA==","signatures":[{"sig":"MEQCIGs6oVJweR/ShW+STM5N0L6EwVe3uKmuDrqL27M7ufxdAiAO0XA0cXKk0Yz3bHrUXlp0CJAx6QOhgQUTthCH5/cbxw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":720417,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgkqIbCRA9TVsSAnZWagAAaMYP/RKvGcSooEYnv7gYaGbj\nEbjzuqjKy+KlOdB+WfNUIX7PlAJTg8A+1Fc8hqjbiHPtM6vOA2SZXY2KQcuX\nwsuRZMX/d5wemmj/opOUMgpEk7DqB+4X8gF93HERVl0RuljmDOWqs2Mqnq9J\no7GwgaRGLJsLpNezOH3EN9TR6W4/Gc1zZ9A7FSNAsk9lcXy2E9HH17zXgyTc\nw7HeHqyure0Kh4G7Einu3ySuD5/0PgnF5qjCeWww2To15m1J+2By4uBZRYgl\nPQpMojpV9j8kt8UeeV4hnYV3+0bg9jDoXLReQDII5h2Tkz9GhnRK211mnTVv\n9SPT/4+D6bm3B241xv0kN+ZgFqEBsg9vjHMCoEJtvBm7Ufs9ZYf6OLvJ+QnV\n/7G3UU5/efgdeN9byTGLUYkP3OXaoqW9WxaToHRfLuRPDr8b73CgkxdDEOYF\nwbpWjyfv6ABKyrTFsYuTs8VD0wtoOI/oY9jHsoTaDavMhwrkgsYMXq8OoqKY\ncQ93ybnUgIdDB1xO8YsQb8socC8wmhtgNXqOP2v8k53fNUbs7jRRdWUEBB7x\n2uZjW0NOEoqefpRzqDZnv9UXbHkJ9rRHdMkO2QNV08BGNpdCWtB9oaOLI3xo\n+mOkMHK/xVmiUwQnrWDQuP/tcLb5h+rjqlP4VRBUnz6XRMS8Yy7IhJLRMQSt\ng4k7\r\n=Fptj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"bfe345ad3db933bdf1d5fd934c57959f83d30a91","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.11.3_1620222490997_0.8130715190199758","host":"s3://npm-registry-packages"}},"3.12.0":{"name":"core-js","version":"3.12.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.12.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"62bac86f7d7f087d40dba3e90a211c2c3c8559ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.12.0.tgz","fileCount":1780,"integrity":"sha512-SaMnchL//WwU2Ot1hhkPflE8gzo7uq1FGvUJ8GKmi3TOU7rGTHIU+eir1WGf6qOtTyxdfdcp10yPdGZ59sQ3hw==","signatures":[{"sig":"MEQCICNc+rxNJtTUejGL3eoIP9V6tiz0ULLwE55r70pCfUFSAiBp9fXVWGhbbdqNbXlg0loSTKq3LmFJ9Q3feJETlqsm4Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":721706,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgk7GgCRA9TVsSAnZWagAAHAsP+QE3+uYrN9iI7IkbyRwj\nhr72/GDciRgoDVSKWvVjnFIlRfdhk1O1Yj0KPRAjfnd72KGnCrru2gJJdSb5\n+fgILCZJbt0hV1TVlPy5liALdzjnVvvPR5f4Z+37Fp4Q+XDDY63wT0FVJ7mP\nUtIO95Efntr1z7kEgH2bq7ngISnmpjTPfq2NalHUEcvsCS4J6zQHiUzAk6vM\nOoct2RqHEbz1fa59384KMwdZ4KDArqOW/tghz3lmJ/q8LWnTgP9e3uPag14P\nk7QaRjG0Fmb8oRdzSM9W17rNFwvJYgbFLqLgJ0BBTr5piJ9ZS+Zspgl54G58\n3kpcBf3T2mMiVr7GAWsjdYFef413bTZDMirusSNz0JhNmoANikz+ERR5Pm3+\n8APXjLTZ+UqlMfLJEauRz/XbVUBdO1HqJwWiPAdxgk4XTxMffwof5Cq9ONM6\nlTG6XqOooA6W5c7hN69pLRSkMmSCKZK1YJUenCvVN1mFc1X2TUTeNcnWt9QT\nuYWJQqH17Gebwpd0qM9cAjNWx/ai5mgg2dSSHaAlVoYUCJ6XD44s42ubOMJ+\nGJNFJmINxxvIfmixlndezvhuHNs+Td1Ye7vw8F89QTHX5Tr46A3ZBwqGhIpg\nhoge2OQLg8a2xx3DYY4tV680hR7/O+idfS1LHgJVSZdq5H2B1e47hIDRREMH\nzxSy\r\n=3jlm\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"1aadb7b20d500abb53b6d721b75974571dd54b26","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.12.0_1620292000078_0.36468447428150697","host":"s3://npm-registry-packages"}},"3.12.1":{"name":"core-js","version":"3.12.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.12.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6b5af4ff55616c08a44d386f1f510917ff204112","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.12.1.tgz","fileCount":1780,"integrity":"sha512-Ne9DKPHTObRuB09Dru5AjwKjY4cJHVGu+y5f7coGn1E9Grkc3p2iBwE9AI/nJzsE29mQF7oq+mhYYRqOMFN1Bw==","signatures":[{"sig":"MEYCIQDu+UU0eqxrQgxDtTydfke7sayq7uXaYh55XJzUdiWiIAIhAOqFBdedkHTKjb8jOEtoMtznk0Pojrcg3TZHZ3MmmGdR","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":721916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJglvzRCRA9TVsSAnZWagAAlIYQAJyCSD2ovznY0LO4FeZP\nvIi4mh6lUG0WkIDeJErUVKjDYFi49LqLz7gVUuiZprdcyzzxb6imu/M67ifv\ncLw5KDuEhRGUCJk4L1SlC9fHMPmLWSdmYYCb93SIvBuPxHj5uQszmhqv/9Uv\n5IHa2phizLHAR4+0waLg5NJoki7G+7pPyH9SfN7BAnXYZnbH6z4tlMvAh60t\nHk/wnxTcCeiKdurrPvzkaO0gmoCt/t1+SlzOlD/NA0FOmbrO3kaLcWsHA/kO\nmOfsj/Y7+EaWQFCUExKowYO0AJbEUevE0FLCFiiKiZRNf4iCxPRgdifUlb1m\ny10xNDXxlEjn+XDHNQVuDk5CPQrUV/lzYnxH83po7HbaxFgknESMhb2e7i/c\nKrRh/lD/pGm1mKbV+KjgjjO9R/mqX5Z+w3ewK6pbJLUi7O+kwxRTuSqbtRqZ\npIuMRE41DlKhcFixD5FYRk1Q08fiBPp3mrBlhEyKUdmfuwg5hy/M0I50zO8s\nYMx4RZL9CkJ2DAxTN7XrPewTymEgC+qbKHc5UeGUWsn0e76TxHtWiDAIZojj\njiHL1UTrV2cMfH7I38QJPwc2FMB1QyuVFlrbvVPu27v3HVAgHfSOsxKN3U1V\nDMFYya0oPjvbezY6MhECQJk/8rQcPZPCbnon9+SJAAVysQeB/qi+d39owJwp\nDJNE\r\n=mQxw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"8752e6940ac87e35a05c7a0df53cdc781bb73c8d","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.12.1_1620507856889_0.8782385869153702","host":"s3://npm-registry-packages"}},"3.13.0":{"name":"core-js","version":"3.13.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.13.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"58ca436bf01d6903aee3d364089868d0d89fe58d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.13.0.tgz","fileCount":1780,"integrity":"sha512-iWDbiyha1M5vFwPFmQnvRv+tJzGbFAm6XimJUT0NgHYW3xZEs1SkCAcasWSVFxpI2Xb/V1DDJckq3v90+bQnog==","signatures":[{"sig":"MEQCIFiZdcD9uvoH9fF6enbFmZ9N4o9DXvgsL/5bVaAWysFPAiA/sOsh2WDKFU/veJU89i6uDOB/zwSdv/iwPyOd/hJlDQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":721916,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgrUvhCRA9TVsSAnZWagAAcoAQAJKlRinVgYVw1QzRxRKn\nn+UW644kzoZewn1UGha59QwDyCbh4desHVB52cAGc8zrGji+MVhom2QGpqrP\np6h24BjMehwVIjcK3GLyFSKaJuHNqDuUn/UNUDBHleLZxGWLAu3mMqBjqAkI\nyKV5Nd8213OS+bE3TNsH4T3GcQWYkFVhkTPx4mqusdtoMF8utWOXk+4HQO6i\nsEJeIsPz/DbGA5mw2WRGDbv4Or0yBqRo3F2WM0EjE1eujeYf8tbqy/kDisuB\nJlPh2oK5aiO79arwcWuR3Vhx2z85zaox3vnMRqPPfc2bajwId9KYGjhBuxhi\ntE2Jua0cGaNXQ+Kr010ZQr0OhYC7M0ADuDdi1dJYJ0q16E8qrQrf7+KGVYN+\nbl71goztBlvzOY8QvfGhF2kn55rLJi4hsF639Pbq879YN5hNVTQnJnoXqP1o\nKnTOjQ1PogWrP6fPVqEEAUNkj89Mddwr5msWYbR64jqth2AbDI5WmguJ1Bzb\nlJvq7EFeKXcrnXrH3ZMItZN4eGjhpTwiZIiQcXnl2uQWsnsSRFLA/MzoDmgk\nzGjI5b52gpBt7tk063zMccqWfo1WQT9dIe384Je4tuKuK130AHOp5hNx2s78\nkk2YFEZp01HIuNdKNrXuT+OBQSnsleLoXRN6a/WVkUY9G25GMpqjcjoRoGAx\nGFxR\r\n=QSnj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"f4307bc98ea7e1ca10b1c6e27847f9faad4a76d3","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.13.0_1621969888583_0.1922718650839761","host":"s3://npm-registry-packages"}},"3.13.1":{"name":"core-js","version":"3.13.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.13.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"30303fabd53638892062d8b4e802cac7599e9fb7","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.13.1.tgz","fileCount":1780,"integrity":"sha512-JqveUc4igkqwStL2RTRn/EPFGBOfEZHxJl/8ej1mXJR75V3go2mFF4bmUYkEIT1rveHKnkUlcJX/c+f1TyIovQ==","signatures":[{"sig":"MEYCIQDC4W6Lth1xAQ4NL7S/jxAb88qAvMnTra9lqRXm1ypG8wIhAJU2eWkPXcobBayselyxxmw76fdlzN8TD8LB4VIfnen/","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":723931,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgsgLCCRA9TVsSAnZWagAAVNQP/R0xAC3BIQNyDf1sKTTe\nSM+UEEJjJoFNJ6pDoDLeplup9uBILF0QTdUVzJmrYhXU1AhZC6NZB+Cfdmt0\n15FBRUAcYopB1RrDGRzd7UGsiGmXFqYqkizO3qefZo58z3X1UODlDHdCKh1j\neEdBJ+mLSLincQHWYnXcyqgYp39Zqlfs3OQX84kgvrdG9EPpm1cyAi0VA8Kn\n38ZxFIH/n0TgtE+KRdwpw+NUL09rgK9eMcEHxSpBadD64YAqNc4DlVnu/t/P\nFrj0E9/toTps7IEtUR6v64mwyjfWx5Dss8XCTzOklic6Qb+L7tTgLLiykSH3\nL0SvSaSdZpJ16L931CIDtUx53AOCX/O7CtKic4VRafzOujBDOgVr0fS6PlW3\nYbIlEtaNFY3aagHMI0QN0gFYf0zO0PKvCoB0HfwdKXeD1h37by46nf/h3gZK\nAEg9Bn/Z0x1LJpF3BsFbM4E6WbKxA2WMXDhwY7glSGqFGaCcatJo/MImtJib\naX0G/N5ToWdazXfubr3Sl1tCl0CGwg39NQhp+scKTiAAIug7TLQnHVlv4yHN\naQNDOOY4p0t1qxTOzKNU7PIMpsuat2fYIM5SER8mgsYTkqnrmYVvpVrBkJ5M\nRwNDvCSz2RR/LcpJlD9huYMxGQQ2KYa3bvKHLw3wBNvgTiXiqjWAoXDXerYt\nI0uF\r\n=9/D/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"a05c21cbf99ccb39b75746f3f65cbb91ef80d697","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.13.1_1622278849967_0.7125082268075928","host":"s3://npm-registry-packages"}},"3.14.0":{"name":"core-js","version":"3.14.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.14.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"62322b98c71cc2018b027971a69419e2425c2a6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.14.0.tgz","fileCount":1784,"integrity":"sha512-3s+ed8er9ahK+zJpp9ZtuVcDoFzHNiZsPbNAAE4KXgrRHbjSqqNN6xGSXq6bq7TZIbKj4NLrLb6bJ5i+vSVjHA==","signatures":[{"sig":"MEUCIEd9fu0ZwdfErnyM+V9Y0WFKnys6HYgz41XJhtmpnjJQAiEAibsgzWVqPuOu8znTiKcZkKu25MYLGrYf++kRn37/DTw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":729790,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJguyysCRA9TVsSAnZWagAAQfoP/j59TkuD2RW/ra3L4noX\nJiAaEGYjfqWUBvj6o/BGPBFrRDY1AqRy34frHaaTYFuYRjfRvmWr3O3s4ycR\npGvZU02OCy0eBG29vSZw35O1PY0tFs3srrk4hXsnBMnUMMoGOYa1fm3e0kob\nep7oiyNxhQ/k0vIhiH0nW4v8pEXvJY1oHhQ32N6aNioYW3MB3MDW+qRY3UIV\nw5IDOe2q6izqBJv0HNIe98txfh6G44xOsqBCTa9SVIX/iIVhb0xvIBcr9Q4Q\nqVrImKr0U1M+zruYg2tEK2CrdgiK5oigNjQLloQiu2yMh+lEjWH0lH/aoEwa\nT/hI+b/fesBZz7/a85Sv7JjoV2jXbbUGQ4CCj7EVWCTlWvvSOHZMsjFchXRi\nA+WiLzr69Cs3OyEVhpN2YiwXA1tENtsIEIUQK8p8Bt73zKiOY9HVzxKftq1a\nIDkh2k3Klq46wxB4iLvXntpYcnmeeH9SGfn1FEq0uYqFgPYUzLV8QW4knrSF\n+UtIrVI4ADQxvwq74+kmAAy+otenBVtG91sWyLgevSJdMPme9+I7AGywXZMz\nHjNMISGSyPW7kc71/OAm2/SGY4q8QCt4Pm+SO64GPr1m+lCEVgFSF66kt4kc\nSexSVDJ4PAGEjr8dgcH9yh+bszC4CPsiKAnI1m9EueEpp+DDq99whxuiPLcp\nyQTi\r\n=3aUs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"e386f3de7760ee2910d07efb9d35029aa5dda93b","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.14.0_1622879404231_0.6526622849297647","host":"s3://npm-registry-packages"}},"3.15.0":{"name":"core-js","version":"3.15.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.15.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"db9554ebce0b6fd90dc9b1f2465c841d2d055044","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.15.0.tgz","fileCount":1817,"integrity":"sha512-GUbtPllXMYRzIgHNZ4dTYTcUemls2cni83Q4Q/TrFONHfhcg9oEGOtaGHfb0cpzec60P96UKPvMkjX1jET8rUw==","signatures":[{"sig":"MEUCIEwgxwoiyA6ed61BVkTkxBvejjN0LFrMg9MeG3HVIPBcAiEA9BY9PdLEhANGpCwtHfcaKvK/ZHfXMONeeO02+fvM1M8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":741650,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgz3veCRA9TVsSAnZWagAActMP/R15K4orlfsjpsd56Zc1\n/xdk+77NA/5VtM4jYUo5UqFa1KQBapw9/x4XxNZp0xIYnNOXm9934JsauIPe\nvriJ1cEWIZM2FHhlH3lUln72QVy7H6o0JQBj06SsySq32bfw+jOShKQRXC2u\nUCtJEs0VaT4BS41k0wdkn79p/hjzZEgj10s7AuFYdCnvZKLXX3FxSZ4YPk65\npExk1a9SqW8SPLpCe2jxcTvJLMjM6fTr7SkVIwBglJXkQG5W1Twv+cLrml39\nCuiBJTdtK3hjpV5nkDraDi3Gz5aO561GV0C3QDSlTNwMEtkME9bAAu0Vvd2l\nrJZzCFNxhSPwsmuBFqonKieOR3rmC0anPEcB/klYlj91wRobIBHMU/RLbS0O\ndT7opirmaTUe6Eh4vXNUG3PPhqAQlwf2X2qH9TPseynQE8y6W10pFt7lEYKm\n99Y7jcnmAx85HIbfaNW5meC9QuS29SHkN4kXzx5Uxp9AWNGB+ADbzy34IN97\nIvJiYX2yd5sKnlvhwjpoySOtI+/eBBhGnbZxtaKLUrQGurKeiQRj0JItw8wI\nV42qhuXzNgl5i5rAMyF4HxYT0CqKcqe4LCFAr+AX+tgoxYwI3qgl8t+IDwF2\nUfyz3jCjF0izepWMjqHVNE3p1+//5Bw94cW6sTd5f6n2pV9g+zK3QSsyVxcu\nvG/W\r\n=hQFp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"4f7f304e7472127efc4749323c56819312fb327f","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.15.0_1624210397661_0.6006623887037139","host":"s3://npm-registry-packages"}},"3.15.1":{"name":"core-js","version":"3.15.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.15.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6c08ab88abdf56545045ccf5fd81f47f407e7f1a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.15.1.tgz","fileCount":1817,"integrity":"sha512-h8VbZYnc9pDzueiS2610IULDkpFFPunHwIpl8yRwFahAEEdSpHlTy3h3z3rKq5h11CaUdBEeRViu9AYvbxiMeg==","signatures":[{"sig":"MEYCIQCcV/wKdMqmPGgobrjMxWoCEWUTrc2ddPseoU8vw7LWYwIhAJGOyaYoT9VT9DHNi69lrK3BMJXJn+wH+qqmf8xiSJd4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":741555,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg0iywCRA9TVsSAnZWagAA7EYP/1FRFDYYADweFx+2nuSt\nOOiGTPVsXfoLDEuRM+yJu6yew/WEZM9sMhlraCy5sR38xQGJI89OAMTZE95c\n4XPs8ZJnrbBw0vLi/E5+4F5FAd/A4hpWA/33Jc0bbgnwIs2HVgkucANxOc+8\nR0DEB0KcEoY/TA5jotsFHmMORElhI8I3KSYNeyOwPWzzdarRahIbxeA1YOz/\nvrM5EauC/mqxmqDIzJGr6UlKEjPSjH9D/BAU/sqL96dh3uN7FUvXMh4tRXdT\nOPXEI2IZS/xV1oZCFt28uyk2Kz9r7lz+X83B8MjE+1BsoBKC5GC1rIMa0bZB\n5Be8mslTQLG0v6hLe9ZK6esm+dQsuUGCvgYr0vTGXQF49ennTciPb3NYCo87\nrlb1vd2rOV7P2v65z/a6fbsJOfbcmPgznu2igxb6WdfQBRl8t3cFLF4Xn6Wt\nH6iGyFMOUK7ao743Mh4Qoj638CgEuI3mxBMLFEzhYDxIYjA0XveWdPIFTr53\nQ8kw5LB9Ls2L/iT/qTp35v0Q5c5lWOL05K/WA8yWfQ4PdshK027ZuEVhXp6H\n1iHRJ4S+HeHdTDSKtadisUvX0k3wuF9zFDucbP8TlJ9e5FiXSbTMrDBeqhA8\n5yoQ4eaXMe9f7PAkeN+CCVrGdShwEgLgv9sXqY8DyuI12VYNyHRJYpwzxK38\nOO5O\r\n=gJNg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"d7409d106383f252ab25215a287d9b8160785918","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.15.1_1624386735699_0.30940816873739907","host":"s3://npm-registry-packages"}},"3.15.2":{"name":"core-js","version":"3.15.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.15.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"740660d2ff55ef34ce664d7e2455119c5bdd3d61","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.15.2.tgz","fileCount":1817,"integrity":"sha512-tKs41J7NJVuaya8DxIOCnl8QuPHx5/ZVbFo1oKgVl1qHFBBrDctzQGtuLjPpRdNTWmKPH6oEvgN/MUID+l485Q==","signatures":[{"sig":"MEQCIDtxrz9Om0fy8qsq97LerFbOY+nWPS0185XwmqZnj07IAiAZkD+mFcHqTHmhhRrV753sJV37zcymmPIOHkUldjMOOQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":741678,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg2wNoCRA9TVsSAnZWagAA5MMP/201I/wwu1fcfOPk8hY1\n+a3YHLbKQGwz4zQBkkCwC70+V25OsyFkffYve9l33ZOlfLpaCSdFG4UY4ZQg\nim5A/BlAFrbvi5pC3ONcPA3ic9eso3Nk9GyaziApXaSFdbHvKPb72sW9Dagu\n//RNDg/XrIMrwJE5xiBbl7nEdZQTSbY9GvvY6vljkGYVJsbtKEOy/kjSqcuq\nwUoKqcmtPkYz8sWDlgzstdNZAUut21MhOx+i30oBPLDmY5/l16I4Nq263X0N\nCvbIwwfnGRILqCjAk7BM7i42RGvZ/knzEaAZ5o+Q4MBwsl5zi9UE6Q1/7OL5\ntyRBgE7IiQIzAONf8m+8rwiaPs39UnK7u6yeFgqBCFthzL2P5DAMWTx9QIEH\nLFMXWowBFQxP36uPO4i0n1PjyqjFFZw71a8YaeEFUQhstpUJaAKXCaWtGCQo\np5rJmhjv641E5IrGfPTPkyqCGvBV9KLG7A8dbSPSNavPrcn53TLqadrtmECU\nVmm1YIeVpc2Wrrk6XC6vEvQ0IYYr1YYqqTeJyq2P6UY191M55ke3WmoO4b7D\n9VqrPHkvbyYOFoCqvgPOY7aYp6XdhvgPpYXJGyo52w7j3OkwxwYjwETi6MW9\nO8SYJ3cLZH2CnRpX/LtILKTT+F5UuDN6NhIohxTG+wHK0+a7+3Y9PQd/0uz5\nmEMZ\r\n=RY73\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"ea6ee013f5960f859d90e4136e91b035560ba72e","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.15.2_1624965992133_0.6637942514072284","host":"s3://npm-registry-packages"}},"3.16.0":{"name":"core-js","version":"3.16.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.16.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1d46fb33720bc1fa7f90d20431f36a5540858986","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.16.0.tgz","fileCount":1837,"integrity":"sha512-5+5VxRFmSf97nM8Jr2wzOwLqRo6zphH2aX+7KsAUONObyzakDNq2G/bgbhinxB4PoV9L3aXQYhiDKyIKWd2c8g==","signatures":[{"sig":"MEUCIQCnS9QN4I6ZOBkduWPjBLeW5wb77uzL/oO5dnNjlgcrDQIgK/qlc1yj+AHoP9pT2E+9QPQ+wh0/DaVDvWq+KYT+eUI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":757958,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhA3TUCRA9TVsSAnZWagAAOVIP/12UC/CSzS06DkNAoQ9N\nSXGkWzMvo4/vB5xMlhuv27YeS5nsJTcdoo/eD2Khf79hLmFk9GIj0pvHRWxE\nlJ+eu+Jfu68K54nqy3cg2SUtyB4tk0HLE3yaqKXODe+qupqkn4HJbzLpi3H9\nIY6A9Is5ERiAgBXfjNlBY1p6kA5lbXLgmuH26hRdtinfGPuvnCK4MG6zY5Md\n1GbFg8ROYZgUQW/EH32mj/vtdpGrsSvvoCy6tTxmqEEjNHyxMfJFM+6XwfKd\nfvuz48ZEidZmWAPCSkKVH7GA2M2USM/E1AUiKY3pb30jwzWxLVWasLZyfIiS\nBVXmyoi09QVpW8JFUpt0gCr3yXTKPQrsmMRVjSpEJdUt6KlGJ9hhKz+qcquK\n45UzQGae8/cx8CiSiTKCW3xXVcP1Axpr/oI+B+AHKmwBurUCo0sYr2AbylH9\n5kpYOH68ReMeHnWqtCkZp58p/NZFQ5m95x68xvy9S+F1boaOJVkvL47Kfi9i\nV0xaPGZcDfoQsXAQkRk5F/N08CoMdorxoHhKLXPjUR6JZCcAXkMRiXSDkdeE\nV5PRzV/EwRYotsLL2tctUXcPMSzT1gpuAURQfm1yZoNw+gNfLk3Z/00wxbQt\nSjIiHcEv6t1io0Yoa9s8fx+9bykxGG+P2Ho5+6y4XnFeg4wx6uPfczUZHrU7\noRry\r\n=RI4i\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"89686ea7429ad46a05040269be44395e3760837d","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.16.0_1627616467940_0.28248074456484873","host":"s3://npm-registry-packages"}},"3.16.1":{"name":"core-js","version":"3.16.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.16.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f4485ce5c9f3c6a7cb18fa80488e08d362097249","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.16.1.tgz","fileCount":1846,"integrity":"sha512-AAkP8i35EbefU+JddyWi12AWE9f2N/qr/pwnDtWz4nyUIBGMJPX99ANFFRSw6FefM374lDujdtLDyhN2A/btHw==","signatures":[{"sig":"MEUCIQC8jQR5t5lR7gkXSF2i42AztD6ahJtD2FINrQzreH/W/QIgH3n4KMTRZW80bGCWd1zRotHNKz2zz7ojLEg5RaabSsQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":761274,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhEBW2CRA9TVsSAnZWagAAKxkP/RV8NDpMk9K9GW4fT97/\n4rhIlWsZ4e2rTSc3GPzjADwCx2RJGj+lHQfQPDKVqmIXq0BX3uolD6IcHE5t\nVDmcSSUSOX7JFiOtFkRN/87JlMSR62LBcCLkg3NCoERKsZawkwNy924qLbOE\nKeMETSY1c5tA19KsLCMS0/uMKcuRWxGnnICClRKsNkq67u4Un9FEeqap+lLq\na1mG1vsywGMEwBhLC3OFh3v+W/bKtkyxzCuuLQToazTYJ3n/8fN+BJtVA2o+\nArQAjXNhXp4WXBh8NookIQB7lXzKjtrbyuLXuIA+pame0Std8G8ddZsglwLH\niYrpg5W1wazujADBMAUtHgId0aNLo0OOxaem7lolH8B3xWmSmPqf2m2/r2vI\nXJHZ+r4aVk/c+SBTH2oSmtt2IG+VQST+EGU/K006ibHvQLZeBVJ8HcmUVuZD\n+P3IE5K5xwcD6w9V6NsC3BLKJ/bc2PwABxudljIKL1FCYpVes7Pg0iE6Sk9k\nav9nnQ2P+PhQXKdXnhmcid27+FWqgqZXFocY+z09SVjAuuXFtwjaMFZGvGBg\nKn2CrKQpP4V0lMp60zOMyZks+EtW+RC0niUPO/ZOcQlnNCeCOdbv1rwLJyrZ\nqJgy9LzGzrjBERM2rOOWlXYfkQ/bROOBWPqdk8eLEVfVFChICjslElZyHwSV\nBkQW\r\n=X6T8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"d4ecfcefcb07bda80fad210142efdfdce5f66acd","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.16.1_1628444086442_0.453738872829222","host":"s3://npm-registry-packages"}},"3.16.2":{"name":"core-js","version":"3.16.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.16.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3f485822889c7fc48ef463e35be5cc2a4a01a1f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.16.2.tgz","fileCount":1846,"integrity":"sha512-P0KPukO6OjMpjBtHSceAZEWlDD1M2Cpzpg6dBbrjFqFhBHe/BwhxaP820xKOjRn/lZRQirrCusIpLS/n2sgXLQ==","signatures":[{"sig":"MEUCIQD57wDMeS0uYiFLJm660KdswxqGImUdPktO/4Mc8xbA/wIgPUrDpx8PsOJoIBa0bl3JUg5pZ5KKu6i+iSrWF2D6pDU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":761565,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhG7YnCRA9TVsSAnZWagAAGckP/RFquGI5hPcnPzLz6j+k\nUNctBOhwbgONadqe5jdkvNOHppwI7mXHKClZIp3L5JEtUEgRWcl2FT9FmulV\nn9m2oACEXPpTB46N2ROiguhVBtz8vXprqFVJvbL3S3es8tM6Nve6ycUnoo1v\nAL6F+n2OWDq6L7UmS79fLqvh8jX3Ywh/9IovHUJYBxjHJNafV6N6aMHT7XvI\nQgJMpBWX5BBRc6tN5xjKcQA63nb3uyvUktvO3wmPpwhmDb1HMghIJo4jUH5Y\n3gR8LLkcVVLiYQ4qvS+lN9GeQiifn3mKlvE118WqPpWB7WviOq3ZqmA9cPXL\niR7+iEL+FEkl9y5KWmKzRjq71XXTivUZU0aL8BFo5o9ksexOjCaMhkVcFlSl\nkZRNnEAixei5OzW4tASjn3vXxP3E7gzmbFLw3GxLzem0/d2rxIBN16E1HDRs\nm6EtpjqPZCG8IVB3fY1Sxd80RnXDjVqv6Y8KZZfXtG1XGEG86Xwt4aaqMbmw\nqyEqlHzz1eCa1IhLw+ZIrJA4Y+cMuFe0int254CEfkRyE/cmwLLJMpCDix5i\n+kw/VoKTGKVFBKIgEXt6XukGM9BDbduZtgqLufGYN1jOu249V8m7mwZyyycY\ntbAwrGWv2bBJ0UyAM3UewZxjH3iIPiolGiDEkHr/FRxMAU2dm+5d5haL2DK7\n63Fr\r\n=PfbQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"ef826cce45d2896ee92a2a27f6f09c2397e0a8b3","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.16.2_1629206055717_0.1156901123243339","host":"s3://npm-registry-packages"}},"3.16.3":{"name":"core-js","version":"3.16.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.16.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1f2d43c51a9ed014cc6c83440af14697ae4b75f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.16.3.tgz","fileCount":1847,"integrity":"sha512-lM3GftxzHNtPNUJg0v4pC2RC6puwMd6VZA7vXUczi+SKmCWSf4JwO89VJGMqbzmB7jlK7B5hr3S64PqwFL49cA==","signatures":[{"sig":"MEYCIQD6xaFKZXVe8iT2WOAICAODcGOmawjjz/3yQTYCuGLtpwIhAPH3KZ6ZpeTUzvZndepw67clQvqB680M1Fp39fsR9jGH","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":762020,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhJVPfCRA9TVsSAnZWagAAMPgP/RXSvGKkFz4lU/OWOzSe\npxHIK/yUwhnmlDqxwnOA+Wn8h9Dp//UPnx+xNUmfB2Zno57bg6iVl2G6mCCX\n4hlfg31wKkStl+hGQgc8l/68qRYGL37tgbU/fduvW8e5R8fEd5HOdHpQyxwf\n27Khbvi9Ek/EZDeeJ+2KkNAPqddAfkrp2zom4udDTO4Fv/JoAnAMIxOPGyGP\nM2toJfZDDOc8v+jsAcJRjYi6ZHLY4Y61eLkCfjrKMKyuf5avTHaC1BXxnHbt\nOGBbo9tLxKb/ygwf5Xt8UlKWwmF0Yx1h5K5KkwB7fQ0L3uCc7HFuASz6VB/w\nGYI3i1ZPp5Kus2mKgddMHybgYfgOMG4OW2ohw91fTXn0HsswOfDQA7dspvQb\nH/mbP/FnrCmuRtPgH8JcuJUipEVKGKNGlcSAvTSQlIQ0cNiCSC7QecBpAXps\nhNC5fmayQTjcQCipdHnOeNOBYLDD/9rpiU0UXxcujLURaP4XjsVxwhy+7+rq\nIiyVaG+t5DDQEj3WsLU5+NYGKlwH9Lk9Oh2eMRZDbpuh/NpuiImGgsg0IPXZ\nNf/7SAFfiqSfqaHS16l1GxoLGfcWCnK9wPSgmyRqIMDTpAKNWfnCJgFl445T\ntHbHMRiqbWnms7OKf+O0i4IDscFfpZnLGxG1dGf+wViuI8sjZrYjNKj/E0me\nLlni\r\n=lczN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"390238278109a4517e438c339a22bcbadd87362d","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.16.3_1629836255603_0.6749937771728602","host":"s3://npm-registry-packages"}},"3.16.4":{"name":"core-js","version":"3.16.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.16.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0fb1029a554fc2688c0963d7c900e188188a78e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.16.4.tgz","fileCount":1849,"integrity":"sha512-Tq4GVE6XCjE+hcyW6hPy0ofN3hwtLudz5ZRdrlCnsnD/xkm/PWQRudzYHiKgZKUcefV6Q57fhDHjZHJP5dpfSg==","signatures":[{"sig":"MEYCIQDdNdb68cSjka4beWnGQp+4syG3AOAy22NNsZD4pwpUggIhAO2XjRip41PmNR2cCdbNb6YCqdX659FxvRihXVA8cvm7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":766208,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhK5/2CRA9TVsSAnZWagAAY4QQAIuyPEWoGkP4sX4KnTh0\nHYrAxiGttPr5wexmcHiko8Yg2r/sApqfK3OgliLNovQm19pxA9U6qODwU9f9\noNABe1dy4Mk/MVT7IxXgs3qu5OX+lUK4/a15Pzm2CI59vAQ4k26yi0N5PiqK\nyb0sgHqt9cDaQ3m1O8Pbmg4HYCVeNXvb/ccMghl/k49xasUHvEIylMfGPbaI\n9f7IK3FrxK78P0VhSqVukf4/gEgvHNKFtKXcKGEl3mqg2Px+jDjaLyXRvEpA\nH3bHSP7dztP524pA8NuOpIDazlSwH8ynOF2X4CnDt6Uv8d1Nc9J+UQ+24CLN\n9E/kUIvr28xYfytec2TfDTmZiWLrDnS0llFztDirgdgiVP2oyvogkqwyED7Q\nAZZQnS4cE7kKMMVeG3KgZaRQbFEYz76RTlhfFz/0CHdWzS52NlZDfS2O6U0H\nUYvkSaOnsPmGBskEUXR0w0q9fSpNeqcyTefFP7dbpyV3q99ikPiM92Op4PLK\nk5bEL+nROi2VoKwYpZHn20wSb3oUOxwiNWa3Z76U2o0ml47FOEJWCjZ0z4Rm\nwAn0COStFW9KAgvXRUw+D2OOZVVOmo/AkVTJPg1MZNjz+tF2foIBezGZwsxw\nLxIIBAeo0MBkquG/SchTjrsQeoPUDjVl5wBMWvQ4SvB7+ZzccLKHhYC8KI1J\ndME6\r\n=YV+C\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"eaf15afc85003c336f71c113b886aaf6ecb2a807","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.16.4_1630248950453_0.28194501686177964","host":"s3://npm-registry-packages"}},"3.17.0":{"name":"core-js","version":"3.17.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.17.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"01a60285b6247b4865e6a394d528070ee964f8c3","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.17.0.tgz","fileCount":1867,"integrity":"sha512-zXT4rclS9jM6tikbAUKAGLonuRKOJ2ZvBnZCEOJAbzuTLw4kKcuA5plNt8juzdU6O/py/EgAehzvLh0VXEdBbQ==","signatures":[{"sig":"MEUCICgFJsupGRRJ7mOqcYagzSQn1O3nEyS0aHiznWH2sWcnAiEAg8EyQdX+gH4xx/C+7hiu6MtsfUHJK6Z4zBFT6ZyuEHo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":769593,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhL7b7CRA9TVsSAnZWagAA4ZgP/21kUx3kjqT5ESwEbsML\nqvQI72wKxISMxa28g1eohDSiVnybbUOlovQAMAcEwnt7N65G/Mrr3A8HkV2W\nQBhGRwvXgXEJQqUv9g5MfNoxjbdGKxTQvpPz7AFaJe/oFbTQD2Jsnbx35QoD\nFW4Hrk+NelPjWrG+WH5nTHv3cWDTqlRlvZFRF2f6iTo1tCpQkVmu5w7yQOE+\nXThZRYH5zrGEpnMEwxI3ubq6Pmj1Pdkv33ko+vuR+2s6FNZKzvA34HYvlQ88\n5UT7uRfk/foB96Ge5gDiBf0k9Mew1x8d1jbFX0dCwCQgnXEeeG4Q24rMbXns\nvPD/U/Zl37PLabKSq/CJTcBMhKQ8GjYsaumYnk/wGPYpLIBCCLPFYGZmNeO1\nzvkuENeEy2ZnfFEGPwEo+C76DW7QPXraLwfJ83GZYnxNfZ4IK5cd9Gy/wKRY\ngt5wK6rlUeOxqpCDqJffFYLuCQ37oLb8KGrqUFX0Qa4cnn9qCtI8ZkO7bsbg\nXLV6bin5uEAdXAF1Q/OB3Y/Wqj36UqZu3Pi/8H1Rh2mbKEte9o8JYvaCLCEH\nuYW9TCViTz2DpTPBQI2mHeR6oPU8FfX3uJZnuVDFamYYzXek9CjwWGJG21Sl\nxxxOnWFPc+aUeNat+Eoix7cKFqPR9gPrV77pjNziCXtViTPwd/v758/yQJA6\niuiZ\r\n=YlR4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"cd4c647b1903838239277291d53955179fc4de0d","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.17.0_1630516986999_0.2594384120586395","host":"s3://npm-registry-packages"}},"3.17.1":{"name":"core-js","version":"3.17.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.17.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b39e086f413789cf2ca4680c4ecd1b36a50ba277","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.17.1.tgz","fileCount":1867,"integrity":"sha512-C8i/FNpVN2Ti89QIJcFn9ZQmnM+HaAQr2OpE+ja3TRM9Q34FigsGlAVuwPGkIgydSVClo/1l1D1grP8LVt9IYA==","signatures":[{"sig":"MEUCIQDDCxz+3EVRnFQKTLEUA1kuk5rBSni6ZzPUuJTlLI7NAwIgdfK1jYCKWC2ggJJfYw1JxXPoVWtAVGzPWsoHFN1kgCI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":769518,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhL99/CRA9TVsSAnZWagAAPGIP/03c5Wq1ZbhAP+E45Zyw\nv6xxTnYItbzeJrwRPOjEgflZ7cqIszix4x/xZ5y4URKxUbBrWr9PnJYRBauw\nOdRmyz0WSoTGvy5/cxyLxRLkikGf1nRO63ARsHBet0uw+XyvQTZUCfD8RYOa\nLBtGbn3mFoKDVtYVEqUOlnd1DrY4dM94eUSYVhzn0bfmjz28C6JPcAR/9Z9R\nqjnx2vlSKMw4JBPpvd2NOjChsluE4dKbdAr5q6HibfiFFjQvS81nH8onoyCh\nLW6B9sPJeDXwJjGXhs7EyvyyNdFp4kcXg4iPpWS2VHXHBBO+Gp9tI95HrUCJ\nF6UWTRGQwuYvklh69ObCKp1cHhojRieDgLvOez6i6XJlcuVYXY6hduLL1CoW\n7SfKgVvi7jT2apU2FVDpR9M5mFVKTPt14cnC/DcCEz478VF0S/LLSnfJI6g9\nAL9lsZKYfIXq1jBF1/1QTLA5RCZPREB0d3IpiPqMCBFPdcEkDQUvuY5cH+U5\nXJEIU0JicWTO0pzTxdH80HyOEqoEbFdG+6EEb5uTv0bHb27KHA3rlVPMvo8C\nxN/T0uw5UL+l64JJW0uCizEiNb7LGPx1zH3TmY9ROUfpoMo/SjquPR1aKdaC\nSZvDydly1hE2yOVUDwskOYgKbe376XA4bL9h1rnLIUYAVPdqj88QnZVyjdX0\n2lsZ\r\n=Wy8n\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"c526e7a00305a917fc697a9b87e64a82781f09f4","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.17.1_1630527359383_0.16685404391231518","host":"s3://npm-registry-packages"}},"3.17.2":{"name":"core-js","version":"3.17.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.17.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"},{"name":"slowcheetah","email":"slow_cheetah@inbox.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f960eae710dc62c29cca93d5332e3660e289db10","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.17.2.tgz","fileCount":1867,"integrity":"sha512-XkbXqhcXeMHPRk2ItS+zQYliAMilea2euoMsnpRRdDad6b2VY6CQQcwz1K8AnWesfw4p165RzY0bTnr3UrbYiA==","signatures":[{"sig":"MEQCIDd33z22PDctM0s4tuPUCdYIi1xHnCTlxSC4YkwVdMazAiAijz/1sjPnb1ISuG9D8lc4Ga7wwG4XxNBIn6ejnxO76A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":769282,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhMQgICRA9TVsSAnZWagAAFNsP/2SXXnxzh739wHmw5rxh\nnzvnnVx+e+Y2VyX96A087ObXqWTEZ1TYwxTDODgnqMUQlZwTyBC1zjXah+E/\nZErHXAke9PgYHDgHE7Bgo5hoCTLQWAZlFV/8Q1uxh1w1N7LZLYOKaae63ObN\nCUrzllwCstP+1pwTB4CyQ1npg1QMFVuK9+wen9hpeW+99zlt8+pj7EYK6UDq\nCUHywr0l9gw5AP/0nFZ/47wWAAQaY0MeCrTBQJiObGrFFRxReCqSFvxC9O9z\nYppQDa2TzUSc79SrUErZ2MkaV4fVLSjaCTinrSAgqT5kGrCpjREpVlY2hKL/\n7dQH+Y8CybQy/VeTpCucXlaHxVVJoAYcjjGS84hpoTwMNaq7+Y6Ogjongvtk\nb5p3hHiEruLryvl+2UYbMPJncuTB72yEhaMwACLQoLz1ZeDgNKlX8PgXSXAr\n3YbXtEbISIe95sbe1dag4lHcU1/toHC+4vFOYr6imqJLc7xLyOV0/qx/42eW\nZeGhtj/MSaugdpTwCt6BTqKyphjx/JPgJ4s7cIWrtmvu7cfoLl9ewYuQ8S/+\nXvgNwTpayYjtSLnBixK5+J6qcPzsbXkRLaMOlauFSvpmSyP0QdpWivi77rAu\nl0WzTUWl3j6OnIzBG19/tjNyVveQSu1GRp5vL5AUV1SvxwLvhJq85vL63jsa\niTZw\r\n=8kF5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"4f68180d6e5227f144ba0a9a024f62ffe541be12","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.17.2_1630603272675_0.8128319350054241","host":"s3://npm-registry-packages"}},"3.17.3":{"name":"core-js","version":"3.17.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.17.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8e8bd20e91df9951e903cabe91f9af4a0895bc1e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.17.3.tgz","fileCount":1868,"integrity":"sha512-lyvajs+wd8N1hXfzob1LdOCCHFU4bGMbqqmLn1Q4QlCpDqWPpGf+p0nj+LNrvDDG33j0hZXw2nsvvVpHysxyNw==","signatures":[{"sig":"MEQCIEW1Jtv8WftwvrZZkDrtah2ONhXcshoVOO/4xOdPBHDbAiAhIiHSDTt3eY+d5PBtLgaft5JLPv53EXD1zPiH+H64aQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":770207,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhOci9CRA9TVsSAnZWagAAJmwP/Am/Bhw58yJjVIdSfsx0\n2j/74jh/RDjApCr31JF/5X41U2Nd1V8rorYOAK/VJRDWkIcU/lCzbU6wL54t\n93iMo7mxJcZKWbFOTyv7A5qdi2hmfjS1vTgqUovF8vKtReqdLEGAA/3SKEP7\nol8HpEc/2GuIjuTCTFHyTjPQM3TqwKBOJhe4GxD6h2WZ+QvpCNyJw3pZ/r/s\ndjkgU6adnUmHmpa+mW6WhW2aDGJKFiajKGYg/aG0kZDur0T6KlLyxQWdyr14\n50iv1awIr+j9P4Mwwiez7nX6SRhs0wCczgRJDZl6L1QasTiVGdss1xJ2CNEs\nY/H6cOv8mXmJti7ito5M2hWoEuUQe8GZSTHlyGGdz7+jIsDjvzRp9MML9kec\nD7dTfZmD+IR02oJa4degVo6UP9WobIyqFl0E00Zep6DmhtLAHMeDFCG0Kr3Q\nyrKS7crdZ4qsTtubQF/5jTifF5RvvwK0uv3YWZZV0Dxk0OAK+J6EbZ5qpdfG\nTNqZKNQ64kQCSSW/CKViDYe1dVCrv+QFPq5eixyphtnNgDXx2wuUvK39ioZv\nbeU9ryIMuLxwjo5owI+1bGl1EKNb4GA7euuTVLZGVT5KZTgGMg6lNWAX6AS0\nKyHiE0W2SbpOEXio80VG1pxYuXARhyfRde+989VG8Vr7EElGXeUgiSv8G1zi\njsfE\r\n=IBOF\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"c65f52bdd73b4ff6eee0bd3ec39ddad901dbfa49","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.17.3_1631176893050_0.060894988857830734","host":"s3://npm-registry-packages"}},"3.18.0":{"name":"core-js","version":"3.18.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.18.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9af3f4a6df9ba3428a3fb1b171f1503b3f40cc49","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.18.0.tgz","fileCount":1879,"integrity":"sha512-WJeQqq6jOYgVgg4NrXKL0KLQhi0CT4ZOCvFL+3CQ5o7I6J8HkT5wd53EadMfqTDp1so/MT1J+w2ujhWcCJtN7w==","signatures":[{"sig":"MEUCIBhaz53WbRrISuAEB9fiS9u4Ecr9mN6uBh1XqaGgs9gZAiEAywR2ydaA9mv733ErWIG9Q2Xm6VYnVFyAVi3ez0gXpZQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":782202},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"272ac1b4515c5cfbf348b069f1da829165a7181e","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.18.0_1632078222744_0.0036604240988500347","host":"s3://npm-registry-packages"}},"3.18.1":{"name":"core-js","version":"3.18.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.18.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"289d4be2ce0085d40fc1244c0b1a54c00454622f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.18.1.tgz","fileCount":1880,"integrity":"sha512-vJlUi/7YdlCZeL6fXvWNaLUPh/id12WXj3MbkMw5uOyF0PfWPBNOCNbs53YqgrvtujLNlt9JQpruyIKkUZ+PKA==","signatures":[{"sig":"MEQCICt8MCn/4I4PhGUbVIW7aRAaV2ZhgItHBM0uRT1xtHZeAiBS/s1Xjx6xXCmL3wnkCNudiIV6T0FK8GI/5/NhfkYCdQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":782986},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"1a347bdf0297884ed8d9e32e1971267c6d572822","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.18.1_1632695548926_0.10880396854726637","host":"s3://npm-registry-packages"}},"3.18.2":{"name":"core-js","version":"3.18.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.18.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"63a551e8a29f305cd4123754846e65896619ba5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.18.2.tgz","fileCount":1881,"integrity":"sha512-zNhPOUoSgoizoSQFdX1MeZO16ORRb9FFQLts8gSYbZU5FcgXhp24iMWMxnOQo5uIaIG7/6FA/IqJPwev1o9ZXQ==","signatures":[{"sig":"MEUCIQCMzzdVFVFgrjKLnzmzfKrjYwGmHXyYKb5whSjvRxwBKAIgP9BWaPnNFMxToQOYdcXgNQU+HhoHYG1iZB1SBEQvQG4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":785860},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"ac4a27025eb557d7c7a94b928236fbcb6f21ba0e","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.18.2_1633458625325_0.958875725875517","host":"s3://npm-registry-packages"}},"3.18.3":{"name":"core-js","version":"3.18.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.18.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"86a0bba2d8ec3df860fefcc07a8d119779f01509","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.18.3.tgz","fileCount":1881,"integrity":"sha512-tReEhtMReZaPFVw7dajMx0vlsz3oOb8ajgPoHVYGxr8ErnZ6PcYEvvmjGmXlfpnxpkYSdOQttjB+MvVbCGfvLw==","signatures":[{"sig":"MEUCIC6t2l5j0tJIeimjBw5nrUHaIsoCqQ108pRJnCIvuXbMAiEA/xWRTvUSitGxuZe2U7F5nOGCdakE2XvnRdsgeTZ6gKU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":786060},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"11f8efbfd552c8fca86188554ec3a8003580dd0c","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v16.6.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"16.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.18.3_1634062429640_0.3925471726396772","host":"s3://npm-registry-packages"}},"3.19.0":{"name":"core-js","version":"3.19.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.19.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9e40098a9bc326c7e81b486abbd5e12b9d275176","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.19.0.tgz","fileCount":1889,"integrity":"sha512-L1TpFRWXZ76vH1yLM+z6KssLZrP8Z6GxxW4auoCj+XiViOzNPJCAuTIkn03BGdFe6Z5clX5t64wRIRypsZQrUg==","signatures":[{"sig":"MEQCIDmfkR7VSMWsVbjTad0eXkf8Uf/wnl27922JRbUfK7esAiB9TvE4PByxt+TD72xpodmum29VIKVE9iefu1CmI8nEuA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":816375},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"6123ff17d26eddf3ba8d456feb97decab3a9e9f6","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.19.0_1635142253752_0.5585799912731402","host":"s3://npm-registry-packages"}},"3.19.1":{"name":"core-js","version":"3.19.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.19.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f6f173cae23e73a7d88fa23b6e9da329276c6641","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.19.1.tgz","fileCount":1891,"integrity":"sha512-Tnc7E9iKd/b/ff7GFbhwPVzJzPztGrChB8X8GLqoYGdEOG8IpLnK1xPyo3ZoO3HsK6TodJS58VGPOxA+hLHQMg==","signatures":[{"sig":"MEYCIQDQe1TW0QRTD5zRSQZWSWS8zfEU39IeAxoY5IDc6/WBNAIhAO7DbKFHTZWcVi0oy3CbmyGLNfcIQf+3CFZc7r/CFsOM","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":817992},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"1f16f36fa2807bbe793b9da852a110e6c6077693","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.19.1_1635883110112_0.4543197171467257","host":"s3://npm-registry-packages"}},"3.19.2":{"name":"core-js","version":"3.19.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.19.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ae216d7f4f7e924d9a2e3ff1e4b1940220f9157b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.19.2.tgz","fileCount":1892,"integrity":"sha512-ciYCResnLIATSsXuXnIOH4CbdfgV+H1Ltg16hJFN7/v6OxqnFr/IFGeLacaZ+fHLAm0TBbXwNK9/DNBzBUrO/g==","signatures":[{"sig":"MEUCIQCEdUIbjK9haelAkk4pC75IjY1EpJVExFnPwZlBv9bn7wIgbxr2CtxPyQ+R26FVc+h++73fXu+hFmLDAAp5pwiF1Es=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":820932,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhpR+HCRA9TVsSAnZWagAAZYEQAIv3eUyxsYD5RA1pmI08\nz3G6kmN5itkk4KADZIve6MEOfPCxVhlKcQLkFEKMeRTyCBRBSGkbeUAGEsqm\n5YXg7+89wh5ymwvgNwMSM5NDUp8+m4vq6ppvjBP19MY6vauKqJQ+JZNHVbdS\nr7PjsWphrBchoGseh4PFnHxYIY3kcCg9ETuyZrUCar5zRwQPw6jVgBYqoDv5\nFRo5MNVkD59a0t3lP85GC5xU6tEbaNeDNl4k6F+EtXCwJutOcCMLURUDDLSl\n/ZePFwDYJMqkbMmVduzK1g+6IPiQXhUtWtKB0oCQIG3aABHf2iW5QG6lWQYb\nywK6wMXqelkS9ZBgme2QwoloImz98yEfkmUS3iKSGQ4xj9VwZ4LrcircsLxV\n/EvHcRInnSbq/9lYyjf0PlPYK2sc2yoFtCX5rYHupw4JO94NVAq04CoJcPBJ\nbXIyCp9Iz6xTNsEc0l29kxmEFBC5/TlgBGqks5Y0XQ/b085DWjEaC5zMMYZ+\nDWBwOo2OvqlSGruJbFzuk8WZzGNsjdRCSnPtp5HHfK2nOoX0g+FkFKcNA55q\nlEcmeA8L5TQFwiEg+r/XHI5eWXzr5gJBk6q0XqQs5UQRgfyPujXufPNKlcP4\nd/A8brk5XdC9Cs+/4km2SkEaHc1q2oTyRMBAIiP+Noc5kJAjJvCPgclDBGIw\nrQqJ\r\n=7XhK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"e49b7f34f7b3a10cc88e1210431508c7a58e069b","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.1.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.19.2_1638211462846_0.6801413747728637","host":"s3://npm-registry-packages"}},"3.19.3":{"name":"core-js","version":"3.19.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.19.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6df8142a996337503019ff3235a7022d7cdf4559","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.19.3.tgz","fileCount":1892,"integrity":"sha512-LeLBMgEGSsG7giquSzvgBrTS7V5UL6ks3eQlUSbN8dJStlLFiRzUm5iqsRyzUB8carhfKjkJ2vzKqE6z1Vga9g==","signatures":[{"sig":"MEYCIQDZo4Ut/JVkCPdB7q0G7KXPPfaz/820+sGiN270v09/iQIhAPo7MUwXSfEUuZF+0uQcuVJqPRNscbNhG6hH/YvXaHQh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":821690,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhra0NCRA9TVsSAnZWagAADB4QAJNno+2TK8FiIEhicwhk\nDCMq6bDDWXxe32pUwYRaVLzL1Le94RiUHvmLYneSh2uF6QKOEIa0srqN+jhi\nfmPHT7vvaUtIhazzcVKKUHPqTbDnXpIZkvJ+nddVEZ2jB23UIStORnwgwV04\nvYzbRQLEBTuDRvEQLdtLXKNbD1igY2z7xOYCzfTKmok3KTtapDLQSbg1sQkG\npwjhTuo+2VqAIdFqZ043wlZ648fciCpeSyiIJoSgwM7WQudRmxRjHsbC2tWR\nL1AELJRrKYrxX4iWcmSLTYAzs99A0PrP2K7TD2dtlM6tpvbFtEdGJL3QDEUd\noRX4f0KBg9tYZjMbm/pn8MpGt22buk0kjsc2fFL31RsvhHk5J3G/E5ePFwMg\nlhmqHGVSR9Rz5Ws+fNcuBfYxdGSY+LycAQE/1V8g4ClYZo5NRxU0lalaIUNR\nrxChwribsCKeuOjocKIh4g4sgCA1EenG5UwDSM8yxx6HkzyZpmcqPXQPpLnL\n6VnnOfgHtRPH8QxUXHAgE/0yrsGKdWtfRsmy1I7Ptx2006UNTesXYu2TM9df\n6h6t/gzgogK9CWMc31wcTXaAwv1UNW9gSgb0/Qi/b1ElDF8gkmRFpRtZQWaL\n3ceKWQzq1PVFpgDPkogJd0x6RHpvlOFQkUqNddsIM30FXm7DlfswPhseYMdj\n8r38\r\n=yZ5G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"7dae270c1acf496ba701acfc6272453d7c06aa53","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.2.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.19.3_1638771980871_0.12890750414709196","host":"s3://npm-registry-packages"}},"3.20.0":{"name":"core-js","version":"3.20.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.20.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1c5ac07986b8d15473ab192e45a2e115a4a95b79","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.20.0.tgz","fileCount":2380,"integrity":"sha512-KjbKU7UEfg4YPpskMtMXPhUKn7m/1OdTHTVjy09ScR2LVaoUXe8Jh0UdvN2EKUR6iKTJph52SJP95mAB0MnVLQ==","signatures":[{"sig":"MEUCIQCPknxL4tsTIhEyc2N+vkXeUzIvbSjBzUYGxKp49eW+zwIgDxSP7DuQLoO9jWoUsexU96+/mu9v/COG0qlO/Uh1WEw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":924688,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhuj6PCRA9TVsSAnZWagAA2sUP/jUpfSAVx2JBecRdortU\nSaaV9Audk3tOR4Kgc3IBCFRIPLtFIzPVjx5xpMPZ5F2VWz/GArNAIPDqLzfY\n7gOB7o8PO5hoJm4V2gg6Hc0ls1mWNDrcI3cByWgHywCubBx14s5HsDua1Plu\n72kGRL/CyvwAmphrjJiWKC2JpXCN5k05j9W7AuHT76/4hC/ZWchUh2VZtI34\n5+WPrNoTSBgfo0JlihlpCmxnuumBw7Am78CVPZ8LbG4I3AX568mF67UbIabB\nK6xoi1t5vzkVI/aAqlA+AcI1pb/C+woiGsacdUj2jB8DvzF0TRXktrH/8rXq\nx8+Nk50LQDCUm9oTC/1WcJ2x/ADqcQQmnzNBAdxo0+wSflkF42ZHR2e7kbpw\n4MF9zsm41eATcDZH5ydsqPTVNl07CHVhPtOQd/4T2tJw5zR3/JJbKhCfvfF2\nsKBO4Yho63EjnA0A8IUB/KqyNh0nE9qCNS2lH4FvcBQrBCIf4Bbo6LtUEhKa\nG6F5lkQPhC1/GxAY8E4M4SH5TFWjVz1TZvBi76T1TQq9/Q5Y63ogD/xJX9d5\nAcLlWGztaFQvCuHyMoM+VM3wYXjF1YXgbwZCXQFQj6Zv3m4n6Sys8//z6a2+\nD+0HNjLGaorvi3ERPJB6dyuJ/543+rxeLSc9pTG6yk6knc/k6TTsilUm88Lr\nb8DF\r\n=UoWR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"29590d0f9f1ef51856b8498da76c316712ac7fae","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.2.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.20.0_1639595663600_0.7047197527122147","host":"s3://npm-registry-packages"}},"3.20.1":{"name":"core-js","version":"3.20.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.20.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"eb1598047b7813572f1dc24b7c6a95528c99eef3","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.20.1.tgz","fileCount":2381,"integrity":"sha512-btdpStYFQScnNVQ5slVcr858KP0YWYjV16eGJQw8Gg7CWtu/2qNvIM3qVRIR3n1pK2R9NNOrTevbvAYxajwEjg==","signatures":[{"sig":"MEUCIC+LCgit5mohdxadkcODBh6AXwoHcQGoAT0e5+kxk4ScAiEAj9a2Mo/LQR2Sts36zg7Qi/tSmtiG20ev1ASdvXYSvmc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":925290,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhxFwSCRA9TVsSAnZWagAALwMP/2LEJcJcuPJmC7RlfTrJ\nLWA1ZghuHJLVvb7IigvekLirzPpFI4cQiSoNnCmxGh8wSkAcSO2BH4HdbI4g\n7pzRfzkYIaNgNzWMVWaMacJrkVP94I6GBH2tZZ/Qo0ba7TPzIYD52MIXiaKU\nJMJHeZ8V7NxloejEnhgn3t5XtIEZ+OrB8apkv7b8/qtt1QeCB0dVhiIDOcsr\nTwcj01i8So6aKUZRi4P7FvuJ1Tfq600n2v/LijcJOnNxCTfL5gkPzUNadePV\no1gMVZ7UiDZnVgnP40LoAELQ3pphnL1yA9iLMYN60djvjr7nNAeXwwaaorC5\nCcxdzqH9GyLpys2ppSHbLbnbDsQWPYjeYc5eNi/YWGTGAjKxfszIWg1VCMxp\nan0kU+vPTQRr+bt6PBl6DCUaZwilVciVev/eSpDHddaplfSbadBuYJfOPMv6\nd3H5n6N9LYb0BpfwgDagZDlmnDP/lKGhnE8dfiorhXXKMvA82Tom4mpDp11l\ndC2fCplWSWNHdP8DyMaSaXWuTNIYk+JF8pOleHSBKWA2UsIzwhTn8yY5SLKk\nhraq27aPvu8z9U64aybqmBymZxdvc/jrKgpqgri/9q0l4oMAv9z/NOXM58/+\nUZAxFCjrHEpV/cboTPpFvM6/RSajUG3hjzLymeKVLpDtxsssqoFpMnPlr5js\nVi2g\r\n=/1tH\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"8f22e986132c93458b778e656fb501dd6c86764e","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.2.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.20.1_1640258578074_0.1086706060753797","host":"s3://npm-registry-packages"}},"3.20.2":{"name":"core-js","version":"3.20.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.20.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"46468d8601eafc8b266bd2dd6bf9dee622779581","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.20.2.tgz","fileCount":2382,"integrity":"sha512-nuqhq11DcOAbFBV4zCbKeGbKQsUDRqTX0oqx7AttUBuqe3h20ixsE039QHelbL6P4h+9kytVqyEtyZ6gsiwEYw==","signatures":[{"sig":"MEQCIQCwH6+xqHN70Vaiva1/RAhtsKvmQ4Xxq542QWpQRGTKOQIfWXbpKet7X3MzZPREz4Byw2GIOj8DiX9bsqiBvQe9NA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":928330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh0J5jCRA9TVsSAnZWagAAtZMQAKHJYJr2xKzpd6JUxC8S\nR+NeEf8P/u/zrlDBVFNIaJKMGocGaFTmMAzMGElTQtE6nb1i+TVk/U610TK+\n/vqmEu7qlsY4KJrrz32WFynd7RM2k70EXiWFvl5MTbBEdhQmha4YkR3jNebo\nCE/rtDMAfoRn3NWNBXGTms5ZL95Uxk9YF3rH1Is8lezG8a3ns0zEyfT6YvLI\noXgdCaltbqLAXQSWVKXGK0EqQnlvqtoMJAJR8asGcA3r8rqvIh1eulisSxMA\ndAef6B8aPks6lOeO4CClizbRsbOVzFxIXdTivv2FY6eKgWEz3nqHMAIHmiH4\nSj7JzNBdNVnrsZksG/YI9N8T/v1QMbYY/Krp6HK+64vRbK/GtaRq3i3Qowot\nMwZfugSQnyQUvi8a3RNUD2zIZZtEnX24V+ueyIgDMiTeBzE73R9ayNEgoqAD\nzdtS9iaaYlMkmgaJvKdcV1dCubIVms/RPP2PIQEJN2v5H/wjBbFJP9beJkql\nDckYd01PQCqrN0busHgDTbQpqRG9d2T3bjVQS/BH+yFFZbLbDAvUT8CNhuTU\nO1FJn5UZjhtKxnY/MTMy19iqhFUAVh2yY8EMrEo+q6hL+KfYyMFwaBXe1c84\nFEjFBUwYoH8aoUdhH7eFUbj4LKCqoWOZlYQ7a+0dHa224xR24nN2VQh8ND65\nAP3K\r\n=Y+Hw\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"da1bf15799afc93d4985392a5d1ce5468db1bdd8","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.2.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.20.2_1641061986831_0.6840025435763888","host":"s3://npm-registry-packages"}},"3.20.3":{"name":"core-js","version":"3.20.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.20.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"c710d0a676e684522f3db4ee84e5e18a9d11d69a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.20.3.tgz","fileCount":2384,"integrity":"sha512-vVl8j8ph6tRS3B8qir40H7yw7voy17xL0piAjlbBUsH7WIfzoedL/ZOr1OV9FyZQLWXsayOJyV4tnRyXR85/ag==","signatures":[{"sig":"MEYCIQDtVqrZbV93Yn990Jay6b1S67YSGxF2tSO4NnFnMqyLkAIhAPAeVxicqckOvzAcDNW2FD3/1nGUkkWTE6ht7gYf+MIv","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":929363,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh4qxOCRA9TVsSAnZWagAAHR0P/jBPUrTmUN4bNIFHWDwb\nXtsGFo3fVu7a93VvxTnpKyb2evAnEWAnYHMyISjpq+KxJF61BnW4Ay1tdGzf\n1egG2hDrOnLhLeVW95j/LeGOYdnGHWMr9qdekwvBWUW6rOyR0d4mXS1DWIDA\n2agXyC1qnEgvdRHxIssgs3y4kQWrKg3cPaah2CK63FsXEacbo6XDNlsivhe6\nUK6qo7o6/04Qopsd77jRndvPMB1/s2q3ncvo5bJIqM6Ac60cnh+E6FkQoGoz\nl8AfVYYGRr8a3yudNJwWFJxJ0Dh93UPeCX0nxpal/q1PHuxPJoLpzPce4qEU\nl27t+EX7vr8drDfbLoYFkRLcSjDMUsf4IAZ13OuHhOCS7pPgbrj6kmLB6FXB\nouPOO/rczdNtFVh+9hSIN3tjPRjAUiWvajTUMP+GxbVnt893zts1SFpxvZ8y\nKY9DAoKoV2bXy0axLLt9GEAYkwSQKap6/F9dyORp+jDtlniDbiiK8NW5JyDo\n1Uc/5u9mu5A7ZQSSP0iCFlShDcmdMWiJtRRvw9/51AVI7my9oYhdNCzjOF/Q\nLGiYgKtgDUbA/rP2NYfftv6f5HWtvWDOEWioOIsIMNEe2vBw7Q2r39ldRvHF\nAIUeeqixdopLxROtPYDJBV9cRgt/hXU8E6wFT7lSrjqj2laGNtUQlG5z48SI\nEHI8\r\n=WZjN\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"4bcdaf8646f4e60bab9ac182b06803ebd230568c","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.3.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.3.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.20.3_1642245198279_0.9001064411125757","host":"s3://npm-registry-packages"}},"3.21.0":{"name":"core-js","version":"3.21.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.21.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f479dbfc3dffb035a0827602dd056839a774aa71","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.21.0.tgz","fileCount":2393,"integrity":"sha512-YUdI3fFu4TF/2WykQ2xzSiTQdldLB4KVuL9WeAy5XONZYt5Cun/fpQvctoKbCgvPhmzADeesTk/j2Rdx77AcKQ==","signatures":[{"sig":"MEYCIQDWyxBN1D/r1DspG7Zw9XaUKnrbNf07gHscL8euHVA71QIhAJx6tPICruH59bMkpwY0uYKZdWrwY5N8XW6KEhO3KlYS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":933843,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+Wn6CRA9TVsSAnZWagAA7cEQAKN59mGIg/Jv8sHMw+KV\nHq3rXtKjN+KtRUl5DweLP2a8DXNyZBW2bQfIUe5lyV1QEC3n+bT1HjYEND+u\nrq0ZFUkxe+Tp1G7gJL6bZUUmuubrEznZN/EIOqG7PCtFo2S16weJ59S+2up7\nc1bWruUgUFXqys6th8bfyU+AwGr5MfCsubA9EJR2gcSP4nYUJfUvm00C8DaX\nE0Fm6l5qbcHqtakDxS3FGia7ijhVnq1Eg7/PlpGXkNS7Mo06T0N/h7Wq7Xe2\nkiw6NnluzLurmoiJ5wkdRD5vpqyFRg5FsiFiZbktZkUFFbVFTzMuUSKO55YX\ngag5oQU7+RSjGS7aNI6GneX5d6iWiUX08/Y68jthOj/MgiqN3jXwxNeQGf7y\nP295rOYr+DTPFLyt+vkkUaSLDwFclpz1uZ7KQQs+9qTyL1+qBsYvsUEBuUBl\nmvc2tfEl4NwtzcW/8d54kst5oxL+NjPWuEVflCvIAWNQSLHvGC/OUwTTOBpq\nUEZIL75jHIr9wNni8ZfDbgYsOEr3+2dPJe3WyDSdS/g7tYrGzC+Zajk7v1X9\noAKeBrY0mEjU9LwpYI3ytec2KygdN+MTjNrtRWnj4yqnGlKeUbGKeEtTLEaE\nR6x756DyFzQMdDsiEcHfcJvX/M2WvOBDmlw0rYuHsEbcnSxQy5QT+Dc4SwLr\npku8\r\n=Bd7G\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"32492dc5f55ea9bbd21b8fa8145cedd36d68c160","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.3.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.3.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.21.0_1643735545980_0.7124758267948106","host":"s3://npm-registry-packages"}},"3.21.1":{"name":"core-js","version":"3.21.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.21.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f2e0ddc1fc43da6f904706e8e955bc19d06a0d94","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.21.1.tgz","fileCount":2393,"integrity":"sha512-FRq5b/VMrWlrmCzwRrpDYNxyHP9BcAZC+xHJaqTgIE5091ZV1NTmyh0sGOg5XqpnHvR0svdy0sv1gWA1zmhxig==","signatures":[{"sig":"MEUCIQDw/vlcWgMU4AbaElHc9LQkwUOhgFCseeX9bHuZESlZiQIgTSqfeIfrR/1zuAGFfdu0+dixHGpFHxSIsnveEeEt7as=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":934162,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiDUFECRA9TVsSAnZWagAAfhwP/iLP5Zmk5rO3VWY7BFyk\nlW3yeIVdcnFlk6f/di79eOaXN615F7VmNV69n9kx1AZpmaBJqgvLD26x5fqc\nW0fuFNYrGxvDF+UOdUxMFYXGiuOs3trmfzC9ESQNbAEYRNT7rHvNSQWNDFuY\nJLyK4OYgIOxlo7LOLnaTbBN+5h8zFB6Ca4CJFTGk47s1LNcqWipNRbLLxjeR\n5GxRZLYJJ/zbdApuK4QGmNzR7OFFpL+8CpN1+0SoNADM22mJowfp29tbvxcq\nVnAFcy7zeDpbBjSR81BZqWXbRvQRnwD0yQzSr18VKtpL3EQtS6CWBXBEbnnL\nItS/j1thKNvKXquoN7D4ofES3T5laq2giUrD0LrNTKo7+5YboRfCDzAIU3LA\nxeojgvNSy6MZgiDkpqxLwjas2huzgVS6KGAqzN7gb/GWta6fKw9g92uDFKS4\ngOrEDHXktqHJBQwGNHouzkXKRv3EAnBOIkTwoWHOhkptEFSOdewGpSl3oglE\ncgZlOBncwS9oYTr0cqsfUcREOePR0zGAVRpcKk2tyCLdGQM+xPSBWIOzp1vA\nzLWWd47OBM1e+YddL4siSAY54pWP3YzJVwjoixhmWRQYfxuHnd6DVmusLolu\nxZbG2lEWYYjKhtLBa0WHixR1FQeEYQA5SXNh4C0IidDhoS/BLM3QwfeXdipK\nhBzk\r\n=noHP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"eb9229ae88428edea6b2be250c98a518fd2c22e3","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.5.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.21.1_1645035843807_0.3136045744261451","host":"s3://npm-registry-packages"}},"3.22.0":{"name":"core-js","version":"3.22.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"b52007870c5e091517352e833b77f0b2d2b259f3","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.0.tgz","fileCount":2999,"integrity":"sha512-8h9jBweRjMiY+ORO7bdWSeWfHhLPO7whobj7Z2Bl0IDo00C228EdGgH7FE4jGumbEjzcFfkfW8bXgdkEDhnwHQ==","signatures":[{"sig":"MEQCIDeN0a7ZuyCDuTuWIEhEKXS57nIcDYvpzy2Qah5ncG0MAiBie9fjyH670xC4rEwhXGG5aCIDbfiki9jDlCdAqfFSRg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":982250,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiWN23ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrbVA/9GFvm9MWkIUyan+tEKaDqJGikQru37UASGun/bbuldxghoa13\r\nCs4018xok+knD/4CqF1JDUjBwgG5/GCbdM8m7gw01G7MtDMVIZSbSFoqwluT\r\nEYK3b9wxyWF1n6Wh7IOhKnUxaiV9mLScTiE7S5d5I4685e6uIOYosLpyVECB\r\nNI3YuVyiq7PxJUrunp3agGaE4HLQZ4OUMgyswPrIZX8fZwDBO0OpOa/j9+9K\r\nrz15bUusk2ibSiy2LGjhu9coBlb3GWXXSmcxRjkcyX8zln3vWtazp/E4PxF+\r\nPpak2l+s4+xsf2lTaxz/mt8F8y4Ewe5mP96Z0+WPMU/Z7XyN8jhOKlrB4mpd\r\nO2XOcZPslFK3UYG707PuJrwNH4LA8JNt9H80eSWlYnzi8jvotmhV0yPGksI+\r\nuX/JcBoLEqe5cVtaN1sphp2Z4LduKFR31G/2kjZzgHzr5TVEcgpDmN0DizDv\r\nP6m5aaO/1rgjoYJ3FKfbTnOgcckXNH8dzlJf2DEU0vWXb4gzyPeY01HkVwrJ\r\nR9ReG2cTW/okGvQh83dcY5XUtDvPdy2ox963pZG8LYAKoxpkyZcehThOzHQ2\r\nsrUMOUPo+31gwsABOFTh4R6VCVVJtun9DIXiRpXL1j1CF/3kBX32AHtoDVLJ\r\nHMJIQ5qh89IzLDXvWLnt9fp0zxtR0FDvyBs=\r\n=xKVB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"c5e56b664756455f9715481eca92f4a3a421f475","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v17.9.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"17.9.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.0_1649991094806_0.3073604226197386","host":"s3://npm-registry-packages"}},"3.22.1":{"name":"core-js","version":"3.22.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1936e4f1da82675fe22ae10ee60ef638cd9752fd","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.1.tgz","fileCount":3000,"integrity":"sha512-l6CwCLq7XgITOQGhv1dIUmwCFoqFjyQ6zQHUCQlS0xKmb9d6OHIg8jDiEoswhaettT21BSF5qKr6kbvE+aKwxw==","signatures":[{"sig":"MEUCIArdjLAT2Ym/TZ68JSfme6mtZPtzvbfTPvMw1DOyEggrAiEAua1AAvaUjlzf3tR+G+mDpE5nHrLMWCYS2NShOlJU9gE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":982242,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiX0iMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrDFw/+LstHUh9wYW4igjOzNuy/Mr0Ai3erF4cuMUee7vAb2XSJeeZt\r\nQsSaz5oEOcyf7IOjwdwWSZ0CR0Uu72fBD0ZKCSoWZyNKKWhqzZJa6038UQ+i\r\ni78CsJ9Mm6Tw6kjAxhj7nVg9yFIVomE6QWVdr1Z/I7fsuoTAe9IL351lxfiM\r\nO94qaDQhIjp4/bOpasgvjlP7XwTyqAkHGGvGolV5hh5iaXo2KRfPEj0dlAqJ\r\nn+6lbdAqIJ+83SmOtvdNz1q8r84a9UWE+hUm0UZnDi78H3W++Wcn+CMp+qv4\r\nWzI8Ad3LYHUC8N0jBWoKaAc9efKm8R46i/fVdR9BvBI45EZIh69vXzmIe6Qw\r\nnKooHj/QHv+VlFZpI8w/SjNRFKaIw+ItwGRbFM8LvBFiP5j3eJEB9kNIfEm9\r\ncUTkm5TNsm5Nyd1CxKBhWI0lB4uvDnmf/CSg1enNVmDIy78ul32EnrMrtoNZ\r\ns9y2jlW9dqIxqjDqCYcwAcxqpqNQBb7meqWq0ciODJfjWPpnau7mij1KuEDS\r\nt5nByhyRdEWK/JDUmQzXLOSypsDH7n1aVhTfhKeWAx91ioIuXnZZ32X3NKma\r\n8HF8UECrqAuOFFTtxjDDcjU1w4GOTAMqNan9foXxptnRYJWpXkNZo7gzEE1A\r\nlDp0uhI2/SAdI2sgMNXiuEEzwNGrBsTxrmQ=\r\n=IQZX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"48aafd056bb4fbe0ea749d0ad371b15dd2cf51fc","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v18.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"18.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.1_1650411659873_0.7527660995860677","host":"s3://npm-registry-packages"}},"3.22.2":{"name":"core-js","version":"3.22.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3ea0a245b0895fa39d1faa15fe75d91ade504a01","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.2.tgz","fileCount":3000,"integrity":"sha512-Z5I2vzDnEIqO2YhELVMFcL1An2CIsFe9Q7byZhs8c/QxummxZlAHw33TUHbIte987LkisOgL0LwQ1P9D6VISnA==","signatures":[{"sig":"MEYCIQCo8x1XtANcW3BnmSls05uk7UUmlD6hgYM8/jlQ56O2agIhAJPJpBdHpkVRP+Aiu5DHm+adWvlqQr+y8VkU8Vla9v7e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":982242,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiYVmYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmowYA/8CFHsXqYdRJPVuEDWJTmz6s0C1+83DHicGmcJd5o3C9N/5nB/\r\nrXKORhjlXl4VfqGBsGcri3EtAH4PYtUc+6UV2Tr7xb2mHaMHSdjf+x3fmi/w\r\nLsTQCQcf0oFcU9U7xdTRSjZh8Rwf+iL6faPbUCpe12hvXo3aFHkejLs3TmAp\r\n1sz1dtvpXe2ZOc2zhs0X6mrOqLPqtH2NDB8DpC+EcACGAUcrHFojQNFP8KiC\r\nDiLZ0SUgXat20cPJLbWFsENAnJEe5VrRhce19GgDmh2y/TCtZiC1kDtH5q26\r\np42owGOM8FQYFM0EtHholcrxAbkc3FEHFnXsYuez3/UhwCLFm10Sy3jCp5wY\r\niaDty3Ybpo4Etrg0AmHcYKhrPKQKuNVBZF5Xo+8dUWFnvU56v2HhbIfb/AF0\r\nzXQVZC49Z1KGLuLmVXkN8k0WXNLcVcL9tJ2/hdgg14Rke+6iPrgQ4n9oB01w\r\nD2BT2kXdirQrDdlmtVLTxO7PbJctNJHiGicQgyDP47F7Gr3ujgdpdVN0lK03\r\nJt2G90BoWokxMTYI+PucNAxZ6YRvIqwQ6jSKqjqIhs4J+zLFMCDZrFgB4qra\r\n5JEOQe/WXW7fRE415VpxenPZVygfjBIvMPCUKCTvLHAEY6bf8/AxPXVq5iZ9\r\nGJ5rX4Gr0FvsrxmFI5BhspfJ7F3+RspceF4=\r\n=86c/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"c949d92f76531a2fc31f0fdf7fda6c86e258d9b1","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v18.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"18.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.2_1650547096118_0.2824286246207921","host":"s3://npm-registry-packages"}},"3.22.3":{"name":"core-js","version":"3.22.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"498c41d997654cb00e81c7a54b44f0ab21ab01d5","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.3.tgz","fileCount":3000,"integrity":"sha512-1t+2a/d2lppW1gkLXx3pKPVGbBdxXAkqztvWb1EJ8oF8O2gIGiytzflNiFEehYwVK/t2ryUsGBoOFFvNx95mbg==","signatures":[{"sig":"MEUCIHv4yu9rUo6oewXEfd1FgLO4fpz7NUQrw9n0xC7ZDjzQAiEA+WzxoUWiRZevBu595/TWiWmPWXR8PFuKYsjKktGEHOY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":982403,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaghTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo3dw//b4YiOg7zExzAgk+rH3F0oEiGYA5w1TZJWBBBt2CFkOeesfsb\r\nxccEw+ztxQ7PTBau5lwXfYsvsNRVyGr7JHfc+kS08DG8KX5Waor0aIwCF/gb\r\nflyMAg0joQZnxxod9u0UsQfZPDBBSipTUmi8jImNbUJSdwbhx/wxGZdjvVTp\r\nwWSZyLdZz90XFJhQ9Lvmt6pJz3O/2ZrDpzNUR/XFXt4PcNBjQKhGa+l5U8Jl\r\nFHPIgt1152BGJCUbTPc0iuHdX+tSZUL0FfomcLkN3jQn1wgkvSr/L0tmegEd\r\npck24BvxIe2FzuIiid24vko9PGS8C16VDDy3vKtHHlk7EV9/ZfuwA+H1w3uq\r\nb01k3CiNkRo5O04eVAXs7Rdgc+kHjMp2RiwpJj0eVW56pter4eyorpXR8pac\r\nR9SlfBDnHnPiOAr/3jwvu23CItf8WZ77u8oJmFuLfHlMhYXsO2sHPR8MAx6/\r\nJA4LGRNeGdRB0QRuv51WTOnvIYC2Kr1GhkYPUZc5lgedXvn6nFPXvaXZMJ+F\r\nCBA/LWaGIpzm7Bfzqcq/jBN3Y9ay/Kzxh2eOai19tYnTWnhT70gpOyd5HIpw\r\nE0Kkk9pLIU7NQjE9u0tSspPt2hv6GCkEmxTsvvnRYpkiYvaU5k08P6C4X87E\r\n4+N3VPbTO4ynQCI7qIoKSFdwEPtolBbKSRw=\r\n=5RaK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"3c83544a650f20115b2a586ac226d00b2505fcae","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v18.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"18.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.3_1651116114789_0.08913242672368082","host":"s3://npm-registry-packages"}},"3.22.4":{"name":"core-js","version":"3.22.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f4b3f108d45736935aa028444a69397e40d8c531","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.4.tgz","fileCount":3002,"integrity":"sha512-1uLykR+iOfYja+6Jn/57743gc9n73EWiOnSJJ4ba3B4fOEYDBv25MagmEZBxTp5cWq4b/KPx/l77zgsp28ju4w==","signatures":[{"sig":"MEYCIQCq25Unj75jzEIgJuWbpfUe/GI27Yq8cWpTKJZaOyIfEAIhAPFK2o2pRWpHsA9cJT58zdwFAnNaODhFwzz0IQjufB+e","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":984847,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJicB0TACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrBFw/+IzbDmQRBA2qGA/Pz74y/79MnTzXZ0V+uzvNWxdOHcokX5nGV\r\nm04bO14E6uIIPjdVi33HHz88cmfXmwQXV7llrYl17uHd6mZl3vWPrxjXjLKA\r\n9ULL+qTg/E0qvNj9OAxzEyRex1kXgku+fXCxanY6duCrcXvEBJ/nEH/RGapM\r\nIxjE6I2u/lsnSKPzw7EqjOLbpuLaSRjDTDATnxPD8d2YtasQOfSgzokxQ6Ui\r\ntI8HPIsvtRzKjBPLu9z9Itf5v54LOI7dIZ5g3iYHDiEsKDJWUdYWp3ycDawc\r\njnjWgnnf6quZp3jTq4EsxANAEuhZ9tGMKszM/4J/icsXMEcsBPbMzIJNVfo8\r\nx71NyY16YHgL5zMInNJSxWwi7zh0PBouth8KIhjBYdotC/dvbZl5/7Whiz3C\r\nNwQoQnnIk6hbUZZxGzx1rhPucSP8jFCrfRPv1rmrO6zWzzDhbUkWqSl7Ladg\r\nHrt42ToqZNDjRxCpv2zOhKCNqHadMv5WjitbQp0C7/hhmIMXbJAoojV6ogTD\r\n20l/qDaae00UApVCXdgIS9pcwDcjEoR5BQLCasX3COuxr/69yqw4dtKYct0u\r\nDIK0JcBlOCUC1v6um+9gKlMHQAe1G0MkZSwgIIcOawxdsDA2kJFqKCEXLlen\r\nA+dam9w8waJMQtrDZ7xn5zmy7eAExZxYMWU=\r\n=dwlD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"6ba79a5aada7286aa44ca9e4029cbb74dd84ffd6","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"lerna/4.0.0/node@v18.0.0+arm64 (darwin)","description":"Standard library","directories":{},"_nodeVersion":"18.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.4_1651514643645_0.8347155086500173","host":"s3://npm-registry-packages"}},"3.22.5":{"name":"core-js","version":"3.22.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"a5f5a58e663d5c0ebb4e680cd7be37536fb2a9cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.5.tgz","fileCount":3002,"integrity":"sha512-VP/xYuvJ0MJWRAobcmQ8F2H6Bsn+s7zqAAjFaHGBMc5AQm7zaelhD1LGduFn2EehEcQcU+br6t+fwbpQ5d1ZWA==","signatures":[{"sig":"MEUCIQClbyznumpogO7rJGgFQIhwmSR62/ONL24TFEhyF7vIlQIgOgd6tlya91VV1mPs4Qq3HIHXjSI2nB7vh9D9sPfxiko=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":986089,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiejFJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmplKw/9F238VElBKCGDBxgaPFHLoUbanbtXG5R3ge5uLpwLKyENu4WS\r\nmkT+qvT0wVA/9bTfeVIOXzrrX0MJ9NkXHfx8U/mTILdASG7W74rZzFWQW96F\r\nYfHrfkACillyQuQFGQWa7PsIC8fmK3Gh3PxsIV6sJraaf5ZXfnPiBbePU5ax\r\n0hkJVVU01BnlUIHeZXz8cSDOOkhoeU52q4ddx90AVJGjBo3PwLnKhvnK/WEg\r\nXDMIZ8BQPF09cX5wb/U+fU0xHCbFGajcpKNFWb2EzNyRjLSjV6rLUAJHnja4\r\nzoAU/DyFHqhFkdJCur+Vc6wXGIh08tHQeHbvs+vINm8gD5C2GI7lUN0eeAp0\r\nH8HeoES2xB+IS7G/d8q7HkXTTbbuuJ/o8onF8KYdvMMOnULDy9i6ATYqyanF\r\nsxmsvyJQ6eqgCpTnlhmQ8QwKREhlaEJhguGUGbnf+Pev381CQNWiS8Pzxw2V\r\nSPZPzBmnbv/7JAdnR0qT42EqyCU/YHdrNBo7wL+FTOn47NwAOgYm7JnlkSCL\r\nvd1AHU0HDcJc8HdDu5CtNdsk6UIvhX9uS7Fcbx7P8z90NfOADEOiuuNeM9wu\r\nFhsnHV9OMig/Yop4UaDLuv/cHzOyrTLpk99tT3Zio+G/3GzHWdlifPLDdAJW\r\nPajSGjVMGJfx+xgZe48NGnzXhWrNHGJD4ww=\r\n=gKYz\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"f1b4f76cdb9e7359c53126163bd804e2d2cf1f20","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.9.0","description":"Standard library","directories":{},"_nodeVersion":"18.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.5_1652175177709_0.5684428286772947","host":"s3://npm-registry-packages"}},"3.22.6":{"name":"core-js","version":"3.22.6","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.6","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"294dd824b4cae2c24725a36baa4a791ed00bb0de","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.6.tgz","fileCount":3003,"integrity":"sha512-2IGcGH00z9I4twgNWU4uGCNEsBFG1s2JudVQrgSCoVhOfwoTwQjxC8aMo9exrpTMOxvobggEpaHnGMmQY4cfBQ==","signatures":[{"sig":"MEUCIQDK7JMJBvpLQ0bL45MRYKHhYp1DmT+oS4JGPF/YiouH7gIgTUg01Gcpq5inEJ3FXEkfu6vr63K+8Mh+GERUThSVFOs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":986424,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiin0iACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpsShAApLBk5fkNJXlTzJvXyr3LURWiMlrX+6VDPyhx4TRzqTLdPUN4\r\nfAjKpKSOvdyLbz2iH/v6GSTsVOwrnPXUJKk/2HAGZ66J7RfuC+RL37S1drYo\r\nuz8L8klNOoHm6IGpkvRb9fDddkLu5W+yf2Nn+G14ajlN2CixCoYDHQv+PTux\r\ngJqFTkhOSp3nsib5sCRBVS9ZkAdLNpu8Z/plJKDKT6SGdWlazyzY6vv8oYxf\r\nH42afOouh+VNSWP+HineTO1jGw9aiG6jDGBWyVtyCmODGUqjrfOd/6xjAhMJ\r\njxvZpJ4s0/j5A0D48KuVAYpa0ynitN6XOHm81Dnlc0jzN2REunLKfu0RVW6F\r\nkrn+ulmE+Mf8+thq2KEQOFQ6McQN+zYeomzY+2G5VlGDbTTCcKW2/veKqDDV\r\noa+PLPPKA5lQZSKKRZYQ9JIESBsJbSBWw8XCUxErC+jU0jrZBa52exW/MOgy\r\n2/2xORVGx2TsBX4SChR3a3CNFayD7qTp8JEegQbVI2rVXDI0IR2/x0SnP0oz\r\nuzDfg6QqcCjprlfN0ZhvdFwQqoim4C+dAFtO1IfaSiMWKrFsSMEAAzUidZnk\r\npCAe7t6MPYIpFYNsCBJW8FEaPT46IyFug1pzv9tHHBnr9T9z0U2V0sSyBH8m\r\nwzb+PI4GNrGmh93u2G/WC+K707OtX4D1lhs=\r\n=ByaX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"d3d49a279c44a3759d9b060672a8799c3090e17a","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.10.0","description":"Standard library","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.6_1653243170215_0.46369405800969177","host":"s3://npm-registry-packages"}},"3.22.7":{"name":"core-js","version":"3.22.7","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.7","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8d6c37f630f6139b8732d10f2c114c3f1d00024f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.7.tgz","fileCount":3003,"integrity":"sha512-Jt8SReuDKVNZnZEzyEQT5eK6T2RRCXkfTq7Lo09kpm+fHjgGewSbNjV+Wt4yZMhPDdzz2x1ulI5z/w4nxpBseg==","signatures":[{"sig":"MEUCIBgDusxG0j4WKnUXv5qP1DB9SuQIKA25Peg1jaR0FFdSAiEApTyqV7yszz778fJ9aBU3B2kHrIPciDb/1940RlRix9g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":986547,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijOVCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpBqg//f1zQ1oby2IRPxpJWeW5o2zfL7K9ZjCWPfh29+ZHBFU36L8yZ\r\nvIZB+pmFRzLOTS09udR4TY3WLta38oF5BiQTzcdRB0XztV5OVPDZ5yeZPDnU\r\nynw+WaJjMsIRKxpZpwLXoQB5i84Q93iiUo6azlIZo1k+m+364EQbBFuFrrqA\r\ntE7TY1n4vEn/Sah5Ca49UDlCaWUpZ+r+A2RXkjd0dGj+FU3mGOfq0v3W+a+Z\r\nTMyV0CUV2Bt49p+lAixsLnWwqPiplAOS6Pdz6/1mDzLUuKqQmhLqLiLMfI/d\r\nf0dqjkYebezVxOxIxsUVkoqcKbkyySeFMvop7atI5capU5Lg8C4EYjz9XSHW\r\nSSQu8CqliycLjp5QPPEpZ/rHjNr6ZYa4IaMiaJa20gLAyzKsHBu7U9By7VhT\r\n4LqMB/1UJEy/8puUUMVbbtziTlzIEFMHe/fsYnwJ324fbEx9pCBtuNPRzEx2\r\nsUr1+ngAFoZb+Tzh2uyQDUAKJNdfDmXCeXxewVUyUUUOaFNqERp2w9gv695F\r\nTaQC9w9Se1tRRi5Qdn3FUoWho4tSECiYHACR2Y4Xg8OTTO1fHjPoa2uvxVKY\r\nit6Y30K2du4y0+F6ouBgc3sneZFeH1vT8p8uFeeerkq36uozzGMlVQiZCrDs\r\n09Q5m1N2tPJE8Gg65TOyB/fOhC2gwL4jRMI=\r\n=H6ay\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"b958991fb5dae6b69883fb724baf923bb5385e57","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.10.0","description":"Standard library","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.7_1653400898102_0.31757588275676474","host":"s3://npm-registry-packages"}},"3.22.8":{"name":"core-js","version":"3.22.8","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.22.8","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"23f860b1fe60797cc4f704d76c93fea8a2f60631","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.22.8.tgz","fileCount":3006,"integrity":"sha512-UoGQ/cfzGYIuiq6Z7vWL1HfkE9U9IZ4Ub+0XSiJTCzvbZzgPA69oDF2f+lgJ6dFFLEdjW5O6svvoKzXX23xFkA==","signatures":[{"sig":"MEYCIQDLRUwQJtX6Is4vC2FIZV7h516Mb+SPs/yhLZ0/rxXA1AIhAJziLCZJHEBR+TT7TdPnd+3lJhbO6TOIKY6ZF6UduB6F","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":985111,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJil6pNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoFFxAAh/yXiXqV2UyWpWO3kPlB8xaldY5XXf9Beb6dzl7L+LbvQOY4\r\ntY8k7g3k+we98+bnTS+kfrmcxyAxFxz7ZbQrt+maceoopP4/w6KmEmSIiwo8\r\np511npvXpZawPLw+dgD5Nh085bWoKOj4TB4U+uGKm/c+xy59sNyMQK8x46x1\r\nFqqQM7PAaIAdoHy+W1x6VqWOTWl0xXKhyPv2nzqs0xX/d7QRmvoN3rohIydD\r\nAVpNLu8YD9G+UkvdI/G7yTNZsXZF6pnQ/kmTzxJbCAP2dqwxHhh2ipHbR7MF\r\n6Tnn31OVsmonUPK2DWtiwOqW8J9MN3nnZsVCSHesjRJ3mnp8iTOke95KnXTj\r\nYH6iXvWbCSiHxN6ETJiGGTX2DEEl5chAsN6lAjfel4Eu6Ot9KJ/7YUamXl3q\r\nyj6+RpdcTyXveDFf/i4cQNa8jlNpTdWZa6bDoUeIrbSzRzKrcGCkK5jVgKCA\r\n/eOLDf+4xkzw6TbA8pVE0QWnaoLo0m1atfM5/UyrEycCMfN5eGelMABTLFAZ\r\nyJsQzhhafsxdrKERwvB79bNMCyEjmDBJqWB6bcgHf6A4V9DlXabDh++MFvpm\r\nOgVGi2g3Pm8SVpFMltZrYEsHXgpQAoFMG6PZsUFpGdkSsY53VPtDpi/VA33x\r\ncE7PpZB8X1tewuR9s6n9/Oiol9ljtrBTSS8=\r\n=10pR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"18a2e90f73c7fadd137803d440fd79fa5262fd00","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.11.0","description":"Standard library","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.22.8_1654106701005_0.28982864205020364","host":"s3://npm-registry-packages"}},"3.23.0":{"name":"core-js","version":"3.23.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.23.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9e33448c8fd3b02ad023d85bd6e85da6335b5cc4","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.23.0.tgz","fileCount":3085,"integrity":"sha512-v2/hZoRcRrvQiBoGsHwmRdr+S4oICKcjA6xb2qjVurin6TpcDC1X2CIDa8rdu/d5n8RT/Sdoos2IlnpQ1rXs5A==","signatures":[{"sig":"MEUCIBLQAu+u6NsMr+dkx0/ElWcWeI6MgoVZtpqoX8fz8fqLAiEAnTvP5/2WbOak90HsX8crF3W5okPjOj5an9EfB4yA6jw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1001607,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJip4PQACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoqXw/9HwRzjYwddx5gc6X6yzp0p2E+JZaPFNON/SScuJjaim1SKR1A\r\nLZkLko22yCRavDdx+4JC7n12U07OqnOnMr7XwdSi2XkGKXGi6sy+d+OX+CPK\r\nnK5VwyVqcQYkViGDL3yEMAmrBcaac/8+eBR393Vg+GyDxn1ky5brqMIjZTMx\r\n9rMNLE7l9Eob3PtUGN/lLAZkTS26xwvvJ+bShtq2SrmeMsaDDEiBX+Kq2Feo\r\nqEx6MW3K7xiBJ4Dm4Wiy1rUM+mSysiR2PDUYCfwFrZYiaokq7Sh0NEvtYjXL\r\n8TTZVPAJKv7DSoIAXAqcIACGHDpnZhkSzCuRA5kX0ZfC9rYlrRv1IeiDeZtr\r\n/8/Qc8MQEoTm3SB7zZoVbyNrW4x8C0+SXypozdunj2dKCIlY+Q4xX8bnp5D4\r\nI3VfzSD5Yi2/r90ln17mhDSyLyl0gH9WuFGygRis6uyyJg+/4oSi53XMBgty\r\nVD7oYTmEeu8OokzP+Zjlzmu3civbR3Sv5sHCIuAIUGq4qAgMG4y6Yz/IdRn8\r\n3EokJnyT5Qcbl85YZpw0z3RChpdoWMDQqm/L8upKH9g7Rte2B/Edrw9/o59v\r\n7PgEUs0d+bSAXRBdMP/Xfjk8JC0JJ8d6oDsFVgFnaRgKivDXTLUpEQX1/0df\r\n+0UyTVZZdtcb1Qf36JK9r1EjeESVPYfUXYI=\r\n=DKRK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"54fcdb8b35a6c83ed7ea7db5e1812bec1fcb9f5e","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.12.1","description":"Standard library","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.23.0_1655145424058_0.9907688853319454","host":"s3://npm-registry-packages"}},"3.23.1":{"name":"core-js","version":"3.23.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.23.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9f9a9255115f62c512db56d567f636da32ca0b78","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.23.1.tgz","fileCount":3085,"integrity":"sha512-wfMYHWi1WQjpgZNC9kAlN4ut04TM9fUTdi7CqIoTVM7yaiOUQTklOzfb+oWH3r9edQcT3F887swuVmxrV+CC8w==","signatures":[{"sig":"MEUCICL+NHhP3mkFi69tzXDji3p1q/KVKna8ky7ORucZT/wLAiEAq/Kz4bvIR27EYV9dGzSNIgpLx5NZ8el/U0GR8r/5NaI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1001766,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiqIwcACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpcOhAAj8enUMSp2Q3/7zMuSza2lRdf8xGx/iKNFAUAeUaJVd/8TeMB\r\nhCtIwPvTepxFst66Gn/XW9JTpSbe1fWBx90R/dotgL03bVQ6mkiDjcieJePi\r\n9HhoRylGFiS8N9EB55AVm3KcvI7Bi/6yfZyxkZMEjSc06fUpkH3c8EFeP4bc\r\nRHQK6oi1L+FKgiVJAX/YNCdDg8KGbNd0Huq4sgpmVbtPDktrr6/iwBpxgucd\r\n/9i2dN1Z1R4jZNQLwNBixv0KVchjnb3TnuoZcfcrLcN6TjvN65wClKU6IvN0\r\n1YtrCAk/Zr/NtDPeKo8t/ztS1f3clNTGj2sdlv+RmtuWaZ7bTLdRjywlqhpi\r\nsN6hsNMT/lkl1OaPiKNshWW8F5WTJocAgiltre9ypI1qAfAYBHpky5LgEwdS\r\n3j5s50A6KyI6C/vUMrKpQpTeU5XNDrjVl/VQYE1iOrdcwCajGnsXrq5mt1t7\r\nDysG7pxu6Z6KwpDtOJZjlqnuOFVY8koQlmchP73b9m7souUM0HEAk0DHd1YJ\r\nF1Z4xJ04yJQxwaTgFCg2P7f0x1OrPEP6s/SxLuZe6Xihsfj7HriLR7Xp+Xus\r\nL0wJ6cc+7WjGMYm9fed5khYR9UZBwO+nkD+NFVrgJJ9d+4s5LWur4MLW/31X\r\nXj1im6g7IxdBzlZAjGFRxV4qLkDKcO8zSmc=\r\n=YuGg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"024e54a99608a7def2b44362db6729f196e202b7","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.12.1","description":"Standard library","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.23.1_1655213084437_0.012486631907243195","host":"s3://npm-registry-packages"}},"3.23.2":{"name":"core-js","version":"3.23.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.23.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e07a60ca8b14dd129cabdc3d2551baf5a01c76f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.23.2.tgz","fileCount":3085,"integrity":"sha512-ELJOWxNrJfOH/WK4VJ3Qd+fOqZuOuDNDJz0xG6Bt4mGg2eO/UT9CljCrbqDGovjLKUrGajEEBcoTOc0w+yBYeQ==","signatures":[{"sig":"MEUCIQCTKBFDYtrBVT0fm/hKWkkY8y36KPGU9QD4gcXk9KScawIgWZb4GHOEaEW/xjXWWXYoH0fsJm/oJCC1mFL+XjGu55A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1002041,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJisMVqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo+7g/+KLM2okg4B9xA9lnIfYCVqEchR4W8BGE9HvF5CbMgIw6i7YTs\r\nmavVJsgIbc9ZfmqVoqwX1RoIvEanPjx7SuJU7xhjlN7Jxe2bg0FqGrKTBVTl\r\nkgEanKS6WV1KA/zQaWq08tWMSF0D+GMbaLTCQrOhlvX6KT3hKZ02wuiykmQ4\r\nDdkJVu5z0Y0CLzCv5tt/CaagSho9+DqYrePNv7TkEAz5nQZiTw8njKDVMHA0\r\n3G54D8NzINvI5tnYdyRwyVutpowjvuEYJwd43kA1YpvW7hn/hjTuaBZSWkDw\r\nYC/K/YH0fbJdTXKnF+kovJqk+8JCgEMIv+HW8pa/qBzdNPkl8rVpDtNeswnQ\r\nMlWg2C5JZakpl5/mO6zC+mmuKt/l/qGS8IEc29i+rQRdFV1BN6YIHODc6PjT\r\n9dTkm1jA4sXT+T8Qe1McjDdEbk2kf2K1reRoTo73WBmZpFc3KPQCP/6ok6Pq\r\np7AIRj5Rhy9eE+HAFdqQ5My/eqyFQw4ACu2ibFzwnuHjA1pNpkeL3I7DEfNH\r\ne2v+wM3iC9F3Iz+FEwWI5El03GZG7RA4V7H0+uKKxCDcSVbHrXDBdItU2KYl\r\na7tpZZZGtJGvu/ty9+3ng1CmPqNZ6ZBNVrd/x6ncH5iV4kkK5VBHw58/AXBV\r\nDseIquSnUTj/ldIsu1vDGCFThVc7ZKKxwz4=\r\n=WE/8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"4c29e0a8fdb9a39cf4b5d102d4775f3f0409f76f","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"deprecated":"core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js.","repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.12.2","description":"Standard library","directories":{},"_nodeVersion":"18.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.23.2_1655752042543_0.537188676473864","host":"s3://npm-registry-packages"}},"3.23.3":{"name":"core-js","version":"3.23.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.23.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3b977612b15da6da0c9cc4aec487e8d24f371112","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.23.3.tgz","fileCount":3085,"integrity":"sha512-oAKwkj9xcWNBAvGbT//WiCdOMpb9XQG92/Fe3ABFM/R16BsHgePG00mFOgKf7IsCtfj8tA1kHtf/VwErhriz5Q==","signatures":[{"sig":"MEUCIConR1IaLAARjHT5m0r5MU98EtaMwf6WbbBnx2NcIQAZAiEA12NzuoMzuTrWKJR3hF51YNz89px6oXibEd/DSxLpJqU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1003266,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJit203ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmryIA//bebDdmj6ucqez1tX1rCdFXcHsamnjA/4oBBcWEmX4FqwVjVE\r\ndiPAZDdNwWB9e8WliN8R9S8r1rY4A+FiqBvx7db8g4hg4o0X+HTAboHcMKHA\r\nBgs2bv0ghVtodNaq/QhUwagGnCqWZxGXlZn4Bs6URf14opBpI8U3+1plDohV\r\nDiw7xPUobW4Q9qg1lR/fZ3j99aUlaiqRMrL4MDnW30DgHLZAP6sxcsrqIi8E\r\nglBwIaALYblnN2qGJJpxG7TdnVq/K1//LITHTW4XpNImlKcvSrQo7MPuwgJi\r\nvlUxbMQJdiHBQHdIQsR4upXDFE6Fntn0NWCupxvOOKvVhCVoq/k+TAHZPX3A\r\n0RaA0gfHNSzOW7RiDzN33uIulSpJJ/fo7do9KGUjplq8StU39eU57JbC0Vmr\r\nDkbe85NR6JhHxLy161AtamTjjV+07SLV7M4h8XLGAFGRpf9HOgKHKL96L89Y\r\njCX4jP8EZjxS4AG/HL28yhoqUBuQzO4M9A5RL6N2q8YUN8GnCNlVX4HPhoFd\r\ntOBl2eI58o9N/Kv9Xr1/Cjh8D9Psmdyqbd045jvkKzcX72ZD7l6yxkJBUKBs\r\nSE2jL8mv2TKO57sxw+SprLgusFJtOvJs6jpaOU2gAH4FX1GPKcw8n5yvVuF0\r\nW0Vq0RNuDsAktqP+8X0saiSdasbbTgU17Mg=\r\n=fkKq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"adc99709d9592c3f4cc63afc7428c5900d9e054b","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.13.0","description":"Standard library","directories":{},"_nodeVersion":"18.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.23.3_1656188215152_0.2268930371770339","host":"s3://npm-registry-packages"}},"3.23.4":{"name":"core-js","version":"3.23.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.23.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"92d640faa7f48b90bbd5da239986602cfc402aa6","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.23.4.tgz","fileCount":3086,"integrity":"sha512-vjsKqRc1RyAJC3Ye2kYqgfdThb3zYnx9CrqoCcjMOENMtQPC7ZViBvlDxwYU/2z2NI/IPuiXw5mT4hWhddqjzQ==","signatures":[{"sig":"MEUCIFta2YmJdmYevacGBz7qrKRARWAe5O/OUrMfZxEvw/F1AiEAzg/jmD+MV8qT17lq8SETXfX5VwS6FneJx9bTAPejwCE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1005838,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiycfYACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoCoxAAiVfzwFpT5ik24xrmrntnC/rcPRMeyiRkI0QaHibTes6/mIX4\r\nbLWWA35QbNDQjZ7b78WzEweHGkWIFggIJoaHDfZad5x9t8Zvmz64I6+X6cnC\r\nvj29mZAPnlE4pi8bMk1xz7ORJc1YuS0jntg4rs1izviISuJfTiIibg5E/Q1O\r\nct2uDB3F8St3AeZk5EZ38E/sWXmJRLkBD5u7J3HDu6EA53bpwp2b16fP+gxd\r\nwdDCz3SSQQ7Oe+8VzJUzvtPQ5hTyZWq8hinIcxDagie7Hx5em4yQ9Hm+IbLS\r\n3pBntF57e1wukKGgFQwGy5n7DClJoA74w6wPXrySndejsLy1mSg0K218nfnp\r\nbECQZ4PHC8uUMscpkTwIZo6WzVFft3EYU3rp078ke7wAkNIA8Dok1NHa6DXX\r\nKpV1x5CsXaWz2xU28F2pA2wJw1vr6c9cZXbS2awCi1rZqUzZaqhhd3NFFgO1\r\nX3dQNcFIfcboRU3yD1moHl0G3VlKwS2KwlbyoCvhJFJqj9pctla4AgADz/H6\r\n56ilpS+LPOPBeqRJCTFazRs3edxDoUU9gy4QTsiKADKWnm9y2kqxVfHeT0nJ\r\nqLqy4tDgFeKQ/tP2d98U6FQEvil9tOesBAofoCtRZT4Xp8aY+qsMiOq6Z1vy\r\nM6xOdjXrWhww3AQOr0z3Q+NyBj63SYJoqic=\r\n=Cyt9\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"fe00e9c8e220a5e46b1c85d6af75863adb0d5523","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.13.2","description":"Standard library","directories":{},"_nodeVersion":"18.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.23.4_1657391064533_0.1680474097377287","host":"s3://npm-registry-packages"}},"3.23.5":{"name":"core-js","version":"3.23.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.23.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1f82b0de5eece800827a2f59d597509c67650475","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.23.5.tgz","fileCount":3086,"integrity":"sha512-7Vh11tujtAZy82da4duVreQysIoO2EvVrur7y6IzZkH1IHPSekuDi8Vuw1+YKjkbfWLRD7Nc9ICQ/sIUDutcyg==","signatures":[{"sig":"MEYCIQC2vlXoL5D3Hu4MprLKIPtVCBbbqi4uDKmEub3bv/QA1AIhAJxPjv0R/jmFR+0ZiLEa8bSX1RYbRKPtchAr4+6WjgZ8","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1005840,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi1F/SACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJTA//eKWhvSiXTXkPpVLwJSh1SjFldB3dqTxGOmRaLTFRMdqwphFH\r\nWGgF0qJ22Ur8UQnmbxrlH5IGqsRvIQ+YZff263iCO6KVs9mKdg54oBCAdhco\r\nPEkc68WOA1/kJ6hhD0uK5eN/skIjTSItlt188TuLArjtNLNH1ywuYnbmiYHJ\r\nQ6tlDi2tWB277FeCj5RTiXxFQ+UBz0H+rCBLTZQZjKIx9E9TrRbAVphbSKid\r\nGIRkJ8Dc47Z+B1yFMZz2e6fGvE8ZRO27zvT3sFQAOHmdpoXzFhP625sPV73+\r\nAVkn9Ad4ezgUsRgKiHz7w/hC9tjRtxdQuFQLe8xAmakPxi4Fi/jAQxqYyxFk\r\n1lspEeK5WtorYs+pg1Vu80wQ3MZxXcciz6EL3lss+Oq3MRROYy0iPqDuAQVT\r\neyYLRsmxNawwZVA6AREt6rxpCW9OhhHLzOHp5U6Gj2jwuAqm6MnDp7AD8O/W\r\nH9fMFfeSjOoLBOuVPwgFrbSf5DVtTld13fXEhhyCN4A2vTYD+XrLLi5IgaT9\r\nh27VlxCj6LTCnuZhzH7OYSW6xJFYd7g9MogPwZpvhRI+fJGX+BH3MEM224Lj\r\nIqpolBJdDDUVYfnqS5HNP+tgBC38EKXzDgSNTeFn7qbZlQeg/hzHm5PoIwXV\r\nwMVj8Tj2cAt91soUtVcVOfx2ZligIm7yjHg=\r\n=iMVl\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"35bfb87ed543b7f89a767121ce484a3b93826ca9","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.14.0","description":"Standard library","directories":{},"_nodeVersion":"18.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.23.5_1658085330641_0.846517132655727","host":"s3://npm-registry-packages"}},"3.24.0":{"name":"core-js","version":"3.24.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.24.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"4928d4e99c593a234eb1a1f9abd3122b04d3ac57","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.24.0.tgz","fileCount":3097,"integrity":"sha512-IeOyT8A6iK37Ep4kZDD423mpi6JfPRoPUdQwEWYiGolvn4o6j2diaRzNfDfpTdu3a5qMbrGUzKUpYpRY8jXCkQ==","signatures":[{"sig":"MEYCIQDFBeBVU1Y2Fw0E1YCK5GBjjiatqlkRDrYo9FECd6mV3gIhAKyqJdU7vySWlU1VH1dU5z/k39RN9FJpq6CUVZ2JCThK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1013443,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi3iLZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmraGw/+IgPudQa4B4nd5h3KYVf/6wgWDluxQKxqKAkLYxhaWgVae910\r\nM7re2UUIOq12CJ5gXBNLqDkvE+mBWUOhcH4h6Mh8XUEsVkhNzlXkJ+S+f/M2\r\nRv4pmsYvi8PekKbA3FdtP0oQLdyi3EJH1Y4MT9dGwiFEG/PWrMvMldC5dRYw\r\nolHcJhSGH/4B5aHY5BF6v8ygoStyrQf5CSiG7dhAKuw5v0CkyurO0oXhIn24\r\nHHqr+GWZw1x68/iuoTOQ7+FZpT5Mxo7aler+rPRu99zbHui0h0LhEedhqpvT\r\nojT+Kie0QspaTQgHIYyE0UPgSO0WmbGNW8wlzODEOOaUVsaQ8b94yc3jH2ej\r\nGQRyR1nCy3WKvWcMnE0fyKDhqQzwLAeaXqFk+awLiOJNVwsOO7NbUtC8EHkJ\r\nBdCoZq8vdlrDt9EGnwaTas5x9IBalV8a9MFBSWslH3byNedkOd8Lj4OBixZW\r\nGaMzPVlKNmij/5FcIe33TSruh3xT6EJxZyiDPKgkW0d77tNRz/a/78ypjWUs\r\nRKUGCO7W+GA0lY/KJzaitu1wFlhobRH7xSZI0vxgapXHCaWZPUYyh2lSS/5g\r\n5u/ehLQGOF77lh8RY90t20bh9kVSrFtKXnTn06N73b8eBYs3K5gd6HzmJBpz\r\n3Rlm1y+wDQF0FwOChMzkKPHgKhmfG+c8BlU=\r\n=a1Z/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"cc756d0011639aac2d74912413f7b5c695cfe72e","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.15.0","description":"Standard library","directories":{},"_nodeVersion":"18.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.24.0_1658725080878_0.16106751124459118","host":"s3://npm-registry-packages"}},"3.24.1":{"name":"core-js","version":"3.24.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.24.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"cf7724d41724154010a6576b7b57d94c5d66e64f","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.24.1.tgz","fileCount":3097,"integrity":"sha512-0QTBSYSUZ6Gq21utGzkfITDylE8jWC9Ne1D2MrhvlsZBI1x39OdDIVbzSqtgMndIy6BlHxBXpMGqzZmnztg2rg==","signatures":[{"sig":"MEUCIQD9+NILXz9y+BUzQp7Bbj93DwQpKGHftBRhmItgbue8XgIgMcD48FTCh1Jq81IfiDbTK9yUVIGq9cbYYxDFaY1PR4o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1013599,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJi5CHWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmon9BAAlzfYoJMdlezplPMrVLh1ezXdzPuzrzukDMB2OWWsrKewhrZC\r\nsCqh4h56b+j9g93Lkyz6TnzCx9TXKgT1PycE0ybdOIDZeLc9O60b1Xc1xUvZ\r\nNBAfiJZib9h0xufEycCHLuzbvHtATn+/e3scIfNdQZmjv4GltwduCe/XErxT\r\nhKLeZUYdU5iNlLPNTjEPrH0HCuIliubTN8+TmdPoXc6khOj2g42VaxJgPG9A\r\nDWHiYOsTGo2eBNjvI/11n+a2WPrUK8toPHjweHSv7/bc7D0D9pxazTuK9BOt\r\nX9Qd43Jcm5qaxVfyIglhg6yP0QCwlxnhqvkNSJGmegIhJl82NcxKea6xlkr8\r\nnbG0OxFYIYUhIJnfC0MxahqnfUG9K9nJcSD5DgGKwT3O3z11Yws5c6PS4+8e\r\nRL93hvNr+aOjM/MJKHaBEWMdtFUh2V4TjNqcj5ieQGD9oASqWMt2bieSgJeq\r\nileWgDd34viX9d9Opz8pOoNtnXtMJrpep0GTqzEoRXoasjwYrVTmkD/iQ1mc\r\nXW2VuWJfW+mx1CYkTTaW1eX6BEGe3GKRwdDqVU1sn8mUYgy1UUYRMnUVTSVF\r\nWqNPj5tuSrAA5+SxE43v3sajn/nOeo/v4RV8MOKEK2JFnt6p/3WiTFvjxq8m\r\n6vUaPuDZdG0P9z7HXLqIG2p3iK+7QuJlkzE=\r\n=BkTg\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"e4b27bdc440039ffc2d29ec97628c3e727108a37","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.15.0","description":"Standard library","directories":{},"_nodeVersion":"18.7.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.24.1_1659118037901_0.7252713601006953","host":"s3://npm-registry-packages"}},"3.25.0":{"name":"core-js","version":"3.25.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.25.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"be71d9e0dd648ffd70c44a7ec2319d039357eceb","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.25.0.tgz","fileCount":3105,"integrity":"sha512-CVU1xvJEfJGhyCpBrzzzU1kjCfgsGUxhEvwUV2e/cOedYWHdmluamx+knDnmhqALddMG16fZvIqvs9aijsHHaA==","signatures":[{"sig":"MEYCIQD8GtKHOy8sBwvGrj+W4KxKD1CqXdHutORogrpPd9o4mgIhAIcHPAa0hkpfT01tKt9v+L70cf1ZuMnHZ657RbSd1jS3","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1019727,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjBohNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrJshAApE4itPqJ7kpcWh9HhJZtvJlqwgafANO+yIQtwWxd3Z6ergrm\r\nz32LzqAy1AQlUseofQ5T0iEL1g8JcZ+T0m/rJ0LaQyCLMrzIJIk1SIsFwoe/\r\n8hEW3MtMyM8sWlPQjWyrbzkJTv1nukUsvCXCo4bdXnN6EI53lNRlcoRb0/iC\r\nA/0jQsc9BOQLNY8VCc6XtiZaoLBOWQKcmTRyNb0QuHxig2HC2n+XZ1N/5w/G\r\nmXh1pMOOrpeEQM7Ja3KF/GKWIZBibX65W+T1LA0hZX+EkRUBkEbV/DW5yOAP\r\ntV9G8PO115k3ZjbTAvkWWUj4OrOcArnDOv/ADTsSTwGwDoDobdN1VxTeFYCP\r\n+BHa4GHj/cPWyDIXKDp948EUZuHo6mC5OdMaXPAmQrt0fiHFAmTEs3F97OeQ\r\nMsqE0ZNAG3bAeLOGARWASgzlJtNNUDWj0PzaY2Y24/ZBObhPxHl88kHsVBmx\r\nvRfc5Dr3jun7n3hexrhLZNKTHA2Tm6aHwPg1EHj3wAXr1Xf87fEMpbFpe5Ps\r\n6jIcFmYDRWZpTIBW1DRHURCcBtDVT8F+WES1YPnsHLJD8ZP8+fXUk+uH3cFK\r\nzhG1qKARJGZ+YAFtKv6dlv7J5HZ6Uiy1i7o6fs6FJF5FSDn+KME+bid9hz9Z\r\nGkeY9CpdRrZ3Bvy50Zcsf6fXzb+EvES4xQo=\r\n=JU2X\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"b61f3c334f7a3010f376eae4fc465e68232da102","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.18.0","description":"Standard library","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.25.0_1661372493157_0.6231589834975173","host":"s3://npm-registry-packages"}},"3.25.1":{"name":"core-js","version":"3.25.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.25.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"5818e09de0db8956e16bf10e2a7141e931b7c69c","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.25.1.tgz","fileCount":3106,"integrity":"sha512-sr0FY4lnO1hkQ4gLDr24K0DGnweGO1QwSj5BpfQjpSJPdqWalja4cTps29Y/PJVG/P7FYlPDkH3hO+Tr0CvDgQ==","signatures":[{"sig":"MEUCIC30482nfLpBNrFYjfrmGigKvHTz/7HQEO8wqPoikh5FAiEAvzs6+OlFsdWx57PA+6hafaeBjGiEn5RvlTvfoqz4kvk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1022452,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjGP/rACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqEKxAAjpzAly/8ZuvEQOIGFL7Il76Zugc3WwFdpVUOFAgGeclhMJYu\r\nf6+PojTOxM9FH1m7ZBXBx8AHbp2CCFqnLJOh+f3PUNwl2BJ0AGXqBPPLBdd2\r\n7smvNC9p/3WYkegi7vIHxCS8hVkvD/EIgLZ0mLrPsWGFscxK76MqPHWZcVb7\r\ntD5grfm4miV+J90EG0H1KjhyoQtsFUaUSRuBh/ccTe6MppCY0OtwKJDykW99\r\nRYGhieFaCAulngBNeUk2/QjE8IzoGMoOA5QVuA5B3p5lMK3KteQ4VvIjW/34\r\nzJa8mJ1artw7jlKMetFtlvYezIM5v9wjYdA7RQQNFWfNosXOuUCDPYeFybO1\r\nwH0WwKv3le3s6fpg+zvxBTSQ3J1UCFt/OfoFGoe1K5A7FDW0t+EBdPWL61av\r\nWOwDPCng06bfJteeL0mLalCzorNYiuXLKzS+7jRy6bERowzTn/YKvG+e1zLr\r\nl8T6b3XGTXU+DVdAzOad9kVnaTm+SC7MRZoskG+PXcsHC/57y5A/IWdNfRzY\r\nKuMxGhUVlI7/2IQcnHIJw9pNzPc10Fstg7Q/n83FIeKhF7sqp/durnlKQxdD\r\nNgKePXZ4tuVc+POPZF+z+9LtiDgeAtjiRR/HUVZaHu4g8d02OepGEKY8Vo8D\r\nbjsq8GxvC5ThM9/Qzv016YXErTnDKjSseEw=\r\n=lg68\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"3c2e601b9a58af4dca0cd13aa943ab66b3deb83d","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.19.1","description":"Standard library","directories":{},"_nodeVersion":"18.8.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.25.1_1662582763420_0.7614567179268652","host":"s3://npm-registry-packages"}},"3.25.2":{"name":"core-js","version":"3.25.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.25.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2d3670c1455432b53fa780300a6fc1bd8304932c","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.25.2.tgz","fileCount":3107,"integrity":"sha512-YB4IAT1bjEfxTJ1XYy11hJAKskO+qmhuDBM8/guIfMz4JvdsAQAqvyb97zXX7JgSrfPLG5mRGFWJwJD39ruq2A==","signatures":[{"sig":"MEUCIQDqQkLRHb6HufeQCj9QAaVJItyleUoK5rUJsKtd9AF6UwIga5yUu2p4nldLTIffQrrQbK+EEa3bTMVCbMcObVsG7h8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1022636,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjJ2B0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpx5g/6AzvDVZ+Hkil5VuaJDF3JqprhOVdIYZTDPclQuR21kbWfZZW4\r\n9A8bhE/ttYZi56PQLnj6XGu3bDUEJ2Jyy28GULmHZt5SuvNHmF3s5uQvH2JO\r\nc1xYugsUzJICd2HmxsRQxpk4xyvbI7VRZjwC4eTV3CSAqGWNzR0UkSwpfFaY\r\nwdg7VpZZk4So7h6jv/ogX4y+Mz2DL/pIFWwvDO3EN1UjNpCpIDF9rLvi6gQs\r\nUUhqdSFqyqPH9ZUS5L8H7g9Ib4GtSNdcsvu4gZlrACbulZrf+GMkwqmm35rs\r\n+Psp19LE/XsVmFIqRM3y++j4w49VbfJZk9E2+huvGtl24WzPtPycM1nw+29U\r\nRisp4F14EttWg8e9n4DW03yl9dsoeqG0km9qFveDDv2DksMm5NAyfUzpgf7G\r\nD8XBAJHsKIMCUM1bTTk1FLZ/FQzjTMWXWJnWynXqhsRhoTFlsz2ojfoz3ion\r\nlyQ697O73idqxtsPjU4hYoIBQFXy5k+aIqXPiHIXUR+bvH+BhJG4eG1/BvOv\r\njDETxsCh7MrqO78y67/pl7u+/I1QwNAMO566kL9sEiH4buZYWrWHvRBQtdZB\r\nkjFbkghOAcXCDjScReQfqyKB3ynmadmCRib/JmCtH2xKWi5eV/RuuLAEkIBs\r\nMCLoXKNR96CWT92T1AiMSvKIjx5UsBDUCWQ=\r\n=jnXh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"77771c7325763e27f39896112764ac716544fe60","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.19.2","description":"Standard library","directories":{},"_nodeVersion":"18.9.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.25.2_1663524980386_0.17322156009640532","host":"s3://npm-registry-packages"}},"3.25.3":{"name":"core-js","version":"3.25.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.25.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"cbc2be50b5ddfa7981837bd8c41639f27b166593","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.25.3.tgz","fileCount":3107,"integrity":"sha512-y1hvKXmPHvm5B7w4ln1S4uc9eV/O5+iFExSRUimnvIph11uaizFR8LFMdONN8hG3P2pipUfX4Y/fR8rAEtcHcQ==","signatures":[{"sig":"MEUCIHPbMYipjcxGb5tnBZeJ96L31hpA6c1i8v3kUil7kgrWAiEAnkTC+MXWyYB1C+4lrXbovp4WJlLFB8tojuSmmhEVjXI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1022526,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjMOCXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrCSBAAkX4USeTWeoiCl3XBUvwGZ9XJJHmH3NqsuwphFXxM2zwKmuDi\r\n4mwv+dPi150oA8gAco0fe2m86ajhb5tIxqL511tcObzGKDWFZ5EDClNupRsO\r\n9dSdHPxnzwOdTImk3GB8nk/wgZLo7QZOlK98No7ibMjw7IXqy4deuC4Y7b9D\r\nD9FV8wi4pNVaJVmtV+a6ATCsOgH4MYCTr2/1CsWdGUsnjL+m1Wb5pn4cfTdD\r\nvPLs1IWaww/lySuJACqkU+ZY944t2NCylDKzsdt6w7fBai8m0KTZeHZChtwF\r\nvNIOw5nB+JnCOFhc91kh0c+NrseyzuVZdAX5vNEQXXUJA4GJzASvuPcOdhVF\r\nh0x//hALmSkalK7/Sso+arklZIpM/yWQZlSX32E9X/g9GiVxOodj0NM3gPMi\r\nkmc8e5DlGX1Z/TL8JjQzu5IdjwRRuxhSFPox8VzHfimufktgu8JxeL6dTey+\r\nYTRyvYY7O+pu5dkcgaAqv0jM1ELU9pPLWOoSCl5ynCfyUJVtVFzXsdOp2Kmk\r\na+PdiGerHHHY3i8ic/+/rH/dPz4F8FwxmP3T5vFx8C8AJoPRZOvh7XyRwdSX\r\nAsdvLDhFCtY/f2d24ApKxlONb42x53d5YYv1c4Gzt9HAeUrZIWkChYSnnh9T\r\nojcQCHLlJ8HCK1+vNWre1adGgzN0s5U+/S0=\r\n=OUI5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"12509bd97a7755ec4b10a7de2fbaa2a7e2845b68","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.19.2","description":"Standard library","directories":{},"_nodeVersion":"18.9.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.25.3_1664147607343_0.8639400074204167","host":"s3://npm-registry-packages"}},"3.25.4":{"name":"core-js","version":"3.25.4","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.25.4","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"76f6bc330a79aafbaf77e9645293351ea5d09b5b","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.25.4.tgz","fileCount":3107,"integrity":"sha512-JDLxg61lFPFYQ7U0HKoyKwVUV63VbbVTb/K73Yf+k4Mf4ZBZxCjfyrWZjTk1ZM7ZrgFSqhSIOmuzYAxG2f/reQ==","signatures":[{"sig":"MEUCIDnR3YyxAGAKyz2f42LqxmMubD0bhHyN9hyd9vCVu5hVAiEAtfcVjtWjfy3EfKeVpU0o5UyOniaTsfU7dZmrxDT9rno=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1022961,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjOdJoACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqnfA//SeGqKJ2zm79LUdfX/5xGjqUUXGfuXO81n3TATZweqoKwiywV\r\nGGxnlCax+nuB/gSnJSuVd058hvUeQZn5o+1v8oJNdOofNLXNYOw2Tld0wpUE\r\nI/cdvXM4xI8jSp4vc0aqMXIcW8XBINAY3P2mZJAvhSf+jfhiYzWRfzJ0mli4\r\nHf37N+hgmMlgO3ECaGJamtQ96Z+xaA9ZW71//6V2dYnD+M1hL8QvbdTkiSkv\r\no57YwCZ/LTVka1Ye+pR5eO7DU7yjdhRdiyDd6QLj6foqcD+GA3UNKKzFd3B5\r\ni9xTiPaEI7B8tlZploAFbta3fAejS6FDtZCvvDspcrifhCAl14W+P7LRUQ5y\r\nvqc/ztmi2L8Q30kKVVdGAYgr4hm5ds5PTEEnz1YiG2BAtBl4Aq1bTpE4+sAa\r\nGsB8WD9qHi61PP6OKOoeVKG/5RacSHzi4gbizh1Dr4haj0kZcjJ5jk5IoiQ0\r\n0Oc9Bk66FihHQTYaTJ8zTN6OPiIRMtW9WoKjt/7xGnDF2vhIqPr3AI03TPGR\r\n9iFEWLrnZByAieCx3O8Z4LuLDWgJGawlpqNkBjNBxJ+u7/IeOVyc9zfoXm2r\r\naJf40U+DuQL1suLzJYzrLDqQuKG6ZeZzjeob4fCQRnCG/SP6tHcVHK+hslpJ\r\nMIjR2Y24hbGl8mbhj5cHAwskKZnnsN/QpHU=\r\n=ZINE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"d59e440f1472cef63579edd511a8ea1ffa474f69","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.19.2","description":"Standard library","directories":{},"_nodeVersion":"18.10.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.25.4_1664733800287_0.030926521670818552","host":"s3://npm-registry-packages"}},"3.25.5":{"name":"core-js","version":"3.25.5","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","Harmony","Strawman","Map","Set","WeakMap","WeakSet","Promise","Observable","Symbol","TypedArray","URL","URLSearchParams","queueMicrotask","setImmediate","polyfill","ponyfill","shim"],"license":"MIT","_id":"core-js@3.25.5","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e86f651a2ca8a0237a5f064c2fe56cef89646e27","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.25.5.tgz","fileCount":3108,"integrity":"sha512-nbm6eZSjm+ZuBQxCUPQKQCoUEfFOXjUZ8dTTyikyKaWrTYmAVbykQfwsKE5dBK88u3QCkCrzsx/PPlKfhsvgpw==","signatures":[{"sig":"MEUCIAWdU6BumvmHJABkoe+W5APceLn4g58TXbCe3LjDcQ/+AiEA1bRQOY+mYC6SjV1KHHGk4lkDE3KxryxxWGC3uiN4+uY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1023168,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjOytBACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKxA//RvRy47+zXqrHJhXRV0xvGHbN8N3frkYEtQEM1z2qz7ow+4Lv\r\n2Hui9tDTu1r3Atg8ucMFM8uQmX76ETolwivBvVL9FWb9Ktm8pDpdWnD/EQ/R\r\nUUxvhawOEhZqlkU3Yq8qH0eSH4xDS1yFJOI15nstlYD5MoSmWtvk9YTB27VI\r\nJg1WL98COcw1tVeMmTRyhsEluTCoJNx77C72EAN+sJDFYGZDe/UEJHty2h6y\r\nhBNWN73QOI4sFBsxMNYlEp8BByYq3SYzUaeDGz0dphoKKNi1DlQwrUaG2cUM\r\ntedFg7eOgpe4PtUttBlI3SNEMO6r/+BnXJ6bCnLkGSFKiLruCbO36BBunBAU\r\nPncB3/RD4ESBwz+jfnHBiWq+5JDF4XWVhVT93J389OA4/t8rI7GDUzzduwDb\r\nlv00pzEWvG6dY5OY7dz1EHhV/KxFXejDAMh7vfM6CrBGhvQVXqewOpIRxI+4\r\n4mD0vWteukCgoKRAvBbWYN67OUC1C5lhFldbKgKIF2bULDFUl3Wocm9oOTmT\r\nSh6g7UTM7ntjAmUZq9PeI+ECnTxLATyupKXzUyytHfV6sRS6hQm64cr9cdGR\r\nNxRWG1sB/PXtDUhkA6mKwaXi4+hkkCcS4rWAnUhMVW0RALL+tXFr/1vFb0bE\r\nvOmqXC8GzQbKQn+9Bhnqx9fCwtzORhX2xYU=\r\n=LxoE\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"4a8b1f78e4bc5d3c4a0102325d3c74815a58261f","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git"},"_npmVersion":"8.19.2","description":"Standard library","directories":{},"_nodeVersion":"18.10.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.25.5_1664822081279_0.36342774167429837","host":"s3://npm-registry-packages"}},"3.26.0":{"name":"core-js","version":"3.26.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.26.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"a516db0ed0811be10eac5d94f3b8463d03faccfe","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.26.0.tgz","fileCount":3131,"integrity":"sha512-+DkDrhoR4Y0PxDz6rurahuB+I45OsEUv8E1maPTB6OuHRohMMcznBq9TMpdpDMm/hUPob/mJJS3PqgbHpMTQgw==","signatures":[{"sig":"MEQCIF3drlTAeY0qcyclQpX2Jk1FFn0wbWYvy6VtUswdQJniAiA8m/TVTxt3SndZc4hazpigzj9tVrR3jaZxh10zEum3tw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1031333,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjVYjTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqKWg/+Onb5xx33RK8/OJvbuI3j16gKlqZkhSHTbwXck4yAo00mH51O\r\nD7TfeUkdm0egWbvrpQ95psTfs/5RDbqAS63xoAqWPeNHmqqYdlZxl/g5Wdtq\r\nFUOrrrif11GRyEpTgz24JhcRP+5qj6Fl8A+JecTHEfKSVwtybZa+a+Wnv4FN\r\ndGUhZhYYqK51Au0PUQmvtQKEzYE0JwFqXQvupHTwRh8NO7FBWf9/H4aCKv6F\r\n9+OVUo2hFPsbLyRlvdO9U6ltdLwL+u9XD5AE1KqhtuadGL2EsB7dZD82phRE\r\nqlJ/NaMOW0dXrcGlWaNo7Zr4y9F/MFDsMejj0sF9Ca4DSFYMRQPuCVn+AwM7\r\nT6ZlmNHIuK5Bly/qgdWMJhEXLMnVLhycjmgCi3rRpwEAG53Z96af0/6/eklu\r\nBMT3pknwW+sgXioMrZZh1WGSTyXFRFerZI7ZCuAYZKTo7jSZWmWObYztXriE\r\nNxqg15xelhZ3LOidulhSaxKyKcq11IenB5tjA5zPZ9zCid8HHeL1z9wPaUwU\r\nV/1QSy9rfrQ62msdCA1zrsMbftRe1O26/qp0XVtshNiG69TN4tx0ha0VvQGg\r\nDhU1jjMYXwbAOc0T8oYrRuX5Lszcrx63zty724vjCdOjyrDUViBEIRUk3vCl\r\nJfCHlTuxrh9ubQawGTHqUl5vwtK1Sqc9UeE=\r\n=V3x5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"3b13f58e6bf182489791905f3d16e40809c6d092","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.0.0","description":"Standard library","directories":{},"_nodeVersion":"19.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.26.0_1666549971086_0.28764566351952126","host":"s3://npm-registry-packages"}},"3.26.1":{"name":"core-js","version":"3.26.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.26.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"7a9816dabd9ee846c1c0fe0e8fcad68f3709134e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.26.1.tgz","fileCount":3131,"integrity":"sha512-21491RRQVzUn0GGM9Z1Jrpr6PNPxPi+Za8OM9q4tksTSnlbXXGKK1nXNg/QvwFYettXvSX6zWKCtHHfjN4puyA==","signatures":[{"sig":"MEQCIC5hOa59ncvAgDcRVz5z9l6lpS2J+90RxNtKPZcz6uzkAiALXOy80nCmsS+smBjmeScAY1K1fZxnItM2IAeUqJRFaQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1031342,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjcTN5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo2hxAAk8JCZ/H3qH6C/+UyttbuOuKLs1Tg/zNDk7/2Qgjyd1V6VGF2\r\nH3YnuR871VBRPCCFlg72ar0R1Ni2p4Q3kDzKTU3XYThOQ5h/2Kzld8wmuk2a\r\n+vMgK5BSN0alyO/MCTjgSeP7vGSO/DbsyHIp6V0JO8aBClpbtg7XcnQ6QDQq\r\nZVz9xA6Q42crvdkRbHj7IxVRqOWThaRU5Uhh6tmRgYKa3bXY4bnSaLOVgBmr\r\nDF7B4x5ZzkZsYQyQAJNDqCLyVnwP2Vce9Rlbh+Noo4U+YthELJ5Vzr1nYNhd\r\nyykXnK0fNt94MpzGLlkUzWgJruKflriDBX3T/qER98xi+uEj02U39FhMQ6ak\r\nqdX4I6LPmpLI5VbY4ni3FLyZlNatTrd5MaQN3vIdkFOcbR5FbupKatm1NSGd\r\no7msMIO5BUzqWT2Ec+NYMMOVK5Ins+yZE0bpu60ZnWvphT+P65gx2lWDN/mN\r\nDtsvxmGu+x6yLKUYP36jTpz0cYMuuPJ+TvX3QiYJ+NyGJRPdS96OENnB/3GK\r\nePmvE1jz41L4GoTK/i+U40vajJ5lOsJv5UeiHB5gNHQlu4qI0ginCugt5ywP\r\nQ8dV6GxITu7F7J5zCgpFhopnEtPYxmfeCGt6o3RuaKDHZ+Cyp2xS0SSxs54Y\r\nrU5r94B3GX4AyYAbc0tyXPggJk7LXrWG0oE=\r\n=llNQ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"e47e6edbd04b3610b5824bc4880ee3736047ca32","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.0.0","description":"Standard library","directories":{},"_nodeVersion":"19.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.26.1_1668363129154_0.3990712053496708","host":"s3://npm-registry-packages"}},"3.27.0":{"name":"core-js","version":"3.27.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.27.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"a343bc614f29d9dcffa7616e65e10f9001cdd332","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.27.0.tgz","fileCount":3235,"integrity":"sha512-wY6cKosevs430KRkHUIsvepDXHGjlXOZO3hYXNyqpD6JvB0X28aXyv0t1Y1vZMwE7SoKmtfa6IASHCPN52FwBQ==","signatures":[{"sig":"MEQCICHtBU2zSixebhBYct2brbi1dPd3K7Tt4XBQFz0cmcgYAiAY9lGzYxuaZzvuGu8mngEyzJr5AIQdIqgS/EnHXNzrog==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1077202,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjqJG+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrKRw/+Nc7q9lI3b62+2xMEGIEAfMxjT6hrUXU7aDG6ZRY8+d9y2hEs\r\nHno12hfpj9HPq7D+Gwz1LOxB4AsmW8ThNvbhlXgg7aAdKY1pN+aa8QS8ksxV\r\nDdQF3NZi+uLv6oyrULDl/38Y1TKnIIDdpVRAh59qRPc5HH7V5/g6/HWobcyo\r\nq8tgWoZ3+gluQLnCuQZOH3c9gJKLiCQCvIrSFFICYcGai6/QfYow3ASK043q\r\n5wq3R5waD7I4gQv/25/JmMYzzHo4nnm0lnRNyiilK37B574fYR0eGDJouZZr\r\nOWnjhbF6Cn/DaWXSJSZrAkxHXT1WXT37ut8hl78iJrdxJ2ALLVAqZEP/fGgj\r\n8Gu4lxcjfUiWGjaCs5ne2xaa3twlp7vRsGzfvyE6s6CgTvkekiLBRV/CXp/s\r\nHuck9OgVD1Xi5ZD5oV6ahoWu1AwDsImZViHjjTZjJrpCHuBLZElk9sAueJj4\r\nvDJGsqFZUYcXvlJg3byFFqaHocCCYZsQApwavrZXCN1JyBV1JRR+hKZ8vv1d\r\n3jwl0I/upbbjGYU+7+cp7ny8lsaJeTan+pAHRE1Ixudb8hU2LvsYyS/WUXPx\r\nGa2To4ejoBT2cupNtw12fEkzf6NO0KSnog6Nx397mNt0OU7dYWvf1sowOkMH\r\nRqlkC1M3zILyJ7h5qDnXsK4YIjRIdjFGInU=\r\n=ePpR\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"d73e06eb9377f535cef3b0d2c8a05740efb703ae","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"8.19.3","description":"Standard library","directories":{},"_nodeVersion":"19.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.27.0_1671991742663_0.7423154247751043","host":"s3://npm-registry-packages"}},"3.27.1":{"name":"core-js","version":"3.27.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.27.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"23cc909b315a6bb4e418bf40a52758af2103ba46","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.27.1.tgz","fileCount":3235,"integrity":"sha512-GutwJLBChfGCpwwhbYoqfv03LAfmiz7e7D/BNxzeMxwQf10GRSzqiOjx7AmtEk+heiD/JWmBuyBPgFtx0Sg1ww==","signatures":[{"sig":"MEQCICV7/HhyX5UwiPrMZVQeyKgxdGG2ifaAlckmxT5WSbjBAiAEjMqZ3dHa49rmppdYYMNeHXAYZvzH/BTp4ZziAY58fQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1080405,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjrdhsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmofog//YqQwEXdZhOSs4GE6nU4wnpjGF2r4AR+zY90UCKdOCCPk5KiS\r\n/L7Y2cacZ9tqAs0aakBq4Q8WnLb/SQKiJj/WsVzbP3Qp1yjWC4CyyPTaIIz6\r\n1w3IVgZJtLv/5Qi/onbEIqlUHnu1RMUQueUADEKir45AGQEzOwiLJha0zWjh\r\n7EGjsUyjH5MrgIcwkuKpi60gq9Gcdf4uim+7xsJCeA0e2eEeLtGp9esZWdlH\r\ncsneGOltZ5QegnBS5N7RMYqUP9KQU2OVyuO7g/yLmb49eKAYLHrU5tfpyklZ\r\nidN7WVB8dbP9M61Gwp1e9b2rUCLkJIbUgXqXq2v9sMbi3USaZ5VHdDBrE0/J\r\nz9udVZJDiU7SaP5AUntMUpQnS8ahkR9iJRini32dtwDDkQFNXfywwSqj+txg\r\nKRjLz60SyTlbc53ggxvxmtBTRfo2FvmnsdZXrARWftadgv5IAwDyd3Sddci3\r\nGzwbEOjgXEX6K3thC9Ua0YLZ6NPn9mYPOhWsxDEwyv4eWKjh5UGaIDe4POlS\r\nTareu3PcKkFRFnQQCNyN8xo/myvFXXmCuTGw6nsSP9AwyYMyzKPIrfSMrQTf\r\nlSOyLsFFcTlyOQb+v+4cs2fwBQtBERL9C2pxhWeH7yblRkHM3X4V9JXVfb+r\r\nUtWWNAV28Mdah/pkTZQJFh0NG4y13CFF5hU=\r\n=CViU\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"1b54309cb699fd42ed8b39d3db8832519e45673a","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"8.19.3","description":"Standard library","directories":{},"_nodeVersion":"19.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.27.1_1672337516063_0.39402601712000207","host":"s3://npm-registry-packages"}},"3.27.2":{"name":"core-js","version":"3.27.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.27.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"85b35453a424abdcacb97474797815f4d62ebbf7","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.27.2.tgz","fileCount":3236,"integrity":"sha512-9ashVQskuh5AZEZ1JdQWp1GqSoC1e1G87MzRqg2gIfVAQ7Qn9K+uFj8EcniUFA4P2NLZfV+TOlX1SzoKfo+s7w==","signatures":[{"sig":"MEUCIERvhg4cDgIFE9oKJTwkWxytYLZNUy5M6z4qs3uVNeSAAiEAu6pFgJqCKfSKQZM9opTRPVHONF+1fteK4efEgfZ8VpU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1081124,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjyEp3ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvVxAAgNK7QoRWiw/vx3DhDr9ryza+ixBM1I0hGk81MC41g1T7x2cr\r\nVQNptIZXL0rAm2f0lJaJ4mjgxhvwOom7TnSzJS7Qcnagd6sMwenLeiJPpxXK\r\nEjM6M0+br9W1KEJmWbMb6MC11twRvz/EcyapDuqUP9y5J7/BL3r4BeaOlcrP\r\nEgMFYhG/fpiS+duRWqF445M32NNBOq6fd5HkIrXN94qtC4k5QOQtdHuKOiJF\r\nz2mXxIy3vi3A1f3DSGhTbzIOdf6tsA08l4HPAywuaihDylKG6EHDLnVtoWXr\r\n0HQ6PPB8vV7SWtEAqwjLvfK4bGX725zaduy0zrVdwfN8sd7In5rMZRJkr+qb\r\nuiwLxqccFezvSD+R365CglLGfjbYuL+iftjFHuZWAqdWqemLhkCETp/cAC3f\r\nZiKb/+eJQuj3NorijofOeQkEn5kye/NPjn3gCY8PAMhk1NIgGBr71cFgDT4J\r\nb1LAOqutb/dHEFUxIPetkmlc80EpWbJjMAmvVgvF67K3nPfJvXjKtSjFPUlL\r\nusTWGFqB58Wug47MJMM9CWZ3vZT+MCnw8jnNxDWXuiBM/SEpSXUOsS0KZg/e\r\nskHIp7QFJZg/bEYCjF7mBggPycwWFqRFQCvIkg8dpLO972orizB0wK4XcMud\r\nFnw6bKeKhNpWAuVK7OkorOcuy07XXzAI7dc=\r\n=kvB6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"c56b97f1c90f0e04fe37d1fbceabcf5835af2c01","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.2.0","description":"Standard library","directories":{},"_nodeVersion":"19.3.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.27.2_1674070646887_0.11675912339820504","host":"s3://npm-registry-packages"}},"3.28.0":{"name":"core-js","version":"3.28.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.28.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ed8b9e99c273879fdfff0edfc77ee709a5800e4a","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.28.0.tgz","fileCount":3331,"integrity":"sha512-GiZn9D4Z/rSYvTeg1ljAIsEqFm0LaN9gVtwDCrKL80zHtS31p9BAjmTxVqTQDMpwlMolJZOFntUG2uwyj7DAqw==","signatures":[{"sig":"MEUCIQCsITnPpcMrCZ6jW//4IeFoeVpi+VYsIFP46P1ECyNZgAIgb4MfCtm89K1DGk4SOElhoV0qMB7XFC9h3qVvOzw7EvE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1119280,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6ouMACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpKnBAAoV1CsTz8oLO6oVFt5bGyxwVB9yyhdprwst33n7Yo4BqR1wp1\r\nL0bvg+fCiVdx/hrRrYQiIWQQaPUGkQRBeADQXRvSMx4wgl1Kyhawqya9Fq79\r\nN7CliEmeQ45RdlPyK++3RKKryq41Y1O0Q11wBWGdH1M3TqkAIEFMS6S+NqHM\r\naTNOiqxMrthWz0+ZhncP76qCdX8F1LCeZtMYmsnIMgD2238Gs2JM9tfvtZmB\r\nJIeIxlkYlhVODPQGnQd+UvdXF49EeY57M9jufexbUxol+tOWLY9Pz1mc/CFD\r\nAVc6gIM1zEC5Al7n1lAuRNMXDeW4+5QCrlLGcuSLCUAVZ25aZvhRpmZFIxA3\r\nRZ2MiE0Lql/PsHPRwghM4LuErCcQRE1GiTA5rlwKBWhJuf9I4LrbTCFhaMBf\r\nxV4mss9xjrdu4h8wHn2vBVdWRmebDuK1iNQMJK6nBonojbZXYQU8gRAbuxyI\r\nlrcEYXKCyCcCq89cTOJ6pYC0HthaeoPxY6b+zR8rcNbXEMRj8Opg3ahBr8sr\r\nvK2H/LLo9hgrzS41k1/ENTsLCn6HkY76KfwUrvlgimAb5ae5rawX+zXCA3ML\r\ny9MfPW6pfb0AI4sHZuyBsrlSjhWWGGJT8xvjQ19O0bQ2Uj1CzPxyOM7YJTzU\r\nG89IrhFQKc6XYbt53GGUNeACmWhs8uFxvv0=\r\n=bxRf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"6f721fa6f173e019ba3f236ee59a6ff06f4e1b84","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.4.0","description":"Standard library","directories":{},"_nodeVersion":"19.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.28.0_1676315532259_0.5285232670074269","host":"s3://npm-registry-packages"}},"3.29.0":{"name":"core-js","version":"3.29.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.29.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"0273e142b67761058bcde5615c503c7406b572d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.29.0.tgz","fileCount":3332,"integrity":"sha512-VG23vuEisJNkGl6XQmFJd3rEG/so/CNatqeE+7uZAwTSwFeB/qaO0be8xZYUNWprJ/GIwL8aMt9cj1kvbpTZhg==","signatures":[{"sig":"MEUCIH31vBlcn04ON8AzZ6LGJdmDO2G+XAKW9kmGISxLMaHPAiEArUdtO7I9yY2vn9SzqABv4B4gu/XO8ZcoRtFQXYbqKrU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1121207,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj+80xACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoEKQ//YBbts/kEpXHYB3wnoJ0X5GBhr/ylG/7AP8jeG6nEfDQEUkWz\r\nYCOhnY/s3fXK8RuhunMk5Kgu2VpoqaRT2YYBBbR9RvuqWZo6qJXO0TunBm7Y\r\nI64ei7AxBPqYRWS8XXHSoyyFfHbxhwdyRB+kqXbKw/gGJDxiBy1a1izaTf8n\r\nUAEXFGrfTOQFB+cJFuU4rD5sSIrcYDgcNJPmXlyYXA8WZPJikRZT57s1fp1p\r\nE0ICVLgqPwsTY3LsLtr678a3PTZiaZW96ZL3nIPQva7gDJqQRownD1W5fqeY\r\n2LRabo2tY32Mmw9S9yvxUWHfWz38Hk9SnZGz+cHdoDVoyOvKeEG5djLuhZiQ\r\nSWXPoadmrxIII53VegIzTOSFGanoi3ztE50/5juAt1BmQVgOtmrv9eF/Vvin\r\nG6XF+GWG0EKNondHCyd5xseesdX+ZYyGim3cS90haUFtiD8IVQiMb206dKvt\r\n2W3THqZB3JoS0deNEoaazXHJslrQf0+V97q6p/qiu3DskbU1Y6uro92DQuik\r\niEQBeHaqHz+br7qxMEFczfA/AiaJ8D9CFDA+D93G9zlFj0CwciICs9J/iq2j\r\nXJz/keoj1wJvS6on+eTuZFwnsgruJBimDFGIlxmvzZTp0QsmvyeluJQFfRob\r\nUicekcNqevK27dFYbGy5ibxA4OnDLHSxhMI=\r\n=09yu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"8c77615bb9c7e8153ef7bafb65625d4375a6ccf1","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.5.0","description":"Standard library","directories":{},"_nodeVersion":"19.7.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.29.0_1677446448812_0.5815002952638557","host":"s3://npm-registry-packages"}},"3.29.1":{"name":"core-js","version":"3.29.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.29.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"40ff3b41588b091aaed19ca1aa5cb111803fa9a6","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.29.1.tgz","fileCount":3332,"integrity":"sha512-+jwgnhg6cQxKYIIjGtAHq2nwUOolo9eoFZ4sHfUH09BLXBgxnH4gA0zEd+t+BO2cNB8idaBtZFcFTRjQJRJmAw==","signatures":[{"sig":"MEUCIQCrw9WhigDm6eBhUpIXY+unfcovmssmDyeoqNhWSlpgEwIgIc9yVM3Qokpe3UhIgUkoMYJV7aBTy4vq0VQ4B9VRQu4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1120749,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkDrvpACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrfcA/9FhWDi7fDQ4D4+8m1WtcA4SWgpSaXNBSoXFYw6tX/pzT0Wn3j\r\npdc4nCUOFJxsT24+4cs+6l8RUrmf8rw/gZ1RPf3PbX60+IoYBHlxI7zevhV8\r\nCzvsNgKNTBZoeIyOc89+Xvo4xFmC/JQ62H2JqI0u/4lg95gtsAUzQmMAgf/U\r\nKYFxOkUBCulOkaJb6tpALtSnM2owJFdF0sd02mgzq3LkrjKzRyexkIOd9GWB\r\nC9h+r1jnwlTd/IFtuf5+3Fi1JFP4sHKWY97gFGGbfP95oq1GgbIMK4cqdlQn\r\nIqSZbZKt0bVJTSpVu2LnuptsWS0jZNGWpxqVkqCEVedyRXLCs9GMEvuKMnBH\r\nmFovR2nw+aSN42feIyBK19fmJ7wZ3oNE8JTBVslYm+2O9hJPClRUgmvisYOo\r\n8bsT8LPUNo/0FTtcbARDftyMIHi8jhA9C7L+2veqaMP649Eg2WypdiYENSlP\r\nc3zjuwS43aFs1KOeFz7TYfhwGLvr0Xcrqzjb+QWsJST08wPV8bAvAkOEabzu\r\nD0gIjYVAmJ59j6uM4ggo0QlP64reqNoa0lPha0mx+qcqYG0f6PaGJYiaXFP5\r\nOH87UAdOj3sJ7s1G74HwzSSWpDTNpF8323gtLX7oI3Zr699fl5RBgjJpoWGk\r\nL/visDdCVOYUleCnJx0n+2Cgj/zKIUkAGRs=\r\n=V8K0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"f50b58ee8fc14bd88653a82cffdd342c988b7df9","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.5.0","description":"Standard library","directories":{},"_nodeVersion":"19.7.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.29.1_1678687209313_0.14566210849882788","host":"s3://npm-registry-packages"}},"3.30.0":{"name":"core-js","version":"3.30.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.30.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"64ac6f83bc7a49fd42807327051701d4b1478dea","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.30.0.tgz","fileCount":3338,"integrity":"sha512-hQotSSARoNh1mYPi9O2YaWeiq/cEB95kOrFb4NCrO4RIFt1qqNpKsaE+vy/L3oiqvND5cThqXzUU3r9F7Efztg==","signatures":[{"sig":"MEQCIAKrkO5tJZYQs00P+Tr44a4G6IxIRXRGbICtahB9Q3yiAiAaTWFZuroy/kGKr76bOQlQdKVo+0WypcXwf4vKKte6yA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1122687,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkKzbHACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq2Ag/8Dk2WYJZetBFp1wfq9Xu137wRTpk2tLTbEeyF5WwsXhF9dEZk\r\nG2cjYEe6Hzxjyn+jcryF94kXTxcCEU71b7+ULzQ0VFi9Q1lmJs3h439XZqNQ\r\nJW46JuXVTigBNk+W6YdGyOS+IBKR8PLYsA2LC/kFGjVWtrCtqBnOsQujgTRG\r\n4M3gsn5LcQDtvj2wOLw2Pv9nRTqgepfBr7qQSVqDJOY2NqZgCGsMl3uOtFGF\r\ny2F7fsjbl1/OEES4t6ZhJtjVmPCE2AOjRnnbwVuUutq2WP32pAHV9UDcTl3f\r\nUai4VFhYYyBAPBWjKSoTNmJAO3K2XelQAnbE0+ep/Cm5/6cemm9q2X5ZhJkX\r\neCFat8J5dtEt/KjVHlRDI0ippJoVVIXDJ0O8mR67WvIRhP3aHr/KMwbmiLvH\r\nfNN2Y1Cmi1UoU6wAMFuwKQB7Ce5/nrePg+qhljonjuOZc17cQUWHB8VHVGFs\r\nq1UtFqZilcVSww6P8yWS1G4D9Y8jay5OjXFoDiRZjt9X2fppr3QHS1gmiPtR\r\n/K92DAVhVARQFplapFxT4WglI9GuLgqFf2XmkawFDne2KB2xrI8qf3syFDey\r\nGuFGqKcP4JGij5H0QfXUo43OORjRzafyovyxhcGcZGoSF2xDxaW/k/KDaVIZ\r\nn7bC++4JZboc0TmvJS5nLxzT9xaYXysYInU=\r\n=tSfj\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"280680b8f77094031e3908823c81a9be3e6d6817","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.5.1","description":"Standard library","directories":{},"_nodeVersion":"19.8.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.30.0_1680553670773_0.07322988556623766","host":"s3://npm-registry-packages"}},"3.30.1":{"name":"core-js","version":"3.30.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.30.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"fc9c5adcc541d8e9fa3e381179433cbf795628ba","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.30.1.tgz","fileCount":3338,"integrity":"sha512-ZNS5nbiSwDTq4hFosEDqm65izl2CWmLz0hARJMyNQBgkUZMIF51cQiMvIQKA6hvuaeWxQDP3hEedM1JZIgTldQ==","signatures":[{"sig":"MEQCIF0e+/cZeM+cHAuqHhgPu5cxm8wYSg7kFLWdzPFpkUlHAiB+Bd4YDbXl6XF30ZFqWWRsWfho9Eot0cyIXUiZnTX++g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1122976,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkOEsRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpB6A/8DtzrSy7Zl5+JrTN0u6aw1hLuSt5BZNJxMmjVV2kR5EQU3lLB\r\nv8nwIxvnm1t5wB3qGeTxtYvbPKOvFdcq6A7z/oAxEDGj0Fy9Z7pHxSqvXW/N\r\naxcHoJn1w0A20Jf6W6GfSB6ls1QkNSnTzSu2UzgwYCorbFLVxklcTcAl/jJj\r\nHicWOAn5V8VcYXPtNp6/r9rgJJqRtMAwrk/1z3Rh/GKbCC+bLm7RbiY7EBT7\r\nMBGpfwQBsIUXXYUvZ5TBzuluBvJ5xV1pgz0gqlFvgmdyFOSMwTQ9942avvJk\r\nEKR/OUEvqqVXnstoXhoLWlRKexzaitBpzacxx5Ua9YYRtIJ0HUzdfmq+Jv/3\r\nSeRy7jTl4bnpEeFNagAGI7z0TUOsDJS3isX1WmpzL4WY2c/a0UkWdvthsOTy\r\nyw9hsjQ6XFJBKElmFqqGEmDGSkvjvKicc5wakkEBYZOzA2gR/z+4+/os8Kq+\r\nvNmYtZztDBvvRxLPTbqSXOIoreFRKK/oXyXyVV8MWLIeII10im6aluumPZp4\r\nF8l+RD3XRFyoc26KC64O9TtVUCzN72FgKCuSJeA3rLRZbNYWfFJvh8EeA0Ue\r\nCyHz33aK/GkjRGKtl37/Yl6Fz3/EtEEjj7plDZ0DWcHmXOIwlKEuOdNeEnEl\r\nJ967A6Df6SL+lTIT+3vNw3jL3K8TgWI7zMI=\r\n=NYNV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"46e2a5ca1fbc4a32320df44d74456e8e14dc970c","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.6.3","description":"Standard library","directories":{},"_nodeVersion":"19.9.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.30.1_1681410833293_0.11145049508306548","host":"s3://npm-registry-packages"}},"3.30.2":{"name":"core-js","version":"3.30.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.30.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"6528abfda65e5ad728143ea23f7a14f0dcf503fc","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.30.2.tgz","fileCount":3338,"integrity":"sha512-uBJiDmwqsbJCWHAwjrx3cvjbMXP7xD72Dmsn5LOJpiRmE3WbBbN5rCqQ2Qh6Ek6/eOrjlWngEynBWo4VxerQhg==","signatures":[{"sig":"MEQCIAUzxj3wtfbJK8QCb0uU03/PxkbwwUDqoWLEW/wv1U8fAiA0epCN/XwOCbQX/mnvCsm/50LzE45/0KZ91PZUX1x5uA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1123463},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"a54caa5e5c5583ec9cc354b4cd7dcf8a059b6f72","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.6.4","description":"Standard library","directories":{},"_nodeVersion":"20.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.30.2_1683400619272_0.5662379962952422","host":"s3://npm-registry-packages"}},"3.31.0":{"name":"core-js","version":"3.31.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.31.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"4471dd33e366c79d8c0977ed2d940821719db344","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.31.0.tgz","fileCount":3376,"integrity":"sha512-NIp2TQSGfR6ba5aalZD+ZQ1fSxGhDo/s1w0nx3RYzf2pnJxt7YynxFlFScP6eV7+GZsKO95NSjGxyJsU3DZgeQ==","signatures":[{"sig":"MEUCICRJNKCknYfKW6gEDlXuzXRqc69dTGs7m0+GeVrmxcvZAiEA/x88qCkr2WSeQ5RdO/4eNn+SOFvD3Z5aGvd3ceJi4AU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1136193},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"199c633ee517a496ce789498a76ad8eeeecfc3a0","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.6.7","description":"Standard library","directories":{},"_nodeVersion":"20.3.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.31.0_1686513332829_0.951918082924031","host":"s3://npm-registry-packages"}},"3.31.1":{"name":"core-js","version":"3.31.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.31.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f2b0eea9be9da0def2c5fece71064a7e5d687653","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.31.1.tgz","fileCount":3376,"integrity":"sha512-2sKLtfq1eFST7l7v62zaqXacPc7uG8ZAya8ogijLhTtaKNcpzpB4TMoTw2Si+8GYKRwFPMMtUT0263QFWFfqyQ==","signatures":[{"sig":"MEUCIBp88MyDmcTPJMf2KF5jlNebK7wKCP5c/KZkUg82NqDnAiEAzdzECM07xqArWT7xsZbIcfSR7IehsdAfTrZIBqIthJY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1139818},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"9376c6f8adc252e5fb66ec0dffd10bcb53b3c9cd","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.6.7","description":"Standard library","directories":{},"_nodeVersion":"20.3.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.31.1_1688604902574_0.6197959939480908","host":"s3://npm-registry-packages"}},"3.32.0":{"name":"core-js","version":"3.32.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.32.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"7643d353d899747ab1f8b03d2803b0312a0fb3b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.32.0.tgz","fileCount":3404,"integrity":"sha512-rd4rYZNlF3WuoYuRIDEmbR/ga9CeuWX9U05umAvgrrZoHY4Z++cp/xwPQMvUpBB4Ag6J8KfD80G0zwCyaSxDww==","signatures":[{"sig":"MEUCICk/iC9ivSctIsV6W0gMiNGtzOlXyvazNWj3oGE33ScjAiEAidx/qLRBL2VIFR6wwFr9dfNzaWztQvnN0pcwamXdon4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1193490},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"c25219226fe4852c7538a0e62ed5d8ef1b7851a7","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.8.0","description":"Standard library","directories":{},"_nodeVersion":"20.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.32.0_1690483910531_0.5186258541330395","host":"s3://npm-registry-packages"}},"3.32.1":{"name":"core-js","version":"3.32.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.32.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"a7d8736a3ed9dd05940c3c4ff32c591bb735be77","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.32.1.tgz","fileCount":3404,"integrity":"sha512-lqufgNn9NLnESg5mQeYsxQP5w7wrViSj0jr/kv6ECQiByzQkrn1MKvV0L3acttpDqfQrHLwr2KCMgX5b8X+lyQ==","signatures":[{"sig":"MEQCIHPRrpzK5ZoKTYAVgjJgcC+SIBKc4NCDd2O8A67uaI2JAiAh/WJNKiFjNpUSc2kbTlsPD4sm+sLSSa6rz4zMDlxjQg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1194563},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"5dabb13bcfa3e428ff70731c87e75ac8e8b1ad41","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.8.0","description":"Standard library","directories":{},"_nodeVersion":"20.5.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.32.1_1692378333263_0.7677740426744901","host":"s3://npm-registry-packages"}},"3.32.2":{"name":"core-js","version":"3.32.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.32.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"172fb5949ef468f93b4be7841af6ab1f21992db7","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.32.2.tgz","fileCount":3404,"integrity":"sha512-pxXSw1mYZPDGvTQqEc5vgIb83jGQKFGYWY76z4a7weZXUolw3G+OvpZqSRcfYOoOVUQJYEPsWeQK8pKEnUtWxQ==","signatures":[{"sig":"MEQCIC0GgLIoRx3s0buN7JjGjVFRhMMzH0RuDVQgwmsrVFwSAiAJL5nfxB9qlWx1qHmqnnWVt04lVWj5kczeh+V1Fg7Cfg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1194890},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"aaefe98d5fdc015e417801332eb4ede5113a01f5","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"9.8.1","description":"Standard library","directories":{},"_nodeVersion":"20.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.32.2_1694090910765_0.5179836823220318","host":"s3://npm-registry-packages"}},"3.33.0":{"name":"core-js","version":"3.33.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.33.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"70366dbf737134761edb017990cf5ce6c6369c40","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.33.0.tgz","fileCount":3410,"integrity":"sha512-HoZr92+ZjFEKar5HS6MC776gYslNOKHt75mEBKWKnPeFDpZ6nH5OeF3S6HFT1mUAUZKrzkez05VboaX8myjSuw==","signatures":[{"sig":"MEQCIH6/b6VJRyDDBUGqw11JmNwCWOZZ2F5932a0ijhQGbmIAiBQ0go5948EBuxnE1YNDKKXSSrsi9/9m/CEh8z8XHCIcw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1198197},"main":"index.js","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"d47567b4c6ecd6e30237dd3848219617a3f08ccb","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.1.0","description":"Standard library","directories":{},"_nodeVersion":"20.8.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.33.0_1696185446486_0.5034537567017321","host":"s3://npm-registry-packages"}},"3.33.1":{"name":"core-js","version":"3.33.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.33.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"ef3766cfa382482d0a2c2bc5cb52c6d88805da52","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.33.1.tgz","fileCount":3411,"integrity":"sha512-qVSq3s+d4+GsqN0teRCJtM6tdEEXyWxjzbhVrCHmBS5ZTM0FS2MOS0D13dUXAWDUN6a+lHI/N1hF9Ytz6iLl9Q==","signatures":[{"sig":"MEQCIDRsgSmxI1MXmbE/Akf41S2j8Eij1uZU8B4ge+pRS8/OAiACXW0YFTPos3ngrvf5l9KclbTTFikKrwo8uCLiRDFWrQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1202638},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"55bec5621fb38ff554106761869aa245743f35c9","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.2.0","description":"Standard library","directories":{},"_nodeVersion":"21.0.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.33.1_1697780308036_0.6850811197767639","host":"s3://npm-registry-packages"}},"3.33.2":{"name":"core-js","version":"3.33.2","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.33.2","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"312bbf6996a3a517c04c99b9909cdd27138d1ceb","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.33.2.tgz","fileCount":3411,"integrity":"sha512-XeBzWI6QL3nJQiHmdzbAOiMYqjrb7hwU7A39Qhvd/POSa/t9E1AeZyEZx3fNvp/vtM8zXwhoL0FsiS0hD0pruQ==","signatures":[{"sig":"MEUCIQDk+MYRqj1gXEByid4CtRnuIfd8GCWovMwBZdo+zDcbFwIgXRMLRXVW7ATxD0PnUxK69SloIaZjuWiYN5bdozhPNjc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1199438},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"7cbd6b5e9e96cda050ae911c4015b0ecd9875f92","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.2.0","description":"Standard library","directories":{},"_nodeVersion":"21.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.33.2_1698686514737_0.3414455911296199","host":"s3://npm-registry-packages"}},"3.33.3":{"name":"core-js","version":"3.33.3","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.33.3","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"3c644a323f0f533a0d360e9191e37f7fc059088d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.33.3.tgz","fileCount":3411,"integrity":"sha512-lo0kOocUlLKmm6kv/FswQL8zbkH7mVsLJ/FULClOhv8WRVmKLVcs6XPNQAzstfeJTCHMyButEwG+z1kHxHoDZw==","signatures":[{"sig":"MEUCIQDsic9x+IgTNq4qIuK8rnoOe7RkivUCZNouOS5ZuWu49wIgP4K5bu1MZdSv8ilj4rfzuMJdwIPxdmjUcr7tdJubwtE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1199285},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"a18759b0b3a1041f72df263d9ffcd884760139b1","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.2.3","description":"Standard library","directories":{},"_nodeVersion":"21.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.33.3_1700417298404_0.9005392068523526","host":"s3://npm-registry-packages"}},"3.34.0":{"name":"core-js","version":"3.34.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.34.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"5705e6ad5982678612e96987d05b27c6c7c274a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.34.0.tgz","fileCount":3437,"integrity":"sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag==","signatures":[{"sig":"MEUCIQCQPfJD29U9Qwm/g5bxv3NTMufVM7t6YyMmJXU2xt0OaAIgCJre3yTrK8FZJpqgDdawgokvol62swDPQY7vZqvXUg0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1210937},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"bc16b93358314bf507542e8c0009785398afd269","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.2.4","description":"Standard library","directories":{},"_nodeVersion":"21.3.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.34.0_1701799585794_0.9054689950216013","host":"s3://npm-registry-packages"}},"3.35.0":{"name":"core-js","version":"3.35.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.35.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"58e651688484f83c34196ca13f099574ee53d6b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.35.0.tgz","fileCount":3438,"integrity":"sha512-ntakECeqg81KqMueeGJ79Q5ZgQNR+6eaE8sxGCx62zMbAIj65q+uYvatToew3m6eAGdU4gNZwpZ34NMe4GYswg==","signatures":[{"sig":"MEYCIQCnPKs8pmILUXhNMvjdOcg9ZykT2ydOCusclht9NYhQKwIhAMz6AVZEG2gZph0pupIgKANGDHhkVRxiVT9s5V9E/HaQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1210064},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"eafff6c0ec7738adb005b1186503e527180f4ece","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.2.4","description":"Standard library","directories":{},"_nodeVersion":"21.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.35.0_1703803609686_0.37207053107501875","host":"s3://npm-registry-packages"}},"3.35.1":{"name":"core-js","version":"3.35.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.35.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"9c28f8b7ccee482796f8590cc8d15739eaaf980c","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.35.1.tgz","fileCount":3438,"integrity":"sha512-IgdsbxNyMskrTFxa9lWHyMwAJU5gXOPP+1yO+K59d50VLVAIDAbs7gIv705KzALModfK3ZrSZTPNpC0PQgIZuw==","signatures":[{"sig":"MEUCIQCt2AY3FBIRlkihFp65O3FqmthEs1u8xRxiIMb6MEbt0QIgYFGAb8GAFIZ9gSXrpKCXSFmIzTA6qP8bOKjqhwn4/IM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1207706},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"02c96bf4fd8a6765acaf1d6bcaf27a026c248d08","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.2.4","description":"Standard library","directories":{},"_nodeVersion":"21.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.35.1_1705791031145_0.9478892616553698","host":"s3://npm-registry-packages"}},"4.0.0-alpha.0":{"name":"core-js","version":"4.0.0-alpha.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@4.0.0-alpha.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"610d458a1077dfe750c35d5870b530e521c50d24","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-4.0.0-alpha.0.tgz","fileCount":2495,"integrity":"sha512-5VfbzstCfaRX4LNrX94uP6AQmbx3sX757+xeGZU2J8+VMSfu5INfhxCFpy8fIV6B54WadTAFOUa2XgyvOEQPSg==","signatures":[{"sig":"MEYCIQCgAc4KnWbqr3y4OMobxkFPLQ3LaKPZlVbV7YliEQjnkwIhAI0kOZwsCWuxSB/ze0jc6xrpn+zTC9KsmH5JDEyy3Chb","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1361385},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"6193c836b9b73b678561fd201125aea0718baed8","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.2.4","description":"Standard library","directories":{},"_nodeVersion":"21.6.1","_hasShrinkwrap":false,"readmeFilename":"README.md","_npmOperationalInternal":{"tmp":"tmp/core-js_4.0.0-alpha.0_1707830339048_0.7279398707259617","host":"s3://npm-registry-packages"}},"3.36.0":{"name":"core-js","version":"3.36.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.36.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"e752fa0b0b462a0787d56e9d73f80b0f7c0dde68","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.36.0.tgz","fileCount":3452,"integrity":"sha512-mt7+TUBbTFg5+GngsAxeKBTl5/VS0guFeJacYge9OmHb+m058UwwIm41SE9T4Den7ClatV57B6TYTuJ0CX1MAw==","signatures":[{"sig":"MEYCIQDON7HrabUyUGLrVG6K4VxZ4MTKVEC2oYF3Z8rMN6fmwwIhAJcI/ck1kQcHJqHXJP57UhNdlkg5SGNjckeBTxl9Rifg","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1213216},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"77123c42d3bee524768f1f8495fd3404892ff910","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.2.4","description":"Standard library","directories":{},"_nodeVersion":"21.6.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.36.0_1707898423961_0.3970852887267806","host":"s3://npm-registry-packages"}},"3.36.1":{"name":"core-js","version":"3.36.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.36.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"c97a7160ebd00b2de19e62f4bbd3406ab720e578","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.36.1.tgz","fileCount":3452,"integrity":"sha512-BTvUrwxVBezj5SZ3f10ImnX2oRByMxql3EimVqMysepbC9EeMUOpLwdy6Eoili2x6E4kf+ZUB5k/+Jv55alPfA==","signatures":[{"sig":"MEYCIQCd3/ga+jmaGp6P67Y8ZZAhjC/Vv2n8TBjf4SiIJtbiOwIhALUJxjyAqtpfspVL5mXJrQ11LO8eAgaCnOiVu/4qAwUZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1214853},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"454d98ce1c3697660961bb83e71f99970fd64888","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.5.0","description":"Standard library","directories":{},"_nodeVersion":"21.7.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.36.1_1710812581114_0.5719162217608726","host":"s3://npm-registry-packages"}},"3.37.0":{"name":"core-js","version":"3.37.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.37.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d8dde58e91d156b2547c19d8a4efd5c7f6c426bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.37.0.tgz","fileCount":3487,"integrity":"sha512-fu5vHevQ8ZG4og+LXug8ulUtVxjOcEYvifJr7L5Bfq9GOztVqsKd9/59hUk2ZSbCrS3BqUr3EpaYGIYzq7g3Ug==","signatures":[{"sig":"MEUCIQDBybmVFfnykZr6VUivI1FVy9d0H0SD1RciJfHnPMeKywIgCI35p8dl81ZN+Vdu4vz/WW5wkwHIx2TouhaHnMYGSJU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1227519},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"598d0b2fd36a3a62911b1507f945363050de98bc","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.5.0","description":"Standard library","directories":{},"_nodeVersion":"21.7.3","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.37.0_1713297044703_0.16834965091180565","host":"s3://npm-registry-packages"}},"3.37.1":{"name":"core-js","version":"3.37.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.37.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"d21751ddb756518ac5a00e4d66499df981a62db9","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.37.1.tgz","fileCount":3487,"integrity":"sha512-Xn6qmxrQZyB0FFY8E3bgRXei3lWDJHhvI+u0q9TKIYM49G8pAr0FgnnrFRAmsbptZL1yxRADVXn+x5AGsbBfyw==","signatures":[{"sig":"MEMCIDQlLULhyM9Lz1ireSotCEMI3Kv6K/1uWpM4TeSkzKJwAh8gfdbgpcXj1tkyAf9s1rL9oqP7wSKMPCrln49ZnPzY","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1227620},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"d044cb58903ca34926708cbfde8979880dda81e3","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.7.0","description":"Standard library","directories":{},"_nodeVersion":"22.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.37.1_1715674115778_0.3731567568766174","host":"s3://npm-registry-packages"}},"3.38.0":{"name":"core-js","version":"3.38.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.38.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"8acb7c050bf2ccbb35f938c0d040132f6110f636","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.38.0.tgz","fileCount":3498,"integrity":"sha512-XPpwqEodRljce9KswjZShh95qJ1URisBeKCjUdq27YdenkslVe7OO0ZJhlYXAChW7OhXaRLl8AAba7IBfoIHug==","signatures":[{"sig":"MEUCIQCnz5EVh+rSmRkPd52HBFQSFypJY1DqpGWdHX9bn5gK8QIgOh3TScdIeG5axCinKfK8aP6zs1UBQ/yt2+RV8fd0PV4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1238094},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"4a322bf3a89fd4579b938ab09941b509f9db7136","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.8.2","description":"Standard library","directories":{},"_nodeVersion":"22.5.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.38.0_1722795549520_0.561267390873607","host":"s3://npm-registry-packages"}},"3.38.1":{"name":"core-js","version":"3.38.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.38.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"aa375b79a286a670388a1a363363d53677c0383e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.38.1.tgz","fileCount":3498,"integrity":"sha512-OP35aUorbU3Zvlx7pjsFdu1rGNnD4pgw/CWoYzRY3t2EzoVT7shKHY1dlAy3f41cGIO7ZDPQimhGFTlEYkG/Hw==","signatures":[{"sig":"MEUCIQCzbtsbjlEgtij+j5ZN887jGB+1Zgo+IgRFiuUF4fFlnAIgHfdov3PyiO82UkTjEs0Vay4g/ai9gQGSv84tK1NokE8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1240796},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"d1e7889678f9d09ee4bb1d6bbd3184462567c730","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.8.2","description":"Standard library","directories":{},"_nodeVersion":"22.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.38.1_1724153923648_0.11729125165665866","host":"s3://npm-registry-packages"}},"3.39.0":{"name":"core-js","version":"3.39.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.39.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"57f7647f4d2d030c32a72ea23a0555b2eaa30f83","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.39.0.tgz","fileCount":3557,"integrity":"sha512-raM0ew0/jJUqkJ0E6e8UDtl+y/7ktFivgWvqw8dNSQeNWoSDLvQ1H/RN3aPXB9tBd4/FhyR4RDPGhsNIMsAn7g==","signatures":[{"sig":"MEUCIHQKCC7dncyUQ72KBLOq/jf+uXP+QoX1NU4DFvDkbu6CAiEAnoAl59tim7E0zNCy/Ok3lqCbH4YE3QPMfJhzTNg2dHo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1256791},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"fe6d2d6910f460630dd016163d0d5c8e4c2eaa22","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.9.0","description":"Standard library","directories":{},"_nodeVersion":"23.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.39.0_1730334081115_0.4236294854380769","host":"s3://npm-registry-packages"}},"3.40.0":{"name":"core-js","version":"3.40.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.40.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"2773f6b06877d8eda102fc42f828176437062476","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.40.0.tgz","fileCount":3563,"integrity":"sha512-7vsMc/Lty6AGnn7uFpYT56QesI5D2Y/UkgKounk87OP9Z2H9Z8kj6jzcSGAxFmUtDOS0ntK6lbQz+Nsa0Jj6mQ==","signatures":[{"sig":"MEYCIQDTKQ7D8K9edFEYhAqJywjZeT+JixFRtvcR1w2km/wo0wIhAKgOVCa3cp/Yle7LCKrwojl8waxCXpwlWo++DxHFn2iq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1262571},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"6e493925cb4348e99385b5aca6b0ff75ef39b48f","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.0.0","description":"Standard library","directories":{},"_nodeVersion":"23.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.40.0_1736274142315_0.6880900597954989","host":"s3://npm-registry-packages-npm-production"}},"3.41.0":{"name":"core-js","version":"3.41.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.41.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"57714dafb8c751a6095d028a7428f1fb5834a776","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.41.0.tgz","fileCount":3577,"integrity":"sha512-SJ4/EHwS36QMJd6h/Rg+GyR4A5xE0FSI3eZ+iBVpfqf1x0eTSg1smWLHrA+2jQThZSh97fmSgFSU8B61nxosxA==","signatures":[{"sig":"MEYCIQCl08fcLXouK537rhFYPBRRp57XcMCCkaUkqAD8pItIxAIhAKeMd06TzgEsPPMF1BScTWsVikrdfjlAqYfvvXUnDHY6","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1265563},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"149541a1b17cb8ae2a8c85d35d027dad99f78501","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"10.9.2","description":"Standard library","directories":{},"_nodeVersion":"23.8.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.41.0_1740848174811_0.8107998349806258","host":"s3://npm-registry-packages-npm-production"}},"3.42.0":{"name":"core-js","version":"3.42.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.42.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"edbe91f78ac8cfb6df8d997e74d368a68082fe37","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.42.0.tgz","fileCount":3578,"integrity":"sha512-Sz4PP4ZA+Rq4II21qkNqOEDTDrCvcANId3xpIgB34NDkWc3UduWj2dqEtN9yZIq8Dk3HyPI33x9sqqU5C8sr0g==","signatures":[{"sig":"MEUCICk+Z4Ah56F+EkgPocSla3nVtmcoKcU2dgRcfs2+CcHYAiEA9aUWKIfquxITS8DG7q9UCAJS2OTqTopl4pjBprGJr5Y=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1272681},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"ce8281cbca924f1f3cf16cb5f7098b2d9e428af2","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.3.0","description":"Standard library","directories":{},"_nodeVersion":"23.10.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.42.0_1745949830572_0.24390185414184584","host":"s3://npm-registry-packages-npm-production"}},"3.43.0":{"name":"core-js","version":"3.43.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.43.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"f7258b156523208167df35dea0cfd6b6ecd4ee88","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.43.0.tgz","fileCount":3637,"integrity":"sha512-N6wEbTTZSYOY2rYAn85CuvWWkCK6QweMn7/4Nr3w+gDBeBhk/x4EJeY6FPo4QzDoJZxVTv8U7CMvgWk6pOHHqA==","signatures":[{"sig":"MEUCICURj4JXU2rWH4LCSeQJy9BdUvEkARK8qPh6Ic2bz9B/AiEAv6tKx2qtO07GdL+Bjs9AD28HE5ql3SyUyyKl4Oxnx8Q=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1300961},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"f4f46336b3f2b9ac7a688f9a6d2fa6f12f94ebab","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.4.1","description":"Standard library","directories":{},"_nodeVersion":"24.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.43.0_1749452092245_0.38307301394035065","host":"s3://npm-registry-packages-npm-production"}},"3.44.0":{"name":"core-js","version":"3.44.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.44.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"db4fd4fa07933c1d6898c8b112a1119a9336e959","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.44.0.tgz","fileCount":3645,"integrity":"sha512-aFCtd4l6GvAXwVEh3XbbVqJGHDJt0OZRa+5ePGx3LLwi12WfexqQxcsohb2wgsa/92xtl19Hd66G/L+TaAxDMw==","signatures":[{"sig":"MEQCIGBf5TV0Cxye/15yskgqeCZmwTE7Wl6tm3xnzLMDNqp4AiB9A+mVf+sqjE5+dnHQmrVtGHSQ0hxOVVw47wz7UbIAZQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1305923},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"3e7b462d5662d3afaef35efa3cdb9fe9ffe1a2ad","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","actor":{"name":"zloirock","type":"user","email":"zloirock@zloirock.ru"},"email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.4.2","description":"Standard library","directories":{},"_nodeVersion":"24.3.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.44.0_1751896109652_0.41837509174872056","host":"s3://npm-registry-packages-npm-production"}},"3.45.0":{"name":"core-js","version":"3.45.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.45.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"556c2af44a2d9c73ea7b49504392474a9f7c947e","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.45.0.tgz","fileCount":3671,"integrity":"sha512-c2KZL9lP4DjkN3hk/an4pWn5b5ZefhRJnAc42n6LJ19kSnbeRbdQZE5dSeE2LBol1OwJD3X1BQvFTAsa8ReeDA==","signatures":[{"sig":"MEUCIQCpHUQoWy37Rm7auF8prXHd2iXxi1czxjz0Gbz34vgbCwIgfHmc13IDPZV2A489jW3UQEM0kQ2ZbvYQc3s/UdU6vb4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1310922},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"79bf81948fb9aa42f617d9e41e9e9e8c60fef411","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.5.1","description":"Standard library","directories":{},"_nodeVersion":"24.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.45.0_1754331301805_0.381205095693671","host":"s3://npm-registry-packages-npm-production"}},"3.45.1":{"name":"core-js","version":"3.45.1","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.45.1","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://github.com/zloirock/core-js#readme","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"5810e04a1b4e9bc5ddaa4dd12e702ff67300634d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.45.1.tgz","fileCount":3671,"integrity":"sha512-L4NPsJlCfZsPeXukyzHFlg/i7IIVwHSItR0wg0FLNqYClJ4MQYTYLbC7EkjKYRLZF2iof2MUgN0EGy7MdQFChg==","signatures":[{"sig":"MEUCIA15h5doRgkZ0+/1v1oZXF9Fp9vC09pJxkVZl1vJF41fAiEAhA0z+B8UwK9Ciw3yY8Rc3fgtr4Yxyfzan79/7hvG9Z4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1311313},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"a16b86ad8c360cb1a597ca1e6b4a6c7a345cbac8","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.5.1","description":"Standard library","directories":{},"_nodeVersion":"24.6.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.45.1_1755713094163_0.7516800157084169","host":"s3://npm-registry-packages-npm-production"}},"3.46.0":{"name":"core-js","version":"3.46.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.46.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://core-js.io","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"323a092b96381a9184d0cd49ee9083b2f93373bb","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.46.0.tgz","fileCount":3672,"integrity":"sha512-vDMm9B0xnqqZ8uSBpZ8sNtRtOdmfShrvT6h2TuQGLs0Is+cR0DYbj/KWP6ALVNbWPpqA/qPLoOuppJN07humpA==","signatures":[{"sig":"MEUCIQDbstkAbecOlg5wzXNOV8ZQ23vvxK5/Lc5PWtJdXJ5GmwIgMQz7nT5wPElYsiwuuipw86RaEabvyVS7eb95gaQ2eGQ=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1312490},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"98d9dc499ffa8fe7543b8cb8f613351e5b3ab8de","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.6.2","description":"Standard library","directories":{},"_nodeVersion":"24.10.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.46.0_1760036211959_0.9114867046190234","host":"s3://npm-registry-packages-npm-production"}},"3.47.0":{"name":"core-js","version":"3.47.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.47.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://core-js.io","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"436ef07650e191afeb84c24481b298bd60eb4a17","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.47.0.tgz","fileCount":3685,"integrity":"sha512-c3Q2VVkGAUyupsjRnaNX6u8Dq2vAdzm9iuPj5FW0fRxzlxgq9Q39MDq10IvmQSpLgHQNyQzQmOo6bgGHmH3NNg==","signatures":[{"sig":"MEUCIQCEIcmgmEsFKuhHxn7oBrKasQz9G2H22tX80DkMSk3a1QIgEoas0zDKuY/GV+ievwgLVEy6gullkzbSl4o2boE3vbg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1314787},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"c1d2c7e625091c16af14e4b9db10929998f7a61c","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.6.2","description":"Standard library","directories":{},"sideEffects":true,"_nodeVersion":"25.2.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.47.0_1763461118519_0.848629331134432","host":"s3://npm-registry-packages-npm-production"}},"3.48.0":{"name":"core-js","version":"3.48.0","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"author":{"url":"http://zloirock.ru","name":"Denis Pushkarev","email":"zloirock@zloirock.ru"},"license":"MIT","_id":"core-js@3.48.0","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"homepage":"https://core-js.io","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"dist":{"shasum":"1f813220a47bbf0e667e3885c36cd6f0593bf14d","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.48.0.tgz","fileCount":3695,"integrity":"sha512-zpEHTy1fjTMZCKLHUZoVeylt9XrzaIN2rbPXEt0k+q7JE5CkCZdo6bNq55bn24a69CH7ErAVLKijxJja4fw+UQ==","signatures":[{"sig":"MEUCIQCMSzlGl1yoFHS1y8WX698xtgpk8xiGEw2Kve63+gPUNgIgYZRgLpC/Gs8OTSr6zW6qPgX9SPHciP9iXrhvDvqlUfk=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":1319251},"main":"index.js","type":"commonjs","funding":{"url":"https://opencollective.com/core-js","type":"opencollective"},"gitHead":"5d657da9e5ab5ac2f1657ba81821ecc50960b3ad","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"repository":{"url":"git+https://github.com/zloirock/core-js.git","type":"git","directory":"packages/core-js"},"_npmVersion":"11.7.0","description":"Standard library","directories":{},"sideEffects":true,"_nodeVersion":"25.4.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/core-js_3.48.0_1769018636198_0.4794482847271171","host":"s3://npm-registry-packages-npm-production"}},"3.49.0":{"name":"core-js","version":"3.49.0","type":"commonjs","description":"Standard library","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ES2025","ES2026","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","ECMAScript 2025","ECMAScript 2026","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git","directory":"packages/core-js"},"homepage":"https://core-js.io","bugs":{"url":"https://github.com/zloirock/core-js/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/core-js"},"license":"MIT","author":{"name":"Denis Pushkarev","email":"zloirock@zloirock.ru","url":"http://zloirock.ru"},"sideEffects":true,"main":"index.js","scripts":{"postinstall":"node -e \"try{require('./postinstall')}catch(e){}\""},"gitHead":"80adfc415fa74e5e4f6ba2de6425aa577e3ad439","_id":"core-js@3.49.0","_nodeVersion":"25.8.0","_npmVersion":"11.11.0","dist":{"integrity":"sha512-es1U2+YTtzpwkxVLwAFdSpaIMyQaq0PBgm3YD1W3Qpsn1NAmO3KSgZfu+oGSWVu6NvLHoHCV/aYcsE5wiB7ALg==","shasum":"8b4d520ac034311fa21aa616f017ada0e0dbbddd","tarball":"https://mirrors.huaweicloud.com/repository/npm/core-js/-/core-js-3.49.0.tgz","fileCount":3695,"unpackedSize":1330856,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEYCIQC4FxOnc3bNgMEiGTTnjEt8McEoQqiPz0t5IbYdsKoQogIhAOV4laIIKBjmcO7HAK3K2MI6I8A5LTS42CZSM7xk2id+"}]},"_npmUser":{"name":"zloirock","email":"zloirock@zloirock.ru"},"directories":{},"maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/core-js_3.49.0_1773695583186_0.9170591462907396"},"_hasShrinkwrap":false}},"time":{"created":"2013-07-18T10:49:42.468Z","modified":"2026-03-16T21:13:03.519Z","0.0.1":"2013-07-18T10:53:27.528Z","0.0.3":"2013-12-24T09:45:00.433Z","0.0.4":"2014-01-05T02:05:43.411Z","0.0.5":"2014-01-09T09:05:31.109Z","0.0.7":"2014-05-07T17:27:23.094Z","0.0.8":"2014-09-12T15:38:01.563Z","0.0.9":"2014-10-30T15:09:49.499Z","0.1.0":"2014-11-17T00:42:23.913Z","0.1.1":"2014-11-18T11:52:05.640Z","0.1.2":"2014-11-19T13:43:20.217Z","0.1.3":"2014-11-20T09:19:37.161Z","0.1.4":"2014-11-27T11:13:29.979Z","0.1.5":"2014-12-01T13:32:35.129Z","0.2.0":"2014-12-06T18:56:39.275Z","0.2.1":"2014-12-11T21:02:09.371Z","0.2.2":"2014-12-12T21:17:09.688Z","0.2.3":"2014-12-15T15:24:24.134Z","0.2.4":"2014-12-17T00:54:28.438Z","0.2.5":"2014-12-20T03:31:13.556Z","0.3.0":"2014-12-22T22:21:16.066Z","0.3.1":"2014-12-23T12:52:54.979Z","0.3.2":"2014-12-25T04:14:39.455Z","0.3.3":"2014-12-28T01:30:26.623Z","0.4.0":"2015-01-04T15:22:16.756Z","0.4.1":"2015-01-05T22:44:59.166Z","0.4.2":"2015-01-10T05:47:52.194Z","0.4.3":"2015-01-10T11:46:00.422Z","0.4.4":"2015-01-11T15:14:14.017Z","0.4.5":"2015-01-16T14:23:25.332Z","0.4.6":"2015-01-21T17:23:06.611Z","0.4.7":"2015-01-24T19:17:22.927Z","0.4.8":"2015-01-25T10:05:06.642Z","0.4.9":"2015-01-26T18:28:39.598Z","0.4.10":"2015-01-28T09:18:31.947Z","0.5.0":"2015-02-07T22:32:45.851Z","0.5.1":"2015-02-08T22:38:40.531Z","0.5.2":"2015-02-10T10:30:46.396Z","0.5.3":"2015-02-14T05:37:26.115Z","0.5.4":"2015-02-15T01:13:03.863Z","0.6.0":"2015-02-23T04:33:21.639Z","0.6.1":"2015-02-24T09:26:14.614Z","0.7.0":"2015-03-05T19:25:27.737Z","0.7.1":"2015-03-07T00:49:14.883Z","0.7.2":"2015-03-08T22:30:26.116Z","0.8.0":"2015-04-02T15:17:53.957Z","0.8.1":"2015-04-03T08:01:42.782Z","0.8.2":"2015-04-13T01:10:49.778Z","0.8.3":"2015-04-13T18:56:41.064Z","0.8.4":"2015-04-17T18:05:07.137Z","0.9.0":"2015-04-24T05:53:40.625Z","0.9.1":"2015-04-25T04:27:16.301Z","0.9.2":"2015-04-25T06:49:59.947Z","0.9.3":"2015-04-25T23:11:28.280Z","0.9.4":"2015-04-26T21:48:00.055Z","0.9.5":"2015-04-29T21:38:52.134Z","0.9.6":"2015-05-01T12:31:56.823Z","0.9.7":"2015-05-07T12:24:09.237Z","0.9.8":"2015-05-11T18:04:56.062Z","0.9.9":"2015-05-14T17:27:25.742Z","0.9.10":"2015-05-15T18:32:46.639Z","0.9.11":"2015-05-18T15:34:24.409Z","0.9.12":"2015-05-23T22:57:31.314Z","0.9.13":"2015-05-25T10:19:28.450Z","0.9.14":"2015-06-03T20:47:16.788Z","0.9.15":"2015-06-09T03:02:09.944Z","0.9.16":"2015-06-11T11:32:25.954Z","0.9.17":"2015-06-13T18:35:16.227Z","0.9.18":"2015-06-17T16:46:17.311Z","1.0.0":"2015-07-21T18:44:25.972Z","1.0.1":"2015-07-31T01:22:56.917Z","1.1.0":"2015-08-17T17:04:20.927Z","1.1.1":"2015-08-20T08:01:11.489Z","1.1.2":"2015-08-28T12:36:50.180Z","1.1.3":"2015-08-29T12:12:17.671Z","1.1.4":"2015-09-05T02:36:50.933Z","1.2.0":"2015-09-26T19:35:37.103Z","1.2.1":"2015-10-01T19:57:31.444Z","1.2.2":"2015-10-18T19:25:05.439Z","1.2.3":"2015-10-22T19:42:26.499Z","1.2.4":"2015-10-31T23:09:19.630Z","1.2.5":"2015-11-02T11:12:17.868Z","1.2.6":"2015-11-09T04:47:47.062Z","2.0.0-alpha":"2015-11-25T18:16:38.626Z","2.0.0-beta":"2015-12-07T18:04:19.426Z","2.0.0-beta.2":"2015-12-18T08:14:56.981Z","2.0.0":"2015-12-24T08:31:46.168Z","2.0.1":"2015-12-31T10:22:14.674Z","2.0.2":"2016-01-03T23:09:29.994Z","2.0.3":"2016-01-11T08:13:24.517Z","2.1.0":"2016-02-08T23:32:29.307Z","2.1.1":"2016-02-22T04:09:25.032Z","2.1.2":"2016-02-29T04:45:29.922Z","2.1.3":"2016-02-29T17:26:06.070Z","2.1.4":"2016-03-08T17:37:04.261Z","2.1.5":"2016-03-12T10:57:48.581Z","2.2.0":"2016-03-15T16:07:12.392Z","2.2.1":"2016-03-18T18:37:32.093Z","2.2.2":"2016-04-06T12:19:54.178Z","2.3.0":"2016-04-23T21:35:08.705Z","2.4.0":"2016-05-08T01:36:21.015Z","1.2.7":"2016-07-17T21:22:00.033Z","2.4.1":"2016-07-17T21:43:28.694Z","2.5.0":"2017-08-06T14:30:22.262Z","2.5.1":"2017-08-31T17:52:58.344Z","2.5.2":"2017-12-09T12:23:55.693Z","2.5.3":"2017-12-11T20:37:05.691Z","3.0.0-alpha.1":"2018-03-26T00:03:20.940Z","2.5.4":"2018-03-27T16:16:31.935Z","3.0.0-alpha.2":"2018-03-27T16:51:00.447Z","3.0.0-alpha.3":"2018-03-30T21:16:59.667Z","3.0.0-alpha.4":"2018-04-09T00:16:12.581Z","2.5.5":"2018-04-09T03:28:30.166Z","2.5.6":"2018-05-07T13:57:54.319Z","3.0.0-beta.1":"2018-05-19T19:46:19.868Z","2.5.7":"2018-05-26T11:41:34.512Z","3.0.0-beta.2":"2018-05-26T12:09:28.522Z","3.0.0-beta.3":"2018-06-07T07:26:30.510Z","3.0.0-beta.4":"2018-12-04T04:42:30.330Z","2.6.0":"2018-12-05T10:53:12.863Z","3.0.0-beta.5":"2018-12-11T14:50:45.085Z","2.6.1":"2018-12-18T09:59:29.920Z","3.0.0-beta.6":"2018-12-18T10:36:19.046Z","3.0.0-beta.7":"2018-12-27T00:51:18.493Z","2.6.2":"2019-01-10T07:14:55.270Z","3.0.0-beta.8":"2019-01-10T07:36:06.642Z","3.0.0-beta.9":"2019-01-17T10:17:57.790Z","3.0.0-beta.10":"2019-01-22T01:41:04.927Z","2.6.3":"2019-01-22T11:54:31.306Z","3.0.0-beta.11":"2019-01-27T23:27:43.729Z","3.0.0-beta.12":"2019-02-02T02:47:55.190Z","3.0.0-beta.13":"2019-02-04T10:08:55.653Z","3.0.0-beta.14":"2019-02-07T07:43:36.329Z","2.6.4":"2019-02-07T08:44:26.349Z","3.0.0-beta.15":"2019-02-09T21:14:34.348Z","2.6.5":"2019-02-15T10:10:33.006Z","3.0.0-beta.16":"2019-02-18T20:37:00.849Z","3.0.0-beta.17":"2019-03-09T21:13:28.241Z","3.0.0-beta.18":"2019-03-09T22:16:15.349Z","3.0.0-beta.19":"2019-03-14T20:44:23.362Z","3.0.0-beta.20":"2019-03-17T19:58:44.296Z","3.0.0":"2019-03-19T19:17:41.933Z","3.0.1":"2019-04-06T07:18:44.453Z","2.6.6":"2019-05-19T18:55:23.988Z","3.1.0":"2019-05-19T19:26:05.036Z","2.6.7":"2019-05-20T20:21:21.688Z","3.1.1":"2019-05-20T20:41:14.892Z","2.6.8":"2019-05-21T22:16:47.718Z","3.1.2":"2019-05-21T22:27:09.494Z","2.6.9":"2019-05-27T12:54:28.336Z","3.1.3":"2019-05-27T13:05:27.430Z","3.1.4":"2019-06-15T11:56:32.398Z","3.2.0":"2019-08-08T22:04:58.186Z","3.2.1":"2019-08-12T12:24:34.420Z","2.6.10":"2019-10-13T14:41:47.079Z","3.3.0":"2019-10-13T14:42:49.520Z","3.3.1":"2019-10-13T15:05:47.288Z","3.3.2":"2019-10-14T13:41:03.032Z","3.3.3":"2019-10-21T17:07:10.075Z","3.3.4":"2019-10-25T11:07:04.380Z","3.3.5":"2019-10-28T17:30:24.646Z","3.3.6":"2019-10-31T17:07:43.640Z","3.4.0":"2019-11-06T21:45:09.701Z","3.4.1":"2019-11-12T05:22:52.200Z","3.4.2":"2019-11-21T19:00:39.513Z","3.4.3":"2019-11-26T14:02:52.619Z","3.4.4":"2019-11-27T06:18:51.533Z","3.4.5":"2019-11-27T22:06:56.328Z","3.4.6":"2019-12-02T17:26:43.254Z","3.4.7":"2019-12-02T17:57:39.950Z","2.6.11":"2019-12-08T21:02:51.010Z","3.4.8":"2019-12-08T21:13:45.616Z","3.5.0":"2019-12-12T00:58:51.690Z","3.6.0":"2019-12-18T23:28:20.979Z","3.6.1":"2019-12-25T06:05:20.392Z","3.6.2":"2020-01-06T17:35:30.322Z","3.6.3":"2020-01-10T23:22:42.696Z","3.6.4":"2020-01-13T23:09:52.122Z","3.6.5":"2020-04-09T16:37:31.166Z","3.7.0":"2020-11-06T15:11:17.855Z","2.6.12":"2020-11-25T18:08:47.381Z","3.8.0":"2020-11-25T18:19:47.434Z","3.8.1":"2020-12-06T01:21:25.208Z","3.8.2":"2021-01-03T14:24:34.679Z","3.8.3":"2021-01-19T07:08:17.175Z","3.9.0":"2021-02-18T17:20:15.607Z","3.9.1":"2021-02-28T18:33:41.801Z","3.10.0":"2021-03-31T08:08:57.080Z","3.10.1":"2021-04-07T19:04:41.961Z","3.10.2":"2021-04-19T17:03:37.079Z","3.11.0":"2021-04-22T10:41:37.284Z","3.11.1":"2021-04-28T14:16:03.651Z","3.11.2":"2021-05-03T10:46:07.031Z","3.11.3":"2021-05-05T13:48:11.269Z","3.12.0":"2021-05-06T09:06:40.241Z","3.12.1":"2021-05-08T21:04:17.095Z","3.13.0":"2021-05-25T19:11:28.739Z","3.13.1":"2021-05-29T09:00:50.325Z","3.14.0":"2021-06-05T07:50:04.459Z","3.15.0":"2021-06-20T17:33:17.807Z","3.15.1":"2021-06-22T18:32:16.052Z","3.15.2":"2021-06-29T11:26:32.332Z","3.16.0":"2021-07-30T03:41:08.304Z","3.16.1":"2021-08-08T17:34:46.644Z","3.16.2":"2021-08-17T13:14:15.932Z","3.16.3":"2021-08-24T20:17:35.782Z","3.16.4":"2021-08-29T14:55:50.691Z","3.17.0":"2021-09-01T17:23:07.254Z","3.17.1":"2021-09-01T20:15:59.602Z","3.17.2":"2021-09-02T17:21:12.908Z","3.17.3":"2021-09-09T08:41:33.288Z","3.18.0":"2021-09-19T19:03:42.947Z","3.18.1":"2021-09-26T22:32:29.201Z","3.18.2":"2021-10-05T18:30:25.626Z","3.18.3":"2021-10-12T18:13:49.830Z","3.19.0":"2021-10-25T06:10:53.913Z","3.19.1":"2021-11-02T19:58:30.436Z","3.19.2":"2021-11-29T18:44:23.158Z","3.19.3":"2021-12-06T06:26:21.101Z","3.20.0":"2021-12-15T19:14:23.904Z","3.20.1":"2021-12-23T11:22:58.356Z","3.20.2":"2022-01-01T18:33:07.076Z","3.20.3":"2022-01-15T11:13:18.538Z","3.21.0":"2022-02-01T17:12:26.229Z","3.21.1":"2022-02-16T18:24:04.052Z","3.22.0":"2022-04-15T02:51:35.143Z","3.22.1":"2022-04-19T23:41:00.208Z","3.22.2":"2022-04-21T13:18:16.417Z","3.22.3":"2022-04-28T03:21:55.080Z","3.22.4":"2022-05-02T18:04:03.928Z","3.22.5":"2022-05-10T09:32:57.933Z","3.22.6":"2022-05-22T18:12:50.772Z","3.22.7":"2022-05-24T14:01:38.372Z","3.22.8":"2022-06-01T18:05:01.356Z","3.23.0":"2022-06-13T18:37:04.339Z","3.23.1":"2022-06-14T13:24:44.814Z","3.23.2":"2022-06-20T19:07:22.845Z","3.23.3":"2022-06-25T20:16:55.437Z","3.23.4":"2022-07-09T18:24:24.850Z","3.23.5":"2022-07-17T19:15:30.893Z","3.24.0":"2022-07-25T04:58:01.073Z","3.24.1":"2022-07-29T18:07:18.173Z","3.25.0":"2022-08-24T20:21:33.514Z","3.25.1":"2022-09-07T20:32:43.817Z","3.25.2":"2022-09-18T18:16:20.653Z","3.25.3":"2022-09-25T23:13:27.574Z","3.25.4":"2022-10-02T18:03:20.518Z","3.25.5":"2022-10-03T18:34:41.611Z","3.26.0":"2022-10-23T18:32:51.273Z","3.26.1":"2022-11-13T18:12:09.473Z","3.27.0":"2022-12-25T18:09:02.964Z","3.27.1":"2022-12-29T18:11:56.360Z","3.27.2":"2023-01-18T19:37:27.158Z","3.28.0":"2023-02-13T19:12:12.569Z","3.29.0":"2023-02-26T21:20:49.085Z","3.29.1":"2023-03-13T06:00:09.548Z","3.30.0":"2023-04-03T20:27:51.216Z","3.30.1":"2023-04-13T18:33:53.598Z","3.30.2":"2023-05-06T19:16:59.642Z","3.31.0":"2023-06-11T19:55:33.223Z","3.31.1":"2023-07-06T00:55:03.047Z","3.32.0":"2023-07-27T18:51:50.712Z","3.32.1":"2023-08-18T17:05:33.550Z","3.32.2":"2023-09-07T12:48:31.203Z","3.33.0":"2023-10-01T18:37:26.915Z","3.33.1":"2023-10-20T05:38:28.395Z","3.33.2":"2023-10-30T17:21:55.063Z","3.33.3":"2023-11-19T18:08:18.656Z","3.34.0":"2023-12-05T18:06:26.226Z","3.35.0":"2023-12-28T22:46:49.944Z","3.35.1":"2024-01-20T22:50:31.455Z","4.0.0-alpha.0":"2024-02-13T13:18:59.386Z","3.36.0":"2024-02-14T08:13:44.193Z","3.36.1":"2024-03-19T01:43:01.427Z","3.37.0":"2024-04-16T19:50:45.014Z","3.37.1":"2024-05-14T08:08:36.004Z","3.38.0":"2024-08-04T18:19:09.775Z","3.38.1":"2024-08-20T11:38:43.960Z","3.39.0":"2024-10-31T00:21:21.539Z","3.40.0":"2025-01-07T18:22:22.675Z","3.41.0":"2025-03-01T16:56:15.102Z","3.42.0":"2025-04-29T18:03:50.847Z","3.43.0":"2025-06-09T06:54:52.526Z","3.44.0":"2025-07-07T13:48:29.953Z","3.45.0":"2025-08-04T18:15:02.141Z","3.45.1":"2025-08-20T18:04:54.493Z","3.46.0":"2025-10-09T18:56:52.229Z","3.47.0":"2025-11-18T10:18:38.864Z","3.48.0":"2026-01-21T18:03:56.410Z","3.49.0":"2026-03-16T21:13:03.395Z"},"bugs":{"url":"https://github.com/zloirock/core-js/issues"},"author":{"name":"Denis Pushkarev","email":"zloirock@zloirock.ru","url":"http://zloirock.ru"},"license":"MIT","homepage":"https://core-js.io","keywords":["ES3","ES5","ES6","ES7","ES2015","ES2016","ES2017","ES2018","ES2019","ES2020","ES2021","ES2022","ES2023","ES2024","ES2025","ES2026","ECMAScript 3","ECMAScript 5","ECMAScript 6","ECMAScript 7","ECMAScript 2015","ECMAScript 2016","ECMAScript 2017","ECMAScript 2018","ECMAScript 2019","ECMAScript 2020","ECMAScript 2021","ECMAScript 2022","ECMAScript 2023","ECMAScript 2024","ECMAScript 2025","ECMAScript 2026","Map","Set","WeakMap","WeakSet","TypedArray","Promise","Observable","Symbol","Iterator","AsyncIterator","URL","URLSearchParams","queueMicrotask","setImmediate","structuredClone","polyfill","ponyfill","shim"],"repository":{"type":"git","url":"git+https://github.com/zloirock/core-js.git","directory":"packages/core-js"},"description":"Standard library","maintainers":[{"name":"zloirock","email":"zloirock@zloirock.ru"}],"readme":"![logo](https://user-images.githubusercontent.com/2213682/146607186-8e13ddef-26a4-4ebf-befd-5aac9d77c090.png)\n\n
\n\n[![fundraising](https://opencollective.com/core-js/all/badge.svg?label=fundraising)](https://opencollective.com/core-js) [![PRs welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/zloirock/core-js/blob/master/CONTRIBUTING.md) [![version](https://img.shields.io/npm/v/core-js.svg)](https://www.npmjs.com/package/core-js) [![core-js downloads](https://img.shields.io/npm/dm/core-js.svg?label=npm%20i%20core-js)](https://npm-stat.com/charts.html?package=core-js&package=core-js-pure&package=core-js-compat&from=2014-11-18)\n\n
\n\n**I highly recommend reading this: [So, what's next?](https://github.com/zloirock/core-js/blob/master/docs/2023-02-14-so-whats-next.md)**\n---\n\n> [`core-js`](https://core-js.io) is a modular standard library for JavaScript. Includes polyfills for ECMAScript up to 2026: [promises](https://core-js.io/docs/features/ecmascript/promise), [symbols](https://core-js.io/docs/features/ecmascript/symbol), [collections](https://core-js.io/docs/features/ecmascript/collections), [iterators](https://core-js.io/docs/features/ecmascript/iterator), [typed arrays](https://core-js.io/docs/features/ecmascript/typed-arrays), many other features, ECMAScript proposals, some cross-platform WHATWG / W3C features and proposals like [`URL`](https://core-js.io/docs/features/web-standards/url-and-urlsearchparams). You can load only required features or use it without global namespace pollution.\n\n## Raising funds\n\n`core-js` isn't backed by a company, so the future of this project depends on you. Become a sponsor or a backer if you are interested in `core-js`: [**Open Collective**](https://opencollective.com/core-js), [**Patreon**](https://patreon.com/zloirock), [**Boosty**](https://boosty.to/zloirock), **Bitcoin ( bc1qlea7544qtsmj2rayg0lthvza9fau63ux0fstcz )**, [**Alipay**](https://user-images.githubusercontent.com/2213682/219464783-c17ad329-17ce-4795-82a7-f609493345ed.png).\n\n---\n\n\n\n---\n\n\n\n---\n\n[*Example of usage*](https://tinyurl.com/28zqjbun):\n```js\nimport 'core-js/actual';\n\nPromise.try(() => 42).then(it => console.log(it)); // => 42\n\nArray.from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]\n\n[1, 2].flatMap(it => [it, it]); // => [1, 1, 2, 2]\n\nIterator.concat([1, 2], function * (i) { while (true) yield i++; }(3))\n .drop(1).take(5)\n .filter(it => it % 2)\n .map(it => it ** 2)\n .toArray(); // => [9, 25]\n\nstructuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])\n```\n\n*You can load only required features*:\n```js\nimport 'core-js/actual/promise';\nimport 'core-js/actual/set';\nimport 'core-js/actual/iterator';\nimport 'core-js/actual/array/from';\nimport 'core-js/actual/array/flat-map';\nimport 'core-js/actual/structured-clone';\n\nPromise.try(() => 42).then(it => console.log(it)); // => 42\n\nArray.from(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]\n\n[1, 2].flatMap(it => [it, it]); // => [1, 1, 2, 2]\n\nIterator.concat([1, 2], function * (i) { while (true) yield i++; }(3))\n .drop(1).take(5)\n .filter(it => it % 2)\n .map(it => it ** 2)\n .toArray(); // => [9, 25]\n\nstructuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])\n```\n\n*Or use it without global namespace pollution*:\n```js\nimport Promise from 'core-js-pure/actual/promise';\nimport Set from 'core-js-pure/actual/set';\nimport Iterator from 'core-js-pure/actual/iterator';\nimport from from 'core-js-pure/actual/array/from';\nimport flatMap from 'core-js-pure/actual/array/flat-map';\nimport structuredClone from 'core-js-pure/actual/structured-clone';\n\nPromise.try(() => 42).then(it => console.log(it)); // => 42\n\nfrom(new Set([1, 2, 3]).union(new Set([3, 4, 5]))); // => [1, 2, 3, 4, 5]\n\nflatMap([1, 2], it => [it, it]); // => [1, 1, 2, 2]\n\nIterator.concat([1, 2], function * (i) { while (true) yield i++; }(3))\n .drop(1).take(5)\n .filter(it => it % 2)\n .map(it => it ** 2)\n .toArray(); // => [9, 25]\n\nstructuredClone(new Set([1, 2, 3])); // => new Set([1, 2, 3])\n```\n\n**It's a global version (first 2 examples), for more info see [`core-js` documentation](https://core-js.io).**\n","readmeFilename":"README.md","users":{"285858315":true,"btd":true,"boto":true,"iolo":true,"mgol":true,"bengi":true,"doruk":true,"jalik":true,"jream":true,"muroc":true,"panlw":true,"ajduke":true,"hualei":true,"monjer":true,"yangzw":true,"ackolla":true,"ahashem":true,"severen":true,"sshrike":true,"wangfei":true,"corintho":true,"crafterm":true,"dzhou777":true,"erikvold":true,"huiyifyj":true,"moimikey":true,"rochejul":true,"wangfeia":true,"wkaifang":true,"xueboren":true,"zloirock":true,"alex-cory":true,"alexxnica":true,"elidiazgt":true,"heartnett":true,"kevinagin":true,"largepuma":true,"ldq-first":true,"qqcome110":true,"retorillo":true,"shakakira":true,"stephanlv":true,"udaygowda":true,"uptonking":true,"aaronwells":true,"blackhuman":true,"bplok20010":true,"daniellink":true,"h13i32maru":true,"josephst18":true,"seangenabe":true,"shuoshubao":true,"flumpus-dev":true,"lukvonstrom":true,"peter.hewat":true,"shangsinian":true,"soenkekluth":true,"wangnan0610":true,"jacobmischka":true,"jeandrebosch":true,"nickeltobias":true,"santhoshbabu":true,"tobiasnickel":true,"chinawolf_wyp":true,"program247365":true,"adriancmiranda":true,"frederik_bosch":true,"randallagordon":true,"thevikingcoder":true,"yazanrawashdeh":true,"ognjen.jevremovic":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/b6/7e/3c68f9df804303f9e920de4f75898906b7c53814937c7eecf10bf0c9192cbd641580712a711ff91f4f194f1d08c3e61ad58c49faae3f1c83b3c0f3bfb4ca b/frontend/.npm-cache/_cacache/content-v2/sha512/b6/7e/3c68f9df804303f9e920de4f75898906b7c53814937c7eecf10bf0c9192cbd641580712a711ff91f4f194f1d08c3e61ad58c49faae3f1c83b3c0f3bfb4ca new file mode 100644 index 0000000..f61d71b --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/b6/7e/3c68f9df804303f9e920de4f75898906b7c53814937c7eecf10bf0c9192cbd641580712a711ff91f4f194f1d08c3e61ad58c49faae3f1c83b3c0f3bfb4ca @@ -0,0 +1 @@ +{"_id":"scroll-into-view-if-needed","_rev":"95-1c47d727a18599f8b162e9f442383d44","name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","dist-tags":{"latest":"3.1.0"},"versions":{"1.0.0":{"name":"scroll-into-view-if-needed","version":"1.0.0","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/bundle.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"rollup src/index.js -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel":"^6.5.2","babel-preset-es2015-rollup":"^1.1.1","rollup":"^0.25.8","rollup-plugin-babel":"^2.4.0","rollup-plugin-commonjs":"^2.2.1","rollup-plugin-node-resolve":"^1.5.0"},"gitHead":"fa7bca76b50598b76fc8f84e7cb275f22caa56bf","_id":"scroll-into-view-if-needed@1.0.0","_shasum":"3bea4568253b47fed069fa4cbbebc15c7d3effc6","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.10.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"dist":{"shasum":"3bea4568253b47fed069fa4cbbebc15c7d3effc6","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.0.0.tgz","integrity":"sha512-e8Y4CAkfKiBzqSKF2DGDHUN3J05253446FMqoWV1aeq+zRr4vATvaS9tVexApyU3acxI/ywxCxkVWMvXPQHVvw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqDLXd3qi7pdC/nQrW55gki/AkFbnYNXIQH8k9WrycqgIgF4SlwS+libo+B0UxUPcbg7cqb2Jx0esK1GOphG9PeN4="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.0.0.tgz_1461015327856_0.0333374491892755"},"directories":{}},"1.0.1":{"name":"scroll-into-view-if-needed","version":"1.0.1","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/bundle.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"rollup src/index.js -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel":"^6.5.2","babel-preset-es2015-rollup":"^1.1.1","rollup":"^0.25.8","rollup-plugin-babel":"^2.4.0","rollup-plugin-commonjs":"^2.2.1","rollup-plugin-node-resolve":"^1.5.0"},"gitHead":"53b69058921c8734337ac4cf4a04615098d76cca","_id":"scroll-into-view-if-needed@1.0.1","_shasum":"281b5cf326c5213802201e5fc890e5a08678ddea","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.10.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"dist":{"shasum":"281b5cf326c5213802201e5fc890e5a08678ddea","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.0.1.tgz","integrity":"sha512-fNrBmCXJVGqQSZ+e9WEOpsLmB48bWjnPqdX42mgGODTlnLkCRHyu5etsRfTfE/s1zJJtRQiHOG27wcBmB7kFAw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC494WNUOptujrV8sH/fFkyaI0hGuTGlcdYVPplcXr9kgIhAMd/dCPPGHfZTLzJbkGINOrDirLl7MUgV3hM55RhB9Lz"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.0.1.tgz_1461015378516_0.05490831774659455"},"directories":{}},"1.0.2":{"name":"scroll-into-view-if-needed","version":"1.0.2","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/bundle.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel":"^6.5.2","babel-preset-es2015-rollup":"^1.1.1","rollup":"^0.25.8","rollup-plugin-babel":"^2.4.0","rollup-plugin-commonjs":"^2.2.1","rollup-plugin-node-resolve":"^1.5.0"},"gitHead":"53b69058921c8734337ac4cf4a04615098d76cca","_id":"scroll-into-view-if-needed@1.0.2","_shasum":"933ea439c83edeeaf7fa6a30a75c22c134b84ce3","_from":".","_npmVersion":"3.7.2","_nodeVersion":"5.10.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"dist":{"shasum":"933ea439c83edeeaf7fa6a30a75c22c134b84ce3","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.0.2.tgz","integrity":"sha512-zGhkE54Lll3onLVP/j/UQYVgY3msioKnkcXpkv1ExOHKeSnauJLMyyCwadEQ44OHxjY5+W6uBrWyFZSSm9YCGA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2JI/fPq94eoOQrtYmRHzg6n7C7t9ppara1MbW2kq1gQIhAPk6nMa7pCEwrlahv4tHcC8a88sTRjEt7xAAf3UDYhql"}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.0.2.tgz_1461015753662_0.14820529567077756"},"directories":{}},"1.0.3":{"name":"scroll-into-view-if-needed","version":"1.0.3","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/bundle.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel":"^6.5.2","babel-preset-es2015-rollup":"^1.2.0","rollup":"^0.36.1","rollup-plugin-babel":"^2.6.0","rollup-plugin-commonjs":"^5.0.4","rollup-plugin-node-resolve":"^2.0.0"},"gitHead":"4320273018a98dfa596b9f55fd1724e174c3fdd4","_id":"scroll-into-view-if-needed@1.0.3","_shasum":"e72dc712b88d3b1f4fcc5f8ecc632a7da90b3ab8","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.6.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"dist":{"shasum":"e72dc712b88d3b1f4fcc5f8ecc632a7da90b3ab8","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.0.3.tgz","integrity":"sha512-Ks7rlppBfw+iMyGlP2vCWV+06kWOcpjWCLze6nhMjzbhF7dW3mchirgGGvmnQzV/YHrDEbpaUSH/P5t87PdqKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD9OAe4S1x2ammPmn6Ig24FGOMTxw4icXwo5i8JgfdbogIgBNYShj45pm4AxMSLwDMaJY68vPbOZORNzHxXU+Th31Q="}]},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.0.3.tgz_1475331815434_0.19186952314339578"},"directories":{}},"1.0.4":{"name":"scroll-into-view-if-needed","version":"1.0.4","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/bundle.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","prepublish":"npm run build","postversion":"git add package.json && git commit -m \"chore(package): update version\"","postpublish":"gh-release"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel":"^6.5.2","babel-preset-es2015-rollup":"^1.2.0","gh-release":"^2.1.0","rollup":"^0.36.3","rollup-plugin-babel":"^2.6.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0"},"gitHead":"2745d844727c4f0a804f9ff71942ca29f7366cba","_id":"scroll-into-view-if-needed@1.0.4","_shasum":"614237adb15e19861c7c3916ced94cee4d11bc84","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.0.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"dist":{"shasum":"614237adb15e19861c7c3916ced94cee4d11bc84","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.0.4.tgz","integrity":"sha512-fLF2TTZgRTjyl+YGWnKCgYW75RAQ/k1tscALvf6OwyDkKWii0B5U5O6qgAQmkbXyWgz6C+Y1/JLVJr5YKQB3RA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAD13HAuQONdPwwsNhvsRCdmNuJzamBwAz9Y8gXiGFAPAiBhlo3VK9NBFTku6IzWxJW0J7J9NtFw2LElJOJ+xkAOkw=="}]},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.0.4.tgz_1477943876064_0.9614960895851254"},"directories":{}},"1.0.5":{"name":"scroll-into-view-if-needed","version":"1.0.5","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/bundle.js","typings":"typings.d.ts","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","prepublish":"npm run build","postversion":"git add package.json && git commit -m \"chore(package): update version\"","postpublish":"gh-release"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel":"^6.5.2","babel-preset-es2015-rollup":"^1.2.0","gh-release":"^2.1.0","rollup":"^0.36.3","rollup-plugin-babel":"^2.6.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0"},"gitHead":"27c3dd69d0e01f053199333d71cd5b87069b15fd","_id":"scroll-into-view-if-needed@1.0.5","_shasum":"71988bb3540341f2d05f54c5206c64bf2dc46752","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"shasum":"71988bb3540341f2d05f54c5206c64bf2dc46752","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.0.5.tgz","integrity":"sha512-5DT9tG3/vC5gpiGvfQZs55YjSrs6z6BaV7JHU4v3FoNU5DH5mH9ljiG8qDM+Y9BJcAQmscE8Qp0XFVC2F9tIxg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG3uxNXNy4sieuMN94t5N3R5SqC9ufsMBlPsIIJoEqmWAiEA2C8xOqZfARMuGphiTITengW3fCSL+bGsAIUbT4pH64U="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.0.5.tgz_1478984783901_0.889548629289493"},"directories":{}},"1.0.6":{"name":"scroll-into-view-if-needed","version":"1.0.6","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/bundle.js","typings":"typings.d.ts","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","prepublish":"npm run build","postversion":"git add package.json && git commit -m \"chore(package): update version\"","postpublish":"gh-release"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel":"^6.5.2","babel-preset-es2015-rollup":"^1.2.0","gh-release":"^2.1.0","rollup":"^0.36.3","rollup-plugin-babel":"^2.6.0","rollup-plugin-commonjs":"^5.0.5","rollup-plugin-node-resolve":"^2.0.0"},"gitHead":"f41a06deabf2c1d53d7e3071231fe5b1de5f009b","_id":"scroll-into-view-if-needed@1.0.6","_shasum":"2523698eae2ecf6a164c7ae20a5ded7b62545f16","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"shasum":"2523698eae2ecf6a164c7ae20a5ded7b62545f16","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.0.6.tgz","integrity":"sha512-z5LviSIc+i2j1ZVai8rui+wvSKG2rOOqbk0XoDsUwL3CF3H4iCn+tIRG8IQ3x3KwNcO2PXNFd3O6KrsFDiKitQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD1DmK/ySXu+YU594CqcJvkuc/Zvjaq1skJiYy4gEb3xwIgXKEMnM6fvJTkCKfX7EVBlEE4Z2QEXBfFhgkB4pEuUKw="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.0.6.tgz_1479401054514_0.5915621882304549"},"directories":{}},"1.0.7":{"name":"scroll-into-view-if-needed","version":"1.0.7","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/index.js","typings":"typings.d.ts","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run clean && npm run build-module && npm run build-bundle","build-module":"babel src -d dist","build-bundle":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","clean":"rm -rf dist","prepublish":"npm run build","postversion":"git add package.json && git commit -m \"chore(package): update version\"","postpublish":"gh-release"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel-cli":"^6.23.0","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","gh-release":"^2.2.1","rollup":"^0.41.4","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^7.0.0","rollup-plugin-node-resolve":"^2.0.0"},"gitHead":"bd078747d56eba0c9a7cca0600144704ee9de980","_id":"scroll-into-view-if-needed@1.0.7","_shasum":"1701976c877e6b0b94816a3d3c7aaa15215777c2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"shasum":"1701976c877e6b0b94816a3d3c7aaa15215777c2","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.0.7.tgz","integrity":"sha512-km0/IMKWh0x4wwJnjdC/ARsGJp6RWozwB/zBFqjNyjsET2y+quZGAJKXE7+ZftTwBhQ2ajMt4xDkmASzCgzoMg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEugDn2J3nrVsnmycjBh4CjYtFeFNAteya1u644rj7tHAiBebO9MApyKgksZ67b2eF5S3o1w2a/KisRBKpkwTa+wrQ=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.0.7.tgz_1489487800430_0.2848075213842094"},"directories":{}},"1.1.0":{"name":"scroll-into-view-if-needed","version":"1.1.0","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/index.js","typings":"typings.d.ts","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run clean && npm run build-module && npm run build-bundle","build-module":"babel src -d dist","build-bundle":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","clean":"rm -rf dist","prepublish":"npm run build","postversion":"git add package.json && git commit -m \"chore(package): update version\"","postpublish":"gh-release"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view","scroll"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"^1.0.1"},"devDependencies":{"babel-cli":"^6.23.0","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","gh-release":"^2.2.1","rollup":"^0.41.4","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0"},"gitHead":"a82cd60858571e0a614d8d920a3000b9c8dd8a86","_id":"scroll-into-view-if-needed@1.1.0","_shasum":"9a0da1424eb2037746ed5c53b797f9676985bfcc","_from":".","_npmVersion":"4.1.2","_nodeVersion":"6.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"shasum":"9a0da1424eb2037746ed5c53b797f9676985bfcc","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.1.0.tgz","integrity":"sha512-aSS2tHYGobnKzhMSZXJJ3g0S2Y0Gm9jN0g446QWVHu+HQd+eUkRfnwFU9xZDKBQva/nZifd/4NtNl4kzvDqtMw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC1E2ln+YnDEQJ1G0GgcA2eqy344Y9L2G+NxCYVmpzF2AIgbMTJN2qU3inhmyBXQgzQxv1XiuhpX3L11hA/vZgAvx8="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/scroll-into-view-if-needed-1.1.0.tgz_1490806797398_0.7480653703678399"},"directories":{}},"1.1.1":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/index.js","typings":"typings.d.ts","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run clean && npm run build-module && npm run build-bundle","build-module":"babel src -d dist","build-bundle":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","clean":"rimraf dist","prepublish":"npm run build","changelog:preview":"sr-changelog","changelog:commit":"sr-changelog commit","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"1.0.1"},"devDependencies":{"babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.41.4","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0"},"version":"1.1.1","gitHead":"fbf7079faeae345f8205fe35194e1a6ac66388a3","_id":"scroll-into-view-if-needed@1.1.1","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-wZ/xIlUEQ5066c8l2x/TS0rqSDBZPj848Xxd7JXzrPnPFqKdakW33fLjiHFB4GkMXGEU+YXwKotPvHrk6BXsiw==","shasum":"132cf0f83823fdc5a46d2468e8a9cb3737d7278a","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.1.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAuVW2S7Or97PJtUoLekLWs6Fjan0wcd50DlST2/6rvQAiEAsxO/rmhz+sPBlCeWdbEKI6laNYnTgc24D2s+jFSLSp4="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.1.1.tgz_1506825727272_0.4960159701295197"},"directories":{}},"1.2.0":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/index.js","typings":"typings.d.ts","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run clean && npm run build-module && npm run build-bundle","build-module":"babel src -d dist","build-bundle":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","clean":"rimraf dist","prepublish":"npm run build","changelog:preview":"sr-changelog","changelog:commit":"sr-changelog commit","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"1.0.1"},"devDependencies":{"babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.41.4","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0"},"version":"1.2.0","gitHead":"4b1396eb3ca053aaf31b952a1835f871d47a0170","_id":"scroll-into-view-if-needed@1.2.0","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-O9ZsywrR4qtHT9MHD/ttOo6Pac1Kiz6paEwlEzloyGq4wbPgjcc1DHho2T0mFz+/ObW+jUARwOH17ncolKJZjA==","shasum":"5f0ad71316de335970c115ebfca9988447a1df5c","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC9Oaj45aWKHZjYYQ7SLg7CQumJBl4FggSlPDR53xSZMAiEAl5gQoeEAGUBuM2RCMFtc4KQhr+dPtqXoG7oL1f8qax4="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.0.tgz_1506827940344_0.7647145106457174"},"directories":{}},"1.2.1":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/index.js","typings":"typings.d.ts","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run clean && npm run build-module && npm run build-bundle","build-module":"babel src -d dist","build-bundle":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","clean":"rimraf dist","prepublish":"npm run build","changelog:preview":"sr-changelog","changelog:commit":"sr-changelog commit","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"1.0.1"},"devDependencies":{"babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.41.4","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0"},"version":"1.2.1","gitHead":"487ace0fe8278378442ae07a9ff67ed5a93c78e4","_id":"scroll-into-view-if-needed@1.2.1","_npmVersion":"5.3.0","_nodeVersion":"8.6.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-c2494s15UiQ+QK84+usV1UVdP0az32eZlaQpxkUbsV3bYDNoUzRgK8hTUPwS1i9E/hcLV5lNzK1tAE5jZW+McA==","shasum":"a8e7bd2cde2e66ba8e31cbec2f677fb5d6d4a26a","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAqbyNCzxLEuayZdUzwqiv3YoY9Kv2SZdGO66yqrhSEwAiAamd/yYAzuhQYcERuQZP1E2EYvLp3xdL4VbNhmx5Fjng=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.1.tgz_1506930939347_0.22624391596764326"},"directories":{}},"1.2.2":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","main":"dist/index.js","typings":"typings.d.ts","scripts":{"test":"echo \"Error: no test specified\" && exit 1","build":"npm run clean && npm run build-module && npm run build-bundle","build-module":"babel src -d dist","build-bundle":"rollup src/index.js --format cjs -c --output dist/bundle.js && rollup test/index.js -c -f umd --output test/bundle.js","clean":"rimraf dist","prepublish":"npm run build","changelog:preview":"sr-changelog","changelog:commit":"sr-changelog commit","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"keywords":["ponyfill","smooth","scroll","scroll-into-view"],"author":{"name":"Stian Didriksen"},"license":"MIT","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","dependencies":{"amator":"1.0.1"},"devDependencies":{"babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.41.4","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0"},"version":"1.2.2","gitHead":"94ed4db5d55fc0fe8c968f48032b18f6e4806fb6","_id":"scroll-into-view-if-needed@1.2.2","_npmVersion":"5.4.2","_nodeVersion":"8.8.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-n/R2XSv20tuDBxfCuemA/SuaYt8yhDDA3L3BN7wvF77Gang3J9Xb0019IPJ/jzbUwrqAG2YF72yzUgNqXeXlsA==","shasum":"eb7d93167b34f697c918148f8b0d8f29cfe9cd18","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.2.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICpTf2W68B+Vn8z8Duy7mcxgWMawc9LKiIcMBDnaLLsJAiBWK2QREzzkUGRfjbwIQTZkQMp6bbRCvI37+byX+ni+zg=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.2.tgz_1509312302978_0.7318155330140144"},"directories":{}},"1.2.3":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"main":"dist/bundle.js","scripts":{"build":"npm run clean && npm run build-module && npm run build-bundle","build-bundle":"rollup -c","build-module":"tsc","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","prepublishOnly":"yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","test":"tsc --noEmit"},"dependencies":{"amator":"1.0.1"},"devDependencies":{"babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","husky":"^0.14.3","lint-staged":"^4.3.0","prettier":"^1.7.4","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","typescript":"^2.6.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smooth"],"lint-staged":{"*.html":["npx https://gist.github.com/stipsan/0d0578fe92bcdeb024a0af2a3e2a9e2a","git add"],"*.js":["prettier --write","git add"],"*.ts":["prettier --write","git add"],"*.json":["prettier --write","git add"],"package.json":["npx prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","version":"1.2.3","gitHead":"ef9a2652d8bb864127933267dee4ba555fda4a6f","homepage":"https://github.com/stipsan/scroll-into-view-if-needed#readme","_id":"scroll-into-view-if-needed@1.2.3","_npmVersion":"5.5.1","_nodeVersion":"9.0.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-HJyP/BZyh5GxuHfubS2O1osqD481d2MIPI0Q1bIu2L7LvJiRbbQ8LS7GxE83j63Sz+oQHvOmYOi5EdJvcDC44w==","shasum":"4313d9926cbfa014ac997b2395bc7b74e58163ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.3.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBcof2wduW/atDTSyyiGMTDtUe/jmDWAjwcZIFgHJJVmAiBZwBp48098ugyk+9wSJaoZdycg/RQjbzVnl37qHL/U+Q=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.3.tgz_1509823773415_0.9621785080526024"},"directories":{}},"1.2.4":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.2.4","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","predocs":"yarn build","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","postinstall":"yarn build","prepublishOnly":"yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","test":"yarn tsc:main --noEmit && yarn tsc:example --noEmit","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"dependencies":{"amator":"1.0.1"},"devDependencies":{"@types/classnames":"^2.2.3","@types/next":"^2.4.5","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","classnames":"^2.2.5","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.7.4","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll"],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","gitHead":"572990de33f9dce9ced4c739b585664275a30015","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.2.4","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-hr8rAIHXDGuUMqSa8HuP3aRoCCzdY7sOelXaXrlNiRqQo/GU6+xctGeVuUEHtc72HYdSvglegwwgsYSYUXwQHA==","shasum":"1648d2143d39a745efc242688a18fd9fe3e49bb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.4.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDS3iCGt5mbPNV3cleXoJOOQGo7wdXxvBAJXIb6RmiRrgIgWVFuy0IOKBevQafr2lMw7IpI747SCb6C4F+8vh646q4="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.4.tgz_1509858019887_0.8919438736047596"},"directories":{}},"1.2.5":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.2.5","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","predocs":"yarn build","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","postinstall":"yarn build","prepublishOnly":"yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","test":"yarn tsc:main --noEmit && yarn tsc:example --noEmit","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"dependencies":{"amator":"1.0.1"},"devDependencies":{"@types/next":"^2.4.5","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.7.4","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll"],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","gitHead":"1bb68395e691bf32907e79e8498b1899286ae09f","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.2.5","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-ABk1TFMKB1w6ME/XSe9QcErc/o3NGqWplT7ZJzG7XC9tlhn7E8V9p4BudQfJ0uNys4j27xL96qcw4azhiDdQBg==","shasum":"0a90bfbcd407b11f32b6dd54ecd3bb18224dd861","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.5.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDz0Inu3gfhJXCW+VldK/6JQ+qe3BiusMh1ubx1h6p5nAIgAp7Af7zgyuqGCOjzJ2mpRakauO2o/qaBqks0S7d8YR4="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.5.tgz_1509859770970_0.3695779265835881"},"directories":{}},"1.2.6":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.2.6","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","predocs":"yarn build","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","prepublish":"yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","test":"yarn tsc:main --noEmit && yarn tsc:example --noEmit","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"dependencies":{"amator":"1.0.1"},"devDependencies":{"@types/next":"^2.4.5","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.7.4","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll"],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","gitHead":"c1440a00d5f11d24e2950aebe2ba281031756ecf","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.2.6","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-2uiNospvX1cydrxKpsu+WhS/2nsZOwtZ3RwTxqGtB+77TPSSL1HAifN5GzK2/Qg4xgCuvJnLgN9TsQtU7N7dmw==","shasum":"1f5fa59781f6c164f6359f97e39864f44cc9c0a4","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.6.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC3ts/WFa+tNwlUprJvl5nOO07hW3Kg7E35p9/Div1UwAiEAt5cyyLFDzM4yeCkc4wo1j3sBA8oAYk0QmJ5j07qBJAY="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.6.tgz_1509892709373_0.76061538932845"},"directories":{}},"1.2.7":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.2.7","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","predocs":"yarn build","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","prepublish":"yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","test":"yarn tsc:main --noEmit && yarn tsc:example --noEmit","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"dependencies":{"amator":"1.0.1"},"devDependencies":{"@types/next":"^2.4.5","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.7.4","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll"],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","gitHead":"d798bf54f64f9031eb78b7d0e398fcaf22bc800c","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.2.7","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-fM+9riWmPrINd55r8Rd+RzPj3VUWvuopDkMBO92ToT+A4W2YD5643Pw+GeKFXxEinXPPsPxeUy3ftyKkwjdjYw==","shasum":"3675966f0c3d0630ec9a1e06880cc071865b4bf0","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.7.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBX5O806sk63F6BOSjWrNy5L8MST+u3siwzqgaxhcW5kAiA5pZM9CmWLgyAR6rOaPJcQ3plGx88ruEV5q+o06vJn6w=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.7.tgz_1509894099271_0.44496163656003773"},"directories":{}},"1.2.8":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.2.8","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","predocs":"yarn build","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","prepublishOnly":"unset npm_config_cafile && yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","test":"yarn tsc:main --noEmit && yarn tsc:example --noEmit","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"dependencies":{"amator":"1.0.1"},"devDependencies":{"@types/next":"^2.4.5","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.7.4","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll"],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","gitHead":"6cc804009afbef8074b21201bbd699693d3e8c23","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.2.8","_npmVersion":"5.5.1","_nodeVersion":"8.9.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-Arj7tb9pgQMpknbxKw38IeFeEbWHW1PrJ7P5ZdfrjsmeZu8YY0Ng3B8MaIsEsz/3lIQ5zhdZqm6WeZvmUAXBmQ==","shasum":"dffc17549e74acd7ecada7905609e28a999f17c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.2.8.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC1vK3NPfyieHrqSQQO7vhfyOGGbam8JtfriVE/ISGp0wIhAIJj215AnXffgBknirty3TnouRz1jUrj7x2+MyCRHnCz"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.2.8.tgz_1509896448046_0.2976185844745487"},"directories":{}},"1.3.0":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.3.0","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","predev":"yarn build","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","prepublishOnly":"unset npm_config_cafile && yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","prestart":"yarn build","start":"next build example && next start example","test":"cypress run --browser chrome --reporter junit --reporter-options 'mochaFile=junit/test-results.xml'","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"dependencies":{"amator":"1.0.1"},"devDependencies":{"@types/next":"^2.4.5","@types/prettier":"^1.8.0","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.8.2","prettier-browser":"git://github.com/prettier/prettier.git#1.8.2","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1","uglifyjs-webpack-plugin":"^1.0.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll","typescript"],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.md":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","gitHead":"18147e178a1d5f36b17814f6c879bbcdae52a285","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.3.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-xercz+x9r8Y/GeI99U5WzlmOd+MxRHZU6UyqIKjZ5Tll9k6ITnOdPx/VvzqgcDEOtI3BVXObgM5d4N97TfeJhw==","shasum":"55e35ea0efe24bdb43602c55acc2af4650e309de","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.3.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFhOlvU1228N6SE+ywpChjfPVkX16e3Rzv/sGXv6BHTAIhAN3Hh77PmNSYmXSWZkLsAv7wDDzcod03JIWDJbGnscxg"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.3.0.tgz_1510459154508_0.7362921447493136"},"directories":{}},"1.4.0":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.4.0","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","predev":"yarn build","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","prepublishOnly":"unset npm_config_cafile && yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","prestart":"yarn build","start":"next build example && next start example","test":"cypress run --browser chrome --reporter junit --reporter-options 'mochaFile=junit/test-results.xml'","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"dependencies":{"amator":"1.0.1"},"devDependencies":{"@types/next":"^2.4.5","@types/prettier":"^1.8.0","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.8.2","prettier-browser":"git://github.com/prettier/prettier.git#1.8.2","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1","uglifyjs-webpack-plugin":"^1.0.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll","typescript"],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.md":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","gitHead":"78973d333f21feae8cc8e6b23f64178744c85715","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.4.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-hI31m5Bb+suNvCAJtsv8b8M8Q9I5sI2fpa2Z9gJl+4b4w8adePOYboP9+8ebB4vwS262uCWMUxSa08jWo76Bbw==","shasum":"f01720833c0f7e7f433fdf5eee7f6ceb29944854","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.4.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDustG3hlmFqCZhHN26hQSNYTlxcIZ6IGrGgBlmKzQvSQIhANwQSeRaQGDktR3i7twPXhCQPxSMw+gyqZ6CkMsI4R7M"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.4.0.tgz_1510875958694_0.5105745308101177"},"directories":{}},"1.4.1":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.4.1","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","predev":"yarn build","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","prepublishOnly":"unset npm_config_cafile && yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","prestart":"yarn build","start":"next build example && next start example","test":"cypress run --browser chrome --reporter junit --reporter-options 'mochaFile=junit/test-results.xml'","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"devDependencies":{"@types/next":"^2.4.5","@types/prettier":"^1.8.0","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.8.2","prettier-browser":"git://github.com/prettier/prettier.git#1.8.2","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1","uglifyjs-webpack-plugin":"^1.0.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.md":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease","branch":"next"},"typings":"dist/index.d.ts","gitHead":"8fe152a9d4a6d409666cc6979f7209728ea041d7","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.4.1","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-N9qi28u3i1AMf9NFCb1s64zPWRkCq5wqQ6kAzDNcKNJ8AXXLPa6f4Nh/DEeW5bndyxJSdEE9Kz8Qv1V0G2BM7A==","shasum":"763580091fb8e0bd4dc2d68b475d755f66574a0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.4.1.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDvphDdRO2Nr28u5EFLsgki/Csubfxon2W1atO8AVXcJQIhAKiAbK5v507WRgqfHqik1qQyyPRUvgZejdBKlAhukHb+"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed-1.4.1.tgz_1511308734199_0.506726069143042"},"directories":{}},"1.5.0":{"name":"scroll-into-view-if-needed","description":"Element.scrollIntoViewIfNeeded ponyfill that can animate the scrolling","author":{"name":"Stian Didriksen"},"license":"MIT","homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.5.0","main":"dist/bundle.js","scripts":{"prebuild":"yarn clean","build":"yarn build:tsc && yarn build:rollup","build:rollup":"rollup -c","build:tsc":"yarn tsc:main && yarn tsc:example","changelog:commit":"sr-changelog commit","changelog:preview":"sr-changelog","clean":"rimraf dist","precommit":"lint-staged","predev":"yarn build","dev":"concurrently \"yarn tsc:main --watch\" \"yarn tsc:example --watch\" \"yarn build:rollup -w\" \"next dev example\"","docs":"next build example && DOCS=true next export -o ./docs example && npx -p https://gist.github.com/stipsan/bbf4adcdafd9eabfa6a9a42397a1c1b9 -c 'git-update-ghpages'","prepublishOnly":"unset npm_config_cafile && yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","prestart":"yarn build","start":"next build example && next start example","test":"cypress run --browser chrome --reporter junit --reporter-options 'mochaFile=junit/test-results.xml'","tsc:example":"tsc -p example","tsc:main":"tsc -p ."},"sideEffects":false,"dependencies":{"amator":"1.0.1"},"devDependencies":{"@types/next":"^2.4.5","@types/prettier":"^1.8.0","@types/react":"^16.0.20","@types/react-dom":"^16.0.2","babel-cli":"^6.23.0","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.2.1","babel-preset-es2015-rollup":"^3.0.0","concurrently":"^3.5.0","cypress":"^1.0.3","husky":"^0.14.3","lint-staged":"^4.3.0","next":"^4.1.4","prettier":"^1.8.2","prettier-browser":"git://github.com/prettier/prettier.git#1.8.2","prettier-package-json":"^1.4.0","react":"^16.0.0","react-dom":"^16.0.0","release-relief":"^1.0.1","rimraf":"^2.6.1","rollup":"^0.50.0","rollup-plugin-babel":"^2.7.1","rollup-plugin-commonjs":"^8.0.2","rollup-plugin-node-resolve":"^2.0.0","scroll-into-view-if-needed":"link:.","system-font-stack":"^1.0.4","typescript":"^2.6.1","uglifyjs-webpack-plugin":"^1.0.1"},"keywords":["ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","smooth","smoothscroll","typescript"],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.md":["prettier --write","git add"],"package.json":["prettier-package-json --write","git add"]},"module":"dist/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"typings":"dist/index.d.ts","gitHead":"d1e66a7688f67790f3f832a37e4186302a874bda","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.5.0","_npmVersion":"5.6.0","_nodeVersion":"8.9.4","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-6vTXm++xyIDkQ+O+gcmu9rp3NW61SWUdtIRhKh4uYuhcGZgClc1NJSz2C6HRNVIcL4VXIKAaOYq06cwK7Nx9Ag==","shasum":"39e8ce15cb74348a897ee96110e848fed50aaf95","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.5.0.tgz","fileCount":9,"unpackedSize":35313,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHsPUXmJ+nRgZSSjxznm5Areq61I9GSc6QGdXZEQdnBFAiAhRWVtVt9TN7UA1a0G7+l/qGZntDYLhvgGqnBTqPG8fg=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_1.5.0_1519601680953_0.21270219105323096"},"_hasShrinkwrap":false},"2.0.0-alpha.3":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.0.0-alpha.3","main":"index.js","files":["auto.js","compute.js","es","ponyfill.js","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es'","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","prepublishOnly":"unset npm_config_cafile && yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","typecheck":"tsc"},"dependencies":{"invariant":"2.2.4","warning":"3.0.0"},"devDependencies":{"@babel/cli":"7.0.0-beta.44","@babel/core":"7.0.0-beta.44","@babel/plugin-external-helpers":"7.0.0-beta.44","@babel/preset-env":"7.0.0-beta.44","@babel/preset-typescript":"7.0.0-beta.44","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","babel-plugin-styled-components":"1.5.1","concurrently":"3.5.1","release-relief":"1.0.1","rimraf":"2.6.2","rollup":"0.58.1","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"module":"es/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"sideEffects":false,"typings":"typings/index.d.ts","readme":"[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed) [![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed) [![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/36357426-2f0f3152-14fe-11e8-892a-915d06488171.png)\n\nThis is a [ponyfill](https://ponyfill.com) with the added ability of animating\nthe scroll itself.\n\n## [Demo](https://stipsan.github.io/scroll-into-view-if-needed/)\n\nKudos to [@hsablonniere](https://github.com/hsablonniere) for sharing the\n[original polyfill](https://gist.github.com/hsablonniere/2581101) and\n[@jocki84](https://github.com/jocki84) for\n[improving](https://gist.github.com/jocki84/6ffafd003387179a988e) it!\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize, you can use the ponyfill version so all your users experience smooth scrolling.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed/ponyfill'\nconst node = document.getElementById('hero')\n\n// If all you want is for all your users to have stuff smooth scroll into view\nscrollIntoView(node, { behavior: 'smooth' })\n\n// combine it with any of the other options\nscrollIntoView(node, {\n behavior: 'smooth',\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// It returns a promise that is resolved when the animation is finished\nconst sequence = async () => {\n const slide = document.getElementById('slide-3')\n // First smooth scroll to hero\n await scrollIntoView(node, { behavior: 'smooth' })\n // Then we scroll to a slide in a slideshow\n return scrollIntoView(slide, { behavior: 'smooth' })\n}\n```\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want, you can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","readmeFilename":"README.md","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.0.0-alpha.3","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-+wUHBHyT7DNMzItv/dt095qJY0kSknJULx6ufRyoWMmNQ2VXi4J5M1G3kEUbTubQazBQ85q6DcFNwJfL+0Y9Rw==","shasum":"44737d3f0942a7e679f588a1d1cc4bb0c737b120","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.0.0-alpha.3.tgz","fileCount":12,"unpackedSize":59324,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3NaZCRA9TVsSAnZWagAAiX4P/2/+gHnaiXBqrgRtHIRI\nrLEJfN8p1dBvVn/JXEMAReEBzB3r35TdRTUQ6MAmNbZBdF52C7V+T2x9Ymsh\no+VjUWZdzuI2Saj1IgzvV5DGGDFsc95bs/RaCLuLg1gIH5l3nc6idwuI3YaD\n0ekjesoevkHvPNrDOjPU4iRGekmDLccCQCbT/5V9LNx9t8LCQDqRiG6eT3ea\n8pJ8ah/5q5aAjGUowvP4VHDp2m/kgdoc5q2c4bufXluoymAq4j+Cq6ezdgN+\nvIp/d3u0O9BGuj//CKi9eia9LTm8tvD1VitmG+vbk8dIVvViwr0xZgAFmLwS\ncMWW0Hqu6DRlliJ0c+yVfLFmHsui4gYq8YxZYLLM+Lfv8oE0dY26esTQ9K0t\nbd+91l1akPulYzBdNfxGZfaOSS5uz5BjtuvLAAhJ+vqFPgC1/1hrWIkq3vsl\nddWiJ14k4Pw4SbdDEK0havNqDo6nK7JFFgBwrSKFWAC76qYV/Ykp/+SMXJuF\nkOPt7kGIdGZh91WoPR6J3MJNoqXcwYO30x2EZsJ3LaGefev+KRnLhDYo1gRt\n2c0ZWcCg9mOSceNYm231YtlqpVVjThmUDGoavoyzc6lb81zHPG+0PndelSuY\nzaWOzPS3yFl0VIrMkxvfH8Z8bMK3m++JEbnTa28iEDQqqpvnt1sCY/qeDPou\n8sYQ\r\n=dqA4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCyKAo6jjGjWY7KDsWfaP5IlCUjLhlqFbub1YMpwVrnSQIhAKHV/1xxV3q9HS8o3bOxoZb+n3ux/rPtvur1zWtowD/y"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.0.0-alpha.3_1524422296767_0.8304428055981343"},"_hasShrinkwrap":false},"2.0.0-alpha.f7841b3e":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.0.0-alpha.f7841b3e","main":"index.js","files":["auto.js","compute.js","es","ponyfill.js","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es'","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","prepublishOnly":"unset npm_config_cafile && yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","typecheck":"tsc"},"dependencies":{"invariant":"2.2.4","warning":"3.0.0"},"devDependencies":{"@babel/cli":"7.0.0-beta.44","@babel/core":"7.0.0-beta.44","@babel/plugin-external-helpers":"7.0.0-beta.44","@babel/preset-env":"7.0.0-beta.44","@babel/preset-typescript":"7.0.0-beta.44","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","babel-plugin-styled-components":"1.5.1","concurrently":"3.5.1","release-relief":"1.0.1","rimraf":"2.6.2","rollup":"0.58.1","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"module":"es/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"sideEffects":false,"typings":"typings/index.d.ts","readmeFilename":"README.md","readme":"[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed) [![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed) [![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/36357426-2f0f3152-14fe-11e8-892a-915d06488171.png)\n\nThis is a [ponyfill](https://ponyfill.com) with the added ability of animating\nthe scroll itself.\n\n## [Demo](https://stipsan.github.io/scroll-into-view-if-needed/)\n\nKudos to [@hsablonniere](https://github.com/hsablonniere) for sharing the\n[original polyfill](https://gist.github.com/hsablonniere/2581101) and\n[@jocki84](https://github.com/jocki84) for\n[improving](https://gist.github.com/jocki84/6ffafd003387179a988e) it!\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize, you can use the ponyfill version so all your users experience smooth scrolling.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed/ponyfill'\nconst node = document.getElementById('hero')\n\n// If all you want is for all your users to have stuff smooth scroll into view\nscrollIntoView(node, { behavior: 'smooth' })\n\n// combine it with any of the other options\nscrollIntoView(node, {\n behavior: 'smooth',\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// It returns a promise that is resolved when the animation is finished\nconst sequence = async () => {\n const slide = document.getElementById('slide-3')\n // First smooth scroll to hero\n await scrollIntoView(node, { behavior: 'smooth' })\n // Then we scroll to a slide in a slideshow\n return scrollIntoView(slide, { behavior: 'smooth' })\n}\n```\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want, you can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","_id":"scroll-into-view-if-needed@2.0.0-alpha.f7841b3e","dist":{"shasum":"5783f0373c5249b1450f061750605aa1ac821a7d","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.0.0-alpha.f7841b3e.tgz","fileCount":18,"unpackedSize":64956,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3PRKCRA9TVsSAnZWagAAKbAP/2XpF7g3k1l6x8KVSnUO\nbL+0/KDFBs+atQSV7ffC4b95NNkMtfOmjD1wrwp3QVy5+O8CBl3FQx+wp3xS\n87lbsrNgHi1KC4l53IzRKo98ScEYTOOXAjWmFyRHrD3THOLAwCPcEl8wciSf\nqc1tyyClGjzHn10fh1IOAS8k9vCYrYyLGmM3y+FfHvB+ZSkkIXLMb/2YOECr\n+06zhN6ynlDAsy5Y9NieQA+oWBr/wFXx1Md3MQjwL7XpkqKVObLWeJJCNd2/\nbphRT2sf7kXr9wjOSNbpxFXSk4IMID09oaP27vNI1L6BkboTJbZqnIPznN02\n7dV5QGkOyFtLWG4NyyUy2/KmI9q2/YeH3bC2o1OO68jQlOmnrEZIs9Ku311+\nQKpOowv8Mk9b17DpCwpzOzLS1vwhshfIZkBKaddnPQ4Itc8DCJgmdO/7Mig7\nyeklp7kG15v0rEG04zp5YH46AEecgrVZxugWecNPYOBxFiwXcGzF5YnQFlD6\nHh9ZHW3OCLv+94mvMBklIzBrS6xsR0zKHLugSPeNWTQShNMGTaCsIe9GH+K/\nh/Oc8apKJsmhMD6Qt1teZIkPdgkdaRJu76PPGkhRLm5AVB/wOMD2e0NVKi63\ncr8fmIAsO8ypJv9wdsz3xogtrjtumc5xnMUN9nI4K9Y5ayJ8PefXEuoIubxa\nXPA9\r\n=t1b4\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-v4gOAFCJDQrIEltAmEqAuXIRKPkGssHteM7732ddIvX7YDFNLhUpW+Ik0/ZmI2AB77UTDd+0T5ywyuPxHDiwkQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCH2S+XMkZWcQmA9pYS1lbqceFcOpIBQ8qhg0DTT2AJx8CIQDvcPH1YGMVfoeUJudrW05mCjRI6V2vR4Jp7pF1zgO9kQ=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.0.0-alpha.f7841b3e_1524429898172_0.19191025379274684"},"_hasShrinkwrap":false},"2.0.0-alpha.d4e115e7":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.0.0-alpha.d4e115e7","main":"index.js","files":["auto.js","compute.js","es","ponyfill.js","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es'","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","prepublishOnly":"unset npm_config_cafile && yarn build","semantic-release":"semantic-release pre && npm publish && semantic-release post","typecheck":"tsc"},"dependencies":{"invariant":"2.2.4","warning":"3.0.0"},"devDependencies":{"@babel/cli":"7.0.0-beta.44","@babel/core":"7.0.0-beta.44","@babel/plugin-external-helpers":"7.0.0-beta.44","@babel/preset-env":"7.0.0-beta.44","@babel/preset-typescript":"7.0.0-beta.44","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","babel-plugin-styled-components":"1.5.1","concurrently":"3.5.1","release-relief":"1.0.1","rimraf":"2.6.2","rollup":"0.58.1","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"module":"es/index.js","release":{"analyzeCommits":"semantic-release-tamia/analyzeCommits","verifyConditions":"condition-circle","generateNotes":"semantic-release-tamia/generateNotes","verifyRelease":"semantic-release-tamia/verifyRelease"},"sideEffects":false,"typings":"typings/index.d.ts","readmeFilename":"README.md","readme":"[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed) [![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed) [![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/36357426-2f0f3152-14fe-11e8-892a-915d06488171.png)\n\nThis is a [ponyfill](https://ponyfill.com) with the added ability of animating\nthe scroll itself.\n\n## [Demo](https://stipsan.github.io/scroll-into-view-if-needed/)\n\nKudos to [@hsablonniere](https://github.com/hsablonniere) for sharing the\n[original polyfill](https://gist.github.com/hsablonniere/2581101) and\n[@jocki84](https://github.com/jocki84) for\n[improving](https://gist.github.com/jocki84/6ffafd003387179a988e) it!\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize, you can use the ponyfill version so all your users experience smooth scrolling.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed/ponyfill'\nconst node = document.getElementById('hero')\n\n// If all you want is for all your users to have stuff smooth scroll into view\nscrollIntoView(node, { behavior: 'smooth' })\n\n// combine it with any of the other options\nscrollIntoView(node, {\n behavior: 'smooth',\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// It returns a promise that is resolved when the animation is finished\nconst sequence = async () => {\n const slide = document.getElementById('slide-3')\n // First smooth scroll to hero\n await scrollIntoView(node, { behavior: 'smooth' })\n // Then we scroll to a slide in a slideshow\n return scrollIntoView(slide, { behavior: 'smooth' })\n}\n```\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want, you can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","_id":"scroll-into-view-if-needed@2.0.0-alpha.d4e115e7","dist":{"shasum":"013ab3b7b38f0b6d1721ef0187c8042e7b611d6c","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.0.0-alpha.d4e115e7.tgz","fileCount":18,"unpackedSize":65449,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3PU5CRA9TVsSAnZWagAAWT8P/inFk85IzebDHC+bxFeo\n+agswyVPWg7HCJI0cvP49NfnveW29G/8gAbZBv0LbLf6/etP8SObqqxdmQon\nNAp2Qw/AK+4MF7Z++t++mNmXES9CqzUdWjzokQgMyTfZ+qbr1wpsdtfy3c1V\nDdpVjRKhZ2uuqZBb36frUM5703UpNtRWJRRuAqvOwx7lmrLUOUElcaECXzn7\nbPiYWNsXZI0IIiEw7YAzfFe2rFLlTZaBMi10xG7U9iugA9dlmXWPMmcJCOHa\nrvrZbI6+psdvaYtd+cmuR5G360yuafI+8oLdQ3ca9nGOozKAQ1o3zdrYZNHT\nTf9vPRtP+fN5DkKCnsItBCIBTw53q938Xgu4zVX9btwTDwvl6O+54jHiUvcT\nCwWVKK53xVQdikqiWVhkrmwWMfw690gCdo28pysDWMNa9OOBVSPztAfLKiQo\nEqoa6Eh+OpEonTEIANSOthrpB3Hy/PF6EPqFkNUiBHPqgG82eICApByw2r27\nfBid/nuv+ZljsdROh5KR0jMtbfQsnzilttgGM5vTqZYTIAA0N9755d3pCsod\nwHFvIkr2kD3CrE9ywcwUjwEkBP8yI5RX/HVoGwQRYUkVpXU+WgE0XLSGOhda\nK7OGMxcoVIvHJRSaaqeQLzKUn/2beaJHjztdyMPGj2aPwaeURxheOo0EJZkX\n6Guy\r\n=9egL\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-jOKieJrn0u/T9iD75EUGBegLsEmOs4ONcGyGZrQuy2tYC28QtC4B1j4q5FHNZvKaUw066tVhKKG9NDxReL8g8A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCbRHrm38xSH5pXHyDylTIWpRBahuyvLU1fLzj15+RLdAIhALUyQ8PvZYR0ZiJgJgHg/CW2JDe8bfizieJBHMqk9Fqw"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.0.0-alpha.d4e115e7_1524430137212_0.32854435071869026"},"_hasShrinkwrap":false},"2.0.0":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.0.0","main":"index.js","files":["auto.js","compute.js","es","ponyfill.js","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es'","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc"},"dependencies":{"invariant":"^2.2.4","warning":"^3.0.0"},"devDependencies":{"@babel/cli":"7.0.0-beta.44","@babel/core":"7.0.0-beta.44","@babel/plugin-external-helpers":"7.0.0-beta.44","@babel/preset-env":"7.0.0-beta.44","@babel/preset-typescript":"7.0.0-beta.44","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","babel-plugin-styled-components":"1.5.1","concurrently":"3.5.1","rimraf":"2.6.2","rollup":"0.58.1","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"module":"es/index.js","sideEffects":false,"typings":"typings/index.d.ts","readme":"[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed) [![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed) [![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed) [![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/36357426-2f0f3152-14fe-11e8-892a-915d06488171.png)\n\nThis is a [ponyfill](https://ponyfill.com) with the added ability of animating\nthe scroll itself.\n\n## [Demo](https://stipsan.github.io/scroll-into-view-if-needed/)\n\nKudos to [@hsablonniere](https://github.com/hsablonniere) for sharing the\n[original polyfill](https://gist.github.com/hsablonniere/2581101) and\n[@jocki84](https://github.com/jocki84) for\n[improving](https://gist.github.com/jocki84/6ffafd003387179a988e) it!\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize, you can use the ponyfill version so all your users experience smooth scrolling.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed/ponyfill'\nconst node = document.getElementById('hero')\n\n// If all you want is for all your users to have stuff smooth scroll into view\nscrollIntoView(node, { behavior: 'smooth' })\n\n// combine it with any of the other options\nscrollIntoView(node, {\n behavior: 'smooth',\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// It returns a promise that is resolved when the animation is finished\nconst sequence = async () => {\n const slide = document.getElementById('slide-3')\n // First smooth scroll to hero\n await scrollIntoView(node, { behavior: 'smooth' })\n // Then we scroll to a slide in a slideshow\n return scrollIntoView(slide, { behavior: 'smooth' })\n}\n```\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want, you can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","readmeFilename":"README.md","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.0.0","_npmVersion":"5.5.1","_nodeVersion":"8.9.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-nI62ln3mSk0Fut9OKeFWIpHrASApX8s8cGYyzrEoqV32B7UPVgiCoidXTWGrzI+wjE2Vbt8ttCkYasm4xKy2zQ==","shasum":"a992dbf3597a11f1699ec4a788430c581e8b2acd","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.0.0.tgz","fileCount":13,"unpackedSize":63478,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa3QvMCRA9TVsSAnZWagAADLUP/1134eY8RO+FirpPGVAw\nryZRi8RuXB0eFFtPD59Mk6uMkWdCSfh5XS871h0f2mNymd28QgqTO3LovfSP\ndf6Ietx0FLdaxTOSxOYyxbmnQGZgbkW+i2EiGPqxBjVHREMSR2SlymqkL7Gf\nbyTsMazv6OPr59+aiHR5bvODV34BLipBc6aTK+v2qq5e6tB9JNqsaJNAGIMR\nhanq0dyshKW06igYTxlF7rcW6E47AJHzOE8j2SOysvS5T45NXBkAi+2qeKU3\nnPwypNR2TRc1J5FzxuMQ1VwkfSMMRH0xt5YG2Ljaf6bGI6t04xnaoWGjHYA2\neA9U3XGOZmh3x2ilV74JrJDqvN1Z669nKdXR6A+LQHM1k2iC4U2C8mmkh9+X\nim9l4/X2iH5iTIy4hUuc4q06gMPGbM1309mIvFdeT2DFEthyOEiT+2oZNKXc\n1podJ4IuQkMJj2swfG9Yxbg0hqtZj8xz+E3Am8wVCrUBHltkvjqfcsv1s6fO\nGV7EVqNK9qAMkTdRBm9xNRC7L8dL21Vv3K7b5VVhfHMx/TptVOqCPyhAHUMn\n7J2QSp3HBi+EK5SuT7j9pNyegumUeDeRkLWTZVImEU4D6UyxSJirYN34ptI3\n5MwDgAs4H0JYfC6zhQhYyZLr4fj8yvQsxWDuVa6NC3jVBE4W19itORPgXE+O\n0nVM\r\n=+8ve\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC14mAJm7XviavZk1dScH3dhBzWQCWyhRo4ba9YVLhIXwIhAOluoXJMlUaSmZ2HSBnIH/Y62i6tdGlSUpKMwYIqUmiH"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.0.0_1524435915592_0.15004331511969404"},"_hasShrinkwrap":false},"2.0.0-alpha.4":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.0.0-alpha.4","main":"index.js","files":["compute.js","es","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"dependencies":{"invariant":"^2.2.4","warning":"^3.0.0"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","babel-plugin-styled-components":"1.5.1","concurrently":"3.5.1","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.1.7","semantic-release-monorepo":"6.0.1","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"module":"es/index.js","release":{"prepare":["@semantic-release/npm"],"verifyConditions":["@semantic-release/npm","@semantic-release/github"]},"sideEffects":false,"typings":"typings/index.d.ts","readmeFilename":"README.md","readme":"[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed)\n[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39338772-34165fb2-49c5-11e8-9d29-38acb6842db8.png)\n\nThis is a [ponyfill](https://ponyfill.com) with the added ability of animating\nthe scroll itself.\n\n## [Demo](https://stipsan.github.io/scroll-into-view-if-needed/)\n\nKudos to [@hsablonniere](https://github.com/hsablonniere) for sharing the\n[original polyfill](https://gist.github.com/hsablonniere/2581101) and\n[@jocki84](https://github.com/jocki84) for\n[improving](https://gist.github.com/jocki84/6ffafd003387179a988e) it!\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize, you can use the ponyfill version so all\nyour users experience smooth scrolling.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed/ponyfill'\nconst node = document.getElementById('hero')\n\n// If all you want is for all your users to have stuff smooth scroll into view\nscrollIntoView(node, { behavior: 'smooth' })\n\n// combine it with any of the other options\nscrollIntoView(node, {\n behavior: 'smooth',\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// It returns a promise that is resolved when the animation is finished\nconst sequence = async () => {\n const slide = document.getElementById('slide-3')\n // First smooth scroll to hero\n await scrollIntoView(node, { behavior: 'smooth' })\n // Then we scroll to a slide in a slideshow\n return scrollIntoView(slide, { behavior: 'smooth' })\n}\n```\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want,\nyou can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","_id":"scroll-into-view-if-needed@2.0.0-alpha.4","dist":{"shasum":"186b464a2dcbeaf7e383a12a69c6168f3a209758","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.0.0-alpha.4.tgz","fileCount":14,"unpackedSize":71054,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa46aaCRA9TVsSAnZWagAAr24QAII7QF/x6jgch1cFOkcr\nsUlVU5+adNt5eL/jQqBWn3Bs7Vgz8PvWDuc9GkhpqWMG9Vmqabu8BHmLAibO\nNzvtLxdjullFTTbJwCZHW/0tEpVJn5/mWTtc+tHmkX+ahf5aPLtFUHX80jjY\nQT9YU+ioM3aWXYPxk+oAHpVz5A2HYSDDeMHXKkfeMkHVm/K7Z+G9ir+RNvHy\n//P+ZXOlaKKpDVSZ8yw0Q3pPwhZ3WybvWXNqFBLmcDv+Wlmy/2gRkLz2USy7\nXX8Y6PgAk/uVoibdInjN2GzjAAFQTo0KnQmtbtaKsq7o7fOwFmrLG4mldrfD\nC8AM/BmK/ATSWIkdZVy5p0ubj3TZPw793ewO8/t+5BIDoqHTFS2tzdTuY/PE\nB4sTx0vxMFBsyJ22NGwyIqoTh0qfTcVXLceLXLpwdsRKjnsP8PzF23iA4591\nnPEpBh7Zb0Hcc2oeNwsfko6LqFiB9w8IOuNAsceodxrSpO2V5T2prFnACK4f\n8z4ZefueRtC72IOe7C+DsaHkqGQUymn1KVkIjuoMGK0gHqtPTp06xsyMJe4N\nvUaVC2ADKZO4lwROosIKHUFJIIEYLpmE0zJQvutLDewvfYYJId6GZJqBWvSQ\n+Ry1/OhQ+QAusNRElsT7xB0fKm0udTYPKu/fFgf9NVQyf3e+V8+s3xKYtmxw\nsiY6\r\n=LyzD\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-h2UOzqHNiKwE8YQdpvqQ0XNX3grpLmnT18D2Acm3nEw/I3PR2THl6de5KIyoiW7toLo5O+WUrUsRShkgQNAufQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC6ZPQlvMIpD8ADgqro04ptRnUwvkD2kMdowNNxAexuDAIgGZyCgKOGjE9H8fmT+KhfKg7g8y+9PpP1TXtkLZCoCKk="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.0.0-alpha.4_1524868762034_0.2765216142709934"},"_hasShrinkwrap":false},"2.0.1-alpha.0":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.0.1-alpha.0","main":"index.js","files":["compute.js","es","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"dependencies":{"invariant":"^2.2.4","warning":"^3.0.0"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.1.7","semantic-release-monorepo":"6.0.1","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"module":"es/index.js","release":{"prepare":["@semantic-release/npm"],"verifyConditions":["@semantic-release/npm","@semantic-release/github"]},"sideEffects":false,"typings":"typings/index.d.ts","readmeFilename":"README.md","readme":"[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed)\n[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39338772-34165fb2-49c5-11e8-9d29-38acb6842db8.png)\n\nThis is a [ponyfill](https://ponyfill.com) with the added ability of animating\nthe scroll itself.\n\n## [Demo](https://stipsan.github.io/scroll-into-view-if-needed/)\n\nKudos to [@hsablonniere](https://github.com/hsablonniere) for sharing the\n[original polyfill](https://gist.github.com/hsablonniere/2581101) and\n[@jocki84](https://github.com/jocki84) for\n[improving](https://gist.github.com/jocki84/6ffafd003387179a988e) it!\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize, you can use the ponyfill version so all\nyour users experience smooth scrolling.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed/ponyfill'\nconst node = document.getElementById('hero')\n\n// If all you want is for all your users to have stuff smooth scroll into view\nscrollIntoView(node, { behavior: 'smooth' })\n\n// combine it with any of the other options\nscrollIntoView(node, {\n behavior: 'smooth',\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// It returns a promise that is resolved when the animation is finished\nconst sequence = async () => {\n const slide = document.getElementById('slide-3')\n // First smooth scroll to hero\n await scrollIntoView(node, { behavior: 'smooth' })\n // Then we scroll to a slide in a slideshow\n return scrollIntoView(slide, { behavior: 'smooth' })\n}\n```\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want,\nyou can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","_id":"scroll-into-view-if-needed@2.0.1-alpha.0","dist":{"shasum":"cbdecdee1e268dbb20faa783eeba7e03b3e4ec98","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.0.1-alpha.0.tgz","fileCount":14,"unpackedSize":71007,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa47DCCRA9TVsSAnZWagAAQwMP/3FP8KSKDMrbV/KQbR9h\ndxhjruFrrh0VtWZXMBBcJ1hF4oT5oqmwQr5O4/oCfHXn8qVrTD5QqP1YwlAm\np1k6mTjjz8DOO9JmxtkSjP2G65Pvq0YcopsAczHer5Hb9sMBMwD5VeZhiotv\nt/eqkxJRaP4ciqKmDF2WyUGMUemH5QXPEuprA1IFRV63D2vBC9y/fP0f7fUz\nTjikWvmopcNbGdb36OrbiXGkk91JvpBK2IWvnJcvdXCsO7oE9GMtp2qXGeNr\nk/j+WvJ4VXO22oB8YPNZFDmHUf60lrWjb6KWiCNdPPWbzF6gxMf6Yl1Ti+JT\n/lsUr517Z7m5nGu4SRYHHbooeaG/OeMbPPxn1Y1u1kbQZeVTEHGr6Z+IT9db\nCpDz0U5doy4A1y+s1fRWCxDiKJ8LNcgrL7AH2Ljio9LrWnOOixyVCpXBN9R9\nDy8nEJiH2BJpOuZ8tkiZ1j6Q8kI8ja9SaHDXrgZrhaqzCE8v0NCF+nPb3TLr\noExlqI4OBiBCBtCzhjjmiqbWX0CGnPznIiC6FAdI2W+GU41G3DZiGfYug0wp\nTja01z57bhijuwzrGg8CWgcH1bebdTzN9021CJ2UylBnozbY+LN1QJUrcarY\n4r7ooFsYd/f77erbyauYkCXZlfxtjq58Q/leHhzXuoHXUSeDaNNjfmQWU2+A\nmzmQ\r\n=X7nC\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-lgflO07fEIZzwbmpp5wHIBAsH8SBOIbJNebGAvptAay4kd+TSfIGzw44O4cHfS8wmAq4BfgoUPn/FwsPZspoaA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLZCcsalQI/do3p2e4fKLPlal0rzibVZFfiIBAf/YRKQIhAITjWQg1VDfka90AcCFG8iqFyhmzgzMc7/EDLomEFnVJ"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.0.1-alpha.0_1524871361208_0.9939762060975383"},"_hasShrinkwrap":false},"2.0.1-alpha.1":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://stipsan.github.io/scroll-into-view-if-needed","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.0.1-alpha.1","main":"index.js","files":["compute.js","es","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"dependencies":{"invariant":"^2.2.4","warning":"^3.0.0"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.1.7","semantic-release-monorepo":"6.0.1","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"module":"es/index.js","release":{"prepare":["@semantic-release/npm"],"verifyConditions":["@semantic-release/npm","@semantic-release/github"]},"sideEffects":false,"typings":"typings/index.d.ts","readmeFilename":"README.md","readme":"[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed)\n[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39338772-34165fb2-49c5-11e8-9d29-38acb6842db8.png)\n\nThis is a [ponyfill](https://ponyfill.com) with the added ability of animating\nthe scroll itself.\n\n## [Demo](https://stipsan.github.io/scroll-into-view-if-needed/)\n\nKudos to [@hsablonniere](https://github.com/hsablonniere) for sharing the\n[original polyfill](https://gist.github.com/hsablonniere/2581101) and\n[@jocki84](https://github.com/jocki84) for\n[improving](https://gist.github.com/jocki84/6ffafd003387179a988e) it!\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize, you can use the ponyfill version so all\nyour users experience smooth scrolling.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed/ponyfill'\nconst node = document.getElementById('hero')\n\n// If all you want is for all your users to have stuff smooth scroll into view\nscrollIntoView(node, { behavior: 'smooth' })\n\n// combine it with any of the other options\nscrollIntoView(node, {\n behavior: 'smooth',\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// It returns a promise that is resolved when the animation is finished\nconst sequence = async () => {\n const slide = document.getElementById('slide-3')\n // First smooth scroll to hero\n await scrollIntoView(node, { behavior: 'smooth' })\n // Then we scroll to a slide in a slideshow\n return scrollIntoView(slide, { behavior: 'smooth' })\n}\n```\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want,\nyou can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","_id":"scroll-into-view-if-needed@2.0.1-alpha.1","dist":{"shasum":"f1d0e83cfeb18142324fa0ebe24276de727231a2","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.0.1-alpha.1.tgz","fileCount":14,"unpackedSize":47533,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5J2CCRA9TVsSAnZWagAA6/wQAI6ATY446eowMGkeyQnh\n7sfx7zYIy+S/ebqHrTw/2k9nZF1fdO+xFQ2ZR2d47eMPcWVvVGwpJEZSNBo3\nVl/k4US0g4y7t4XhaWjoIPJOajQe5CMEUnu8Rv0D1yiM4544AILR32Gk8uzI\nHvAcOnURseWKE0lFrUz1rHHc5a7REzad1kvzgtvNyMvUjxo3IcUhqt/hEhHt\nsz/uVN3npucZKHQ1QAgIDn34izurpHZn/h/fFTorEhLfbjVMMPVkLCaHKNvr\nWxrl7gkDylVeMmL39BK+ZW9SgZHL436PSPZXT0BtnjsW2UxHRKBpSr4y99f4\nSicwCCa0Hf3Iw+de9ptdzxHoSiLMF1Fv0D37QB0UdnnVL3zj0dBlcZboX1yC\nOY97mVoekizZ4X0XGJcKX3mLaLdMt7KPyr4ODEbAkAvwl6QY/dJ6zJxYDNvg\nsUF37WLvz+F/h/aMY5nEpP9I4pE200fjgpfbzz+imgnHSexrC1uGMYH+bzDI\n39n/UuMNkfRruAzt28Zc4ve3erAI4Ihj5P/BGBHk3PG+27K+hJRwcXZP5rQV\njDFnFsfZT57B1K+7uZLeZzoVUrB9dOsBvVrOw7pgINFGbogmRKXwVdc25msK\nnC2jAVsIgXCeKALgfnpxpO9PY3Q3GcPsLjancK1RglbbtGRREhV89sU9/0RY\nnJVv\r\n=40xu\r\n-----END PGP SIGNATURE-----\r\n","integrity":"sha512-nwdmEPeZrMnXLvfGZDuh9IPdKB3xBR1GzOm+ZLoGkbZkhIuUPan68zqMDk3hgmubS1nrDHTriv2TDB1i5R1qzw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIENdePR4G8vuDPtBfr9Yyz1af4dkBhx2AXRXseEh2Mi1AiEA1BwcMhmhoRxkFTn/mN2ALY0Bss0YW+9UiPURweXhTX0="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.0.1-alpha.1_1524931969154_0.6609437425609175"},"_hasShrinkwrap":false},"1.5.1":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"1.5.1","main":"index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","husky":"0.14.3","lint-staged":"7.0.5","prettier":"1.12.1","prettier-package-json":"1.5.1","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.1.7","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"module":"es/index.js","prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","readme":"# This is the work-in-progress, the current stable version is [here](https://github.com/stipsan/scroll-into-view-if-needed/tree/v1)\n\n[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed)\n[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39338772-34165fb2-49c5-11e8-9d29-38acb6842db8.png)\n\nThis used to be just a [ponyfill](https://ponyfill.com) for\n`Element.scrollIntoViewIfNeeded` but is currently being rewritten to cover\n`Element.scrollIntoView(ScrollIntoViewOptions)` including the new `scrollMode: \"if-needed\"` option. This readme will be updated when it's ready for stable\nrelease.\n\n## [Demo](https://scroll-into-view-if-needed.netlify.com)\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize and want the smooth scrolling behavior to be ponyfilled you can use the [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) addon.\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want,\nyou can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","readmeFilename":"README.md","gitHead":"2ee61bd8fde564870589e052e8c7d7d7aa20c5f2","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@1.5.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-Bkd1QjLu2gbqwWTvcODeFnYMBurIzqOMKdf+mHFG8emwIxCAV22vDZLCSSotKQUeGGDYy58fq+ciRpEsuiUzeg==","shasum":"79e6bad6cd93d723e5b2fef3bddbcff55475e781","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-1.5.1.tgz","fileCount":12,"unpackedSize":48362,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5K0kCRA9TVsSAnZWagAAZgoP/3eRPEA7BORpL6hPVnWd\nH6wqg87NPY3orBZvsdG9heSyGdRG4YK8maHvN9ghCYuIGAYtR1WVJsXA5EyU\nymhqfvv4Vp51Q1yqyxmJZ9Im18x9kHc09nXdpGDVvPbOsLNHnsMcKpklbFb9\nDTb8RX1hgmUzEdETFo1gzPh1kzOCFWtKlEeMdwM0WHqUC84r5j2ZKjrogD32\nmhhlu3AARN/51FI0eD4gvAS1DJg3d7HguNfg2+TQYZHFueh9ltSHkq5eQDII\nB1wWR8IRarD9cfEq+oOHm11BMPuGzrHTmV1CE7O4ZopWBW/oBT4nJKj5OR/7\n1IJarIw2Sj66WKlXy9tgeOa9tof0GRXTKQW0IbSQPzqicqwuohCXaSdRNe83\naTCUGEwJX267z2FX92qb/82F4wfXTIjZj6Umnsq7mSZ7CcQpAtP2lAe9SuYs\nWJoKMJq3iRy+klL71+h2riuhnJrYglsqnz85/Tjb5/7UOAPEiADiAB6fXsz3\nreeTIx8dmY3+3DOo+mNvbb8ZdrzMtDVDTyRux1mbNc28Pui40DzEr7zWuQGc\nOUPohWPTR8IsF1BDFJeH/nK3m+OXIUpdCnWRKYWIYIdwiYO1zu53Cd80KxjQ\nJA00Pa/Gt2GDcTQfU0DkmCMxg4iJ8Cicm0mEkqKwWluJyUbv1IoIHBAAhfUP\nj6rv\r\n=dLU0\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDZrajAInlj6QOf5bcE9IMUdJrni8aOMLuckxoeeIlsIQIgWdiyyaPCODT6Bq6/HDwO7XSgTe3KfECrrUp13vHkFfo="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_1.5.1_1524935971797_0.7345063509541805"},"_hasShrinkwrap":false,"deprecated":"this version is actually an v2 alpha, please use 1.5.0 instead or consider upgrading to the latest v2"},"2.1.0":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.1.0","main":"index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","husky":"0.14.3","lint-staged":"7.0.5","prettier":"1.12.1","prettier-package-json":"1.5.1","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.1.7","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"module":"es/index.js","prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","readme":"# This is the work-in-progress, the current stable version is [here](https://github.com/stipsan/scroll-into-view-if-needed/tree/v1)\n\n[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed)\n[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39338772-34165fb2-49c5-11e8-9d29-38acb6842db8.png)\n\nThis used to be just a [ponyfill](https://ponyfill.com) for\n`Element.scrollIntoViewIfNeeded` but is currently being rewritten to cover\n`Element.scrollIntoView(ScrollIntoViewOptions)` including the new `scrollMode: \"if-needed\"` option. This readme will be updated when it's ready for stable\nrelease.\n\n## [Demo](https://scroll-into-view-if-needed.netlify.com)\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize and want the smooth scrolling behavior to be ponyfilled you can use the [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) addon.\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want,\nyou can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(([el, scrollTop, scrollLeft]) => {\n // implement the scroll anyway you want\n el.scrollTop = scrollTop\n el.scrollLeft = scrollLeft\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic, just do the math\n const offsetTop = el.scrollTop - scrollTop\n const offsetLeft = el.scrollLeft - scrollLeft\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","readmeFilename":"README.md","gitHead":"8530621b6e2196b92332f6cc6bcabe7d60e72f2e","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.1.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-Mrd3iR9zM4bhNjIy4giqB7PmfOXgiAmt0gm2V2QF5cU2M1JquKeakcLo/kzaWcZtx24Z57HawFDOiQcA4RNd6A==","shasum":"fc574e55d0a3cd6928243ff673f9854789f4434a","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.1.0.tgz","fileCount":12,"unpackedSize":49230,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5LcXCRA9TVsSAnZWagAA5J0P/iZAqZcpA+pwAAMyuQE8\nZHQqZCPQ/JZVKD82+PTh5djKvyShTsy++xSwPQU2K0O2Ep9ovP9J+GCRYb3v\ne/+mQ3SiJ/Qi6HVbnq2YwHKnA0Np7jCKSdOzI+o8b5Zqsdf6vi+okCYgrXFp\n/tiMehPAJPcqPvWLRoDw9khLu2hl3psBswQaVzstx/g6OjIDtnvUNOTNpXya\nyRND5Wbm6qaF6CVwbmwbNK7Bm3mWXfwyMF+ytgOPTfuAU5WfmHo5HbNpxPzj\nIVApKkbAPvfHx+T+aULUmF22dAqs9z0M0T5F7Bku0pPhw/9i+Kf4dr1I8FPB\nyR74YFpSAFILqwd06QHl6+myioiMhCsTC5HyMt4GLfWHMFJt1uWuvMHFysd/\nI9JFP+S79jmGbpKWYi0DemGWh1QsXMJJDUC37CQeMEbiD8Hxf8W5NIdn9Vci\nfhUZ59RcTU4IRzfr1iJ4t4cgkn7JCa6h/W1jpHAvIpQmK74SAPY+UtDfiywW\n9ay7NGye3xramxh/axCJT0K/eavPAvQlhHM2pOXDyl+u8aQO1O8Pw9LbRNj5\nBkJ9ret2NNAyL2V49VFlGw9nhdOmoL6yeA9QvUl/qUTKSPTs70xEV052SRk6\n42rkriFsGI7Op3ynnaZMmKa3hZXUhJ3z5u6Ogo+RRGPGWhzRhDzHiVuMbqqS\nk1gl\r\n=Vtus\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDDNu3AV3RK9L3SClLLBXM0t1rr2gcUWcviAgPeV5lIsQIgP2BQ2d4gQlj6FnqigEoonHn677+GG4aQC701aTzx9i4="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.1.0_1524938517829_0.8870586585760885"},"_hasShrinkwrap":false},"2.1.1":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.1.1","main":"index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","husky":"0.14.3","lint-staged":"7.0.5","prettier":"1.12.1","prettier-package-json":"1.5.1","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.0","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.1.7","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.5 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"2.3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"module":"es/index.js","prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","readme":"# This is the work-in-progress, the current stable version is [here](https://github.com/stipsan/scroll-into-view-if-needed/tree/v1)\n\n[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed)\n[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39338772-34165fb2-49c5-11e8-9d29-38acb6842db8.png)\n\nThis used to be just a [ponyfill](https://ponyfill.com) for\n`Element.scrollIntoViewIfNeeded` but is currently being rewritten to cover\n`Element.scrollIntoView(ScrollIntoViewOptions)` including the new `scrollMode: \"if-needed\"` option. This readme will be updated when it's ready for stable\nrelease.\n\n## [Demo](https://scroll-into-view-if-needed.netlify.com)\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed@next\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize and want the smooth scrolling behavior to be ponyfilled you can use the [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) addon.\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want,\nyou can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(({ el, top, left }) => {\n // implement the scroll anyway you want\n el.scrollTop = top\n el.scrollLeft = left\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic or whatever, just do the math\n const offsetTop = el.scrollTop - top\n const offsetLeft = el.scrollLeft - left\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","readmeFilename":"README.md","gitHead":"5068ad922b173a1ea3f9705ae10faa474f22a633","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.1.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-0g5FllBHBk0CbqLNOGzI3F115Nr+Hs1QE3Sqc2B0k78FnF2uL5Ih7YqR2XZQn2loC4fAR7EuR3HuaMHGoATXkg==","shasum":"205a50622e0e9b97420da5aa08647b51c1855c47","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.1.1.tgz","fileCount":12,"unpackedSize":49975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5ibuCRA9TVsSAnZWagAAu18QAI9IjZqUhpnvjPxGpFiT\ncNLwLJ031yJgNk3SuDaQRISDip79BEuL/f3+aP85pn4AGh5RO14u3lckRlMz\nHmOMNgZNid5qwJslEGfE+5gwTNhcuLXx8+IzgBPP8aoQfS8LKxtjF7xw1eI8\neUL+BFO4OyxvuKrtiLfIUC6YPOAWioEPhgWOE9q+u/BtkyV8ZpFcoDqfmJ5Z\nkeHOhG4qyJowR42p5YTXeYzuNwlnQSRq+fnG2vosV82iJ9AfuqOZBLPIr1W/\n2ajWODOFObxVnyyfSJiNIz+GU2feToMNKtTouzydwrzQtX1xcESC9bx1Kk89\nffhAl0CUvklYrhCHiflV2jeHFT8bwSP+7mFHkiQDqzdbLRpl0uj85R1jitK5\nsuw7ipNiF6UNkZwfw7Y8cVShb3kOCDeYtNEDpJcALJ/OkzZTsKgO7wpkhXIA\nil50W5dRI8xgcbt6+h145uFgFR6o9n79daKjVTjot4JR0tKMNPNnmlBPH70w\nt/xPGePDfst3wwuzkynSIH0BSCAzt20ybyrunzt+mGdH5UR1KoMvVP59veWq\nFqf/69pzYGiFmn6avHnCPVuvJe530HeoO3T7bzDxJULseX8YXvoi6VHC7O0M\nBBlxdmkGcy+7gOLU5vk0ZWne+ty5ikzEnyZC4LUbvidPNGix18O+jMNeUPFZ\nfSTN\r\n=zIeP\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICo5tD4S3oNHMJoxE24ZYmXFSY5ivzajH9JZlDRj2CqMAiEA2HrWsKp289lht6cyoLoC1w9ZDw+Hyoxlc2c5ZTBDCgM="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.1.1_1525032686329_0.800423098018521"},"_hasShrinkwrap":false},"2.1.2":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.1.2","main":"index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","husky":"0.14.3","lint-staged":"7.0.5","prettier":"1.12.1","prettier-package-json":"1.5.1","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.1","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.1.8","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"module":"es/index.js","prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","readme":"# This is the work-in-progress, the current stable version is [here](https://github.com/stipsan/scroll-into-view-if-needed/tree/v1)\n\n[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed)\n[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39338772-34165fb2-49c5-11e8-9d29-38acb6842db8.png)\n\nThis used to be just a [ponyfill](https://ponyfill.com) for\n`Element.scrollIntoViewIfNeeded` but is currently being rewritten to cover\n`Element.scrollIntoView(ScrollIntoViewOptions)` including the new `scrollMode: \"if-needed\"` option. This readme will be updated when it's ready for stable\nrelease.\n\n## [Demo](https://scroll-into-view-if-needed.netlify.com)\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed@next\n```\n\n## Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nIf you're ok with a larger bundlesize and want the smooth scrolling behavior to be ponyfilled you can use the [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) addon.\n\n### Custom scrolling transition\n\nIf the default smooth scrolling ponyfill isn't the duration or easing you want,\nyou can provide your own scrolling logic by giving `behavior` a callback.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: scrollActions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n scrollActions.forEach(({ el, top, left }) => {\n // implement the scroll anyway you want\n el.scrollTop = top\n el.scrollLeft = left\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic or whatever, just do the math\n const offsetTop = el.scrollTop - top\n const offsetLeft = el.scrollLeft - left\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\n## More documentation will be added (hang in there)\n","readmeFilename":"README.md","gitHead":"d695115c1e8062ae41c800249239755325b2128c","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.1.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-Fw3KRPFSf6bg/A6GSWUcmo2V867w1xgzJPai+SIPDTspsbLAo+eOjq5M648KAPlif1Gt1HQRD0nb9VvcDWWgeA==","shasum":"e61386c25f53d94b8a7d2dcb1ae7929fb903118b","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.1.2.tgz","fileCount":12,"unpackedSize":50928,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa5kWCCRA9TVsSAnZWagAAmYYP/2yTEKRRCeTdOA25wvZT\nM/ggDWPrpSlO7uhM9Id5mo1QpuWDBXEyKpMm7addMqwgHxAPlLlJQTZPY7zO\nv9YTv5qR8ZWPXRhXDl3aMKzzEhhKK3Z/eXLZN/jOD453a+fjT39JFnJMjhKN\nukmjpseVpIJHoIkYo4Dz70CkaclZVNpPMnPwDkJI88ymLjr7nvr7GhHY5anv\nIU1CJc/SI8EWsrEMwFe0XBy8mzzQe6M+hxQgz3yhY7YY7o7RuakBspu6SaIr\nX7BUpQqIPItbpbnDIYcrqq3zvfiNf/pFQ30XwsV2mXJD5mohreXfmK53AIP4\nc3PDn4A7lRQsIYE2TfDvIH9Zdv/z1+jUaq8J4UQ/28EigO7IOr+HMwyg1Pej\nd2Uel+ZYymrAu5UEMuyxJShF5bseyM/N53k/Y5M0RsqPVqMvZwej5Mqn8FqJ\nD1XNG/bgGCuj6X576FEiyQ3/Tq1h+guatMZqjbI32/XOqw1CaRNNpxxyRaxO\nRircmJB1g5aUQFDJdH0GH73YU0jBF3GRRRmXruCSuxXi5efVA3IDTqmwJglW\nOMAtYSTvP+0u1d3oVBelxTWaAShk5cs+Ppp4h5LxoGFx1JLrPqxSoydwSGVI\nNHG28t6GMww2gIKdENzrwp++QZtkNlteIRUTSrUkaV31m51IAWz+JvSBssIF\n9ghC\r\n=i8ig\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE92CneiGM3loJxMI8nhqJNSxbV6fwcHT+iCPQ2GlWQYAiBzMki/r49Zv579OJDVy02uWBtVweIgsATKVSoe2sY7bQ=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.1.2_1525040514072_0.9830525573744024"},"_hasShrinkwrap":false},"2.1.3":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.1.3","main":"index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","husky":"0.14.3","lint-staged":"7.0.5","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.2.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"publishConfig":{"tag":"next"},"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"module":"es/index.js","prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","readme":"[![CircleCI Status](https://img.shields.io/circleci/project/github/stipsan/scroll-into-view-if-needed.svg?style=flat-square)](https://circleci.com/gh/stipsan/scroll-into-view-if-needed)\n[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![gzip size][gzip-badge]][unpkg-dist]\n[![size][size-badge]][unpkg-dist]\n[![module formats: umd, cjs, and es][module-formats-badge]][unpkg-dist]\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39476436-34a4f3ae-4d5c-11e8-9d1c-7fa2fa6288a0.png)\n\nThis used to be a [ponyfill](https://ponyfill.com) for\n`Element.scrollIntoViewIfNeeded`. Since then the CSS working group have decided to implement its features in `Element.scrollIntoView` as the option `scrollMode: \"if-needed\"`. Thus this library got rewritten to implement that spec instead of the soon to be deprecated one.\n\n## [Demo](https://scroll-into-view-if-needed.netlify.com)\n\n## Install\n\n```bash\nyarn add scroll-into-view-if-needed\n```\n\n## Usage\n\n```js\n// es6 import\nimport scrollIntoView from 'scroll-into-view-if-needed'\n// or es5\nconst scrollIntoView = require('scroll-into-view-if-needed')\n\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n### Ponyfill smooth scrolling\n\nWhat does ponyfilling smooth scrolling mean, and why is it implemented in [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) instead?\nThe answer is bundlesize. If this package adds smooth scrolling to browsers that's missing it then the overall bundlesize increases regardless of wether you use this feature or not.\n\nPut it this way:\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n// Even if all you do is this\nscrollIntoIntoView(node, { scrollMode: 'if-needed' })\n// You end up with the same bundlesize as people who need\n// smooth scrolling to work in browsers that don't support it natively\nscrollIntoIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\nBecause of this you need to choose a strategy that matches your priorities: load time, consistency or quality.\n\n##### Load time\n\nIn many scenarios smooth scrolling can be used as a progressive enhancement. If the user is on a browser that don't implement smooth scrolling it'll simply scroll instantly and your bundlesize is only as large as it has to be.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n\nscrollIntoView(node, { behavior: 'smooth' })\n```\n\n##### Consistency\n\nIf a consistent smooth scrolling experience is a priority and you really don't want any surprises between different browsers and enviroments. In other words don't want to be affected by how a vendor might implement native smooth scrolling, then [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) is your best option. It ensures the same smooth scrolling experience for every browser.\n\n```js\nimport smoothScrollIntoView from 'smooth-scroll-into-view-if-needed'\n\nsmoothScrollIntoView(node, { behavior: 'smooth' })\n```\n\n##### Quality\n\nIf you want to use native smooth scrolling when it's available, and fallback to the smooth scrolling ponyfill:\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nimport smoothScrollIntoView from 'smooth-scroll-into-view-if-needed'\n\nconst scrollIntoViewSmoothly =\n 'scrollBehavior' in document.documentElement.style\n ? scrollIntoView\n : smoothScrollIntoView\n\nscrollIntoViewSmoothly(node, { behavior: 'smooth' })\n```\n\n## API\n\n### scrollIntoView(target, [options])\n\n> New API introduced in `v1.3.0`\n\n### options\n\nType: `Object`\n\n#### behavior\n\nType: `'auto' | 'smooth' | 'instant' | Function`
Default: `'auto'`\n\n> Introduced in `v2.1.0`\n\n##### `'auto'`\n\nThe auto option unlocks a few interesting opportunities.\nThe browser will decide based on user preferences wether it should smooth scroll or not.\nOn top of that you can control/override scrolling behavior through the [`scroll-behavior`](https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior) CSS property.\n\nSome people get [motion sick from animations](https://css-tricks.com/smooth-scrolling-accessibility/#article-header-id-5). You can use CSS to turn off smooth scrolling in those cases to avoid making them dizzy:\n\n```css\nhtml,\n.scroll-container {\n overflow: scroll;\n}\n\nhtml,\n.scroll-container {\n scroll-behavior: smooth;\n}\n@media (prefers-reduced-motion) {\n html,\n .scroll-container {\n scroll-behavior: auto;\n }\n}\n```\n\nQuick note, in the CSS property the `auto` keyword equals `behavior: 'instant'`, not `behavior: 'auto'` on `scrollIntoView`. **Yes**, this is confusing.\n\n##### `'smooth'`\n\nUsing `behavior: 'smooth'` is the easiest way to smooth scroll an element as it does not require any CSS, just a browser that implements it. [More information.](#ponyfill-smooth-scrolling)\n\n##### `'instant'`\n\nThis is useful for scenarios where it's certain that smooth scrolling would make an interaction feel sluggish. Like keyboard navigation and other user experiences where the end user expect things to move _instantly_.\n\n##### `Function`\n\nWhen given a function then this library will only calculate what should be scrolled and leave it up to you to perform the actual scrolling.\n\nThe callback is given an array over actions. Each action contain a reference to an element that should be scrolled, with its top and left scrolling coordinates.\nWhat you return is passed through, allowing you to implement a Promise interface if you want to (check [`smooth-scroll-into-view-if-needed`](https://github.com/stipsan/smooth-scroll-into-view-if-needed) to see an example of that).\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: actions =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n actions.forEach(({ el, top, left }) => {\n // implement the scroll anyway you want\n el.scrollTop = top\n el.scrollLeft = left\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic or whatever, just do the math\n const offsetTop = el.scrollTop - top\n const offsetLeft = el.scrollLeft - left\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\nCheck the demo to see an [example with popmotion and a spring transition](https://scroll-into-view-if-needed.netlify.com/#override-behavior).\n\n#### block\n\nType: `'start' | 'center' | 'end' | 'nearest'`
Default: `'center'`\n\n> Introduced in `v2.1.0`\n\nControl the logical scroll position on the y-axis. The spec states that the `block` direction is related to the [writing-mode](https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode), but this is not implemented yet in this library.\nThis means that `block: 'start'` aligns to the top edge and `block: 'end'` to the bottom.\n\n#### inline\n\nType: `'start' | 'center' | 'end' | 'nearest'`
Default: `'nearest'`\n\n> Introduced in `v2.1.0`\n\nLike `block` this is affected by the [writing-mode](https://developer.mozilla.org/en-US/docs/Web/CSS/writing-mode). In left-to-right pages `inline: 'start'` will align to the left edge. In right-to-left it should be flipped. This will be supported in a future release.\n\n#### scrollMode\n\nType: `'always' | 'if-needed'`
Default: `'always'`\n\n> Introduced in `v2.1.0`\n\nThis is a proposed addition to the spec that you can track here: https://github.com/w3c/csswg-drafts/pull/1805\n\nThis library will be updated to reflect any changes to the spec and will provide a migration path.\nTo be backwards compatible with `Element.scrollIntoViewIfNeeded` if something is not 100% visible it will count as \"needs scrolling\". If you need a different visibility ratio your best option would be to implement an [Intersection Observer](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API).\n\n#### boundary\n\nType: `Element | Function`\n\n> `Function` introduced in `v2.1.0`, `Element` introduced in `v1.1.0`\n\nBy default there is no boundary. All the parent elements of your target is checked until it reaches the viewport (`document.documentElement`) when calculating layout and what to scroll.\nYou can use this option to do things like:\n\n* Prevent the browser window from scrolling.\n* Scroll things into view below the fold without scrolling to it.\n* Scroll elements into view in a list, without scrolling container elements.\n* Prematurely optimizing performance instead of code-splitting your app.\n\nYou can also pass a function to do more dynamic checks to override the scroll scoping:\n\n```js\nscrollIntoView(target, {\n boundary: parent => {\n // By default `overflow: hidden` elements are allowed, only `overflow: visible | clip` is skipped as\n // this is required by the CSSOM spec\n if (getComputedStyle(parent)['overflow'] === 'hidden') {\n return false\n }\n\n return true\n },\n})\n```\n\n# Breaking API changes from v1\n\nSince v1 ponyfilled Element.scrollIntoViewIfNeeded, while v2 ponyfills Element.scrollIntoView, there are breaking changes from the differences in their APIs.\n\nThe biggest difference is that the new behavior follows the spec, so the \"if-needed\" behavior is **not enabled by default:**\n\n##### v1\n\n```js\nimport scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'\n\n// Only scrolls into view if needed, and to the nearest edge\nscrollIntoViewIfNeeded(target)\n```\n\n##### v2\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n\n// Must provide these options to behave the same way as v1 default\nscrollIntoView(target, { block: 'nearest', scrollMode: 'if-needed' })\n```\n\n#### centerIfNeeded\n\nThe old `Element.scrollIntoView` api only had two settings, align to top or bottom. [`Element.scrollIntoViewIfNeeded`](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded) had two more, align to the center or nearest edge.\nThe `Element.scrollIntoView` spec now supports these two modes as `block: 'center'` and `block: 'nearest'`.\nBreaking changes sucks, but on the plus side your code is now more portable and will make this library easier to delete from your codebase on the glorious day browser support is good enough.\n\n##### v1\n\n```js\nimport scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'\n\n// v1.3.x and later\nscrollIntoViewIfNeeded(target, { centerIfNeeded: true })\nscrollIntoViewIfNeeded(target, { centerIfNeeded: false })\n// v1.2.x and earlier\nscrollIntoViewIfNeeded(target, true)\nscrollIntoViewIfNeeded(target, false)\n```\n\n##### v2\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n\nscrollIntoView(target, { block: 'center' })\nscrollIntoView(target, { block: 'nearest' })\n```\n\n#### duration\n\n[More information.](#ponyfill-smooth-scrolling)\n\n##### v1\n\n```js\nimport scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'\n\nscrollIntoViewIfNeeded(target, { duration: 300 })\n```\n\n##### v2\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n// or\nimport scrollIntoView from 'smooth-scroll-into-view-if-needed'\n\nscrollIntoView(target, { behavior: 'smooth' })\n```\n\n#### easing\n\nThis feature is removed, but you can achieve the same thing by implementing [`behavior: Function`](#function).\n\n#### handleScroll\n\nThis is replaced with [`behavior: Function`](#function) with one key difference. Instead of firing once per element that should be scrolled, the new API only fire once and instead give you an array so you can much easier batch and scroll multiple elements at the same time. Or sync scrolling with another element if that's the kind of stuff you're into, I don't judge.\n\n```diff\n-import scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'\n+import scrollIntoView from 'scroll-into-view-if-needed'\n\n-scrollIntoViewIfNeeded(node, {handleScroll: (el, {scrollTop, scrollLeft}) => {\n- el.scrollTop = scrollTop\n- el.scrollLeft = scrollLeft\n-}})\n+scrollIntoView(node, {behavior: actions.forEach(({el, top, left}) => {\n+ el.scrollTop = top\n+ el.scrollLeft = left\n+})})\n```\n\n#### offset\n\nThis was always a buggy feature and warned against using in v1 as it might get dropped.\nIt's much safer to use CSS wrapper elements for this kind of thing.\n\n### scrollIntoViewIfNeeded(target, [centerIfNeeded], [animateOptions], [finalElement], [offsetOptions])\n\nThis API signature were warned to be dropped in `v2.0.0`, and it was.\n\n# Related packages\n\n* [smooth-scroll-into-view-if-needed](http://npmjs.com/package/smooth-scroll-into-view-if-needed) – ponyfills smooth scrolling.\n* [react-scroll-into-view-if-needed](https://www.npmjs.com/package/react-scroll-into-view-if-needed) – A thin wrapper to scroll your component into view.\n* [Don't be shy, add yours!](https://github.com/stipsan/scroll-into-view-if-needed/edit/master/README.md)\n\n# Who's using this\n\n* [zeit.co/docs](https://github.com/zeit/docs) – Documentation of ZEIT Now and other services.\n* [Selenium IDE](https://github.com/SeleniumHQ/selenium-ide) – An integrated development environment for Selenium scripts.\n* [Box UI Elements](https://github.com/box/box-ui-elements) – Box UI Elements are pre-built UI components that allow developers to add elements of the main Box web application into their own applications.\n* [react-responsive-ui](https://github.com/catamphetamine/react-responsive-ui) – Responsive React UI components.\n* [Mineral UI](https://github.com/mineral-ui/mineral-ui) –\n A design system and React component library for the web that lets you quickly build high-quality, accessible apps.\n* [Covalent](https://github.com/Teradata/covalent) – Teradata UI Platform built on Angular Material.\n* [docs.expo.io](https://github.com/expo/expo-docs) – Documentation for Expo, its SDK, client and services.\n* [Add yourself to the list \uD83D\uDE09](https://github.com/stipsan/scroll-into-view-if-needed/edit/master/README.md)\n\n[gzip-badge]: http://img.badgesize.io/https://unpkg.com/scroll-into-view-if-needed/umd-scroll-into-view-if-needed.min.js?compression=gzip&label=gzip%20size&style=flat-square\n[size-badge]: http://img.badgesize.io/https://unpkg.com/scroll-into-view-if-needed/umd-scroll-into-view-if-needed.min.js?label=size&style=flat-square\n[unpkg-dist]: https://unpkg.com/scroll-into-view-if-needed/umd/\n[module-formats-badge]: https://img.shields.io/badge/module%20formats-umd%2C%20cjs%2C%20es-green.svg?style=flat-square\n","readmeFilename":"README.md","gitHead":"3b95ed7aa2d8461d9c09b03246d361a72ecaeb57","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.1.3","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-llhiCte16TqKM4acpSRCKDm7jtohrkOGwwyGVxL7rqAa1vZgawm7VfkAfXvFDXEKpUuMN1pQViT4iz9OIpL8HA==","shasum":"1985e4ebd9735645b56741f26ff285a2817982f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.1.3.tgz","fileCount":12,"unpackedSize":63133,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6NzoCRA9TVsSAnZWagAAx7IQAKF44WxpEshmXfTqhQve\nav3lLUj29gVC0UqtrOwSPfkPSl/9iQY878b4U9wIW9XQNUtXsqTpNg3WytHB\nZ6wH+OuAsOmwX2TAEu40akMy49DUezi3JHF1Lzfp5z8HMvXidOFtYjmu8sGU\nvkThSRjWz4p+Zzw9cXQOFuUK9v3opwVOnzOHgNpBhM1pMzUJuSaD4K8c7SIW\nl4IUz8I/XfpGpQUktEBjmIOHJlv/cEbZOMD4NLsRfELToRGo/Qz+4v5RrcgX\ndinEtajAt1zFyWwQUgbUeB5u7ibjqZJjFht73bVEqMct/OKf48QSF3OBckzD\nrKvOq2/rn0XNBHFLLevKGTWySeXAtNDPe3RUJkchFKhNPf7hw318kTXXASVC\n7/iQ4VpsNSkseBG8QUc7jEYI4YlGb2dHSluEk87RWc2VXGrhq4rYoSSGaf6r\ne5AD5Ae7Y2F2yaxuSKOWKr6lcMg6ZBw+IJdaCAYtZZqAyS/vfcVQWZrHP+Fu\nnvqJhc11lGwb7VgML8grcDnQjvjiH1qoKS7qU45fMGtk9qHqfYX6et1rQYR9\nMrMYRkNcPGYuCRZx4wNQuJboos5zKUHNEyJWt0E4u/aOc5CNNx1BZhcMedXy\neMK6tIdqCSemPxxXleJZ6GxBkUm3YMUBlHC8bKBG+USvdPtEjmcqVO6tMLHc\nH1wb\r\n=n7Y3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICz01IwgyCn0VUnmwHlCBtmPamKH+hskNSioYKRJS4iBAiAyDWylmUMXQHUEsIebcIGOP+5NKRBPcGFGX2nqiI/D9w=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.1.3_1525210344380_0.34860850752562955"},"_hasShrinkwrap":false},"2.1.4":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.1.4","main":"index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","husky":"0.14.3","lint-staged":"7.0.5","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.2.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"module":"es/index.js","prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"e4b1d64f5414b4719bee63e3cd480da0d2be2418","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.1.4","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-COfN5iX4VBlBBpaMsI5Uk3lY6jWuU4mDRG8FUfJIvVpdzQU4a6CqFSWRIewFLUFwYe4wvamjprAAS5woWlBD+g==","shasum":"6320be737ac2eb89567b0a6858bd53c8dcee6199","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.1.4.tgz","fileCount":12,"unpackedSize":63359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6OOWCRA9TVsSAnZWagAAvLUQAJZt9gXv0bXaXX+mjVyT\nFZCSUz+cVSgwN6TDD0j/YVaTRUYedNEoX0kPRYeqK002WTlJgC8/UZiJXxr9\nppntDbKbs9TO0yv1OP3VfR2zvPDnzwpYnhFlI7prq3xmpxZUNanrBfOUK9Xb\nd1a1u3FtEbiwblhEhGAdT5Le7ZdghX/F64PpUZDMl66fWiCYaM6hnghgKnXf\nHBKvvHeOJ0LNHCwKyegkBu4ozhx5EZMlFaR6mJD58VqWBK0lOW+z5dQetM55\nOC1zLKprb6iw26KxD27wKwolhOhSv+ma6LZ6c62IoXI3GbNX/y24819kVWxE\n7iBJNoN9fMoUKZyHPVonjLRCAPANLN9fKEtwBzGro8MPQUaZENlFMYu89et+\nVHJrgfVt6x9icluHDUuTkDBMVqASUPlT6agCSYvy07/xlI4BkEX8FLIUPs1I\naFySxKiioa8S4L1IxeRownlNqE2IP6NAbvFZHkaMY1qUIBz3C0V8rHvVcfQk\niq3HhHOknAqCNQgzP1NYlB3I/cf5GQl/8PC6mibxxGw2R4+E8mpcqE9+PHwV\nsiqjhafN+2deiWhIDBKYwAxWlG/I6mlR8iWuv45Uz2F6n6vLLVHylbjtxHDf\nDlGfuFJY7QQ0N6TPCGvPBkY+91eA0k90NDmc9ixEMOqHvk/dzFrv8hswulL4\nRx21\r\n=8E1Y\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEi2P/f450EBRej+U8lJ9IG4RV7vRm2Tf51o0rQvarZWAiEAmwBzeGVLH0DGLb6YSn4p+t7mKsVc0uwkyR+57hRmnjI="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.1.4_1525212052246_0.5992037541427069"},"_hasShrinkwrap":false},"2.1.5":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.1.5","main":"index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","husky":"0.14.3","lint-staged":"7.0.5","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.2.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"module":"es/index.js","prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"d937343162162d2782d1e960dfdd67663ebe59c1","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.1.5","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-1ohtxPxWurVueyK+zvyGhg9Uq3xB7Erxtqg8NztWqBLfQWk3/t/m9Czr9Vg5c2ltGejbh5Rf+puVdOWnmiiX2Q==","shasum":"0ded69275e0172c71f523722d497aef44f6c6bad","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.1.5.tgz","fileCount":12,"unpackedSize":63359,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa6OcLCRA9TVsSAnZWagAAGIcP+QFSzJPd0ZcepLuJGlpD\nD8L/HD4HB7bFvcKjXAusLZI4Jat5nNR9ScPnMHvr6Yu/nBzGlM5kHmbbUcK9\n3Cd81mtvqooB+aqKswWOI5E5uY6zcQWl1bslrBprcfKE/161Dpo05z0SIzCX\nHSiib0v9JEqHOSMR3BZHb+oxOe8FBELdt2487Vol2BFLAD1jADeRtR57w4z4\nmeSjohEjxnmVk1O04cfg48G7jQD0o6mVmUuTKtcprCTAgVnsMUdVjr6ZOsPW\nB157ddYUca/s4zpBkszizJyIYvajxHvYI0Hl78NEIrKJadBhEwQHCcI8ZTUc\n+Ao5q+hWB0yXy58pw/iyr7DxLgKEmOYLXLLTfwKMl6SSL5awtE/cpqIfTFdq\n7crq+s4ra/BpE+M+/QG6KL/HtAMIzO9ScLDGyyE3aTj5mtn225pjm88qRJje\nnoVf6jgOFF332RgXNMHuw9PJv9xvFjYO8XRfWNO23en+9wSAGMH4AcurA63o\nGIF42221QUw6kgDRfXlGRETSqRxHwUyW1yVSo/pWRwqH47o+3x+Z+84yg7Yb\nDwJ1wUNrPd9DOJhlNZkLrXgw6lWgdfSJxYJARGYMcGaJ/dRO9gl5VSu0wrdP\nIjSCqlULXvhFYIzlGIEV0o28b3OYDMvG7yYQaUcP1wgs0K1JBRzZSRX91987\ns9FA\r\n=8orB\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDPlL0aMZ/IpofLs1nPK8bxClCtc37VzziVc8pMu5TqFwIgemCeuBNTFF2cYTv4z7/p9b3mK0EFyaNOMeEksuXT/8s="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.1.5_1525212937857_0.8182371203773735"},"_hasShrinkwrap":false},"2.1.6":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.1.6","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","flowgen":"1.2.1","husky":"0.14.3","lint-staged":"7.1.0","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.3.1","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"07e65339fbdf182330029fc8d7cbcf4e86fb59bd","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.1.6","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-9k5f9hcfK7WdbEBFSa71of/NHFPLAODoJprlvhfwPMHTFuDGzBa/eiYX5wH4ygvadVuS6sbKy4welsKqomD9Pg==","shasum":"9006fe23fcc5ffad139f07021a42e3f3e6d13f30","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.1.6.tgz","fileCount":14,"unpackedSize":64148,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8LeFCRA9TVsSAnZWagAAjPIQAKMhYLv2/17LHHzNPWiu\nTsXuMSAwYIxpGbD/Dy0aZ8qppZ4Udv6w502SR7vyXcuKlwFV146oC6TVyZvx\nY0pygqqXGcySaNNnf34HpZ0Wt6VZjm44at3/eKOzTSwV6nrfjWGWUZZY3wH8\nql0tPWi8fBYifUCe1YpWsIixzqFxjPr73qGtnVR3tGPkvZ25zj3AG2Ba8bBe\neAdYfkeaDcQV9KrwtRYX3eLn6TTcRcjj6Ne0qYEwldpUbp1VF+PHgCeI7tLH\nDwbT7yHiWvyjaR0VUUnU06T72ZfT47btDKRfTPJwA9cgZzwecUhKN0EBGeHu\nWA0jrzzGbpU6aoHTRrXa2ekZiPxUTil7rk0jgQyplq3gLFN6MA23wNkt2Tfh\nw/FG+eiqDqUTOXnAT2n0MmyFLP9oeheefnLanF8QXiCGzH7a+XRF1gQQuNSN\nWm0jMOJBhUPi6FvRBgOEVozrqQyso3/ZfVfgq6ssBAzBGNB3L3W4xiJHx8T8\n+qKJExXdNp7u9Y0QFLQ/m8iNNMIF/zICj/ESHdpCCa098fkmWeHlzIiey99i\ngmijokA/xjz9XGOWhyVhif2g+/ZjaTvsXCzIdRDzg1dE4G01dvqNzGrsPx/a\nDxHZcPNjno7fm8AUocvZYE7/hqw1/YYWcI9EYGeH2wEFiYYNc8QvchaBT//d\n6zVE\r\n=GuGs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICPsJUhy+6MtY1KX/LMTHvTVOsLas14Bl5pwJGcGNGDUAiAhA9eEot7XWXM4V5hnDrp8D3y/yaWo2Kjnj3jfLrDN5g=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.1.6_1525725059511_0.7807184477968392"},"_hasShrinkwrap":false},"2.1.7":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.1.7","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.1.0","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.3.1","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"fb732babf7927837b5673dad990ede40e8f06348","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.1.7","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-1wYH2RSmpYMHB4OWA5u4NO7wpi4sGm4FWI2y0r6k8lZarNZ4yKOKH/y5CZwBYe5QhFL2ZL/Z0GmkaXdVE3lsEA==","shasum":"a172a553e393272977978536993577814c20490b","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.1.7.tgz","fileCount":14,"unpackedSize":62329,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa8YrlCRA9TVsSAnZWagAA6tkP/1HItrWofryrZSEPO6J5\nDqZBzt3g8yo/FYQqPMlaJWxk0fxSTxHGgfp0zLTlh9cbd6CkoSTORZWim4LR\nS626DgZVtpSX+rOgbT0S9djY4X3TQ8WnxFY4xH7IRF4bvUDP/+NyAH9dU3Ko\n5XPVeEL4tkNqecVvsQlKZTpTN5EgtVNTkXaDdlO+sQvP79MvimbluTTMd7M4\nUF+0ZgcGwVTrThnpWPC7kTct+sTWXm9M8STrrIQsXZudsCP02/MpmiNKDjSp\nWoUHUsTmOXPEi5DnpjWLVg577zpgMw+eNGxAUR2chH7H4VEjoZGjZRXQ7//t\nXqtNcE7PkJqNwMhvI4SIxogZ6TyRUDDlPiyuhlLYU81goSg9TU9hPhJLId9Z\nWJMRLBPkuoqIz0nz9fbOtz0UbQ24FSaEEOC6XA5ssBW6QWBH2Rlm9FDkvJTI\n1xxtz4t3gq+wKj8RKkndAdLbSwgff4Qhb/E+IFCjSP77+pxqqpTEoZ3l/ryD\n4vAy2YW4dWRGCypzyC5v4fJbbDmirqiEt7AzXIXcShCoOF47+/2JeheGUWr+\nHwfUATAJGsg+Ze6aDgoaK9nHh5jsD7gd4NNYhTejOX8yuwCqOxaeUD3bdOTv\nfLL+sUlCOBHsBE0FZTkZOad9QxVarsDjo22KTLAz7gos4szxM7XrqechxprY\nUyd0\r\n=vJsS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7ZucF1VPqSfKGzQ3a4+8B2j9HxpDFiBUNp2lUhGUGYgIhAOewbKqSao0MEGMP2tq4Lma0ToiHgMoGRPOUQqo6+eqi"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.1.7_1525779172170_0.5374492242471374"},"_hasShrinkwrap":false},"2.2.0":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.0","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.7.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.1.0","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.4.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"21cea6ffa2e028b70f98daf13a225749a77fa33b","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.0","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-HZkGP8dz3xqsbs6lBx5P7w1YVXRqXDKlknF45bg3fTWV9WQBZWfYLjFm9Dk9iwRgN1ePGgM9ptBjulocqCkF2A==","shasum":"51611815020e89f6878515babc7556efc161ae3f","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.0.tgz","fileCount":14,"unpackedSize":64528,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa9aiKCRA9TVsSAnZWagAAlUEP/AjXSMsIn5KavyPc3F90\n/W0KKAIU3w0VwLyze0XiP0hDLe9kt6jp95IsTNmPVm3FeFwCKpdDo2khf53J\n/Wzypc2F68LTMawAC4DrJN5TPUHx+XcwXxjDi+ABTWbUuAL1I95QDwe2j3Dg\nf7WrgS2QEr2h5ovqFEAxNoR5pSeoVB3KqqlutkTZODZMdZwcGsWtk4hwXr1I\nj6bdcgjr5hWRnJg+UqkdEXUs/qnv3wSnetlHP5RnUwrXIG3+pzGcdTBQJ7AH\nO+4IMvF8nlT/L05ObzuJ4iYIdODCZAXauEKPPWRdrHsFvkFKD+bQaChd4OfW\nkCfSNaulYJlmX3eVAzVKJj+g+W2v0mDQBhbrvO2ZNIHBxlXMvZ3SWScJR/FF\nNP2BsM/KSB6xgxvauCT3gQDhdtszFM1oQauumvC6DZYq8zmpdNYFQ2mZpBvr\nKxcD8lswXfHIhZDJwCq58KYnxiEhQFEFbVd/lu+1rHwgpibteXg//2S6os9z\ndAebsIiMDG4tWWnQ6L3cWyYeMsc33F62btL9CPwx6FlZ0Yheupo2O8QFODK5\n1hDzUlFzSpePyoQGnMW0fx4uExLhxXi27wbYadPa6mWAdMaC6opPFB0HQEGe\nmV6hg0n1ZlmwKljz0TskC7HcFtWdEDF1QN2Zz9/A4QNr9cwlnstVVA4CGQuj\nGYGk\r\n=w8Aq\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGU/NOjq51F02a192Clz2wJluyc1JthpBnPdpQe5TMMSAiEAudvyqPz0NnPXhLJsdkBjK8B7MqDljkyoviZpvI8E3mI="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.0_1526048904397_0.5673746152872416"},"_hasShrinkwrap":false},"2.2.1":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.1","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.8.1","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.1.0","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.4.1","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"9b839f7163ea743803881d765762cac64a6fc04f","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.1","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-oEMo4Xn1zXe1Rbwn1syyLEVBI8t6f+nr0hrw0Fu7pA2wDSUeureUjiT/bK6hLyKFhi60VLw2zbFuofRIB5eLVA==","shasum":"2df3928aade3c57ae7a340ddea801d197bcef025","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.1.tgz","fileCount":14,"unpackedSize":65013,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa95J9CRA9TVsSAnZWagAA0wMP/1ASZvGMbzkqHVYGIOfa\nijH324KXfc1ivLMPYm857vR7NDf4mRW3ZfvUrrilMWl93hYPQPfGfwOyMn72\nABV/3ufbEsU4FbpORUeo61DIROMw1N+gB4lQgn4RgsUM1vN5xi2y9riX81UQ\nnBMkHeICRNXuM4qXNscPUoju/VYqVInltTb4hYkQh3+UZRe3Prc6+W/bXTl0\nabbgnUbVUKXA9h64iPeNvXZgaSKVuIdzFj152VIQXgkGwbNuVkcg7dst5ivf\nJ1jFcgdkZSjVBIlLpsEZAu4OD3bz3W4YQkwW6u+vvi+EwyPP9IwxBaJCderk\nBJUEFyyOT3ZTjTb9vkTer/M/EcLs8k1a+CPPxXierourCv6pKwZ/aKl3+QLL\nXFNGusaa5//QxDMoN56gU5DHDuuGsCRBkG0FgrmgEuh0u1ZlsO9BgD7a3vPF\nATJN+xoqgkz6fQwAP+DQoeDBAqelDW54m59Lu5EA7fmRxXI3d5NKplhL5ljL\nFzJfwBGvGyhsdaK3vCZkBhan8iFu2Zhcaubo7i8PLksKXxCe17IJSjsUEBV+\nDjSKF+vb8LkotiWgas1O7kpP2mdjrrpwKqj5eiV/6D3f+9T2h1Mr1genJCN4\n6IoHDViXLeJtXrxMQGtZbD/ryfmm89ni1EU7Zh/1kgJ9fWPNoubURUoswvEZ\nc1JB\r\n=zvcZ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfnOZ3xarTyrbknn3s/JEDwcZDlj3Opp8GsHFn+jv9NAIgXMkY22PFj2JahIx/qgGrJFZloTONTEr1UMemXnQxRH8="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.1_1526174331444_0.9083625390469119"},"_hasShrinkwrap":false},"2.2.2":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.2","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.46","@babel/core":"7.0.0-beta.46","@babel/plugin-external-helpers":"7.0.0-beta.46","@babel/preset-env":"7.0.0-beta.46","@babel/preset-typescript":"7.0.0-beta.46","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.11.0","eslint-plugin-react":"7.8.2","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.1.0","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.58.2","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-uglify":"3.0.0","semantic-release":"15.4.1","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"3219deff244cc98c5e588222210496a774259c8a","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.2","_npmVersion":"5.6.0","_nodeVersion":"8.11.1","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-2LxkBlobnZBMez7tOV+B31WVlXmK7+/FMKlHf+m9ASrinP6fms7AEIxhLtszQEFXCB7nTjrl2Bh938fj9A/gUg==","shasum":"6d815c2a29b34e533d89eb7128ea009615253f69","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.2.tgz","fileCount":14,"unpackedSize":65826,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJa+LLeCRA9TVsSAnZWagAAXSIP/2Wu/CkFFL/pvwEnvs/2\nBDiFwtMvDwda1W0bVNU5zEF06ZpusmLNE2DjVvz/iydrfU4+QoHLEQaTNMBq\nWN6xK2v3+KYkVfv46yok1EXljrH+eqaUbKsxg5QbVwzLjQYZrPC/6gSNt/bh\n6m5CczB+tPLas1pG+DdMHiq/h71DzBmUhxviZ/El++qf7bIzg0kGw6jKKcIh\ns0xqO4pELujW7LUW7RdyT/2lpobgN7pG+2Yu07Z7bJNM6mcer7YpT0EEKNar\noazUwqVgM7K8Ec0HdsphtT66AFZmOYEcV+IMT3Ana75tQd1BE3S6+vjZakx8\nhlJk45JBqQ4PVC4+fS15SZlr1RtLY2X1F/47SKwDCoF91pSKS0RrYWe0hLk4\nO5/cC6UOFxW+hHNMz/p2TcL+qDRPZcUaBvz2HZWAreERvvuW42k7QzkMG7ZX\nMsy8QiKXt++xbu/Idg79csSBLu5wtrnkAzf5ZzgONKAcP9HOYBlqxZMAh27B\n4WX4i1gSUE1IrlHG5i08kMnudGhZKcSwXswV+VVKpnXtaetNjhiLw5Caa5ld\nUWo08HysWtt84SmMCz3AQWa153trGMZZg/MdDX8vOgHd+E6snBPO/RcaBHyV\nJBUN9hITQ+N0M975Pzi2IS2marTkJqRR0v13jDETJW8yBpMPUKxbXUy43Z8K\nCEjP\r\n=QSF1\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCejRwFsBeNNuDAIfBckKHA4EAmekzZb1l2/H7WQ9r/zQIgfPPEXnTco/GCQ3Cm2h/3ke/rR1r8IDxpIj+9/C6QtN8="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.2_1526248156487_0.05226063080860577"},"_hasShrinkwrap":false},"2.2.3":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.3","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.49","@babel/core":"7.0.0-beta.49","@babel/plugin-external-helpers":"7.0.0-beta.49","@babel/preset-env":"7.0.0-beta.49","@babel/preset-typescript":"7.0.0-beta.49","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.12.0","eslint-plugin-react":"7.8.2","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.1.2","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.59.3","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.5.0","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"540ecab2524f7fee762a49fcc20851fa20940855","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.3","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-HoCg0bcEwaQBbuICizkzorxj54iGCA27JNi/Ul/PGSrFNw9vLr/ZL0se1J2eXqJlNHKZ1cMKv19H8mGi5l1eJA==","shasum":"facde014e6f5190faf475680c0ddd29fb3c530f7","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.3.tgz","fileCount":16,"unpackedSize":66887,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCsVpCRA9TVsSAnZWagAAm9sP/RTX6wKo0mf9DxPuiaKd\ntBj2Nd8aLdeWahrawhe8QU6Izqg8c6QmtG9w02qtposucx3sbu9OGY6JynJU\nf/IARyGcCL4xxDkEDVVQAvQNQ8LTPzFONvEvw2SFTbFNp6tsIA7Lkpe5yrTz\n4m9zyQYdCXwYnFs7mzzcEV61zf9msw/169OUU8uIJmlzd88uGcLsCFhlSs/f\nTtqsSO3vAHBneZZpYNe6zYImqlGNHUkUUqVTDOhEgpElon23QBfLqSsIIt0B\nLtNK5GoeVs89P8oWUaBcFrXTaY1iW01g9QmQfNtjdfmrv6oBdW/y/thwH2nt\nR2Yx2qfscRYAT8ptdMbcVihiIOAKW9f40AiH1016KjkNS2gz678Al+lWMZrL\nu9l6Gueb7bhJe2xRXdNeBZ1veVjUeScUIQDkCNsDr4iSbPJa24FEn0EHI1GA\ns4c75xWrFlfKf7jTYLE0gnpZQr6CZbSIQJJtch9NcVCGveE5oce9nOHYpM3i\ntFG5cNBsxDA6iW18BUN5haTB1Eaj+D5pSp6KXvOyFUJlgKeKtyBhjPRy18E9\n/9CHujJ1xm6ixUkwXLKIQKCh/3XmBZfUL4pC/SOv/o6YjLQP/tFeWz1NNEhO\n5QpzYVOocu0cTV06kAlVz5urbob4MuHUe+S67/mfuKzYbLkeO//xGLAXmGD1\nvI4n\r\n=2VwC\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCyuUOhM6GW/EXQm1FxW+CNkLRBzB2+9GUX2s3sOn7NswIgH/iEhZ44MFjeOxpXnXlAyQPJLp+Hxwgk5MR2biqAmlk="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.3_1527432551588_0.41217485940558785"},"_hasShrinkwrap":false},"2.2.4":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.4","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd","viewport.js"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.49","@babel/core":"7.0.0-beta.49","@babel/plugin-external-helpers":"7.0.0-beta.49","@babel/preset-env":"7.0.0-beta.49","@babel/preset-typescript":"7.0.0-beta.49","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.12.0","eslint-plugin-react":"7.8.2","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.1.2","prettier":"1.12.1","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.59.3","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.5.0","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.8.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"1f89edc691df2aba5e5974e01e72a21f6d011503","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.4","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-Z68aUq44mN9nkXOnsoB0UsKll4D9JqE9dTcHm6WNktmO9Mcd6uKiK+ycUvpm23S04HmOPgO/xO2z7BMv3K1PcA==","shasum":"c8fa32e28dd29a0315e604e94ca23e03936319a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.4.tgz","fileCount":17,"unpackedSize":67273,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbCslQCRA9TVsSAnZWagAAkDMQAKCp+CPsJdT72SnGQP/8\nutckIzLPcV7Aq9hzhToH8GbCzjAyF33ovoIsdiYKceML+r56VjUqlwyxs1/L\nFq3Oi2rv+txz/kZQxdGpdRzjXh+xd0LOAlf3yl0S4J9HhR6ThmO22LLyL+Bs\nhrkEJjezC/aw1GpRNXRabRSUUwfYrbVH3J8F1VyskcfpRdsobK4cxYx+0TkI\n1Yns6ugUOeuujqGVc36Mxp7TmZDnGo9FoIJvXr+CpKHPgZxZIBW33YblUk5F\nVYBijIgVjaRJTmRT7qtK+nAqw28P/ngNx8baCUXGuOvVyy2yO05/ILR0diIM\nsVJY+xcf4HvQ6OySdqkGdtuhdo5EleSeNEqR+3w7FzeAF70WMsPe5ee90gEb\njubhGfquJYo1YOp/iS2DifcBw83srwEWnfbPTlX90u5rxDnreeI4uzwbUrVq\ngF/l+MYAUBwIwWke9Qi8rgf3efMWkdyJ1mRN7jwR/xbSO1imXtKeP6oH46at\nYkw9CNS6uPYl0JtEy5XguuIZnxfNuxNOo5JoxSa5FJMBcJwWJoNcuGtDqdF5\nD03FN+hE0jt4M/x6gvkDykDctir+KccjfAjd9SS3uImTl4FDCctEFn48Kof8\nF1sjkcHURCZLir+6Rs7isuqKOpAqlGKAjGlkmid4IukTbUKWO+W9rXE53bgO\n8re1\r\n=MhbI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDTe1mn3WqEQ+jAhIvAUOfTio+pLoUDVZEepDQgzURVlwIhAIk7lvEIYjnfiJICZd0LRfILKz7aWvWItp8clfu4SGAU"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.4_1527433551870_0.7607379966631369"},"_hasShrinkwrap":false},"2.2.5":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.5","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd","viewport.js"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.49","@babel/core":"7.0.0-beta.49","@babel/plugin-external-helpers":"7.0.0-beta.49","@babel/preset-env":"7.0.0-beta.49","@babel/preset-typescript":"7.0.0-beta.49","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.12.0","eslint-plugin-react":"7.9.1","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.1.3","prettier":"1.13.5","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.60.1","rollup-plugin-babel":"4.0.0-beta.4","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.5.1","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.9.1"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"7034e8a53b332474c37935f9104743d758568c90","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.5","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-vgYUmLjq8osptA3U95ZGABdWwLI6aPfcN9qpLX8l1nfHFaJIL4zVllVRc2x+agQdlyiVzvgV+te4ARewyqG2Rg==","shasum":"5fd36641877c46a3a1e2f284768c5f28fe1e77bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.5.tgz","fileCount":17,"unpackedSize":67430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbGwQJCRA9TVsSAnZWagAAExYP/2KpUTyYgjRko/+tLwEd\nKeLk+kZf4aOzOtUx3SurFPdd8k6DIJBeZUCaRSprR5IbCoWkuXFObVjhFVrk\nehTPZADKixNGwSSXK1A2osZN45A7XsvmLYBhMS55UOE2VLPLN5cH6KJM6pug\nbuSHnWL8djr7nR2p/GiecRT1wyAkNlwgP2qYJ+n1+lUlcqynZgLs5it1P3Sc\nx/0NR6JZLbot1V9b8z0oMJM50cq3uAEUPKUIBK82J2QFU7LgMAe5yENooFwz\nBEQaR701Ff2D72bJLvUawcuGl9fuNLqN/VIF9hlzkOtLvgAjytEy7BPSUDEu\n7OpXiqwbNwBym2/G2h8kcO7VDQdhaANHjWHDVkFfVuyo7K1V/0JhxSj848/w\n75HjfMZZm9ER2bmZWN47x8y7ZV0IOySMgugrz4dM+PjbdeawaEI1EcSVvsM8\nlaFy9+TQrT5LPrTBInLerL26b6kKdW8oP+5VRsI7ymlH0ti4m6HOTdaBsmob\ne47IXqqzNXvuaSjI0dDLasHrBw3xC5HskQsCf707n2CSeS7HcAMEPqCBpFd3\ne/fA687UCCeJOU8p3MG7CxMPqqOvPTCBL7QBI85Vy/dEo+/hVm22KrKlQ5sF\nGo/dVI4eRduhzKL0CXajugzwm1EZcw+9V/TI5NxlTZJellTgFMBJvKl+v1fg\n2N5k\r\n=QGrY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCCj6FKHa4VDYfzdzcsAIBS+YpPrbNzlQ9zkJw1bg1YfgIgGIWDUMqQDzrvoJph6R19so3BDiOuZhPDSTTTlrySYm8="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.5_1528497159408_0.6177753761227645"},"_hasShrinkwrap":false},"2.2.6":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.6","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd","viewport.js"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.50","@babel/core":"7.0.0-beta.49","@babel/plugin-external-helpers":"7.0.0-beta.51","@babel/preset-env":"7.0.0-beta.50","@babel/preset-typescript":"7.0.0-beta.50","babel-eslint":"8.2.3","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.5.1","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.12.0","eslint-plugin-react":"7.9.1","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.5","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.60.2","rollup-plugin-babel":"4.0.0-beta.5","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.5.2","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.9.1"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"49767d62552e3bb0b11bd852b0163a66860a6554","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.6","_npmVersion":"5.6.0","_nodeVersion":"8.11.2","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-Dy07l9pTC/ES3JPzsqo3rRUQIId2FdqakfLb6galWY6oE8JrP7TIR/Yc2JiKtDijDcdkXKKw3Dz574MO0b9yEA==","shasum":"bf0617ee084e8d66fe0de9c1f228b5a6d36bcedc","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.6.tgz","fileCount":17,"unpackedSize":67430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbIEP1CRA9TVsSAnZWagAA948QAIHZH/JWnjbv414PZ2/k\nhARHB+x+d0dfV5L9Lza6O5yNOfwlOaVnXhSwUV7yKpWoZ99K4IMjf1j+IZN7\nAbDrwAIgvxaP9R3AlO1nt2Wv7jzLABdoW1pKUsXgJkE9dGx4AOWk/PWRLk0i\n+166Cmux2U0Q1vMH3z4IAmT3U0WI8hnvVh3qEfgEYTos3yUVLvOSNzx6ucvX\nhzJj/d2WYLuH8TCDsg/c8Xy/wKcW/J9FmfUGMS+w39HGhbSXzstLn4rUcUMU\nbBsXuNFimRooMXloRwxxHVL3tbj/GbYAe/U8offNSQfXhNLeS+xr17toti2A\ntEQskngYgm1Lotf1NGTelTNv3I8/LFzPHAepmW4lzF6zWg/+ojVgTUL0lZDb\nSVXYWFbEdAni+9kUUDdjXwdLFLc4bl3bEngDoGb9X4OklWrGTGgkP2AuKm0V\n2xOP5ltC6gEKbCgDB0W5+juLmRt7Zj0ff/aMk6ZYiq8sIgLrj7KbcQXj8Y8Z\n8sGPnwwYdArcz6iSSfB6Je3Wao0ScEqqALqdgRX3w/yctbYpVCwy+NKcg20y\ngc/T/w3I1ospVbQEJ4a8IuEh46r73ThawEES4dMvheTF5E+YVaL6GWZ/09jH\nSWGw+fdlZ32U+4sqz/RVmrVd5xabbBowawId/ZiU2zJfKPXvEZ7Amuf8bXa6\njn3h\r\n=hYbo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD00SMoUteyIurt651xj4/37/7qD91IEnDO1SFOh/QKDgIgAcEENASpXFcDoO52Ty57ILa6Sl9dby4jzC0V3HNwDQo="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.6_1528841204268_0.1829584019007673"},"_hasShrinkwrap":false},"2.2.7":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.7","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd","viewport.js"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --watch' 'yarn build:cjs --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit"},"devDependencies":{"@babel/cli":"7.0.0-beta.51","@babel/core":"7.0.0-beta.51","@babel/plugin-external-helpers":"7.0.0-beta.51","@babel/preset-env":"7.0.0-beta.51","@babel/preset-typescript":"7.0.0-beta.51","babel-eslint":"8.2.5","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.9.1","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.5","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.61.2","rollup-plugin-babel":"4.0.0-beta.5","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.6.0","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"ab50bb360eeec679a569ba120be06bc5b6e2bf89","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.7","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-lNGD8TkxqJuhAJQr+uaby/ZUHUWbVJCAfu8mQ4mhcxz37nPdP712hOE77VWaJZH/TuyCD5xImfTwufg/9ZcrCA==","shasum":"59bb77c65c024da55ff703e7232f7175ceed397f","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.7.tgz","fileCount":17,"unpackedSize":68495,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbL/V5CRA9TVsSAnZWagAAXeMP/0Ish+BHk86AkS9Si1v1\nx+PgyGiyA7aBUVYmmV4fTwwXqIvZ6UlKFp63lX6gdNUer0jjM9h3i3vpOPVd\nIwA2kpdmeyisAID8J3X9WWUw8YnAEMwcnLYmqo1DUwBMAvAJc3++GxG545C0\nyJilIsfi5Jby0rTRup10+tbvZBnUy6J5oMvINOEMRxYU0XfVUZGczmrMGsP1\ne5x6/ylYYWJE5wVGVlZaQk15Pb5x1ObLnK7eUKfGNS8hVknFjfMhFblW+gAc\nsJ8zrPaduBxFchb6ZZMr3hjeKnPzTWm09s9j3lzRWSv+IXNT+Zbba2XHl+1M\ntRRWiYJ41MieEvWy3UonI62sGb2ucjHDeW5ftjUTqMLEti3e8LCojshaG8o0\ncs4wtcu7fddgmmywwQAAUAwfAhJz2kLUYgPHY7qS3v3t9zvWiq8802hBOUAq\nBn3Y8wtEJ2zjtTx3hJZwjE8TY6D5mbN/LsXo0QKb90P5tLguC4bM/u8kWgrW\nzzL5fhnhgv/rbvw8H41QTrNQmnV8eFSRB0Yo0u7UNfSAPdZv6N8HkYxyTklC\nFndo1diF4q+jtRzq2bx9qtOyKD46tqgy6AIVXL5bt6BVdikXwCgfPnb0fwrF\nAsOrB/H1XWBT53E09IVXvo3+9gOUiJwXfJ150HHZAYKZRvztFl9rsdfFOrA1\noUn1\r\n=4LxS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNULjacPmr3TJhCwO5AExcWFTLd5hKS1IeGXohHzhgEgIhANpgp85VoRuV49nnLMFLOdJVdxgUgQoMWuLHYVTZhNdZ"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.7_1529869689918_0.9651852579202576"},"_hasShrinkwrap":false},"2.2.8":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.8","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd","viewport.js"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"devDependencies":{"@babel/cli":"7.0.0-beta.51","@babel/core":"7.0.0-beta.51","@babel/plugin-external-helpers":"7.0.0-beta.51","@babel/preset-env":"7.0.0-beta.51","@babel/preset-typescript":"7.0.0-beta.51","babel-eslint":"8.2.5","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.6","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.61.2","rollup-plugin-babel":"4.0.0-beta.5","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.6.0","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"1.75 kB"},{"path":"./umd/scroll-into-view-if-needed.js","maxSize":"3 kB"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"2d89e9bb7eb628f0db02f328d5471e9fb08f904b","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.8","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-J/7p0v+qDWRuCHrBoBJn34zoD/IKMFX1jqAoDSJ5rLqbFgRV2Wia+TL5sgLRwoZeCPPhWW6IdvNRGPfAc2YHKg==","shasum":"c22ffbddce5c8a31949ab3e01c27a6c29ba7b979","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.8.tgz","fileCount":17,"unpackedSize":60108,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbMXe5CRA9TVsSAnZWagAASdwP/3SOM94ShZhgbTJufolL\nSQLQU/1xi8TBPVaRuhaxCK3IvvLFBwaNK0shBGn6g4Tx6E29ihsnBFHYyPRW\nExS4XJ8gBR4ouo6aob/SOkfXkBHibNByShuLHR31P0g9JYDco3/K3YxOBkE4\n/ec2VK8mGeQrMJuDghi0vBsyzf8Ul+mM74iwI+WTmd/AdCZj6z6Q2/u6/6As\ncVTHcmnS8fOsp7lpdfYMW5WNx6xW4QpSijjS3NWTNzwI2VmSYaEgUGeMAOeZ\nNCLABouOac/+o8w7s2ITWUIGlK0biVWvUdjV7MErGwfp2zajEdryiJqK+CqI\non8XTePZ4HQ0GlN9wRk/VjUMnr064c6gMSGHwowA7a108MKYVlpwRlo5fu+Y\n/Ln8nZVewic+lOpE/74+5B7f6Bfvsy1iWgisLC1+TAJtRlwCzLMk02Hx6Lo9\nxp3UADW9n3jSI7714RnqW3PEwArm46QF77dXu2BWIL3dNMGn2SE9aiQqjTgZ\nRk18lnpmapvJBoMJbRNTDWfq1W7xxktxmCLdXYBIWBOdiXSG+TBTgfw5nw+1\n9V03ut6IUdoeqVal1nuM2wiR/cJ0hNLuJ1SqMCCwH8MIJnNaEOo+Jv//vK5b\nCMpOLjBDtf8hO4JX1f06K71ngsCXI7SqKlwUBPUbU5PNg2rKQIITP5pX3vas\nFdgq\r\n=C4h8\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9Rpl7CDYn9tSriGCBIB7j9OKIPs+bJBUCm5ghZcquuAIhAPBgyRyKx3cvi9AzxqPFyx+8xwdeP374QEbapmFYYX54"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.8_1529968569351_0.8585884908633037"},"_hasShrinkwrap":false},"2.2.9":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.9","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"devDependencies":{"@babel/cli":"7.0.0-beta.51","@babel/core":"7.0.0-beta.51","@babel/plugin-external-helpers":"7.0.0-beta.51","@babel/preset-env":"7.0.0-beta.51","@babel/preset-typescript":"7.0.0-beta.51","babel-eslint":"8.2.5","babel-plugin-add-module-exports":"0.2.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.7","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.62.0","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.6.0","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"b59ce5f6ec2fc0f147d663b792102d67259db271","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.9","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-188YA7EolRrMSM4bdaQbFAgN2AXJ/aijVLcYdTl8SZ0NdapMGuvCrpwiCD1TV0rWkDpI7LBW1NBGck2n2LLHjQ==","shasum":"f6c95d60f2106893d549de6eef69cb6ce2ebe936","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.9.tgz","fileCount":14,"unpackedSize":60083,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbOUniCRA9TVsSAnZWagAAXPMP/AqpfZLSdyUHCHtE6WfJ\nVOslvellIReRddZmL1M61SCBcRy4uhiF2ChJYOEzxOpyZ9K2LBMiOqEX8eew\nVmv3QQH/4T93306NQpMGYCjMHoo9lPW+LcP7pzZATAlafo6XlLQgsIms0JyZ\nlwyL2S2ik8CkhQeeUY8ENTbTQtNvUR/B0cEGlEpxbAPDp4KhFaFpvreDZURU\nDOfysEdrx4Kx8BZaVY8fOx3rL1Rhd1W7uUQ3QpKZxShcYqqnfxM4EgjAT+qE\nGCsVjZkCGH8SFSiI6UtNqFya37Kj4QgIZ7xF740bqR0vrpWWSXwIqec4Knik\noQrQih8mpMgQsBFTAL9frZfuSGFJE3eshzqd/mGbTZ9kIDRZLEdRzc1WW5Id\n103QPsm2pyGiOyS08RfI71Izvdf5g0dk54GWuOpH6CoEBnsgT+Tc8Y3GOrZX\nzLgvhM+4HXtaYHkmOsjCzhFOTGMPivWzNu7RVtpHmAhHZnbPLsc2KQHvQ6nA\nPxd0wLeeaqWb17J+xY8mV0SofQwOTHPMd5FZsWXxsI881qxwPX4CdY2OxKbn\nwuVijdS67smd2it+O25xIHl1wp2BOGUkKUSuqjyUD/mhtxKe4xBbc0qb4dpa\nT9a+lEcGJa+T6jDAo3IgA4OxSzQQbOhG2/+fbO01HrN5L/Y5se4On9V8MX/D\n1H5o\r\n=ygbo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAeQLYyBT5HwxkONMmifb9zqoUNL4DaMCKCfJfNE3HYVAiEAtgMYLMekHGeuFF3Jj740vq34qj5NkhujKTr+oYvW2Ng="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.9_1530481121954_0.2534105936865396"},"_hasShrinkwrap":false},"2.2.10":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.10","main":"index.js","module":"es/index.js","files":["compute.js","es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"devDependencies":{"@babel/cli":"7.0.0-beta.51","@babel/core":"7.0.0-beta.51","@babel/plugin-external-helpers":"7.0.0-beta.51","@babel/preset-env":"7.0.0-beta.51","@babel/preset-typescript":"7.0.0-beta.51","babel-eslint":"8.2.5","babel-plugin-add-module-exports":"0.3.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.7","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.62.0","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.6.3","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"b3376455d3fa3d64838d7d9e770623c3e2e30dec","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.10","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-he2sOS1vtqqJ+0S5UuUOvlBtVcowO4zXgD/52eyJTZJpoJByFG440PTFblF4j4H+N+l9SsZ36KZ1yIxKthl2ZA==","shasum":"ffe770e4bccae455b9a534cf86468e0a2b1850f9","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.10.tgz","fileCount":14,"unpackedSize":60002,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbO8ATCRA9TVsSAnZWagAAwuQP/Rev7eVWX7r8dI7DkmwD\nGLeOUhTbCu/u3ZDrYHkl9lTCQPPFdyRR77njNTkA0vdAKIHNpq6KJ+3e+rg6\nZ2z511Dw9FwvBRSk4qj82ItfVWpAOae/FBxJyREAF+AioUcIW2cU2vPWhJeG\n9SL28soqcmNpkEkQJoNdCXSeEe3jdTXbxaCVcToO2Dl4+b/FF+6qq0mEjdl0\n/RMUhu1n7saA5PbrGJHgSB5EANkmoAztw17Bp4A2rRWXkCErbJa/Ss491cmO\n/gOKLUpxbv5fSkOcJ98e8spzesV1auHw/4g1HMVk0f1BTxe3P0op+FBfn95f\nJXWy/5TkmpLrqQ4mUJ/hTRdFEspMhSaChySMjhc9tyD7PaMqeKui2LUS1IFM\n9Kl2MYjls0R8KkjJHkMS8X2oI6PBJ/OA9LGOQ1gdNCGkVWNMhi4bvvZcMcDh\nEmYj98WopUg2X+xBK/Kj8nGTFuN3e7pVZOyyUDKi1P41kPAXsY3YHt3Vjjkh\nkOABcGds2LHd34sh9Z47Fx8Z5yjAhBEEHSde9p6Cvf0SemJtem0Gk/8gOJwQ\nEMmqF67lsnKb6fmROCK4vHPREQwo0lQ+8a5Je3ebOZumVIq4wGP+aG++mKhR\nFZsB2R4rhhp0z73II/5vudi986RDP2V36YEuogSDKBWqPGRioKmNtHPJdZa+\n7bys\r\n=fLV/\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIG+ZtuzirSsT65ex8QI2axof3VMeSVU6/Mu+sKdiJPFOAiEAmoXAeWorfKNdxmYU9QMqmju5Z2zIFDFWM1RnKkMawQ4="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.10_1530642451232_0.08305371844728282"},"_hasShrinkwrap":false},"2.2.11":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.11","main":"index.js","module":"es/index.js","files":["es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.2"},"devDependencies":{"@babel/cli":"7.0.0-beta.51","@babel/core":"7.0.0-beta.51","@babel/plugin-external-helpers":"7.0.0-beta.51","@babel/preset-env":"7.0.0-beta.51","@babel/preset-typescript":"7.0.0-beta.51","babel-eslint":"8.2.5","babel-plugin-add-module-exports":"0.3.1","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.7","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.62.0","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.6.3","tslint":"5.10.0","tslint-config-prettier":"1.13.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"372f10ee6ec5cd7625faa1c5d55d278a46c75247","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.11","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-M1ode6N5FJdBs3YCXFQdHAbUEOKgENaXx5+J3YbAqn/+q44KOH2QJ8yTIejvPr1OOwDHZ1IdxE29IdtFPECSNA==","shasum":"ce9092803e1233f0cff21002f341997794bb0a8a","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.11.tgz","fileCount":11,"unpackedSize":45646,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbPo+PCRA9TVsSAnZWagAAcpcQAIIkAT0Rdu0ATLDgZNIm\nDo8uEEkNNRiAPha20KtCwKve/w3yfuo9D2BaooTMh33OODLXDkDeaFU9KiAu\n0Dl+WVAWMZAWxrqMLVKoP7ETb8E1pcq7ZKiV3uf1DnrFC8N8Yscg9TEtgkcV\n0slxY4o5Wu+lRl222BOSmWx9kSil685r1BGyOcnWfnzsPY5x8gHIXsijaBjM\nMmdXq/LgqxF2h1i+/O69ZNwdYzBrXHRenUjuqq/7onCxNFME38ew83zsuz5C\n2sUfJJIr/sdrRevMf6cgeN29sNYlqalDFuVhjtlFNToLK+KSEtLrMnr8JgOf\nD38z9lck/XMr0kScV+o4XtLuA5BEL7SMd4+aJ0NlA2zPgGub45dS8wNV50q7\n7nsWvm2HQYmjJHZGzzVx1oia5ccZj0z8FGpr7ND0vx9A2YLj9R2jVGw1JEKu\nS3KhTHb4/KaLarVJOjGMSAQs/a5pa7tYvdzTfZ5qdwn0JpdTMbDJJ63b7Vmw\n9D2SQL5ac289tV1Jey6cE0Qj8I9zWbKE522aD/N8nVQMVeauyFmPdOpkKnfR\nTrDVUztN+f5IpTOV+KuWlLFzTvEveyRaV7yyUKQz17psfQcIl8XxbEiOWtd4\nQg4CcwYNINuQWcTjW593hwTiZPHw5kg826EddtKF1MuaEHNdDxyBoV+Xxh8g\nGiWM\r\n=WP0f\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDk2XA4Dp21MhLyT4oQmtA6S1qIU8yUQHEWwLaLo8wTQwIhAM++VIez94JJ3W8zqFtdOyX8Z3UoDsUItKn6s3sNJWfH"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.11_1530826639802_0.7990366723443563"},"_hasShrinkwrap":false},"2.2.12":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.12","main":"index.js","module":"es/index.js","files":["es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.3"},"devDependencies":{"@babel/cli":"7.0.0-beta.54","@babel/core":"7.0.0-beta.54","@babel/plugin-external-helpers":"7.0.0-beta.54","@babel/preset-env":"7.0.0-beta.54","@babel/preset-typescript":"7.0.0-beta.54","babel-eslint":"8.2.6","babel-plugin-add-module-exports":"0.3.2","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.7","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.63.0","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.8.0","tslint":"5.11.0","tslint-config-prettier":"1.13.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"e5e042c4b5d5ea5b212d0ad4bc866a6b9567a7f5","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.12","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-HI17Iy0B094OgplbPwc+UZl0sfpkLBTO2EVhwRD5KlAQDbVXeu2/E7itHlG5VV9QhN7MijtEjlYHXely/pp8xg==","shasum":"71ca681c0f2433edcc03d214da8d0b6600a959bf","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.12.tgz","fileCount":11,"unpackedSize":45739,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbTo5LCRA9TVsSAnZWagAABP0QAJhkBEDY1E/DjotqsWHK\nxOHjh4VoTOuItYVhXfAGdTjwqWaKUX2Ww3A6wWehARk9FKWMdfMBv/O0u14y\n9XLjN4V2QBEbJ6wj4YwO9ojy1t9G8o/yX+FK/CoUv14PSgVsHf+i0QRnRJ6N\nHwA5n6Vk5uUwWD1p7krIW9Hehlvm6z1Udi4xPj2EteWmqUC+PUVX44yihl3R\nsA3X9NrPkjH+tTecXeOG7GPpw55EDjEsuVBO/cxG8rBimKaPO6W1iFSzYUiV\n+Nm0xyEfKuYZ88SugnVU4OyPfUo0FAuAgGuxqWr0SIeZh5MQ9NobKABzfDVc\nLHgLo1ZXT/qO+QDNWAy/UHhGczQvNF0PboSlgwIrIVtyUcnlJEZGMUlZpg2X\nZoAYL2IieB+dYEgFU5UK9UirnmQ3qDITPM1PYmnpzIDEIJeJNINvUz4+XUVz\n1TXqzypm+Ge/Zk9ymFWknUjN61Jx3Y4tkDSP31o/0NqiNzDGG7AS7gsbeUOb\no3LPkp2AJibrNn0nQo+ef43Aw2sqz+MD6sjfAMWqG+kRyytgG1jP8HO9IpOu\ndhV46o3qLXNlzHu/DGapkZ8m+ExiPDH7DEJCrRVKzB8sFbUr7EbXh3LZE7Eo\nDY2fzDyLDzNIOllazvtxNxadWc84rbOyAYgjtxzpePEZ95E80hCPK+8W42Dd\n+Oiv\r\n=u3aF\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCFwebjy6u7vjG6oPLRrbUq1VeTLKuigrcy9K/eLl186QIgYAG5CVWGaoqafq15brLgHgyoa7Hn/dx1oHvkr+WiKlA="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.12_1531874891097_0.3971633657182656"},"_hasShrinkwrap":false},"2.2.13":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.13","main":"index.js","module":"es/index.js","files":["es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.4"},"devDependencies":{"@babel/cli":"7.0.0-beta.54","@babel/core":"7.0.0-beta.54","@babel/plugin-external-helpers":"7.0.0-beta.54","@babel/preset-env":"7.0.0-beta.54","@babel/preset-typescript":"7.0.0-beta.54","babel-eslint":"8.2.6","babel-plugin-add-module-exports":"0.3.2","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.7","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.63.2","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.8.0","tslint":"5.11.0","tslint-config-prettier":"1.13.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"e5c4dc55eec546d3660b60d577f1d710c3d39848","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.13","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-BWxywa1S/vOyjRhluRcZ/vER9/RDXzUnmlwUPizjBV4upox0pEvhFzbcOj2eDXW/gILzbtiMDsZ/hPz04aaBkw==","shasum":"1ddad92c1dc37695c9992e05f56a2fc0873330ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.13.tgz","fileCount":11,"unpackedSize":45679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbT2hICRA9TVsSAnZWagAAWAoP/0rLFQbErszmisNwYOD8\naVQqIfrJ6HBgOZSRFx2EPlLZ0kxPIGX6uS+l/SGXSIKMgHDjVGjJeXNGcENm\nBlx7V0coHgRQAbX+FPOIS7scmfZyPFwHLysegH0i0+4pbf95Tt0KaFUJr1dE\nHLCW6/XyPpOUUVzwTNgCgC6XQk5UZfuvx3DzgSy5+hYep7V5GIYjXzz+PJR6\nUKXerIqpQOdUakTbvfQT7CbElKbYbXjR/JwYujq9MrIIIRSnzWoo1qs3k9BG\neIWGtduXYzJRNTHtkhVb8uTRsaxv3vV5Lqf7cPBjmMn66YRnEwVGYpYL/fW3\nT3kFu/norfXRXTsYYKAQ2G9HKPIgAK9hMMaCkT37Csy/70gVi2DgNrVqb1S7\nZpdZ7aFAlqy0wqV0OYSQrueSi/zyptiL1MFKLW8eW84h8AjBqQwra/OxsYvk\nl64Nbl/kOpwMXYDBDLexQfdxvnuNU86/hMmF6TDCin6zDKkCrfI9Ci3VH0fc\nz74/23LM6gMHlBRAiqCFIxk0s8xewTj89u9Iqr4ihDYTWQCFOgyQAkATgtuo\nnebvPlQrfMrkkJRvVkXutIVQPZAfiMLn98pRGP0RgSLd0zavw+PtJpeJ9i5a\npUfcXz3tb1Rk1eOkv5CkmCbrzUPIyo3VnYA/1qqf5QdqKYJm6K2zdARdPMbY\nmRn/\r\n=Rzb3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDNE2ZTGjXS6dZ8Um5U/wgl2XK+FM61VmyZGvXBUrjVXAIgJ61/7TBCbRZ++lBSLRiGIN4OEsq9TtUPXYaDNKuA2+A="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.13_1531930696646_0.10869389003257979"},"_hasShrinkwrap":false},"2.2.14":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.14","main":"index.js","module":"es/index.js","files":["es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.5"},"devDependencies":{"@babel/cli":"7.0.0-beta.54","@babel/core":"7.0.0-beta.54","@babel/plugin-external-helpers":"7.0.0-beta.54","@babel/preset-env":"7.0.0-beta.54","@babel/preset-typescript":"7.0.0-beta.54","babel-eslint":"8.2.6","babel-plugin-add-module-exports":"0.3.2","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.7","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.63.2","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.8.0","tslint":"5.11.0","tslint-config-prettier":"1.13.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"6050897bb7d390f3ee8dbd952959dd1777ff0965","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.14","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-JqNyyYDbvqXcaO5nMufCol/GdGYucTgev3DlTyfKtA6x9U0OjatzLmy2HXr3mAK2HhO2JbeCA4dKMhUMDEIpgg==","shasum":"a24fa92c601eb7e27430b8e20ea4c92507fe8524","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.14.tgz","fileCount":11,"unpackedSize":45758,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbT6yACRA9TVsSAnZWagAAO1AP/2DdN91095g/IbWa8em3\n9f9Jv/4vPZHpkX0DTTlGMsHPSQ8kXx5UuO2y3vMpOwzAFRCKgKAT9kq9lJJ5\nGRlSpe1FHXVoPlZBRZl9jkhxqrSc9w+q4DPIhK5POrHjxCPA8faJ5W3PrQpV\nJ7b+8pLR2jFdhiR0AR+HNV7VEZG9TUb3lhCCsRbXUEqaNKK5xMmcgIUs2wTC\nHvKc8H9fHFG7dPRmdRVjnFMuYg8sawkvD54Bi2yhBTnkfRjELdr9sW7kBMGi\nYAwPJkh+BpSUAwYuYyrCibZbslxA5EqfR4E453KjZPBExaezei8b1lL4Aaq4\n5SmCRvCjIckKHw+opGrcAu6NXCHLbOO1L0C6VYiLLzV1S9jKRQhc1pq+KqfN\nC7o5BhjpESartvKnDWDMDXfSmVLZskGs5qOm1WymsDXsIxI7z7+QFUHwKPjm\nUI7bdFGuXPnRrmMTw7X76ls3Ij65OJbmKk4OFoieyCXAnFB/iP2xpNYr8lPA\nQUMq3oyoCV1LFxbYEAzKoBTYYThochFWXhIrVeXhZhvj46IR1HotajM3e7HS\nZPxr8fxAva+4pF2PGFCtndbffqOX5gveQzJCs/CkXnpyzUVuip0z+mtfAN/X\nNC6nkhiDMr26n50oVYE0KgDk//0NVZcaEmipXJlQeV0GC24+xc6hfpzAO1SO\nbriN\r\n=h9mS\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDCp2ff9qCWU4qVoLlxwxd+mhhMQuhrY8Zp6Ggr/HaGUAiEA0klf89ZByNFX+x9cJp/WOnWXdowKJJBRDQ6DFUZ2w9M="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.14_1531948160249_0.8539578138568189"},"_hasShrinkwrap":false},"2.2.15":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.15","main":"index.js","module":"es/index.js","files":["es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.6"},"devDependencies":{"@babel/cli":"7.0.0-beta.54","@babel/core":"7.0.0-beta.54","@babel/plugin-external-helpers":"7.0.0-beta.54","@babel/preset-env":"7.0.0-beta.54","@babel/preset-typescript":"7.0.0-beta.54","babel-eslint":"8.2.6","babel-plugin-add-module-exports":"0.3.2","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.7","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.63.4","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.8.1","tslint":"5.11.0","tslint-config-prettier":"1.14.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"1fef8aad4e89072fa03ee1ca8b7b48e7412b6dc6","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.15","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-XOsIhrhycJKO9vNw4pD37dJXaqOKUfNITRRxsXtlFHkQ2W/hk6uuFslawmWdvvk9qKu0DPjZgJ4xas8KnsRb7A==","shasum":"82ae32702e5685d9881ba068b72248de33d8443d","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.15.tgz","fileCount":11,"unpackedSize":45955,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbU47NCRA9TVsSAnZWagAA3pEP/ieMwiNUVEFVEMesNkcW\nlqj8ua3ffMSe8gfF6UYQXTrQ7ywbc8eGCJemdW3oOY322RpTnvlUf6DfzF8v\nNpJ6/fi6pHk+m8e4di2CvUQYFweAgVQjhulqW288fhlINYK/6RojF/BkVCl7\nn8JpLPngxfL6IzXhMlj5LsybpqkVtUipjFWQ/8QMG0BduUVgYn1gWg24xtqN\nouCfHLCodFQaE9mR+pt8AtEl/XzDChD8m20DNtnbN1OF3wbHMWeeUhP5xNJD\nWKIYGaQyh5RT1nCuxnPmUD79Fk/t6QDVbAul/yQ59bR5gSg2QAGwUvRw3cb4\nR+TfOKQJ8vf4xmYE2Za9SmSlcM5d1m6Z1J1ZzKbzd5vG+cvw9Qg5AvvPZWgZ\nzHU57+VsvDxjoBOMFnfY2Wz7Hzqx31QL9oGLN+3GqArUNYnaPQ0CR9DkS1dy\nAe4SaKUoU0m8l8Q7tuu+zEaeJ6H/oYXO804IwzXurZVXjZdN9/wC18wY9Tep\nlwKXWkk0FCKr0n51qt+MN7pVohULJ8a8leH5Ees5iREe9kdVBliTTkViyqNz\ngI12/2uBiJpobyBeqh2WkqAsmmlikNNuchRcTRvNa9DiWKWZ8OyDxmlFA4D1\nXpSW3gY9+4lJo3rKI2a4NLKkuE6JYuw1lusvrCoXRfZAErLTHgqxPj3aEdnI\nkr0b\r\n=8z3p\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAzysrpN4syqxvWi+1+K3u4rsxR2/ZngpCVKVcWc1s/qAiEAuSPF2dtypTC+0B5eUgF8xdn9oY8amDeBJQioSulRFvw="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.15_1532202701040_0.2707213001603015"},"_hasShrinkwrap":false},"2.2.16":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.16","main":"index.js","module":"es/index.js","files":["es","typings","umd"],"scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.7"},"devDependencies":{"@babel/cli":"7.0.0-beta.54","@babel/core":"7.0.0-beta.54","@babel/plugin-external-helpers":"7.0.0-beta.54","@babel/preset-env":"7.0.0-beta.54","@babel/preset-typescript":"7.0.0-beta.54","babel-eslint":"8.2.6","babel-plugin-add-module-exports":"0.3.2","babel-plugin-dev-expression":"0.2.1","concurrently":"3.6.0","eslint":"4.19.1","eslint-config-prettier":"2.9.0","eslint-plugin-import":"2.13.0","eslint-plugin-react":"7.10.0","flowgen":"1.2.2","husky":"0.14.3","lint-staged":"7.2.0","prettier":"1.13.7","prettier-package-json":"1.6.0","rimraf":"2.6.2","rollup":"0.63.4","rollup-plugin-babel":"4.0.0-beta.7","rollup-plugin-commonjs":"9.1.3","rollup-plugin-node-resolve":"3.3.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"1.0.1","semantic-release":"15.8.1","tslint":"5.11.0","tslint-config-prettier":"1.14.0","typescript":"2.9.2"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"sideEffects":false,"typings":"typings/index.d.ts","gitHead":"0c6173cc7a42fc9bbcc0a1c921fc07181044c19a","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.16","_npmVersion":"5.6.0","_nodeVersion":"8.11.3","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-i28Zt4c4fjk6+bgx8HNlrDoUleHN+lXnvIzFQVaRtT/ulStz86eyo7HmQD+f1jGBNjRs+kXEbu8wnxIwx7KAGQ==","shasum":"208232f4d7bb531130177b6c02d760d1e1796cbd","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.16.tgz","fileCount":11,"unpackedSize":43926,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbU7yFCRA9TVsSAnZWagAAyoUP/0mcmbFMGOqYLPok7ptA\nTm6XeuCMgGQRkstdH8+IfH15gHcvEvkjstxTmCYLLfQDnvOKJbAQyrPE/gvc\nhlqvLqfHjVqTag1xFrXzFsJpgEXmfvS52dQm25FUS4LM/V7qOjHAhp8l0oCq\nLnlCiY1C9iK1/NlAN9IXpyXlsPoaDwgEq2qCTL3roTkRAefE5/8xUZ2gApxD\nR4uLmItJSAbPwWq0Gq2LQKlQ+NOidhQ94Ghgqh/ZARqz+mjrIdRkEgWq6+gA\n95OvSVix1nH7kkTVZkg9aj39tB9B072W162zOETUGzybDcyOGmjtzic7jqpg\n6pNVC4NHVh4BwU1va5WwSmkkdqpoZ0bY8S2mBcHGnTvAu8KHETQLViYsA19R\nyGL06s54O5+TMOnqzyQMhTlUWY3Svy1vu9g4dQh9yOcgevBt8JGPpZWBbvT3\nD22X46qe5iPZPl6eo+UzEPvKP57oYrAsrOEXWJBDpJZ6DzWasaid1+Kn0m1i\n/VXrJdO7vhWH2+ACGPeV04j2BcgFRKKee4AulN8IhuQS6HXG/6E51Zvx7PAV\ng/rg1AsuRFdTy88eRgrnzT5N2neM71lJjvZw8mvzwLi37Z62z313tEBKvOZr\nx9NMm+mj1B/jnUy5ex3bAMCLTSJFpd4W9XyBwiyNecfdphmitSM1MJQKF4EW\nd1nP\r\n=rAFh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEoPIqogCideAo0RBpL07G/Rb/oNtT5nlyxE3nsz5PZJAiA9EHCX//j82HV8I/gJeCDUVrqWWmECov6EsZ1NGfOUCQ=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.16_1532214405648_0.1198735530799615"},"_hasShrinkwrap":false},"2.2.17":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.17","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.9"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/plugin-external-helpers":"7.0.0","@babel/preset-env":"7.1.0","@babel/preset-typescript":"7.1.0","babel-eslint":"10.0.1","babel-plugin-add-module-exports":"1.0.0","babel-plugin-dev-expression":"0.2.1","concurrently":"4.0.1","eslint":"4.19.1","eslint-config-prettier":"3.1.0","eslint-plugin-import":"2.14.0","eslint-plugin-react":"7.11.1","flowgen":"1.2.3","husky":"1.1.0","lint-staged":"7.3.0","prettier":"1.14.3","prettier-package-json":"2.0.1","rimraf":"2.6.2","rollup":"0.66.4","rollup-plugin-babel":"4.0.3","rollup-plugin-commonjs":"9.1.8","rollup-plugin-node-resolve":"3.4.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"3.0.0","semantic-release":"15.9.17","tslint":"5.11.0","tslint-config-prettier":"1.15.0","typescript":"3.0.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"typings":"typings/index.d.ts","gitHead":"f7509314ed7e5a3de5017f9f8baa618e98b4bb50","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.17","_npmVersion":"6.4.0","_nodeVersion":"8.12.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-g16ldtZm/Pj3H98kfQEHAy1n78F9w+NMqg7nSFWyi+9QImIbTQfkwklrgiirkEEwKPPr1vAbiGlOs3ko97CcFQ==","shasum":"fe5c8d6f6f0e04f728e947f36fbbab1a8a768332","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.17.tgz","fileCount":11,"unpackedSize":44615,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAS7DauOt7M6Gw8XgwyKNil1pbFQauyTSHUak6vRqDs8AiEAgyjtbMd/z/878UPXSeXultblgTHmNgXrZcrtokj+klw="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.17_1538688116392_0.881724909680965"},"_hasShrinkwrap":false},"2.2.18":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.18","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.10"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/plugin-external-helpers":"7.0.0","@babel/preset-env":"7.1.0","@babel/preset-typescript":"7.1.0","babel-eslint":"10.0.1","babel-plugin-add-module-exports":"1.0.0","babel-plugin-dev-expression":"0.2.1","concurrently":"4.0.1","eslint":"4.19.1","eslint-config-prettier":"3.1.0","eslint-plugin-import":"2.14.0","eslint-plugin-react":"7.11.1","flowgen":"1.2.3","husky":"1.1.1","lint-staged":"7.3.0","prettier":"1.14.3","prettier-package-json":"2.0.1","rimraf":"2.6.2","rollup":"0.66.4","rollup-plugin-babel":"4.0.3","rollup-plugin-commonjs":"9.1.8","rollup-plugin-node-resolve":"3.4.0","rollup-plugin-replace":"2.0.0","rollup-plugin-terser":"3.0.0","semantic-release":"15.9.17","tslint":"5.11.0","tslint-config-prettier":"1.15.0","typescript":"3.0.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"typings":"typings/index.d.ts","gitHead":"bbe3d592699c86b5cb9a638ddd3fe6072496e1ee","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.18","_npmVersion":"6.4.0","_nodeVersion":"8.12.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-oJ49hG8hoB3uPx4dsVQJc+SxL7+1YL51WI25dgf6pL4mAZRns6Y0HbHpDEvxAhjNGaDybyBMWsXoa4lSIClq9A==","shasum":"28e54935d1d19ec97a56bd1aa15fc503f991953f","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.18.tgz","fileCount":11,"unpackedSize":44616,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbuWZtCRA9TVsSAnZWagAA9tgQAIX/AR5dXK1JjXjhkbp/\nNjs8yZIkP8dEuXs6v6NmzKxroNxsH0CtPD47gwUGDONp1nzoDr6eQuax0vDG\nfOPhuZ5gngVv9t9Q6iJa5Oc779ho0pMOop2OmhyZQoJHhg2Kdx1kAFutoR+r\nWpqOrlvsmepnp2/j5aLhXC6r23mF6QLnhLby2ZGPI88foxRtIpK7MvnMoqOh\nAdjDo0FMSt/I2h2gApehTLgUw7FVnAHrw+sTzI93He1U2lXaGarfflFOOAM0\nVueEdjS/pCjg1C+XP3UBqOkTtefIfqrZej/YR/zqeHvSA38eTPVpXuOXo+1j\nzpoTyfBowF8p92VtOXIThctaN825N4QSIS5TxKWnc+daR6FW/Vgje0ZPUoPe\nn5Y7lM9XzI6QrcDNhMjUpbG8aoH6DFcBA9NCS7U+ODeajn9azQOBAkPyKRp9\nnI2Ujnuadurx5iVuLNz2vqiGRxJuc32q5Lcsd2wwylvIgYk6pt3rsxqANQnT\nhqJOrCFeluYLS2XweLey8GlTUGqq5zjUA1ObzRfXZNxCAw9+xenfrSlSLaYB\nRRUKWVeJLxmiarZl7lHHJZvn1Xbo8aUKEoMT/W7g03WD8tj0YQ2cMPSgAVHR\n/dKglCWJoDvKhNJ2rSyT7CkMDyejmd7DE+luVLn5od3bk5iHTkLC/fmHzsH5\nlKy2\r\n=0kwo\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC0fZhVhhg/BXsy8lS3HDXV1ilmPGRjTqD5MoI9qkeJeAiEAi5MyxeDQZja9Apub1Yxqb4qaZJdcj9UfeaRTZ1ME5Tw="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.18_1538877036340_0.8678960045969137"},"_hasShrinkwrap":false},"2.2.19":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.19","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.11"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/plugin-external-helpers":"7.0.0","@babel/preset-env":"7.1.0","@babel/preset-typescript":"7.1.0","babel-eslint":"10.0.1","babel-plugin-add-module-exports":"1.0.0","babel-plugin-dev-expression":"0.2.1","concurrently":"4.0.1","eslint":"4.19.1","eslint-config-prettier":"3.1.0","eslint-plugin-import":"2.14.0","eslint-plugin-react":"7.11.1","flowgen":"1.2.3","husky":"1.1.1","lint-staged":"7.3.0","prettier":"1.14.3","prettier-package-json":"2.0.1","rimraf":"2.6.2","rollup":"0.66.4","rollup-plugin-babel":"4.0.3","rollup-plugin-commonjs":"9.1.8","rollup-plugin-node-resolve":"3.4.0","rollup-plugin-replace":"2.1.0","rollup-plugin-terser":"3.0.0","semantic-release":"15.9.17","tslint":"5.11.0","tslint-config-prettier":"1.15.0","typescript":"3.1.1"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"typings":"typings/index.d.ts","gitHead":"8b70cc6a5a3b7feefec406c4c459e214a6af6096","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.19","_npmVersion":"6.4.0","_nodeVersion":"8.12.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-fn+/Is/AsUlY8L36aO78RUQ7cuosAMVuBCT1DSzU1fGF8Mni75r4NTDtb6RNZ4hXcLzDyG7FCBGXZjbSipiixA==","shasum":"23e97ace6a6886f171f30b545a689b3afb8fc71b","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.19.tgz","fileCount":11,"unpackedSize":44631,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbuf0SCRA9TVsSAnZWagAAC78QAIwUYyQMiYCu75ccXv6f\no0KqAV60Mlh/WfksXipSq0H3kaI4RLYkwQwl/l5HFBdZ/6nU5Fumg4tx+UmT\nz5U6L4WTGdI/lZ4Pes4Aj/HsgiTJZFeSABWIao6ttps2pMHA0UCZxkI6V/FT\nI073NjiChR17NkGRncVo0yBSmA06gMvZc7MKqRIUyO4zQ2S61KAxLpXFF8Bz\no8/iP0gliK50IHST5PfOD4K9/wb9Va0TiBAM3i0iT96zZnHtdrNvOMIesS4w\nC32+DpJlXIx/gNEHSI+JM2Cpe7gn9xR8DtQb1O95Qp4HJpvd8lhsXpBHPsdu\nFKOZrWV6wgO5O3a5OkMP2NmiVJEQI6PpkkPgZv05SsvMciE8vk60w92Acc6a\nVe51dMu/mOb9oaKQcK9ThKfF8g7pcUCsPKX/kl7vqY0qzAqcaLsDhx5t4gVW\n4xnCKJR9jebvo/6c0DzWJK34wngPxGaT4Y1GGT5HsKyATmhgYKRb2p1neEBJ\nhvjRVTubojxAL3NeZodHqLasY4GSzj3jz213S5y8fmH0SkOtGkv/Pb05wwdy\n4n1+HzxNSx21yVDq5HfgwjFjWJoCgC6bqKimiOmt1oFvNov/y4Y/QYtLqQUm\nXFyaD78pttLlSaCTs05pxOVTu98zoF6BiMvAdXYmzksz36hD+L36e7iRewhM\nFizH\r\n=Hzbs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4eoiwnKoIeBJNGSZn5qB/bTGe/OPqxAL1uhMX79jbfwIgMsQOVivqZ7yggq/J0pziEes5VRKKPkUQGNhbqucF0vI="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.19_1538915601924_0.020019403913439593"},"_hasShrinkwrap":false},"2.2.20":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Stian Didriksen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.20","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"1.0.11"},"devDependencies":{"@babel/cli":"7.1.2","@babel/core":"7.1.2","@babel/plugin-external-helpers":"7.0.0","@babel/preset-env":"7.1.0","@babel/preset-typescript":"7.1.0","babel-eslint":"10.0.1","babel-plugin-add-module-exports":"1.0.0","babel-plugin-dev-expression":"0.2.1","concurrently":"4.0.1","eslint":"4.19.1","eslint-config-prettier":"3.1.0","eslint-plugin-import":"2.14.0","eslint-plugin-react":"7.11.1","flowgen":"1.2.3","husky":"1.1.2","lint-staged":"7.3.0","prettier":"1.14.3","prettier-package-json":"2.0.1","rimraf":"2.6.2","rollup":"0.66.6","rollup-plugin-babel":"4.0.3","rollup-plugin-commonjs":"9.2.0","rollup-plugin-node-resolve":"3.4.0","rollup-plugin-replace":"2.1.0","rollup-plugin-terser":"3.0.0","semantic-release":"15.9.17","tslint":"5.11.0","tslint-config-prettier":"1.15.0","typescript":"3.1.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"typings":"typings/index.d.ts","gitHead":"b3cf3a41c09a5495e9d263a181c0fe2dc659799f","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.20","_npmVersion":"6.4.1","_nodeVersion":"8.12.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-P9kYMrhi9f6dvWwTGpO5I3HgjSU/8Mts7xL3lkoH5xlewK7O9Obdc5WmMCzppln7bCVGNmf3qfoZXrpCeyNJXw==","shasum":"3a46847a72233a3af9770e55df450f2a7f2e2a0e","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.20.tgz","fileCount":11,"unpackedSize":44325,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbw7COCRA9TVsSAnZWagAAaDUP/RqV3CNzzipLKre5+edb\nPDVWjLYcnA/nHATVvt4OGL9BDoRiszLAcViJ2bIlB/Ksv2rze3j7hIsG2Wv+\nqwaEQhC7kWmvA1oUefo4ilbs3cwFS7d/j3Fl5jmcOAFVimVgmRnpsZOn/aAR\nfbcPA9Ue5H+HhQLVU98Z4IogvjiYCgWjQyYOD2zhYcZmf4wGuW6ZrMsAa9YJ\nVhQRwO4CI/fSOBlMbGz4k2NO+b2fuAEOvaja1tgjYkYiFOQ4kyWAxey7RELf\nDdBRBeixe8Uy7HZuGMWZe2pUaOAC64mqGIDwEuEnh8je8cMBQrI90dyaCs2f\nPdoyh+l5chQvL1SifBKYIoYXJLNFGIVB6D+WZFwIZ6Ffzv+Hpn2H+KS3FLoM\nK9JQUQAfqzpzW3uI4zNDYg1xGryJdD7iPgJM4WO3BKcUzMkvKGIqPIeapkCK\nc1Vuf+G2bMOFqFU4bUg1hV9OSt4qIoVFJv4pUNT94tGfkcUPiKWmAamVotlN\n37w43jcnEcSPMnqKunVkoTi1t0+8vBand6tbLzMKojM5sEH+VEOgUd7+3kS3\nZO+gE6XuDgmLeX9/H1/keV2uytkzQ7QrlMf3GIOHl3uKteQoL8i7tw4tA940\nbk7Aa9bD0OHxMeWjhrNn5wNLABodo6W34wJlBU8ZVKrsW4mqBJF5ulmxVysr\nCEBV\r\n=DiZK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCvbbfGknoZ3JzgE4zr4IKkY/VD5bwFzd8lIidyNYWpfgIhALUu/rlnocgGSnpMTLPUzB36wFzSYxDpkRiSML4W2QED"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.20_1539551372894_0.17390109351928928"},"_hasShrinkwrap":false},"2.2.21":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.21","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"^1.0.12"},"devDependencies":{"@babel/cli":"7.7.7","@babel/core":"7.7.7","@babel/plugin-external-helpers":"7.7.4","@babel/preset-env":"7.7.7","@babel/preset-typescript":"7.7.7","babel-eslint":"10.0.3","babel-plugin-add-module-exports":"1.0.2","babel-plugin-dev-expression":"0.2.2","concurrently":"5.0.2","eslint":"4.19.1","eslint-config-prettier":"4.0.0","eslint-plugin-import":"2.19.1","eslint-plugin-react":"7.17.0","flowgen":"1.10.0","husky":"1.3.1","lint-staged":"8.1.1","prettier":"1.19.1","prettier-package-json":"2.1.3","rimraf":"2.6.3","rollup":"1.27.14","rollup-plugin-babel":"4.3.3","rollup-plugin-commonjs":"9.2.0","rollup-plugin-node-resolve":"4.0.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"4.0.3","semantic-release":"15.14.0","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"3.1.6"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.2 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"typings":"typings/index.d.ts","gitHead":"9c544b8aaabe0c8d8d0adcf7f79e630f077cbac0","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.21","_npmVersion":"6.5.0","_nodeVersion":"12.14.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-851zsXR0MlryKDe3uBWBHxcc0mcNgjpf5kVPC1kqAS9O9BSFa2mCcNrGm6EWXSzaC0E8AbL+W8cFogbsWmLinA==","shasum":"d5e3036128abf649d69583ae594a159d042c2e54","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.21.tgz","fileCount":11,"unpackedSize":45167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeDz/QCRA9TVsSAnZWagAApbgP+wQJbJQJZNZdaqyL+hvL\n21K0ZSuVNtSZU46YQ8mpTHKi3r1sg3bOIbDIR8Vqh90e7fn/rqJwc3i5peNd\nZxLerGC5uk3OqkIul0X5neFzqXN/a0QcZqrZxQGdAIzVZ+VG5ZlW1qQ/Aswb\nFzUyViKY7Q3S+5usyJ1CYf4ylE28uhMoOqAzQOS+PjLZ+BkaLtBjRXaF2J0u\nk2jDGHzec5E5f+aHmSYkeUeLzRPDwa78k3TbIM/EF4RjB4jP/B7XGSDNqT5o\nAdJVxCzpinAkf30eR28X/xRfsQTFFF908/MHBsFMrm6V4wOqYJdpfp7EXziJ\n8TIlbkd/8EuMfiOWPInrYGlRIAwfLJiabe1Vlo1ZcrpCa89aXsxfedFz7Kck\n9j64JNMBL3WwLJq+BswKcmI+Oct8LrJTS1/bk0Bt7Z1JGkiwGefoDrhdbD3b\n8rDDclbqTj7RjOpO9D41m4uaqbvTNP81JLpJsvDQXLqP+9KCpkKevcZLpgN7\nvpj4wXn9PnzVzzmzInZIJCRMDY19UwA4yQRjH4s4tFngT8J0dT0e2K29Eibr\nUTlZhAdazp11Hc1IvaJxEIVsQhTknHTShzMs31X/dFSwvGJ949R4Mb/hec/j\n5DaZxF7ddtBB9tRtkA5P29aBKEoers9PdzjcmwomY0c4E8tepLTI8v04ukGP\nqMm6\r\n=A8Nd\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGXz7P/pSgQVvWv6N1C+zRXGe4ZQHb+3Tw9VJqJQrJHOAiB+kHZQDhv7MgqAYMzgxEZrMVxgybSpSRNl8nZIMnmbGw=="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.21_1578057679777_0.08106160592568523"},"_hasShrinkwrap":false},"2.2.22":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.22","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"dependencies":{"compute-scroll-into-view":"^1.0.12"},"devDependencies":{"@babel/cli":"7.7.7","@babel/core":"7.7.7","@babel/plugin-external-helpers":"7.7.4","@babel/preset-env":"7.7.7","@babel/preset-typescript":"7.7.7","babel-eslint":"10.0.3","babel-plugin-add-module-exports":"1.0.2","babel-plugin-dev-expression":"0.2.2","concurrently":"5.0.2","eslint":"4.19.1","eslint-config-prettier":"4.0.0","eslint-plugin-import":"2.19.1","eslint-plugin-react":"7.17.0","flowgen":"1.10.0","husky":"1.3.1","lint-staged":"8.1.1","prettier":"1.19.1","prettier-package-json":"2.1.3","rimraf":"2.6.3","rollup":"1.27.14","rollup-plugin-babel":"4.3.3","rollup-plugin-commonjs":"9.2.0","rollup-plugin-node-resolve":"4.0.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"4.0.3","semantic-release":"15.14.0","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"3.7.4"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.2 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"typings":"typings/index.d.ts","gitHead":"d00becb0cc701c1a96f616f1622ea8beb63a963b","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.22","_npmVersion":"6.5.0","_nodeVersion":"12.14.0","_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"dist":{"integrity":"sha512-nR635gi6wJxB3UGknj5aWpVyp86oZwzxCEEqD+ljRes/3ix7qYA8nIzNwsUhKwW6CXkuSVuW6/m8/HLDI9JyaA==","shasum":"87330ce90fb78dfc9c7bea39039722361b5295b4","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.22.tgz","fileCount":11,"unpackedSize":44752,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeD0GACRA9TVsSAnZWagAALxoQAIvo1y8X/8ON5NLRWpQ5\n93l7/4NNYSEt3AYwqW+wsTe6O6EMLnaD+UGs1VQn1RZZS1Lu8fWPqzcMhaRU\n35Pmwn7xRQBQvWcmEK7DGJQWi/BJnwmnQYXJFHhZHhvCPJBcVYp81W95yVhs\nJIHfUngckMxJMeixcK9WIixBFf7Lqm2j8aUyQ7lImLTgQ49TPgTqLXxlNipr\nrblkMjx6bqiz8ktBBbYggCqQmgWBY9Y6Y7NmethI51x1DfiU1qmeQbB5B4h5\nYXRYohxqTMoTuL4JzakSjLf1gAyQmBOw3QzDhjHugnWi0YkKcoz5QaHHa4Is\nrRcGvRt7uSUgxTmGxwNbzlpVTW0uggQwxl0WOqNgemBwEN4ekFjSWK71W5/s\nb3xnJ0830xCnPbYZOyEdr4O3/QgymjEdXrABYHYaXeaMBUg9EH61dqIipd+k\nVTHkcsme35ivrlN3rnF/NEhUEchrYgey43gbWLkrNG0fz0Zq7SO7xNFFxuNL\nox53Z3eZTvzqiy28weaJqkfsCJakHZfUHnkkmAa9gHF7O5cRxByWIa1zyM0J\nqB5gzQyVF1meRHY11W3ajuDEkclUH5vmAsgntPe/VEpIV1tzD15/c4uUS3CO\nYJ6dGZYJ6lbmSTdFJqNPF0OznJHxjrbC2YsVA6srZ2Y9UJOnPP7IyRslrURm\npHE2\r\n=VrU9\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEmXhAdKEWO+dCEPiuI1pYkZbBpc7tl6xAXnoNa6ujupAiEAvChDwG2EiZQt31wGf0KtfJaato7dmPGYxWByyNdFVLI="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.22_1578058112226_0.08918532026417925"},"_hasShrinkwrap":false},"2.2.23":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.23","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"sideEffects":false,"typings":"typings/index.d.ts","dependencies":{"compute-scroll-into-view":"^1.0.12"},"devDependencies":{"@babel/cli":"7.8.3","@babel/core":"7.8.3","@babel/plugin-external-helpers":"7.8.3","@babel/preset-env":"7.8.3","@babel/preset-typescript":"7.8.3","babel-eslint":"10.0.3","babel-plugin-add-module-exports":"1.0.2","babel-plugin-dev-expression":"0.2.2","concurrently":"5.0.2","eslint":"4.19.1","eslint-config-prettier":"4.0.0","eslint-plugin-import":"2.20.0","eslint-plugin-react":"7.18.0","flowgen":"1.10.0","husky":"4.0.10","lint-staged":"10.0.0","prettier":"1.19.1","prettier-package-json":"2.1.3","rimraf":"3.0.0","rollup":"1.29.0","rollup-plugin-babel":"4.3.3","rollup-plugin-commonjs":"10.1.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"5.2.0","semantic-release":"16.0.2","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"3.7.5"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.2 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"gitHead":"0efea95385c897f6ae3f9664568391fe5989d448","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.23","_nodeVersion":"12.14.1","_npmVersion":"6.13.6","dist":{"integrity":"sha512-p0ZP9NzozZqhm0Ceh7tIf7TlXM1YoLrxAHY6nSp7F8dh9rCzwQVmWSjO7rzfLGwyZw/yYGfJz+W4Cs7sPu64NQ==","shasum":"e7d934f028dd11cfee6461462e2e0a270725d07e","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.23.tgz","fileCount":11,"unpackedSize":44781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKM9nCRA9TVsSAnZWagAAgvMP/RUlmEecyVu+8HgWtBgA\nwfN8J1oX0gLPiGnSwrHVYqXr6T+vf84P5ZCfWUDzsKeAsp3Gac7SwUh8Z9fe\nS5TBiTGvGYvi0xYCt69ub1J152YngFU8md/EenWT0o3uB0MtnCdLEfFcMuue\nt/xt0Hl4mouDEVwasZ3Hk4rvgPA+ohjqFeTwMrBDk6qwEdA9tXW2B7XLcnx5\najc2riO/gwWnlMAQuDJFnW/9LUKLqXHFm+Or2I92oLCoAf6dQWGra3X61e1j\nzUQNrHA4Xu8Qx68W+5ut2qPc0GS1lBF89LW6oc2bGKp4c3kAR2BJcfkUNxw3\n2K1PUYCfCO5kFXMR08yzhUKUwJgF6sbKGbo1wh+7AfqmKcsrscyNpELoPNnG\nvlZhvSnYo2PdoaCj6FnW3X6v+HgVn6PL6JdD43VDfs6T1dGC6dDvkF4tImRO\nKQ5NPxxQ3b3QTyCwJzz4588/jCruhoWvctJF9DVCOyRwcV7unRGaa7JM+iCu\nVhy48gt2+GBle9xfz1fAQwnx73eog1HBg9+0kGabn+SKEjTgpMuhppguTjwD\n7wHd04sgPqcJH9mGeqM6sgT7r6Ut5zejyKstnQ9apsaoXeCxnKLxioF+PlMl\nwQqHC0dGkZN6osA3xlfCVVbbjNpRj6cRoLHIzOl9zH4IlqR2iNVuVsz6bN5r\nHHVj\r\n=wttx\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHyP0peJsaZqXW77l8iWag23t6zoQY709+5Wkn/nLaPKAiEAiGukueRmhZZrAFQcxcpiOhbUJlH4WUgzR+0r1CXaLN4="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.23_1579732839071_0.1635500958591405"},"_hasShrinkwrap":false},"2.2.24":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.24","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"sideEffects":false,"typings":"typings/index.d.ts","dependencies":{"compute-scroll-into-view":"^1.0.13"},"devDependencies":{"@babel/cli":"7.8.3","@babel/core":"7.8.3","@babel/plugin-external-helpers":"7.8.3","@babel/preset-env":"7.8.3","@babel/preset-typescript":"7.8.3","babel-eslint":"10.0.3","babel-plugin-add-module-exports":"1.0.2","babel-plugin-dev-expression":"0.2.2","concurrently":"5.0.2","eslint":"4.19.1","eslint-config-prettier":"4.0.0","eslint-plugin-import":"2.20.0","eslint-plugin-react":"7.18.0","flowgen":"1.10.0","husky":"4.0.10","lint-staged":"10.0.0","prettier":"1.19.1","prettier-package-json":"2.1.3","rimraf":"3.0.0","rollup":"1.29.0","rollup-plugin-babel":"4.3.3","rollup-plugin-commonjs":"10.1.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"5.2.0","semantic-release":"16.0.2","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"3.7.5"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.2 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"gitHead":"b2249b8b702213ff3a67cd305f71b3a5be69405b","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.24","_nodeVersion":"12.14.1","_npmVersion":"6.13.6","dist":{"integrity":"sha512-vsC6SzyIZUyJG8o4nbUDCiIwsPdH6W/FVmjT2avR2hp/yzS53JjGmg/bKD20TkoNajbu5dAQN4xR7yes4qhwtQ==","shasum":"12bca532990769bd509115a49edcfa755e92a0ea","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.24.tgz","fileCount":11,"unpackedSize":44781,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeKVuTCRA9TVsSAnZWagAAkxsP/iBCGSdXySmEXqSkqetm\n8jsnPaZwrPOkN0ffBoTzsjN+8KsdVYKs2lyCLRACuRqXrscFGsRZ8flduz5M\nvjOZ0p+Qbo97DThBs5igiZfD60+mCB1gQ1RXRypaTEHZ4NQr3YpKJOv+7+kS\nBMmqHIgJUvdAj/rJvX2NTTUwywoau2qlLMBMFRfe/GPJfqo5KxRYGSiL5uMt\nmOND/5TjwgMlL0P7dZtzDA5O6PO1fPxug8P7Jws8RR+uxwB1nlK3cmSDzALV\nBMfWU6sxIapJDuP/8xIDOqHFtbVcN2rcRmVJLyWU2UqqEeW6SaExerQjawfL\ndQ8ELHQRME8UXtUPaGT4MfdWae/RvpjvMkGkn8ho9mwxpErbrxFKAoisfwGm\nNaCkVb47MzTUqq+mU36RHbp1lrfbvF4EniKOJ0SLsCgBEufx4rKtMQEvRQNq\nJq4Zd3YQV+Be9czj8ZdMRKpRER20QGU83NCuyO2Rw6c3YjheACcWMmw9Tu1u\npwkycIzMu96ukRMyPYRStpUMYP4Zxq0hd4fRJFKRdyTpBrbpHtjMUm3+fa3M\nVu8Xac5UUu3l6GFcZPcwwd5TbQKVVlySZjDt7dyFcFn45yc12gxaGaKRrY24\nUCHWbS0ODlc0Lcux+GU8E2qasOpEnzAd/JEh3ZBVWnSG+JYbueG5c20BVy8F\nAuhS\r\n=vATG\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDBntpw6PUToyfSxMIwD5FEeuw5aNd5c2BbKwLV1HraMgIhANOwxLkti6eDlqbSA37G7QpIgqv69uKAf0UkbaZXIPFf"}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.24_1579768723022_0.13915477000102716"},"_hasShrinkwrap":false},"2.2.25":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.25","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"sideEffects":false,"typings":"typings/index.d.ts","dependencies":{"compute-scroll-into-view":"^1.0.14"},"devDependencies":{"@babel/cli":"7.8.4","@babel/core":"7.9.6","@babel/plugin-external-helpers":"7.8.3","@babel/preset-env":"7.9.6","@babel/preset-typescript":"7.9.0","babel-eslint":"10.1.0","babel-plugin-add-module-exports":"1.0.2","babel-plugin-dev-expression":"0.2.2","concurrently":"5.2.0","eslint":"4.19.1","eslint-config-prettier":"4.0.0","eslint-plugin-import":"2.20.2","eslint-plugin-react":"7.20.0","flowgen":"1.10.0","husky":"4.2.5","lint-staged":"10.2.6","prettier":"1.19.1","prettier-package-json":"2.1.3","rimraf":"3.0.2","rollup":"1.29.0","rollup-plugin-babel":"4.4.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"5.3.0","semantic-release":"16.0.2","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"3.9.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.2 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"gitHead":"66cb5efdfae6b46df3dea9bf6dcb8e9bc8dd40e4","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.25","_nodeVersion":"12.17.0","_npmVersion":"6.14.5","dist":{"integrity":"sha512-C8RKJPq9lK7eubwGpLbUkw3lklcG3Ndjmea2PyauzrA0i4DPlzAmVMGxaZrBFqCrVLfvJmP80IyHnv4jxvg1OQ==","shasum":"117b7bc7c61bc7a2b7872a0984bc73a19bc6e961","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.25.tgz","fileCount":11,"unpackedSize":44879,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJezrDXCRA9TVsSAnZWagAAlywP+wX7KzWsWAd5GE/9jrwM\nZMHmsO/FU8fFIBwHBAuqMYaeyythZAaL55XfU0C1xBQQWHvK0cfQO/rClTLY\ncIhE9o+ze6OtDPNB7zbDHf6txALumMbsuNFGSmS6FpZV6qBclnYlT4gwQmEB\nyD5TVbWKoheeiuMWL9bjOltNLH1JGdBsaOJToCH9jF60XtwUEM+0Pi8JFsTL\nvm78w/7KPRmthCoZkNGFid6MM6F9xJdEWB7ztosctZ9TgWJ23LBOQz/Upp5m\nPQTrHtYNWQf6iw6bZFzeRZFqGjXWDyT7OEBVfULQXdqBrZjiKOUzccKyZPLU\nW6tQKUUi+dCYaKm4ex8kEw09GuRaWtO+vBEYkEMdCubWun9bOQsSMLwb8asM\nG3jPfngzYXjWhPMSZbVU6SjhbunMWX57xasBq/hZqYPZsFjBfWmVKa4e3yeG\nwpKzn3HLNeHB5EWgV7z2a3u7EFDdXMJZvEAoN3MeX4pyzGO0I5ROxuAPPrD9\nVVYYv3zlw806+dmSYZW8YreDS9KjKQLiVVf48Pdw+sPgu1jyqjsfNIJcIJnm\ndLogaiSRdW7KiuAAHmPOf297syajvf0gHJJdf9Dgxb1XQasHJ4gnEu7rhFN7\nNCQesfEN9edp68B+58UBCPqjFLabISGFsnpc2nWGHaqe8a4F2RbVNLpSgdJD\nN9gu\r\n=bs3W\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEILuEhRO4wZDUxfKUtAwgTlxXrMELXr9c0AYAMLsG47AiEAtwPiLZs2CFPLBaOjiseDYNMrbz04fDhvsJsbrvx4+Ho="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.25_1590603990538_0.46024636414133235"},"_hasShrinkwrap":false},"2.2.26":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.26","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"sideEffects":false,"typings":"typings/index.d.ts","dependencies":{"compute-scroll-into-view":"^1.0.16"},"devDependencies":{"@babel/cli":"7.10.5","@babel/core":"7.11.4","@babel/plugin-external-helpers":"7.10.4","@babel/preset-env":"7.11.0","@babel/preset-typescript":"7.10.4","babel-eslint":"10.1.0","babel-plugin-add-module-exports":"1.0.2","babel-plugin-dev-expression":"0.2.2","concurrently":"5.3.0","eslint":"4.19.1","eslint-config-prettier":"4.0.0","eslint-plugin-import":"2.22.0","eslint-plugin-react":"7.20.6","flowgen":"1.11.0","husky":"4.2.5","lint-staged":"10.2.13","prettier":"2.1.1","prettier-package-json":"2.1.3","rimraf":"3.0.2","rollup":"2.26.8","rollup-plugin-babel":"4.4.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"6.1.0","semantic-release":"17.1.1","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"3.9.7"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.2 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"gitHead":"02faa9cb34e36c77db7cd380fb4cd1d42bc52009","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.26","_nodeVersion":"12.18.3","_npmVersion":"6.14.8","dist":{"integrity":"sha512-SQ6AOKfABaSchokAmmaxVnL9IArxEnLEX9j4wAZw+x4iUTb40q7irtHG3z4GtAWz5veVZcCnubXDBRyLVQaohw==","shasum":"e4917da0c820135ff65ad6f7e4b7d7af568c4f13","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.26.tgz","fileCount":11,"unpackedSize":39539,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfT6x9CRA9TVsSAnZWagAA7MIP/3seWIJptMLE6NPO/R9c\nTl4W0cBhfOvV1m0GNJYSLC28SwKUd5uuPfkh1kzTqQQP2AHQ9flKn7ClitpJ\nfa0qZozA53WPxSWpB44JPehgLPiltTBKWCBHVkBpfcsLCQOEnSNtgWTNuxrV\n8087mol9FhiyHC9h6/yeU6sy+bbko5wp76o04ZJ/o52Mt90F65Rfjf35wf2X\nvSHQ9uNvjVEGyokp0WswieqXVUtIBZ92psd/GjKlkaAT1AmCJdEEjCTJxTaE\nCH9DcI83n8WwCUuiTn8YZ4TRyruEtVaW0Hhq2JynecA6wwewkoxCTtQq0dBo\n+QlQhBE7O6W5TNxyNc4qbDGwagESyfEZlO3j+3QRBu0QVvAcS54CDau6Q9cL\n9oIQTvsVZouiFW6DeWVzKcnRFn5p/XQT6PjugS7tLYJ6AYOpE+PCM1tKdU5q\nGIgBfBgquOg+AQjXg+5QIABl6BBSOtxrRxD7BxfND1BS0Ifqny8DHfvO+Pum\nKQLCFkX+7eFnzdSq06WOjfXtjTg7lb6UHPlrPcIoddVnbklPk0m1cl5EKiQ8\nOOZ67CoGzSwNp3Eyw3r8OPyfCtfYj3Hp5HURYazv6vme5KajeTSqaykGhCq/\nT/hiDPboUtXdWxvdyDNRMkFJwvgu+BvtHtPiPl64Pqk8Njy8pxYmuywwNLWp\n3R+0\r\n=v2E+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGtUIKky2IURN0tf4apB1BAb1ZRt1ZkI1Un3Jsh6lWNwIgI4FfEUzie3IQlgqoPV30kQIcQeA9MuVb3L96t5wCpcU="}]},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.26_1599057020597_0.16138583355802494"},"_hasShrinkwrap":false},"2.2.27":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.27","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"sideEffects":false,"typings":"typings/index.d.ts","dependencies":{"compute-scroll-into-view":"^1.0.16"},"devDependencies":{"@babel/cli":"7.12.17","@babel/core":"7.12.17","@babel/plugin-external-helpers":"7.12.13","@babel/preset-env":"7.12.17","@babel/preset-typescript":"7.12.17","babel-eslint":"10.1.0","babel-plugin-add-module-exports":"1.0.4","babel-plugin-dev-expression":"0.2.2","concurrently":"5.3.0","eslint":"7.20.0","eslint-config-prettier":"6.15.0","eslint-plugin-import":"2.22.1","eslint-plugin-react":"7.22.0","flowgen":"1.13.0","husky":"4.3.8","lint-staged":"10.5.4","prettier":"2.2.1","prettier-package-json":"2.1.3","rimraf":"3.0.2","rollup":"2.39.0","rollup-plugin-babel":"4.4.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"7.0.2","semantic-release":"17.3.9","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"4.1.5"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.2 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"gitHead":"a75ad507afb78d41d483dc86b93c009c919e4632","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.27","_nodeVersion":"12.21.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-BKiRstRm4u1bZvw+Wu9TxXhyMZ9fskb/9fbuSGuRzwHhlbKlDetL4dBdYaPfQbEFTttQmpkNtFH7sQpk4rZf9w==","shasum":"c696e439bb50128abc558317b39c929907bd0620","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.27.tgz","fileCount":11,"unpackedSize":39585,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNcLwCRA9TVsSAnZWagAANUIP/1oe5hX6nKrOzm9sAW2b\ncQoxIQ2pmj5ohzwlCVQn5jUgdDx/VChPr4mc8OL+1dZuoP9yG5OGdJyGZXYS\nu9ZWN8EiuSCxsQGG8Yqz32cH1XqzHeXLEGidyuT5OaQDtCSMkRYaWfx3d/F1\nEohRAhDf5AKg04LUVK9CS9HGsnCqL6/TIQbPIySg0Sq6ELsnNk9Ecq2ozLhw\nDJnkqGWPRdxWZr7GjLX5imogmkqvCTwiIO52ZgS4s9pWsSZYJPINJz6pxM9S\nNCIx63IcXJ/OuaCBFORMIl8j3fpEayJV8xj0QH3J8dYQOGTWOCgs/JlnyGMF\nHVIGBq3qoCodSy/8UjMTzdCaj5hIvp4b58QbNsr+nDlQQhMrPpZNuHyNmQQ3\nBn/9YKCD5Xp7h+dNsHVbQ9VYoZJ4q6XrDu8NO+lDJ64gL6XsKfkQgZ7J/3Xj\npTaLpvk7+VYAZ3Kw12FVfTpM2KO1ISrgqXid/aPay2isRmeeAL1gqUazF0YY\nfZTBbaqNxHxM+L6l4I6x8V0l0zMD2z6AIYEIQGR6eLNLLxfLU4S84a+aMkrV\nQN1c6vjL+oxfG+W6B7h6UAnecg3IwT1fBuaL/K4I2HJx7iNjEEgcTBllz6k6\nStgHDja3VTpa4wjQRcVaJ2FQrX/Hgdaj8jiWu5tPZETPJDVRapltDuMGP5Wc\nGyTY\r\n=IL+G\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC5BQew85KsyWPi3fDd9DJbGA7coe/Z7wa8bfVmnqljQgIhAMlrJMg02ZhPHZihfssv8ZBR4EjHaJScNuk0TJfNfiGp"}]},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.27_1614136047786_0.9790909963616345"},"_hasShrinkwrap":false},"2.2.28":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.28","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"sideEffects":false,"typings":"typings/index.d.ts","dependencies":{"compute-scroll-into-view":"^1.0.17"},"devDependencies":{"@babel/cli":"7.13.10","@babel/core":"7.13.10","@babel/plugin-external-helpers":"7.12.13","@babel/preset-env":"7.13.10","@babel/preset-typescript":"7.13.0","babel-eslint":"10.1.0","babel-plugin-add-module-exports":"1.0.4","babel-plugin-dev-expression":"0.2.2","concurrently":"6.0.0","eslint":"7.22.0","eslint-config-prettier":"6.15.0","eslint-plugin-import":"2.22.1","eslint-plugin-react":"7.22.0","flowgen":"1.13.0","husky":"4.3.8","lint-staged":"10.5.4","prettier":"2.2.1","prettier-package-json":"2.1.3","rimraf":"3.0.2","rollup":"2.42.1","rollup-plugin-babel":"4.4.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"7.0.2","semantic-release":"17.4.2","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"4.2.3"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.2 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"gitHead":"3157ff069b71c284693742cbc3f210518d15cd05","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.28","_nodeVersion":"12.21.0","_npmVersion":"6.14.11","dist":{"integrity":"sha512-8LuxJSuFVc92+0AdNv4QOxRL4Abeo1DgLnGNkn1XlaujPH/3cCFz3QI60r2VNu4obJJROzgnIUw5TKQkZvZI1w==","shasum":"5a15b2f58a52642c88c8eca584644e01703d645a","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.28.tgz","fileCount":11,"unpackedSize":39584,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgWSrVCRA9TVsSAnZWagAAscYP/RWiYby/tqVDzNzeLg5v\n0rBi6mNwMNJC9YhMJJAUqUrQNiiBO8gl3GT6SBm7OE4tYHrnEL3pYyDS+T8K\ng2WoZ+i2PjpTRfA8qTDow67ZOI+ZQ4goj/x5bX1w48WKyx8C67H7umSNvFBR\nvCN+vaLvoWptbeAlayg8TKrn2p9kJYhpXWLW15f+KwdhhSYLF4X3mmOyGZxb\nlIYtevYxx10Y0TygeYkzYqjVdsMjZElz4bNTyFGaXDb9wypgd+/KiJ7CFeKC\nPkdaqjWdRpwuIT+NU58jkl+rKH3IZlb7ilYkZ5K/Oe+KMx79F/r/NneFduQ+\nPJMcdDcOi7UFC121Hvnqm/yU4nByheJwxKON8P2e7yX8BdBMDe8zo1Bj7yT+\nF9a9xc0C3IolxHmgzzq3oXYr8jTYRG05+JuBE6BawzuDoO/CEJTsNizdz0hK\n/rZLWFIBAs/SHCsxA7NL1mU0f4uocb6aOISaXcSOAfSwXchX0TibE4ASyTPY\n/OJNH6Lra8XhHMrqNwdVvrYJCQ9v6AkGx7QrS8InOO2bo3plpox32ubmKuQl\nkKAe8NYJO/d5O8fFa7FRo9IIZD9We0uOAI8oXFD0t1s6iyikLeIHUW7tK3tr\n0lTEmiAoKFpyxDNuliac9LTgjB1G0J5Qmov8xie8MvdZSbYBfKmNBY87dc20\nGocT\r\n=r32E\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFSzardUjFUvu5Gm3XHpsEI9sI3m5ZVX/yBK2TPbuSMPAiEAwKy4K3/HdMDJweyy0JIkhuPgRXhDBrZWWZV54Y0g4rI="}]},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.28_1616456405336_0.7979608266664584"},"_hasShrinkwrap":false},"2.2.29":{"name":"scroll-into-view-if-needed","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","license":"MIT","author":{"name":"Cody Olsen"},"homepage":"https://scroll-into-view-if-needed.netlify.com","repository":{"type":"git","url":"git+https://github.com/stipsan/scroll-into-view-if-needed.git"},"version":"2.2.29","main":"index.js","module":"es/index.js","scripts":{"prebuild":"yarn clean","build":"yarn build:d.ts && yarn build:cjs && yarn build:es && yarn build:umd && yarn build:umd.min","build:cjs":"BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","precommit":"lint-staged","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'yarn build:cjs --watch' 'yarn build:es --watch' 'yarn build:umd --watch' 'yarn build:umd.min --watch'","lint":"eslint ./integration-examples","prepublishOnly":"unset npm_config_cafile && yarn build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"sideEffects":false,"typings":"typings/index.d.ts","dependencies":{"compute-scroll-into-view":"^1.0.17"},"devDependencies":{"@babel/cli":"7.16.7","@babel/core":"7.16.7","@babel/plugin-external-helpers":"7.16.7","@babel/preset-env":"7.16.7","@babel/preset-typescript":"7.16.7","babel-eslint":"10.1.0","babel-plugin-add-module-exports":"1.0.4","babel-plugin-dev-expression":"0.2.3","concurrently":"6.5.1","eslint":"8.7.0","eslint-config-prettier":"8.3.0","eslint-plugin-import":"2.25.4","eslint-plugin-react":"7.28.0","flowgen":"1.16.2","husky":"7.0.4","lint-staged":"12.3.1","prettier":"2.5.1","prettier-package-json":"2.6.0","rimraf":"3.0.2","rollup":"2.63.0","rollup-plugin-babel":"4.4.0","rollup-plugin-commonjs":"10.1.0","rollup-plugin-node-resolve":"5.2.0","rollup-plugin-replace":"2.2.0","rollup-plugin-terser":"7.0.2","semantic-release":"17.4.7","tslint":"5.20.1","tslint-config-prettier":"1.18.0","typescript":"4.5.4"},"keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"browserify":{"transform":["loose-envify"]},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.3 kB","compression":"none"}],"lint-staged":{"*.js":["prettier --write","git add"],"*.{ts,tsx}":["prettier --write","git add"],"*.json":["prettier --write","git add"],"*.css":["prettier --write","git add"],"*.md":["prettier --write","git add"],"**/package.json":["prettier-package-json --write","git add"],"**/.babelrc":["prettier --write","git add"]},"prettier":{"semi":false,"singleQuote":true,"trailingComma":"es5","overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"release":{"prepare":["@semantic-release/npm"]},"gitHead":"e9f611dae5c03c980ac07637ef6df80c16bfc450","bugs":{"url":"https://github.com/stipsan/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.29","_nodeVersion":"12.22.7","_npmVersion":"7.24.2","dist":{"integrity":"sha512-hxpAR6AN+Gh53AdAimHM6C8oTN1ppwVZITihix+WqalywBeFcQ6LdQP5ABNl26nX8GTEL7VT+b8lKpdqq65wXg==","shasum":"551791a84b7e2287706511f8c68161e4990ab885","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.29.tgz","fileCount":10,"unpackedSize":34272,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh+n2KCRA9TVsSAnZWagAAe14P/0mdYpc8bCeh0yiNL2vi\nQhkjjNzViUXz7OfXL+ZxuxKOTn2qh3MrjTmyw24/yjOGjz6BcUnfgV9zFRlW\na3J7XZM0Ko/nqwowtJvdxwhrUMoBCVNia1k/7ceD5lYTug70UeEL8+B3QlZE\ngYXyAi9fisNfWbjLTHYltEBOw9puJWc8Gh7nH5eWxAxdpYbI1+yOFqitZPCa\nqY7ota34UGsSAqS9blmr4NRmLLjTdcINHAHLKcgws7HNt8Z4QB8jd3zbmOuv\n2TKZwH18xhnPE5jk8a4e5EPjMpPAQ3DXi9yOry9p6q6klye4pG4WyJA0XoLP\nwi/9+LFfLLsQfVBg/Ttclv7BMF8REfl+rX0PrO7alDcAhx3wOwDzixx+Wly8\n1WDLYAPK6xu6S7ifPwXqxa47OSNf5VlALfZEK27uSs6dMIVpaQisaO9mHHma\nvI4bW52JCqJ4G4k83850DNAn6R4NZ8yQzLdRCigbZ7e0Nwc1J4E0G5CSIaKY\nrF56lOSrmWdJORuG9/W4MVBn5eRvFobLPK97LIUmWYddfBYG5zymFrC/PLtN\nLo276airrsMqHTWgM3+1d0Dnoxb013Ivhe2TaFjFPhmVr0gpUNxN9emYJ7ln\n8Io5xYK0uWbl1smYCVnHTLpKDo803zaaNfvhKTzCmkejKR4Q51uYdYJZGNpo\nxvou\r\n=73Lp\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCHGzmtm/YgbP9wvF3RAecjzL3SbNEX4c8QyPh+P+e2VAIhAN/JqSJqUveLI/S20TLtMT75b0ig18rj9igXeoh/t4sX"}]},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.29_1643806090712_0.6005493195175982"},"_hasShrinkwrap":false},"2.2.30":{"name":"scroll-into-view-if-needed","version":"2.2.30","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"main":"index.js","module":"es/index.js","typings":"typings/index.d.ts","scripts":{"prebuild":"npm run clean","build":"npm run build:d.ts && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:umd.min","build:cjs":"cross-env BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"cross-env BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"cross-env BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"cross-env BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'npm run build:cjs --watch' 'npm run build:es --watch' 'npm run build:umd --watch' 'npm run build:umd.min --watch'","lint":"eslint ./integration-examples","precommit":"lint-staged","prepublishOnly":"npm run build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"browserify":{"transform":["loose-envify"]},"prettier":{"semi":false,"singleQuote":true,"overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"dependencies":{"compute-scroll-into-view":"^1.0.20"},"devDependencies":{"@babel/cli":"^7.19.3","@babel/core":"^7.20.5","@babel/plugin-external-helpers":"^7.18.6","@babel/preset-env":"^7.20.2","@babel/preset-typescript":"^7.18.6","@sanity/semantic-release-preset":"^2.0.2","babel-eslint":"^10.1.0","babel-plugin-add-module-exports":"^1.0.4","babel-plugin-dev-expression":"^0.2.3","concurrently":"^7.6.0","cross-env":"^7.0.3","eslint":"^8.28.0","eslint-config-prettier":"^8.5.0","eslint-plugin-import":"^2.26.0","eslint-plugin-react":"^7.31.11","flowgen":"^1.20.1","husky":"^7.0.4","lint-staged":"^12.5.0","prettier":"^2.8.0","prettier-plugin-packagejson":"^2.3.0","rimraf":"^3.0.2","rollup":"^2.79.1","rollup-plugin-babel":"^4.4.0","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-replace":"^2.2.0","rollup-plugin-terser":"^7.0.2","tslint":"^5.20.1","tslint-config-prettier":"^1.18.0","typescript":"^4.6.4"},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"9c5c827ab466e0848074167d8a7178ed3cc271c4","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.30","_nodeVersion":"18.12.1","_npmVersion":"8.19.3","dist":{"integrity":"sha512-wNXfs3Dd5SQfF7wVex3mDfDG7ScNhCi0rw+rAMXY7SPk7hDyIWF96WPwk7ljrmmRDD9UIHlHQATGKf4uxNjSyw==","shasum":"d138f244231f0b34fb0b564dceb12f2f592a992f","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.30.tgz","fileCount":10,"unpackedSize":33818,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKSMMj+kHnkDjxslUQyM36+w8H9y1J4QUQTDkc1twXxQIgIUoaTytI4uW0EN2ef17Ru/yK+6YOFhnVWv6bFqW0d4I="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjha9PACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmptUg/9EGtKORpz+iOYh2l50UyoZOrNtMrze7gi65K/1ApGogSokbV7\r\ne3CMRhVhGdsNhZdoCb9pl6ulRIerXcgiBNTxkpMpJaF2ngxUp0NGXRppKXYH\r\nnEaP3jiQIDEWwSY4DrM3N3qWTWz7k/UZi+JHifb7CprOXQkLOCdKqWi315CB\r\napczb4BE9PSXcXPULornfhE70qVZasIetoEpVqm0Yabw54025pzEkVjFa0eg\r\nP0NWCr+cr2XTbG7xazy05zkA7yS8BuI+EcJzuIggq7iez5qxjXnZKQW6zl8P\r\nLWn6HcRKBxxNs2YoChBOcGIRQoSRsKCRtepEQ0WgSgiEcOgJlDigIl3Gr2TL\r\nTsFOY2rWRKLwRkXDh7MdktVC1rb2+S9So4etuXFkpLP8paj0WA2dTW/fC/zc\r\nzCsZJKGnlg7KV+dUsp6VrQIXbGkFHpRTierZXH6ZMUU/HR6nPkTvgw12yv/4\r\nrfcYhGQza0ALpWGBYoDooXhnppd7m5QrHRp1rHGqiuzM8lZ9b9T2l7jzLIk/\r\nNjpOppZQVwBg0B0qrumDVoDA4YuDDxuJqf8BeT8qkIJt9I1iT/LaCRzEapr6\r\nniXH+VdFDELBiSWuoyKxXhui/qYshzoqulhWY5wXyxYqyPVRouxCYsilPlWk\r\n+djjmIVAf5hOja+NNYppuaPXmH/ImYlkR2A=\r\n=9RNF\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.30_1669705551454_0.5651338615140178"},"_hasShrinkwrap":false},"2.2.31":{"name":"scroll-into-view-if-needed","version":"2.2.31","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"exports":{".":{"types":"./typings/index.d.ts","source":"./src/index.ts","import":"./es/index.js","require":"./index.js","default":"./es/index.js"},"./package.json":"./package.json"},"main":"index.js","module":"es/index.js","typings":"typings/index.d.ts","scripts":{"prebuild":"npm run clean","build":"npm run build:d.ts && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:umd.min","build:cjs":"cross-env BABEL_ENV=cjs babel src -d . --extensions '.ts'","build:d.ts":"tsc --emitDeclarationOnly","build:es":"cross-env BABEL_ENV=es babel src -d es --extensions '.ts'","build:umd":"cross-env BABEL_ENV=umd NODE_ENV=development rollup -c -f umd -o umd/scroll-into-view-if-needed.js","build:umd.min":"cross-env BABEL_ENV=umd NODE_ENV=production rollup -c -f umd -o umd/scroll-into-view-if-needed.min.js","clean":"rimraf 'umd' 'es' 'typings'","dev":"concurrently 'tsc --noEmit --watch' 'tsc --noEmit -p tests/typescript --watch' 'npm run build:cjs --watch' 'npm run build:es --watch' 'npm run build:umd --watch' 'npm run build:umd.min --watch'","lint":"eslint ./integration-examples","precommit":"lint-staged","prepublishOnly":"npm run build","typecheck":"tsc --noEmit && tsc --noEmit -p tests/typescript"},"browserify":{"transform":["loose-envify"]},"prettier":{"semi":false,"singleQuote":true,"overrides":[{"files":".babelrc","options":{"parser":"json"}}]},"dependencies":{"compute-scroll-into-view":"^1.0.20"},"devDependencies":{"@babel/cli":"^7.19.3","@babel/core":"^7.20.5","@babel/plugin-external-helpers":"^7.18.6","@babel/preset-env":"^7.20.2","@babel/preset-typescript":"^7.18.6","@sanity/semantic-release-preset":"^2.0.2","babel-eslint":"^10.1.0","babel-plugin-add-module-exports":"^1.0.4","babel-plugin-dev-expression":"^0.2.3","concurrently":"^7.6.0","cross-env":"^7.0.3","eslint":"^8.28.0","eslint-config-prettier":"^8.5.0","eslint-plugin-import":"^2.26.0","eslint-plugin-react":"^7.31.11","flowgen":"^1.20.1","husky":"^7.0.4","lint-staged":"^12.5.0","prettier":"^2.8.0","prettier-plugin-packagejson":"^2.3.0","rimraf":"^3.0.2","rollup":"^2.79.1","rollup-plugin-babel":"^4.4.0","rollup-plugin-commonjs":"^10.1.0","rollup-plugin-node-resolve":"^5.2.0","rollup-plugin-replace":"^2.2.0","rollup-plugin-terser":"^7.0.2","tslint":"^5.20.1","tslint-config-prettier":"^1.18.0","typescript":"^4.9.3"},"bundlesize":[{"path":"./umd/scroll-into-view-if-needed.min.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"26578c011e5a17ccc7540e211c947bfc99ef4ed2","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@2.2.31","_nodeVersion":"18.12.1","_npmVersion":"8.19.3","dist":{"integrity":"sha512-dGCXy99wZQivjmjIqihaBQNjryrz5rueJY7eHfTdyWEiR4ttYpsajb14rn9s5d4DY4EcY6+4+U/maARBXJedkA==","shasum":"d3c482959dc483e37962d1521254e3295d0d1587","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-2.2.31.tgz","fileCount":10,"unpackedSize":34060,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDQ7D1D4gJR2oNIwyL5G7ZhQGztTrhZ7jArja/H1pB4rAIhAIiw1EePcA2Kfi0IZhlVdRhAOl7rr2JClIbyKck/NyYt"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjhd+/ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmob2g//R2cQXSyv++ZfNsS/r7wUg8KOYw7xw+HbR6KoqLvtqETwPAtZ\r\nbG5ommxaPq81wgV7Gji+38OCRf7qAkIwVYTaBmjE6eMgbQyZlthP78qtORI3\r\nOsq3NbpVfxZ68/3FRwRB6rF9kVJ/vvgEIqf8l5lObqVWK2npL5B0JAQTkJTt\r\ntUREs/WRUYBZgDGv7VGfO1sJWacrtU95Yn5RlmYyiRSJhOt1ya0rzlEDXK37\r\nqQCiLzzUW1HkqFW6QZNwbicayAVAXoNBuS2l352Ln21Hj+zf0jHZXqwikKLK\r\n4gqHIPq2WtO/VJTNOozwq57m+iSr9GGi1U4GZyXBlSF+9lAVsxiTMmMnA36o\r\nmgYYk5gJchz7Fcc0gQ7rccGdk0zBpjN3uOOrV7cb8LDLCxg7549P33LJeH4N\r\niqUvEBf+GQX/PTkBzEpOUr4QocOzb9okamYNH2/8Q8ss/XeA0yvWb75tbMmE\r\nvv6edjGTTxVZQ5JSP6F/lgSXqgrnxLlitbado/rhzEdtW+44h2gQeJmKXiuz\r\nGX6DOZAKmheb1vTEP8h+0IIuqti2uXGRMtcaPyaumTNqsWJXWdgpOkKTnIDp\r\nQR7AhIZ2DQpDQq5PPDxBd2m+7S8ugpNVKY6cpWOafvweNAm8W/A9LV9GqofM\r\nY5lAThYicS8g2Kk6ygbAopgkSZzuWxsaDSo=\r\n=SVaO\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_2.2.31_1669717950790_0.9909392425513368"},"_hasShrinkwrap":false},"3.0.0":{"name":"scroll-into-view-if-needed","version":"3.0.0","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","import":"./dist/index.js","require":"./dist/index.cjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^2.0.0"},"devDependencies":{"@sanity/pkg-utils":"^1.20.1","@sanity/semantic-release-preset":"^2.0.2","cross-env":"^7.0.3","prettier":"^2.8.0","prettier-plugin-packagejson":"^2.3.0","rimraf":"^3.0.2","typescript":"^4.9.3"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"bcb43e4286e7970137aa22771b77bca2175c6542","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.0","_nodeVersion":"18.12.1","_npmVersion":"8.19.3","dist":{"integrity":"sha512-FKHA7dLaARkCpuWpJvcH0bEZHI/4aC35ggGpmdQ9rfmiT7X2icxQ6eyEZrguJy+LdwwmLf/1J+5vLzPw/+Fjpg==","shasum":"9c27702af33effea6652a14d7636ed062e78ae96","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.0.tgz","fileCount":10,"unpackedSize":37259,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAiJjZtbh8YGXYWwaQuo/Rb8vjKodBUvPVbIg5l/M1srAiEAz5CNQtnilZ1yV+rousmsJXjIkyMS0/qUOfp2X2buoQM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiF2xACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrZpRAAoI7T7A//71FYO7Z/fPEHeRQdsezuipT6KLVSD1CF1ZpluR8/\r\nLXaeNR1kZOEmVBhB1n2sqSSdhOSOzPHV1NWQyQSymLil67+e6n3lJAPBl+JZ\r\nua6AabtVgZFpMd8kLaL5qp4Jx8giKXvg1mv+JXwTBrQt35ZoKGzO8CLAt4qI\r\n6I5JdVu+UwsDphg/ssOoiWYknKfEwHClWGDUDzhQQROfuETr/HKZD8L5l6k6\r\nfez731whA/DkSO5yYbQR1h0wKf4EbtLQPfA+QFcVGkRYZvB/v4OO4NXutu4b\r\nQg9XVXdI8Zwkh0CNRvIaGKq/Y6ugE9+Zs01fQb3cK62dOf2p19bfji13xT13\r\nHsfT2Ii9mK5zLCttNhYm0qPo2eH69/kXJjrmPcdEn1vAT9b5y/6W7nOTBwdI\r\nfO2MaSR19tUPVvn0dmGmv3ycJ2Va6x2p4a8T8uzgQ4MVf4LH8D5zMcJaxb6Z\r\n0ElDDgRrx3Q/d2NH6M8DHzCmPfSh3NH5AKLw4F5BTvbPsY+82EJJScllOwF+\r\nzhydDjYirQTcpiFRsiPPdPiQVLBxyajfIAuXkgZXHmeOo18T4G+8BmRfE12O\r\nLpRp7iCpHEwpMZ1jNquk51zW5FL3nR9mIRYFud8dh0vqIJ8FRciR3W4deP9c\r\n6+LHGFuLp7r1Yu/aovzJsbw28GISrHPOL/U=\r\n=yHBU\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.0_1669881265030_0.4138089254363768"},"_hasShrinkwrap":false},"3.0.1":{"name":"scroll-into-view-if-needed","version":"3.0.1","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","import":"./dist/index.js","require":"./dist/index.cjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^2.0.1"},"devDependencies":{"@sanity/pkg-utils":"^1.20.1","@sanity/semantic-release-preset":"^2.0.2","cross-env":"^7.0.3","prettier":"^2.8.0","prettier-plugin-packagejson":"^2.3.0","rimraf":"^3.0.2","typescript":"^4.9.3"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"e481bee94e21aff79a075587309843abb4310567","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.1","_nodeVersion":"18.12.1","_npmVersion":"8.19.3","dist":{"integrity":"sha512-UQcD8Xwa165asFQ0yk1Xwkz+yfYZs9kGAYPiCKgU1+KHccVwD6iZbUnPcioFQdLbPzD1q7+oZq8k+/EloeiaRQ==","shasum":"db8cda749842e4f36398dac000d0bf5d9ee1e127","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.1.tgz","fileCount":10,"unpackedSize":37035,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE29lNq8twDAftYIHf2mph2pJ/11b7uaHuvbDgEYuFktAiAibq9f/lj3jtodeCRrA/lcyEwe5YtwHPy4X1TVClR76Q=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiGjFACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoAJw/+MLTDwM3xZG6M8AYq6ejqED58YXpNAEWv6LmIgsXLU206C0vH\r\n8Pj8q20+ub8VGd+jrR4UlXhppXnrmNY3psSv2iYrKYG7uHvVlKm2WHVeJrN3\r\nfu2OkAyXA6CSeYsOXm8JL5NByqtzXqpH2yWfgP74Yv7ah1HSCETsjlommbOA\r\naDxmkPbpa4INaQaR5V6Q3gYXc8NfbhcGSzjYnW4VRA2e1PGwv2hGV1lyi9PC\r\ncSYtfhQSqxnic3E2qrrBmWtEbe1X1S6ye2qipt3BXbYzbAhbqT/CCvMERam3\r\nYIg1e6pSErG9oFg4dgabrw1zshvONeZs9icNe/DqgD7rbYF3dkOZnCBE592G\r\nFmmaQh0TiMXy3jnG7jH94exNKwPCl5DJSteIwmww+solahmZeTiSEKeoZbCa\r\ntUoKFxbisUhZP6e0rUfloYyxD+Wb/0OXRxgsZt6XZKHgUxez9OGBjlJMVbeH\r\nDtMNrZFg1NAk9yjkXqXkBrB4NreoiiUUN+nay/maykqP6QIrQd2XlKwOoEWi\r\npE1s+ah9r8NZOXL6YfoqZ8O0oFkZXvxWMo7BdgHUE653cL1hH6ep2GDU254X\r\nTSPEuHjkDkSg2kdAPrTSKeM/hpXQNzZXla8cYfPjIfn9GcxyiLVJzymCoytA\r\nvwPciXUkQR9cyRc4KkvXvVx4ana+4eJ7vuQ=\r\n=snjw\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.1_1669884101672_0.03470004652176062"},"_hasShrinkwrap":false},"3.0.2":{"name":"scroll-into-view-if-needed","version":"3.0.2","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","import":"./dist/index.js","require":"./dist/index.cjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^2.0.2"},"devDependencies":{"@sanity/pkg-utils":"^1.20.1","@sanity/semantic-release-preset":"^2.0.2","cross-env":"^7.0.3","prettier":"^2.8.0","prettier-plugin-packagejson":"^2.3.0","rimraf":"^3.0.2","typescript":"^4.9.3"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"59fbe966a7d9025b2e38555e5b55aa923bf95fd5","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.2","_nodeVersion":"18.12.1","_npmVersion":"8.19.3","dist":{"integrity":"sha512-AiFyFguMUYzN+nYB13Je09tZSgRGNLJpbz2Rs5dN0hXg67WO0tKR6RHLySvYrDNN2CcfiuagFeod221G1ENtOQ==","shasum":"d4de1a34d8511acf01434b36d55f3506f4e204e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.2.tgz","fileCount":10,"unpackedSize":36243,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDNUYXMlA6aZJ6jX50bTTCaMZSY3OjSaH1gITip+/pkPQIhANs1thboTTKlF8ZfPdPMu1Md7LODJ3izYpE6NhIg/m/P"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiHmzACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpUg/5AJ8p9vQhKKWyOAdVV7F0vzFZhoglXA2zxgE4i9XSDoSwAdTe\r\n0fNAjj7Jso18K2VYSP39pKGFf3jrak4gHpKeA0UKNfBaR1p/OtT4z2MgwId6\r\nkDjjFmiVdQ19iSuJTW0olnhxrAv1QXL5MdGeRLQ50qLG4eGr5/qXkEZBtu43\r\nkyv0ZymdrFW0sFRffTmb6XuGMQMKR7UVq8XW3pb5ufCCvVx3zVjp4Fd7/MwS\r\nHN4g4Y8xc8DTcHXSWOSRauLAfeJhfUMf+h0IwBMZlzQxiD8w+lkOpiiZtHtV\r\n9DLCdRj179oJMRXiz6hWsqv/ZNMtp1K+74p/HXZ19mRNQ/zjofA4vOEwCJZx\r\nFdFOeyxoBuHutZbOFWYAueVS/pQR8g4FagTJ7SAjOQLdt4vyRAH5FCtN7STA\r\nFbkFEviZ7BkqyxsPm1ftUVoxPN1UsqwH+bCOz9WsqLvqkYog3oTeQtaH+10y\r\nE99eAjHzCM4tnmt6SlBp6ejVB/O6VaCWU3uNaNLemxgwawtNEl3CsFvFT/Ew\r\n1mxUP0YlDm2ccUFnvSJfhHISVKUVO7W5FEvz8aGUJByFr45A9c6hzUUUcqqc\r\noP44PSnMPr+IJGs91nR0te1FDuafcx93wcTPsojhSu07E9NPgGnezvIc2KVL\r\nbh/mCmrLsOsf21IB7w6Z0+tB23QmwoQ8LQo=\r\n=ZpqG\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.2_1669888435302_0.33616654835261417"},"_hasShrinkwrap":false},"3.0.3":{"name":"scroll-into-view-if-needed","version":"3.0.3","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","import":"./dist/index.js","require":"./dist/index.cjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^2.0.2"},"devDependencies":{"@sanity/pkg-utils":"^1.20.1","@sanity/semantic-release-preset":"^2.0.2","cross-env":"^7.0.3","prettier":"^2.8.0","prettier-plugin-packagejson":"^2.3.0","rimraf":"^3.0.2","typescript":"^4.9.3"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"2c3019af0947543d0d339ff48864c79a79003ec5","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.3","_nodeVersion":"18.12.1","_npmVersion":"8.19.3","dist":{"integrity":"sha512-QoCH0lVw0tbA7Rl6sToH7e1tO3n95Oi6JgBgC8hEpNNZUC91MfasJ/4E1ZdbzGueNDZ+Y7ObfRaelKUgTyPbJA==","shasum":"57256bef78f3c3c288070d2aaa63cf547aa11e70","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.3.tgz","fileCount":10,"unpackedSize":36405,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDI5HyPYYiu8Ka1hifg74FGYkLnz1DKbYH32oSJybok3wIgFYKTr55IJSF8AnPfa5L9TfOGFIRWx5CTmGhWa0cnQm0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjiIGqACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqv8g//VLh9Bsb7dRpsNqdJ32hzRHMC01jwBYjlOLV39g4chHVDTmG4\r\nz123vvTo3rfoIs0yW4HTRQWG3AhUccxsH6EcBy60fWrVPo7855ej4yxCiiuQ\r\nPbkpsatbZuxbzqRShNljOyrySh+poxY6/w9IftPeQhA5MZilNH8dG+jymgr3\r\n5W1V79dh7Curn4AZiYDBiJTEKXRk5A5wcoxYg9GUrR34kdyhueZVc7fz5kOu\r\n+jIMj95pG/IRwOBb73yJQGWfflQc46/7GCWaoQzDHerSN2TsdTlBDLRdftuq\r\ng7jbldBQWXUzSh/7q3cVrERNOyDKrMpPagFXeNhtBEIpst4cze3ElyfqL+Y1\r\nt2zAdCT/6q6NuEZTI7GDtTvhkAAdNiqpF+mH9aBW+GdyIQj/qUMwyxL0LTZq\r\ndk6L/mR06ozDfJKtCmj9UhRN2UOiQ5x7dDOvD88akIoU1IlUP+cfcJbF466x\r\nyaygdw7+cehu4G0rgG3B2rGcVE9ycZ2I00lR1lW5rWL2Q+H37xMej5B4b4+m\r\nL+BXOz9MD/z/Cs+TdRfRzEygij5jsizjErcYLKPN//cmvMHs4ez2yvkXpeIk\r\ncb8CSQ0AMWHCquFwEFb2itRce7qWIhK4pdiuh7wYBSyre9eMoAzl6UTgsA0i\r\nynCta5Okzm5yQGFelMr7xK2eWoK+p5nDUfA=\r\n=MH5E\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.3_1669890474234_0.6707798848730608"},"_hasShrinkwrap":false},"3.0.4":{"name":"scroll-into-view-if-needed","version":"3.0.4","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","import":"./dist/index.js","require":"./dist/index.cjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^2.0.4"},"devDependencies":{"@sanity/pkg-utils":"^2.1.1","@sanity/semantic-release-preset":"^3.0.0","cross-env":"^7.0.3","prettier":"^2.8.2","prettier-plugin-packagejson":"^2.3.0","rimraf":"^3.0.2","typescript":"^4.9.4"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"01ce46b3ede07bcf4a6a3af2fed9d084dd352eaa","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.4","_nodeVersion":"18.12.1","_npmVersion":"8.19.3","dist":{"integrity":"sha512-s+/F50jwTOUt+u5oEIAzum9MN2lUQNvWBe/zfEsVQcbaERjGkKLq1s+2wCHkahMLC8nMLbzMVKivx9JhunXaZg==","shasum":"4b3101712f0ac8ec982c0a7ab4d071e393241e21","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.4.tgz","fileCount":10,"unpackedSize":27502,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICOMVwYLO0ahPu6qVwZG4unviUVNBHOrsGbT7hVFhpMYAiEA4/NDiRB0A7YdL0Z040rHJxFw5+Y1n2S882Y7E+KUoBg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjuituACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpIww//fIzxQDdj3cBem3UporCQewzjR0byH4CTtIsFn2tk4NrFWI4S\r\nMgvLALTDY8ixK119YDObVpadt8EWjAlyg28FjHM4Nt3eBi9oelGcxeknmVQS\r\nG6vHgeCfpP5YCJdkNcS3O3wtU3MA7HIkx846PKSqxnB9qE+9r0bIewV1BeI6\r\nhwu/dSpV7raOF4EsY9wLgW2pVTC/GIAlaU+c48LnRqmOGvTbhIqWGc71xBY4\r\nRv78cpmCvdOZQNC/O5/vLOQTuh1KXqpDnuEJqiSlvOdrAN8h8OLrDdDpQLs3\r\nv0OJGKAXGwL5erHFuIBpz2Q1k/uQ9VJ3n9B7qV8IdkZ5gWEBjDZ6cqhAPgwW\r\nER3jNB+EJfj3dgSoMl6xW509WkbvTMW4SgyeunG/cZ1bfIt/AZiqXI1bYuNN\r\nnrzGEZHsd8OxlCVie7vnOR4gmYGhOQK3AEcrx5UdN07AIBmILylP/nKw+wud\r\n6iTtLtfvIV4CZ8Ve2kWXUdYqzqTdfhFxvALEz/EqhlYdXWRIKzsDD6/N8hyc\r\nKr2kkSt2r35tF6aqpqvcoepZ0LcVA9UnghSy/ttYhIbCXb9DO4dfSuoH2902\r\noCCWnoqKbjF1cggTufUfoHunWSebpNc9dDdDseSNu4SoBIsTUA9gz+iZzhI6\r\nLJ29OKaraL2Pq93+sbG6vkd6qkLvlI3qz6M=\r\n=c1jO\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.4_1673145198045_0.24481448061383504"},"_hasShrinkwrap":false},"3.0.5":{"name":"scroll-into-view-if-needed","version":"3.0.5","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","import":"./dist/index.js","require":"./dist/index.cjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^2.0.4"},"devDependencies":{"@sanity/pkg-utils":"^2.2.5","@sanity/semantic-release-preset":"^4.0.0","cross-env":"^7.0.3","prettier":"^2.8.4","prettier-plugin-packagejson":"^2.4.3","rimraf":"^4.1.2","typescript":"^4.9.5"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"467e95f4e4925140d4abc4c3f9a93c62bfb5141d","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.5","_nodeVersion":"18.14.0","_npmVersion":"8.19.3","dist":{"integrity":"sha512-PWOsE0cq0E4wbU32BdUZci3/kU1PAnRlCKWT0up46FHYxbyu9pzZ4RHJHVTWQ3WVbKDa3ssDca5y7//u8GH5ZQ==","shasum":"07f3f0d10b2277970b6f4da8b0101d46b4a598f6","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.5.tgz","fileCount":10,"unpackedSize":39112,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBgy73cZCZEOpxIjQoZpPLK/Mc28fBQE/KFMtk1Z85ZQAiAUJM4SlhL7FBWx0+dWJWDnpBxW5oH2wtpNe65EH++vDg=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj69+GACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoK9w/+N/QRbHrgiartp6I0EHpncnJydnDmKTPeLRvF37zsRWpvC23A\r\nJvAjy19DMsOnkQYy5X9rprp9CQmSqn9lmbikdOwrn+xtQiNbQ19k913s+usT\r\nNEee7e5o1qtFxpl+R6Qh/bpTZwvpM3CCcmAlXtVyEy9mzlSG3SzNtHEDW3GH\r\nrJzpc9ykFwZGMe5/LP7U73WK3MiibrevJcFGkA7gjL3fvBlyEqdeSK248QmX\r\naoz/18jG3jEeCaA3QHP0ukSaf2unjcvxnGNAL2gs2rLRsaDFHnTNUTSvr6WZ\r\nUz54addOwfG78qTlpxVhbu2vM62xriBChZDSJpflyD4SoCnwLdgHKUjPvhPH\r\nLtmsWMwd2jNTL5xeRK7Zr5wYpIzr5vQTudbG26ko3bLIRxRAstWRmOYLdSkt\r\n32ewvJW4dSQJ8DpB7/AqWVsTnxj3JAtRiTzr4cUpZlf6kKKmu3trgQ77K0Xj\r\nDJw0yMe3FdxgQn813kzvfw6v7tXxdYnpgAPN9t+0A2/QARYB97vgN7pHZ036\r\naPhWjtuqrkSwWb3FElwXlpJo5lWOcIpHGhtUpQ9I+Yt2XV/uN2ndBegDQbT/\r\n4fPi94MqSr97wjBGO0zgVpMUp+r33Mbbo5BtWR5aTJZX/c7CMNw37RtcD/UQ\r\nx4bQSrB69qof3hI9wMYlaUiVET+xozO1kpY=\r\n=pPQS\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.5_1676402566808_0.6311964723828645"},"_hasShrinkwrap":false},"3.0.6":{"name":"scroll-into-view-if-needed","version":"3.0.6","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","import":"./dist/index.js","require":"./dist/index.cjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^3.0.0"},"devDependencies":{"@sanity/pkg-utils":"^2.2.5","@sanity/semantic-release-preset":"^4.0.0","cross-env":"^7.0.3","prettier":"^2.8.4","prettier-plugin-packagejson":"^2.4.3","rimraf":"^4.1.2","typescript":"^4.9.5"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"b08f6418753573c1c9fd9abb7de51b1204bcfe6f","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.6","_nodeVersion":"18.14.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-x+CW0kOzlFNOnseF0DBr0AJ5m+TgGmSOdEZwyiZW0gV87XBvxQKw5A8DvFFgabznA68XqLgVX+PwPX8OzsFvRA==","shasum":"2c803a509c1036bc4a9c009fecc5c145f87e47cf","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.6.tgz","fileCount":10,"unpackedSize":39060,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGAMY1P9pwRFd5kWviW5dpLsdegB9HJSOszxH1922nqEAiEA5Ocdz9eFNYEDyUetKhczBXpHL/lnvjfxvIUerLauGAM="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6+QJACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqTThAAlk4dijaT/6bemVmHyTONLmg1K1rzQtaB0NLWD6MAmj92l+lQ\r\nhNaW+yCXXErwstAlKPjopppNQ2OSXbV70ftjHIjmwzb/9heyHoa0oX0NKHUt\r\n/MZ27yUPn/7MXhySQKtLV5PzoYMKnJpBjdyGeBpBSKmajhj0P4fnq+BDqC6Y\r\nKGDMCU8eEjuuoVi+8DfpDRP35GaQoZDLzKREapigYhS9NAakNnM5LhKSKH8m\r\nAUndL6idfvjYczGP1NLY+8L43gQKp/BcPjNMvOypcgCROLSsWuhbK8pYXspD\r\nVfbg6gPeFXB6Dm64P8IrcfGEO0sacDsWm5a7fqU0Qjz0f7bmSaJSsmBkUMJS\r\ndHmgiUyGiGmA7ggf5wh3nb9enI3ouImc2LBcR3T5vcRxuNHgZRVIq7xAwvAh\r\nZ9wxj3JvzBhQaHIXfSJfr4UkTQOwUCPV6bWDX0qooKz3C83c2hvO5XtoxOnZ\r\n1nH4gKITsQwJYuQgBg02Stoy0iI7Vib96yJIluUTiUXjZJg5o37yKUWFf8PG\r\nWiIxUP/hmAFdBoiyNYPiuXod1ZDxXILsE6hFH+g7b1NkVfK9Sqr8yr7d6zAV\r\nBw2d+pNARmOGPY7rGbghKjv1TzHG2EahqYfW6fMuiSPnZfbZnN1aYYioc/re\r\nCQ/e2PPqO5aNUrJzH+I398Z8M/xu/mnW97k=\r\n=brNI\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.6_1676403720807_0.605551440100143"},"_hasShrinkwrap":false},"3.0.7":{"name":"scroll-into-view-if-needed","version":"3.0.7","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","import":"./dist/index.js","require":"./dist/index.cjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^3.0.0"},"devDependencies":{"@sanity/pkg-utils":"^2.2.5","@sanity/semantic-release-preset":"^4.0.0","cross-env":"^7.0.3","prettier":"^2.8.4","prettier-plugin-packagejson":"^2.4.3","rimraf":"^4.1.2","typescript":"^4.9.5"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"a64fa27b80b073b0292143d9fe545944b7b11102","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.7","_nodeVersion":"18.15.0","_npmVersion":"8.19.4","dist":{"integrity":"sha512-Hr094AIeUq/Du9QWTo+EQA2ygzasu13KltO4TuVqAMf1ioIAIOdf/cDzK4+URe7A81IzdXf5rxMXBpz4k2IdxQ==","shasum":"c41d9709aac3776a25c5c0ead442afe7420a9e3c","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.7.tgz","fileCount":10,"unpackedSize":41478,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD7vKychwoMX6IHbnh3ZYbq4y61wyhyg18cbmxbomIVpAIgIQLWnYdft8AZjLqD7Vz9AtwOscPN7ZsoUe6o5BWPbXc="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkLtwsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrg0w//e4a+PJKHAn4vHwS7rp2F993S06aLQtlyaavO7JLyJDHm2Oc7\r\nnTdIS6tEIW2FiEsQ2mRJWa1uJLHgqZXz05QGbtpnsePpWyH7rgbGX96DijEg\r\n7Yeca1jJzNmrNhG/V7DcFCLNWTLbSnKODVwln2p8ch8LmqhNZtVOrAPqOhP5\r\n6DO2hadlThAGFN70u/eXw9ZX2RxTuKMOrIuZJSuwNEkzWmS9BHsX4jN95iXl\r\nBx55JgaowTH5SP/Q/lYIGknWCnF0UOpQMAYKbalohnRmIh9f8fLQXZR5r2/d\r\nteN4QKFkqhhUMx1jTs8zYHWXL0KT3elb5kpbaGFjFRKVIvDe958f1B0PBuK9\r\nvFSbu4hUmoV4XFZZpqilHdYF2ehEkzPneSuHENcp80VhFVXCwvHOGDhDLaiM\r\n6cksGKkwB5mIdWdf5Vg9jz1a1vbbFjmioTjbrPXq+oBee4Dq6/aMYaXobwoA\r\nbLVvOUewFMkWO2k8NVYYkzSL4z/T6HerFMf726UcAuVXrpuQNc4NQOKrt+R5\r\nHVRloZdyg5c4t/OSifUp6qcyK4UTW+870j7Lgxqp3sOeVbp90hSeZJsIUPFA\r\nfp/Pfpkd4p+ghgj7HUHqFOebRdInMxFdwwItFRGOWstevljj08Y4Rhk5RWIn\r\n/bwSzpgjgn2vl3f6mAlSBUaG3DHcZz7Ihuc=\r\n=AXLb\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.7_1680792620121_0.9570559461248276"},"_hasShrinkwrap":false},"3.0.8":{"name":"scroll-into-view-if-needed","version":"3.0.8","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"commonjs","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","require":"./dist/index.js","import":"./dist/index.mjs","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.js","module":"./dist/index.mjs","source":"./src/index.ts","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^3.0.1"},"devDependencies":{"@sanity/pkg-utils":"^2.2.5","@sanity/semantic-release-preset":"^4.0.0","cross-env":"^7.0.3","prettier":"^2.8.4","prettier-plugin-packagejson":"^2.4.3","rimraf":"^4.1.2","typescript":"^5.0.0"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"45b59ca6229447cd7f6880dd0d2f551b531cd612","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.8","_nodeVersion":"18.15.0","_npmVersion":"9.6.4","dist":{"integrity":"sha512-gHw7Dia3koOUlJvOJnxL9VCqGEmh5kf449FrvhnG9K28D9UXqdkQtw9nUnkauPcdadM3GuPD1J8XgdiPpFtHyg==","shasum":"7f2a3c49ecb0df35f41b8ad61245af351b551b2c","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.8.tgz","fileCount":10,"unpackedSize":41459,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHryI+mQpdrfB5A/3qRNFzLVTFMHruqtxt0CZUVE+wboAiEAngN94SmQO4AtZwZK2ErSP2/aMg0SM8NHEwowBne5pz0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMezsACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrWog/7BIKTUoTRvekyxZd44swzJ4Z0duLxBLX135C63GS9DTHGm+/s\r\nCIrFAuk2NV56I+g+OUbjt0BdO8HpIy/hjpD8vZ9I5EGUsUUi/MvRTrfrPFa5\r\nogpgDXcfZ20LfQbWNv9zttY1nQ0cJBgPNHWJ6R2F/T+JnnQfrxl9Z0VBOjtP\r\nTxoNmtvl6rDnoqm8si1EAv+eb8ywtdvbTGaFUKJaorpmRFmrWGAAnHeofgtM\r\nYMV0aofzVRhvPtRSSYTWU2ja1okUfR7ELAv1vHLvslg2igiVSbXu0Ol+pUSN\r\nwLLfWD9INAipVGuwko+Mcu3trf9f2XOm88baRYnQsPYvwYN26uhna0BbAa6K\r\niwEouzJRUz8Raqu/7PA0ZQblPaQVQ7t4/DwoqtcFf9w+OIBGapfY50vuMw2c\r\nMLnEX6gromdH8Evorho8TRwrxSKSdSVLThS8VHlATRIsUTkJoV8vRVyFuInh\r\nnnNqIO8u+mho+4GxWp1EBsESgrFqa+YF6WSLkN3RdPRetxVwVLZogrUl9Ooj\r\nqEmNcXynpRqKg8qpvLvBeFBciaETiRM8WumGWL9AZ361PJKHUssmj4u7CdUo\r\nsysg9G+VOjSs4g0+wUmOV851Kb5cgm0AB+Z78i8jVFUWE57GGNvFs7Z94ewE\r\npJPOyimREu/tRK0Bg0qAancshYsuflzFBSI=\r\n=9GSJ\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.8_1680993516763_0.7302275218128227"},"_hasShrinkwrap":false},"3.0.9":{"name":"scroll-into-view-if-needed","version":"3.0.9","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","require":"./dist/index.cjs","import":"./dist/index.js","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","source":"./src/index.ts","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^3.0.2"},"devDependencies":{"@sanity/pkg-utils":"^2.2.5","@sanity/semantic-release-preset":"^4.0.0","cross-env":"^7.0.3","prettier":"^2.8.4","prettier-plugin-packagejson":"^2.4.3","rimraf":"^4.1.2","typescript":"^5.0.0"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"f9a34d595c874c7ff0af3112bd1e3f6abee28cbc","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.9","_nodeVersion":"18.15.0","_npmVersion":"9.6.4","dist":{"integrity":"sha512-El9s4RTy0DVX4sBHSt2BnyXVw40zQ7V7jG3NDWoLdTWlrEnc7RCjajwQy+ufd/ptGmY2zxh2l7Y1o8nq0CAovQ==","shasum":"f168a45b3f4b300a09f4e018ae8327696ea59eff","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.9.tgz","fileCount":10,"unpackedSize":41457,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC2xyyjtdwDD0u8yWwRDE9ABrMzb3//GcAU5uNMpjC6dwIhAOquAsB6qw+1I4Wnf3GG+gaRGP1fSI0sl86JbMz87koB"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkMx2mACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqvwA/+Ot6KVy/fbkPIuqTmXZ6DQJ6RYYirZSE5KqvIUE58nh3Mbk5m\r\n4+01PnCs6vZeELQwCiu88dbTGwmiXyg2A0Xib0sqCbbvBP6kvRyEof3VRByj\r\nfptnDzR7HJkDn2YlXxVYJ4d2DERleM+tiCXJ37aPr/lb+fJG9aObkhT2VYqe\r\nRDq2Nv04OiDIO6SLSaaktZ0vSNrIuQQlZLrCmFMq9KznmHwfRlOcky1ky6L5\r\nUfTiOASRLd7yJgOxJ4l35TnsD5EFUbdfWjajUWto36gUqNxDjulEcOjIeN6W\r\nXXcIrRiM3CKKdxO3iz8SFonIFB3uzgat3SsjSRE9RnDoyQamCRAeStbwFJZF\r\nU8d4FWGW20jbOC34R0ZtSmHF3+/1+e9RbmsHFN+zxcbl6AFgx6EEhypikCrx\r\n0GfZadVDD4JKzKPU0kXGlIBpSZK5t6fj18Bg0XBY9LV9uoBaKMASY37QHLCw\r\nT9PHA0rXIfFZWDhQlMvRj4M0w83wq3DQWyF5SR+XiRJPLfTCUTB+LjL/7KM4\r\nKIznYBU/W1fE+MbnbwHuN4vN4hpP4aO5M+DK1GdhXCo7YbrP25JZithQEbBB\r\nFxG6IlgQ8h/dQJ0sj40LjNf5H5RZq9wubW9O6E80EteaYbdLZhxCQlfETuHp\r\nuJx0fgmfitGdrlgrtaX8y/aUuHfxXcBw+RI=\r\n=dcbU\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.9_1681071526405_0.07533760000739465"},"_hasShrinkwrap":false},"3.0.10":{"name":"scroll-into-view-if-needed","version":"3.0.10","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","require":"./dist/index.cjs","import":"./dist/index.js","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","source":"./src/index.ts","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^3.0.2"},"devDependencies":{"@sanity/pkg-utils":"^2.2.5","@sanity/semantic-release-preset":"^4.0.0","cross-env":"^7.0.3","prettier":"^2.8.4","prettier-plugin-packagejson":"^2.4.3","rimraf":"^4.1.2","typescript":"^5.0.0"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"065641e3c9a243c4524c8ceb71de0e1f44ea9972","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.0.10","_nodeVersion":"18.15.0","_npmVersion":"9.6.4","dist":{"integrity":"sha512-t44QCeDKAPf1mtQH3fYpWz8IM/DyvHLjs8wUvvwMYxk5moOqCzrMSxK6HQVD0QVmVjXFavoFIPRVrMuJPKAvtg==","shasum":"38fbfe770d490baff0fb2ba34ae3539f6ec44e13","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.0.10.tgz","fileCount":10,"unpackedSize":41509,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF+5APdLTJObMuA5mMIgUxtUzp4LHEYayP2gRt5lAXvxAiEAg/k2ecVUkzDLvsc78G+dkFCPMzrM4gPM8bNB9LKBkkg="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkNCt5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp5Cw/9EI0tiBi4zk0eDwlfl0BGWM7bHtw4+B2L3FHGCmXq6rNJdU9m\r\n4nMAFDtXP0g9Ayi9m5vGKm7YrxF1RNgfmAdkPqij8VfO7w4hrH80IH6hGM/T\r\nb7TncOgWWUoCUINSV4Dv1Spq03XuC7SwLof0bRQ4w78x3F31uXS6de/X4Zpo\r\niYi8e3NoevYMEv3OconEMSoOA0lRt0rSaD3AYSS5O9tUx1WtOjYAFwEtb697\r\nWeM/L4NE/xIiOM8FgYx0HRCuTomq/VHNN9BEZ/Km4axcGI4yL2VmExUD+o+3\r\nSYzJgH/5WdvzTTb3zxP7+zkDwVvi3jx91KZwBCw/liEKu4HaMH/tlmi/Vc68\r\nJNmc2F6NzlBQgKu9acCUaiTTaadQrPdLWJjNtbJfERWT/yiRdN+XMNw1lBzi\r\ngt9ejhbFOBqrqoc9U9ref04fnaGjUTzBkEC3bQOL/P5HTyRMR92xWFat/4tS\r\n2VjwXwN7dh/VQtnIAWyaA5ouaqk5aO8GOzbv3UzqBLTaOMVJx5ZFCZePVDn0\r\nPTHSHICts+zI3EUA/FKh0IbpnTFT+pSdJAYiLrsfaH5RCTMZagmpPByAzK3N\r\nmqrAPc1Rh1xqArcroORso7hcHPmD5bKHas+TXG2trsxtg9q9Wbeco4c/t1ej\r\nTDvCipQRRGtn8HFWs8MGm/46k5i8JEYRSdQ=\r\n=pST7\r\n-----END PGP SIGNATURE-----\r\n"},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.0.10_1681140600894_0.5899992504930633"},"_hasShrinkwrap":false},"3.1.0":{"name":"scroll-into-view-if-needed","version":"3.1.0","description":"Ponyfill for upcoming Element.scrollIntoView() APIs like scrollMode: if-needed, behavior: smooth and block: center","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"homepage":"https://scroll-into-view.dev","repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"license":"MIT","author":{"name":"Cody Olsen"},"sideEffects":false,"type":"module","exports":{".":{"types":"./dist/index.d.ts","source":"./src/index.ts","require":"./dist/index.cjs","import":"./dist/index.js","default":"./dist/index.js"},"./package.json":"./package.json"},"main":"./dist/index.cjs","module":"./dist/index.js","source":"./src/index.ts","typings":"./dist/index.d.ts","scripts":{"prebuild":"npm run clean","build":"pkg build --strict","clean":"npx rimraf 'dist'","prepublishOnly":"npm run build","typecheck":"tsc && tsc --noEmit -p tests/typescript"},"browserslist":["> 0.2% and supports es6-module and supports es6-module-dynamic-import and not dead and not IE 11","maintained node versions"],"prettier":{"semi":false,"singleQuote":true},"dependencies":{"compute-scroll-into-view":"^3.0.2"},"devDependencies":{"@sanity/pkg-utils":"^2.2.5","@sanity/semantic-release-preset":"^4.0.0","cross-env":"^7.0.3","prettier":"^2.8.4","prettier-plugin-packagejson":"^2.4.3","rimraf":"^4.1.2","typescript":"^5.0.0"},"bundlesize":[{"path":"./dist/index.js","maxSize":"3.3 kB","compression":"none"}],"gitHead":"8ac397fc9119014eae13069615b16ef4e45b3d9f","bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"},"_id":"scroll-into-view-if-needed@3.1.0","_nodeVersion":"18.17.1","_npmVersion":"9.6.4","dist":{"integrity":"sha512-49oNpRjWRvnU8NyGVmUaYG4jtTkNonFZI86MmGRDqBphEK2EXT9gdEUoQPZhuBM8yWHxCWbobltqYO5M4XrUvQ==","shasum":"fa9524518c799b45a2ef6bbffb92bcad0296d01f","tarball":"https://mirrors.huaweicloud.com/repository/npm/scroll-into-view-if-needed/-/scroll-into-view-if-needed-3.1.0.tgz","fileCount":10,"unpackedSize":44784,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD8VGJPFJmSoUGaklC1cMuT7wd5viq5i1aCZvde7xyVgwIgJxv+QGkCj4F3xGWAsutpEYvz/M4RUvWgjbhAKidfpqs="}]},"_npmUser":{"name":"stipsan","email":"stipsan@gmail.com"},"directories":{},"maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/scroll-into-view-if-needed_3.1.0_1694618592037_0.6153999026847214"},"_hasShrinkwrap":false}},"readme":"[![npm stat](https://img.shields.io/npm/dm/scroll-into-view-if-needed.svg?style=flat-square)](https://npm-stat.com/charts.html?package=scroll-into-view-if-needed)\n[![npm version](https://img.shields.io/npm/v/scroll-into-view-if-needed.svg?style=flat-square)](https://www.npmjs.com/package/scroll-into-view-if-needed)\n[![gzip size][gzip-badge]][unpkg-dist]\n[![size][size-badge]][unpkg-dist]\n[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=flat-square)](https://github.com/semantic-release/semantic-release)\n[![BrowserStack Status](https://www.browserstack.com/automate/badge.svg?style=flat-square&badge_key=ejZ6OUtTaS9rZFFOYzlkeHlwTzMwSWxpR0FzWFcwOW5TS3ROTmlSdXMrVT0tLVhrVk9La2lCb1o4Y05mcmNXVnAvdkE9PQ==--d17668b8aba5091e4ef3a58927b8209e50b0a788)](https://www.browserstack.com/automate/public-build/ejZ6OUtTaS9rZFFOYzlkeHlwTzMwSWxpR0FzWFcwOW5TS3ROTmlSdXMrVT0tLVhrVk9La2lCb1o4Y05mcmNXVnAvdkE9PQ==--d17668b8aba5091e4ef3a58927b8209e50b0a788)\n\n![scroll-into-view-if-needed](https://user-images.githubusercontent.com/81981/39476436-34a4f3ae-4d5c-11e8-9d1c-7fa2fa6288a0.png)\n\nThis used to be a [ponyfill](https://ponyfill.com) for\n`Element.scrollIntoViewIfNeeded`. Since then the CSS working group have decided to implement its features in `Element.scrollIntoView` as the option `scrollMode: \"if-needed\"`. Thus this library got rewritten to implement that spec instead of the soon to be deprecated one.\n\n- [Demo](#demo)\n- [Install](#install)\n- [Usage](#usage)\n - [Ponyfill smooth scrolling](#ponyfill-smooth-scrolling)\n - [Load time](#load-time)\n - [Consistency](#consistency)\n - [Quality](#quality)\n- [API](#api)\n - [scrollIntoView(target, \\[options\\])](#scrollintoviewtarget-options)\n - [options](#options)\n - [behavior](#behavior)\n - [`'auto'`](#auto)\n - [`'smooth'`](#smooth)\n - [`Function`](#function)\n - [block](#block)\n - [inline](#inline)\n - [scrollMode](#scrollmode)\n - [boundary](#boundary)\n - [skipOverflowHiddenElements](#skipoverflowhiddenelements)\n- [TypeScript support](#typescript-support)\n- [Breaking API changes from v1](#breaking-api-changes-from-v1)\n - [v1](#v1)\n - [v2](#v2)\n - [centerIfNeeded](#centerifneeded)\n - [v1](#v1-1)\n - [v2](#v2-1)\n - [duration](#duration)\n - [v1](#v1-2)\n - [v2](#v2-2)\n - [easing](#easing)\n - [handleScroll](#handlescroll)\n - [offset](#offset)\n - [scrollIntoViewIfNeeded(target, \\[centerIfNeeded\\], \\[animateOptions\\], \\[finalElement\\], \\[offsetOptions\\])](#scrollintoviewifneededtarget-centerifneeded-animateoptions-finalelement-offsetoptions)\n- [Related packages](#related-packages)\n- [Who's using this](#whos-using-this)\n- [Sponsors](#sponsors)\n\n# [Demo](https://scroll-into-view.dev)\n\n# Install\n\n```bash\nnpm i scroll-into-view-if-needed\n```\n\nYou can also use it from a CDN:\n\n```js\nconst { default: scrollIntoView } = await import(\n 'https://esm.sh/scroll-into-view-if-needed'\n)\n```\n\n# Usage\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n\nconst node = document.getElementById('hero')\n\n// similar behavior as Element.scrollIntoView({block: \"nearest\", inline: \"nearest\"})\n// only that it is a no-op if `node` is already visible\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView\n// same behavior as Element.scrollIntoViewIfNeeded()\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, {\n scrollMode: 'if-needed',\n block: 'nearest',\n inline: 'nearest',\n})\n\n// same behavior as Element.scrollIntoViewIfNeeded(true) without the \"IfNeeded\" behavior\n// see: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded\nscrollIntoView(node, { block: 'center', inline: 'center' })\n// scrollMode is \"always\" by default\n\n// smooth scroll if the browser supports it and if the element isn't visible\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\n## Ponyfill smooth scrolling\n\nWhat does ponyfilling smooth scrolling mean, and why is it implemented in [`smooth-scroll-into-view-if-needed`](https://github.com/scroll-into-view/smooth-scroll-into-view-if-needed) instead?\nThe answer is bundlesize. If this package adds smooth scrolling to browsers that's missing it then the overall bundlesize increases regardless of wether you use this feature or not.\n\nPut it this way:\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n// Even if all you do is this\nscrollIntoView(node, { scrollMode: 'if-needed' })\n// You would end up with the same bundlesize as people who need\n// smooth scrolling to work in browsers that don't support it natively\nscrollIntoView(node, { behavior: 'smooth', scrollMode: 'if-needed' })\n```\n\nThat's why only native smooth scrolling is supported out of the box. There are two common ways you can smooth scroll browsers that don't support it natively. Below is all three, which one is best for you depends on what is the most important to your use case:: load time, consistency or quality.\n\n### Load time\n\nIn many scenarios smooth scrolling can be used as a progressive enhancement. If the user is on a browser that don't implement smooth scrolling it'll simply scroll instantly and your bundlesize is only as large as it has to be.\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n\nscrollIntoView(node, { behavior: 'smooth' })\n```\n\n### Consistency\n\nIf a consistent smooth scrolling experience is a priority and you really don't want any surprises between different browsers and enviroments. In other words don't want to be affected by how a vendor might implement native smooth scrolling, then [`smooth-scroll-into-view-if-needed`](https://github.com/scroll-into-view/smooth-scroll-into-view-if-needed) is your best option. It ensures the same smooth scrolling experience for every browser.\n\n```js\nimport smoothScrollIntoView from 'smooth-scroll-into-view-if-needed'\n\nsmoothScrollIntoView(node, { behavior: 'smooth' })\n```\n\n### Quality\n\nIf you want to use native smooth scrolling when it's available, and fallback to the smooth scrolling ponyfill:\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nimport smoothScrollIntoView from 'smooth-scroll-into-view-if-needed'\n\nconst scrollIntoViewSmoothly =\n 'scrollBehavior' in document.documentElement.style\n ? scrollIntoView\n : smoothScrollIntoView\n\nscrollIntoViewSmoothly(node, { behavior: 'smooth' })\n```\n\n# API\n\n## scrollIntoView(target, [options])\n\n> New API introduced in `v1.3.0`\n\n## options\n\nType: `Object`\n\n### behavior\n\nType: `'auto' | 'smooth' | Function`
Default: `'auto'`\n\n> Introduced in `v2.1.0`\n\n#### `'auto'`\n\nThe auto option unlocks a few interesting opportunities.\nThe browser will decide based on user preferences wether it should smooth scroll or not.\nOn top of that you can control/override scrolling behavior through the [`scroll-behavior`](https://developer.mozilla.org/en-US/docs/Web/CSS/scroll-behavior) CSS property.\n\nSome people get [motion sick from animations](https://css-tricks.com/smooth-scrolling-accessibility/#article-header-id-5). You can use CSS to turn off smooth scrolling in those cases to avoid making them dizzy:\n\n```css\nhtml,\n.scroll-container {\n overflow: scroll;\n}\n\nhtml,\n.scroll-container {\n scroll-behavior: smooth;\n}\n@media (prefers-reduced-motion) {\n html,\n .scroll-container {\n scroll-behavior: auto;\n }\n}\n```\n\n#### `'smooth'`\n\nUsing `behavior: 'smooth'` is the easiest way to smooth scroll an element as it does not require any CSS, just a browser that implements it. [More information.](#ponyfill-smooth-scrolling)\n\n#### `Function`\n\nWhen given a function then this library will only calculate what should be scrolled and leave it up to you to perform the actual scrolling.\n\nThe callback is given an array over actions. Each action contain a reference to an element that should be scrolled, with its top and left scrolling coordinates.\nWhat you return is passed through, allowing you to implement a Promise interface if you want to (check [`smooth-scroll-into-view-if-needed`](https://github.com/scroll-into-view/smooth-scroll-into-view-if-needed) to see an example of that).\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\nconst node = document.getElementById('hero')\n\nscrollIntoView(node, {\n // Your scroll actions will always be an array, even if there is nothing to scroll\n behavior: (actions) =>\n // list is sorted from innermost (closest parent to your target) to outermost (often the document.body or viewport)\n actions.forEach(({ el, top, left }) => {\n // implement the scroll anyway you want\n el.scrollTop = top\n el.scrollLeft = left\n\n // If you need the relative scroll coordinates, for things like window.scrollBy style logic or whatever, just do the math\n const offsetTop = el.scrollTop - top\n const offsetLeft = el.scrollLeft - left\n }),\n // all the other options (scrollMode, block, inline) still work, so you don't need to reimplement them (unless you really really want to)\n})\n```\n\nCheck the demo to see an [example with popmotion and a spring transition](https://scroll-into-view.dev/#custom-transition).\n\n> If you only need the custom behavior you might be better off by using the compute library directly: https://github.com/scroll-into-view/compute-scroll-into-view\n\n### [block](https://scroll-into-view.dev/#scroll-alignment)\n\nType: `'start' | 'center' | 'end' | 'nearest'`
Default: `'center'`\n\n> Introduced in `v2.1.0`\n\n[More info.](https://github.com/scroll-into-view/compute-scroll-into-view#block)\n\n### [inline](https://scroll-into-view.dev/#scroll-alignment)\n\nType: `'start' | 'center' | 'end' | 'nearest'`
Default: `'nearest'`\n\n> Introduced in `v2.1.0`\n\n[More info.](https://github.com/scroll-into-view/compute-scroll-into-view#inline)\n\n### [scrollMode](https://scroll-into-view.dev/#scrolling-if-needed)\n\nType: `'always' | 'if-needed'`
Default: `'always'`\n\n> Introduced in `v2.1.0`\n\n[More info.](https://github.com/scroll-into-view/compute-scroll-into-view#scrollmode)\n\n### [boundary](https://scroll-into-view.dev/#limit-propagation)\n\nType: `Element | Function`\n\n> `Function` introduced in `v2.1.0`, `Element` introduced in `v1.1.0`\n\n[More info.](https://github.com/scroll-into-view/compute-scroll-into-view#boundary)\n\n### skipOverflowHiddenElements\n\nType: `Boolean`
Default: `false`\n\n> Introduced in `v2.2.0`\n\n[More info.](https://github.com/scroll-into-view/compute-scroll-into-view#skipoverflowhiddenelements)\n\n# TypeScript support\n\nWhen the library itself is built on TypeScript there's no excuse for not publishing great library definitions!\n\nThis goes beyond just checking if you misspelled `behavior: 'smoooth'` to the return type of a custom behavior:\n\n```typescript\nconst scrolling = scrollIntoView(document.body, {\n behavior: actions => {\n return new Promise(\n ...\n )\n },\n})\n// TypeScript understands that scrolling is a Promise, you can safely await on it\nscrolling.then(() => console.log('done scrolling'))\n```\n\nYou can optionally use a generic to ensure that `options.behavior` is the expected type.\nIt can be useful if the custom behavior is implemented in another module:\n\n```typescript\nconst customBehavior = actions => {\n return new Promise(\n ...\n )\n }\n\nconst scrolling = scrollIntoView>(document.body, {\n behavior: customBehavior\n})\n// throws if customBehavior does not return a promise\n```\n\nThe options are available for you if you are wrapping this libary in another abstraction (like a React component):\n\n```typescript\nimport scrollIntoView, { type Options } from 'scroll-into-view-if-needed'\n\ninterface CustomOptions extends Options {\n useBoundary?: boolean\n}\n\nfunction scrollToTarget(selector, options: Options = {}) {\n const { useBoundary = false, ...scrollOptions } = options\n return scrollIntoView(document.querySelector(selector), scrollOptions)\n}\n```\n\n# Breaking API changes from v1\n\nSince v1 ponyfilled Element.scrollIntoViewIfNeeded, while v2 ponyfills Element.scrollIntoView, there are breaking changes from the differences in their APIs.\n\nThe biggest difference is that the new behavior follows the spec, so the \"if-needed\" behavior is **not enabled by default:**\n\n### v1\n\n```js\nimport scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'\n\n// Only scrolls into view if needed, and to the nearest edge\nscrollIntoViewIfNeeded(target)\n```\n\n### v2\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n\n// Must provide these options to behave the same way as v1 default\nscrollIntoView(target, { block: 'nearest', scrollMode: 'if-needed' })\n```\n\n## centerIfNeeded\n\nThe old `Element.scrollIntoView` api only had two settings, align to top or bottom. [`Element.scrollIntoViewIfNeeded`](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoViewIfNeeded) had two more, align to the center or nearest edge.\nThe `Element.scrollIntoView` spec now supports these two modes as `block: 'center'` and `block: 'nearest'`.\nBreaking changes sucks, but on the plus side your code is now more portable and will make this library easier to delete from your codebase on the glorious day browser support is good enough.\n\n### v1\n\n```js\nimport scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'\n\n// v1.3.x and later\nscrollIntoViewIfNeeded(target, { centerIfNeeded: true })\nscrollIntoViewIfNeeded(target, { centerIfNeeded: false })\n// v1.2.x and earlier\nscrollIntoViewIfNeeded(target, true)\nscrollIntoViewIfNeeded(target, false)\n```\n\n### v2\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n\nscrollIntoView(target, { block: 'center' })\nscrollIntoView(target, { block: 'nearest' })\n```\n\n## duration\n\n[More information.](#ponyfill-smooth-scrolling)\n\n### v1\n\n```js\nimport scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'\n\nscrollIntoViewIfNeeded(target, { duration: 300 })\n```\n\n### v2\n\n```js\nimport scrollIntoView from 'scroll-into-view-if-needed'\n// or\nimport scrollIntoView from 'smooth-scroll-into-view-if-needed'\n\nscrollIntoView(target, { behavior: 'smooth' })\n```\n\n## easing\n\nThis feature is removed, but you can achieve the same thing by implementing [`behavior: Function`](#function).\n\n## handleScroll\n\nThis is replaced with [`behavior: Function`](#function) with one key difference. Instead of firing once per element that should be scrolled, the new API only fire once and instead give you an array so you can much easier batch and scroll multiple elements at the same time. Or sync scrolling with another element if that's the kind of stuff you're into, I don't judge.\n\n```diff\n-import scrollIntoViewIfNeeded from 'scroll-into-view-if-needed'\n+import scrollIntoView from 'scroll-into-view-if-needed'\n\n-scrollIntoViewIfNeeded(node, {handleScroll: (el, {scrollTop, scrollLeft}) => {\n- el.scrollTop = scrollTop\n- el.scrollLeft = scrollLeft\n-}})\n+scrollIntoView(node, {behavior: actions.forEach(({el, top, left}) => {\n+ el.scrollTop = top\n+ el.scrollLeft = left\n+})})\n```\n\n## offset\n\nThis was always a buggy feature and warned against using in v1 as it might get dropped.\nIt's much safer to use CSS wrapper elements for this kind of thing.\n\n## scrollIntoViewIfNeeded(target, [centerIfNeeded], [animateOptions], [finalElement], [offsetOptions])\n\nThis API signature were warned to be dropped in `v2.0.0`, and it was.\n\n# Related packages\n\n- [compute-scroll-into-view](https://www.npmjs.com/package/compute-scroll-into-view) - the engine used by this library.\n- [smooth-scroll-into-view-if-needed](https://www.npmjs.com/package/smooth-scroll-into-view-if-needed) – ponyfills smooth scrolling.\n- [react-scroll-into-view-if-needed](https://www.npmjs.com/package/react-scroll-into-view-if-needed) – A thin wrapper to scroll your component into view.\n- [scroll-polyfill](https://www.npmjs.com/package/scroll-polyfill) – polyfills smooth scrolling.\n- [Don't be shy, add yours!](https://github.com/scroll-into-view/scroll-into-view-if-needed/edit/main/README.md)\n\n# Who's using this\n\n- [zeit.co/docs](https://github.com/zeit/docs) – Documentation of ZEIT Now and other services.\n- [Selenium IDE](https://github.com/SeleniumHQ/selenium-ide) – An integrated development environment for Selenium scripts.\n- [Box UI Elements](https://github.com/box/box-ui-elements) – Box UI Elements are pre-built UI components that allow developers to add elements of the main Box web application into their own applications.\n- [react-responsive-ui](https://github.com/catamphetamine/react-responsive-ui) – Responsive React UI components.\n- [Mineral UI](https://github.com/mineral-ui/mineral-ui) –\n A design system and React component library for the web that lets you quickly build high-quality, accessible apps.\n- [Covalent](https://github.com/Teradata/covalent) – Teradata UI Platform built on Angular Material.\n- [docs.expo.io](https://github.com/expo/expo-docs) – Documentation for Expo, its SDK, client and services.\n- [Add yourself to the list \uD83D\uDE09](https://github.com/scroll-into-view/scroll-into-view-if-needed/edit/main/README.md)\n\n[gzip-badge]: https://img.shields.io/bundlephobia/minzip/scroll-into-view-if-needed?label=gzip%20size&style=flat-square\n[size-badge]: https://img.shields.io/bundlephobia/min/scroll-into-view-if-needed?label=size&style=flat-square\n[unpkg-dist]: https://unpkg.com/scroll-into-view-if-needed/dist/\n\n# Sponsors\n\nThanks to [BrowserStack](https://www.browserstack.com) for sponsoring cross browser and device testing \uD83D\uDE04\n\n\n","maintainers":[{"name":"stipsan","email":"stipsan@gmail.com"}],"time":{"modified":"2023-09-13T15:23:12.500Z","created":"2016-04-18T21:35:30.141Z","1.0.0":"2016-04-18T21:35:30.141Z","1.0.1":"2016-04-18T21:36:20.844Z","1.0.2":"2016-04-18T21:42:36.196Z","1.0.3":"2016-10-01T14:23:37.173Z","1.0.4":"2016-10-31T19:57:56.739Z","1.0.5":"2016-11-12T21:06:24.419Z","1.0.6":"2016-11-17T16:44:15.098Z","1.0.7":"2017-03-14T10:36:40.981Z","1.1.0":"2017-03-29T16:59:59.616Z","1.1.1":"2017-10-01T02:42:08.283Z","1.2.0":"2017-10-01T03:19:01.275Z","1.2.1":"2017-10-02T07:55:40.327Z","1.2.2":"2017-10-29T21:25:03.934Z","1.2.3":"2017-11-04T19:29:34.293Z","1.2.4":"2017-11-05T05:00:22.086Z","1.2.5":"2017-11-05T05:29:32.226Z","1.2.6":"2017-11-05T14:38:29.827Z","1.2.7":"2017-11-05T15:01:40.942Z","0.0.0-dev":"2017-11-05T15:33:27.382Z","1.2.8":"2017-11-05T15:40:48.933Z","1.3.0":"2017-11-12T03:59:15.542Z","1.4.0":"2017-11-16T23:46:00.055Z","1.4.1":"2017-11-21T23:58:55.199Z","1.5.0":"2018-02-25T23:34:41.072Z","2.0.0-alpha.2":"2018-04-22T18:33:20.569Z","2.0.0-alpha.3":"2018-04-22T18:38:16.841Z","2.0.0-alpha.f7841b3e":"2018-04-22T20:44:58.253Z","2.0.0-alpha.d4e115e7":"2018-04-22T20:48:57.367Z","2.0.0":"2018-04-22T22:25:15.887Z","2.0.0-alpha.4":"2018-04-27T22:39:22.113Z","2.0.1-alpha.0":"2018-04-27T23:22:41.374Z","2.0.1-alpha.1":"2018-04-28T16:12:49.283Z","1.5.1":"2018-04-28T17:19:31.864Z","2.1.0":"2018-04-28T18:01:58.001Z","2.1.1":"2018-04-29T20:11:26.437Z","2.1.2":"2018-04-29T22:21:54.138Z","2.1.3":"2018-05-01T21:32:24.450Z","2.1.4":"2018-05-01T22:00:52.354Z","2.1.5":"2018-05-01T22:15:38.027Z","2.1.6":"2018-05-07T20:30:59.596Z","2.1.7":"2018-05-08T11:32:52.240Z","2.2.0":"2018-05-11T14:28:24.611Z","2.2.1":"2018-05-13T01:18:51.586Z","2.2.2":"2018-05-13T21:49:16.557Z","2.2.3":"2018-05-27T14:49:11.819Z","2.2.4":"2018-05-27T15:05:52.048Z","2.2.5":"2018-06-08T22:32:39.467Z","2.2.6":"2018-06-12T22:06:44.387Z","2.2.7":"2018-06-24T19:48:09.999Z","2.2.8":"2018-06-25T23:16:09.843Z","2.2.9":"2018-07-01T21:38:42.057Z","2.2.10":"2018-07-03T18:27:31.361Z","2.2.11":"2018-07-05T21:37:19.935Z","2.2.12":"2018-07-18T00:48:11.196Z","2.2.13":"2018-07-18T16:18:16.759Z","2.2.14":"2018-07-18T21:09:20.314Z","2.2.15":"2018-07-21T19:51:41.183Z","2.2.16":"2018-07-21T23:06:45.729Z","2.2.17":"2018-10-04T21:21:56.561Z","2.2.18":"2018-10-07T01:50:36.520Z","2.2.19":"2018-10-07T12:33:22.055Z","2.2.20":"2018-10-14T21:09:33.129Z","2.2.21":"2020-01-03T13:21:19.893Z","2.2.22":"2020-01-03T13:28:32.373Z","2.2.23":"2020-01-22T22:40:39.227Z","2.2.24":"2020-01-23T08:38:43.208Z","2.2.25":"2020-05-27T18:26:30.705Z","2.2.26":"2020-09-02T14:30:20.813Z","2.2.27":"2021-02-24T03:07:27.959Z","2.2.28":"2021-03-22T23:40:05.519Z","2.2.29":"2022-02-02T12:48:10.897Z","2.2.30":"2022-11-29T07:05:51.591Z","2.2.31":"2022-11-29T10:32:31.006Z","3.0.0":"2022-12-01T07:54:25.208Z","3.0.1":"2022-12-01T08:41:41.861Z","3.0.2":"2022-12-01T09:53:55.469Z","3.0.3":"2022-12-01T10:27:54.522Z","3.0.4":"2023-01-08T02:33:18.257Z","3.0.5":"2023-02-14T19:22:46.951Z","3.0.6":"2023-02-14T19:42:01.022Z","3.0.7":"2023-04-06T14:50:20.318Z","3.0.8":"2023-04-08T22:38:36.962Z","3.0.9":"2023-04-09T20:18:46.627Z","3.0.10":"2023-04-10T15:30:01.082Z","3.1.0":"2023-09-13T15:23:12.302Z"},"homepage":"https://scroll-into-view.dev","keywords":["behavior-smooth","if-needed","polyfill","ponyfill","scroll","scroll-into-view","scrollIntoView","scrollIntoViewIfNeeded","scrollMode","smooth","smoothscroll","typescript"],"repository":{"type":"git","url":"git+https://github.com/scroll-into-view/scroll-into-view-if-needed.git"},"author":{"name":"Cody Olsen"},"license":"MIT","readmeFilename":"README.md","users":{"gdibble":true,"stipsan":true},"bugs":{"url":"https://github.com/scroll-into-view/scroll-into-view-if-needed/issues"}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/b7/b7/97d77623de2f7e8b983d96a1726277a821bdcecd3bd08eaf53b6cd62f9e88e77712f6bfe866a0c414973357ce0a3a9e988bb4158544d41c99ff7f1ea51dd b/frontend/.npm-cache/_cacache/content-v2/sha512/b7/b7/97d77623de2f7e8b983d96a1726277a821bdcecd3bd08eaf53b6cd62f9e88e77712f6bfe866a0c414973357ce0a3a9e988bb4158544d41c99ff7f1ea51dd new file mode 100644 index 0000000..8191665 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/b7/b7/97d77623de2f7e8b983d96a1726277a821bdcecd3bd08eaf53b6cd62f9e88e77712f6bfe866a0c414973357ce0a3a9e988bb4158544d41c99ff7f1ea51dd differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/b8/2d/cdd9e4861c0ffc637762edc1789741c9b1b8a7bc56ebb679199eb6f3ae301b46ee5d6215708dd45fbdbe3989195bf22b397dbd859ada3cbb52f7183598da b/frontend/.npm-cache/_cacache/content-v2/sha512/b8/2d/cdd9e4861c0ffc637762edc1789741c9b1b8a7bc56ebb679199eb6f3ae301b46ee5d6215708dd45fbdbe3989195bf22b397dbd859ada3cbb52f7183598da new file mode 100644 index 0000000..3d1f9e1 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/b8/2d/cdd9e4861c0ffc637762edc1789741c9b1b8a7bc56ebb679199eb6f3ae301b46ee5d6215708dd45fbdbe3989195bf22b397dbd859ada3cbb52f7183598da @@ -0,0 +1 @@ +{"_id":"js-tokens","_rev":"42-6053f2dc687f080c35a49eb4a844c708","name":"js-tokens","dist-tags":{"latest":"10.0.0"},"versions":{"0.1.0":{"name":"js-tokens","version":"0.1.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@0.1.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"78a0bdec6799c48128c005e1b885c05ab3567bb9","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-0.1.0.tgz","integrity":"sha512-MRf85a3DxOQxJJ07jPxQSJaun/UqD5Uqs3e74tGX+PEoTQdgWqNqNQyuk0XrNewFvjwb9b1/lXzjb710LozGhQ==","signatures":[{"sig":"MEUCIB9HeimuVr/Tg3Eyem07ggVfu8Ci1HbFiybZD8drWoffAiEA1aW70xS8TX7SDd7UgxGlaocI68ss6qk8QU33vDgkHgs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","scripts":{"test":"mocha"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git://github.com/lydell/js-tokens","type":"git"},"_npmVersion":"1.4.4","description":"A regex that tokenizes JavaScript.","directories":{},"devDependencies":{"mocha":"^1.17.1","coffee-script":"~1.7.1"}},"0.2.0":{"name":"js-tokens","version":"0.2.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@0.2.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"e80d3e39faad48fb88d3b81c33cb1a4e8f3d6d97","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-0.2.0.tgz","integrity":"sha512-ntxjvsZ8y+BinUHppSMwl6McHx0Yw7OcRJXUz7OEf7RPH9KRfDqjWyg0U+esDhUb0wwSD1viCfYe/lkkjvSe4Q==","signatures":[{"sig":"MEMCHzp3TBprNiPryqmhrrwpCuSf1fK94k0m0eAvtsv51+YCIDpScdsNGnm+4Hi4K+vpn5yjlbwyUcwtDq6+4TisbBKK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e80d3e39faad48fb88d3b81c33cb1a4e8f3d6d97","scripts":{"test":"mocha"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git://github.com/lydell/js-tokens","type":"git"},"_npmVersion":"1.4.9","description":"A regex that tokenizes JavaScript.","directories":{},"devDependencies":{"mocha":"^1.17.1","coffee-script":"~1.7.1"}},"0.3.0":{"name":"js-tokens","version":"0.3.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@0.3.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"f81c100024b8f51b9c883ea5ce61582f4feb11a3","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-0.3.0.tgz","integrity":"sha512-naE6ErJliJ2aFGlBX5VfNwMStrWOECDKR2p+h8aXqDBeiooYFb/cIUWaO22x6zQiwli0vI4lxciMVxRsR6uNSA==","signatures":[{"sig":"MEYCIQCK7UvefRMTIiIyP+ZmJ7QUVXEpIQqLKC2AtJ+fgYBwVwIhAImt5Nu1XTVIgiwCrhAJU7vUUmEQa0wmrAVxZ0B6zjcX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"f81c100024b8f51b9c883ea5ce61582f4feb11a3","gitHead":"ecac68aa369003730dc2f964bdb656088c609c93","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"https://github.com/lydell/js-tokens","type":"git"},"_npmVersion":"2.1.7","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"0.10.33","devDependencies":{"mocha":"^2.0.1","coffee-script":"^1.8.0"}},"0.3.1":{"name":"js-tokens","version":"0.3.1","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@0.3.1","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"ae3600436c9a79358a45dc100cf8ceaf02f386c6","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-0.3.1.tgz","integrity":"sha512-mwNTGrIAxGAgmtuYQr7xdmGERDJgCNwo/503Ch8jWQHG+UW/E2xe4CgWFi2K4XuzkgQh2LnUAutOL8TGJ6CWZw==","signatures":[{"sig":"MEUCIQCX+6AKg2ykSnggMV8oT7cA3NaKyOt1ypN4P56e2BQalAIgbtREo9GzdfSJHVLPxpo2KOP8bRfwO46yAN0GP3/d0A8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"ae3600436c9a79358a45dc100cf8ceaf02f386c6","gitHead":"08a7225043538e06b01450297b793e6b55f003c5","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"https://github.com/lydell/js-tokens","type":"git"},"_npmVersion":"2.1.16","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"0.10.35","devDependencies":{"mocha":"^2.0.1","coffee-script":"^1.8.0"}},"0.4.0":{"name":"js-tokens","version":"0.4.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@0.4.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"3ee9173eb6b4dcbc89ea2c79def34c883bb6a637","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-0.4.0.tgz","integrity":"sha512-xD3MjA5mFNao42PN2qEfPXXfER8k5DQKs0Oa7c5d9HKUlULPcgst22tn+GchGa1F7/+8olym43+Qo+iUTbNgwg==","signatures":[{"sig":"MEUCIGzLYY+dCeoOfGbYVCshAPB2FtRTPY83Mk4AdjEseYKYAiEA8PNFLcR8MoFtsufmOuDmGvCCvJYpjTjcMFdR84xyAjI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"3ee9173eb6b4dcbc89ea2c79def34c883bb6a637","gitHead":"06f5a30a3ef2957b5169f4f4c13fdf57ea028f79","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"https://github.com/lydell/js-tokens","type":"git"},"_npmVersion":"1.4.28","description":"A regex that tokenizes JavaScript.","directories":{},"devDependencies":{"mocha":"^2.0.1","coffee-script":"^1.8.0"}},"0.4.1":{"name":"js-tokens","version":"0.4.1","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@0.4.1","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"b2170ed9dfdea05e7305039b034ef4d2c442a003","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-0.4.1.tgz","integrity":"sha512-o54XvBq1GF/osCZSqspwBA+ujd8ErXzw2hqR9QKsGdKmFr8kLJkYgLJ95oXa/LzF7GrqKfeB3Kc9xhzrBgjuKw==","signatures":[{"sig":"MEYCIQD1R7YUU//ILxJArpgQcfOUXHxtXbF5eQaaqwJY0yvuuQIhALXEeAkpmI6DCMgPjKtADmEkFl5oOWCkxANyWRspm6Ia","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"b2170ed9dfdea05e7305039b034ef4d2c442a003","gitHead":"f52e451b4b7f46dc8d434853908f9b4af4bf98cd","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"https://github.com/lydell/js-tokens","type":"git"},"_npmVersion":"1.4.28","description":"A regex that tokenizes JavaScript.","directories":{},"devDependencies":{"mocha":"^2.0.1","coffee-script":"^1.8.0"}},"1.0.0":{"name":"js-tokens","version":"1.0.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@1.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"278b2e6b68dfa4c8416af11370a55ea401bf4cde","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-1.0.0.tgz","integrity":"sha512-5CoKISU6nrMoXKNWUumMLSdO4N6GctX7Vfjlja801H14CxTeozlq0OC1tTJLCi6Nqjd3qXj7UAUzkgwH0+aezA==","signatures":[{"sig":"MEUCIArcdk7fs1+w7OwA8Gye368w5ub9NM2fkUZjtsFReYXHAiEAs+EtwqjOF447mlOvjdUaveekHWY/I692QAzQUZ0Gs10=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"278b2e6b68dfa4c8416af11370a55ea401bf4cde","gitHead":"b465cedf5cfb366c67e1f354ff000fddb6fb5c94","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"https://github.com/lydell/js-tokens","type":"git"},"_npmVersion":"2.6.0","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"0.10.36","devDependencies":{"mocha":"^2.0.1","coffee-script":"^1.8.0"}},"1.0.1":{"name":"js-tokens","version":"1.0.1","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@1.0.1","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"cc435a5c8b94ad15acb7983140fc80182c89aeae","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-1.0.1.tgz","integrity":"sha512-WKqed1YxjsT7sGqM2IdbkJHnA3rXHqFqN+4xUy973UeYNjSXZCKM3G/zUmPNYut/6D9QCUbqegDmUCQRdm0lnQ==","signatures":[{"sig":"MEQCIDzB3FBxdMl8TQdEgerp4TYZEWC4UFuBcw7xNWDNatJIAiAMxI7cBxr2K8bRRi4megkS+D/zrNSz7/y3Ns4FbObrVw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","_shasum":"cc435a5c8b94ad15acb7983140fc80182c89aeae","gitHead":"94fab527b51da636ac996aa99be281746f19adae","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"2.8.3","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"1.8.1","devDependencies":{"mocha":"^2.2.5","esprima":"^2.3.0","coffee-script":"~1.9.3","everything.js":"^1.0.3"}},"1.0.2":{"name":"js-tokens","version":"1.0.2","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@1.0.2","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"8647f7e13f64ac15d9357a59a346c804d53b3efe","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-1.0.2.tgz","integrity":"sha512-MG14FeS7TU0K7xdvw6ZJFDJFKMmqB+lJshWgbH+hxRocE3Q7wY6JxTLR6x7j1KYk2x955TYNdtgQ99K45zPuAA==","signatures":[{"sig":"MEQCIFZim7PdUpAuXJz5VE8vQ1buA0jk8KEjOLLwWh3qtSdTAiABUDR5JQQM/x/JKVfAHi6S477MmRv+ccbHXV4QHbyfFw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"8647f7e13f64ac15d9357a59a346c804d53b3efe","gitHead":"90f0f0a217984625180414763234c923aeee4af5","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"2.14.7","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"mocha":"^2.2.5","esprima":"^2.3.0","coffee-script":"~1.9.3","everything.js":"^1.0.3"}},"1.0.3":{"name":"js-tokens","version":"1.0.3","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@1.0.3","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"14e56eb68c8f1a92c43d59f5014ec29dc20f2ae1","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-1.0.3.tgz","integrity":"sha512-SfeDkKyjCWzOfBEyjRcmtt4GUejT68lG5DL3+AkWFsyB5sJLcVs/Ucxk5vNjeg0qmQ/Js4jPJTzeqpaDB/6ZVg==","signatures":[{"sig":"MEQCIGifsba4Wyn/DlYIi9KhUa7fkXfUCwJJbuCokq2OWzLhAiAQrzpIiJ4dVVEhAOqj/38L1XSXsEWd1ePswqG8sHIrBw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"14e56eb68c8f1a92c43d59f5014ec29dc20f2ae1","gitHead":"8fef3fe3b80636bc885bbfc9fa0012a4a2956352","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"3.7.3","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"5.9.0","devDependencies":{"mocha":"^2.2.5","esprima":"^2.3.0","coffee-script":"~1.10.0","everything.js":"^1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/js-tokens-1.0.3.tgz_1459075945273_0.8152586803771555","host":"packages-16-east.internal.npmjs.com"}},"2.0.0":{"name":"js-tokens","version":"2.0.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@2.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"79903f5563ee778cc1162e6dcf1a0027c97f9cb5","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-2.0.0.tgz","integrity":"sha512-kk4RjoztHFeAlCNPdTr/uF04oN5z53L18LJfADBQ7YHkO3iR2rP2ZwOH0n33r2FRw0psRmjTDEkOWPE//zmujg==","signatures":[{"sig":"MEQCIE/gLO5O3Cy6p7dklzPR34IE29pJU3r8a+bsLPRmy439AiACB7iNSuhVb+uT0/xJz7Je1FN4Tyr/SyNdHbeo8IZnNA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"79903f5563ee778cc1162e6dcf1a0027c97f9cb5","gitHead":"23fcbe4639fb4baee5dc53616958cc04c8b94026","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"3.8.6","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"5.11.1","devDependencies":{"mocha":"^2.5.3","esprima":"^2.7.2","coffee-script":"~1.10.0","everything.js":"^1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/js-tokens-2.0.0.tgz_1466321890449_0.1510669116396457","host":"packages-16-east.internal.npmjs.com"}},"3.0.0":{"name":"js-tokens","version":"3.0.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@3.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"a2f2a969caae142fb3cd56228358c89366957bd1","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-3.0.0.tgz","integrity":"sha512-poXEQHPMmTrYZuJgNRll2sbc3kJsSU1m/g1Q93IE6txNj3p6xOOOmdj1G/zCVGawYSPzTkSoWGg1otqbeqKJeg==","signatures":[{"sig":"MEUCIQDLCwSRFeNGEg61G9ji0uZNH4Xq3rHygDbkSrHR14geswIgCpIibyjOH/z55Tm9Ensyi6/ByR+aAvq2oVtccFk5h/Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"a2f2a969caae142fb3cd56228358c89366957bd1","gitHead":"7e3ca86c8f2260b442e477073cceb9c349fc9b5c","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"3.10.9","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"7.2.0","devDependencies":{"mocha":"^3.2.0","esprima":"^3.1.3","coffee-script":"~1.12.2","everything.js":"^1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/js-tokens-3.0.0.tgz_1484167093471_0.018422157736495137","host":"packages-12-west.internal.npmjs.com"}},"3.0.1":{"name":"js-tokens","version":"3.0.1","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@3.0.1","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"08e9f132484a2c45a30907e9dc4d5567b7f114d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-3.0.1.tgz","integrity":"sha512-uGx5mrUJTDuSk2T4NendihsPTPR4Pgu06OYD5bEvFSXX4MZfGSy7tL6nlYWyJUAqQYo/3xkKLyIQzIqDx4UCDg==","signatures":[{"sig":"MEYCIQDqXcj1WS060XL5lQE/lnMJ7pyeiMETm8WLPD/sdsR5fQIhAM1K2i/JVp4bhqF0j4DUt3F6ClJPKdjmhTL8R+Oqs/Fo","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"08e9f132484a2c45a30907e9dc4d5567b7f114d7","gitHead":"54549dd979142c78cf629b51f9f06e8133c529f9","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"3.10.9","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"7.2.0","devDependencies":{"mocha":"^3.2.0","esprima":"^3.1.3","coffee-script":"~1.12.2","everything.js":"^1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/js-tokens-3.0.1.tgz_1485800902865_0.11822547880001366","host":"packages-18-east.internal.npmjs.com"}},"3.0.2":{"name":"js-tokens","version":"3.0.2","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@3.0.2","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"9866df395102130e38f7f996bceb65443209c25b","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-3.0.2.tgz","integrity":"sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==","signatures":[{"sig":"MEYCIQC4fADkRX9utX23aQgDtmj9jkK5rAsIjuv1ZLY3iWXPTwIhALBzax/YwtzAiVTbJMivERsRpQwawLYTorp3Pil0/S7A","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"_from":".","files":["index.js"],"_shasum":"9866df395102130e38f7f996bceb65443209c25b","gitHead":"8315904c840b14d28de1b0a4968194555f61bea3","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"4.2.0","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"7.10.0","devDependencies":{"mocha":"^3.4.2","esprima":"^4.0.0","coffee-script":"~1.12.6","everything.js":"^1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/js-tokens-3.0.2.tgz_1498683256536_0.7391157897654921","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"js-tokens","version":"4.0.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@4.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"19203fb59991df98e3a287050d4647cdeaf32499","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-4.0.0.tgz","integrity":"sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==","signatures":[{"sig":"MEUCIHTFYsC9RMPKFuD2Ff2bRCSWNb36hIt4dZfUv4vusrrOAiEAp3qTBJDVdCmqIySFXqJpqfON89dldxEoM1XZQXYkKkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"files":["index.js"],"gitHead":"0eb6e9daee32160ab0fca979b6dc91a1991b720c","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"5.6.0","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"8.9.4","devDependencies":{"mocha":"5.0.0","esprima":"4.0.0","coffeescript":"2.1.1","everything.js":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/js-tokens-4.0.0.tgz_1517140737182_0.3507722308859229","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"js-tokens","version":"5.0.0","keywords":["JavaScript","js","token","tokenize","regex"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@5.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"ca264bd7bd855edcba8e2737b379570240e43a00","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-5.0.0.tgz","fileCount":5,"integrity":"sha512-RLaS2kBGnYOxeo8MGAoclloj/OtiS0As5mCWNXT97d/nGi62GelcqwxjLriEF2ERwLafVcZnWKqD5l6TaWk0Og==","signatures":[{"sig":"MEYCIQCe6+rHT6L9GyWFoqAVbA2v0SNy4E5x4E08O1PhV+1KjwIhAJ7fEeKnhY31Y1pTq2P744EjaKIi6VvMfssLKCqiUKfq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15244,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdBQahCRA9TVsSAnZWagAAo5IQAI8DCTJS6qNc94bqKe/c\nWN7/CSFMgxztsVghqKOCOJzUV8jgjcxxf2lDRmWJj2cTq+8AZDPuI4uMqqAr\nErEDGRyR86jqulj/MS8yVwrDC/FqMW9NpeTlvnyAe+yHZKmNTypCxzXU5i08\nghr0OSawzgqRllJz6Z5ZVwhJLatJIzxNCEhJDEkdafUKx+9/PrVX7Kn5uMY9\nEtaid0xl4aBOFXITfzEQnP1CRe3zgdUwfIlB4tNFxzYMHqPTiGJBaKHmFODU\nbiUKS7GZlXwiLBFSU/mY0X0n1DBvrFQB8kpKXaEkn6RfXOKGWGC3OrAHA02D\nIh5jhxzISfKoKab2owYxZ28252sItoV4i0iqWpZThN+ONeGosYLG411UfvFn\nLcf4MZG7Rc6LkyFy2PQiyTEcF+brCRbYQIp9aZtesXmlQZrwzNuXhwiiOe/z\n83l9oYdgHnjYhOk1OQy+CnE7dng4C/d74kC0vGam9ZkIk6jEVSfq6cxQKhTH\n3CaBIg7T5yUXQuF13QmME0XpCdEh9vzeuOg3mE6gPYm9IAcJNXSr5Y7ievhV\nZ1XLjJtQ2iPwACZK2iXOvIOXHt6NfC5Ud0QP4X4VFwfNSGcQICOHB6QtaPGt\nn+t5KQIC86c+8u6yBRBSGSvq+C9OUt711E2I85+ZkTJ85HUZDhjMea9iI9Rn\n62eu\r\n=lNZp\r\n-----END PGP SIGNATURE-----\r\n"},"gitHead":"8368242deeb6c5b57294769a2e2497b809b58c3a","scripts":{"dev":"npm run build && npm test","test":"mocha --ui tdd","build":"node generate-index.js","esprima-compare":"node esprima-compare ./index.js everything.js/es5.js"},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"6.9.0","description":"A regex that tokenizes JavaScript.","directories":{},"_nodeVersion":"10.16.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"6.1.4","esprima":"4.0.1","coffeescript":"2.4.1","everything.js":"1.0.3"},"_npmOperationalInternal":{"tmp":"tmp/js-tokens_5.0.0_1560610465352_0.9681630780789874","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"js-tokens","version":"6.0.0","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@6.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"3c29d3a851d4bd92f86415e65997b4b46b3665cc","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-6.0.0.tgz","fileCount":5,"integrity":"sha512-QJUTLeNZNFl/w4MmhHztb1I1UzV42KV/L/zNwNVGlCNc+zl8g01Nve0hPDGU+j2N7ctFZdLot49lUSi78L7WGg==","signatures":[{"sig":"MEQCIFmCUAfRU51Jp9NpubuLK2XjBxLgi+tkH7jIcQ8wagM1AiBW05FRPuYdtySKGkZbZTgnbAIHqZSHEmbcesYoQhpJYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15524,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJelJbVCRA9TVsSAnZWagAA5VQP/12XL9HznRSp3u/uWjl6\noBpvYZrU9Uf63beXbYY19RPWtOgfxAbIqD3UdYImfGXkiOK2yINTRQS+eIdN\n03j4Sl9LUiNrcK3aykni2XJ2tLOOc6hh2tG+DMsCfGDbOZnYhnFCbc0+s3V6\nYJgi7KOLE2gkcpoQOdBAK0UQr0t0NgiXtf4ocQIWa2yOFF7HjgHqNMLrargC\nK2nv6jgE4R9AoAbZHF99j3/I4He5nbygR3an2/LloLFqqFR77PYaxKGwyaDQ\nJIPGj+liipB7ZXLm5sBpMZVY8+1FJoupP8UTLQvgRzw+qRQiwxqzY8UyhrJr\ngu0DvponBttKSsW+VuyawIHUi+WgNFDVcXURl48dhE3kiSUf4IZv6TkMMf1+\nK68QohEHbHH3Z9PnHd1O9B51ZKvPqggKPXo3dvj7qcweS7dAqBi1bNq/xr+j\nO7OjfHuc1KNCRcpAczm78gn7Mt922gd4LTSZuLlEGR4+kCRQMjJELY2SDJPk\n8X8izkS/k0Bl9Lg0NMxi3VYhq/Lpjx8HgyLnvQKbLJYvNkwN5vG7dEuJr2nr\n7nvMW0xMas6RBLvqZ9wPeTrrro2Sjh3AoF4yixNEjHmXAixbp5fBxGNOyxWo\nahsZPL6qFnl5BPi2pTfzsk3d2bJSU060ctfACOomf504h0vqDtVxPls6Wwu7\nSlui\r\n=glyj\r\n-----END PGP SIGNATURE-----\r\n"},"type":"commonjs","exports":"./index.js","_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"6.14.4","description":"Tiny JavaScript tokenizer.","directories":{},"_nodeVersion":"13.12.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/js-tokens_6.0.0_1586796244674_0.8455417748962879","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"js-tokens","version":"7.0.0","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@7.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"5b847c7f3e16c89dbc90fac34a8be947907a5a72","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-7.0.0.tgz","fileCount":5,"integrity":"sha512-mstB8Fdp1t7raP2i4IsewoD8l572hutCSwqE9OU9WjKsYxlSdkyX1bgzU60dXrVvhCoZtrcz0DQlW0/T7y57uA==","signatures":[{"sig":"MEYCIQCoU/iqj50POtnLeJj0XHPGqDWvQTOQWYc8vFDGeUbzgAIhAJ1i+f/fAKroeHb6iGtClc5/Z5PfCby/Zk9nTg3x9Oou","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15607,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJghT5oCRA9TVsSAnZWagAAmJUP/ii5ewGtlf9RUHogcyQO\nNiml8UeG7a/RduUZQ7N1hXwWcXAMTcdMipxfr+76mYm491anJTds1aco0Eda\no1kWWpX7lwR+aGduNDWOsbx/Jskf0lLleNd0UOqUvjwcATuoqyKx/09BktPV\ni1gyE0MFKXBWryP0P5NN++kZ+f7BXAWCGg+QTKmI2AoPmtPgZBWJIiDRYiLI\nx1Z7lFRUHGW1flfpKHuzi+x7fc3cvsmpTrkEZhEP7cLezCmJSK0eyn0gfd3R\njh17/2CDIgceuwNiXNc23ZNDVovesNa0Q+F52bAyfT3lg8+NiB7wV8IO+q/t\nxLPj48Mx2L5LRZ8ynCfp2fD44W3MZ+5BdBUu+FiKlHHCZngoEo3uJ0P+CvEG\nhke6SM2FV0yEb1sIPKaCkPyzfAnDA2n344tKVNrKh0OFRTxcCccRL+vCb6QG\n8NbCWGrrOszLzI/7pS3gBN2h752NPBUMJcyoi4YPKp4Lb6uJRWIqDTdocxrQ\np2LZ82AFdejnD/U+awioldCbGsN/m8I0uFCUMMKRq//R5k/4Eqzau+FS7L3v\n5+P+Y3buKNUwFxTfHD2orN1sO6sGWYuv6yNMGDClx28XNyQ7wnoW2X9qI0eK\nfJR29QRYDYv5xcQQmbOQriRC+oGiLFaFwAMe1zMPNw59lnp0r1DP5Kayps2+\n/N7H\r\n=wdTO\r\n-----END PGP SIGNATURE-----\r\n"},"type":"commonjs","exports":"./index.js","_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"6.14.8","description":"Tiny JavaScript tokenizer.","directories":{},"_nodeVersion":"12.19.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/js-tokens_7.0.0_1619344999944_0.5646989769120967","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"js-tokens","version":"8.0.0","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@8.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"5dbe2cdfa9afc93251d3a77bf18c3ad6fa8a4de4","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-8.0.0.tgz","fileCount":5,"integrity":"sha512-PC7MzqInq9OqKyTXfIvQNcjMkODJYC8A17kAaQgeW79yfhqTWSOfjHYQ2mDDcwJ96Iibtwkfh0C7R/OvqPlgVA==","signatures":[{"sig":"MEYCIQD/1QKdUzQVkN8PQO3hwxDeK19qFpUNw4op7HfHXRyHegIhAMSjm2icEHOmaYxVBCAcC9pnqk+uMS5QuW1qBkewh5BE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15690,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJigM0JACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpQXQ//ZIG1CaYhbyY4PFkLDN6dc7o8ov2PuZmu9vLd3POcBFsUaRgk\r\nf+2WlUaUK3KxbzRZoUWEe5KHp6fNMfObJ8Z/nV2Xe42dCueVuL3cZmZOCQcX\r\nMnVh6mtW9/IfwW1AQLhKmF/XcWCLparRPSmRW9ppklujbB+jnWhw8MaOLyam\r\nPKxZ9y2MXmpT0LJPTYppVy2nPiHLFirs2YkT/DHdWsahUl5Qpvx2e+16H6rt\r\n0SAauXUGPMncqjReNpiVkD+tJdTIQyDqpqOQBUYWozeUxtmbrRPXy4b/RtIR\r\n0ikOeFv0oLsF+3A7FQr9NeUC27mObOY8kNIAPJFfgRVU67ZlgmQUyEw3hl9z\r\nPLTS5bMRaLnkVpcWGyQ6Mt8IWbCeGSk7FQfnWhxCbncHxNVaaQsh3mr1k7u5\r\nA9PlHpzAMJqlqVU1gh+Y6JWwlwxlVbGzi2Y8iG8DSGvvGKJjVshTGAt6Hgs6\r\nqCICAkhw+JbrV5U60U/X9Y564iJPhwBhonj44uxYCB8dTc7TZsqc5WTPMhkN\r\nwdc9bq48lL4iLriRumrZc/4FhMAJJE1w6XU87k+h7PSu+Fmeu5tHDYl3EdYX\r\njGjllwonzS37PG3nkra8GQCjl3+KgFT87J5cfWmHwvSejjaUPv8gvw6GV17x\r\nK6cUiI6jRV/AGgINmwVQtZA/Eh0KG9IN0Xs=\r\n=4j6E\r\n-----END PGP SIGNATURE-----\r\n"},"type":"commonjs","types":"./index.d.ts","exports":"./index.js","gitHead":"16912368ce93332dc7417b95c38b5da4779890b6","_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"8.5.0","description":"Tiny JavaScript tokenizer.","directories":{},"_nodeVersion":"16.14.2","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/js-tokens_8.0.0_1652608265243_0.007141159824718857","host":"s3://npm-registry-packages"}},"8.0.1":{"name":"js-tokens","version":"8.0.1","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@8.0.1","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"f068fde9bd2f9f4a24ad78f3b4fa787216b433e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-8.0.1.tgz","fileCount":5,"integrity":"sha512-3AGrZT6tuMm1ZWWn9mLXh7XMfi2YtiLNPALCVxBCiUVq0LD1OQMxV/AdS/s7rLJU5o9i/jBZw/N4vXXL5dm29A==","signatures":[{"sig":"MEYCIQCa7JARIMZt7gujObG/Wph+XUPnXAhNc0goLFu9KsCQwAIhAMZxrb4RcZD6qlL3AyrRBiB+Mr3OuQZcksogalSb4mqT","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15712,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxb5NACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrrPBAAlLryQ+yl5rBiZLKwAeG8cyv/Cok7iDIu1uua2YtnUBysBq5z\r\nAUZzhst5O8rl6MxVJxI2hC5cKEU9pHHk4M3ilrGUlw6M1JRoD71xOq1+wcMm\r\nkGgwroQgXFnTTdLWlJN20tR1efNQaJY4NvOHcsdnPxkkP8H0RX/SdDbnCTKu\r\nZwuBeq2X2KnPB6t9ubgby0ZZNp45CJb6uo8q1vYcxREVTAeX4yT9KvsmRRNW\r\nVVK8qIwFAndu5pQaMKf0dobO5/PwY5Ftkgekpi4OkmcYTuUu4pY/iZ0XohwH\r\nIp+ef6sbpdRj3xCcinixqnBJbIvcNMz6ChqAUE6MOXYf412yaDa7hfbc3wXe\r\nDzW9qUgHuWzKOrI+S75dNZIVEJCtXcHJrBhscxVCFT3P0gStsmQ1UK7tx0UV\r\nk/RE+ef56KWtTCqrVnI0z0K6hovBkqSLeb7ebRvkFl+kV2TEfPlZiOcAnm4+\r\nPzkWIlfW5mRUA74GePQC87Vge8XdZH0POkqqMJDEaTzRwVqWfr1FgINEWkLB\r\nHhSqblv6/ivxYJUsBjCWgFxi35Jt0ZY4RP0Zn8nncEI9WSG2saMvbMmO0P77\r\n43xRpr4RfE41YYBeeGNVEOwo+FRrbzlTfLpnfCDRPLcyd+7aozzzOmC6vlVv\r\nt2e4SySSCRsli1D3wdBM2xxYiOGNaIUJ6ks=\r\n=kPUO\r\n-----END PGP SIGNATURE-----\r\n"},"type":"commonjs","types":"./index.d.ts","exports":"./index.js","gitHead":"ae542161b0595b08eabee259eb4b9de92233df96","_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"8.19.3","description":"Tiny JavaScript tokenizer.","directories":{},"_nodeVersion":"18.13.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/js-tokens_8.0.1_1673903692852_0.6691159649398726","host":"s3://npm-registry-packages"}},"8.0.2":{"name":"js-tokens","version":"8.0.2","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@8.0.2","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"86a19e09d81c64f1f4a3af489b8c1b67d0c7c588","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-8.0.2.tgz","fileCount":5,"integrity":"sha512-Olnt+V7xYdvGze9YTbGFZIfQXuGV4R3nQwwl8BrtgaPE/wq8UFpUHWuTNc05saowhSr1ZO6tx+V6RjE9D5YQog==","signatures":[{"sig":"MEQCIG30qe2sELo8YqbtAiA5tHTm47jdPWapUgg9+I86x6CKAiBmsUx5240FfJsuukFNPiZGNMsFzb/owQIp0xN5gAvpNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15783},"type":"commonjs","types":"./index.d.ts","exports":"./index.js","gitHead":"93a64af449586241b0ba5ec121511291243e4133","_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"9.8.0","description":"Tiny JavaScript tokenizer.","directories":{},"_nodeVersion":"20.5.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/js-tokens_8.0.2_1694264603392_0.3976669609582535","host":"s3://npm-registry-packages"}},"8.0.3":{"name":"js-tokens","version":"8.0.3","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@8.0.3","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"1c407ec905643603b38b6be6977300406ec48775","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-8.0.3.tgz","fileCount":5,"integrity":"sha512-UfJMcSJc+SEXEl9lH/VLHSZbThQyLpw1vLO1Lb+j4RWDvG3N2f7yj3PVQA3cmkTBNldJ9eFnM+xEXxHIXrYiJw==","signatures":[{"sig":"MEQCIE6ptUxzI8ESztScoKO6DyIKCCLckiMYAWsx+ybXu1T2AiA3j8maBK6scmFxZYCMYmCN3AlJ4I4Etimyx89+QXcaYg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15834},"type":"commonjs","types":"./index.d.ts","exports":"./index.js","gitHead":"8125aae4df8ab7eb262b29eebf0cdc65d162bf1a","_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"10.2.4","description":"Tiny JavaScript tokenizer.","directories":{},"_nodeVersion":"21.6.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/js-tokens_8.0.3_1706955145948_0.06043368363691837","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"js-tokens","version":"9.0.0","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@9.0.0","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"0f893996d6f3ed46df7f0a3b12a03f5fd84223c1","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-9.0.0.tgz","fileCount":5,"integrity":"sha512-WriZw1luRMlmV3LGJaR6QOJjWwgLUTf89OwT2lUOyjX2dJGBwgmIkbcz+7WFZjrZM635JOIR517++e/67CP9dQ==","signatures":[{"sig":"MEQCIG162ehE3//1u/AygtFEVWxP+I2OEGoNiYCZBT5uYJsSAiAEDbBRTArqTSqTKSZCVkSkB+//NkeWdQrVEz+ydzyITQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16067},"type":"commonjs","types":"./index.d.ts","exports":"./index.js","gitHead":"43b47c87b1a1077b0dea733d9798fab559c0c8e3","_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"10.2.4","description":"Tiny JavaScript tokenizer.","directories":{},"_nodeVersion":"21.6.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/js-tokens_9.0.0_1707433147242_0.013600752887567014","host":"s3://npm-registry-packages"}},"9.0.1":{"name":"js-tokens","version":"9.0.1","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"author":{"name":"Simon Lydell"},"license":"MIT","_id":"js-tokens@9.0.1","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"homepage":"https://github.com/lydell/js-tokens#readme","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"dist":{"shasum":"2ec43964658435296f6761b34e10671c2d9527f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-9.0.1.tgz","fileCount":5,"integrity":"sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==","signatures":[{"sig":"MEUCIQDiutdhKJOBegogqXY0gJHJhbWWJD2VivlwmXFySIbAuAIgQucbgpQChfOgrAheSfyZHTCAZvKjvKIWb9ZPVKpZNS0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":16071},"type":"commonjs","types":"./index.d.ts","exports":"./index.js","gitHead":"1470e1efafcbca46709c73ba98811a4e5bcc1e86","_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"repository":{"url":"git+https://github.com/lydell/js-tokens.git","type":"git"},"_npmVersion":"10.8.2","description":"Tiny JavaScript tokenizer.","directories":{},"_nodeVersion":"22.8.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/js-tokens_9.0.1_1732296070291_0.6281904360708463","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"js-tokens","version":"10.0.0","author":{"name":"Simon Lydell"},"license":"MIT","description":"Tiny JavaScript tokenizer.","repository":{"type":"git","url":"git+https://github.com/lydell/js-tokens.git"},"type":"module","exports":"./index.js","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"_id":"js-tokens@10.0.0","gitHead":"d7ec3643eac02418881ddb46ec420cfc10a653ba","types":"./index.d.ts","bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"homepage":"https://github.com/lydell/js-tokens#readme","_nodeVersion":"24.9.0","_npmVersion":"11.6.0","dist":{"integrity":"sha512-lM/UBzQmfJRo9ABXbPWemivdCW8V2G8FHaHdypQaIy523snUjog0W71ayWXTjiR+ixeMyVHN2XcpnTd/liPg/Q==","shasum":"dffe7599b4a8bb7fe30aff8d0235234dffb79831","tarball":"https://mirrors.huaweicloud.com/repository/npm/js-tokens/-/js-tokens-10.0.0.tgz","fileCount":5,"unpackedSize":15993,"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIGRQD/Khq/6aWgE/Dku93yWeLpxKn9hfpbkzpkNhjGnUAiEAgLaPeuV58jA3y+M44FdmeXLzIwe5MTExIFVj4YWldwU="}]},"_npmUser":{"name":"lydell","email":"simon.lydell@gmail.com"},"directories":{},"maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/js-tokens_10.0.0_1765228195321_0.8696671751947662"},"_hasShrinkwrap":false}},"time":{"created":"2014-03-08T22:30:50.672Z","modified":"2025-12-08T21:09:55.633Z","0.1.0":"2014-03-08T22:30:50.672Z","0.2.0":"2014-06-19T20:20:22.938Z","0.3.0":"2014-12-19T17:50:28.104Z","0.3.1":"2015-01-06T21:17:50.696Z","0.4.0":"2015-02-21T19:00:41.297Z","0.4.1":"2015-02-21T20:20:20.154Z","1.0.0":"2015-02-26T09:34:56.843Z","1.0.1":"2015-06-20T06:38:03.183Z","1.0.2":"2015-10-18T15:00:47.347Z","1.0.3":"2016-03-27T10:52:26.157Z","2.0.0":"2016-06-19T07:38:11.688Z","3.0.0":"2017-01-11T20:38:15.672Z","3.0.1":"2017-01-30T18:28:23.511Z","3.0.2":"2017-06-28T20:54:17.623Z","4.0.0":"2018-01-28T11:58:58.170Z","5.0.0":"2019-06-15T14:54:25.462Z","6.0.0":"2020-04-13T16:44:04.779Z","7.0.0":"2021-04-25T10:03:20.082Z","8.0.0":"2022-05-15T09:51:05.420Z","8.0.1":"2023-01-16T21:14:53.000Z","8.0.2":"2023-09-09T13:03:23.579Z","8.0.3":"2024-02-03T10:12:26.165Z","9.0.0":"2024-02-08T22:59:07.471Z","9.0.1":"2024-11-22T17:21:10.496Z","10.0.0":"2025-12-08T21:09:55.458Z"},"bugs":{"url":"https://github.com/lydell/js-tokens/issues"},"author":{"name":"Simon Lydell"},"license":"MIT","homepage":"https://github.com/lydell/js-tokens#readme","keywords":["JavaScript","js","ECMAScript","es","token","tokens","tokenize","tokenizer","regex","regexp"],"repository":{"type":"git","url":"git+https://github.com/lydell/js-tokens.git"},"description":"Tiny JavaScript tokenizer.","maintainers":[{"name":"lydell","email":"simon.lydell@gmail.com"}],"readme":"# js-tokens\n\nThe tiny, regex powered, lenient, _almost_ spec-compliant JavaScript tokenizer that never fails.\n\n```js\nimport jsTokens from \"js-tokens\";\n\nconst jsString = 'JSON.stringify({k:3.14**2}, null /*replacer*/, \"\\\\t\")';\n\nArray.from(jsTokens(jsString), (token) => token.value).join(\"|\");\n// JSON|.|stringify|(|{|k|:|3.14|**|2|}|,| |null| |/*replacer*/|,| |\"\\t\"|)\n```\n\n**[➡️ Full readme](https://github.com/lydell/js-tokens/)**","readmeFilename":"README.md","users":{"nraibaud":true,"geofftech":true,"qingleili":true,"shuoshubao":true,"flumpus-dev":true,"roboterhund87":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/bc/76/d3fb3244573965c0ff8233eba5eeb79311f051d2f83115eefe951100b0003b606b18a5ba22ab6b1035e41e46f874f467d082cfc6c8512f66927d70b5e95c b/frontend/.npm-cache/_cacache/content-v2/sha512/bc/76/d3fb3244573965c0ff8233eba5eeb79311f051d2f83115eefe951100b0003b606b18a5ba22ab6b1035e41e46f874f467d082cfc6c8512f66927d70b5e95c new file mode 100644 index 0000000..a09ab6d Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/bc/76/d3fb3244573965c0ff8233eba5eeb79311f051d2f83115eefe951100b0003b606b18a5ba22ab6b1035e41e46f874f467d082cfc6c8512f66927d70b5e95c differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/c7/f4/8aa5aee863e764e1edec611b99bb550f2eda9d861b07c46f70870b4523383581890cc9fbda2a114d441127897c1086e3c9630003587e69c16e6e80b02874 b/frontend/.npm-cache/_cacache/content-v2/sha512/c7/f4/8aa5aee863e764e1edec611b99bb550f2eda9d861b07c46f70870b4523383581890cc9fbda2a114d441127897c1086e3c9630003587e69c16e6e80b02874 new file mode 100644 index 0000000..f0756dd --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/c7/f4/8aa5aee863e764e1edec611b99bb550f2eda9d861b07c46f70870b4523383581890cc9fbda2a114d441127897c1086e3c9630003587e69c16e6e80b02874 @@ -0,0 +1 @@ +{"_id":"axios","_rev":"894-d185677163fb51eed8e2472cadcea10b","name":"axios","dist-tags":{"next":"1.7.0-beta.2","old-version":"0.30.0","latest":"1.13.6","legacy":"0.30.3"},"versions":{"0.1.0":{"name":"axios","version":"0.1.0","keywords":["xhr","http","ajax","promise"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.1.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"854e14f2999c2ef7fab058654fd995dd183688f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.1.0.tgz","integrity":"sha512-hRPotWTy88LEsJ31RWEs2fmU7mV2YJs3Cw7Tk5XkKGtnT5NKOyIvPU+6qTWfwQFusxzChe8ozjay8r56wfpX8w==","signatures":[{"sig":"MEYCIQC/cOvHsV7UqLAet6WE89O4Ga3AUHgkqqoP0riLs6sgTAIhAIrePavu3Uw0T3vLyYMlfEI9bqENYjPzH5jGK8vYQVJK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","scripts":{"test":"grunt test","start":"node ./sandbox/index.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based XHR library","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.3.3-beta2","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.2.0":{"name":"axios","version":"0.2.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.2.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"315cd618142078fd22f2cea35380caad19e32069","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.2.0.tgz","integrity":"sha512-ZQb2IDQfop5Asx8PlKvccsSVPD8yFCwYZpXrJCyU+MqL4XgJVjMHkCTNQV/pmB0Wv7l74LUJizSM/SiPz6r9uw==","signatures":[{"sig":"MEQCIAkrijLTtL7uiw0fQf5GL/y7bJ+3J8Z0zrrzNLC5fTXlAiBd4Nr/EJ2nWfBGWv/9OkrAONoboG5C8t8plIt5LVeGQA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.3.3-beta2","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.2.1":{"name":"axios","version":"0.2.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.2.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"67d7695440e031286bad9b9b36ae455067f542b8","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.2.1.tgz","integrity":"sha512-yHXyPcLATAEj2H2jI0uZx1vYhygVKHU9Xuzy2r7wJEDZ2FfN46kaMsGONXyLENmEtL/TGRF3YEFFhrbcxUIj9A==","signatures":[{"sig":"MEYCIQCKJw9s75TZB00eTDhkRDEnEGI2l5hC1Ux9SP0e/GRfWAIhALTqfM9o+NVbTSrocwYbHUB8Ay/sGoFmiew6rsARayW7","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.3.3-beta2","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.2.2":{"name":"axios","version":"0.2.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.2.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"e69c16b591e43c248cbbdd089e0babb2ba820cde","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.2.2.tgz","integrity":"sha512-JSOdzUJ9DolR83lSZLDS47UcRiKZj8ulqr2YRhTLl/k7bSDsrZsRhREu655SAnp5TLJ7203H7zuSIrJSpXTCTw==","signatures":[{"sig":"MEUCIQDMm5MBF88wVwKncT2Ald3nuT2Za5XuholbcW/ZGkloogIgetfzVc5IgZzlfSwGxiEJioURMYWd6tlrycWqVJQz4+g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.3.3-beta2","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.3.0":{"name":"axios","version":"0.3.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.3.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"07cc545f0d39b6b0d168a3b3a55b49f90a9000c7","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.3.0.tgz","integrity":"sha512-CKKrIWf6d0cfM0LwhhGMYFtdMhxwN7wb3yja+0mJkZPpvX3EkKXPz6m/8UtyLTEuRqBKc1iskmVhAr5O6MQ9gQ==","signatures":[{"sig":"MEUCIQCFyA7wiJAAcG/jQRqHgoZKVx8qi2RSzyk7qUqSVcRHbgIgDRyAJ6CIMkk9Zxd9vUAi90kTryujcMkHJyVg3s0WY9o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.4.0-beta9","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.3.1":{"name":"axios","version":"0.3.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.3.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"7380abe912433fb47ea582bed582300ffe479564","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.3.1.tgz","integrity":"sha512-a3XHOBXDE7ISk4x11ejZuWgPONrDrjGfJPSKg3vxgQ0b+8gP46DIUhvC/rvif2414joE3bv7F2LUdfTvTiF6SQ==","signatures":[{"sig":"MEUCIFIEEg/oMPJxDlgNDGYEsaowuzyj6OPGSW08ve74mtXeAiEA0/3hFdW5DePNHlIsZ9LLwuEIyKKTtLsU9eOSgDn5qNE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.4.0-beta9","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.4.0":{"name":"axios","version":"0.4.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.4.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"b5918c5c71aaa809f6183d68822c44fb39b7b338","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.4.0.tgz","integrity":"sha512-EROfAKeqOK3uc9N+W4nhcpxXYuoNfKsQPh0MECK23eJ789/SFpAIz8Av3YmXKRnNRHaXNTBtv+Li1RP4X4TtTg==","signatures":[{"sig":"MEUCIHhZ5WSz4CANaNhWqnVGvqL9G+3CsGBm2AJg3kTAPCx7AiEA55/SjAbJ+4DhEt3uxzPu888r2plUv4NZ5kAQ7HpOjM8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.4.0-beta9","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.4.1":{"name":"axios","version":"0.4.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.4.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"e6a375377d5abd3c4389039240059e08530e1881","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.4.1.tgz","integrity":"sha512-q80re0sKoYmQVJsaQ6ryT6vy3NwIyofp4LVlSusFQV3L/7SA0I4gwFQE/T3i3u81xuvqNIkyRbi4Ozr/xCvu5w==","signatures":[{"sig":"MEQCIFDfA2dMjDF5tbXL7Z3fX58WaIN8sHc6DXFoo+WzvDLOAiBkKHW0RJpsW67SNJPnFP6LVvmeKmF9jHASFSxf0vOKZQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.4.0-beta9","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.4.2":{"name":"axios","version":"0.4.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.4.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"d31b5752d4885ba460ef0fd1107447b279e6f66b","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.4.2.tgz","integrity":"sha512-uWHkoTqft48NouJRcauDHals99zKFZG2dDnuyPT4vf+nm17v43RDIdJi3bjYOzvmyBTMP1NKAgGpBYsPCkhsSA==","signatures":[{"sig":"MEQCICFnnau3rgWnmr8QD4e6A6lj6bsD50PwGbVZjWf5OeTSAiBeHS4iyG2TXh2237XY4c2yrkzVOI7osxSw9zS7JMAGlA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":"./","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"1.4.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"dependencies":{"es6-promise":"^1.0.0"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.4.0-beta9","grunt-ts":"^1.12.1","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.5.0":{"name":"axios","version":"0.5.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.5.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"2f369e6309a46b182c38ce683ba4fbc608d5b4ef","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.5.0.tgz","integrity":"sha512-9UXZYc6sa+vxmA3naww9AWbaxDFKmwfyD74ks35UTIS39VUB/ushQYBnXjhih5M2q1iFSFVmbYXt5E6fQmKRmQ==","signatures":[{"sig":"MEUCIQDhfxybfXuKCUFbX62eXx0VhXFbwgOepACqWnMDhzDU+AIgBSE3p+cvsYoCX1C290/2l780lePE4RGCdKxbxCdw8bY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2f369e6309a46b182c38ce683ba4fbc608d5b4ef","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"fa6c26a0e5eaad5d58071eb39d7afff0c7dc051c","scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"2.1.6","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"0.10.33","dependencies":{"es6-promise":"^2.0.1"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.21","webpack":"^1.4.0-beta9","grunt-ts":"^1.12.1","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.1.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.4","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.5.1":{"name":"axios","version":"0.5.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.5.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"63d83686335dc59a57a413b715999691fd0ea43e","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.5.1.tgz","integrity":"sha512-+ElGOJqyNHXpQnXSY8vSvQYkdELe3vW+jRvkksYHx240QoySshggLoRrJOeAYPBqEQIlh3efSt3ghq+9AP8z6w==","signatures":[{"sig":"MEUCIEVEafTcV0WGjM6OH2Z4ezo55FYz2kfshxOrdMDLZo5MAiEAsRZZX+02T3KDPDQrC0Vl6uD5WcdrVlVfPDwK0A7ftRo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"63d83686335dc59a57a413b715999691fd0ea43e","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"bd5d9b7258dd27648caddeba8259a4ed020b6724","scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"2.1.6","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"0.10.33","dependencies":{"es6-promise":"^2.0.1"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.31","webpack":"^1.4.0-beta9","grunt-ts":"^1.12.1","grunt-karma":"^0.8.3","grunt-banner":"^0.2.3","grunt-webpack":"^1.0.8","karma-jasmine":"^0.3.5","load-grunt-tasks":"^0.6.0","grunt-update-json":"^0.1.3","karma-jasmine-ajax":"^0.1.11","webpack-dev-server":"^1.4.10","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.5.2":{"name":"axios","version":"0.5.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.5.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"eb6009d000d81067cf0568dbac847e105525013a","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.5.2.tgz","integrity":"sha512-g7gJmNPxRiwetBd6E6P9Kr/phWFYe6edLxKnit+Twrd4XTW4YX9eH783641JWjOPQmOPZvw6dqLkwCG4hj3r4A==","signatures":[{"sig":"MEUCIQCaHgp0UtB4LveIH2i8ruEQP6Owpor32Mv9/aRr9oWEEAIgJ1QWYyyGxP7/zOT8eIoB51ZiSTf3vxk4levvc+9Lj1k=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"eb6009d000d81067cf0568dbac847e105525013a","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"2ce5aa77df30369960924ee70956f6ac0d37a1aa","scripts":{"test":"grunt test","start":"node ./sandbox/server.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"2.7.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"0.10.33","dependencies":{"es6-promise":"^2.0.1"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.31","webpack":"^1.7.2","grunt-ts":"^3.0.0","grunt-karma":"^0.10.1","grunt-banner":"^0.3.1","grunt-webpack":"^1.0.8","karma-jasmine":"^0.3.5","load-grunt-tasks":"^3.1.0","grunt-update-json":"^0.2.1","karma-jasmine-ajax":"^0.1.12","webpack-dev-server":"^1.7.0","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.5.3":{"name":"axios","version":"0.5.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.5.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"a4d153cc753f430a14aad8a00d8b1017eeabf1a5","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.5.3.tgz","integrity":"sha512-lQ3Mpyr4VFsIWqe9Yj/4LQ3aUoIzsB4E8T78AAnapiFqaIemOiBq0hkt5U+dQ0lyGd8Uw7cbeXCC+0kZI1k+DA==","signatures":[{"sig":"MEQCICzA6w2nChzOFDGfgqubosC1COOETf70lhaM+vlDZPJ7AiBf4HfijEFZMoIOspzo4+nQvQUs1szh7TrorASgpXel4g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a4d153cc753f430a14aad8a00d8b1017eeabf1a5","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"9d31a867166e9224f0c5168d84560abe85868404","scripts":{"test":"grunt test","start":"node ./sandbox/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.7.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"0.10.33","dependencies":{"es6-promise":"^2.0.1"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.31","webpack":"^1.7.2","grunt-ts":"^3.0.0","coveralls":"^2.11.2","grunt-karma":"^0.10.1","grunt-banner":"^0.3.1","grunt-eslint":"^9.0.0","grunt-webpack":"^1.0.8","karma-jasmine":"^0.3.5","karma-webpack":"^1.5.0","karma-coverage":"^0.2.7","load-grunt-tasks":"^3.1.0","grunt-update-json":"^0.2.1","karma-jasmine-ajax":"^0.1.12","webpack-dev-server":"^1.7.0","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.5.4":{"name":"axios","version":"0.5.4","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.5.4","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"e06f852257838133e69094d925ccb419de94fdfb","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.5.4.tgz","integrity":"sha512-98BQ+iyqX2IoI/P24W5E+1xbUSChUAWJlCU5uLa4aBgOeXYotSn0VcHwY1ETE+jxd7lgzDOCwYB1uYw83ViHKw==","signatures":[{"sig":"MEQCIEQ7UZW6xwUGy/ctOdxW7muiYhhAP6RBjuAs/yYw5BoSAiBffacJ2cjwbsR3VArE1c8RQpNrqK+wpg2svwXSJBFheA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e06f852257838133e69094d925ccb419de94fdfb","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"8a4e502e3a76b8e41b2f896e05b92db3c0f543f7","scripts":{"test":"grunt test","start":"node ./sandbox/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.7.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"0.10.33","dependencies":{"es6-promise":"^2.0.1"},"devDependencies":{"grunt":"^0.4.5","karma":"^0.12.31","webpack":"^1.7.2","grunt-ts":"^3.0.0","coveralls":"^2.11.2","grunt-karma":"^0.10.1","grunt-banner":"^0.3.1","grunt-eslint":"^9.0.0","grunt-webpack":"^1.0.8","karma-jasmine":"^0.3.5","karma-webpack":"^1.5.0","karma-coverage":"^0.2.7","load-grunt-tasks":"^3.1.0","grunt-update-json":"^0.2.1","karma-jasmine-ajax":"^0.1.12","webpack-dev-server":"^1.7.0","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-phantomjs-launcher":"^0.1.4"}},"0.6.0":{"name":"axios","version":"0.6.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.6.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"5f3b9bc5557f9d804547501f1a227eaa3216cad2","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.6.0.tgz","integrity":"sha512-4dNYK95y3vVytreh3QNNPIYaxbkZV9cXOxsseqznEwWqnHUSz1QSSKONP3Wbxg3wzZcXgwltVv3ca6Veg0eczA==","signatures":[{"sig":"MEQCIA7lY6u5LcsSsmW91I2dOvsPv1A9b7xjXLD78SZWPB5uAiBIk6asPZI9Fs1YOpNhpK0Lgs/vNbMGMqa8FLp9JAklEQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5f3b9bc5557f9d804547501f1a227eaa3216cad2","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"cd0cd1805434dea0d250d195a466a1236b98e502","scripts":{"test":"grunt test","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.13.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"0.10.33","devDependencies":{"grunt":"^0.4.5","karma":"^0.13.8","webpack":"^1.11.0","grunt-ts":"^5.0.0-beta.5","minimist":"^1.1.3","coveralls":"^2.11.3","es6-promise":"^3.0.2","grunt-karma":"^0.12.0","grunt-banner":"^0.5.0","grunt-eslint":"^17.1.0","jasmine-core":"^2.3.4","grunt-webpack":"^1.0.11","karma-jasmine":"^0.3.6","karma-webpack":"^1.7.0","karma-coverage":"^0.5.0","load-grunt-tasks":"^3.2.0","grunt-update-json":"^0.2.1","karma-jasmine-ajax":"^0.1.12","webpack-dev-server":"^1.10.1","grunt-contrib-clean":"^0.6.0","grunt-contrib-watch":"^0.6.1","grunt-contrib-nodeunit":"^0.4.1","karma-sourcemap-loader":"^0.3.5","karma-phantomjs-launcher":"^0.2.1"}},"0.7.0":{"name":"axios","version":"0.7.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.7.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"489c269044d5066dfa2c64c749cb131b176f4a7a","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.7.0.tgz","integrity":"sha512-5X9Fbhy/McI95kWcapRjYA9Kg1wpYgLSniWKCdiIXvm94dcHD967lRaUfyG8EsOrF5SvSeYqdWoXbON0Sr1MPA==","signatures":[{"sig":"MEYCIQC8zSyFfU5KWkpppVYucw96DxsG9CvrMrFkHOwgZkwcaQIhAJz3hU9VZA0j7clwjuI0pN1EHM2ToKlyaqDWSiA+3O5d","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"489c269044d5066dfa2c64c749cb131b176f4a7a","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"e8136b1f746d87d9ac620cb50c26722db555169a","scripts":{"test":"grunt test","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.13.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"0.10.33","devDependencies":{"grunt":"0.4.5","karma":"0.13.10","webpack":"1.12.2","grunt-ts":"5.0.0-beta.5","minimist":"1.2.0","coveralls":"2.11.4","grunt-cli":"0.1.13","phantomjs":"1.9.18","es6-promise":"3.0.2","grunt-karma":"0.12.1","grunt-banner":"0.5.0","grunt-eslint":"17.2.0","jasmine-core":"2.3.4","grunt-webpack":"1.0.11","karma-jasmine":"0.3.6","karma-webpack":"1.7.0","karma-coverage":"0.5.2","load-grunt-tasks":"3.3.0","grunt-update-json":"0.2.1","karma-jasmine-ajax":"0.1.13","webpack-dev-server":"1.12.0","grunt-contrib-clean":"0.6.0","grunt-contrib-watch":"0.6.1","grunt-contrib-nodeunit":"0.4.1","karma-sourcemap-loader":"0.3.5","karma-phantomjs-launcher":"0.2.1"}},"0.8.0":{"name":"axios","version":"0.8.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.8.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"9c3648c395f704742845b7d70e5b7c11f9afd859","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.8.0.tgz","integrity":"sha512-Yerc9ZI3+OsqkHSdH+YF2RLAC30lQvdLfiVzxyBJ6DeB0GyxzNHlrWNo3juVSMC7Al/s5iwJT2aATOa2lARKuw==","signatures":[{"sig":"MEQCICNh3OFVlytTWjSOd9gTkAr67vkJRv3Jk/THYBCFUFJXAiApK0skSeMoR/Mt/V+NQ6YKxbnrXepgpgW+eno7+nCEyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9c3648c395f704742845b7d70e5b7c11f9afd859","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"908d12b8ef41af4de5226b7e88eb971798d99207","scripts":{"test":"grunt test","build":"grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.14.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"3.3.1","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"0.13.10","webpack":"1.12.2","grunt-ts":"5.0.0-beta.5","minimist":"1.2.0","coveralls":"2.11.4","grunt-cli":"0.1.13","phantomjs":"1.9.18","es6-promise":"3.0.2","grunt-karma":"0.12.1","karma-sinon":"1.0.4","grunt-banner":"0.5.0","grunt-eslint":"17.2.0","jasmine-core":"2.3.4","grunt-webpack":"1.0.11","karma-jasmine":"0.3.6","karma-webpack":"1.7.0","karma-coverage":"0.5.2","load-grunt-tasks":"3.3.0","grunt-update-json":"0.2.1","karma-jasmine-ajax":"0.1.13","webpack-dev-server":"1.12.0","grunt-contrib-clean":"0.6.0","grunt-contrib-watch":"0.6.1","grunt-contrib-nodeunit":"0.4.1","karma-sourcemap-loader":"0.3.5","karma-phantomjs-launcher":"0.2.1","istanbul-instrumenter-loader":"^0.1.3"}},"0.8.1":{"name":"axios","version":"0.8.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.8.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"e0eafec0f346139527dc3b79fdcbff8034a24045","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.8.1.tgz","integrity":"sha512-YnMreaDO4t7xufT7xeGyetgG/UTifuwzJtcCEa3QnV9RHiIkN5Be/euRHdP8g4TFL38aPxfIfpndc68VPwKeYQ==","signatures":[{"sig":"MEUCIQCy1d0msZBK+ibqIF85MuALb4Shqou//8/mS2rkiW9x5gIgAQOYef/ZczRlbQxkcNfQYriyxI+9oskJAlpVxexj+OI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e0eafec0f346139527dc3b79fdcbff8034a24045","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"9a5dec2dc5aef6eaa0bc4f72f714656bcf29dac3","scripts":{"test":"grunt test","build":"grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.14.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"3.3.1","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"0.13.10","webpack":"1.12.2","grunt-ts":"5.0.0-beta.5","minimist":"1.2.0","coveralls":"2.11.4","grunt-cli":"0.1.13","phantomjs":"1.9.18","es6-promise":"3.0.2","grunt-karma":"0.12.1","karma-sinon":"1.0.4","grunt-banner":"0.5.0","grunt-eslint":"17.2.0","jasmine-core":"2.3.4","grunt-webpack":"1.0.11","karma-jasmine":"0.3.6","karma-webpack":"1.7.0","karma-coverage":"0.5.2","load-grunt-tasks":"3.3.0","grunt-update-json":"0.2.1","karma-jasmine-ajax":"0.1.13","webpack-dev-server":"1.12.0","grunt-contrib-clean":"0.6.0","grunt-contrib-watch":"0.6.1","grunt-contrib-nodeunit":"0.4.1","karma-sourcemap-loader":"0.3.5","karma-phantomjs-launcher":"0.2.1","istanbul-instrumenter-loader":"^0.1.3"}},"0.9.0":{"name":"axios","version":"0.9.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.9.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"89544ac5f55bc94f576db4e663d7530cb4f87d14","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.9.0.tgz","integrity":"sha512-4KrsxDvkqNxUoN8j0+Nbi2AZ74iylHbe7PaHxrntf2+tX283zFC5/24WGTeItjH4jzkhZLBTUxRbicwIzyRk0A==","signatures":[{"sig":"MEUCIDiPN76+kJSzkE7fGJvjd8vvNIFMpdGLXLDH4E7SC7dSAiEAz4kn3PfysHKL28GvMzgXbj/cGjr1gXiUK8iAwRXCiVM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"89544ac5f55bc94f576db4e663d7530cb4f87d14","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"7ec97dd26b3af7bb0995eef178c4edd8989c3152","scripts":{"test":"grunt test","build":"grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.14.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"3.3.1","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"0.13.19","webpack":"1.12.11","grunt-ts":"5.3.2","minimist":"1.2.0","coveralls":"2.11.6","grunt-cli":"0.1.13","phantomjs":"1.9.19","es6-promise":"3.0.2","grunt-karma":"0.12.1","karma-sinon":"1.0.4","grunt-banner":"0.6.0","grunt-eslint":"17.3.1","jasmine-core":"2.4.1","grunt-webpack":"1.0.11","karma-jasmine":"0.3.6","karma-webpack":"1.7.0","karma-coverage":"0.5.3","load-grunt-tasks":"3.4.0","grunt-update-json":"0.2.2","karma-jasmine-ajax":"0.1.13","webpack-dev-server":"1.14.1","grunt-contrib-clean":"0.7.0","grunt-contrib-watch":"0.6.1","grunt-contrib-nodeunit":"0.4.1","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"0.2.3","istanbul-instrumenter-loader":"^0.1.3"}},"0.9.1":{"name":"axios","version":"0.9.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.9.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"95608b16447ee29b033589854c3fc7ee2c06bf6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.9.1.tgz","integrity":"sha512-AG+MFLQo7wB9RcIos3MvbnGpaHzf3ZgiI9IRlwtepdyysB0KPxKh18Bw6tztd4ZRjpj6wW/PdTolzYfPzspfKA==","signatures":[{"sig":"MEYCIQCuoMxHcQbY6x4Acjxs+kJaXaX8rEBIgUBCB1/2K91D7QIhAIiUe2QPlD0J1uTYipIqO38jDXZHNaVcS+gO/xDGXKbZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"95608b16447ee29b033589854c3fc7ee2c06bf6e","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"5176623d6c70e9d66c17f7867703a8e9990554bd","scripts":{"test":"grunt test","build":"grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.14.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"3.3.1","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"0.13.19","webpack":"1.12.11","grunt-ts":"5.3.2","minimist":"1.2.0","coveralls":"2.11.6","grunt-cli":"0.1.13","phantomjs":"1.9.19","es6-promise":"3.0.2","grunt-karma":"0.12.1","karma-sinon":"1.0.4","grunt-banner":"0.6.0","grunt-eslint":"17.3.1","jasmine-core":"2.4.1","grunt-webpack":"1.0.11","karma-jasmine":"0.3.6","karma-webpack":"1.7.0","karma-coverage":"0.5.3","load-grunt-tasks":"3.4.0","grunt-update-json":"0.2.2","karma-jasmine-ajax":"0.1.13","webpack-dev-server":"1.14.1","grunt-contrib-clean":"0.7.0","grunt-contrib-watch":"0.6.1","grunt-contrib-nodeunit":"0.4.1","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"0.2.3","istanbul-instrumenter-loader":"^0.1.3"}},"0.10.0":{"name":"axios","version":"0.10.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.10.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"5b0ec0d5fb53e79b98b7bf84c0e9b1cf902fdfc4","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.10.0.tgz","integrity":"sha512-sO0TPp3bUhC63P9qu7AvQgqvovFdtugBjnIm9OJS/ylRL+ojNo3i4FwdcmUievEr3ZtuIB3AYRDrZfThp1vVkw==","signatures":[{"sig":"MEUCIQDs8vVkEoStll6OaCjiLCwM0Poso/yQ66UPNmdQtZfcBwIgb32tbf/Nbs+w4cLC1kPXoEF0/nvpfQBQ6toBlsDJkR0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5b0ec0d5fb53e79b98b7bf84c0e9b1cf902fdfc4","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"2797f10ea5d2cd963a8e5c80da319848bad9f499","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.14.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"3.3.1","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"0.13.21","sinon":"1.17.3","webpack":"1.12.14","grunt-ts":"5.3.2","minimist":"1.2.0","coveralls":"2.11.8","grunt-cli":"0.1.13","es6-promise":"3.1.2","grunt-karma":"0.12.1","karma-sinon":"1.0.4","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"2.4.1","grunt-webpack":"1.0.11","karma-jasmine":"0.3.7","karma-webpack":"1.7.0","karma-coverage":"0.5.4","load-grunt-tasks":"3.4.1","karma-jasmine-ajax":"0.1.13","phantomjs-prebuilt":"2.1.6","webpack-dev-server":"1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^0.3.0","karma-sauce-launcher":"^0.3.1","karma-chrome-launcher":"^0.2.2","karma-safari-launcher":"^0.1.1","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.10.0.tgz_1461214339472_0.5915569786448032","host":"packages-16-east.internal.npmjs.com"}},"0.11.0":{"name":"axios","version":"0.11.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.11.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"50adc59bd0f11bee89a383b24b2d407648e6d6e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.11.0.tgz","integrity":"sha512-ofeYJ1HlpKXE6Oa/hVkcYwDsMBlmTGCZwypNUY3SnxwVe8ZQyd8Gje+6bPKG3NEUtUdUwwhVaeJkWWNW5KlOXw==","signatures":[{"sig":"MEQCIHPEoHhywOnzt0th3VbxmqCGqcb/NW02QR/bEga60UH9AiA8EDqGUWJ8nc/4P6Gyd1MuahlWP2stB6FiDtNeri/QJA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"50adc59bd0f11bee89a383b24b2d407648e6d6e8","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"82d34ac743022aaf0c4e68650b39d2f7edab73a4","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"3.8.6","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.0.0","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"0.13.21","sinon":"1.17.3","webpack":"1.12.14","grunt-ts":"5.3.2","minimist":"1.2.0","coveralls":"2.11.8","grunt-cli":"0.1.13","es6-promise":"3.1.2","grunt-karma":"0.12.1","karma-sinon":"1.0.4","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"2.4.1","grunt-webpack":"1.0.11","karma-jasmine":"0.3.7","karma-webpack":"1.7.0","karma-coverage":"0.5.4","load-grunt-tasks":"3.4.1","karma-jasmine-ajax":"0.1.13","phantomjs-prebuilt":"2.1.6","webpack-dev-server":"1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^0.3.0","karma-sauce-launcher":"^0.3.1","karma-chrome-launcher":"^0.2.2","karma-safari-launcher":"^0.1.1","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.11.0.tgz_1461730790535_0.26179565815255046","host":"packages-16-east.internal.npmjs.com"}},"0.11.1":{"name":"axios","version":"0.11.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.11.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"39cdb65813e2c549d1c2e9c389f7e33aa65cca22","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.11.1.tgz","integrity":"sha512-qNx0yZwWXV1HbQBNA41uGPr8l6gcZCbDWQwmT1DSCKfr9e39Dd5e4hPLWkF6uMP84n8ckkVPfF6+E92wMzJzkQ==","signatures":[{"sig":"MEUCIQD/Jb3W6zwNMKgxPsGZo/B3RPA24faxTDTMLUAuT61E7AIgHoFXeWnZ7OGMj/S08u41JeHOOyQ9VUwGxg0jYA1UHMo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"39cdb65813e2c549d1c2e9c389f7e33aa65cca22","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"2e949495f0177bd4f4faab8ce031aa32bef50f47","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"2.14.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"3.3.1","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"0.13.21","sinon":"1.17.3","webpack":"1.12.14","grunt-ts":"5.3.2","minimist":"1.2.0","coveralls":"2.11.8","grunt-cli":"0.1.13","es6-promise":"3.1.2","grunt-karma":"0.12.1","karma-sinon":"1.0.4","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"2.4.1","grunt-webpack":"1.0.11","karma-jasmine":"0.3.7","karma-webpack":"1.7.0","karma-coverage":"0.5.4","load-grunt-tasks":"3.4.1","karma-jasmine-ajax":"0.1.13","phantomjs-prebuilt":"2.1.6","webpack-dev-server":"1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^0.3.0","karma-sauce-launcher":"^0.3.1","karma-chrome-launcher":"^0.2.2","karma-safari-launcher":"^0.1.1","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.11.1.tgz_1463500767835_0.40583729767240584","host":"packages-12-west.internal.npmjs.com"}},"0.12.0":{"name":"axios","version":"0.12.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.12.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"b907b0221cc34ec1c9fac18ec7f07ddf95785ba4","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.12.0.tgz","integrity":"sha512-FyH6bSfRAKChMa6yvHVFcnaBj6zcbKFCZMvNsG+q0r+n2XplEIhxu6JPq73I6wL196aAzUxUYktcayWKAlbiPQ==","signatures":[{"sig":"MEUCIFugf0p4uEgg4Je9Jh2SkU5IapK29LnYaf4z5dWO+hicAiEAp5GuBmbmumH1MGSWjcV4gw970YY7aMxsHiSHxy7XHaE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b907b0221cc34ec1c9fac18ec7f07ddf95785ba4","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"4d1269cb4a9773db128f459046b6c4c2a0926859","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"3.8.6","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.0.0","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"0.13.21","sinon":"1.17.3","webpack":"1.12.14","grunt-ts":"5.3.2","minimist":"1.2.0","coveralls":"2.11.8","grunt-cli":"0.1.13","es6-promise":"3.1.2","grunt-karma":"0.12.1","karma-sinon":"1.0.4","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"2.4.1","grunt-webpack":"1.0.11","karma-jasmine":"0.3.7","karma-webpack":"1.7.0","karma-coverage":"0.5.4","load-grunt-tasks":"3.4.1","url-search-params":"0.5.0","karma-jasmine-ajax":"0.1.13","phantomjs-prebuilt":"2.1.6","webpack-dev-server":"1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^0.3.0","karma-sauce-launcher":"^0.3.1","karma-chrome-launcher":"^0.2.2","karma-safari-launcher":"^0.1.1","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^0.1.7","karma-sourcemap-loader":"0.3.7","karma-phantomjs-launcher":"1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.12.0.tgz_1464758575925_0.8698380121495575","host":"packages-16-east.internal.npmjs.com"}},"0.13.0":{"name":"axios","version":"0.13.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.13.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"b3b5243ef7e67794fc951bef0298d0bab29ffd54","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.13.0.tgz","integrity":"sha512-C4zDEKQOVsOrkKzLwK8j0gPgTjoHhRgPIh5/2lsixUfwCjh8TyivrmKeRVtWPc01myiF7efEsrHqIUXKBsAnVA==","signatures":[{"sig":"MEQCIBzKMqrz19m2yDOtitbH8UfoAvWY8rgYNKbS0nJC1mX7AiAFdhqMBNMU5KV+GOwEjD3QZl8q2KhdY1t0ctgw9CvvkA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"b3b5243ef7e67794fc951bef0298d0bab29ffd54","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"ff919487e13430098d3da37a37cc04c3f24b59c4","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"3.9.5","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"3.3.1","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"^0.13.22","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"5.3.2","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"0.1.13","es6-promise":"^3.2.1","grunt-karma":"0.12.1","karma-sinon":"^1.0.5","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"^2.4.1","grunt-webpack":"1.0.11","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"3.4.1","url-search-params":"^0.5.0","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.0.0","karma-chrome-launcher":"^1.0.1","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.13.0.tgz_1468438960057_0.3536213035695255","host":"packages-16-east.internal.npmjs.com"}},"0.13.1":{"name":"axios","version":"0.13.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.13.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"3e67abfe4333bc9d2d5fe6fbd13b4694eafc8df8","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.13.1.tgz","integrity":"sha512-tPsmD7JWiEcoiKNSGDKKOF3w4QMzOlZygUpcT7g/N+7viNpxz8rDizTHvYZPobB7xgJUfSzQWj+ufQC7ISfO1w==","signatures":[{"sig":"MEUCIQD6ABqSiBaG4XYFP1TUUIIGYVhKMNE7SPA5hLwy/LQShAIgJg/wJ5fdeZYhtfooKiRyqV++Be9CygboNE51okN3wnk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"3e67abfe4333bc9d2d5fe6fbd13b4694eafc8df8","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"377efb89aed819ed1cd416b69f057632ad5664a5","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"_npmUser":{"name":"mzabriskie","email":"mzabriskie@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"typescript":{"definition":"./axios.d.ts"},"_npmVersion":"3.9.5","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"3.3.1","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"^0.13.22","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"5.3.2","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"0.1.13","es6-promise":"^3.2.1","grunt-karma":"0.12.1","karma-sinon":"^1.0.5","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"^2.4.1","grunt-webpack":"1.0.11","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"3.4.1","url-search-params":"^0.5.0","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.0.0","karma-chrome-launcher":"^1.0.1","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.13.1.tgz_1468689204636_0.7909611663781106","host":"packages-12-west.internal.npmjs.com"}},"0.14.0":{"name":"axios","version":"0.14.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.14.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"40f24f2f4e913b9faa43d3a7b2e40ab8729afa90","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.14.0.tgz","integrity":"sha512-ezl41/VugKTpB5D7g3KjZOHzcAIlKsoDPC5HqxNxemZsLxuMUhP5oQymOD6rCVVyQQP0RuIcuZXl1iMQkWxrhw==","signatures":[{"sig":"MEUCIQDRt9jbq0nLPg2KUFkUg/SCJOylWIY9UMygd001T/R8UQIgA7kOx0TZlQFEbkxR8nB2UaCAAmLV+/IxLJ4PbR8BU+E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"40f24f2f4e913b9faa43d3a7b2e40ab8729afa90","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"c96348660dacddd32676924d4f1bde535c45fb77","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./axios.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"3.9.5","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.2.2","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"^0.13.22","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"5.3.2","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"0.1.13","es6-promise":"^3.2.1","grunt-karma":"0.12.1","karma-sinon":"^1.0.5","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"^2.4.1","grunt-typings":"0.1.5","grunt-webpack":"1.0.11","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"3.4.1","url-search-params":"^0.5.0","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.0.0","karma-chrome-launcher":"^1.0.1","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.14.0.tgz_1472322619923_0.0996575120370835","host":"packages-16-east.internal.npmjs.com"}},"0.15.0":{"name":"axios","version":"0.15.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.15.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"69a4cbe8646866a22f1075048c41724ecef447ce","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.15.0.tgz","integrity":"sha512-42XIldb+kzlBR3oD8DbEBUuig+XxZFURv7qlecDANa+kabl6tkiJT2rBdR/Phnby+iSbOYbiSRx6j5+ozoOr+Q==","signatures":[{"sig":"MEUCIQCBWieXtuz6HCen9zu7r9JuHkYto1gNiHmGAhlsETl8wQIgTqnOqprIkzM/dnuOrX2z18BbdiHonJ19nrawQWhgxXc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"69a4cbe8646866a22f1075048c41724ecef447ce","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"e8c5c49ea2f2cf4fd45eaf81270a6d23546e2c93","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./axios.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"3.9.5","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.2.2","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"^0.13.22","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"5.3.2","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"0.1.13","es6-promise":"^3.2.1","grunt-karma":"0.12.1","karma-sinon":"^1.0.5","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"^2.4.1","grunt-typings":"0.1.5","grunt-webpack":"1.0.11","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"3.4.1","url-search-params":"^0.5.0","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.0.0","karma-chrome-launcher":"^1.0.1","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.15.0.tgz_1476160841391_0.021248114528134465","host":"packages-12-west.internal.npmjs.com"}},"0.15.1":{"name":"axios","version":"0.15.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.15.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"9395b9ba25005e478dfd7239e8c4345ff10cd85b","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.15.1.tgz","integrity":"sha512-gkubWPcUBrfRGmANiUcWJnbA7oyhYOkWzuXWzuIB0v/LPaNqlKE1Ke9jr8t1f2+vy0k5zMQzwqehjw07nPvBeg==","signatures":[{"sig":"MEUCIDUK+aSg60WSYmByUVW6r5aAJmc/JCumMTJivpxJ3/utAiEApu24LTEYr6Jpivsyjc1f0YFIGNYyPh1dpmPNz5dT2zo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"9395b9ba25005e478dfd7239e8c4345ff10cd85b","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"3f8b128da4ab11e34f0b880381f9395b2ab0e22f","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./axios.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"3.9.5","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.2.2","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"^0.13.22","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"5.3.2","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"0.1.13","es6-promise":"^3.2.1","grunt-karma":"0.12.1","karma-sinon":"^1.0.5","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"^2.4.1","grunt-typings":"0.1.5","grunt-webpack":"1.0.11","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"3.4.1","url-search-params":"^0.5.0","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.0.0","karma-chrome-launcher":"^1.0.1","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.15.1.tgz_1476513563518_0.10022198990918696","host":"packages-12-west.internal.npmjs.com"}},"0.15.2":{"name":"axios","version":"0.15.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.15.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"496f50980b2ce1ad2e195af93c2d03b4d035e90d","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.15.2.tgz","integrity":"sha512-RCFd+A1fO/DVvW7NvbMN7qjADYnRMQAl/sEOARHPV7g+vxye4W3WOKQ5eVC2iuFB9H9Il6v9cSVRB0sqfFPUHw==","signatures":[{"sig":"MEUCICKckteXc4xaV6uDr0sLH1xqz6dCLyiw1EWcDT5Rw1D6AiEAgGutMrNM+dWa7fCU9KgRmgxImQb8nrn7Sr8K/YU2Eps=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"496f50980b2ce1ad2e195af93c2d03b4d035e90d","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"3af756049f102be2eebafdbb108f10173380a68d","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./axios.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"3.9.5","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.2.2","dependencies":{"follow-redirects":"0.0.7"},"devDependencies":{"grunt":"0.4.5","karma":"^0.13.22","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"5.3.2","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"0.1.13","es6-promise":"^3.2.1","grunt-karma":"0.12.1","karma-sinon":"^1.0.5","grunt-banner":"0.6.0","grunt-eslint":"18.0.0","jasmine-core":"^2.4.1","grunt-typings":"0.1.5","grunt-webpack":"1.0.11","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"3.4.1","url-search-params":"^0.5.0","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"1.0.0","grunt-contrib-watch":"0.6.1","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.0.0","karma-chrome-launcher":"^1.0.1","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^0.2.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.15.2.tgz_1476754397518_0.807653674390167","host":"packages-16-east.internal.npmjs.com"}},"0.15.3":{"name":"axios","version":"0.15.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.15.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.15.3.tgz","integrity":"sha512-w3/VNaraEcDri16lbemQWQGKfaFk9O0IZkzKlLeF5r6WWDv9TkcXkP+MWkRK8FbxwfozY/liI+qtvhV295t3HQ==","signatures":[{"sig":"MEUCIQDp4lWfSUdVB6FFbexeG6IvQwy0Sre4hs0XMMfZNAzHzQIgAk9eJ4wNKRHKeq/5tG/6skH4UMSoFQtX0oevhIbwLgg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2c9d638b2e191a08ea1d6cc988eadd6ba5bdc053","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"4976816808c4e81acad2393c429832afeaf9664d","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"3.10.8","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"7.0.0","dependencies":{"follow-redirects":"1.0.0"},"devDependencies":{"grunt":"^1.0.1","karma":"^1.3.0","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.3","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"^1.2.0","typescript":"^2.0.3","es6-promise":"^4.0.5","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^19.0.0","jasmine-core":"^2.4.1","grunt-typings":"^0.1.5","grunt-webpack":"^1.0.18","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"^3.5.2","url-search-params":"^0.6.1","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.0.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.1.0","karma-chrome-launcher":"^2.0.0","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.15.3.tgz_1480283949051_0.7373273745179176","host":"packages-18-east.internal.npmjs.com"}},"0.16.0":{"name":"axios","version":"0.16.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.16.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"6ed9771d815f429e7510f2838262957c4953d3b6","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.16.0.tgz","integrity":"sha512-JMN6DA1EOVdjjCqiP5Ff/kByHDcMv6WtYBOf6pX1AhBA7g5wpzBf5dt3H1/30YRogmhk+hcF9OfpeI/TkPIFGw==","signatures":[{"sig":"MEQCIHqxReBzftbs8SJXY3ElqY/HTe0pVCacL2OhkGgs7s8oAiB4IIu5jN7fDzCNNMoglWEeU1STk6pYEMd3dOtZHPhWJw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"6ed9771d815f429e7510f2838262957c4953d3b6","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"19b794848047e51f5d8689cf48820c986df49d25","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"4.1.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"7.5.0","dependencies":{"follow-redirects":"1.0.0"},"devDependencies":{"grunt":"^1.0.1","karma":"^1.3.0","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.3","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"^1.2.0","typescript":"^2.0.3","es6-promise":"^4.0.5","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^19.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"^3.5.2","url-search-params":"^0.6.1","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.0.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.1.0","karma-chrome-launcher":"^2.0.0","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.16.0.tgz_1491013868789_0.13724043127149343","host":"packages-12-west.internal.npmjs.com"}},"0.16.1":{"name":"axios","version":"0.16.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.16.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"c0b6d26600842384b8f509e57111f0d2df8223ca","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.16.1.tgz","integrity":"sha512-dm8XNlNAD6yRqbxfzK3OBtNs/953XqC6sns+c2jtk8Q1u24ZYPVfQUwtAFJ/PBBSDmafcCg5C3DCJjReOFFRZQ==","signatures":[{"sig":"MEUCIQCvSr4/LOAdVS8NvD6IAGcUY2JMLpZltyRHnrzmbwO2tQIgc/zDn95uAj1UvdOmJAnOfFZRWlyA8D3zsVYYAZ/V9zQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"c0b6d26600842384b8f509e57111f0d2df8223ca","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"5c8095e48329dacaec1f8d43a9b84ed275fbd0ef","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"3.10.10","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.10.1","dependencies":{"follow-redirects":"^1.2.3"},"devDependencies":{"grunt":"^1.0.1","karma":"^1.3.0","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.3","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"^1.2.0","typescript":"^2.0.3","es6-promise":"^4.0.5","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^19.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"^3.5.2","url-search-params":"^0.6.1","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.0.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.1.0","karma-chrome-launcher":"^2.0.0","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.16.1.tgz_1491677517114_0.6866208903957158","host":"packages-18-east.internal.npmjs.com"}},"0.16.2":{"name":"axios","version":"0.16.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.16.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/mzabriskie/axios","bugs":{"url":"https://github.com/mzabriskie/axios/issues"},"dist":{"shasum":"ba4f92f17167dfbab40983785454b9ac149c3c6d","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.16.2.tgz","integrity":"sha512-IMYFDrcVbUksQhsMYtWCM6KdNaDpr1NY56dpzaIgj92ecPVI29bf2sOgAf8aGTiq8UoixJD61Pj0Ahej5DPv7w==","signatures":[{"sig":"MEUCIDUKZPV87aenpMfLRXZryztKVvIBw6XM7Q4CIpfTH0x8AiEAwEPHZ0KWGtL+hFtHDe+/ObQtgVXM0/Q4txM4DGtbmng=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"ba4f92f17167dfbab40983785454b9ac149c3c6d","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"46e275c407f81c44dd9aad419b6e861d8a936580","scripts":{"test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/mzabriskie/axios.git","type":"git"},"_npmVersion":"3.10.10","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.10.1","dependencies":{"is-buffer":"^1.1.5","follow-redirects":"^1.2.3"},"devDependencies":{"grunt":"^1.0.1","karma":"^1.3.0","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.3","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"^1.2.0","typescript":"^2.0.3","es6-promise":"^4.0.5","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^19.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"^3.5.2","url-search-params":"^0.6.1","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.0.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.1.0","karma-chrome-launcher":"^2.0.0","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.16.2.tgz_1496518163672_0.8309127793181688","host":"s3://npm-registry-packages"}},"0.17.0":{"name":"axios","version":"0.17.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.17.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"7da747916db803f761651d6091d708789b953c6a","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.17.0.tgz","integrity":"sha512-n3PCq2tdo7y4/zEj7JkxoBWopOSIR/m6hjKaaXAgbZhCK1HcbEPkYlbtyyA1hfry/neSHAo7LRrXSystUGrXXg==","signatures":[{"sig":"MEYCIQD427125dvXs6pNDuyI1JJ/So22PvED885WpbPfhDTI3QIhAJth82czYcIN2jHTWZazEmgfO7OPY9PO0tyvx4U8d2kX","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"7da747916db803f761651d6091d708789b953c6a","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"2c0e3183215d9a5fbc2ee8f35f459ac0e4d9f99c","scripts":{"test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"3.10.10","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.10.1","dependencies":{"is-buffer":"^1.1.5","follow-redirects":"^1.2.3"},"devDependencies":{"grunt":"^1.0.1","karma":"^1.3.0","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.3","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"^1.2.0","bundlesize":"^0.5.7","typescript":"^2.0.3","es6-promise":"^4.0.5","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^19.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"^3.5.2","url-search-params":"^0.6.1","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.0.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.1.0","karma-chrome-launcher":"^2.0.0","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.17.0.tgz_1508608890069_0.7621918669901788","host":"s3://npm-registry-packages"}},"0.17.1":{"name":"axios","version":"0.17.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.17.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"2d8e3e5d0bdbd7327f91bc814f5c57660f81824d","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.17.1.tgz","integrity":"sha512-mZzWRyJeJ0rtK7e1/6iYBUzmeXjzei+1h1IvbedyU0sB52++tU5AU6r6TLXpwNVR0ebXIpvTVW+9CpWNyc1n8w==","signatures":[{"sig":"MEUCIAry6m0nY1dCj8zANWP6U2v8A5kl2rdqJ2wBoN3Fqw/6AiEAyQASvWyvHkYm2tuoyguzLPOqqpFrKlAfUohjilJQncE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"2d8e3e5d0bdbd7327f91bc814f5c57660f81824d","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"ad1195f0702381a77b4f2863aad6ddb1002ffd51","scripts":{"test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"3.10.10","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.10.1","dependencies":{"is-buffer":"^1.1.5","follow-redirects":"^1.2.5"},"devDependencies":{"grunt":"^1.0.1","karma":"^1.3.0","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.3","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"^1.2.0","bundlesize":"^0.5.7","typescript":"^2.0.3","es6-promise":"^4.0.5","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^19.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"^3.5.2","url-search-params":"^0.6.1","karma-jasmine-ajax":"^0.1.13","phantomjs-prebuilt":"^2.1.7","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.0.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.1.0","karma-chrome-launcher":"^2.0.0","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","karma-phantomjs-launcher":"^1.0.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios-0.17.1.tgz_1510442680505_0.5486412935424596","host":"s3://npm-registry-packages"}},"0.18.0":{"name":"axios","version":"0.18.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.18.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"32d53e4851efdc0a11993b6cd000789d70c05102","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.18.0.tgz","fileCount":40,"integrity":"sha512-14hgP2oTu6SPu+26Ofye6Se8u5Mmjc07a0ACHTJ5POKFU1Mtxz2IxSvaWy1O+QnbSa8XHy1gYz2E1l+G26XJdA==","signatures":[{"sig":"MEYCIQC4CNSUQ4q5fU8CNyCcN5jjsj0JYN6orkJfJnaVw6avtgIhAIfVJGNMrNwXRm4nK31JU9vE0Ajow3mfrugePyijXvrS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":307840},"main":"index.js","_from":".","_shasum":"32d53e4851efdc0a11993b6cd000789d70c05102","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"d59c70fdfd35106130e9f783d0dbdcddd145b58f","scripts":{"test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"3.10.10","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"6.9.5","dependencies":{"is-buffer":"^1.1.5","follow-redirects":"^1.3.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.1","karma":"^1.3.0","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.3","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"^1.2.0","bundlesize":"^0.5.7","typescript":"^2.0.3","es6-promise":"^4.0.5","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^19.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"^3.5.2","url-search-params":"^0.6.1","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.0.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.1.0","karma-chrome-launcher":"^2.0.0","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.18.0_1519082934092_0.24234210178813442","host":"s3://npm-registry-packages"}},"0.19.0-beta.1":{"name":"axios","version":"0.19.0-beta.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.19.0-beta.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"3d6a9ee75885d1fd39e108df9a4fb2e48e1af1e8","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.19.0-beta.1.tgz","fileCount":40,"integrity":"sha512-Dizm4IyB5T9OrREhPgbqUSofTOjhNJoc+CLjUtyH8SQUyFfik777lLjhl9cVQ4oo3bykkPAN20rxmY1o5w0jrw==","signatures":[{"sig":"MEYCIQD/psvvYz2bVCH5oPxL78U6+0oW0NFDYcj8F91wmeRm3QIhAOkQumtgsvJ6BjKLeJ86ggs6kpVptjkWIj6GpXp0ArOh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":324939,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbbIuJCRA9TVsSAnZWagAAnvUP/jEw0BG15xpUqzV1Z3IQ\nk9UMtbNc9ZXMtIgjjMqIEic1WCr5H9GZ62FVF1pOTX5YlaCWgaYqzOTCvj5w\no+hgxMgMcyUIx6QsdhL6JjMstI/XWigVPnKUTqYhEtFJZML2c4g1hwxXJci7\nJeTcREn7u+WnRFM1Qf88q4Dqn355rHNuJwFq3Nvqo8SEQfbDOwSafGXuniXQ\nlnFjlGT3cmUK08TBeBQGq9zRsSP3BBXFuIKLwVHyPfFf0uufWuylnU1kjf5s\nbyzarKlK1jguIa6r/jkVpP66uxgLWdN04Cr0N7sWs0fy68C3dRpp1Gm/6Oak\nvp2lLePxPekzpAV9vAxwNfhoLLrV3c/Q7ZncODQLKyA4D9Byg3pvYHySpH1+\nH3AgZZt50pkUSVuJ9pqrWqz0g/AL5loMlhmm9mz8wvOewjA/9MMnUk0pHF3e\nLxwnLn3ZXk8mcsg70kp81hZFG14XQYasF7lnn3wyem3YKqkQsuV4f9iYvVoT\nNdyNeiJpDkRUK7dW3GUUhfH0MxTxBUO2bcUGQEo8EKFrPgrPAemTMSr7lhCZ\n5W5UFLuztilsEIGoY62Qr2N2/ACie0a2KYaFrEHoUobGVw8RFBJeRttZ3crq\nyR3rLdVPQelsZJeOmtHTg8TTlld+pzAnBdwmgCRS5vdjIXa9COo68kJThtkY\ni1G7\r\n=Fgzx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"527381198e8112dd298918b3d9d6c643763a59c3","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Beta version should not be used anymore","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.1.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"8.11.2","dependencies":{"is-buffer":"^2.0.2","follow-redirects":"^1.4.1"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"grunt":"^1.0.2","karma":"^1.3.0","mocha":"^5.2.0","sinon":"^4.5.0","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","bundlesize":"^0.17.0","typescript":"^2.8.1","es6-promise":"^4.2.4","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^20.1.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^1.1.1","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-chrome-launcher":"^2.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.19.0-beta.1_1533840265098_0.9346787865811605","host":"s3://npm-registry-packages"}},"0.19.0":{"name":"axios","version":"0.19.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.19.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"8e09bff3d9122e133f7b8101c8fbdd00ed3d2ab8","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.19.0.tgz","fileCount":40,"integrity":"sha512-1uvKqKQta3KBxIz14F2v06AEHZ/dIoeKfbTRkK1E5oqjDnuEerLmYTgJB5AiQZHJcljpg1TuRzdjDR06qNk0DQ==","signatures":[{"sig":"MEUCIQCvZo4iZzYOqR9jDd5QpDbqU3L8vZ5BUsvA0GpJC6LRWAIgU8w6KLCbdgZ+5nAkse57rLFESKjO9+mvL6LXw7KM1oQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":329975,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8AEdCRA9TVsSAnZWagAA7oAQAIoxS4ZIzihXpGVDroAw\nl3qo8ZsDey8n+C3rEr0z11GX7/JY3bxbnyyLrj62v0zJ+zg2m/1G+qJD9wYG\nUo84LVDlNlRoOzGvlAxt0VIjLoQhiMEcARAGOb3cQLH5Cj7olIa6RIP6E3Bw\nsfM1TSUEXZ5Qpc4HKRrIMtJ8ZHZ+ml0/YhzZBYYDXHCX9SCM8Sceb/nunSOI\n9Ui5Ulrturl9lk3POfBj6VnpKljZ02EKmifVHGjAAqsPFo5QSi9CYYLSc6Mo\nlWy/cE4P56uwshwEobi3RKiymQ0FOOOj5FqHiNSCA6tP/IVTPdThlMLBv4ru\n9WoP7N+LRm5MKbyD9+QctOvZNwACY/sY0xMIZeBAxj5sIyigiCLxn/KUk0tt\nJ3wPXc4cqRyqIppGVnEnJE5QKfre12Ebnqslhai7YW2MbWjjB2vXK4wWwn1m\nNU+I5H39vFYLvsDGuGuPNr5+0KtyrIlCDi0nm8GTa283QuebaccGvQzuGlm/\nukoVzkPp24akPjHOUyhpc+2WIQA/mMC1yUD1S9thQ6InmetMAj/7XE5SZAY4\nkVBzRr25/LwhY2ZAAtX9gjjJsNQ9agw7kPe7Lkt0+1Flob9gH9GJftbEEyWe\nnW/Ol48L6F+c/NK3B9hGHEqyJWc5mBnfDMOvbYnrzNNPBvlz3j/WOCvKQwj5\nW2Db\r\n=eIur\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"8d0b92b2678d96770304dd767cd05a59d37f12cf","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.4.1","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"10.14.1","dependencies":{"is-buffer":"^2.0.2","follow-redirects":"1.5.10"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.2","karma":"^1.3.0","mocha":"^5.2.0","sinon":"^4.5.0","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","bundlesize":"^0.17.0","typescript":"^2.8.1","es6-promise":"^4.2.4","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^20.1.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^1.1.1","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-chrome-launcher":"^2.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.19.0_1559232796730_0.8176323141298978","host":"s3://npm-registry-packages"}},"0.18.1":{"name":"axios","version":"0.18.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.18.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"ff3f0de2e7b5d180e757ad98000f1081b87bcea3","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.18.1.tgz","fileCount":39,"integrity":"sha512-0BfJq4NSfQXd+SkFdrvFbG7addhYSBA2mQwISr46pD6E5iqkWg02RAs8vyTT/j0RTnoYmeXauBuSv1qKwR179g==","signatures":[{"sig":"MEUCIQDi7yC9PDuskFqy/4M+5lXN3sLBXIOOzyZSD+BRkUBy6wIgBoTIYX54wEAZhIksPDQq7QvZW4GOj4SlSPAI/iJSsuU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":293785,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc8crsCRA9TVsSAnZWagAAMs0QAKSsAzOc8kUxnYJ6E0Pd\nRbKe8SPjO6U/loW+Y5YTIxs81QhTqTq+fFxA8RAnQAB6/DRXrpjPFbqv63iQ\niygsQod95GRUa4MwJnL4a6EEM4nB00yaExxElTmiTh2B3KgESY9WST+CHK/V\nvJ1BIAQO5nh1wgPeKbH7+O0sm5RUk7axt8977YP6KtsrGEjvE4nigcYB1c37\ngpjvQqhg/0Ofpxpt9PBHpYlhKnmam9+/UzOZcQmnKTs/04MilB8iVk0oQleU\nyn/nzhm1kCo3eH9/eFKX9FGiEjnbNwC7NpS6R2/7f+U1JyJYLSFaE5HdCq4F\nin/jIh+4TbTplWcPm43nd180Ffm1ciCSu0RZfwTHOnS/6P68mte6NS81RgTq\nZxdCObWSU+iPELSrwI/R518If7A2iYtNETj7R2Lu7YOV0u7egbIcPvJJPbIy\naB+kk+Kk7+HcHgV+FIdjXQ9YI9Ix+tnXxBuZW4msk0gAuOZR31brXbtOi0CA\nL3XHvWUaYcUcBKHljC5ChC0+Ddo2kzIQrJU62+vcRiNEP3xvfQoeo/iv7E2p\nBU0FQ1zrbDi/iicyE23vSm8fR0R6+TY8lV4AhhBLlrviHHzRTH0CdP3XPn3x\nzL389p2SX3QRkpJ9fGVW28VaNCczBDGCYvl5fcBHD0As/FUqFkEVRubwWPwC\nDsfK\r\n=qJdD\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"face0165de613696d10b1fd2a0e2f7b3852fa018","scripts":{"test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.4.1","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"10.14.1","dependencies":{"is-buffer":"^2.0.2","follow-redirects":"1.5.10"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.1","karma":"^1.3.0","sinon":"^1.17.4","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.3","minimist":"^1.2.0","coveralls":"^2.11.9","grunt-cli":"^1.2.0","bundlesize":"^0.5.7","typescript":"^2.0.3","es6-promise":"^4.0.5","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^19.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.0.2","karma-webpack":"^1.7.0","karma-coverage":"^1.0.0","load-grunt-tasks":"^3.5.2","url-search-params":"^0.6.1","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.0.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.1.0","karma-chrome-launcher":"^2.0.0","karma-safari-launcher":"^1.0.0","grunt-contrib-nodeunit":"^1.0.0","karma-firefox-launcher":"^1.0.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.18.1_1559349996092_0.11914013949107205","host":"s3://npm-registry-packages"}},"0.19.1":{"name":"axios","version":"0.19.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.19.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"8a6a04eed23dfe72747e1dd43c604b8f1677b5aa","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.19.1.tgz","fileCount":42,"integrity":"sha512-Yl+7nfreYKaLRvAvjNPkvfjnQHJM1yLBY3zhqAwcJSwR/6ETkanUgylgtIvkvz0xJ+p/vZuNw8X7Hnb7Whsbpw==","signatures":[{"sig":"MEYCIQD8HrteMDSsZmPugSpRP9eGMBDCYHwkDUMuvyDW7+B1VgIhAKCVFpsE941+OiKuhpWsjiIALhX66Eel03MLdnp/BMPq","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":348347,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeFL6cCRA9TVsSAnZWagAAj0kP/0NPs4Nmu741N8YePwEr\nFEdiHcOB58DTnV08vCfDEbFhrXOjtx2zAaTtuhfXkCvYUOfRCkUXf2E64rpx\npvAhUurGuOun9kO+BCzja1nBoNWxPQfTY+1P7ebEZm403+ZkwvojEt0Sxj5x\nX9zGuvNrwScK3rbUFwZ91h3Kw7Sk4vxFFTBy5aupb2mZr/LAeD+IKQzqbDFq\nlkwQAwcUjeNer4VqRprm/CX/AxFrljxIwvI/1W2ksPiUM/D3AtjQKFAqCPBD\na1BvKKXOU2fMychwrhahJ6/X2sCVr0n3M8189lOiBEv1QIePk37fHJo3wffV\ngZrBoJ4UsCrQBzjshJVdTJXteSpGxQcv16H/IXDX+zW596KQsJ8Amd4pA2iL\nkCAIcKhjxZLcTAZhRGYieI9xtwUt1Kj5b+ALmQY1+fbKOICBO4a+GELeOaAe\n1RCU/uzgPMhA+GiwK0W8gBcPH7gk8u0bGQiNNUka50H9GRlaqgN0Ex4JhMDH\nVyhdhGnvttYVJV2myWLEjCVRiev91f6SBpBjcXlzoHQP0gyzu/Zx8knokVEt\n+P7yzj0u4j90A8fvd9oRxkDfGLsc0qXFEZyIPpvmXP1Rs0VLRflX7X4C2qQw\nooSGYN9bBajw33dkOGHzOiyZ07oIEWdNyeEqQk3mc6aWUusfVIiawrqp7Rm3\nkYmc\r\n=MDJG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"960e1c879892ac6e1c83a798c06b9907e35ad2df","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.9.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"10.16.3","dependencies":{"follow-redirects":"1.5.10"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.2","karma":"^1.3.0","mocha":"^5.2.0","sinon":"^4.5.0","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","bundlesize":"^0.17.0","typescript":"^2.8.1","es6-promise":"^4.2.4","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^20.1.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^1.1.1","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-chrome-launcher":"^2.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.19.1_1578417819619_0.7754632329284743","host":"s3://npm-registry-packages"}},"0.19.2":{"name":"axios","version":"0.19.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.19.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"3ea36c5d8818d0d5f8a8a97a6d36b86cdc00cb27","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.19.2.tgz","fileCount":41,"integrity":"sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==","signatures":[{"sig":"MEUCIEufIpsxjAPjJpaKHcod+3guWOnQ8lDIP8D9ft+O5BdLAiEAoPwOvjmHRfHEUvI9FcAkidOlirSdvaWizcRP3W7RXJA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":346079,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeJ87RCRA9TVsSAnZWagAAlxEP/0UTSKptwwa4wfGLs1uv\nf8oE91diogXtmbmh6cXER9KuNFYnVGcLKVYvBd6m92nTnmyx679aTzvWS65m\n6tzM6ba57JzLyQrd++3s+SUtbifso+ymuApkUVqNlHV74nmaK2G2u0mse7wT\niOOQ7hfFieiDKgMdzdH6P8HCGBnwArRfGaVfzQ2iySHmeB3lwX+4HdxAVIbg\nrSveu71YBlF5CyXzKhJgNF9EccyObd1PFiO4jW7K1KL1/yBD5SS8+yfMdr3o\n4dPLw5JCSHUGkB//I//TN/TiQCZ77GAkQyYcKTPEJXfApRhqPnlki5AtWmWV\nYfPhweKWL4PwUp63oKSq96VPpbh/FL5ZQ42o9jc72gWSnTXYGEXfckeXFBdG\nzavhLSogmWpHrG1afJAdL8/ENCQH3WtXxVeTqbcKZlHg6Bk8PQU7n4T1V7fk\nGvXL0O3jrT7rGQIT9+UX8g3GR//srhzC8L/jG+IV1E1Ett/o7w11sK/SyWj9\nOzJgb4YopF5ilVOTQs+yqXbKNltWpxf3/IdbehP6wB3uG+yZ5o9Z2Wn4AoUb\n8h9cFposAXAFsXxxdxo/SRdlMvE/znVqYHwdu/Rg/EdiE/YFY5RPumTOhEQk\nPHc2KRuuky7m/w8rgxRirc/f2h/3QXyUd8wHfTlLjmcCVrzt3Dj8A2N7zN7b\n5mGo\r\n=I3Vi\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"2a0ff479f9fb7f09a219f5178ca85a6519562ff1","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.4.1","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"10.14.1","dependencies":{"follow-redirects":"1.5.10"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.2","karma":"^1.3.0","mocha":"^5.2.0","sinon":"^4.5.0","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","bundlesize":"^0.17.0","typescript":"^2.8.1","es6-promise":"^4.2.4","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^20.1.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^1.1.1","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-chrome-launcher":"^2.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.19.2_1579667152945_0.06413260032161183","host":"s3://npm-registry-packages"}},"0.20.0-0":{"name":"axios","version":"0.20.0-0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.20.0-0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"cbb49efab92d14be740a04c0f1d0c68031773f36","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.20.0-0.tgz","fileCount":41,"integrity":"sha512-FdJxKL7EntcZprZvis5kDQ13aXVG1Fn022tG45wvP7/ILZ074pedaFLkI4uQgfRCrxwkzXeLnL3GOvXo6gqitg==","signatures":[{"sig":"MEQCIGeikpUXPgkNCd1Kq7a6muBmACEPhzZ6tuuDgwRu8w+eAiBBaTkaXjTdmZQJr8XuTwNTQBWsDNXfUoNi4mWFDgi1wg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":366154,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfDynCCRA9TVsSAnZWagAATxMP+wX5O4SFkWG+CkIPu5sC\nlSuxdfIEWP0WI42nrJYsTC/ei0qWyOKDbLrNCjijWBq9odKS/BQlMEzFEJsk\nLpOZ2XewWM16si8x8vLbZwBOQ1FBj+kf2+3zQdFgHpr/1p43xTnqb1wun4Y8\nWWCI+hx5cmf0P4Gfq0Bd8HOlCcVbZkuAI6kogTQQEMRufMUolALUGwMxA8w6\no32tWjJ5KBM87JNTRODfnCzDfn0xTnyo5Vb0dsLIAmgwnYUiOjSmWRJrqEVO\nHBYAYBqdpbDGAspqHuDdtkv1bdmkMezZgcIEfwFuCQzWebi49O6JidUVcdwO\npnTJ7eKdh84f3mc3OxbHDirSpDW8PKE9ac2OVU4aHS8oMd1eZFb6bxos1nB6\nIQI7P3stwElVy2a37akeT369AdaQd9+pbYtJOld3IdeWehsatth3zMhS8uOw\ndK7+7C8kkezN3QWTBvO9XJMccnk6SZJpa1BdzS8LeQfOXSudjoBFrIkvB7HJ\nEU4oVthUwX8+jV+xlC5BHewux9sY1hvozLWDep7PwKK5HZsTcdzM9mRM8vHq\nLp4apr0onv83OkSl5yHTjyeOQXN2c738fj6IxHtL5jwEZgenn7HlNyGZ2b7Q\ntQ5AO1Q6S1lMoHFk6BZAf1l9GgLcmyB6HvfZN4aYBA7Gd+tfRus2QcmJeQEZ\nT/p7\r\n=V/hP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"ffea03453f77a8176c51554d5f6c3c6829294649","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Pre-release version should not be used anymore","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.13.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.16.1","dependencies":{"follow-redirects":"^1.10.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"grunt":"^1.0.2","karma":"^1.3.0","mocha":"^5.2.0","sinon":"^4.5.0","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","bundlesize":"^0.17.0","typescript":"^2.8.1","es6-promise":"^4.2.4","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^20.1.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^1.1.1","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-chrome-launcher":"^2.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.20.0-0_1594829250349_0.17241303883107806","host":"s3://npm-registry-packages"}},"0.20.0":{"name":"axios","version":"0.20.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.20.0","maintainers":[{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"057ba30f04884694993a8cd07fa394cff11c50bd","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.20.0.tgz","fileCount":41,"integrity":"sha512-ANA4rr2BDcmmAQLOKft2fufrtuvlqR+cXNNinUmvfeSNCOF98PZL+7M/v1zIdGo7OLjEA9J2gXJL+j4zGsl0bA==","signatures":[{"sig":"MEQCIFUUssniNdRMxcC1lYqmzcoirqSe/af1xXbLVvz/RGBkAiBHR5HbcAwVIYHKsgsCPfFjVfAmOA5qg/VLZa0ZHUSJEw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":366242,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfPzuxCRA9TVsSAnZWagAAiLYQAJoLATxRuWzdKlZtnw1E\nSA7BPTDfIOYrvkDIHgOGz8xK8LngQ4rSL3QqydhzljdVR90l+t5d9UR5AOZV\nbYDeFbhahdClrbF+nNwHsaNkdUuKPB68mxKrD9AL4jAExdna3jdFc4wCQ6MH\nWQsqHrNFKt4zGqPRHhdbMp6qdPN7SPLjtRzm46rs2QDaR5p9iXPJBv1a6VbE\n1CNv/PNTBBMOmTB8M9Hb/gOK9kJdQHx96rqk7vW15xGpVv/qbq7bStijbN0i\nHEqDtyNyVOJr6AWsZM0e9qfPrDYmVCg0eYcBne1/w9GABkQajb5iiPFNZiCZ\nqV9LfBTWGFvLFgfm8ay50cjGd0uhZHo0Nmst6nITzr6uvREwtSNlf3wtI219\nt7j+v2nkmdZHf5n+hne4Q5piypTAf/9y4IFg9Qx6+uTg22okaTlw+YY5ljg+\n7yMAmuX/BGDD1quO6RhjQHrA94J4aIjvcV9+8bkuJlN2dbWGNiNaPqKDZLiw\nFf04w3aTNlO3v/v431TYDzhgsuZ+H9lWdxuFj4BAYh2J0BP1ouKEcjZdor5f\nwpGuWNvgKRjRV+GsXrq9Z+a5Rs6QVjFHuVNoW5mskWe6EdUFe+wxud1Ptgbm\n1jTWQM8OH7TYdWovl6HFdF5Yqm01f38FItNb/Vm1o8JyJbqnD6mUa0PKMXVy\nYmUd\r\n=1JD0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"0d8765562401910c1c509f6739a3bc558721e123","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.13.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.16.1","dependencies":{"follow-redirects":"^1.10.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.2","karma":"^1.3.0","mocha":"^5.2.0","sinon":"^4.5.0","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","bundlesize":"^0.17.0","typescript":"^2.8.1","es6-promise":"^4.2.4","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^20.1.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^1.1.1","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-chrome-launcher":"^2.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.20.0_1597979568607_0.029711276345566695","host":"s3://npm-registry-packages"}},"0.21.0":{"name":"axios","version":"0.21.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.21.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"26df088803a2350dff2c27f96fef99fe49442aca","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.21.0.tgz","fileCount":41,"integrity":"sha512-fmkJBknJKoZwem3/IKSSLpkdNXZeBu5Q7GA/aRsr2btgrptmSCxi2oFjZHqGdK9DoTil9PIHlPIZw2EcRJXRvw==","signatures":[{"sig":"MEUCIQDICg+jVI4IyW4UEIOw35HS/3ENV5DhSQFbtOCGkhSFEAIgPc1qBgdL4ty+NLg5Ke+DDS1c29ee1oh3RmnEGq/e41s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":366821,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfkwRiCRA9TVsSAnZWagAAA1kP/3iQ8l7JI/H59ER8u8oL\nzvtAFmTeQhvEhgcnHHhKqgJLl1fWjYPbzTvVPV8MhKoIh8gxX2HRGeeeZGYS\nuyhraDCmbmoiGpv695/3eqXHkmRz0rVEAB6Gn3TJ/vwbvOtPGdsdZ0COYwkK\nJSggexEczWg3IqIQJxy4vLlsHNQ543pieUr6bkVsw8xpURHZqhGOvxHI0q7y\nSn1bPZYKhyZ0DKGrbNklsB0oIVUDFdTVBSgWK+GRhLiIa8IpsUaWhxLnklfr\n6jMmb3lOATgQaanKUsDWMzJdSbld1AoiVBbI+QdVpWcM+1YFuF+DSvWyBQSJ\nVXIcsdTc80JkxY2GIblO7smTdKMRLGZluviT9OCID0rrm/+GTVB+0Z4PwHLz\noABvD0vDW4PN2LLHTewPb54OYdXmqUzDRCU42QaLB0CbL4DRIiuCfgSFC+Uv\nvmzVnWhQ+V9vbnVDMtVNj+Dv/IYEnR5i4Pg3iOVe1qWrHguHP7KAsp5zjllL\nnez3c2NnV8XFF0v3epdOXc789We6F71qwZcvavUFqqQw8r/T77SZIHEmpHRO\nFgkVtZGPuND/d8HVkjsfmvntRCr5inYjktd0rsoofGICd9vx42Lqi+rLc9WD\n4AES1kq73BcIxc56Z0SLXveyt/dRP6HaSpuHO8MoKGg2FyNQKaH5mGvmVtGF\nCIBe\r\n=e7hh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"94ca24b5b23f343769a15f325693246e07c177d2","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Critical security vulnerability fixed in v0.21.1. For more information, see https://github.com/axios/axios/pull/3410","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.13.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.16.1","dependencies":{"follow-redirects":"^1.10.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.2","karma":"^1.3.0","mocha":"^5.2.0","sinon":"^4.5.0","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","bundlesize":"^0.17.0","typescript":"^2.8.1","es6-promise":"^4.2.4","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^20.1.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^1.1.1","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-chrome-launcher":"^2.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.21.0_1603470433768_0.20414005963985304","host":"s3://npm-registry-packages"}},"0.21.1":{"name":"axios","version":"0.21.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.21.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"}],"homepage":"https://github.com/axios/axios","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"22563481962f4d6bde9a76d516ef0e5d3c09b2b8","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.21.1.tgz","fileCount":42,"integrity":"sha512-dKQiRHxGD9PPRIUNIWvZhPTPpl1rf/OxTYKsqKUDjBwYylTvV7SjSHJb9ratfyzM6wCdLCOYLzs73qpg5c4iGA==","signatures":[{"sig":"MEQCIE4dDyvNb6NBXyCl/1Wm4d2cke9px81jizcW4HKGTuKPAiAQH5pVWQDMziWdHyyHsI/WeZGah043DNJH8OaMYezepA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":371182,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJf4XP2CRA9TVsSAnZWagAAs+8QAJQ8FvmiRX9DHil+8R3s\nC48k6BAZ+7DN0jUPLaiFF+F6G2vHFw6slqNQYsx+RMToOHhaFzQayUk68hHG\n+HPoLsBqS9xtX/egRKuxcAqxuZ+3+K/j0XK7JPNPkH2s8BWlaphDiGerb8tA\nrTzvcdwIzLWn09fOP6vaAaCAZFxIE8iWj/ZggATt5IQ5bgXVUrCcxIUKW6g0\ncM+KTRDTKHCNH7MW5wc7IHSHUPsVrhCvL+Kj5AZF85nXVnmdoeVHGwbP22vV\nGqfKMpMJPTV2WD391ZshYbBY0xN+f1aa+/Pp5GU4HWO+ezOWSYk0IFKDMgGc\n5HAPn5P4k2wdgdfmOALY1noMJcHoyvnJFQwd1/GRU9yAlNXUf/TKwYeibUEm\nBsT4DmZXmKkYhMUDghqE9hPQ6p39bLlGIqqbgZYmQWhkZqgHn5MY628vNYNq\n1W//eJE0xJ7s1/inyS02WNIUccec7fAnHOBqs6kcAOTUZFkcW4Tpu19HZQ3V\nvP6GBBIXjghAyGwGPsbMxiThJERgYIG1LAGxl32ZLtOjmRqQYmoqldxGeesc\nYlvvRg02iI+DkMcNtHYJYoGD6fUU/8oshVZIRxOHKwyhgUttJvHkLEQLa34+\ni8XvDPGYt4Ejt+uw8bQG6KZb+v/Z9mMwv/c3WSJAwcuDU0Zy+LqVLnVfKFSU\nDh+E\r\n=cry7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"a64050a6cfbcc708a55a7dc8030d85b1c78cdf38","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && bundlesize","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"6.13.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.16.1","dependencies":{"follow-redirects":"^1.10.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.0.2","karma":"^1.3.0","mocha":"^5.2.0","sinon":"^4.5.0","webpack":"^1.13.1","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","bundlesize":"^0.17.0","typescript":"^2.8.1","es6-promise":"^4.2.4","grunt-karma":"^2.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^20.1.0","jasmine-core":"^2.4.1","grunt-webpack":"^1.0.18","karma-jasmine":"^1.1.1","karma-webpack":"^1.7.0","karma-coverage":"^1.1.1","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^1.14.1","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-opera-launcher":"^1.0.0","karma-sauce-launcher":"^1.2.0","karma-chrome-launcher":"^2.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.21.1_1608610805942_0.04331323981660873","host":"s3://npm-registry-packages"}},"0.21.2":{"name":"axios","version":"0.21.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.21.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"21297d5084b2aeeb422f5d38e7be4fbb82239017","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.21.2.tgz","fileCount":44,"integrity":"sha512-87otirqUw3e8CzHTMO+/9kh/FSgXt/eVDvipijwDtEuwbkySWZ9SBm6VEubmJ/kLKEoLQV/POhxXFb66bfekfg==","signatures":[{"sig":"MEQCIDVzHUobFs0ylvhBQzM7QmA4iMS1+v8u2QZeCi7TgHC0AiBCOKORGqWcaYcrfW5ecyWoz+OwI8oVjM3RLrJkTRM3TQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":372594,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhM0gKCRA9TVsSAnZWagAAIlAP/iO5yPNLelXZ6JprwoET\n8AD/fvYM1Oj8IuPiQxh6e+NDo8yqqUNT+COTtAguVELg7EJBI0TfuFvciem/\nak41edea+kLPe5Lu5Ik3+F1C80mKH4IoSHz3Mk0CVHhqJ289BkNtS0KijFbe\n49xbKx2dobrNs04jEYzB9PgrkPRU/oytAlmlf5s1yZo53WobBhjt9u43CgYm\nbe7o2z++ekzo5XsdKUY62wX5Vr02c3s+Id0m881301c/GU1a5Rxajj4cO1cj\nw4kUr1ps4Wneb+/c5C00vzOapez2YmnTeiw7P2z8jJuYBipFXNGnWjpLcLp+\nesj4uQCGgvWn0b9/WvnTlS5t++e/euFo8pMtyL2QPxgFVAOBXUyR7HsPB4Hy\nyXicpQv4HfxgjD1xGdZL9v91Y7Qn++uiGsTqMDhG73qC07W7P6cAt7z3FqAl\nQIU932mIs08RN+whYsSAdn/BDDlLrhKgCjpEuvrGJR74ks1BwSGVkfSI2Key\nJ8CHKx7M2pBSghLCWX8/hQ67bBi5yGomFGM2pxRyi2QDLpBP7/TJDj+kRC1J\nRm0tkeTMmrTh1c8woVzU2I/T/ETdbV0NbL2VQC48aG1u4ImhFWGuSkXz+CyV\nZwzPON2bo+yY96NxJU8zZ0LBPZR/DKYioFmX/jby6FCQYr6JPbPQJg2D962A\nOKfS\r\n=ucbP\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"c0c87610911e1edebc923d0e932fea28cdfddae3","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","webpack":"^4.44.2","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.21.2_1630750730363_0.15337709793524978","host":"s3://npm-registry-packages"}},"0.21.3":{"name":"axios","version":"0.21.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.21.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"f85d9b747f9b66d59ca463605cedf1844872b82e","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.21.3.tgz","fileCount":44,"integrity":"sha512-JtoZ3Ndke/+Iwt5n+BgSli/3idTvpt5OjKyoCmz4LX5+lPiY5l7C1colYezhlxThjNa/NhngCUWZSZFypIFuaA==","signatures":[{"sig":"MEYCIQDT+8JXrUquTqK/gATt3BJD5DOFuonHYuyLVsYkovOWWQIhALVt1iNjVxxU93JKe5No3ZvjTdSbVLgX2+RE5Rw34MMa","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":373047,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhM8OXCRA9TVsSAnZWagAAvh0P/iahUupi7f1kY1cliePC\niO7jDPTOrgzz7UXgG3UY4bST1G7PMai2FeD+0EpflrtWAmMN8bOocg8cIjcp\nOzQ37SxSEWG8D8fT5lKRKh59x2MnX6YAOL0L7eevIYWZZq5jijojrgz/nUfB\nOBPDbCenbiOl4+jg+RicOc2AJSo6f2JKaJv6FYuMU3UJDzTItbpFaEpccMvP\nyeERbvNRCg3ZOLFcfUCS+9s2+w8V0wEqouIVIcPRD3IdOb34kubsrAOQ/hI/\n6GJIppZ3BffUTCEMrOsTeDFC4qwCTBnhk8muNvqqxHiL8BQCt3mOM3IgaHL5\nzxvyS9NB6mTkL11ldMY94T8uM/ny/DhrjVEwx/SRVwKQxEK2S9JYIY0LYa9i\n2AllRHUo7XeCXNTKd9zH9QQhNmlOyKXjuGAhAqCTexfkTBXoR3PkxFIUY44r\n/l4ojYva1PY/ED/oH9ThBXYxkabDi1jF7fbTJCwne8ojdv1Es/VSF04s8aHp\nUqzixpw/XVZUNQiZO6t9mzSvaep74AU/mHyfeNtQxQ+CWbUGcAy1shaKFOy2\ndFI7bfGne53M2oJAEwYWe+OmIzd931Itlho/u3jZOVFieSpljRBwHmTSNcLP\nrkdLp9OonDH7kT1ofatvYmm83Ijv4oIVvSt8GRzB0LEaqKS46NVgvEIoaG7n\n+iPy\r\n=yOG5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"e367be54dc0e8e3f5dfcba134c69d4a8f1e40324","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","webpack":"^4.44.2","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.21.3_1630782358941_0.03788699441735299","host":"s3://npm-registry-packages"}},"0.21.4":{"name":"axios","version":"0.21.4","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.21.4","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"c67b90dc0568e5c1cf2b0b858c43ba28e2eda575","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.21.4.tgz","fileCount":44,"integrity":"sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==","signatures":[{"sig":"MEUCIGkkAJ1lvuGlmUhSCUk69Ot9u/hhH8bBd+7yA7cyaIIAAiEA2hD60EdaF6ud13eUjHo/zRR0MdZ8boETX3PqRwsrwZU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":375349,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhNjVPCRA9TVsSAnZWagAA0foP/3y+vPMPeoBU5dw1GOw+\npuX9t90nj+UaF116uDtZy1nmLl3CI+75T40P6OfbRq8AqTtIZ3GAb1hgFWDD\njftxo/P6kNlQrokmw5Nlpz3orM2Pobmk/TW56vd4CknIBw8PlBW+JQHZpPfY\nKjCg2rCv3XGqcFX8FGxE9sagkaMmomAZSNhw+86IsqWn4PYwL52prAVK1TNF\nBGoJgQCQ7Gh0XGa50SINUuVfnZ/SpYLGMFV+vlZGqVSOCS+Al/SshpldSA0A\nhCf7YUcLgqcej+l+EHFLFqO6iq78VayCTjqgSDM6USC8a17zfAaq/0bJdEht\nM1e3OhtcnUyDC00I5PPGv1PW3N1J8eptu6QyREsPoHRUqVGX0u1eHTB3Mbr2\n8VLwYal453QJ9FN7pW24U7ZCJy953gtJ99DY0KIXcl22+U1X0pNlzYhoghUh\nBpajCP2kDps7SmcRQ0oGCefebuTT+czP7lAzHtF5tAg0FFtMt6X5I8bQahL4\n/22ITU9SdY1+SZRj+oWrj7CJAfjODRd9VmAMbwxgTnStzeWLvU/Cwc1l6euZ\nPh2TnA3smLJ4McjaP9Mj7PAXxGVhmwoMLnAcqpu01L7Dy2C8SdZ+lgy/+1Mz\ncYW4OibWQjCM8/eGmFGS82R2Tg20Mx+aZ09YQo1mjYxZ3SvTmlVh1Ee7Xvc2\nPkX7\r\n=rPmy\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"84f009d862e06ef7339f0d45da061a15749ddfee","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && grunt version && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","webpack":"^4.44.2","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.21.4_1630942542911_0.9205474689335591","host":"s3://npm-registry-packages"}},"0.22.0":{"name":"axios","version":"0.22.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.22.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"bf702c41fb50fbca4539589d839a077117b79b25","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.22.0.tgz","fileCount":46,"integrity":"sha512-Z0U3uhqQeg1oNcihswf4ZD57O3NrR1+ZXhxaROaWpDmsDTx7T2HNBV2ulBtie2hwJptu8UvgnJoK+BIqdzh/1w==","signatures":[{"sig":"MEQCIGFlYrdn5g1KA8xIPGYs4s8TlZ7J23VYm5wOHc0+c/AUAiAj+UDz5m8cgJEB+YJrBAQttaSdSy6+9EDKtvrbJtXmfw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":385333},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"72f14ceef7dae917057f1d5c221713610a65217b","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.4"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","webpack":"^4.44.2","grunt-ts":"^6.0.0-beta.19","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.5.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.22.0_1633067640986_0.5501042837347536","host":"s3://npm-registry-packages"}},"0.23.0":{"name":"axios","version":"0.23.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.23.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"b0fa5d0948a8d1d75e3d5635238b6c4625b05149","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.23.0.tgz","fileCount":48,"integrity":"sha512-NmvAE4i0YAv5cKq8zlDoPd1VLKAqX5oLuZKs8xkJa4qi6RGn0uhCYFjWtHHC9EM/MwOwYWOs53W+V0aqEXq1sg==","signatures":[{"sig":"MEQCIAc63y8PI4Y/3ulXiYZO1f8tD/Tk8c/UI8vxlI8cAcNOAiAHCQVI8IxiGKUOnrMgxX9kv4IZ7al4896td4awBr8k+A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388462},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"1025d1231a7747503188459dd5a6d1effdcea928","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && dtslint","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.4"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","dtslint":"^4.1.6","webpack":"^4.44.2","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.5.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.23.0_1634053028159_0.24349554511550964","host":"s3://npm-registry-packages"}},"0.24.0":{"name":"axios","version":"0.24.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.24.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"804e6fa1e4b9c5288501dd9dff56a7a0940d20d6","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.24.0.tgz","fileCount":48,"integrity":"sha512-Q6cWsys88HoPgAaFAVUb0WpPk0O8iTeisR9IMqy9G8AbO4NlpVknrnQS03zzF9PGAWgO3cgletO3VjV/P7VztA==","signatures":[{"sig":"MEUCIQDkLH45eGx5Iy1G8pdkvmiME+gZmZEDRsB/NXf4wmuUUAIgBxz9M3wnYYrVrzohuVd08QNnm3eelchxGAm7RPs8E04=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":388976},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"53d6d37556a3443b00b3d9b4e7a934bf1d81aabe","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && dtslint","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.4"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","dtslint":"^4.1.6","webpack":"^4.44.2","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.5.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.24.0_1635184285832_0.5984732688675447","host":"s3://npm-registry-packages"}},"0.25.0":{"name":"axios","version":"0.25.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.25.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"349cfbb31331a9b4453190791760a8d35b093e0a","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.25.0.tgz","fileCount":49,"integrity":"sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==","signatures":[{"sig":"MEUCIQCGIx3XCz3jc6vsm9Fw+X75u5mt5WMNSNdqVWwqEhbt1gIgLgWMLSHFEuT2Qs/0ivq0rCJpUUn4vD6dTxAYLaMwM9c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":396102,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJh5mi+CRA9TVsSAnZWagAA8WcQAKK7LnQjICSDtbMVtiSM\n4gLQ3lZzWYs/261GMEb6BWRcTtsEepQllxPUstcbtJqsZRyz/GCV6QELAjZU\nvyTWJ8uISgTT55LsfWTr0hMsmW4m5TuUuDBDkSPUPeIZigOF+dSRutD0ZRox\nFyB8OvTri1i5Glhj2jsOP+LttVqL0PJS2aXyskGb5c0B4/mdaPWxv9FC+nRT\ndG1v+cdGT/J+fGV/36bLIYqgu92wW+OKgDdYg9M9+lm/76phiJF1HTS8oDWa\nzFOscb1E9XCzCGOts8BU9ht7KkKUQR9zfbpg26iGap5QWw68Ql9AtaXES17m\nmVJvBZoFWN3WRKXbb2RICEFeMPp7SFviyvKplvngjgVcBUAtJSPmBKCoT4vh\nohCMbhRyk4trOv32XNoiwy1ovytzlJ7JKtF6gye1o6ZOygkr+gLXOkr86tBi\nHX2+9ss/HfQSiaCVj/4p5caE2L62VBUfHHw0xrL974gPDsVzH02d9MTQISlO\nDLaoZZ8uV1P2xSY9WQOn0g6ywcYHSn+mPZeS8wVInAXBc6g7nJYx3AV2Lr20\npiXczmUMQYmkjZt96A/YEfzObYZ7zSerDP4Bxaf/u2RcgU/77BSBfRUJIM0+\n7wfq2pWYmLeSIJvpMsSrKzmL75HHrJMOxaoNtKRoCCFu7SLnkNfgxvVfCrj5\nQKf1\r\n=m+w0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"63dfce85ab8d598a934e7e32b68f94cb73a2eb4e","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && dtslint","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.7"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","dtslint":"^4.1.6","webpack":"^4.44.2","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.5.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.25.0_1642490046027_0.6324474868219234","host":"s3://npm-registry-packages"}},"0.26.0":{"name":"axios","version":"0.26.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.26.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"9a318f1c69ec108f8cd5f3c3d390366635e13928","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.26.0.tgz","fileCount":49,"integrity":"sha512-lKoGLMYtHvFrPVt3r+RBMp9nh34N0M8zEfCWqdWZx6phynIEhQqAdydpyBAAG211zlhX9Rgu08cOamy6XjE5Og==","signatures":[{"sig":"MEUCIENfRK7wO1vD9qAPziH1yxxb2U9Jbs2X3oobyq4Qu1NJAiEAxStH3lVUKROUaQwUol6Tjs0GVvcdyLhcxkX+y48sZfg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":396948,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJiCRQPCRA9TVsSAnZWagAAIaMP/i/4CN275RHza65MMpux\nBs7jJmMWE6kJrWZi6mqxhoFx4p1qY7tbtucon35PjcCZTLStysahP3Q6D/ur\nfNJRynqnRdwKXBdFmu5YByUthzEhBrXk7oMm5TL1fCR1mPmF8UWHa2tDTCoF\nxGrsgxk8Cxlrh+B6sw8skciaCYFgF0r7XQ7US5ExM5AGy0STyZeMPPHnaDqc\nxTPiN80Djs9S9ufbY1+NTCam3gtu6bpQ0b2yG7pKjc6xDbHQDeqDKTBHsWpl\nnCcODtcaUO/PLALD2LyhRFhekL3Mcg9of9msSSlgnF8DuKeIgNyf579OjLn2\ni5jFy6VjqP6nA9ctfFSxUEvF9yO9RYiTqv91By16wg29Q/68RV+JQz40FywV\nERnrpefOkDpjZfE2p4e1i6OYLLt7oYCVMFFrLRieu7ghafXX2qohycU57IW1\nCtk8ZoczCAe8Yw+Bl+4eTGzRHPfI9j9rfIT/RNMcSNmHqxrTKH5mekbAuoPn\nF6k2frLn/wBwnPJscgYZsWLqAEKcZ37WC1Mly2eauoJjDqq6qbI1/NO3ugI5\nC6vRXLqzhrhvGwHHbODlVDKkKc96GATPrON35XH9WsEkeSEjo1Rklib6Sy5O\nOr/FHHLwJw8LeEfNDqneutSSzmddOBMPwsXFEsqOkh0lBJRvsv43KccFSKg4\n6Ihj\r\n=ynt4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"c9aca7525703ab600eacd9e95fd7f6ecc9942616","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && dtslint","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.8"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","dtslint":"^4.1.6","webpack":"^4.44.2","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.5.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.26.0_1644762127847_0.8772367493480944","host":"s3://npm-registry-packages"}},"0.26.1":{"name":"axios","version":"0.26.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.26.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"1ede41c51fcf51bbbd6fd43669caaa4f0495aaa9","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.26.1.tgz","fileCount":50,"integrity":"sha512-fPwcX4EvnSHuInCMItEhAGnaSEXRBjtzh9fOtsE6E1G6p7vl7edEeZe11QHf18+6+9gR5PbKV/sGKNaD8YaMeA==","signatures":[{"sig":"MEYCIQD3Gj95LXvibu7OTQGvKA0gaLS6BiQTKe3BHcZHOsfWgwIhAIj7IcvwVeTKOvE0SbQGH09361z9wOfw8BctsS8J//ap","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":398302,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKOBGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq9UBAAn9gyqbptHclcA2MeIca/N68hX6tbsnA1ZdAlW1GYLVPKTBDV\r\nHjgO6jAxllBoTfq+3JCgkvZ/NFlysf49BH6rdxS76bK2/XA3uVRhIAjAOIOV\r\n69GOoyTnzfye6vprl43XoElBQZc97Zh3qMDkm/J3+q64yQ4PhK6ch7fT67Lt\r\n7h1iTZ5QsBfS3OxStJJNNqwOIuaOWHq/ThgNalIvopzmD5GTysfJurd895CI\r\nzex8X0YCq/n89jetK3zP3BmUUMPyDfWXn4IuahAZPqWQnB6AV+FL+L32DYfx\r\ns4ETzyAanNb447CpajBgyoTYzKRDGjvX90BIde21MZP4TH7Q96JXoZsUpoxB\r\nPJY5DYMeQJvUkJAhVMWDbMnibKGZxvypzvh7FBO2lYiNg10zCcDb9TDcLmrp\r\nfFoKRpvZZjsgUm3JJrr4dklgOdjg9HoFq7AKIg0FC+y0JvjamK6eqJ7tmyJh\r\nv0whYDO+6mSMv/IYZ52XIlv3b6UteDHEr3y0jocwAC+H9F6iMtvwHFjXqdrP\r\n5y7aRubd3vaggXtbdC4KopobtKFVk508yzzq7CQbRhCe0yTYkpmVdqx3Yr7Y\r\n0yopTd/KVxcox882CrsD7r3e/JMD2fyBiPB9km01UiYHXQHj8eUeuPdyneLU\r\nqlkZ4NKhn2dHzgbFx42F68muWERqwv4jHbg=\r\n=o6tS\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js"},"gitHead":"b6ed293b2d980605de9d3e0d1a2d177b5d74abf8","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && dtslint","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"7.20.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"12.21.0","dependencies":{"follow-redirects":"^1.14.8"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.3.0","karma":"^6.3.2","mocha":"^8.2.1","sinon":"^4.5.0","dtslint":"^4.1.6","webpack":"^4.44.2","minimist":"^1.2.0","coveralls":"^3.0.0","grunt-cli":"^1.2.0","typescript":"^4.0.5","es6-promise":"^4.2.4","grunt-karma":"^4.0.0","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^23.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^4.0.2","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^3.5.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^1.1.0","grunt-contrib-watch":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.0","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.5.0","istanbul-instrumenter-loader":"^1.0.0"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.26.1_1646846022149_0.5535195388901752","host":"s3://npm-registry-packages"}},"0.27.0":{"name":"axios","version":"0.27.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.27.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"973ca980dee9077410189340390ea77964af6b29","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.27.0.tgz","fileCount":51,"integrity":"sha512-XV/WrPxXfzgZ8j4lcB5i6LyaXmi90yetmV/Fem0kmglGx+mpY06CiweL3YxU6wOTNLmqLUePW4G8h45nGZ/+pA==","signatures":[{"sig":"MEQCIG9CjACy+E+/i0FUYUF3t8VX2TZdCjS/5OH0EkUctzolAiBXWdA4OL87qi/bWpktlSWjc01fHHbb0I+bQJ1J5ntBmA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":608129,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZs9iACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrfhA/+LLhomdAUaiJHNE/E1iYgyFwEIDXxjKNgw9DKIP/o6lXkhNAG\r\nUVb2DuN8RzAA88gcW8lR/v1TCCki22c2BH+3u7psXkRu9tqi/cZysuPgCadA\r\nb4KCowXNuO0YKnR8lN48ABE3Fj1DsTsaVNsdHPlqi7ohPt5RSsMvzTg36sbc\r\nwl9JG+4MryTKseqYks5Nj797o4VZIgLymTqYkfW/44qm2Ec9Cca40wRe/Rz/\r\ncpLG2J3uwV44SvAb50e4dDi/rzAjNlQz1pG9MD9XTN7kZ2dMUYhIJtMns4O+\r\n5g8xO2pnHCE+9OQRI8P5nmSFbYEi8p32Uti9b//sLYFEQ8fI2OmXDFeXoy2j\r\nUbz4MhS7DBj0w6fevqF+UKRm8vEKhPmLjZNHnSTTtSpoUk8xSltOIfe0nRDg\r\nqwzf1MyjDNjaptZufC6oeA4bhrj8VUlqtyzA8i9CiINHFZd65zGdSv0AbZuX\r\nGXWvb5NKu7GNxpNq/wJkobtfknAj8tCMYGemtriXAByV+L1ewmvLzl2VKP4p\r\nSJNp8zUk05gk4IR6Qv+2Kzx6cFa4EFVAQR+fvhkSwnsDbKL4jw54CUYShnUW\r\nLSH3nmagqyIh7zmlx9aK3u4MhuuH1/zaxJdWOhyIUrBW+8RGE5Y7wPJSA/1n\r\nAsmmeoXkUAvE6DFiYeNFMm3//L/hpqQP6w4=\r\n=J6B3\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/defaults/env/FormData.js":"./lib/helpers/null.js"},"gitHead":"008dd9d466167e97727bdba13f4937bb9d7f3baa","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && dtslint","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Formdata complete broken, incorrect build size","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.3.1","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.14.0","dependencies":{"form-data":"^4.0.0","follow-redirects":"^1.14.9"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","dtslint":"^4.2.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.7.3","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.27.0_1650904929923_0.8566115228355198","host":"s3://npm-registry-packages"}},"0.27.1":{"name":"axios","version":"0.27.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.27.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"badcc8cc38cfa812320221b600776452141ea5d4","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.27.1.tgz","fileCount":51,"integrity":"sha512-ePNMai55xo5GsXajb/k756AqZqpqeDaGwGcdvbZLSSELbbYwsIn2jNmGfUPEwd8j/yu4OoMstLLIVa4t0MneEA==","signatures":[{"sig":"MEQCICWUPEcdnlsV2TkOiTcNam2tUteO3YeMxc+8IbkDjMjGAiAwgXaEeThMHRuXDdTf0JRM7k2DnVf/E7gNzmB9iZrx7w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":683820,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiZ6EGACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmolXg//fc3vCD5X1O/hERF8pw3yQNRW5iQvldFN1m1Dgkd23KaLvkQH\r\nkh+E8tSyzFEjhCm/eCgWEZ+giYMKzCUOxcpcDpCpGddJZErkGyypHfWVhprz\r\nswDjQdFmcnbOkkCh1pRVOPFA1sgS9Z4Jvu33rFljTEmbQOEQh704keD9MFaA\r\nQoZi1/9pU3msU5k3CvjV6EdyN7m3yuZIIykfvqjyH8bJ5zHZCuDLsGXf90uI\r\nBr4mCsVK8qS8m/IpqEDMhNwzw3auBs7gDBnD9d1MsPOyDlYw2mrUO2ujj3GS\r\ntwZ0qgkKHkD8XwihMJDhwrzvm47dXDOrxyxVZR1ytveoqhB8ZJfFnOad5Vfh\r\nNu1Bnn5dM/LSI9sYYc3YJ52+1jFs2BBeHZ48ZmHSDSYvmuz3EeQxxJhmm3dy\r\njvEUOxp2xM0tVxuBWnamPp97NQmTCvbNIQhVm8jLCPMpFwm4K79XOL26Anua\r\nQPKuFfuDY4HHJVHTPgeucGPbx7qpz6jHRd87tPtCndD7BDJr7DPX1RjlXdtt\r\nyIvnvNM5l2ZgShMRRvquJlSAy3kEp8HnBqgfdu6tNTJYfBDmoS62577Mq7JR\r\njY9Yu3hCTvGEFyssAyArHSxoMqt984q1n5j0NqzlwnUl6dL/gGcCdRtfGlZU\r\nZQCk6rYMrdsogE2nJbp5VM+HU7qgWJnnF98=\r\n=OrJ8\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/defaults/env/FormData.js":"./lib/helpers/null.js"},"gitHead":"838f53b4bb6616d8ec8efdae0612c9c74b8c3804","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && dtslint","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","version":"npm run build && git add -A dist && git add CHANGELOG.md bower.json package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test","postversion":"git push && git push --tags"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"Formdata complete broken, incorrect build size","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.3.1","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.14.0","dependencies":{"form-data":"^4.0.0","follow-redirects":"^1.14.9"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","dtslint":"^4.2.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.7.3","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.27.1_1650958598060_0.8891336833882784","host":"s3://npm-registry-packages"}},"0.27.2":{"name":"axios","version":"0.27.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.27.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"207658cc8621606e586c85db4b41a750e756d972","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.27.2.tgz","fileCount":52,"integrity":"sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==","signatures":[{"sig":"MEYCIQCHl25WQioU4hNRDD9qyIyzsy2f/fBm2rWMxqhqy5qWsAIhAL0eMIyDnbE11rzH1YpnXSlxcf3UXVHlM5RXMdZEDolm","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":445714,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiaRRaACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrjIQ/9FJLVgfGxTfTJ/L4x/uidfCm8jBng/0PF527CbrbjdyrGGKSQ\r\nTGENpbCFsZj/odWcJ/03Eb2Wi+m1uWlRIPymB1dveT6VX9k0g5WvghhO7phn\r\nijmiWmjsyjf5ZjRzxjlMoGHjOYsBwE0tnSD3cylThabPxVvdgSad0HTSrdZs\r\nhPy6FwWbcoiCbSsiXXfeM5+A771VuYSBYXlgPDfcSViNlr2Zos8nOs868VVY\r\n0T/tc6sDpz1uhhPGUC1H0uhWM1FEfBjQJsbbJdij/gO7XMk4/9llraq02HBx\r\ndKZtWvGVtqApjdZ0j2KBEoiyRPPm4f4x8snHVmd1h4Lnc1+DCzC3elc6uzyb\r\nsoy5o9PgzPjgcI36ND+iCN8i3Q1ti+7l8thDC5v+5yXDf9ZKQvDYtNXI/fA0\r\nwcJx8VpM3YzY4rAf+PKJ0ERq6+HMxEsi+s8JeHcKJ+IbV0sX/SZa7oDGfV2K\r\ngiUqRJJZqwMK5utxZAI5q0UDHWWYortVuAU2ToSG4azdRtX3Ey7wTGE10N1e\r\nARQ6MJRMwMOY3RZutUb+JHfBy1hBmWCVMPzAbYDWSwhUKPhopjjXuozDfUWc\r\nrMKGgz7YXNlwdpIjcVecnD005Snt3WYZ7Wvy7iOfwWpyL0oOCV9X52ca3jyF\r\nWwPYeqylOox44EGovBFBnEmUhl9YD0dkxbM=\r\n=yVKf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/defaults/env/FormData.js":"./lib/helpers/null.js"},"gitHead":"bc733fec78326609e751187c9d453cee9bf1993a","scripts":{"fix":"eslint --fix lib/**/*.js","test":"grunt test && dtslint","build":"NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.3.1","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.14.0","dependencies":{"form-data":"^4.0.0","follow-redirects":"^1.14.9"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","dtslint":"^4.2.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","karma-sauce-launcher":"^4.3.6","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","abortcontroller-polyfill":"^1.7.3","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.27.2_1651053658542_0.05789988671174329","host":"s3://npm-registry-packages"}},"1.0.0-alpha.1":{"name":"axios","version":"1.0.0-alpha.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.0.0-alpha.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"ce69c17ca7605d01787ca754dd906e6fccdf71ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.0.0-alpha.1.tgz","fileCount":69,"integrity":"sha512-p+meG161943WT+K7sJYquHR46xxi/z0tk7vnSmEf/LrfEAyiP+0uTMMYk1OEo1IRF18oGRhnFxN1y8fLcXaTMw==","signatures":[{"sig":"MEUCIQCyYSzNq5/qzQ33FiO7n/D+gOW9JGyh5d2VC9SO6Ar6VAIgA5N89+Uhzj0bUPv7LcAMD8FnAO0Wy3xUsRojpAxNgkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":795119,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJilmtNACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpG9Q/8D6Tj4+hFYMTOALmy/QCcVw8/sZcoZVtuYqaQMA0aTKJtLxVd\r\nrB8352ZzXUGJQnyNfgSSS0vbES+vsNlxcWfSPcCDwiV3NmLiWvESvi1TI/d1\r\nxRJde2/hFJkfF3ZE+Z66W/zDtSTjnrygYnb3tTnGgPwv8z6Eyys9+8u+I1kF\r\npzcwmB0XWGOiz6wNNU7YdvEpu8aBwx/4KCz3phSTwcAZJuhgeKY8xD8YNNOE\r\n3QIGtbIPYzI4c4D8n+54a0xe7q0AJg9qVgtXUDRdt4cOINhYefm1JagDv+A2\r\n+Zd9/x+o0EwJivfKVOduNLOiwvP+SrWDfh1RabsnJS0mqxvGJoHc1QEoqscj\r\nz6LrUwqHpyvMYd160Iy7BH5FlibZp9775/sP+Yr49UF8oNF7W1dQ2HoPKj0N\r\nwPPPdZrFgXyo16pV/1ZtMms/HObQJkc1T0jGwM4f4Oax8j2y1qxoc4aKkneI\r\nGSxZhjbs455lFac5/+vsMe5P1tKHcPJKC+4GcVifWajNbfEhk1dszp5LxPve\r\nNJ15DtpISWm1CxxfDOLWbUpUf5GwvnBOT9XGuun1EUpGixBfD9t5Po77/UpC\r\nYF3ec8AoebyFlZXIpov+eyNJeY9OUWSzPsk4DR+oDZerIdtXZ6mDxPUk0w+L\r\nZNu4JZYNP7+t1tjk5bVsT011s0Y0yRZTzt0=\r\n=L+fL\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"gitHead":"3cf6ad72033fd6eacf720a7d700f99dc96f586a3","scripts":{"fix":"eslint --fix lib/**/*.js","test":"node bin/ssl_hotfix.js grunt test && node bin/ssl_hotfix.js dtslint","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"This version is deprecated. Please upgrade to > 1.0.0","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","grunt-shell":"^3.0.1","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","@rollup/plugin-json":"^4.1.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","@rollup/plugin-babel":"^5.3.0","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.0.0-alpha.1_1654025036964_0.3426822354385064","host":"s3://npm-registry-packages"}},"1.0.0":{"name":"axios","version":"1.0.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.0.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"16ded6096c1d37650db9f6a8d48a2f7c1bb58622","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.0.0.tgz","fileCount":77,"integrity":"sha512-SsHsGFN1qNPFT5QhSoSD37SHDfGyLSW5AESmyLk2JeCMHv5g0I9g0Hz/zQHx2KNe0jGXh2q2hAm7OdkXm360CA==","signatures":[{"sig":"MEQCIGEECbdjC36/6LNiyDl041nRhyXdvV45wK66nxeZt4APAiBP+oZZSTya113XI2srDeFv2GG4RWmc8jo8N2eIxVXQtA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1297906,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPIheACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpVjg//a+KXivRTzYBhpessl7y39k5VRYPiiG+D7dVs4mAbZsoCH/L1\r\nfZWj3/dfs4+z//ckOs4Hz6odpQ7ae6RmbwbiGreY1KOKZ8Cq/FbCC1LeqsoX\r\nq2wMn4HEQg7+PwoBAmR2jSRLqYF5h3BRueoi7zq3s2ow/wFwKJjTpXi7pBs6\r\nBPsLNiz8n9WSkXtYgP0LxFnsXRcILxd+IFnknT4Ozq/WUbqF6Lcyujw7lvKo\r\n71kSHgH4MErUCRsyosjWmJGja0EXvvgDK6881tmlsfOozm1vO55u9kZCqB/K\r\n53k7B+uX6JUZS3TW70OjMrBNOMKAfPgDnQxRMdBXRQ81QSf30LiTgQ/4bJQb\r\nYPD5YaV70crSLfKt8RN5UOHKq+er9xU4mb1/2P5qE+HVPMVGH+bAFfe64o0n\r\nxvtk5QyisfGjQKe4NraQUi/IOXGq4qfE7zTaomKpP6VpbDQIsR1wNXdvOD6e\r\nQ57nTXIfuTe9jZat8BmRHfwQ6F1TZTOWqxVtS6NoaDpVpQYN6eSOqC5XXay4\r\n1zzd1EHw/X1mhJ5gwXbXlsWVOZQeXxowVseKCgRea6AjlDU1Bo0W5Zdcr9W4\r\nspAU9Vq3pyN4ZkoVoEdVDw2Ho29dYEhW08qYz2wEcX/lMEfrHvmjOrr1RRQG\r\nXWq5ttiAq9HZrk9kOLJmuM7xBsPiQpCkWPs=\r\n=8OKn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"browser":{"default":"./index.js","require":"./index.js"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}}},"gitHead":"484aa4fe6addccbd32206a31eb3d2d000843066e","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:dtslint":"node bin/ssl_hotfix.js dtslint","prepublishOnly":"npm test","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.0.0_1664911453739_0.9672268568936826","host":"s3://npm-registry-packages"}},"1.1.0":{"name":"axios","version":"1.1.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.1.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"94d25e6524743c7fc33954dd536687bbb957793a","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.1.0.tgz","fileCount":77,"integrity":"sha512-hsJgcqz4JY7f+HZ4cWTrPZ6tZNCNFPTRx1MjRqu/hbpgpHdSCUpLVuplc+jE/h7dOvyANtw/ERA3HC2Rz/QoMg==","signatures":[{"sig":"MEUCIQCuw2HRU74YLiGOyLfU+/LJ4wDYxqKgLFjbeJ5nWRllCAIgdyrVpXY4cZVwOQzXF2vRJ4/C5XNhI0UeAWVicKnqw8I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1301740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjPypZACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqHCA/+PtCaKTTtsRvZsbmKKjYxB8/IbWpNyDyptasycTD7Zo2PgeQh\r\ncP097GpCG3LoBeQYPmAf22RO7UdDRzjKba5mtvS7LrIFc9NE2xBKK73vYoKp\r\nnUKReYBiaucjz9MGC8eeM2nrVZHcrrwaT7W6j88adpRrvtTLq8aFGADNjntJ\r\nLvqpJzS00XtHTmAbSaQPkES4hnB+LzdV88lsnvz/p6XLzmr+8H9vkKDYzK8s\r\nacF6V18nVTGxAx2VslBOeXtoChU2zKgT19At6SRiBd0bRtM6o6EUxvB8puZV\r\njYHURM1SBGlE2uTGswDxJvr+ymwrboxU31wXiL9vC4ZOHM6wxRCVZQ9wOW+n\r\n+luNDZnK/3zCdlB7XIjthLGEFfr4HwPKtQ56TDpbxX7gmiMHnMwKVtXTIj1R\r\nAaPnKBc7zJGB9SfelwDkaEueaYxRCVmmtabwcG/ubVxeb4gcPKYE7GIUYTSP\r\nzn4G8n/nvG1++yhJRb5SrTFby1xthQLw7NWdTZ8z3BNjP5V8b5W8qXit0Vig\r\nCb5aJby/0iOSMpc34d5M91dINI+9Qc7JMBLUWhURE73x+wZc5PpJXCQIUedz\r\ncg3X0CcNjz206rXu9au5u+QqSvaN+wrg3o8l5+L37s/Ex1NhNUm8LLWjJAKp\r\nIiLs/Uc+WI5Qz714oLjikmdqtDWJU9kNYGQ=\r\n=hWk2\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"browser":{"default":"./index.js","require":"./index.js"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}}},"gitHead":"9c3dce366bd594558e5e474ce9135af22a0d9949","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:dtslint":"node bin/ssl_hotfix.js dtslint","prepublishOnly":"npm test","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.1.0_1665083993006_0.3094067035379535","host":"s3://npm-registry-packages"}},"1.1.1":{"name":"axios","version":"1.1.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.1.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"ce2fd17b4517150e0ff475922a70453d5e3f7f37","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.1.1.tgz","fileCount":77,"integrity":"sha512-hUo0TDluM7WPGeM2834mualoT0vGt9vcA+02dgfCiSpSPGdKbMhNbnTUwDf5hs6e4oc8yO7jGI33sSKtW7FRDQ==","signatures":[{"sig":"MEUCIGrzq8z41QLGJQ07dlC1Enpa7y+PHx5bJZ1+d1FJAOpTAiEAgCFuONOFplxdljqtp5D/3bDD5yJZGHOIYekcrNz3VNc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1300723,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjP+4UACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmrc9g/+OR+A6txhgVfZN3e4+K94QgBD0e/kRYzRvFZWRF7bgNVxKvhc\r\naSR1/D2aI6rG6wv3F4wPRjdRzaPkDayo/FxMMXD1ymefNsPzJJbJNQvId0ko\r\nqCfmCFks39JWdXarhhXg4fgNAXdy7dHw2uaAAx7pExc9z+5NtvrlrwjHjein\r\nc/1wIXCT0E+MR1ie1njaPNzv2WfkrHoa+qOF3wSiObsjhotZ/PtWraEA1VOp\r\n7Yrqc3vWzlq59nmvSNyechgTEoZ4KFwUIPXxbF34T9GL0Pv95h1qMmeva4ct\r\nCrJpTomk27jIc4qtkGLODj93yaN2Hod1tKktiUXsUR6CgFgq37Dc0AA/UN2y\r\nolkMYJcgF7wBJD2ceUe8aVAQ43TkCCGnqdMw8ndigFxBU8GId8sWdia3QjT5\r\n8phbiPTIM/C8BrpGIXnensfrpgk4MEUkfsCXszH4NCpGrP4qdARrSDdqYyAh\r\nB0kNZf8WDYQ0WnMIliYjf7lNrawsBZomh/QToJuvZ7jYn0akBFRyzj2iMrC5\r\nA9GmJw7oKOlNa8KSV4HQ51hPLvRSGBxhwU2rqd99J380nqmmG11uHxS1POdT\r\nRL1l8c4QbZzafVUo0bvevyRXUH1Ct5FyXCC0Xp61Ec419zcVx4xO+jW/qB8S\r\nNlEAy4Tgf/ybdc12t8duKrJc3Lh5g6aFZmg=\r\n=V7fu\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"browser":{"default":"./index.js","require":"./index.js"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}}},"gitHead":"1315e2282f9463bac77b0c0672f47d8d69804677","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:dtslint":"node bin/ssl_hotfix.js dtslint","prepublishOnly":"npm test","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.1.1_1665134099891_0.46502386897006676","host":"s3://npm-registry-packages"}},"1.1.2":{"name":"axios","version":"1.1.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.1.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"8b6f6c540abf44ab98d9904e8daf55351ca4a331","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.1.2.tgz","fileCount":77,"integrity":"sha512-bznQyETwElsXl2RK7HLLwb5GPpOLlycxHCtrpDR/4RqqBzjARaOTo3jz4IgtntWUYee7Ne4S8UHd92VCuzPaWA==","signatures":[{"sig":"MEQCIHcJ4tncF7MMWGLFikqS0SvdEddaGdnIPpm/bVXEGNI3AiBNkjkFO+cOXjtl+JQ76n36bzY0CRwGVWndfa8fTizUww==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1300731,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjP/wWACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrR0g//fQSLvHb4JJqfaAJ4vSySosnDkjWzHaV6gIi5XbuPFa0N2JkA\r\nai1FYjHbCbuqSG7SBtTkEyQvr5hd2DuR02db+6PMSIeS+/+ZUDNgoOG0GugX\r\nMz4J0SZhWRKjUOiN7O+zQjpovbXr7wGLv9iv+2G3qVrBKvg6Tr6EtUQEU8r0\r\neBWf5K3qdvdUXs+Ufz3HdfOuG1qhclRtyq2ID/PfvcALaxNv44D2h+agUCPu\r\nNRAkARphV7jQ+tWwwho1tBb8tBZuyIYau1FJeKwEJxtHiH0h0CDO8UqWUQp3\r\nB2elYQrjXMByoI3q+jvNdJT2kAQ+9/tDNvGOaD8G0eI0RvcYWSyEDC9xhMwy\r\ndO7XwOVAo34XvIp7WT5o81zomGRHSnBm7bKn/kJtn9whZbYYwvrdK/Z3L7Bo\r\n0dNcW5jt8bn33wypPco5Zta8lBcj/YI5hY/gwgZlRwdKZm2x24KD58zFTwHp\r\nyCjG2ayN9KI5eCX2JpqPiXk+/KVBE+AvWJ9WqgP4pmhBUR1PMv0l16uPwWBC\r\n7gkSjFAL2zgcoetb39SkNKL8tLvit/AfP0uBOzKZjNUIX+FpJ5SkaFO/OJ13\r\nabpbllyP9rBMYjyJyuXKolQtiykT0VQYAZRot6m7bN9Q2ny96fhO40cyh6Ou\r\ngJtNg/jC8wsN8dW2BCK+1wz8OOHIqTSCCnQ=\r\n=Z4mA\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"browser":{"default":"./index.js","require":"./index.js"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}}},"gitHead":"1b29f4e98e5bb44a125230398f61aa5b0add91c2","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:dtslint":"node bin/ssl_hotfix.js dtslint","prepublishOnly":"npm test","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.1.2_1665137685934_0.7041351682523505","host":"s3://npm-registry-packages"}},"1.1.3":{"name":"axios","version":"1.1.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.1.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"8274250dada2edf53814ed7db644b9c2866c1e35","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.1.3.tgz","fileCount":77,"integrity":"sha512-00tXVRwKx/FZr/IDVFt4C+f9FYairX517WoGCL6dpOntqLkZofjhu43F/Xl44UOpqa+9sLFDrG/XAnFsUYgkDA==","signatures":[{"sig":"MEQCIDNJymBuI9hmBrcB7Ps+Tm81OO6f8cLSMpvnSk8qkLtvAiAu8wsBO/rcAljZoSYV747Vwd3GAYPl7l2YRM1LwXp3yA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1311679,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjSri+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqHWhAAkMekwxjDWQgBn0OCeFRdRlpG/agFWpZ+6W5ovFjU1C3GNBNd\r\ncDh2zmiCPuuQKlnPkOoMa3PczJzl06fgLpfY3kxESRMyrngsoo07rMstYJ9z\r\nBls/Aqj3EFwTy8suzlGKbvK70HOsUgJLcfXx4h+jEGBfcvH1tGj1lXDuxbNh\r\nq0wQPMHefC4RUwI4yK5/wa81H1ATLVRy/A5xXGeRvxwkjNIB52Th+6weO7yZ\r\nlrYsyoIWO4GCgnZvYjSqhKXfXSBi/TcoB30zw94r7Ykl0qo8GwrLJ/adFawX\r\nBs9HtdCFMfQ03XJadwL8lCPKp/ujCt8+URcBhYJjDZAvBqkxTphuxsDA80QH\r\nAa3xuGwV9ogx70M7R0QnfQBF5P12AD8ikO0Sl2duJB54voUlat/sxNXPhD1D\r\nEauRZklim/sPL006M9rpbzVWcNizDQnhNqwkRBQsf2BD1kko8Zg0c85KEIGJ\r\n8MtcC8bf0/1hiEotZG9Xg4ewXjQYSiyY8dMc2yeT3rbc/uoPJfZCYeWIKbdF\r\nMvuBWKnuUB943VvczQtDDtXbQTY7mBL9ay1JvXGO1r29Q9hQj8yQsOo3xWAm\r\nZ53KSzp79HG4fbKpVn9VD3cjFsKkjZz9K3z3ZikKGB17Uw/kLiIoJGrUsgij\r\n9qNbDF8cmtfsSzVkSzx+zbZCqZ3fmOnL17M=\r\n=Kgzp\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"browser":{"default":"./index.js","require":"./dist/node/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}}},"gitHead":"b0ebf9fcacbab3e5a020a1a4d5d3837342d7dcd7","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:dtslint":"node bin/ssl_hotfix.js dtslint","prepublishOnly":"npm test","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","typescript":"^4.6.3","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.1.3_1665841341840_0.8652618240230978","host":"s3://npm-registry-packages"}},"1.2.0-alpha.1":{"name":"axios","version":"1.2.0-alpha.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.2.0-alpha.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"67ade13f4d84c26ca555e552f15e3f6fba849e0d","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.2.0-alpha.1.tgz","fileCount":80,"integrity":"sha512-qt/7xkSQNBRKP26mt28cmSI1Y3jVtrQzu7oLjIyUHEdjpVeg100luMJrRpBlKlCmMd233Peu00mOkNC1OwXOrw==","signatures":[{"sig":"MEUCIQCFjuhNT2JqUJeaNPp2AG/Q4CweWHcTR+wLUc7r2ESqDAIgYpqhu9eTuq9K4qeaJZ6zxg6hAokgjYdAt5bSBdrVhm4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1610647,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjbUuiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr41g/+KPt+FsK1k5Esjk+O+u11kNUAVeJdXSyYsislqrPYREv81NSZ\r\nGJVw3naWjooFhASZh2gFleUaHdB/b+d5T1o6KOupTUeTxznHHKWfVO2de9gu\r\nyAj1X4MHMKgqGdUeM4eZF35g4XYvyQaGJD/bEimrSVo4bQjcUgUWVSz1/CAu\r\nTboPgpztELmkF9hzniQcWVArnAxLmCPjjxnMBmXfIubfjgZDgk93KqN8XhUV\r\nH2Aq/U/KUucl7ocbThDfIpBThhjVlK70jGA2429iXwvnYL5ysMjCIN7hL40m\r\nCgYEsZ2EsylLXpZFDGtEIBrD2ZlhebbUZCxiLZbdBZfk+962x3R+Q68qQkjV\r\nEuKro6H0CK1lI9vp3eg2MIcRhr3JW/1vOkG/Qn6kKt+6V87rvL5kKqwTN1/o\r\no4Auo/sKbmVVXhMFk2GIeOxruh6e8fYipblmoNNcT+aN22O1jYTh0RnYUM0c\r\nDvJu9dZlZmrGe/cvHJvyqS2BaFn8OhP7RQ9WIopt+J+6XAoiZoxIbdC9J7xe\r\nFYl06cdzmDyM12cQofQfDHARwlodOLxJLYCZfP3khkoqeo6V3nloHgh4TL7p\r\nwRReeKDShxFa5Z9AkW9lEWVoU9Cuu3nbm64z1bIxJ4lGp00X58Ui1p9hl+s1\r\ntl7qDmz31jilv7mOhU7GyQy47/CDXKVGZMQ=\r\n=V8Jt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"3a7c363e540e388481346e0c0a3c80e8318dbf5d","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:exports && npm run test:dtslint","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepublishOnly":"npm test","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"deprecated":"This version is deprecated. Please upgrade to > 1.2.0","repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"gulp":"^4.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.2.0-alpha.1_1668107169805_0.22638186834630858","host":"s3://npm-registry-packages"}},"1.2.0":{"name":"axios","version":"1.2.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.2.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"1cb65bd75162c70e9f8d118a905126c4a201d383","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.2.0.tgz","fileCount":80,"integrity":"sha512-zT7wZyNYu3N5Bu0wuZ6QccIf93Qk1eV8LOewxgjOZFd2DenOs98cJ7+Y6703d0wkaXGY6/nZd4EweJaHz9uzQw==","signatures":[{"sig":"MEUCIBqmRD0ZBL9MuoTuMt21E/4Gya0cXbLRajTb56aTE8kwAiEAwQs1AY+ZUZpXrHPdfcuQ3PCvrHl7C/dbnWXbmc6J6f8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1632778,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjfR2aACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp8SQ//cY3pm9VN8v/5Q7uimYOVF8fZ7/hj1Nh2WRe4QbwbCirGfFLe\r\nKkxPaVZzi2OMRBAe1f4qqci/zTfaLxQ03PeCrJneObme7oQAkNQ0KTTTHTFm\r\nRoeyOSnZj+ApUqdadyJwEfFFWhEcwYyyOKmFtWPYYOLUQu2SCVy1iQeo+tUM\r\nyYEeMNM5VeaYtOUc7/fmjZBbD5w+0kxxKcRt6X0veSfonhQs+rzb4KZSOirN\r\nY20stqoCCk0gudK4bNLHx4xQ9UNr8k6tVIwgWEMg1ZN+zDfEVS090isyonYA\r\ntHZKX2LoLUwSCASQA1WxTxDGCMrNWQIR2MMItm+0yimxwE3HARXq7sSKUnYj\r\nSc2oDdHBq9BCH8L6coCXPeMFplhUqzrLzRXfyI02/JOvmpbif36ppkVBkL/o\r\nfZrv9QOogbDIJvkWGksQuRhmhe2NAiatDt5gDN7+grzWIlmER4+8R0tdYq8D\r\nmlnDPJRy7ThbfsXh07FxlWjLjjwZ/pBZUZEqhWp3ZhgDkBOefo94PVmlXiB9\r\nrl+P21duQQxs1a2eugShSH9zdqxuFl3YW62drFfRHqy4FgUOYbL6RZyL556P\r\n/nHHbu+tt0JHtmWiREnxc4ZXDJXiYjYzcn/1bmc1GMFLArUlEFDJQiEgbbOh\r\nRkfv+Uz1O4cBOKuSkNplMnBACKmuuCWQNIc=\r\n=4fy0\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"f92e167f768437ae17f361b2ea36c9b9d48aa814","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:exports && npm run test:dtslint","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepublishOnly":"npm test","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.2.0_1669143961775_0.3477358240315578","host":"s3://npm-registry-packages"}},"1.2.1":{"name":"axios","version":"1.2.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.2.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"44cf04a3c9f0c2252ebd85975361c026cb9f864a","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.2.1.tgz","fileCount":80,"integrity":"sha512-I88cFiGu9ryt/tfVEi4kX2SITsvDddTajXTOFmt2uK1ZVA8LytjtdeyefdQWEf5PU8w+4SSJDoYnggflB5tW4A==","signatures":[{"sig":"MEQCIALa8nImOsyGJHimHc1XQTytmmZ7Y7ui61K+FC7gHgqQAiBLAAVzO9xrK5QJgwPNPvw3js05jjQtTJy7fquzsIhXYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1644553,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjjkjfACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo1Og//ewglZj+Wx+Ohb3O1c7oYDNsnR3TJlgnu1Cj/iotQ0rdTne9c\r\nzoJIG18FvNaeeqex13LL2+Pi129JkGRmipzvwxPd+gJphlIieouL2ZqZn86i\r\nNuzr/qojup7+3L5Cst1knrtWofHlaeE/aTGSorYwF0CLqPdBuGQoGhzF4YDK\r\nP3YGX47Kc3J+cuhrZN1v+D2F+AGM304qhUt+RTkNWualnvOp0jppRGsh1p4/\r\nEMpEib+McYa1jgS7X4nV28CdziPmfFGbEI3wnt6l0XuF1Mn8Y9Kkvp+qQfj2\r\nBE+DV0jem04fRHNrLx0pFsZ7kLzEYWvIaHhhGnLAjR1v17bGz5M2Jg7aU6eK\r\nNO+0hgg1lZPVygZ29Vmt4/0pwmk1qSmQznl2V/HV9hPHUUN8c7UsgMrsNVEE\r\nIynGnrDvnYM05c/oaGYmmqvOwHfk1E9sYUqmCFZhVYdC9zbP4wRJKEua8It0\r\nS/D0EYvVsdFKRb90vLCbBYK3vKCa6CbX5tJEL39rR6ZMtsUILEFlwqqHexwA\r\nXo2Gmjo1ohB4wW225Zz4mK9aIk5kfMlxUdYFiqYVJ6XUYUId846J84cHZ14E\r\nVs3Xj54eY0QlXvcSSckdOsFUKU2Id1R3FkDB6F9ehKDMIqqTGvU2JYMU84Ak\r\nQJmNpxDA0oDRMP1E7qoK9XUCkSgPJpD8LxU=\r\n=b7GK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"1fd79d3220a6c705dae4587cc79a4f3ec646ca7d","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:exports && npm run test:dtslint","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepublishOnly":"npm test","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.2.1_1670269150876_0.25165107605449544","host":"s3://npm-registry-packages"}},"1.2.2":{"name":"axios","version":"1.2.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.2.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"72681724c6e6a43a9fea860fc558127dbe32f9f1","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.2.2.tgz","fileCount":76,"integrity":"sha512-bz/J4gS2S3I7mpN/YZfGFTqhXTYzRho8Ay38w2otuuDR322KzFIWm/4W2K6gIwvWaws5n+mnb7D1lN9uD+QH6Q==","signatures":[{"sig":"MEQCIHTg6RwBEkY7T6mPv9ib7YAz8JEMaunVWXVEeuF3KohJAiBOZaJQQSuDyHdh0vUZXgogBQlu+QLhum7OqBe1+snbHQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1679761,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjrTXyACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpxnhAAk0AvPrTuZvdb83NIcRhvc5t9Cjho97wjMkjeZj6Z8kNiaRX7\r\n9MM2fu289/H6GrGLFYzSo5LQF+l2zMnvd/OVOjwZECe+Iuq/n4V2IiCaxYrn\r\njztXYRd0jOngZoM7elEYxjwUXRKYJPoh4zs9Drq2Df5MQgsjawsYkgwfAb+4\r\nZjn1X+A4oZ59EgCLDBpmQFrHxjSGe0N88a8MoFhRmhJ73YKOpyONGfgCvwmZ\r\nSimmifFwgcD3zV9akXeaWgEAUr/5pbmBoYUtKS0VOmLHP693LnY6xpoC3AMP\r\nx0uWhAWw000OMq0I0p8yDTKcMVcF/TogXDwb5Q5bDJqaZWznYQhFGyYcg3ki\r\naPkuWwm0qTwTicvzPCHvALwbJRkqlmWHrnDd9oHMlpBtiAshmizGiLSqoAFK\r\nj995F0ZU4h4iQRgTDrfE9MZnYBxjT7XUs+QLO2OZ9Q+znuKzAK0WnfJ7LsPT\r\nkf3BjRPduk1Sp2Gwy+1uKi8RDIW9NUcQV/Hyaa2sxqXmlpUZGqt1sacVtI47\r\neWSLkaPN/PMFSurt2tbnvBxZn+VriTyOmDkOYtPHzdtUajChrboLkPFloyJa\r\nYJ3HYYB286b9Y0IZYw0ipm3sXWk74DCm8a56NC1O3U8k3xgL2QSxz84/VnHY\r\nAzVow19Ucdvn74GCbuA+tChg/F2Kw6tS0S0=\r\n=qYIM\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"8ea432429b81c2f1aa8b03e43d0bdb498f21c4f4","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version && npm test","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"commitMessage":"chore(release): v${version}"},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add CHANGELOG.md"},"github":{"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.2.2_1672295922148_0.5680794380048955","host":"s3://npm-registry-packages"}},"1.2.3":{"name":"axios","version":"1.2.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.2.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"31a3d824c0ebf754a004b585e5f04a5f87e6c4ff","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.2.3.tgz","fileCount":76,"integrity":"sha512-pdDkMYJeuXLZ6Xj/Q5J3Phpe+jbGdsSzlQaFVkMQzRUL05+6+tetX8TV3p4HrU4kzuO9bt+io/yGQxuyxA/xcw==","signatures":[{"sig":"MEUCIG/IoitUsKNkZatUX+tKfF4r1CTQAZ05WdoLs8Wh7xESAiEA4LJ5f/vf/GoH+6B+clGHmGNHz2mLcSO9TyOvEEhs67M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1680874,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjxuFXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmp0+BAAlJxDP+Gp7eb73gGbwPpKgbWARAYD3wsJg6NKRFTn1yGzzcHC\r\nkKFkl7cw5iPWqXX3bXQWedgCboriF/g3dpKqjA7lCeuAU/2FlZCivBoJ5ddo\r\ndsS8J8rGebxz0gzCmH9XL9EYijTEiM44+IDgJgDIcMhmEo0j/uXIzvwdmYtL\r\nDoqbzdxTf2NOjtmDLyfSFOyyXGUWijyoAVRVB4HynmabfDsCtaycKX+uUjMF\r\nHjJyZxyPN0dv0Be0LIXRxhLRBSA4ju9lnoByds3kKiRx7Q1uDydtpJliF8jD\r\ni+oU4GtFYF9G84+EvvQuZwv41Bn4r3sAeegieaHkv/BfpU6I5BILcLRI9e/B\r\nb2A3kBUEidhDq6DF7KYPlQyM/2AWNPuAc+iq1HVLX25j4bJ0txkVdqixNuGg\r\ny6PXvsI3rTKdfdT/uC5TGUVWgS0qR5dvjml48W2P3B9DDTC+FFx7Cxjcjj1P\r\nNHZUqeAk9LJB9po1mTYVx9/5Ry7CDBcCDkx+AgF9Rnpqi+q7AiVbZJm53aYd\r\n2YELpZ95y0VuN6SMVRAiS+pJlyq60GgUvupVK0mznXlY1FyQ4vps1Zs52d0R\r\nFjygHxYPgy+xqvHTJg15BII9Xg94x9eLe6nQLFGNAYz2JxCDdpoQvmdyjscF\r\nbGTS3c76zrY6JAKnuZAt/7N9G1tfNMnto08=\r\n=yBRt\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"557ed0a7489b1bf62296ea34568eeea8975ff4f9","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.10.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.15.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.2.3_1673978199250_0.341645682185856","host":"s3://npm-registry-packages"}},"1.2.4":{"name":"axios","version":"1.2.4","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.2.4","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"6555dd955d2efa9b8f4cb4cb0b3371b7b243537a","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.2.4.tgz","fileCount":75,"integrity":"sha512-lIQuCfBJvZB/Bv7+RWUqEJqNShGOVpk9v7P0ZWx5Ip0qY6u7JBAU6dzQPMLasU9vHL2uD8av/1FDJXj7n6c39w==","signatures":[{"sig":"MEUCIQCC/Vw56xvWQDjL1wORS3sGICPhTwF3wsmBTRBPq3LOAAIga4RzKzst2Z03oiBmt0tsL0zduhbEDZOcS2D3ONCedjc=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1676740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj0BO2ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmr+CA/6AqxQ48Xms18aKDZb7y8ss8Z6EkMaU93D5ZIp0TiKFho6U7iJ\r\nSVlX7/TPWy08PLZcFgHi1NbsovQsOp40tB6bN7EpldEOgTX7XIpPXJQOHgkn\r\nlHUB8NKg+334VyvVx30EQIvmZs6yPOAzenwFman2rpy7S/CQqDHzxSBj7iTC\r\nijLM03sJA1LiV3CNop93dMn0BQmqggsJ5M6pglsMkB9TvjUBom54CyF95x8e\r\nvv5Lel+JkAGMswA051lpXEZXyJPJOysB/qnXZmQnDQRlsrjaI3LUQwhzoffn\r\n4RIpHRgEOBC8fHma5fOf5I/+CaIPncLYkTUc/YCmubycrrR4s0tt5APo5iIt\r\noeCRV4XFpqRxdFuYvGbqk1eUYKkKgWC0KqRGwDrOfzwlF29yda3CikJMeliP\r\nxTXDUEfk3xDHUriGa6iEVNZn4Lho/0VunzPW3NVIalB9Vuw3ozhjOGcCQyjM\r\n2DZfxfjHT9C6/XsoE6gm7aE7xuL5mA0OkRz0QRrzg5NiexC89Z58xRYSjJAr\r\nwxw10wDBeq5QSYat1ENeZ9b2bvwwhPBeqc6aapXzSUiD9ch3ZLg1Sa2QpXU5\r\n2SOqBdPtDk//JBCEG2c0PN/wl4HEsBb3mlrCkvSpGhSjegyjz77yrd749CZc\r\nhWJ7ndOLCqQFDt950y5cBvd1V6Q+DTABZdc=\r\n=99j+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"6600d51e6bbb7db984484ea09f62ec22f9044ed8","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.2.4_1674580917770_0.2842734282159334","host":"s3://npm-registry-packages"}},"1.2.5":{"name":"axios","version":"1.2.5","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.2.5","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"858c129d286e7ee3b1e970961cde410ba3ea3740","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.2.5.tgz","fileCount":75,"integrity":"sha512-9pU/8mmjSSOb4CXVsvGIevN+MlO/t9OWtKadTaLuN85Gge3HGorUckgp8A/2FH4V4hJ7JuQ3LIeI7KAV9ITZrQ==","signatures":[{"sig":"MEUCIFrfmPVQMDFrkHE8iike9G+qyI2kEaBDsEDBG9mWtNLtAiEAq+L5PUg9kVsUjeRufjpgRW0C6j3AV17iq0Njr/vuJXI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1679167,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj0pb9ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoMGxAAh1OdRSz1A4u2qGgmghVk3yagKRICG42EdBI+Kr9SIkDkZFm4\r\nAfu9RpouUiwjWudkl7ulTIyvltGZ4Bfyfpp+MOR1jF67evIzPLCS3EamtP3R\r\nqIItK7fbEhPNw3AfSekni/4yiz89GVwnx4wxowrk+3x5CnRx8Fz0bngUWYBD\r\nFw+8rhAb9+7iXpOniwGJ1YNvrFsmCrS2SuDkMKd4/dLXMFWWcPCADuA3S6Zu\r\n7ftne2xrJtpdWP9nLTT5DAh5KQW2HDXQVp5uHo4eTPoTtZOR4y/hDEq+7dyC\r\nMBDzFeLkiukP5HHTDnWAYS/04ayR+stBA9x/3yJIJaAMfY+4cphz6N2HfuAX\r\n20A9X7/a1MpyW4yqpbZCDYvoQiWQ0z2Ndy07kT4qhfTDYl/7OC3iV4VldIpS\r\nTacvXqkwf12DUDkkj6DRBDylGns6X6T6NbC0UmFbCgLAetAl9qViT2pmuzjT\r\n5JiG+UW/BRFQHLl3j7jz8MQbLAoL2FhUCg4I3MZRq1MAeO/Fgb63nENsrPtO\r\nIa88kN5h6XPYxlv3f11yzbtDFbiGZ7w2wuVgETDUev9fSBESzmKbxSV8kwBX\r\n1hHpXU2XckY7NKXgKswBt2FRlt3fO3M2ZwadabrA4GfB/fQc3aJVIjJ0YZHg\r\nLXqdJSWlr1eQge6H8GgftiNOgiLMEgYAw1I=\r\n=80Dd\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"366161e5e48f818fa42c906e91b71f7876aadabb","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.2.5_1674745596929_0.16592412117762878","host":"s3://npm-registry-packages"}},"1.2.6":{"name":"axios","version":"1.2.6","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.2.6","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"eacb6d065baa11bad5959e7ffa0cb6745c65f392","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.2.6.tgz","fileCount":75,"integrity":"sha512-rC/7F08XxZwjMV4iuWv+JpD3E0Ksqg9nac4IIg6RwNuF0JTeWoCo/mBNG54+tNhhI11G3/VDRbdDQTs9hGp4pQ==","signatures":[{"sig":"MEUCIDr7W66tERawtie20BnnhG47mSxuhczZTRePqK8CbG6NAiEAzULPBYSQDPPUsopxGQv5kaem6ET8nVjS883nue7Xnus=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1680691,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj1VAlACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoR/w//ZGAFEgl29QNj14lTHA6ZfmqGK1V9fU5roDlW+zhIDaDgeQnn\r\nL/di9EaBOrwQB1+HdkT2B39m/whMXf53HN3zYzlAKJ5tDQJZWsBGwNxqRMUs\r\ndx9sF2hdhYLHz7OrVMNOXP4k1A4fic+Vh1uLU6iRZnCmPyThq1F9FZQqB1aP\r\nutkqoVSlCS+SiBfrLrzsgNb2YqAjGJ/yJYBus9V9k9HZ87xVun4nwTU4ouuh\r\nJosvURut7eBFL9R2zjhK5/eOtCp26d52fTZtMPWmlxD5Z1viU1TJFxp6Zzam\r\nvb1dizUpkWa0+19EbAYACf0Rl2m8KI6u6Rl6anQ1OymJBIU54vprI+rmVHWg\r\nzAOA4Y9P2tuGvDbcojGXlArz5Gr3fCEAdU5odIkh/cvTnBBUwJKmZfEqrypJ\r\nCxR2NPttPGYInqv4SGTqz4TlaqihKrDMuNEvm11SHyZfxL+9HwMqln2/3a7i\r\noWOKJ9yomiqqGAom4Dfwal8MK0H6Ci/g9jle0P/bpbh1YVrBuHEoLsvYV7aR\r\nQ75yC+mieGbLERGXImstg2XmND7PqWl7R8XBSxJmPy9ViOTtmYmbQT+QGaDX\r\nyol2/gXwpUzgbUYQ0idfJRMmumg6xsgxbyb+dGrUC6LD3W45psWHNwj3NEJq\r\nIaTM1Xkbuc3UdV5Z774zRoWU8NydcI7ZDWE=\r\n=lMBZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"5bde91cac787d92ae56c6cb293941244cc4c617d","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.2.6_1674924068872_0.6423213469800138","host":"s3://npm-registry-packages"}},"1.3.0":{"name":"axios","version":"1.3.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.3.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"4cb0d72213989dec08d4b10129e42063bcb3dc78","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.3.0.tgz","fileCount":78,"integrity":"sha512-oCye5nHhTypzkdLIvF9SaHfr8UAquqCn1KY3j8vsrjeol8yohAdGxIpRPbF1bOLsx33HOAatdfMX1yzsj2cHwg==","signatures":[{"sig":"MEYCIQCWPXi3hCBwJRp5ys8bXF7YPO7u/v2AiEf2tqufcnUFZAIhAOp2O2NcNXwWiuiQ2sAOwX4sV5rvYjq9xQ86ARK+RJWS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1716407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj2UgTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqxPw/+OvthZp84qCeOhtCgZyMyTJ15/Vu+jewj4lr+x+sevuKfHeTI\r\n179XVSd5OVz/SAA0c4nVdefsqUS3fhzeCQH3fUUUdXiWgCzHyRu1DFq3jKTC\r\naW1JS2eeSNXl7PscFIxiha6bkTMgpR9oHnLAk2uzLwRbw2e9/S7y6bx13i7L\r\n5ApUMP1zITerki48ZqVxqDjR45o08uNcd9adFrM35hJTSZWuEEKV25acfEKH\r\n7K8u9qfJSEKz4aPm81O1zSL7aXWyVfv/ZfOa/z5Ln8bnEURzC7Sc7MO5U/6B\r\nJfJawD66ecuAIX9cfgXR/gOpEt5giJ5kUKE4Z2wIfMjMLmvSmA1BwRhZCzwx\r\nk1aTDZ226gfucElcedhoc+9j5kQJRm0ASpykMAwRR9CvJx/JaAlyLdhuA4Ku\r\n8r1B3PyEehgtNYKexT2HrgDGhXGZi5Gwek7hApY5faL7ac3LL3gEpjNhKkxr\r\nDMBR/QpL7bHaSp+RwmAMY6RP3kjs1OQBu9w0HZ4UIMp9/1uEJgPDBTtYfnel\r\nR7OjdLeEknh9VPSvwIWyGT4gnZyWgc9kzT2FXqECTwjhBBNAS77lLW0i7hba\r\numU6ssX7AnPmpgIwOz0k9M9ZHRZR3djwxy6XDnc4GnD8Ivj/zrHu9rjzkwni\r\nU0qkM3uOlEHoR7OVvHtBN9ApOzBfRJhuhRc=\r\n=7BYn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"7fbfbbeff69904cd64e8ac62da8969a1e633ee23","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.3.0_1675184147425_0.8426296876760921","host":"s3://npm-registry-packages"}},"1.3.1":{"name":"axios","version":"1.3.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.3.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"80bf6c8dbb46e6db1fa8fe9ab114c1ca7405c2ee","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.3.1.tgz","fileCount":78,"integrity":"sha512-78pWJsQTceInlyaeBQeYZ/QgZeWS8hGeKiIJiDKQe3hEyBb7sEMq0K4gjx+Va6WHTYO4zI/RRl8qGRzn0YMadA==","signatures":[{"sig":"MEUCIDj5XPXVyZN4V0wVwjCgjhkdQBT9bUDzRrBqi/J6AxxcAiEArcXeJNOvibkr3WQsG4KlMOecPK3ar6THF9st6jkAdDE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1718219,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj2vY0ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmo/pw/8D8d37AXG/+1jbM5MiisMMmuSVqSjhLdgCR0UJ3nUUaE9nC/H\r\neHBnMSgaHQnOnZ6Rt5FGpcwYgP28zyeRVITH8g6kfqJ1TC+Cstszmfp3bSl9\r\nEth0F7aIT/hVVoNpuzDY5nDRvadn43XRfXnkrawjIda1UP1JPnZO/j1Z4Net\r\nJB+E/zKe5qlqnujYGZe2hYum4xeDUdvXi+VZgQfTllmtArG/8ZtviJMej9uU\r\nRFlPiwh0M6qD1MQhpCYUSoHSP47Onvmm8hQOXdBquKLT0lG/BT+jta355DrR\r\nsCdzxzOkG6AP7F3rb2wSjd54mtEe46ebdT+rJjU1hUWDA4uZFbCsZa/xTHy+\r\nrVL5CkeHlBazSlh/4pZUEX8Jp5Gw2sgxdYF3jQ3eV046aChP7Bp8BqF127A3\r\neU8cipz+b6LeVuWgFOYdGFAZlDs3AmqPvmpRTzei7kKSUXQh44IJCpSYuy90\r\nfu7Z2Nrc7VPilmhmHtIhOXLKin89zjo8GDB4k/dqEgkiL+0hVin5QLtqLnoy\r\nd93qFJvcilI3RRGnld88tqLvNd9zuxgs5BKDRyOJ+8YSfMLP8PtGzQ4c+xGH\r\nuVzjUlk9D7J9OSWeG848je5hvgifHiiT/16JEiTJ8RQ/EBGHCGlIxztZl10A\r\netO1VaT4GmbbsT8+bOuqc7CLy8QO5K3j/5w=\r\n=INoT\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"54d3facb3b032665e6ae84e157073702b5c2e4d9","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.3.1_1675294259762_0.11066629103273429","host":"s3://npm-registry-packages"}},"1.3.2":{"name":"axios","version":"1.3.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.3.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/timemachine3030","name":"Daniel Lopretto"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"7ac517f0fa3ec46e0e636223fd973713a09c72b3","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.3.2.tgz","fileCount":78,"integrity":"sha512-1M3O703bYqYuPhbHeya5bnhpYVsDDRyQSabNja04mZtboLNSuZ4YrltestrLXfHgmzua4TpUqRiVKbiQuo2epw==","signatures":[{"sig":"MEUCIGQLexzf+wShODXg2mIavTw4MBQSBqDBAwzVkCCsIQP/AiEAsFW/Yn5J++NOzlG1tjZ56DS4Oh/JRveQO+++rP8To5Q=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1719158,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj3U4oACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpo9hAAjNVOzyXAfGyx1ZX21pdum/aUI9Q7AQwN4YS0NiGr9OGXrvTB\r\ni5NaB34F4OXWtQ6hEpRxvJ+Zb+OZRVULp0rowrFWJbfnq/s5EFe89L3Witnf\r\n2H6TeMMONVvOGSL/Bn3qhtv8sCmG6UhGGCvYANJIstySedc4WdDigRs487Tl\r\nnxkkM2oArsxi7UQ7mVZRAgL7dwSuekWbDYSXxRTGmJ2+OXAP1DBtotPoB1mn\r\nMws6atVhfslhAD/+xinOOJlN0FcBwTj6oB9d6MYjUgZLnCNdCigSC4GCBKY6\r\nTg8Mo7Nrut4cQwD+L0Yzlm4CjFfbBDIAEsp4nXaNE8F2orcDQMnZcEdBiVXG\r\nTPC/mlRUfJp5d38WnNhTreNscIFI+AUribnQMOCYna8BFYzzuG0v6iJu42RL\r\nPPaWgga6u+PZ6rozvGEgQC5bfUTx586+kYdPZ/ttlvMo/0mmROqMzmkPupPr\r\nPsdNNLkxyqvJazzHOyA7Q8EcWesmhq7jXJnuCyVplvULmvAPYvY5yT0dOLLS\r\nlDuVcefr53aS8mFYK3jTv7a4POJSyLdKLfFAHG0l6L1X2TgCnc8zQWvkc1TG\r\nrx/Yu36MtkDSEOx49MYCft7cE7yhYish6XUKN1nv3j9s8NBP1OX96cf8NEnW\r\nZZPndiY3kLx0TAcrMwdc9z96I2RN6E+LMXo=\r\n=CXLr\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"0b449293fc238f30f39ab9ed0fca86a23c8a6a79","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.3.2_1675447847991_0.6477453444508463","host":"s3://npm-registry-packages"}},"1.3.3":{"name":"axios","version":"1.3.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.3.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"e7011384ba839b885007c9c9fae1ff23dceb295b","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.3.3.tgz","fileCount":78,"integrity":"sha512-eYq77dYIFS77AQlhzEL937yUBSepBfPIe8FcgEDN35vMNZKMrs81pgnyrQpwfy4NF4b4XWX1Zgx7yX+25w8QJA==","signatures":[{"sig":"MEQCIHyDiGw3Gxt9BI87BDJbAhd7Hg86kBiSQSpS0bmOTNhDAiBMjhzlRSpseXIGAl4+N+J/ppl/V7lEVO3ag43MC0paAw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1722523,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj6oW4ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqVmRAAg0YlvTWIHVeUnloznejF6Znvi79DGJgqSRI7WHrr84tUxrpp\r\nCtWfLHTJ9+B0ORgqY9Wfld04ZodIRsR04wdTL7nf0hEbptmK2lhHVbzIbg5p\r\n3WLaZPnIuIa8NqTlZJQQ5Xnwwlt1leZhwPhFuBjZ3eonfXhIRi/Xa5aNyW/7\r\n6kBsCDOzQD6Eu9DFFINb1DfIvZnR0S47670ljASE4K0fYxMmIddLLcLMrRfD\r\n8CRxNHPP7Ls6PPLd4btwAMWu0PUmRKSRJ6+b+N9VwIOT5VQObMsSTy0G3uhj\r\nKEDKBZUP2vnWO1GYYXGteDK7H5/zgAzb+X2Hrh2+5URJItDfkj2jHpGa1uH9\r\nUAb9m44j0vPgNe+Ap0NsEnRgMvaPNOmxdyA4DUgYYaew6xsrBOHgGdCjLtMK\r\nGH8INAfTTmUVL3JPJQFWnj6Xv9maLd8kg48/RzhEj8OREBcOkeG1uuUxTKSf\r\n4ozoynH5LA+KNz0EJpQDg4MEMAdm45vNitXIeuf3Tv3qRqM6JC1QZ96x/VRd\r\nWIm6Y3oV/o47j1kwwlgGFlaBIKoukknA2R9k8zMF74H03HMdtXLOrBEWeV2J\r\n81nJDW2btymk3ERbLQpgtWqFHvP0VJmh32aEB9rFoI+r40JYnwU0ETIvM1QL\r\nz9PdO04avBIKN4Tm5S672drY5QsD9wsdNTU=\r\n=9P70\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"d9ebf8fb3ab2e6d277626d72bcf5580e2a6e795b","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.3.3_1676314040602_0.8782490541221246","host":"s3://npm-registry-packages"}},"1.3.4":{"name":"axios","version":"1.3.4","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.3.4","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"f5760cefd9cfb51fd2481acf88c05f67c4523024","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.3.4.tgz","fileCount":79,"integrity":"sha512-toYm+Bsyl6VC5wSkfkbbNB6ROv7KY93PEBBL6xyDczaIHasAiv4wPqQ/c4RjoQzipxRD2W5g21cOqQulZ7rHwQ==","signatures":[{"sig":"MEUCIQDdGUt3fhi69x/8YjbifEvAs6id8Q+lP/9MUzUwRF9m5wIgGYW2WBQJ3jzgFwy71s4PaL6CWKQulN1EwznlKIvZy38=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1725978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj9oPPACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqx2BAAkD8JAkJQ4cxTHcq47meU4cLUk0eVpUucLfrGQcNFKcwxjXSX\r\nWrz0zqhretQ60YnUoORODVKl+tlD6EHTGDEpM6CJLP3YwAHYuXLiZkYQvBa1\r\nRm8MmDZgCyNTiA5AtH5szW/RM6NojxV5StRWPBFnRlkzT47uTLkM9XVRBO2X\r\n+Iwodv2VkNx3rG+oWDscIQP98ZRRW/ZpjS3HdSIRKHZEaLe7veMVMRrzVE+8\r\ndknaZRNKKQuErmpLiODkpOysjBhzcm71g+w2Ri483y1/JSFEW/N4+w9tQglY\r\nLyDLKd3I3u7xquSzD1oOVy2LJiMG61DpTBywXW5TCbTnyvkIoUss3p6M/B5R\r\nyHxAbdDEQy8wVpIirsreNbz1AU4MzqfbehHXdVPslto9yugwhGBp/K1dlPUN\r\nIMWdD5XosfiPHxAyYI9PhFwq00/gp4w6u0uLd9Qm9d/59+X0vqp0i2OlKSZf\r\no3LqfRBjcIldw3bvrPrDwOsNhQEvqNHspJ3XKn6ZCxGNOThF7Js1e7Iqa0FI\r\nkx85GXiERGhatwmJy9w3SUV9K2D2y2HLFNXHcFDRnljO2I/8sAw3Ujzl6fZj\r\np/k+oL/6pV8Yz0ew8tSpNDWwQ+WUJxarLGVZ0Px8i0CpLUXtH+Q1CZS9BxPv\r\nzI0zxjW9Qer7mWZpHSgOkNoBEcQHDi07Vlw=\r\n=QzfB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"2e70cecda42993e1153248f0f96715c3c55f7f39","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.3.4_1677099982685_0.8472507776917524","host":"s3://npm-registry-packages"}},"1.3.5":{"name":"axios","version":"1.3.5","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.3.5","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"e07209b39a0d11848e3e341fa087acd71dadc542","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.3.5.tgz","fileCount":79,"integrity":"sha512-glL/PvG/E+xCWwV8S6nCHcrfg1exGx7vxyUIivIA1iL7BIh6bePylCfVHwp6k13ao7SATxB6imau2kqY+I67kw==","signatures":[{"sig":"MEQCIGdEyOOIwBVBewXZxOiTtkUFKDW8ZmtP+jPesQ4WGN9wAiAIV3Rq8dJwhaapgkfgfrDVjVCZzZ4q8mhJvelDyX+83Q==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1729516,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkLbfXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoBQA//RGaZcaC8TX+6a6hGKMg4GsPttJEgXEQ2cUiZ+tDSvD7/Nr0N\r\nwiFOwdJ1ZL29w3lNiFS3/UUlqzp9am/OkLrDAnXUI+4fm73jO+h88hThbk1D\r\n4QzaI8SItELqkSJznYkA9u3Fd89tvFnOOM+dCLh9cQvDRjYuURQJITXVUxeN\r\nvISJYKw+Znj6GW0+jHUlcFFyBnQANWWoHb/N5N5pX5Q8kp258/O/4UFBKRcj\r\nd9f2+VZc/KU+Sp88MaerdN9znqxyoG2eeftAlyc4QsnJo/fp/rLSde6cyMaY\r\nPMoFMM0TeFmmOVaDPwnS0EuPmMdBUcdw1CGB/69lBypV+IvRAvtj9vgaCjML\r\nrGzBNAekuqFkrohKXaYu+OsY3ium7vRbayiglMNMdpVd0Nm9imzEv9qaIIJP\r\nJPxQcVbp6PuEkTGKimAIcd9Vtoi8lLdShbIABaCSHygkPVElZRhkTcKj7ZNJ\r\nAC4HmwvhDHxwWG6QF2nP2vqdo5o8Ok34+nNntCm4XWmdPCHSW0fAfEaEsgIM\r\nw6eWeIQ2Z+lsh9Sh5nfbWF0H1Fsh/XlhTZPhbZ0LdNoyFXUa11lSc3WJ0Pk4\r\nUAhFYhZwCIN79JH4jitaIOYGdDi8bbEuB39xWNI9GZyVbvxVjHsioH2Q0Tig\r\nsFx+l3ib6kg20QSf7XMF8DyyWbXV2kK7PDg=\r\n=ctXG\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"4af78a72eee06172c53383aaed74e2dcaf44d620","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"node bin/ssl_hotfix.js dtslint","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.19.1","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.3.5_1680717783541_0.7209042165567323","host":"s3://npm-registry-packages"}},"1.3.6":{"name":"axios","version":"1.3.6","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.3.6","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"1ace9a9fb994314b5f6327960918406fa92c6646","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.3.6.tgz","fileCount":79,"integrity":"sha512-PEcdkk7JcdPiMDkvM4K6ZBRYq9keuVJsToxm2zQIM70Qqo2WHTdJZMXcG9X+RmRp2VPNUQC8W1RAGbgt6b1yMg==","signatures":[{"sig":"MEUCIQCav9+/zKeuzTN0qZlydahFUvsJS5iKvpK7F8L9yZ0eJQIgD0R/nlnLkjiLtwlSqXHgB3Vh8FoqKtUh1ImddHH7eZM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1732124,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkQENRACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmpp8xAAijz/HSUYeaWdhtr49x1N5DcqaOhLa1Iz5+yRgHuQiLPHaPxs\r\nDo8B9ulwvcXMUBDntlGqTxxrO+bo8wqDeVs0jotyLjxCmW/Dj8Iaxlrr3JVN\r\nXHsDRXj8RiGPGyXKKkK/2M/wQbqP8tWBaahI9T7Vc2A97apyu+iES2BDQ7e+\r\nfXSLV61+H/p+es0dwdXfCp8UYTqy60ctBwTWgcBpF3kPOImoKrLoBYk9giBP\r\npoocQdV12vELWXOSj+2giIhjmyRB5fN8/o9kC7WOQKesaWOV1W1pDxJAN08M\r\n9AkUauSr+n88ap9hVN5DsLWEpuMUx+Zqmnv0qOPZ+i96q2O3SZanDj9ukyNC\r\nE4LNDriHsc8xcEQRbA+1VFdiXCQm8OVAhBaZytwfyhBwR48ARyDg2qwY7Fpu\r\nLb9eh12MZXa+qc3tFY2Koa8ttnysWLTNOcFA+HiWTPBXNpM3uMs3NXfj7Ms8\r\nqNvAZ0OzR+BVNNpweZzia/QneSRh7WFa+F8HOOOnckYLsUL8264hyaWo5HNk\r\nOYsUiHWTbkMQFM+aWps8x4sM/eNmxjxELxQgV7eVDQlMQdjss+oN3JmkXoy7\r\nRDaHKpIzq6wai/Ok3p0h7FvM/aLYd9D8K+3Uuqn9iyayRCuitINM8E49OYC3\r\ndZNGpEcxZQ7Dgjz3SbzJnE2hGnUwwmG7oYI=\r\n=JmrB\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./package.json":"./package.json"},"gitHead":"59eb99183546d822bc27e881f5dcd748daa04173","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.20.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.3.6_1681933136821_0.041688039727891146","host":"s3://npm-registry-packages"}},"1.4.0":{"name":"axios","version":"1.4.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.4.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"38a7bf1224cd308de271146038b551d725f0be1f","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.4.0.tgz","fileCount":80,"integrity":"sha512-S4XCWMEmzvo64T9GfvQDOXgYRDJ/wsSZc7Jvdgx5u1sd0JwsuPLqb3SYmusag+edF6ziyMensPVqLTSc1PiSEA==","signatures":[{"sig":"MEYCIQCgTzRr/ERpzlEqrlmwJKEgGJnWJnbFq8egGVGBH0ahSwIhAJbxoPCIOH0dEVVkLAyrYHcUlNOma3dAmegL6LEMCNKj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1744876,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJkSv/QACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqWCw//bGowXu9gYn9RLjkTyDCeRpXf8urdh8A4XEsoNijp290rXdta\r\ntUFS5t35riwwy6tbbl6HAWGB5XkrBxzZQNDPRt2Zj+ZKVsilzjnQiVi7sLjz\r\nsC+S8eNuCXgzT9+GCqliEG67norJ8O/iC7Ejtu1vo6RFxlLPCoEXqA4fUenb\r\nFMfzJI3V4OydtCT9LFyUx0TXM82M/o3KBBuLaTVyUMG3BRro+2TWEX1YkQVy\r\nOLTBMicHy81Wtu+RHeuxEDcvNALvX9q3yEMjOZdlr5Z3n6Q3hXrWWco5tbbC\r\nkscRj6QBfD9sncBwxNjA6aJ9Ye1pnfAKnqwiuUrblbOVogEnjFQ7cDWPlWPm\r\nVZcKTUetZI4sIkWPSosEC5tU/GE5Gm4NGMUuejqlTpbPclPTEVbc4B2Rj6Vl\r\nVf558StOGe+crkg83BJKNEKF1vfOXjxJ3lbwccgMlDoIpifHyI/f76iN31Sv\r\ngyryO5hA9udhMTjRWP45jCi65ogvzNXFQa41E48Ii0olqD2xtqX/sCKn9a0F\r\ncxaY7j3xnIzoj8zlgglLjV3jzuDcOGAlsiCZBJZX6C0HsRpvnP+tZcAV6dlg\r\nO1GbIHaGyIwTRgDV/dxdmYSXXCuCNGyClfsnTxiiSK4kTteBJ/uQS6dr7I9O\r\nHzzHVPQL6bxyvx/4/fxRoExG7jiT12sIu5s=\r\n=X1R/\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"21a5ad34c4a5956d81d338059ac0dd34a19ed094","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.20.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.4.0_1682636752474_0.9341626219564856","host":"s3://npm-registry-packages"}},"1.5.0":{"name":"axios","version":"1.5.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.5.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"f02e4af823e2e46a9768cfc74691fdd0517ea267","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.5.0.tgz","fileCount":80,"integrity":"sha512-D4DdjDo5CY50Qms0qGQTTw6Q44jl7zRwY7bthds06pUGfChBCTcQs+N743eFWGEd6pRTMd6A+I87aWyFV5wiZQ==","signatures":[{"sig":"MEYCIQCi9Py9XNF/6HCVX45kk4PFNpi5QyKeJxuDGkrhjIEQ/gIhANa25QQnObS1u/EXcURKvd0uzMJgX8/ea45Cp5U0SqwE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1752636},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"6365751ba6725cc283f7364b9ee6ca9917e9737c","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.5.0_1693077049807_0.6535433895290248","host":"s3://npm-registry-packages"}},"1.5.1":{"name":"axios","version":"1.5.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.5.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"11fbaa11fc35f431193a9564109c88c1f27b585f","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.5.1.tgz","fileCount":80,"integrity":"sha512-Q28iYCWzNHjAm+yEAot5QaAMxhMghWLFVf7rRdwhUI+c2jix2DUXjAHXVi+s1ibs3mjPO/cCgbA++3BjD0vP/A==","signatures":[{"sig":"MEYCIQDw/1qBDn6muYdNOnUuZcQubzbeWvYK2is47N4W2Y11jwIhAPWspTwUJHB7tjXotTRqf2lG1TaKsU3ZyRaPlbv8Bpd2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1769525},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"88fb52b5fad7aabab0532e7ad086c5f1b0178905","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.5.1_1695752532030_0.5660010100168418","host":"s3://npm-registry-packages"}},"1.6.0":{"name":"axios","version":"1.6.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"f1e5292f26b2fd5c2e66876adc5b06cdbd7d2102","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.0.tgz","fileCount":80,"integrity":"sha512-EZ1DYihju9pwVB+jg67ogm+Tmqc6JmhamRN6I4Zt8DfZu5lbcQGw3ozH9lFejSJgs/ibaef3A9PMXPLeefFGJg==","signatures":[{"sig":"MEQCIE7T2XJHHp5uQyn4q/PCgUY+znlXOhB0T3DUBuB5JH1oAiBAFxtKYPOXrrFV2JMC1DY72p6ABeFW/AZ96gWlWVMNlQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":1785881},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"f7adacdbaa569281253c8cfc623ad3f4dc909c60","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"8.19.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"16.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.0_1698354955274_0.6928158771234276","host":"s3://npm-registry-packages"}},"1.6.1":{"name":"axios","version":"1.6.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"76550d644bf0a2d469a01f9244db6753208397d7","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.1.tgz","fileCount":81,"integrity":"sha512-vfBmhDpKafglh0EldBEbVuoe7DyAavGSLWhuSm5ZSEKQnHhBf0xAAwybbNH1IkrJNGnS/VG4I5yxig1pCEXE4g==","signatures":[{"sig":"MEUCIQD6YBI9oBGxkwGqrHNGsqAObspt/HyOkJOTj9f5wiyu0gIgXh7f358iZCzh+Lf1bqfL0Qatl/eBS/zq4Wk0urwgz38=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.6.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":1797707},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"f6d2cf9763bfa124f15c2dc6a5d5d5d9d3e26169","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"9.8.1","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.18.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.1_1699456167910_0.1915596640818158","host":"s3://npm-registry-packages"}},"1.6.2":{"name":"axios","version":"1.6.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"de67d42c755b571d3e698df1b6504cde9b0ee9f2","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.2.tgz","fileCount":81,"integrity":"sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==","signatures":[{"sig":"MEQCIAuObdAtQkDyGUFn7P/AHT8gCtJ6wOHeLEuLXKNilydxAiBUc03VL2no1an3m8T5uzKJ7tlqBswoy3Zyevi4UCvdwA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.6.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":1797704},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"b3be36585884ba1e237fdd0eacf55f678aefc396","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"9.8.1","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.18.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.2_1699994169966_0.9836417634420316","host":"s3://npm-registry-packages"}},"1.6.3":{"name":"axios","version":"1.6.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"7f50f23b3aa246eff43c54834272346c396613f4","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.3.tgz","fileCount":81,"integrity":"sha512-fWyNdeawGam70jXSVlKl+SUNVcL6j6W79CuSIPfi6HnDUmSCH6gyUys/HrqHeA/wU0Az41rRgean494d0Jb+ww==","signatures":[{"sig":"MEYCIQCi9KWvTyfe/CGVqLbZ5AHtGUjCDXNkWKqUH0A0vN6IfQIhAPtDGmZNppqYp7RYZ02Eqdt3pVYU9q7RMxUwKHC7Cc19","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.6.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":1798922},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"b15b918d179900e7d47a08f4e96efc89e16d8a7b","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.2.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.3_1703632577508_0.20727676602466083","host":"s3://npm-registry-packages"}},"1.6.4":{"name":"axios","version":"1.6.4","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.4","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"184ee1f63d412caffcf30d2c50982253c3ee86e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.4.tgz","fileCount":81,"integrity":"sha512-heJnIs6N4aa1eSthhN9M5ioILu8Wi8vmQW9iHQ9NUvfkJb0lEEDUiIdQNAuBtfUt3FxReaKdpQA5DbmMOqzF/A==","signatures":[{"sig":"MEQCIC/fW8Cqf1tcsgqXP4pPWi6xY25rpusOx1ZTVlXcP8klAiAHhvH88hoS+kG3KyVKNdpDjS/eyhBt6PthTvwQQSliNQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.6.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":1802694},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"8790b8e7847c7f450544e7195c837ffc10fcb160","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.2.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.4_1704319855260_0.37452098041180215","host":"s3://npm-registry-packages"}},"1.6.5":{"name":"axios","version":"1.6.5","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.5","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"2c090da14aeeab3770ad30c3a1461bc970fb0cd8","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.5.tgz","fileCount":81,"integrity":"sha512-Ii012v05KEVuUoFWmMW/UQv9aRIc3ZwkWDcM+h5Il8izZCtRVpDUfwpoFf7eOtajT3QiGR4yDUx7lPqHJULgbg==","signatures":[{"sig":"MEQCIF/vpisa8rpe/teYRdtZV87O9h38B+GGrhCRqlTdVVpmAiBYQumbcr9KioxK+a7M3CxSoGXsO3hhXaytJn0pPidiKA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.6.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":1804160},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"6d4c421ee157d93b47f3f9082a7044b1da221461","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.2.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.5_1704484334788_0.8966924575569628","host":"s3://npm-registry-packages"}},"1.6.6":{"name":"axios","version":"1.6.6","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.6","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"878db45401d91fe9e53aed8ac962ed93bde8dd1c","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.6.tgz","fileCount":81,"integrity":"sha512-XZLZDFfXKM9U/Y/B4nNynfCRUqNyVZ4sBC/n9GDRCkq9vd2mIvKjKKsbIh1WPmHmNbg6ND7cTBY3Y2+u1G3/2Q==","signatures":[{"sig":"MEUCIQCMlM0vYTqCTy/5LgxGUqy6dPiUEicAeZNt3NeGz5pQDwIgGq7IuwF7RMkDLEHefOglhm7QygdivJep0lzuwRrb/Bo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.6.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":1840271},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"104aa3f65dc30d70273798dff413fb44edd1c9e6","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.2.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.6_1706137939390_0.8260356382950849","host":"s3://npm-registry-packages"}},"1.6.7":{"name":"axios","version":"1.6.7","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.7","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"7b48c2e27c96f9c68a2f8f31e2ab19f59b06b0a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.7.tgz","fileCount":81,"integrity":"sha512-/hDJGff6/c7u0hDkvkGxR/oy6CbCs8ziCsC7SqmhjfozqiJGc8Z11wrv9z9lYfY4K8l+H9TpjcMDX0xOZmx+RA==","signatures":[{"sig":"MEUCIHapqs6xNy72K08cW7+NOvAfleO3306skvTD/LADl4t5AiEAvpnzO/HOYKU4zGc273hPq3EekM1F6J+fnzP9hSWM/1M=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.6.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":1841701},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"a52e4d9af51205959ef924f87bcf90c605e08a1e","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.2.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.2.0","husky":"^8.0.2","karma":"^6.3.17","mocha":"^10.0.0","sinon":"^4.5.0","eslint":"^8.17.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.7","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.0.1","get-stream":"^3.0.0","handlebars":"^4.7.7","release-it":"^15.5.1","typescript":"^4.8.4","@babel/core":"^7.18.2","body-parser":"^1.20.0","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.4.1","pretty-bytes":"^6.0.0","formdata-node":"^5.0.0","karma-jasmine":"^1.1.1","auto-changelog":"^2.4.0","@commitlint/cli":"^17.3.0","stream-throttle":"^0.1.3","@babel/preset-env":"^7.18.2","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.3.0","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.7_1706212731103_0.2889639653339402","host":"s3://npm-registry-packages"}},"0.28.0":{"name":"axios","version":"0.28.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.28.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"801a4d991d0404961bccef46800e1170f8278c89","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.28.0.tgz","fileCount":70,"integrity":"sha512-Tu7NYoGY4Yoc7I+Npf9HhUMtEEpV7ZiLH9yndTCoNhcpBH0kwcvFbzYN9/u5QKI5A6uefjsNNWaz5olJVYS62Q==","signatures":[{"sig":"MEYCIQDf9ojq/RJHlrNxwB+0EOb0VO4pOImSw3pDyrl+L79RbAIhAI0Y1ySpPPg7Vxg5wuMLyCBBKpJFjJfFG1z7gzwGSRrB","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@0.28.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":878279},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"gitHead":"3b7635aefc842c05da0ec8c90e8bd09cb54616b8","scripts":{"fix":"eslint --fix lib/**/*.js","test":"node bin/ssl_hotfix.js grunt test && node bin/ssl_hotfix.js dtslint --localTs node_modules/typescript/lib","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.2.3","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"18.19.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","grunt-shell":"^3.0.1","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","@rollup/plugin-json":"^4.1.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","@rollup/plugin-babel":"^5.3.0","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.28.0_1707763104206_0.6379930702081955","host":"s3://npm-registry-packages"}},"1.6.8":{"name":"axios","version":"1.6.8","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.6.8","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"66d294951f5d988a00e87a0ffb955316a619ea66","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.6.8.tgz","fileCount":81,"integrity":"sha512-v/ZHtJDU39mDpyBoFVkETcd/uNdxrWRrg3bKpOKzXFA6Bvqopts6ALSMU3y6ijYxbw2B+wPrIv46egTzJXCLGQ==","signatures":[{"sig":"MEUCIBJijeDGRwcdlZaz5W2MV1XWBxratH2nt8rVssKS7uuzAiEA8roD9XOEEDqsS4SHz0RNDXnREuABBdxoNcDpDXkRUBU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.6.8","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":1843235},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"ab3f0f9a94853c821cb00f1112788ecdd3ae7ed1","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.2.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.19.1","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.6.8_1710520367635_0.034148163784521346","host":"s3://npm-registry-packages"}},"0.28.1":{"name":"axios","version":"0.28.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.28.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"2a7bcd34a3837b71ee1a5ca3762214b86b703e70","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.28.1.tgz","fileCount":70,"integrity":"sha512-iUcGA5a7p0mVb4Gm/sy+FSECNkPFT4y7wt6OM/CDpO/OnNCvSs3PoMG8ibrC9jRoGYU0gUK5pXVC4NPXq6lHRQ==","signatures":[{"sig":"MEYCIQD9w2oE0Ja3ZmM1Femglvfo7586kcSN9OuQ1MNK0spZ9QIhAKor3hUkI19TeaZGmntoENJFoePjMVcDW35KIQvvye/x","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@0.28.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":882525},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"gitHead":"3021e0ddbdeb5cd40e9e296851a8bd8ff45116d3","scripts":{"fix":"eslint --fix lib/**/*.js","test":"node bin/ssl_hotfix.js grunt test && node bin/ssl_hotfix.js dtslint --localTs node_modules/typescript/lib","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.2.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"18.19.1","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.0"},"_hasShrinkwrap":false,"devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","grunt-shell":"^3.0.1","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","@rollup/plugin-json":"^4.1.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","@rollup/plugin-babel":"^5.3.0","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.28.1_1711647370774_0.48032212541160035","host":"s3://npm-registry-packages"}},"1.7.0-beta.0":{"name":"axios","version":"1.7.0-beta.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.0-beta.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"2ce152e8f545886aa5a139e54ca7b4d145317b92","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.0-beta.0.tgz","fileCount":86,"integrity":"sha512-OBG6+lUDkEqUAOR/JyB4MEIc1bMR4M5Lp/SpD4y3iOUafXCJlftz1GEQ09K9qUmUsySFLfT+8mjZU3Mkmog7fg==","signatures":[{"sig":"MEQCIGpLkp2BKyj/1Zom5ZEvfn6wy5p3goW7JCXICEDDLLY6AiBkwI490aD06dLTd9/6uW/S1FvKfw/lfqtAXWCgzbamsA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.0-beta.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2046161},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"8e4314bfd68773ef405a4c081cf30c3bce5447ee","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"deprecated":"This version is deprecated. Please upgrade to > 1.7.0","release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.5.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.0-beta.0_1714333854287_0.6155144044282943","host":"s3://npm-registry-packages"}},"1.7.0-beta.1":{"name":"axios","version":"1.7.0-beta.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.0-beta.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"c96fc08a8ec47c4840ee86d82c764824c791d0af","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.0-beta.1.tgz","fileCount":86,"integrity":"sha512-ddULIFs1eLuvZ9WOw0XJoIobF6Fxr3eO80xkdp5ab9zw8FnrTU1sTJL8zDowgS8kZcOEpRIokP3xWckK88Q0mA==","signatures":[{"sig":"MEYCIQDhDiDZsuyi7XiwRwZAwcPxLi0+a5m0NBmw44lDeahvGAIhAM5VV7eV6XuFzgrY0GSXCdOLQB2nRYPePbx2dokvpnwS","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.0-beta.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2059844},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"b9f4848f8c4c7d53dbe1a1ee06e9b3604c2e56ac","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"deprecated":"This version is deprecated. Please upgrade to > 1.7.0","release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.5.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.0-beta.1_1715107071143_0.6792047128881773","host":"s3://npm-registry-packages"}},"1.7.0-beta.2":{"name":"axios","version":"1.7.0-beta.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.0-beta.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"27c26a53b397a16cd99db28968cc032ceccf7d70","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.0-beta.2.tgz","fileCount":86,"integrity":"sha512-AM2JFzxTjPe8/bO677z1F1w9H53OMCuoWoCUDoXunfmjihXAR47GFof1DGzmfK2TGTiWbbUBOXQN3Ohqf5TzHQ==","signatures":[{"sig":"MEYCIQCp/81vgvJf2kITJV6bDKYT6ELhxI1rUHK6w9XYxmH17AIhAJWaC6Zc6L7C65AthDv2VRQrYNDUO8exMTKGd+CZJ2S2","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.0-beta.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2064637},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"b49aa8e3d837c36e4728a9fa8a5e23a1162e96ec","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"deprecated":"This version is deprecated. Please upgrade to > 1.7.0","release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.5.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.0-beta.2_1716141683734_0.19941326440947682","host":"s3://npm-registry-packages"}},"1.7.0":{"name":"axios","version":"1.7.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"b48f715325457ededfcb3f0a44a3fb9d5742acb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.0.tgz","fileCount":86,"integrity":"sha512-IiB0wQeKyPRdsFVhBgIo31FbzOyf2M6wYl7/NVutFwFBRMiAbjNiydJIHKeLmPugF4kJLfA1uWZ82Is2QzqqFA==","signatures":[{"sig":"MEUCIQDXMY2Nas2Bz5+KhPRTt/pCjDMIJ0jtu0dipDpPICeZ7QIgGlICNrYeTj5uMysBqiSD7aLE8a6aNJ15AW1L1UfOn0Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2067880},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"3041c61adaaac6d2c43eba28c134e7f4d43ab012","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.5.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.0_1716150303378_0.29776844363440547","host":"s3://npm-registry-packages"}},"1.7.1":{"name":"axios","version":"1.7.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"522145622a09dfaf49359837db9649ff245a35b9","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.1.tgz","fileCount":86,"integrity":"sha512-+LV37nQcd1EpFalkXksWNBiA17NZ5m5/WspmHGmZmdx1qBOg/VNq/c4eRJiA9VQQHBOs+N0ZhhdU10h2TyNK7Q==","signatures":[{"sig":"MEQCICKuUx0iu0Ky32ObPOFrlqCJJLbSYBNSqShugC97a6MJAiBLtmdcqqE6A8KpF5pUp8PWPSwotS7uad7ucJlCIJecrQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2075224},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"67d1373131962d1f1f5b8d91f9a2f80ed3923bc8","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.5.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.1_1716211972353_0.15912019019773171","host":"s3://npm-registry-packages"}},"1.7.2":{"name":"axios","version":"1.7.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"b625db8a7051fbea61c35a3cbb3a1daa7b9c7621","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.2.tgz","fileCount":86,"integrity":"sha512-2A8QhOMrbomlDuiLeK9XibIBzuHeRcqqNOHp0Cyp5EoJ1IFDh+XZH3A6BkXtv0K4gFGCI0Y4BM7B1wOEi0Rmgw==","signatures":[{"sig":"MEQCIAH6pHuEIoKh5PjU9rNrxctAv8sEn2wTixkXAm6h6O6HAiBDhsN3Ad/vlzeaUGAkmLFLXsuE61IJK8hPWc4+8WcJuQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2076796},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"0e4f9fa29077ebee4499facea6be1492b42e8a26","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.5.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.2","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.2_1716310683951_0.3462795714191651","host":"s3://npm-registry-packages"}},"1.7.3":{"name":"axios","version":"1.7.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"a1125f2faf702bc8e8f2104ec3a76fab40257d85","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.3.tgz","fileCount":86,"integrity":"sha512-Ar7ND9pU99eJ9GpoGQKhKf58GpUOgnzuaB7ueNQ5BMi0p+LZ5oaEnfF999fAArcTIBwXTCHAmGcHOZJaWPq9Nw==","signatures":[{"sig":"MEQCIH2CWlvE7WLm6xTAqj2P3T3rHYSDaW+bahRhcU0fqs7bAiBj6X1XbZGfroVnmleBD4LjX7N8geL/PXquGRa6TA8TIg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2116388},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"c6cce43cd94489f655f4488c5a50ecaf781c94f2","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.7.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.4","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.3_1722528973654_0.22463972259675202","host":"s3://npm-registry-packages"}},"1.7.4":{"name":"axios","version":"1.7.4","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.4","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"4c8ded1b43683c8dd362973c393f3ede24052aa2","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.4.tgz","fileCount":86,"integrity":"sha512-DukmaFRnY6AzAALSH4J2M3k6PkaC+MfaAGdEERRWcC9q3/TWQwLpHR8ZRLKTdQ3aBDL64EdluRDjJqKw+BPZEw==","signatures":[{"sig":"MEUCIQDpsadVnjBgvDIQWLvyALNjereTU8Fx6XLrz7KoxWsb7QIgFVMh9sbYgqHTIXa0sQnIXmy2NJwitlnmelfGO2UnRsg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2117448},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"abd24a7367726616e60dfc04cb394b4be37cf597","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.7.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.4","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.4_1723577590964_0.3314229024833222","host":"s3://npm-registry-packages"}},"1.7.5":{"name":"axios","version":"1.7.5","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.5","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"21eed340eb5daf47d29b6e002424b3e88c8c54b1","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.5.tgz","fileCount":86,"integrity":"sha512-fZu86yCo+svH3uqJ/yTdQ0QHpQu5oL+/QE+QPSv6BZSkDAoky9vytxp7u5qk83OJFS3kEBcesWni9WTZAv3tSw==","signatures":[{"sig":"MEQCIBuZiYxHkzTQVkc4CmKHJ3kkN6eTuVk3QMCfbAq0ZuLHAiBbsk8misnumsDlgFF7Utn8tbiiDWu+d1JJ1qAXhXrflw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2124343},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"59cd6b0dece4050b190717a7c5cdf77906ce2104","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.7.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.4","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.5_1724419956850_0.5778728818921084","host":"s3://npm-registry-packages"}},"1.7.6":{"name":"axios","version":"1.7.6","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.6","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"34f338182f6802fd3824a6511d6ddf99dd5ae0b5","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.6.tgz","fileCount":86,"integrity":"sha512-Ekur6XDwhnJ5RgOCaxFnXyqlPALI3rVeukZMwOdfghW7/wGz784BYKiQq+QD8NPcr91KRo30KfHOchyijwWw7g==","signatures":[{"sig":"MEUCIDpISkq+ceWfY2VWWlQEogr1ODc4qXKlnyJHWcFQztmiAiEA6ikMfzxvgiUbKoIAqVolLOrhmFKD7O4Wgle6lZGZyc8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2133026},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"d584fcfa62ba5217baf2be0748b7c5eda6da16ad","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.7.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.4","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.6_1725047809378_0.8817547216126573","host":"s3://npm-registry-packages"}},"1.7.7":{"name":"axios","version":"1.7.7","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.7","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"2f554296f9892a72ac8d8e4c5b79c14a91d0a47f","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.7.tgz","fileCount":86,"integrity":"sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==","signatures":[{"sig":"MEUCIBesf1VS7HIX3EWqPvh1xsuGYdkA51FVuXcFSJ8yQNeWAiEA7uGXS0z1muoi0di1tzA5084qhW1e15f/Wa/O0Il9NHg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.7","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2141088},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"5b8a826771b77ab30081d033fdba9ef3b90e439a","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.7.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.4","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.7_1725141728625_0.14127286155042196","host":"s3://npm-registry-packages"}},"0.29.0":{"name":"axios","version":"0.29.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.29.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"5eed1a0bc4c0ffe060624eb7900aff66b7881eeb","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.29.0.tgz","fileCount":70,"integrity":"sha512-Kjsq1xisgO5DjjNQwZFsy0gpcU1P2j36dZeQDXVhpIU26GVgkDUnROaHLSuluhMqtDE7aKA2hbKXG5yu5DN8Tg==","signatures":[{"sig":"MEYCIQCjkFpz8IC3nXE/Z1sZiwBi/qSiXQTOBV0rfBaq0w2hkAIhAPHdzzJ9xSp29lVXF2wTww0cEzkDcTuzFAi9xURU+/Z0","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":864467},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"gitHead":"7750b8c30b43a28737b496588e818d1f4e7b6abc","scripts":{"fix":"eslint --fix lib/**/*.js","test":"node bin/ssl_hotfix.js grunt test && node bin/ssl_hotfix.js dtslint --localTs node_modules/typescript/lib","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"9.6.7","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"18.17.1","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","grunt-shell":"^3.0.1","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","@rollup/plugin-json":"^4.1.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","@rollup/plugin-babel":"^5.3.0","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.29.0_1732194489519_0.23317253234166868","host":"s3://npm-registry-packages"}},"1.7.8":{"name":"axios","version":"1.7.8","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.8","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"1997b1496b394c21953e68c14aaa51b7b5de3d6e","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.8.tgz","fileCount":86,"integrity":"sha512-Uu0wb7KNqK2t5K+YQyVCLM76prD5sRFjKHbJYCP1J7JFGEQ6nN7HWn9+04LAeiJ3ji54lgS/gZCH1oxyrf1SPw==","signatures":[{"sig":"MEQCIEbaIO2efTLvZx9xIl/cuZ8aswhV1YwMjHtWGKFgPqo0AiAPhFueaYpI7Y9ClC3s/aYKWrcAy5An+pBBohEZDQIvnA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.8","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2114636},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"415ca9440195586dcd2149aa6f1e99f0ff6957c2","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.5","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.8_1732569238211_0.41912940157578715","host":"s3://npm-registry-packages"}},"1.7.9":{"name":"axios","version":"1.7.9","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.7.9","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"d7d071380c132a24accda1b2cfc1535b79ec650a","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.7.9.tgz","fileCount":86,"integrity":"sha512-LhLcE7Hbiryz8oMDdDptSrWowmB4Bl6RCt6sIJKpRB4XtVf0iEgewX3au/pJqm+Py1kCASkb/FFKjxQaLtxJvw==","signatures":[{"sig":"MEUCIQDrQISggShxuxZRP3Jdm+AgIS9wLRp+GdvpfeSrYlB7AQIgYlnma23bNLD1Y+ZAoH8rqe7pePOUEg/UrDG3veD1Dbw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.7.9","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2131753},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"b2cb45d5a533a5465c99559b16987e4d5fc08cbc","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.5","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.7.9_1733297896624_0.15432504896334187","host":"s3://npm-registry-packages"}},"1.8.0":{"name":"axios","version":"1.8.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.8.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"f68607ed4caf0f741ef084949ebb6f3d973c6837","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.8.0.tgz","fileCount":85,"integrity":"sha512-AS3x1klSQ4VeoeAaOyITVjomjITxIRgpKVgAXhE8QFJiNiYliuU+cW0p7XpqvlwNKmiwE57aNEyhPtsfAxERqg==","signatures":[{"sig":"MEUCIQDxK5vFqVAR5dQVPN84242fydit5fIJ9ZFEpU120532XwIgcVvFacUYD82RBWev3DqPihXEVtKlvHGfpoHUz3wNl70=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.8.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2149568},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"cceb7b1e154fbf294135c93d3f91921643bbe49f","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.7","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.8.0_1740549674108_0.915523516966285","host":"s3://npm-registry-packages-npm-production"}},"1.8.1":{"name":"axios","version":"1.8.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.8.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"7c118d2146e9ebac512b7d1128771cdd738d11e3","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.8.1.tgz","fileCount":85,"integrity":"sha512-NN+fvwH/kV01dYUQ3PTOZns4LWtWhOFCAhQ/pHb88WQ1hNe5V/dvFwc4VJcDL11LT9xSX0QtsR8sWUuyOuOq7g==","signatures":[{"sig":"MEUCIDkvam099ssJ6Oh6ps/CMKCn1GSuruMmlzxbKHYjFoZoAiEApw8BJfQcOH33lS+ZaitMOZb4EqIs9Sm4GiquJMkSCHY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.8.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2140813},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"2e64afdff5c41e38284a6fb8312f2745072513a1","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.6","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.8.1_1740560819953_0.32855138334077494","host":"s3://npm-registry-packages-npm-production"}},"1.8.2":{"name":"axios","version":"1.8.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.8.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"fabe06e241dfe83071d4edfbcaa7b1c3a40f7979","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.8.2.tgz","fileCount":85,"integrity":"sha512-ls4GYBm5aig9vWx8AWDSGLpnpDQRtWAfrjU+EuytuODrFBkqesN2RkOQCBzrA1RQNHw1SmRMSDDDSwzNAYQ6Rg==","signatures":[{"sig":"MEQCIHrL+Pa8riWC7CnG/rmSUbn4hK/M3gxvtlTyxcbuBDTaAiBVeo6InOY1DoLsOK6SVX6trqjKyR9ejAXaGg/X5SnMmQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.8.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2140651},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"a9f7689b0c4b6d68c7f587c3aa376860da509d94","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.7","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.8.2_1741333271451_0.23522935394946654","host":"s3://npm-registry-packages-npm-production"}},"1.8.3":{"name":"axios","version":"1.8.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.8.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"9ebccd71c98651d547162a018a1a95a4b4ed4de8","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.8.3.tgz","fileCount":85,"integrity":"sha512-iP4DebzoNlP/YN2dpwCgb8zoCmhtkajzS48JvwmkSkXvPI3DHc7m+XYL5tGnSlJtR6nImXZmdCuN5aP8dh1d8A==","signatures":[{"sig":"MEQCIHz0Xc3lNUPqZst93j7x9+dEbvgZSdvnJYVWpmhVO/DNAiBHsaf3fZPbTZ7z8kCrA1wSn1f3QQmQONBydiHl7JS3dg==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.8.3","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2142312},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"39ec206483a89921732bdc8a5be67e350bfc23f0","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.7","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.8.3_1741764243980_0.49233589286184753","host":"s3://npm-registry-packages-npm-production"}},"1.8.4":{"name":"axios","version":"1.8.4","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.8.4","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/yasuf","name":"Yasu Flores"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"78990bb4bc63d2cae072952d374835950a82f447","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.8.4.tgz","fileCount":85,"integrity":"sha512-eBSYY4Y68NNlHbHBMdeDmKNtDgXWhQsJcGqzO3iLUM0GraQFSS9cVgPX5I9b3lbdFKyYoAEGAZF1DwhTaljNAw==","signatures":[{"sig":"MEUCIQDBrAHF/J/CrYGFgxsH1lF3ahQHuJRPW/pzzF7C3UcBkQIgZ8lItbWa0l/KaER276nk9cTLRUMwmelqiI8JxrjYWts=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.8.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2142875},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"9f6f97bcfb7c510103dfcb05641ae8e8f5c08bcc","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.7","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.8.4_1742412467488_0.2521665293944422","host":"s3://npm-registry-packages-npm-production"}},"0.30.0":{"name":"axios","version":"0.30.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.30.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"026ae2c0ae6ac35d564056690683fb77c991d0d3","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.30.0.tgz","fileCount":70,"integrity":"sha512-Z4F3LjCgfjZz8BMYalWdMgAQUnEtKDmpwNHjh/C8pQZWde32TF64cqnSeyL3xD/aTIASRU30RHTNzRiV/NpGMg==","signatures":[{"sig":"MEUCIEEeL44IrAymHjdxYqwxAyrSeVAGRabRVsriMk9gYI3cAiEA3i5LULyHki5rnJQakRZ8FZ5q+3nL9r28MlEq8mWhMIc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":869071},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"gitHead":"6e922e497616d8908616a9da0380f81d0244ef4b","scripts":{"fix":"eslint --fix lib/**/*.js","test":"node bin/ssl_hotfix.js grunt test && node bin/ssl_hotfix.js dtslint --localTs node_modules/typescript/lib","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"11.0.0","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"22.12.0","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","grunt-shell":"^3.0.1","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","@rollup/plugin-json":"^4.1.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","@rollup/plugin-babel":"^5.3.0","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.30.0_1743011729697_0.986217634199297","host":"s3://npm-registry-packages-npm-production"}},"1.9.0":{"name":"axios","version":"1.9.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.9.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"25534e3b72b54540077d33046f77e3b8d7081901","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.9.0.tgz","fileCount":85,"integrity":"sha512-re4CqKTJaURpzbLHtIi6XpDv20/CnpXOtjRY5/CU32L8gU8ek9UIivcfvSWvmKEngmVbrUtPpdDwWDWL7DNHvg==","signatures":[{"sig":"MEUCIEurJnFRCxeuO06GPHds3I6ZgaTB3KvTzplq8EQKJ766AiEApY+WbfeXSD1mxXQQ1QGIUm7CkdMAII8AbkA97BUGbpY=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.9.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2155396},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"cdcfd214c169a1acba8e267ab8e77ff4dfec3105","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.9.0_1745525939455_0.48780450728814495","host":"s3://npm-registry-packages-npm-production"}},"1.10.0":{"name":"axios","version":"1.10.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.10.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/yasuf","name":"Yasu Flores"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"af320aee8632eaf2a400b6a1979fa75856f38d54","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.10.0.tgz","fileCount":85,"integrity":"sha512-/1xYAC4MP/HEG+3duIhFr4ZQXR4sQXOIe+o6sdqzeykGLx6Upp/1p8MHqhINOvGeP7xyNHe7tsiJByc4SSVUxw==","signatures":[{"sig":"MEQCIHSrI5U/IS4mwdb0pIbNTFfnuDFwcLzRSB57/k80XHP5AiBlMzH3LGs0SQj2pjH18Y3C5zF3YqeSegrFlrWbfHg7VA==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.10.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2165128},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"73a836dae75f06055c24561d83cf4ca1c43e2854","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.0","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.10.0_1749903111116_0.4523573246940831","host":"s3://npm-registry-packages-npm-production"}},"1.11.0":{"name":"axios","version":"1.11.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.11.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/carpben","name":"Ben Carp"},{"url":"https://github.com/yasuf","name":"Yasu Flores"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"c2ec219e35e414c025b2095e8b8280278478fdb6","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.11.0.tgz","fileCount":85,"integrity":"sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==","signatures":[{"sig":"MEUCIQCrxdeDdUsAqkaeiMl6leDdyhVYgMcyGwRvH1jza45NxQIgVGnbLlst1GD3F1zXBsbm0hymq7lLYTrVYcfQdREK0b4=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.11.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2177355},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"b76c4ac6f871141dd011a21f3b7ca4e66bfc33ae","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add dist && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version && git add ./dist && git add ./package-lock.json","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","gzip-size":"^7.0.0","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.11.0_1753250716303_0.8571908010677463","host":"s3://npm-registry-packages-npm-production"}},"0.30.1":{"name":"axios","version":"0.30.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.30.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"7ab803b877eca707ea5f4de55ea0358fe26898e0","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.30.1.tgz","fileCount":70,"integrity":"sha512-2XabsR1u0/B6OoKy57/xJmPkQiUvdoV93oW4ww+Xjee7C2er/O5U77lvqycDkT2VQDtfjYcjw8ZV8GDaoqwjHQ==","signatures":[{"sig":"MEYCIQCnfPgMq7NQr6ujSE0Weg1X/bVTsufGEeJasdB/bBIvkQIhAOevW9zcioCOnecsEiq+OfZv2z1qA8FgrAmr1vMS2jMk","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":869150},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"gitHead":"25ab0de0132011139de2f87de641c5a29621baf5","scripts":{"fix":"eslint --fix lib/**/*.js","test":"node bin/ssl_hotfix.js grunt test && node bin/ssl_hotfix.js dtslint --localTs node_modules/typescript/lib","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","grunt-shell":"^3.0.1","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","@rollup/plugin-json":"^4.1.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","@rollup/plugin-babel":"^5.3.0","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.30.1_1754331661545_0.39888221447636196","host":"s3://npm-registry-packages-npm-production"}},"1.12.0":{"name":"axios","version":"1.12.0","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.12.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/yasuf","name":"Yasu Flores"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"11248459be05a5ee493485628fa0e4323d0abfc3","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.12.0.tgz","fileCount":86,"integrity":"sha512-oXTDccv8PcfjZmPGlWsPSwtOJCZ/b6W5jAMCNcfwJbCzDckwG0jrYJFaWH1yvivfCXjVzV/SPDEhMB3Q+DSurg==","signatures":[{"sig":"MEUCIHt0oQy6xRmXJerroRMFGepryL6H/70EXGeXLmQriXQVAiEAsr8HUfnq3NO9oJiaEHJd/7khqR11mzEL3muLVQCt+Z0=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.12.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2237771},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"0d8ad6e1de0f5339e02bc262d6f0df4936974120","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add ./package-lock.json"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.12.0_1757619193154_0.12087786355275609","host":"s3://npm-registry-packages-npm-production"}},"1.12.1":{"name":"axios","version":"1.12.1","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.12.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/yasuf","name":"Yasu Flores"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"0747b39c5b615f81f93f2c138e6d82a71426937f","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.12.1.tgz","fileCount":86,"integrity":"sha512-Kn4kbSXpkFHCGE6rBFNwIv0GQs4AvDT80jlveJDKFxjbTYMUeB4QtsdPCv6H8Cm19Je7IU6VFtRl2zWZI0rudQ==","signatures":[{"sig":"MEQCIBVSglgk1tGCZ7HIXu8I270nWpyUSmdZlHAcJsCGKeHwAiA45dhott1gYcXFkAiQTJUdXPuLW6PoNoxAS1/a+jxNqQ==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.12.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2238457},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"3cac78c2de2d1d1af0c1b4753feff16c075f01d1","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:eslint && npm run test:mocha && npm run test:karma && npm run test:dtslint && npm run test:exports","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"gulp version","test:karma":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: karma start karma.conf.cjs --single-run","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add ./package-lock.json"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.12.1_1757686773862_0.2627384325254112","host":"s3://npm-registry-packages-npm-production"}},"1.12.2":{"name":"axios","version":"1.12.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.12.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/yasuf","name":"Yasu Flores"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"6c307390136cf7a2278d09cec63b136dfc6e6da7","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.12.2.tgz","fileCount":86,"integrity":"sha512-vMJzPewAlRyOgxV2dU0Cuz2O8zzzx9VYtbJOaBgXFeLc4IV/Eg50n4LowmehOOR61S8ZMpc2K5Sa7g6A4jfkUw==","signatures":[{"sig":"MEUCIQDVoIuz3aIHFL1YbjWrtTi0kAWEQF+KpoYinc9oQQtjXgIgavSvTefhYj/IQeozIO8o4WJlIpMVRIfpuOVqdIyvKfU=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.12.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2241796},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"e5a33366d75b65f88052b230b103731eb7dcb793","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:node && npm run test:browser && npm run test:package","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","test:node":"npm run test:mocha","preversion":"gulp version","test:karma":"node ./bin/run-karma-tests.js","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:browser":"npm run test:karma","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","test:package":"npm run test:eslint && npm run test:dtslint && npm run test:exports","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add ./package-lock.json"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.12.2_1757854767135_0.6311465553016036","host":"s3://npm-registry-packages-npm-production"}},"0.30.2":{"name":"axios","version":"0.30.2","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.30.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"256d3a8ee765cc27188d08b8b545a5f5a0c77dad","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.30.2.tgz","fileCount":72,"integrity":"sha512-0pE4RQ4UQi1jKY6p7u6i1Tkzqmu+d+/tHS7Q7rKunWLB9WyilBTpHHpXzPNMDj5hTbK0B0PTLSz07yqMBiF6xg==","signatures":[{"sig":"MEUCIQDne6b90g9s8V4BSkJff3ImkOTTJECv94cXrYylpjps1gIgKZgao5s8DLiOS6XCnvcviA3b2pikd6mBiqGV11DTpwg=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":872037},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"gitHead":"2fcb4ec5a11710ac26f9f89cb7d46dd51a1cf013","scripts":{"fix":"eslint --fix lib/**/*.js","test":"node bin/ssl_hotfix.js grunt test && node bin/ssl_hotfix.js dtslint --localTs node_modules/typescript/lib","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"^4.2.1","express":"^4.18.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","grunt-shell":"^3.0.1","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","@rollup/plugin-json":"^4.1.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","@rollup/plugin-babel":"^5.3.0","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.30.2_1758968940897_0.374419261986346","host":"s3://npm-registry-packages-npm-production"}},"1.13.0":{"name":"axios","version":"1.13.0","keywords":["xhr","http","ajax","promise","node","browser","fetch","rest","api","client"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.13.0","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"ead6f495f41f9c8869dcf7b0f24f5a4ab89707f0","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.0.tgz","fileCount":86,"integrity":"sha512-zt40Pz4zcRXra9CVV31KeyofwiNvAbJ5B6YPz9pMJ+yOSLikvPT4Yi5LjfgjRa9CawVYBaD1JQzIVcIvBejKeA==","signatures":[{"sig":"MEUCIEAMiPzK7/jxdxaAS829zVsarEMsEvoP1JuKXgoeHyKHAiEAsCL/VwChXNDMhUdz6AlFtGHlTMm+J1SVy5Ut60jIGxE=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.13.0","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2291032},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"9ead04d8abbcd53718dbc31b1250ea74300921c8","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:node && npm run test:browser && npm run test:package","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","test:node":"npm run test:mocha","preversion":"gulp version","test:karma":"node ./bin/run-karma-tests.js","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:browser":"npm run test:karma","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","test:package":"npm run test:eslint && npm run test:dtslint && npm run test:exports","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add ./package-lock.json"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","selfsigned":"^3.0.1","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.13.0_1761581294150_0.20362148859737905","host":"s3://npm-registry-packages-npm-production"}},"1.13.1":{"name":"axios","version":"1.13.1","keywords":["xhr","http","ajax","promise","node","browser","fetch","rest","api","client"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.13.1","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"45b62dc8fe04e0e92274e08b98e910ba3d7963a7","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.1.tgz","fileCount":86,"integrity":"sha512-hU4EGxxt+j7TQijx1oYdAjw4xuIp1wRQSsbMFwSthCWeBQur1eF+qJ5iQ5sN3Tw8YRzQNKb8jszgBdMDVqwJcw==","signatures":[{"sig":"MEUCIQDrbddUPOGLEOdB4coF8OnXx99qyCsc5m/4ds80d9Yx5QIgWNDjuMc+boPo4fKqqrEUpevCPlyYVHUuO6DxXSPTues=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.13.1","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2291796},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"1ef8e7218b085ac28b675b07349c6d7906a7b6ac","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:node && npm run test:browser && npm run test:package","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","test:node":"npm run test:mocha","preversion":"gulp version","test:karma":"node ./bin/run-karma-tests.js","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:browser":"npm run test:karma","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","test:package":"npm run test:eslint && npm run test:dtslint && npm run test:exports","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add ./package-lock.json"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","selfsigned":"^3.0.1","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.13.1_1761677732306_0.6176453584204153","host":"s3://npm-registry-packages-npm-production"}},"1.13.2":{"name":"axios","version":"1.13.2","keywords":["xhr","http","ajax","promise","node","browser","fetch","rest","api","client"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.13.2","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"9ada120b7b5ab24509553ec3e40123521117f687","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.2.tgz","fileCount":86,"integrity":"sha512-VPk9ebNqPcy5lRGuSlKx752IlDatOjT9paPlm8A7yOuW2Fbvp4X3JznJtT4f0GzGLLiWE9W8onz51SqLYwzGaA==","signatures":[{"sig":"MEQCIH6Bd6YCa2rTLtvAbIRKtn+BHLCiKisri1K3weDRW1u0AiBjUMcNFpFQMgaiU7rjvPrdlB7DToPObfDA3Sex0hqacw==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.13.2","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2292298},"main":"index.js","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"08b84b52d5835d0c7b81049c365c3d271ade8bff","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:node && npm run test:browser && npm run test:package","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","test:node":"npm run test:mocha","preversion":"gulp version","test:karma":"node ./bin/run-karma-tests.js","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:browser":"npm run test:karma","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","test:package":"npm run test:eslint && npm run test:dtslint && npm run test:exports","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add ./package-lock.json"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.8.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"18.20.8","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","selfsigned":"^3.0.1","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.13.2_1762286479831_0.33301318226730037","host":"s3://npm-registry-packages-npm-production"}},"1.13.3":{"name":"axios","version":"1.13.3","keywords":["xhr","http","ajax","promise","node","browser","fetch","rest","api","client"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.13.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"c8":{"all":true,"exclude":["test","sandbox"],"include":["lib/**/*.js","lib/**/*.ts"],"reporter":["text","lcov","html"],"report-dir":"./coverage"},"dist":{"shasum":"f123e77356630a22b0163920662556944f2be1a1","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.3.tgz","fileCount":86,"integrity":"sha512-ERT8kdX7DZjtUm7IitEyV7InTHAF42iJuMArIiDIV5YtPanJkgw4hw5Dyg9fh0mihdWNn1GKaeIWErfe56UQ1g==","signatures":[{"sig":"MEUCIEBhIenHjNPQ0jE1IaB2rRRWkzr/+Tutaq4GF5qYcSNlAiEAzJxnHlAYORYdpwpZHOnsL/oCu1icn5z5ByQPvInPdhw=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":2333939},"main":"./dist/node/axios.cjs","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","module":"./index.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"bun":{"default":"./index.js","require":"./dist/node/axios.cjs"},"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"ab06109b40e129e43096f9c75aaa21bc74ef9fc8","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:node && npm run test:browser && npm run test:package","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","test:node":"npm run test:mocha","preversion":"gulp version","test:karma":"node ./bin/run-karma-tests.js","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:browser":"npm run test:karma","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","test:package":"npm run test:eslint && npm run test:dtslint && npm run test:exports","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","test:node:coverage":"c8 npm run test:mocha","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add ./package-lock.json"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"10.9.4","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"22.22.0","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","selfsigned":"^3.0.1","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.13.3_1769350898618_0.7959971942578778","host":"s3://npm-registry-packages-npm-production"}},"1.13.4":{"name":"axios","version":"1.13.4","keywords":["xhr","http","ajax","promise","node","browser","fetch","rest","api","client"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.13.4","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"c8":{"all":true,"exclude":["test","sandbox"],"include":["lib/**/*.js","lib/**/*.ts"],"reporter":["text","lcov","html"],"report-dir":"./coverage"},"dist":{"shasum":"15d109a4817fb82f73aea910d41a2c85606076bc","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.4.tgz","fileCount":86,"integrity":"sha512-1wVkUaAO6WyaYtCkcYCOx12ZgpGf9Zif+qXa4n+oYzK558YryKqiL6UWwd5DqiH3VRW0GYhTZQ/vlgJrCoNQlg==","signatures":[{"sig":"MEUCIEIYxyuGUGJVV+bTMoTcnvZF43g0RNJEx4Oviqsm6VUfAiEA7jjblo3ghO16EtrCoNTkqXhLHTYiGwFMo7kQhpjSRmc=","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.13.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2333264},"main":"./dist/node/axios.cjs","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","module":"./index.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"bun":{"default":"./index.js","require":"./dist/node/axios.cjs"},"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"9336cf9a3393790ec8ca91fe3862e83fcdbe6b9d","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:node && npm run test:browser && npm run test:package","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","release":"release-it","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","test:node":"npm run test:mocha","preversion":"gulp version","test:karma":"node ./bin/run-karma-tests.js","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","postpublish":"git push && git push --tags","release:dry":"release-it --dry-run --no-npm","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","release:beta":"release-it --preRelease=beta","release:info":"release-it --release-version","test:browser":"npm run test:karma","test:dtslint":"dtslint --localTs node_modules/typescript/lib","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","test:package":"npm run test:eslint && npm run test:dtslint && npm run test:exports","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","release:no-npm":"release-it --no-npm","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","test:node:coverage":"c8 npm run test:mocha","release:beta:no-npm":"release-it --preRelease=beta --no-npm","release:changelog:fix":"node ./bin/injectContributorsList.js && git add CHANGELOG.md"},"typings":"./index.d.ts","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:9061ef30-3132-49f4-b28c-9338d192a1a9"}},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"release-it":{"git":{"tag":true,"push":true,"commit":true,"commitMessage":"chore(release): v${version}","requireCommits":false,"requireCleanWorkingDir":false},"npm":{"publish":false,"ignoreVersion":false},"hooks":{"after:bump":"gulp version --bump ${version} && npm run build && npm run test:build:version","before:init":"npm test","after:release":"echo Successfully released ${name} v${version} to ${repo.repository}.","before:release":"npm run release:changelog:fix && git add ./package-lock.json"},"github":{"draft":true,"release":true},"plugins":{"@release-it/conventional-changelog":{"header":"# Changelog","infile":"CHANGELOG.md","preset":"angular"}}},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"11.6.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"24.13.0","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.6"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","gulp":"^4.0.2","chalk":"^5.3.0","husky":"^8.0.3","karma":"^6.3.17","mocha":"^10.3.0","sinon":"^4.5.0","eslint":"^8.56.0","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.1","dtslint":"^4.2.1","express":"^4.18.2","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.15","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.2","get-stream":"^3.0.0","handlebars":"^4.7.8","release-it":"^15.11.0","selfsigned":"^3.0.1","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.23.9","body-parser":"^1.20.2","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.4.0","@commitlint/cli":"^17.8.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.23.9","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.0","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.5","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^17.8.1","@release-it/conventional-changelog":"^5.1.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.13.4_1769537918358_0.989525897381575","host":"s3://npm-registry-packages-npm-production"}},"1.13.5":{"name":"axios","version":"1.13.5","keywords":["xhr","http","ajax","promise","node","browser","fetch","rest","api","client"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@1.13.5","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"contributors":[{"url":"https://github.com/mzabriskie","name":"Matt Zabriskie"},{"url":"https://github.com/DigitalBrainJS","name":"Dmitriy Mozgovoy"},{"url":"https://github.com/nickuraltsev","name":"Nick Uraltsev"},{"url":"https://github.com/jasonsaayman","name":"Jay"},{"url":"https://github.com/emilyemorehouse","name":"Emily Morehouse"},{"url":"https://github.com/rubennorte","name":"Rubén Norte"},{"url":"https://github.com/JustinBeckwith","name":"Justin Beckwith"},{"url":"https://github.com/codeclown","name":"Martti Laine"},{"url":"https://github.com/chinesedfan","name":"Xianming Zhong"},{"url":"https://github.com/remcohaszing","name":"Remco Haszing"},{"url":"https://github.com/WillianAgostini","name":"Willian Agostini"},{"url":"https://github.com/RikkiGibson","name":"Rikki Gibson"},{"url":"https://github.com/carpben","name":"Ben Carp"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"c8":{"all":true,"exclude":["test","sandbox"],"include":["lib/**/*.js","lib/**/*.ts"],"reporter":["text","lcov","html"],"report-dir":"./coverage"},"dist":{"shasum":"5e464688fa127e11a660a2c49441c009f6567a43","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.5.tgz","fileCount":86,"integrity":"sha512-cz4ur7Vb0xS4/KUN0tPWe44eqxrIu31me+fbang3ijiNscE129POzipJJA6zniq2C/Z6sJCjMimjS8Lc/GAs8Q==","signatures":[{"sig":"MEYCIQDAbFt7MDOz0wkD2YtGbh34K/KOY/9T/Ldv0qU4kglFOwIhALCVtawi9dW0veZ5/eVJQlnLLLKKKLOTIyUNv8fAp96k","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"attestations":{"url":"/-/npm/v1/attestations/axios@1.13.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"unpackedSize":2338733},"main":"./dist/node/axios.cjs","type":"module","types":"index.d.ts","unpkg":"dist/axios.min.js","module":"./index.js","browser":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"exports":{".":{"bun":{"default":"./index.js","require":"./dist/node/axios.cjs"},"types":{"default":"./index.d.ts","require":"./index.d.cts"},"browser":{"default":"./index.js","require":"./dist/browser/axios.cjs"},"default":{"default":"./index.js","require":"./dist/node/axios.cjs"},"react-native":{"default":"./dist/esm/axios.js","require":"./dist/browser/axios.cjs"}},"./unsafe/*":"./lib/*","./package.json":"./package.json","./unsafe/utils.js":"./lib/utils.js","./dist/node/axios.cjs":"./dist/node/axios.cjs","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./lib/adapters/http.js":"./lib/adapters/http.js","./unsafe/core/settle.js":"./lib/core/settle.js","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js"},"gitHead":"29f75425f0c9f73021f5eedc869c176e30e05fe7","scripts":{"fix":"eslint --fix lib/**/*.js","test":"npm run test:node && npm run test:browser && npm run test:package","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","start":"node ./sandbox/server.js","prepare":"husky install && npm run prepare:hooks","version":"npm run build && git add package.json","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","test:node":"npm run test:mocha","preversion":"gulp version","test:karma":"node ./bin/run-karma-tests.js","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:browser":"npm run test:karma","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","test:package":"npm run test:eslint && npm run test:exports","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\"","prepublishOnly":"npm run test:build:version","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","test:node:coverage":"c8 npm run test:mocha"},"typings":"./index.d.ts","_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:9061ef30-3132-49f4-b28c-9338d192a1a9"}},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"11.6.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"sideEffects":false,"_nodeVersion":"24.13.0","dependencies":{"form-data":"^4.0.5","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.11"},"react-native":{"./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"_hasShrinkwrap":false,"devDependencies":{"c8":"^10.1.3","gulp":"^4.0.2","chalk":"^5.6.2","husky":"^8.0.3","karma":"^6.4.4","mocha":"^10.8.2","sinon":"^4.5.0","eslint":"^8.57.1","multer":"^1.4.4","pacote":"^20.0.0","rollup":"^2.79.2","express":"^4.22.1","dev-null":"^0.1.1","fs-extra":"^10.1.0","memoizee":"^0.4.17","minimist":"^1.2.8","coveralls":"^3.1.1","cross-env":"^7.0.3","formidable":"^2.1.5","get-stream":"^3.0.0","handlebars":"^4.7.8","selfsigned":"^3.0.1","tar-stream":"^3.1.7","typescript":"^4.9.5","@babel/core":"^7.28.6","body-parser":"^1.20.4","es6-promise":"^4.2.8","karma-sinon":"^1.0.5","jasmine-core":"^2.99.1","pretty-bytes":"^6.1.1","formdata-node":"^5.0.1","karma-jasmine":"^1.1.2","auto-changelog":"^2.5.0","@commitlint/cli":"^20.3.1","stream-throttle":"^0.1.3","@babel/preset-env":"^7.28.6","karma-jasmine-ajax":"^0.1.13","@rollup/plugin-json":"^4.1.0","@rollup/plugin-alias":"^5.1.1","@rollup/plugin-babel":"^5.3.1","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","string-replace-async":"^3.0.2","karma-chrome-launcher":"^3.2.0","karma-safari-launcher":"^1.0.0","karma-firefox-launcher":"^2.1.3","karma-sourcemap-loader":"^0.4.0","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.8","karma-rollup-preprocessor":"^7.0.8","rollup-plugin-bundle-size":"^1.0.3","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","rollup-plugin-auto-external":"^2.0.0","istanbul-instrumenter-loader":"^3.0.1","@commitlint/config-conventional":"^20.3.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_1.13.5_1770548713508_0.725939678088311","host":"s3://npm-registry-packages-npm-production"}},"0.30.3":{"name":"axios","version":"0.30.3","keywords":["xhr","http","ajax","promise","node"],"author":{"name":"Matt Zabriskie"},"license":"MIT","_id":"axios@0.30.3","maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"homepage":"https://axios-http.com","bugs":{"url":"https://github.com/axios/axios/issues"},"dist":{"shasum":"ab1be887a2d37dd9ebc219657704180faf2c4920","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-0.30.3.tgz","fileCount":72,"integrity":"sha512-5/tmEb6TmE/ax3mdXBc/Mi6YdPGxQsv+0p5YlciXWt3PHIn0VamqCXhRMtScnwY3lbgSXLneOuXAKUhgmSRpwg==","signatures":[{"sig":"MEQCIAlgqBb4dfMqTANslLk9rqaer/E4wKWxYPbHCOv8mPrDAiB85XCI2Nb+GXGNNvGLPzTJUySVsXrcSMKPjzcF0f804A==","keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U"}],"unpackedSize":874741},"main":"index.js","types":"index.d.ts","unpkg":"dist/axios.min.js","browser":{"./lib/adapters/http.js":"./lib/adapters/xhr.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js"},"gitHead":"f53bcf6c3747652c9d3811dc0bbcd3674e21567a","scripts":{"fix":"eslint --fix lib/**/*.js","test":"node bin/ssl_hotfix.js grunt test && node bin/ssl_hotfix.js dtslint --localTs node_modules/typescript/lib","build":"cross-env NODE_ENV=production grunt build","start":"node ./sandbox/server.js","examples":"node ./examples/server.js","coveralls":"cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js","preversion":"grunt version && npm test"},"typings":"./index.d.ts","_npmUser":{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"},"jsdelivr":"dist/axios.min.js","bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"repository":{"url":"git+https://github.com/axios/axios.git","type":"git"},"_npmVersion":"11.6.2","description":"Promise based HTTP client for the browser and node.js","directories":{},"_nodeVersion":"20.19.5","dependencies":{"form-data":"^4.0.4","proxy-from-env":"^1.1.0","follow-redirects":"^1.15.4"},"_hasShrinkwrap":false,"readmeFilename":"README.md","devDependencies":{"grunt":"^1.4.1","karma":"^6.3.17","mocha":"^8.2.1","sinon":"^4.5.0","multer":"^1.4.4","rollup":"^2.67.0","dtslint":"4.2.1","express":"^4.18.1","webpack":"^4.44.2","minimist":"^1.2.6","coveralls":"^3.1.1","cross-env":"^7.0.3","grunt-cli":"^1.4.3","formidable":"^2.0.1","typescript":"^4.6.3","body-parser":"^1.20.0","es6-promise":"^4.2.8","grunt-karma":"^4.0.2","grunt-shell":"^3.0.1","karma-sinon":"^1.0.5","grunt-banner":"^0.6.0","grunt-eslint":"^24.0.0","jasmine-core":"^2.4.1","grunt-webpack":"^5.0.0","karma-jasmine":"^1.1.1","karma-webpack":"^4.0.2","grunt-mocha-test":"^0.13.3","load-grunt-tasks":"^5.1.0","url-search-params":"^0.10.0","karma-jasmine-ajax":"^0.1.13","webpack-dev-server":"^3.11.0","@rollup/plugin-json":"^4.1.0","grunt-contrib-clean":"^2.0.0","grunt-contrib-watch":"^1.1.0","@rollup/plugin-babel":"^5.3.0","karma-sauce-launcher":"^4.3.6","rollup-plugin-terser":"^7.0.2","karma-chrome-launcher":"^3.1.1","karma-safari-launcher":"^1.0.0","terser-webpack-plugin":"^4.2.3","karma-firefox-launcher":"^2.1.2","karma-sourcemap-loader":"^0.3.8","@rollup/plugin-commonjs":"^15.1.0","abortcontroller-polyfill":"^1.7.3","@rollup/plugin-multi-entry":"^4.0.0","@rollup/plugin-node-resolve":"^9.0.0","istanbul-instrumenter-loader":"^3.0.1"},"_npmOperationalInternal":{"tmp":"tmp/axios_0.30.3_1771435159804_0.8846696520013606","host":"s3://npm-registry-packages-npm-production"}},"1.13.6":{"name":"axios","version":"1.13.6","description":"Promise based HTTP client for the browser and node.js","main":"./index.js","module":"./index.js","exports":{".":{"types":{"require":"./index.d.cts","default":"./index.d.ts"},"bun":{"require":"./dist/node/axios.cjs","default":"./index.js"},"react-native":{"require":"./dist/browser/axios.cjs","default":"./dist/esm/axios.js"},"browser":{"require":"./dist/browser/axios.cjs","default":"./index.js"},"default":{"require":"./dist/node/axios.cjs","default":"./index.js"}},"./lib/adapters/http.js":"./lib/adapters/http.js","./lib/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/*":"./lib/*","./unsafe/core/settle.js":"./lib/core/settle.js","./unsafe/core/buildFullPath.js":"./lib/core/buildFullPath.js","./unsafe/helpers/isAbsoluteURL.js":"./lib/helpers/isAbsoluteURL.js","./unsafe/helpers/buildURL.js":"./lib/helpers/buildURL.js","./unsafe/helpers/combineURLs.js":"./lib/helpers/combineURLs.js","./unsafe/adapters/http.js":"./lib/adapters/http.js","./unsafe/adapters/xhr.js":"./lib/adapters/xhr.js","./unsafe/utils.js":"./lib/utils.js","./package.json":"./package.json","./dist/browser/axios.cjs":"./dist/browser/axios.cjs","./dist/node/axios.cjs":"./dist/node/axios.cjs"},"type":"module","types":"index.d.ts","scripts":{"test":"npm run test:node && npm run test:browser && npm run test:package","test:node":"npm run test:mocha","test:node:coverage":"c8 npm run test:mocha","test:browser":"npm run test:karma","test:package":"npm run test:eslint && npm run test:exports","test:eslint":"node bin/ssl_hotfix.js eslint lib/**/*.js","test:mocha":"node bin/ssl_hotfix.js mocha test/unit/**/*.js --timeout 30000 --exit","test:exports":"node bin/ssl_hotfix.js mocha test/module/test.js --timeout 30000 --exit","test:karma":"node ./bin/run-karma-tests.js","test:karma:firefox":"node bin/ssl_hotfix.js cross-env LISTEN_ADDR=:: Browsers=Firefox karma start karma.conf.cjs --single-run","test:karma:server":"node bin/ssl_hotfix.js cross-env karma start karma.conf.cjs","test:build:version":"node ./bin/check-build-version.js","start":"node ./sandbox/server.js","preversion":"gulp version","version":"npm run build && git add package.json","prepublishOnly":"npm run test:build:version","build":"gulp clear && cross-env NODE_ENV=production rollup -c -m","examples":"node ./examples/server.js","fix":"eslint --fix lib/**/*.js","prepare":"husky install && npm run prepare:hooks","prepare:hooks":"npx husky set .husky/commit-msg \"npx commitlint --edit $1\""},"repository":{"type":"git","url":"git+https://github.com/axios/axios.git"},"keywords":["xhr","http","ajax","promise","node","browser","fetch","rest","api","client"],"author":{"name":"Matt Zabriskie"},"license":"MIT","bugs":{"url":"https://github.com/axios/axios/issues"},"homepage":"https://axios-http.com","devDependencies":{"@babel/core":"^7.28.6","@babel/preset-env":"^7.28.6","@commitlint/cli":"^20.3.1","@commitlint/config-conventional":"^20.3.1","@rollup/plugin-alias":"^5.1.1","@rollup/plugin-babel":"^6.1.0","@rollup/plugin-commonjs":"^15.1.0","@rollup/plugin-json":"^4.1.0","@rollup/plugin-multi-entry":"^4.1.0","@rollup/plugin-node-resolve":"^9.0.0","abortcontroller-polyfill":"^1.7.8","auto-changelog":"^2.5.0","body-parser":"^1.20.4","c8":"^10.1.3","chalk":"^5.6.2","coveralls":"^3.1.1","cross-env":"^7.0.3","dev-null":"^0.1.1","es6-promise":"^4.2.8","eslint":"^8.57.1","express":"^4.22.1","formdata-node":"^5.0.1","formidable":"^2.1.5","fs-extra":"^10.1.0","get-stream":"^3.0.0","gulp":"^4.0.2","handlebars":"^4.7.8","husky":"^8.0.3","istanbul-instrumenter-loader":"^3.0.1","jasmine-core":"^2.99.1","karma":"^6.4.4","karma-chrome-launcher":"^3.2.0","karma-firefox-launcher":"^2.1.3","karma-jasmine":"^1.1.2","karma-jasmine-ajax":"^0.1.13","karma-rollup-preprocessor":"^7.0.8","karma-safari-launcher":"^1.0.0","karma-sauce-launcher":"^4.3.6","karma-sinon":"^1.0.5","karma-sourcemap-loader":"^0.4.0","lint-staged":"^15.2.10","memoizee":"^0.4.17","minimist":"^1.2.8","mocha":"^10.8.2","multer":"^1.4.4","pacote":"^20.0.0","prettier":"^3.8.1","pretty-bytes":"^6.1.1","rollup":"^2.79.2","rollup-plugin-auto-external":"^2.0.0","rollup-plugin-bundle-size":"^1.0.3","rollup-plugin-terser":"^7.0.2","selfsigned":"^3.0.1","sinon":"^4.5.0","stream-throttle":"^0.1.3","string-replace-async":"^3.0.2","tar-stream":"^3.1.7","typescript":"^4.9.5"},"browser":{"./dist/node/axios.cjs":"./dist/browser/axios.cjs","./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"react-native":{"./dist/node/axios.cjs":"./dist/browser/axios.cjs","./lib/adapters/http.js":"./lib/helpers/null.js","./lib/platform/node/index.js":"./lib/platform/browser/index.js","./lib/platform/node/classes/FormData.js":"./lib/helpers/null.js"},"jsdelivr":"dist/axios.min.js","unpkg":"dist/axios.min.js","typings":"./index.d.ts","dependencies":{"follow-redirects":"^1.15.11","form-data":"^4.0.5","proxy-from-env":"^1.1.0"},"bundlesize":[{"path":"./dist/axios.min.js","threshold":"5kB"}],"contributors":[{"name":"Matt Zabriskie","url":"https://github.com/mzabriskie"},{"name":"Dmitriy Mozgovoy","url":"https://github.com/DigitalBrainJS"},{"name":"Nick Uraltsev","url":"https://github.com/nickuraltsev"},{"name":"Jay","url":"https://github.com/jasonsaayman"},{"name":"Emily Morehouse","url":"https://github.com/emilyemorehouse"},{"name":"Rubén Norte","url":"https://github.com/rubennorte"},{"name":"Justin Beckwith","url":"https://github.com/JustinBeckwith"},{"name":"Martti Laine","url":"https://github.com/codeclown"},{"name":"Xianming Zhong","url":"https://github.com/chinesedfan"},{"name":"Remco Haszing","url":"https://github.com/remcohaszing"},{"name":"Willian Agostini","url":"https://github.com/WillianAgostini"},{"name":"Rikki Gibson","url":"https://github.com/RikkiGibson"},{"name":"Ben Carp","url":"https://github.com/carpben"}],"sideEffects":false,"commitlint":{"rules":{"header-max-length":[2,"always",130]},"extends":["@commitlint/config-conventional"]},"lint-staged":{"*.{js,cjs,mjs,ts,json,md,yml,yaml}":"prettier --write"},"c8":{"all":true,"include":["lib/**/*.js","lib/**/*.ts"],"exclude":["test","sandbox"],"reporter":["text","lcov","html"],"report-dir":"./coverage"},"gitHead":"7108c8877f9dc05f7aba8beb2b9e522537f9a9a7","_id":"axios@1.13.6","_nodeVersion":"24.13.1","_npmVersion":"11.8.0","dist":{"integrity":"sha512-ChTCHMouEe2kn713WHbQGcuYrr6fXTBiu460OTwWrWob16g1bXn4vtz07Ope7ewMozJAnEquLk5lWQWtBig9DQ==","shasum":"c3f92da917dc209a15dd29936d20d5089b6b6c98","tarball":"https://mirrors.huaweicloud.com/repository/npm/axios/-/axios-1.13.6.tgz","fileCount":86,"unpackedSize":2423319,"attestations":{"url":"/-/npm/v1/attestations/axios@1.13.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCIHxVo3TxQKnlzZRXo0pBNjK/UVC5BCDfv/Kqx5D8dfTgAiAiZf3VMEJQ+y/9e7SgrFPRwicuN1YUZHh1kJqR1Ug7cA=="}]},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:9061ef30-3132-49f4-b28c-9338d192a1a9"}},"directories":{},"maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/axios_1.13.6_1772206551694_0.5821096617100103"},"_hasShrinkwrap":false}},"time":{"created":"2014-08-29T23:08:36.810Z","modified":"2026-02-27T15:35:52.392Z","0.1.0":"2014-08-29T23:08:36.810Z","0.2.0":"2014-09-12T20:06:33.167Z","0.2.1":"2014-09-12T22:57:28.872Z","0.2.2":"2014-09-15T03:30:45.994Z","0.3.0":"2014-09-16T18:20:18.668Z","0.3.1":"2014-09-17T00:31:29.538Z","0.4.0":"2014-10-05T23:55:03.069Z","0.4.1":"2014-10-15T18:19:42.549Z","0.4.2":"2014-12-11T07:14:52.563Z","0.5.0":"2015-01-23T10:15:47.657Z","0.5.1":"2015-03-10T20:47:18.932Z","0.5.2":"2015-03-13T23:14:22.809Z","0.5.3":"2015-04-08T03:01:17.936Z","0.5.4":"2015-04-08T18:49:41.745Z","0.6.0":"2015-09-21T20:20:20.241Z","0.7.0":"2015-09-29T06:36:55.850Z","0.8.0":"2015-12-11T19:09:50.663Z","0.8.1":"2015-12-15T03:44:16.229Z","0.9.0":"2016-01-18T18:19:24.356Z","0.9.1":"2016-01-24T22:19:01.689Z","0.10.0":"2016-04-21T04:52:22.553Z","0.11.0":"2016-04-27T04:19:52.831Z","0.11.1":"2016-05-17T15:59:30.342Z","0.12.0":"2016-06-01T05:22:58.397Z","0.13.0":"2016-07-13T19:42:43.558Z","0.13.1":"2016-07-16T17:13:24.859Z","0.14.0":"2016-08-27T18:30:22.182Z","0.15.0":"2016-10-11T04:40:41.633Z","0.15.1":"2016-10-15T06:39:23.761Z","0.15.2":"2016-10-18T01:33:20.989Z","0.15.3":"2016-11-27T21:59:11.250Z","0.16.0":"2017-04-01T02:31:09.040Z","0.16.1":"2017-04-08T18:51:59.217Z","0.16.2":"2017-06-03T19:29:23.765Z","0.17.0":"2017-10-21T18:01:30.232Z","0.17.1":"2017-11-11T23:24:40.635Z","0.18.0":"2018-02-19T23:28:54.151Z","0.19.0-beta.1":"2018-08-09T18:44:25.247Z","0.19.0":"2019-05-30T16:13:16.930Z","0.18.1":"2019-06-01T00:46:36.277Z","0.19.1":"2020-01-07T17:23:39.782Z","0.19.2":"2020-01-22T04:25:53.354Z","0.20.0-0":"2020-07-15T16:07:30.516Z","0.20.0":"2020-08-21T03:12:48.792Z","0.21.0":"2020-10-23T16:27:13.883Z","0.21.1":"2020-12-22T04:20:06.101Z","0.21.2":"2021-09-04T10:18:50.516Z","0.21.3":"2021-09-04T19:05:59.101Z","0.21.4":"2021-09-06T15:35:43.073Z","0.22.0":"2021-10-01T05:54:01.140Z","0.23.0":"2021-10-12T15:37:08.278Z","0.24.0":"2021-10-25T17:51:25.987Z","0.25.0":"2022-01-18T07:14:06.173Z","0.26.0":"2022-02-13T14:22:07.992Z","0.26.1":"2022-03-09T17:13:42.282Z","0.27.0":"2022-04-25T16:42:10.109Z","0.27.1":"2022-04-26T07:36:38.268Z","0.27.2":"2022-04-27T10:00:58.685Z","1.0.0-alpha.1":"2022-05-31T19:23:57.168Z","1.0.0":"2022-10-04T19:24:14.051Z","1.1.0":"2022-10-06T19:19:53.272Z","1.1.1":"2022-10-07T09:15:00.061Z","1.1.2":"2022-10-07T10:14:46.118Z","1.1.3":"2022-10-15T13:42:22.106Z","1.2.0-alpha.1":"2022-11-10T19:06:10.040Z","1.2.0":"2022-11-22T19:06:02.018Z","1.2.1":"2022-12-05T19:39:11.122Z","1.2.2":"2022-12-29T06:38:42.365Z","1.2.3":"2023-01-17T17:56:39.473Z","1.2.4":"2023-01-24T17:21:58.022Z","1.2.5":"2023-01-26T15:06:37.154Z","1.2.6":"2023-01-28T16:41:09.114Z","1.3.0":"2023-01-31T16:55:47.652Z","1.3.1":"2023-02-01T23:31:00.077Z","1.3.2":"2023-02-03T18:10:48.275Z","1.3.3":"2023-02-13T18:47:20.873Z","1.3.4":"2023-02-22T21:06:23.063Z","1.3.5":"2023-04-05T18:03:03.807Z","1.3.6":"2023-04-19T19:38:57.160Z","1.4.0":"2023-04-27T23:05:52.716Z","1.5.0":"2023-08-26T19:10:50.109Z","1.5.1":"2023-09-26T18:22:12.460Z","1.6.0":"2023-10-26T21:15:55.685Z","1.6.1":"2023-11-08T15:09:28.450Z","1.6.2":"2023-11-14T20:36:10.212Z","1.6.3":"2023-12-26T23:16:17.756Z","1.6.4":"2024-01-03T22:10:55.605Z","1.6.5":"2024-01-05T19:52:15.051Z","1.6.6":"2024-01-24T23:12:19.622Z","1.6.7":"2024-01-25T19:58:51.338Z","0.28.0":"2024-02-12T18:38:24.432Z","1.6.8":"2024-03-15T16:32:47.800Z","0.28.1":"2024-03-28T17:36:11.007Z","1.7.0-beta.0":"2024-04-28T19:50:54.466Z","1.7.0-beta.1":"2024-05-07T18:37:51.489Z","1.7.0-beta.2":"2024-05-19T18:01:23.901Z","1.7.0":"2024-05-19T20:25:03.615Z","1.7.1":"2024-05-20T13:32:52.757Z","1.7.2":"2024-05-21T16:58:04.163Z","1.7.3":"2024-08-01T16:16:13.901Z","1.7.4":"2024-08-13T19:33:11.369Z","1.7.5":"2024-08-23T13:32:37.145Z","1.7.6":"2024-08-30T19:56:49.611Z","1.7.7":"2024-08-31T22:02:08.862Z","0.29.0":"2024-11-21T13:08:09.760Z","1.7.8":"2024-11-25T21:13:58.456Z","1.7.9":"2024-12-04T07:38:16.833Z","1.8.0":"2025-02-26T06:01:14.385Z","1.8.1":"2025-02-26T09:07:00.236Z","1.8.2":"2025-03-07T07:41:11.719Z","1.8.3":"2025-03-12T07:24:04.212Z","1.8.4":"2025-03-19T19:27:47.752Z","0.30.0":"2025-03-26T17:55:30.023Z","1.9.0":"2025-04-24T20:18:59.701Z","1.10.0":"2025-06-14T12:11:51.341Z","1.11.0":"2025-07-23T06:05:16.520Z","0.30.1":"2025-08-04T18:21:01.791Z","1.12.0":"2025-09-11T19:33:13.459Z","1.12.1":"2025-09-12T14:19:34.109Z","1.12.2":"2025-09-14T12:59:27.346Z","0.30.2":"2025-09-27T10:29:01.127Z","1.13.0":"2025-10-27T16:08:14.422Z","1.13.1":"2025-10-28T18:55:32.544Z","1.13.2":"2025-11-04T20:01:20.058Z","1.13.3":"2026-01-25T14:21:38.842Z","1.13.4":"2026-01-27T18:18:38.613Z","1.13.5":"2026-02-08T11:05:13.696Z","0.30.3":"2026-02-18T17:19:20.081Z","1.13.6":"2026-02-27T15:35:51.983Z"},"bugs":{"url":"https://github.com/axios/axios/issues"},"author":{"name":"Matt Zabriskie"},"license":"MIT","homepage":"https://axios-http.com","keywords":["xhr","http","ajax","promise","node","browser","fetch","rest","api","client"],"repository":{"type":"git","url":"git+https://github.com/axios/axios.git"},"description":"Promise based HTTP client for the browser and node.js","contributors":[{"name":"Matt Zabriskie","url":"https://github.com/mzabriskie"},{"name":"Dmitriy Mozgovoy","url":"https://github.com/DigitalBrainJS"},{"name":"Nick Uraltsev","url":"https://github.com/nickuraltsev"},{"name":"Jay","url":"https://github.com/jasonsaayman"},{"name":"Emily Morehouse","url":"https://github.com/emilyemorehouse"},{"name":"Rubén Norte","url":"https://github.com/rubennorte"},{"name":"Justin Beckwith","url":"https://github.com/JustinBeckwith"},{"name":"Martti Laine","url":"https://github.com/codeclown"},{"name":"Xianming Zhong","url":"https://github.com/chinesedfan"},{"name":"Remco Haszing","url":"https://github.com/remcohaszing"},{"name":"Willian Agostini","url":"https://github.com/WillianAgostini"},{"name":"Rikki Gibson","url":"https://github.com/RikkiGibson"},{"name":"Ben Carp","url":"https://github.com/carpben"}],"maintainers":[{"name":"mzabriskie","email":"mzabriskie@gmail.com"},{"name":"nickuraltsev","email":"nick.uraltsev@gmail.com"},{"name":"emilyemorehouse","email":"emilyemorehouse@gmail.com"},{"name":"jasonsaayman","email":"jasonsaayman@gmail.com"}],"readme":"

\uD83E\uDD47 Gold sponsors

\"Principal

We’re bound by one common purpose: to give you the financial tools, resources and information you ne...

www.principal.com

\n
\"Buy

Buy real Instagram followers from Twicsy starting at only $2.97. Twicsy has been voted the best site...

twicsy.com

\n
\"Descope\"/

Hi, we're Descope! We are building something in the authentication space for app developers and...

Website | Docs | Community

\n
\"Route4Me\"/

Best Route Planning And Route Optimization Software

Explore | Free Trial | Contact

\n
\"Buzzoid

At Buzzoid, you can buy Instagram followers quickly, safely, and easily with just a few clicks. Rate...

buzzoid.com

\n
\"Poprey

Buy Instagram Likes

poprey.com

\n
\"Requestly\"/

A lightweight open-source API Development, Testing & Mocking platform

requestly.com

\n
\uD83D\uDC9C Become a sponsor\n \uD83D\uDC9C Become a sponsor\n
\n\n\n\n

\n\n
\n \"Axios\"
\n
\n\n

Promise based HTTP client for the browser and node.js

\n\n

\n Website •\n Documentation\n

\n\n
\n\n[![npm version](https://img.shields.io/npm/v/axios.svg?style=flat-square)](https://www.npmjs.org/package/axios)\n[![CDNJS](https://img.shields.io/cdnjs/v/axios.svg?style=flat-square)](https://cdnjs.com/libraries/axios)\n[![Build status](https://img.shields.io/github/actions/workflow/status/axios/axios/ci.yml?branch=v1.x&label=CI&logo=github&style=flat-square)](https://github.com/axios/axios/actions/workflows/ci.yml)\n[![Gitpod Ready-to-Code](https://img.shields.io/badge/Gitpod-Ready--to--Code-blue?logo=gitpod&style=flat-square)](https://gitpod.io/#https://github.com/axios/axios)\n[![code coverage](https://img.shields.io/coveralls/mzabriskie/axios.svg?style=flat-square)](https://coveralls.io/r/mzabriskie/axios)\n[![install size](https://img.shields.io/badge/dynamic/json?url=https://packagephobia.com/v2/api.json?p=axios&query=$.install.pretty&label=install%20size&style=flat-square)](https://packagephobia.now.sh/result?p=axios)\n[![npm bundle size](https://img.shields.io/bundlephobia/minzip/axios?style=flat-square)](https://bundlephobia.com/package/axios@latest)\n[![npm downloads](https://img.shields.io/npm/dm/axios.svg?style=flat-square)](https://npm-stat.com/charts.html?package=axios)\n[![gitter chat](https://img.shields.io/gitter/room/mzabriskie/axios.svg?style=flat-square)](https://gitter.im/mzabriskie/axios)\n[![code helpers](https://www.codetriage.com/axios/axios/badges/users.svg)](https://www.codetriage.com/axios/axios)\n[![Known Vulnerabilities](https://snyk.io/test/npm/axios/badge.svg)](https://snyk.io/test/npm/axios)\n[![Contributors](https://img.shields.io/github/contributors/axios/axios.svg?style=flat-square)](CONTRIBUTORS.md)\n\n
\n\n## Table of Contents\n\n- [Features](#features)\n- [Browser Support](#browser-support)\n- [Installing](#installing)\n - [Package manager](#package-manager)\n - [CDN](#cdn)\n- [Example](#example)\n- [Axios API](#axios-api)\n- [Request method aliases](#request-method-aliases)\n- [Concurrency \uD83D\uDC4E](#concurrency-deprecated)\n- [Creating an instance](#creating-an-instance)\n- [Instance methods](#instance-methods)\n- [Request Config](#request-config)\n- [Response Schema](#response-schema)\n- [Config Defaults](#config-defaults)\n - [Global axios defaults](#global-axios-defaults)\n - [Custom instance defaults](#custom-instance-defaults)\n - [Config order of precedence](#config-order-of-precedence)\n- [Interceptors](#interceptors)\n - [Multiple Interceptors](#multiple-interceptors)\n- [Handling Errors](#handling-errors)\n- [Handling Timeouts](#handling-timeouts)\n- [Cancellation](#cancellation)\n - [AbortController](#abortcontroller)\n - [CancelToken \uD83D\uDC4E](#canceltoken-deprecated)\n- [Using application/x-www-form-urlencoded format](#using-applicationx-www-form-urlencoded-format)\n - [URLSearchParams](#urlsearchparams)\n - [Query string](#query-string-older-browsers)\n - [\uD83C\uDD95 Automatic serialization](#-automatic-serialization-to-urlsearchparams)\n- [Using multipart/form-data format](#using-multipartform-data-format)\n - [FormData](#formdata)\n - [\uD83C\uDD95 Automatic serialization](#-automatic-serialization-to-formdata)\n- [Files Posting](#files-posting)\n- [HTML Form Posting](#-html-form-posting-browser)\n- [\uD83C\uDD95 Progress capturing](#-progress-capturing)\n- [\uD83C\uDD95 Rate limiting](#-rate-limiting)\n- [\uD83C\uDD95 AxiosHeaders](#-axiosheaders)\n- [\uD83D\uDD25 Fetch adapter](#-fetch-adapter)\n - [\uD83D\uDD25 Custom fetch](#-custom-fetch)\n - [\uD83D\uDD25 Using with Tauri](#-using-with-tauri)\n - [\uD83D\uDD25 Using with SvelteKit](#-using-with-sveltekit-)\n- [\uD83D\uDD25 HTTP2](#-http2)\n- [Semver](#semver)\n- [Promises](#promises)\n- [TypeScript](#typescript)\n- [Resources](#resources)\n- [Credits](#credits)\n- [License](#license)\n\n## Features\n\n- **Browser Requests:** Make [XMLHttpRequests](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) directly from the browser.\n- **Node.js Requests:** Make [http](https://nodejs.org/api/http.html) requests from Node.js environments.\n- **Promise-based:** Fully supports the [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise) API for easier asynchronous code.\n- **Interceptors:** Intercept requests and responses to add custom logic or transform data.\n- **Data Transformation:** Transform request and response data automatically.\n- **Request Cancellation:** Cancel requests using built-in mechanisms.\n- **Automatic JSON Handling:** Automatically serializes and parses [JSON](https://www.json.org/json-en.html) data.\n- **Form Serialization:** \uD83C\uDD95 Automatically serializes data objects to `multipart/form-data` or `x-www-form-urlencoded` formats.\n- **XSRF Protection:** Client-side support to protect against [Cross-Site Request Forgery](https://en.wikipedia.org/wiki/Cross-site_request_forgery).\n\n## Browser Support\n\n| Chrome | Firefox | Safari | Opera | Edge |\n| :------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------------: | :---------------------------------------------------------------------------------------------------------: | :------------------------------------------------------------------------------------------------------: |\n| ![Chrome browser logo](https://raw.githubusercontent.com/alrra/browser-logos/main/src/chrome/chrome_48x48.png) | ![Firefox browser logo](https://raw.githubusercontent.com/alrra/browser-logos/main/src/firefox/firefox_48x48.png) | ![Safari browser logo](https://raw.githubusercontent.com/alrra/browser-logos/main/src/safari/safari_48x48.png) | ![Opera browser logo](https://raw.githubusercontent.com/alrra/browser-logos/main/src/opera/opera_48x48.png) | ![Edge browser logo](https://raw.githubusercontent.com/alrra/browser-logos/main/src/edge/edge_48x48.png) |\n| Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ | Latest ✔ |\n\n[![Browser Matrix](https://saucelabs.com/open_sauce/build_matrix/axios.svg)](https://saucelabs.com/u/axios)\n\n## Installing\n\n### Package manager\n\nUsing npm:\n\n```bash\n$ npm install axios\n```\n\nUsing bower:\n\n```bash\n$ bower install axios\n```\n\nUsing yarn:\n\n```bash\n$ yarn add axios\n```\n\nUsing pnpm:\n\n```bash\n$ pnpm add axios\n```\n\nUsing bun:\n\n```bash\n$ bun add axios\n```\n\nOnce the package is installed, you can import the library using `import` or `require` approach:\n\n```js\nimport axios, { isCancel, AxiosError } from \"axios\";\n```\n\nYou can also use the default export, since the named export is just a re-export from the Axios factory:\n\n```js\nimport axios from \"axios\";\n\nconsole.log(axios.isCancel(\"something\"));\n```\n\nIf you use `require` for importing, **only the default export is available**:\n\n```js\nconst axios = require(\"axios\");\n\nconsole.log(axios.isCancel(\"something\"));\n```\n\nFor some bundlers and some ES6 linters you may need to do the following:\n\n```js\nimport { default as axios } from \"axios\";\n```\n\nFor cases where something went wrong when trying to import a module into a custom or legacy environment,\nyou can try importing the module package directly:\n\n```js\nconst axios = require(\"axios/dist/browser/axios.cjs\"); // browser commonJS bundle (ES2017)\n// const axios = require('axios/dist/node/axios.cjs'); // node commonJS bundle (ES2017)\n```\n\n### CDN\n\nUsing jsDelivr CDN (ES5 UMD browser module):\n\n```html\n\n```\n\nUsing unpkg CDN:\n\n```html\n\n```\n\n## Example\n\n```js\nimport axios from \"axios\";\n//const axios = require('axios'); // legacy way\n\ntry {\n const response = await axios.get(\"/user?ID=12345\");\n console.log(response);\n} catch (error) {\n console.error(error);\n}\n\n// Optionally the request above could also be done as\naxios\n .get(\"/user\", {\n params: {\n ID: 12345,\n },\n })\n .then(function (response) {\n console.log(response);\n })\n .catch(function (error) {\n console.log(error);\n })\n .finally(function () {\n // always executed\n });\n\n// Want to use async/await? Add the `async` keyword to your outer function/method.\nasync function getUser() {\n try {\n const response = await axios.get(\"/user?ID=12345\");\n console.log(response);\n } catch (error) {\n console.error(error);\n }\n}\n```\n\n> **Note**: `async/await` is part of ECMAScript 2017 and is not supported in Internet\n> Explorer and older browsers, so use with caution.\n\nPerforming a `POST` request\n\n```js\nconst response = await axios.post(\"/user\", {\n firstName: \"Fred\",\n lastName: \"Flintstone\",\n});\nconsole.log(response);\n```\n\nPerforming multiple concurrent requests\n\n```js\nfunction getUserAccount() {\n return axios.get(\"/user/12345\");\n}\n\nfunction getUserPermissions() {\n return axios.get(\"/user/12345/permissions\");\n}\n\nPromise.all([getUserAccount(), getUserPermissions()]).then(function (results) {\n const acct = results[0];\n const perm = results[1];\n});\n```\n\n## axios API\n\nRequests can be made by passing the relevant config to `axios`.\n\n##### axios(config)\n\n```js\n// Send a POST request\naxios({\n method: \"post\",\n url: \"/user/12345\",\n data: {\n firstName: \"Fred\",\n lastName: \"Flintstone\",\n },\n});\n```\n\n```js\n// GET request for remote image in node.js\nconst response = await axios({\n method: \"get\",\n url: \"https://bit.ly/2mTM3nY\",\n responseType: \"stream\",\n});\nresponse.data.pipe(fs.createWriteStream(\"ada_lovelace.jpg\"));\n```\n\n##### axios(url[, config])\n\n```js\n// Send a GET request (default method)\naxios(\"/user/12345\");\n```\n\n### Request method aliases\n\nFor convenience, aliases have been provided for all common request methods.\n\n##### axios.request(config)\n\n##### axios.get(url[, config])\n\n##### axios.delete(url[, config])\n\n##### axios.head(url[, config])\n\n##### axios.options(url[, config])\n\n##### axios.post(url[, data[, config]])\n\n##### axios.put(url[, data[, config]])\n\n##### axios.patch(url[, data[, config]])\n\n###### NOTE\n\nWhen using the alias methods `url`, `method`, and `data` properties don't need to be specified in config.\n\n### Concurrency (Deprecated)\n\nPlease use `Promise.all` to replace the below functions.\n\nHelper functions for dealing with concurrent requests.\n\naxios.all(iterable)\naxios.spread(callback)\n\n### Creating an instance\n\nYou can create a new instance of axios with a custom config.\n\n##### axios.create([config])\n\n```js\nconst instance = axios.create({\n baseURL: \"https://some-domain.com/api/\",\n timeout: 1000,\n headers: { \"X-Custom-Header\": \"foobar\" },\n});\n```\n\n### Instance methods\n\nThe available instance methods are listed below. The specified config will be merged with the instance config.\n\n##### axios#request(config)\n\n##### axios#get(url[, config])\n\n##### axios#delete(url[, config])\n\n##### axios#head(url[, config])\n\n##### axios#options(url[, config])\n\n##### axios#post(url[, data[, config]])\n\n##### axios#put(url[, data[, config]])\n\n##### axios#patch(url[, data[, config]])\n\n##### axios#getUri([config])\n\n## Request Config\n\nThese are the available config options for making requests. Only the `url` is required. Requests will default to `GET` if `method` is not specified.\n\n```js\n{\n // `url` is the server URL that will be used for the request\n url: '/user',\n\n // `method` is the request method to be used when making the request\n method: 'get', // default\n\n // `baseURL` will be prepended to `url` unless `url` is absolute and the option `allowAbsoluteUrls` is set to true.\n // It can be convenient to set `baseURL` for an instance of axios to pass relative URLs\n // to the methods of that instance.\n baseURL: 'https://some-domain.com/api/',\n\n // `allowAbsoluteUrls` determines whether or not absolute URLs will override a configured `baseUrl`.\n // When set to true (default), absolute values for `url` will override `baseUrl`.\n // When set to false, absolute values for `url` will always be prepended by `baseUrl`.\n allowAbsoluteUrls: true,\n\n // `transformRequest` allows changes to the request data before it is sent to the server\n // This is only applicable for request methods 'PUT', 'POST', 'PATCH' and 'DELETE'\n // The last function in the array must return a string or an instance of Buffer, ArrayBuffer,\n // FormData or Stream\n // You may modify the headers object.\n transformRequest: [function (data, headers) {\n // Do whatever you want to transform the data\n\n return data;\n }],\n\n // `transformResponse` allows changes to the response data to be made before\n // it is passed to then/catch\n transformResponse: [function (data) {\n // Do whatever you want to transform the data\n\n return data;\n }],\n\n // `headers` are custom headers to be sent\n headers: {'X-Requested-With': 'XMLHttpRequest'},\n\n // `params` are the URL parameters to be sent with the request\n // Must be a plain object or a URLSearchParams object\n params: {\n ID: 12345\n },\n\n // `paramsSerializer` is an optional config that allows you to customize serializing `params`.\n paramsSerializer: {\n\n // Custom encoder function which sends key/value pairs in an iterative fashion.\n encode?: (param: string): string => { /* Do custom operations here and return transformed string */ },\n\n // Custom serializer function for the entire parameter. Allows the user to mimic pre 1.x behaviour.\n serialize?: (params: Record, options?: ParamsSerializerOptions ),\n\n // Configuration for formatting array indexes in the params.\n indexes: false // Three available options: (1) indexes: null (leads to no brackets), (2) (default) indexes: false (leads to empty brackets), (3) indexes: true (leads to brackets with indexes).\n },\n\n // `data` is the data to be sent as the request body\n // Only applicable for request methods 'PUT', 'POST', 'DELETE', and 'PATCH'\n // When no `transformRequest` is set, it must be of one of the following types:\n // - string, plain object, ArrayBuffer, ArrayBufferView, URLSearchParams\n // - Browser only: FormData, File, Blob\n // - Node only: Stream, Buffer, FormData (form-data package)\n data: {\n firstName: 'Fred'\n },\n\n // syntax alternative to send data into the body\n // method post\n // only the value is sent, not the key\n data: 'Country=Brasil&City=Belo Horizonte',\n\n // `timeout` specifies the number of milliseconds before the request times out.\n // If the request takes longer than `timeout`, the request will be aborted.\n timeout: 1000, // default is `0` (no timeout)\n\n // `withCredentials` indicates whether or not cross-site Access-Control requests\n // should be made using credentials\n withCredentials: false, // default\n\n // `adapter` allows custom handling of requests which makes testing easier.\n // Return a promise and supply a valid response (see lib/adapters/README.md)\n adapter: function (config) {\n /* ... */\n },\n // Also, you can set the name of the built-in adapter, or provide an array with their names\n // to choose the first available in the environment\n adapter: 'xhr', // 'fetch' | 'http' | ['xhr', 'http', 'fetch']\n\n // `auth` indicates that HTTP Basic auth should be used, and supplies credentials.\n // This will set an `Authorization` header, overwriting any existing\n // `Authorization` custom headers you have set using `headers`.\n // Please note that only HTTP Basic auth is configurable through this parameter.\n // For Bearer tokens and such, use `Authorization` custom headers instead.\n auth: {\n username: 'janedoe',\n password: 's00pers3cret'\n },\n\n // `responseType` indicates the type of data that the server will respond with\n // options are: 'arraybuffer', 'document', 'json', 'text', 'stream'\n // browser only: 'blob'\n responseType: 'json', // default\n\n // `responseEncoding` indicates encoding to use for decoding responses (Node.js only)\n // Note: Ignored for `responseType` of 'stream' or client-side requests\n // options are: 'ascii', 'ASCII', 'ansi', 'ANSI', 'binary', 'BINARY', 'base64', 'BASE64', 'base64url',\n // 'BASE64URL', 'hex', 'HEX', 'latin1', 'LATIN1', 'ucs-2', 'UCS-2', 'ucs2', 'UCS2', 'utf-8', 'UTF-8',\n // 'utf8', 'UTF8', 'utf16le', 'UTF16LE'\n responseEncoding: 'utf8', // default\n\n // `xsrfCookieName` is the name of the cookie to use as a value for the xsrf token\n xsrfCookieName: 'XSRF-TOKEN', // default\n\n // `xsrfHeaderName` is the name of the http header that carries the xsrf token value\n xsrfHeaderName: 'X-XSRF-TOKEN', // default\n\n // `undefined` (default) - set XSRF header only for the same origin requests\n withXSRFToken: boolean | undefined | ((config: InternalAxiosRequestConfig) => boolean | undefined),\n\n // `onUploadProgress` allows handling of progress events for uploads\n // browser & node.js\n onUploadProgress: function ({loaded, total, progress, bytes, estimated, rate, upload = true}) {\n // Do whatever you want with the Axios progress event\n },\n\n // `onDownloadProgress` allows handling of progress events for downloads\n // browser & node.js\n onDownloadProgress: function ({loaded, total, progress, bytes, estimated, rate, download = true}) {\n // Do whatever you want with the Axios progress event\n },\n\n // `maxContentLength` defines the max size of the http response content in bytes allowed in node.js\n maxContentLength: 2000,\n\n // `maxBodyLength` (Node only option) defines the max size of the http request content in bytes allowed\n maxBodyLength: 2000,\n\n // `validateStatus` defines whether to resolve or reject the promise for a given\n // HTTP response status code. If `validateStatus` returns `true` (or is set to `null`\n // or `undefined`), the promise will be resolved; otherwise, the promise will be\n // rejected.\n validateStatus: function (status) {\n return status >= 200 && status < 300; // default\n },\n\n // `maxRedirects` defines the maximum number of redirects to follow in node.js.\n // If set to 0, no redirects will be followed.\n maxRedirects: 21, // default\n\n // `beforeRedirect` defines a function that will be called before redirect.\n // Use this to adjust the request options upon redirecting,\n // to inspect the latest response headers,\n // or to cancel the request by throwing an error\n // If maxRedirects is set to 0, `beforeRedirect` is not used.\n beforeRedirect: (options, { headers }) => {\n if (options.hostname === \"example.com\") {\n options.auth = \"user:password\";\n }\n },\n\n // `socketPath` defines a UNIX Socket to be used in node.js.\n // e.g. '/var/run/docker.sock' to send requests to the docker daemon.\n // Only either `socketPath` or `proxy` can be specified.\n // If both are specified, `socketPath` is used.\n socketPath: null, // default\n\n // `transport` determines the transport method that will be used to make the request.\n // If defined, it will be used. Otherwise, if `maxRedirects` is 0,\n // the default `http` or `https` library will be used, depending on the protocol specified in `protocol`.\n // Otherwise, the `httpFollow` or `httpsFollow` library will be used, again depending on the protocol,\n // which can handle redirects.\n transport: undefined, // default\n\n // `httpAgent` and `httpsAgent` define a custom agent to be used when performing http\n // and https requests, respectively, in node.js. This allows options to be added like\n // `keepAlive` that are not enabled by default before Node.js v19.0.0. After Node.js\n // v19.0.0, you no longer need to customize the agent to enable `keepAlive` because\n // `http.globalAgent` has `keepAlive` enabled by default.\n httpAgent: new http.Agent({ keepAlive: true }),\n httpsAgent: new https.Agent({ keepAlive: true }),\n\n // `proxy` defines the hostname, port, and protocol of the proxy server.\n // You can also define your proxy using the conventional `http_proxy` and\n // `https_proxy` environment variables. If you are using environment variables\n // for your proxy configuration, you can also define a `no_proxy` environment\n // variable as a comma-separated list of domains that should not be proxied.\n // Use `false` to disable proxies, ignoring environment variables.\n // `auth` indicates that HTTP Basic auth should be used to connect to the proxy, and\n // supplies credentials.\n // This will set a `Proxy-Authorization` header, overwriting any existing\n // `Proxy-Authorization` custom headers you have set using `headers`.\n // If the proxy server uses HTTPS, then you must set the protocol to `https`.\n proxy: {\n protocol: 'https',\n host: '127.0.0.1',\n // hostname: '127.0.0.1' // Takes precedence over 'host' if both are defined\n port: 9000,\n auth: {\n username: 'mikeymike',\n password: 'rapunz3l'\n }\n },\n\n // `cancelToken` specifies a cancel token that can be used to cancel the request\n // (see Cancellation section below for details)\n cancelToken: new CancelToken(function (cancel) {\n }),\n\n // an alternative way to cancel Axios requests using AbortController\n signal: new AbortController().signal,\n\n // `decompress` indicates whether or not the response body should be decompressed\n // automatically. If set to `true` will also remove the 'content-encoding' header\n // from the responses objects of all decompressed responses\n // - Node only (XHR cannot turn off decompression)\n decompress: true, // default\n\n // `insecureHTTPParser` boolean.\n // Indicates where to use an insecure HTTP parser that accepts invalid HTTP headers.\n // This may allow interoperability with non-conformant HTTP implementations.\n // Using the insecure parser should be avoided.\n // see options https://nodejs.org/dist/latest-v12.x/docs/api/http.html#http_http_request_url_options_callback\n // see also https://nodejs.org/en/blog/vulnerability/february-2020-security-releases/#strict-http-header-parsing-none\n insecureHTTPParser: undefined, // default\n\n // transitional options for backward compatibility that may be removed in the newer versions\n transitional: {\n // silent JSON parsing mode\n // `true` - ignore JSON parsing errors and set response.data to null if parsing failed (old behaviour)\n // `false` - throw SyntaxError if JSON parsing failed (Note: responseType must be set to 'json')\n silentJSONParsing: true, // default value for the current Axios version\n\n // try to parse the response string as JSON even if `responseType` is not 'json'\n forcedJSONParsing: true,\n\n // throw ETIMEDOUT error instead of generic ECONNABORTED on request timeouts\n clarifyTimeoutError: false,\n\n // use the legacy interceptor request/response ordering\n legacyInterceptorReqResOrdering: true, // default\n },\n\n env: {\n // The FormData class to be used to automatically serialize the payload into a FormData object\n FormData: window?.FormData || global?.FormData\n },\n\n formSerializer: {\n visitor: (value, key, path, helpers) => {}; // custom visitor function to serialize form values\n dots: boolean; // use dots instead of brackets format\n metaTokens: boolean; // keep special endings like {} in parameter key\n indexes: boolean; // array indexes format null - no brackets, false - empty brackets, true - brackets with indexes\n },\n\n // http adapter only (node.js)\n maxRate: [\n 100 * 1024, // 100KB/s upload limit,\n 100 * 1024 // 100KB/s download limit\n ]\n}\n```\n\n## Response Schema\n\nThe response to a request contains the following information.\n\n```js\n{\n // `data` is the response that was provided by the server\n data: {},\n\n // `status` is the HTTP status code from the server response\n status: 200,\n\n // `statusText` is the HTTP status message from the server response\n statusText: 'OK',\n\n // `headers` the HTTP headers that the server responded with\n // All header names are lowercase and can be accessed using the bracket notation.\n // Example: `response.headers['content-type']`\n headers: {},\n\n // `config` is the config that was provided to `axios` for the request\n config: {},\n\n // `request` is the request that generated this response\n // It is the last ClientRequest instance in node.js (in redirects)\n // and an XMLHttpRequest instance in the browser\n request: {}\n}\n```\n\nWhen using `then`, you will receive the response as follows:\n\n```js\nconst response = await axios.get(\"/user/12345\");\nconsole.log(response.data);\nconsole.log(response.status);\nconsole.log(response.statusText);\nconsole.log(response.headers);\nconsole.log(response.config);\n```\n\nWhen using `catch`, or passing a [rejection callback](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/then) as second parameter of `then`, the response will be available through the `error` object as explained in the [Handling Errors](#handling-errors) section.\n\n## Config Defaults\n\nYou can specify config defaults that will be applied to every request.\n\n### Global axios defaults\n\n```js\naxios.defaults.baseURL = \"https://api.example.com\";\n\n// Important: If axios is used with multiple domains, the AUTH_TOKEN will be sent to all of them.\n// See below for an example using Custom instance defaults instead.\naxios.defaults.headers.common[\"Authorization\"] = AUTH_TOKEN;\n\naxios.defaults.headers.post[\"Content-Type\"] =\n \"application/x-www-form-urlencoded\";\n```\n\n### Custom instance defaults\n\n```js\n// Set config defaults when creating the instance\nconst instance = axios.create({\n baseURL: \"https://api.example.com\",\n});\n\n// Alter defaults after instance has been created\ninstance.defaults.headers.common[\"Authorization\"] = AUTH_TOKEN;\n```\n\n### Config order of precedence\n\nConfig will be merged with an order of precedence. The order is library defaults found in [lib/defaults/index.js](https://github.com/axios/axios/blob/main/lib/defaults/index.js#L49), then `defaults` property of the instance, and finally `config` argument for the request. The latter will take precedence over the former. Here's an example.\n\n```js\n// Create an instance using the config defaults provided by the library\n// At this point the timeout config value is `0` as is the default for the library\nconst instance = axios.create();\n\n// Override timeout default for the library\n// Now all requests using this instance will wait 2.5 seconds before timing out\ninstance.defaults.timeout = 2500;\n\n// Override timeout for this request as it's known to take a long time\ninstance.get(\"/longRequest\", {\n timeout: 5000,\n});\n```\n\n## Interceptors\n\nYou can intercept requests or responses before methods like `.get()` or `.post()`\nresolve their promises (before code inside `then` or `catch`, or after `await`)\n\n```js\nconst instance = axios.create();\n\n// Add a request interceptor\ninstance.interceptors.request.use(\n function (config) {\n // Do something before the request is sent\n return config;\n },\n function (error) {\n // Do something with the request error\n return Promise.reject(error);\n },\n);\n\n// Add a response interceptor\ninstance.interceptors.response.use(\n function (response) {\n // Any status code that lies within the range of 2xx causes this function to trigger\n // Do something with response data\n return response;\n },\n function (error) {\n // Any status codes that fall outside the range of 2xx cause this function to trigger\n // Do something with response error\n return Promise.reject(error);\n },\n);\n```\n\nIf you need to remove an interceptor later you can.\n\n```js\nconst instance = axios.create();\nconst myInterceptor = instance.interceptors.request.use(function () {\n /*...*/\n});\naxios.interceptors.request.eject(myInterceptor);\n```\n\nYou can also clear all interceptors for requests or responses.\n\n```js\nconst instance = axios.create();\ninstance.interceptors.request.use(function () {\n /*...*/\n});\ninstance.interceptors.request.clear(); // Removes interceptors from requests\ninstance.interceptors.response.use(function () {\n /*...*/\n});\ninstance.interceptors.response.clear(); // Removes interceptors from responses\n```\n\nYou can add interceptors to a custom instance of axios.\n\n```js\nconst instance = axios.create();\ninstance.interceptors.request.use(function () {\n /*...*/\n});\n```\n\nWhen you add request interceptors, they are presumed to be asynchronous by default. This can cause a delay\nin the execution of your axios request when the main thread is blocked (a promise is created under the hood for\nthe interceptor and your request gets put at the bottom of the call stack). If your request interceptors are synchronous you can add a flag\nto the options object that will tell axios to run the code synchronously and avoid any delays in request execution.\n\n```js\naxios.interceptors.request.use(\n function (config) {\n config.headers.test = \"I am only a header!\";\n return config;\n },\n null,\n { synchronous: true },\n);\n```\n\nIf you want to execute a particular interceptor based on a runtime check,\nyou can add a `runWhen` function to the options object. The request interceptor will not be executed **if and only if** the return\nof `runWhen` is `false`. The function will be called with the config\nobject (don't forget that you can bind your own arguments to it as well.) This can be handy when you have an\nasynchronous request interceptor that only needs to run at certain times.\n\n```js\nfunction onGetCall(config) {\n return config.method === \"get\";\n}\naxios.interceptors.request.use(\n function (config) {\n config.headers.test = \"special get headers\";\n return config;\n },\n null,\n { runWhen: onGetCall },\n);\n```\n\n> **Note:** The options parameter(having `synchronous` and `runWhen` properties) is only supported for request interceptors at the moment.\n\n### Interceptor Execution Order\n\n**Important:** Interceptors have different execution orders depending on their type!\n\nRequest interceptors are executed in **reverse order** (LIFO - Last In, First Out). This means the _last_ interceptor added is executed **first**.\n\nResponse interceptors are executed in the **order they were added** (FIFO - First In, First Out). This means the _first_ interceptor added is executed **first**.\n\nExample:\n\n```js\nconst instance = axios.create();\n\nconst interceptor = (id) => (base) => {\n console.log(id);\n return base;\n};\n\ninstance.interceptors.request.use(interceptor(\"Request Interceptor 1\"));\ninstance.interceptors.request.use(interceptor(\"Request Interceptor 2\"));\ninstance.interceptors.request.use(interceptor(\"Request Interceptor 3\"));\ninstance.interceptors.response.use(interceptor(\"Response Interceptor 1\"));\ninstance.interceptors.response.use(interceptor(\"Response Interceptor 2\"));\ninstance.interceptors.response.use(interceptor(\"Response Interceptor 3\"));\n\n// Console output:\n// Request Interceptor 3\n// Request Interceptor 2\n// Request Interceptor 1\n// [HTTP request is made]\n// Response Interceptor 1\n// Response Interceptor 2\n// Response Interceptor 3\n```\n\n### Multiple Interceptors\n\nGiven that you add multiple response interceptors\nand when the response was fulfilled\n\n- then each interceptor is executed\n- then they are executed in the order they were added\n- then only the last interceptor's result is returned\n- then every interceptor receives the result of its predecessor\n- and when the fulfillment-interceptor throws\n - then the following fulfillment-interceptor is not called\n - then the following rejection-interceptor is called\n - once caught, another following fulfill-interceptor is called again (just like in a promise chain).\n\nRead [the interceptor tests](./test/specs/interceptors.spec.js) to see all this in code.\n\n## Error Types\n\nThere are many different axios error messages that can appear which can provide basic information about the specifics of the error and where opportunities may lie in debugging.\n\nThe general structure of axios errors is as follows:\n| Property | Definition |\n| -------- | ---------- |\n| message | A quick summary of the error message and the status it failed with. |\n| name | This defines where the error originated from. For axios, it will always be an 'AxiosError'. |\n| stack | Provides the stack trace of the error. |\n| config | An axios config object with specific instance configurations defined by the user from when the request was made |\n| code | Represents an axios identified error. The table below lists specific definitions for internal axios error. |\n| status | HTTP response status code. See [here](https://en.wikipedia.org/wiki/List_of_HTTP_status_codes) for common HTTP response status code meanings.\n\nBelow is a list of potential axios identified error:\n\n| Code | Definition |\n| ------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |\n| ERR_BAD_OPTION_VALUE | Invalid value provided in axios configuration. |\n| ERR_BAD_OPTION | Invalid option provided in axios configuration. |\n| ERR_NOT_SUPPORT | Feature or method not supported in the current axios environment. |\n| ERR_DEPRECATED | Deprecated feature or method used in axios. |\n| ERR_INVALID_URL | Invalid URL provided for axios request. |\n| ECONNABORTED | Typically indicates that the request has been timed out (unless `transitional.clarifyTimeoutError` is set) or aborted by the browser or its plugin. |\n| ERR_CANCELED | Feature or method is canceled explicitly by the user using an AbortSignal (or a CancelToken). |\n| ETIMEDOUT | Request timed out due to exceeding the default axios timelimit. `transitional.clarifyTimeoutError` must be set to `true`, otherwise a generic `ECONNABORTED` error will be thrown instead. |\n| ERR_NETWORK | Network-related issue. In the browser, this error can also be caused by a [CORS](https://developer.mozilla.org/ru/docs/Web/HTTP/Guides/CORS) or [Mixed Content](https://developer.mozilla.org/en-US/docs/Web/Security/Mixed_content) policy violation. The browser does not allow the JS code to clarify the real reason for the error caused by security issues, so please check the console. |\n| ERR_FR_TOO_MANY_REDIRECTS | Request is redirected too many times; exceeds max redirects specified in axios configuration. |\n| ERR_BAD_RESPONSE | Response cannot be parsed properly or is in an unexpected format. Usually related to a response with `5xx` status code. |\n| ERR_BAD_REQUEST | The request has an unexpected format or is missing required parameters. Usually related to a response with `4xx` status code. |\n\n## Handling Errors\n\nThe default behavior is to reject every response that returns with a status code that falls out of the range of 2xx and treat it as an error.\n\n```js\naxios.get(\"/user/12345\").catch(function (error) {\n if (error.response) {\n // The request was made and the server responded with a status code\n // that falls out of the range of 2xx\n console.log(error.response.data);\n console.log(error.response.status);\n console.log(error.response.headers);\n } else if (error.request) {\n // The request was made but no response was received\n // `error.request` is an instance of XMLHttpRequest in the browser and an instance of\n // http.ClientRequest in node.js\n console.log(error.request);\n } else {\n // Something happened in setting up the request that triggered an Error\n console.log(\"Error\", error.message);\n }\n console.log(error.config);\n});\n```\n\nUsing the `validateStatus` config option, you can override the default condition (status >= 200 && status < 300) and define HTTP code(s) that should throw an error.\n\n```js\naxios.get(\"/user/12345\", {\n validateStatus: function (status) {\n return status < 500; // Resolve only if the status code is less than 500\n },\n});\n```\n\nUsing `toJSON` you get an object with more information about the HTTP error.\n\n```js\naxios.get(\"/user/12345\").catch(function (error) {\n console.log(error.toJSON());\n});\n```\n\n## Handling Timeouts\n\n```js\nasync function fetchWithTimeout() {\n try {\n const response = await axios.get(\"https://example.com/data\", {\n timeout: 5000, // 5 seconds\n });\n\n console.log(\"Response:\", response.data);\n } catch (error) {\n if (axios.isAxiosError(error) && error.code === \"ECONNABORTED\") {\n console.error(\"❌ Request timed out!\");\n } else {\n console.error(\"❌ Error:\", error.message);\n }\n }\n}\n```\n\n## Cancellation\n\n### AbortController\n\nStarting from `v0.22.0` Axios supports AbortController to cancel requests in a fetch API way:\n\n```js\nconst controller = new AbortController();\n\naxios\n .get(\"/foo/bar\", {\n signal: controller.signal,\n })\n .then(function (response) {\n //...\n });\n// cancel the request\ncontroller.abort();\n```\n\n### CancelToken `\uD83D\uDC4Edeprecated`\n\nYou can also cancel a request using a _CancelToken_.\n\n> The axios cancel token API is based on the withdrawn [cancellable promises proposal](https://github.com/tc39/proposal-cancelable-promises).\n\n> This API is deprecated since v0.22.0 and shouldn't be used in new projects\n\nYou can create a cancel token using the `CancelToken.source` factory as shown below:\n\n```js\nconst CancelToken = axios.CancelToken;\nconst source = CancelToken.source();\n\naxios\n .get(\"/user/12345\", {\n cancelToken: source.token,\n })\n .catch(function (thrown) {\n if (axios.isCancel(thrown)) {\n console.log(\"Request canceled\", thrown.message);\n } else {\n // handle error\n }\n });\n\naxios.post(\n \"/user/12345\",\n {\n name: \"new name\",\n },\n {\n cancelToken: source.token,\n },\n);\n\n// cancel the request (the message parameter is optional)\nsource.cancel(\"Operation canceled by the user.\");\n```\n\nYou can also create a cancel token by passing an executor function to the `CancelToken` constructor:\n\n```js\nconst CancelToken = axios.CancelToken;\nlet cancel;\n\naxios.get(\"/user/12345\", {\n cancelToken: new CancelToken(function executor(c) {\n // An executor function receives a cancel function as a parameter\n cancel = c;\n }),\n});\n\n// cancel the request\ncancel();\n```\n\n> **Note:** you can cancel several requests with the same cancel token/abort controller.\n> If a cancellation token is already cancelled at the moment of starting an Axios request, then the request is cancelled immediately, without any attempts to make a real request.\n\n> During the transition period, you can use both cancellation APIs, even for the same request:\n\n## Using `application/x-www-form-urlencoded` format\n\n### URLSearchParams\n\nBy default, axios serializes JavaScript objects to `JSON`. To send data in the [`application/x-www-form-urlencoded`](https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/POST) format instead, you can use the [`URLSearchParams`](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams) API, which is [supported](http://www.caniuse.com/#feat=urlsearchparams) in the vast majority of browsers, and [Node](https://nodejs.org/api/url.html#url_class_urlsearchparams) starting with v10 (released in 2018).\n\n```js\nconst params = new URLSearchParams({ foo: \"bar\" });\nparams.append(\"extraparam\", \"value\");\naxios.post(\"/foo\", params);\n```\n\n### Query string (Older browsers)\n\nFor compatibility with very old browsers, there is a [polyfill](https://github.com/WebReflection/url-search-params) available (make sure to polyfill the global environment).\n\nAlternatively, you can encode data using the [`qs`](https://github.com/ljharb/qs) library:\n\n```js\nconst qs = require(\"qs\");\naxios.post(\"/foo\", qs.stringify({ bar: 123 }));\n```\n\nOr in another way (ES6),\n\n```js\nimport qs from \"qs\";\nconst data = { bar: 123 };\nconst options = {\n method: \"POST\",\n headers: { \"content-type\": \"application/x-www-form-urlencoded\" },\n data: qs.stringify(data),\n url,\n};\naxios(options);\n```\n\n### Older Node.js versions\n\nFor older Node.js engines, you can use the [`querystring`](https://nodejs.org/api/querystring.html) module as follows:\n\n```js\nconst querystring = require(\"querystring\");\naxios.post(\"https://something.com/\", querystring.stringify({ foo: \"bar\" }));\n```\n\nYou can also use the [`qs`](https://github.com/ljharb/qs) library.\n\n> **Note**: The `qs` library is preferable if you need to stringify nested objects, as the `querystring` method has [known issues](https://github.com/nodejs/node-v0.x-archive/issues/1665) with that use case.\n\n### \uD83C\uDD95 Automatic serialization to URLSearchParams\n\nAxios will automatically serialize the data object to urlencoded format if the content-type header is set to \"application/x-www-form-urlencoded\".\n\n```js\nconst data = {\n x: 1,\n arr: [1, 2, 3],\n arr2: [1, [2], 3],\n users: [\n { name: \"Peter\", surname: \"Griffin\" },\n { name: \"Thomas\", surname: \"Anderson\" },\n ],\n};\n\nawait axios.postForm(\"https://postman-echo.com/post\", data, {\n headers: { \"content-type\": \"application/x-www-form-urlencoded\" },\n});\n```\n\nThe server will handle it as:\n\n```js\n {\n x: '1',\n 'arr[]': [ '1', '2', '3' ],\n 'arr2[0]': '1',\n 'arr2[1][0]': '2',\n 'arr2[2]': '3',\n 'arr3[]': [ '1', '2', '3' ],\n 'users[0][name]': 'Peter',\n 'users[0][surname]': 'griffin',\n 'users[1][name]': 'Thomas',\n 'users[1][surname]': 'Anderson'\n }\n```\n\nIf your backend body-parser (like `body-parser` of `express.js`) supports nested objects decoding, you will get the same object on the server-side automatically\n\n```js\nconst app = express();\n\napp.use(bodyParser.urlencoded({ extended: true })); // support encoded bodies\n\napp.post(\"/\", function (req, res, next) {\n // echo body as JSON\n res.send(JSON.stringify(req.body));\n});\n\nserver = app.listen(3000);\n```\n\n## Using `multipart/form-data` format\n\n### FormData\n\nTo send the data as a `multipart/form-data` you need to pass a formData instance as a payload.\nSetting the `Content-Type` header is not required as Axios guesses it based on the payload type.\n\n```js\nconst formData = new FormData();\nformData.append(\"foo\", \"bar\");\n\naxios.post(\"https://httpbin.org/post\", formData);\n```\n\nIn node.js, you can use the [`form-data`](https://github.com/form-data/form-data) library as follows:\n\n```js\nconst FormData = require(\"form-data\");\n\nconst form = new FormData();\nform.append(\"my_field\", \"my value\");\nform.append(\"my_buffer\", Buffer.alloc(10));\nform.append(\"my_file\", fs.createReadStream(\"/foo/bar.jpg\"));\n\naxios.post(\"https://example.com\", form);\n```\n\n### \uD83C\uDD95 Automatic serialization to FormData\n\nStarting from `v0.27.0`, Axios supports automatic object serialization to a FormData object if the request `Content-Type`\nheader is set to `multipart/form-data`.\n\nThe following request will submit the data in a FormData format (Browser & Node.js):\n\n```js\nimport axios from \"axios\";\n\naxios\n .post(\n \"https://httpbin.org/post\",\n { x: 1 },\n {\n headers: {\n \"Content-Type\": \"multipart/form-data\",\n },\n },\n )\n .then(({ data }) => console.log(data));\n```\n\nIn the `node.js` build, the ([`form-data`](https://github.com/form-data/form-data)) polyfill is used by default.\n\nYou can overload the FormData class by setting the `env.FormData` config variable,\nbut you probably won't need it in most cases:\n\n```js\nconst axios = require(\"axios\");\nvar FormData = require(\"form-data\");\n\naxios\n .post(\n \"https://httpbin.org/post\",\n { x: 1, buf: Buffer.alloc(10) },\n {\n headers: {\n \"Content-Type\": \"multipart/form-data\",\n },\n },\n )\n .then(({ data }) => console.log(data));\n```\n\nAxios FormData serializer supports some special endings to perform the following operations:\n\n- `{}` - serialize the value with JSON.stringify\n- `[]` - unwrap the array-like object as separate fields with the same key\n\n> **Note**: unwrap/expand operation will be used by default on arrays and FileList objects\n\nFormData serializer supports additional options via `config.formSerializer: object` property to handle rare cases:\n\n- `visitor: Function` - user-defined visitor function that will be called recursively to serialize the data object\n to a `FormData` object by following custom rules.\n\n- `dots: boolean = false` - use dot notation instead of brackets to serialize arrays and objects;\n\n- `metaTokens: boolean = true` - add the special ending (e.g `user{}: '{\"name\": \"John\"}'`) in the FormData key.\n The back-end body-parser could potentially use this meta-information to automatically parse the value as JSON.\n\n- `indexes: null|false|true = false` - controls how indexes will be added to unwrapped keys of `flat` array-like objects.\n - `null` - don't add brackets (`arr: 1`, `arr: 2`, `arr: 3`)\n - `false`(default) - add empty brackets (`arr[]: 1`, `arr[]: 2`, `arr[]: 3`)\n - `true` - add brackets with indexes (`arr[0]: 1`, `arr[1]: 2`, `arr[2]: 3`)\n\nLet's say we have an object like this one:\n\n```js\nconst obj = {\n x: 1,\n arr: [1, 2, 3],\n arr2: [1, [2], 3],\n users: [\n { name: \"Peter\", surname: \"Griffin\" },\n { name: \"Thomas\", surname: \"Anderson\" },\n ],\n \"obj2{}\": [{ x: 1 }],\n};\n```\n\nThe following steps will be executed by the Axios serializer internally:\n\n```js\nconst formData = new FormData();\nformData.append(\"x\", \"1\");\nformData.append(\"arr[]\", \"1\");\nformData.append(\"arr[]\", \"2\");\nformData.append(\"arr[]\", \"3\");\nformData.append(\"arr2[0]\", \"1\");\nformData.append(\"arr2[1][0]\", \"2\");\nformData.append(\"arr2[2]\", \"3\");\nformData.append(\"users[0][name]\", \"Peter\");\nformData.append(\"users[0][surname]\", \"Griffin\");\nformData.append(\"users[1][name]\", \"Thomas\");\nformData.append(\"users[1][surname]\", \"Anderson\");\nformData.append(\"obj2{}\", '[{\"x\":1}]');\n```\n\nAxios supports the following shortcut methods: `postForm`, `putForm`, `patchForm`\nwhich are just the corresponding http methods with the `Content-Type` header preset to `multipart/form-data`.\n\n## Files Posting\n\nYou can easily submit a single file:\n\n```js\nawait axios.postForm(\"https://httpbin.org/post\", {\n myVar: \"foo\",\n file: document.querySelector(\"#fileInput\").files[0],\n});\n```\n\nor multiple files as `multipart/form-data`:\n\n```js\nawait axios.postForm(\"https://httpbin.org/post\", {\n \"files[]\": document.querySelector(\"#fileInput\").files,\n});\n```\n\n`FileList` object can be passed directly:\n\n```js\nawait axios.postForm(\n \"https://httpbin.org/post\",\n document.querySelector(\"#fileInput\").files,\n);\n```\n\nAll files will be sent with the same field names: `files[]`.\n\n## \uD83C\uDD95 HTML Form Posting (browser)\n\nPass an HTML Form element as a payload to submit it as `multipart/form-data` content.\n\n```js\nawait axios.postForm(\n \"https://httpbin.org/post\",\n document.querySelector(\"#htmlForm\"),\n);\n```\n\n`FormData` and `HTMLForm` objects can also be posted as `JSON` by explicitly setting the `Content-Type` header to `application/json`:\n\n```js\nawait axios.post(\n \"https://httpbin.org/post\",\n document.querySelector(\"#htmlForm\"),\n {\n headers: {\n \"Content-Type\": \"application/json\",\n },\n },\n);\n```\n\nFor example, the Form\n\n```html\n
\n \n \n \n \n \n\n \n\n \n
\n```\n\nwill be submitted as the following JSON object:\n\n```js\n{\n \"foo\": \"1\",\n \"deep\": {\n \"prop\": {\n \"spaced\": \"3\"\n }\n },\n \"baz\": [\n \"4\",\n \"5\"\n ],\n \"user\": {\n \"age\": \"value2\"\n }\n}\n```\n\nSending `Blobs`/`Files` as JSON (`base64`) is not currently supported.\n\n## \uD83C\uDD95 Progress capturing\n\nAxios supports both browser and node environments to capture request upload/download progress.\nThe frequency of progress events is forced to be limited to `3` times per second.\n\n```js\nawait axios.post(url, data, {\n onUploadProgress: function (axiosProgressEvent) {\n /*{\n loaded: number;\n total?: number;\n progress?: number; // in range [0..1]\n bytes: number; // how many bytes have been transferred since the last trigger (delta)\n estimated?: number; // estimated time in seconds\n rate?: number; // upload speed in bytes\n upload: true; // upload sign\n }*/\n },\n\n onDownloadProgress: function (axiosProgressEvent) {\n /*{\n loaded: number;\n total?: number;\n progress?: number;\n bytes: number;\n estimated?: number;\n rate?: number; // download speed in bytes\n download: true; // download sign\n }*/\n },\n});\n```\n\nYou can also track stream upload/download progress in node.js:\n\n```js\nconst { data } = await axios.post(SERVER_URL, readableStream, {\n onUploadProgress: ({ progress }) => {\n console.log((progress * 100).toFixed(2));\n },\n\n headers: {\n \"Content-Length\": contentLength,\n },\n\n maxRedirects: 0, // avoid buffering the entire stream\n});\n```\n\n> **Note:**\n> Capturing FormData upload progress is not currently supported in node.js environments.\n\n> **⚠️ Warning**\n> It is recommended to disable redirects by setting maxRedirects: 0 to upload the stream in the **node.js** environment,\n> as the follow-redirects package will buffer the entire stream in RAM without following the \"backpressure\" algorithm.\n\n## \uD83C\uDD95 Rate limiting\n\nDownload and upload rate limits can only be set for the http adapter (node.js):\n\n```js\nconst { data } = await axios.post(LOCAL_SERVER_URL, myBuffer, {\n onUploadProgress: ({ progress, rate }) => {\n console.log(\n `Upload [${(progress * 100).toFixed(2)}%]: ${(rate / 1024).toFixed(2)}KB/s`,\n );\n },\n\n maxRate: [100 * 1024], // 100KB/s limit\n});\n```\n\n## \uD83C\uDD95 AxiosHeaders\n\nAxios has its own `AxiosHeaders` class to manipulate headers using a Map-like API that guarantees caseless work.\nAlthough HTTP is case-insensitive in headers, Axios will retain the case of the original header for stylistic reasons\nand as a workaround when servers mistakenly consider the header's case.\nThe old approach of directly manipulating the headers object is still available, but deprecated and not recommended for future usage.\n\n### Working with headers\n\nAn AxiosHeaders object instance can contain different types of internal values. that control setting and merging logic.\nThe final headers object with string values is obtained by Axios by calling the `toJSON` method.\n\n> Note: By JSON here we mean an object consisting only of string values intended to be sent over the network.\n\nThe header value can be one of the following types:\n\n- `string` - normal string value that will be sent to the server\n- `null` - skip header when rendering to JSON\n- `false` - skip header when rendering to JSON, additionally indicates that `set` method must be called with `rewrite` option set to `true`\n to overwrite this value (Axios uses this internally to allow users to opt out of installing certain headers like `User-Agent` or `Content-Type`)\n- `undefined` - value is not set\n\n> Note: The header value is considered set if it is not equal to undefined.\n\nThe headers object is always initialized inside interceptors and transformers:\n\n```ts\naxios.interceptors.request.use((request: InternalAxiosRequestConfig) => {\n request.headers.set(\"My-header\", \"value\");\n\n request.headers.set({\n \"My-set-header1\": \"my-set-value1\",\n \"My-set-header2\": \"my-set-value2\",\n });\n\n request.headers.set(\"User-Agent\", false); // disable subsequent setting the header by Axios\n\n request.headers.setContentType(\"text/plain\");\n\n request.headers[\"My-set-header2\"] = \"newValue\"; // direct access is deprecated\n\n return request;\n});\n```\n\nYou can iterate over an `AxiosHeaders` instance using a `for...of` statement:\n\n```js\nconst headers = new AxiosHeaders({\n foo: \"1\",\n bar: \"2\",\n baz: \"3\",\n});\n\nfor (const [header, value] of headers) {\n console.log(header, value);\n}\n\n// foo 1\n// bar 2\n// baz 3\n```\n\n### new AxiosHeaders(headers?)\n\nConstructs a new `AxiosHeaders` instance.\n\n```\nconstructor(headers?: RawAxiosHeaders | AxiosHeaders | string);\n```\n\nIf the headers object is a string, it will be parsed as RAW HTTP headers.\n\n```js\nconst headers = new AxiosHeaders(`\nHost: www.bing.com\nUser-Agent: curl/7.54.0\nAccept: */*`);\n\nconsole.log(headers);\n\n// Object [AxiosHeaders] {\n// host: 'www.bing.com',\n// 'user-agent': 'curl/7.54.0',\n// accept: '*/*'\n// }\n```\n\n### AxiosHeaders#set\n\n```ts\nset(headerName, value: Axios, rewrite?: boolean);\nset(headerName, value, rewrite?: (this: AxiosHeaders, value: string, name: string, headers: RawAxiosHeaders) => boolean);\nset(headers?: RawAxiosHeaders | AxiosHeaders | string, rewrite?: boolean);\n```\n\nThe `rewrite` argument controls the overwriting behavior:\n\n- `false` - do not overwrite if the header's value is set (is not `undefined`)\n- `undefined` (default) - overwrite the header unless its value is set to `false`\n- `true` - rewrite anyway\n\nThe option can also accept a user-defined function that determines whether the value should be overwritten or not.\n\nReturns `this`.\n\n### AxiosHeaders#get(header)\n\n```\n get(headerName: string, matcher?: true | AxiosHeaderMatcher): AxiosHeaderValue;\n get(headerName: string, parser: RegExp): RegExpExecArray | null;\n```\n\nReturns the internal value of the header. It can take an extra argument to parse the header's value with `RegExp.exec`,\nmatcher function or internal key-value parser.\n\n```ts\nconst headers = new AxiosHeaders({\n \"Content-Type\": \"multipart/form-data; boundary=Asrf456BGe4h\",\n});\n\nconsole.log(headers.get(\"","readmeFilename":"README.md","users":{"285858315":true,"dzr":true,"gux":true,"jwv":true,"p6r":true,"vbv":true,"ayad":true,"drac":true,"epan":true,"ivop":true,"izzy":true,"jits":true,"l3au":true,"leor":true,"mv92":true,"nuer":true,"pbro":true,"usex":true,"wayn":true,"zhen":true,"abdul":true,"aim97":true,"aisin":true,"ashco":true,"boton":true,"cnwhy":true,"dansh":true,"ddffx":true,"dnero":true,"ealen":true,"ehrig":true,"errol":true,"hanhq":true,"josep":true,"jsosa":true,"kikna":true,"laomu":true,"leapm":true,"lk-hu":true,"madeo":true,"miloc":true,"nelix":true,"pahud":true,"panlw":true,"phris":true,"razr9":true,"renz0":true,"ritsu":true,"samar":true,"stets":true,"strae":true,"t3zfu":true,"taita":true,"tianm":true,"travm":true,"zorak":true,"456wyc":true,"71emj1":true,"ablbol":true,"alaska":true,"andysw":true,"arttse":true,"atulmy":true,"aven03":true,"blastz":true,"buzuli":true,"cmsz44":true,"d-band":true,"dougtq":true,"ecelis":true,"emj365":true,"emoket":true,"eswat2":true,"genovo":true,"hpeden":true,"hualei":true,"hyteer":true,"iotale":true,"isayme":true,"jahvah":true,"jeseab":true,"jkramp":true,"joe.li":true,"jorycn":true,"jsw528":true,"kalzad":true,"kaufmo":true,"kaycee":true,"kbakba":true,"kerwyn":true,"kiknag":true,"kmm745":true,"leomdg":true,"lestad":true,"machio":true,"maddas":true,"mahume":true,"majgis":true,"mat2ja":true,"meshal":true,"mitica":true,"mjasso":true,"mmatto":true,"monjer":true,"mtusta":true,"npmxkl":true,"owillo":true,"post72":true,"rawphp":true,"ryaned":true,"sermir":true,"snarky":true,"techfe":true,"teneff":true,"ux_web":true,"winnie":true,"womjoy":true,"yangzw":true,"yichan":true,"yl2014":true,"yong_a":true,"zebram":true,"zvikyb":true,"ab.moon":true,"aibulat":true,"akwa770":true,"alanson":true,"alexj01":true,"aliemre":true,"alphatr":true,"asm2hex":true,"avivzo9":true,"ayoungh":true,"baschte":true,"bcawrse":true,"benigro":true,"bloom_c":true,"borasta":true,"chrisco":true,"cocorax":true,"colkito":true,"cooboor":true,"dahdoul":true,"demerfo":true,"donfear":true,"edision":true,"eloscod":true,"ezodude":true,"flowers":true,"geekish":true,"gokulnk":true,"gpuente":true,"hitalos":true,"housser":true,"isudaji":true,"javafun":true,"jaxcode":true,"johnend":true,"kaashin":true,"keybouh":true,"kiinlam":true,"kkho595":true,"kparkov":true,"lemulot":true,"licj316":true,"liubiqu":true,"liunian":true,"ljq2731":true,"marcker":true,"mirreal":true,"n8finch":true,"naveedn":true,"nfrigus":true,"nilaeus":true,"nox.xou":true,"oceanic":true,"pinkkis":true,"pixel67":true,"pozhull":true,"preco21":true,"rebolon":true,"robsoer":true,"rparris":true,"rudchyk":true,"sebbaum":true,"sharper":true,"shoonia":true,"tangchr":true,"taseenb":true,"tdreitz":true,"tickner":true,"tin-lek":true,"tomchao":true,"tonstwo":true,"totemat":true,"totopsy":true,"tsxuehu":true,"tullece":true,"tunghua":true,"vfmneto":true,"vidhill":true,"yashesh":true,"ziehlke":true,"abhisekp":true,"akinhwan":true,"aweibell":true,"bapinney":true,"buru1020":true,"bzluyang":true,"cologler":true,"cooclsee":true,"corintho":true,"cslasher":true,"deerflow":true,"denbon05":true,"dennila2":true,"draganhr":true,"elussich":true,"fakefarm":true,"gracelee":true,"graubnla":true,"gschleic":true,"gurunate":true,"hexagon6":true,"hiztmine":true,"hkb06542":true,"hummatli":true,"ice.tang":true,"ioztelli":true,"jens1101":true,"krabello":true,"krambuhl":true,"lelivero":true,"leonzhao":true,"lifecube":true,"lin-wish":true,"livarion":true,"losymear":true,"ltiveron":true,"luxinlei":true,"madarche":true,"matthewh":true,"maxblock":true,"mhaidarh":true,"milan322":true,"mrodixon":true,"musikele":true,"mwheeler":true,"nbur4556":true,"nicknaso":true,"pablopap":true,"pddivine":true,"philipjc":true,"pr-anoop":true,"qddegtya":true,"qt911025":true,"raffaele":true,"rgskpuri":true,"rmanalan":true,"robmazur":true,"rochejul":true,"rokeyzki":true,"rrentfro":true,"sappharx":true,"sazid423":true,"scharfie":true,"shiva127":true,"sloutrel":true,"techmuch":true,"tenpenny":true,"tomasmax":true,"tyrionbb":true,"wujianfu":true,"wzh-baby":true,"xiaochao":true,"xueboren":true,"xuwenzhi":true,"yash3492":true,"yologith":true,"yongchen":true,"zalithka":true,"aaronchan":true,"abuelwafa":true,"adeamos83":true,"alexcoady":true,"allendale":true,"andrewlam":true,"antixrist":true,"arcanedev":true,"ascodejoy":true,"aukhan288":true,"azertypow":true,"bigbird92":true,"blakehall":true,"bobxuyang":true,"brian1500":true,"clementoh":true,"coding327":true,"curedfish":true,"datta3575":true,"david2000":true,"edosrecki":true,"eduarte78":true,"emersonmx":true,"fcmxtzsca":true,"feibenren":true,"foooooops":true,"frank1303":true,"geofftech":true,"grin_zhou":true,"guiyuzhao":true,"gunaerode":true,"guolintao":true,"hanyi1616":true,"heartnett":true,"howardlhw":true,"icandebug":true,"iceriver2":true,"isenricho":true,"jameschen":true,"jedaviata":true,"jerrywu12":true,"jireve999":true,"jlwinkler":true,"jmiziolek":true,"joseph320":true,"karimdeif":true,"larrychen":true,"ldq-first":true,"learncode":true,"leonel-ai":true,"liupengbo":true,"maninacan":true,"mariusc23":true,"maxwelldu":true,"mikroacse":true,"nmccready":true,"nulpatrol":true,"olegkorol":true,"pgabronis":true,"phpjungle":true,"reco_luan":true,"reyronald":true,"rkopylkov":true,"rlafferty":true,"rossdavis":true,"satanbaby":true,"sdgcwoods":true,"shakakira":true,"snowdream":true,"sternelee":true,"stone-jin":true,"sunnylife":true,"ultimatik":true,"waitstone":true,"webnicola":true,"wuxiaword":true,"yang.shao":true,"yayayahei":true,"zachbergh":true,"zchunxiao":true,"zeroth007":true,"zxgameboy":true,"3creatives":true,"akachrosto":true,"antoniordo":true,"archtaurus":true,"ashish.npm":true,"avivharuzi":true,"cfleschhut":true,"cheapsteak":true,"chiaychang":true,"chirag8642":true,"codebruder":true,"cognivator":true,"desmondddd":true,"dh19911021":true,"evelikov92":true,"flexsolver":true,"goldencrow":true,"greganswer":true,"huangkerui":true,"in-the-box":true,"jackishere":true,"jaredwilli":true,"jillmolloy":true,"jonabasque":true,"juananto11":true,"junjiansyu":true,"jussipekka":true,"justforuse":true,"kaerimichi":true,"kasiriveni":true,"krugarmatt":true,"kryptokazz":true,"lbragaglia":true,"leizongmin":true,"leonardorb":true,"mark24code":true,"markormark":true,"mehtarohan":true,"midascreed":true,"monolithed":true,"morrelinko":true,"mutantspew":true,"myorkgitis":true,"nickiesiva":true,"nickleefly":true,"nwservices":true,"onursimsek":true,"princetoad":true,"rocket0191":true,"salvationz":true,"samirdamle":true,"santi8ago8":true,"shangri_la":true,"shawspring":true,"shreyawhiz":true,"shuoshubao":true,"stephenhuh":true,"supergreen":true,"ta2edchimp":true,"tangweikun":true,"taoqianbao":true,"tidbits.js":true,"tiggem1993":true,"wearevilla":true,"wenxiayili":true,"womcauliff":true,"wouter_vdb":true,"13lank.null":true,"albertico88":true,"alexey-mish":true,"chrisakakay":true,"chrisbroome":true,"codeinfront":true,"codevelopit":true,"danielkalen":true,"danmartinez":true,"demian_dark":true,"drew.brokke":true,"duybinh2311":true,"egobrightan":true,"eleadertech":true,"fabiociconi":true,"fengmiaosen":true,"flumpus-dev":true,"galenandrew":true,"growdigital":true,"he313572052":true,"heccubernny":true,"herrkessler":true,"interfacers":true,"jamesbedont":true,"josemarjobs":true,"juanfelix88":true,"kevinbolton":true,"kodekracker":true,"littleblack":true,"lorenazohar":true,"lucius.tsai":true,"malloryerik":true,"micaelsouza":true,"mrmartineau":true,"nicolaslevy":true,"nikovacevic":true,"onlyutkarsh":true,"orange29233":true,"oskargicast":true,"psychollama":true,"puneets1994":true,"rci_michael":true,"sammyteahan":true,"scytalezero":true,"sethbergman":true,"shawndsouza":true,"soulchainer":true,"stanlindsey":true,"sujianqing5":true,"technolojay":true,"vparaskevas":true,"yanlaichang":true,"5tormtrooper":true,"abhijitkalta":true,"bianlongting":true,"blakeredwolf":true,"calin.buzatu":true,"cameronnokes":true,"chrisaguilar":true,"dennisbruner":true,"dryliketoast":true,"fengwuqing40":true,"guidoschmidt":true,"henriesteves":true,"herrbischoff":true,"huangshijuan":true,"hugojosefson":true,"ivan.marquez":true,"jakedemonaco":true,"jeppesigaard":true,"kevin-foster":true,"lsxlsxxslxsl":true,"lukaswilkeer":true,"matiasmarani":true,"maurogestoso":true,"mobeicaoyuan":true,"mystaticself":true,"nabheetmadan":true,"nickeltobias":true,"oussoulessou":true,"paulkolesnyk":true,"rajivmehtajs":true,"rakesh-peela":true,"santhoshbabu":true,"softdev-zeus":true,"superchenney":true,"warcrydoggie":true,"yonisetiawan":true,"zhenguo.zhao":true,"ashishkrgupta":true,"augiethornton":true,"chinawolf_wyp":true,"danielpavelic":true,"dhruvparmar23":true,"dongguangming":true,"escapeimagery":true,"gamersdelight":true,"gurpreetbirdi":true,"jacob-beltran":true,"jasonwang1888":true,"jian263994241":true,"jotadeveloper":true,"kadir.acikgoz":true,"kimmohintikka":true,"komarovsergey":true,"lassevolkmann":true,"marcelohmdias":true,"matiasherranz":true,"mdedirudianto":true,"parkerproject":true,"program247365":true,"santospatrick":true,"shrimpseaweed":true,"stone_breaker":true,"swirlyleopard":true,"temandoandrew":true,"yinyongcom666":true,"arnold-almeida":true,"artem.tkachuck":true,"bigglesatlarge":true,"bradleybossard":true,"chrisanderss0n":true,"derrickbeining":true,"dmitryscaletta":true,"francis.santos":true,"gggauravgandhi":true,"karzanosman984":true,"lizhiqiang1029":true,"muskaanshraogi":true,"sergeymakoveev":true,"shanewholloway":true,"siddhardhreddy":true,"stephensauceda":true,"thevikingcoder":true,"thiagowittmann":true,"tylercovington":true,"usingthesystem":true,"arcticicestudio":true,"charlietango592":true,"christopherkade":true,"hendrik.bunnick":true,"icodeforcookies":true,"jeffreysbrother":true,"jorgemfernandes":true,"krishna_kandula":true,"arturparkhisenko":true,"bluejeansandrain":true,"chenyingxuan1996":true,"giordanocardillo":true,"maciej.litwiniec":true,"terenceodonoghue":true,"arun.vijayarengan":true,"christopheredrian":true,"gihankarunarathne":true,"maximilianschmitt":true,"omkar.sheral.1989":true,"scott.m.sarsfield":true,"adrian.arroyocalle":true,"eng-gabrielscardoso":true,"fabian.moron.zirfas":true,"fluffycloud.project":true,"programmer.severson":true,"recursion_excursion":true,"daniel-lewis-bsc-hons":true,"nguyenvanhoang26041994":true}} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/c9/0d/ebc055917f035463b1f9be9534c1f7643529ef9c98a7845f7cdf44b095ac65d37cec3a309f997d2e81a73edcbb4ad256128302ff29773ca182f7986e1815 b/frontend/.npm-cache/_cacache/content-v2/sha512/c9/0d/ebc055917f035463b1f9be9534c1f7643529ef9c98a7845f7cdf44b095ac65d37cec3a309f997d2e81a73edcbb4ad256128302ff29773ca182f7986e1815 new file mode 100644 index 0000000..1294b58 Binary files /dev/null and b/frontend/.npm-cache/_cacache/content-v2/sha512/c9/0d/ebc055917f035463b1f9be9534c1f7643529ef9c98a7845f7cdf44b095ac65d37cec3a309f997d2e81a73edcbb4ad256128302ff29773ca182f7986e1815 differ diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/cb/1e/f055bb9a698a0ffa1760ca0876a7ef28f94cfcf7aeb2181555ac189db5a4a011ed32f334ba6ca6be68b6a8ca55fb3a405c45c220f33f4b748b6a92207d53 b/frontend/.npm-cache/_cacache/content-v2/sha512/cb/1e/f055bb9a698a0ffa1760ca0876a7ef28f94cfcf7aeb2181555ac189db5a4a011ed32f334ba6ca6be68b6a8ca55fb3a405c45c220f33f4b748b6a92207d53 new file mode 100644 index 0000000..156b1e2 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/cb/1e/f055bb9a698a0ffa1760ca0876a7ef28f94cfcf7aeb2181555ac189db5a4a011ed32f334ba6ca6be68b6a8ca55fb3a405c45c220f33f4b748b6a92207d53 @@ -0,0 +1 @@ +{"_id":"dunder-proto","_rev":"1-8990e995311508d36bd7745acfe3fa2d","name":"dunder-proto","dist-tags":{"latest":"1.0.1"},"versions":{"1.0.0":{"name":"dunder-proto","version":"1.0.0","author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","_id":"dunder-proto@1.0.0","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"homepage":"https://github.com/es-shims/dunder-proto#readme","bugs":{"url":"https://github.com/es-shims/dunder-proto/issues"},"dist":{"shasum":"c2fce098b3c8f8899554905f4377b6d85dabaa80","tarball":"https://mirrors.huaweicloud.com/repository/npm/dunder-proto/-/dunder-proto-1.0.0.tgz","fileCount":15,"integrity":"sha512-9+Sj30DIu+4KvHqMfLUGLFYL2PkURSYMVXJyXe92nFRvlYq5hBjLEhblKB+vkd/WVlUYMWigiY07T91Fkk0+4A==","signatures":[{"sig":"MEUCIQDTqu4CkBBEmXsTtJaQO0tADQ6ncDabT1Bx9wrvtQK3ngIgYA6rzcLrx5A9a/TWg9mt+JnuuhLf8XpmB0R4QLDd6l4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11759},"main":false,"engines":{"node":">= 0.4"},"exports":{"./get":"./get.js","./set":"./set.js","./package.json":"./package.json"},"gitHead":"7aaad8673f95c39e5c6c7c0a58e8b99f79471a08","scripts":{"lint":"eslint --ext=.js,.mjs .","test":"npm run tests-only","prelint":"evalmd README.md","prepack":"npmignore --auto --commentLines=autogenerated","pretest":"npm run lint","version":"auto-changelog && git add CHANGELOG.md","postlint":"tsc -p . && attw -P","posttest":"npx npm@'>= 10.2' audit --production","prepublish":"not-in-publish || npm run prepublishOnly","tests-only":"nyc tape 'test/**/*.js'","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\"","prepublishOnly":"safe-publish-latest"},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"testling":{"files":"test/index.js"},"repository":{"url":"git+https://github.com/es-shims/dunder-proto.git","type":"git"},"_npmVersion":"10.9.0","description":"If available, the `Object.prototype.__proto__` accessor and mutator, call-bound","directories":{},"sideEffects":false,"_nodeVersion":"23.3.0","dependencies":{"gopd":"^1.2.0","es-errors":"^1.3.0","call-bind-apply-helpers":"^1.0.0"},"publishConfig":{"ignore":[".github/workflows"]},"_hasShrinkwrap":false,"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","hideCredit":true,"unreleased":false,"commitLimit":false,"backfillLimit":false},"devDependencies":{"nyc":"^10.3.2","tape":"^5.9.0","eslint":"=8.8.0","evalmd":"^0.0.19","encoding":"^0.1.13","npmignore":"^0.3.1","in-publish":"^2.0.1","typescript":"next","@types/tape":"^5.6.5","auto-changelog":"^2.5.0","@ljharb/tsconfig":"^0.2.2","safe-publish-latest":"^2.0.0","@arethetypeswrong/cli":"^0.17.0","@ljharb/eslint-config":"^21.1.1"},"_npmOperationalInternal":{"tmp":"tmp/dunder-proto_1.0.0_1733502220694_0.358216166786711","host":"s3://npm-registry-packages"}},"1.0.1":{"name":"dunder-proto","version":"1.0.1","description":"If available, the `Object.prototype.__proto__` accessor and mutator, call-bound","main":false,"exports":{"./get":"./get.js","./set":"./set.js","./package.json":"./package.json"},"sideEffects":false,"scripts":{"prepack":"npmignore --auto --commentLines=autogenerated","prepublish":"not-in-publish || npm run prepublishOnly","prepublishOnly":"safe-publish-latest","prelint":"evalmd README.md","lint":"eslint --ext=.js,.mjs .","postlint":"tsc -p . && attw -P","pretest":"npm run lint","tests-only":"nyc tape 'test/**/*.js'","test":"npm run tests-only","posttest":"npx npm@'>= 10.2' audit --production","version":"auto-changelog && git add CHANGELOG.md","postversion":"auto-changelog && git add CHANGELOG.md && git commit --no-edit --amend && git tag -f \"v$(node -e \"console.log(require('./package.json').version)\")\""},"repository":{"type":"git","url":"git+https://github.com/es-shims/dunder-proto.git"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","bugs":{"url":"https://github.com/es-shims/dunder-proto/issues"},"homepage":"https://github.com/es-shims/dunder-proto#readme","dependencies":{"call-bind-apply-helpers":"^1.0.1","es-errors":"^1.3.0","gopd":"^1.2.0"},"devDependencies":{"@arethetypeswrong/cli":"^0.17.1","@ljharb/eslint-config":"^21.1.1","@ljharb/tsconfig":"^0.2.2","@types/tape":"^5.7.0","auto-changelog":"^2.5.0","encoding":"^0.1.13","eslint":"=8.8.0","evalmd":"^0.0.19","in-publish":"^2.0.1","npmignore":"^0.3.1","nyc":"^10.3.2","safe-publish-latest":"^2.0.0","tape":"^5.9.0","typescript":"next"},"auto-changelog":{"output":"CHANGELOG.md","template":"keepachangelog","unreleased":false,"commitLimit":false,"backfillLimit":false,"hideCredit":true},"testling":{"files":"test/index.js"},"publishConfig":{"ignore":[".github/workflows"]},"engines":{"node":">= 0.4"},"_id":"dunder-proto@1.0.1","gitHead":"c6f4b69ab80c495777870f6a5f6a22db16ecaecb","_nodeVersion":"23.4.0","_npmVersion":"10.9.2","dist":{"integrity":"sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==","shasum":"d7ae667e1dc83482f8b70fd0f6eefc50da30f58a","tarball":"https://mirrors.huaweicloud.com/repository/npm/dunder-proto/-/dunder-proto-1.0.1.tgz","fileCount":15,"unpackedSize":13003,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC89R4Zly8NOp3Gy6xo36Mk8em8hbx1EzTkhis6wJm2CgIgY0uA2ka0xbLQxk0WSw2x5Y5Hpw3uIduKLrlXCkYAgCg="}]},"_npmUser":{"name":"ljharb","email":"ljharb@gmail.com"},"directories":{},"maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/dunder-proto_1.0.1_1734401566883_0.3382373483141208"},"_hasShrinkwrap":false}},"time":{"created":"2024-12-06T16:23:40.693Z","modified":"2024-12-17T02:12:47.238Z","1.0.0":"2024-12-06T16:23:40.899Z","1.0.1":"2024-12-17T02:12:47.047Z"},"bugs":{"url":"https://github.com/es-shims/dunder-proto/issues"},"author":{"name":"Jordan Harband","email":"ljharb@gmail.com"},"license":"MIT","homepage":"https://github.com/es-shims/dunder-proto#readme","repository":{"type":"git","url":"git+https://github.com/es-shims/dunder-proto.git"},"description":"If available, the `Object.prototype.__proto__` accessor and mutator, call-bound","maintainers":[{"name":"ljharb","email":"ljharb@gmail.com"}],"readme":"# dunder-proto [![Version Badge][npm-version-svg]][package-url]\n\n[![github actions][actions-image]][actions-url]\n[![coverage][codecov-image]][codecov-url]\n[![License][license-image]][license-url]\n[![Downloads][downloads-image]][downloads-url]\n\n[![npm badge][npm-badge-png]][package-url]\n\nIf available, the `Object.prototype.__proto__` accessor and mutator, call-bound.\n\n## Getting started\n\n```sh\nnpm install --save dunder-proto\n```\n\n## Usage/Examples\n\n```js\nconst assert = require('assert');\nconst getDunder = require('dunder-proto/get');\nconst setDunder = require('dunder-proto/set');\n\nconst obj = {};\n\nassert.equal('toString' in obj, true);\nassert.equal(getDunder(obj), Object.prototype);\n\nsetDunder(obj, null);\n\nassert.equal('toString' in obj, false);\nassert.equal(getDunder(obj), null);\n```\n\n## Tests\n\nClone the repo, `npm install`, and run `npm test`\n\n[package-url]: https://npmjs.org/package/dunder-proto\n[npm-version-svg]: https://versionbadg.es/es-shims/dunder-proto.svg\n[deps-svg]: https://david-dm.org/es-shims/dunder-proto.svg\n[deps-url]: https://david-dm.org/es-shims/dunder-proto\n[dev-deps-svg]: https://david-dm.org/es-shims/dunder-proto/dev-status.svg\n[dev-deps-url]: https://david-dm.org/es-shims/dunder-proto#info=devDependencies\n[npm-badge-png]: https://nodei.co/npm/dunder-proto.png?downloads=true&stars=true\n[license-image]: https://img.shields.io/npm/l/dunder-proto.svg\n[license-url]: LICENSE\n[downloads-image]: https://img.shields.io/npm/dm/dunder-proto.svg\n[downloads-url]: https://npm-stat.com/charts.html?package=dunder-proto\n[codecov-image]: https://codecov.io/gh/es-shims/dunder-proto/branch/main/graphs/badge.svg\n[codecov-url]: https://app.codecov.io/gh/es-shims/dunder-proto/\n[actions-image]: https://img.shields.io/endpoint?url=https://github-actions-badge-u3jn4tfpocch.runkit.sh/es-shims/dunder-proto\n[actions-url]: https://github.com/es-shims/dunder-proto/actions\n","readmeFilename":"README.md"} \ No newline at end of file diff --git a/frontend/.npm-cache/_cacache/content-v2/sha512/cb/21/1d1ce820eff241bc1925c548a351f6ac882e9e9dd24ac45d3cb362ecc45d149155fc69dcfd0427cff45712f4db5448434fb6afd8b83ca4e7bc03c91bad23 b/frontend/.npm-cache/_cacache/content-v2/sha512/cb/21/1d1ce820eff241bc1925c548a351f6ac882e9e9dd24ac45d3cb362ecc45d149155fc69dcfd0427cff45712f4db5448434fb6afd8b83ca4e7bc03c91bad23 new file mode 100644 index 0000000..9d091f2 --- /dev/null +++ b/frontend/.npm-cache/_cacache/content-v2/sha512/cb/21/1d1ce820eff241bc1925c548a351f6ac882e9e9dd24ac45d3cb362ecc45d149155fc69dcfd0427cff45712f4db5448434fb6afd8b83ca4e7bc03c91bad23 @@ -0,0 +1 @@ +{"_id":"resize-observer-polyfill","_rev":"31-4051b1d6931ebe1f13a2433e9b00f917","name":"resize-observer-polyfill","description":"A polyfill for the Resize Observer API","dist-tags":{"latest":"1.5.1"},"versions":{"1.0.0":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.0.0","description":"A polyfill for IntersectionObserver API","main":"index.js","engines":{"node":">=6.0.0"},"scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"files":["src/","dist/","index.js","index.global.js"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-es2015-modules-commonjs":"^6.8.0","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-spec-reporter":"0.0.26","karma-jasmine-html-reporter":"^0.2.1","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","jasmine-core":"^2.4.1","webpack":"^1.13.1","lodash":"^4.13.1","gulp":"^3.9.1","gulp-util":"^3.0.7","gulp-eslint":"^3.0.1","eslint":"^3.4.0"},"gitHead":"c1a4a7866b3eb36443e2065d3b2df2ca42113b1c","_id":"resize-observer-polyfill@1.0.0","_shasum":"9dc7f5711eb8391dbe51c2ff91f81146c4601ea1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"9dc7f5711eb8391dbe51c2ff91f81146c4601ea1","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.0.0.tgz","integrity":"sha512-YCAOv7gTn4/aOFp2s4lX917W2yMTgdHBrVrZxyuKQ0S8Bhg/DrOilPdG2ai8jaqWzls357mHcQSW+Zck73H+eQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEPeiHucfdfn5/s/nYnWgMPMQFLp/EPqN29Cm6b3THS3AiEA+Q0CkJR1Dr5TXe5GGQuHLEAFtoltf4Q6Fd96pLAwJAg="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.0.0.tgz_1473693858892_0.030381200136616826"},"directories":{}},"1.1.0":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.1.0","description":"A polyfill for IntersectionObserver API","main":"index.js","engines":{"node":">=6.0.0"},"scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"files":["src/","dist/","index.js","index.global.js"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-es2015-modules-commonjs":"^6.8.0","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-spec-reporter":"0.0.26","karma-jasmine-html-reporter":"^0.2.1","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","jasmine-core":"^2.4.1","webpack":"^1.13.1","lodash":"^4.13.1","gulp":"^3.9.1","gulp-util":"^3.0.7","gulp-eslint":"^3.0.1","eslint":"^3.4.0"},"gitHead":"242506b5424f938095b7136855027139e3e6a8f8","_id":"resize-observer-polyfill@1.1.0","_shasum":"170927198041f272d712dbdb248fc599a5594c95","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"170927198041f272d712dbdb248fc599a5594c95","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.1.0.tgz","integrity":"sha512-CDhMNi6nbxQLzwqZ0RiN9fv4Ag70XGwEoLnccqtD41+eX8Z4tN0gsU9Z9K3Xjq3D69gbCNwgBcKvCGB5lbLsLQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIB+34npNTLvSZ0dPHPaShksjxNsaZ4TLLEW39QJoC/iLAiBoRC7E9thcCju4BoArO+IbEuM//X21zQcghtZRm5WlRQ=="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.1.0.tgz_1474282615306_0.1456077939365059"},"directories":{}},"1.1.1":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.1.1","description":"A polyfill for IntersectionObserver API","main":"index.js","engines":{"node":">=6.0.0"},"scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"files":["src/","dist/","index.js","index.global.js"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-preset-es2015-loose":"^7.0.0","babel-preset-stage-1":"^6.5.0","babel-plugin-add-module-exports":"^0.2.1","babel-plugin-transform-es2015-modules-commonjs":"^6.8.0","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-spec-reporter":"0.0.26","karma-jasmine-html-reporter":"^0.2.1","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","jasmine-core":"^2.4.1","webpack":"^1.13.1","lodash":"^4.13.1","gulp":"^3.9.1","gulp-util":"^3.0.7","gulp-eslint":"^3.0.1","eslint":"^3.4.0"},"gitHead":"13334e51f20a9fb0c9a6151f0b8ebe2cfaf7d75b","_id":"resize-observer-polyfill@1.1.1","_shasum":"3ace4543aa737889092a5e19cf1d00b7dd53437d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"3ace4543aa737889092a5e19cf1d00b7dd53437d","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.1.1.tgz","integrity":"sha512-YXmvGcpLnQok2iMXbK0ExQhDBcSJw+UcjAh/jXM0rdoCQ+MODOLBgyw7bjxqPTAZyDXVvl9v4CfQ5c7Q5uzcVw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGrYxUQk5JUaMACuw4zjWfzOLf3bO1mnAnKpBIHDTxVpAiEA6Rjg4JoYDzU0TJO2uNChT8c79JSxtv/S0gS/3vOvTHs="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.1.1.tgz_1474467211326_0.806516467127949"},"directories":{}},"1.1.2":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.1.2","description":"A polyfill for Resize Observer API","main":"index.js","engines":{"node":">=6.0.0"},"scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"files":["src/","dist/","index.js","index.global.js"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-plugin-add-module-exports":"^0.2.1","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-spec-reporter":"0.0.26","karma-jasmine-html-reporter":"^0.2.1","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","jasmine-core":"^2.4.1","webpack":"^1.13.1","lodash":"^4.13.1","gulp":"^3.9.1","gulp-util":"^3.0.7","gulp-eslint":"^3.0.1","eslint":"^3.4.0"},"gitHead":"8dcdb24c01c94d5f8ae3137f3e4b866766cc0742","_id":"resize-observer-polyfill@1.1.2","_shasum":"7feb7f84377713d5f3f6f11b20f78d8d590c166b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"7feb7f84377713d5f3f6f11b20f78d8d590c166b","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.1.2.tgz","integrity":"sha512-U4B+xvQqv7xPmDuNFAhVtG5NEm1x0qkdWfvGHATZkuGL/qy5T6+dgL7rRyftUaTywKeK916dyJC4J+6OdFKYZg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQChlA58Wzx9Zm4+M3kTz9t28Z8fgsbB009U1QvOO2GG7QIhAIv7ViYCCrOV7qoK760suLdsZ0mUTfK8amaFssTeyCeN"}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.1.2.tgz_1474543798595_0.17021654942072928"},"directories":{}},"1.1.3":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.1.3","description":"A polyfill for Resize Observer API","main":"index.js","engines":{"node":">=6.0.0"},"scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"files":["src/","dist/","index.js","index.global.js"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-plugin-add-module-exports":"^0.2.1","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-spec-reporter":"0.0.26","karma-jasmine-html-reporter":"^0.2.1","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","jasmine-core":"^2.4.1","webpack":"^1.13.1","lodash":"^4.13.1","gulp":"^3.9.1","gulp-util":"^3.0.7","gulp-eslint":"^3.0.1","eslint":"^3.4.0"},"gitHead":"fbe315d63363be79de4e3b7bb18bea37a451f771","_id":"resize-observer-polyfill@1.1.3","_shasum":"e11bb7a66c15d03406640bc93202c28a7cffe736","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"e11bb7a66c15d03406640bc93202c28a7cffe736","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.1.3.tgz","integrity":"sha512-j3eQzNiP/evbzXMDlLQkusYEochktSAsDQJepwMal60NTaBwe0HrUgH/Ph4LVbEi82kcz+SCQ3pKgzLKk/GZLA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCCpaPZzAv27Doa0uSlgrBH2yInqJra8mSNV9xBR9du5AIhAMQ2Wc8ER7VbE8XKhvZ3KxPQYQ/5KzlPDR7eejPrb8rH"}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.1.3.tgz_1475851092039_0.6484528307337314"},"directories":{}},"1.1.4":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.1.4","description":"A polyfill for the Resize Observer API","main":"index.js","scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"files":["src/","dist/","index.js","index.global.js"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-plugin-add-module-exports":"^0.2.1","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-spec-reporter":"0.0.26","karma-jasmine-html-reporter":"^0.2.1","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","jasmine-core":"^2.4.1","webpack":"^1.13.1","lodash":"^4.13.1","gulp":"^3.9.1","gulp-util":"^3.0.7","gulp-eslint":"^3.0.1","eslint":"^3.4.0"},"gitHead":"22a2552453fa18b030821a6181b96694e25e0163","_id":"resize-observer-polyfill@1.1.4","_shasum":"b558730c1f60ed25bcfd8da47c481f60dffc020a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"b558730c1f60ed25bcfd8da47c481f60dffc020a","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.1.4.tgz","integrity":"sha512-5f0BovI/QNfFnXAXSbqzosmJ7Ex5tXepNVeWiRebAAyezRTx4qsypIgFEbQR9+Zu7drYqBzb2hvQ60P0PbFl/A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIESjZr4drVeiLivTOl5giKYaWaLNp2czgMv1ewaP0nQAAiBGj9aV0HJIy11xIMo99Fdfd9ZcwKSoNOvACqI5FJd42w=="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.1.4.tgz_1476317330639_0.4299359298311174"},"directories":{}},"1.1.5":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.1.5","description":"A polyfill for the Resize Observer API","main":"index.js","scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"files":["src/","dist/","index.js","index.global.js"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-loader":"^6.2.4","babel-preset-es2015":"^6.9.0","babel-plugin-add-module-exports":"^0.2.1","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-spec-reporter":"0.0.26","karma-jasmine-html-reporter":"^0.2.1","karma-sourcemap-loader":"^0.3.7","karma-webpack":"^1.7.0","jasmine-core":"^2.4.1","webpack":"^1.13.1","lodash":"^4.13.1","gulp":"^3.9.1","gulp-util":"^3.0.7","gulp-eslint":"^3.0.1","eslint":"^3.4.0"},"gitHead":"00eeef359c7eba74d147dc6056bbe847f0a57f41","_id":"resize-observer-polyfill@1.1.5","_shasum":"50caaf79e8356688104fa85733959270c52a1e10","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"50caaf79e8356688104fa85733959270c52a1e10","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.1.5.tgz","integrity":"sha512-0iPzGMi2enREoB+LLDFGMi77mQIiqwTEaukKfybFUdZcgkzbZg7UCiQhEVH6k+elAIAjpVEnbXVa6K6Gqzrd3A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFZv86X+HekcNKIw4myvKPDd+bOxW1nUI6X7O6T8q0+jAiEA6uMxWyspHv7MOzImgUS+S8heiCw1NnuHLA2LAU3P7i4="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.1.5.tgz_1476879815804_0.9643787532113492"},"directories":{}},"1.2.0":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.2.0","description":"A polyfill for the Resize Observer API","main":"index.js","scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"files":["src/","dist/","index.js","index.global.js"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-eslint":"^7.0.0","babel-plugin-external-helpers":"^6.18.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.9.0","babel-preset-latest":"^6.16.0","eslint":"^3.8.1","gulp":"^3.9.1","gulp-eslint":"^3.0.1","jasmine-core":"^2.4.0","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.1","karma-sourcemap-loader":"^0.3.7","karma-rollup-plugin":"^0.2.4","karma-spec-reporter":"0.0.26","lodash":"^4.13.1","rollup":"^0.36.3","rollup-plugin-babel":"^2.6.1","rollup-plugin-uglify":"^1.0.1"},"gitHead":"157f37a81aec67d9e0c4d8e9d56839f863b522c5","_id":"resize-observer-polyfill@1.2.0","_shasum":"ec4c849474d8a476d2eb67aabd93f92f27ad2e55","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"ec4c849474d8a476d2eb67aabd93f92f27ad2e55","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.2.0.tgz","integrity":"sha512-OVY8N/d8RVSr3FA29dVZ+lxbIuywDueX/PxaWjpE7gS5O0uMooIrYNmHvPSYbyL6PTeziBy2LQr4BpfUHczJvg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDSbLjN3gPs6A8H1ZX0MfBeVBeEvG69iczHZPGwB5WGZwIhAPlYCBgfI+WflMJg4fY46ustIa21euN6qwxVUycRyTij"}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.2.0.tgz_1478096342768_0.9120992922689766"},"directories":{}},"1.2.1":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@bgmail.com"},"version":"1.2.1","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","jsnext:main":"index.js","module":"index.js","scripts":{"test":"gulp test:lint && karma start karma.config.js --browsers Firefox","gulp":"gulp"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"index.d.ts","files":["src/","dist/","index.js","index.d.ts","index.global.js","index.global.d.ts"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.9.1","babel-eslint":"^7.0.0","babel-plugin-external-helpers":"^6.18.0","babel-polyfill":"^6.16.0","babel-preset-es2015":"^6.9.0","babel-preset-latest":"^6.16.0","eslint":"^3.8.1","gulp":"^3.9.1","gulp-eslint":"^3.0.1","jasmine-core":"^2.4.0","karma":"^1.2.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.0.2","karma-jasmine-html-reporter":"^0.2.1","karma-rollup-plugin":"^0.2.4","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.26","lodash":"^4.13.1","rollup":"^0.36.3","rollup-plugin-babel":"^2.6.1","rollup-plugin-uglify":"^1.0.1"},"gitHead":"8343dffcee78bbefdec44f0708a4effee51567d5","_id":"resize-observer-polyfill@1.2.1","_shasum":"55a4ff3e4f212a76470835fb7590dbb62a3e6542","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"55a4ff3e4f212a76470835fb7590dbb62a3e6542","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.2.1.tgz","integrity":"sha512-XTnMKxpE8rZ9tbVn3ICvbGKdq6NX9dRgLcR/i98MTAuQQB05/A4pnT/FAQ7OJzn7iYazeJ6srrIKdGXtmtHuug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCTH0+6QiCrcv2+usugGe5Ox2dWtr/QFe3A+FJfCB1LcwIgMJYjL3Q/L0IyLenfTIqQlv3+44+b2GbDJbNSW+0Rdz0="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.2.1.tgz_1478606093352_0.6897084678057581"},"directories":{}},"1.3.0":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@gmail.com"},"version":"1.3.0","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","jsnext:main":"dist/ResizeObserver.es.js","module":"dist/ResizeObserver.es.js","scripts":{"test:lint":"eslint **/*.js --ignore-pattern dist/*","test:spec":"karma start","test:spec:custom":"karma start --mode custom","test:spec:native":"karma start --mode custom --native","test":"npm run test:lint && npm run test:spec","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"index.d.ts","files":["src/","dist/","index.js","index.d.ts","index.global.js","index.global.d.ts"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.20.0","babel-eslint":"^7.1.1","babel-plugin-external-helpers":"^6.18.0","babel-polyfill":"^6.20.0","babel-preset-latest":"^6.16.0","eslint":"^3.12.2","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","karma-rollup-plugin":"^0.2.4","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.26","rollup":"^0.37.0","rollup-plugin-babel":"^2.7.1"},"gitHead":"edc873cc9870e99f52888393bb28c9217a108efb","_id":"resize-observer-polyfill@1.3.0","_shasum":"bca2b94fd16a010bcf1e8bcdf2c59736c42e8738","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"bca2b94fd16a010bcf1e8bcdf2c59736c42e8738","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.3.0.tgz","integrity":"sha512-LzjIs5qqdwoWqvpjcfhOP8KqRckKNhPZr+4SZLCVZKjEcnVGNbTarK9WDiH1zUTn9efyG33gscR3lr1qnsLMiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH4oIjJno/oQbNNnl6g/ZYQRmuaFF8BEIsDbnmmSfCGlAiEAoOx8HqP1OT4S/3XV9HfMHVGGW5/QwJQUqxkyoXSN7fY="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.3.0.tgz_1481891115863_0.42633127281442285"},"directories":{}},"1.3.1":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@gmail.com"},"version":"1.3.1","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","jsnext:main":"dist/ResizeObserver.es.js","scripts":{"test:lint":"eslint **/*.js","test:spec":"karma start","test:spec:custom":"karma start --mode custom","test:spec:native":"karma start --mode custom --native","test":"npm run test:lint && npm run test:spec","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"index.d.ts","files":["src/","dist/","index.js","index.d.ts","index.global.js","index.global.d.ts"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.20.0","babel-eslint":"^7.1.1","babel-plugin-external-helpers":"^6.18.0","babel-polyfill":"^6.20.0","babel-preset-latest":"^6.16.0","eslint":"^3.12.2","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","karma-rollup-plugin":"^0.2.4","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.26","rollup":"^0.37.0","rollup-plugin-babel":"^2.7.1"},"gitHead":"a7580c60e2807b2d582945db94a57bf5c6cfc834","_id":"resize-observer-polyfill@1.3.1","_shasum":"4d87e372532c867520b8fcee6d7a27962f1ce3f8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"4d87e372532c867520b8fcee6d7a27962f1ce3f8","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.3.1.tgz","integrity":"sha512-fCzeLKCJmOr/BwdKJyvsm1zsQe/a8TAVNI3brLYUxpu8BcTHUFURbhGM3RHoLTI59nr3ueuQ5A2Hh/xNafBOug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC66qoKt6yxctA4ZJ4vN9ijcygm0YnjiV6Quzfb5Sk25gIgKRZEYFnE6YrpnmTliGbkcrg8kjQMMCVX5/AqR1eIMZU="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.3.1.tgz_1481907888366_0.7982181762345135"},"directories":{}},"1.3.2":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@gmail.com"},"version":"1.3.2","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","jsnext:main":"dist/ResizeObserver.es.js","scripts":{"test:lint":"eslint **/*.js","test:spec":"npm run test:spec:browser && npm run test:spec:node","test:spec:browser":"karma start","test:spec:node":"babel-node --presets latest tests/engines/jasmine.js","test:spec:custom":"karma start --mode custom","test:spec:native":"karma start --mode custom --native","test":"npm run test:lint && npm run test:spec","build":"rollup -c"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"index.d.ts","files":["src/","dist/","index.js","index.d.ts","index.global.js","index.global.d.ts"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-cli":"^6.18.0","babel-core":"^6.20.0","babel-eslint":"^7.1.1","babel-plugin-external-helpers":"^6.18.0","babel-polyfill":"^6.20.0","babel-preset-latest":"^6.16.0","eslint":"^3.12.2","jasmine":"^2.5.2","jasmine-core":"^2.5.2","karma":"^1.3.0","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","karma-rollup-plugin":"^0.2.4","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.26","rollup":"^0.37.0","rollup-plugin-babel":"^2.7.1"},"gitHead":"2799991e4ef5a8e78f7f65d162077e60dd8d77b7","_id":"resize-observer-polyfill@1.3.2","_shasum":"f467efc15a86d9ee5096fd6d7f628c8a54bb805a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"f467efc15a86d9ee5096fd6d7f628c8a54bb805a","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.3.2.tgz","integrity":"sha512-sB6+H2OuKdzjbRxAoSNIBTkdH64eHbXrRc5E8WpaibrVn1LHjFBlnyL2c4fbI1R5b2xhra27XwUKF9VbHst/Sg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICvOQ3ccwyU7xnPto40o1t8gy4ry5CniA568btEYoNv7AiEA/Yv82JsRKgNDmV2NudWaCBwMqHTfb18DL9STEvc2LVI="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.3.2.tgz_1482103690239_0.9138755123130977"},"directories":{}},"1.4.0":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@gmail.com"},"version":"1.4.0","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","jsnext:main":"dist/ResizeObserver.es.js","module":"dist/ResizeObserver.es.js","scripts":{"build":"rollup -c","test":"npm run test:lint && npm run test:spec","test:lint":"node ./node_modules/eslint/bin/eslint.js \"**/*.js\" --ignore-pattern \"/dist/\"","test:spec":"npm run test:spec:ff && npm run test:spec:node","test:spec:ff":"karma start --browsers Firefox","test:spec:ch":"karma start --browsers Chrome","test:spec:ie":"karma start --browsers IE","test:spec:ie10":"karma start --browsers IE10","test:spec:node":"babel-node --presets latest,stage-2 tests/node/index.js","test:spec:all":"karma start --browsers Firefox,Chrome,IE,IE10 && npm run test:spec:node","test:spec:custom":"karma start --no-browsers","test:spec:native":"karma start --no-browsers --native"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"index.d.ts","files":["src/","dist/","index.js","index.d.ts","index.global.js","index.global.d.ts"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-eslint":"^7.1.1","babel-plugin-transform-regenerator":"^6.22.0","babel-preset-latest":"^6.22.0","babel-preset-stage-2":"^6.22.0","eslint":"^3.15.0","jasmine":"^2.5.3","jasmine-core":"^2.5.2","karma":"^1.4.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","karma-rollup-plugin":"^0.2.4","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.26","promise-polyfill":"^6.0.2","regenerator-runtime":"^0.10.1","rollup":"^0.41.4","rollup-plugin-babel":"^2.7.1","rollup-plugin-buble":"^0.15.0"},"gitHead":"3ee76bc50c18ae60b9bbb51ec8d2e212ef2b9767","_id":"resize-observer-polyfill@1.4.0","_shasum":"d6c43daacac198de6d7b26ac52cae6c432bcf6af","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"d6c43daacac198de6d7b26ac52cae6c432bcf6af","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.4.0.tgz","integrity":"sha512-781XQDF8oPZZaWHXKgTcmLFzAblQyBAceP2zZojy62PER9aUtLIaAhDQ/Zm4g+VqEV5/YgRGucDZXyaERXuiug==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBFrNKJBMaGIJ/zVUfVFqw9dzLQmQqDaOB3H0BA14UVHAiEArrS69GWJOyBZFN+uG/JYGF/t3O51XlQOdlyjLRnAHzI="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.4.0.tgz_1487248098941_0.29656474268995225"},"directories":{}},"1.4.1":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@gmail.com"},"version":"1.4.1","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","jsnext:main":"dist/ResizeObserver.es.js","module":"dist/ResizeObserver.es.js","scripts":{"build":"rollup -c","test":"npm run test:lint && npm run test:spec","test:lint":"node ./node_modules/eslint/bin/eslint.js \"**/*.js\" --ignore-pattern \"/dist/\"","test:spec":"npm run test:spec:ff && npm run test:spec:node","test:spec:ff":"karma start --browsers Firefox","test:spec:ch":"karma start --browsers Chrome","test:spec:ie":"karma start --browsers IE","test:spec:ie10":"karma start --browsers IE10","test:spec:node":"babel-node --presets latest,stage-2 tests/node/index.js","test:spec:all":"karma start --browsers Firefox,Chrome,IE,IE10 && npm run test:spec:node","test:spec:custom":"karma start --no-browsers","test:spec:native":"karma start --no-browsers --native"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"index.d.ts","files":["src/","dist/","index.js","index.d.ts","index.global.js","index.global.d.ts"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-eslint":"^7.1.1","babel-plugin-transform-regenerator":"^6.22.0","babel-preset-latest":"^6.22.0","babel-preset-stage-2":"^6.22.0","eslint":"^3.15.0","jasmine":"^2.5.3","jasmine-core":"^2.5.2","karma":"^1.4.1","karma-chrome-launcher":"^2.0.0","karma-firefox-launcher":"^1.0.0","karma-ie-launcher":"^1.0.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","karma-rollup-plugin":"^0.2.4","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.26","promise-polyfill":"^6.0.2","regenerator-runtime":"^0.10.1","rollup":"^0.41.4","rollup-plugin-babel":"^2.7.1","rollup-plugin-buble":"^0.15.0"},"gitHead":"cd15d91eb8bf0d37ee3ae4fcf3fdca6836327aac","_id":"resize-observer-polyfill@1.4.1","_shasum":"db97349f0f5b29764ce3e03bf8982ddbfa076613","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"db97349f0f5b29764ce3e03bf8982ddbfa076613","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.4.1.tgz","integrity":"sha512-QQ+WE8YoiPj/uXBWMnX0m0hsq7yFpVL+FYRCMbPS9pg0mhvsFgo7yPl1YmjeppvgkofZ/YRGp7VE2crOK+XJ6g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD2M1Gt6wXrFNnEXeU6rs9wGMKEFHKYqn24yUhGq9BGSgIgKq2hdOyXr7bI5QKiFe+T2kltL2K7zyDHD33P5YijB7c="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.4.1.tgz_1487353581225_0.1204618492629379"},"directories":{}},"1.4.2":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@gmail.com"},"version":"1.4.2","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","jsnext:main":"dist/ResizeObserver.es.js","module":"dist/ResizeObserver.es.js","scripts":{"build":"rollup -c","test":"npm run test:lint && npm run test:spec","test:ci":"npm run test:lint && npm run test:spec:sauce && npm run test:spec:node","test:lint":"node ./node_modules/eslint/bin/eslint.js \"**/*.js\" --ignore-pattern \"/dist/\"","test:spec":"karma start --browsers Chrome && npm run test:spec:node","test:spec:sauce":"karma start --sauce=windows && karma start --sauce=linux && karma start --sauce=osx && karma start --sauce=ios && karma start --sauce=android","test:spec:node":"babel-node --presets latest,stage-2 tests/node/index.js","test:spec:custom":"karma start --no-browsers","test:spec:native":"karma start --no-browsers --native"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"src/index.d.ts","files":["src/","dist/"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-cli":"^6.24.0","babel-core":"^6.24.0","babel-eslint":"^7.2.1","babel-plugin-transform-regenerator":"^6.22.0","babel-preset-latest":"^6.24.0","babel-preset-stage-2":"^6.22.0","eslint":"^3.19.0","jasmine":"^2.5.3","jasmine-core":"^2.5.2","karma":"^1.5.0","karma-chrome-launcher":"^2.0.0","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","karma-rollup-plugin":"^0.2.4","karma-sauce-launcher":"^1.1.0","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.30","promise-polyfill":"^6.0.2","regenerator-runtime":"^0.10.3","rollup":"^0.41.6","rollup-plugin-babel":"^2.7.1","rollup-plugin-buble":"^0.15.0"},"gitHead":"b0fb530f16666030577c5f252f84c95598af7330","_id":"resize-observer-polyfill@1.4.2","_shasum":"a37198e6209e888acb1532a9968e06d38b6788e5","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.5.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"shasum":"a37198e6209e888acb1532a9968e06d38b6788e5","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.4.2.tgz","integrity":"sha512-lDT7kOdPPPTLY9tggBhlXHcDKXlZ8/vWQEnN2AakckJL9PQVL0sCV3eD7Z/doMCb6dlK23V/B0qmYnuocwhj4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIFIKClB3+3++qdapvK1dpMZbkElkCFGxXihWIua9QnTLAiEA7kQn6pExfnERe4x2ZtbLSZiCrNgA4Jp1KrujcHpDwkQ="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/resize-observer-polyfill-1.4.2.tgz_1491182634597_0.460111737716943"},"directories":{}},"1.5.0":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@gmail.com"},"version":"1.5.0","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","module":"dist/ResizeObserver.es.js","scripts":{"build":"rollup -c && cpy src/index.js.flow dist --rename=ResizeObserver.js.flow","test":"npm run test:lint && npm run test:spec","test:ci":"npm run test:lint && npm run test:spec:sauce && npm run test:spec:node","test:ci:pull":"npm run test:lint && karma start --browsers Firefox && npm run test:spec:node","test:lint":"node ./node_modules/eslint/bin/eslint.js \"**/*.js\" --ignore-pattern \"/dist/\"","test:spec":"karma start --browsers Chrome && npm run test:spec:node","test:spec:sauce":"karma start --sauce=windows && karma start --sauce=linux && karma start --sauce=osx && karma start --sauce=ios && karma start --sauce=android","test:spec:node":"npm run build && node tests/node/index.js","test:spec:custom":"karma start --no-browsers","test:spec:native":"karma start --no-browsers --native"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"src/index.d.ts","files":["src/","dist/"],"keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-core":"^6.26.0","babel-eslint":"^8.0.2","babel-plugin-transform-async-to-generator":"^6.24.1","babel-plugin-transform-class-properties":"^6.24.1","babel-plugin-transform-regenerator":"^6.26.0","cpy-cli":"^1.0.1","eslint":"^4.11.0","jasmine":"^2.8.0","jasmine-core":"^2.8.0","karma":"^1.7.1","karma-chrome-launcher":"^2.2.0","karma-firefox-launcher":"^1.0.1","karma-jasmine":"^1.1.0","karma-jasmine-html-reporter":"^0.2.2","karma-rollup-preprocessor":"^5.0.2","karma-sauce-launcher":"^1.2.0","karma-sourcemap-loader":"^0.3.7","karma-spec-reporter":"0.0.31","promise-polyfill":"^6.0.2","regenerator-runtime":"^0.11.0","rollup":"^0.51.6","rollup-plugin-babel":"^3.0.2","rollup-plugin-buble":"^0.16.0"},"gitHead":"a3ae98bcd34e972b92d9e40e8b974a75399503e8","_id":"resize-observer-polyfill@1.5.0","_npmVersion":"5.5.1","_nodeVersion":"9.1.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"integrity":"sha512-M2AelyJDVR/oLnToJLtuDJRBBWUGUvvGigj1411hXhAdyFWqMaqHp7TixW3FpiLuVaikIcR1QL+zqoJoZlOgpg==","shasum":"660ff1d9712a2382baa2cad450a4716209f9ca69","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.5.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCdvxuCDJ7HghtNn/5kQgMrVNwHW0pz0siSEX9dFHtzYAIge/sX/H0RbLA4GM00QUzLUklde/ZrycswLrtoBplxyn4="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/resize-observer-polyfill-1.5.0.tgz_1510876719880_0.08595293783582747"},"directories":{}},"1.5.1":{"name":"resize-observer-polyfill","author":{"name":"Denis Rul","email":"que.etc@gmail.com"},"version":"1.5.1","description":"A polyfill for the Resize Observer API","main":"dist/ResizeObserver.js","module":"dist/ResizeObserver.es.js","scripts":{"build":"rollup -c && cpy src/index.js.flow dist --rename=ResizeObserver.js.flow","test":"npm run test:lint && npm run test:spec","test:ci":"npm run test:lint && npm run test:spec:sauce && npm run test:spec:node","test:ci:pull":"npm run test:lint && karma start --browsers Firefox && npm run test:spec:node","test:lint":"node ./node_modules/eslint/bin/eslint.js \"**/*.js\" --ignore-pattern \"/dist/\"","test:spec":"karma start --browsers Chrome && npm run test:spec:node","test:spec:sauce":"karma start --sauce=windows && karma start --sauce=linux && karma start --sauce=osx","test:spec:node":"npm run build && node tests/node/index.js","test:spec:custom":"karma start --no-browsers","test:spec:native":"karma start --no-browsers --native"},"repository":{"type":"git","url":"git+https://github.com/que-etc/resize-observer-polyfill.git"},"license":"MIT","bugs":{"url":"https://github.com/que-etc/resize-observer-polyfill/issues"},"types":"src/index.d.ts","keywords":["ResizeObserver","resize","observer","util","client","browser","polyfill","ponyfill"],"homepage":"https://github.com/que-etc/resize-observer-polyfill","devDependencies":{"babel-eslint":"10.0.1","cpy-cli":"2.0.0","eslint":"5.10.0","jasmine":"2.8.0","jasmine-core":"2.8.0","karma":"3.1.3","karma-chrome-launcher":"2.2.0","karma-firefox-launcher":"1.1.0","karma-jasmine":"1.1.2","karma-jasmine-html-reporter":"0.2.2","karma-rollup-preprocessor":"6.1.1","karma-sauce-launcher":"1.2.0","karma-sourcemap-loader":"0.3.7","karma-spec-reporter":"0.0.32","promise-polyfill":"8.1.0","rollup":"0.67.4","rollup-plugin-typescript":"1.0.0","typescript":"3.2.2"},"gitHead":"4a148452494a155656e4d04b9732b5914896b2e0","_id":"resize-observer-polyfill@1.5.1","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"que-etc","email":"que.etc@gmail.com"},"dist":{"integrity":"sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==","shasum":"0e9020dd3d21024458d4ebd27e23e40269810464","tarball":"https://mirrors.huaweicloud.com/repository/npm/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz","fileCount":23,"unpackedSize":147320,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcDTeiCRA9TVsSAnZWagAAQn8P/0sOJn0peaLH86pkUNr3\ntp0WuCltXIzNJAvEc3ugDKMgUp+3oprc0Ecv3/q2I1rrkuKBZ9ajYwWzhBZZ\nAHpJe2Qpd/AkIAdLl5jC8gTxVtktF4UUKU3FdbZXs9Lv1rEzZjXVp4RSMYP7\npIu68JkaDXPo32RsDQShKKG9nzcCXlDczkDIqDXwTRSeLcW3Q74o3QfFPuPQ\n4WBDlFEWuaSL36tOrIG3N+x/rkoKewzpiXJrwsBS1tKz83QHgdg+SijnPWe7\nwPCn6q6LtEh5d8RsBktqW0ro7+DoWneSAq1dnCFZagqKe8tqciUHw5oQsIN4\nbV7F6mwAbbeTetB94FRUBMxYMQ5JHo2D+BPaR3x3/sha4lq+qBG3uk3uqGRS\notnJO4b695AgteJd39h/BxIM/hza4YZEqIvjywnebISKMqN+urdd0f61TwYL\nAYbfjMMy3bAdKeJtlelLGexYkl6IuwD42G3nM4u7jhjdzl+Yl5AyhovdzbY9\nRpq0I9cKp4flzwjb1wUeCyV7JFY5SgRPw8nXxEhrjZnoiHfwfCHsVp4noB5Q\n2wocoXA8YcaTZkbV09zsLhPMUVsglPD1N3AUNCzM2kWbfmnhbnEX6sNL+TQn\nIMY84wGRTEtPF9I7hzOVoDI0eYrvxGjP7rr3FN+61PIT/3pB5E8fm1cQ/ekf\nXOZL\r\n=kkXD\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBxv0q6qsKFUKE5nQSHFc3wQ4z3sx6DIe1Eu9umWAxbgAiEAzdvM0msrc9spWhPTe/19oB2AYvc2g1r9O9BBByRsZQM="}]},"maintainers":[{"name":"que-etc","email":"que.etc@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/resize-observer-polyfill_1.5.1_1544370081896_0.08099022892504948"},"_hasShrinkwrap":false}},"readme":"ResizeObserver Polyfill\r\n=============\r\n\r\n[![Build Status][travis-image]][travis-url]\r\n\r\n\r\nA polyfill for the Resize Observer API.\r\n\r\nImplementation is based on the MutationObserver and uses Mutation Events as a fall back if the first one is not supported, so there will be no polling unless DOM changes. Doesn't modify observed elements. Handles CSS transitions/animations and can possibly observe changes caused by dynamic CSS pseudo-classes, e.g. by `:hover`.\r\n\r\nFollows the [spec](http://rawgit.com/WICG/ResizeObserver/master/index.html) and the native implementation. The size is _2.44 KiB_ when minified and gzipped.\r\n\r\n[Live demo](http://que-etc.github.io/resize-observer-polyfill) (has style problems in IE10 and lower).\r\n\r\n## Installation\r\n\r\nFrom NPM:\r\n\r\n```sh\r\nnpm install resize-observer-polyfill --save-dev\r\n```\r\n\r\n~~From Bower:~~ (will be removed with the next major release)\r\n\r\n```sh\r\nbower install resize-observer-polyfill --save-dev\r\n```\r\n\r\n\r\n## Browser Support\r\n\r\nPolyfill has been tested in the following browsers:\r\n\r\n[![Build Status](https://saucelabs.com/browser-matrix/que-etc.svg)](https://saucelabs.com/beta/builds/303f5344a7214ba5b62bc7079a15d376)\r\n\r\n**NOTE:** Internet Explorer 8 and its earlier versions are not supported.\r\n\r\n## Usage Example\r\n\r\nIt's recommended to use this library in the form of a [ponyfill](https://github.com/sindresorhus/ponyfill), which doesn't inflict modifications of the global object.\r\n\r\n```javascript\r\nimport ResizeObserver from 'resize-observer-polyfill';\r\n\r\nconst ro = new ResizeObserver((entries, observer) => {\r\n for (const entry of entries) {\r\n const {left, top, width, height} = entry.contentRect;\r\n\r\n console.log('Element:', entry.target);\r\n console.log(`Element's size: ${ width }px x ${ height }px`);\r\n console.log(`Element's paddings: ${ top }px ; ${ left }px`);\r\n }\r\n});\r\n\r\nro.observe(document.body);\r\n```\r\n\r\nPackage's main file is a ES5 [UMD](https://github.com/umdjs/umd) bundle that will be swapped with the ES6 modules version for those bundlers that are aware of the [module](https://github.com/rollup/rollup/wiki/pkg.module) field, e.g. for [Rollup](https://github.com/rollup/rollup) or webpack 2+.\r\n\r\n**Note**: global version of the polyfill (`dist/ResizeObserver.global`) is deprecated and will be removed in the next major release.\r\n\r\n## Observation Strategy\r\n\r\nAs mentioned above, this implementation primarily (but not solely) relies on Mutation Observer with a fallback to Mutation Events for IE 9 and IE 10.\r\n\r\nSpeaking of Mutation Events as a fallback approach: they might not be as ugly as they are being rendered, particularly when their calls are batched, throttled and there is no need to analyze changes. Given that, they won't interrupt browser's reflow/repaint cycles (same for MutationObserver) and may even outperform Internet Explorer's implementation of MO causing little to no performance degradation. In contemporary browsers (Chrome, Firefox, etc.) Mutation Observer slows down [the suite](https://jsfiddle.net/que_etc/gaqLe8rn/) that includes 200 iterations of adding/removing elements, changing attributes and modifying text data by less than 1%. Internet Explorer gives different results with MO slowing down the same suite by 2-3% while Mutation Events show the difference of ~0.6%.\r\n\r\nAs for the reasons why other approaches, namely the iframe/object and `scroll` strategies, were ruled out:\r\n* They require the observed element to be non-statically positioned.\r\n* You can't apply them directly to quite a number of elements: ``, ``, ` + + + + + + + + + + + + + diff --git a/frontend/src/views/admin/settings.vue b/frontend/src/views/admin/settings.vue index e0a215e..38c5b8c 100644 --- a/frontend/src/views/admin/settings.vue +++ b/frontend/src/views/admin/settings.vue @@ -4,40 +4,40 @@

基础设置

- - - - - - - - + + + + + + + +

积分规则

- - - + + + 积分 - - - + + + 积分 - - - + + + 积分 - - - + + + 积分 - - - + + + 积分 - - + +
@@ -46,25 +46,25 @@
充值 ¥{{ tier.amount }} 赠送 {{ tier.bonus }} 积分 - 删除 + 删除
- + 添加档位 + + 添加档位

会员等级规则

- - - - - - + + + + + +
- 保存设置 - 重置默认 + 保存设置 + 重置默认
@@ -72,7 +72,7 @@ diff --git a/frontend/src/views/admin/skills.vue b/frontend/src/views/admin/skills.vue index d072cff..1de073c 100644 --- a/frontend/src/views/admin/skills.vue +++ b/frontend/src/views/admin/skills.vue @@ -3,95 +3,161 @@ - - -